From abcbcbd7247a1d9b7c7b1aad8c0d7f3b53c8615a Mon Sep 17 00:00:00 2001 From: Brian Taylor Date: Mon, 18 May 2026 22:17:40 -0700 Subject: [PATCH 01/49] Completed and cleaned up memory leak fixes in: inpc_probe.c outitf.c inpcom.c niiter.c cherry-pick of this one commit should be OK. --- src/frontend/inpc_probe.c | 14 +++++++++++++- src/frontend/inpcom.c | 1 + src/frontend/outitf.c | 6 +++--- src/maths/ni/niiter.c | 1 + 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/frontend/inpc_probe.c b/src/frontend/inpc_probe.c index e77437bef..5a7a91f54 100644 --- a/src/frontend/inpc_probe.c +++ b/src/frontend/inpc_probe.c @@ -48,6 +48,7 @@ void inp_probe(struct card* deck) int skip_control = 0; int skip_subckt = 0; wordlist* probes = NULL, *probeparams = NULL, *wltmp, *allsaves = NULL; + wordlist *next_wl = NULL; bool haveall = FALSE, havedifferential = FALSE, t = TRUE, havesave = FALSE; NGHASHPTR instances; /* instance hash table */ int ee = 0; /* serial number for sources */ @@ -140,7 +141,12 @@ void inp_probe(struct card* deck) } } /* don't free the wl_word, they belong to the cards */ - tfree(probes); + wltmp = probes; + while (wltmp) { + next_wl = wltmp->wl_next; + tfree(wltmp); // Do not free the wl_word + wltmp = next_wl; + } /* Set up the hash table for all instances (instance name is key, data is the storage location of the card) */ @@ -188,6 +194,7 @@ void inp_probe(struct card* deck) if (!instname) continue; nghash_insert(instances, instname, card); + tfree(instname); } if (haveall || probeparams == NULL) { @@ -886,6 +893,7 @@ void inp_probe(struct card* deck) tmpcard = nghash_find(instances, instname); if (!tmpcard) { fprintf(stderr, "Warning: Could not find the instance line for %s,\n .probe %s will be ignored\n", instname, wltmp->wl_word); + tfree(instname); continue; } char* thisline = tmpcard->line; @@ -921,6 +929,7 @@ void inp_probe(struct card* deck) else if (err == 3) { fprintf(stderr, "Warning: Number of nodes mismatch,\n .probe %s will be ignored\n", wltmp->wl_word); } + tfree(instname); continue; } else if (!haveall) { @@ -938,6 +947,9 @@ void inp_probe(struct card* deck) } } + if (probeparams) { + wl_free(probeparams); + } nghash_free(instances, NULL, NULL); } diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 3551975ef..5943c8118 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -9944,6 +9944,7 @@ int add_to_sourcepath(const char* filepath, const char* path) scan_new = next; } if (!addwl) { + wl_free(startwl); wl_free(wl); tfree(fpath); return 0; // Not an error. diff --git a/src/frontend/outitf.c b/src/frontend/outitf.c index a59dc6030..b2ef4681e 100644 --- a/src/frontend/outitf.c +++ b/src/frontend/outitf.c @@ -153,11 +153,11 @@ OUTpBeginPlot(CKTcircuit *circuitPtr, JOB *analysisPtr, " is more than the DRAM memory available (%sB)!\n", cmemrequ, n, ctimesteps, cmemavail); fprintf(stderr, " Swapping data to SSD may slow down the simulation.\n"); - tfree(cmemrequ); - tfree(cmemavail); - tfree(ctimesteps); #endif } + tfree(cmemrequ); + tfree(cmemavail); + tfree(ctimesteps); } return ret; diff --git a/src/maths/ni/niiter.c b/src/maths/ni/niiter.c index 85da8ecd7..9f06a62df 100644 --- a/src/maths/ni/niiter.c +++ b/src/maths/ni/niiter.c @@ -278,6 +278,7 @@ NIiter(CKTcircuit *ckt, int maxIter) fprintf(stderr, "too many iterations without convergence: %d iter's (max iter == %d)\n", iterno, maxIter); #endif + FREE(errMsg); } FREE(OldCKTstate0); return(E_ITERLIM); From 8b32c743aef6e5dd8812e49ec7b6e7d08c166968 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 22 May 2026 17:32:46 +0200 Subject: [PATCH 02/49] Update to the SEEgenerator as describes in README.SEEgenerator --- README.SEEgenerator | 36 ++++ src/xspice/icm/xtradev/seegenerator/cfunc.mod | 202 +++++++++++++----- .../icm/xtradev/seegenerator/ifspec.ifs | 19 ++ 3 files changed, 199 insertions(+), 58 deletions(-) diff --git a/README.SEEgenerator b/README.SEEgenerator index ae2753945..74606b3b6 100644 --- a/README.SEEgenerator +++ b/README.SEEgenerator @@ -39,6 +39,23 @@ As literature please see for example Single-Event Effects, from Space to Accelerator Environments Springer 2025 +There is an alternative pulse variant possible by setting the parameters scdelay and scaling. +In advanced process nodes a single particle hit with its electron/hole pairs generated may +influence not only a single node, but several neighboring nodes as well, may be a little less +and with a small delay. This behaviour may be emulated by connecting SEEgen to a central node +and some surrounding nodes. These will get a portion of the charge carriers, with a possible +(small) delay. The .model line + +.model seemod1 seegen (tdelay = 400p tperiod=500p tfall='tfall' trise='trise' let='let' cdepth='d' ++ perlim=TRUE ctrlthres=0 scaling=[1, 0.5, 0.25, 0.125] scdelay=[0, 10p, 20p, 30p]) + +now contain the arrays scaling and scdelay. The nummber of array elements has to equal the number +of ports. Scaling will distribute the LET onto the different nodes with each weight given. +Scdelay will delay each port relative to the parameter tdelay. Parameters tperiod, perlim, and +ctrlthres are ignored for now. As the netlist does not contain information on the location of the +nodes in the layout, the user has to provide these data be selecting the proper nodes and pulse +scaling. + Detailed description (will be added to the manual): NAME_TABLE: @@ -131,6 +148,25 @@ Vector: no no Vector_Bounds: - - Null_Allowed: yes yes + +PARAMETER_TABLE: + +Parameter_Name: scaling scdelay +Description: "scale the current" "delay scaled pulses individually" +Data_Type: real real +Default_Value: 1 0 +Limits: [0 1] [0, -] +Vector: yes yes +Vector_Bounds: - - +Null_Allowed: yes yes + +STATIC_VAR_TABLE: + +Static_Var_Name: pulses +Data_Type: pointer +Vector: no +Description: "info on pulse for each port" + STATIC_VAR_TABLE: Static_Var_Name: last_t_value diff --git a/src/xspice/icm/xtradev/seegenerator/cfunc.mod b/src/xspice/icm/xtradev/seegenerator/cfunc.mod index fb088b895..6b4f0ad8e 100644 --- a/src/xspice/icm/xtradev/seegenerator/cfunc.mod +++ b/src/xspice/icm/xtradev/seegenerator/cfunc.mod @@ -55,7 +55,17 @@ NON-STANDARD FEATURES -/*=== LOCAL VARIABLES & TYPEDEFS =======*/ +/*=== LOCAL VARIABLES & TYPEDEFS =======*/ + +typedef struct pulse_info +{ + double iscaled; /* scaled current pulse for this port */ + double start_time; /* pulse start time for this port */ + double next_start_time; /* next pulse start time for this port */ +} pulse_info_t; + + +/*=== FUNCTION PROTOTYPE DEFINITIONS ===*/ static void cm_seegen_callback(ARGS, Mif_Callback_Reason_t reason) @@ -74,18 +84,14 @@ cm_seegen_callback(ARGS, Mif_Callback_Reason_t reason) if (last_ctrl) free(last_ctrl); STATIC_VAR (last_ctrl) = NULL; + pulse_info_t *pulses = STATIC_VAR (pulses); + if (pulses) + free(pulses); break; } } } - - -/*=== FUNCTION PROTOTYPE DEFINITIONS ===*/ - - - - /*============================================================================== FUNCTION void cm_seegen() @@ -144,6 +150,10 @@ void cm_seegen(ARGS) /* structure holding parms, double *last_ctrl; /* static storage of last ctrl value */ double tcurr = TIME; /* current simulation time */ + int ports; /* number of output ports */ + pulse_info_t *allpulses; /* info for pulse on each port */ + bool have_scaled = FALSE;/* TRUE if we want to use scaled pulses */ + if (ANALYSIS == MIF_AC) { return; } @@ -160,6 +170,10 @@ void cm_seegen(ARGS) /* structure holding parms, angle = PARAM(angle); ctrlthres = PARAM(ctrlthres); + have_scaled = !PARAM_NULL(scaling) && !PARAM_NULL(scdelay); + + ports = PORT_SIZE(out); + if (PORT_NULL(ctrl)) ctrl = 1; else @@ -167,73 +181,145 @@ void cm_seegen(ARGS) /* structure holding parms, if (INIT==1) { + int i; + double sum = 0; + + if (have_scaled && PARAM_SIZE(scaling) != ports) { + cm_message_send("Error: Number of Output ports and Scaling don't match\n"); + cm_cexit(1); + } + + if (have_scaled && PARAM_SIZE(scdelay) != ports) { + cm_message_send("Error: Number of Output ports and SCdelay don't match\n"); + cm_cexit(1); + } + + if (5 * (trise + tfall) > tperiod) { + cm_message_send("\nError: tperiod should be at least 5 times the sum of trise and tfall\n"); + cm_cexit(1); + } + CALLBACK = cm_seegen_callback; - /* Allocate storage for last_t_value */ - STATIC_VAR(last_t_value) = (double *) malloc(sizeof(double)); - last_t_value = (double *) STATIC_VAR(last_t_value); - /* no start if ctrl is set */ - if (PORT_NULL(ctrl)) - *last_t_value = tdelay; - else - *last_t_value = 1e12; - STATIC_VAR(pulse_number) = (int *) malloc(sizeof(int)); - pulse_number = (int *) STATIC_VAR(pulse_number); - *pulse_number = 1; - STATIC_VAR(last_ctrl) = (double *) malloc(sizeof(double)); - last_ctrl = (double *) STATIC_VAR(last_ctrl); - *last_ctrl = ctrl; - /* set breakpoints at first pulse start and pulse maximum times */ - double tatmax = *last_t_value + tfall * trise * log(trise/tfall) / (trise - tfall); - cm_analog_set_perm_bkpt(*last_t_value); - cm_analog_set_perm_bkpt(tatmax); - } - else { + if (have_scaled) { + int j; + double del = 1e12; - last_t_value = (double *) STATIC_VAR(last_t_value); - pulse_number = (int *) STATIC_VAR(pulse_number); - last_ctrl = (double *) STATIC_VAR(last_ctrl); + cm_message_send("Use the scaling option\n"); - /* reset the pulse sequence, to start anew upon a rising ctrl */ - if (*last_ctrl < ctrlthres && ctrl >= ctrlthres) { - *last_t_value = tcurr + tdelay; - *pulse_number = 1; - } - *last_ctrl = ctrl; + allpulses = STATIC_VAR(pulses) = (pulse_info_t *) malloc(ports * sizeof(pulse_info_t)); - /* the double exponential current pulse function */ - if (tcurr < *last_t_value) - out = 0; - else { + /* parameter inull not specified, calculate it */ if (inull == 0) { double LETeff = let/cos(angle); double Qc = 1.035e-14 * LETeff * cdepth; inull = Qc / (tfall - trise); } - out = inull * (exp(-(tcurr-*last_t_value)/tfall) - exp(-(tcurr-*last_t_value)/trise)); + + /* pulse currents are scaled, and find minimum time delay */ + for (i = 0; i < ports; i++){ + sum += PARAM(scaling[i]); + } + if (sum == 0.) { + cm_message_send("Error: Scaling parameters are zero\n"); + cm_cexit(1); + } + + for (i = 0; i < ports; i++){ + allpulses[i].iscaled = PARAM(scaling[i]) / sum * inull; + allpulses[i].start_time = tdelay + PARAM(scdelay[i]); + double tatmax = allpulses[i].start_time + tfall * trise * log(trise/tfall) / (trise - tfall); + cm_analog_set_perm_bkpt(allpulses[i].start_time); + cm_analog_set_perm_bkpt(tatmax); + } } - if (tcurr > *last_t_value + tperiod * 0.9) { - /* return some info */ - cm_message_printf("port name: out, node pair no.: %d, \nnode names: %s, %s, pulse time: %e", - *pulse_number, cm_get_node_name("out", *pulse_number - 1), - cm_get_neg_node_name("out", *pulse_number - 1), *last_t_value); - /* set the time for the next pulse */ - *last_t_value = *last_t_value + tperiod; - /* set breakpoints at new pulse start and pulse maximum times */ + else { + /* Allocate storage for last_t_value */ + STATIC_VAR(last_t_value) = (double *) malloc(sizeof(double)); + last_t_value = (double *) STATIC_VAR(last_t_value); + /* no start if ctrl is set */ + if (PORT_NULL(ctrl)) + *last_t_value = tdelay; + else + *last_t_value = 1e12; + STATIC_VAR(last_ctrl) = (double *) malloc(sizeof(double)); + last_ctrl = (double *) STATIC_VAR(last_ctrl); + *last_ctrl = ctrl; + STATIC_VAR(pulse_number) = (int *) malloc(sizeof(int)); + pulse_number = (int *) STATIC_VAR(pulse_number); + *pulse_number = 1; + + /* set breakpoints at first pulse start and pulse maximum times */ double tatmax = *last_t_value + tfall * trise * log(trise/tfall) / (trise - tfall); cm_analog_set_perm_bkpt(*last_t_value); cm_analog_set_perm_bkpt(tatmax); - (*pulse_number)++; - if (*pulse_number > PORT_SIZE(out)) { - if (PARAM(perlim) == FALSE) - *pulse_number = 1; + } + } + /* after initialization */ + else { + /* individual scaling and delay */ + + if (have_scaled) { + /* */ + int i; + allpulses = (pulse_info_t *) STATIC_VAR(pulses); + for (i = 0; i < ports; i++){ + double tst = allpulses[i].start_time; + if (tcurr < tst) + out = 0; else - *last_t_value = 1e12; /* stop any output */ + out = allpulses[i].iscaled * (exp(-(tcurr-tst)/tfall) - exp(-(tcurr-tst)/trise)); + OUTPUT(out[i]) = out; + OUTPUT(mon) = out; } } - if (*pulse_number - 1 < PORT_SIZE(out)) { - OUTPUT(out[*pulse_number - 1]) = out; - OUTPUT(mon) = out; + /* equal pulses, period, and repetition */ + else { + last_t_value = (double *) STATIC_VAR(last_t_value); + pulse_number = (int *) STATIC_VAR(pulse_number); + last_ctrl = (double *) STATIC_VAR(last_ctrl); + + /* reset the pulse sequence, to start anew upon a rising ctrl */ + if (*last_ctrl < ctrlthres && ctrl >= ctrlthres) { + *last_t_value = tcurr + tdelay; + *pulse_number = 1; + } + *last_ctrl = ctrl; + + /* the double exponential current pulse function */ + if (tcurr < *last_t_value) + out = 0; + else { + if (inull == 0) { + double LETeff = let/cos(angle); + double Qc = 1.035e-14 * LETeff * cdepth; + inull = Qc / (tfall - trise); + } + out = inull * (exp(-(tcurr-*last_t_value)/tfall) - exp(-(tcurr-*last_t_value)/trise)); + } + if (tcurr > *last_t_value + tperiod * 0.9) { + /* return some info */ + cm_message_printf("port name: out, node pair no.: %d, \nnode names: %s, %s, pulse time: %e", + *pulse_number, cm_get_node_name("out", *pulse_number - 1), + cm_get_neg_node_name("out", *pulse_number - 1), *last_t_value); + /* set the time for the next pulse */ + *last_t_value = *last_t_value + tperiod; + /* set breakpoints at new pulse start and pulse maximum times */ + double tatmax = *last_t_value + tfall * trise * log(trise/tfall) / (trise - tfall); + cm_analog_set_perm_bkpt(*last_t_value); + cm_analog_set_perm_bkpt(tatmax); + (*pulse_number)++; + if (*pulse_number > PORT_SIZE(out)) { + if (PARAM(perlim) == FALSE) + *pulse_number = 1; + else + *last_t_value = 1e12; /* stop any output */ + } + } + if (*pulse_number - 1 < PORT_SIZE(out)) { + OUTPUT(out[*pulse_number - 1]) = out; + OUTPUT(mon) = out; + } } } } diff --git a/src/xspice/icm/xtradev/seegenerator/ifspec.ifs b/src/xspice/icm/xtradev/seegenerator/ifspec.ifs index cee53b78f..a46ca30c1 100644 --- a/src/xspice/icm/xtradev/seegenerator/ifspec.ifs +++ b/src/xspice/icm/xtradev/seegenerator/ifspec.ifs @@ -110,6 +110,25 @@ Vector: no no Vector_Bounds: - - Null_Allowed: yes yes + +PARAMETER_TABLE: + +Parameter_Name: scaling scdelay +Description: "scale the current" "delay scaled pulses individually" +Data_Type: real real +Default_Value: 1 0 +Limits: [0 1] [0, -] +Vector: yes yes +Vector_Bounds: - - +Null_Allowed: yes yes + +STATIC_VAR_TABLE: + +Static_Var_Name: pulses +Data_Type: pointer +Vector: no +Description: "info on pulse for each port" + STATIC_VAR_TABLE: Static_Var_Name: last_t_value From 1ec7f8168f6c344ae8d98d5e0342fc97b15cdaf4 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 22 May 2026 21:15:50 +0200 Subject: [PATCH 03/49] Make structure equal to dllitf.h Fixes bug 840 --- src/xspice/xspice.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/xspice/xspice.c b/src/xspice/xspice.c index 605bfb603..31c73eeb5 100644 --- a/src/xspice/xspice.c +++ b/src/xspice/xspice.c @@ -56,6 +56,12 @@ struct coreInfo_t coreInfo = cm_message_send, cm_netlist_get_c, cm_netlist_get_l, + cm_irreversible, + cm_get_node_name, + cm_get_neg_node_name, + cm_probe_node, + cm_schedule_output, + cm_getvar, cm_complex_set, cm_complex_add, cm_complex_subtract, @@ -73,7 +79,7 @@ struct coreInfo_t coreInfo = txfree, tmalloc, trealloc, - txfree + txfree, #else GC_malloc, tcalloc, @@ -81,15 +87,14 @@ struct coreInfo_t coreInfo = no_free, GC_malloc, GC_realloc, - no_free + no_free, #endif + cexit, #ifdef KLU - , MIFbindCSC, MIFbindCSCComplex, - MIFbindCSCComplexToReal + MIFbindCSCComplexToReal, #endif - , MIFnoise, cm_noise_add_source }; From 7b045a99b208337c5dde72b54464e396f890857c Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 22 May 2026 21:16:16 +0200 Subject: [PATCH 04/49] improve comment --- src/xspice/icm/xtradev/seegenerator/ifspec.ifs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xspice/icm/xtradev/seegenerator/ifspec.ifs b/src/xspice/icm/xtradev/seegenerator/ifspec.ifs index a46ca30c1..c9d78a997 100644 --- a/src/xspice/icm/xtradev/seegenerator/ifspec.ifs +++ b/src/xspice/icm/xtradev/seegenerator/ifspec.ifs @@ -141,7 +141,7 @@ STATIC_VAR_TABLE: Static_Var_Name: pulse_number Data_Type: pointer Vector: no -Description: "number of pulse" +Description: "pulse number" STATIC_VAR_TABLE: From afac24be24faa7b193a409df7204dd8323dc9907 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 22 May 2026 21:20:58 +0200 Subject: [PATCH 05/49] Re-format --- src/include/ngspice/dllitf.h | 140 +++++++++++++++++------------------ 1 file changed, 69 insertions(+), 71 deletions(-) diff --git a/src/include/ngspice/dllitf.h b/src/include/ngspice/dllitf.h index 0bea481f0..9eeecc655 100644 --- a/src/include/ngspice/dllitf.h +++ b/src/include/ngspice/dllitf.h @@ -15,85 +15,83 @@ A pointer to this structure is passed to the dll when the dll is loaded. */ struct coreInfo_t { - /* MIF stuff */ - void ((*dllitf_MIF_INP2A)(CKTcircuit *, INPtables *, struct card *)); - char * ((*dllitf_MIFgetMod)(CKTcircuit *, char *, INPmodel **, INPtables *)); - IFvalue * ((*dllitf_MIFgetValue)(CKTcircuit *, char **, int, INPtables *, char **)); - int ((*dllitf_MIFsetup)(SMPmatrix *, GENmodel *, CKTcircuit *, int *)); - int ((*dllitf_MIFunsetup)(GENmodel *, CKTcircuit *)); - int ((*dllitf_MIFload)(GENmodel *, CKTcircuit *)); - int ((*dllitf_MIFmParam)(int, IFvalue *, GENmodel *)); - int ((*dllitf_MIFask)(CKTcircuit *, GENinstance *, int, IFvalue *, IFvalue *)); - int ((*dllitf_MIFmAsk)(CKTcircuit *, GENmodel *, int, IFvalue *)); - int ((*dllitf_MIFtrunc)(GENmodel *, CKTcircuit *, double *)); - int ((*dllitf_MIFconvTest)(GENmodel *, CKTcircuit *)); - int ((*dllitf_MIFdelete)(GENinstance *)); - int ((*dllitf_MIFmDelete)(GENmodel *)); - void ((*dllitf_MIFdestroy)(void)); - char * ((*dllitf_MIFgettok)(char **)); - char * ((*dllitf_MIFget_token)(char **, Mif_Token_Type_t *)); - Mif_Cntl_Src_Type_t ((*dllitf_MIFget_cntl_src_type)(Mif_Port_Type_t, Mif_Port_Type_t)); - char * ((*dllitf_MIFcopy)(char *)); - /* CM stuff */ - void ((*dllitf_cm_climit_fcn)(double, double, double, double, double, double, - double, double, int, double *, double *, double *, - double *)); - void ((*dllitf_cm_smooth_corner)(double, double, double, double, double, double, - double *, double *)); - void ((*dllitf_cm_smooth_discontinuity)(double, double, double, double, double, - double *, double *)); - double ((*dllitf_cm_smooth_pwl)(double, double *, double *, int, double, double *)); - double ((*dllitf_cm_analog_ramp_factor)(void)); - void ((*dllitf_cm_analog_alloc)(int, int)); - void * ((*dllitf_cm_analog_get_ptr)(int, int)); - int ((*dllitf_cm_analog_integrate)(double, double *, double *)); - int ((*dllitf_cm_analog_converge)(double *)); + /* MIF stuff */ + void ((*dllitf_MIF_INP2A)(CKTcircuit *, INPtables *, struct card *)); + char * ((*dllitf_MIFgetMod)(CKTcircuit *, char *, INPmodel **, INPtables *)); + IFvalue * ((*dllitf_MIFgetValue)(CKTcircuit *, char **, int, INPtables *, char **)); + int ((*dllitf_MIFsetup)(SMPmatrix *, GENmodel *, CKTcircuit *, int *)); + int ((*dllitf_MIFunsetup)(GENmodel *, CKTcircuit *)); + int ((*dllitf_MIFload)(GENmodel *, CKTcircuit *)); + int ((*dllitf_MIFmParam)(int, IFvalue *, GENmodel *)); + int ((*dllitf_MIFask)(CKTcircuit *, GENinstance *, int, IFvalue *, IFvalue *)); + int ((*dllitf_MIFmAsk)(CKTcircuit *, GENmodel *, int, IFvalue *)); + int ((*dllitf_MIFtrunc)(GENmodel *, CKTcircuit *, double *)); + int ((*dllitf_MIFconvTest)(GENmodel *, CKTcircuit *)); + int ((*dllitf_MIFdelete)(GENinstance *)); + int ((*dllitf_MIFmDelete)(GENmodel *)); + void ((*dllitf_MIFdestroy)(void)); + char * ((*dllitf_MIFgettok)(char **)); + char * ((*dllitf_MIFget_token)(char **, Mif_Token_Type_t *)); + Mif_Cntl_Src_Type_t ((*dllitf_MIFget_cntl_src_type)(Mif_Port_Type_t, Mif_Port_Type_t)); + char * ((*dllitf_MIFcopy)(char *)); + /* CM stuff */ + void ((*dllitf_cm_climit_fcn)(double, double, double, double, double, double, + double, double, int, double *, double *, double *, + double *)); + void ((*dllitf_cm_smooth_corner)(double, double, double, double, double, double, + double *, double *)); + void ((*dllitf_cm_smooth_discontinuity)(double, double, double, double, double, + double *, double *)); + double ((*dllitf_cm_smooth_pwl)(double, double *, double *, int, double, double *)); + double ((*dllitf_cm_analog_ramp_factor)(void)); + void ((*dllitf_cm_analog_alloc)(int, int)); + void * ((*dllitf_cm_analog_get_ptr)(int, int)); + int ((*dllitf_cm_analog_integrate)(double, double *, double *)); + int ((*dllitf_cm_analog_converge)(double *)); int ((*dllitf_cm_analog_set_temp_bkpt)(double)); int ((*dllitf_cm_analog_set_perm_bkpt)(double)); void ((*dllitf_cm_analog_not_converged)(void)); void ((*dllitf_cm_analog_auto_partial)(void)); - void ((*dllitf_cm_event_alloc)(int, int)); - void * ((*dllitf_cm_event_get_ptr)(int, int)); - int ((*dllitf_cm_event_queue)(double)); - char * ((*dllitf_cm_message_get_errmsg)(void)); - int ((*dllitf_cm_message_send)(char *)); - double ((*dllitf_cm_netlist_get_c)(void)); - double ((*dllitf_cm_netlist_get_l)(void)); - void ((*dllitf_cm_irreversible)(unsigned int)); - const char * ((*dllitf_cm_get_node_name)(const char *, unsigned int)); - const char* ((*dllitf_cm_get_neg_node_name)(const char*, unsigned int)); - bool ((*dllitf_cm_probe_node)(unsigned int, unsigned int, - void *)); - bool ((*dllitf_cm_schedule_output)(unsigned int, unsigned int, - double, void *)); - bool ((*dllitf_cm_getvar)(char *, enum cp_types, void *, size_t)); - Complex_t ((*dllitf_cm_complex_set)(double, double)); - Complex_t ((*dllitf_cm_complex_add)(Complex_t, Complex_t)); - Complex_t ((*dllitf_cm_complex_subtract)(Complex_t, Complex_t)); - Complex_t ((*dllitf_cm_complex_multiply)(Complex_t, Complex_t)); - Complex_t ((*dllitf_cm_complex_divide)(Complex_t, Complex_t)); - char * ((*dllitf_cm_get_path)(void)); - CKTcircuit *((*dllitf_cm_get_circuit)(void)); - FILE * ((*dllitf_cm_stream_out)(void)); - FILE * ((*dllitf_cm_stream_in)(void)); - FILE * ((*dllitf_cm_stream_err)(void)); + void ((*dllitf_cm_event_alloc)(int, int)); + void * ((*dllitf_cm_event_get_ptr)(int, int)); + int ((*dllitf_cm_event_queue)(double)); + char * ((*dllitf_cm_message_get_errmsg)(void)); + int ((*dllitf_cm_message_send)(char *)); + double ((*dllitf_cm_netlist_get_c)(void)); + double ((*dllitf_cm_netlist_get_l)(void)); + void ((*dllitf_cm_irreversible)(unsigned int)); + const char* ((*dllitf_cm_get_node_name)(const char *, unsigned int)); + const char* ((*dllitf_cm_get_neg_node_name)(const char*, unsigned int)); + bool ((*dllitf_cm_probe_node)(unsigned int, unsigned int, void *)); + bool ((*dllitf_cm_schedule_output)(unsigned int, unsigned int, double, void *)); + bool ((*dllitf_cm_getvar)(char *, enum cp_types, void *, size_t)); + Complex_t ((*dllitf_cm_complex_set)(double, double)); + Complex_t ((*dllitf_cm_complex_add)(Complex_t, Complex_t)); + Complex_t ((*dllitf_cm_complex_subtract)(Complex_t, Complex_t)); + Complex_t ((*dllitf_cm_complex_multiply)(Complex_t, Complex_t)); + Complex_t ((*dllitf_cm_complex_divide)(Complex_t, Complex_t)); + char * ((*dllitf_cm_get_path)(void)); + CKTcircuit *((*dllitf_cm_get_circuit)(void)); + FILE * ((*dllitf_cm_stream_out)(void)); + FILE * ((*dllitf_cm_stream_in)(void)); + FILE * ((*dllitf_cm_stream_err)(void)); /*Other stuff*/ - void * ((*dllitf_malloc_pj)(size_t)); - void * ((*dllitf_calloc_pj)(size_t, size_t)); - void * ((*dllitf_realloc_pj)(const void *, size_t)); - void ((*dllitf_free_pj)(const void *)); - void * ((*dllitf_tmalloc)(size_t)); - void * ((*dllitf_trealloc)(const void *, size_t)); - void ((*dllitf_txfree)(const void *)); - void ((*dllitf_cexit)(const int)); + void * ((*dllitf_malloc_pj)(size_t)); + void * ((*dllitf_calloc_pj)(size_t, size_t)); + void * ((*dllitf_realloc_pj)(const void *, size_t)); + void ((*dllitf_free_pj)(const void *)); + void * ((*dllitf_tmalloc)(size_t)); + void * ((*dllitf_trealloc)(const void *, size_t)); + void ((*dllitf_txfree)(const void *)); + void ((*dllitf_cexit)(const int)); #ifdef KLU - int ((*dllitf_MIFbindCSC) (GENmodel *, CKTcircuit *)) ; - int ((*dllitf_MIFbindCSCComplex) (GENmodel *, CKTcircuit *)) ; - int ((*dllitf_MIFbindCSCComplexToReal) (GENmodel *, CKTcircuit *)) ; + int ((*dllitf_MIFbindCSC) (GENmodel *, CKTcircuit *)) ; + int ((*dllitf_MIFbindCSCComplex) (GENmodel *, CKTcircuit *)) ; + int ((*dllitf_MIFbindCSCComplexToReal) (GENmodel *, CKTcircuit *)) ; #endif - int ((*dllitf_MIFnoise)(int, int, GENmodel *, CKTcircuit *, Ndata *, double *)); - int ((*dllitf_cm_noise_add_source)(const char *, int, int, Mif_Noise_Src_Type_t)); + int ((*dllitf_MIFnoise)(int, int, GENmodel *, CKTcircuit *, Ndata *, double *)); + int ((*dllitf_cm_noise_add_source)(const char *, int, int, Mif_Noise_Src_Type_t)); }; #endif From b03f3cc8fe8d5827c0b136deccc2147a20791b4e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 23 May 2026 15:03:12 +0200 Subject: [PATCH 06/49] title update --- examples/xspice/noise/ota_noise_test1.cir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/xspice/noise/ota_noise_test1.cir b/examples/xspice/noise/ota_noise_test1.cir index 507398f15..4a94949cb 100644 --- a/examples/xspice/noise/ota_noise_test1.cir +++ b/examples/xspice/noise/ota_noise_test1.cir @@ -1,4 +1,4 @@ -* noise analysis with analogue code model +* noise analysis with analogue code model, programmatic example aota inn 0 out newota *.model newota ota (gm=1 rout=1e12 rin=1Meg en=31n enk=100 in_noise=100u ink=10k incm=0 incmk=2k noise_programmatic=TRUE) From 037b6578f87524cba74cd5ee5b2f9c1536f76ead Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 24 May 2026 09:58:53 +0200 Subject: [PATCH 07/49] gain cell as an example for the declarative small signal noise approach --- examples/xspice/noise/noise_gain.cir | 22 ++++++++++++++++++++++ src/xspice/icm/analog/gain/ifspec.ifs | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 examples/xspice/noise/noise_gain.cir diff --git a/examples/xspice/noise/noise_gain.cir b/examples/xspice/noise/noise_gain.cir new file mode 100644 index 000000000..cb962f12e --- /dev/null +++ b/examples/xspice/noise/noise_gain.cir @@ -0,0 +1,22 @@ +Noise in gain code model + +a1 in1 out1 amp1 +.model amp1 gain(in_offset=0.1 gain=5.0 ++ out_offset=-0.01 noise_voltage=1u noise_corner=2k noise_exponent=2) + +a2 in1 out2 amp2 +.model amp2 gain(in_offset=0.1 gain=5.0 ++ out_offset=-0.01 noise_voltage=2u noise_corner=1k noise_exponent=1.2) + +Vin1 in1 0 1 ac 1 + +.control +noise V(out1) vin1 dec 333 1 1e6 16 +print inoise_total onoise_total +noise V(out2) vin1 dec 333 1 1e6 16 +print inoise_total onoise_total +set xbrushwidth=3 +plot noise1.onoise_spectrum noise1.inoise_spectrum noise3.onoise_spectrum noise3.inoise_spectrum loglog +.endc + +.end diff --git a/src/xspice/icm/analog/gain/ifspec.ifs b/src/xspice/icm/analog/gain/ifspec.ifs index 4abd6c194..b7622ac39 100644 --- a/src/xspice/icm/analog/gain/ifspec.ifs +++ b/src/xspice/icm/analog/gain/ifspec.ifs @@ -53,3 +53,25 @@ Vector_Bounds: - - - Null_Allowed: yes yes yes +PARAMETER_TABLE: + +Parameter_Name: noise_voltage noise_current +Description: "noise voltage" "noise current" +Data_Type: real real +Default_Value: 0.0 0.0 +Limits: - - +Vector: no no +Vector_Bounds: - - +Null_Allowed: yes yes + + +PARAMETER_TABLE: + +Parameter_Name: noise_corner noise_exponent +Description: "1/f corner freq" "1/f exponent" +Data_Type: real real +Default_Value: 0.0 1.0 +Limits: - - +Vector: no no +Vector_Bounds: - - +Null_Allowed: yes yes From e53325583b83fadc0b8a568ab0c52db4de65716f Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 26 May 2026 16:02:36 +0200 Subject: [PATCH 08/49] Don't check for tperiod, which is not used when the distributed pulse is applied. --- src/xspice/icm/xtradev/seegenerator/cfunc.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xspice/icm/xtradev/seegenerator/cfunc.mod b/src/xspice/icm/xtradev/seegenerator/cfunc.mod index 6b4f0ad8e..08c93b5ec 100644 --- a/src/xspice/icm/xtradev/seegenerator/cfunc.mod +++ b/src/xspice/icm/xtradev/seegenerator/cfunc.mod @@ -194,7 +194,7 @@ void cm_seegen(ARGS) /* structure holding parms, cm_cexit(1); } - if (5 * (trise + tfall) > tperiod) { + if (!have_scaled && 5 * (trise + tfall) > tperiod) { cm_message_send("\nError: tperiod should be at least 5 times the sum of trise and tfall\n"); cm_cexit(1); } From 973b6b6d49d0381e6e23dfd5ec4f3ca0392aeaa1 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 31 May 2026 15:57:26 +0200 Subject: [PATCH 09/49] No integration if dc sweep, but keep calculating capacitances --- src/spicelib/devices/bjt/bjtload.c | 33 ++++++----- src/spicelib/devices/vbic/vbicload.c | 87 ++++++++++++++-------------- 2 files changed, 63 insertions(+), 57 deletions(-) diff --git a/src/spicelib/devices/bjt/bjtload.c b/src/spicelib/devices/bjt/bjtload.c index e9647c458..9625f612f 100644 --- a/src/spicelib/devices/bjt/bjtload.c +++ b/src/spicelib/devices/bjt/bjtload.c @@ -797,21 +797,24 @@ next1: vtn=vt*here->BJTtemissionCoeffF; *(ckt->CKTstate1 + here->BJTqbcx) = *(ckt->CKTstate0 + here->BJTqbcx) ; } - error = NIintegrate(ckt,&geq,&ceq,capbe,here->BJTqbe); - if(error) return(error); - geqcb=geqcb*ckt->CKTag[0]; - gpi=gpi+geq; - cb=cb+*(ckt->CKTstate0 + here->BJTcqbe); - error = NIintegrate(ckt,&geq,&ceq,capbc,here->BJTqbc); - if(error) return(error); - gmu=gmu+geq; - cb=cb+*(ckt->CKTstate0 + here->BJTcqbc); - cc=cc-*(ckt->CKTstate0 + here->BJTcqbc); - if (model->BJTintCollResistGiven) { - error = NIintegrate(ckt,&geq,&ceq,Qbcx_Vbcx,here->BJTqbcx); - if(error) return(error); - gbcx = geq; - cbcx = *(ckt->CKTstate0 + here->BJTcqbcx); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capbe, here->BJTqbe); + if (error) return(error); + geqcb = geqcb * ckt->CKTag[0]; + gpi = gpi + geq; + cb = cb + *(ckt->CKTstate0 + here->BJTcqbe); + error = NIintegrate(ckt, &geq, &ceq, capbc, here->BJTqbc); + if (error) return(error); + gmu = gmu + geq; + cb = cb + *(ckt->CKTstate0 + here->BJTcqbc); + cc = cc - *(ckt->CKTstate0 + here->BJTcqbc); + if (model->BJTintCollResistGiven) { + error = NIintegrate(ckt, &geq, &ceq, Qbcx_Vbcx, here->BJTqbcx); + if (error) return(error); + gbcx = geq; + cbcx = *(ckt->CKTstate0 + here->BJTcqbcx); + } } if(ckt->CKTmode & MODEINITTRAN) { *(ckt->CKTstate1 + here->BJTcqbe) = diff --git a/src/spicelib/devices/vbic/vbicload.c b/src/spicelib/devices/vbic/vbicload.c index 26851d6ee..c1b7a7161 100644 --- a/src/spicelib/devices/vbic/vbicload.c +++ b/src/spicelib/devices/vbic/vbicload.c @@ -864,54 +864,57 @@ VBICload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate0 + here->VBICqxf2) ; } } - error = NIintegrate(ckt,&geq,&ceq,Qbe_Vbei,here->VBICqbe); - if(error) return(error); - Ibe_Vbei = Ibe_Vbei + geq; - Ibe = Ibe + *(ckt->CKTstate0 + here->VBICcqbe); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode& MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, Qbe_Vbei, here->VBICqbe); + if (error) return(error); + Ibe_Vbei = Ibe_Vbei + geq; + Ibe = Ibe + *(ckt->CKTstate0 + here->VBICcqbe); - error = NIintegrate(ckt,&geq,&ceq,Qbex_Vbex,here->VBICqbex); - if(error) return(error); - Ibex_Vbex = Ibex_Vbex + geq; - Ibex = Ibex + *(ckt->CKTstate0 + here->VBICcqbex); + error = NIintegrate(ckt, &geq, &ceq, Qbex_Vbex, here->VBICqbex); + if (error) return(error); + Ibex_Vbex = Ibex_Vbex + geq; + Ibex = Ibex + *(ckt->CKTstate0 + here->VBICcqbex); - error = NIintegrate(ckt,&geq,&ceq,Qbc_Vbci,here->VBICqbc); - if(error) return(error); - Ibc_Vbci = Ibc_Vbci + geq; - Ibc = Ibc + *(ckt->CKTstate0 + here->VBICcqbc); + error = NIintegrate(ckt, &geq, &ceq, Qbc_Vbci, here->VBICqbc); + if (error) return(error); + Ibc_Vbci = Ibc_Vbci + geq; + Ibc = Ibc + *(ckt->CKTstate0 + here->VBICcqbc); - error = NIintegrate(ckt,&geq,&ceq,Qbcx_Vbcx,here->VBICqbcx); - if(error) return(error); - gbcx = geq; - cbcx = *(ckt->CKTstate0 + here->VBICcqbcx); + error = NIintegrate(ckt, &geq, &ceq, Qbcx_Vbcx, here->VBICqbcx); + if (error) return(error); + gbcx = geq; + cbcx = *(ckt->CKTstate0 + here->VBICcqbcx); - error = NIintegrate(ckt,&geq,&ceq,Qbep_Vbep,here->VBICqbep); - if(error) return(error); - Ibep_Vbep = Ibep_Vbep + geq; - Ibep = Ibep + *(ckt->CKTstate0 + here->VBICcqbep); + error = NIintegrate(ckt, &geq, &ceq, Qbep_Vbep, here->VBICqbep); + if (error) return(error); + Ibep_Vbep = Ibep_Vbep + geq; + Ibep = Ibep + *(ckt->CKTstate0 + here->VBICcqbep); - error = NIintegrate(ckt,&geq,&ceq,Qbcp_Vbcp,here->VBICqbcp); - if(error) return(error); - Ibcp_Vbcp = Ibcp_Vbcp + geq; - Ibcp = Ibcp + *(ckt->CKTstate0 + here->VBICcqbcp); + error = NIintegrate(ckt, &geq, &ceq, Qbcp_Vbcp, here->VBICqbcp); + if (error) return(error); + Ibcp_Vbcp = Ibcp_Vbcp + geq; + Ibcp = Ibcp + *(ckt->CKTstate0 + here->VBICcqbcp); - if (here->VBIC_selfheat) - { - error = NIintegrate(ckt,&geq,&ceq,Qcth_Vrth,here->VBICqcth); - if(error) return(error); - Icth_Vrth = geq; - Icth = *(ckt->CKTstate0 + here->VBICcqcth); - } - if (here->VBIC_excessPhase) { - //Qxf1 - error = NIintegrate(ckt,&geq,&ceq,Qxf1_Vxf1,here->VBICqxf1); - if(error) return(error); - Ixf1_Vxf1 += geq; - Ixf1 += *(ckt->CKTstate0 + here->VBICcqxf1); - //Qxf2 - error = NIintegrate(ckt,&geq,&ceq,Qxf2_Vxf2,here->VBICqxf2); - if(error) return(error); - Ixf2_Vxf2 += geq; - Ixf2 += *(ckt->CKTstate0 + here->VBICcqxf2); + if (here->VBIC_selfheat) + { + error = NIintegrate(ckt, &geq, &ceq, Qcth_Vrth, here->VBICqcth); + if (error) return(error); + Icth_Vrth = geq; + Icth = *(ckt->CKTstate0 + here->VBICcqcth); + } + if (here->VBIC_excessPhase) { + //Qxf1 + error = NIintegrate(ckt, &geq, &ceq, Qxf1_Vxf1, here->VBICqxf1); + if (error) return(error); + Ixf1_Vxf1 += geq; + Ixf1 += *(ckt->CKTstate0 + here->VBICcqxf1); + //Qxf2 + error = NIintegrate(ckt, &geq, &ceq, Qxf2_Vxf2, here->VBICqxf2); + if (error) return(error); + Ixf2_Vxf2 += geq; + Ixf2 += *(ckt->CKTstate0 + here->VBICcqxf2); + } } if(ckt->CKTmode & MODEINITTRAN) { From d029ed02dbdc35b18f6fa3956191f6eb79c788b6 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 1 Jun 2026 11:02:45 +0200 Subject: [PATCH 10/49] Diode: No integration if dc sweep, but keep calculating capacitances --- src/spicelib/devices/dio/dioload.c | 57 ++++++++++++++++-------------- 1 file changed, 30 insertions(+), 27 deletions(-) diff --git a/src/spicelib/devices/dio/dioload.c b/src/spicelib/devices/dio/dioload.c index 80ade0970..97dade792 100644 --- a/src/spicelib/devices/dio/dioload.c +++ b/src/spicelib/devices/dio/dioload.c @@ -658,36 +658,39 @@ next1: *(ckt->CKTstate1 + here->DIOcapChargeSW) = *(ckt->CKTstate0 + here->DIOcapChargeSW); } - error = NIintegrate(ckt,&geq,&ceq,capd,here->DIOcapCharge); - if(error) return(error); - gd=gd+geq; - cd=cd+*(ckt->CKTstate0 + here->DIOcapCurrent); - if (model->DIOresistSWGiven) { - error = NIintegrate(ckt,&geq,&ceq,capdsw,here->DIOcapChargeSW); - if(error) return(error); - gdsw=gdsw+geq; - cdsw=cdsw+*(ckt->CKTstate0 + here->DIOcapCurrentSW); - } - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->DIOcapCurrent) = - *(ckt->CKTstate0 + here->DIOcapCurrent); - if (model->DIOresistSWGiven) - *(ckt->CKTstate1 + here->DIOcapCurrentSW) = - *(ckt->CKTstate0 + here->DIOcapCurrentSW); - } - if (revrec) { - /* soft recovery subcircuit */ - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->DIOsrcapCharge) = - *(ckt->CKTstate0 + here->DIOsrcapCharge); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capd, here->DIOcapCharge); + if (error) return(error); + gd = gd + geq; + cd = cd + *(ckt->CKTstate0 + here->DIOcapCurrent); + if (model->DIOresistSWGiven) { + error = NIintegrate(ckt, &geq, &ceq, capdsw, here->DIOcapChargeSW); + if (error) return(error); + gdsw = gdsw + geq; + cdsw = cdsw + *(ckt->CKTstate0 + here->DIOcapCurrentSW); } - error = NIintegrate(ckt,&geq,&ceq,capsr,here->DIOsrcapCharge); - if(error) return(error); - gqcsr = geq; - cqcsr = *(ckt->CKTstate0 + here->DIOsrcapCurrent); if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->DIOsrcapCurrent) = + *(ckt->CKTstate1 + here->DIOcapCurrent) = + *(ckt->CKTstate0 + here->DIOcapCurrent); + if (model->DIOresistSWGiven) + *(ckt->CKTstate1 + here->DIOcapCurrentSW) = + *(ckt->CKTstate0 + here->DIOcapCurrentSW); + } + if (revrec) { + /* soft recovery subcircuit */ + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->DIOsrcapCharge) = + *(ckt->CKTstate0 + here->DIOsrcapCharge); + } + error = NIintegrate(ckt, &geq, &ceq, capsr, here->DIOsrcapCharge); + if (error) return(error); + gqcsr = geq; + cqcsr = *(ckt->CKTstate0 + here->DIOsrcapCurrent); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->DIOsrcapCurrent) = *(ckt->CKTstate0 + here->DIOsrcapCurrent); + } } } if (selfheat) From 72620328a1af503af292c2ee00e78d5efaeee48c Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 1 Jun 2026 19:48:50 +0200 Subject: [PATCH 11/49] Excluded integration during self-heating as well. --- src/spicelib/devices/dio/dioload.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/spicelib/devices/dio/dioload.c b/src/spicelib/devices/dio/dioload.c index 97dade792..b4a9d49bd 100644 --- a/src/spicelib/devices/dio/dioload.c +++ b/src/spicelib/devices/dio/dioload.c @@ -692,14 +692,15 @@ next1: *(ckt->CKTstate0 + here->DIOsrcapCurrent); } } - } - if (selfheat) - { - error = NIintegrate(ckt, &gcTt, &ceqqth, model->DIOcth0, here->DIOqth); - if (error) return(error); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->DIOcqth) = + + if (selfheat) + { + error = NIintegrate(ckt, &gcTt, &ceqqth, model->DIOcth0, here->DIOqth); + if (error) return(error); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->DIOcqth) = *(ckt->CKTstate0 + here->DIOcqth); + } } } } From 2ef046704e83f6d834b4b72cca3e3ce8c3a3b294 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 3 Jun 2026 16:40:45 +0200 Subject: [PATCH 12/49] A digital NAND gate 9-stage ring oscillator (less than 30ms simulation time) --- examples/xspice/various/ro_nand_digi.cir | 50 +++++++ src/spicelib/analysis/dcpss.c | 1 + src/spicelib/analysis/dctran.c | 2 + src/spicelib/analysis/optran.c | 1 + src/spicelib/devices/hfet1/hfetload.c | 43 +++--- src/spicelib/devices/hfet2/hfet2load.c | 31 ++-- src/spicelib/devices/hicum2/hicumL2.cpp | 181 ++++++++++++----------- src/spicelib/devices/jfet/jfetload.c | 29 ++-- src/spicelib/devices/jfet2/jfet2load.c | 39 ++--- src/spicelib/devices/mes/mesload.c | 31 ++-- src/spicelib/devices/mesa/mesaload.c | 33 +++-- src/spicelib/devices/vdmos/vdmosload.c | 69 +++++---- 12 files changed, 297 insertions(+), 213 deletions(-) create mode 100644 examples/xspice/various/ro_nand_digi.cir diff --git a/examples/xspice/various/ro_nand_digi.cir b/examples/xspice/various/ro_nand_digi.cir new file mode 100644 index 000000000..3c852928d --- /dev/null +++ b/examples/xspice/various/ro_nand_digi.cir @@ -0,0 +1,50 @@ +.TITLE DIGITAL RING OSCILLATOR, 9 stages, NAND gates, enable + +.OPTIONS NOACCT NOINIT NOMOD NOPAGE METHOD=gear XTRTOL=7 +.PARAM TEMP=25 VDD=3.3 + +.subckt ringOsc int_di1 a_clock d_en0 riseDelay=200e-12 fallDelay=200e-12 + A_ring_osc0 [int_di1 d_en0] int_di2 CM_NAND0 + A_ring_osc1 [int_di2 d_en0] int_di3 CM_NAND0 + A_ring_osc2 [int_di3 d_en0] int_di4 CM_NAND0 + A_ring_osc3 [int_di4 d_en0] int_di5 CM_NAND0 + A_ring_osc4 [int_di5 d_en0] int_di6 CM_NAND0 + A_ring_osc5 [int_di6 d_en0] int_di7 CM_NAND0 + A_ring_osc6 [int_di7 d_en0] int_di8 CM_NAND0 + A_ring_osc7 [int_di8 d_en0] int_di9 CM_NAND0 + A_ring_osc8 [int_di9 d_en0] int_di1 CM_NAND0 + + .model CM_NAND0 d_nand ( rise_delay= {riseDelay} fall_delay= {fallDelay} ) + A_adc1 [%vd(a_clock 0)] [d_en0] ADC + * oscillation starts only if no unknown logic state is produced at d_en0 + .model ADC adc_bridge in_low='VDD/2' in_high='VDD/2' +.ends + +* analogue output +abridge1 [node1] [aout] dac1 +.model dac1 dac_bridge( out_low = 0 out_high = {VDD} out_undef = {VDD/2} ++ input_load = 5.0e-12 t_rise = 200e-12 t_fall = 200e-12 ) + +* calling the r.o. +X1 node1 node2 node3 ringOsc riseDelay=200e-12 fallDelay=200e-12 +* enable signal +V_en node2 0 PULSE(0 3.3 30n 1n 1n 40n 80n) + +.control + tran 200p 200n +* sim time and memory usage + rusage +* plot and display the digital data + plot node1 node3 digitop + set xbrushwidth=2 + plot node1 node3 digitop xlimit 60n 80n + edisplay +* frequency and delay (measure 10 periods) + meas tran tdiff TRIG v(aout) VAL=1.65 RISE=2 TARG v(aout) VAL=1.65 RISE=12 + let freq = 10/tdiff*1e-9 + let del = 1/freq/9/2 + echo The oscillation frequency is $&freq GHz, the gate delay is $&del ns +.endc + +.endc +.end diff --git a/src/spicelib/analysis/dcpss.c b/src/spicelib/analysis/dcpss.c index aa0cee3c8..6bd998f5a 100644 --- a/src/spicelib/analysis/dcpss.c +++ b/src/spicelib/analysis/dcpss.c @@ -1015,6 +1015,7 @@ shootingexit: FREE (err_conv) ; FREE (psstimes) ; FREE (pssvalues) ; + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return (OK) ; } } diff --git a/src/spicelib/analysis/dctran.c b/src/spicelib/analysis/dctran.c index ff203a082..083986231 100644 --- a/src/spicelib/analysis/dctran.c +++ b/src/spicelib/analysis/dctran.c @@ -449,6 +449,7 @@ DCtran(CKTcircuit *ckt, fprintf(stdout, "\nNote: Autostop after %e s, all measurement conditions are fulfilled.\n", ckt->CKTtime); /* Final return from tran upon success */ + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } if(SPfrontEnd->IFpauseTest()) { @@ -907,6 +908,7 @@ resume: SPfrontEnd->OUTendPlot(job->TRANplot); job->TRANplot = NULL; UPDATE_STATS(0); + ckt->CKTag[0] = ckt->CKTag[1] = 0.; /* return upon convergence failure */ return(E_TIMESTEP); } diff --git a/src/spicelib/analysis/optran.c b/src/spicelib/analysis/optran.c index 86dceab55..6f12dd6d3 100644 --- a/src/spicelib/analysis/optran.c +++ b/src/spicelib/analysis/optran.c @@ -484,6 +484,7 @@ OPtran(CKTcircuit *ckt, int oldconverged) SPfrontEnd->IFerrorf(ERR_INFO, "Transient op finished successfully"); ckt->CKTmaxStep = prevmaxstepsize; ckt->CKTstep = prevstepsize; + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } diff --git a/src/spicelib/devices/hfet1/hfetload.c b/src/spicelib/devices/hfet1/hfetload.c index c3c9c0530..fe4929ad7 100644 --- a/src/spicelib/devices/hfet1/hfetload.c +++ b/src/spicelib/devices/hfet1/hfetload.c @@ -313,7 +313,7 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -357,28 +357,31 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFETAqds) = *(ckt->CKTstate0 + here->HFETAqds); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFETAqgs); - if(error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFETAqgd); - if(error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - error = NIintegrate(ckt,&geq,&ceq,CDS,here->HFETAqds); - if(error) return(error); - gds += geq; - cd += *(ckt->CKTstate0 + here->HFETAcqds); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFETAcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFETAqgs); + if (error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFETAqgd); + if (error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + error = NIintegrate(ckt, &geq, &ceq, CDS, here->HFETAqds); + if (error) return(error); + gds += geq; + cd += *(ckt->CKTstate0 + here->HFETAcqds); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFETAcqgs) = *(ckt->CKTstate0 + here->HFETAcqgs); - *(ckt->CKTstate1 + here->HFETAcqgd) = + *(ckt->CKTstate1 + here->HFETAcqgd) = *(ckt->CKTstate0 + here->HFETAcqgd); - *(ckt->CKTstate1 + here->HFETAcqds) = + *(ckt->CKTstate1 + here->HFETAcqds) = *(ckt->CKTstate0 + here->HFETAcqds); + } } } } diff --git a/src/spicelib/devices/hfet2/hfet2load.c b/src/spicelib/devices/hfet2/hfet2load.c index ad891e435..63189d7ae 100644 --- a/src/spicelib/devices/hfet2/hfet2load.c +++ b/src/spicelib/devices/hfet2/hfet2load.c @@ -218,7 +218,7 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) capgd = temp; } cd = cdrain - cgd; - if((ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && + if((ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* charge storage elements */ vgs1 = *(ckt->CKTstate1 + here->HFET2vgs); @@ -248,19 +248,22 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFET2qgs) = *(ckt->CKTstate0 + here->HFET2qgs); *(ckt->CKTstate1 + here->HFET2qgd) = *(ckt->CKTstate0 + here->HFET2qgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFET2qgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFET2qgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); - *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFET2qgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFET2qgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); + *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); + } } } } diff --git a/src/spicelib/devices/hicum2/hicumL2.cpp b/src/spicelib/devices/hicum2/hicumL2.cpp index d2da2e46a..512252d7f 100644 --- a/src/spicelib/devices/hicum2/hicumL2.cpp +++ b/src/spicelib/devices/hicum2/hicumL2.cpp @@ -2611,96 +2611,99 @@ HICUMload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HICUMqcth) = *(ckt->CKTstate0 + here->HICUMqcth) ; } + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + //Integrate all charges and add the displacement current to the branch currents + //Qrbi + error = NIintegrate(ckt, &geq, &ceq, Qrbi_Vbpbi, here->HICUMqrbi); + if (error) return(error); + Ibpbi_Vbpbi += geq; + Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); + //Qjei + error = NIintegrate(ckt, &geq, &ceq, Cjei, here->HICUMqjei); + if (error) return(error); + Ibiei_Vbiei += geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); + //Qdeix + if (!model->HICUMnqs) { + error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vbiei, here->HICUMqf); + if (error) return(error); + Ibiei_Vbiei += geq; + Ibiei_Vxf = 0; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } + else { //Qdeix is now a function of Vxf(t) + error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vxf, here->HICUMqf); + if (error) return(error); + Ibiei_Vxf = geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } + //Qr + error = NIintegrate(ckt, &geq, &ceq, Qr_Vbici, here->HICUMqr); + if (error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqr); + //Qjci + error = NIintegrate(ckt, &geq, &ceq, Cjci, here->HICUMqjci); + if (error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); + //Qjep + error = NIintegrate(ckt, &geq, &ceq, Cjep, here->HICUMqjep); + if (error) return(error); + Ibpei_Vbpei += geq; + Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); + //Qjcx_i + error = NIintegrate(ckt, &geq, &ceq, Cjcx_i, here->HICUMqjcx0_i); + if (error) return(error); + Ibci_Vbci = geq; + Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); + //Qjcx_ii + error = NIintegrate(ckt, &geq, &ceq, Cjcx_ii, here->HICUMqjcx0_ii); + if (error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); + //Qdsu + error = NIintegrate(ckt, &geq, &ceq, Qdsu_Vbpci, here->HICUMqdsu); + if (error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); + //Qjs + error = NIintegrate(ckt, &geq, &ceq, Cjs, here->HICUMqjs); + if (error) return(error); + Isici_Vsici += geq; + Isici += *(ckt->CKTstate0 + here->HICUMcqjs); + //Qscp + error = NIintegrate(ckt, &geq, &ceq, Cscp, here->HICUMqscp); + if (error) return(error); + Isc_Vsc = geq; + Isc = *(ckt->CKTstate0 + here->HICUMcqscp); + if (model->HICUMnqs) { + //Qxf1 + error = NIintegrate(ckt, &geq, &ceq, Qxf1_Vxf1, here->HICUMqxf1); + if (error) return(error); + Ixf1_Vxf1 += geq; + Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); + //Qxf2 + error = NIintegrate(ckt, &geq, &ceq, Qxf2_Vxf2, here->HICUMqxf2); + if (error) return(error); + Ixf2_Vxf2 += geq; + Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); + //Qxf + error = NIintegrate(ckt, &geq, &ceq, Qxf_Vxf, here->HICUMqxf); + if (error) return(error); + Ixf_Vxf += geq; + Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); + } - //Integrate all charges and add the displacement current to the branch currents - //Qrbi - error = NIintegrate(ckt,&geq,&ceq,Qrbi_Vbpbi,here->HICUMqrbi); - if(error) return(error); - Ibpbi_Vbpbi += geq; - Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); - //Qjei - error = NIintegrate(ckt,&geq,&ceq,Cjei,here->HICUMqjei); - if(error) return(error); - Ibiei_Vbiei += geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); - //Qdeix - if (!model->HICUMnqs) { - error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vbiei,here->HICUMqf); - if(error) return(error); - Ibiei_Vbiei += geq; - Ibiei_Vxf = 0; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } else { //Qdeix is now a function of Vxf(t) - error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vxf,here->HICUMqf); - if(error) return(error); - Ibiei_Vxf = geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } - //Qr - error = NIintegrate(ckt,&geq,&ceq,Qr_Vbici,here->HICUMqr); - if(error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqr); - //Qjci - error = NIintegrate(ckt,&geq,&ceq,Cjci,here->HICUMqjci); - if(error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); - //Qjep - error = NIintegrate(ckt,&geq,&ceq,Cjep,here->HICUMqjep); - if(error) return(error); - Ibpei_Vbpei += geq; - Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); - //Qjcx_i - error = NIintegrate(ckt,&geq,&ceq,Cjcx_i,here->HICUMqjcx0_i); - if(error) return(error); - Ibci_Vbci = geq; - Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); - //Qjcx_ii - error = NIintegrate(ckt,&geq,&ceq,Cjcx_ii,here->HICUMqjcx0_ii); - if(error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); - //Qdsu - error = NIintegrate(ckt,&geq,&ceq,Qdsu_Vbpci,here->HICUMqdsu); - if(error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); - //Qjs - error = NIintegrate(ckt,&geq,&ceq,Cjs,here->HICUMqjs); - if(error) return(error); - Isici_Vsici += geq; - Isici += *(ckt->CKTstate0 + here->HICUMcqjs); - //Qscp - error = NIintegrate(ckt,&geq,&ceq,Cscp,here->HICUMqscp); - if(error) return(error); - Isc_Vsc = geq; - Isc = *(ckt->CKTstate0 + here->HICUMcqscp); - if (model->HICUMnqs) { - //Qxf1 - error = NIintegrate(ckt,&geq,&ceq,Qxf1_Vxf1,here->HICUMqxf1); - if(error) return(error); - Ixf1_Vxf1 += geq; - Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); - //Qxf2 - error = NIintegrate(ckt,&geq,&ceq,Qxf2_Vxf2,here->HICUMqxf2); - if(error) return(error); - Ixf2_Vxf2 += geq; - Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); - //Qxf - error = NIintegrate(ckt,&geq,&ceq,Qxf_Vxf,here->HICUMqxf); - if(error) return(error); - Ixf_Vxf += geq; - Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); - } - - if (model->HICUMselfheat) - { - //Qth - error = NIintegrate(ckt,&geq,&ceq,here->HICUMcth_scaled,here->HICUMqcth); - if(error) return(error); - Icth_Vrth = geq; - Icth = *(ckt->CKTstate0 + here->HICUMcqcth); + if (model->HICUMselfheat) + { + //Qth + error = NIintegrate(ckt, &geq, &ceq, here->HICUMcth_scaled, here->HICUMqcth); + if (error) return(error); + Icth_Vrth = geq; + Icth = *(ckt->CKTstate0 + here->HICUMcqcth); + } } if(ckt->CKTmode & MODEINITTRAN) { diff --git a/src/spicelib/devices/jfet/jfetload.c b/src/spicelib/devices/jfet/jfetload.c index b1e0ac106..f91d0d589 100644 --- a/src/spicelib/devices/jfet/jfetload.c +++ b/src/spicelib/devices/jfet/jfetload.c @@ -452,21 +452,24 @@ JFETload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFETqgd) = *(ckt->CKTstate0 + here->JFETqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFETqgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFETqgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); - cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFETcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFETqgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFETqgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); + cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFETcqgs) = *(ckt->CKTstate0 + here->JFETcqgs); - *(ckt->CKTstate1 + here->JFETcqgd) = + *(ckt->CKTstate1 + here->JFETcqgd) = *(ckt->CKTstate0 + here->JFETcqgd); + } } } } diff --git a/src/spicelib/devices/jfet2/jfet2load.c b/src/spicelib/devices/jfet2/jfet2load.c index ff68f3745..151e1d6c2 100644 --- a/src/spicelib/devices/jfet2/jfet2load.c +++ b/src/spicelib/devices/jfet2/jfet2load.c @@ -211,7 +211,7 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) cg = cg + cgd; cd = cd - cgd; - if ( (ckt->CKTmode & (MODETRAN | MODEAC | MODEINITSMSIG) ) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEAC | MODEINITSMSIG) ) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -244,26 +244,29 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFET2qds) = *(ckt->CKTstate0 + here->JFET2qds); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFET2qgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFET2qgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); - error = NIintegrate(ckt,&geq,&ceq,capds,here->JFET2qds); - cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); - if(error) return(error); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFET2cqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFET2qgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFET2qgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); + error = NIintegrate(ckt, &geq, &ceq, capds, here->JFET2qds); + cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); + if (error) return(error); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFET2cqgs) = *(ckt->CKTstate0 + here->JFET2cqgs); - *(ckt->CKTstate1 + here->JFET2cqgd) = + *(ckt->CKTstate1 + here->JFET2cqgd) = *(ckt->CKTstate0 + here->JFET2cqgd); - *(ckt->CKTstate1 + here->JFET2cqds) = + *(ckt->CKTstate1 + here->JFET2cqds) = *(ckt->CKTstate0 + here->JFET2cqds); + } } } } diff --git a/src/spicelib/devices/mes/mesload.c b/src/spicelib/devices/mes/mesload.c index 2226991ba..32a83a2ec 100644 --- a/src/spicelib/devices/mes/mesload.c +++ b/src/spicelib/devices/mes/mesload.c @@ -335,7 +335,7 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -382,21 +382,24 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESqgd) = *(ckt->CKTstate0 + here->MESqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESqgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESqgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgd); - cd = cd - *(ckt->CKTstate0 + here->MEScqgd); - cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MEScqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESqgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESqgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgd); + cd = cd - *(ckt->CKTstate0 + here->MEScqgd); + cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MEScqgs) = *(ckt->CKTstate0 + here->MEScqgs); - *(ckt->CKTstate1 + here->MEScqgd) = + *(ckt->CKTstate1 + here->MEScqgd) = *(ckt->CKTstate0 + here->MEScqgd); + } } } } diff --git a/src/spicelib/devices/mesa/mesaload.c b/src/spicelib/devices/mesa/mesaload.c index e1ffecd4a..9b8081f53 100644 --- a/src/spicelib/devices/mesa/mesaload.c +++ b/src/spicelib/devices/mesa/mesaload.c @@ -326,7 +326,7 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -362,22 +362,25 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESAqgd) = *(ckt->CKTstate0 + here->MESAqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESAqgs); - if(error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->MESAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESAqgd); - if(error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MESAcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESAqgs); + if (error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->MESAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESAqgd); + if (error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MESAcqgs) = *(ckt->CKTstate0 + here->MESAcqgs); - *(ckt->CKTstate1 + here->MESAcqgd) = + *(ckt->CKTstate1 + here->MESAcqgd) = *(ckt->CKTstate0 + here->MESAcqgd); + } } } } diff --git a/src/spicelib/devices/vdmos/vdmosload.c b/src/spicelib/devices/vdmos/vdmosload.c index 12f39be0c..addbe4921 100644 --- a/src/spicelib/devices/vdmos/vdmosload.c +++ b/src/spicelib/devices/vdmos/vdmosload.c @@ -477,7 +477,7 @@ VDMOSload(GENmodel *inModel, CKTcircuit *ckt) /* * vdmos capacitor model */ - if (ckt->CKTmode & (MODETRAN | MODETRANOP | MODEINITSMSIG)) { + if (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODETRANOP | MODEINITSMSIG)) { /* * calculate gate - drain, gate - source capacitors * drain-source capacitor is evaluated with the body diode below @@ -567,18 +567,24 @@ bypass: * calculate equivalent conductances and currents for * vdmos capacitors */ - error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); - if (error) return(error); - error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); - if (error) return(error); - ceqgs = ceqgs - gcgs*vgs + ckt->CKTag[0] * - *(ckt->CKTstate0 + here->VDMOSqgs); - ceqgd = ceqgd - gcgd*vgd + ckt->CKTag[0] * - *(ckt->CKTstate0 + here->VDMOSqgd); - if (selfheat) - { - error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); if (error) return(error); + error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); + if (error) return(error); + ceqgs = ceqgs - gcgs * vgs + ckt->CKTag[0] * + *(ckt->CKTstate0 + here->VDMOSqgs); + ceqgd = ceqgd - gcgd * vgd + ckt->CKTag[0] * + *(ckt->CKTstate0 + here->VDMOSqgd); + if (selfheat) + { + error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); + if (error) return(error); + } + } + else { + gcgs = gcgd = ceqgs = ceqgd = 0.; } } @@ -932,27 +938,30 @@ bypass: *(ckt->CKTstate1 + here->VDIOcapCharge) = *(ckt->CKTstate0 + here->VDIOcapCharge); } - error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); - if (error) return(error); - gd = gd + geq; - cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOcapCurrent) = - *(ckt->CKTstate0 + here->VDIOcapCurrent); - } - if (revrec) { - /* soft recovery subcircuit */ + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); + if (error) return(error); + gd = gd + geq; + cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCharge) = - *(ckt->CKTstate0 + here->VDIOsrcapCharge); + *(ckt->CKTstate1 + here->VDIOcapCurrent) = + *(ckt->CKTstate0 + here->VDIOcapCurrent); } - error = NIintegrate(ckt,&geq,&ceq,capsr,here->VDIOsrcapCharge); - if(error) return(error); - gqcsr = geq; - cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = + if (revrec) { + /* soft recovery subcircuit */ + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOsrcapCharge) = + *(ckt->CKTstate0 + here->VDIOsrcapCharge); + } + error = NIintegrate(ckt, &geq, &ceq, capsr, here->VDIOsrcapCharge); + if (error) return(error); + gqcsr = geq; + cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); + } } } } From b1717822d2bfc3031e46fd69c6976ea98a686e5e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 12:46:43 +0200 Subject: [PATCH 13/49] Revert "A digital NAND gate 9-stage ring oscillator (less than 30ms simulation time)" This reverts commit 2ef046704e83f6d834b4b72cca3e3ce8c3a3b294. --- examples/xspice/various/ro_nand_digi.cir | 50 ------- src/spicelib/analysis/dcpss.c | 1 - src/spicelib/analysis/dctran.c | 2 - src/spicelib/analysis/optran.c | 1 - src/spicelib/devices/hfet1/hfetload.c | 43 +++--- src/spicelib/devices/hfet2/hfet2load.c | 31 ++-- src/spicelib/devices/hicum2/hicumL2.cpp | 181 +++++++++++------------ src/spicelib/devices/jfet/jfetload.c | 29 ++-- src/spicelib/devices/jfet2/jfet2load.c | 39 +++-- src/spicelib/devices/mes/mesload.c | 31 ++-- src/spicelib/devices/mesa/mesaload.c | 33 ++--- src/spicelib/devices/vdmos/vdmosload.c | 67 ++++----- 12 files changed, 212 insertions(+), 296 deletions(-) delete mode 100644 examples/xspice/various/ro_nand_digi.cir diff --git a/examples/xspice/various/ro_nand_digi.cir b/examples/xspice/various/ro_nand_digi.cir deleted file mode 100644 index 3c852928d..000000000 --- a/examples/xspice/various/ro_nand_digi.cir +++ /dev/null @@ -1,50 +0,0 @@ -.TITLE DIGITAL RING OSCILLATOR, 9 stages, NAND gates, enable - -.OPTIONS NOACCT NOINIT NOMOD NOPAGE METHOD=gear XTRTOL=7 -.PARAM TEMP=25 VDD=3.3 - -.subckt ringOsc int_di1 a_clock d_en0 riseDelay=200e-12 fallDelay=200e-12 - A_ring_osc0 [int_di1 d_en0] int_di2 CM_NAND0 - A_ring_osc1 [int_di2 d_en0] int_di3 CM_NAND0 - A_ring_osc2 [int_di3 d_en0] int_di4 CM_NAND0 - A_ring_osc3 [int_di4 d_en0] int_di5 CM_NAND0 - A_ring_osc4 [int_di5 d_en0] int_di6 CM_NAND0 - A_ring_osc5 [int_di6 d_en0] int_di7 CM_NAND0 - A_ring_osc6 [int_di7 d_en0] int_di8 CM_NAND0 - A_ring_osc7 [int_di8 d_en0] int_di9 CM_NAND0 - A_ring_osc8 [int_di9 d_en0] int_di1 CM_NAND0 - - .model CM_NAND0 d_nand ( rise_delay= {riseDelay} fall_delay= {fallDelay} ) - A_adc1 [%vd(a_clock 0)] [d_en0] ADC - * oscillation starts only if no unknown logic state is produced at d_en0 - .model ADC adc_bridge in_low='VDD/2' in_high='VDD/2' -.ends - -* analogue output -abridge1 [node1] [aout] dac1 -.model dac1 dac_bridge( out_low = 0 out_high = {VDD} out_undef = {VDD/2} -+ input_load = 5.0e-12 t_rise = 200e-12 t_fall = 200e-12 ) - -* calling the r.o. -X1 node1 node2 node3 ringOsc riseDelay=200e-12 fallDelay=200e-12 -* enable signal -V_en node2 0 PULSE(0 3.3 30n 1n 1n 40n 80n) - -.control - tran 200p 200n -* sim time and memory usage - rusage -* plot and display the digital data - plot node1 node3 digitop - set xbrushwidth=2 - plot node1 node3 digitop xlimit 60n 80n - edisplay -* frequency and delay (measure 10 periods) - meas tran tdiff TRIG v(aout) VAL=1.65 RISE=2 TARG v(aout) VAL=1.65 RISE=12 - let freq = 10/tdiff*1e-9 - let del = 1/freq/9/2 - echo The oscillation frequency is $&freq GHz, the gate delay is $&del ns -.endc - -.endc -.end diff --git a/src/spicelib/analysis/dcpss.c b/src/spicelib/analysis/dcpss.c index 6bd998f5a..aa0cee3c8 100644 --- a/src/spicelib/analysis/dcpss.c +++ b/src/spicelib/analysis/dcpss.c @@ -1015,7 +1015,6 @@ shootingexit: FREE (err_conv) ; FREE (psstimes) ; FREE (pssvalues) ; - ckt->CKTag[0] = ckt->CKTag[1] = 0.; return (OK) ; } } diff --git a/src/spicelib/analysis/dctran.c b/src/spicelib/analysis/dctran.c index 083986231..ff203a082 100644 --- a/src/spicelib/analysis/dctran.c +++ b/src/spicelib/analysis/dctran.c @@ -449,7 +449,6 @@ DCtran(CKTcircuit *ckt, fprintf(stdout, "\nNote: Autostop after %e s, all measurement conditions are fulfilled.\n", ckt->CKTtime); /* Final return from tran upon success */ - ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } if(SPfrontEnd->IFpauseTest()) { @@ -908,7 +907,6 @@ resume: SPfrontEnd->OUTendPlot(job->TRANplot); job->TRANplot = NULL; UPDATE_STATS(0); - ckt->CKTag[0] = ckt->CKTag[1] = 0.; /* return upon convergence failure */ return(E_TIMESTEP); } diff --git a/src/spicelib/analysis/optran.c b/src/spicelib/analysis/optran.c index 6f12dd6d3..86dceab55 100644 --- a/src/spicelib/analysis/optran.c +++ b/src/spicelib/analysis/optran.c @@ -484,7 +484,6 @@ OPtran(CKTcircuit *ckt, int oldconverged) SPfrontEnd->IFerrorf(ERR_INFO, "Transient op finished successfully"); ckt->CKTmaxStep = prevmaxstepsize; ckt->CKTstep = prevstepsize; - ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } diff --git a/src/spicelib/devices/hfet1/hfetload.c b/src/spicelib/devices/hfet1/hfetload.c index fe4929ad7..c3c9c0530 100644 --- a/src/spicelib/devices/hfet1/hfetload.c +++ b/src/spicelib/devices/hfet1/hfetload.c @@ -313,7 +313,7 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -357,31 +357,28 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFETAqds) = *(ckt->CKTstate0 + here->HFETAqds); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFETAqgs); - if (error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFETAqgd); - if (error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - error = NIintegrate(ckt, &geq, &ceq, CDS, here->HFETAqds); - if (error) return(error); - gds += geq; - cd += *(ckt->CKTstate0 + here->HFETAcqds); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFETAcqgs) = + error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFETAqgs); + if(error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFETAqgd); + if(error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + error = NIintegrate(ckt,&geq,&ceq,CDS,here->HFETAqds); + if(error) return(error); + gds += geq; + cd += *(ckt->CKTstate0 + here->HFETAcqds); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFETAcqgs) = *(ckt->CKTstate0 + here->HFETAcqgs); - *(ckt->CKTstate1 + here->HFETAcqgd) = + *(ckt->CKTstate1 + here->HFETAcqgd) = *(ckt->CKTstate0 + here->HFETAcqgd); - *(ckt->CKTstate1 + here->HFETAcqds) = + *(ckt->CKTstate1 + here->HFETAcqds) = *(ckt->CKTstate0 + here->HFETAcqds); - } } } } diff --git a/src/spicelib/devices/hfet2/hfet2load.c b/src/spicelib/devices/hfet2/hfet2load.c index 63189d7ae..ad891e435 100644 --- a/src/spicelib/devices/hfet2/hfet2load.c +++ b/src/spicelib/devices/hfet2/hfet2load.c @@ -218,7 +218,7 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) capgd = temp; } cd = cdrain - cgd; - if((ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && + if((ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* charge storage elements */ vgs1 = *(ckt->CKTstate1 + here->HFET2vgs); @@ -248,22 +248,19 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFET2qgs) = *(ckt->CKTstate0 + here->HFET2qgs); *(ckt->CKTstate1 + here->HFET2qgd) = *(ckt->CKTstate0 + here->HFET2qgd); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFET2qgs); - if (error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); - error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFET2qgd); - if (error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); - *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); - } + error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFET2qgs); + if(error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); + error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFET2qgd); + if(error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); + *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); } } } diff --git a/src/spicelib/devices/hicum2/hicumL2.cpp b/src/spicelib/devices/hicum2/hicumL2.cpp index 512252d7f..d2da2e46a 100644 --- a/src/spicelib/devices/hicum2/hicumL2.cpp +++ b/src/spicelib/devices/hicum2/hicumL2.cpp @@ -2611,99 +2611,96 @@ HICUMload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HICUMqcth) = *(ckt->CKTstate0 + here->HICUMqcth) ; } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - //Integrate all charges and add the displacement current to the branch currents - //Qrbi - error = NIintegrate(ckt, &geq, &ceq, Qrbi_Vbpbi, here->HICUMqrbi); - if (error) return(error); - Ibpbi_Vbpbi += geq; - Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); - //Qjei - error = NIintegrate(ckt, &geq, &ceq, Cjei, here->HICUMqjei); - if (error) return(error); - Ibiei_Vbiei += geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); - //Qdeix - if (!model->HICUMnqs) { - error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vbiei, here->HICUMqf); - if (error) return(error); - Ibiei_Vbiei += geq; - Ibiei_Vxf = 0; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } - else { //Qdeix is now a function of Vxf(t) - error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vxf, here->HICUMqf); - if (error) return(error); - Ibiei_Vxf = geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } - //Qr - error = NIintegrate(ckt, &geq, &ceq, Qr_Vbici, here->HICUMqr); - if (error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqr); - //Qjci - error = NIintegrate(ckt, &geq, &ceq, Cjci, here->HICUMqjci); - if (error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); - //Qjep - error = NIintegrate(ckt, &geq, &ceq, Cjep, here->HICUMqjep); - if (error) return(error); - Ibpei_Vbpei += geq; - Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); - //Qjcx_i - error = NIintegrate(ckt, &geq, &ceq, Cjcx_i, here->HICUMqjcx0_i); - if (error) return(error); - Ibci_Vbci = geq; - Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); - //Qjcx_ii - error = NIintegrate(ckt, &geq, &ceq, Cjcx_ii, here->HICUMqjcx0_ii); - if (error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); - //Qdsu - error = NIintegrate(ckt, &geq, &ceq, Qdsu_Vbpci, here->HICUMqdsu); - if (error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); - //Qjs - error = NIintegrate(ckt, &geq, &ceq, Cjs, here->HICUMqjs); - if (error) return(error); - Isici_Vsici += geq; - Isici += *(ckt->CKTstate0 + here->HICUMcqjs); - //Qscp - error = NIintegrate(ckt, &geq, &ceq, Cscp, here->HICUMqscp); - if (error) return(error); - Isc_Vsc = geq; - Isc = *(ckt->CKTstate0 + here->HICUMcqscp); - if (model->HICUMnqs) { - //Qxf1 - error = NIintegrate(ckt, &geq, &ceq, Qxf1_Vxf1, here->HICUMqxf1); - if (error) return(error); - Ixf1_Vxf1 += geq; - Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); - //Qxf2 - error = NIintegrate(ckt, &geq, &ceq, Qxf2_Vxf2, here->HICUMqxf2); - if (error) return(error); - Ixf2_Vxf2 += geq; - Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); - //Qxf - error = NIintegrate(ckt, &geq, &ceq, Qxf_Vxf, here->HICUMqxf); - if (error) return(error); - Ixf_Vxf += geq; - Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); - } - if (model->HICUMselfheat) - { - //Qth - error = NIintegrate(ckt, &geq, &ceq, here->HICUMcth_scaled, here->HICUMqcth); - if (error) return(error); - Icth_Vrth = geq; - Icth = *(ckt->CKTstate0 + here->HICUMcqcth); - } + //Integrate all charges and add the displacement current to the branch currents + //Qrbi + error = NIintegrate(ckt,&geq,&ceq,Qrbi_Vbpbi,here->HICUMqrbi); + if(error) return(error); + Ibpbi_Vbpbi += geq; + Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); + //Qjei + error = NIintegrate(ckt,&geq,&ceq,Cjei,here->HICUMqjei); + if(error) return(error); + Ibiei_Vbiei += geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); + //Qdeix + if (!model->HICUMnqs) { + error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vbiei,here->HICUMqf); + if(error) return(error); + Ibiei_Vbiei += geq; + Ibiei_Vxf = 0; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } else { //Qdeix is now a function of Vxf(t) + error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vxf,here->HICUMqf); + if(error) return(error); + Ibiei_Vxf = geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } + //Qr + error = NIintegrate(ckt,&geq,&ceq,Qr_Vbici,here->HICUMqr); + if(error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqr); + //Qjci + error = NIintegrate(ckt,&geq,&ceq,Cjci,here->HICUMqjci); + if(error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); + //Qjep + error = NIintegrate(ckt,&geq,&ceq,Cjep,here->HICUMqjep); + if(error) return(error); + Ibpei_Vbpei += geq; + Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); + //Qjcx_i + error = NIintegrate(ckt,&geq,&ceq,Cjcx_i,here->HICUMqjcx0_i); + if(error) return(error); + Ibci_Vbci = geq; + Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); + //Qjcx_ii + error = NIintegrate(ckt,&geq,&ceq,Cjcx_ii,here->HICUMqjcx0_ii); + if(error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); + //Qdsu + error = NIintegrate(ckt,&geq,&ceq,Qdsu_Vbpci,here->HICUMqdsu); + if(error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); + //Qjs + error = NIintegrate(ckt,&geq,&ceq,Cjs,here->HICUMqjs); + if(error) return(error); + Isici_Vsici += geq; + Isici += *(ckt->CKTstate0 + here->HICUMcqjs); + //Qscp + error = NIintegrate(ckt,&geq,&ceq,Cscp,here->HICUMqscp); + if(error) return(error); + Isc_Vsc = geq; + Isc = *(ckt->CKTstate0 + here->HICUMcqscp); + if (model->HICUMnqs) { + //Qxf1 + error = NIintegrate(ckt,&geq,&ceq,Qxf1_Vxf1,here->HICUMqxf1); + if(error) return(error); + Ixf1_Vxf1 += geq; + Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); + //Qxf2 + error = NIintegrate(ckt,&geq,&ceq,Qxf2_Vxf2,here->HICUMqxf2); + if(error) return(error); + Ixf2_Vxf2 += geq; + Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); + //Qxf + error = NIintegrate(ckt,&geq,&ceq,Qxf_Vxf,here->HICUMqxf); + if(error) return(error); + Ixf_Vxf += geq; + Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); + } + + if (model->HICUMselfheat) + { + //Qth + error = NIintegrate(ckt,&geq,&ceq,here->HICUMcth_scaled,here->HICUMqcth); + if(error) return(error); + Icth_Vrth = geq; + Icth = *(ckt->CKTstate0 + here->HICUMcqcth); } if(ckt->CKTmode & MODEINITTRAN) { diff --git a/src/spicelib/devices/jfet/jfetload.c b/src/spicelib/devices/jfet/jfetload.c index f91d0d589..b1e0ac106 100644 --- a/src/spicelib/devices/jfet/jfetload.c +++ b/src/spicelib/devices/jfet/jfetload.c @@ -452,24 +452,21 @@ JFETload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFETqgd) = *(ckt->CKTstate0 + here->JFETqgd); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFETqgs); - if (error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); - error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFETqgd); - if (error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); - cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFETcqgs) = + error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFETqgs); + if(error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); + error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFETqgd); + if(error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); + cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFETcqgs) = *(ckt->CKTstate0 + here->JFETcqgs); - *(ckt->CKTstate1 + here->JFETcqgd) = + *(ckt->CKTstate1 + here->JFETcqgd) = *(ckt->CKTstate0 + here->JFETcqgd); - } } } } diff --git a/src/spicelib/devices/jfet2/jfet2load.c b/src/spicelib/devices/jfet2/jfet2load.c index 151e1d6c2..ff68f3745 100644 --- a/src/spicelib/devices/jfet2/jfet2load.c +++ b/src/spicelib/devices/jfet2/jfet2load.c @@ -211,7 +211,7 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) cg = cg + cgd; cd = cd - cgd; - if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEAC | MODEINITSMSIG) ) || + if ( (ckt->CKTmode & (MODETRAN | MODEAC | MODEINITSMSIG) ) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -244,29 +244,26 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFET2qds) = *(ckt->CKTstate0 + here->JFET2qds); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFET2qgs); - if (error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); - error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFET2qgd); - if (error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); - error = NIintegrate(ckt, &geq, &ceq, capds, here->JFET2qds); - cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); - if (error) return(error); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFET2cqgs) = + error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFET2qgs); + if(error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); + error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFET2qgd); + if(error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); + error = NIintegrate(ckt,&geq,&ceq,capds,here->JFET2qds); + cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); + if(error) return(error); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFET2cqgs) = *(ckt->CKTstate0 + here->JFET2cqgs); - *(ckt->CKTstate1 + here->JFET2cqgd) = + *(ckt->CKTstate1 + here->JFET2cqgd) = *(ckt->CKTstate0 + here->JFET2cqgd); - *(ckt->CKTstate1 + here->JFET2cqds) = + *(ckt->CKTstate1 + here->JFET2cqds) = *(ckt->CKTstate0 + here->JFET2cqds); - } } } } diff --git a/src/spicelib/devices/mes/mesload.c b/src/spicelib/devices/mes/mesload.c index 32a83a2ec..2226991ba 100644 --- a/src/spicelib/devices/mes/mesload.c +++ b/src/spicelib/devices/mes/mesload.c @@ -335,7 +335,7 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -382,24 +382,21 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESqgd) = *(ckt->CKTstate0 + here->MESqgd); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESqgs); - if (error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgs); - error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESqgd); - if (error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgd); - cd = cd - *(ckt->CKTstate0 + here->MEScqgd); - cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MEScqgs) = + error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESqgs); + if(error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgs); + error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESqgd); + if(error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgd); + cd = cd - *(ckt->CKTstate0 + here->MEScqgd); + cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MEScqgs) = *(ckt->CKTstate0 + here->MEScqgs); - *(ckt->CKTstate1 + here->MEScqgd) = + *(ckt->CKTstate1 + here->MEScqgd) = *(ckt->CKTstate0 + here->MEScqgd); - } } } } diff --git a/src/spicelib/devices/mesa/mesaload.c b/src/spicelib/devices/mesa/mesaload.c index 9b8081f53..e1ffecd4a 100644 --- a/src/spicelib/devices/mesa/mesaload.c +++ b/src/spicelib/devices/mesa/mesaload.c @@ -326,7 +326,7 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -362,25 +362,22 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESAqgd) = *(ckt->CKTstate0 + here->MESAqgd); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESAqgs); - if (error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->MESAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESAqgd); - if (error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MESAcqgs) = + error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESAqgs); + if(error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->MESAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESAqgd); + if(error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MESAcqgs) = *(ckt->CKTstate0 + here->MESAcqgs); - *(ckt->CKTstate1 + here->MESAcqgd) = + *(ckt->CKTstate1 + here->MESAcqgd) = *(ckt->CKTstate0 + here->MESAcqgd); - } } } } diff --git a/src/spicelib/devices/vdmos/vdmosload.c b/src/spicelib/devices/vdmos/vdmosload.c index addbe4921..12f39be0c 100644 --- a/src/spicelib/devices/vdmos/vdmosload.c +++ b/src/spicelib/devices/vdmos/vdmosload.c @@ -477,7 +477,7 @@ VDMOSload(GENmodel *inModel, CKTcircuit *ckt) /* * vdmos capacitor model */ - if (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODETRANOP | MODEINITSMSIG)) { + if (ckt->CKTmode & (MODETRAN | MODETRANOP | MODEINITSMSIG)) { /* * calculate gate - drain, gate - source capacitors * drain-source capacitor is evaluated with the body diode below @@ -567,24 +567,18 @@ bypass: * calculate equivalent conductances and currents for * vdmos capacitors */ - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); - if (error) return(error); - error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); - if (error) return(error); - ceqgs = ceqgs - gcgs * vgs + ckt->CKTag[0] * + error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); + if (error) return(error); + error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); + if (error) return(error); + ceqgs = ceqgs - gcgs*vgs + ckt->CKTag[0] * *(ckt->CKTstate0 + here->VDMOSqgs); - ceqgd = ceqgd - gcgd * vgd + ckt->CKTag[0] * + ceqgd = ceqgd - gcgd*vgd + ckt->CKTag[0] * *(ckt->CKTstate0 + here->VDMOSqgd); - if (selfheat) - { - error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); - if (error) return(error); - } - } - else { - gcgs = gcgd = ceqgs = ceqgd = 0.; + if (selfheat) + { + error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); + if (error) return(error); } } @@ -938,30 +932,27 @@ bypass: *(ckt->CKTstate1 + here->VDIOcapCharge) = *(ckt->CKTstate0 + here->VDIOcapCharge); } - /* no integration, if dc sweep, but keep evaluating capacitances */ - if (!(ckt->CKTmode & MODEDCTRANCURVE)) { - error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); - if (error) return(error); - gd = gd + geq; - cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); + error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); + if (error) return(error); + gd = gd + geq; + cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOcapCurrent) = + *(ckt->CKTstate0 + here->VDIOcapCurrent); + } + if (revrec) { + /* soft recovery subcircuit */ if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOcapCurrent) = - *(ckt->CKTstate0 + here->VDIOcapCurrent); - } - if (revrec) { - /* soft recovery subcircuit */ - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCharge) = + *(ckt->CKTstate1 + here->VDIOsrcapCharge) = *(ckt->CKTstate0 + here->VDIOsrcapCharge); - } - error = NIintegrate(ckt, &geq, &ceq, capsr, here->VDIOsrcapCharge); - if (error) return(error); - gqcsr = geq; - cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = + } + error = NIintegrate(ckt,&geq,&ceq,capsr,here->VDIOsrcapCharge); + if(error) return(error); + gqcsr = geq; + cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); - } } } } From 507351ae01501fb567b7bd5315f7415a4b858c40 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 14:26:25 +0200 Subject: [PATCH 14/49] A digital NAND gate 9-stage ring oscillator (less than 30ms simulation time) --- examples/xspice/various/ro_nand_digi.cir | 50 ++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 examples/xspice/various/ro_nand_digi.cir diff --git a/examples/xspice/various/ro_nand_digi.cir b/examples/xspice/various/ro_nand_digi.cir new file mode 100644 index 000000000..3c852928d --- /dev/null +++ b/examples/xspice/various/ro_nand_digi.cir @@ -0,0 +1,50 @@ +.TITLE DIGITAL RING OSCILLATOR, 9 stages, NAND gates, enable + +.OPTIONS NOACCT NOINIT NOMOD NOPAGE METHOD=gear XTRTOL=7 +.PARAM TEMP=25 VDD=3.3 + +.subckt ringOsc int_di1 a_clock d_en0 riseDelay=200e-12 fallDelay=200e-12 + A_ring_osc0 [int_di1 d_en0] int_di2 CM_NAND0 + A_ring_osc1 [int_di2 d_en0] int_di3 CM_NAND0 + A_ring_osc2 [int_di3 d_en0] int_di4 CM_NAND0 + A_ring_osc3 [int_di4 d_en0] int_di5 CM_NAND0 + A_ring_osc4 [int_di5 d_en0] int_di6 CM_NAND0 + A_ring_osc5 [int_di6 d_en0] int_di7 CM_NAND0 + A_ring_osc6 [int_di7 d_en0] int_di8 CM_NAND0 + A_ring_osc7 [int_di8 d_en0] int_di9 CM_NAND0 + A_ring_osc8 [int_di9 d_en0] int_di1 CM_NAND0 + + .model CM_NAND0 d_nand ( rise_delay= {riseDelay} fall_delay= {fallDelay} ) + A_adc1 [%vd(a_clock 0)] [d_en0] ADC + * oscillation starts only if no unknown logic state is produced at d_en0 + .model ADC adc_bridge in_low='VDD/2' in_high='VDD/2' +.ends + +* analogue output +abridge1 [node1] [aout] dac1 +.model dac1 dac_bridge( out_low = 0 out_high = {VDD} out_undef = {VDD/2} ++ input_load = 5.0e-12 t_rise = 200e-12 t_fall = 200e-12 ) + +* calling the r.o. +X1 node1 node2 node3 ringOsc riseDelay=200e-12 fallDelay=200e-12 +* enable signal +V_en node2 0 PULSE(0 3.3 30n 1n 1n 40n 80n) + +.control + tran 200p 200n +* sim time and memory usage + rusage +* plot and display the digital data + plot node1 node3 digitop + set xbrushwidth=2 + plot node1 node3 digitop xlimit 60n 80n + edisplay +* frequency and delay (measure 10 periods) + meas tran tdiff TRIG v(aout) VAL=1.65 RISE=2 TARG v(aout) VAL=1.65 RISE=12 + let freq = 10/tdiff*1e-9 + let del = 1/freq/9/2 + echo The oscillation frequency is $&freq GHz, the gate delay is $&del ns +.endc + +.endc +.end From 88e94b26c4d8d3ede31b47251f3a0369069f11fb Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Wed, 3 Jun 2026 16:40:45 +0200 Subject: [PATCH 15/49] Reset ckt->CKTag[0] and ckt->CKTag[1] upon successful return from transient simulation. --- src/spicelib/analysis/dcpss.c | 1 + src/spicelib/analysis/dctran.c | 2 ++ src/spicelib/analysis/optran.c | 1 + 3 files changed, 4 insertions(+) diff --git a/src/spicelib/analysis/dcpss.c b/src/spicelib/analysis/dcpss.c index aa0cee3c8..6bd998f5a 100644 --- a/src/spicelib/analysis/dcpss.c +++ b/src/spicelib/analysis/dcpss.c @@ -1015,6 +1015,7 @@ shootingexit: FREE (err_conv) ; FREE (psstimes) ; FREE (pssvalues) ; + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return (OK) ; } } diff --git a/src/spicelib/analysis/dctran.c b/src/spicelib/analysis/dctran.c index ff203a082..083986231 100644 --- a/src/spicelib/analysis/dctran.c +++ b/src/spicelib/analysis/dctran.c @@ -449,6 +449,7 @@ DCtran(CKTcircuit *ckt, fprintf(stdout, "\nNote: Autostop after %e s, all measurement conditions are fulfilled.\n", ckt->CKTtime); /* Final return from tran upon success */ + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } if(SPfrontEnd->IFpauseTest()) { @@ -907,6 +908,7 @@ resume: SPfrontEnd->OUTendPlot(job->TRANplot); job->TRANplot = NULL; UPDATE_STATS(0); + ckt->CKTag[0] = ckt->CKTag[1] = 0.; /* return upon convergence failure */ return(E_TIMESTEP); } diff --git a/src/spicelib/analysis/optran.c b/src/spicelib/analysis/optran.c index 86dceab55..6f12dd6d3 100644 --- a/src/spicelib/analysis/optran.c +++ b/src/spicelib/analysis/optran.c @@ -484,6 +484,7 @@ OPtran(CKTcircuit *ckt, int oldconverged) SPfrontEnd->IFerrorf(ERR_INFO, "Transient op finished successfully"); ckt->CKTmaxStep = prevmaxstepsize; ckt->CKTstep = prevstepsize; + ckt->CKTag[0] = ckt->CKTag[1] = 0.; return(OK); } From ae06dfe978080da0cead68c98991c6a9b282b062 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 14:33:05 +0200 Subject: [PATCH 16/49] No integration, if dc sweep is to return cpacitances --- src/spicelib/devices/hicum2/hicumL2.cpp | 181 ++++++++++++------------ src/spicelib/devices/jfet/jfetload.c | 29 ++-- 2 files changed, 108 insertions(+), 102 deletions(-) diff --git a/src/spicelib/devices/hicum2/hicumL2.cpp b/src/spicelib/devices/hicum2/hicumL2.cpp index d2da2e46a..512252d7f 100644 --- a/src/spicelib/devices/hicum2/hicumL2.cpp +++ b/src/spicelib/devices/hicum2/hicumL2.cpp @@ -2611,96 +2611,99 @@ HICUMload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HICUMqcth) = *(ckt->CKTstate0 + here->HICUMqcth) ; } + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + //Integrate all charges and add the displacement current to the branch currents + //Qrbi + error = NIintegrate(ckt, &geq, &ceq, Qrbi_Vbpbi, here->HICUMqrbi); + if (error) return(error); + Ibpbi_Vbpbi += geq; + Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); + //Qjei + error = NIintegrate(ckt, &geq, &ceq, Cjei, here->HICUMqjei); + if (error) return(error); + Ibiei_Vbiei += geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); + //Qdeix + if (!model->HICUMnqs) { + error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vbiei, here->HICUMqf); + if (error) return(error); + Ibiei_Vbiei += geq; + Ibiei_Vxf = 0; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } + else { //Qdeix is now a function of Vxf(t) + error = NIintegrate(ckt, &geq, &ceq, Qdeix_Vxf, here->HICUMqf); + if (error) return(error); + Ibiei_Vxf = geq; + Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); + } + //Qr + error = NIintegrate(ckt, &geq, &ceq, Qr_Vbici, here->HICUMqr); + if (error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqr); + //Qjci + error = NIintegrate(ckt, &geq, &ceq, Cjci, here->HICUMqjci); + if (error) return(error); + Ibici_Vbici += geq; + Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); + //Qjep + error = NIintegrate(ckt, &geq, &ceq, Cjep, here->HICUMqjep); + if (error) return(error); + Ibpei_Vbpei += geq; + Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); + //Qjcx_i + error = NIintegrate(ckt, &geq, &ceq, Cjcx_i, here->HICUMqjcx0_i); + if (error) return(error); + Ibci_Vbci = geq; + Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); + //Qjcx_ii + error = NIintegrate(ckt, &geq, &ceq, Cjcx_ii, here->HICUMqjcx0_ii); + if (error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); + //Qdsu + error = NIintegrate(ckt, &geq, &ceq, Qdsu_Vbpci, here->HICUMqdsu); + if (error) return(error); + Ibpci_Vbpci += geq; + Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); + //Qjs + error = NIintegrate(ckt, &geq, &ceq, Cjs, here->HICUMqjs); + if (error) return(error); + Isici_Vsici += geq; + Isici += *(ckt->CKTstate0 + here->HICUMcqjs); + //Qscp + error = NIintegrate(ckt, &geq, &ceq, Cscp, here->HICUMqscp); + if (error) return(error); + Isc_Vsc = geq; + Isc = *(ckt->CKTstate0 + here->HICUMcqscp); + if (model->HICUMnqs) { + //Qxf1 + error = NIintegrate(ckt, &geq, &ceq, Qxf1_Vxf1, here->HICUMqxf1); + if (error) return(error); + Ixf1_Vxf1 += geq; + Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); + //Qxf2 + error = NIintegrate(ckt, &geq, &ceq, Qxf2_Vxf2, here->HICUMqxf2); + if (error) return(error); + Ixf2_Vxf2 += geq; + Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); + //Qxf + error = NIintegrate(ckt, &geq, &ceq, Qxf_Vxf, here->HICUMqxf); + if (error) return(error); + Ixf_Vxf += geq; + Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); + } - //Integrate all charges and add the displacement current to the branch currents - //Qrbi - error = NIintegrate(ckt,&geq,&ceq,Qrbi_Vbpbi,here->HICUMqrbi); - if(error) return(error); - Ibpbi_Vbpbi += geq; - Ibpbi += *(ckt->CKTstate0 + here->HICUMcqrbi); - //Qjei - error = NIintegrate(ckt,&geq,&ceq,Cjei,here->HICUMqjei); - if(error) return(error); - Ibiei_Vbiei += geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqjei); - //Qdeix - if (!model->HICUMnqs) { - error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vbiei,here->HICUMqf); - if(error) return(error); - Ibiei_Vbiei += geq; - Ibiei_Vxf = 0; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } else { //Qdeix is now a function of Vxf(t) - error = NIintegrate(ckt,&geq,&ceq,Qdeix_Vxf,here->HICUMqf); - if(error) return(error); - Ibiei_Vxf = geq; - Ibiei += *(ckt->CKTstate0 + here->HICUMcqf); - } - //Qr - error = NIintegrate(ckt,&geq,&ceq,Qr_Vbici,here->HICUMqr); - if(error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqr); - //Qjci - error = NIintegrate(ckt,&geq,&ceq,Cjci,here->HICUMqjci); - if(error) return(error); - Ibici_Vbici += geq; - Ibici += *(ckt->CKTstate0 + here->HICUMcqjci); - //Qjep - error = NIintegrate(ckt,&geq,&ceq,Cjep,here->HICUMqjep); - if(error) return(error); - Ibpei_Vbpei += geq; - Ibpei += *(ckt->CKTstate0 + here->HICUMcqjep); - //Qjcx_i - error = NIintegrate(ckt,&geq,&ceq,Cjcx_i,here->HICUMqjcx0_i); - if(error) return(error); - Ibci_Vbci = geq; - Ibci = *(ckt->CKTstate0 + here->HICUMcqcx0_t_i); - //Qjcx_ii - error = NIintegrate(ckt,&geq,&ceq,Cjcx_ii,here->HICUMqjcx0_ii); - if(error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqcx0_t_ii); - //Qdsu - error = NIintegrate(ckt,&geq,&ceq,Qdsu_Vbpci,here->HICUMqdsu); - if(error) return(error); - Ibpci_Vbpci += geq; - Ibpci += *(ckt->CKTstate0 + here->HICUMcqdsu); - //Qjs - error = NIintegrate(ckt,&geq,&ceq,Cjs,here->HICUMqjs); - if(error) return(error); - Isici_Vsici += geq; - Isici += *(ckt->CKTstate0 + here->HICUMcqjs); - //Qscp - error = NIintegrate(ckt,&geq,&ceq,Cscp,here->HICUMqscp); - if(error) return(error); - Isc_Vsc = geq; - Isc = *(ckt->CKTstate0 + here->HICUMcqscp); - if (model->HICUMnqs) { - //Qxf1 - error = NIintegrate(ckt,&geq,&ceq,Qxf1_Vxf1,here->HICUMqxf1); - if(error) return(error); - Ixf1_Vxf1 += geq; - Ixf1 += *(ckt->CKTstate0 + here->HICUMcqxf1); - //Qxf2 - error = NIintegrate(ckt,&geq,&ceq,Qxf2_Vxf2,here->HICUMqxf2); - if(error) return(error); - Ixf2_Vxf2 += geq; - Ixf2 += *(ckt->CKTstate0 + here->HICUMcqxf2); - //Qxf - error = NIintegrate(ckt,&geq,&ceq,Qxf_Vxf,here->HICUMqxf); - if(error) return(error); - Ixf_Vxf += geq; - Ixf += *(ckt->CKTstate0 + here->HICUMcqxf); - } - - if (model->HICUMselfheat) - { - //Qth - error = NIintegrate(ckt,&geq,&ceq,here->HICUMcth_scaled,here->HICUMqcth); - if(error) return(error); - Icth_Vrth = geq; - Icth = *(ckt->CKTstate0 + here->HICUMcqcth); + if (model->HICUMselfheat) + { + //Qth + error = NIintegrate(ckt, &geq, &ceq, here->HICUMcth_scaled, here->HICUMqcth); + if (error) return(error); + Icth_Vrth = geq; + Icth = *(ckt->CKTstate0 + here->HICUMcqcth); + } } if(ckt->CKTmode & MODEINITTRAN) { diff --git a/src/spicelib/devices/jfet/jfetload.c b/src/spicelib/devices/jfet/jfetload.c index b1e0ac106..f91d0d589 100644 --- a/src/spicelib/devices/jfet/jfetload.c +++ b/src/spicelib/devices/jfet/jfetload.c @@ -452,21 +452,24 @@ JFETload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFETqgd) = *(ckt->CKTstate0 + here->JFETqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFETqgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFETqgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); - cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFETcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFETqgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFETqgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFETcqgd); + cd = cd - *(ckt->CKTstate0 + here->JFETcqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFETcqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFETcqgs) = *(ckt->CKTstate0 + here->JFETcqgs); - *(ckt->CKTstate1 + here->JFETcqgd) = + *(ckt->CKTstate1 + here->JFETcqgd) = *(ckt->CKTstate0 + here->JFETcqgd); + } } } } From 2a0a3ab40310b4ff296151f517a4290751bd487b Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 14:34:52 +0200 Subject: [PATCH 17/49] Add MODEDCTRANCURVE to enable returning capacitance upon dc sweep. Exclude integration if MODEDCTRANCURVE is active. --- src/spicelib/devices/hfet1/hfetload.c | 43 ++++++++++++++------------ src/spicelib/devices/hfet2/hfet2load.c | 31 ++++++++++--------- src/spicelib/devices/jfet2/jfet2load.c | 39 ++++++++++++----------- src/spicelib/devices/mes/mesload.c | 31 ++++++++++--------- src/spicelib/devices/mesa/mesaload.c | 33 +++++++++++--------- 5 files changed, 96 insertions(+), 81 deletions(-) diff --git a/src/spicelib/devices/hfet1/hfetload.c b/src/spicelib/devices/hfet1/hfetload.c index c3c9c0530..fe4929ad7 100644 --- a/src/spicelib/devices/hfet1/hfetload.c +++ b/src/spicelib/devices/hfet1/hfetload.c @@ -313,7 +313,7 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -357,28 +357,31 @@ int HFETAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFETAqds) = *(ckt->CKTstate0 + here->HFETAqds); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFETAqgs); - if(error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFETAqgd); - if(error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - error = NIintegrate(ckt,&geq,&ceq,CDS,here->HFETAqds); - if(error) return(error); - gds += geq; - cd += *(ckt->CKTstate0 + here->HFETAcqds); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFETAcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFETAqgs); + if (error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->HFETAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFETAqgd); + if (error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->HFETAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + error = NIintegrate(ckt, &geq, &ceq, CDS, here->HFETAqds); + if (error) return(error); + gds += geq; + cd += *(ckt->CKTstate0 + here->HFETAcqds); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFETAcqgs) = *(ckt->CKTstate0 + here->HFETAcqgs); - *(ckt->CKTstate1 + here->HFETAcqgd) = + *(ckt->CKTstate1 + here->HFETAcqgd) = *(ckt->CKTstate0 + here->HFETAcqgd); - *(ckt->CKTstate1 + here->HFETAcqds) = + *(ckt->CKTstate1 + here->HFETAcqds) = *(ckt->CKTstate0 + here->HFETAcqds); + } } } } diff --git a/src/spicelib/devices/hfet2/hfet2load.c b/src/spicelib/devices/hfet2/hfet2load.c index ad891e435..63189d7ae 100644 --- a/src/spicelib/devices/hfet2/hfet2load.c +++ b/src/spicelib/devices/hfet2/hfet2load.c @@ -218,7 +218,7 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) capgd = temp; } cd = cdrain - cgd; - if((ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && + if((ckt->CKTmode & (MODEDCTRANCURVE|MODETRAN|MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* charge storage elements */ vgs1 = *(ckt->CKTstate1 + here->HFET2vgs); @@ -248,19 +248,22 @@ int HFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->HFET2qgs) = *(ckt->CKTstate0 + here->HFET2qgs); *(ckt->CKTstate1 + here->HFET2qgd) = *(ckt->CKTstate0 + here->HFET2qgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->HFET2qgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->HFET2qgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); - *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->HFET2qgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->HFET2qgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->HFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->HFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->HFET2cqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->HFET2cqgs) = *(ckt->CKTstate0 + here->HFET2cqgs); + *(ckt->CKTstate1 + here->HFET2cqgd) = *(ckt->CKTstate0 + here->HFET2cqgd); + } } } } diff --git a/src/spicelib/devices/jfet2/jfet2load.c b/src/spicelib/devices/jfet2/jfet2load.c index ff68f3745..151e1d6c2 100644 --- a/src/spicelib/devices/jfet2/jfet2load.c +++ b/src/spicelib/devices/jfet2/jfet2load.c @@ -211,7 +211,7 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) cg = cg + cgd; cd = cd - cgd; - if ( (ckt->CKTmode & (MODETRAN | MODEAC | MODEINITSMSIG) ) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEAC | MODEINITSMSIG) ) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -244,26 +244,29 @@ JFET2load(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->JFET2qds) = *(ckt->CKTstate0 + here->JFET2qds); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->JFET2qgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->JFET2qgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); - cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); - cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); - error = NIintegrate(ckt,&geq,&ceq,capds,here->JFET2qds); - cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); - if(error) return(error); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->JFET2cqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->JFET2qgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->JFET2qgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->JFET2cqgd); + cd = cd - *(ckt->CKTstate0 + here->JFET2cqgd); + cgd = cgd + *(ckt->CKTstate0 + here->JFET2cqgd); + error = NIintegrate(ckt, &geq, &ceq, capds, here->JFET2qds); + cd = cd + *(ckt->CKTstate0 + here->JFET2cqds); + if (error) return(error); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->JFET2cqgs) = *(ckt->CKTstate0 + here->JFET2cqgs); - *(ckt->CKTstate1 + here->JFET2cqgd) = + *(ckt->CKTstate1 + here->JFET2cqgd) = *(ckt->CKTstate0 + here->JFET2cqgd); - *(ckt->CKTstate1 + here->JFET2cqds) = + *(ckt->CKTstate1 + here->JFET2cqds) = *(ckt->CKTstate0 + here->JFET2cqds); + } } } } diff --git a/src/spicelib/devices/mes/mesload.c b/src/spicelib/devices/mes/mesload.c index 2226991ba..32a83a2ec 100644 --- a/src/spicelib/devices/mes/mesload.c +++ b/src/spicelib/devices/mes/mesload.c @@ -335,7 +335,7 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -382,21 +382,24 @@ MESload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESqgd) = *(ckt->CKTstate0 + here->MESqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESqgs); - if(error) return(error); - ggs = ggs + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgs); - error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESqgd); - if(error) return(error); - ggd = ggd + geq; - cg = cg + *(ckt->CKTstate0 + here->MEScqgd); - cd = cd - *(ckt->CKTstate0 + here->MEScqgd); - cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MEScqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESqgs); + if (error) return(error); + ggs = ggs + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgs); + error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESqgd); + if (error) return(error); + ggd = ggd + geq; + cg = cg + *(ckt->CKTstate0 + here->MEScqgd); + cd = cd - *(ckt->CKTstate0 + here->MEScqgd); + cgd = cgd + *(ckt->CKTstate0 + here->MEScqgd); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MEScqgs) = *(ckt->CKTstate0 + here->MEScqgs); - *(ckt->CKTstate1 + here->MEScqgd) = + *(ckt->CKTstate1 + here->MEScqgd) = *(ckt->CKTstate0 + here->MEScqgd); + } } } } diff --git a/src/spicelib/devices/mesa/mesaload.c b/src/spicelib/devices/mesa/mesaload.c index e1ffecd4a..9b8081f53 100644 --- a/src/spicelib/devices/mesa/mesaload.c +++ b/src/spicelib/devices/mesa/mesaload.c @@ -326,7 +326,7 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) * compute equivalent drain current source */ cd = cdrain - cgd; - if ( (ckt->CKTmode & (MODETRAN|MODEINITSMSIG)) || + if ( (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODEINITSMSIG)) || ((ckt->CKTmode & MODETRANOP) && (ckt->CKTmode & MODEUIC)) ){ /* * charge storage elements @@ -362,22 +362,25 @@ MESAload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1 + here->MESAqgd) = *(ckt->CKTstate0 + here->MESAqgd); } - error = NIintegrate(ckt,&geq,&ceq,capgs,here->MESAqgs); - if(error) return(error); - ggspp = geq; - cgspp = *(ckt->CKTstate0 + here->MESAcqgs); - cg = cg + cgspp; - error = NIintegrate(ckt,&geq,&ceq,capgd,here->MESAqgd); - if(error) return(error); - ggdpp = geq; - cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); - cg = cg + cgdpp; - cd = cd - cgdpp; - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->MESAcqgs) = + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capgs, here->MESAqgs); + if (error) return(error); + ggspp = geq; + cgspp = *(ckt->CKTstate0 + here->MESAcqgs); + cg = cg + cgspp; + error = NIintegrate(ckt, &geq, &ceq, capgd, here->MESAqgd); + if (error) return(error); + ggdpp = geq; + cgdpp = *(ckt->CKTstate0 + here->MESAcqgd); + cg = cg + cgdpp; + cd = cd - cgdpp; + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->MESAcqgs) = *(ckt->CKTstate0 + here->MESAcqgs); - *(ckt->CKTstate1 + here->MESAcqgd) = + *(ckt->CKTstate1 + here->MESAcqgd) = *(ckt->CKTstate0 + here->MESAcqgd); + } } } } From 58c312f733db67150ecf4a81d4337c9c5bd3fd0e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 14:36:06 +0200 Subject: [PATCH 18/49] Add MODEDCTRANCURVE to enable returning capacitance upon dc sweep. Exclude integration if MODEDCTRANCURVE is active (forward, self-heat and reverse diode).. --- src/spicelib/devices/vdmos/vdmosload.c | 69 +++++++++++++++----------- 1 file changed, 39 insertions(+), 30 deletions(-) diff --git a/src/spicelib/devices/vdmos/vdmosload.c b/src/spicelib/devices/vdmos/vdmosload.c index 12f39be0c..addbe4921 100644 --- a/src/spicelib/devices/vdmos/vdmosload.c +++ b/src/spicelib/devices/vdmos/vdmosload.c @@ -477,7 +477,7 @@ VDMOSload(GENmodel *inModel, CKTcircuit *ckt) /* * vdmos capacitor model */ - if (ckt->CKTmode & (MODETRAN | MODETRANOP | MODEINITSMSIG)) { + if (ckt->CKTmode & (MODEDCTRANCURVE | MODETRAN | MODETRANOP | MODEINITSMSIG)) { /* * calculate gate - drain, gate - source capacitors * drain-source capacitor is evaluated with the body diode below @@ -567,18 +567,24 @@ bypass: * calculate equivalent conductances and currents for * vdmos capacitors */ - error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); - if (error) return(error); - error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); - if (error) return(error); - ceqgs = ceqgs - gcgs*vgs + ckt->CKTag[0] * - *(ckt->CKTstate0 + here->VDMOSqgs); - ceqgd = ceqgd - gcgd*vgd + ckt->CKTag[0] * - *(ckt->CKTstate0 + here->VDMOSqgd); - if (selfheat) - { - error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &gcgs, &ceqgs, capgs, here->VDMOSqgs); if (error) return(error); + error = NIintegrate(ckt, &gcgd, &ceqgd, capgd, here->VDMOSqgd); + if (error) return(error); + ceqgs = ceqgs - gcgs * vgs + ckt->CKTag[0] * + *(ckt->CKTstate0 + here->VDMOSqgs); + ceqgd = ceqgd - gcgd * vgd + ckt->CKTag[0] * + *(ckt->CKTstate0 + here->VDMOSqgd); + if (selfheat) + { + error = NIintegrate(ckt, &gcTt, &ceqqth, capth, here->VDMOSqth); + if (error) return(error); + } + } + else { + gcgs = gcgd = ceqgs = ceqgd = 0.; } } @@ -932,27 +938,30 @@ bypass: *(ckt->CKTstate1 + here->VDIOcapCharge) = *(ckt->CKTstate0 + here->VDIOcapCharge); } - error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); - if (error) return(error); - gd = gd + geq; - cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOcapCurrent) = - *(ckt->CKTstate0 + here->VDIOcapCurrent); - } - if (revrec) { - /* soft recovery subcircuit */ + /* no integration, if dc sweep, but keep evaluating capacitances */ + if (!(ckt->CKTmode & MODEDCTRANCURVE)) { + error = NIintegrate(ckt, &geq, &ceq, capd, here->VDIOcapCharge); + if (error) return(error); + gd = gd + geq; + cd = cd + *(ckt->CKTstate0 + here->VDIOcapCurrent); if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCharge) = - *(ckt->CKTstate0 + here->VDIOsrcapCharge); + *(ckt->CKTstate1 + here->VDIOcapCurrent) = + *(ckt->CKTstate0 + here->VDIOcapCurrent); } - error = NIintegrate(ckt,&geq,&ceq,capsr,here->VDIOsrcapCharge); - if(error) return(error); - gqcsr = geq; - cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); - if (ckt->CKTmode & MODEINITTRAN) { - *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = + if (revrec) { + /* soft recovery subcircuit */ + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOsrcapCharge) = + *(ckt->CKTstate0 + here->VDIOsrcapCharge); + } + error = NIintegrate(ckt, &geq, &ceq, capsr, here->VDIOsrcapCharge); + if (error) return(error); + gqcsr = geq; + cqcsr = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); + if (ckt->CKTmode & MODEINITTRAN) { + *(ckt->CKTstate1 + here->VDIOsrcapCurrent) = *(ckt->CKTstate0 + here->VDIOsrcapCurrent); + } } } } From fad198de7ba9dbc97669b292b6c5ebdcc32f2353 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 6 Jun 2026 16:15:24 +0200 Subject: [PATCH 19/49] Improve the error messages when reading a state file. Bail out when the read has not been successfull. --- src/xspice/icm/digital/d_state/cfunc.mod | 30 +++++++++++++----------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/xspice/icm/digital/d_state/cfunc.mod b/src/xspice/icm/digital/d_state/cfunc.mod index 96246f489..64dd971a0 100644 --- a/src/xspice/icm/digital/d_state/cfunc.mod +++ b/src/xspice/icm/digital/d_state/cfunc.mod @@ -1411,6 +1411,7 @@ static int cm_read_state_file(FILE *state_file, State_Table_t *table) string_type = CONTINUATION; } else { /* Number of tokens is incorrect */ + cm_message_printf("\nError:\n Number of tokens is incorrect in line\n %s\n", temp); return 1; } } @@ -1464,8 +1465,9 @@ static int cm_read_state_file(FILE *state_file, State_Table_t *table) /* if this bit was not recognized, return with an error */ if (12 == bit_value) { + cm_message_printf("\nError:\n Token %s is unknown in line\n %s\n", token, temp); free(token); - return 1; + return 1; } else { /* need to store this value in the bits[] array */ @@ -1487,8 +1489,9 @@ static int cm_read_state_file(FILE *state_file, State_Table_t *table) /* if this bit was not recognized, return with an error */ if (3 == bit_value) { + cm_message_printf("Bit value %s is unknown in line\n %s\n", token, temp); free(token); - return 1; + return 1; } else { /* need to store this value in the inputs[] array */ @@ -1512,31 +1515,31 @@ static int cm_read_state_file(FILE *state_file, State_Table_t *table) } } } - free(token); + free(token); } } else { /**** continuation type loop ****/ /* set state value to previous state value */ table->state[i] = table->state[i - 1]; - + /* set bits values to previous bits values */ for (j = 0; j < table->num_outputs; j++) { - + /*** Store this bit value ***/ - + cm_store_bits_value(table, i, j, bit_value); } - + for (j=0; j<(2 + table->num_inputs); j++) { - + token = CNVget_token(&s, &type); if(!token) return 1; if ( j < table->num_inputs ) { - + /* preset this bit location */ bit_value = 3; @@ -1692,10 +1695,7 @@ void cm_d_state(ARGS) static char *open_error = "\nError:\n D_STATE: failed to open state file.\n"; static char *loading_error = - "\nError:\n D_STATE: state file was not read successfully.\n " - "The most common cause of this problem is a\n " - "trailing blank line in the state.in file.\n"; - + "\nError:\n D_STATE: state file was not read successfully.\n "; /*** open file and count the number of vectors in it ***/ @@ -1785,7 +1785,9 @@ void cm_d_state(ARGS) table->bits[i] = 0; for (i=0; i<(test=(table->num_inputs * table->depth)/8); i++) table->inputs[i] = 0; - return; + if (state_file) + fclose(state_file); + cm_cexit(1); } /* close state_file */ From f2805e15fb2449ac541d0a1dc8e06f8e89e8a70f Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 16 Aug 2025 09:24:45 +0200 Subject: [PATCH 20/49] Add two macros TSTEP and TSTOP to XSPICE --- src/include/ngspice/mifcmdat.h | 2 ++ src/xspice/cmpp/mod_lex.l | 2 ++ src/xspice/cmpp/mod_yacc.y | 6 ++++++ src/xspice/mif/mifload.c | 4 ++++ 4 files changed, 14 insertions(+) diff --git a/src/include/ngspice/mifcmdat.h b/src/include/ngspice/mifcmdat.h index 85d542292..d88003032 100644 --- a/src/include/ngspice/mifcmdat.h +++ b/src/include/ngspice/mifcmdat.h @@ -333,6 +333,8 @@ typedef struct Mif_Circ_Data_s { double frequency; /* Current analysis frequency */ double temperature; /* Current analysis temperature */ double t[8]; /* History of last 8 analysis times t[0]=time */ + double tstep; /* tran simulation tstep */ + double tstop; /* tran simulation tstop */ } Mif_Circ_Data_t; diff --git a/src/xspice/cmpp/mod_lex.l b/src/xspice/cmpp/mod_lex.l index 7cf0acdb9..883603e99 100644 --- a/src/xspice/cmpp/mod_lex.l +++ b/src/xspice/cmpp/mod_lex.l @@ -102,6 +102,8 @@ TIME {return TOK_TIME;} RAD_FREQ {return TOK_RAD_FREQ;} TEMPERATURE {return TOK_TEMPERATURE;} T {return TOK_T;} +TSTEP {return TOK_TSTEP;} +TSTOP {return TOK_TSTOP;} LOAD {return TOK_LOAD;} TOTAL_LOAD {return TOK_TOTAL_LOAD;} MESSAGE {return TOK_MESSAGE;} diff --git a/src/xspice/cmpp/mod_yacc.y b/src/xspice/cmpp/mod_yacc.y index d7bb6fd5b..ccf3b2a18 100644 --- a/src/xspice/cmpp/mod_yacc.y +++ b/src/xspice/cmpp/mod_yacc.y @@ -337,6 +337,8 @@ static void append (char *str) %token TOK_RAD_FREQ %token TOK_TEMPERATURE %token TOK_T +%token TOK_TSTEP +%token TOK_TSTOP %token TOK_PARAM %token TOK_PARAM_SIZE %token TOK_PARAM_NULL @@ -437,6 +439,10 @@ macro : TOK_INIT {fprintf (mod_yyout, "mif_private->circuit.call_type");} | TOK_TIME {fprintf (mod_yyout, "mif_private->circuit.time");} + | TOK_TSTEP + {fprintf (mod_yyout, "mif_private->circuit.tstep");} + | TOK_TSTOP + {fprintf (mod_yyout, "mif_private->circuit.tstop");} | TOK_RAD_FREQ {fprintf (mod_yyout, "mif_private->circuit.frequency");} | TOK_TEMPERATURE diff --git a/src/xspice/mif/mifload.c b/src/xspice/mif/mifload.c index cc6c7c016..b0fcdeeff 100644 --- a/src/xspice/mif/mifload.c +++ b/src/xspice/mif/mifload.c @@ -194,6 +194,8 @@ MIFload( /* otherwise, set the times to zero */ if(anal_type == MIF_TRAN) { cm_data.circuit.time = ckt->CKTtime; + cm_data.circuit.tstep = ckt->CKTstep; + cm_data.circuit.tstop = ckt->CKTfinalTime; cm_data.circuit.t[0] = ckt->CKTtime; for(i = 1; i < 8; i++) { cm_data.circuit.t[i] = cm_data.circuit.t[i-1] - ckt->CKTdeltaOld[i-1]; @@ -203,6 +205,8 @@ MIFload( } else { cm_data.circuit.time = 0.0; + cm_data.circuit.tstep = 0.0; + cm_data.circuit.tstop = 0.0; for(i = 0; i < 8; i++) { cm_data.circuit.t[i] = 0.0; } From 007453ef89b608988532b2f637bbd1bb9fb223d9 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 7 Jun 2026 19:21:19 +0200 Subject: [PATCH 21/49] Set TSTEP and TSTOP also when MIF_DC, as this is needed when initialising a code model during op before a tran sim. --- src/xspice/mif/mifload.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/xspice/mif/mifload.c b/src/xspice/mif/mifload.c index b0fcdeeff..af36eed55 100644 --- a/src/xspice/mif/mifload.c +++ b/src/xspice/mif/mifload.c @@ -194,8 +194,6 @@ MIFload( /* otherwise, set the times to zero */ if(anal_type == MIF_TRAN) { cm_data.circuit.time = ckt->CKTtime; - cm_data.circuit.tstep = ckt->CKTstep; - cm_data.circuit.tstop = ckt->CKTfinalTime; cm_data.circuit.t[0] = ckt->CKTtime; for(i = 1; i < 8; i++) { cm_data.circuit.t[i] = cm_data.circuit.t[i-1] - ckt->CKTdeltaOld[i-1]; @@ -205,12 +203,19 @@ MIFload( } else { cm_data.circuit.time = 0.0; - cm_data.circuit.tstep = 0.0; - cm_data.circuit.tstop = 0.0; for(i = 0; i < 8; i++) { cm_data.circuit.t[i] = 0.0; } } + /* transient or operating point */ + if (anal_type == MIF_TRAN || anal_type == MIF_DC) { + cm_data.circuit.tstep = ckt->CKTstep; + cm_data.circuit.tstop = ckt->CKTfinalTime; + } + else { + cm_data.circuit.tstep = 0.0; + cm_data.circuit.tstop = 0.0; + } cm_data.circuit.call_type = MIF_ANALOG; cm_data.circuit.temperature = ckt->CKTtemp - 273.15; From 461ab8c46ac844d6f159ed3809558431c454ac26 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 7 Jun 2026 19:22:40 +0200 Subject: [PATCH 22/49] Replace lengthy call to CKTcircuit by new TSTOP and TSTEP macros --- src/xspice/icm/analog/delay/cfunc.mod | 102 +++----------------------- 1 file changed, 11 insertions(+), 91 deletions(-) diff --git a/src/xspice/icm/analog/delay/cfunc.mod b/src/xspice/icm/analog/delay/cfunc.mod index c86bbc82a..8ff4057c8 100644 --- a/src/xspice/icm/analog/delay/cfunc.mod +++ b/src/xspice/icm/analog/delay/cfunc.mod @@ -81,85 +81,6 @@ typedef struct { double start_val; /* signal time 0 value */ } mLocal_Data_t; - -struct CKTcircuitmin { - -/* This is a minimum re-definition of the circuit structure defined in - cktdefs.h. We are interested in TSTEP and TSTOP */ - - GENmodel **CKThead; - STATistics *CKTstat; /* The STATistics structure */ - double *CKTstates[8]; /* Used as memory of past steps ??? */ - double CKTtime; /* Current transient simulation time */ - double CKTdelta; /* next time step in transient simulation */ - double CKTdeltaOld[7]; /* Memory for the 7 most recent CKTdelta */ - double CKTtemp; /* Actual temperature of CKT, initialzed to 300.15 K in cktinit.c*/ - double CKTnomTemp; /* Reference temperature 300.15 K set in cktinit.c */ - double CKTvt; /* Thernmal voltage at CKTtemp */ - double CKTag[7]; /* the gear variable coefficient matrix */ -#ifdef PREDICTOR - double CKTagp[7]; /* the gear predictor variable coefficient matrix */ -#endif /*PREDICTOR*/ - int CKTorder; /* the integration method order */ - int CKTmaxOrder; /* maximum integration method order */ - int CKTintegrateMethod; /* the integration method to be used */ - double CKTxmu; /* for trapezoidal method */ - int CKTindverbosity; /* control check of inductive couplings */ - SMPmatrix *CKTmatrix; /* pointer to sparse matrix */ - int CKTniState; /* internal state */ - double *CKTrhs; /* current rhs value - being loaded */ - double *CKTrhsOld; /* previous rhs value for convergence testing */ - double *CKTrhsSpare; /* spare rhs value for reordering */ - double *CKTirhs; /* current rhs value - being loaded imag) */ - double *CKTirhsOld; /* previous rhs value (imaginary)*/ - double *CKTirhsSpare; /* spare rhs value (imaginary)*/ -#ifdef PREDICTOR - double *CKTpred; /* predicted solution vector */ - double *CKTsols[8]; /* previous 8 solutions */ -#endif /* PREDICTOR */ - double *CKTrhsOp; /* opearating point values */ - double *CKTsenRhs; /* current sensitivity rhs values */ - double *CKTseniRhs; /* current sensitivity rhs values (imag)*/ - int CKTmaxEqNum; /* And this ? */ - int CKTcurrentAnalysis; /* the analysis in progress (if any) */ - CKTnode *CKTnodes; /* ??? */ - CKTnode *CKTlastNode; /* ??? */ - CKTnode *prev_CKTlastNode; /* just before model setup */ - int CKTnumStates; /* Number of sates effectively valid ??? */ - long CKTmode; /* Mode of operation of the circuit ??? */ - int CKTbypass; /* bypass option, how does it work ? */ - int CKTdcMaxIter; /* iteration limit for dc op. (itl1) */ - int CKTdcTrcvMaxIter; /* iteration limit for dc tran. curv (itl2) */ - int CKTtranMaxIter; /* iteration limit for each timepoint for tran*/ - int CKTbreakSize; /* ??? */ - int CKTbreak; /* ??? */ - double CKTsaveDelta; /* ??? */ - double CKTminBreak; /* ??? */ - double *CKTbreaks; /* List of breakpoints ??? */ - double CKTabstol; /* --- */ - double CKTpivotAbsTol; /* --- */ - double CKTpivotRelTol; /* --- */ - double CKTreltol; /* --- */ - double CKTchgtol; /* --- */ - double CKTvoltTol; /* --- */ - double CKTlteReltol; /* relative error in voltage based truncation error estimation */ - double CKTlteAbstol; /* absolute error in voltage based truncation error estimation */ - double CKTlteTrtol; /* scaling time step in voltage based truncation error estimation */ - int CKTnewtrunc; /* enable lte (local truncation error) based on voltages */ - double CKTgmin; /* .options GMIN */ - double CKTgshunt; /* .options RSHUNT */ - double CKTcshunt; /* .options CSHUNT */ - double CKTdelmin; /* minimum time step for tran analysis */ - double CKTtrtol; /* .options TRTOL */ - double CKTfinalTime; /* TSTOP */ - double CKTstep; /* TSTEP */ - double CKTmaxStep; /* TMAX */ - double CKTinitTime; /* TSTART */ - /* struct is truncated here */ -}; - -typedef struct CKTcircuitmin CKTcircuitmin; - /*=== FUNCTION PROTOTYPE DEFINITIONS ===*/ static void cm_delay_callback(ARGS, Mif_Callback_Reason_t reason); @@ -174,8 +95,6 @@ void cm_delay(ARGS) mLocal_Data_t *loc; /* Pointer to local static data, not to be included in the state vector */ - CKTcircuitmin *ckt; - if (ANALYSIS != MIF_AC) { /**** only Transient Analysis and dc ****/ @@ -185,11 +104,12 @@ void cm_delay(ARGS) CALLBACK = cm_delay_callback; - ckt = (CKTcircuitmin*)cm_get_circuit(); - if (PARAM_NULL(buffer_size)) { /* size depends on TSTOP/TSTEP, if no parameter given */ - buffer_size = (int) (ckt->CKTfinalTime / ckt->CKTstep) + 1; + if (TSTEP > 0) /* called from tran analysis */ + buffer_size = (int) (TSTOP/TSTEP) + 1; + else /* called from op or dc analysis */ + buffer_size = 1; } else { buffer_size = PARAM(buffer_size); @@ -232,22 +152,22 @@ void cm_delay(ARGS) loc->tdelmin = 0.0; cm_message_send("Negative min delay not allowed, set to 0"); } - else if (loc->tdelmin > ckt->CKTfinalTime) { - loc->tdelmin = ckt->CKTfinalTime; + else if (loc->tdelmin > TSTOP) { + loc->tdelmin = TSTOP; cm_message_send("min delay greater than final sim time not allowed, set to final time"); } } if (PARAM_NULL(delmax)) - loc->tdelmax = ckt->CKTfinalTime; + loc->tdelmax = TSTOP; else { loc->tdelmax = PARAM(delmax); if (loc->tdelmax < 0) { loc->tdelmin = 0.0; cm_message_send("Negative max delay not allowed, set to 0"); } - else if (loc->tdelmax > ckt->CKTfinalTime) { - loc->tdelmax = ckt->CKTfinalTime; + else if (loc->tdelmax > TSTOP) { + loc->tdelmax = TSTOP; cm_message_send("max delay greater than final sim time not allowed, set to final time"); } } @@ -261,8 +181,8 @@ void cm_delay(ARGS) loc->buff_del = 0; loc->step_count = 0; loc->tdelay = delay; - loc->tstop = ckt->CKTfinalTime; - loc->tstep = ckt->CKTstep; + loc->tstop = TSTOP; + loc->tstep = TSTEP; loc->tprev = 0.0; loc->prev_val = 0.0; } From f395bc49b2065315a4a37fbc1b9c6aad6dd734f5 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 8 Jun 2026 22:41:46 +0200 Subject: [PATCH 23/49] Update the copyright notice --- src/frontend/misccoms.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/misccoms.c b/src/frontend/misccoms.c index c3efbb9cb..5435c8ce2 100644 --- a/src/frontend/misccoms.c +++ b/src/frontend/misccoms.c @@ -194,7 +194,7 @@ com_version(wordlist *wl) "** The U. C. Berkeley CAD Group\n" "** Copyright 1985-1994, Regents of the University of California.\n" - "** Copyright 2001-2025, The ngspice team.\n" + "** Copyright 2001-2026, The ngspice team.\n" "** %s\n", ft_sim->simulator, ft_sim->version, ft_sim->description, Spice_Manual); if (*Spice_Notice != '\0') @@ -238,7 +238,7 @@ com_version(wordlist *wl) "** The U. C. Berkeley CAD Group\n" "** Copyright 1985-1994, Regents of the University of California.\n" - "** Copyright 2001-2025, The ngspice team.\n" + "** Copyright 2001-2026, The ngspice team.\n" "** %s\n", ft_sim->simulator, ft_sim->version, ft_sim->description, Spice_Manual); if (*Spice_Notice != '\0') From 3d02373664a1b2fb53f1353dadbb3a0ef0eb9d0a Mon Sep 17 00:00:00 2001 From: dwarning Date: Tue, 9 Jun 2026 08:08:41 +0200 Subject: [PATCH 24/49] DEVpred() of charge node needs state vector update before --- src/spicelib/devices/dio/dioload.c | 2 ++ src/spicelib/devices/vdmos/vdmosload.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/spicelib/devices/dio/dioload.c b/src/spicelib/devices/dio/dioload.c index b4a9d49bd..b2314f1cd 100644 --- a/src/spicelib/devices/dio/dioload.c +++ b/src/spicelib/devices/dio/dioload.c @@ -190,6 +190,8 @@ DIOload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate0 + here->DIOdIdioSW_dT) = *(ckt->CKTstate1 + here->DIOdIdioSW_dT); } + *(ckt->CKTstate0 + here->DIOqp) = + *(ckt->CKTstate1 + here->DIOqp); vqp = DEVpred(ckt,here->DIOqp); *(ckt->CKTstate0 + here->DIOresCurrent) = *(ckt->CKTstate1 + here->DIOresCurrent); diff --git a/src/spicelib/devices/vdmos/vdmosload.c b/src/spicelib/devices/vdmos/vdmosload.c index addbe4921..7bef8b2c6 100644 --- a/src/spicelib/devices/vdmos/vdmosload.c +++ b/src/spicelib/devices/vdmos/vdmosload.c @@ -760,6 +760,8 @@ bypass: *(ckt->CKTstate1 + here->VDIOconduct); *(ckt->CKTstate0 + here->VDIOdIdio_dT) = *(ckt->CKTstate1 + here->VDIOdIdio_dT); + *(ckt->CKTstate0 + here->VDIOqp) = + *(ckt->CKTstate1 + here->VDIOqp); vqp = DEVpred(ckt,here->VDIOqp); *(ckt->CKTstate0 + here->VDIOresCurrent) = *(ckt->CKTstate1 + here->VDIOresCurrent); From 21907e5bf7827519cb31fe2816aa29d3bf99a69c Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 9 Jun 2026 17:57:39 +0200 Subject: [PATCH 25/49] Add error message if scale and data vector lengths do not match --- src/frontend/com_measure2.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/frontend/com_measure2.c b/src/frontend/com_measure2.c index 5b3454052..ee0044211 100644 --- a/src/frontend/com_measure2.c +++ b/src/frontend/com_measure2.c @@ -842,7 +842,13 @@ measure_minMaxAvg( } if (dScale->v_realdata == NULL && dScale->v_compdata == NULL) { - fprintf(cp_err, "Error: scale vector time, frequency or ?-sweep has no data.\n"); + fprintf(cp_err, "Error: scale vector %s has no data.\n", dScale->v_name); + return MEASUREMENT_FAILURE; + } + + if (d->v_length != dScale->v_length) { + fprintf(cp_err, "Error: length of scale vector (%s) does not match length of data vector (%s).\n", dScale->v_name, d->v_name); + fprintf(cp_err, " Analysis is not possible.\n"); return MEASUREMENT_FAILURE; } From 65fb8e245bce1fac55eee28bec290df04cea1eaf Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 9 Jun 2026 22:38:13 +0200 Subject: [PATCH 26/49] Prepare for ngspice-47 --- NEWS | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/NEWS b/NEWS index 48a9045e1..7be70d05d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,26 @@ +Ngspice-47, June ??, 2026 +============ +- New features: + + Update periodic state sim (PSS) and examples + + Update to measure available memory for all OSs + + Implement small signal noise simulation for code models + + Status display 'shell' and 'gnuplot' (Windows only). + + Enable printing outputs with engineering exponents + + If newcompat.ki is enabled, replace /gnd and /0 (local ground symbols) + by 0. + + Add instance parameters td and r to the ISRC pwl source. + + Do not replace GND by 0 f if GND is used inside of the subcircuit + and is referenced on the .subckt line, and ps is set. + + Add reading and writing audio files (*.wav). + + Add dot commands .sndprint, .sndparam. + + Vdmos bulk diode now has a smart recovery model + + Update to the SEEgenerator as describes in README.SEEgenerator + + No integration, if dc sweep is to return cpacitances + + Add sweeping dc for capacitance measurement in + HFET, MEASFET, VDMOS models, correct it for BJT, VBIC, HICUM. + + Add two macros TSTEP and TSTOP to XSPICE. + + Ngspice-46, March 29th, 2026 ============ - New features: From 3db9f132a2bd08eb9500754eb821199ce1dd59bb Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 12 Jun 2026 16:43:58 +0200 Subject: [PATCH 27/49] New behavioral capacitor model: - Replace E source by G source with parallel resistor to improve convergence. - Add parallel resistor to avoid floating nodes - Reduce refecrence C to 1u (and thus the max. current). --- src/frontend/inpcom.c | 40 ++++++++++++++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 5943c8118..6de5885aa 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -6926,7 +6926,13 @@ static void inp_compat(struct card *card) ckt_array[2] = tprintf("b%s 0 %s_int1 i = (%s) " "%s reciproctc=1", title_tok, title_tok, equation, tcrstr); + // comment out current variable capacitor line + *(card->line) = '*'; + for (i = 0; i < 3; i++) { + card = insert_new_line(card, ckt_array[i], (int)i + 1, currlinenumber, card->linesource); + } } else { /* capacitance formulation */ +#if (0) // Exxx n-aux 0 n2 n1 1 ckt_array[0] = tprintf("e%s %s_int1 0 %s %s %s", title_tok, title_tok, node2, node1, mstr); @@ -6936,15 +6942,37 @@ static void inp_compat(struct card *card) ckt_array[2] = tprintf("b%s %s %s i = i(e%s) * (%s) " "%s reciproctc=1", title_tok, node1, node2, title_tok, equation, tcrstr); + // comment out current variable capacitor line + *(card->line) = '*'; + for (i = 0; i < 3; i++) { + card = insert_new_line(card, ckt_array[i], (int)i + 1, currlinenumber, card->linesource); + } +#else + // Gxxx n-aux 0 n2 n1 1e9 + ckt_array[0] = tprintf("g%s %s_int1 0 %s %s %se9", title_tok, + title_tok, node2, node1, mstr); + // Rxxx n-aux 0 1e-9 ; generate voltage from injected current by Gxxx + ckt_array[1] = tprintf("r%s %s_int1 0 1e-9", title_tok,title_tok); + // Cxxx n-aux1 n-aux2 1e-6 + ckt_array[2] = tprintf("c%s %s_int1 %s_int2 1e-6", title_tok, title_tok, title_tok); + // Vxxx n-aux2 0 0 ; measure current in Cxxx + ckt_array[3] = tprintf("v%s %s_int2 0 0", title_tok, title_tok); + // Rxxxpar n2 n1 1e15 ; generally avoid floating nodes + ckt_array[4] = tprintf("r%spar %s %s 1e15", title_tok, node2, node1); + // Bxxx n1 n2 I = 1e6 * i(Vxxx) * equation + ckt_array[5] = tprintf("b%s %s %s i = 1e6 * i(v%s) * (%s) " + "%s reciproctc=1", + title_tok, node1, node2, title_tok, equation, tcrstr); + // comment out current variable capacitor line + *(card->line) = '*'; + // insert new B source line immediately after current line + for (i = 0; i < 6; i++) { + card = insert_new_line(card, ckt_array[i], (int)i + 1, currlinenumber, card->linesource); + } +#endif } tfree(tcrstr); tfree(mstr); - // comment out current variable capacitor line - *(card->line) = '*'; - // insert new B source line immediately after current line - for (i = 0; i < 3; i++) { - card = insert_new_line(card, ckt_array[i], (int)i + 1, currlinenumber, card->linesource); - } tfree(title_tok); tfree(node1); From 34cf37e190a6617ace7a1ba363897cb4621a2fa0 Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Mon, 7 Oct 2024 09:54:03 +0100 Subject: [PATCH 28/49] Simplify adc_bridge, also removing excess white space. --- src/xspice/icm/digital/adc_bridge/cfunc.mod | 317 +++++--------------- 1 file changed, 77 insertions(+), 240 deletions(-) diff --git a/src/xspice/icm/digital/adc_bridge/cfunc.mod b/src/xspice/icm/digital/adc_bridge/cfunc.mod index f8fab954d..bdb96fd3b 100644 --- a/src/xspice/icm/digital/adc_bridge/cfunc.mod +++ b/src/xspice/icm/digital/adc_bridge/cfunc.mod @@ -8,28 +8,21 @@ Public Domain Georgia Tech Research Corporation Atlanta, Georgia 30332 PROJECT A-8503-405 - - -AUTHORS +AUTHORS 6 June 1991 Jeffrey P. Murray - -MODIFICATIONS - +MODIFICATIONS 26 Sept 1991 Jeffrey P. Murray - SUMMARY - This file contains the functional description of the adc_bridge - code model. + This file contains the functional description of the adc_bridge code model. +INTERFACES -INTERFACES + FILE ROUTINE CALLED - FILE ROUTINE CALLED - CM.c void *cm_analog_alloc() void *cm_analog_get_ptr() @@ -37,67 +30,40 @@ INTERFACES void *cm_event_get_ptr() int cm_event_queue() - - - REFERENCED FILES - Inputs from and outputs to ARGS structure. - NON-STANDARD FEATURES - NONE ===============================================================================*/ /*=== INCLUDE FILES ====================*/ - - - /*=== CONSTANTS ========================*/ - - - /*=== MACROS ===========================*/ - - - /*=== LOCAL VARIABLES & TYPEDEFS =======*/ - - - /*=== FUNCTION PROTOTYPE DEFINITIONS ===*/ - - - - - - /*============================================================================== FUNCTION cm_adc_bridge() -AUTHORS - +AUTHORS 6 June 1991 Jeffrey P. Murray -MODIFICATIONS - +MODIFICATIONS 26 Sept 1991 Jeffrey P. Murray SUMMARY - This function implements the adc_bridge code model. -INTERFACES +INTERFACES - FILE ROUTINE CALLED + FILE ROUTINE CALLED CM.c void *cm_analog_alloc() void *cm_analog_get_ptr() @@ -107,15 +73,12 @@ INTERFACES int cm_event_queue() RETURNED VALUE - Returns inputs and outputs via ARGS structure. GLOBAL VARIABLES - NONE NON-STANDARD FEATURES - NONE ==============================================================================*/ @@ -131,231 +94,105 @@ NON-STANDARD FEATURES * Last Modified 7/26/91 J.P.Murray * ************************************************/ - -void cm_adc_bridge(ARGS) - +static Digital_State_t get_out_value(double in, double low, double high) { - double in_low, /* analog output value corresponding to '0' + if (in >= high) + return ONE; + else if (in <= low) + return ZERO; + return UNKNOWN; +} + +void cm_adc_bridge(ARGS) +{ + double in_low, /* analog output value corresponding to '0' digital input */ - in_high, /* analog output value corresponding to '1' + in_high; /* analog output value corresponding to '1' digital input */ - current_time, /* the current time value */ - *in, /* base address of array holding all digital output - values plus their previous values */ - *in_old; /* base address of array holding previous - output values */ + int i, /* generic loop counter index */ + size; /* number of input & output ports */ - - int i, /* generic loop counter index */ - size; /* number of input & output ports */ - - - - Digital_State_t *out, /* base address of array holding all input + Digital_State_t *out, /* base address of array holding all output values plus their previous values */ - *out_old, /* base address of array holding previous - input values */ test; /* temp holding variable for digital states */ - - - - /* determine "width" of the node bridge... */ - size = PORT_SIZE(in); + size = PORT_SIZE(in); in_high = PARAM(in_high); in_low = PARAM(in_low); - - - if (INIT) { /*** Test for INIT == TRUE. If so, allocate storage, etc. ***/ - - - /* Allocate storage for inputs */ - cm_analog_alloc(0, size * (int) sizeof(double)); - /* Allocate storage for outputs */ - cm_event_alloc(1, size * (int) sizeof(Digital_State_t)); - /* Get analog addresses */ - in = in_old = (double *) cm_analog_get_ptr(0,0); + cm_event_alloc(0, size * (int) sizeof(Digital_State_t)); /* Get discrete addresses */ - out = out_old = (Digital_State_t *) cm_event_get_ptr(1,0); + + out = (Digital_State_t *) cm_event_get_ptr(0,0); + + /* Ensure output on first call. */ + + for (i = 0; i < size; i++) + out[i] = UNKNOWN + 1; + return; } - else { /*** This is not an initialization pass...retrieve storage - addresses and calculate new outputs, if required. ***/ + /*** This is not an initialization pass...retrieve storage + addresses and calculate new outputs, if required. ***/ + out = (Digital_State_t *) cm_event_get_ptr(0, 0); - /** Retrieve previous values... **/ - - /* assign discrete addresses */ - in = (double *) cm_analog_get_ptr(0,0); - in_old = (double *) cm_analog_get_ptr(0,1); - - /* assign analog addresses */ - out = (Digital_State_t *) cm_event_get_ptr(1,0); - out_old = (Digital_State_t *) cm_event_get_ptr(1,1); - - } - - - /* read current input values */ - for (i=0; i= in_high) { /* high output required */ - - test = ONE; - - if ( test != out_old[i] ) { - /* call for event breakpoint... */ - current_time = TIME; - cm_event_queue(current_time); - } - else { - /* no change since last time */ - } - - } - else { /* unknown output required */ - - if ( UNKNOWN != out_old[i] ) { - - /* call for event breakpoint... */ - current_time = TIME; - cm_event_queue(current_time); - } - else { - /* no change since last time */ - } - } - } - } - + } break; - - - + case EVENT: /** discrete call...lots to do **/ - /* loop through all inputs... */ - for (i=0; i= in_high) { /* high output required */ - - out[i] = ONE; - - if ( out[i] != out_old[i] ) { - /* post changed value */ - OUTPUT_STATE(out[i]) = ONE; - OUTPUT_DELAY(out[i]) = PARAM(rise_delay); - } - else { - /* no change since last time */ - OUTPUT_CHANGED(out[i]) = FALSE; - } - - } - else { /* unknown output required */ - - out[i] = UNKNOWN; - - if ( UNKNOWN != out_old[i] ) { - - /* post changed value */ - OUTPUT_STATE(out[i]) = UNKNOWN; - - switch (out_old[i]) { - case ONE: - OUTPUT_DELAY(out[i]) = PARAM(fall_delay); - break; - - case ZERO: - OUTPUT_DELAY(out[i]) = PARAM(rise_delay); - break; - case UNKNOWN: /* should never get here! */ - break; - } - } - else { - /* no change since last time */ - OUTPUT_CHANGED(out[i]) = FALSE; - } - } - } - /* regardless, output the strength */ - OUTPUT_STRENGTH(out[i]) = STRONG; - } + } break; default: break; - } - } - else { /*** TIME == 0.0 => set outputs to input value... ***/ - /* loop through all inputs... */ - for (i=0; i= in_high) { /* high output required */ - OUTPUT_STATE(out[i]) = out[i] = ONE; - } - else { - OUTPUT_STATE(out[i]) = out[i] = UNKNOWN; - } - OUTPUT_STRENGTH(out[i]) = STRONG; - } } } - - - From 65b0133591cc493b3644af33232b10f777fdbe27 Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Mon, 4 Nov 2024 18:24:04 +0000 Subject: [PATCH 29/49] Add new capabilities to the adc/dac_bridge XSPICE code models. If either bridge has a single analog connection and two or more digital connections it will act as a conventional multi-bit ADC or DAC. When the low threshold is higher than the high threshold, adc_bridge acts as a Schmitt trigger. --- src/xspice/icm/digital/adc_bridge/cfunc.mod | 119 +++++++- src/xspice/icm/digital/adc_bridge/ifspec.ifs | 22 +- src/xspice/icm/digital/dac_bridge/cfunc.mod | 295 ++++++++++++++----- 3 files changed, 343 insertions(+), 93 deletions(-) diff --git a/src/xspice/icm/digital/adc_bridge/cfunc.mod b/src/xspice/icm/digital/adc_bridge/cfunc.mod index bdb96fd3b..b8ab7a5cb 100644 --- a/src/xspice/icm/digital/adc_bridge/cfunc.mod +++ b/src/xspice/icm/digital/adc_bridge/cfunc.mod @@ -96,10 +96,21 @@ NON-STANDARD FEATURES static Digital_State_t get_out_value(double in, double low, double high) { - if (in >= high) - return ONE; - else if (in <= low) - return ZERO; + if (low <= high) { + /* Normal operation. */ + + if (in >= high) + return ONE; + else if (in <= low) + return ZERO; + } else { + /* (low > high)! Schmitt triger. */ + + if (in >= low) + return ONE; + else if (in <= high) + return ZERO; + } return UNKNOWN; } @@ -110,22 +121,34 @@ void cm_adc_bridge(ARGS) in_high; /* analog output value corresponding to '1' digital input */ int i, /* generic loop counter index */ - size; /* number of input & output ports */ + size_in, /* number of input ports */ + size_out; /* number of output ports */ Digital_State_t *out, /* base address of array holding all output values plus their previous values */ test; /* temp holding variable for digital states */ - /* determine "width" of the node bridge... */ - - size = PORT_SIZE(in); in_high = PARAM(in_high); in_low = PARAM(in_low); + /* determine "width" of the node bridge... */ + + size_in = PORT_SIZE(in); + size_out = PORT_SIZE(out); + if (INIT) { /*** Test for INIT == TRUE. If so, allocate storage, etc. ***/ + if (size_in != size_out) { + if (size_in != 1) { + cm_message_printf("Error: %d input ports with %d outputs", + size_in, size_out); + } else if (in_low >= in_high) { + cm_message_printf("Error: bad threshold values (low > high)"); + } + } + /* Allocate storage for outputs */ - cm_event_alloc(0, size * (int) sizeof(Digital_State_t)); + cm_event_alloc(0, size_out * (int) sizeof(Digital_State_t)); /* Get discrete addresses */ @@ -133,7 +156,7 @@ void cm_adc_bridge(ARGS) /* Ensure output on first call. */ - for (i = 0; i < size; i++) + for (i = 0; i < size_out; i++) out[i] = UNKNOWN + 1; return; } @@ -143,13 +166,75 @@ void cm_adc_bridge(ARGS) out = (Digital_State_t *) cm_event_get_ptr(0, 0); + if (size_in != size_out) { + if (size_in != 1) { + if (size_in < size_out) + size_out = size_in; + else + size_in = size_out; + } else { + double in; + + /* Single-input, multi-bit output option. */ + + in = (INPUT(in[0]) - in_low) / (in_high - in_low); + switch (CALL_TYPE) { + case ANALOG: + for (i = 0; i < size_out; i++) { + test = (in >= 0.5); + if (test != out[i]) { + /* call for event breakpoint... */ + + cm_event_queue(TIME); + break; + } + if (test) + in -= 0.5; + in *= 2.0; + } + break; + + case EVENT: /** discrete call...lots to do **/ + for (i = 0; i < size_out; i++) { + test = (in >= 0.5); + if (test != out[i]) { + switch (test) { + case ZERO: + OUTPUT_DELAY(out[i]) = PARAM(fall_delay); + break; + case ONE: + OUTPUT_DELAY(out[i]) = PARAM(rise_delay); + break; + default: + break; + } + out[i] = test; + OUTPUT_STATE(out[i]) = test; + OUTPUT_STRENGTH(out[i]) = STRONG; + } else { + OUTPUT_CHANGED(out[i]) = FALSE; + } + if (test) + in -= 0.5; + in *= 2.0; + } + break; + default: + break; + } + return; + } + } + + /* Normal, multiple single-bit conversion output option. */ + switch (CALL_TYPE) { case ANALOG: /** analog call...check for breakpoint calls. **/ /* loop through all inputs... */ - for (i = 0; i < size; i++) { + for (i = 0; i < size_out; i++) { test = get_out_value(INPUT(in[i]), in_low, in_high); - if (test != out[i]) { + if (test != out[i]) { /* call for event breakpoint... */ cm_event_queue(TIME); @@ -161,9 +246,9 @@ void cm_adc_bridge(ARGS) case EVENT: /** discrete call...lots to do **/ /* loop through all inputs... */ - for (i = 0; i < size; i++) { + for (i = 0; i < size_out; i++) { test = get_out_value(INPUT(in[i]), in_low, in_high); - if (test != out[i]) { + if (test != out[i]) { /* Post changed value. */ OUTPUT_STATE(out[i]) = test; @@ -175,6 +260,12 @@ void cm_adc_bridge(ARGS) OUTPUT_DELAY(out[i]) = PARAM(rise_delay); break; default: + if (in_low > in_high) { + /* Input is in hysteresis band. */ + + OUTPUT_CHANGED(out[i]) = FALSE; + continue; + } if (out[i] == ZERO) OUTPUT_DELAY(out[i]) = PARAM(rise_delay); else diff --git a/src/xspice/icm/digital/adc_bridge/ifspec.ifs b/src/xspice/icm/digital/adc_bridge/ifspec.ifs index efcd030d0..9a7cb1e57 100644 --- a/src/xspice/icm/digital/adc_bridge/ifspec.ifs +++ b/src/xspice/icm/digital/adc_bridge/ifspec.ifs @@ -24,6 +24,11 @@ Spice_Model_Name: adc_bridge C_Function_Name: cm_adc_bridge Description: "analog-to-digital converter node bridge" +/* Input and output are vector ports. If port numbers are equal the + * device acts as a set of individual comparators (use %vd or %id for + * differential inputs. With a single input and multiple outputs, + * it is a single ADC with multi-bit output. + */ PORT_TABLE: @@ -32,11 +37,12 @@ Description: "input" "output" Direction: in out Default_Type: v d Allowed_Types: [v,vd,i,id,vnam] [d] -Vector: yes yes -Vector_Bounds: - - +Vector: yes yes +Vector_Bounds: - - Null_Allowed: no no +/* If in_low > in_high the adc_bridge has hysteresis - a Schmitt trigger. */ PARAMETER_TABLE: @@ -72,3 +78,15 @@ Limits: [1e-12 -] [1e-12 -] Vector: no no Vector_Bounds: - - Null_Allowed: yes yes + + +PARAMETER_TABLE: + +Parameter_Name: family +Description: "Logic family for bridging" +Data_Type: string +Default_Value: - +Limits: - +Vector: no +Vector_Bounds: - +Null_Allowed: yes diff --git a/src/xspice/icm/digital/dac_bridge/cfunc.mod b/src/xspice/icm/digital/dac_bridge/cfunc.mod index ae3a34b07..8bb78d702 100644 --- a/src/xspice/icm/digital/dac_bridge/cfunc.mod +++ b/src/xspice/icm/digital/dac_bridge/cfunc.mod @@ -14,19 +14,16 @@ AUTHORS 3 Jun 1991 Jeffrey P. Murray - MODIFICATIONS 16 Aug 1991 Jeffrey P. Murray 2 Oct 1991 Jeffrey P. Murray - SUMMARY This file contains the model-specific routines used to functionally describe the dac_bridge code model. - INTERFACES FILE ROUTINE CALLED @@ -38,11 +35,9 @@ INTERFACES CMevt.c void *cm_event_alloc() void *cm_event_get_ptr() - REFERENCED FILES Inputs from and outputs to ARGS structure. - NON-STANDARD FEATURES @@ -115,8 +110,7 @@ NON-STANDARD FEATURES NONE -==============================================================================*/ - +=============================================================================*/ /* Instances of this structure track digital input changes. */ @@ -125,6 +119,29 @@ struct d_data { double i_changed; // Time of input change. }; +/* Relative output value for multi-bit input. */ + +static double get_out_val(struct d_data *dp, int size) +{ + double v; + int i; + + for (i = size - 1, v = 0.0; i >= 0; --i) { + v /= 2.0; + switch (dp[i].i) { + case ONE: + v += 0.5; + break; + case UNKNOWN: + v += 0.25; + break; + default: + break; + } + } + return v; +} + /*=== CM_DAC_BRIDGE ROUTINE ===*/ /************************************************ @@ -135,9 +152,7 @@ struct d_data { * Created 6/3/91 J.P.Murray * ************************************************/ - void cm_dac_bridge(ARGS) - { double out_low, /* analog output value corresponding to '0' digital input */ @@ -157,18 +172,16 @@ void cm_dac_bridge(ARGS) time_inc; /* time increment since last analog call */ int i, /* generic loop counter index */ - size; /* number of input & output ports */ + multi, /* Multi-bit in, single real out. */ + size_in, /* number of input ports */ + size_out; /* number of output ports */ - struct d_data *in, /* base address of array holding all input + struct d_data *in, /* base address of array holding all input values */ - *in_old; /* array holding previous input values */ + *in_old; /* array holding previous input values */ - /* determine "width" of the node bridge... */ - - size = PORT_SIZE(in); - - /** Read in remaining model parameters **/ + /* Read in model parameters. **/ out_low = PARAM(out_low); out_high = PARAM(out_high); @@ -180,20 +193,38 @@ void cm_dac_bridge(ARGS) /* if so, take out_undef as mean of out_high and out_low. */ if (!PARAM_NULL(out_low) && !PARAM_NULL(out_high) && - PARAM_NULL(out_undef) ) { + PARAM_NULL(out_undef)) { out_undef = out_low + (out_high - out_low) / 2.0; } else { out_undef = PARAM(out_undef); } + /* determine "width" of the node bridge... */ + + size_in = PORT_SIZE(in); + size_out = PORT_SIZE(out); + multi = (size_in != size_out && size_out == 1); + if (!multi) { + if (size_in < size_out) + size_out = size_in; + else + size_in = size_out; + } + + if (INIT) { /*** Test for INIT == TRUE. If so, allocate storage, etc. ***/ + if (size_in != size_out && size_out != 1) { + cm_message_printf("Error: %d input ports with %d outputs", + size_in, size_out); + } + /* Allocate storage for inputs */ - cm_event_alloc(0, size * (int) sizeof(struct d_data)); + cm_event_alloc(0, size_in * (int)sizeof(struct d_data)); /* Allocate storage for outputs */ - cm_analog_alloc(0, size * (int) sizeof(double)); + cm_analog_alloc(0, size_out * (int)sizeof(double)); /* Retrieve allocated addresses. */ @@ -201,88 +232,202 @@ void cm_dac_bridge(ARGS) out = (double *) cm_analog_get_ptr(0, 0); /* read current input values */ - for (i=0; i v) + vout = v; + } else { + /* Continue falling. */ + + vout -= time_inc / t_fall; + if (vout < v) + vout = v; + } + } else { + /* There has been a change in input since the last + analog access. Determine when the change occurred + and calculate the current output, then set a breakpoint + for completion of the current transition. + */ + + iota = time_inc * 1e-7; // Ignorable + if (T(0) - in[0].i_changed < iota) { + /* Previous input value in force for whole step. */ + + step_count = 1; + step = 0; + interval[0] = time_inc; + } else if (in[0].i_changed - T(1) < iota) { + /* New input value in force for whole step. + * Includes common no-change case where new == old. + */ + + step_count = 2; + step = 1; + interval[1] = time_inc; + } else { + /* Calculate both sides of change. */ + + step_count = 2; + step = 0; + interval[0] = in[0].i_changed - T(1); + interval[1] = T(0) - in[0].i_changed; + } + + when = -1.0; + for (; step < step_count; ++step) { + int last_step = (step == step_count - 1); + + if (step == 0) + target = get_out_val(in_old, size_in); + else + target = v; + + if (target > vout) { + /* Rising. */ + + vout += interval[step] / t_rise; + if (vout > v) + vout = v; + else if (last_step) + when = (v - vout) * t_rise; + } else if (target < vout) { + /* Falling. */ + + vout -= interval[step] / t_fall; + if (vout < v) + vout = v; + else if (last_step) + when = (vout - v) * t_fall; + } + } + if (when > 0.0) + cm_analog_set_perm_bkpt(when + TIME); + } + out[0] = vout * level_inc + out_low; + OUTPUT(out[0]) = out[0]; + return; + } + + /* Multiple single-bit conversions. */ + + for (i = 0; i < size_in; i++) { if ( 0.0 == TIME ) { /*** DC analysis ***/ switch (in[i].i) { case ONE: - out[i] = out_high; + vout = out_high; break; case ZERO: - out[i] = out_low; + vout = out_low; break; case UNKNOWN: - out[i] = out_undef; + vout = out_undef; break; } } else if ( in_old[i].i == in[i].i ) { @@ -295,44 +440,41 @@ void cm_dac_bridge(ARGS) switch (in[i].i) { case ZERO: if (out_old[i] > out_low) { /* output still dropping */ - out[i] = out_old[i] - fall_slope * time_inc; - if ( out_low > out[i]) - out[i] = out_low; + vout = out_old[i] - fall_slope * time_inc; + if (out_low > vout) + vout = out_low; } else { /* output at out_low */ - out[i] = out_low; + vout = out_low; } break; case ONE: if (out_old[i] < out_high) { /* output still rising */ - out[i] = out_old[i] + rise_slope * time_inc; - if ( out_high < out[i]) - out[i] = out_high; + vout = out_old[i] + rise_slope * time_inc; + if (out_high < vout) + vout = out_high; } else { /* output at out_high */ - out[i] = out_high; + vout = out_high; } break; case UNKNOWN: if (out_old[i] < out_undef) { /* output still rising */ - out[i] = out_old[i] + rise_slope * time_inc; - if ( out_undef < out[i]) - out[i] = out_undef; + vout = out_old[i] + rise_slope * time_inc; + if (out_undef < vout) + vout = out_undef; } else { if (out_old[i] > out_undef) { /* output still falling */ - out[i] = out_old[i] - fall_slope * time_inc; - if ( out_undef > out[i]) - out[i] = out_undef; + vout = out_old[i] - fall_slope * time_inc; + if (out_undef > vout) + vout = out_undef; } else { /* output at out_undef */ - out[i] = out_undef; + vout = out_undef; } } break; } } else { - double when, iota, vout, interval[2]; - int step, step_count; - /* There HAS been a change in this digital input since the last analog access. Determine when the change occurred and calculate the current output, then @@ -412,9 +554,8 @@ void cm_dac_bridge(ARGS) } if (when > 0.0) cm_analog_set_perm_bkpt(when + TIME); - out[i] = vout; } - OUTPUT(out[i]) = out[i]; + OUTPUT(out[i]) = out[i] = vout; } break; From aca07bbe6dd52af3616621e7b101f09ea1052738 Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Thu, 7 May 2026 18:54:12 +0100 Subject: [PATCH 30/49] Feature Request 72 - "Printing hidden errors to terminal" suggests showing errors in XSPICE code model support functions by default. But errors may occur routinely and be handled by code. To aid developers, setting variable "noisyxspice" will display the messages. Also fix an error report in cm_event_queue(), remove XSPICE parse error messages that are now shown twice and fix errors in d_source that were seen with the new error reporting. --- src/xspice/cm/cmevt.c | 9 ++++++--- src/xspice/evt/evtload.c | 8 +++++++- src/xspice/icm/digital/d_source/cfunc.mod | 6 ++++-- src/xspice/mif/mif_inp2.c | 6 ------ src/xspice/mif/mifload.c | 8 +++++++- 5 files changed, 24 insertions(+), 13 deletions(-) diff --git a/src/xspice/cm/cmevt.c b/src/xspice/cm/cmevt.c index beaf49a96..b9e164fbc 100644 --- a/src/xspice/cm/cmevt.c +++ b/src/xspice/cm/cmevt.c @@ -240,10 +240,13 @@ int cm_event_queue( here = g_mif_info.instance; ckt = g_mif_info.ckt; - /* If breakpoint time <= current event time, return error */ - if(time <= g_mif_info.circuit.evt_step) { + /* If breakpoint time < current event time, return error. */ + + if (time < g_mif_info.circuit.evt_step || + (time == g_mif_info.circuit.evt_step && + g_mif_info.circuit.call_type == MIF_EVENT_DRIVEN)) { g_mif_info.errmsg = - "ERROR - cm_event_queue() - Event time cannot be <= current time\n"; + "ERROR - cm_event_queue() - Event time cannot be <= current time\n"; return(MIF_ERROR); } diff --git a/src/xspice/evt/evtload.c b/src/xspice/evt/evtload.c index 35ee44716..db4067592 100644 --- a/src/xspice/evt/evtload.c +++ b/src/xspice/evt/evtload.c @@ -159,7 +159,6 @@ int EVTload_with_event( g_mif_info.ckt = ckt; g_mif_info.instance = inst; - g_mif_info.errmsg = ""; g_mif_info.circuit.call_type = MIF_EVENT_DRIVEN; if(inst->initialized) @@ -250,6 +249,13 @@ int EVTload_with_event( mod_type = MIFmodPtr(inst)->MIFmodType; DEVices[mod_type]->DEVpublic.cm_func (&cm_data); + if (g_mif_info.errmsg && g_mif_info.errmsg[0] && + cp_getvar("noisyxspice", CP_BOOL, NULL, 0)) { + fprintf(stderr, "XSPICE instance %s: %s", + inst->MIFname, g_mif_info.errmsg); + g_mif_info.errmsg = NULL; + } + /* ****************************** */ /* Process the code model outputs */ diff --git a/src/xspice/icm/digital/d_source/cfunc.mod b/src/xspice/icm/digital/d_source/cfunc.mod index 716ebb387..a17f3d83d 100644 --- a/src/xspice/icm/digital/d_source/cfunc.mod +++ b/src/xspice/icm/digital/d_source/cfunc.mod @@ -1089,7 +1089,8 @@ void cm_d_source(ARGS) /* reset current breakpoint */ test_double = loc->all_timepoints[*row_index]; - cm_event_queue( test_double ); + if (test_double != 0) + cm_event_queue( test_double ); /* Output new values... */ for (i=0; iwidth; i++) { @@ -1154,7 +1155,8 @@ void cm_d_source(ARGS) /* reset current breakpoint */ test_double = loc->all_timepoints[*row_index] - 1.0e-10; - cm_event_queue( test_double ); + if (TIME != test_double) + cm_event_queue( test_double ); /* Output new values... */ for (i=0; iwidth; i++) { diff --git a/src/xspice/mif/mif_inp2.c b/src/xspice/mif/mif_inp2.c index f6b170894..3cdfb9fcb 100644 --- a/src/xspice/mif/mif_inp2.c +++ b/src/xspice/mif/mif_inp2.c @@ -370,13 +370,11 @@ MIF_INP2A ( /* First, do a couple of error checks */ if(next_token_type == MIF_LARRAY_TOK) { LITERR("ERROR - Scalar connection expected, [ found"); - printf("ERROR - Scalar connection expected, [ found. Returning . . ."); gc_end(); return; } if(next_token_type == MIF_RARRAY_TOK) { LITERR("ERROR - Unexpected ]"); - printf("ERROR - Unexpected ]. Returning . . ."); gc_end(); return; } @@ -412,7 +410,6 @@ MIF_INP2A ( /* check for required leading array delim character [ and eat it if found */ if(next_token_type != MIF_LARRAY_TOK) { LITERR("Missing [, an array connection was expected"); - printf("Missing [, an array connection was expected. Returning . . ."); gc_end(); return; } else /* eat the [ */ @@ -448,19 +445,16 @@ MIF_INP2A ( or hold a non-null connection (netname) */ if(next_token_type == MIF_NULL_TOK) { LITERR("NULL connection found where not allowed"); - printf("NULL connection found where not allowed. Returning . . ."); gc_end(); return; } if(next_token_type == MIF_LARRAY_TOK) { LITERR("ERROR - Unexpected [ - Arrays of arrays not allowed"); - printf("ERROR - Unexpected [ - Arrays of arrays not allowed. Returning . . ."); gc_end(); return; } if(next_token_type == MIF_RARRAY_TOK) { LITERR("ERROR - Unexpected ]"); - printf("ERROR - Unexpected ]. Returning . . ."); gc_end(); return; } diff --git a/src/xspice/mif/mifload.c b/src/xspice/mif/mifload.c index af36eed55..b4bd3d2d3 100644 --- a/src/xspice/mif/mifload.c +++ b/src/xspice/mif/mifload.c @@ -245,7 +245,6 @@ MIFload( /* Prepare the data needed by the cm_.. functions */ /* ***************************************************************** */ g_mif_info.instance = here; - g_mif_info.errmsg = ""; if(here->initialized) { cm_data.circuit.init = MIF_FALSE; @@ -461,6 +460,13 @@ MIFload( (g_mif_info.auto_partial.global || g_mif_info.auto_partial.local)) MIFauto_partial(here, DEVices[mod_type]->DEVpublic.cm_func, &cm_data); + if (g_mif_info.errmsg && g_mif_info.errmsg[0] && + cp_getvar("noisyxspice", CP_BOOL, NULL, 0)) { + fprintf(stderr, "XSPICE instance %s: %s", + g_mif_info.instance->MIFname, g_mif_info.errmsg); + g_mif_info.errmsg = NULL; + } + /* ***************************************************************** */ /* Loop through all connections on this instance and */ /* load the data into the matrix for each output port */ From 1ff2ae384e728401d7ea2820949d3316f61f7b94 Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Tue, 9 Jun 2026 11:15:28 +0100 Subject: [PATCH 31/49] Fix Bug #775 - "Missing LDFLAGS in vlnggen", and add an option (-stc c++14) that was needed in testing on Windows. --- src/xspice/verilog/vlnggen | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/xspice/verilog/vlnggen b/src/xspice/verilog/vlnggen index 69cecb905..c6d165a50 100644 --- a/src/xspice/verilog/vlnggen +++ b/src/xspice/verilog/vlnggen @@ -40,6 +40,8 @@ if $oscompiled = 1 | $oscompiled = 2 | $oscompiled = 8 // Windows (MINGW, Cygwin set windows=1 set dirsep1="\\" set dirsep2="/" + // Extra flags to fix undefined symbols. + setcs cflags="-CFLAGS -std=c++14 -CFLAGS -DVL_TIME_CONTEXT $cflags" if $oscompiled = 1 // MINGW: verilator is a Perl wrapper, needs MSYS2 shell set run_verilator="sh -c \"verilator" set run_verilator_close="\"" @@ -55,9 +57,9 @@ else set run_verilator_close="" end -if $oscompiled = 7 // MacOS +if $oscompiled = 7 // MacOS: use clang and suppress a weak symbol. set macos=1 - setcs cflags="$cflags --compiler clang" + setcs cflags="-CFLAGS -DVL_TIME_CONTEXT $cflags --compiler clang" else set macos=0 end From 67fbaa9e6a6d756fa23bf52c7b565fbe926fb9c6 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 12 Jun 2026 17:38:07 +0200 Subject: [PATCH 32/49] Make the name of the added voltage source more verbose (to avoid already existing source names). --- src/frontend/inpcom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 6de5885aa..c0bdac998 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -6956,11 +6956,11 @@ static void inp_compat(struct card *card) // Cxxx n-aux1 n-aux2 1e-6 ckt_array[2] = tprintf("c%s %s_int1 %s_int2 1e-6", title_tok, title_tok, title_tok); // Vxxx n-aux2 0 0 ; measure current in Cxxx - ckt_array[3] = tprintf("v%s %s_int2 0 0", title_tok, title_tok); + ckt_array[3] = tprintf("vcurrmeas%s %s_int2 0 0", title_tok, title_tok); // Rxxxpar n2 n1 1e15 ; generally avoid floating nodes ckt_array[4] = tprintf("r%spar %s %s 1e15", title_tok, node2, node1); // Bxxx n1 n2 I = 1e6 * i(Vxxx) * equation - ckt_array[5] = tprintf("b%s %s %s i = 1e6 * i(v%s) * (%s) " + ckt_array[5] = tprintf("b%s %s %s i = 1e6 * i(vcurrmeas%s) * (%s) " "%s reciproctc=1", title_tok, node1, node2, title_tok, equation, tcrstr); // comment out current variable capacitor line From d56e3abd0e81c19959b2796c231765cf1df0c5ac Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Fri, 26 Jun 2026 17:01:14 +0100 Subject: [PATCH 33/49] In a shared library build, the option -fvisibility=hidden may be set when compiling making entry point Cosim_setup inaccessible. The problem was reported at https://github.com/iic-jku/IIC-OSIC-TOOLS/issues/287, but not reproduced. --- src/xspice/verilog/icarus_shim.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/xspice/verilog/icarus_shim.c b/src/xspice/verilog/icarus_shim.c index 9d540fcd6..baa495b6f 100644 --- a/src/xspice/verilog/icarus_shim.c +++ b/src/xspice/verilog/icarus_shim.c @@ -268,6 +268,9 @@ static void *run_vvp(void *arg) /* Entry point to this shared library. Called by d_cosim. */ +#if !defined(__MINGW32__) && !defined(_MSC_VER) +__attribute__((visibility("default"))) +#endif void Cosim_setup(struct co_info *pinfo) { char *file; From 2988b5db6643c37b9033cf5c06859eda02c652fa Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Fri, 26 Jun 2026 18:00:18 +0100 Subject: [PATCH 34/49] Correct three comments. --- examples/xspice/ghdl/README.txt | 2 +- src/xspice/icm/digital/d_cosim/cfunc.mod | 2 +- src/xspice/vhdl/ghdl_vpi.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/xspice/ghdl/README.txt b/examples/xspice/ghdl/README.txt index 8cce02f0e..bb3008d99 100644 --- a/examples/xspice/ghdl/README.txt +++ b/examples/xspice/ghdl/README.txt @@ -27,7 +27,7 @@ mechanical quantities do not match standard units. Before a simulation can be run, the associated VHDL code must be compiled and an additional shared library, ghdlng.vpi must be built. A library script -isavailable to simplify the steps, run like this: +is available to simplify the steps, run like this: ngspice ghnggen adc.vhd diff --git a/src/xspice/icm/digital/d_cosim/cfunc.mod b/src/xspice/icm/digital/d_cosim/cfunc.mod index f1bbb04f2..fc6d280bb 100644 --- a/src/xspice/icm/digital/d_cosim/cfunc.mod +++ b/src/xspice/icm/digital/d_cosim/cfunc.mod @@ -118,7 +118,7 @@ static void callback(ARGS, Mif_Callback_Reason_t reason) } } -/* A utility function used to open static libraries, trying an installation +/* A utility function used to open dynamic libraries, trying an installation * directory and different file extenstions. */ diff --git a/src/xspice/vhdl/ghdl_vpi.c b/src/xspice/vhdl/ghdl_vpi.c index 5ecd1b401..7da542cee 100644 --- a/src/xspice/vhdl/ghdl_vpi.c +++ b/src/xspice/vhdl/ghdl_vpi.c @@ -31,7 +31,7 @@ #include #endif -/* The VVP code runs on its own stack, handled by cr_xxx() functions. */ +/* The VHDL code runs on its own stack, handled by cr_xxx() functions. */ #include "ngspice/coroutine_cosim.h" From d881158a41887131f4e343975b1eecf37599fb63 Mon Sep 17 00:00:00 2001 From: Brian Taylor Date: Mon, 29 Jun 2026 17:35:00 +0200 Subject: [PATCH 35/49] Paranoia_Parallel: a test suite for more than 100 test circuits, running in parallel on a multi-core machine (12 min execution time on a i9 9900, ngspice compiled with gcc, debug mode enabled. Linux with Valgrind and Parallel are required. --- paranoia_parallel/README | 16 + .../examples/Monte_Carlo/MC_2_circ.sp | 111 + .../examples/Monte_Carlo/MC_2_control.sp | 47 + .../examples/Monte_Carlo/MC_frequ.log | 4 + .../examples/Monte_Carlo/MC_ring.sp | 292 + .../examples/Monte_Carlo/MC_ring_ts.sp | 180 + .../examples/Monte_Carlo/MC_ring_ts_short.sp | 180 + .../examples/Monte_Carlo/MC_ring_ts_test.sp | 180 + .../examples/Monte_Carlo/MC_ring_val.sp | 286 + .../examples/Monte_Carlo/MonteCarlo.sp | 68 + .../examples/Monte_Carlo/OpWien.sp | 88 + .../examples/Monte_Carlo/OpWien_s.sp | 87 + .../examples/Monte_Carlo/mc_ring_circ.net | 58 + .../mc_ring_lib_complete_actual.cir | 212 + .../examples/Monte_Carlo/names-test.sp | 9 + .../examples/Monte_Carlo/names-test2.sp | 21 + .../examples/Monte_Carlo/names-test3.sp | 9 + .../examples/Monte_Carlo/rand_numb_test.cir | 40 + .../examples/TransImpedanceAmp/README | 41 + .../examples/TransImpedanceAmp/output.net | 469 + .../examples/TransmissionLines/cpl1_4_line.sp | 63 + .../examples/TransmissionLines/cpl2_2_line.sp | 46 + .../examples/TransmissionLines/cpl3_4_line.sp | 37 + .../TransmissionLines/cpl4_txl_2_line.sp | 378 + .../examples/TransmissionLines/cpl_ibm1.sp | 82 + .../examples/TransmissionLines/cpl_ibm2.sp | 22 + .../examples/TransmissionLines/cpl_ibm3.sp | 70 + .../TransmissionLines/ltra1_1_line.sp | 19 + .../TransmissionLines/ltra1_4_line.sp | 144 + .../TransmissionLines/ltra2_2_line.sp | 24 + .../TransmissionLines/ltra3_2_line.sp | 98 + .../TransmissionLines/ltra4_1_line.sp | 239 + .../TransmissionLines/ltra5_1_line.sp | 530 + .../TransmissionLines/ltra6_2_line.sp | 394 + .../TransmissionLines/ltra7_4_line.sp | 113 + .../examples/TransmissionLines/txl1_1_line.sp | 18 + .../examples/TransmissionLines/txl2_3_line.sp | 26 + .../examples/TransmissionLines/txl3_1_line.sp | 236 + .../examples/TransmissionLines/txl4_1_line.sp | 523 + paranoia_parallel/examples/cider/cmosinv.cir | 123 + paranoia_parallel/examples/cider/diode.cir | 40 + paranoia_parallel/examples/cider/pullup.cir | 74 + paranoia_parallel/examples/cider/recovery.cir | 46 + paranoia_parallel/examples/cider/rtlinv.cir | 34 + .../control_structs/foreach_bjt_ft.sp | 52 + .../examples/control_structs/if-batchmode.cir | 31 + .../examples/control_structs/if-test-1.cir | 78 + .../examples/control_structs/new-check-3.sp | 96 + .../examples/control_structs/new-check-4.sp | 111 + .../examples/control_structs/repeat3.sp | 150 + .../control_structs/repeat_no_one_goto.sp | 11 + .../control_structs/repeat_one_goto.sp | 19 + .../examples/control_structs/repeat_s.sp | 46 + .../examples/control_structs/s-param.cir | 121 + .../examples/control_structs/s3046.s2p | 105 + .../examples/delta-sigma/mod1-ct-test.cir | 53 + .../examples/delta-sigma/mod1-ct.cir | 46 + .../examples/digital/74HCng_short_2.lib | 226 + .../examples/digital/adder-comparison.txt | 23 + .../examples/digital/adder_Xspice.cir | 85 + .../examples/digital/adder_behav.cir | 70 + .../examples/digital/adder_bip.cir | 89 + .../examples/digital/adder_cshunt.cir | 81 + .../examples/digital/adder_mos.cir | 81 + paranoia_parallel/examples/digital/nggtk.tcl | 10 + .../examples/digital_devices/.spiceinit | 1 + .../examples/digital_devices/behav-568.cir | 464 + .../examples/digital_devices/behav-568.stim | 83 + .../examples/digital_devices/counter.cir | 49 + .../examples/digital_devices/ex4.cir | 85 + .../examples/digital_devices/ex4.stim | 13 + .../inductive-systems/positive-definite-1.cir | 32 + .../inductive-systems/positive-definite-2.cir | 31 + .../inductive-systems/positive-definite-3.cir | 33 + .../inductive-systems/positive-definite-4.cir | 80 + .../examples/measure/func_cap.sp | 20 + .../examples/measure/inv-meas-tran-auto.sp | 103 + .../examples/measure/inv-meas-tran-control.sp | 113 + .../examples/measure/inv-meas-tran.sp | 105 + .../examples/measure/mos-meas-dc-control.sp | 49 + .../examples/measure/mos-meas-dc.sp | 38 + .../examples/measure/rc-meas-ac-control.sp | 64 + .../examples/measure/rc-meas-ac.sp | 55 + .../examples/measure/simple-meas-tran.sp | 57 + .../examples/memristor/memristor.sp | 66 + .../examples/memristor/memristor_x.sp | 84 + paranoia_parallel/examples/optran/.spiceinit | 5 + .../optran/F5TurboV2thermal-ic-in.cir | 92 + .../optran/F5TurboV2thermal-ic-out.cir | 79 + .../optran/F5TurboV2thermal-optran.cir | 79 + .../examples/optran/F5models.lib | 78 + .../examples/optran/HiPass3opamps_optran.cir | 72 + .../examples/optran/TLV6001-test.cir | 32 + .../examples/optran/TLV9002-test.cir | 31 + .../examples/optran/contents.txt | 12 + .../examples/optran/models/OPA1611.LIB | 438 + .../examples/optran/models/TL072-dual.lib | 7 + .../examples/optran/models/TL072.301 | 42 + .../examples/optran/models/TLV6001.LIB | 382 + .../examples/optran/models/TLV9002.lib | 422 + .../examples/optran/models/opa1612c-dual.lib | 8 + .../examples/optran/models/opa1656.lib | 547 + .../examples/optran/models/opa1656c-dual.lib | 8 + .../examples/optran/script-icout.txt | 64 + .../examples/optran/script-optran.txt | 56 + .../examples/optran/simple-tran.cir | 15 + .../examples/pll/f-p-det-d-sub.cir | 16 + .../examples/pll/loop-filter-2.cir | 50 + paranoia_parallel/examples/pll/pll-xspice.cir | 145 + .../examples/pll/vco_sub_new.cir | 30 + .../examples/proc2mod/process.pro | 203 + paranoia_parallel/examples/pton/.spiceinit | 5 + .../examples/pton/555-timer-2.cir | 95 + paranoia_parallel/examples/pton/MCP6041.txt | 170 + paranoia_parallel/examples/pton/MOS1_out.cir | 28 + paranoia_parallel/examples/pton/OPA171.txt | 376 + .../examples/pton/OP_MCP6041.cir | 38 + .../examples/pton/Opamps_Comparators_ST.lib | 12825 ++++++++++++++++ .../examples/pton/OptiMOS5_30V_PSpice.lib | 1375 ++ .../examples/pton/Optimos_out.cir | 27 + paranoia_parallel/examples/pton/README | 12 + paranoia_parallel/examples/pton/TLC555.LIB | 438 + paranoia_parallel/examples/pton/ad22057n.lib | 181 + .../examples/pton/op-test-adi.cir | 41 + .../examples/pton/op-test-test.cir | 198 + paranoia_parallel/examples/pton/op-test.cir | 198 + .../examples/pton/relax_osc_st.cir | 34 + .../examples/pton/remcirc-test.cir | 15 + paranoia_parallel/examples/pton/rtest.lib | 4 + .../examples/pton/switch-invs.lib | 72 + .../examples/pton/switch-oscillators.cir | 72 + .../examples/pton/switch-oscillators_inc.cir | 44 + .../examples/transient-noise/README | 15 + .../examples/transient-noise/modelcard.nmos | 41 + .../examples/transient-noise/modelcard.pmos | 31 + .../transient-noise/noi-ring51-demo.cir | 92 + .../transient-noise/noi-ring51-demo_s.cir | 59 + .../examples/transient-noise/noi-sc-tr.cir | 54 + .../examples/transient-noise/noilib-demo.h | 63 + .../examples/transient-noise/noise_vnoi.cir | 33 + .../transient-noise/noise_vnoi_test.cir | 33 + .../examples/transient-noise/rts-1.cir | 30 + .../examples/transient-noise/shot_ng.cir | 28 + .../examples/transient-noise/simple-noise.cir | 32 + paranoia_parallel/examples/various/3d_loop.sp | 181 + .../examples/various/FFT_Leakage.cir | 55 + .../examples/various/FFT_tests.cir | 125 + .../examples/various/Tschebyschef-LP.cir | 33 + .../examples/various/adder_mos.cir | 79 + .../examples/various/agauss_reduced.cir | 8 + .../examples/various/agauss_test.cir | 50 + .../examples/various/alterparam.sp | 40 + .../examples/various/bjt_ac_par.sp | 30 + .../examples/various/bjtnoise.cir | 32 + paranoia_parallel/examples/various/dc_loop.sp | 48 + .../examples/various/def_red.cir | 19 + .../examples/various/def_red_2.cir | 10 + .../examples/various/diode_ac_par.sp | 28 + .../examples/various/echo_test.cir | 10 + .../examples/various/gain_stage.cir | 34 + .../examples/various/i(xxx)_tests.cir | 89 + .../examples/various/model-name-check.cir | 68 + .../examples/various/modelcard.nmos | 33 + .../examples/various/modelcard.pmos | 28 + .../examples/various/nic_soa.cir | 39 + .../examples/various/nmos_pmos_BSIM330.sp | 44 + .../examples/various/nmos_pmos_plotting.sp | 49 + .../examples/various/param_sweep.cir | 29 + .../examples/various/probe-i-dev.cir | 41 + .../examples/various/ro_17_4.cir | 197 + .../examples/various/tmp-noise-2.cir | 24 + .../examples/various/tmp-noise.cir | 33 + .../examples/various/todo-temper-3.cir | 23 + paranoia_parallel/examples/vbic/DFF_Y_ECL.sp | 56 + .../examples/vbic/Infineon_VBIC.lib | 287 + paranoia_parallel/examples/vbic/npn_ft.sp | 42 + paranoia_parallel/examples/vbic/npn_gum.sp | 18 + paranoia_parallel/examples/vbic/npn_out.sp | 17 + paranoia_parallel/examples/vbic/qnva.mod | 94 + paranoia_parallel/examples/vbic/self-heat.sp | 52 + paranoia_parallel/examples/vbic/vbic99_dc.sp | 47 + .../examples/vbic/vbic99_tran.sp | 55 + .../examples/vbic/vbic_ac_par.sp | 21 + paranoia_parallel/examples/vdmos/100W.sp | 116 + .../examples/vdmos/100W_wingspread.sp | 93 + .../vdmos/IXTH80N20L-IXTH48P20P-quasisat.cir | 67 + .../vdmos/IXTH80N20L-IXTH48P20P-quasisat.sp | 68 + .../examples/vdmos/IXTP6N100D2-cap.cir | 19 + .../examples/vdmos/IXTP6N100D2-cap.sp | 19 + .../examples/vdmos/IXTP6N100D2-n-weak-inv.cir | 30 + .../examples/vdmos/IXTP6N100D2-n-weak-inv.sp | 29 + .../examples/vdmos/SUM75N06-09L-vdmos.txt | 1 + .../examples/vdmos/VDMOS-DIO-AC.cir | 25 + .../examples/vdmos/VDMOS-DIO.cir | 27 + paranoia_parallel/examples/vdmos/VDMOS-DIO.sp | 30 + .../examples/vdmos/crss_coss_ciss.sp | 57 + paranoia_parallel/examples/vdmos/dcdc.sp | 44 + .../examples/vdmos/inv_vdmos.cir | 29 + paranoia_parallel/examples/vdmos/inv_vdmos.sp | 27 + .../examples/vdmos/inv_vdmos_dc.cir | 30 + .../vdmos/lt-ng-mos-models-2012-2018.lib | 15 + .../examples/vdmos/mtriode_nch.sp | 14 + .../examples/vdmos/ro_11_vdmos.cir | 39 + .../examples/vdmos/ro_11_vdmos.sp | 37 + .../examples/vdmos/self-heating.sp | 25 + paranoia_parallel/examples/vdmos/soa_chk.sp | 41 + .../examples/vdmos/sum75n06-9L_PS.lib | 32 + paranoia_parallel/examples/vdmos/theta_nch.sp | 14 + .../examples/vdmos/vdmos-out.cir | 23 + paranoia_parallel/examples/vdmos/vdmos-out.sp | 19 + .../examples/vdmos/vdmos-out_ir.cir | 22 + .../examples/vdmos/vdmos-out_ir_mtr.cir | 27 + .../examples/vdmos/vdmos-out_ir_mtr.sp | 27 + .../examples/vdmos/vdmos_model_test.cir | 10 + .../examples/vdmos/vdmosp-out-mtr.cir | 32 + .../examples/vdmos/vdmosp-out-mtr.sp | 27 + .../examples/vdmos/vdmosp-out.cir | 20 + .../examples/vdmos/vdmosp-out.sp | 18 + .../xspice/analog_models1_transient.sp | 65 + .../examples/xspice/bug-378-test-sequence.cir | 47 + .../examples/xspice/d_lut/mult4bit.spi | 127 + .../xspice/d_source/d_source-stimulus.txt | 13 + .../xspice/d_source/d_source-stimulus2.txt | 14 + .../examples/xspice/d_source/d_source.cir | 22 + .../d_source/test/d_source-stimulus3.txt | 5 + .../examples/xspice/delta-sigma/README | 25 + .../xspice/delta-sigma/count-latch-dac.cir | 81 + .../xspice/delta-sigma/counter-test.cir | 42 + .../xspice/delta-sigma/delta-sigma-1.cir | 108 + .../xspice/delta-sigma/mod1-ct-test.cir | 52 + .../examples/xspice/delta-sigma/mod1-ct.cir | 46 + .../examples/xspice/filesource/my-source.txt | 12 + .../xspice/filesource/simple-filesource.cir | 29 + paranoia_parallel/examples/xspice/fstest.sp | 26 + .../original-examples/analog_models1_ac.deck | 67 + .../original-examples/analog_models1_dc.deck | 61 + .../analog_models1_swept_dc.deck | 61 + .../analog_models1_transient.deck | 62 + .../original-examples/analog_models2_ac.deck | 66 + .../original-examples/analog_models2_dc.deck | 63 + .../analog_models2_swept_dc.deck | 64 + .../analog_models2_transient.deck | 67 + .../original-examples/analog_models3_ac.deck | 81 + .../original-examples/analog_models3_dc.deck | 79 + .../analog_models3_swept_dc.deck | 79 + .../analog_models3_transient.deck | 80 + .../original-examples/analog_models4_ac.deck | 78 + .../original-examples/analog_models4_dc.deck | 74 + .../analog_models4_swept_dc.deck | 72 + .../analog_models4_transient.deck | 81 + .../original-examples/arbitrary_phase.deck | 17 + .../xspice/original-examples/bad_io.deck | 17 + .../xspice/original-examples/bad_io_type.deck | 25 + .../xspice/original-examples/bad_name.deck | 16 + .../xspice/original-examples/bad_param.deck | 16 + .../original-examples/bad_param_type.deck | 16 + .../xspice/original-examples/diffpair.in | 28 + .../original-examples/digital_invert.deck | 23 + .../original-examples/digital_models.deck | 20 + .../original-examples/digital_models1.deck | 77 + .../original-examples/digital_models2.deck | 91 + .../original-examples/digital_models3.deck | 92 + .../original-examples/digital_models4.deck | 91 + .../original-examples/dot_model_ref.deck | 19 + .../original-examples/hybrid_models1_dc.deck | 46 + .../hybrid_models1_transient.deck | 48 + .../original-examples/initial_conditions.deck | 19 + .../xspice/original-examples/io_ordering.deck | 17 + .../xspice/original-examples/io_types.deck | 34 + .../xspice/original-examples/long_names.deck | 19 + .../xspice/original-examples/mixed_case.deck | 15 + .../original-examples/mixed_io_size.deck | 33 + .../xspice/original-examples/mixed_mode.deck | 98 + .../xspice/original-examples/mixed_ref.deck | 41 + .../xspice/original-examples/mosamp2.in | 42 + .../xspice/original-examples/mosmem.in | 27 + .../original-examples/param_defaults.deck | 16 + .../xspice/original-examples/param_types.deck | 23 + .../xspice/original-examples/parsing.deck | 16 + .../xspice/original-examples/polarity.deck | 26 + .../xspice/original-examples/rca3040.in | 33 + .../xspice/original-examples/rtlinv.in | 20 + .../xspice/original-examples/schmitt.in | 24 + .../xspice/original-examples/spice3.deck | 25 + .../xspice/original-examples/suffixes.deck | 25 + .../original-examples/supply_ramping.deck | 30 + .../original-examples/user_defined_nodes.deck | 30 + .../xspice/original-examples/xspice.deck | 22 + paranoia_parallel/examples/xspice/pll/README | 39 + .../examples/xspice/pll/f-p-det-d-sub.cir | 16 + .../examples/xspice/pll/loop-filter-2.cir | 50 + .../examples/xspice/pll/loop-filter.cir | 31 + .../examples/xspice/pll/pll-xspice-fstep.cir | 165 + .../examples/xspice/pll/pll-xspice.cir | 144 + .../examples/xspice/pll/test-f-p-det.cir | 114 + .../examples/xspice/pll/test_vco.cir | 158 + .../examples/xspice/pll/vco_sub.cir | 67 + .../examples/xspice/pll/vco_sub_new.cir | 30 + paranoia_parallel/examples/xspice/sine.m | 264 + .../examples/xspice/state/nggtk.tcl | 10 + .../examples/xspice/state/state-machine.cir | 40 + .../examples/xspice/state/state.in | 13 + .../examples/xspice/table/bsim4n-2d-1.table | 200 + .../examples/xspice/table/bsim4n-3d-1.table | 493 + .../examples/xspice/table/bsim4p-2d-1.table | 200 + .../examples/xspice/table/bsim4p-3d-1.table | 493 + .../examples/xspice/table/clc409.sub | 166 + .../examples/xspice/table/clc409mod.sub | 189 + .../examples/xspice/table/combi_script.cir | 43 + .../xspice/table/modelcards/modelcard.nmos | 112 + .../xspice/table/modelcards/modelcard.pmos | 112 + .../xspice/table/qinn-clc409-2d-1.table | 2011 +++ .../xspice/table/table-generator-b4-2d.sp | 90 + .../xspice/table/table-generator-b4-3d.sp | 110 + .../xspice/table/table-generator-b4n-2d.sp | 90 + .../xspice/table/table-generator-b4n-3d.sp | 110 + .../xspice/table/table-generator-b4p-2d.sp | 91 + .../xspice/table/table-generator-b4p-3d.sp | 112 + .../xspice/table/table-generator-q-2d.sp | 104 + .../xspice/table/table-model-bip-2d-1-oc.sp | 51 + .../xspice/table/table-model-bip-2d-1.sp | 66 + .../xspice/table/table-model-bip-2d-2.sp | 35 + .../xspice/table/table-model-man-2d-1.sp | 33 + .../xspice/table/table-model-man-3d-1.sp | 35 + .../xspice/table/table-model-mos-2d-2-oc.sp | 25 + .../xspice/table/table-model-mos-2d-2.sp | 39 + .../xspice/table/table-model-mos-2d-3.sp | 72 + .../xspice/table/table-model-mos-2d-4.sp | 67 + .../xspice/table/table-model-mos-3d-2.sp | 38 + .../xspice/table/table-model-mos-3d-3.sp | 69 + .../xspice/table/table-model-mos-3d-4.sp | 65 + .../xspice/table/table-model-mos-3d-5.sp | 71 + .../examples/xspice/table/test-2d-1.table | 19 + .../examples/xspice/table/test-2d-2.table | 16 + .../examples/xspice/table/test-2d-3.table | 15 + .../examples/xspice/table/test-3d-1.table | 21 + .../examples/xspice/xspice_c1.cir | 28 + .../examples/xspice/xspice_c2.cir | 21 + .../examples/xspice/xspice_c3.cir | 103 + paranoia_parallel/ignore_shared_libs.supp | 24 + .../paranoia_table_generators.sh | 52 + paranoia_parallel/paranoia_test_extra.sh | 221 + paranoia_parallel/runtests.sh | 35 + paranoia_parallel/textract.py | 44 + paranoia_parallel/working/testfile1.sh | 5 + 345 files changed, 42242 insertions(+) create mode 100644 paranoia_parallel/README create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_2_circ.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_2_control.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_frequ.log create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_ring.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_ring_ts.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_short.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_test.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MC_ring_val.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/MonteCarlo.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/OpWien.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/OpWien_s.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/mc_ring_circ.net create mode 100644 paranoia_parallel/examples/Monte_Carlo/mc_ring_lib_complete_actual.cir create mode 100644 paranoia_parallel/examples/Monte_Carlo/names-test.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/names-test2.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/names-test3.sp create mode 100644 paranoia_parallel/examples/Monte_Carlo/rand_numb_test.cir create mode 100644 paranoia_parallel/examples/TransImpedanceAmp/README create mode 100644 paranoia_parallel/examples/TransImpedanceAmp/output.net create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl1_4_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl2_2_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl3_4_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl4_txl_2_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl_ibm1.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl_ibm2.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/cpl_ibm3.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra1_1_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra1_4_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra2_2_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra3_2_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra4_1_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra5_1_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra6_2_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/ltra7_4_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/txl1_1_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/txl2_3_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/txl3_1_line.sp create mode 100644 paranoia_parallel/examples/TransmissionLines/txl4_1_line.sp create mode 100644 paranoia_parallel/examples/cider/cmosinv.cir create mode 100644 paranoia_parallel/examples/cider/diode.cir create mode 100644 paranoia_parallel/examples/cider/pullup.cir create mode 100644 paranoia_parallel/examples/cider/recovery.cir create mode 100644 paranoia_parallel/examples/cider/rtlinv.cir create mode 100644 paranoia_parallel/examples/control_structs/foreach_bjt_ft.sp create mode 100644 paranoia_parallel/examples/control_structs/if-batchmode.cir create mode 100644 paranoia_parallel/examples/control_structs/if-test-1.cir create mode 100644 paranoia_parallel/examples/control_structs/new-check-3.sp create mode 100644 paranoia_parallel/examples/control_structs/new-check-4.sp create mode 100644 paranoia_parallel/examples/control_structs/repeat3.sp create mode 100644 paranoia_parallel/examples/control_structs/repeat_no_one_goto.sp create mode 100644 paranoia_parallel/examples/control_structs/repeat_one_goto.sp create mode 100644 paranoia_parallel/examples/control_structs/repeat_s.sp create mode 100644 paranoia_parallel/examples/control_structs/s-param.cir create mode 100644 paranoia_parallel/examples/control_structs/s3046.s2p create mode 100644 paranoia_parallel/examples/delta-sigma/mod1-ct-test.cir create mode 100644 paranoia_parallel/examples/delta-sigma/mod1-ct.cir create mode 100644 paranoia_parallel/examples/digital/74HCng_short_2.lib create mode 100644 paranoia_parallel/examples/digital/adder-comparison.txt create mode 100644 paranoia_parallel/examples/digital/adder_Xspice.cir create mode 100644 paranoia_parallel/examples/digital/adder_behav.cir create mode 100644 paranoia_parallel/examples/digital/adder_bip.cir create mode 100644 paranoia_parallel/examples/digital/adder_cshunt.cir create mode 100644 paranoia_parallel/examples/digital/adder_mos.cir create mode 100644 paranoia_parallel/examples/digital/nggtk.tcl create mode 100644 paranoia_parallel/examples/digital_devices/.spiceinit create mode 100644 paranoia_parallel/examples/digital_devices/behav-568.cir create mode 100644 paranoia_parallel/examples/digital_devices/behav-568.stim create mode 100644 paranoia_parallel/examples/digital_devices/counter.cir create mode 100644 paranoia_parallel/examples/digital_devices/ex4.cir create mode 100644 paranoia_parallel/examples/digital_devices/ex4.stim create mode 100644 paranoia_parallel/examples/inductive-systems/positive-definite-1.cir create mode 100644 paranoia_parallel/examples/inductive-systems/positive-definite-2.cir create mode 100644 paranoia_parallel/examples/inductive-systems/positive-definite-3.cir create mode 100644 paranoia_parallel/examples/inductive-systems/positive-definite-4.cir create mode 100644 paranoia_parallel/examples/measure/func_cap.sp create mode 100644 paranoia_parallel/examples/measure/inv-meas-tran-auto.sp create mode 100644 paranoia_parallel/examples/measure/inv-meas-tran-control.sp create mode 100644 paranoia_parallel/examples/measure/inv-meas-tran.sp create mode 100644 paranoia_parallel/examples/measure/mos-meas-dc-control.sp create mode 100644 paranoia_parallel/examples/measure/mos-meas-dc.sp create mode 100644 paranoia_parallel/examples/measure/rc-meas-ac-control.sp create mode 100644 paranoia_parallel/examples/measure/rc-meas-ac.sp create mode 100644 paranoia_parallel/examples/measure/simple-meas-tran.sp create mode 100644 paranoia_parallel/examples/memristor/memristor.sp create mode 100644 paranoia_parallel/examples/memristor/memristor_x.sp create mode 100644 paranoia_parallel/examples/optran/.spiceinit create mode 100644 paranoia_parallel/examples/optran/F5TurboV2thermal-ic-in.cir create mode 100644 paranoia_parallel/examples/optran/F5TurboV2thermal-ic-out.cir create mode 100644 paranoia_parallel/examples/optran/F5TurboV2thermal-optran.cir create mode 100644 paranoia_parallel/examples/optran/F5models.lib create mode 100644 paranoia_parallel/examples/optran/HiPass3opamps_optran.cir create mode 100644 paranoia_parallel/examples/optran/TLV6001-test.cir create mode 100644 paranoia_parallel/examples/optran/TLV9002-test.cir create mode 100644 paranoia_parallel/examples/optran/contents.txt create mode 100644 paranoia_parallel/examples/optran/models/OPA1611.LIB create mode 100644 paranoia_parallel/examples/optran/models/TL072-dual.lib create mode 100644 paranoia_parallel/examples/optran/models/TL072.301 create mode 100644 paranoia_parallel/examples/optran/models/TLV6001.LIB create mode 100644 paranoia_parallel/examples/optran/models/TLV9002.lib create mode 100644 paranoia_parallel/examples/optran/models/opa1612c-dual.lib create mode 100644 paranoia_parallel/examples/optran/models/opa1656.lib create mode 100644 paranoia_parallel/examples/optran/models/opa1656c-dual.lib create mode 100644 paranoia_parallel/examples/optran/script-icout.txt create mode 100644 paranoia_parallel/examples/optran/script-optran.txt create mode 100644 paranoia_parallel/examples/optran/simple-tran.cir create mode 100644 paranoia_parallel/examples/pll/f-p-det-d-sub.cir create mode 100644 paranoia_parallel/examples/pll/loop-filter-2.cir create mode 100644 paranoia_parallel/examples/pll/pll-xspice.cir create mode 100644 paranoia_parallel/examples/pll/vco_sub_new.cir create mode 100644 paranoia_parallel/examples/proc2mod/process.pro create mode 100644 paranoia_parallel/examples/pton/.spiceinit create mode 100644 paranoia_parallel/examples/pton/555-timer-2.cir create mode 100644 paranoia_parallel/examples/pton/MCP6041.txt create mode 100644 paranoia_parallel/examples/pton/MOS1_out.cir create mode 100644 paranoia_parallel/examples/pton/OPA171.txt create mode 100644 paranoia_parallel/examples/pton/OP_MCP6041.cir create mode 100644 paranoia_parallel/examples/pton/Opamps_Comparators_ST.lib create mode 100644 paranoia_parallel/examples/pton/OptiMOS5_30V_PSpice.lib create mode 100644 paranoia_parallel/examples/pton/Optimos_out.cir create mode 100644 paranoia_parallel/examples/pton/README create mode 100644 paranoia_parallel/examples/pton/TLC555.LIB create mode 100644 paranoia_parallel/examples/pton/ad22057n.lib create mode 100644 paranoia_parallel/examples/pton/op-test-adi.cir create mode 100644 paranoia_parallel/examples/pton/op-test-test.cir create mode 100644 paranoia_parallel/examples/pton/op-test.cir create mode 100644 paranoia_parallel/examples/pton/relax_osc_st.cir create mode 100644 paranoia_parallel/examples/pton/remcirc-test.cir create mode 100644 paranoia_parallel/examples/pton/rtest.lib create mode 100644 paranoia_parallel/examples/pton/switch-invs.lib create mode 100644 paranoia_parallel/examples/pton/switch-oscillators.cir create mode 100644 paranoia_parallel/examples/pton/switch-oscillators_inc.cir create mode 100644 paranoia_parallel/examples/transient-noise/README create mode 100644 paranoia_parallel/examples/transient-noise/modelcard.nmos create mode 100644 paranoia_parallel/examples/transient-noise/modelcard.pmos create mode 100644 paranoia_parallel/examples/transient-noise/noi-ring51-demo.cir create mode 100644 paranoia_parallel/examples/transient-noise/noi-ring51-demo_s.cir create mode 100644 paranoia_parallel/examples/transient-noise/noi-sc-tr.cir create mode 100644 paranoia_parallel/examples/transient-noise/noilib-demo.h create mode 100644 paranoia_parallel/examples/transient-noise/noise_vnoi.cir create mode 100644 paranoia_parallel/examples/transient-noise/noise_vnoi_test.cir create mode 100644 paranoia_parallel/examples/transient-noise/rts-1.cir create mode 100644 paranoia_parallel/examples/transient-noise/shot_ng.cir create mode 100644 paranoia_parallel/examples/transient-noise/simple-noise.cir create mode 100644 paranoia_parallel/examples/various/3d_loop.sp create mode 100644 paranoia_parallel/examples/various/FFT_Leakage.cir create mode 100644 paranoia_parallel/examples/various/FFT_tests.cir create mode 100644 paranoia_parallel/examples/various/Tschebyschef-LP.cir create mode 100644 paranoia_parallel/examples/various/adder_mos.cir create mode 100644 paranoia_parallel/examples/various/agauss_reduced.cir create mode 100644 paranoia_parallel/examples/various/agauss_test.cir create mode 100644 paranoia_parallel/examples/various/alterparam.sp create mode 100644 paranoia_parallel/examples/various/bjt_ac_par.sp create mode 100644 paranoia_parallel/examples/various/bjtnoise.cir create mode 100644 paranoia_parallel/examples/various/dc_loop.sp create mode 100644 paranoia_parallel/examples/various/def_red.cir create mode 100644 paranoia_parallel/examples/various/def_red_2.cir create mode 100644 paranoia_parallel/examples/various/diode_ac_par.sp create mode 100644 paranoia_parallel/examples/various/echo_test.cir create mode 100644 paranoia_parallel/examples/various/gain_stage.cir create mode 100644 paranoia_parallel/examples/various/i(xxx)_tests.cir create mode 100644 paranoia_parallel/examples/various/model-name-check.cir create mode 100644 paranoia_parallel/examples/various/modelcard.nmos create mode 100644 paranoia_parallel/examples/various/modelcard.pmos create mode 100644 paranoia_parallel/examples/various/nic_soa.cir create mode 100644 paranoia_parallel/examples/various/nmos_pmos_BSIM330.sp create mode 100644 paranoia_parallel/examples/various/nmos_pmos_plotting.sp create mode 100644 paranoia_parallel/examples/various/param_sweep.cir create mode 100644 paranoia_parallel/examples/various/probe-i-dev.cir create mode 100644 paranoia_parallel/examples/various/ro_17_4.cir create mode 100644 paranoia_parallel/examples/various/tmp-noise-2.cir create mode 100644 paranoia_parallel/examples/various/tmp-noise.cir create mode 100644 paranoia_parallel/examples/various/todo-temper-3.cir create mode 100644 paranoia_parallel/examples/vbic/DFF_Y_ECL.sp create mode 100644 paranoia_parallel/examples/vbic/Infineon_VBIC.lib create mode 100644 paranoia_parallel/examples/vbic/npn_ft.sp create mode 100644 paranoia_parallel/examples/vbic/npn_gum.sp create mode 100644 paranoia_parallel/examples/vbic/npn_out.sp create mode 100644 paranoia_parallel/examples/vbic/qnva.mod create mode 100644 paranoia_parallel/examples/vbic/self-heat.sp create mode 100644 paranoia_parallel/examples/vbic/vbic99_dc.sp create mode 100644 paranoia_parallel/examples/vbic/vbic99_tran.sp create mode 100644 paranoia_parallel/examples/vbic/vbic_ac_par.sp create mode 100644 paranoia_parallel/examples/vdmos/100W.sp create mode 100644 paranoia_parallel/examples/vdmos/100W_wingspread.sp create mode 100644 paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.cir create mode 100644 paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.sp create mode 100644 paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.cir create mode 100644 paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.sp create mode 100644 paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.cir create mode 100644 paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.sp create mode 100644 paranoia_parallel/examples/vdmos/SUM75N06-09L-vdmos.txt create mode 100644 paranoia_parallel/examples/vdmos/VDMOS-DIO-AC.cir create mode 100644 paranoia_parallel/examples/vdmos/VDMOS-DIO.cir create mode 100644 paranoia_parallel/examples/vdmos/VDMOS-DIO.sp create mode 100644 paranoia_parallel/examples/vdmos/crss_coss_ciss.sp create mode 100644 paranoia_parallel/examples/vdmos/dcdc.sp create mode 100644 paranoia_parallel/examples/vdmos/inv_vdmos.cir create mode 100644 paranoia_parallel/examples/vdmos/inv_vdmos.sp create mode 100644 paranoia_parallel/examples/vdmos/inv_vdmos_dc.cir create mode 100644 paranoia_parallel/examples/vdmos/lt-ng-mos-models-2012-2018.lib create mode 100644 paranoia_parallel/examples/vdmos/mtriode_nch.sp create mode 100644 paranoia_parallel/examples/vdmos/ro_11_vdmos.cir create mode 100644 paranoia_parallel/examples/vdmos/ro_11_vdmos.sp create mode 100644 paranoia_parallel/examples/vdmos/self-heating.sp create mode 100644 paranoia_parallel/examples/vdmos/soa_chk.sp create mode 100644 paranoia_parallel/examples/vdmos/sum75n06-9L_PS.lib create mode 100644 paranoia_parallel/examples/vdmos/theta_nch.sp create mode 100644 paranoia_parallel/examples/vdmos/vdmos-out.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmos-out.sp create mode 100644 paranoia_parallel/examples/vdmos/vdmos-out_ir.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.sp create mode 100644 paranoia_parallel/examples/vdmos/vdmos_model_test.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmosp-out-mtr.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmosp-out-mtr.sp create mode 100644 paranoia_parallel/examples/vdmos/vdmosp-out.cir create mode 100644 paranoia_parallel/examples/vdmos/vdmosp-out.sp create mode 100644 paranoia_parallel/examples/xspice/analog_models1_transient.sp create mode 100644 paranoia_parallel/examples/xspice/bug-378-test-sequence.cir create mode 100644 paranoia_parallel/examples/xspice/d_lut/mult4bit.spi create mode 100644 paranoia_parallel/examples/xspice/d_source/d_source-stimulus.txt create mode 100644 paranoia_parallel/examples/xspice/d_source/d_source-stimulus2.txt create mode 100644 paranoia_parallel/examples/xspice/d_source/d_source.cir create mode 100644 paranoia_parallel/examples/xspice/d_source/test/d_source-stimulus3.txt create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/README create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/count-latch-dac.cir create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/counter-test.cir create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/delta-sigma-1.cir create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/mod1-ct-test.cir create mode 100644 paranoia_parallel/examples/xspice/delta-sigma/mod1-ct.cir create mode 100644 paranoia_parallel/examples/xspice/filesource/my-source.txt create mode 100644 paranoia_parallel/examples/xspice/filesource/simple-filesource.cir create mode 100644 paranoia_parallel/examples/xspice/fstest.sp create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models1_ac.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models1_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models1_swept_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models1_transient.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models2_ac.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models2_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models2_swept_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models2_transient.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models3_ac.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models3_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models3_swept_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models3_transient.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models4_ac.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models4_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models4_swept_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/analog_models4_transient.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/arbitrary_phase.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/bad_io.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/bad_io_type.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/bad_name.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/bad_param.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/bad_param_type.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/diffpair.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_invert.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_models.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_models1.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_models2.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_models3.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/digital_models4.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/dot_model_ref.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/hybrid_models1_dc.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/hybrid_models1_transient.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/initial_conditions.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/io_ordering.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/io_types.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/long_names.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/mixed_case.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/mixed_io_size.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/mixed_mode.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/mixed_ref.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/mosamp2.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/mosmem.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/param_defaults.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/param_types.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/parsing.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/polarity.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/rca3040.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/rtlinv.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/schmitt.in create mode 100644 paranoia_parallel/examples/xspice/original-examples/spice3.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/suffixes.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/supply_ramping.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/user_defined_nodes.deck create mode 100644 paranoia_parallel/examples/xspice/original-examples/xspice.deck create mode 100644 paranoia_parallel/examples/xspice/pll/README create mode 100644 paranoia_parallel/examples/xspice/pll/f-p-det-d-sub.cir create mode 100644 paranoia_parallel/examples/xspice/pll/loop-filter-2.cir create mode 100644 paranoia_parallel/examples/xspice/pll/loop-filter.cir create mode 100644 paranoia_parallel/examples/xspice/pll/pll-xspice-fstep.cir create mode 100644 paranoia_parallel/examples/xspice/pll/pll-xspice.cir create mode 100644 paranoia_parallel/examples/xspice/pll/test-f-p-det.cir create mode 100644 paranoia_parallel/examples/xspice/pll/test_vco.cir create mode 100644 paranoia_parallel/examples/xspice/pll/vco_sub.cir create mode 100644 paranoia_parallel/examples/xspice/pll/vco_sub_new.cir create mode 100644 paranoia_parallel/examples/xspice/sine.m create mode 100644 paranoia_parallel/examples/xspice/state/nggtk.tcl create mode 100644 paranoia_parallel/examples/xspice/state/state-machine.cir create mode 100644 paranoia_parallel/examples/xspice/state/state.in create mode 100644 paranoia_parallel/examples/xspice/table/bsim4n-2d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/bsim4n-3d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/bsim4p-2d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/bsim4p-3d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/clc409.sub create mode 100644 paranoia_parallel/examples/xspice/table/clc409mod.sub create mode 100644 paranoia_parallel/examples/xspice/table/combi_script.cir create mode 100644 paranoia_parallel/examples/xspice/table/modelcards/modelcard.nmos create mode 100644 paranoia_parallel/examples/xspice/table/modelcards/modelcard.pmos create mode 100644 paranoia_parallel/examples/xspice/table/qinn-clc409-2d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4-2d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4-3d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4n-2d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4n-3d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4p-2d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-b4p-3d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-generator-q-2d.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-bip-2d-1-oc.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-bip-2d-1.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-bip-2d-2.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-man-2d-1.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-man-3d-1.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-2d-2-oc.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-2d-2.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-2d-3.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-2d-4.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-3d-2.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-3d-3.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-3d-4.sp create mode 100644 paranoia_parallel/examples/xspice/table/table-model-mos-3d-5.sp create mode 100644 paranoia_parallel/examples/xspice/table/test-2d-1.table create mode 100644 paranoia_parallel/examples/xspice/table/test-2d-2.table create mode 100644 paranoia_parallel/examples/xspice/table/test-2d-3.table create mode 100644 paranoia_parallel/examples/xspice/table/test-3d-1.table create mode 100644 paranoia_parallel/examples/xspice/xspice_c1.cir create mode 100644 paranoia_parallel/examples/xspice/xspice_c2.cir create mode 100644 paranoia_parallel/examples/xspice/xspice_c3.cir create mode 100644 paranoia_parallel/ignore_shared_libs.supp create mode 100644 paranoia_parallel/paranoia_table_generators.sh create mode 100644 paranoia_parallel/paranoia_test_extra.sh create mode 100644 paranoia_parallel/runtests.sh create mode 100644 paranoia_parallel/textract.py create mode 100644 paranoia_parallel/working/testfile1.sh diff --git a/paranoia_parallel/README b/paranoia_parallel/README new file mode 100644 index 000000000..f47df743d --- /dev/null +++ b/paranoia_parallel/README @@ -0,0 +1,16 @@ +How to run paranoia_parallel + +Install valgrind +Install parallel + +Extract paranoia_parallel.7z into a directory of your choice. +In a terminal window, cd into the directory chosen. + +Edit runtest.sh, line 14, -jx, with x being the physical cores available on your machine. + +Run ./paranoia_table_generators.sh +to generate some input tables (only required once in the beginning). + +Run ./runtests.sh paranoia_test_extra.sh ./working + + diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_2_circ.sp b/paranoia_parallel/examples/Monte_Carlo/MC_2_circ.sp new file mode 100644 index 000000000..e311aa953 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_2_circ.sp @@ -0,0 +1,111 @@ +Circuit to perform Monte Carlo simulation in ngspice +* 25 stage Ring-Osc. using inverters with BSIM3 + +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 +vdd dd 0 dc 3.3 +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + +.subckt inv1 dd ss sub well in out +mn1 out in ss sub n1 w=2u l=0.35u as=3p ad=3p ps=4u pd=4u +mp1 out in dd well p1 w=4u l=0.35u as=7p ad=7p ps=6u pd=6u +.ends inv1 + +.subckt inv5 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv5 + +xinv1 dd ss sub well in out5 inv5 +xinv2 dd ss sub well out5 out10 inv5 +xinv3 dd ss sub well out10 out15 inv5 +xinv4 dd ss sub well out15 out20 inv5 +xinv5 dd ss sub well out20 out inv5 +xinv11 dd 0 sub well out buf inv1 +* output is buf +cout buf ss 0.2pF + +.ic v(out20) = 0 +* +.options noacct + +* The following model parameters are varying statistically: +* vth0, u0, tox +* see the AGAUSS function used to define the parameter +* the deviation is 10%, just for example, not measured + +******************************************************************************** +.model n1 nmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=2.498e+17 tox=AGAUSS(9e-09, 9e-09, 10) xj=1.00000e-07 ++lint=9.36e-8 wint=1.47e-7 ++vth0=AGAUSS(.6322,.6322,10) k1=.756 k2=-3.83e-2 k3=-2.612 ++dvt0=2.812 dvt1=0.462 dvt2=-9.17e-2 ++nlx=3.52291e-08 w0=1.163e-6 ++k3b=2.233 ++vsat=86301.58 ua=6.47e-9 ub=4.23e-18 uc=-4.706281e-11 ++rdsw=650 u0=AGAUSS(388.3203,388.3203,10) wr=1 ++a0=.3496967 ags=.1 b0=0.546 b1=1 ++dwg=-6.0e-09 dwb=-3.56e-09 prwb=-.213 ++keta=-3.605872e-02 a1=2.778747e-02 a2=.9 ++voff=-6.735529e-02 nfactor=1.139926 cit=1.622527e-04 ++cdsc=-2.147181e-05 ++cdscb=0 dvt0w=0 dvt1w=0 dvt2w=0 ++cdscd=0 prwg=0 ++eta0=1.0281729e-02 etab=-5.042203e-03 ++dsub=.31871233 ++pclm=1.114846 pdiblc1=2.45357e-03 pdiblc2=6.406289e-03 ++drout=.31871233 pscbe1=5000000 pscbe2=5e-09 pdiblcb=-.234 ++pvag=0 delta=0.01 ++wl=0 ww=-1.420242e-09 wwl=0 ++wln=0 wwn=.2613948 ll=1.300902e-10 ++lw=0 lwl=0 lln=.316394 lwn=0 ++kt1=-.3 kt2=-.051 ++at=22400 ++ute=-1.48 ++ua1=3.31e-10 ub1=2.61e-19 uc1=-3.42e-10 ++kt1l=0 prt=764.3 ++noimod=2 ++af=1.075e+00 kf=9.670e-28 ef=1.056e+00 ++noia=1.130e+20 noib=7.530e+04 noic=-8.950e-13 +**** PMOS *** +.model p1 pmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=3.533024e+17 tox=AGAUSS(9e-09,9e-09,10) xj=1.00000e-07 ++lint=6.23e-8 wint=1.22e-7 ++vth0=AGAUSS(-.6732829,-.6732829,10) k1=.8362093 k2=-8.606622e-02 k3=1.82 ++dvt0=1.903801 dvt1=.5333922 dvt2=-.1862677 ++nlx=1.28e-8 w0=2.1e-6 ++k3b=-0.24 prwg=-0.001 prwb=-0.323 ++vsat=103503.2 ua=1.39995e-09 ub=1.e-19 uc=-2.73e-11 ++rdsw=460 u0=AGAUSS(138.7609,138.7609,10) ++a0=.4716551 ags=0.12 ++keta=-1.871516e-03 a1=.3417965 a2=0.83 ++voff=-.074182 nfactor=1.54389 cit=-1.015667e-03 ++cdsc=8.937517e-04 ++cdscb=1.45e-4 cdscd=1.04e-4 ++dvt0w=0.232 dvt1w=4.5e6 dvt2w=-0.0023 ++eta0=6.024776e-02 etab=-4.64593e-03 ++dsub=.23222404 ++pclm=.989 pdiblc1=2.07418e-02 pdiblc2=1.33813e-3 ++drout=.3222404 pscbe1=118000 pscbe2=1e-09 ++pvag=0 ++kt1=-0.25 kt2=-0.032 prt=64.5 ++at=33000 ++ute=-1.5 ++ua1=4.312e-9 ub1=6.65e-19 uc1=0 ++kt1l=0 ++noimod=2 ++af=9.970e-01 kf=2.080e-29 ef=1.015e+00 ++noia=1.480e+18 noib=3.320e+03 noic=1.770e-13 +.end + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_2_control.sp b/paranoia_parallel/examples/Monte_Carlo/MC_2_control.sp new file mode 100644 index 000000000..d0954a655 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_2_control.sp @@ -0,0 +1,47 @@ +*ng_script +* Perform Monte Carlo simulation in ngspice +* script for use with 25 stage Ring-Osc. BSIM3 +* circuit is in MC_2_circ.sp +* edit 'set sourcepath' for your path to circuit file +* start script by 'ngspice -o MC_2_control.log MC_2_control.sp' +* +.control + let mc_runs = 3 ; number of runs for monte carlo + let run = 1 ; number of the actual run + +* Where to find the circuit netlist file MC_2_circ.sp + setcs sourcepath = ( /home/holger/Software/paranoia/examples/Monte_Carlo ) + +* create file for frequency information + echo Monte Carlo, frequency of R.O. > MC_frequ.log + +* run the simulation loop + dowhile run <= mc_runs + * without the reset switch there is some strange drift + * towards lower and lower frequencies + set run = $&run ; create a variable from the vector + setseed $run ; set the rnd seed value to the loop index + if run = 1 + source MC_2_circ.sp ; load the circuit once from file, including model data + else + mc_source ; re-load the circuit from internal storage + end + save buf ; we just need output vector buf, save memory by more than 10x + tran 15p 2n 0 + write mc_ring{$run}.out buf ; write each sim output to its own rawfile + linearize buf ; lienarize buf to allow fft + fft buf ; run fft on vector buf + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.1G to=0.7G + print fft_max >> MC_frequ.log ; print frequency to file + destroy all ; delete all output vectors + remcirc ; delete circuit + let run = run + 1 ; increase loop counter + end + + quit + +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_frequ.log b/paranoia_parallel/examples/Monte_Carlo/MC_frequ.log new file mode 100644 index 000000000..3bf7531ab --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_frequ.log @@ -0,0 +1,4 @@ +Monte Carlo frequency of R.O. +fft_max = 2.604167e+08 +fft_max = 2.604167e+08 +fft_max = 2.604167e+08 diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_ring.sp b/paranoia_parallel/examples/Monte_Carlo/MC_ring.sp new file mode 100644 index 000000000..151f121a2 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_ring.sp @@ -0,0 +1,292 @@ +Perform Monte Carlo simulation in ngspice +* 25 stage Ring-Osc. BSIM3 with statistical variation of various model parameters +* cd into ngspice/examples/Monte_Carlo +* start in interactive mode 'ngspice MC_ring.sp' with several plots for output +* or start in batch mode, controlled by .control section (Control mode) +* with 'ngspice -b -r MC_ring.raw -o MC_ring.log MC_ring.sp'. + +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 +vdd dd 0 dc 3.3 +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + +.subckt inv1 dd ss sub well in out +mn1 out in ss sub n1 w=2u l=0.35u as=3p ad=3p ps=4u pd=4u +mp1 out in dd well p1 w=4u l=0.35u as=7p ad=7p ps=6u pd=6u +.ends inv1 + +.subckt inv5 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv5 + +xinv1 dd ss sub well in out5 inv5 +xinv2 dd ss sub well out5 out10 inv5 +xinv3 dd ss sub well out10 out15 inv5 +xinv4 dd ss sub well out15 out20 inv5 +xinv5 dd ss sub well out20 out inv5 +xinv11 dd 0 sub well out buf inv1 +cout buf ss 0.2pF + +.ic v(out20) = 0 + +* +.options noacct +.control + save buf ; we just need buf, save memory by more than 10x + let mc_runs = 2 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising +* +* define distributions for random numbers: +* unif: uniform distribution, deviation relativ to nominal value +* aunif: uniform distribution, deviation absolut +* gauss: Gaussian distribution, deviation relativ to nominal value +* agauss: Gaussian distribution, deviation absolut + define unif(nom, var) (nom + (nom*var) * sunif(0)) + define aunif(nom, avar) (nom + avar * sunif(0)) + define gauss(nom, var, sig) (nom + (nom*var)/sig * sgauss(0)) + define agauss(nom, avar, sig) (nom + avar/sig * sgauss(0)) +* +* We want to vary the model parameters vth0, u0, tox, lint, and wint +* of the BSIM3 model for the NMOS and PMOS transistors. +* We may obtain the nominal values (nom) by manually extracting them from +* the parameter set. Here we get them automatically and store them into +* vectors. This has the advantage that you may change the parameter set +* without having to look up the values again. + let n1vth0=@n1[vth0] + let n1u0=@n1[u0] + let n1tox=@n1[tox] + let n1lint=@n1[lint] + let n1wint=@n1[wint] + let p1vth0=@p1[vth0] + let p1u0=@p1[u0] + let p1tox=@p1[tox] + let p1lint=@p1[lint] + let p1wint=@p1[wint] + +* +* run the simulation loop + dowhile run <= mc_runs + * run=0 simulates with nominal parameters + if run > 0 + setplot $max_fft + altermod @n1[vth0] = gauss(n1vth0, 0.1, 3) + altermod @n1[u0] = gauss(n1u0, 0.05, 3) + altermod @n1[tox] = gauss(n1tox, 0.1, 3) + altermod @n1[lint] = gauss(n1lint, 0.1, 3) + altermod @n1[wint] = gauss(n1wint, 0.1, 3) + altermod @p1[vth0] = gauss(p1vth0, 0.1, 3) + altermod @p1[u0] = gauss(p1u0, 0.1, 3) + altermod @p1[tox] = gauss(p1tox, 0.1, 3 ) + altermod @p1[lint] = gauss(p1lint, 0.1, 3) + altermod @p1[wint] = gauss(p1wint, 0.1, 3) + end + tran 15p 3n 0 +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* +* We have to figure out what to do if a single simulation will not converge. +* There is the variable 'sim_status' which is set to 1 if the simulation +* fails with ’xx simulation(s) aborted’, e.g. because of non-convergence. +* Then we might skip this run and continue with a new run. +* + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + + set run ="$&run" ; create a variable from the vector + set mc_runs ="$&mc_runs" ; create a variable from the vector + echo simulation run no. $run of $mc_runs + set dt = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + destroy $dt ; delete the tran i plot + set dt = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt}.time + end + let vout{$run}={$dt}.buf ; store the output vector to plot 'plot_out' + setplot $dt ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + destroy $dt ; delete the tran i+1 plot + let buf2=db(mag(buf)) + plot buf2 + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.0 to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 FALL=1 from=0 to=7G + echo + echo + * store the fft vector + set dt = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt}.frequency + end + let fft{$run}={$dt}.buf ; store the output vector to plot 'plot_fft' + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt}.fft_max + let halfffts[{$run}]={$dt}.fft_40 + let run = run + 1 + label next + reset + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + setplot $plot_out + plot vout0 ylabel 'RO output, original parameters' ; just plot the tran output with nominal parameters + setplot $plot_fft + settype decibel ally + plot db(mag(ally)) xlimit .1G 1G ylimit -80 10 ylabel 'fft output' +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=400MEG + set bin_size=5MEG + set bin_count=20 + compose xvec start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency xvec + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val > (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + + * plot the histogram + set plotstyle=combplot + plot yvec-1 vs xvec xlabel 'oscillation frequency' ylabel 'bin count' ; subtract 1 because we started with unitvec containing ones + + * plot simulation series + set plotstyle=linplot + let xx = vector(mc_runsp) + settype frequency maxffts + plot maxffts vs xx xlabel 'iteration no.' ylabel 'RO frequency' + +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage + +quit +.endc +******************************************************************************** +.model n1 nmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=2.498e+17 tox=9e-09 xj=1.00000e-07 ++lint=9.36e-8 wint=1.47e-7 ++vth0=.6322 k1=.756 k2=-3.83e-2 k3=-2.612 ++dvt0=2.812 dvt1=0.462 dvt2=-9.17e-2 ++nlx=3.52291e-08 w0=1.163e-6 ++k3b=2.233 ++vsat=86301.58 ua=6.47e-9 ub=4.23e-18 uc=-4.706281e-11 ++rdsw=650 u0=388.3203 wr=1 ++a0=.3496967 ags=.1 b0=0.546 b1=1 ++dwg=-6.0e-09 dwb=-3.56e-09 prwb=-.213 ++keta=-3.605872e-02 a1=2.778747e-02 a2=.9 ++voff=-6.735529e-02 nfactor=1.139926 cit=1.622527e-04 ++cdsc=-2.147181e-05 ++cdscb=0 dvt0w=0 dvt1w=0 dvt2w=0 ++cdscd=0 prwg=0 ++eta0=1.0281729e-02 etab=-5.042203e-03 ++dsub=.31871233 ++pclm=1.114846 pdiblc1=2.45357e-03 pdiblc2=6.406289e-03 ++drout=.31871233 pscbe1=5000000 pscbe2=5e-09 pdiblcb=-.234 ++pvag=0 delta=0.01 ++wl=0 ww=-1.420242e-09 wwl=0 ++wln=0 wwn=.2613948 ll=1.300902e-10 ++lw=0 lwl=0 lln=.316394 lwn=0 ++kt1=-.3 kt2=-.051 ++at=22400 ++ute=-1.48 ++ua1=3.31e-10 ub1=2.61e-19 uc1=-3.42e-10 ++kt1l=0 prt=764.3 ++noimod=2 ++af=1.075e+00 kf=9.670e-28 ef=1.056e+00 ++noia=1.130e+20 noib=7.530e+04 noic=-8.950e-13 +**** PMOS *** +.model p1 pmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=3.533024e+17 tox=9e-09 xj=1.00000e-07 ++lint=6.23e-8 wint=1.22e-7 ++vth0=-.6732829 k1=.8362093 k2=-8.606622e-02 k3=1.82 ++dvt0=1.903801 dvt1=.5333922 dvt2=-.1862677 ++nlx=1.28e-8 w0=2.1e-6 ++k3b=-0.24 prwg=-0.001 prwb=-0.323 ++vsat=103503.2 ua=1.39995e-09 ub=1.e-19 uc=-2.73e-11 ++rdsw=460 u0=138.7609 ++a0=.4716551 ags=0.12 ++keta=-1.871516e-03 a1=.3417965 a2=0.83 ++voff=-.074182 nfactor=1.54389 cit=-1.015667e-03 ++cdsc=8.937517e-04 ++cdscb=1.45e-4 cdscd=1.04e-4 ++dvt0w=0.232 dvt1w=4.5e6 dvt2w=-0.0023 ++eta0=6.024776e-02 etab=-4.64593e-03 ++dsub=.23222404 ++pclm=.989 pdiblc1=2.07418e-02 pdiblc2=1.33813e-3 ++drout=.3222404 pscbe1=118000 pscbe2=1e-09 ++pvag=0 ++kt1=-0.25 kt2=-0.032 prt=64.5 ++at=33000 ++ute=-1.5 ++ua1=4.312e-9 ub1=6.65e-19 uc1=0 ++kt1l=0 ++noimod=2 ++af=9.970e-01 kf=2.080e-29 ef=1.015e+00 ++noia=1.480e+18 noib=3.320e+03 noic=1.770e-13 +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts.sp b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts.sp new file mode 100644 index 000000000..ff2fa9e03 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts.sp @@ -0,0 +1,180 @@ +*ng_script +* Example script for Monte Carlo with commercial HSPICE-compatible libraries +* The circuit in mc_ring_circ.net is a 25-stage inverter ring oscillator. +* Add your library to mc_ring_circ.net and choose transistors accordingly. +* Add the source file and the library path. +* A simple BSIM3 inverter R.O. serves as an MC example wtihout need for a library. +.control +begin + let mc_runs = 3 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising + unlet mc_runsp + + set mc_runs = $&mc_runs ; create a variable from the vector + let seeds = mc_runs + 2 + setseed $&seeds + unlet seeds + + echo source the input file +* Path of your circuit file and library file here +* Will be added to the already existing sourcepath + set sourcepath = ( $inputdir $sourcepath ./ngspice/examples/Monte_Carlo ) +* source with file name of your circuit file + source mc_ring_circ.net + + save buf ; we just need buf, save memory by more than 10x + +* Output path (directory has already to be there) +* set outputpath = 'D:\Spice_general\ngspice\examples\Monte_Carlo\out' +* If your current directory is the 'ngspice' directory +* set outputpath = './examples/Monte_Carlo/out' ; LINUX alternative +* run the simulation loop + +* We have to figure out what to do if a single simulation will not converge. +* There is now the variable sim_status, that is 0 if simulation ended regularly, +* and 1 if the simulation has been aborted with error message '...simulation(s) aborted'. +* Then we skip the rest of the run and continue with a new run. + + dowhile run <= mc_runs + + set run = $&run ; create a variable from the vector + + * run=0 simulates with nominal parameters + if run > 0 + echo + echo * * * * * * + echo Source the circuit again internally for run no. $run + echo * * * * * * + setseed $run + mc_source ; re-source the input file + else + echo run no. $run + end + echo simulation run no. $run of $mc_runs + tran 100p 2n 0 + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* + set dt0 = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + set dt1 = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt1}.time + end + let vout{$run}={$dt1}.buf ; store the output vector to plot 'plot_out' + setplot $dt1 ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.05G to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 FALL=1 from=0.05G to=7G + * store the fft vector + set dt2 = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt2}.frequency + end + let fft{$run}={$dt2}.buf ; store the output vector to plot 'plot_fft' + settype decibel fft{$run} + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt2}.fft_max + let halfffts[{$run}]={$dt2}.fft_40 + destroy $dt0 $dt1 $dt2 ; save memory, we don't need this plot (spec) any more + + label next + remcirc + let run = run + 1 + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + if $?sharedmode or $?win_console + gnuplot xnp_pl1 {$plot_out}.vout0 ; just plot the tran output with nominal parameters + else + plot {$plot_out}.vout0 ; just plot the tran output with nominal parameters + end + setplot $plot_fft + if $?sharedmode or $?win_console + gnuplot xnp_pl2 db(mag(ally)) xlimit 0 1G ylimit -80 10 + else + plot db(mag(ally)) xlimit 0 1G ylimit -80 10 + end +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=50MEG + set bin_size=1MEG + set bin_count=100 + compose osc_frequ start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency osc_frequ + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val >= (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + * plot the histogram + let count = yvec - 1 ; subtract 1 because we started with unitvec containing ones + if $?sharedmode or $?win_console + gnuplot np_pl3 count vs osc_frequ combplot + else + plot count vs osc_frequ combplot + end +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage + quit +end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_short.sp b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_short.sp new file mode 100644 index 000000000..6e1a74748 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_short.sp @@ -0,0 +1,180 @@ +*ng_script +* Example script for Monte Carlo with commercial HSPICE-compatible libraries +* The circuit in mc_ring_circ.net is a 25-stage inverter ring oscillator. +* Add your library to mc_ring_circ.net and choose transistors accordingly. +* Add the source file and the library path. +* A simple BSIM3 inverter R.O. serves as an MC example wtihout need for a library. +.control +begin + let mc_runs = 5 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising + unlet mc_runsp + + set mc_runs = $&mc_runs ; create a variable from the vector + let seeds = mc_runs + 2 + setseed $&seeds + unlet seeds + + echo source the input file +* Path of your circuit file and library file here +* Will be added to the already existing sourcepath + set sourcepath = ( $inputdir $sourcepath ./ngspice/examples/Monte_Carlo ) +* source with file name of your circuit file + source mc_ring_circ.net + + save buf ; we just need buf, save memory by more than 10x + +* Output path (directory has already to be there) +* set outputpath = 'D:\Spice_general\ngspice\examples\Monte_Carlo\out' +* If your current directory is the 'ngspice' directory +* set outputpath = './examples/Monte_Carlo/out' ; LINUX alternative +* run the simulation loop + +* We have to figure out what to do if a single simulation will not converge. +* There is now the variable sim_status, that is 0 if simulation ended regularly, +* and 1 if the simulation has been aborted with error message '...simulation(s) aborted'. +* Then we skip the rest of the run and continue with a new run. + + dowhile run <= mc_runs + + set run = $&run ; create a variable from the vector + + * run=0 simulates with nominal parameters + if run > 0 + echo + echo * * * * * * + echo Source the circuit again internally for run no. $run + echo * * * * * * + setseed $run + mc_source ; re-source the input file + else + echo run no. $run + end + echo simulation run no. $run of $mc_runs + tran 100p 5n 0 + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* + set dt0 = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + set dt1 = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt1}.time + end + let vout{$run}={$dt1}.buf ; store the output vector to plot 'plot_out' + setplot $dt1 ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.05G to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 RISE=1 from=0.05G to=0.7G + * store the fft vector + set dt2 = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt2}.frequency + end + let fft{$run}={$dt2}.buf ; store the output vector to plot 'plot_fft' + settype decibel fft{$run} + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt2}.fft_max + let halfffts[{$run}]={$dt2}.fft_40 + destroy $dt0 $dt1 $dt2 ; save memory, we don't need this plot (spec) any more + + label next + remcirc + let run = run + 1 + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + if $?sharedmode or $?win_console + gnuplot xnp_pl1 {$plot_out}.vout0 ; just plot the tran output with nominal parameters + else + plot {$plot_out}.vout0 ; just plot the tran output with nominal parameters + end + setplot $plot_fft + if $?sharedmode or $?win_console + gnuplot xnp_pl2 db(mag(ally)) xlimit 0 1G ylimit -80 10 + else + plot db(mag(ally)) xlimit 0 1G ylimit -80 10 + end +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=50MEG + set bin_size=1MEG + set bin_count=100 + compose osc_frequ start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency osc_frequ + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val >= (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + * plot the histogram + let count = yvec - 1 ; subtract 1 because we started with unitvec containing ones + if $?sharedmode or $?win_console + gnuplot np_pl3 count vs osc_frequ combplot + else + plot count vs osc_frequ combplot + end +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage +* quit +end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_test.sp b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_test.sp new file mode 100644 index 000000000..cf52a9df7 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_ring_ts_test.sp @@ -0,0 +1,180 @@ +*ng_script +* Example script for Monte Carlo with commercial HSPICE-compatible libraries +* The circuit in mc_ring_circ.net is a 25-stage inverter ring oscillator. +* Add your library to mc_ring_circ.net and choose transistors accordingly. +* Add the source file and the library path. +* A simple BSIM3 inverter R.O. serves as an MC example wtihout need for a library. +.control +begin + let mc_runs = 3 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising + unlet mc_runsp + + set mc_runs = $&mc_runs ; create a variable from the vector + let seeds = mc_runs + 2 + setseed $&seeds + unlet seeds + + echo source the input file +* Path of your circuit file and library file here +* Will be added to the already existing sourcepath + set sourcepath = ( $inputdir $sourcepath ./ngspice/examples/Monte_Carlo ) +* source with file name of your circuit file + source mc_ring_circ.net + + save buf ; we just need buf, save memory by more than 10x + +* Output path (directory has already to be there) +* set outputpath = 'D:\Spice_general\ngspice\examples\Monte_Carlo\out' +* If your current directory is the 'ngspice' directory +* set outputpath = './examples/Monte_Carlo/out' ; LINUX alternative +* run the simulation loop + +* We have to figure out what to do if a single simulation will not converge. +* There is now the variable sim_status, that is 0 if simulation ended regularly, +* and 1 if the simulation has been aborted with error message '...simulation(s) aborted'. +* Then we skip the rest of the run and continue with a new run. + + dowhile run <= mc_runs + + set run = $&run ; create a variable from the vector + + * run=0 simulates with nominal parameters + if run > 0 + echo + echo * * * * * * + echo Source the circuit again internally for run no. $run + echo * * * * * * + setseed $run + mc_source ; re-source the input file + else + echo run no. $run + end + echo simulation run no. $run of $mc_runs + tran 100p 10n 0 + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* + set dt0 = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + set dt1 = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt1}.time + end + let vout{$run}={$dt1}.buf ; store the output vector to plot 'plot_out' + setplot $dt1 ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.05G to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 RISE=1 from=0.05G to=0.7G + * store the fft vector + set dt2 = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt2}.frequency + end + let fft{$run}={$dt2}.buf ; store the output vector to plot 'plot_fft' + settype decibel fft{$run} + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt2}.fft_max + let halfffts[{$run}]={$dt2}.fft_40 + destroy $dt0 $dt1 $dt2 ; save memory, we don't need this plot (spec) any more + + label next + remcirc + let run = run + 1 + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + if $?sharedmode or $?win_console + gnuplot xnp_pl1 {$plot_out}.vout0 ; just plot the tran output with nominal parameters + else + plot {$plot_out}.vout0 ; just plot the tran output with nominal parameters + end + setplot $plot_fft + if $?sharedmode or $?win_console + gnuplot xnp_pl2 db(mag(ally)) xlimit 0 1G ylimit -80 10 + else + plot db(mag(ally)) xlimit 0 1G ylimit -80 10 + end +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=50MEG + set bin_size=1MEG + set bin_count=100 + compose osc_frequ start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency osc_frequ + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val >= (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + * plot the histogram + let count = yvec - 1 ; subtract 1 because we started with unitvec containing ones + if $?sharedmode or $?win_console + gnuplot np_pl3 count vs osc_frequ combplot + else + plot count vs osc_frequ combplot + end +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage +* quit +end diff --git a/paranoia_parallel/examples/Monte_Carlo/MC_ring_val.sp b/paranoia_parallel/examples/Monte_Carlo/MC_ring_val.sp new file mode 100644 index 000000000..beb486199 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MC_ring_val.sp @@ -0,0 +1,286 @@ +Perform Monte Carlo simulation in ngspice +* 25 stage Ring-Osc. BSIM3 with statistical variation of various model parameters +* cd into ngspice/examples/Monte_Carlo +* start in interactive mode 'ngspice MC_ring.sp' with several plots for output +* or start in batch mode, controlled by .control section (Control mode) +* with 'ngspice -b -r MC_ring.raw -o MC_ring.log MC_ring.sp'. + +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 +vdd dd 0 dc 3.3 +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + +.subckt inv1 dd ss sub well in out +mn1 out in ss sub n1 w=2u l=0.35u as=3p ad=3p ps=4u pd=4u +mp1 out in dd well p1 w=4u l=0.35u as=7p ad=7p ps=6u pd=6u +.ends inv1 + +.subckt inv5 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv5 + +xinv1 dd ss sub well in out5 inv5 +xinv2 dd ss sub well out5 out10 inv5 +xinv3 dd ss sub well out10 out15 inv5 +xinv4 dd ss sub well out15 out20 inv5 +xinv5 dd ss sub well out20 out inv5 +xinv11 dd 0 sub well out buf inv1 +cout buf ss 0.2pF +* +.options noacct +.control + save buf ; we just need buf, save memory by more than 10x + let mc_runs = 10 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising +* +* define distributions for random numbers: +* unif: uniform distribution, deviation relativ to nominal value +* aunif: uniform distribution, deviation absolut +* gauss: Gaussian distribution, deviation relativ to nominal value +* agauss: Gaussian distribution, deviation absolut + define unif(nom, var) (nom + (nom*var) * sunif(0)) + define aunif(nom, avar) (nom + avar * sunif(0)) + define gauss(nom, var, sig) (nom + (nom*var)/sig * sgauss(0)) + define agauss(nom, avar, sig) (nom + avar/sig * sgauss(0)) +* +* We want to vary the model parameters vth0, u0, tox, lint, and wint +* of the BSIM3 model for the NMOS and PMOS transistors. +* We may obtain the nominal values (nom) by manually extracting them from +* the parameter set. Here we get them automatically and store them into +* vectors. This has the advantage that you may change the parameter set +* without having to look up the values again. + let n1vth0=@n1[vth0] + let n1u0=@n1[u0] + let n1tox=@n1[tox] + let n1lint=@n1[lint] + let n1wint=@n1[wint] + let p1vth0=@p1[vth0] + let p1u0=@p1[u0] + let p1tox=@p1[tox] + let p1lint=@p1[lint] + let p1wint=@p1[wint] + +* +* run the simulation loop + dowhile run <= mc_runs + * run=0 simulates with nominal parameters + if run > 0 + setplot $max_fft + altermod @n1[vth0] = gauss(n1vth0, 0.1, 3) + altermod @n1[u0] = gauss(n1u0, 0.05, 3) + altermod @n1[tox] = gauss(n1tox, 0.1, 3) + altermod @n1[lint] = gauss(n1lint, 0.1, 3) + altermod @n1[wint] = gauss(n1wint, 0.1, 3) + altermod @p1[vth0] = gauss(p1vth0, 0.1, 3) + altermod @p1[u0] = gauss(p1u0, 0.1, 3) + altermod @p1[tox] = gauss(p1tox, 0.1, 3 ) + altermod @p1[lint] = gauss(p1lint, 0.1, 3) + altermod @p1[wint] = gauss(p1wint, 0.1, 3) + end + tran 15p 1n 0 +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* +* We have to figure out what to do if a single simulation will not converge. +* There is the variable 'sim_status' which is set to 1 if the simulation +* fails with ’xx simulation(s) aborted’, e.g. because of non-convergence. +* Then we might skip this run and continue with a new run. +* + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + + set run ="$&run" ; create a variable from the vector + set mc_runs ="$&mc_runs" ; create a variable from the vector + echo simulation run no. $run of $mc_runs + set dt = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + destroy $dt ; delete the tran i plot + set dt = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt}.time + end + let vout{$run}={$dt}.buf ; store the output vector to plot 'plot_out' + setplot $dt ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + destroy $dt ; delete the tran i+1 plot + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.1G to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 RISE=1 from=0.1G to=0.7G + echo + echo + * store the fft vector + set dt = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt}.frequency + end + let fft{$run}={$dt}.buf ; store the output vector to plot 'plot_fft' + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt}.fft_max + let halfffts[{$run}]={$dt}.fft_40 + let run = run + 1 + label next + reset + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + setplot $plot_out + plot vout0 ylabel 'RO output, original parameters' ; just plot the tran output with nominal parameters + setplot $plot_fft + settype decibel ally + plot db(mag(ally)) xlimit .1G 1G ylimit -80 10 ylabel 'fft output' +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=400MEG + set bin_size=5MEG + set bin_count=20 + compose xvec start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency xvec + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val > (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + + * plot the histogram + set plotstyle=combplot + plot yvec-1 vs xvec xlabel 'oscillation frequency' ylabel 'bin count' ; subtract 1 because we started with unitvec containing ones + + * plot simulation series + set plotstyle=linplot + let xx = vector(mc_runsp) + settype frequency maxffts + plot maxffts vs xx xlabel 'iteration no.' ylabel 'RO frequency' + +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage +.endc +******************************************************************************** +.model n1 nmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=2.498e+17 tox=9e-09 xj=1.00000e-07 ++lint=9.36e-8 wint=1.47e-7 ++vth0=.6322 k1=.756 k2=-3.83e-2 k3=-2.612 ++dvt0=2.812 dvt1=0.462 dvt2=-9.17e-2 ++nlx=3.52291e-08 w0=1.163e-6 ++k3b=2.233 ++vsat=86301.58 ua=6.47e-9 ub=4.23e-18 uc=-4.706281e-11 ++rdsw=650 u0=388.3203 wr=1 ++a0=.3496967 ags=.1 b0=0.546 b1=1 ++dwg=-6.0e-09 dwb=-3.56e-09 prwb=-.213 ++keta=-3.605872e-02 a1=2.778747e-02 a2=.9 ++voff=-6.735529e-02 nfactor=1.139926 cit=1.622527e-04 ++cdsc=-2.147181e-05 ++cdscb=0 dvt0w=0 dvt1w=0 dvt2w=0 ++cdscd=0 prwg=0 ++eta0=1.0281729e-02 etab=-5.042203e-03 ++dsub=.31871233 ++pclm=1.114846 pdiblc1=2.45357e-03 pdiblc2=6.406289e-03 ++drout=.31871233 pscbe1=5000000 pscbe2=5e-09 pdiblcb=-.234 ++pvag=0 delta=0.01 ++wl=0 ww=-1.420242e-09 wwl=0 ++wln=0 wwn=.2613948 ll=1.300902e-10 ++lw=0 lwl=0 lln=.316394 lwn=0 ++kt1=-.3 kt2=-.051 ++at=22400 ++ute=-1.48 ++ua1=3.31e-10 ub1=2.61e-19 uc1=-3.42e-10 ++kt1l=0 prt=764.3 ++noimod=2 ++af=1.075e+00 kf=9.670e-28 ef=1.056e+00 ++noia=1.130e+20 noib=7.530e+04 noic=-8.950e-13 +**** PMOS *** +.model p1 pmos ++level=8 ++version=3.3.0 ++tnom=27.0 ++nch=3.533024e+17 tox=9e-09 xj=1.00000e-07 ++lint=6.23e-8 wint=1.22e-7 ++vth0=-.6732829 k1=.8362093 k2=-8.606622e-02 k3=1.82 ++dvt0=1.903801 dvt1=.5333922 dvt2=-.1862677 ++nlx=1.28e-8 w0=2.1e-6 ++k3b=-0.24 prwg=-0.001 prwb=-0.323 ++vsat=103503.2 ua=1.39995e-09 ub=1.e-19 uc=-2.73e-11 ++rdsw=460 u0=138.7609 ++a0=.4716551 ags=0.12 ++keta=-1.871516e-03 a1=.3417965 a2=0.83 ++voff=-.074182 nfactor=1.54389 cit=-1.015667e-03 ++cdsc=8.937517e-04 ++cdscb=1.45e-4 cdscd=1.04e-4 ++dvt0w=0.232 dvt1w=4.5e6 dvt2w=-0.0023 ++eta0=6.024776e-02 etab=-4.64593e-03 ++dsub=.23222404 ++pclm=.989 pdiblc1=2.07418e-02 pdiblc2=1.33813e-3 ++drout=.3222404 pscbe1=118000 pscbe2=1e-09 ++pvag=0 ++kt1=-0.25 kt2=-0.032 prt=64.5 ++at=33000 ++ute=-1.5 ++ua1=4.312e-9 ub1=6.65e-19 uc1=0 ++kt1l=0 ++noimod=2 ++af=9.970e-01 kf=2.080e-29 ef=1.015e+00 ++noia=1.480e+18 noib=3.320e+03 noic=1.770e-13 +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/MonteCarlo.sp b/paranoia_parallel/examples/Monte_Carlo/MonteCarlo.sp new file mode 100644 index 000000000..b10ca0917 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/MonteCarlo.sp @@ -0,0 +1,68 @@ +* Effecting a Monte Carlo calculation in ngspice +V1 N001 0 AC 1 DC 0 +R1 N002 N001 141 +* +C1 OUT 0 1e-09 +L1 OUT 0 10e-06 +C2 N002 0 1e-09 +L2 N002 0 10e-06 +L3 N003 N002 40e-06 +C3 OUT N003 250e-12 +* +R2 0 OUT 141 +.control + let mc_runs = 5 + let run = 0 + set curplot=new ; create a new plot + set scratch=$curplot ; store its name to 'scratch' + setplot $scratch ; make 'scratch' the active plot + let bwh=unitvec(mc_runs) ; create a vector in plot 'scratch' to store bandwidth data + +* define distributions for random numbers: +* unif: uniform distribution, deviation relativ to nominal value +* aunif: uniform distribution, deviation absolut +* gauss: Gaussian distribution, deviation relativ to nominal value +* agauss: Gaussian distribution, deviation absolut +* limit: if unif. distributed value >=0 then add +avar to nom, else -avar + define unif(nom, rvar) (nom + (nom*rvar) * sunif(0)) + define aunif(nom, avar) (nom + avar * sunif(0)) + define gauss(nom, rvar, sig) (nom + (nom*rvar)/sig * sgauss(0)) + define agauss(nom, avar, sig) (nom + avar/sig * sgauss(0)) +* define limit(nom, avar) (nom + ((sgauss(0) ge 0) ? avar : -avar)) + define limit(nom, avar) (nom + ((sgauss(0) >= 0) ? avar : -avar)) +* +* + dowhile run < mc_runs ; loop starts here +* +* alter c1 = unif(1e-09, 0.1) +* alter c1 = aunif(1e-09, 100e-12) +* alter c1 = gauss(1e-09, 0.1, 3) +* alter c1 = agauss(1e-09, 100e-12, 3) +* + alter c1 = unif(1e-09, 0.1) + alter l1 = unif(10e-06, 0.1) + alter c2 = unif(1e-09, 0.1) + alter l2 = unif(10e-06, 0.1) + alter l3 = unif(40e-06, 0.1) + alter c3 = limit(250e-12, 25e-12) +* + ac oct 100 250K 10Meg +* +* measure bandwidth at -10 dB + meas ac bw trig vdb(out) val=-10 rise=1 targ vdb(out) val=-10 fall=1 +* + set run = $&run ; create a variable from the vector + set dt = $curplot ; store the current plot to dt + setplot $scratch ; make 'scratch' the active plot + let vout{$run}={$dt}.v(out) ; store the output vector to plot 'scratch' + let bwh[run]={$dt}.bw ; store bw to vector bwh in plot 'scratch' + setplot $dt ; go back to the previous plot + let run = run + 1 + end ; loop ends here +* + plot db({$scratch}.allv) + echo + print {$scratch}.bwh +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/OpWien.sp b/paranoia_parallel/examples/Monte_Carlo/OpWien.sp new file mode 100644 index 000000000..ff58703cd --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/OpWien.sp @@ -0,0 +1,88 @@ +OPWIEN.CIR - OPAMP WIEN-BRIDGE OSCILLATOR +* http://www.ecircuitcenter.com/circuits/opwien/opwien.htm +* single simulation run +* 2 resistors and 2 capacitors of Wien bridge a varied statistically +* number of variations: varia + +* Simulation time +.param ttime=120m +.param varia=100 +.param ttime10 = 'ttime/varia' + +* nominal resistor and capacitor values +.param res = 10k +.param cn = 16NF + +* CURRENT PULSE TO START OSCILLATIONS +IS 0 3 dc 0 PWL(0US 0MA 10US 0.1MA 40US 0.1MA 50US 0MA 10MS 0MA) +* +* RC TUNING +VR2 r2 0 dc 0 trrandom (2 'ttime10' 0 1) ; Gauss controlling voltage +* +*VR2 r2 0 dc 0 trrandom (1 'ttime10' 0 3) ; Uniform within -3 3 +* +* If Gauss, factor 0.033 is 10% equivalent to 3 sigma +* if uniform, uniform between +/- 10% +R2 4 6 R = 'res + 0.033 * res*V(r2)' ; behavioral resistor +*R2 4 6 'res' ; constant R + +VC2 c2 0 dc 0 trrandom (2 'ttime10' 0 1) +*C2 6 3'cn' ; constant C +C2 6 3 C = 'cn + 0.033 * cn*V(c2)' ; behavioral capacitor + +VR1 r1 0 dc 0 trrandom (2 'ttime10' 0 1) +*VR1 r1 0 dc 0 trrandom (1 'ttime10' 0 3) +R1 3 0 R = 'res + 0.033 * res*V(r1)' +*R1 3 0 'res' + +VC1 c1 0 dc 0 trrandom (2 'ttime10' 0 1) +C1 3 0 C = 'cn + 0.033 * cn*V(c2)' +*C1 3 0 'cn' + +* NON-INVERTING OPAMP +R10 0 2 10K +R11 2 5 18K +XOP 3 2 4 OPAMP1 +* AMPLITUDE STABILIZATION +R12 5 4 5K +D1 5 4 D1N914 +D2 4 5 D1N914 +* +.model D1N914 D(Is=0.1p Rs=16 CJO=2p Tt=12n Bv=100 Ibv=0.4n) +* +* OPAMP MACRO MODEL, SINGLE-POLE +* connections: non-inverting input +* | inverting input +* | | output +* | | | +.SUBCKT OPAMP1 1 2 6 +* INPUT IMPEDANCE +RIN 1 2 10MEG +* DC GAIN (100K) AND POLE 1 (100HZ) +EGAIN 3 0 1 2 100K +RP1 3 4 1K +CP1 4 0 1.5915UF +* OUTPUT BUFFER AND RESISTANCE +EBUFFER 5 0 4 0 1 +ROUT 5 6 10 +.ENDS +* +* ANALYSIS +.TRAN 0.05MS 'ttime' +* +* VIEW RESULTS +.control +option noinit +run +plot V(4) 5*V(r1) 5*V(r2) 5*V(c1) 5*V(c2) +linearize v(4) +fft v(4) +let v4mag = mag(v(4)) +plot v4mag +plot v4mag xlimit 500 1500 +*wrdata histo v4mag +rusage +quit +.endc + +.END diff --git a/paranoia_parallel/examples/Monte_Carlo/OpWien_s.sp b/paranoia_parallel/examples/Monte_Carlo/OpWien_s.sp new file mode 100644 index 000000000..71c7c4b57 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/OpWien_s.sp @@ -0,0 +1,87 @@ +OPWIEN.CIR - OPAMP WIEN-BRIDGE OSCILLATOR +* http://www.ecircuitcenter.com/circuits/opwien/opwien.htm +* single simulation run +* 2 resistors and 2 capacitors of Wien bridge a varied statistically +* number of variations: varia + +* Simulation time +.param ttime=1200m +.param varia=100 +.param ttime10 = 'ttime/varia' + +* nominal resistor and capacitor values +.param res = 10k +.param cn = 16NF + +* CURRENT PULSE TO START OSCILLATIONS +IS 0 3 dc 0 PWL(0US 0MA 10US 0.1MA 40US 0.1MA 50US 0MA 10MS 0MA) +* +* RC TUNING +VR2 r2 0 dc 0 trrandom (2 'ttime10' 0 1) ; Gauss controlling voltage +* +*VR2 r2 0 dc 0 trrandom (1 'ttime10' 0 3) ; Uniform within -3 3 +* +* If Gauss, factor 0.033 is 10% equivalent to 3 sigma +* if uniform, uniform between +/- 10% +R2 4 6 R = 'res + 0.033 * res*V(r2)' ; behavioral resistor +*R2 4 6 'res' ; constant R + +VC2 c2 0 dc 0 trrandom (2 'ttime10' 0 1) +*C2 6 3'cn' ; constant C +C2 6 3 C = 'cn + 0.033 * cn*V(c2)' ; behavioral capacitor + +VR1 r1 0 dc 0 trrandom (2 'ttime10' 0 1) +*VR1 r1 0 dc 0 trrandom (1 'ttime10' 0 3) +R1 3 0 R = 'res + 0.033 * res*V(r1)' +*R1 3 0 'res' + +VC1 c1 0 dc 0 trrandom (2 'ttime10' 0 1) +C1 3 0 C = 'cn + 0.033 * cn*V(c2)' +*C1 3 0 'cn' + +* NON-INVERTING OPAMP +R10 0 2 10K +R11 2 5 18K +XOP 3 2 4 OPAMP1 +* AMPLITUDE STABILIZATION +R12 5 4 5K +D1 5 4 D1N914 +D2 4 5 D1N914 +* +.model D1N914 D(Is=0.1p Rs=16 CJO=2p Tt=12n Bv=100 Ibv=0.4n) +* +* OPAMP MACRO MODEL, SINGLE-POLE +* connections: non-inverting input +* | inverting input +* | | output +* | | | +.SUBCKT OPAMP1 1 2 6 +* INPUT IMPEDANCE +RIN 1 2 10MEG +* DC GAIN (100K) AND POLE 1 (100HZ) +EGAIN 3 0 1 2 100K +RP1 3 4 1K +CP1 4 0 1.5915UF +* OUTPUT BUFFER AND RESISTANCE +EBUFFER 5 0 4 0 1 +ROUT 5 6 10 +.ENDS +* +* ANALYSIS +.TRAN 0.05MS 'ttime' +* +* VIEW RESULTS +.control +option noinit +run +plot V(4) 5*V(r1) 5*V(r2) 5*V(c1) 5*V(c2) +linearize v(4) +fft v(4) +let v4mag = mag(v(4)) +plot v4mag +plot v4mag xlimit 500 1500 +*wrdata histo v4mag +rusage +.endc + +.END diff --git a/paranoia_parallel/examples/Monte_Carlo/mc_ring_circ.net b/paranoia_parallel/examples/Monte_Carlo/mc_ring_circ.net new file mode 100644 index 000000000..a4e0fc02b --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/mc_ring_circ.net @@ -0,0 +1,58 @@ +Perform Monte Carlo simulation in ngspice +* 25 stage Ring-Osc. BSIM3 or 4 with statistical variation of model parameters +* Model parameters are varied according to the PDK selection. +* Tested with 3 different commercial HSPICE libraries from 2 vendors. +* To be started with script MC_ring_ts.sp + +.options noacct seedinfo + +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 +vdd dd 0 dc 3.3 +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + +* transistors to be selected according to the library (here: p33ll and n33ll or pch_5_mac and nch_5_mac +* or pe3 and ne3 or p1 and n1 (these models see below)) +.subckt inv1 dd ss sub well in out +*XMP1 out in dd well p33ll w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +*XMN1 out in ss sub n33ll w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +*XMP1 out in dd well pch_5_mac w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +*XMN1 out in ss sub nch_5_mac w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +*XMP1 out in dd well pe3 w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +*XMN1 out in ss sub ne3 w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +MP1 out in dd well p1 w=5u l=800n m=3 ad=1.35p as=1.35p pd=9.6u ps=9.6u +MN1 out in ss sub n1 w=5u l=800n m=1 ad=0.9p as=0.9p pd=6.6u ps=6.6u +.ends inv1 + +.subckt inv5 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv5 + +xinv1 dd ss sub well in out5 inv5 +xinv2 dd ss sub well out5 out10 inv5 +xinv3 dd ss sub well out10 out15 inv5 +xinv4 dd ss sub well out15 out20 inv5 +xinv5 dd ss sub well out20 out inv5 +xinv11 dd 0 sub well out buf inv1 +cout buf ss 0.2pF + +.ic v(out20) = 0 + + *** Model library files. +* Add your library here +* Chose the transistors for XMP1 and XMN1 accordingly +*.lib "jc_usage.l" MC_LIB +*.lib "my_ts_usage.l" MC_LIB +*.lib "x_usage.l" MC_LIB + +* or use the BSIM3 model with internal parameters except Vth0 +* that varies the threshold voltage +-3 sigma around a mean of +-0.6V +.model p1 PMOS version=3.3.0 Level=8 Vth0=agauss(-0.6, 0.1, 3) +.model n1 NMOS version=3.3.0 Level=8 Vth0=agauss(0.6, 0.1, 3) + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/mc_ring_lib_complete_actual.cir b/paranoia_parallel/examples/Monte_Carlo/mc_ring_lib_complete_actual.cir new file mode 100644 index 000000000..4591b0b0f --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/mc_ring_lib_complete_actual.cir @@ -0,0 +1,212 @@ +Perform Monte Carlo simulation in ngspice +* 25 stage Ring-Osc. BSIM3 or 4 with statistical variation of model parameters +* Model parameters are varied according to the PDK selection. +* Tested with 3 different commercial HSPICE libraries from 2 vendors. +* Add your library to mc_ring_circ.net and choose transistors accordingly. +* Add the library path to the .LIB statement. +* A simple BSIM3 inverter R.O. serves as an MC example. + +.options noacct + +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 +vdd dd 0 dc 3.3 +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + +* transistors to be selected according to the library (here: p33ll and n33ll or pch_5_mac and nch_5_mac +* or pe3 and ne3 or p1 and n1 (these models see below)) +.subckt inv1 dd ss sub well in out +*XMP1 out in dd well p33ll w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +*XMN1 out in ss sub n33ll w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +XMP1 out in dd well pch_5_mac w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +XMN1 out in ss sub nch_5_mac w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +*XMP1 out in dd well pe3 w=5u l=800n m=3 nf=1 ad=1.35p as=1.35p pd=9.6u ps=9.6u mosmis_mod=1 +*XMN1 out in ss sub ne3 w=5u l=800n m=1 nf=3 ad=0.9p as=0.9p pd=6.6u ps=6.6u mosmis_mod=1 +*MP1 out in dd well p1 w=5u l=800n m=3 ad=1.35p as=1.35p pd=9.6u ps=9.6u +*MN1 out in ss sub n1 w=5u l=800n m=1 ad=0.9p as=0.9p pd=6.6u ps=6.6u +.ends inv1 + +.subckt inv5 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv5 + +xinv1 dd ss sub well in out5 inv5 +xinv2 dd ss sub well out5 out10 inv5 +xinv3 dd ss sub well out10 out15 inv5 +xinv4 dd ss sub well out15 out20 inv5 +xinv5 dd ss sub well out20 out inv5 +xinv11 dd 0 sub well out buf inv1 +cout buf ss 0.2pF + + *** Model library files. +* Add your library here (full path required, or path relative to path +* of ngspice executable (interactive mode), or relative to path of +* input file (batch mode)) +* Chose the transistors for XMP1 and XMN1 according to the library +*.lib "jc_usage.l" MC_LIB +*.lib "../../../various/lib-test/my_usage.l" MC_LIB +.lib "D:\Spice_general\tests\lib-test\ts14\my_ts_usage.l" MC_LIB +*.lib "x_usage.l" MC_LIB + +* or use the BSIM3 model with internal parameters except Vth0 +* that varies the threshold voltage +-3 sigma around a mean of +-0.6V +*.model p1 PMOS version=3.3.0 Level=8 Vth0=agauss(-0.6, 0.1, 3) +*.model n1 NMOS version=3.3.0 Level=8 Vth0=agauss(0.6, 0.1, 3) + +.control + let mc_runs = 10 ; number of runs for monte carlo + let run = 0 ; number of actual run + set curplot = new ; create a new plot + set curplottitle = "Transient outputs" + set plot_out = $curplot ; store its name to 'plot_out' + set curplot = new ; create a new plot + set curplottitle = "FFT outputs" + set plot_fft = $curplot ; store its name to 'plot_fft' + set curplot = new ; create a new plot + set curplottitle = "Oscillation frequency" + set max_fft = $curplot ; store its name to 'max_fft' + let mc_runsp = mc_runs + 1 + let maxffts = unitvec(mc_runsp) ; vector for storing max measure results + let halfffts = unitvec(mc_runsp)$ vector for storing measure results at -40dB rising + unlet mc_runsp + + set mc_runs = $&mc_runs ; create a variable from the vector + let seeds = mc_runs + 2 + setseed $&seeds + unlet seeds + + save buf ; we just need buf, save memory by more than 10x + +* run the simulation loop + +* We have to figure out what to do if a single simulation will not converge. +* There is now the variable sim_status, that is 0 if simulation ended regularly, +* and 1 if the simulation has been aborted with error message '...simulation(s) aborted'. +* Then we skip the rest of the run and continue with a new run. + + dowhile run <= mc_runs + + set run = $&run ; create a variable from the vector + + * run=0 simulates with nominal parameters + if run > 0 + echo + echo * * * * * * + echo Source the circuit again internally for run no. $run + echo * * * * * * + setseed $run + mc_source ; re-source the input file + else + echo run no. $run + end + echo simulation run no. $run of $mc_runs + tran 100p 1000n 0 + echo Simulation status $sim_status + let simstat = $sim_status + if simstat = 1 + if run = mc_runs + echo go to end + else + echo go to next run + end + destroy $curplot + goto next + end + +* select stop and step so that number of data points after linearization is not too +* close to 8192, which would yield varying number of line length and thus scale for fft. +* + set dt0 = $curplot + * save the linearized data for having equal time scales for all runs + linearize buf ; linearize only buf, no other vectors needed + set dt1 = $curplot ; store the current plot to dt (tran i+1) + setplot $plot_out ; make 'plt_out' the active plot + * firstly save the time scale once to become the default scale + if run=0 + let time={$dt1}.time + end + let vout{$run}={$dt1}.buf ; store the output vector to plot 'plot_out' + setplot $dt1 ; go back to the previous plot (tran i+1) + fft buf ; run fft on vector buf + let buf2=db(mag(buf)) + * find the frequency where buf has its maximum of the fft signal + meas sp fft_max MAX_AT buf2 from=0.05G to=0.7G + * find the frequency where buf is -40dB at rising fft signal + meas sp fft_40 WHEN buf2=-40 RISE=1 from=0.05G to=0.7G + * store the fft vector + set dt2 = $curplot ; store the current plot to dt (spec i) + setplot $plot_fft ; make 'plot_fft' the active plot + if run=0 + let frequency={$dt2}.frequency + end + let fft{$run}={$dt2}.buf ; store the output vector to plot 'plot_fft' + * store the measured value + setplot $max_fft ; make 'max_fft' the active plot + let maxffts[{$run}]={$dt2}.fft_max + let halfffts[{$run}]={$dt2}.fft_40 + destroy $dt0 $dt1 $dt2 ; save memory, we don't need this plot (spec) any more + + label next + remcirc + let run = run + 1 + end +***** plotting ********************************************************** +if $?batchmode + echo + echo Plotting not available in batch mode + echo Write linearized vout0 to vout{$mc_runs} to rawfile $rawfile + echo + write $rawfile {$plot_out}.allv + rusage + quit +else + plot {$plot_out}.vout0 ; just plot the tran output with run 0 parameters + setplot $plot_fft + plot db(mag(ally)) xlimit 0 1G ylimit -80 10 +* +* create a histogram from vector maxffts + setplot $max_fft ; make 'max_fft' the active plot + set startfreq=50MEG + set bin_size=1MEG + set bin_count=100 + compose osc_frequ start=$startfreq step=$bin_size lin=$bin_count ; requires variables as parameters + settype frequency osc_frequ + let bin_count=$bin_count ; create a vector from the variable + let yvec=unitvec(bin_count) ; requires vector as parameter + let startfreq=$startfreq + let bin_size=$bin_size + * put data into the correct bins + let run = 0 + dowhile run < mc_runs + set run = $&run ; create a variable from the vector + let val = maxffts[{$run}] + let part = 0 + * Check if val fits into a bin. If yes, raise bin by 1 + dowhile part < bin_count + if ((val < (startfreq + (part+1)*bin_size)) & (val > (startfreq + part*bin_size))) + let yvec[part] = yvec[part] + 1 + break + end + let part = part + 1 + end + let run = run + 1 + end + * plot the histogram + set plotstyle=combplot + let counts = yvec - 1 ; subtract 1 because we started with unitvec containing ones + plot counts vs osc_frequ +* calculate jitter + let diff40 = (vecmax(halfffts) - vecmin(halfffts))*1e-6 + echo + echo Max. jitter is "$&diff40" MHz +end + rusage +* quit +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/names-test.sp b/paranoia_parallel/examples/Monte_Carlo/names-test.sp new file mode 100644 index 000000000..4d3ca309e --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/names-test.sp @@ -0,0 +1,9 @@ +simple test for names = ft_getpnames() versus free_pnode(names) + +.control +let buf = [ 1 2 3 ] +let buf2=db(mag(buf)) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/names-test2.sp b/paranoia_parallel/examples/Monte_Carlo/names-test2.sp new file mode 100644 index 000000000..792b0127c --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/names-test2.sp @@ -0,0 +1,21 @@ +simple test for names = ft_getpnames() versus free_pnode(names) +* altermod + +R1 1 0 RE +V1 1 0 1 + +.model RE r r=1 + +.control + op + print all + define gauss(nom, var, sig) (nom + (nom*var)/sig * sgauss(0)) + altermod r1 R = (1 + (1 * 2) / 3 * sgauss(0)) ; no leak +* altermod @r1[r] = gauss(1,2,3) ; leak +* altermod r1 r = gauss(1,2,3) ; leak + op + print all + quit +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/names-test3.sp b/paranoia_parallel/examples/Monte_Carlo/names-test3.sp new file mode 100644 index 000000000..c209ba53c --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/names-test3.sp @@ -0,0 +1,9 @@ +simple test for names = ft_getpnames() versus free_pnode(names) + +.control +let buf = 0 +let buf = buf + 1 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/Monte_Carlo/rand_numb_test.cir b/paranoia_parallel/examples/Monte_Carlo/rand_numb_test.cir new file mode 100644 index 000000000..dac4b5b61 --- /dev/null +++ b/paranoia_parallel/examples/Monte_Carlo/rand_numb_test.cir @@ -0,0 +1,40 @@ +*** random number test for scope-inpcom-8 + +*** Start value of seed for random number generator: variable 'rndseed' is set to 1 +*** and random number generator is seeded with this value. +*** You may override this value by adding 'setseed 5' or similar to file .spiceinit. + +*** print a message when the random number generator gets a new seed +.option seedinfo + +*** like HSPICE: set rndseed to (number of seconds since 1.1.1970 - 1470000000) +*** and seed the random number generator with rndseed +*.option seed = random + +*** like HSPICE: set rndseed to 55 +*** and seed the random number generator with rndseed (here 55) +.option seed = 55 + +*** the 'circuit' +.param myval = agauss(0, 1, 1) +v1 1 0 'myval' + +*** the .control script +.control + +*** set variable rndseed to value 11 +*set rndseed = 11 +*** seed the random number generator with value from variable rndseed +*setseed + +*** seed the random number generator with value 12 and set rndseed to 12 +setseed 12 + +*** reload circuit and re-evaluate all random functions (agauss etc.) +mc_source +*** simulate and print result +op +print v(1) +.endc + +.end diff --git a/paranoia_parallel/examples/TransImpedanceAmp/README b/paranoia_parallel/examples/TransImpedanceAmp/README new file mode 100644 index 000000000..ea5c249da --- /dev/null +++ b/paranoia_parallel/examples/TransImpedanceAmp/README @@ -0,0 +1,41 @@ +This directory holds a SPICE netlist with SPICE2 POLY constructs in +controlled sources as typically found in vendor models. The circuit +is just a two-stage transimpedance amp using an AD8009, +along with some slow components (AD780 and OP177A) to set bias +points. Vendor models are used for all active components. +Successfully running this test shows that you have successfully built +the XSpice stuff with the POLY codemodel, and that you should be able +to simulate SPICE netlists with embedded vendor models. + +To run this netlist, just do the following: + +[localhost]# ngspice +ngspice 1 -> source output.net +ngspice 2 -> run +ngspice 3 -> plot Vout2 + +(Note that when you read in the netlist, you will get a bunch of +warnings saying stuff like: + +Warning -- Level not specified on line "()" +Using level 1. + +Also, ngspice will complain about: + +Error on line 50 : r:u101:1 u101:40 0 1e3 tc=7e-6 + unknown parameter (tc) +Error on line 283 : .temp 0 25 50 75 100 + Warning: .TEMP card obsolete - use .options TEMP and TNOM + +You can ignore all this stuff . . . .) + +You should get a pop-up window showing two square pulses (the second +smaller than the first) with a little bit of overshoot on the rising +and falling edges. + +This stuff was done as an adjunct to work on the gEDA project. +Information about gEDA is available at http://geda.seul.org/ . +Please direct all questions/suggestions/bugs/complaints about XSpice +extensions to ngspice to Stuart Brorson -- mailto:sdb@cloud9.net. + +6.23.2002 -- SDB. diff --git a/paranoia_parallel/examples/TransImpedanceAmp/output.net b/paranoia_parallel/examples/TransImpedanceAmp/output.net new file mode 100644 index 000000000..6a6cb0a52 --- /dev/null +++ b/paranoia_parallel/examples/TransImpedanceAmp/output.net @@ -0,0 +1,469 @@ +********************************************************* +* Spice file generated by gnetlist * +* spice-SDB version 3.30.2003 by SDB -- * +* provides advanced spice netlisting capability. * +* Documentation at http://www.brorson.com/gEDA/SPICE/ * +********************************************************* + +* Batch command +* ngspice -b -o output.log output.net +* will generate a nice printer plot in output.log +* (remember the old times !) + +* Interactive commands for usage: +* run +* plot vout1 vout2 + +* Command stuff +.options gmin=1e-9 +.options method=gear +.options abstol=1e-11 +* .ac dec 10 10MegHz 10 Ghz +* Remainder of file +R112 0 6 1Meg +R111 0 8 10Meg +R110 0 7 1Meg +Rref2in 11 VU780out 25000 +Rref2fb VU2bias+ 11 33 +C201 0 9 1uF +C202 10 0 1uF +XU200 0 11 10 9 VU2bias+ OP177A +R202 10 +5V 22 +R201 -5V 9 22 +Rref1in VU100in- VU780out 9130 +Rref1fb VU1bias+ VU100in- 33 +XU101 +5V 7 0 6 VU780out 8 AD780A +* AD780A SPICE Macromodel 5/93, Rev. A +* AAG / PMI +* +* This version of the AD780 voltage reference model simulates the worst case +* parameters of the 'A' grade. The worst case parameters used +* correspond to those in the data sheet. +* +* Copyright 1993 by Analog Devices, Inc. +* +* Refer to "README.DOC" file for License Statement. Use of this model +* indicates your acceptance with the terms and provisions in the License Statement. +* +* NODE NUMBERS +* VIN +* | TEMP +* | | GND +* | | | TRIM +* | | | | VOUT +* | | | | | RANGE +* | | | | | | +.SUBCKT AD780A 2 3 4 5 6 8 +* +* BANDGAP REFERENCE +* +I1 4 40 DC 1.21174E-3 +R1 40 4 1E3 TC=7E-6 +EN 10 40 42 0 1 +G1 4 10 2 4 4.85668E-9 +F1 4 10 POLY(2) VS1 VS2 (0,2.42834E-5,3.8E-5) +Q1 2 10 11 QT +I2 11 4 DC 12.84E-6 +R2 11 3 1E3 +I3 3 4 DC 0 +* +* NOISE VOLTAGE GENERATOR +* +VN1 41 0 DC 2 +DN1 41 42 DEN +DN2 42 43 DEN +VN2 0 43 DC 2 +* +* INTERNAL OP AMP +* +G2 4 12 10 20 1.93522E-4 +R3 12 4 2.5837E9 +C1 12 4 6.8444E-11 +D1 12 13 DX +V1 2 13 DC 1.2 +* +* SECONDARY POLE @ 508 kHz +* +G3 4 14 12 4 1E-6 +R4 14 4 1E6 +C2 14 4 3.1831E-13 +* +* OUTPUT STAGE +* +ISY 2 4 6.8282E-4 +FSY 2 4 V1 -1 +RSY 2 4 500E3 +* +G4 4 15 14 4 25E-6 +R5 15 4 40E3 +Q2 4 15 16 QP +I4 2 16 DC 100E-6 +Q3 4 16 18 QP +R6 18 23 15 +R7 16 21 150E3 +R8 2 17 34.6 +Q4 17 16 19 QN +R9 21 20 6.46E3 +R10 20 4 6.1E3 +R11 20 5 53E3 +R12 20 8 15.6E3 +I5 5 4 DC 0 +I6 8 4 DC 0 +VS1 21 19 DC 0 +VS2 23 21 DC 0 +L1 21 6 1E-7 +* +* OUTPUT CURRENT LIMIT +* +FSC 15 4 VSC 1 +VSC 2 22 DC 0 +QSC 22 2 17 QN +* +.MODEL QT NPN(level=1 IS=1.68E-16 BF=1E4) +.MODEL QN NPN(level=1 IS=1E-15 BF=1E3) +.MODEL QP PNP(level=1 IS=1E-15 BF=1E3) +.MODEL DX D(IS=1E-15) +.MODEL DEN D(IS=1E-12 RS=2.425E+05 AF=1 KF=6.969E-16) +.ENDS AD780A +C101 0 U100V- 1uF +C102 U100V+ 0 1uF +XU100 0 VU100in- U100V+ U100V- VU1bias+ OP177A +* OP177A SPICE Macro-model 12/90, Rev. B +* JCB / PMI +* +* Revision History: +* REV. B +* Re-ordered subcircuit call out nodes to put the +* output node last. +* Changed Ios from 1E-9 to 0.5E-9 +* Added F1 and F2 to fix short circuit current limit. +* +* +* This version of the OP-177 model simulates the worst case +* parameters of the 'A' grade. The worst case parameters +* used correspond to those in the data book. +* +* +* Copyright 1990 by Analog Devices, Inc. +* +* Refer to "README.DOC" file for License Statement. Use of this model +* indicates your acceptance with the terms and provisions in the License Statement. +* +* Node assignments +* non-inverting input +* | inverting input +* | | positive supply +* | | | negative supply +* | | | | output +* | | | | | +.SUBCKT OP177A 1 2 99 50 39 +* +* INPUT STAGE & POLE AT 6 MHZ +* +R1 2 3 5E11 +R2 1 3 5E11 +R3 5 97 0.0606 +R4 6 97 0.0606 +CIN 1 2 4E-12 +C2 5 6 218.9E-9 +I1 4 51 1 +IOS 1 2 0.5E-9 +EOS 9 10 POLY(1) 30 33 10E-6 1 +Q1 5 2 7 QX +Q2 6 9 8 QX +R5 7 4 0.009 +R6 8 4 0.009 +D1 2 1 DX +D2 1 2 DX +EN 10 1 12 0 1 +GN1 0 2 15 0 1 +GN2 0 1 18 0 1 +* +EREF 98 0 33 0 1 +EPLUS 97 0 99 0 1 +ENEG 51 0 50 0 1 +* +* VOLTAGE NOISE SOURCE WITH FLICKER NOISE +* +DN1 11 12 DEN +DN2 12 13 DEN +VN1 11 0 DC 2 +VN2 0 13 DC 2 +* +* CURRENT NOISE SOURCE WITH FLICKER NOISE +* +DN3 14 15 DIN +DN4 15 16 DIN +VN3 14 0 DC 2 +VN4 0 16 DC 2 +* +* SECOND CURRENT NOISE SOURCE +* +DN5 17 18 DIN +DN6 18 19 DIN +VN5 17 0 DC 2 +VN6 0 19 DC 2 +* +* FIRST GAIN STAGE +* +R7 20 98 1 +G1 98 20 5 6 119.8 +D3 20 21 DX +D4 22 20 DX +E1 97 21 POLY(1) 97 33 -2.4 1 +E2 22 51 POLY(1) 33 51 -2.4 1 +* +* GAIN STAGE & DOMINANT POLE AT 0.127 HZ +* +R8 23 98 1.253E9 +C3 23 98 1E-9 +G2 98 23 20 33 33.3E-6 +V1 97 24 1.8 +V2 25 51 1.8 +D5 23 24 DX +D6 25 23 DX +* +* NEGATIVE ZERO AT -4MHZ +* +R9 26 27 1 +C4 26 27 -39.75E-9 +R10 27 98 1E-6 +E3 26 98 23 33 1E6 +* +* COMMON-MODE GAIN NETWORK WITH ZERO AT 63 HZ +* +R13 30 31 1 +L2 31 98 2.52E-3 +G4 98 30 3 33 0.316E-6 +D7 30 97 DX +D8 51 30 DX +* +* POLE AT 2 MHZ +* +R14 32 98 1 +C5 32 98 79.5E-9 +G5 98 32 27 33 1 +* +* OUTPUT STAGE +* +R15 33 97 1 +R16 33 51 1 +GSY 99 50 POLY(1) 99 50 0.725E-3 0.0425E-3 +F1 34 0 V3 1 +F2 0 34 V4 1 +R17 34 99 400 +R18 34 50 400 +L3 34 39 2E-7 +G6 37 50 32 34 2.5E-3 +G7 38 50 34 32 2.5E-3 +G8 34 99 99 32 2.5E-3 +G9 50 34 32 50 2.5E-3 +V3 35 34 6.8 +V4 34 36 4.4 +D9 32 35 DX +D10 36 32 DX +D11 99 37 DX +D12 99 38 DX +D13 50 37 DY +D14 50 38 DY +* +* MODELS USED +* +.MODEL QX NPN(level=1 BF=333.3E6) +.MODEL DX D(IS=1E-15) +.MODEL DY D(IS=1E-15 BV=50) +.MODEL DEN D(IS=1E-12, RS=14.61K, KF=2E-17, AF=1) +.MODEL DIN D(IS=1E-12, RS=7.55E-6, KF=3E-15, AF=1) +.ENDS +R102 U100V+ +5V 22 +R101 -5V U100V- 22 +R98 0 VU2bias+ 1K +R99 0 VU1bias+ 1K +C95 VU2bias+ 0 100pF +* C96 0 5 1uF +* C97 4 0 1uF +Cphotodiode 0 Vinput 0.9pF +C99 0 VU1bias+ 100pF +R25 Vout2 2 250 +C24 Vout1 VU1in- 1pF +R24 VU1in- 1 150 +* C21 0 3 1uF +Cc Vout2 VU2in- 1pF +Rc Vout1 VU2in- 10 +RL 0 Vout2 50 +.TEMP 0 25 50 75 100 +C12 2 0 1.5pF +C11 0 V2- .01uF +C10 V2+ 0 .01uF +R13 +5V V2+ 5 +R12 V2- -5V 5 +R26 2 VU2in- 150 +R11 Vout2 VU2in- 180 +XU2 VU2bias+ VU2in- V2+ V2- Vout2 AD8009an +XU1 VU1bias+ VU1in- V1+ V1- Vout1 AD8009an +***** AD8009 SPICE model Rev B SMR/ADI 8-21-97 + +* Copyright 1997 by Analog Devices, Inc. + +* Refer to "README.DOC" file for License Statement. Use of this model +* indicates your acceptance with the terms and provisions in the License Statement. + +* rev B of this model corrects a problem in the output stage that would not +* correctly reflect the output current to the voltage supplies + +* This model will give typical performance characteristics +* for the following parameters; + +* closed loop gain and phase vs bandwidth +* output current and voltage limiting +* offset voltage (is static, will not vary with vcm) +* ibias (again, is static, will not vary with vcm) +* slew rate and step response performance +* (slew rate is based on 10-90% of step response) +* current on output will be reflected to the supplies +* vnoise, referred to the input +* inoise, referred to the input + +* distortion is not characterized + +* Node assignments +* non-inverting input +* | inverting input +* | | positive supply +* | | | negative supply +* | | | | output +* | | | | | +.SUBCKT AD8009an 1 2 99 50 28 + +* input stage * + +q1 50 3 5 qp1 +q2 99 5 4 qn1 +q3 99 3 6 qn2 +q4 50 6 4 qp2 +i1 99 5 1.625e-3 +i2 6 50 1.625e-3 +cin1 1 98 2.6e-12 +cin2 2 98 1e-12 +v1 4 2 0 + +* input error sources * + +eos 3 1 poly(1) 20 98 2e-3 1 +fbn 2 98 poly(1) vnoise3 50e-6 1e-3 +fbp 1 98 poly(1) vnoise3 50e-6 1e-3 + +* slew limiting stage * + +fsl 98 16 v1 1 +dsl1 98 16 d1 +dsl2 16 98 d1 +dsl3 16 17 d1 +dsl4 17 16 d1 +rsl 17 18 0.22 +vsl 18 98 0 + +* gain stage * + +f1 98 7 vsl 2 +rgain 7 98 2.5e5 +cgain 7 98 1.25e-12 +dcl1 7 8 d1 +dcl2 9 7 d1 +vcl1 99 8 1.83 +vcl2 9 50 1.83 + +gcm 98 7 poly(2) 98 0 30 0 0 1e-5 1e-5 + +* second pole * + +epole 14 98 7 98 1 +rpole 14 15 1 +cpole 15 98 2e-10 + +* reference stage * + +eref 98 0 poly(2) 99 0 50 0 0 0.5 0.5 + +ecmref 30 0 poly(2) 1 0 2 0 0 0.5 0.5 + +* vnoise stage * + +rnoise1 19 98 4.6e-3 +vnoise1 19 98 0 +vnoise2 21 98 0.53 +dnoise1 21 19 dn + +fnoise1 20 98 vnoise1 1 +rnoise2 20 98 1 + +* inoise stage * + +rnoise3 22 98 8.18e-6 +vnoise3 22 98 0 +vnoise4 24 98 0.575 +dnoise2 24 22 dn + +fnoise2 23 98 vnoise3 1 +rnoise4 23 98 1 + +* buffer stage * + +gbuf 98 13 15 98 1e-2 +rbuf 98 13 1e2 + +* output current reflected to supplies * + +fcurr 98 40 voc 1 +vcur1 26 98 0 +vcur2 98 27 0 +dcur1 40 26 d1 +dcur2 27 40 d1 + +* output stage * + +vo1 99 90 0 +vo2 91 50 0 +fout1 0 99 poly(2) vo1 vcur1 -9.27e-3 1 -1 +fout2 50 0 poly(2) vo2 vcur2 -9.27e-3 1 -1 +gout1 90 10 13 99 0.5 +gout2 91 10 13 50 0.5 +rout1 10 90 2 +rout2 10 91 2 +voc 10 28 0 +rout3 28 98 1e6 +dcl3 13 11 d1 +dcl4 12 13 d1 +vcl3 11 10 -0.445 +vcl4 10 12 -0.445 + +.model qp1 pnp(level=1) +.model qp2 pnp(level=1) +.model qn1 npn(level=1) +.model qn2 npn(level=1) +.model d1 d() +.model dn d(af=1 kf=1e-8) +.ends +R6 1 Vout1 250 +C3 1 0 1.5pF +V3 VU1in- Vinput DC 0V +* .INCLUDE /home/sdb/OpticalReceiver/Simulation.cmd +R5 -5V Vout1 1K +I1 0 Vinput AC 1 PWL (0ns 0mA 1nS 0mA 1.01nS 1mA 10nS 1mA 10.01nS 0mA 20nS 0mA 20.01nS .1mA 30nS .1mA 30.01nS 0mA) +R4 V1- -5V 5 +C2 0 V1- .01uF +V2 -5V 0 DC -5V +R2 VU1in- Vout1 180 +V1 +5V 0 DC 5V +C1 V1+ 0 .01uF +R1 +5V V1+ 5 +* When run, this SPICE file should output a square waveform +* with a little overshoot +.tran 0.05ns 4ns +.plot tran Vout2 + +.control +run +quit +.endc +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl1_4_line.sp b/paranoia_parallel/examples/TransmissionLines/cpl1_4_line.sp new file mode 100644 index 000000000..7c46b6552 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl1_4_line.sp @@ -0,0 +1,63 @@ +MOSdriver -- 6.3inch 4 lossy line CPL model -- C load + +m1 1 2 6 1 mp1p0 w = 36.0u l=1.0u +m2 1 3 7 1 mp1p0 w = 36.0u l=1.0u +m3 1 4 8 1 mp1p0 w = 36.0u l=1.0u +m4 1 10 5 1 mp1p0 w = 36.0u l=1.0u +m5 1 11 13 1 mp1p0 w = 36.0u l=1.0u +m6 1 12 13 1 mp1p0 w = 36.0u l=1.0u + +m7 0 2 6 0 mn0p9 w = 18.0u l=0.9u +m8 0 3 7 0 mn0p9 w = 18.0u l=0.9u +m9 0 4 8 0 mn0p9 w = 18.0u l=0.9u +m10 0 10 5 0 mn0p9 w = 18.0u l=0.9u +m11 14 11 13 0 mn0p9 w = 18.0u l=0.9u +m12 0 12 14 0 mn0p9 w = 18.0u l=0.9u + +* +CN5 5 0 0.025398e-12 +CN6 6 0 0.007398e-12 +CN7 7 0 0.007398e-12 +CN8 8 0 0.007398e-12 +CN9 9 0 0.097398e-12 +CN10 10 0 0.007398e-12 +CN11 11 0 0.003398e-12 +CN12 12 0 0.004398e-12 +CN13 13 0 0.008398e-12 +CN14 14 0 0.005398e-12 + +* +P1 5 6 7 8 0 9 10 11 12 0 pline + +* +* +vdd 1 0 DC 5.0 +v3 3 0 DC 5.0 +* +VS1 2 0 PULSE ( 0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS) +VS2 4 0 PULSE (0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS ) +* +.control +TRAN 0.2N 47.9N 0 0.05N +plot V(5) V(6) V(7) V(8) V(9) V(10) V(11) V(12) +.endc +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 LAMBDA=0.00 CGSO=0 CGDO=0 ++CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 LAMBDA=0.00 CGSO=0 CGDO=0 ++CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL PLINE cpl ++R=0.03 0 0 0 ++ 0.03 0 0 ++ 0.03 0 ++ 0.03 ++L=9e-9 5.4e-9 0 0 ++ 9e-9 5.4e-9 0 ++ 9e-9 5.4e-9 ++ 9e-9 ++G=0 0 0 0 0 0 0 0 0 0 ++C=3.5e-13 -3e-14 0 0 ++ 3.5e-13 -3e-14 0 ++ 3.5e-13 -3e-14 ++ 3.5e-13 ++length=6.3 +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl2_2_line.sp b/paranoia_parallel/examples/TransmissionLines/cpl2_2_line.sp new file mode 100644 index 000000000..713e33344 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl2_2_line.sp @@ -0,0 +1,46 @@ +MOSdriver -- 24inch 2 lossy lines CPL model -- C load + +m1 0 268 299 0 mn0p9 w = 18.0u l=1.0u +m2 299 267 748 0 mn0p9 w = 18.0u l=1.0u +m3 0 168 648 0 mn0p9 w = 18.0u l=0.9u +m4 1 268 748 1 mp1p0 w = 36.0u l=1.0u +m5 1 267 748 1 mp1p0 w = 36.0u l=1.0u +m6 1 168 648 1 mp1p0 w = 36.0u l=1.0u +* +CN648 648 0 0.025398e-12 +CN651 651 0 0.007398e-12 +CN748 748 0 0.025398e-12 +CN751 751 0 0.009398e-12 +CN299 299 0 0.005398e-12 +* +P1 648 748 0 651 751 0 PLINE +* +vdd 1 0 DC 5.0 +VK 267 0 DC 5.0 +* +*VS 168 0 PWL 4 15.9N 0.0 16.1n 5.0 31.9n 5.0 32.1n 0.0 +*VS 268 0 PWL 4 15.9N 0.0 16.1n 5.0 31.9n 5.0 32.1n 0.0 +* +VS1 168 0 PULSE (0 5 15.9N 0.2N 0.2N 15.8N 60N) +VS2 268 0 PULSE (0 5 15.9N 0.2N 0.2N 15.8N 60N) +* +.control +TRAN 0.2N 47.9NS 0 1N +plot v(648) v(651) v(751) +.endc +* +.MODEL PLINE CPL ++R=0.2 0 ++ 0.2 ++L=9.13e-9 3.3e-9 ++ 9.13e-9 ++G=0 0 0 ++C=3.65e-13 -9e-14 ++ 3.65e-13 ++length=24 +******************* MODEL SPECIFICATION ********************** +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 LAMBDA=0.00 CGSO=0 CGDO=0 ++ CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 LAMBDA=0.00 CGSO=0 CGDO=0 ++ CJ=0 CJSW=0 TOX=18000N LD=0.0U +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl3_4_line.sp b/paranoia_parallel/examples/TransmissionLines/cpl3_4_line.sp new file mode 100644 index 000000000..d57154819 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl3_4_line.sp @@ -0,0 +1,37 @@ +6.3inch 4 lossy lines CPL model -- R load + +Ra 1 2 1K +Rb 0 3 1K +Rc 0 4 1K +Rd 0 5 1K +Re 6 0 1Meg +Rf 7 0 1Meg +Rg 8 0 1Meg +Rh 9 0 1Meg +* +P1 2 3 4 5 0 6 7 8 9 0 LOSSYMODE +* +* +VS1 1 0 PWL(15.9NS 0.0 16.1Ns 5.0 31.9Ns 5.0 32.1Ns 0.0) +* +.control +TRAN 0.2NS 50NS 0 0.05N +PLOT V(1) V(2) V(6) V(7) V(8) V(9) +.endc +.MODEL LOSSYMODE CPL ++R=0.3 0 0 0 ++ 0.3 0 0 ++ 0.3 0 ++ 0.3 ++L=9e-9 5.4e-9 0 0 ++ 9e-9 5.4e-9 0 ++ 9e-9 5.4e-9 ++ 9e-9 ++G=0 0 0 0 0 0 0 0 0 0 ++C=3.5e-13 -3e-14 0 0 ++ 3.5e-13 -3e-14 0 ++ 3.5e-13 -3e-14 ++ 3.5e-13 ++length=6.3 + +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl4_txl_2_line.sp b/paranoia_parallel/examples/TransmissionLines/cpl4_txl_2_line.sp new file mode 100644 index 000000000..986c9b631 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl4_txl_2_line.sp @@ -0,0 +1,378 @@ +BJTdriver -- 2in st. lin -- 20in coupled line CPL -- 2in st line -- DiodeCircuit + +* This unclassified circuit is from Raytheon, courtesy Gerry Marino. +* +* _______ +* -------- 2in _________________ 2in | | +* | BJT |______| |______|Diode| +* | |------| |------| | +* | Drvr | line | 2-wire | line |rcvr.| +* -------- | coupled | |_____| +* | transmission | +* |-/\/\/\/\----| line |-------\/\/\/\/\----| +* | 50ohms | | 50ohms | +* | | | | +* Ground ----------------- Ground +* +* +* Each inch of the lossy line is modelled by 10 LRC lumps in the +* Raytheon model. + +* The line parameters (derived from the Raytheon input file) are: +* L = 9.13nH per inch +* C = 3.65pF per inch +* R = 0.2 ohms per inch +* K = 0.482 [coupling coefficient; K = M/sqrt(L1*L2)] +* Cc = 1.8pF per inch +* +* coupled ltra model generated using the standalone program +* multi_decomp + +* the circuit +*tran 0.1ns 60ns + +v1 1 0 0v pulse(0 4 1ns 1ns 1ns 20ns 40ns) +*v1 1 0 4v pulse(4 0 1ns 1ns 1ns 20ns 40ns) +vcc 10 0 5v + +* series termination +*x1 1 oof 10 bjtdrvr +*rseries oof 2 50 + +x1 1 2 10 bjtdrvr +rt1 3 0 50 + + +* convolution model +x2 2 3 4 5 conv2wetcmodel + +* rlc segments model +*x2 2 3 4 5 rlc2wetcmodel + +x3 4 dioload +rt2 5 0 50 + + + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +.options acct reltol=1e-3 abstol=1e-12 +.control +tran 0.1ns 60ns 0 0.35N +plot v(2) v(4) v(5) +.endc + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +*q10 268 17 0 qmodpd +q10 268 17 0 qmodpdmine +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 +*comment out everything in dioload except d5 and r503, and watch +* the difference in results obtained between a tran 0.1ns 20ns and +* a tran 0.01ns 20ns +vccint 5 0 5v + +c1 28 0 5pF +r503 0 4 5.55 +r4 0 28 120k +r5 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* subckt rlclump - one RLC lump of the lossy line + +.subckt rlclump 1 2 +*r1 1 3 0.02 +*c1 3 0 0.365pF +*l1 3 2 0.913nH + +l1 1 3 0.913nH +c1 2 0 0.365pF +r1 3 2 0.02 + +*r1 1 3 0.01 +*c1 3 0 0.1825pF +*l1 3 4 0.4565nH +*r2 4 5 0.01 +*c2 5 0 0.1825pF +*l2 5 2 0.4565nH + +*c1 1 0 0.365pF +*l1 1 2 0.913nH +.ends lump + +.subckt rlconeinch 1 2 +x1 1 3 rlclump +x2 3 4 rlclump +x3 4 5 rlclump +x4 5 6 rlclump +x5 6 7 rlclump +x6 7 8 rlclump +x7 8 9 rlclump +x8 9 10 rlclump +x9 10 11 rlclump +x10 11 2 rlclump +.ends rlconeinch + +.subckt rlctwoinch 1 2 +x1 1 3 rlconeinch +x2 3 2 rlconeinch +.ends rlctwoinch + +.subckt rlcfourinch 1 2 +x1 1 3 rlconeinch +x2 3 4 rlconeinch +x3 4 5 rlconeinch +x4 5 2 rlconeinch +.ends rlcfourinch + +.subckt rlcfiveinch 1 2 +x1 1 3 rlconeinch +x2 3 4 rlconeinch +x3 4 5 rlconeinch +x4 5 6 rlconeinch +x5 6 2 rlconeinch +.ends rlcfiveinch + +.subckt rlctwentyrlcfourinch 1 2 +x1 1 3 rlcfiveinch +x2 3 4 rlcfiveinch +x3 4 5 rlcfiveinch +x4 5 6 rlcfiveinch +x5 6 2 rlcfourinch +.ends rlctwentyrlcfourinch + +.subckt rlclumpstub A B C D +x1 A int1 rlcfiveinch +x2 int1 int2 rlcfiveinch +x3 int2 1 rlcfiveinch +x4 1 2 rlcfourinch +x5 1 int3 rlcfiveinch +x6 int3 B rlconeinch +x7 2 C rlcfiveinch +x8 2 D rlcfourinch +.ends rlclumpstub + +.subckt ltrastub A B C D +yy1 A 0 1 0 ylline15in +yy2 1 0 B 0 ylline6in +yy3 1 0 2 0 ylline4in +yy4 2 0 C 0 ylline5in +yy5 2 0 D 0 ylline4in +.ends ltrastub + +*modelling using R and lossless lines + +*5 segments per inch +.model yllfifth txl r=0 g=0 l=9.13e-9 c=3.65e-12 length=0.2 + +.subckt xlump 1 2 +y1 1 0 3 0 yllfifth +r1 2 3 0.04 +.ends xlump + +.subckt xoneinch 1 2 +x1 1 3 xlump +x2 3 4 xlump +x3 4 5 xlump +x4 5 6 xlump +x5 6 2 xlump +*x5 6 7 xlump +*x6 7 8 xlump +*x7 8 9 xlump +*x8 9 10 xlump +*x9 10 11 xlump +*x10 11 2 xlump +.ends xoneinch + +.subckt xFourinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 2 xoneinch +.ends xfourinch + +.subckt xfiveinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 6 xoneinch +x5 6 2 xoneinch +.ends xfiveinch + +.subckt xlumpstub A B C D +x1 A int1 xfiveinch +x2 int1 int2 xfiveinch +x3 int2 1 xfiveinch +x4 1 2 xfourinch +x5 1 int3 xfiveinch +x6 int3 B xoneinch +x7 2 C xfiveinch +x8 2 D xfourinch +.ends xlumpstub + +* modelling a 2 wire coupled system using RLC lumps +* 10 segments per inch +* +* 1---xxxxx----2 +* 3---xxxxx----4 + +.subckt rlc2wlump 1 3 2 4 +l1 1 5 0.913nH +c1 2 0 0.365pF +r1 5 2 0.02 +l2 3 6 0.913nH +c2 4 0 0.365pF +r2 6 4 0.02 +cmut 2 4 0.18pF +k12 l1 l2 0.482 +.ends rlc2wlump + +.subckt rlc2woneinch 1 2 3 4 +x1 1 2 5 6 rlc2wlump +x2 5 6 7 8 rlc2wlump +x3 7 8 9 10 rlc2wlump +x4 9 10 11 12 rlc2wlump +x5 11 12 13 14 rlc2wlump +x6 13 14 15 16 rlc2wlump +x7 15 16 17 18 rlc2wlump +x8 17 18 19 20 rlc2wlump +x9 19 20 21 22 rlc2wlump +x10 21 22 3 4 rlc2wlump +.ends rlc2woneinch + +.subckt rlc2wfiveinch 1 2 3 4 +x1 1 2 5 6 rlc2woneinch +x2 5 6 7 8 rlc2woneinch +x3 7 8 9 10 rlc2woneinch +x4 9 10 11 12 rlc2woneinch +x5 11 12 3 4 rlc2woneinch +.ends rlc2wfiveinch + +.subckt rlc2wtwentyinch 1 2 3 4 +x1 1 2 5 6 rlc2wfiveinch +x2 5 6 7 8 rlc2wfiveinch +x3 7 8 9 10 rlc2wfiveinch +x4 9 10 3 4 rlc2wfiveinch +.ends rlc2wtwentyinch + +.subckt rlc2wetcmodel 1 2 3 4 +x1 1 5 rlctwoinch +x2 5 2 6 4 rlc2wtwentyinch +x3 6 3 rlctwoinch +.ends rlc2wetcmodel + +* Subcircuit conv2wtwentyinch +* conv2wtwentyinch is a subcircuit that models a 2-conductor transmission line with +* the following parameters: l=9.13e-09, c=3.65e-12, r=0.2, g=0, +* inductive_coeff_of_coupling k=0.482, inter-line capacitance cm=1.8e-12, +* length=20. Derived parameters are: lm=4.40066e-09, ctot=5.45e-12. +* +* It is important to note that the model is a simplified one - the +* following assumptions are made: 1. The self-inductance l, the +* self-capacitance ctot (note: not c), the series resistance r and the +* parallel capacitance g are the same for all lines, and 2. Each line +* is coupled only to the two lines adjacent to it, with the same +* coupling parameters cm and lm. The first assumption imply that edge +* effects have to be neglected. The utility of these assumptions is +* that they make the sL+R and sC+G matrices symmetric, tridiagonal and +* Toeplitz, with useful consequences. +* +* It may be noted that a symmetric two-conductor line will be +* accurately represented by this model. + +* swec model +.model plines cpl ++R=0.2 0 ++ 0.2 ++L=9.13e-9 4.4e-9 ++ 9.13e-9 ++G=0 0 0 ++C=5.45e-12 -1.8e-12 ++ 5.45e-12 ++length=20 + +.model yconvtwoinch txl r=0.2 g=0 l=9.13e-9 c=3.65e-12 length=2.0 +.subckt conv2wetcmodel 1 2 3 4 +y1 1 0 5 0 yconvtwoinch +p2 5 2 0 6 4 0 plines +y2 6 0 3 0 yconvtwoinch +.ends conv2wetcmodel + +.end diff --git a/paranoia_parallel/examples/TransmissionLines/cpl_ibm1.sp b/paranoia_parallel/examples/TransmissionLines/cpl_ibm1.sp new file mode 100644 index 000000000..1077d00ee --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl_ibm1.sp @@ -0,0 +1,82 @@ +6-line coupled multiconductor with ECL drivers +vemm mm 0 DC -0.4 +vepp pp 0 DC 0.4 +vein_left lin 0 PULSE (-0.4 0.4 0N 1N 1N 7N 200N) +vein_right rin 0 PULSE (-0.4 0.4 2N 1N 1N 7N 200N) + +* upper 2 lines +x1 lin 0 1 1outn ECL +x2 mm 0 2 2outn ECL +x7 7 0 7r 7routn ECL +x8 8 0 8r 8routn ECL + +c7r 7r 0 0.1P +c8r 8r 0 0.1P + +* lower 2 lines +x11 pp 0 11 11outn ECL +x12 rin 0 12 12outn ECL +x5 5 0 5l 5loutn ECL +x6 6 0 6l 6loutn ECL + +c5l 5l 0 0.1P +c6l 6l 0 0.1P + +p1 1 2 3 4 5 6 0 7 8 9 10 11 12 0 pline + +.model pline cpl ++C = 0.900000P -0.657947P -0.0767356P -0.0536544P -0.0386514P -0.0523990P ++ 1.388730P -0.607034P -0.0597635P -0.0258851P -0.0273442P ++ 1.39328P -0.625675P -0.0425551P -0.0319791P ++ 1.07821P -0.255048P -0.0715824P ++ 1.06882P -0.692091P ++ 0.900000P ++L = 0.868493E-7 0.781712E-7 0.748428E-7 0.728358E-7 0.700915E-7 0.692178E-7 ++ 0.866074E-7 0.780613E-7 0.748122E-7 0.711591E-7 0.701023E-7 ++ 0.865789E-7 0.781095E-7 0.725431E-7 0.711986E-7 ++ 0.867480E-7 0.744242E-7 0.725826E-7 ++ 0.868022E-7 0.782377E-7 ++ 0.868437E-7 ++R = 0.2 0 0 0 0 0 ++ 0.2 0 0 0 0 ++ 0.2 0 0 0 ++ 0.2 0 0 ++ 0.2 0 ++ 0.2 ++G = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ++ ++length = 2 + +*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +.SUBCKT ECL EIN GND 9 8 +* Input-GND-OUTP-OUTN +RIN 1 2 0.077K +REF 5 6 0.077K +R1 7 N 1.0K +R2 P 3 0.4555K +R3 P 4 0.4555K +R4 8 N 0.615K +R5 9 N 0.615K +RL1 8 GND 0.093K +RL2 9 GND 0.093K +LIN EIN 1 0.01U +LREF 5 GND 0.01U +CIN 1 GND 0.68P +CL1 8 GND 1P +CL2 9 GND 1P +Q1 3 2 7 JCTRAN +Q2 4 6 7 JCTRAN +Q3 P 3 8 JCTRAN +Q4 P 4 9 JCTRAN +VEP P GND DC 1.25 +VEN N GND DC -3 +.ENDS ECL + +.control +TRAN 0.1N 20N +plot V(3) V(5) V(8) V(11) V(12) +.endc +.MODEL JCTRAN NPN BF=150 VAF=20 IS=4E-17 RB=300 RC=100 CJE=30F CJC=30F ++ CJS=40F VJE=0.6 VJC=0.6 VJS=0.6 MJE=0.5 MJC=0.5 ++ MJS=0.5 TF=16P TR=1N +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl_ibm2.sp b/paranoia_parallel/examples/TransmissionLines/cpl_ibm2.sp new file mode 100644 index 000000000..8aeff85d0 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl_ibm2.sp @@ -0,0 +1,22 @@ +Simple coupled transmissionlines +VES IN 0 PULSE (0 1 0N 1.5N 1.5N 4.5N 200N) +R1 IN V1 50 +R2 V2 0 10 +p1 V1 V2 0 V3 V4 0 cpl1 +.model cpl1 cpl ++R = 0.5 0 ++ 0.5 ++L = 247.3e-9 31.65e-9 ++ 247.3e-9 ++C = 31.4e-12 -2.45e-12 ++ 31.4e-12 ++G = 0 0 0 ++length = 0.3048 +*length = 0.6096 +R3 V3 0 100 +R4 V4 0 100 +.control +TRAN 0.1N 20N +plot v(in) v(v1) v(v3) +.endc +.END diff --git a/paranoia_parallel/examples/TransmissionLines/cpl_ibm3.sp b/paranoia_parallel/examples/TransmissionLines/cpl_ibm3.sp new file mode 100644 index 000000000..0a0d5e226 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/cpl_ibm3.sp @@ -0,0 +1,70 @@ +Mixed single and coupled transmission lines +c1g 1 0 1P +l11a 1 1a 6e-9 +r1a7 1a 7 0.025K +rin6 in 6 0.075K +l67 6 7 10e-9 +c7g 7 0 1P +P2 1 7 0 2 8 0 PLINE +.MODEL PLINE CPL ++R = 2.25 0 ++ 2.25 ++L = 0.6e-6 0.05e-6 ++ 0.6e-6 ++G = 0 0 0 ++C = 1.2e-9 -0.11e-9 ++ 1.2e-9 ++length = 0.03 +c2g 2 0 0.5P +r2g 2 0 0.05K +r23 2 3 0.025K +l34 3 4 5e-9 +c4g 4 0 2P +l89 8 9 10e-9 +c9g 9 0 1P +Y1 9 0 10 0 txline +.model txline txl R = 1 L =0.6e-6 G = 0 C= 1.0e-9 length=0.04 +l1011 10 11 10e-9 +c11g 11 0 0.5P +r11g 11 0 0.05K +r1112 11 12 0.025K +l1213 12 13 5e-9 +c13g 13 0 2P +r1116 11 16 0.025K +l1617 16 17 5e-9 +c17g 17 0 2P +P1 4 2 13 17 0 5 14 15 18 0 PLINE1 + +.MODEL PLINE1 CPL ++R = 3.5 0 0 0 ++ 3.5 0 0 ++ 3.5 0 ++ 3.5 ++L = ++1e-6 0.11e-6 0.03e-6 0 ++ 1e-6 0.11e-6 0.03e-6 ++ 1e-6 0.11e-6 ++ 1e-6 ++G = 0 0 0 0 0 0 0 0 0 0 ++C = ++1.5e-9 -0.17e-9 -0.03e-9 0 ++ 1.5e-9 -0.17e-9 -0.03e-9 ++ 1.5e-9 -0.17e-9 ++ 1.5e-9 ++length = 0.02 + +D1 5 0 dmod +D2 14 0 dmod +D3 15 0 dmod +D4 18 0 dmod + +.model dmod d + +VES in 0 PULSE (0 5 0 1.1ns 0.1ns 0.9ns 200ns) + +.control +TRAN 0.2N 10.0N +plot v(3) v(6) v(7) v(8) v(11) v(15) +.endc + +.END diff --git a/paranoia_parallel/examples/TransmissionLines/ltra1_1_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra1_1_line.sp new file mode 100644 index 000000000..2d9c93bb5 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra1_1_line.sp @@ -0,0 +1,19 @@ +MOSdriver -- lossy line LTRA model -- C load +m5 0 168 2 0 mn0p9 w = 18.0u l=0.9u +m6 1 168 2 1 mp1p0 w = 36.0u l=1.0u +CN2 2 0 0.025398e-12 +CN3 3 0 0.007398e-12 +o1 2 0 3 0 lline +vdd 1 0 dc 5.0 +VS 168 0 PULSE (0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS ) +.control +TRAN 0.2N 47N 0 0.1N +plot v(2) v(3) ylimit -0.5 5 +.endc +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.model lline ltra rel=1 r=12.45 g=0 l=8.972e-9 c=0.468e-12 ++len=16 steplimit compactrel=1.0e-3 compactabs=1.0e-14 +.end diff --git a/paranoia_parallel/examples/TransmissionLines/ltra1_4_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra1_4_line.sp new file mode 100644 index 000000000..8d30a7578 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra1_4_line.sp @@ -0,0 +1,144 @@ +MOSdriver -- 6.3inch 4 lossy line LTRA model -- C load + +m1 1 2 6 1 mp1p0 w = 36.0u l=1.0u +m2 1 3 7 1 mp1p0 w = 36.0u l=1.0u +m3 1 4 8 1 mp1p0 w = 36.0u l=1.0u +m4 1 10 5 1 mp1p0 w = 36.0u l=1.0u +m5 1 11 13 1 mp1p0 w = 36.0u l=1.0u +m6 1 12 13 1 mp1p0 w = 36.0u l=1.0u + +m7 0 2 6 0 mn0p9 w = 18.0u l=0.9u +m8 0 3 7 0 mn0p9 w = 18.0u l=0.9u +m9 0 4 8 0 mn0p9 w = 18.0u l=0.9u +m10 0 10 5 0 mn0p9 w = 18.0u l=0.9u +m11 14 11 13 0 mn0p9 w = 18.0u l=0.9u +m12 0 12 14 0 mn0p9 w = 18.0u l=0.9u + + +* +CN5 5 0 0.025398e-12 +CN6 6 0 0.007398e-12 +CN7 7 0 0.007398e-12 +CN8 8 0 0.007398e-12 +CN9 9 0 0.097398e-12 +CN10 10 0 0.007398e-12 +CN11 11 0 0.003398e-12 +CN12 12 0 0.004398e-12 +CN13 13 0 0.008398e-12 +CN14 14 0 0.005398e-12 + +* +* Subcircuit test +* test is a subcircuit that models a 4-conductor transmission line with +* the following parameters: l=9e-09, c=2.9e-13, r=0.3, g=0, +* inductive_coeff_of_coupling k=0.6, inter-line capacitance cm=3e-14, +* length=6.3. Derived parameters are: lm=5.4e-09, ctot=3.5e-13. +* +* It is important to note that the model is a simplified one - the +* following assumptions are made: 1. The self-inductance l, the +* self-capacitance ctot (note: not c), the series resistance r and the +* parallel capacitance g are the same for all lines, and 2. Each line +* is coupled only to the two lines adjacent to it, with the same +* coupling parameters cm and lm. The first assumption implies that edge +* effects have to be neglected. The utility of these assumptions is +* that they make the sL+R and sC+G matrices symmetric, tridiagonal and +* Toeplitz, with useful consequences (see "Efficient Transient +* Simulation of Lossy Interconnect", by J.S. Roychowdhury and +* D.O Pederson, Proc. DAC 91). + +* It may be noted that a symmetric two-conductor line is +* represented accurately by this model. + +* Subckt node convention: +* +* |--------------------------| +* 1-----| |-----n+1 +* 2-----| |-----n+2 +* : | n-wire multiconductor | : +* : | line | : +* n-1-----|(node 0=common gnd plane) |-----2n-1 +* n-----| |-----2n +* |--------------------------| + + +* Lossy line models +.model mod1_test ltra rel=1.2 nocontrol r=0.3 l=2.62616456193e-10 g=0 c=3.98541019688e-13 len=6.3 +.model mod2_test ltra rel=1.2 nocontrol r=0.3 l=5.662616446e-09 g=0 c=3.68541019744e-13 len=6.3 +.model mod3_test ltra rel=1.2 nocontrol r=0.3 l=1.23373835171e-08 g=0 c=3.3145898046e-13 len=6.3 +.model mod4_test ltra rel=1.2 nocontrol r=0.3 l=1.7737383521e-08 g=0 c=3.01458980439e-13 len=6.3 + +* subcircuit m_test - modal transformation network for test +.subckt m_test 1 2 3 4 5 6 7 8 +v1 9 0 0v +v2 10 0 0v +v3 11 0 0v +v4 12 0 0v +f1 0 5 v1 0.371748033738 +f2 0 5 v2 -0.601500954587 +f3 0 5 v3 0.601500954587 +f4 0 5 v4 -0.371748036544 +f5 0 6 v1 0.60150095443 +f6 0 6 v2 -0.371748035044 +f7 0 6 v3 -0.371748030937 +f8 0 6 v4 0.601500957402 +f9 0 7 v1 0.601500954079 +f10 0 7 v2 0.37174803072 +f11 0 7 v3 -0.371748038935 +f12 0 7 v4 -0.601500955482 +f13 0 8 v1 0.371748035626 +f14 0 8 v2 0.601500956073 +f15 0 8 v3 0.601500954504 +f16 0 8 v4 0.371748032386 +e1 13 9 5 0 0.371748033909 +e2 14 13 6 0 0.601500954587 +e3 15 14 7 0 0.601500955639 +e4 1 15 8 0 0.371748036664 +e5 16 10 5 0 -0.60150095443 +e6 17 16 6 0 -0.371748035843 +e7 18 17 7 0 0.371748032386 +e8 2 18 8 0 0.601500957319 +e9 19 11 5 0 0.601500955131 +e10 20 19 6 0 -0.371748032169 +e11 21 20 7 0 -0.371748037896 +e12 3 21 8 0 0.601500954513 +e13 22 12 5 0 -0.371748035746 +e14 23 22 6 0 0.60150095599 +e15 24 23 7 0 -0.601500953534 +e16 4 24 8 0 0.371748029317 +.ends m_test + +* Subckt test +.subckt test 1 2 3 4 5 6 7 8 +x1 1 2 3 4 9 10 11 12 m_test +o1 9 0 13 0 mod1_test +o2 10 0 14 0 mod2_test +o3 11 0 15 0 mod3_test +o4 12 0 16 0 mod4_test +x2 5 6 7 8 13 14 15 16 m_test +.ends test +* +x1 5 6 7 8 9 10 11 12 test +* +* +vdd 1 0 PULSE (0 5 0Ns 0.1Ns 0.1Ns 600Ns 800Ns) +v3 3 0 PULSE (0 5 0Ns 0.1Ns 0.1Ns 600Ns 800Ns) + +.model mn0p9 nmos LEVEL=1 vto=0.8V kp=48u gamma=0.3 phi=0.55 lambda=0.00 ++ PHI=0.55 LAMBDA=0.00 CGSO=0 CGDO=0 CGBO=0 ++ CJ=0 CJSW=0 TOX=18000N NSUB=1E16 LD=0.0U + +.model mp1p0 pmos vto=-0.8V kp=21u gamma=0.45 phi=0.61 lambda=0.00 ++ PHI=0.61 LAMBDA=0.00 CGSO=0 CGDO=0 CGBO=0 ++ CJ=0 CJSW=0 TOX=18000N NSUB=3E16 LD=0.0U + +VS1 2 0 PULSE (0 5 15.9Ns 0.2Ns 0.2Ns 15.8Ns 32Ns) +VS2 4 0 PULSE (0 5 15.9Ns 0.2Ns 0.2Ns 15.8Ns 32Ns) + +.control +TRAN 0.1N 47.9N +plot v(5) v(6) v(7) v(8) v(9) v(10) v(11) v(12) +.endc +* + +.END + diff --git a/paranoia_parallel/examples/TransmissionLines/ltra2_2_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra2_2_line.sp new file mode 100644 index 000000000..2a4ceaa7f --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra2_2_line.sp @@ -0,0 +1,24 @@ +MOSdriver -- 2 lossy lines LTRA model -- C load +m5 0 168 2 0 mn0p9 w = 18.0u l=0.9u +m6 1 168 2 1 mp1p0 w = 36.0u l=1.0u +m1 0 3 4 0 mn0p9 w = 18.0u l=0.9u +m2 1 3 4 1 mp1p0 w = 36.0u l=1.0u +CN2 2 0 0.025398e-12 +CN3 3 0 0.007398e-12 +CN4 4 0 0.025398e-12 +CN5 5 0 0.007398e-12 +o1 2 0 3 0 lline +o2 4 0 5 0 lline +vdd 1 0 dc 5.0 +VS 168 0 PULSE (0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS ) +.control +TRAN 0.2N 47N 0 0.1N +plot v(2) v(3) v(4) v(5) +.endc +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.model lline ltra rel=1 r=12.45 g=0 l=8.972e-9 c=0.468e-12 ++len=16 steplimit compactrel=1.0e-3 compactabs=1.0e-14 +.end diff --git a/paranoia_parallel/examples/TransmissionLines/ltra3_2_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra3_2_line.sp new file mode 100644 index 000000000..1a756520e --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra3_2_line.sp @@ -0,0 +1,98 @@ +MOSdriver -- 24inch 2 lossy lines LTRA model -- C load + +m1 0 268 299 0 mn0p9 w = 18.0u l=1.0u +m2 299 267 748 0 mn0p9 w = 18.0u l=1.0u +m3 0 168 648 0 mn0p9 w = 18.0u l=0.9u +m4 1 268 748 1 mp1p0 w = 36.0u l=1.0u +m5 1 267 748 1 mp1p0 w = 36.0u l=1.0u +m6 1 168 648 1 mp1p0 w = 36.0u l=1.0u + +* +CN648 648 0 0.025398e-12 +CN651 651 0 0.007398e-12 +CN748 748 0 0.025398e-12 +CN751 751 0 0.009398e-12 +CN299 299 0 0.005398e-12 +* +* Subcircuit test +* test is a subcircuit that models a 2-conductor transmission line with +* the following parameters: l=9.13e-09, c=2.75e-13, r=0.2, g=0, +* inductive_coeff_of_coupling k=0.36144, inter-line capacitance cm=9e-14, +* length=24. Derived parameters are: lm=3.29995e-09, ctot=3.65e-13. +* +* It is important to note that the model is a simplified one - the +* following assumptions are made: 1. The self-inductance l, the +* self-capacitance ctot (note: not c), the series resistance r and the +* parallel capacitance g are the same for all lines, and 2. Each line +* is coupled only to the two lines adjacent to it, with the same +* coupling parameters cm and lm. The first assumption implies that edge +* effects have to be neglected. The utility of these assumptions is +* that they make the sL+R and sC+G matrices symmetric, tridiagonal and +* Toeplitz, with useful consequences (see "Efficient Transient +* Simulation of Lossy Interconnect", by J.S. Roychowdhury and +* D.O Pederson, Proc. DAC 91). + +* It may be noted that a symmetric two-conductor line is +* represented accurately by this model. + +* Subckt node convention: +* +* |--------------------------| +* 1-----| |-----n+1 +* 2-----| |-----n+2 +* : | n-wire multiconductor | : +* : | line | : +* n-1-----|(node 0=common gnd plane) |-----2n-1 +* n-----| |-----2n +* |--------------------------| + + +* Lossy line models +.model mod1_test ltra rel=1.2 nocontrol r=0.2 l=5.83005279316e-09 g=0 c=4.55000000187e-13 len=24 +.model mod2_test ltra rel=1.2 nocontrol r=0.2 l=1.24299471863e-08 g=0 c=2.75000000373e-13 len=24 + +* subcircuit m_test - modal transformation network for test +.subckt m_test 1 2 3 4 +v1 5 0 0v +v2 6 0 0v +f1 0 3 v1 0.707106779721 +f2 0 3 v2 -0.707106782652 +f3 0 4 v1 0.707106781919 +f4 0 4 v2 0.707106780454 +e1 7 5 3 0 0.707106780454 +e2 1 7 4 0 0.707106782652 +e3 8 6 3 0 -0.707106781919 +e4 2 8 4 0 0.707106779721 +.ends m_test + +* Subckt test +.subckt test 1 2 3 4 +x1 1 2 5 6 m_test +o1 5 0 7 0 mod1_test +o2 6 0 8 0 mod2_test +x2 3 4 7 8 m_test +.ends test +* +x1 648 748 651 751 test +* +* +vdd 1 0 DC 5.0 +VK 267 0 DC 5.0 +* +VS1 168 0 PULSE (0 5 15.9N 0.2N 0.2N 15.8N 60N) +VS2 268 0 PULSE (0 5 15.9N 0.2N 0.2N 15.8N 60N) +* +.control +TRAN 0.2N 47.9NS +PLOT v(648) v(651) v(751) +.endc +* +.model mn0p9 nmos LEVEL=1 vto=0.8V kp=48u gamma=0.3 phi=0.55 lambda=0.0 ++ PHI=0.55 LAMBDA=0.00 CGSO=0 CGDO=0 CGBO=0 ++ CJ=0 CJSW=0 TOX=18000N NSUB=1E16 LD=0.0U + +.model mp1p0 pmos LEVEL=1 vto=-0.8V kp=21u gamma=0.45 phi=0.61 lambda=0.0 ++ PHI=0.61 LAMBDA=0.00 CGSO=0 CGDO=0 CGBO=0 ++ CJ=0 CJSW=0 TOX=18000N NSUB=3E16 LD=0.0U + +.END diff --git a/paranoia_parallel/examples/TransmissionLines/ltra4_1_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra4_1_line.sp new file mode 100644 index 000000000..8dc8ada61 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra4_1_line.sp @@ -0,0 +1,239 @@ + BJTdriver -- 24inch lossy line LTRA model -- DiodeCircuit + +* This unclassified circuit is from Raytheon, courtesy Gerry Marino. +* It consists of a BJT driver connected by a 24 inch lossy line to a +* passive load consisting mostly of diodes. Each inch +* of the lossy line is modelled by 10 LRC lumps in the Raytheon +* model. + +* The line parameters (derived from the Raytheon input file) are: +* L = 9.13nH per inch +* C = 3.65pF per inch +* R = 0.2 ohms per inch + +* the circuit + +v1 1 0 0v pulse(0 4 1ns 1ns 1ns 20ns 40ns) + +vcc 10 0 5v +*rseries 1 2 5 +x1 1 2 10 bjtdrvr +*t1 2 0 3 0 z0=50.0136 td=4.38119ns rel=10 +o2 2 0 3 0 lline1 +*x2 2 3 oneinch +*x2 100 101 twentyfourinch +*x2 100 101 xtwentyfourinch +vtest1 2 100 0 +vtest2 101 3 0 +x3 3 4 10 dioload +*rl 3 0 5 +*dl 0 3 diod2 + +.model lline1 ltra rel=1 r=0.2 g=0 l=9.13e-9 c=3.65e-12 len=24 steplimit + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +.options acct ++reltol=1e-3 abstol=1e-14 +.control +tran 0.1ns 60ns +plot v(1) v(2) v(3) +.endc + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +q10 268 17 0 qmodpdmine +*q10 268 17 0 qmodpd +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 4 5 +*comment out everything in dioload except d5 and r503, and watch +* the difference in results obtained between a tran 0.1ns 20ns and +* a tran 0.01ns 20ns +c1 28 0 5pF +r503 0 4 5.55 +r4 0 28 120k +r5 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* subckt lump - one RLC lump of the lossy line + +*10 segments per inch +.subckt lump 1 2 +*r1 1 3 0.02 +*c1 3 0 0.365pF +*l1 3 2 0.913nH + +l1 1 3 0.913nH +c1 2 0 0.365pF +r1 3 2 0.02 + +*r1 1 3 0.01 +*c1 3 0 0.1825pF +*l1 3 4 0.4565nH +*r2 4 5 0.01 +*c2 5 0 0.1825pF +*l2 5 2 0.4565nH + +*c1 1 0 0.365pF +*l1 1 2 0.913nH +.ends lump + +.subckt oneinch 1 2 +x1 1 3 lump +x2 3 4 lump +x3 4 5 lump +x4 5 6 lump +x5 6 7 lump +x6 7 8 lump +x7 8 9 lump +x8 9 10 lump +x9 10 11 lump +x10 11 2 lump +.ends oneinch + +.subckt fourinch 1 2 +x1 1 3 oneinch +x2 3 4 oneinch +x3 4 5 oneinch +x4 5 2 oneinch +.ends fourinch + +.subckt fiveinch 1 2 +x1 1 3 oneinch +x2 3 4 oneinch +x3 4 5 oneinch +x4 5 6 oneinch +x5 6 2 oneinch +.ends fiveinch + +.subckt twentyfourinch 1 2 +x1 1 3 fiveinch +x2 3 4 fiveinch +x3 4 5 fiveinch +x4 5 6 fiveinch +x5 6 2 fourinch +.ends twentyfourinch + +*modelling using R and lossless lines +*5 segments per inch +.model llfifth ltra nocontrol noprint rel=10 r=0 g=0 l=9.13e-9 ++c=3.65e-12 len=0.2 steplimit quadinterp +.subckt xlump 1 2 +o1 1 0 3 0 llfifth +r1 2 3 0.04 +.ends xlump + +.subckt xoneinch 1 2 +x1 1 3 xlump +x2 3 4 xlump +x3 4 5 xlump +x4 5 6 xlump +x5 6 2 xlump +*x5 6 7 xlump +*x6 7 8 xlump +*x7 8 9 xlump +*x8 9 10 xlump +*x9 10 11 xlump +*x10 11 2 xlump +.ends xoneinch + +.subckt xfourinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 2 xoneinch +.ends xfourinch + +.subckt xfiveinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 6 xoneinch +x5 6 2 xoneinch +.ends xfiveinch + +.subckt xtwentyfourinch 1 2 +x1 1 3 xfiveinch +x2 3 4 xfiveinch +x3 4 5 xfiveinch +x4 5 6 xfiveinch +x5 6 2 xfourinch +.ends xtwentyfourinch + +.end diff --git a/paranoia_parallel/examples/TransmissionLines/ltra5_1_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra5_1_line.sp new file mode 100644 index 000000000..35459404e --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra5_1_line.sp @@ -0,0 +1,530 @@ + Example 3 for interconnect simulation + +* From neug1, Mosaic aluminum lines. 2um thick, 11um wide. Assuming +* 10um above the ground. +* Material: aluminum; resistivity (sigma) = 2.74uohm-cm = 2.74e-8 ohm-m +* Dielectric: SiO2, dielectric constant (epsilon) =3.7 +* epsilon0 = 8.85e-12 MKS units +* mu0 = 4e-7*PI +* speed of light in free space = 1/sqrt(mu0*epsilon0) = 2.9986e8 MKS units +* +* Line parameter calculations: +* capacitance: parallel plate +* C = epsilon*epsilon0 * A / l +* C = 3.7*8.85e-12 * 11e-6 * 1(metre) / 10e-6 = 36.02e-12 F/m +* + 30% = 46.8e-12 F/m = 0.468pF/cm +* +* C_freespace = 46.8e-12/epsilon = 12.65e-12 F/m +* speed of light in free space v0 = 2.9986e8 = 1/sqrt(L0*C0) +* => L0 = 1/C0*v0^2 +* L0 = 1/(12.65e-12 * 8.9916e16) = 1/113.74e4 = 0.008792e-4 H/m +* = 0.8792 uH/m = 8.792nH/cm +* +* R = rho * l / A = 2.74e-8 * 1 / (11e-6*2e-6) = 1245.45 ohms/m +* = 12.45ohms/cm +* +* transmission line parameters: +* nominal z0 = sqrt(L/C) = 137 ohms +* td = sqrt(LC) = 64.14e-12 secs/cm = 0.064ns/cm +* +* + + +vcc vcc 0 5 + +v1 1 0 0v pulse(0 5 0.1ns 0.1ns 0.1ns 1ns 100ns) +rs 1 2 10 +xdrv 1 2 vcc bjtdrvr +xrcv 3 4 vcc bjtdrvr +xrcv 3 4 vcc dioload +d1 3 vcc diod +d2 0 3 diod +cl 3 0 1pF +o1 2 0 3 0 lline +*x1 2 3 sixteencm +x1 2 3 xonecm + +.model diod d +.model lline ltra rel=1.8 r=12.45 g=0 l=8.792e-9 c=0.468e-12 len=16 steplimit + +.control +* 1cm +* 2cm +* 4cm +* 6cm +* 8cm +* 10cm +* 12cm +*tran 0.001ns 15ns 0 0.1ns +* 24cm +tran 0.001ns 10ns 0 0.1ns +* onecm10 +*tran 0.001ns 10ns 0 0.01ns +plot v(1) v(2) v(3) +.endc + + +* 1. define the subckt r10 to be one tenth of the resistance per cm. +* 2. define the subckt onecm to be one of onecm10 (modelled using +* 10 segments), onecm8, onecm4, onecm2 and lump1. Then use +* the subckts onecm, fourcm, fivecm, tencm, twelvecm, +* twentyfourcm in the circuit. The line is modelled as rlc segments. +* 3. define the subckt xonecm to be one of xonecm10, xonecm8, +* xonecm4, xonecm2 and xlump1. Use the subckts xonecm, +* xfourcm, xfivecm, xtencm, xtwelvecm, xtwentyfourcm in the +* circuit. The line will be modelled as r-lossless lumps. + +.subckt xonecm 1 2 +*x1 1 2 xlump1 +x1 1 2 xonecm4 +.ends xonecm + +.subckt onecm 1 2 +*x1 1 2 lump1 +x1 1 2 onecm4 +.ends onecm + +.subckt r10 1 2 +r1 1 2 1.245 +.ends r10 + +* ECL driver and diode receiver models - from Raytheon + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +q10 268 17 0 qmodpdmine +*q10 268 17 0 qmodpd +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 4 5 +c1 28 0 5pF +r503 0 4 5.55 +r400 0 28 120k +r500 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* End ECL driver and Diode receiver models from Raytheon + +*10 segments per cm +.subckt lump10 1 2 +l1 1 3 0.0.8792nH +c1 2 0 0.0468pF +x1 3 2 r10 +.ends lump10 + +*1 segment per cm +.subckt lump1 1 2 +l1 1 3 8.792nH +c1 2 0 0.468pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 8 r10 +x6 8 9 r10 +x7 9 10 r10 +x8 10 11 r10 +x9 11 12 r10 +x10 12 2 r10 +.ends lump1 + +*2 segments per cm +.subckt lump2 1 2 +l1 1 3 4.396nH +c1 2 0 0.234pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 2 r10 +.ends lump2 + +*4 segments per cm +.subckt lump4 1 2 +l1 1 3 2.198nH +c1 2 0 0.117pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 2 r10 +x4 5 2 r10 +.ends lump4 + +*8 segments per cm +.subckt lump8 1 2 +l1 1 3 1.099nH +c1 2 0 0.0585pF +x1 3 4 r10 +x2 4 2 r10 +x3 4 2 r10 +x4 4 2 r10 +x5 4 2 r10 +.ends lump8 + +.subckt onecm10 1 2 +x1 1 3 lump10 +x2 3 4 lump10 +x3 4 5 lump10 +x4 5 6 lump10 +x5 6 7 lump10 +x6 7 8 lump10 +x7 8 9 lump10 +x8 9 10 lump10 +x9 10 11 lump10 +x10 11 2 lump10 +.ends onecm10 + +.subckt onecm8 1 2 +x1 1 3 lump8 +x2 3 4 lump8 +x3 4 5 lump8 +x4 5 6 lump8 +x5 6 7 lump8 +x6 7 8 lump8 +x7 8 9 lump8 +x8 9 2 lump8 +.ends onecm8 + +.subckt onecm4 1 2 +x1 1 3 lump4 +x2 3 4 lump4 +x3 4 5 lump4 +x4 5 2 lump4 +.ends onecm4 + +.subckt onecm2 1 2 +x1 1 3 lump2 +x2 3 2 lump2 +.ends onecm2 + +.subckt twocm 1 2 +x1 1 3 onecm +x2 3 2 onecm +.ends twocm + +.subckt threecm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 2 onecm +.ends threecm + +.subckt fourcm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 5 onecm +x4 5 2 onecm +.ends fourcm + +.subckt fivecm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 5 onecm +x4 5 6 onecm +x5 6 2 onecm +.ends fivecm + +.subckt sixcm 1 2 +x1 1 3 fivecm +x2 3 2 onecm +.ends sixcm + +.subckt sevencm 1 2 +x1 1 3 sixcm +x2 3 2 onecm +.ends sevencm + +.subckt eightcm 1 2 +x1 1 3 sevencm +x2 3 2 onecm +.ends eightcm + +.subckt ninecm 1 2 +x1 1 3 eightcm +x2 3 2 onecm +.ends ninecm + +.subckt tencm 1 2 +x1 1 3 fivecm +x2 3 2 fivecm +.ends tencm + +.subckt elevencm 1 2 +x1 1 3 tencm +x2 3 2 onecm +.ends elevencm + +.subckt twelvecm 1 2 +x1 1 3 tencm +x2 3 4 onecm +x3 4 2 onecm +.ends twelvecm + +.subckt sixteencm 1 2 +x1 1 3 eightcm +x2 3 2 eightcm +.ends sixteencm + +.subckt twentyfourcm 1 2 +x1 1 3 twelvecm +x2 3 2 twelvecm +.ends twentyfourcm + + +*modelling using R and lossless lines +* 10 segments per cm +.model lless10 ltra nocontrol rel=10 r=0 g=0 l=8.792e-9 ++c=0.468e-12 len=0.1 steplimit quadinterp + +* 8 segments per cm +.model lless8 ltra nocontrol rel=10 r=0 g=0 l=8.792e-9 ++c=0.468e-12 len=0.125 steplimit quadinterp + +* 4 segments per cm +.model lless4 ltra nocontrol rel=10 r=0 g=0 l=8.792e-9 ++c=0.468e-12 len=0.25 steplimit quadinterp + +* 2 segments per cm +.model lless2 ltra nocontrol rel=10 r=0 g=0 l=8.792e-9 ++c=0.468e-12 len=0.5 steplimit quadinterp + +* 1 segment per cm +.model lless1 ltra nocontrol rel=10 r=0 g=0 l=8.792e-9 ++c=0.468e-12 len=1 steplimit quadinterp + +*10 segments per cm +.subckt xlump10 1 2 +o1 1 0 3 0 lless10 +x1 3 2 r10 +.ends xlump10 + +*1 segment per cm +.subckt xlump1 1 2 +o1 1 0 3 0 lless1 +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 8 r10 +x6 8 9 r10 +x7 9 10 r10 +x8 10 11 r10 +x9 11 12 r10 +x10 12 2 r10 +.ends xlump1 + +*2 segments per cm +.subckt xlump2 1 2 +o1 1 0 3 0 lless2 +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 2 r10 +.ends xlump2 + +*4 segments per cm +.subckt xlump4 1 2 +o1 1 0 3 0 lless4 +x1 3 4 r10 +x2 4 5 r10 +x3 5 2 r10 +x4 5 2 r10 +.ends xlump4 + +*8 segments per cm +.subckt xlump8 1 2 +o1 1 0 3 0 lless8 +x1 3 4 r10 +x2 4 2 r10 +x3 4 2 r10 +x4 4 2 r10 +x5 4 2 r10 +.ends xlump8 + +.subckt xonecm10 1 2 +x1 1 3 xlump10 +x2 3 4 xlump10 +x3 4 5 xlump10 +x4 5 6 xlump10 +x5 6 7 xlump10 +x6 7 8 xlump10 +x7 8 9 xlump10 +x8 9 10 xlump10 +x9 10 11 xlump10 +x10 11 2 xlump10 +.ends xonecm10 + +.subckt xonecm8 1 2 +x1 1 3 xlump8 +x2 3 4 xlump8 +x3 4 5 xlump8 +x4 5 6 xlump8 +x5 6 7 xlump8 +x6 7 8 xlump8 +x7 8 9 xlump8 +x8 9 2 xlump8 +.ends xonecm8 + +.subckt xonecm4 1 2 +x1 1 3 xlump4 +x2 3 4 xlump4 +x3 4 5 xlump4 +x4 5 2 xlump4 +.ends xonecm4 + +.subckt xonecm2 1 2 +x1 1 3 xlump2 +x2 3 2 xlump2 +.ends xonecm2 + + +.subckt xtwocm 1 2 +x1 1 3 xonecm +x2 3 2 xonecm +.ends xtwocm + +.subckt xthreecm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 2 xonecm +.ends xthreecm + +.subckt xfourcm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 5 xonecm +x4 5 2 xonecm +.ends xfourcm + +.subckt xfivecm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 5 xonecm +x4 5 6 xonecm +x5 6 2 xonecm +.ends xfivecm + +.subckt xsixcm 1 2 +x1 1 3 xfivecm +x2 3 2 xonecm +.ends xsixcm + +.subckt xsevencm 1 2 +x1 1 3 xsixcm +x2 3 2 xonecm +.ends xsevencm + +.subckt xeightcm 1 2 +x1 1 3 xsevencm +x2 3 2 xonecm +.ends xeightcm + +.subckt xninecm 1 2 +x1 1 3 xeightcm +x2 3 2 xonecm +.ends xninecm + +.subckt xtencm 1 2 +x1 1 3 xfivecm +x2 3 2 xfivecm +.ends xtencm + +.subckt xelevencm 1 2 +x1 1 3 xtencm +x2 3 2 xonecm +.ends xelevencm + +.subckt xtwelvecm 1 2 +x1 1 3 xtencm +x2 3 4 xonecm +x3 4 2 xonecm +.ends xtwelvecm + +.subckt xsixteencm 1 2 +x1 1 3 xeightcm +x2 3 2 xeightcm +.ends xsixteencm + +.subckt xtwentyfourcm 1 2 +x1 1 3 xtwelvecm +x2 3 2 xtwelvecm +.ends xtwentyfourcm + +.end diff --git a/paranoia_parallel/examples/TransmissionLines/ltra6_2_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra6_2_line.sp new file mode 100644 index 000000000..452791297 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra6_2_line.sp @@ -0,0 +1,394 @@ +BJTdriver -- 2in st. lin -- 20in coupled line LTRA -- 2in st line -- DiodeCircuit + +* This unclassified circuit is from Raytheon, courtesy Gerry Marino. +* +* _______ +* -------- 2in _________________ 2in | | +* | BJT |______| |______|Diode| +* | |------| |------| | +* | Drvr | line | 2-wire | line |rcvr.| +* -------- | coupled | |_____| +* | transmission | +* |-/\/\/\/\----| line |-------\/\/\/\/\----| +* | 50ohms | | 50ohms | +* | | | | +* Ground ----------------- Ground +* +* +* Each inch of the lossy line is modelled by 10 LRC lumps in the +* Raytheon model. + +* The line parameters (derived from the Raytheon input file) are: +* L = 9.13nH per inch +* C = 3.65pF per inch +* R = 0.2 ohms per inch +* K = 0.482 [coupling coefficient; K = M/sqrt(L1*L2)] +* Cc = 1.8pF per inch +* +* coupled ltra model generated using the standalone program +* multi_decomp + +* the circuit + +v1 1 0 0v pulse(0 4 1ns 1ns 1ns 20ns 40ns) + +vcc 10 0 5v + +* series termination +*x1 1 oof 10 bjtdrvr +*rseries oof 2 50 + +x1 1 2 10 bjtdrvr +rt1 3 0 50 + + +* convolution model +x2 2 3 4 5 conv2wetcmodel + +* rlc segments model +*x2 2 3 4 5 rlc2wetcmodel + +x3 4 dioload +rt2 5 0 50 + + + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +.options acct reltol=1e-3 abstol=1e-12 +.control +tran 0.1ns 60ns +plot v(2) v(4) v(5) +.endc + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +*q10 268 17 0 qmodpd +q10 268 17 0 qmodpdmine +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 +*comment out everything in dioload except d5 and r503, and watch +* the difference in results obtained between a tran 0.1ns 20ns and +* a tran 0.01ns 20ns +vccint 5 0 5v + +c1 28 0 5pF +r503 0 4 5.55 +r4 0 28 120k +r5 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* subckt rlclump - one RLC lump of the lossy line + +.subckt rlclump 1 2 +*r1 1 3 0.02 +*c1 3 0 0.365pF +*l1 3 2 0.913nH + +l1 1 3 0.913nH +c1 2 0 0.365pF +r1 3 2 0.02 + +*r1 1 3 0.01 +*c1 3 0 0.1825pF +*l1 3 4 0.4565nH +*r2 4 5 0.01 +*c2 5 0 0.1825pF +*l2 5 2 0.4565nH + +*c1 1 0 0.365pF +*l1 1 2 0.913nH +.ends lump + +.subckt rlconeinch 1 2 +x1 1 3 rlclump +x2 3 4 rlclump +x3 4 5 rlclump +x4 5 6 rlclump +x5 6 7 rlclump +x6 7 8 rlclump +x7 8 9 rlclump +x8 9 10 rlclump +x9 10 11 rlclump +x10 11 2 rlclump +.ends rlconeinch + +.subckt rlctwoinch 1 2 +x1 1 3 rlconeinch +x2 3 2 rlconeinch +.ends rlctwoinch + +.subckt rlcfourinch 1 2 +x1 1 3 rlconeinch +x2 3 4 rlconeinch +x3 4 5 rlconeinch +x4 5 2 rlconeinch +.ends rlcfourinch + +.subckt rlcfiveinch 1 2 +x1 1 3 rlconeinch +x2 3 4 rlconeinch +x3 4 5 rlconeinch +x4 5 6 rlconeinch +x5 6 2 rlconeinch +.ends rlcfiveinch + +.subckt rlctwentyrlcfourinch 1 2 +x1 1 3 rlcfiveinch +x2 3 4 rlcfiveinch +x3 4 5 rlcfiveinch +x4 5 6 rlcfiveinch +x5 6 2 rlcfourinch +.ends rlctwentyrlcfourinch + +.subckt rlclumpstub A B C D +x1 A int1 rlcfiveinch +x2 int1 int2 rlcfiveinch +x3 int2 1 rlcfiveinch +x4 1 2 rlcfourinch +x5 1 int3 rlcfiveinch +x6 int3 B rlconeinch +x7 2 C rlcfiveinch +x8 2 D rlcfourinch +.ends rlclumpstub + +.subckt ltrastub A B C D +o1 A 0 1 0 lline15in +o2 1 0 B 0 lline6in +o3 1 0 2 0 lline4in +o4 2 0 C 0 lline5in +o5 2 0 D 0 lline4in +.ends ltrastub + +*modelling using R and lossless lines + +*5 segments per inch +.model llfifth ltra nocontrol rel=10 r=0 g=0 l=9.13e-9 ++c=3.65e-12 len=0.2 steplimit quadinterp + +.subckt xlump 1 2 +o1 1 0 3 0 llfifth +r1 2 3 0.04 +.ends xlump + +.subckt xoneinch 1 2 +x1 1 3 xlump +x2 3 4 xlump +x3 4 5 xlump +x4 5 6 xlump +x5 6 2 xlump +*x5 6 7 xlump +*x6 7 8 xlump +*x7 8 9 xlump +*x8 9 10 xlump +*x9 10 11 xlump +*x10 11 2 xlump +.ends xoneinch + +.subckt xFourinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 2 xoneinch +.ends xfourinch + +.subckt xfiveinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 6 xoneinch +x5 6 2 xoneinch +.ends xfiveinch + +.subckt xlumpstub A B C D +x1 A int1 xfiveinch +x2 int1 int2 xfiveinch +x3 int2 1 xfiveinch +x4 1 2 xfourinch +x5 1 int3 xfiveinch +x6 int3 B xoneinch +x7 2 C xfiveinch +x8 2 D xfourinch +.ends xlumpstub + +* modelling a 2 wire coupled system using RLC lumps +* 10 segments per inch +* +* 1---xxxxx----2 +* 3---xxxxx----4 + +.subckt rlc2wlump 1 3 2 4 +l1 1 5 0.913nH +c1 2 0 0.365pF +r1 5 2 0.02 +l2 3 6 0.913nH +c2 4 0 0.365pF +r2 6 4 0.02 +cmut 2 4 0.18pF +k12 l1 l2 0.482 +.ends rlc2wlump + +.subckt rlc2woneinch 1 2 3 4 +x1 1 2 5 6 rlc2wlump +x2 5 6 7 8 rlc2wlump +x3 7 8 9 10 rlc2wlump +x4 9 10 11 12 rlc2wlump +x5 11 12 13 14 rlc2wlump +x6 13 14 15 16 rlc2wlump +x7 15 16 17 18 rlc2wlump +x8 17 18 19 20 rlc2wlump +x9 19 20 21 22 rlc2wlump +x10 21 22 3 4 rlc2wlump +.ends rlc2woneinch + +.subckt rlc2wfiveinch 1 2 3 4 +x1 1 2 5 6 rlc2woneinch +x2 5 6 7 8 rlc2woneinch +x3 7 8 9 10 rlc2woneinch +x4 9 10 11 12 rlc2woneinch +x5 11 12 3 4 rlc2woneinch +.ends rlc2wfiveinch + +.subckt rlc2wtwentyinch 1 2 3 4 +x1 1 2 5 6 rlc2wfiveinch +x2 5 6 7 8 rlc2wfiveinch +x3 7 8 9 10 rlc2wfiveinch +x4 9 10 3 4 rlc2wfiveinch +.ends rlc2wtwentyinch + +.subckt rlc2wetcmodel 1 2 3 4 +x1 1 5 rlctwoinch +x2 5 2 6 4 rlc2wtwentyinch +x3 6 3 rlctwoinch +.ends rlc2wetcmodel + +* Subcircuit conv2wtwentyinch +* conv2wtwentyinch is a subcircuit that models a 2-conductor transmission line with +* the following parameters: l=9.13e-09, c=3.65e-12, r=0.2, g=0, +* inductive_coeff_of_coupling k=0.482, inter-line capacitance cm=1.8e-12, +* length=20. Derived parameters are: lm=4.40066e-09, ctot=5.45e-12. +* +* It is important to note that the model is a simplified one - the +* following assumptions are made: 1. The self-inductance l, the +* self-capacitance ctot (note: not c), the series resistance r and the +* parallel capacitance g are the same for all lines, and 2. Each line +* is coupled only to the two lines adjacent to it, with the same +* coupling parameters cm and lm. The first assumption imply that edge +* effects have to be neglected. The utility of these assumptions is +* that they make the sL+R and sC+G matrices symmetric, tridiagonal and +* Toeplitz, with useful consequences. +* +* It may be noted that a symmetric two-conductor line will be +* accurately represented by this model. + +* Lossy line models +.model mod1_conv2wtwentyinch ltra rel=1.2 nocontrol r=0.2 l=4.72933999088e-09 g=0 c=7.25000000373e-12 len=20 +.model mod2_conv2wtwentyinch ltra rel=1.2 nocontrol r=0.2 l=1.35306599818e-08 g=0 c=3.65000000746e-12 len=20 + +* subcircuit m_conv2wtwentyinch - modal transformation network for conv2wtwentyinch +.subckt m_conv2wtwentyinch 1 2 3 4 +v1 5 0 0v +v2 6 0 0v +f1 0 3 v1 0.707106779721 +f2 0 3 v2 -0.707106782652 +f3 0 4 v1 0.707106781919 +f4 0 4 v2 0.707106780454 +e1 7 5 3 0 0.707106780454 +e2 1 7 4 0 0.707106782652 +e3 8 6 3 0 -0.707106781919 +e4 2 8 4 0 0.707106779721 +.ends m_conv2wtwentyinch + +* Subckt conv2wtwentyinch +.subckt conv2wtwentyinch 1 2 3 4 +x1 1 2 5 6 m_conv2wtwentyinch +o1 5 0 7 0 mod1_conv2wtwentyinch +o2 6 0 8 0 mod2_conv2wtwentyinch +x2 3 4 7 8 m_conv2wtwentyinch +.ends conv2wtwentyinch + +.model convtwoinch ltra r=0.2 l=9.13e-9 c=3.65e-12 len=2.0 rel=1.2 nocontrol +.subckt conv2wetcmodel 1 2 3 4 +o1 1 0 5 0 convtwoinch +x1 5 2 6 4 conv2wtwentyinch +o2 6 0 3 0 convtwoinch +.ends conv2wetcmodel + +.end diff --git a/paranoia_parallel/examples/TransmissionLines/ltra7_4_line.sp b/paranoia_parallel/examples/TransmissionLines/ltra7_4_line.sp new file mode 100644 index 000000000..7be4615a0 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/ltra7_4_line.sp @@ -0,0 +1,113 @@ +6.3inch 4 lossy lines LTRA model -- R load + +Ra 1 2 1K +Rb 0 3 1K +Rc 0 4 1K +Rd 0 5 1K +Re 6 0 1Meg +Rf 7 0 1Meg +Rg 8 0 1Meg +Rh 9 0 1Meg + + +* +* Subcircuit test +* test is a subcircuit that models a 4-conductor transmission line with +* the following parameters: l=9e-09, c=2.9e-13, r=0.3, g=0, +* inductive_coeff_of_coupling k=0.6, inter-line capacitance cm=3e-14, +* length=6.3. Derived parameters are: lm=5.4e-09, ctot=3.5e-13. +* +* It is important to note that the model is a simplified one - the +* following assumptions are made: 1. The self-inductance l, the +* self-capacitance ctot (note: not c), the series resistance r and the +* parallel capacitance g are the same for all lines, and 2. Each line +* is coupled only to the two lines adjacent to it, with the same +* coupling parameters cm and lm. The first assumption implies that edge +* effects have to be neglected. The utility of these assumptions is +* that they make the sL+R and sC+G matrices symmetric, tridiagonal and +* Toeplitz, with useful consequences (see "Efficient Transient +* Simulation of Lossy Interconnect", by J.S. Roychowdhury and +* D.O Pederson, Proc. DAC 91). + +* It may be noted that a symmetric two-conductor line is +* represented accurately by this model. + +* Subckt node convention: +* +* |--------------------------| +* 1-----| |-----n+1 +* 2-----| |-----n+2 +* : | n-wire multiconductor | : +* : | line | : +* n-1-----|(node 0=common gnd plane) |-----2n-1 +* n-----| |-----2n +* |--------------------------| + + +* Lossy line models +.model mod1_test ltra rel=1.2 nocontrol r=0.3 l=2.62616456193e-10 g=0 c=3.98541019688e-13 len=6.3 +.model mod2_test ltra rel=1.2 nocontrol r=0.3 l=5.662616446e-09 g=0 c=3.68541019744e-13 len=6.3 +.model mod3_test ltra rel=1.2 nocontrol r=0.3 l=1.23373835171e-08 g=0 c=3.3145898046e-13 len=6.3 +.model mod4_test ltra rel=1.2 nocontrol r=0.3 l=1.7737383521e-08 g=0 c=3.01458980439e-13 len=6.3 + +* subcircuit m_test - modal transformation network for test +.subckt m_test 1 2 3 4 5 6 7 8 +v1 9 0 0v +v2 10 0 0v +v3 11 0 0v +v4 12 0 0v +f1 0 5 v1 0.371748033738 +f2 0 5 v2 -0.601500954587 +f3 0 5 v3 0.601500954587 +f4 0 5 v4 -0.371748036544 +f5 0 6 v1 0.60150095443 +f6 0 6 v2 -0.371748035044 +f7 0 6 v3 -0.371748030937 +f8 0 6 v4 0.601500957402 +f9 0 7 v1 0.601500954079 +f10 0 7 v2 0.37174803072 +f11 0 7 v3 -0.371748038935 +f12 0 7 v4 -0.601500955482 +f13 0 8 v1 0.371748035626 +f14 0 8 v2 0.601500956073 +f15 0 8 v3 0.601500954504 +f16 0 8 v4 0.371748032386 +e1 13 9 5 0 0.371748033909 +e2 14 13 6 0 0.601500954587 +e3 15 14 7 0 0.601500955639 +e4 1 15 8 0 0.371748036664 +e5 16 10 5 0 -0.60150095443 +e6 17 16 6 0 -0.371748035843 +e7 18 17 7 0 0.371748032386 +e8 2 18 8 0 0.601500957319 +e9 19 11 5 0 0.601500955131 +e10 20 19 6 0 -0.371748032169 +e11 21 20 7 0 -0.371748037896 +e12 3 21 8 0 0.601500954513 +e13 22 12 5 0 -0.371748035746 +e14 23 22 6 0 0.60150095599 +e15 24 23 7 0 -0.601500953534 +e16 4 24 8 0 0.371748029317 +.ends m_test + +* Subckt test +.subckt test 1 2 3 4 5 6 7 8 +x1 1 2 3 4 9 10 11 12 m_test +o1 9 0 13 0 mod1_test +o2 10 0 14 0 mod2_test +o3 11 0 15 0 mod3_test +o4 12 0 16 0 mod4_test +x2 5 6 7 8 13 14 15 16 m_test +.ends test +* +x1 2 3 4 5 6 7 8 9 test +* +* +VS1 1 0 PWL(15.9NS 0.0 16.1Ns 5.0 31.9Ns 5.0 32.1Ns 0.0) + +.control +TRAN 0.2NS 50NS +plot v(1) v(2) v(6) v(7) v(8) v(9) +.endc +* +.END diff --git a/paranoia_parallel/examples/TransmissionLines/txl1_1_line.sp b/paranoia_parallel/examples/TransmissionLines/txl1_1_line.sp new file mode 100644 index 000000000..fdbec1ae2 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/txl1_1_line.sp @@ -0,0 +1,18 @@ +MOSdriver -- lossy line TXL model -- C load +m5 0 168 2 0 mn0p9 w = 18.0u l=0.9u +m6 1 168 2 1 mp1p0 w = 36.0u l=1.0u +CN2 2 0 0.025398e-12 +CN3 3 0 0.007398e-12 +y1 2 0 3 0 ymod +vdd 1 0 dc 5.0 +VS 168 0 PULSE (0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS ) +.control +TRAN 0.2N 47N 0 0.1N +plot v(2) v(3) ylimit -0.5 5 +.endc +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL ymod txl R=12.45 L=8.972e-9 G=0 C=0.468e-12 length=16 +.end diff --git a/paranoia_parallel/examples/TransmissionLines/txl2_3_line.sp b/paranoia_parallel/examples/TransmissionLines/txl2_3_line.sp new file mode 100644 index 000000000..41b54996f --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/txl2_3_line.sp @@ -0,0 +1,26 @@ +MOSdriver -- 3 lossy lines TXL model -- C load +m5 0 168 2 0 mn0p9 w = 18.0u l=0.9u +m6 1 168 2 1 mp1p0 w = 36.0u l=1.0u +m1 0 3 4 0 mn0p9 w = 18.0u l=0.9u +m2 1 3 4 1 mp1p0 w = 36.0u l=1.0u +CN2 2 0 0.025398e-12 +CN3 3 0 0.007398e-12 +CN4 4 0 0.025398e-12 +CN5 5 0 0.007398e-12 +CN6 6 0 0.007398e-12 +CN7 168 0 0.007398e-12 +y1 2 0 3 0 ymod +y2 4 0 5 0 ymod +y3 6 0 168 0 ymod +vdd 1 0 dc 5.0 +VS 168 0 PULSE (0 5 15.9NS 0.2NS 0.2NS 15.8NS 32NS ) +.control +TRAN 0.2N 47N 0 0.1N +plot v(2) v(3) v(4) v(5) v(6) +.endc +.MODEL mn0p9 NMOS VTO=0.8 KP=48U GAMMA=0.30 PHI=0.55 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL mp1p0 PMOS VTO=-0.8 KP=21U GAMMA=0.45 PHI=0.61 ++LAMBDA=0.00 CGSO=0 CGDO=0 CJ=0 CJSW=0 TOX=18000N LD=0.0U +.MODEL ymod txl R=12.45 L=8.972e-9 G=0 C=0.468e-12 length=16 +.end diff --git a/paranoia_parallel/examples/TransmissionLines/txl3_1_line.sp b/paranoia_parallel/examples/TransmissionLines/txl3_1_line.sp new file mode 100644 index 000000000..466c25919 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/txl3_1_line.sp @@ -0,0 +1,236 @@ + BJTdriver -- 24inch lossy line TXL model -- DiodeCircuit + +* This unclassified circuit is from Raytheon, courtesy Gerry Marino. +* It consists of a BJT driver connected by a 24 inch lossy line to a +* passive load consisting mostly of diodes. Each inch +* of the lossy line is modelled by 10 LRC lumps in the Raytheon +* model. + +* The line parameters (derived from the Raytheon input file) are: +* L = 9.13nH per inch +* C = 3.65pF per inch +* R = 0.2 ohms per inch + +* the circuit +v1 1 0 0v pulse(0 4 1ns 1ns 1ns 20ns 40ns) +vcc 10 0 5v +*rseries 1 2 5 +x1 1 2 10 bjtdrvr +*t1 2 0 3 0 z0=50.0136 td=4.38119ns rel=10 +y2 2 0 3 0 ymod1 +*x2 2 3 oneinch +*x2 100 101 twentyfourinch +*x2 100 101 xtwentyfourinch +vtest1 2 100 0 +vtest2 101 3 0 +x3 3 4 10 dioload +*rl 3 0 5 +*dl 0 3 diod2 + +.model ymod1 txl r=0.2 g=0 l=9.13e-9 c=3.65e-12 length=24 + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +.options acct ++reltol=1e-3 abstol=1e-14 +.control +tran 0.1ns 60ns 0 0.5ns +plot v(1) v(2) v(3) +.endc + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +q10 268 17 0 qmodpdmine +*q10 268 17 0 qmodpd +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 4 5 +*comment out everything in dioload except d5 and r503, and watch +* the difference in results obtained between a tran 0.1ns 20ns and +* a tran 0.01ns 20ns +c1 28 0 5pF +r503 0 4 5.55 +r4 0 28 120k +r5 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* subckt lump - one RLC lump of the lossy line + +*10 segments per inch +.subckt lump 1 2 +*r1 1 3 0.02 +*c1 3 0 0.365pF +*l1 3 2 0.913nH + +l1 1 3 0.913nH +c1 2 0 0.365pF +r1 3 2 0.02 + +*r1 1 3 0.01 +*c1 3 0 0.1825pF +*l1 3 4 0.4565nH +*r2 4 5 0.01 +*c2 5 0 0.1825pF +*l2 5 2 0.4565nH + +*c1 1 0 0.365pF +*l1 1 2 0.913nH +.ends lump + +.subckt oneinch 1 2 +x1 1 3 lump +x2 3 4 lump +x3 4 5 lump +x4 5 6 lump +x5 6 7 lump +x6 7 8 lump +x7 8 9 lump +x8 9 10 lump +x9 10 11 lump +x10 11 2 lump +.ends oneinch + +.subckt fourinch 1 2 +x1 1 3 oneinch +x2 3 4 oneinch +x3 4 5 oneinch +x4 5 2 oneinch +.ends fourinch + +.subckt fiveinch 1 2 +x1 1 3 oneinch +x2 3 4 oneinch +x3 4 5 oneinch +x4 5 6 oneinch +x5 6 2 oneinch +.ends fiveinch + +.subckt twentyfourinch 1 2 +x1 1 3 fiveinch +x2 3 4 fiveinch +x3 4 5 fiveinch +x4 5 6 fiveinch +x5 6 2 fourinch +.ends twentyfourinch + +*modelling using R and lossless lines +*5 segments per inch +.model ymod2 txl r=0 g=0 l=9.13e-9 c=3.65e-12 length=0.2 +.subckt xlump 1 2 +y1 1 0 3 0 ymod2 +r1 2 3 0.04 +.ends xlump + +.subckt xoneinch 1 2 +x1 1 3 xlump +x2 3 4 xlump +x3 4 5 xlump +x4 5 6 xlump +x5 6 2 xlump +*x5 6 7 xlump +*x6 7 8 xlump +*x7 8 9 xlump +*x8 9 10 xlump +*x9 10 11 xlump +*x10 11 2 xlump +.ends xoneinch + +.subckt xfourinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 2 xoneinch +.ends xfourinch + +.subckt xfiveinch 1 2 +x1 1 3 xoneinch +x2 3 4 xoneinch +x3 4 5 xoneinch +x4 5 6 xoneinch +x5 6 2 xoneinch +.ends xfiveinch + +.subckt xtwentyfourinch 1 2 +x1 1 3 xfiveinch +x2 3 4 xfiveinch +x3 4 5 xfiveinch +x4 5 6 xfiveinch +x5 6 2 xfourinch +.ends xtwentyfourinch + +.end diff --git a/paranoia_parallel/examples/TransmissionLines/txl4_1_line.sp b/paranoia_parallel/examples/TransmissionLines/txl4_1_line.sp new file mode 100644 index 000000000..915864795 --- /dev/null +++ b/paranoia_parallel/examples/TransmissionLines/txl4_1_line.sp @@ -0,0 +1,523 @@ + Example 3 for interconnect simulation + +* From neug1, Mosaic aluminum lines. 2um thick, 11um wide. Assuming +* 10um above the ground. +* Material: aluminum; resistivity (sigma) = 2.74uohm-cm = 2.74e-8 ohm-m +* Dielectric: SiO2, dielectric constant (epsilon) =3.7 +* epsilon0 = 8.85e-12 MKS units +* mu0 = 4e-7*PI +* speed of light in free space = 1/sqrt(mu0*epsilon0) = 2.9986e8 MKS units +* +* Line parameter calculations: +* capacitance: parallel plate +* C = epsilon*epsilon0 * A / l +* C = 3.7*8.85e-12 * 11e-6 * 1(metre) / 10e-6 = 36.02e-12 F/m +* + 30% = 46.8e-12 F/m = 0.468pF/cm +* +* C_freespace = 46.8e-12/epsilon = 12.65e-12 F/m +* speed of light in free space v0 = 2.9986e8 = 1/sqrt(L0*C0) +* => L0 = 1/C0*v0^2 +* L0 = 1/(12.65e-12 * 8.9916e16) = 1/113.74e4 = 0.008792e-4 H/m +* = 0.8792 uH/m = 8.792nH/cm +* +* R = rho * l / A = 2.74e-8 * 1 / (11e-6*2e-6) = 1245.45 ohms/m +* = 12.45ohms/cm +* +* transmission line parameters: +* nominal z0 = sqrt(L/C) = 137 ohms +* td = sqrt(LC) = 64.14e-12 secs/cm = 0.064ns/cm +* +* + + +vcc vcc 0 5 +v1 1 0 0v pulse(0 5 0.1ns 0.1ns 0.1ns 1ns 100ns) +rs 1 2 10 +xdrv 1 2 vcc bjtdrvr +xrcv 3 4 vcc bjtdrvr +xrcv 3 4 vcc dioload +d1 3 vcc diod +d2 0 3 diod +cl 3 0 1pF +y1 2 0 3 0 yline +*x1 2 3 sixteencm +x1 2 3 xonecm + +.model diod d +.model yline txl r=12.45 g=0 l=8.792e-9 c=0.468e-12 length=16 + +.control +* 1cm +* 2cm +* 4cm +* 6cm +* 8cm +* 10cm +* 12cm +*tran 0.001ns 15ns 0 0.1ns +* 24cm +tran 0.001ns 10ns 0 0.1ns +* onecm10 +*tran 0.001ns 10ns 0 0.01ns +plot v(1) v(2) v(3) +.endc + + +* 1. define the subckt r10 to be one tenth of the resistance per cm. +* 2. define the subckt onecm to be one of onecm10 (modelled using +* 10 segments), onecm8, onecm4, onecm2 and lump1. Then use +* the subckts onecm, fourcm, fivecm, tencm, twelvecm, +* twentyfourcm in the circuit. The line is modelled as rlc segments. +* 3. define the subckt xonecm to be one of xonecm10, xonecm8, +* xonecm4, xonecm2 and xlump1. Use the subckts xonecm, +* xfourcm, xfivecm, xtencm, xtwelvecm, xtwentyfourcm in the +* circuit. The line will be modelled as r-lossless lumps. + +.subckt xonecm 1 2 +*x1 1 2 xlump1 +x1 1 2 xonecm4 +.ends xonecm + +.subckt onecm 1 2 +*x1 1 2 lump1 +x1 1 2 onecm4 +.ends onecm + +.subckt r10 1 2 +r1 1 2 1.245 +.ends r10 + +* ECL driver and diode receiver models - from Raytheon + +.model qmodn npn(bf=100 rb=100 cje=0.09375pF cjc=0.28125pF is=1e-12 ++pe=0.5 pc=0.5) + +.model qmodpd npn(bf=100 rb=100 cje=0.08187pF cjc=0.2525pF is=1e-12 ++pe=0.5 pc=0.5) +.model qmodpdmine npn(bf=100 rb=100 cje=0.08187pF cjc=0.05pF is=1e-12 ++pe=0.5 pc=0.5) + +.model dmod1 d(n=2.25 is=1.6399e-4 bv=10) + +.model dmod2 d + +.model dmod d(vj=0.3v) + +.model diod1 d(tt=0.75ns vj=0.6 rs=909 bv=10) + +.model diod2 d(tt=0.5ns vj=0.3 rs=100 bv=10) + +* bjt driver - 19=input, 268=output, 20=vcc; wierd node numbers from +* the Raytheon file + +.subckt bjtdrvr 19 268 20 +q1 22 18 13 qmodn +q2 18 16 13 qmodn +qd2 21 9 0 qmodn +q4 14 14 0 qmodn +q3 16 15 14 qmodpd +q5 8 13 17 qmodn +q6 25 12 0 qmodn +q7 6 17 0 qmodpd +qd1 26 10 0 qmodn +q8 7 11 10 qmodn +q10 268 17 0 qmodpdmine +*q10 268 17 0 qmodpd +q9 7 10 268 qmodn + +d1 0 19 dmod1 +d2 18 19 dmod2 +d3 13 19 dmod +dq1 18 22 dmod +dq2 16 18 dmod +d502 9 21 dmod +dq3 15 16 dmod +d10 24 8 dmod +d4 15 6 dmod +dq6 12 25 dmod +dq7 17 6 dmod +dd1 17 10 dmod +d7 11 6 dmod +dd2 17 26 dmod +d9 23 6 dmod +dq8 11 7 dmod +d501 17 268 dmod +dq9 10 7 dmod +d14 20 27 dmod +d8 0 268 dmod + +r1 18 20 6k +r2 22 20 2.2k +r4 0 13 7k +rd1 9 13 2k +rd2 21 13 3k +r3 16 20 10k +r5 15 20 15k +r9 0 17 4k +r6 24 20 750 +r10 12 17 2k +r12 24 11 1.5k +r11 25 17 3k +r15 23 20 10k +r13 0 10 15k +r14 7 27 12 + +.ends bjtdrvr + +* subckt dioload - diode load: input=28, output=4, vcc=5 + +.subckt dioload 28 4 5 +c1 28 0 5pF +r503 0 4 5.55 +r400 0 28 120k +r500 1 5 7.5k + +d5 4 28 diod2 +d1 1 28 diod1 +d4 2 0 diod1 +d3 3 2 diod1 +d2 1 3 diod1 +.ends dioload + +* End ECL driver and Diode receiver models from Raytheon + +*10 segments per cm +.subckt lump10 1 2 +l1 1 3 0.0.8792nH +c1 2 0 0.0468pF +x1 3 2 r10 +.ends lump10 + +*1 segment per cm +.subckt lump1 1 2 +l1 1 3 8.792nH +c1 2 0 0.468pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 8 r10 +x6 8 9 r10 +x7 9 10 r10 +x8 10 11 r10 +x9 11 12 r10 +x10 12 2 r10 +.ends lump1 + +*2 segments per cm +.subckt lump2 1 2 +l1 1 3 4.396nH +c1 2 0 0.234pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 2 r10 +.ends lump2 + +*4 segments per cm +.subckt lump4 1 2 +l1 1 3 2.198nH +c1 2 0 0.117pF +x1 3 4 r10 +x2 4 5 r10 +x3 5 2 r10 +x4 5 2 r10 +.ends lump4 + +*8 segments per cm +.subckt lump8 1 2 +l1 1 3 1.099nH +c1 2 0 0.0585pF +x1 3 4 r10 +x2 4 2 r10 +x3 4 2 r10 +x4 4 2 r10 +x5 4 2 r10 +.ends lump8 + +.subckt onecm10 1 2 +x1 1 3 lump10 +x2 3 4 lump10 +x3 4 5 lump10 +x4 5 6 lump10 +x5 6 7 lump10 +x6 7 8 lump10 +x7 8 9 lump10 +x8 9 10 lump10 +x9 10 11 lump10 +x10 11 2 lump10 +.ends onecm10 + +.subckt onecm8 1 2 +x1 1 3 lump8 +x2 3 4 lump8 +x3 4 5 lump8 +x4 5 6 lump8 +x5 6 7 lump8 +x6 7 8 lump8 +x7 8 9 lump8 +x8 9 2 lump8 +.ends onecm8 + +.subckt onecm4 1 2 +x1 1 3 lump4 +x2 3 4 lump4 +x3 4 5 lump4 +x4 5 2 lump4 +.ends onecm4 + +.subckt onecm2 1 2 +x1 1 3 lump2 +x2 3 2 lump2 +.ends onecm2 + +.subckt twocm 1 2 +x1 1 3 onecm +x2 3 2 onecm +.ends twocm + +.subckt threecm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 2 onecm +.ends threecm + +.subckt fourcm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 5 onecm +x4 5 2 onecm +.ends fourcm + +.subckt fivecm 1 2 +x1 1 3 onecm +x2 3 4 onecm +x3 4 5 onecm +x4 5 6 onecm +x5 6 2 onecm +.ends fivecm + +.subckt sixcm 1 2 +x1 1 3 fivecm +x2 3 2 onecm +.ends sixcm + +.subckt sevencm 1 2 +x1 1 3 sixcm +x2 3 2 onecm +.ends sevencm + +.subckt eightcm 1 2 +x1 1 3 sevencm +x2 3 2 onecm +.ends eightcm + +.subckt ninecm 1 2 +x1 1 3 eightcm +x2 3 2 onecm +.ends ninecm + +.subckt tencm 1 2 +x1 1 3 fivecm +x2 3 2 fivecm +.ends tencm + +.subckt elevencm 1 2 +x1 1 3 tencm +x2 3 2 onecm +.ends elevencm + +.subckt twelvecm 1 2 +x1 1 3 tencm +x2 3 4 onecm +x3 4 2 onecm +.ends twelvecm + +.subckt sixteencm 1 2 +x1 1 3 eightcm +x2 3 2 eightcm +.ends sixteencm + +.subckt twentyfourcm 1 2 +x1 1 3 twelvecm +x2 3 2 twelvecm +.ends twentyfourcm + + +*modelling using R and lossless lines +* 10 segments per cm +.model yless10 txl r=0 g=0 l=8.792e-9 c=0.468e-12 length=0.1 + +* 8 segments per cm +.model yless8 txl r=0 g=0 l=8.792e-9 c=0.468e-12 length=0.125 + +* 4 segments per cm +.model yless4 txl r=0 g=0 l=8.792e-9 c=0.468e-12 length=0.25 + +* 2 segments per cm +.model yless2 txl r=0 g=0 l=8.792e-9 c=0.468e-12 length=0.5 + +* 1 segment per cm +.model yless1 txl r=0 g=0 l=8.792e-9 c=0.468e-12 length=1 + +*10 segments per cm +.subckt xlump10 1 2 +y1 1 0 3 0 yless10 +x1 3 2 r10 +.ends xlump10 + +*1 segment per cm +.subckt xlump1 1 2 +y1 1 0 3 0 yless1 +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 8 r10 +x6 8 9 r10 +x7 9 10 r10 +x8 10 11 r10 +x9 11 12 r10 +x10 12 2 r10 +.ends xlump1 + +*2 segments per cm +.subckt xlump2 1 2 +y1 1 0 3 0 yless2 +x1 3 4 r10 +x2 4 5 r10 +x3 5 6 r10 +x4 6 7 r10 +x5 7 2 r10 +.ends xlump2 + +*4 segments per cm +.subckt xlump4 1 2 +y1 1 0 3 0 yless4 +x1 3 4 r10 +x2 4 5 r10 +x3 5 2 r10 +x4 5 2 r10 +.ends xlump4 + +*8 segments per cm +.subckt xlump8 1 2 +y1 1 0 3 0 yless8 +x1 3 4 r10 +x2 4 2 r10 +x3 4 2 r10 +x4 4 2 r10 +x5 4 2 r10 +.ends xlump8 + +.subckt xonecm10 1 2 +x1 1 3 xlump10 +x2 3 4 xlump10 +x3 4 5 xlump10 +x4 5 6 xlump10 +x5 6 7 xlump10 +x6 7 8 xlump10 +x7 8 9 xlump10 +x8 9 10 xlump10 +x9 10 11 xlump10 +x10 11 2 xlump10 +.ends xonecm10 + +.subckt xonecm8 1 2 +x1 1 3 xlump8 +x2 3 4 xlump8 +x3 4 5 xlump8 +x4 5 6 xlump8 +x5 6 7 xlump8 +x6 7 8 xlump8 +x7 8 9 xlump8 +x8 9 2 xlump8 +.ends xonecm8 + +.subckt xonecm4 1 2 +x1 1 3 xlump4 +x2 3 4 xlump4 +x3 4 5 xlump4 +x4 5 2 xlump4 +.ends xonecm4 + +.subckt xonecm2 1 2 +x1 1 3 xlump2 +x2 3 2 xlump2 +.ends xonecm2 + + +.subckt xtwocm 1 2 +x1 1 3 xonecm +x2 3 2 xonecm +.ends xtwocm + +.subckt xthreecm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 2 xonecm +.ends xthreecm + +.subckt xfourcm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 5 xonecm +x4 5 2 xonecm +.ends xfourcm + +.subckt xfivecm 1 2 +x1 1 3 xonecm +x2 3 4 xonecm +x3 4 5 xonecm +x4 5 6 xonecm +x5 6 2 xonecm +.ends xfivecm + +.subckt xsixcm 1 2 +x1 1 3 xfivecm +x2 3 2 xonecm +.ends xsixcm + +.subckt xsevencm 1 2 +x1 1 3 xsixcm +x2 3 2 xonecm +.ends xsevencm + +.subckt xeightcm 1 2 +x1 1 3 xsevencm +x2 3 2 xonecm +.ends xeightcm + +.subckt xninecm 1 2 +x1 1 3 xeightcm +x2 3 2 xonecm +.ends xninecm + +.subckt xtencm 1 2 +x1 1 3 xfivecm +x2 3 2 xfivecm +.ends xtencm + +.subckt xelevencm 1 2 +x1 1 3 xtencm +x2 3 2 xonecm +.ends xelevencm + +.subckt xtwelvecm 1 2 +x1 1 3 xtencm +x2 3 4 xonecm +x3 4 2 xonecm +.ends xtwelvecm + +.subckt xsixteencm 1 2 +x1 1 3 xeightcm +x2 3 2 xeightcm +.ends xsixteencm + +.subckt xtwentyfourcm 1 2 +x1 1 3 xtwelvecm +x2 3 2 xtwelvecm +.ends xtwentyfourcm + +.end diff --git a/paranoia_parallel/examples/cider/cmosinv.cir b/paranoia_parallel/examples/cider/cmosinv.cir new file mode 100644 index 000000000..18a88d321 --- /dev/null +++ b/paranoia_parallel/examples/cider/cmosinv.cir @@ -0,0 +1,123 @@ +CMOS Inverter + +Vdd 1 0 5.0v +Vss 2 0 0.0v + +X1 1 2 3 4 INV + +Vin 3 0 2.5v + +.SUBCKT INV 1 2 3 4 +* Vdd Vss Vin Vout +M1 14 13 15 16 M_PMOS w=6.0u +M2 24 23 25 26 M_NMOS w=3.0u + +Vgp 3 13 0.0v +Vdp 4 14 0.0v +Vsp 1 15 0.0v +Vbp 1 16 0.0v + +Vgn 3 23 0.0v +Vdn 4 24 0.0v +Vsn 2 25 0.0v +Vbn 2 26 0.0v +.ENDS INV + +.model M_NMOS numos ++ x.mesh l=0.0 n=1 ++ x.mesh l=0.6 n=4 ++ x.mesh l=0.7 n=5 ++ x.mesh l=1.0 n=7 ++ x.mesh l=1.2 n=11 ++ x.mesh l=3.2 n=21 ++ x.mesh l=3.4 n=25 ++ x.mesh l=3.7 n=27 ++ x.mesh l=3.8 n=28 ++ x.mesh l=4.4 n=31 ++ ++ y.mesh l=-.05 n=1 ++ y.mesh l=0.0 n=5 ++ y.mesh l=.05 n=9 ++ y.mesh l=0.3 n=14 ++ y.mesh l=2.0 n=19 ++ ++ region num=1 material=1 y.l=0.0 ++ material num=1 silicon ++ mobility material=1 concmod=sg fieldmod=sg ++ mobility material=1 elec major ++ mobility material=1 elec minor ++ mobility material=1 hole major ++ mobility material=1 hole minor ++ ++ region num=2 material=2 y.h=0.0 x.l=0.7 x.h=3.7 ++ material num=2 oxide ++ ++ elec num=1 x.l=3.8 x.h=4.4 y.l=0.0 y.h=0.0 ++ elec num=2 x.l=0.7 x.h=3.7 iy.l=1 iy.h=1 ++ elec num=3 x.l=0.0 x.h=0.6 y.l=0.0 y.h=0.0 ++ elec num=4 x.l=0.0 x.h=4.4 y.l=2.0 y.h=2.0 ++ ++ doping unif p.type conc=2.5e16 x.l=0.0 x.h=4.4 y.l=0.0 y.h=2.0 ++ doping unif p.type conc=1e16 x.l=0.0 x.h=4.4 y.l=0.0 y.h=0.05 ++ doping unif n.type conc=1e20 x.l=0.0 x.h=1.1 y.l=0.0 y.h=0.2 ++ doping unif n.type conc=1e20 x.l=3.3 x.h=4.4 y.l=0.0 y.h=0.2 ++ ++ models concmob fieldmob bgn srh conctau ++ method ac=direct onec + +.model M_PMOS numos ++ x.mesh l=0.0 n=1 ++ x.mesh l=0.6 n=4 ++ x.mesh l=0.7 n=5 ++ x.mesh l=1.0 n=7 ++ x.mesh l=1.2 n=11 ++ x.mesh l=3.2 n=21 ++ x.mesh l=3.4 n=25 ++ x.mesh l=3.7 n=27 ++ x.mesh l=3.8 n=28 ++ x.mesh l=4.4 n=31 ++ ++ y.mesh l=-.05 n=1 ++ y.mesh l=0.0 n=5 ++ y.mesh l=.05 n=9 ++ y.mesh l=0.3 n=14 ++ y.mesh l=2.0 n=19 ++ ++ region num=1 material=1 y.l=0.0 ++ material num=1 silicon ++ mobility material=1 concmod=sg fieldmod=sg ++ mobility material=1 elec major ++ mobility material=1 elec minor ++ mobility material=1 hole major ++ mobility material=1 hole minor ++ ++ region num=2 material=2 y.h=0.0 x.l=0.7 x.h=3.7 ++ material num=2 oxide ++ ++ elec num=1 x.l=3.8 x.h=4.4 y.l=0.0 y.h=0.0 ++ elec num=2 x.l=0.7 x.h=3.7 iy.l=1 iy.h=1 ++ elec num=3 x.l=0.0 x.h=0.6 y.l=0.0 y.h=0.0 ++ elec num=4 x.l=0.0 x.h=4.4 y.l=2.0 y.h=2.0 ++ ++ doping unif n.type conc=1e16 x.l=0.0 x.h=4.4 y.l=0.0 y.h=2.0 ++ doping unif p.type conc=3e16 x.l=0.0 x.h=4.4 y.l=0.0 y.h=0.05 ++ doping unif p.type conc=1e20 x.l=0.0 x.h=1.1 y.l=0.0 y.h=0.2 ++ doping unif p.type conc=1e20 x.l=3.3 x.h=4.4 y.l=0.0 y.h=0.2 ++ ++ models concmob fieldmob bgn srh conctau ++ method ac=direct onec + +*.tran 0.1ns 1ns +*.op +.dc Vin 0.0v 3.001v 0.05v +.print dc v(4) +*.plot dc v(4) +.options acct bypass=1 method=gear nopage + +.control +run +print v(4) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/cider/diode.cir b/paranoia_parallel/examples/cider/diode.cir new file mode 100644 index 000000000..10262cea6 --- /dev/null +++ b/paranoia_parallel/examples/cider/diode.cir @@ -0,0 +1,40 @@ +One-Dimensional Diode Simulation + +* Several simulations are performed by this file. +* They are: +* 1. An operating point at 0.7v forward bias. +* 2. An ac analysis at 0.7v forward bias. +* 3. The forward and reverse bias characteristics from -3v to 2v. + +Vpp 1 0 0.7v (PWL 0ns 3.0v 0.01ns -6.0v) (AC 1v) +Vnn 2 0 0v +D1 1 2 M_PN AREA=100 + +.model M_PN numd level=1 ++ *************************************** ++ *** One-Dimensional Numerical Diode *** ++ *************************************** ++ options defa=1p ++ x.mesh loc=0.0 n=1 ++ x.mesh loc=1.3 n=201 ++ domain num=1 material=1 ++ material num=1 silicon ++ mobility mat=1 concmod=ct fieldmod=ct ++ doping gauss p.type conc=1e20 x.l=0.0 x.h=0.0 char.l=0.100 ++ doping unif n.type conc=1e16 x.l=0.0 x.h=1.3 ++ doping gauss n.type conc=5e19 x.l=1.3 x.h=1.3 char.l=0.100 ++ models bgn aval srh auger conctau concmob fieldmob ++ method ac=direct + +.option acct bypass=0 abstol=1e-18 itl2=100 +*.op +.ac dec 10 100kHz 10gHz +*.dc Vpp -3.0v 2.0001v 50mv +*.print i(Vpp) + +.control +run +quit +.endc + +.END diff --git a/paranoia_parallel/examples/cider/pullup.cir b/paranoia_parallel/examples/cider/pullup.cir new file mode 100644 index 000000000..a28bbe9ba --- /dev/null +++ b/paranoia_parallel/examples/cider/pullup.cir @@ -0,0 +1,74 @@ +BICMOS INVERTER PULLUP CIRCUIT + +VDD 1 0 5.0V +VSS 2 0 0.0V + +VIN 3 0 0.75V + +VC 1 11 0.0V +VB 5 15 0.0V + +Q1 11 15 4 M_NPN AREA=4 +M1 5 3 1 1 M_PMOS W=20U L=2U AD=30P AS=30P PD=21U PS=21U + +CL 4 0 5.0PF + +.IC V(4)=0.75V V(5)=0.0V + +.MODEL M_PMOS PMOS VTO=-0.8 UO=250 TOX=25N NSUB=5E16 ++ UCRIT=10K UEXP=.15 VMAX=50K NEFF=2 XJ=.02U ++ LD=.15U CGSO=.1N CGDO=.1N CJ=.12M MJ=0.5 ++ CJSW=0.3N MJSW=0.5 LEVEL=2 + +.MODEL M_NPN NBJT LEVEL=2 ++ TITLE TWO-DIMENSIONAL NUMERICAL POLYSILICON EMITTER BIPOLAR TRANSISTOR ++ ; SINCE ONLY HALF THE DEVICE IS SIMULATED, DOUBLE THE UNIT WIDTH TO GET ++ ; 1.0 UM EMITTER. ++ OPTIONS DEFW=2.0U ++ OUTPUT STATISTICS ++ ++ X.MESH W=2.0 H.E=0.02 H.M=0.5 R=2.0 ++ X.MESH W=0.5 H.S=0.02 H.M=0.2 R=2.0 ++ ++ Y.MESH L=-0.2 N=1 ++ Y.MESH L= 0.0 N=5 ++ Y.MESH W=0.10 H.E=0.004 H.M=0.05 R=2.5 ++ Y.MESH W=0.15 H.S=0.004 H.M=0.02 R=2.5 ++ Y.MESH W=1.05 H.S=0.02 H.M=0.1 R=2.5 ++ ++ DOMAIN NUM=1 MATERIAL=1 X.L=2.0 Y.H=0.0 ++ DOMAIN NUM=2 MATERIAL=2 X.H=2.0 Y.H=0.0 ++ DOMAIN NUM=3 MATERIAL=3 Y.L=0.0 ++ MATERIAL NUM=1 POLYSILICON ++ MATERIAL NUM=2 OXIDE ++ MATERIAL NUM=3 SILICON ++ ++ ELEC NUM=1 X.L=0.0 X.H=0.0 Y.L=1.1 Y.H=1.3 ++ ELEC NUM=2 X.L=0.0 X.H=0.5 Y.L=0.0 Y.H=0.0 ++ ELEC NUM=3 X.L=2.0 X.H=3.0 Y.L=-0.2 Y.H=-0.2 ++ ++ DOPING GAUSS N.TYPE CONC=3E20 X.L=2.0 X.H=3.0 Y.L=-0.2 Y.H=0.0 ++ + CHAR.L=0.047 LAT.ROTATE ++ DOPING GAUSS P.TYPE CONC=5E18 X.L=0.0 X.H=5.0 Y.L=-0.2 Y.H=0.0 ++ + CHAR.L=0.100 LAT.ROTATE ++ DOPING GAUSS P.TYPE CONC=1E20 X.L=0.0 X.H=0.5 Y.L=-0.2 Y.H=0.0 ++ + CHAR.L=0.100 LAT.ROTATE RATIO=0.7 ++ DOPING UNIF N.TYPE CONC=1E16 X.L=0.0 X.H=5.0 Y.L=0.0 Y.H=1.3 ++ DOPING GAUSS N.TYPE CONC=5E19 X.L=0.0 X.H=5.0 Y.L=1.3 Y.H=1.3 ++ + CHAR.L=0.100 LAT.ROTATE ++ ++ METHOD AC=DIRECT ITLIM=10 ++ MODELS BGN SRH AUGER CONCTAU CONCMOB FIELDMOB + +.TRAN 0.5NS 1.5NS +.PRINT TRAN V(3) V(4) + +.OPTION ACCT BYPASS=1 + +.control +run +print V(3) V(4) +quit +.endc + +.END diff --git a/paranoia_parallel/examples/cider/recovery.cir b/paranoia_parallel/examples/cider/recovery.cir new file mode 100644 index 000000000..ac1bec5e9 --- /dev/null +++ b/paranoia_parallel/examples/cider/recovery.cir @@ -0,0 +1,46 @@ +DIODE REVERSE RECOVERY + +VPP 1 0 0.0V (PULSE 1.0V -1.0V 1NS 1PS 1PS 20NS 40NS) +VNN 2 0 0.0V +RS 1 3 1.0 +LS 3 4 0.5UH +DT 4 2 M_PIN AREA=1 + +.MODEL M_PIN NUMD LEVEL=2 ++ OPTIONS DEFW=100U ++ X.MESH N=1 L=0.0 ++ X.MESH N=2 L=0.2 ++ X.MESH N=4 L=0.4 ++ X.MESH N=8 L=0.6 ++ X.MESH N=13 L=1.0 ++ ++ Y.MESH N=1 L=0.0 ++ Y.MESH N=9 L=4.0 ++ Y.MESH N=24 L=10.0 ++ Y.MESH N=29 L=15.0 ++ Y.MESH N=34 L=20.0 ++ ++ DOMAIN NUM=1 MATERIAL=1 ++ MATERIAL NUM=1 SILICON TN=20NS TP=20NS ++ ++ ELECTRODE NUM=1 X.L=0.6 X.H=1.0 Y.L=0.0 Y.H=0.0 ++ ELECTRODE NUM=2 X.L=-0.1 X.H=1.0 Y.L=20.0 Y.H=20.0 ++ ++ DOPING GAUSS P.TYPE CONC=1.0E19 CHAR.LEN=1.076 X.L=0.75 X.H=1.1 Y.H=0.0 ++ + LAT.ROTATE RATIO=0.1 ++ DOPING UNIF N.TYPE CONC=1.0E14 ++ DOPING GAUSS N.TYPE CONC=1.0E19 CHAR.LEN=1.614 X.L=-0.1 X.H=1.1 Y.L=20.0 ++ ++ MODELS BGN SRH AUGER CONCTAU CONCMOB FIELDMOB + +.OPTION ACCT BYPASS=1 +.TRAN 0.1NS 1NS +.PRINT TRAN V(3) I(VNN) + +.control +run +print V(3) I(VNN) +quit +.endc + +.END diff --git a/paranoia_parallel/examples/cider/rtlinv.cir b/paranoia_parallel/examples/cider/rtlinv.cir new file mode 100644 index 000000000..036d9f010 --- /dev/null +++ b/paranoia_parallel/examples/cider/rtlinv.cir @@ -0,0 +1,34 @@ +RTL inverter + +vin 1 0 dc 1 pwl 0 4 1ns 0 +vcc 12 0 dc 5.0 +rc1 12 3 2.5k +rb1 1 2 8k +q1 3 2 0 qmod area = 100p + +.option acct bypass=1 +.tran 0.5n 5n +.print tran v(2) v(3) + +.model qmod nbjt level=1 ++ x.mesh node=1 loc=0.0 ++ x.mesh node=61 loc=3.0 ++ region num=1 material=1 ++ material num=1 silicon nbgnn=1e17 nbgnp=1e17 ++ mobility material=1 concmod=sg fieldmod=sg ++ mobility material=1 elec major ++ mobility material=1 elec minor ++ mobility material=1 hole major ++ mobility material=1 hole minor ++ doping unif n.type conc=1e17 x.l=0.0 x.h=1.0 ++ doping unif p.type conc=1e16 x.l=0.0 x.h=1.5 ++ doping unif n.type conc=1e15 x.l=0.0 x.h=3.0 ++ models bgnw srh conctau auger concmob fieldmob ++ options base.length=1.0 base.depth=1.25 + +.control +run +quit +.endc + +.end diff --git a/paranoia_parallel/examples/control_structs/foreach_bjt_ft.sp b/paranoia_parallel/examples/control_structs/foreach_bjt_ft.sp new file mode 100644 index 000000000..71be79fc8 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/foreach_bjt_ft.sp @@ -0,0 +1,52 @@ +BJT ft Test + +vce 1 0 dc 3.0 +vgain 1 c dc 0.0 +f 0 2 vgain -1000 +l 2 b 1g +c 2 0 1g +ib 0 b dc 0.0 ac 1.0 +ic 0 c 0.01 +q1 c b 0 bfs17 + +.control +foreach myic 0.5e-3 1e-3 5e-3 10e-3 50e-3 100e-3 + alter ic = $myic + ac dec 10 10k 5g +end +*foreach mytf 50p 100p 150p 200p 250p 300p +* altermod q.x1.q1 tf = $mytf +* ac dec 10 10k 5g +*end +plot abs(ac1.vgain#branch) abs(ac2.vgain#branch) abs(ac3.vgain#branch) abs(ac4.vgain#branch) abs(ac5.vgain#branch) abs(ac6.vgain#branch) ylimit 0.1 100 loglog +quit +.endc + +***************************************************************** +* SPICE2G6 MODEL OF THE NPN BIPOLAR TRANSISTOR BFS17 (SOT-23) * +* REV: 98.1 DANALYSE GMBH BERLIN (27.07.1998) * +***************************************************************** +.SUBCKT BFS17C 1 2 3 +Q1 6 5 7 BFS17 1.000 +LC 1 6 0.350N +L1 2 4 0.400N +LB 4 5 0.500N +L2 3 8 0.400N +LE 8 7 0.600N +CGBC 4 6 70.00F +CGBE 4 8 0.150P +CGCE 6 8 15.00F +.ENDS +.MODEL BFS17 NPN (level=1 IS=0.480F NF=1.008 BF=99.655 VAF=90.000 IKF=0.190 ++ ISE=7.490F NE=1.762 NR=1.010 BR=38.400 VAR=7.000 IKR=93.200M ++ ISC=0.200F NC=1.042 ++ RB=1.500 IRB=0.100M RBM=1.200 ++ RE=0.500 RC=2.680 ++ CJE=1.325P VJE=0.700 MJE=0.220 FC=0.890 ++ CJC=1.050P VJC=0.610 MJC=0.240 XCJC=0.400 ++ TF=56.940P TR=1.000N PTF=21.000 ++ XTF=68.398 VTF=0.600 ITF=0.700 ++ XTB=1.600 EG=1.110 XTI=3.000 ++ KF=1.000F AF=1.000) + +.end diff --git a/paranoia_parallel/examples/control_structs/if-batchmode.cir b/paranoia_parallel/examples/control_structs/if-batchmode.cir new file mode 100644 index 000000000..b26b345c4 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/if-batchmode.cir @@ -0,0 +1,31 @@ +use $batchmode + +* use $batchmode variable to steer control flow +* +* start either with +* ngspice -b -r rawfile.raw if-batchmode.cir +* or with +* ngspice if-batchmode.cir + +v0 1 0 dc 1 +R1 1 2 1k +C1 2 0 1u + +.tran 100u 10m uic +.print tran all + +.control + +if $?batchmode + echo "Info: batchmode has been set by command line option -b" + echo +else + echo "Info: batchmode has not been set" + echo + unset ngdebug + tran 100u 10m uic + plot v(2) +end + +.endc +.end diff --git a/paranoia_parallel/examples/control_structs/if-test-1.cir b/paranoia_parallel/examples/control_structs/if-test-1.cir new file mode 100644 index 000000000..41927bdf5 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/if-test-1.cir @@ -0,0 +1,78 @@ +test if conditions + +* test behaviour in special circumstances + +v1 1 0 dc 42 +R1 1 0 1k + + +.control + +echo "expect Error: missing if condition" +* does not enter cp_istrue() +if + echo "FAIL: you should not see this" +else + echo "nonetheless evaluated as FALSE" +end +echo + +set testvar_b="" +echo "expect |false|" +* in cp_istrue(): wl!=NULL names==NULL v==NULL +if $testvar_b + echo "FAIL: you should not see this" +else + echo "|false|" +end +echo + +set testvar_c +echo "expect testvar_c=|TRUE|" +* in cp_istrue(): wl!=NULL names!=NULL v!=NULL +if $testvar_c + echo "testvar_c=|$testvar_c|" +end +echo + +echo "expect Error: testvar_d: no such variable." +* in cp_istrue(): wl!=NULL then wl==NULL names==NULL v==NULL +if $testvar_d + echo "FAIL: you should not see this" +else + echo "nonetheless evaluated as FALSE" +end +echo + +echo "expect Error(parse.c--checkvalid): testvar_e: no such vector." +* in cp_istrue(): wl!=NULL names==NULL v==NULL +if testvar_e = 3.3 + echo "FAIL: you should not see this" +else + echo "nonetheless evaluated as FALSE" +end +echo + +let testvar_f = 3.5 + +echo "expect |false|" +if testvar_f = 3.3 + echo "FAIL: you should not see this" +else + echo "|false|" +end +echo + +echo "expect |true|" +if testvar_f = 3.5 + echo "|true|" +else + echo "FAIL: you should not see this" +end +echo + +op +print v(1) + +.endc +.end diff --git a/paranoia_parallel/examples/control_structs/new-check-3.sp b/paranoia_parallel/examples/control_structs/new-check-3.sp new file mode 100644 index 000000000..c85c19f61 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/new-check-3.sp @@ -0,0 +1,96 @@ +new ft_getpnames parser check 3, try ternary + +* (compile (concat "tmp-1/ng-spice-rework/src/ngspice " buffer-file-name) t) + +VIN 1 0 DC=0 + +.control + +dc VIN 0 10 5 + +* trying the ternary + +let checks = 0 + +let const0 = 0 +let const5 = 5 +let const6 = 6 + + +let tmp = const0 ? const5 : const6 +if tmp eq const6 + let checks = checks + 1 +else + echo "ERROR:" +end + +let tmp = const6 ? const5 : const6 +if tmp eq const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +define foo(a,b,d) a ? b : d + +if foo(const0,const5,const6) eq const6 + let checks = checks + 1 +else + echo "ERROR:" +end + +if foo(const6,const5,const6) eq const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +let vec7 = 7*unitvec(7) +let vec8 = 8*unitvec(8) + +if length(const5 ? vec7 : vec8) eq 7 + let checks = checks + 1 +else + echo "ERROR:" +end + +if length(const0 ? vec7 : vec8) eq 8 + let checks = checks + 1 +else + echo "ERROR:" +end + +* FIXME, "1 ? 1:1" (without spaces around of ':') doesnt work, +* "1:1" is a lexem, WHY !!! +* ist that an old artifact, (ancient hierarchical name separator ':') +* +*print length(1?1:1) + +*if (1 ? 1:1) eq 1 +if (1 ? 1 : 1) eq 1 + let checks = checks + 1 +else + echo "ERROR:" +end + +print @vin[dc] + +* '"' survives, and will be processed in the ft_getpnames() lexer, that is PPlex() +* where the string will be unqoted +* thats used vor weired variable names, for example "zero(1)" +let foo = "vec8" +if foo eq vec8 + let checks = checks + 1 +else + echo "ERROR:" +end + +if checks eq 8 + echo "INFO: ok" +else + echo "ERROR:" +end + +.endc + +.end diff --git a/paranoia_parallel/examples/control_structs/new-check-4.sp b/paranoia_parallel/examples/control_structs/new-check-4.sp new file mode 100644 index 000000000..7c241f23e --- /dev/null +++ b/paranoia_parallel/examples/control_structs/new-check-4.sp @@ -0,0 +1,111 @@ +demonstrate < etc in ft_getpnames + +* (compile (concat "tmp-1/ng-spice-rework/src/ngspice " buffer-file-name) t) + +VIN 1 0 DC=0 + +.control + +dc VIN 0 10 5 + +let checks = 0 + +let const0 = 0 +let const5 = 5 +let const6 = 6 + +* check some relational operators, which are in danger to mixed up +* with csh semantic, that is IO redirection + +if const5 < const6 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const6 > const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const5 >= const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const5 <= const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const5 = const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +* check some wired non-equality operators +* note: there are some awkward tranformations ahead of the ft_getpnames lexer +* transforming "><" into "> <" +* and "<>" into "< >" +* note: "!=" would have been in serious danger to be fooled up within +* csh history mechanism + +if const6 <> const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const6 >< const5 + let checks = checks + 1 +else + echo "ERROR:" +end + + +* check some boolean operators, which are in danger to be mixed up +* with csh semantic, `&' background '|' pipe '~' homedirectory + +if const5 & const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if const0 | const5 + let checks = checks + 1 +else + echo "ERROR:" +end + +if ~ const0 + let checks = checks + 1 +else + echo "ERROR:" +end + +* note: +* "!=" would be in danger, '!' triggers the csh history mechanism +*if const5 != const6 +* echo "just trying" +*end + + +* Note: csh semantics swallows the '>' and '<' operators +* on most of the com lines +* witnessed by +let tmp = const5 > unwanted_output_file_1 +define foo(a,b) a > unwanted_output_file_2 +print const0 > unwanted_output_file_3 + +if checks eq 10 + echo "INFO: ok" +end + +.endc + +.end diff --git a/paranoia_parallel/examples/control_structs/repeat3.sp b/paranoia_parallel/examples/control_structs/repeat3.sp new file mode 100644 index 000000000..5769a35ce --- /dev/null +++ b/paranoia_parallel/examples/control_structs/repeat3.sp @@ -0,0 +1,150 @@ +Test sequences for ngspice control structures +*vectors are used (except foreach) +*start in interactive mode + +.control + +* test for while, repeat, if, break + let loop = 0 + while loop < 4 + let index = 0 + repeat + let index = index + 1 + if index > 4 + break + end + end + echo index "$&index" loop "$&loop" + let loop = loop + 1 + end + + +* test sequence for while, dowhile + let loop = 0 + echo + echo enter loop with "$&loop" + dowhile loop < 3 + echo within dowhile loop "$&loop" + let loop = loop + 1 + end + echo after dowhile loop "$&loop" + echo + let loop = 0 + while loop < 3 + echo within while loop "$&loop" + let loop = loop + 1 + end + echo after while loop "$&loop" + let loop = 3 + echo + echo enter loop with "$&loop" + dowhile loop < 3 + echo within dowhile loop "$&loop" ; output expected + let loop = loop + 1 + end + echo after dowhile loop "$&loop" + echo + let loop = 3 + while loop < 3 + echo within while loop "$&loop" ; no output expected + let loop = loop + 1 + end + echo after while loop "$&loop" + + +* test sequence for foreach + echo + foreach outvar 0 0.5 1 1.5 + echo parameters: $outvar ; foreach parameters are variables, not vectors! + end + +* test for if ... else ... end + echo + let loop = 0 + let index = 1 + dowhile loop < 10 + let index = index * 2 + if index < 128 + echo "$&index" lt 128 + else + echo "$&index" ge 128 + end + let loop = loop + 1 + end + +* simple test for label, goto + echo + let loop = 0 + label starthere + echo start "$&loop" + let loop = loop + 1 + if loop < 3 + goto starthere + end + echo end "$&loop" + +* test for label, nested goto + echo + let loop = 0 + label starthere1 + echo start nested "$&loop" + let loop = loop + 1 + if loop < 3 + if loop < 3 + goto starthere1 + end + end + echo end "$&loop" + +* test for label, goto + echo + let index = 0 + label starthere2 + let loop = 0 + echo We are at start with index "$&index" and loop "$&loop" + if index < 6 + label inhere + let index = index + 1 + if loop < 3 + let loop = loop + 1 + if index > 1 + echo jump2 + goto starthere2 + end + end + echo jump + goto inhere + end + echo We are at end with index "$&index" and loop "$&loop" + +* test goto in while loop + echo + let loop = 0 + if 1 ; outer loop to allow nested forward label 'endlabel' + while loop < 10 + if loop > 5 + echo jump + goto endlabel + end + let loop = loop + 1 + end + echo before ; never reached + label endlabel + echo after "$&loop" + end + +*test for using variables +* simple test for label, goto + echo + set loop = 0 + label starthe + echo start $loop + let loop = $loop + 1 ; expression needs vector at lhs + set loop = "$&loop" ; convert vector contents to variable + if $loop < 3 + goto starthe + end + echo end $loop + + quit +.endc diff --git a/paranoia_parallel/examples/control_structs/repeat_no_one_goto.sp b/paranoia_parallel/examples/control_structs/repeat_no_one_goto.sp new file mode 100644 index 000000000..2fea529ee --- /dev/null +++ b/paranoia_parallel/examples/control_structs/repeat_no_one_goto.sp @@ -0,0 +1,11 @@ +Test sequences for ngspice control structure got + +.control + + goto starthere + echo this not +* label starthere + echo done + + quit +.endc diff --git a/paranoia_parallel/examples/control_structs/repeat_one_goto.sp b/paranoia_parallel/examples/control_structs/repeat_one_goto.sp new file mode 100644 index 000000000..59de1eb52 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/repeat_one_goto.sp @@ -0,0 +1,19 @@ +Test sequences for ngspice control structures +*vectors are used (except foreach) +*start in interactive mode + +.control + +* simple test for label, goto + echo + let loop = 0 + label starthere + echo start "$&loop" + let loop = loop + 1 + if loop < 3 + goto starthere + end + echo end "$&loop" + + quit +.endc diff --git a/paranoia_parallel/examples/control_structs/repeat_s.sp b/paranoia_parallel/examples/control_structs/repeat_s.sp new file mode 100644 index 000000000..3cba92866 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/repeat_s.sp @@ -0,0 +1,46 @@ +Test sequences for ngspice control structures +*vectors are used (except foreach) +*start in interactive mode + +.control + +* test for label, goto + echo + let index = 0 + label starthere2 + let loop = 0 + echo We are at start with index "$&index" and loop "$&loop" + if index < 6 + label inhere + let index = index + 1 + if loop < 3 + let loop = loop + 1 + if index > 1 + echo jump2 + goto starthere2 + end + end + echo jump + goto inhere + end + echo We are at end with index "$&index" and loop "$&loop" + +* test goto in while loop + echo + let loop = 0 + if 1 ; outer loop to allow nested forward label 'endlabel' + while loop < 10 + if loop > 5 + echo jump + goto endlabel + end + let loop = loop + 1 + end + echo before ; never reached + label endlabel + echo after "$&loop" + end + + + quit +.endc diff --git a/paranoia_parallel/examples/control_structs/s-param.cir b/paranoia_parallel/examples/control_structs/s-param.cir new file mode 100644 index 000000000..c0f0f583f --- /dev/null +++ b/paranoia_parallel/examples/control_structs/s-param.cir @@ -0,0 +1,121 @@ +Test for Scattering Parameters +** Two ports +** Examples: Bipolar, Tschebyschef, RC + +.param Rbase=50 Vbias_in=0 Vbias_out=0 + +*** The two-port circuit: +** port 1: in 0 +** port 2: out 0 +** Bias on both ports through resistor Rbase (to obtain operating point) + +** Example RF Bipolar mrf5711 +** VCE 1 V, IE = 5mA +** QXXXXXXX nc nb ne +** model obtained from +** http://141.69.160.32/~krausg/Spice_Model_CD/Vendor%20List/Motorola/Spice/RFBJT/ +*.include MRF5711.lib +*XMRF5711 out in e MRF5711 +*Ie e 0 5m +*Ce e 0 1 + +** Example Tschebyschef Low Pass filter +C1 in 0 33.2p +L1 in 2 99.2n +C2 2 0 57.2p +L2 2 out 99.2n +C3 out 0 33.2p + +** Example RC +** see +** http://www.allenhollister.com/allen/files/scatteringparameters.pdf +*R2 in out 10 +*C1 out int5 30p +*R1 int5 0 10 + +*** End of circuit + + +** The following subcircuit to be changed only by an experienced user! + +*** Driver and readout +X1 in out S_2_2 S_1_2 S_PARAM + +.SUBCKT S_PARAM 22 66 5 7 +* Resistors emulate switches with Ron=0.001 and Roff=1e12 +* to switch driver to input and readout to output (and vice versa, see below) +RS1 22 2 0.001 +RS2 66 6 0.001 +RS3 22 6 1e12 +RS4 66 2 1e12 +*Driver +Vacdc 1 0 DC 'Vbias_in' AC 1 ; ac voltage and dc bias at input (applied through load resistor) +R1 1 2 'Rbase' +E1 3 0 2 0 2 ; amplify in port ac voltage by 2 +Vac 3 4 DC 0 AC 1 ; subtract driving ac voltage +R_loop 4 5 0.001 +R3 5 0 1 ; ground return for measure node 5 +*Readout +E2 7 0 6 0 2 ; amplify out port ac voltage by 2 +R4 6 8 'Rbase' ; load resistor at output (ac) +Vdc 8 0 DC 'Vbias_out' AC 0 ; dc bias at output (applied through load resistor) +.ends + +** Check the two ac lines below for being equal! +.control +set noaskquit +set filetype=ascii +*** measurement for s_1_1 and s_2_1 +op +** save bias voltages to vector +let Vdcnew=V(X1.1) ; former Vacdc +let Vacdcnew=v(X1.8) ; former Vdc +** first ac measurement (change this line only together with following ac line) +*ac lin 20 0.1G 2G ; use for bip transistor +ac lin 100 2.5MEG 250MEG ; use for Tschebyschef +*ac lin 101 1k 10G ; use for RC +** +** switch input and output +alter R.X1.RS1=1e12 +alter R.X1.RS2=1e12 +alter R.X1.RS3=0.001 +alter R.X1.RS4=0.001 +** switch bias voltages between in and out +alter V.X1.Vacdc DC=op1.Vacdcnew +alter V.X1.Vdc DC=op1.Vdcnew +*** measurement for s_1_2 and s_2_2 +op +** second ac measurement (change this line only together with ac line above) +*ac lin 20 0.1G 2G ; use for bip transistor +ac lin 100 2.5MEG 250MEG ; use for Tschebyschef +*ac lin 101 1 10G ; use for RC +** +let s_1_1=ac1.s_2_2 +let s_2_1=ac1.s_1_2 +settype s-param S_1_1 S_2_1 S_2_2 S_1_2 + +let S11db = db(s_1_1) +let S12db = db(s_1_2) +let S21db = db(s_2_1) +let S22db = db(s_2_2) +settype decibel S11db S21db S22db S12db + +let P11=180*ph(s_1_1)/pi +let P21=180*ph(s_2_1)/pi +let P22=180*ph(S_2_2)/pi +let P12=180*ph(S_1_2)/pi +settype phase P11 P21 P22 P12 + +let Rbase=@R.X1.R4[Resistance] +settype impedance Rbase + +*plot s11db s21db S22db S12db ylimit -50 0 xlog ; used with RC +plot s11db s21db S22db S12db ylimit -0.5 0 ; used with Tschebyschef +plot P11 P21 P22 P12 +plot smithgrid S_1_1 S_1_2 +*wrdata s3046 mag(S11) P11 mag(S21) P21 mag(S22) P22 mag(S12) P12 ; write simple table +wrs2p s3046.s2p ; write touchstone vers. 1 file s3046.s2p +quit +.endc + +.end diff --git a/paranoia_parallel/examples/control_structs/s3046.s2p b/paranoia_parallel/examples/control_structs/s3046.s2p new file mode 100644 index 000000000..f8a6be273 --- /dev/null +++ b/paranoia_parallel/examples/control_structs/s3046.s2p @@ -0,0 +1,105 @@ +!2-port S-parameter file +!Title: test for scattering parameters +!Generated by ngspice at Mon Jun 29 16:30:10 2026 +# Hz S RI R 50 +!freq ReS11 ImS11 ReS21 ImS21 ReS12 ImS12 ReS22 ImS22 + 2.500000e+06 -1.358762e-03 -1.726349e-02 9.966563e-01 -7.959753e-02 9.966563e-01 -7.959753e-02 -1.358762e-03 -1.726349e-02 + 5.000000e+06 -5.439573e-03 -3.397117e-02 9.867253e-01 -1.585780e-01 9.867253e-01 -1.585780e-01 -5.439573e-03 -3.397117e-02 + 7.500000e+06 -1.205882e-02 -4.958988e-02 9.703054e-01 -2.363411e-01 9.703054e-01 -2.363411e-01 -1.205882e-02 -4.958988e-02 + 1.000000e+07 -2.095226e-02 -6.363041e-02 9.475859e-01 -3.123192e-01 9.475859e-01 -3.123192e-01 -2.095226e-02 -6.363041e-02 + 1.250000e+07 -3.176693e-02 -7.566616e-02 9.188161e-01 -3.859893e-01 9.188161e-01 -3.859893e-01 -3.176693e-02 -7.566616e-02 + 1.500000e+07 -4.407645e-02 -8.534828e-02 8.842915e-01 -4.568821e-01 8.842915e-01 -4.568821e-01 -4.407645e-02 -8.534828e-02 + 1.750000e+07 -5.739842e-02 -9.241679e-02 8.443387e-01 -5.245862e-01 8.443387e-01 -5.245862e-01 -5.739842e-02 -9.241679e-02 + 2.000000e+07 -7.121292e-02 -9.670767e-02 7.992999e-01 -5.887480e-01 7.992999e-01 -5.887480e-01 -7.121292e-02 -9.670767e-02 + 2.250000e+07 -8.498089e-02 -9.815599e-02 7.495191e-01 -6.490667e-01 7.495191e-01 -6.490667e-01 -8.498089e-02 -9.815599e-02 + 2.500000e+07 -9.816184e-02 -9.679587e-02 6.953303e-01 -7.052862e-01 6.953303e-01 -7.052862e-01 -9.816184e-02 -9.679587e-02 + 2.750000e+07 -1.102302e-01 -9.275778e-02 6.370488e-01 -7.571844e-01 6.370488e-01 -7.571844e-01 -1.102302e-01 -9.275778e-02 + 3.000000e+07 -1.206903e-01 -8.626387e-02 5.749671e-01 -8.045597e-01 5.749671e-01 -8.045597e-01 -1.206903e-01 -8.626387e-02 + 3.250000e+07 -1.290901e-01 -7.762196e-02 5.093540e-01 -8.472181e-01 5.093540e-01 -8.472181e-01 -1.290901e-01 -7.762196e-02 + 3.500000e+07 -1.350339e-01 -6.721847e-02 4.404583e-01 -8.849594e-01 4.404583e-01 -8.849594e-01 -1.350339e-01 -6.721847e-02 + 3.750000e+07 -1.381947e-01 -5.551036e-02 3.685166e-01 -9.175655e-01 3.685166e-01 -9.175655e-01 -1.381947e-01 -5.551036e-02 + 4.000000e+07 -1.383257e-01 -4.301599e-02 2.937651e-01 -9.447911e-01 2.937651e-01 -9.447911e-01 -1.383257e-01 -4.301599e-02 + 4.250000e+07 -1.352730e-01 -3.030416e-02 2.164537e-01 -9.663575e-01 2.164537e-01 -9.663575e-01 -1.352730e-01 -3.030416e-02 + 4.500000e+07 -1.289872e-01 -1.798090e-02 1.368634e-01 -9.819513e-01 1.368634e-01 -9.819513e-01 -1.289872e-01 -1.798090e-02 + 4.750000e+07 -1.195356e-01 -6.672926e-03 5.532482e-02 -9.912277e-01 5.532482e-02 -9.912277e-01 -1.195356e-01 -6.672926e-03 + 5.000000e+07 -1.071119e-01 2.992941e-03 -2.776434e-02 -9.938209e-01 -2.776434e-02 -9.938209e-01 -1.071119e-01 2.992941e-03 + 5.250000e+07 -9.204473e-02 1.041495e-02 -1.119227e-01 -9.893593e-01 -1.119227e-01 -9.893593e-01 -9.204473e-02 1.041495e-02 + 5.500000e+07 -7.479988e-02 1.504632e-02 -1.965734e-01 -9.774880e-01 -1.965734e-01 -9.774880e-01 -7.479988e-02 1.504632e-02 + 5.750000e+07 -5.597718e-02 1.642913e-02 -2.810392e-01 -9.578959e-01 -2.810392e-01 -9.578959e-01 -5.597718e-02 1.642913e-02 + 6.000000e+07 -3.629761e-02 1.423063e-02 -3.645451e-01 -9.303453e-01 -3.645451e-01 -9.303453e-01 -3.629761e-02 1.423063e-02 + 6.250000e+07 -1.658003e-02 8.279254e-03 -4.462325e-01 -8.947021e-01 -4.462325e-01 -8.947021e-01 -1.658003e-02 8.279254e-03 + 6.500000e+07 2.293456e-03 -1.403107e-03 -5.251827e-01 -8.509618e-01 -5.251827e-01 -8.509618e-01 2.293456e-03 -1.403107e-03 + 6.750000e+07 1.942301e-02 -1.457657e-02 -6.004512e-01 -7.992673e-01 -6.004512e-01 -7.992673e-01 1.942301e-02 -1.457657e-02 + 7.000000e+07 3.394498e-02 -3.077019e-02 -6.711071e-01 -7.399144e-01 -6.711071e-01 -7.399144e-01 3.394498e-02 -3.077019e-02 + 7.250000e+07 4.509064e-02 -4.928309e-02 -7.362749e-01 -6.733425e-01 -7.362749e-01 -6.733425e-01 4.509064e-02 -4.928309e-02 + 7.500000e+07 5.224510e-02 -6.920078e-02 -7.951722e-01 -6.001083e-01 -7.951722e-01 -6.001083e-01 5.224510e-02 -6.920078e-02 + 7.750000e+07 5.500169e-02 -8.942553e-02 -8.471349e-01 -5.208459e-01 -8.471349e-01 -5.208459e-01 5.500169e-02 -8.942553e-02 + 8.000000e+07 5.320862e-02 -1.087178e-01 -8.916265e-01 -4.362158e-01 -8.916265e-01 -4.362158e-01 5.320862e-02 -1.087178e-01 + 8.250000e+07 4.700673e-02 -1.257444e-01 -9.282245e-01 -3.468485e-01 -9.282245e-01 -3.468485e-01 4.700673e-02 -1.257444e-01 + 8.500000e+07 3.686015e-02 -1.391301e-01 -9.565809e-01 -2.532925e-01 -9.565809e-01 -2.532925e-01 3.686015e-02 -1.391301e-01 + 8.750000e+07 2.358475e-02 -1.475095e-01 -9.763571e-01 -1.559739e-01 -9.763571e-01 -1.559739e-01 2.358475e-02 -1.475095e-01 + 9.000000e+07 8.381382e-03 -1.495831e-01 -9.871299e-01 -5.517864e-02 -9.871299e-01 -5.517864e-02 8.381382e-03 -1.495831e-01 + 9.250000e+07 -7.118544e-03 -1.441840e-01 -9.882734e-01 4.892923e-02 -9.882734e-01 4.892923e-02 -7.118544e-03 -1.441840e-01 + 9.500000e+07 -2.079005e-02 -1.303751e-01 -9.788181e-01 1.562356e-01 -9.788181e-01 1.562356e-01 -2.079005e-02 -1.303751e-01 + 9.750000e+07 -2.993798e-02 -1.076032e-01 -9.573006e-01 2.665235e-01 -9.573006e-01 2.665235e-01 -2.993798e-02 -1.076032e-01 + 1.000000e+08 -3.123039e-02 -7.595215e-02 -9.216321e-01 3.792038e-01 -9.216321e-01 3.792038e-01 -3.123039e-02 -7.595215e-02 + 1.025000e+08 -2.070470e-02 -3.654144e-02 -8.690529e-01 4.928882e-01 -8.690529e-01 4.928882e-01 -2.070470e-02 -3.654144e-02 + 1.050000e+08 6.025502e-03 7.907262e-03 -7.963008e-01 6.047861e-01 -7.963008e-01 6.047861e-01 6.025502e-03 7.907262e-03 + 1.075000e+08 5.315491e-02 5.240190e-02 -7.002024e-01 7.099973e-01 -7.002024e-01 7.099973e-01 5.315491e-02 5.240190e-02 + 1.100000e+08 1.234268e-01 8.919325e-02 -5.789199e-01 8.009873e-01 -5.789199e-01 8.009873e-01 1.234268e-01 8.919325e-02 + 1.125000e+08 2.161923e-01 1.080766e-01 -4.338893e-01 8.678549e-01 -4.338893e-01 8.678549e-01 2.161923e-01 1.080766e-01 + 1.150000e+08 3.253809e-01 9.825973e-02 -2.718540e-01 9.001720e-01 -2.718540e-01 9.001720e-01 3.253809e-01 9.825973e-02 + 1.175000e+08 4.388659e-01 5.198956e-02 -1.055070e-01 8.905890e-01 -1.055070e-01 8.905890e-01 4.388659e-01 5.198956e-02 + 1.200000e+08 5.408130e-01 -3.149563e-02 4.884981e-02 8.387714e-01 4.884981e-02 8.387714e-01 5.408130e-01 -3.149563e-02 + 1.225000e+08 6.167585e-01 -1.444873e-01 1.763784e-01 7.528644e-01 1.763784e-01 7.528644e-01 6.167585e-01 -1.444873e-01 + 1.250000e+08 6.585082e-01 -2.734229e-01 2.685960e-01 6.468633e-01 2.685960e-01 6.468633e-01 6.585082e-01 -2.734229e-01 + 1.275000e+08 6.657311e-01 -4.039413e-01 3.249590e-01 5.355451e-01 3.249590e-01 5.355451e-01 6.657311e-01 -4.039413e-01 + 1.300000e+08 6.439584e-01 -5.250419e-01 3.508493e-01 4.302996e-01 3.508493e-01 4.302996e-01 6.439584e-01 -5.250419e-01 + 1.325000e+08 6.011843e-01 -6.305572e-01 3.541621e-01 3.376531e-01 3.541621e-01 3.376531e-01 6.011843e-01 -6.305572e-01 + 1.350000e+08 5.451725e-01 -7.184622e-01 3.426007e-01 2.599575e-01 3.426007e-01 2.599575e-01 5.451725e-01 -7.184622e-01 + 1.375000e+08 4.821433e-01 -7.893860e-01 3.223551e-01 1.968808e-01 3.223551e-01 1.968808e-01 4.821433e-01 -7.893860e-01 + 1.400000e+08 4.165141e-01 -8.452649e-01 2.978358e-01 1.467550e-01 2.978358e-01 1.467550e-01 4.165141e-01 -8.452649e-01 + 1.425000e+08 3.511565e-01 -8.884498e-01 2.719260e-01 1.074716e-01 2.719260e-01 1.074716e-01 3.511565e-01 -8.884498e-01 + 1.450000e+08 2.877951e-01 -9.212259e-01 2.463757e-01 7.696353e-02 2.463757e-01 7.696353e-02 2.877951e-01 -9.212259e-01 + 1.475000e+08 2.273727e-01 -9.456046e-01 2.221642e-01 5.341517e-02 2.221642e-01 5.341517e-02 2.273727e-01 -9.456046e-01 + 1.500000e+08 1.703290e-01 -9.632664e-01 1.997756e-01 3.532106e-02 1.997756e-01 3.532106e-02 1.703290e-01 -9.632664e-01 + 1.525000e+08 1.167948e-01 -9.755766e-01 1.793909e-01 2.147277e-02 1.793909e-01 2.147277e-02 1.167948e-01 -9.755766e-01 + 1.550000e+08 6.671938e-02 -9.836268e-01 1.610137e-01 1.091828e-02 1.610137e-01 1.091828e-02 6.671938e-02 -9.836268e-01 + 1.575000e+08 1.995235e-02 -9.882835e-01 1.445500e-01 2.915383e-03 1.445500e-01 2.915383e-03 1.995235e-02 -9.882835e-01 + 1.600000e+08 -2.370667e-02 -9.902329e-01 1.298576e-01 -3.111475e-03 1.298576e-01 -3.111475e-03 -2.370667e-02 -9.902329e-01 + 1.625000e+08 -6.447758e-02 -9.900183e-01 1.167745e-01 -7.607606e-03 1.167745e-01 -7.607606e-03 -6.447758e-02 -9.900183e-01 + 1.650000e+08 -1.025822e-01 -9.880715e-01 1.051368e-01 -1.091749e-02 1.051368e-01 -1.091749e-02 -1.025822e-01 -9.880715e-01 + 1.675000e+08 -1.382345e-01 -9.847362e-01 9.478726e-02 -1.330789e-02 9.478726e-02 -1.330789e-02 -1.382345e-01 -9.847362e-01 + 1.700000e+08 -1.716355e-01 -9.802877e-01 8.558031e-02 -1.498573e-02 8.558031e-02 -1.498573e-02 -1.716355e-01 -9.802877e-01 + 1.725000e+08 -2.029710e-01 -9.749474e-01 7.738382e-02 -1.611186e-02 7.738382e-02 -1.611186e-02 -2.029710e-01 -9.749474e-01 + 1.750000e+08 -2.324111e-01 -9.688939e-01 7.007948e-02 -1.681159e-02 7.007948e-02 -1.681159e-02 -2.324111e-01 -9.688939e-01 + 1.775000e+08 -2.601105e-01 -9.622725e-01 6.356230e-02 -1.718275e-02 6.356230e-02 -1.718275e-02 -2.601105e-01 -9.622725e-01 + 1.800000e+08 -2.862096e-01 -9.552014e-01 5.773960e-02 -1.730188e-02 5.773960e-02 -1.730188e-02 -2.862096e-01 -9.552014e-01 + 1.825000e+08 -3.108352e-01 -9.477774e-01 5.252990e-02 -1.722893e-02 5.252990e-02 -1.722893e-02 -3.108352e-01 -9.477774e-01 + 1.850000e+08 -3.341022e-01 -9.400800e-01 4.786169e-02 -1.701095e-02 4.786169e-02 -1.701095e-02 -3.341022e-01 -9.400800e-01 + 1.875000e+08 -3.561145e-01 -9.321749e-01 4.367231e-02 -1.668487e-02 4.367231e-02 -1.668487e-02 -3.561145e-01 -9.321749e-01 + 1.900000e+08 -3.769660e-01 -9.241162e-01 3.990685e-02 -1.627969e-02 3.990685e-02 -1.627969e-02 -3.769660e-01 -9.241162e-01 + 1.925000e+08 -3.967419e-01 -9.159490e-01 3.651720e-02 -1.581817e-02 3.651720e-02 -1.581817e-02 -3.967419e-01 -9.159490e-01 + 1.950000e+08 -4.155196e-01 -9.077105e-01 3.346118e-02 -1.531815e-02 3.346118e-02 -1.531815e-02 -4.155196e-01 -9.077105e-01 + 1.975000e+08 -4.333691e-01 -8.994320e-01 3.070179e-02 -1.479358e-02 3.070179e-02 -1.479358e-02 -4.333691e-01 -8.994320e-01 + 2.000000e+08 -4.503545e-01 -8.911392e-01 2.820653e-02 -1.425535e-02 2.820653e-02 -1.425535e-02 -4.503545e-01 -8.911392e-01 + 2.025000e+08 -4.665341e-01 -8.828538e-01 2.594680e-02 -1.371188e-02 2.594680e-02 -1.371188e-02 -4.665341e-01 -8.828538e-01 + 2.050000e+08 -4.819612e-01 -8.745937e-01 2.389744e-02 -1.316967e-02 2.389744e-02 -1.316967e-02 -4.819612e-01 -8.745937e-01 + 2.075000e+08 -4.966844e-01 -8.663740e-01 2.203625e-02 -1.263369e-02 2.203625e-02 -1.263369e-02 -4.966844e-01 -8.663740e-01 + 2.100000e+08 -5.107484e-01 -8.582071e-01 2.034363e-02 -1.210767e-02 2.034363e-02 -1.210767e-02 -5.107484e-01 -8.582071e-01 + 2.125000e+08 -5.241943e-01 -8.501032e-01 1.880226e-02 -1.159437e-02 1.880226e-02 -1.159437e-02 -5.241943e-01 -8.501032e-01 + 2.150000e+08 -5.370598e-01 -8.420709e-01 1.739678e-02 -1.109581e-02 1.739678e-02 -1.109581e-02 -5.370598e-01 -8.420709e-01 + 2.175000e+08 -5.493797e-01 -8.341172e-01 1.611357e-02 -1.061336e-02 1.611357e-02 -1.061336e-02 -5.493797e-01 -8.341172e-01 + 2.200000e+08 -5.611860e-01 -8.262478e-01 1.494054e-02 -1.014795e-02 1.494054e-02 -1.014795e-02 -5.611860e-01 -8.262478e-01 + 2.225000e+08 -5.725084e-01 -8.184672e-01 1.386692e-02 -9.700091e-03 1.386692e-02 -9.700091e-03 -5.725084e-01 -8.184672e-01 + 2.250000e+08 -5.833743e-01 -8.107791e-01 1.288314e-02 -9.270031e-03 1.288314e-02 -9.270031e-03 -5.833743e-01 -8.107791e-01 + 2.275000e+08 -5.938092e-01 -8.031864e-01 1.198062e-02 -8.857773e-03 1.198062e-02 -8.857773e-03 -5.938092e-01 -8.031864e-01 + 2.300000e+08 -6.038367e-01 -7.956913e-01 1.115174e-02 -8.463144e-03 1.115174e-02 -8.463144e-03 -6.038367e-01 -7.956913e-01 + 2.325000e+08 -6.134786e-01 -7.882954e-01 1.038964e-02 -8.085839e-03 1.038964e-02 -8.085839e-03 -6.134786e-01 -7.882954e-01 + 2.350000e+08 -6.227555e-01 -7.809997e-01 9.688200e-03 -7.725449e-03 9.688200e-03 -7.725449e-03 -6.227555e-01 -7.809997e-01 + 2.375000e+08 -6.316864e-01 -7.738050e-01 9.041918e-03 -7.381493e-03 9.041918e-03 -7.381493e-03 -6.316864e-01 -7.738050e-01 + 2.400000e+08 -6.402889e-01 -7.667116e-01 8.445851e-03 -7.053439e-03 8.445851e-03 -7.053439e-03 -6.402889e-01 -7.667116e-01 + 2.425000e+08 -6.485798e-01 -7.597196e-01 7.895554e-03 -6.740717e-03 7.895554e-03 -6.740717e-03 -6.485798e-01 -7.597196e-01 + 2.450000e+08 -6.565745e-01 -7.528286e-01 7.387021e-03 -6.442737e-03 7.387021e-03 -6.442737e-03 -6.565745e-01 -7.528286e-01 + 2.475000e+08 -6.642874e-01 -7.460383e-01 6.916640e-03 -6.158900e-03 6.916640e-03 -6.158900e-03 -6.642874e-01 -7.460383e-01 + 2.500000e+08 -6.717324e-01 -7.393479e-01 6.481147e-03 -5.888603e-03 6.481147e-03 -5.888603e-03 -6.717324e-01 -7.393479e-01 diff --git a/paranoia_parallel/examples/delta-sigma/mod1-ct-test.cir b/paranoia_parallel/examples/delta-sigma/mod1-ct-test.cir new file mode 100644 index 000000000..85e76bb00 --- /dev/null +++ b/paranoia_parallel/examples/delta-sigma/mod1-ct-test.cir @@ -0,0 +1,53 @@ +* first-order delta sigma modulator +* continuous time +* according to Schreier, Temes: Understanding Delta-Sigma Data Converters, 2005 +* Fig. 2.13, p. 31 + +** signal +.param infreq=13k inampl=0.3 +** clock +.param clkfreq=5Meg +** simulation time +.param simtime = 5u +.csparam simtime = 'simtime' + +** input signal +*SIN(VO VA FREQ TD THETA) +vin in+ in- dc 0 sin(0 'inampl' 'infreq' 0 0) + +* clock generation +* PULSE(V1 V2 TD TR TF PW PER) +vclk aclk 0 dc 0 pulse(0 1 0.1u 2n 2n '1/clkfreq/2' '1/clkfreq') + +* digital one +* digital zero +vone aone 0 dc 1 +vzero azero 0 dc 0 +abridge1 [aone azero] [done dzero] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +* digital clock +abridge2 [aclk] [dclk] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +Xmod in+ in- dclk dv dvb mod1 + +* load mod1 subcircuit +.include mod1-ct.cir + +.control +save xmod.adffq in+ in- xmod.outintp xmod.outintn +tran 0.01u $&simtime +* digit density vs input +plot xmod.adffq V("in+","in-") xlimit 0.1m 0.2m +* modulator integrator out, digital out +plot xmod.outintp-xmod.outintn xmod.adffq xlimit 0.140m 0.148m +*eprint dv dclk > digi1.txt +linearize xmod.adffq +fft xmod.adffq +* noise shaping 20dB/decade +plot db(xmod.adffq) xlimit 10k 1Meg xlog ylimit -20 -120 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/delta-sigma/mod1-ct.cir b/paranoia_parallel/examples/delta-sigma/mod1-ct.cir new file mode 100644 index 000000000..bf3129b79 --- /dev/null +++ b/paranoia_parallel/examples/delta-sigma/mod1-ct.cir @@ -0,0 +1,46 @@ +* delta sigma modulator +* first order, continuous time + +.subckt mod1 ainp ainn dclk ddffq ddffqb +* integrator and summer +Ri1 ainn inintn 500 +Rf1 adffq inintn 500 +Cint1 outintp inintn 1n +.IC v(outintp) = 0 v(inintp) = 0 +* +Rshunt1 outintp 0 100Meg +Rshunt2 initn 0 100Meg +* +Ri2 ainp inintp 500 +Rf2 adffqb inintp 500 +Cint2 outintn inintp 1n +.IC v(outintn) = 0 v(inintn) = 0 +* +Rshunt3 outintn 0 100Meg +Rshunt4 inintp 0 100Meg +* +aint %vd(inintp inintn) %vd(outintp outintn) amp +.model amp gain ( in_offset =0.0 gain =100000 ++ out_offset = 0) + +* latched comparator (code model or B source, analog in, digital out) +*acomp %vd(outintp outintn) acompout limit5 +*.model limit5 limit(in_offset=0 gain=100000 out_lower_limit=-1.0 +*+ out_upper_limit=1.0 limit_range=0.10 fraction=FALSE) +* +BComp acompout 0 V = (V(outintp) - V(outintn)) >= 0 ? 1 : -1 +* +abridge2 [acompout] [dcompout] adc_buff +.model adc_buff adc_bridge(in_low = 0 in_high = 0) +* +* D flip flop: data clk set reset out nout +adff1 dcompout dclk ds drs ddffq ddffqb flop2 +.model flop2 d_dff(clk_delay = 1e-9 set_delay = 1.0e-9 ++ reset_delay = 1.0e-9 ic = 0 rise_delay = 1.0e-9 ++ fall_delay = 1e-9) + +abridge1 [ddffq ddffqb dclk] [adffq adffqb aclk] dac1 +.model dac1 dac_bridge(out_low = -1 out_high = 1 out_undef = 0 ++ input_load = 5.0e-12 + +.ends mod1 diff --git a/paranoia_parallel/examples/digital/74HCng_short_2.lib b/paranoia_parallel/examples/digital/74HCng_short_2.lib new file mode 100644 index 000000000..00c36d348 --- /dev/null +++ b/paranoia_parallel/examples/digital/74HCng_short_2.lib @@ -0,0 +1,226 @@ +* 74hcng.lib +* +* derived from 74HCxxx Model libraray for LTSPICE from www.linear.com/software +* +* Revision 1.01 06/25/2018 test devices NAND, NOR, and XOR as XSPICE subcircuit for ngspice +* +* All parts have been divided into three sections. +* +* >--| A-D-Converter (threshold VCC1/2) |----| Event LOGIC Axx (delay) |----| OUTPUT LEVEL D-A (rise and fall times) |--> +* +* Delays are given for Vcc = 2V/4.5V/6V (HC) from the +* Philips data sheets. http://www.philipslogic.com +* +* Delays are given for Vcc = 2V/4.5V/6V . +* Used delay: Td = (Tpd-Tr/2)*(4.5-0.5)/(Vcc-0.5) +* The gate delay has to be set to tpd minus 3ns for the input filter +* and another minus 3ns for Trise/2 +* td1 = tpd - 3ns - 3ns +* + +.param vcc=5 tripdt=6n +*********************************************************************************** +* The 74HCXX gates +* +* 2-input NAND gate +* vcc 2 /4.5/5 /6 +* tpd 25n/9n/7n/7n +* tr 19n/7n / /6n +.SUBCKT 74HC00 in1 in2 out NVCC NVGND vcc1={vcc} tripdt1={tripdt} +.param td1={1e-9*(9-3-3)*4.0/(vcc1-0.5)} +.param Rout={60*4.0/(vcc1-0.5)} ; standard output driver +*Cin1 in1 0 3.5p +*Cin2 in2 0 3.5p +abridge2 [in1 in2] [din1 din2] adc_buff +.model adc_buff adc_bridge(in_low = {vcc1/2.0} in_high = {vcc1/2.0}) +a6 [din1 din2] dout nand1 +.model nand1 d_nand(rise_delay = {td1} fall_delay = {td1} ++ input_load = 0.5e-12) +abridge1 [dout] [out20] dac1 +.model dac1 dac_bridge(out_low = 0.0 out_high = {vcc1} out_undef = {vcc1/2.0} ++ input_load = 5.0e-12 t_rise = {tripdt1} ++ t_fall = {tripdt1}) +Rout out20 out {Rout} +.ends + + +* 2-input NOR gate +* tpd 25n/9n/7n +* tr 19n/7n/6n +.SUBCKT 74HC02 in1 in2 out NVCC NVGND vcc1={vcc} tripdt1={tripdt} +.param td1={1e-9*(9-3-3)*4.0/(vcc1-0.5)} +.param Rout={60*4.0/(vcc1-0.5)} ; standard output driver +*Cin1 in1 0 3.5p +*Cin2 in2 0 3.5p +abridge2 [in1 in2] [din1 din2] adc_buff +.model adc_buff adc_bridge(in_low = {vcc1/2.0} in_high = {vcc1/2.0}) +a6 [din1 din2] dout nor1 +.model nor1 d_nor(rise_delay = {td1} fall_delay = {td1} input_load = 0.5e-12) +abridge1 [dout] [out20] dac1 +.model dac1 dac_bridge(out_low = 0.0 out_high = {vcc1} out_undef = {vcc1/2.0} ++ input_load = 5.0e-12 t_rise = {tripdt1} t_fall = {tripdt1}) +Rout out20 out {Rout} +.ends + + +** 2-input AND gate +* tpd 25n/9n/7n +* tr 19n/7n/6n +.SUBCKT 74HC08 in1 in2 out NVCC NVGND vcc1={vcc} tripdt1={tripdt} +.param td1={1e-9*(9-3-3)*4.0/(vcc1-0.5)} +.param Rout={60*4.0/(vcc1-0.5)} ; standard output driver +*Cin1 in1 0 3.5p +*Cin2 in2 0 3.5p +abridge2 [in1 in2] [din1 din2] adc_buff +.model adc_buff adc_bridge(in_low = {vcc1/2.0} in_high = {vcc1/2.0}) +a6 [din1 din2] dout and1 +.model and1 d_and(rise_delay = {td1} fall_delay = {td1} ++ input_load = 0.5e-12) +abridge1 [dout] [out20] dac1 +.model dac1 dac_bridge(out_low = 0.0 out_high = {vcc1} out_undef = {vcc1/2.0} ++ input_load = 5.0e-12 t_rise = {tripdt1} ++ t_fall = {tripdt1}) +Rout out20 out {Rout} +.ends +** + +* 2-input OR gate +* tpd 25n/9n/7n +* tr 19n/7n/6n +.SUBCKT 74HC32 in1 in2 out NVCC NVGND vcc1={vcc} tripdt1={tripdt} +.param td1={1e-9*(9-3-3)*4.0/(vcc1-0.5)} +.param Rout={60*4.0/(vcc1-0.5)} ; standard output driver +*Cin1 in1 0 3.5p +*Cin2 in2 0 3.5p +abridge2 [in1 in2] [din1 din2] adc_buff +.model adc_buff adc_bridge(in_low = {vcc1/2.0} in_high = {vcc1/2.0}) +a6 [din1 din2] dout or1 +.model or1 d_or(rise_delay = {td1} fall_delay = {td1} input_load = 0.5e-12) +abridge1 [dout] [out20] dac1 +.model dac1 dac_bridge(out_low = 0.0 out_high = {vcc1} out_undef = {vcc1/2.0} ++ input_load = 5.0e-12 t_rise = {tripdt1} t_fall = {tripdt1}) +Rout out20 out {Rout} +.ends + + +* 2-input EXOR gate +* tpd 39n/14n/11n +* tr 19n/7n/6n +.SUBCKT 74HC86 in1 in2 out NVCC NVGND vcc1={vcc} tripdt1={tripdt} +.param td1={1e-9*(14-3-3)*4.0/(vcc1-0.5)} +.param Rout={60*4.0/(vcc1-0.5)} ; standard output driver +*Cin1 in1 0 3.5p +*Cin2 in2 0 3.5p +abridge2 [in1 in2] [din1 din2] adc_buff +.model adc_buff adc_bridge(in_low = {vcc1/2.0} in_high = {vcc1/2.0}) +a6 [din1 din2] dout xor3 +.model xor3 d_xor(rise_delay = {td1} fall_delay = {td1} ++ input_load = 0.5e-12) +abridge1 [dout] [out20] dac1 +.model dac1 dac_bridge(out_low = 0.0 out_high = {vcc1} out_undef = {vcc1/2.0} ++ input_load = 5.0e-12 t_rise = {tripdt1} t_fall = {tripdt1}) +Rout out20 out {Rout} +.ends + + +* +*============================================================================ +* +* A hopefully real transistor level based model of the 74HCU04. The model +* comes directly from philips. http://www.philipslogic.com/support/spice/ +* This a unbuffered inverter which is often used in LC or crystal oscillators. +* Inverter, unbuffered +* Original Philips model used. +.SUBCKT 74HCU04 A Y VCC VGND vcc1={vcc} speed1={speed} tripdt1={tripdt} +*Rin A A1 200 +*Cin A1 VGND 3p +*XAY A1 Y VCC VGND 74HC04_INV0 +XAY A Y VCC VGND 74HC04_INV0 +.ends +* +* +.SUBCKT 74HC04_INV0 2 3 80 90 +*IN=2, OUT=3, VCC=80, GND=90 +XINP 20 25 50 60 74HC_INP0N +XOUTP 25 30 50 60 74HC_OUTPN +L1 80 50 6.87NH +L2 60 90 6.87NH +L3 2 20 5.97NH +L4 30 3 5.97NH +C1 50 90 1.5P +C2 60 90 1.5P +C3 20 90 1.5P +C4 3 90 1.5P +.ENDS +* +.SUBCKT 74HC_INP0N 2 3 50 60 +*IN=2, OUT=3, VCC=50, GND=60 +R1 2 3 100 +MP1 3 50 50 50 MHCPEN W=20U L=2.4U AD=100P AS=100P PD=40U PS= 20U +MN1 3 60 60 60 MHCNEN W=35U L=2.4U AD=260P AS=260P PD=70U PS= 20U +.ENDS +* +.SUBCKT 74HC_OUTPN 2 3 50 60 +*IN=2, OUT=3, VCC=50, GND=60 +R1 2 4 100 +MP1 3 4 50 50 MHCPEN W=360U L=2.4U AD=400P AS=400P PD=10U PS=180U +MN1 3 4 60 60 MHCNEN W=140U L=2.4U AD=200P AS=300P PD=10U PS=130U +R2 4 5 50 +MP2 3 5 50 50 MHCPEN W=360U L=2.4U AD=400P AS=400P PD=10U PS=180U +MN2 3 5 60 60 MHCNEN W=140U L=2.4U AD=200P AS=200P PD=10U PS=130U +R3 5 6 50 +MP3 3 6 50 50 MHCPEN W=360U L=2.4U AD=400P AS=400P PD=10U PS=180U +MN3 3 6 60 60 MHCNEN W=140U L=2.4U AD=200P AS=200P PD=10U PS=130U +.ENDS +************************************************ +* NOMINAL N-Channel Transistor * +* UCB-3 Parameter Set * +* HIGH-SPEED CMOS Logic Family * +* 10-Jan.-1995 * +************************************************ +.Model MHCNEN NMOS ( ++LEVEL = 3 ++KP = 45.3E-6 ++VTO = 0.72 ++TOX = 51.5E-9 ++NSUB = 2.8E15 ++GAMMA = 0.94 ++PHI = 0.65 ++VMAX = 150E3 ++RS = 40 ++RD = 40 ++XJ = 0.11E-6 ++LD = 0.52E-6 ++DELTA = 0.315 ++THETA = 0.054 ++ETA = 0.025 ++KAPPA = 0.0 ++WD = 0.0 ) + +*********************************************** +* NOMINAL P-Channel transistor * +* UCB-3 Parameter Set * +* HIGH-SPEED CMOS Logic Family * +* 10-Jan.-1995 * +*********************************************** +.Model MHCPEN PMOS ( ++LEVEL = 3 ++KP = 22.1E-6 ++VTO = -0.71 ++TOX = 51.5E-9 ++NSUB = 3.3E16 ++GAMMA = 0.92 ++PHI = 0.65 ++VMAX = 970E3 ++RS = 80 ++RD = 80 ++XJ = 0.63E-6 ++LD = 0.23E-6 ++DELTA = 2.24 ++THETA = 0.108 ++ETA = 0.322 ++KAPPA = 0.0 ++WD = 0.0 ) + + + diff --git a/paranoia_parallel/examples/digital/adder-comparison.txt b/paranoia_parallel/examples/digital/adder-comparison.txt new file mode 100644 index 000000000..ef3e28e12 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder-comparison.txt @@ -0,0 +1,23 @@ +Compare four different 4-bit full adders, +made of NAND gates +Simulating for 6400ns + +adder_bib +The old spice bipolar NAND gate full adder +Simulation time 14.0s + +adder_mos +A MOS NAND gate inverter, using BSIM3 and OpenMP +Simulation time 10.5s + +adder_behav +NAND gates made with XSPICE digital devices, +but each has an analog interface, the interconnect +is analog, gate library is 74HCng_short_2.lib +Simulation time 1.9s + +adder_Xspice +Fully digital, event node based NAND gates +digital plotting into vcd file, display with gtkwave +Simulation time 0.27s + diff --git a/paranoia_parallel/examples/digital/adder_Xspice.cir b/paranoia_parallel/examples/digital/adder_Xspice.cir new file mode 100644 index 000000000..78041c9a0 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder_Xspice.cir @@ -0,0 +1,85 @@ + ADDER - 4 BIT ALL-NAND-GATE BINARY ADDER + +*** SUBCIRCUIT DEFINITIONS +.SUBCKT NAND in1 in2 out +* NODES: INPUT(2), OUTPUT +a6 [in1 in2] out nand1 +.ENDS NAND + +.model nand1 d_nand(rise_delay = 0.7e-9 fall_delay = 0.7e-9 ++ input_load = 0.5e-12) + +.SUBCKT ONEBIT 1 2 3 4 5 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT +X1 1 2 7 NAND +X2 1 7 8 NAND +X3 2 7 9 NAND +X4 8 9 10 NAND +X5 3 10 11 NAND +X6 3 11 12 NAND +X7 10 11 13 NAND +X8 12 13 4 NAND +X9 11 7 5 NAND +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT +X1 1 2 7 5 10 ONEBIT +X2 3 4 10 6 8 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT +X1 1 2 3 4 9 10 13 16 TWOBIT +X2 5 6 7 8 11 12 16 14 TWOBIT +.ENDS FOURBIT + + +*** ALL INPUTS (analog) +VIN1A a1 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 20NS 50NS) +VIN1B a2 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 30NS 100NS) +VIN2A a3 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 50NS 200NS) +VIN2B a4 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 90NS 400NS) +VIN3A a5 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 170NS 800NS) +VIN3B a6 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 330NS 1600NS) +VIN4A a7 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 650NS 3200NS) +VIN4B a8 0 DC 0 PULSE(0 3 0 0.5NS 0.5NS 1290NS 6400NS) + +*** analog to digital +abridge2 [a1 a2 a3 a4 a5 a6 a7 a8] [1 2 3 4 5 6 7 8] adc_buff +.model adc_buff adc_bridge(in_low = 1 in_high = 2) + +*** digital 0 +V0 a0 0 0 +abridge0 [a0] [d0] adc_buff + +*** DEFINE NOMINAL CIRCUIT +X1 1 2 3 4 5 6 7 8 s0 s1 s2 s3 d0 c3 FOURBIT + +*.TRAN 500p 6400NS +* save inputs +*.save V(a1) V(a2) V(a3) V(a4) V(a5) V(a6) V(a7) V(a8) + +*.save v(1) + + +.control +*save v(1) +TRAN 500p 100NS +rusage +display +edisplay +* save data to input directory +cd $inputdir +eprvcd 1 2 3 4 5 6 7 8 s0 s1 s2 s3 c3 > adder_x.vcd +* plotting the vcd file (e.g. with GTKWave) +* For Windows: returns control to ngspice +*shell start gtkwave adder_x.vcd --script nggtk.tcl +* Others +shell gtkwave adder_x.vcd --script nggtk.tcl & +quit +.endc + +.END diff --git a/paranoia_parallel/examples/digital/adder_behav.cir b/paranoia_parallel/examples/digital/adder_behav.cir new file mode 100644 index 000000000..701bb8a92 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder_behav.cir @@ -0,0 +1,70 @@ + ADDER - 4 BIT ALL-74HC00-GATE BINARY ADDER + * behavioral gate description + +*** SUBCIRCUIT DEFINITIONS +.include 74HCng_short_2.lib +.param vcc=3 tripdt=6n + +.SUBCKT ONEBIT 1 2 3 4 5 6 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT, VCC +X1 1 2 7 6 0 74HC00 +X2 1 7 8 6 0 74HC00 +X3 2 7 9 6 0 74HC00 +X4 8 9 10 6 0 74HC00 +X5 3 10 11 6 0 74HC00 +X6 3 11 12 6 0 74HC00 +X7 10 11 13 6 0 74HC00 +X8 12 13 4 6 0 74HC00 +X9 11 7 5 6 0 74HC00 +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 9 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT, VCC +X1 1 2 7 5 10 9 ONEBIT +X2 3 4 10 6 8 9 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT, VCC +X1 1 2 3 4 9 10 13 16 15 TWOBIT +X2 5 6 7 8 11 12 16 14 15 TWOBIT +.ENDS FOURBIT + +*** POWER +VCC 99 0 DC 3.3V + +*** ALL INPUTS +VIN1A 1 0 DC 0 PULSE(0 3 0 5NS 5NS 20NS 50NS) +VIN1B 2 0 DC 0 PULSE(0 3 0 5NS 5NS 30NS 100NS) +VIN2A 3 0 DC 0 PULSE(0 3 0 5NS 5NS 50NS 200NS) +VIN2B 4 0 DC 0 PULSE(0 3 0 5NS 5NS 90NS 400NS) +VIN3A 5 0 DC 0 PULSE(0 3 0 5NS 5NS 170NS 800NS) +VIN3B 6 0 DC 0 PULSE(0 3 0 5NS 5NS 330NS 1600NS) +VIN4A 7 0 DC 0 PULSE(0 3 0 5NS 5NS 650NS 3200NS) +VIN4B 8 0 DC 0 PULSE(0 3 0 5NS 5NS 1290NS 6400NS) + +*** DEFINE NOMINAL CIRCUIT +X1 1 2 3 4 5 6 7 8 9 10 11 12 0 13 99 FOURBIT + +.option noinit acct +.TRAN 500p 100NS +* save inputs +.save V(1) V(2) V(3) V(4) V(5) V(6) V(7) V(8) + +.control +pre_set strict_errorhandling +unset ngdebug +*save outputs and specials +save x1.x1.x1.7 V(9) V(10) V(11) V(12) V(13) +run +rusage +* plot the inputs, use offset to plot on top of each other +plot v(1) v(2)+4 v(3)+8 v(4)+12 v(5)+16 v(6)+20 v(7)+24 v(8)+28 +* plot the outputs, use offset to plot on top of each other +plot v(9) v(10)+4 v(11)+8 v(12)+12 v(13)+16 +quit +.endc + +.END diff --git a/paranoia_parallel/examples/digital/adder_bip.cir b/paranoia_parallel/examples/digital/adder_bip.cir new file mode 100644 index 000000000..4512ab570 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder_bip.cir @@ -0,0 +1,89 @@ + ADDER - 4 BIT ALL-NAND-GATE BINARY ADDER + +*** SUBCIRCUIT DEFINITIONS +.SUBCKT NAND 1 2 3 4 +* NODES: INPUT(2), OUTPUT, VCC +Q1 9 5 1 QMOD +D1CLAMP 0 1 DMOD +Q2 9 5 2 QMOD +D2CLAMP 0 2 DMOD +RB 4 5 4K +R1 4 6 1.6K +Q3 6 9 8 QMOD +R2 8 0 1K +RC 4 7 130 +Q4 7 6 10 QMOD +DVBEDROP 10 3 DMOD +Q5 3 8 0 QMOD +.ENDS NAND + +.SUBCKT ONEBIT 1 2 3 4 5 6 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT, VCC +X1 1 2 7 6 NAND +X2 1 7 8 6 NAND +X3 2 7 9 6 NAND +X4 8 9 10 6 NAND +X5 3 10 11 6 NAND +X6 3 11 12 6 NAND +X7 10 11 13 6 NAND +X8 12 13 4 6 NAND +X9 11 7 5 6 NAND +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 9 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT, VCC +X1 1 2 7 5 10 9 ONEBIT +X2 3 4 10 6 8 9 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT, VCC +X1 1 2 3 4 9 10 13 16 15 TWOBIT +X2 5 6 7 8 11 12 16 14 15 TWOBIT +.ENDS FOURBIT + +*** DEFINE NOMINAL CIRCUIT +.MODEL DMOD D +.MODEL QMOD NPN(BF=75 RB=100 CJE=1PF CJC=3PF) +VCC 99 0 DC 5V +VIN1A 1 0 PULSE(0 3 0 10NS 10NS 10NS 50NS) +VIN1B 2 0 PULSE(0 3 0 10NS 10NS 20NS 100NS) +VIN2A 3 0 PULSE(0 3 0 10NS 10NS 40NS 200NS) +VIN2B 4 0 PULSE(0 3 0 10NS 10NS 80NS 400NS) +VIN3A 5 0 PULSE(0 3 0 10NS 10NS 160NS 800NS) +VIN3B 6 0 PULSE(0 3 0 10NS 10NS 320NS 1600NS) +VIN4A 7 0 PULSE(0 3 0 10NS 10NS 640NS 3200NS) +VIN4B 8 0 PULSE(0 3 0 10NS 10NS 1280NS 6400NS) +X1 1 2 3 4 5 6 7 8 9 10 11 12 0 13 99 FOURBIT +RBIT0 9 0 1K +RBIT1 10 0 1K +RBIT2 11 0 1K +RBIT3 12 0 1K +RCOUT 13 0 1K + +*** (FOR THOSE WITH MONEY (AND MEMORY) TO BURN) +.option noinit acct +.TRAN 1NS 100NS +*.save VIN1A VIN1B VIN2A VIN2B VIN3A VIN3B VIN4A VIN4B +* save inputs +.save V(1) V(2) V(3) V(4) V(5) V(6) V(7) V(8) +* save outputs +.save V(9) V(10) V(11) V(12) V(13) +*.options savecurrents +*.save alli + +.control +run +rusage +* plot the inputs, use offset to plot on top of each other +plot v(1) v(2)+4 v(3)+8 v(4)+12 v(5)+16 v(6)+20 v(7)+24 v(8)+28 +* plot the outputs, use offset to plot on top of each other +plot v(9) v(10)+4 v(11)+8 v(12)+12 v(13)+16 +quit +.endc + +.END + + diff --git a/paranoia_parallel/examples/digital/adder_cshunt.cir b/paranoia_parallel/examples/digital/adder_cshunt.cir new file mode 100644 index 000000000..9fdc5aec8 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder_cshunt.cir @@ -0,0 +1,81 @@ + ADDER - 4 BIT ALL-NAND-GATE BINARY ADDER + +*** SUBCIRCUIT DEFINITIONS +.SUBCKT NAND in1 in2 out VDD +* NODES: INPUT(2), OUTPUT, VCC +M1 out in2 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M2 net.1 in2 0 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +M3 out in1 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M4 out in1 net.1 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +.ENDS NAND + +.SUBCKT ONEBIT 1 2 3 4 5 6 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT, VCC +X1 1 2 7 6 NAND +X2 1 7 8 6 NAND +X3 2 7 9 6 NAND +X4 8 9 10 6 NAND +X5 3 10 11 6 NAND +X6 3 11 12 6 NAND +X7 10 11 13 6 NAND +X8 12 13 4 6 NAND +X9 11 7 5 6 NAND +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 9 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT, VCC +X1 1 2 7 5 10 9 ONEBIT +X2 3 4 10 6 8 9 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT, VCC +X1 1 2 3 4 9 10 13 16 15 TWOBIT +X2 5 6 7 8 11 12 16 14 15 TWOBIT +.ENDS FOURBIT + +*** POWER +VCC 99 0 DC 3.3V + +*** ALL INPUTS +VIN1A 1 0 DC 0 PULSE(0 3 0 5NS 5NS 20NS 50NS) +VIN1B 2 0 DC 0 PULSE(0 3 0 5NS 5NS 30NS 100NS) +VIN2A 3 0 DC 0 PULSE(0 3 0 5NS 5NS 50NS 200NS) +VIN2B 4 0 DC 0 PULSE(0 3 0 5NS 5NS 90NS 400NS) +VIN3A 5 0 DC 0 PULSE(0 3 0 5NS 5NS 170NS 800NS) +VIN3B 6 0 DC 0 PULSE(0 3 0 5NS 5NS 330NS 1600NS) +VIN4A 7 0 DC 0 PULSE(0 3 0 5NS 5NS 650NS 3200NS) +VIN4B 8 0 DC 0 PULSE(0 3 0 5NS 5NS 1290NS 6400NS) + +*** DEFINE NOMINAL CIRCUIT +X1 1 2 3 4 5 6 7 8 9 10 11 12 0 13 99 FOURBIT + +.option noinit acct +.option cshunt=100f +.TRAN 500p 100NS +* save inputs +.save V(1) V(2) V(3) V(4) V(5) V(6) V(7) V(8) + +* use BSIM3 model with default parameters +.model n1 nmos level=49 version=3.3.0 +.model p1 pmos level=49 version=3.3.0 +*.include ./Modelcards/modelcard32.nmos +*.include ./Modelcards/modelcard32.pmos + +.control +pre_set strict_errorhandling +unset ngdebug +*save outputs and specials +save x1.x1.x1.7 V(9) V(10) V(11) V(12) V(13) +run +rusage +* plot the inputs, use offset to plot on top of each other +plot v(1) v(2)+4 v(3)+8 v(4)+12 v(5)+16 v(6)+20 v(7)+24 v(8)+28 +* plot the outputs, use offset to plot on top of each other +plot v(9) v(10)+4 v(11)+8 v(12)+12 v(13)+16 +quit +.endc + +.END diff --git a/paranoia_parallel/examples/digital/adder_mos.cir b/paranoia_parallel/examples/digital/adder_mos.cir new file mode 100644 index 000000000..180db8af4 --- /dev/null +++ b/paranoia_parallel/examples/digital/adder_mos.cir @@ -0,0 +1,81 @@ + ADDER - 4 BIT ALL-NAND-GATE BINARY ADDER + +*** SUBCIRCUIT DEFINITIONS +.SUBCKT NAND in1 in2 out VDD +* NODES: INPUT(2), OUTPUT, VCC +M1 out in2 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M2 net.1 in2 0 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +M3 out in1 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M4 out in1 net.1 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +.ENDS NAND + +.SUBCKT ONEBIT 1 2 3 4 5 6 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT, VCC +X1 1 2 7 6 NAND +X2 1 7 8 6 NAND +X3 2 7 9 6 NAND +X4 8 9 10 6 NAND +X5 3 10 11 6 NAND +X6 3 11 12 6 NAND +X7 10 11 13 6 NAND +X8 12 13 4 6 NAND +X9 11 7 5 6 NAND +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 9 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT, VCC +X1 1 2 7 5 10 9 ONEBIT +X2 3 4 10 6 8 9 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT, VCC +X1 1 2 3 4 9 10 13 16 15 TWOBIT +X2 5 6 7 8 11 12 16 14 15 TWOBIT +.ENDS FOURBIT + +*** POWER +VCC 99 0 DC 3.3V + +*** ALL INPUTS +VIN1A 1 0 DC 0 PULSE(0 3 0 5NS 5NS 20NS 50NS) +VIN1B 2 0 DC 0 PULSE(0 3 0 5NS 5NS 30NS 100NS) +VIN2A 3 0 DC 0 PULSE(0 3 0 5NS 5NS 50NS 200NS) +VIN2B 4 0 DC 0 PULSE(0 3 0 5NS 5NS 90NS 400NS) +VIN3A 5 0 DC 0 PULSE(0 3 0 5NS 5NS 170NS 800NS) +VIN3B 6 0 DC 0 PULSE(0 3 0 5NS 5NS 330NS 1600NS) +VIN4A 7 0 DC 0 PULSE(0 3 0 5NS 5NS 650NS 3200NS) +VIN4B 8 0 DC 0 PULSE(0 3 0 5NS 5NS 1290NS 6400NS) + +*** DEFINE NOMINAL CIRCUIT +X1 1 2 3 4 5 6 7 8 9 10 11 12 0 13 99 FOURBIT + +.option noinit acct + +.TRAN 500p 100NS +* save inputs +.save V(1) V(2) V(3) V(4) V(5) V(6) V(7) V(8) + +* use BSIM3 model with default parameters +.model n1 nmos level=49 version=3.3.0 +.model p1 pmos level=49 version=3.3.0 +*.include ./Modelcards/modelcard32.nmos +*.include ./Modelcards/modelcard32.pmos + +.control +pre_set strict_errorhandling +unset ngdebug +*save outputs and specials +save x1.x1.x1.7 V(9) V(10) V(11) V(12) V(13) +run +rusage +* plot the inputs, use offset to plot on top of each other +plot v(1) v(2)+4 v(3)+8 v(4)+12 v(5)+16 v(6)+20 v(7)+24 v(8)+28 +* plot the outputs, use offset to plot on top of each other +plot v(9) v(10)+4 v(11)+8 v(12)+12 v(13)+16 +quit +.endc + +.END diff --git a/paranoia_parallel/examples/digital/nggtk.tcl b/paranoia_parallel/examples/digital/nggtk.tcl new file mode 100644 index 000000000..a8669f6f8 --- /dev/null +++ b/paranoia_parallel/examples/digital/nggtk.tcl @@ -0,0 +1,10 @@ +# tcl script for gtkwave: show vcd file data created by ngspice +set nfacs [ gtkwave::getNumFacs ] + +for {set i 0} {$i < $nfacs } {incr i} { + set facname [ gtkwave::getFacName $i ] + set num_added [ gtkwave::addSignalsFromList $facname ] +} + +gtkwave::/Edit/UnHighlight_All +gtkwave::/Time/Zoom/Zoom_Full diff --git a/paranoia_parallel/examples/digital_devices/.spiceinit b/paranoia_parallel/examples/digital_devices/.spiceinit new file mode 100644 index 000000000..aeee13ea7 --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/.spiceinit @@ -0,0 +1 @@ +set ngbehavior=ltpsa diff --git a/paranoia_parallel/examples/digital_devices/behav-568.cir b/paranoia_parallel/examples/digital_devices/behav-568.cir new file mode 100644 index 000000000..28d9170a3 --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/behav-568.cir @@ -0,0 +1,464 @@ +behav-568 74ALS568a 74F568 74LS568 + +* ----------------------------------------------------------- 74ALS568A ------ +* Synchronous 4-Bit Up/Down Binary Counters With 3-State Outputs +* +* The ALS/AS Logic Data Book, 1986, TI Pages 2-425 to 2-433 +* bss 5/3/94 +* +.SUBCKT 74ALS568A GBAR U/DB CLK ENTBAR ENPBAR SCLRBAR LOADBAR ACLRBAR ++ A B C D CCOBAR RCOBAR QA QB QC QD ++ optional: DPWR=$G_DPWR DGND=$G_DGND ++ params: MNTYMXDLY=0 IO_LEVEL=0 + +U1 dff(4) DPWR DGND ++ $D_HI ACLRBAR CLK ++ DA DB DC DD ++ QA_O QB_O QC_O QD_O ++ QABAR QBBAR QCBAR QDBAR ++ D0_EFF IO_ALS00 MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +U2LOG LOGICEXP(18,6) DPWR DGND ++ U/DB CLK ENTBAR ENPBAR SCLRBAR LOADBAR A B C D ++ QA_O QB_O QC_O QD_O QABAR QBBAR QCBAR QDBAR ++ DA DB DC DD RCOBAR_O CCOBAR_O ++ D0_GATE IO_ALS00 MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ ++ LOGIC: ++ clkbar = {~CLK} ++ sclr = {~SCLRBAR} ++ ub/d = {~U/DB} ++ ent = {~ENTBAR} ++ count = {~(ENTBAR | ENPBAR)} ++ sync2 = {~(sclr | LOADBAR)} ++ sync1 = {~(ENTBAR | ENPBAR | sclr | sync2)} ++ sync3 = {(SCLRBAR & LOADBAR)} ++ fba = {~((QABAR & U/DB) | (QA_O & ub/d))} ++ fbb = {~((QBBAR & U/DB) | (QB_O & ub/d))} ++ fbc = {~((QCBAR & U/DB) | (QC_O & ub/d))} ++ fbd = {~((QDBAR & U/DB) | (QD_O & ub/d))} ++ nand1 = {~(U/DB & fbd)} ++ nand2 = {~(QCBAR & ub/d & QDBAR)} ++ and1a = {(A & sync2)} ++ and2a = {((~sync1) & sync3 & QA_O)} ++ and3a = {((~(QA_O & sync3)) & sync1)} ++ DA = {and1a | and2a | and3a} ++ and1b = {(B & sync2)} ++ and2b = {((~(fba & sync1)) & sync3 & QB_O)} ++ and3b = {(fba & sync1 & nand2 & nand1 & QBBAR)} ++ DB = {and1b | and2b | and3b} ++ and1c = {(C & sync2)} ++ and2c = {((~(fba & fbb & sync1)) & sync3 & QC_O)} ++ and3c = {((~(QC_O & sync3)) & fbb & fba & sync1 & nand2)} ++ DC = {and1c | and2c | and3c} ++ and1d = {(D & sync2)} ++ and2d = {((~(fba & sync1)) & sync3 & QD_O)} ++ and3d = {((~(QD_O & sync3)) & fbc & fbb & fba & sync1)} ++ DD = {and1d | and2d | and3d} ++ RCOBAR_O = {~((U/DB & fbd & fba & ent) | (ent & fba & fbb & fbc & fbd & ub/d))} ++ rco = {~RCOBAR_O} ++ CCOBAR_O = {~(clkbar & count & rco)} + +U3DLY PINDLY(6,1,5) DPWR DGND ++ QA_O QB_O QC_O QD_O RCOBAR_O CCOBAR_O ++ GBAR ++ CLK U/DB ENTBAR ENPBAR ACLRBAR ++ QA QB QC QD RCOBAR CCOBAR ++ IO_ALS00 MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ ++ BOOLEAN: ++ CLOCK = {CHANGED_LH(CLK,0)} ++ CCK1 = {CHANGED(CLK,0)} ++ UPDOWN = {CHANGED(U/DB,0)} ++ ENABT = {CHANGED(ENTBAR,0)} ++ ENABP = {CHANGED(ENPBAR,0)} ++ CLEAR = {CHANGED_HL(ACLRBAR,0)} ++ ++ TRISTATE: ++ ENABLE LO=GBAR ++ QA QB QC QD = { ++ CASE( ++ CLEAR & TRN_HL, DELAY(9ns,-1,20ns), ++ CLOCK & TRN_LH, DELAY(4ns,-1,13ns), ++ CLOCK & TRN_HL, DELAY(7ns,-1,16ns), ++ TRN_ZH, DELAY(6ns,-1,18ns), ++ TRN_ZL, DELAY(6ns,-1,24ns), ++ TRN_HZ, DELAY(1ns,-1,10ns), ++ TRN_LZ, DELAY(3ns,-1,13ns), ++ DELAY(10ns,-1,25ns))} ++ ++ PINDLY: ++ RCOBAR = { ++ CASE( ++ CLOCK & TRN_LH, DELAY(12ns,-1,28ns), ++ CLOCK & TRN_HL, DELAY(10ns,-1,19ns), ++ UPDOWN & TRN_LH, DELAY(9ns,-1,23ns), ++ UPDOWN & TRN_HL, DELAY(9ns,-1,19ns), ++ ENABT & TRN_LH, DELAY(6ns,-1,15ns), ++ ENABT & TRN_HL, DELAY(4ns,-1,13ns), ++ DELAY(13ns,-1,29ns))} ++ ++ CCOBAR = { ++ CASE( ++ ENABT & TRN_LH, DELAY(5ns,-1,13ns), ++ ENABT & TRN_HL, DELAY(9ns,-1,23ns), ++ CCK1 & TRN_LH, DELAY(5ns,-1,13ns), ++ CCK1 & TRN_HL, DELAY(6ns,-1,25ns), ++ ENABP & TRN_LH, DELAY(4ns,-1,12ns), ++ ENABP & TRN_HL, DELAY(5ns,-1,14ns), ++ DELAY(10ns,-1,26ns))} + +U4CON CONSTRAINT(11) DPWR DGND ++ ACLRBAR LOADBAR CLK A B C D ENPBAR ENTBAR SCLRBAR U/DB ++ IO_ALS00 IO_LEVEL={IO_LEVEL} ++ ++ FREQ: ++ NODE=CLK ++ MAXFREQ=20MEG ++ ++ WIDTH: ++ NODE=CLK ++ MIN_HI=25ns ++ MIN_LO=25ns ++ ++ WIDTH: ++ NODE=ACLRBAR ++ MIN_LO=15ns ++ ++ WIDTH: ++ NODE=LOADBAR ++ MIN_LO=15ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CLK ++ DATA(4)=A B C D ++ SETUPTIME=20ns ++ WHEN={SCLRBAR!='0 | ACLRBAR!='0} ++ ++ SETUP_HOLD: ++ CLOCK LH=CLK ++ DATA(2)=ENPBAR ENTBAR ++ SETUPTIME_HI=30ns ++ SETUPTIME_LO=20ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CLK ++ DATA(2)=SCLRBAR LOADBAR ++ SETUPTIME_LO=15ns ++ SETUPTIME_HI=30ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CLK ++ DATA(1)=U/DB ++ SETUPTIME=30ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CLK ++ DATA(1)=ACLRBAR ++ SETUPTIME_HI=10ns + +.ENDS 74ALS568A +* +* +* ----------------------------------------------------------- 74F568 ------ +* 4-Bit Bidirectional Decade Counters With 3-State Outputs +* +* The FAST TTL Logic Data Book, 1992, Philips Pages 562 to 572 +* bss 5/3/94 +* Left out the top AND gate in the feedback for the 2nd D flip-flop +* or the logic would be wrong +* +.SUBCKT 74F568 OEBAR U/DB CP CETBAR CEPBAR SRBAR PEBAR MRBAR ++ D0 D1 D2 D3 CCBAR TCBAR Q0 Q1 Q2 Q3 ++ optional: DPWR=$G_DPWR DGND=$G_DGND ++ params: MNTYMXDLY=0 IO_LEVEL=0 + +U1 dff(4) DPWR DGND ++ $D_HI MRBAR CP ++ DA DB DC DD ++ Q0_O Q1_O Q2_O Q3_O ++ Q0BAR Q1BAR Q2BAR Q3BAR ++ D0_EFF IO_F MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +U2LOG LOGICEXP(18,6) DPWR DGND ++ U/DB CP CETBAR CEPBAR SRBAR PEBAR D0 D1 D2 D3 ++ Q0_O Q1_O Q2_O Q3_O Q0BAR Q1BAR Q2BAR Q3BAR ++ DA DB DC DD TCBAR_O CCBAR_O ++ D0_GATE IO_F MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ ++ LOGIC: ++ clkbar = {~CP} ++ ub/d = {~U/DB} ++ ent = {~CETBAR} ++ cnt = {~(SRBAR & PEBAR)} ++ cntbar = {~cnt} ++ count = {~(CETBAR | CEPBAR | cnt)} ++ nand0 = {~(D0 & SRBAR)} ++ nand1 = {~(D1 & SRBAR)} ++ nand2 = {~(D2 & SRBAR)} ++ nand3 = {~(D3 & SRBAR)} ++ fb1 = {(U/DB | ub/d)} +* Logic added to fb2 and fb3 so C would go to 5 on a count down ++ fb2 = {((Q3BAR & Q0_O & U/DB) | (Q3_O & Q2BAR & Q1BAR & Q0BAR & ub/d) | ++ (Q0BAR & Q1BAR & Q3BAR & Q2_O & ub/d) | (Q1_O & Q0BAR & ub/d))} ++ fb3 = {((Q1_O & Q0_O & U/DB) | (Q2BAR & Q1BAR & Q0BAR & Q3_O & ub/d) | ++ (Q0BAR & Q1BAR & Q2_O & Q3BAR & ub/d))} ++ fb4 = {((Q0_O & Q3_O & U/DB) | (Q2_O & Q1_O & Q0_O & U/DB) | ++ (Q2BAR & Q1BAR & Q0BAR & ub/d) | (Q0BAR & ub/d & Q3_O))} ++ TCBAR_O = {~((Q3_O & Q2BAR & Q1BAR & U/DB & Q0_O & ent) | ++ (ent & Q0BAR & Q1BAR & Q2BAR & Q3BAR & ub/d))} ++ tc = {~TCBAR_O} ++ CCBAR_O = {~(tc & clkbar & count)} ++ xor0 = {(~(fb1 & count)) ^ Q0_O} ++ xor1 = {(~(fb2 & count)) ^ Q1_O} ++ xor2 = {(~(fb3 & count)) ^ Q2_O} ++ xor3 = {(~(fb4 & count)) ^ Q3_O} ++ DA = {~((xor0 & cntbar) | (nand0 & cnt))} ++ DB = {~((xor1 & cntbar) | (nand1 & cnt))} ++ DC = {~((xor2 & cntbar) | (nand2 & cnt))} ++ DD = {~((xor3 & cntbar) | (nand3 & cnt))} + +U3DLY PINDLY(6,1,7) DPWR DGND ++ Q0_O Q1_O Q2_O Q3_O TCBAR_O CCBAR_O ++ OEBAR ++ CP U/DB CETBAR CEPBAR MRBAR SRBAR PEBAR ++ Q0 Q1 Q2 Q3 TCBAR CCBAR ++ IO_F MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ ++ BOOLEAN: ++ CLOCK = {CHANGED_LH(CP,0)} ++ CCK1 = {CHANGED(CP,0)} ++ UPDOWN = {CHANGED(U/DB,0)} ++ ENABT = {CHANGED(CETBAR,0)} ++ ENABP = {CHANGED(CEPBAR,0)} ++ CLEAR = {CHANGED_HL(MRBAR,0)} ++ SYCLR = {CHANGED(SRBAR,0)} ++ LOAD = {CHANGED(PEBAR,0)} ++ ++ TRISTATE: ++ ENABLE LO=OEBAR ++ Q0 Q1 Q2 Q3 = { ++ CASE( ++ CLEAR & TRN_HL, DELAY(6ns,8ns,11ns), ++ CLOCK & TRN_LH, DELAY(3ns,6ns,9.5ns), ++ CLOCK & TRN_HL, DELAY(4ns,7.5ns,11ns), ++ TRN_ZH, DELAY(2ns,4ns,7ns), ++ TRN_ZL, DELAY(4.5ns,6.5ns,9.5ns), ++ TRN_HZ, DELAY(1.5ns,3.5ns,6.5ns), ++ TRN_LZ, DELAY(1.5ns,3.5ns,6ns), ++ DELAY(7ns,9ns,12ns))} ++ ++ PINDLY: ++ TCBAR = { ++ CASE( ++ CLEAR, DELAY(8ns,11ns,15ns), ++ CLOCK & TRN_LH, DELAY(5.5ns,10ns,15ns), ++ CLOCK & TRN_HL, DELAY(4ns,7.5ns,11ns), ++ UPDOWN & TRN_LH, DELAY(2.5ns,5ns,9ns), ++ UPDOWN & TRN_HL, DELAY(5ns,10ns,15ns), ++ ENABT & TRN_LH, DELAY(1.5ns,3ns,6ns), ++ ENABT & TRN_HL, DELAY(2.5ns,5ns,8ns), ++ DELAY(9ns,12ns,16ns))} ++ ++ CCBAR = { ++ CASE( ++ CLEAR, DELAY(8ns,11ns,15ns), ++ UPDOWN & TRN_LH, DELAY(4.5ns,9ns,12ns), ++ UPDOWN & TRN_HL, DELAY(5ns,11ns,16ns), ++ (ENABT | ENABP) & TRN_LH, DELAY(2ns,4ns,7ns), ++ (ENABT | ENABP) & TRN_HL, DELAY(3.5ns,5.5ns,9ns), ++ CCK1 & TRN_LH, DELAY(2.5ns,4.5ns,7.5ns), ++ CCK1 & TRN_HL, DELAY(2ns,4ns,6.5ns), ++ SYCLR & TRN_LH, DELAY(5.5ns,8ns,11ns), ++ SYCLR & TRN_HL, DELAY(7.5ns,9.5ns,12ns), ++ LOAD & TRN_LH, DELAY(3ns,5ns,8ns), ++ LOAD & TRN_HL, DELAY(4ns,6ns,8.5ns), ++ DELAY(9ns,12ns,16ns))} + +U4CON CONSTRAINT(11) DPWR DGND ++ MRBAR PEBAR CP D0 D1 D2 D3 CEPBAR CETBAR SRBAR U/DB ++ IO_F IO_LEVEL={IO_LEVEL} ++ ++ WIDTH: ++ NODE=CP ++ MIN_HI=8ns ++ MIN_LO=6ns ++ ++ WIDTH: ++ NODE=MRBAR ++ MIN_LO=5ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CP ++ DATA(4)=D0 D1 D2 D3 ++ SETUPTIME=4.5ns ++ HOLDTIME=2.5ns ++ WHEN={SRBAR!='0 | MRBAR!='0} ++ ++ SETUP_HOLD: ++ CLOCK LH=CP ++ DATA(2)=CEPBAR CETBAR ++ SETUPTIME=6ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CP ++ DATA(2)=SRBAR PEBAR ++ SETUPTIME=9ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CP ++ DATA(1)=U/DB ++ SETUPTIME_HI=12.5ns ++ SETUPTIME_LO=17.5ns ++ ++ SETUP_HOLD: ++ CLOCK LH=CP ++ DATA(1)=MRBAR ++ SETUPTIME_HI=7ns + +.ENDS 74F568 + +*-----------------------------------------------------------74LS568------ + +* Four-Bit Up/Down Counters with Tri-State Outputs +* Motorola Schottky TTL Data, 1983, pages 4-321 to 4-325 +* jat 8/14/96 + +.SUBCKT 74LS568 LOADBAR A B C D CEPBAR CETBAR U/DBAR CP YA YB YC YD RCOBAR ++ ACLRBAR SCLRBAR OEBAR CCO ++ OPTIONAL: DPWR=$G_DPWR DGND=$G_DGND ++ PARAMS: MNTYMXDLY=0 IO_LEVEL=0 + +U1 LOGICEXP(18,6) DPWR DGND ++ A B C D SCLRBAR LOADBAR CEPBAR CETBAR CP U/DBAR Q0 Q1 Q2 Q3 Q0BAR Q1BAR ++ Q2BAR Q3BAR ++ D0 D1 D2 D3 RCOBARO CCOO ++ D0_GATE IO_LS MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ LOGIC: ++ CE = {~(CETBAR | CEPBAR)} ++ X1 = {~(Q0BAR & CE)} ++ X2 = {~(Q2BAR & Q3BAR)} ++ X3 = {~(Q0 & CE)} ++ X4 = {~(Q1 & Q0 & CE)} ++ X5 = {~(Q1BAR & Q0BAR & CE)} ++ X6 = {~(Q0BAR & CE)} ++ X7 = {~(Q0 & CE)} ++ D0 = {SCLRBAR & ((LOADBAR & ~CE & Q0) | (A & ~LOADBAR) | (CE & LOADBAR & Q0BAR))} ++ D1 = {SCLRBAR & ((X1 & LOADBAR & Q1 & ~U/DBAR) | (Q1BAR & X2 & ~U/DBAR & LOADBAR & Q0BAR & CE) ++ | (B & ~LOADBAR) | (Q1 & X3 & LOADBAR & U/DBAR) | ++ (Q1BAR & LOADBAR & U/DBAR & CE & Q0 & Q3BAR))} ++ D2 = {SCLRBAR & ((X4 & LOADBAR & U/DBAR & Q2) | (U/DBAR & LOADBAR & Q2BAR & Q1 & Q0 & CE) | ++ (C & ~LOADBAR) | (Q2 & X5 & LOADBAR & ~U/DBAR) | ++ (Q2BAR & ~U/DBAR & CE & LOADBAR & Q1BAR & Q0BAR & Q3))} ++ D3 = {SCLRBAR & ((X6 & LOADBAR & ~U/DBAR & Q3) | (~U/DBAR & LOADBAR & Q3BAR & Q2BAR & Q1BAR & Q0BAR & CE) | ++ (D & ~LOADBAR) | (Q3 & X7 & LOADBAR & U/DBAR) | ++ (Q3BAR & U/DBAR & CE & LOADBAR & Q0 & Q1 & Q2))} ++ RCOBARO = {~((~U/DBAR & ~CETBAR & Q0BAR & Q1BAR & Q2BAR & Q3BAR) | ++ (U/DBAR & ~CETBAR & Q0 & Q3))} ++ CCOO = {~(CE & ~RCOBARO & ~CP)} + +U2 DFF(4) DPWR DGND ++ $D_HI ACLRBAR CP ++ D0 D1 D2 D3 ++ Q0 Q1 Q2 Q3 ++ Q0BAR Q1BAR Q2BAR Q3BAR ++ D0_EFF IO_LS MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +U3 PINDLY(6,1,5) DPWR DGND ++ Q0 Q1 Q2 Q3 RCOBARO CCOO ++ OEBAR ++ CP CETBAR U/DBAR CEPBAR ACLRBAR ++ YA YB YC YD RCOBAR CCO ++ IO_LS MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} ++ BOOLEAN: ++ EDGE = {CHANGED_LH(CP,0)} ++ DOWNEDGE = {CHANGED_HL(CP,0)} ++ T = {CHANGED(CETBAR,0)} ++ P = {CHANGED(CEPBAR,0)} ++ UPDOWN = {CHANGED(U/DBAR,0)} ++ ACLEAR = {CHANGED(ACLRBAR,0)} ++ TRISTATE: ++ ENABLE LO = OEBAR ++ YA YB YC YD = { ++ CASE( ++ TRN_ZH, DELAY(-1,10NS,16NS), ++ TRN_ZL, DELAY(-1,17NS,24NS), ++ TRN_HZ, DELAY(-1,20NS,25NS), ++ TRN_LZ, DELAY(-1,17NS,27NS), ++ ACLEAR & (TRN_LH | TRN_HL), DELAY(-1,21NS,32NS), ++ EDGE & TRN_LH, DELAY(-1,15NS,24NS), ++ EDGE & TRN_HL, DELAY(-1,23NS,35NS), ++ DELAY(-1,24NS,36NS))} ++ PINDLY: ++ RCOBAR = { ++ CASE( ++ T & TRN_LH, DELAY(-1,14NS,24NS), ++ T & TRN_HL, DELAY(-1,14NS,24NS), ++ UPDOWN & TRN_LH, DELAY(-1,20NS,30NS), ++ UPDOWN & TRN_HL, DELAY(-1,15NS,24NS), ++ EDGE & TRN_LH, DELAY(-1,25NS,40NS), ++ EDGE & TRN_HL, DELAY(-1,26NS,40NS), ++ DELAY(-1,27NS,41NS))} ++ CCO = { ++ CASE( ++ (T | P) & TRN_LH, DELAY(-1,12NS,20NS), ++ (T | P) & TRN_HL, DELAY(-1,20NS,30NS), ++ DOWNEDGE & TRN_LH, DELAY(-1,17NS,27NS), ++ DOWNEDGE & TRN_HL, DELAY(-1,26NS,40NS), ++ DELAY(-1,27NS,41NS))} + +U4 CONSTRAINT(10) DPWR DGND ++ CP A B C D SCLRBAR LOADBAR U/DBAR CETBAR CEPBAR ++ IO_LS IO_LEVEL={IO_LEVEL} ++ FREQ: ++ NODE = CP ++ MAXFREQ = 25MEG ++ WIDTH: ++ NODE = CP ++ MIN_LO = 30NS ++ MIN_HI = 30NS ++ SETUP_HOLD: ++ CLOCK LH = CP ++ DATA(5) = A B C D SCLRBAR ++ SETUPTIME = 20NS ++ SETUP_HOLD: ++ CLOCK LH = CP ++ DATA(1) = LOADBAR ++ SETUPTIME = 30NS ++ SETUP_HOLD: ++ CLOCK LH = CP ++ DATA(1) = U/DBAR ++ SETUPTIME = 50NS ++ SETUP_HOLD: ++ CLOCK LH = CP ++ DATA(2) = CETBAR CEPBAR ++ SETUPTIME = 32NS + +.ENDS 74LS568 + + +* .SUBCKT 74ALS568A GBAR U/DB CLK ENTBAR ENPBAR SCLRBAR LOADBAR ACLRBAR +* + A B C D CCOBAR RCOBAR QA QB QC QD +x1 gb ub clk etbar epbar sclrb loadb mclrb d0 d1 d2 d3 ccobar rcobar qa qb qc qd 74als568a + +* .SUBCKT 74F568 OEBAR U/DB CP CETBAR CEPBAR SRBAR PEBAR MRBAR +* + D0 D1 D2 D3 CCBAR TCBAR Q0 Q1 Q2 Q3 +x2 gb ub clk etbar epbar sclrb loadb mclrb d0 d1 d2 d3 ccbar tcbar q0 q1 q2 q3 74f568 + +* .SUBCKT 74LS568 LOADBAR A B C D CEPBAR CETBAR U/DBAR CP YA YB YC YD RCOBAR +* + ACLRBAR SCLRBAR OEBAR CCO +x3 loadb d0 d1 d2 d3 epbar etbar ub clk ya yb yc yd rbar mclrb sclrb gb cco 74ls568 + +a_1 [ loadb sclrb mclrb clk gb ub d0 d1 d2 d3 epbar etbar ] input_vec1 +.model input_vec1 d_source(input_file = "behav-568.stim") + +.tran 0.1ns 8us +.control +run +listing r +* edisplay +eprint qd qc qb qa q3 q2 q1 q0 ya yb yc yd +quit +.endc +.end + diff --git a/paranoia_parallel/examples/digital_devices/behav-568.stim b/paranoia_parallel/examples/digital_devices/behav-568.stim new file mode 100644 index 000000000..fb1a602c0 --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/behav-568.stim @@ -0,0 +1,83 @@ +* t l s m c g u d d d d e e +* i o c c l b b 0 1 2 3 p t +* m a l l k b b +* e d r r +* b b b + +0ns 1s 1s 0s 0s 0s 0s 1s 0s 0s 1s 0s 0s +100ns 1s 1s 1s 0s 0s 0s 1s 0s 0s 1s 0s 0s +200ns 1s 1s 1s 1s 0s 0s 1s 0s 0s 1s 0s 0s +300ns 1s 1s 1s 0s 0s 0s 1s 0s 0s 1s 0s 0s +400ns 1s 1s 1s 1s 0s 0s 1s 0s 0s 1s 0s 0s +500ns 1s 1s 1s 0s 0s 0s 1s 0s 0s 1s 0s 0s +600ns 1s 1s 1s 1s 0s 0s 1s 0s 0s 1s 0s 0s +700ns 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +800ns 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +900ns 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +1.0us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +1.1us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +1.2us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +1.3us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +1.4us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +1.5us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +1.6us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +1.7us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +1.8us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +1.9us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +2.0us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +2.1us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +2.2us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +2.3us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +2.4us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +2.5us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +2.6us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +2.7us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +2.8us 1s 1s 1s 1s 0s 0s 1s 0s 0s 0s 0s 0s +2.9us 1s 1s 1s 0s 0s 0s 1s 0s 0s 0s 0s 0s +3.0us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +3.1us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +3.2us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +3.3us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +3.4us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +3.5us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +3.6us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +3.7us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +3.8us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +3.9us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +4.0us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +4.1us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +4.2us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +4.3us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +4.4us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +4.5us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +4.6us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +4.7us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +4.8us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +4.9us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +5.0us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +5.1us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +5.2us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +5.3us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +5.4us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +5.5us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +5.6us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +5.7us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +5.8us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +5.9us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +6.0us 0s 1s 1s 0s 0s 1s 1s 0s 1s 0s 0s 0s +6.1us 0s 1s 1s 1s 0s 1s 1s 0s 1s 0s 0s 0s +6.2us 1s 1s 1s 0s 0s 1s 1s 0s 1s 0s 0s 0s +6.3us 1s 1s 1s 1s 0s 1s 0s 0s 0s 1s 0s 0s +6.4us 1s 1s 1s 0s 0s 1s 0s 0s 0s 1s 0s 0s +6.5us 1s 1s 1s 1s 0s 1s 0s 0s 0s 1s 0s 0s +6.6us 1s 1s 1s 0s 0s 1s 0s 0s 0s 1s 0s 0s +6.7us 1s 1s 1s 1s 0s 1s 0s 0s 0s 1s 0s 0s +6.8us 1s 1s 1s 0s 0s 1s 0s 0s 0s 1s 0s 0s +6.9us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +7.0us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +7.1us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +7.2us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +7.3us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +7.4us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s +7.5us 1s 1s 1s 1s 0s 1s 1s 0s 0s 0s 0s 0s +7.6us 1s 1s 1s 0s 0s 1s 1s 0s 0s 0s 0s 0s diff --git a/paranoia_parallel/examples/digital_devices/counter.cir b/paranoia_parallel/examples/digital_devices/counter.cir new file mode 100644 index 000000000..7fa40d78b --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/counter.cir @@ -0,0 +1,49 @@ +Conversion of Pspice counter + +.subckt counter high clear clk qa qb qc qd 5 7 9 11 +U1 JKFF(1) $G_DPWR $G_DGND HIGH CLEAR CLK HIGH HIGH QA 5 ++ D0_EFF IO_STD IO_LEVEL=0 MNTYMXDLY=2 +U2 JKFF(1) $G_DPWR $G_DGND HIGH CLEAR QA HIGH HIGH QB 7 ++ D0_EFF IO_STD IO_LEVEL=0 MNTYMXDLY=2 +U3 JKFF(1) $G_DPWR $G_DGND HIGH CLEAR QB HIGH HIGH QC 9 ++ D0_EFF IO_STD IO_LEVEL=0 MNTYMXDLY=2 +U4 JKFF(1) $G_DPWR $G_DGND HIGH CLEAR QC HIGH HIGH QD 11 ++ D0_EFF IO_STD IO_LEVEL=0 MNTYMXDLY=2 +.MODEL D0_EFF UEFF () +.ends counter + +*** input sources *** +vclk 100 0 pulse( 0.0 1.0 50ns 0ns 0ns 50ns 100ns ) +vreset 200 0 pulse( 1.0 0.0 10ns 0ns 0ns 50ns ) +vhigh 300 0 DC 1.0 + +*** adc_bridge blocks *** +aconverter [100 200 300] [clock clr hi] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.1 in_high=0.9 ++ rise_delay=1.0e-12 fall_delay=1.0e-12) + +*** resistors to ground *** +r1 100 0 1k +r2 200 0 1k +r3 300 0 1k +r4 q1b 0 1k +r5 q2b 0 1k +r6 q3b 0 1k +r7 q4b 0 1k + +x1 hi clr clock q1 q2 q3 q4 q1b q2b q3b q4b counter + +.TRAN 1e-008 1u 0 +.save all + +.control +*TRAN 1e-008 1u 0 +run +listing r +display +edisplay +print q2b q3b q4b +eprint hi clr clock q1 q2 q3 q4 +quit +.endc +.END diff --git a/paranoia_parallel/examples/digital_devices/ex4.cir b/paranoia_parallel/examples/digital_devices/ex4.cir new file mode 100644 index 000000000..ec9294fc3 --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/ex4.cir @@ -0,0 +1,85 @@ +Conversion of Pspice full adder + +* ----------------------------------------------------------- 74LV86A ------ +* Quad 2-Input Exclusive-Or Gate +* +* TI PDF File +* bss 2/24/03 +* +.SUBCKT 74LV86A 1A 1B 1Y ++ optional: DPWR_3V=$G_DPWR_3V DGND_3V=$G_DGND_3V ++ params: MNTYMXDLY=0 IO_LEVEL=0 + +U1 xor DPWR_3V DGND_3V ++ 1A 1B 1Y ++ DLY_LV86 IO_LV-A MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +.model DLY_LV86 ugate (tplhTY=7.4ns tplhMX=14.5ns tphlTY=7.4ns tphlMX=14.5ns) + +.ENDS 74LV86A + +* ----------------------------------------------------------- 74LV08A ------ +* Quad 2-Input And Gate +* +* TI PDF File +* bss 2/21/03 +* +.SUBCKT 74LV08A 1A 1B 1Y ++ optional: DPWR_3V=$G_DPWR_3V DGND_3V=$G_DGND_3V ++ params: MNTYMXDLY=0 IO_LEVEL=0 + +U1 and(2) DPWR_3V DGND_3V ++ 1A 1B 1Y ++ DLY_LV08 IO_LV-A MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +.model DLY_LV08 ugate (tplhTY=7.5ns tplhMX=12.3ns tphlTY=7.5ns tphlMX=12.3ns) + +.ENDS 74LV08A + +* ----------------------------------------------------------- 74LV32A ------ +* Quad 2-Input Or Gate +* +* TI PDF File +* bss 2/24/03 +* +.SUBCKT 74LV32A 1A 1B 1Y ++ optional: DPWR_3V=$G_DPWR_3V DGND_3V=$G_DGND_3V ++ params: MNTYMXDLY=0 IO_LEVEL=0 + +U1 or(2) DPWR_3V DGND_3V ++ 1A 1B 1Y ++ DLY_LV32 IO_LV-A MNTYMXDLY={MNTYMXDLY} IO_LEVEL={IO_LEVEL} + +.model DLY_LV32 ugate ( ++ tplhTY=6.9ns tplhMX=11.4ns tphlTY=6.9ns tphlMX=11.4ns) + +.ENDS 74LV32A + +.subckt hadd a b sum carry +x1_xor a b sum 74lv86a +x2_and a b carry 74lv08a +.ends hadd + +.subckt fadd a b cin sum cout +x1_ha a b 1 2 hadd +x2_ha 1 cin sum 3 hadd +x3_or 3 2 cout 74lv32a +.ends fadd + +x1 a b cin sum cout fadd +a2 [a b cin] input_vec1 +.model input_vec1 d_source(input_file = "ex4.stim") + +.tran 0.5ns 1650ns 0 +.save all +.control +listing r +run +display +edisplay +eprint a b cin sum cout +*set xbrushwidth=3 +*plot a b cin cout sum digitop +quit +.endc +.end diff --git a/paranoia_parallel/examples/digital_devices/ex4.stim b/paranoia_parallel/examples/digital_devices/ex4.stim new file mode 100644 index 000000000..4c44c7a5f --- /dev/null +++ b/paranoia_parallel/examples/digital_devices/ex4.stim @@ -0,0 +1,13 @@ +* T a b C +* i i +* m n +* e +0.000 0s 0s 0s +2.0e-7 0s 0s 1s +4.0e-7 0s 1s 0s +6.0e-7 0s 1s 1s +8.0e-7 1s 0s 0s +10.0e-7 1s 0s 1s +12.0e-7 1s 1s 0s +14.0e-7 1s 1s 1s +16.0e-7 0s 0s 0s diff --git a/paranoia_parallel/examples/inductive-systems/positive-definite-1.cir b/paranoia_parallel/examples/inductive-systems/positive-definite-1.cir new file mode 100644 index 000000000..1d8257d56 --- /dev/null +++ b/paranoia_parallel/examples/inductive-systems/positive-definite-1.cir @@ -0,0 +1,32 @@ +* indentify non-viable inductive systems (2x2 case) + +* (compile (concat "../../../w32/src/ngspice " buffer-file-name) t) +* (compile (concat "valgrind --track-origins=yes --leak-check=full --show-reachable=yes ../../../w32/src/ngspice " buffer-file-name) t) + +.subckt ind2 a1 a2 b1 b2 L11=0 L22=0 L12=0 +R1 a1 n1 1k +L1 n1 a2 {L11} +L2 n2 b2 {L22} +R2 n2 a2 1k +K12 L1 L2 {L12/sqrt(abs(L11*L22))} +.ends + +v1 a 0 dc 1 +R1 a 0 1k +R2 b 0 1k + +Xgood1 a 0 b 0 ind2 L11=1u L22=4u L12=1.98u +Xbad2 a 0 b 0 ind2 L11=1u L22=4u L12=2.01u +Xgood3 a 0 b 0 ind2 L11=1u L22=4u L12=-1.98u +Xbad4 a 0 b 0 ind2 L11=1u L22=4u L12=-2.01u + +Xbad5 a 0 b 0 ind2 L11=1u L22=-4u L12=1n +Xbad6 a 0 b 0 ind2 L11=-1u L22=4u L12=1n + +.control +op +remcirc +quit 0 +.endc + +.end diff --git a/paranoia_parallel/examples/inductive-systems/positive-definite-2.cir b/paranoia_parallel/examples/inductive-systems/positive-definite-2.cir new file mode 100644 index 000000000..82bb92726 --- /dev/null +++ b/paranoia_parallel/examples/inductive-systems/positive-definite-2.cir @@ -0,0 +1,31 @@ +* indentify non-viable inductive systems (3xx case) + +* (compile (concat "../../../w32/src/ngspice " buffer-file-name) t) +* (compile (concat "valgrind --track-origins=yes --leak-check=full --show-reachable=yes ../../../w32/src/ngspice " buffer-file-name) t) + +.subckt ind3 a b c L11=10u L22=11u L33=10u K12=0 K13=0 K23=0 +R1 a n1 1k +R2 b n2 1k +R4 c n3 1k +L1 n1 0 {L11} +L2 n2 0 {L22} +L3 n3 0 {L33} +K12 L1 L2 {K12} +K13 L1 L3 {K13} +K23 L2 L3 {K23} +.ends + +Xgood1 a b c ind3 +Xgood2 a b c ind3 K12=0.96 K23=0.99 K13=0.98 +Xgood3 a b c ind3 K12=0.96 K23=0.99 K13=0.9898988607 +Xbad4 a b c ind3 K12=0.96 K23=0.99 K13=0.9898988608 +Xborder5 a b c ind3 K12=1 K23=1 K13=1 +Xbad6 a b c ind3 K12=1.01 K23=1 K13=1 + +.control +op +remcirc +quit 0 +.endc + +.end diff --git a/paranoia_parallel/examples/inductive-systems/positive-definite-3.cir b/paranoia_parallel/examples/inductive-systems/positive-definite-3.cir new file mode 100644 index 000000000..731bf761a --- /dev/null +++ b/paranoia_parallel/examples/inductive-systems/positive-definite-3.cir @@ -0,0 +1,33 @@ +* indentify non-viable inductive systems (4x4 case) + +* this excersices the "merging" case in muttemp.c + +* (compile (concat "../../../w32/src/ngspice " buffer-file-name) t) +* (compile (concat "valgrind --track-origins=yes --leak-check=full --show-reachable=yes ../../../w32/src/ngspice " buffer-file-name) t) + +.subckt ind4 a b c d L11=0 L22=0 L33=0 L44=0 L12=0 L13=0 L14=0 L23=0 L24=0 L34=0 +R1 a 1 1k +R2 b 2 1k +R3 c 3 1k +R4 d 4 1k +L1 a 0 {L11} +L2 b 0 {L22} +L3 c 0 {L33} +L4 d 0 {L44} +K13 L1 L3 {L13/sqrt(abs(L11*L33))} +K14 L1 L4 {L14/sqrt(abs(L11*L44))} +K23 L2 L3 {L23/sqrt(abs(L22*L33))} +K24 L2 L4 {L24/sqrt(abs(L22*L44))} +K12 L1 L2 {L12/sqrt(abs(L11*L22))} +K34 L3 L4 {L34/sqrt(abs(L33*L44))} +.ends + +Xgood1 a b c d ind4 L11=1u L22=4u L33=3u L44=5u L12=1n L13=1n L14=1n L23=1n L24=1n L34=1n + +.control +op +remcirc +quit 0 +.endc + +.end diff --git a/paranoia_parallel/examples/inductive-systems/positive-definite-4.cir b/paranoia_parallel/examples/inductive-systems/positive-definite-4.cir new file mode 100644 index 000000000..f1841c7d3 --- /dev/null +++ b/paranoia_parallel/examples/inductive-systems/positive-definite-4.cir @@ -0,0 +1,80 @@ +* indentify non-viable inductive systems ("altering" case) + +* exercise "alter" and "indverbosity" + +* (compile (concat "../../../w32/src/ngspice " buffer-file-name) t) +* (compile (concat "valgrind --track-origins=yes --leak-check=full --show-reachable=yes ../../../w32/src/ngspice " buffer-file-name) t) + + +V1 x 0 dc=0 ac=1 +Rx x 1 1 +R1 2 0 1k +R2 3 0 1k + +L1 1 0 10u +L2 2 0 11u +L3 3 0 10u + +k12 L1 L2 0 +k23 L2 L3 0 +k13 L1 L3 0 + +R101 101 0 1k +L101 101 0 1u +L102 102 0 2u +L103 103 0 3u +K1012 L101 L102 0.1 +K1013 L101 L103 0.2 + +.AC LIN 5k 1k 10MEG + +.control +listing e + +echo coupling factors 0 0 0 -- ok +op + +alter k12 0.96 +alter k23 0.99 +alter k13 0.98 +echo coupling factors 0.96 0.98 0.98 -- ok +op + +alter k12 0.96 +alter k23 0.99 +alter k13 0.9898988607 +echo coupling factors 0.96 0.98 0.9898988607 -- ok +op + +alter k12 0.96 +alter k23 0.99 +alter k13 0.9898988608 +echo coupling factors 0.96 0.98 0.9898988608 -- not ok +op + +alter k12 1 +alter k23 1 +alter k13 1 +echo coupling factors 1 1 1 -- not ok +op + +echo coupling factors 1.01 1 1 -- not ok +alter k12 1.01 +set indverbosity = 2 +echo "op with indverbosity=2" +op +set indverbosity = 1 +echo "op with indverbosity=1" +op +set indverbosity = 0 +echo "op with indverbosity=0" +op + +destroy all +remcirc + +quit + +.endc + +.END diff --git a/paranoia_parallel/examples/measure/func_cap.sp b/paranoia_parallel/examples/measure/func_cap.sp new file mode 100644 index 000000000..833d6e67e --- /dev/null +++ b/paranoia_parallel/examples/measure/func_cap.sp @@ -0,0 +1,20 @@ +* func_cap.sp + + +.func icap_calc(A,B,C,D) '2*A*sqrt(B*C*D)' + +.param cap_val = 'max(icap_calc(1,2,3,4))' +VDD 1 0 DC 1 +C1 1 0 'cap_val' + +.measure tran capacitance param='cap_val' +.measure tran capac2 param='max(icap_calc(1,2,3,4))' + +.tran 1ps 100ps + +.control +run +quit +.endc + +.end diff --git a/paranoia_parallel/examples/measure/inv-meas-tran-auto.sp b/paranoia_parallel/examples/measure/inv-meas-tran-auto.sp new file mode 100644 index 000000000..5e2e94e80 --- /dev/null +++ b/paranoia_parallel/examples/measure/inv-meas-tran-auto.sp @@ -0,0 +1,103 @@ +Inverter example circuit +* This netlist demonstrates the following: +* global nodes (vdd, gnd) +* autostop (.tran defines simulation end as 4ns but simulation stops at +* 142.5ps when .measure statements are evaluated) +* scale (all device units are in microns) +* model binning (look in device.values file for which bin chosen) +* +* m.x1.mn: +* model = nch.2 +* +* m.x1.mp: +* model = pch.2 +* +* parameters +* parameterized subckt +* vsrc with repeat +* .measure statements for delay and an example ternary operator +* device listing and parameter listing +* You can run the example circuit with this command: +* +* ngspice inverter3.sp + + +* global nodes +.global vdd gnd + +* autostop -- stop simulation early if .measure statements done +* scale -- define scale factor for mosfet device parameters (l,w,area,perimeter) +.option autostop +.option scale = 1e-6 + +* model binning +.model nch.1 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model nch.2 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) +.model pch.1 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model pch.2 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) + +* parameters +.param vp = 1.0v +.param lmin = 0.10 +.param wmin = 0.12 +.param plmin = 'lmin' +.param nlmin = 'lmin' +.param wpmin = 'wmin' +.param wnmin = 'wmin' +.param drise = 400ps +.param dfall = 100ps +.param trise = 100ps +.param tfall = 100ps +.param period = 1ns +.param skew_meas = 'vp/2' + +* parameterized subckt +.subckt inv in out pw='wpmin' pl='plmin' nw='wnmin' nl='nlmin' +mp out in vdd vdd pch w='pw' l='pl' +mn out in gnd gnd nch w='nw' l='nl' +.ends + +v0 vdd gnd 'vp' + +* vsrc with repeat +v1 in gnd pwl ++ 0ns 'vp' ++ 'dfall-0.8*tfall' 'vp' ++ 'dfall-0.4*tfall' '0.9*vp' ++ 'dfall+0.4*tfall' '0.1*vp' ++ 'dfall+0.8*tfall' 0v ++ 'drise-0.8*trise' 0v ++ 'drise-0.4*trise' '0.1*vp' ++ 'drise+0.4*trise' '0.9*vp' ++ 'drise+0.8*trise' 'vp' ++ 'period+dfall-0.8*tfall' 'vp' ++ r='dfall-0.8*tfall' + +x1 in out inv pw=60 nw=20 +c1 out gnd 220fF + +.tran 1ps 4ns + +.meas tran inv_delay trig v(in) val='vp/2' fall=1 targ v(out) val='vp/2' rise=1 +.meas tran inv_delay2 trig v(in) val='vp/2' td=1n fall=1 targ v(out) val='vp/2' rise=1 +.meas tran test_data1 trig AT = 1n targ v(out) val='vp/2' rise=3 +.meas tran out_slew trig v(out) val='0.2*vp' rise=2 targ v(out) val='0.8*vp' rise=2 +.meas tran delay_chk param='(inv_delay < 100ps) ? 1 : 0' +.meas tran skew when v(out)=0.6 +.meas tran skew2 when v(out)=skew_meas +.meas tran skew3 when v(out)=skew_meas fall=2 +.meas tran skew4 when v(out)=skew_meas fall=LAST +.meas tran skew5 FIND v(out) AT=2n +*.measure tran v0_min min i(v0) from='dfall' to='dfall+period' +*.measure tran v0_avg avg i(v0) from='dfall' to='dfall+period' +*.measure tran v0_integ integ i(v0) from='dfall' to='dfall+period' +*.measure tran v0_rms rms i(v0) from='dfall' to='dfall+period' + +.control +run +rusage all +plot v(in) v(out) +.endc + +.end + diff --git a/paranoia_parallel/examples/measure/inv-meas-tran-control.sp b/paranoia_parallel/examples/measure/inv-meas-tran-control.sp new file mode 100644 index 000000000..e31b6a98b --- /dev/null +++ b/paranoia_parallel/examples/measure/inv-meas-tran-control.sp @@ -0,0 +1,113 @@ +Inverter example circuit +* This netlist demonstrates the following: +* global nodes (vdd, gnd) +* autostop (.tran defines simulation end as 4ns but simulation stops at +* 142.5ps when .measure statements are evaluated) +* scale (all device units are in microns) +* model binning (look in device.values file for which bin chosen) +* +* m.x1.mn: +* model = nch.2 +* +* m.x1.mp: +* model = pch.2 +* +* parameters +* parameterized subckt +* vsrc with repeat +* .measure statements for delay and an example ternary operator +* device listing and parameter listing +* You can run the example circuit with this command: +* +* ngspice inverter3.sp + + +* global nodes +.global vdd gnd + +* autostop -- stop simulation early if .measure statements done +* scale -- define scale factor for mosfet device parameters (l,w,area,perimeter) +*.option autostop +.option scale = 1e-6 + +* model binning +.model nch.1 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model nch.2 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) +.model pch.1 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model pch.2 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) + +* parameters +.param vp = 1.0v +.param lmin = 0.10 +.param wmin = 0.12 +.param plmin = 'lmin' +.param nlmin = 'lmin' +.param wpmin = 'wmin' +.param wnmin = 'wmin' +.param drise = 400ps +.param dfall = 100ps +.param trise = 100ps +.param tfall = 100ps +.param period = 1ns +.param skew_meas = 'vp/2' + +* parameterized subckt +.subckt inv in out pw='wpmin' pl='plmin' nw='wnmin' nl='nlmin' +mp out in vdd vdd pch w='pw' l='pl' +mn out in gnd gnd nch w='nw' l='nl' +.ends + +v0 vdd gnd 'vp' + +* vsrc with repeat +v1 in gnd pwl ++ 0ns 'vp' ++ 'dfall-0.8*tfall' 'vp' ++ 'dfall-0.4*tfall' '0.9*vp' ++ 'dfall+0.4*tfall' '0.1*vp' ++ 'dfall+0.8*tfall' 0v ++ 'drise-0.8*trise' 0v ++ 'drise-0.4*trise' '0.1*vp' ++ 'drise+0.4*trise' '0.9*vp' ++ 'drise+0.8*trise' 'vp' ++ 'period+dfall-0.8*tfall' 'vp' ++ r='dfall-0.8*tfall' + +x1 in out inv pw=60 nw=20 +c1 out gnd 220fF + +.control +tran 1ps 4ns +meas tran inv_delay trig v(in) val=0.5 fall=1 targ v(out) val=0.5 rise=1 +meas tran inv_delay2 trig v(in) val=0.5 td=1n fall=1 targ v(out) val=0.5 rise=1 +meas tran test_data1 trig AT = 1n targ v(out) val=0.5 rise=3 +meas tran out_slew trig v(out) val=0.2 rise=2 targ v(out) val=0.8 rise=2 + +*.meas tran delay_chk param='(inv_delay < 100ps) ? 1 : 0' +if ( inv_delay < 100ps ) + let delay_chk = 1 +else + let delay_chk = 0 +end +echo delay_chk = "$&delay_chk" + +meas tran skew when v(out)=0.6 +let skew_meas = 0.5 +meas tran skew2 when v(out)=skew_meas +meas tran skew3 when v(out)=skew_meas fall=2 +meas tran skew4 when v(out)=skew_meas fall=LAST +meas tran skew5 FIND v(out) AT=2n +let dfall = 100p +let period = 1n +let delta = dfall+period +meas tran v0_min min i(v0) from=dfall to=delta +meas tran i_v0_min min_at i(v0) from=dfall to=delta +meas tran v0_avg avg i(v0) from = dfall to = delta +meas tran v0_integ integ i(v0) from=dfall to=delta +meas tran v0_rms rms i(v0) from=dfall to=delta +rusage all +plot v(in) v(out) +.endc + +.end + diff --git a/paranoia_parallel/examples/measure/inv-meas-tran.sp b/paranoia_parallel/examples/measure/inv-meas-tran.sp new file mode 100644 index 000000000..f8a4deb3c --- /dev/null +++ b/paranoia_parallel/examples/measure/inv-meas-tran.sp @@ -0,0 +1,105 @@ +Inverter example circuit +* This netlist demonstrates the following: +* global nodes (vdd, gnd) +* autostop (.tran defines simulation end as 4ns but simulation stops at +* 142.5ps when .measure statements are evaluated) +* scale (all device units are in microns) +* model binning (look in device.values file for which bin chosen) +* +* m.x1.mn: +* model = nch.2 +* +* m.x1.mp: +* model = pch.2 +* +* parameters +* parameterized subckt +* vsrc with repeat +* .measure statements for delay and an example ternary operator +* device listing and parameter listing +* You can run the example circuit with this command: +* +* ngspice inverter3.sp + + +* global nodes +.global vdd gnd + +* autostop -- stop simulation early if .measure statements done +* scale -- define scale factor for mosfet device parameters (l,w,area,perimeter) +*.option autostop +*.option scale = 1e-6 + +* model binning +.model nch.1 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model nch.2 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) +.model pch.1 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model pch.2 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) + +* parameters +.param vp = 1.0v +.param lmin = 0.10u +.param wmin = 0.12u +.param plmin = 'lmin' +.param nlmin = 'lmin' +.param wpmin = 'wmin' +.param wnmin = 'wmin' +.param drise = 400ps +.param dfall = 100ps +.param trise = 100ps +.param tfall = 100ps +.param period = 1ns +.param skew_meas = 'vp/2' + +* parameterized subckt +.subckt inv in out pw='wpmin' pl='plmin' nw='wnmin' nl='nlmin' +mp out in vdd vdd pch w='pw' l='pl' +mn out in gnd gnd nch w='nw' l='nl' +.ends + +v0 vdd gnd 'vp' + +* vsrc with repeat +v1 in gnd pwl ++ 0ns 'vp' ++ 'dfall-0.8*tfall' 'vp' ++ 'dfall-0.4*tfall' '0.9*vp' ++ 'dfall+0.4*tfall' '0.1*vp' ++ 'dfall+0.8*tfall' 0v ++ 'drise-0.8*trise' 0v ++ 'drise-0.4*trise' '0.1*vp' ++ 'drise+0.4*trise' '0.9*vp' ++ 'drise+0.8*trise' 'vp' ++ 'period+dfall-0.8*tfall' 'vp' ++ r='dfall-0.8*tfall' + +x1 in out inv pw=60u nw=20u +c1 out gnd 220fF + +.tran 10ps 4ns + +.meas tran inv_delay trig v(in) val='vp/2' fall=1 targ v(out) val='vp/2' rise=1 +.meas tran inv_delay2 trig v(in) val='vp/2' td=1n fall=1 targ v(out) val='vp/2' rise=1 +.meas tran test_data1 trig AT = 1n targ v(out) val='vp/2' rise=3 +.meas tran out_slew trig v(out) val='0.2*vp' rise=2 targ v(out) val='0.8*vp' rise=2 +.meas tran delay_chk param='(inv_delay < 100ps) ? 1 : 0' +.meas tran skew when v(out)=0.6 +.meas tran skew2 when v(out)=skew_meas +.meas tran skew3 when v(out)=skew_meas fall=2 +.meas tran skew4 when v(out)=skew_meas fall=LAST +.meas tran skew5 FIND v(out) AT=2n +.meas tran v0_min min i(v0) from='dfall' to='dfall+period' +.meas tran i_v0_min min_at i(v0) from='dfall' to='dfall+period' +.meas tran v0_avg avg i(v0) from='dfall' to='dfall+period' +.meas tran v0_integ integ i(v0) from='dfall' to='dfall+period' +.meas tran v0_rms rms i(v0) from='dfall' to='dfall+period' + +.control +run +rusage all +plot v(in) v(out) +quit +.endc + +.end + diff --git a/paranoia_parallel/examples/measure/mos-meas-dc-control.sp b/paranoia_parallel/examples/measure/mos-meas-dc-control.sp new file mode 100644 index 000000000..be6660dc3 --- /dev/null +++ b/paranoia_parallel/examples/measure/mos-meas-dc-control.sp @@ -0,0 +1,49 @@ +***** Single NMOS Transistor .measure (Id-Vd) *** +* Altering device witdth leads to select new model due to binning limits. +* New model has artificially thick gate oxide (changed from default 3n to 4n) +* to demonstrate the effect. +m1 d g s b nch L=0.6u W=9.99u ; W is slightly below binning limit + +vgs g 0 3.5 +vds d 0 3.5 +vs s 0 dc 0 +vb b 0 dc 0 + +* model binning +* uses default parameters, except toxe +.model nch.1 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u toxe=3n ) +.model nch.2 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u toxe=4n) + +.control +dc vds 0 3.5 0.05 vgs 3.5 0.5 -0.5 +meas dc is_at FIND i(vs) AT=1 +meas dc is_max max i(vs) +meas dc vds_at2 when i(vs)=10m +* starting with branches in descending order of vgs +* trig ist the first branch which crosses 5mA +* Targ is the first branch crossing 10mA +meas dc vd_diff1 trig i(vs) val=0.005 rise=1 targ i(vs) val=0.01 rise=1 +* trig ist the first branch which crosses 5mA +* Targ is the second branch crossing 10mA +meas dc vd_diff2 trig i(vs) val=0.005 rise=2 targ i(vs) val=0.01 rise=2 +alter @m1[w]=10.01u ; W is slightly above binning limit +dc vds 0 3.5 0.05 vgs 3.5 0.5 -0.5 +meas dc is_at FIND i(vs) AT=1 +meas dc is_max max i(vs) +meas dc vds_at2 when i(vs)=10m +meas dc vd_diff1 trig i(vs) val=0.005 rise=1 targ i(vs) val=0.01 rise=1 +* there is only one branch crossing 10mA, so this second meas fails with targ out of interval +echo +echo The next one will fail (no two branches crossing 10 mA): +meas dc vd_diff2 trig i(vs) val=0.005 rise=2 targ i(vs) val=0.01 rise=2 +*rusage all +plot dc1.i(vs) i(vs) +.endc + + +.end + + + + + diff --git a/paranoia_parallel/examples/measure/mos-meas-dc.sp b/paranoia_parallel/examples/measure/mos-meas-dc.sp new file mode 100644 index 000000000..1cbd6b399 --- /dev/null +++ b/paranoia_parallel/examples/measure/mos-meas-dc.sp @@ -0,0 +1,38 @@ +***** Single NMOS Transistor .measure (Id-Vd) *** +m1 d g s b nch L=0.6u W=10.0u + +vgs g 0 3.5 +vds d 0 3.5 +vs s 0 dc 0 +vb b 0 dc 0 + +.dc vds 0 3.5 0.05 vgs 0.5 3.5 0.5 + +.print dc v(1) i(vs) + +* model binning +.model nch.1 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model nch.2 nmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) +.model pch.1 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=0.1u wmax=10u ) +.model pch.2 pmos ( version=4.7 level=54 lmin=0.1u lmax=20u wmin=10u wmax=100u ) + +.meas dc is_at FIND i(vs) AT=1 +.meas dc is_max max i(vs) from=0 to=3.5 +.meas dc vds_at2 when i(vs)=10m +.meas dc vd_diff1 trig i(vs) val=0.005 rise=1 targ i(vs) val=0.01 rise=1 +.meas dc vd_diff2 trig i(vs) val=0.005 rise=1 targ i(vs) val=0.01 rise=2 + +.control +run +*rusage all +plot i(vs) +quit +.endc + + +.end + + + + + diff --git a/paranoia_parallel/examples/measure/rc-meas-ac-control.sp b/paranoia_parallel/examples/measure/rc-meas-ac-control.sp new file mode 100644 index 000000000..9b57929d5 --- /dev/null +++ b/paranoia_parallel/examples/measure/rc-meas-ac-control.sp @@ -0,0 +1,64 @@ +RC band pass example circuit +* This netlist demonstrates the following: +* global nodes (vdd, gnd) + +* .measure statements for delay and an example ternary operator + +* You can run the example circuit with this command: +* +* ngspice rc-meas-ac.sp + + +* global nodes +.global vdd gnd + +* autostop -- stop simulation early if .measure statements done +*.option autostop + +vin in gnd dc 0 ac 1 + +R1 in mid1 1k +c1 mid1 gnd 1n +C2 mid1 out 500p +R2 out gnd 1k + + +.control +ac DEC 10 1k 10MEG +meas ac vout_at FIND v(out) AT=1MEG +meas ac vout_atr FIND vr(out) AT=1MEG +meas ac vout_ati FIND vi(out) AT=1MEG +meas ac vout_atm FIND vm(out) AT=1MEG +meas ac vout_atp FIND vp(out) AT=1MEG +meas ac vout_atd FIND vdb(out) AT=1MEG +meas ac vout_max max v(out) from=1k to=10MEG +meas ac freq_at when v(out)=0.1 +meas ac vout_diff trig v(out) val=0.1 rise=1 targ v(out) val=0.1 fall=1 +meas ac fixed_diff trig AT = 10k targ v(out) val=0.1 rise=1 +meas ac vout_avg avg v(out) from=10k to=1MEG +meas ac vout_integ integ v(out) from=20k to=500k +meas ac freq_at2 when v(out)=0.1 fall=LAST +*meas ac bw_chk param='(vout_diff < 100k) ? 1 : 0' +if (vout_diff < 100k) + let bw_chk = 1 +else + let bw_chk = 0 +end +echo bw_chk = "$&bw_chk" +*meas ac bw_chk2 param='(vout_diff > 500k) ? 1 : 0' +if (vout_diff > 500k) + let bw_chk2 = 1 +else + let bw_chk2 = 0 +end +echo bw_chk2 = "$&bw_chk2" +meas ac vout_rms rms v(out) from=10 to=1G +*rusage all +plot v(out) +plot ph(v(out)) +plot mag(v(out)) +plot db(v(out)) +.endc + +.end + diff --git a/paranoia_parallel/examples/measure/rc-meas-ac.sp b/paranoia_parallel/examples/measure/rc-meas-ac.sp new file mode 100644 index 000000000..6ad114bc7 --- /dev/null +++ b/paranoia_parallel/examples/measure/rc-meas-ac.sp @@ -0,0 +1,55 @@ +RC band pass example circuit +* This netlist demonstrates the following: +* global nodes (vdd, gnd) + +* .measure statements for delay and an example ternary operator + +* You can run the example circuit with this command: +* +* ngspice rc-meas-ac.sp + + +* global nodes +.global vdd gnd + +* autostop -- stop simulation early if .measure statements done +*.option autostop + +vin in gnd dc 0 ac 1 + +R1 in mid1 1k +c1 mid1 gnd 1n +C2 mid1 out 500p +R2 out gnd 1k + +.ac DEC 10 1k 10MEG + +.meas ac vout_at FIND v(out) AT=1MEG +.meas ac vout_atr FIND vr(out) AT=1MEG +.meas ac vout_ati FIND vi(out) AT=1MEG +.meas ac vout_atm FIND vm(out) AT=1MEG +.meas ac vout_atp FIND vp(out) AT=1MEG +.meas ac vout_atd FIND vdb(out) AT=1MEG +.meas ac vout_max max v(out) from=1k to=10MEG +.meas ac freq_at when v(out)=0.1 +.meas ac vout_diff trig v(out) val=0.1 rise=1 targ v(out) val=0.1 fall=1 +.meas ac fixed_diff trig AT = 10k targ v(out) val=0.1 rise=1 +.meas ac vout_avg avg v(out) from=10k to=1MEG +.meas ac vout_integ integ v(out) from=20k to=500k +.meas ac freq_at2 when v(out)=0.1 fall=LAST +.meas ac bw_chk param='(vout_diff < 100k) ? 1 : 0' +.meas ac bw_chk2 param='(vout_diff > 500k) ? 1 : 0' +.meas ac vout_rms rms v(out) from=10 to=1G + +.control +run +*rusage all +plot v(out) +plot ph(v(out)) +plot mag(v(out)) +plot db(v(out)) +quit +.endc + +.end + diff --git a/paranoia_parallel/examples/measure/simple-meas-tran.sp b/paranoia_parallel/examples/measure/simple-meas-tran.sp new file mode 100644 index 000000000..4bfcf54d5 --- /dev/null +++ b/paranoia_parallel/examples/measure/simple-meas-tran.sp @@ -0,0 +1,57 @@ +File: simple-meas-tran.sp +* Simple .measurement examples +* transient simulation of two sine signals with different frequencies +vac1 1 0 DC 0 sin(0 1 1k 0 0) +R1 1 0 100k +vac2 2 0 DC 0 sin(0 1.2 0.9k 0 0) +.tran 10u 5m +* +.measure tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 RISE=2 +.measure tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 RISE=3 +.measure tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 FALL=1 +.measure tran tdiff TRIG v(1) VAL=0 FALL=3 TARG v(2) VAL=0 FALL=3 +.measure tran tdiff TRIG v(1) VAL=-0.6 CROSS=1 TARG v(2) VAL=-0.8 CROSS=1 +.measure tran tdiff TRIG AT=1m TARG v(2) VAL=-0.8 CROSS=3 +.measure tran teval WHEN v(2)=0.7 CROSS=LAST +.measure tran teval WHEN v(2)=v(1) FALL=LAST +.measure tran teval WHEN v(1)=v(2) CROSS=LAST +.measure tran yeval FIND v(2) WHEN v(1)=0.2 FALL=2 +.measure tran yeval FIND v(2) AT=2m +.measure tran ymax MAX v(2) from=2m to=3m +.measure tran tymax MAX_AT v(2) from=2m to=3m +.measure tran ypp PP v(1) from=2m to=4m +.measure tran yrms RMS v(1) from=2m to=3.5m +.measure tran yavg AVG v(1) from=2m to=4m +.measure tran yint INTEG v(2) from=2m to=3m +.param fval=5 +.measure tran yadd param='fval + 7' +.param vout_diff=50k +.meas tran bw_chk param='(vout_diff < 100k) ? 1 : 0' +.measure tran vtest find par('v(2)*v(1)') AT=2.3m +* +.control +run +plot v(1) v(2) +gnuplot ttt i(vac1) +meas tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 RISE=2 +meas tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 RISE=3 +meas tran tdiff TRIG v(1) VAL=0.5 RISE=1 TARG v(1) VAL=0.5 FALL=1 +meas tran tdiff TRIG v(1) VAL=0 FALL=3 TARG v(2) VAL=0 FALL=3 +meas tran tdiff TRIG v(1) VAL=-0.6 CROSS=1 TARG v(2) VAL=-0.8 CROSS=1 +meas tran tdiff TRIG AT=1m TARG v(2) VAL=-0.8 CROSS=3 +meas tran teval WHEN v(2)=0.7 CROSS=LAST +meas tran teval WHEN v(2)=v(1) FALL=LAST +meas tran teval WHEN v(1)=v(2) CROSS=LAST +meas tran yeval FIND v(2) WHEN v(1)=0.2 FALL=2 +meas tran yeval FIND v(2) AT=2m +meas tran ymax MAX v(2) from=2m to=3m +meas tran tymax MAX_AT v(2) from=2m to=3m +meas tran ypp PP v(1) from=2m to=4m +meas tran yrms RMS v(1) from=2m to=3.5m +meas tran yavg AVG v(1) from=2m to=4m +meas tran yint INTEG v(2) from=2m to=3m +meas tran ymax MAX v(2) from=2m to=3m +meas tran tmax WHEN v(2)=YMAX from=1m to=2m ; from..to.. not recognized! +quit +.endc +.end diff --git a/paranoia_parallel/examples/memristor/memristor.sp b/paranoia_parallel/examples/memristor/memristor.sp new file mode 100644 index 000000000..4f51bab83 --- /dev/null +++ b/paranoia_parallel/examples/memristor/memristor.sp @@ -0,0 +1,66 @@ +Memristor with threshold +* Y. V. Pershin, M. Di Ventra: "SPICE model of memristive devices with threshold", +* arXiv:1204.2600v1 [physics.comp-ph] 12 Apr 2012, +* http://arxiv.org/pdf/1204.2600.pdf + +* Parameter selection and plotting by +* Holger Vogt 2012 + +.param stime=10n +.param vmax = 3 + +* send parameters to the .control section +.csparam stime={stime} +.csparam vmax={vmax} + +Xmem 1 0 memristor +* triangular sweep (you have to adapt the parameters to 'alter' command in the .control section) +*V1 1 0 DC 0 PWL(0 0 '0.25*stime' 'vmax' '0.5*stime' 0 '0.75*stime' '-vmax' 'stime' 0) +* sinusoidal sweep +V1 0 1 DC 0 sin(0 'vmax' '1/stime') + +* memristor model with limits and threshold +* "artificial" parameters alpha, beta, and vtt. beta and vtt adapted to basic programming frequency +* just to obtain nice results! +* You have to care for the physics and set real values! +.subckt memristor plus minus PARAMS: Ron=1K Roff=10K Rinit=7.0K alpha=0 beta=20e3/stime Vtt=1.6 +Bx 0 x I='((f1(V(plus)-V(minus))> 0) && (V(x) < Roff)) ? {f1(V(plus)-V(minus))}: ((((f1(V(plus)-V(minus)) < 0) && (V(x)>Ron)) ? {f1(V(plus)-V(minus))}: 0)) ' +Vx x x1 dc 0 +Cx x1 0 1 IC={Rinit} +Rmem plus minus r={V(x)} +.func f1(y)={beta*y+0.5*(alpha-beta)*(abs(y+Vtt)-abs(y-Vtt))} +.ends + +* transient simulation same programming voltage but rising frequencies +.control +*** first simulation *** +* approx. 100 simulation points +let deltime = stime/100 +tran $&deltime $&stime uic +* plot i(v1) vs v(1) +*** you may just stop here *** +* raise the frequency +let newfreq = 1.1/stime +let newstime = stime/1.1 +let deltime = newstime/100 +alter @V1[sin] [ 0 $&vmax $&newfreq ] +tran $&deltime $&newstime uic +* raise the frequency even more +let newfreq = 1.4/stime +let newstime = stime/1.4 +let deltime = newstime/100 +alter @V1[sin] [ 0 $&vmax $&newfreq ] +tran $&deltime $&newstime uic +* the 'programming' currents +plot tran1.alli tran2.alli alli title 'Memristor with threshold: Internal Programming currents' +* resistance versus time plot +settype impedance xmem.x1 tran1.xmem.x1 tran2.xmem.x1 +plot xmem.x1 tran1.xmem.x1 tran2.xmem.x1 title 'Memristor with threshold: resistance' +* resistance versus voltage (change occurs only above threshold!) +plot xmem.x1 vs v(1) tran1.xmem.x1 vs tran1.v(1) tran2.xmem.x1 vs tran2.v(1) title 'Memristor with threshold: resistance' +* current through resistor for all plots versus voltage +plot i(v1) vs v(1) tran1.i(v1) vs tran1.v(1) tran2.i(v1) vs tran2.v(1) title 'Memristor with threshold: external current loops' +quit +.endc + +.end diff --git a/paranoia_parallel/examples/memristor/memristor_x.sp b/paranoia_parallel/examples/memristor/memristor_x.sp new file mode 100644 index 000000000..1057d4cac --- /dev/null +++ b/paranoia_parallel/examples/memristor/memristor_x.sp @@ -0,0 +1,84 @@ +Memristor with threshold as XSPICE code model +* Y. V. Pershin, M. Di Ventra: "SPICE model of memristive devices with threshold", +* arXiv:1204.2600v1 [physics.comp-ph] 12 Apr 2012, +* http://arxiv.org/pdf/1204.2600.pdf + +* XSPICE code model, parameter selection and plotting by +* Holger Vogt 2012 + +* ac and op (dc) simulation just use start resistance rinit! + +.param stime=10n +.param vmax = 4.2 + +* send parameters to the .control section +.csparam stime={stime} +.csparam vmax={vmax} + +*Xmem 1 0 memristor +* triangular sweep (you have to adapt the parameters to 'alter' command in the .control section) +*V1 1 0 DC 0 PWL(0 0 '0.25*stime' 'vmax' '0.5*stime' 0 '0.75*stime' '-vmax' 'stime' 0) +* sinusoidal sweep for transient, dc for op, ac +V1 0 1 DC 0.1 ac 1 sin(0 'vmax' '1/stime') + +Rl 1 11 1k + +* memristor model with limits and threshold +* "artificial" parameters alpha, beta, and vt. beta and vt adapted to basic programming frequency +* just to obtain nice results! +* You have to care for the physics and set real values! +amen 11 2 memr +.model memr memristor (rmin=1k rmax=10k rinit=7k alpha=0 beta='20e3/stime' vt=1.6) + +vgnd 2 0 dc 0 + +* This is the original subcircuit model +.subckt memristor plus minus PARAMS: Ron=1K Roff=10K Rinit=7.0K alpha=0 beta=20e3/stime Vt=1.6 +Bx 0 x I='((f1(V(plus)-V(minus))> 0) && (V(x) < Roff)) ? {f1(V(plus)-V(minus))}: ((((f1(V(plus)-V(minus)) < 0) && (V(x)>Ron)) ? {f1(V(plus)-V(minus))}: 0)) ' +Vx x x1 dc 0 +Cx x1 0 1 IC={Rinit} +Rmem plus minus r={V(x)} +.func f1(y)={beta*y+0.5*(alpha-beta)*(abs(y+Vt)-abs(y-Vt))} +.ends + +* transient simulation same programming voltage but rising frequencies +.control +*** first simulation *** +op +print all +ac lin 101 1 100k +plot v(11) +* approx. 100 simulation points +let deltime = stime/100 +tran $&deltime $&stime uic +* plot i(v1) vs v(1) +*** you may just stop here *** +* raise the frequency +let newfreq = 1.2/stime +let newstime = stime/1.2 +let deltime = newstime/100 +alter @V1[sin] [ 0 $&vmax $&newfreq ] +tran $&deltime $&newstime uic +* raise the frequency even more +let newfreq = 1.4/stime +let newstime = stime/1.4 +let deltime = newstime/100 +alter @V1[sin] [ 0 $&vmax $&newfreq ] +tran $&deltime $&newstime uic +* the resistor currents +plot tran1.alli tran2.alli alli title 'Memristor with threshold: currents' +* calculate resistance (avoid dividing by zero) +let res = v(1)/(I(v1) + 1e-16) +let res1 = tran1.v(1)/(tran1.I(v1) + 1e-16) +let res2 = tran2.v(1)/(tran2.I(v1) + 1e-16) +* resistance versus time plot +settype impedance res res1 res2 +plot res vs time res1 vs tran1.time res2 vs tran2.time title 'Memristor with threshold: resistance' +* resistance versus voltage (change occurs only above threshold!) +plot res vs v(1) res1 vs tran1.v(1) res2 vs tran2.v(1) title 'Memristor with threshold: resistance' +* current through resistor for all plots versus voltage +plot i(v1) vs v(1) tran1.i(v1) vs tran1.v(1) tran2.i(v1) vs tran2.v(1) title 'Memristor with threshold: external current loops' +quit +.endc + +.end diff --git a/paranoia_parallel/examples/optran/.spiceinit b/paranoia_parallel/examples/optran/.spiceinit new file mode 100644 index 000000000..c4f7df585 --- /dev/null +++ b/paranoia_parallel/examples/optran/.spiceinit @@ -0,0 +1,5 @@ +set ngbehavior=ps +* Standard ngspice init file +alias exit quit +* step size is limited to TSTEP in tansient simulation +set stepsizelimit diff --git a/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-in.cir b/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-in.cir new file mode 100644 index 000000000..68b304739 --- /dev/null +++ b/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-in.cir @@ -0,0 +1,92 @@ +.title KiCad schematic +.include "F5models.lib" +.include "c:\Spice64\bin\F5interm.inc" +R2 in 0 47.5k +R1 Net-_Q1-Pad2_ in 1k +R5 +32 Net-_P1-Pad1_ 1k +R3 Net-_P3-Pad1_ 0 10 +R4 0 Net-_P3-Pad3_ 10 +R6 Net-_P2-Pad1_ -32 1k +R7 out Net-_P3-Pad1_ 220 +R8 out Net-_P3-Pad1_ 220 +R9 out Net-_P3-Pad3_ 220 +R10 out Net-_P3-Pad3_ 220 +R11 Net-_R11-Pad1_ Net-_P1-Pad1_ 2.2k +R13 Net-_Q3-Pad2_ Net-_P1-Pad1_ 47.5 +R15 Net-_Q5-Pad2_ Net-_P2-Pad1_ 47.5 +R12 Net-_R12-Pad1_ Net-_P2-Pad1_ 2.2k +R17 +32 Net-_D3a1-Pad1_ 1 +R21 Net-_D1a1-Pad2_ -32 1 +R18 +32 Net-_D3a1-Pad1_ 1 +R22 Net-_D1a1-Pad2_ -32 1 +R16 Net-_Q6-Pad2_ Net-_P2-Pad1_ 47.5 +R14 Net-_Q4-Pad2_ Net-_P1-Pad1_ 47.5 +R19 +32 Net-_D4a1-Pad1_ 1 +R23 Net-_D2a1-Pad2_ -32 1 +R20 +32 Net-_D4a1-Pad1_ 1 +R24 Net-_D2a1-Pad2_ -32 1 +Ra2 Net-_Ra1-Pad2_ 0 4 +D3a1 +32 Net-_D3a1-Pad1_ DMOD +D1a1 Net-_D1a1-Pad2_ -32 DMOD +D3b1 +32 Net-_D3a1-Pad1_ DMOD +D1b1 Net-_D1a1-Pad2_ -32 DMOD +D4a1 +32 Net-_D4a1-Pad1_ DMOD +D2a1 Net-_D2a1-Pad2_ -32 DMOD +D4b1 +32 Net-_D4a1-Pad1_ DMOD +D2b1 Net-_D2a1-Pad2_ -32 DMOD +XP3 Net-_P3-Pad1_ 0 Net-_P3-Pad3_ RPOT value=200 ratio={rp3} +XP1 Net-_P1-Pad1_ +32 +32 RPOT value=5k ratio={rp1} +XP2 Net-_P2-Pad1_ -32 -32 RPOT value=5k ratio={rp2} +V3 in 0 dc 0 ac 1 sin(0 2 1k 5m) +JQ1 Net-_P1-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad1_ 2SK170 +JQ2 Net-_P2-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad3_ 2SJ74 +MQ5 out Net-_Q5-Pad2_ Net-_D1a1-Pad2_ Q5tj Q5tc IRFP240 thermal +MQ4 out Net-_Q4-Pad2_ Net-_D4a1-Pad1_ Q4tj Q4tc IRFP9240 thermal +MQ6 out Net-_Q6-Pad2_ Net-_D2a1-Pad2_ Q6tj Q6tc IRFP240 thermal +Rj1 Q3tj 0 1G +Rj2 Q4tj 0 1G +Rj3 Q5tj 0 1G +Rj4 Q6tj 0 1G +Rc2 Q3hs Net-_Rc2-Pad2_ {hs} +Rc4 Q4hs Net-_Rc2-Pad2_ {hs} +Rc6 Q5hs Net-_Rc2-Pad2_ {hs} +Rc8 Q6hs Net-_Rc2-Pad2_ {hs} +Rc1 Q3tc Q3hs {chs} +Rc3 Q4tc Q4hs {chs} +Rc5 Q5tc Q5hs {chs} +Rc7 Q6tc Q6hs {chs} +Vt1 Net-_Rc2-Pad2_ 0 {envtemp} +Cc1 Q3hs 0 {hscc} +Cc3 Q5hs 0 {hscc} +Cc4 Q6hs 0 {hscc} +V1 +32 0 dc 32 ; pulse(0 32 0.4m 2m 2m 100 200) +V2 -32 0 dc -32 ; pulse(0 -32 0.4m 2m 2m 100 200) +XTH2 Net-_D1a1-Pad2_ Q5hs Net-_R12-Pad1_ th R25=4.7k +XTH1 Net-_D3a1-Pad1_ Q3hs Net-_R11-Pad1_ th R25=4.7k +MQ3 out Net-_Q3-Pad2_ Net-_D3a1-Pad1_ Q3tj Q3tc IRFP9240 thermal +Vs1 Net-_S1-Pad3_ 0 dc 0 pulse(0 5 6 1m 1m 20 20) +XS1 Net-_Ra1-Pad2_ 0 Net-_S1-Pad3_ 0 genrelay +Cc2 Q4hs 0 {hscc} +Ra1 out Net-_Ra1-Pad2_ 4 + +.param envtemp=40 +.param chs=1 +.param hs=1.2 +.param hscc=1 +.param rp2=0.21 +.param rp1=0.36 +.param rp3=0.505 + +.control +tran 20u 5 uic +* temperature transistor Q6 +set xbrushwidth=4 +settype temperature q6tj q6tc q6hs +plot q6tj q6tc q6hs q3tj q3tc q3hs ylimit 0 160 +set xbrushwidth=2 +* input and output voltages +plot in out +.endc + + +.end diff --git a/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-out.cir b/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-out.cir new file mode 100644 index 000000000..d0d428778 --- /dev/null +++ b/paranoia_parallel/examples/optran/F5TurboV2thermal-ic-out.cir @@ -0,0 +1,79 @@ +.title KiCad schematic +.include "F5models.lib" +.include "script-icout.txt" +R2 in 0 47.5k +R1 Net-_Q1-Pad2_ in 1k +R5 +32 Net-_P1-Pad1_ 1k +R3 Net-_P3-Pad1_ 0 10 +R4 0 Net-_P3-Pad3_ 10 +R6 Net-_P2-Pad1_ -32 1k +R7 out Net-_P3-Pad1_ 220 +R8 out Net-_P3-Pad1_ 220 +R9 out Net-_P3-Pad3_ 220 +R10 out Net-_P3-Pad3_ 220 +R11 Net-_R11-Pad1_ Net-_P1-Pad1_ 2.2k +R13 Net-_Q3-Pad2_ Net-_P1-Pad1_ 47.5 +R15 Net-_Q5-Pad2_ Net-_P2-Pad1_ 47.5 +R12 Net-_R12-Pad1_ Net-_P2-Pad1_ 2.2k +R17 +32 Net-_D3a1-Pad1_ 1 +R21 Net-_D1a1-Pad2_ -32 1 +R18 +32 Net-_D3a1-Pad1_ 1 +R22 Net-_D1a1-Pad2_ -32 1 +R16 Net-_Q6-Pad2_ Net-_P2-Pad1_ 47.5 +R14 Net-_Q4-Pad2_ Net-_P1-Pad1_ 47.5 +R19 +32 Net-_D4a1-Pad1_ 1 +R23 Net-_D2a1-Pad2_ -32 1 +R20 +32 Net-_D4a1-Pad1_ 1 +R24 Net-_D2a1-Pad2_ -32 1 +Ra2 Net-_Ra1-Pad2_ 0 4 +D3a1 +32 Net-_D3a1-Pad1_ DMOD +D1a1 Net-_D1a1-Pad2_ -32 DMOD +D3b1 +32 Net-_D3a1-Pad1_ DMOD +D1b1 Net-_D1a1-Pad2_ -32 DMOD +D4a1 +32 Net-_D4a1-Pad1_ DMOD +D2a1 Net-_D2a1-Pad2_ -32 DMOD +D4b1 +32 Net-_D4a1-Pad1_ DMOD +D2b1 Net-_D2a1-Pad2_ -32 DMOD +XP3 Net-_P3-Pad1_ 0 Net-_P3-Pad3_ RPOT value=200 ratio={rp3} +XP1 Net-_P1-Pad1_ +32 +32 RPOT value=5k ratio={rp1} +XP2 Net-_P2-Pad1_ -32 -32 RPOT value=5k ratio={rp2} +V3 in 0 dc 0 ac 1 sin(0 2 1k 5m) +JQ1 Net-_P1-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad1_ 2SK170 +JQ2 Net-_P2-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad3_ 2SJ74 +MQ5 out Net-_Q5-Pad2_ Net-_D1a1-Pad2_ Q5tj Q5tc IRFP240 thermal +MQ4 out Net-_Q4-Pad2_ Net-_D4a1-Pad1_ Q4tj Q4tc IRFP9240 thermal +MQ6 out Net-_Q6-Pad2_ Net-_D2a1-Pad2_ Q6tj Q6tc IRFP240 thermal +Rj1 Q3tj 0 1G +Rj2 Q4tj 0 1G +Rj3 Q5tj 0 1G +Rj4 Q6tj 0 1G +Rc2 Q3hs Net-_Rc2-Pad2_ {hs} +Rc4 Q4hs Net-_Rc2-Pad2_ {hs} +Rc6 Q5hs Net-_Rc2-Pad2_ {hs} +Rc8 Q6hs Net-_Rc2-Pad2_ {hs} +Rc1 Q3tc Q3hs {chs} +Rc3 Q4tc Q4hs {chs} +Rc5 Q5tc Q5hs {chs} +Rc7 Q6tc Q6hs {chs} +Vt1 Net-_Rc2-Pad2_ 0 {envtemp} +Cc1 Q3hs 0 {hscc} +Cc3 Q5hs 0 {hscc} +Cc4 Q6hs 0 {hscc} +V1 +32 0 dc 32 ; pulse(0 32 0.4m 2m 2m 100 200) +V2 -32 0 dc -32 ; pulse(0 -32 0.4m 2m 2m 100 200) +XTH2 Net-_D1a1-Pad2_ Q5hs Net-_R12-Pad1_ th R25=4.7k +XTH1 Net-_D3a1-Pad1_ Q3hs Net-_R11-Pad1_ th R25=4.7k +MQ3 out Net-_Q3-Pad2_ Net-_D3a1-Pad1_ Q3tj Q3tc IRFP9240 thermal +Vs1 Net-_S1-Pad3_ 0 dc 0 pulse(0 5 6 1m 1m 20 20) +XS1 Net-_Ra1-Pad2_ 0 Net-_S1-Pad3_ 0 genrelay +Cc2 Q4hs 0 {hscc} +Ra1 out Net-_Ra1-Pad2_ 4 +.tran 20u 5 +.param envtemp=40 +.param chs=1 +.param hs=1.2 +.param hscc=1 +.param rp2=0.21 +.param rp1=0.36 +.param rp3=0.505 +.end diff --git a/paranoia_parallel/examples/optran/F5TurboV2thermal-optran.cir b/paranoia_parallel/examples/optran/F5TurboV2thermal-optran.cir new file mode 100644 index 000000000..3b30bcd3e --- /dev/null +++ b/paranoia_parallel/examples/optran/F5TurboV2thermal-optran.cir @@ -0,0 +1,79 @@ +.title KiCad schematic +.include "F5models.lib" +.include "script-optran.txt" +R2 in 0 47.5k +R1 Net-_Q1-Pad2_ in 1k +R5 +32 Net-_P1-Pad1_ 1k +R3 Net-_P3-Pad1_ 0 10 +R4 0 Net-_P3-Pad3_ 10 +R6 Net-_P2-Pad1_ -32 1k +R7 out Net-_P3-Pad1_ 220 +R8 out Net-_P3-Pad1_ 220 +R9 out Net-_P3-Pad3_ 220 +R10 out Net-_P3-Pad3_ 220 +R11 Net-_R11-Pad1_ Net-_P1-Pad1_ 2.2k +R13 Net-_Q3-Pad2_ Net-_P1-Pad1_ 47.5 +R15 Net-_Q5-Pad2_ Net-_P2-Pad1_ 47.5 +R12 Net-_R12-Pad1_ Net-_P2-Pad1_ 2.2k +R17 +32 Net-_D3a1-Pad1_ 1 +R21 Net-_D1a1-Pad2_ -32 1 +R18 +32 Net-_D3a1-Pad1_ 1 +R22 Net-_D1a1-Pad2_ -32 1 +R16 Net-_Q6-Pad2_ Net-_P2-Pad1_ 47.5 +R14 Net-_Q4-Pad2_ Net-_P1-Pad1_ 47.5 +R19 +32 Net-_D4a1-Pad1_ 1 +R23 Net-_D2a1-Pad2_ -32 1 +R20 +32 Net-_D4a1-Pad1_ 1 +R24 Net-_D2a1-Pad2_ -32 1 +Ra2 Net-_Ra1-Pad2_ 0 4 +D3a1 +32 Net-_D3a1-Pad1_ DMOD +D1a1 Net-_D1a1-Pad2_ -32 DMOD +D3b1 +32 Net-_D3a1-Pad1_ DMOD +D1b1 Net-_D1a1-Pad2_ -32 DMOD +D4a1 +32 Net-_D4a1-Pad1_ DMOD +D2a1 Net-_D2a1-Pad2_ -32 DMOD +D4b1 +32 Net-_D4a1-Pad1_ DMOD +D2b1 Net-_D2a1-Pad2_ -32 DMOD +XP3 Net-_P3-Pad1_ 0 Net-_P3-Pad3_ RPOT value=200 ratio={rp3} +XP1 Net-_P1-Pad1_ +32 +32 RPOT value=5k ratio={rp1} +XP2 Net-_P2-Pad1_ -32 -32 RPOT value=5k ratio={rp2} +V3 in 0 dc 0 ac 1 sin(0 2 1k 5m) +JQ1 Net-_P1-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad1_ 2SK170 +JQ2 Net-_P2-Pad1_ Net-_Q1-Pad2_ Net-_P3-Pad3_ 2SJ74 +MQ5 out Net-_Q5-Pad2_ Net-_D1a1-Pad2_ Q5tj Q5tc IRFP240 thermal +MQ4 out Net-_Q4-Pad2_ Net-_D4a1-Pad1_ Q4tj Q4tc IRFP9240 thermal +MQ6 out Net-_Q6-Pad2_ Net-_D2a1-Pad2_ Q6tj Q6tc IRFP240 thermal +Rj1 Q3tj 0 1G +Rj2 Q4tj 0 1G +Rj3 Q5tj 0 1G +Rj4 Q6tj 0 1G +Rc2 Q3hs Net-_Rc2-Pad2_ {hs} +Rc4 Q4hs Net-_Rc2-Pad2_ {hs} +Rc6 Q5hs Net-_Rc2-Pad2_ {hs} +Rc8 Q6hs Net-_Rc2-Pad2_ {hs} +Rc1 Q3tc Q3hs {chs} +Rc3 Q4tc Q4hs {chs} +Rc5 Q5tc Q5hs {chs} +Rc7 Q6tc Q6hs {chs} +Vt1 Net-_Rc2-Pad2_ 0 {envtemp} +Cc1 Q3hs 0 {hscc} +Cc3 Q5hs 0 {hscc} +Cc4 Q6hs 0 {hscc} +V1 +32 0 dc 32 ; pulse(0 32 0.4m 2m 2m 100 200) +V2 -32 0 dc -32 ; pulse(0 -32 0.4m 2m 2m 100 200) +XTH2 Net-_D1a1-Pad2_ Q5hs Net-_R12-Pad1_ th R25=4.7k +XTH1 Net-_D3a1-Pad1_ Q3hs Net-_R11-Pad1_ th R25=4.7k +MQ3 out Net-_Q3-Pad2_ Net-_D3a1-Pad1_ Q3tj Q3tc IRFP9240 thermal +Vs1 Net-_S1-Pad3_ 0 dc 0 pulse(0 5 6 1m 1m 20 20) +XS1 Net-_Ra1-Pad2_ 0 Net-_S1-Pad3_ 0 genrelay +Cc2 Q4hs 0 {hscc} +Ra1 out Net-_Ra1-Pad2_ 4 +*.tran 20u 5m +.param envtemp=40 +.param chs=1 +.param hs=1.2 +.param hscc=1 +.param rp2=0.21 +.param rp1=0.36 +.param rp3=0.505 +.end diff --git a/paranoia_parallel/examples/optran/F5models.lib b/paranoia_parallel/examples/optran/F5models.lib new file mode 100644 index 000000000..decabbbef --- /dev/null +++ b/paranoia_parallel/examples/optran/F5models.lib @@ -0,0 +1,78 @@ +* from https://www.diyaudio.com/forums/solid-state/252973-2sk170-2sj74-spice-model-pass-0-4ma.html +*2SJ74 +*Toshiba Dep-Mode 20mA 400mW LowNoise pkg:TO-92B 2,1,3 +.MODEL 2SJ74 PJF(Beta=92.12m Rs=7.748 Rd=7.748 Lambda=4.464m ++Vto=-.5428 Cgd=85.67p Pb=.3905 Fc=.5 ++Cgs=78.27p Is=12.98p ++Kf=26.64E-18 Af=1) + +*2SK170 +* 20mA 400mW LowNoise Dep-Mode pkg:TO-92B 3,1,2 +.MODEL 2SK170 NJF(Beta=59.86m Rs=4.151 Rd=4.151 Lambda=1.923m ++Vto=-.5024 Cgd=20p Pb=.4746 Fc=.5 ++Cgs=25.48p Is=8.477p ++Kf=111.3E-18 Af=1) + +.subckt RPOT 1 2 3 +R1 1 2 {value*ratio + 1m} +R2 2 3 {value*(1-ratio)+ 1m} +* below are default parameters, which are required by some simulators +.param value=1k +.param ratio=1 +.ends + +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m XTI=3 ++ Cjo=1.5n Vj=0.8 m=0.5 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 ++ Rthjc=0.4 Cthj=0.1 ++ mtriode=0.8 + +.model IRFP9240 VDMOS pchan ++ Vto=-4 Kp=8.8 Lambda=.003 Theta=0.08 ksubthres=.35 ++ Rd=180m Rs=50m Rg=3 Rds=1e7 ++ Cgdmax=1.25n Cgdmin=50p a=0.23 Cgs=1.15n ++ Is=150p N=1.3 Rb=16m XTI=2 ++ Cjo=1.3n Vj=0.8 m=0.5 ++ tcvth=0.004 MU=-1.27 texp0=1.5 ++ Rthjc=0.4 Cthj=0.1 ++ mtriode=0.6 + +.model DMOD D + +* Thermistor model +.subckt th n1 nt n2 +.param B=3977 +.param R25=4700 +*control node +Ctherm1 n1 0 100p +Ctherm2 n2 0 100p +Rtherm n1 n2 R = {R25*exp(B*(1/(v(nt)+273.15)-1/(25+273.15)))} +.ends + +* generic relay model +.subckt genrelay out1 out2 in1 in2 +.param ron = 10m +S1 out1 out2 in1 in2 SW +.MODEL SW VSWITCH(VON=4V VOFF=1V RON={ron} ROFF=100K) +.ends + +.MODEL IXTH16N10 VDMOS Nchan Vds=100 ++ VTO=-3.2 KP=9 ++ Lambda=2m ++ Mtriode=1.8 ++ Ksubthres=120m ++ subshift=160m ++ Rs=4m Rd=5m Rds=200e6 ++ Cgdmax=9000p Cgdmin=300p A=0.25 ++ Cgs=5500p Cjo=11000p ++ Is=10e-6 Rb=8m ++ BV=200 IBV=250e-6 ++ NBV=4 ++ TT=250e-9 ++ vq=100 ++ rq=0.1 ++ Rthjc=0.2 Cthj=0.1 diff --git a/paranoia_parallel/examples/optran/HiPass3opamps_optran.cir b/paranoia_parallel/examples/optran/HiPass3opamps_optran.cir new file mode 100644 index 000000000..168f3ae5d --- /dev/null +++ b/paranoia_parallel/examples/optran/HiPass3opamps_optran.cir @@ -0,0 +1,72 @@ +.title KiCad schematic +.include "models/TL072-dual.lib" +.include "models/opa1612c-dual.lib" +.include "models/opa1656c-dual.lib" +V1 Net-_C1-Pad2_ GND dc 0 ac 1 +V2 15+ GND dc 15 +V3 GND 15- dc 15 +C2 Net-_C2-Pad1_ Net-_C1-Pad1_ 330n +C1 Net-_C1-Pad1_ Net-_C1-Pad2_ 330n +C3 Net-_C3-Pad1_ Net-_C3-Pad2_ 330n +C4 Net-_C4-Pad1_ Net-_C3-Pad2_ 330n +R8 Net-_C4-Pad1_ Net-_R7-Pad1_ 2780 +R3 Net-_C2-Pad1_ Net-_R2-Pad1_ 2780 +R2 Net-_R2-Pad1_ GND 2780 +R1 Net-_R1-Pad1_ Net-_C1-Pad1_ 2780 +R6 Net-_R10-Pad1_ Net-_C3-Pad2_ 2780 +R7 Net-_R7-Pad1_ GND 2780 +R10 Net-_R10-Pad1_ TL072_OUT 10k +R4 GND Net-_R1-Pad1_ 2780 +R9 GND Net-_R10-Pad1_ 2780 +R11 TL072_OUT GND 100k +XU1 Net-_C3-Pad1_ Net-_R1-Pad1_ Net-_C2-Pad1_ 15- Net-_C4-Pad1_ Net-_R10-Pad1_ TL072_OUT 15+ TL072c +R5 Net-_R1-Pad1_ Net-_C3-Pad1_ 10k +C6 Net-_C6-Pad1_ Net-_C5-Pad1_ 330n +C5 Net-_C5-Pad1_ Net-_C1-Pad2_ 330n +C7 Net-_C7-Pad1_ Net-_C7-Pad2_ 330n +C8 Net-_C8-Pad1_ Net-_C7-Pad2_ 330n +R19 Net-_C8-Pad1_ Net-_R18-Pad1_ 2780 +R14 Net-_C6-Pad1_ Net-_R13-Pad1_ 2780 +R13 Net-_R13-Pad1_ GND 2780 +R12 Net-_R12-Pad1_ Net-_C5-Pad1_ 2780 +R17 Net-_R17-Pad1_ Net-_C7-Pad2_ 2780 +R18 Net-_R18-Pad1_ GND 2780 +R21 Net-_R17-Pad1_ OPA1656_OUT 10k +R15 GND Net-_R12-Pad1_ 2780 +R20 GND Net-_R17-Pad1_ 2780 +R22 OPA1656_OUT GND 100k +XU2 Net-_C7-Pad1_ Net-_R12-Pad1_ Net-_C6-Pad1_ 15- Net-_C8-Pad1_ Net-_R17-Pad1_ OPA1656_OUT 15+ OPA1656c +R16 Net-_R12-Pad1_ Net-_C7-Pad1_ 10k +C10 Net-_C10-Pad1_ Net-_C10-Pad2_ 330n +C9 Net-_C10-Pad2_ Net-_C1-Pad2_ 330n +C11 Net-_C11-Pad1_ Net-_C11-Pad2_ 330n +C12 Net-_C12-Pad1_ Net-_C11-Pad2_ 330n +R30 Net-_C12-Pad1_ Net-_R29-Pad1_ 2780 +R25 Net-_C10-Pad1_ Net-_R24-Pad1_ 2780 +R24 Net-_R24-Pad1_ GND 2780 +R23 Net-_R23-Pad1_ Net-_C10-Pad2_ 2780 +R28 Net-_R28-Pad1_ Net-_C11-Pad2_ 2780 +R29 Net-_R29-Pad1_ GND 2780 +R32 Net-_R28-Pad1_ OPA1612_OUT 10k +R26 GND Net-_R23-Pad1_ 2780 +R31 GND Net-_R28-Pad1_ 2780 +R33 OPA1612_OUT GND 100k +XU3 Net-_C11-Pad1_ Net-_R23-Pad1_ Net-_C10-Pad1_ 15- Net-_C12-Pad1_ Net-_R28-Pad1_ OPA1612_OUT 15+ OPA1612c +R27 Net-_R23-Pad1_ Net-_C11-Pad1_ 10k +*.ac dec 1k 1 10k + +*.options reltol=0.01 rshunt=1e12 + +.control +*op +optran 0 0 0 100n 10u 0 +*op +*print all +ac dec 10 100 10Meg +set color0=white +set xbrushwidth=2 +plot db(OPA1612_OUT) db(OPA1656_OUT) db(TL072_OUT) +plot cph(OPA1612_OUT) cph(OPA1656_OUT) cph(TL072_OUT) +.endc + +.end diff --git a/paranoia_parallel/examples/optran/TLV6001-test.cir b/paranoia_parallel/examples/optran/TLV6001-test.cir new file mode 100644 index 000000000..35ec5b022 --- /dev/null +++ b/paranoia_parallel/examples/optran/TLV6001-test.cir @@ -0,0 +1,32 @@ +.title KiCad schematic +.include "./models/TLV6001.LIB" +Vsignal1 Vin GND dc 2.5 ac 1 +Vcc1 Vcc GND 5 +R1 Vin Net-_R1-Pad2_ 1000 +R2 Vout Net-_R1-Pad2_ 1meg +R3 Vcc Net-_R3-Pad2_ 10k +R4 Net-_R3-Pad2_ GND 10k +XU1 Net-_R3-Pad2_ Net-_R1-Pad2_ Vcc GND Vout TLV6001 +.save @vsignal1[i] +.save @vcc1[i] +.save @r1[i] +.save @r2[i] +.save @r3[i] +.save @r4[i] +.save V(Net-_R1-Pad2_) +.save V(Net-_R3-Pad2_) +.save V(Vcc) +.save V(Vin) +.save V(Vout) +.ac dec 5 10 20k + +.control +optran 0 0 0 100n 10u 0 ; override optran from spinit +run +plot db(Vout) +set units=degrees +plot ph(Vout) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/optran/TLV9002-test.cir b/paranoia_parallel/examples/optran/TLV9002-test.cir new file mode 100644 index 000000000..4afafd58f --- /dev/null +++ b/paranoia_parallel/examples/optran/TLV9002-test.cir @@ -0,0 +1,31 @@ +.title KiCad schematic +.include "./models/TLV9002.lib" +Vsignal1 Vin GND dc 2.5 ac 1 +Vcc1 Vcc GND 5 +R1 Vin Net-_R1-Pad2_ 1000 +R2 Vout Net-_R1-Pad2_ 1meg +R3 Vcc Net-_R3-Pad2_ 10k +R4 Net-_R3-Pad2_ GND 10k +XU1 Net-_R3-Pad2_ Net-_R1-Pad2_ Vcc GND Vout TLV9002 +.save @vsignal1[i] +.save @vcc1[i] +.save @r1[i] +.save @r2[i] +.save @r3[i] +.save @r4[i] +.save V(Net-_R1-Pad2_) +.save V(Net-_R3-Pad2_) +.save V(Vcc) +.save V(Vin) +.save V(Vout) +.ac dec 5 10 20k + +.control +run +plot db(Vout) +set units=degrees +plot ph(Vout) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/optran/contents.txt b/paranoia_parallel/examples/optran/contents.txt new file mode 100644 index 000000000..16ac7920a --- /dev/null +++ b/paranoia_parallel/examples/optran/contents.txt @@ -0,0 +1,12 @@ +ngspice input files using optran + +Pass Labs F5 turbo +thermal simulation +use optran for 4s and coarse steps to obtain stable temperature +then simulate transient with high resolution + +HiPass3opamps_optran.cir +Just a check with three different OpAmps + +TLV6001-test.cir, TLV9002-test.cir +These OpAmp currently allow op calculation only with optran diff --git a/paranoia_parallel/examples/optran/models/OPA1611.LIB b/paranoia_parallel/examples/optran/models/OPA1611.LIB new file mode 100644 index 000000000..d60119378 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/OPA1611.LIB @@ -0,0 +1,438 @@ +*$ +* OPA1611 +************************************************************************************************* +* (C) Copyright 2018 Texas Instruments Incorporated. All rights reserved. +************************************************************************************************* +** This model is designed as an aid for customers of Texas Instruments. +** TI and its licensors and suppliers make no warranties, either expressed +** or implied, with respect to this model, including the warranties of +** merchantability or fitness for a particular purpose. The model is +** provided solely on an "as is" basis. The entire risk as to its quality +** and performance is with the customer +************************************************************************************************* +* +* This model is subject to change without notice. Texas Instruments +* Incorporated is not responsible for updating this model. +* +************************************************************************************************* +* +** Released by: Online Design Tools, Texas Instruments Inc. +* Part: OPA1611 +* Date: 07FEB2019 +* Model Type: Generic (suitable for all analysis types) +* EVM Order Number: N/A +* EVM Users Guide: N/A +* Datasheet: SBOS450C -JULY 2009-REVISED AUGUST 2014 +* Created with Green-Williams-Lis Op Amp Macro-model Architecture +* +* Model Version: Final 1.2 +* +***************************************************************************** +* +* Updates: +* +* Final 1.2 +* VOS drift feature is added +* Added Unique subckt name, removed Claw ABS. +* +* Final 1.1 +* Release to Web. +* +**************************************************************************** +* Model Usage Notes: +* 1. The following parameters are modeled: +* OPEN-LOOP GAIN AND PHASE VS. FREQUENCY WITH RL, CL EFFECTS (Aol) +* UNITY GAIN BANDWIDTH (GBW) +* INPUT COMMON-MODE REJECTION RATIO VS. FREQUENCY (CMRR) +* POWER SUPPLY REJECTION RATIO VS. FREQUENCY (PSRR) +* DIFFERENTIAL INPUT IMPEDANCE (Zid) +* COMMON-MODE INPUT IMPEDANCE (Zic) +* OPEN-LOOP OUTPUT IMPEDANCE VS. FREQUENCY (Zo) +* OUTPUT CURRENT THROUGH THE SUPPLY (Iout) +* INPUT VOLTAGE NOISE DENSITY VS. FREQUENCY (en) +* INPUT CURRENT NOISE DENSITY VS. FREQUENCY (in) +* OUTPUT VOLTAGE SWING vs. OUTPUT CURRENT (Vo) +* SHORT-CIRCUIT OUTPUT CURRENT (Isc) +* QUIESCENT CURRENT (Iq) +* SETTLING TIME VS. CAPACITIVE LOAD (ts) +* SLEW RATE (SR) +* SMALL SIGNAL OVERSHOOT VS. CAPACITIVE LOAD +* LARGE SIGNAL RESPONSE +* OVERLOAD RECOVERY TIME (tor) +* INPUT BIAS CURRENT (Ib) +* INPUT OFFSET CURRENT (Ios) +* INPUT OFFSET VOLTAGE (Vos) +* INPUT OFFSET VOLTAGE VS. TEMPERATURE (Vos Drift) +* INPUT COMMON-MODE VOLTAGE RANGE (Vcm) +* INPUT OFFSET VOLTAGE VS. INPUT COMMON-MODE VOLTAGE (Vos vs. Vcm) +* INPUT/OUTPUT ESD CELLS (ESDin, ESDout) +****************************************************** +.subckt OPA1611 IN+ IN- VCC VEE OUT +****************************************************** +.model R_NOISELESS RES (TCE=0 T_ABS=-273.15) +****************************************************** +I_OS ESDn MID 3.5e-08 +I_B 30 MID 6e-08 +V_GRp 45 MID 48 +V_GRn 46 MID -47 +V_ISCp 39 MID 49.8 +V_ISCn 40 MID -47 +V_ORn 38 VCLP -13.759 +V11 44 37 0 +V_ORp 36 VCLP 13.6794 +V12 43 35 0 +V4 27 OUT 0 +VCM_MIN 67 VEE_B 2 +VCM_MAX 68 VCC_B -2 +I_Q VCC VEE 0.0036 +XV_OS 75 30 VOS_DRIFT_OPA1611 +XU5 ESDp ESDn VCC VEE ESD_0_OPA1611 +XU4 19 ESDp MID PSRR_CMRR_0_OPA1611 +XU3 20 VEE_B MID PSRR_CMRR_1_OPA1611 +XU2 21 VCC_B MID PSRR_CMRR_2_OPA1611 +XU1 23 22 CLAMP VSENSE CLAW_CLAMP CL_CLAMP 24 26 27 MID AOL_ZO_0_OPA1611 +C28 31 MID 1P +R77 32 31 R_NOISELESS 100 +C27 33 MID 1P +R76 34 33 R_NOISELESS 100 +R75 MID 35 R_NOISELESS 1 +GVCCS8 35 MID 36 MID -1 +R74 37 MID R_NOISELESS 1 +GVCCS7 37 MID 38 MID -1 +Xi_nn ESDn MID FEMT_0_OPA1611 +Xi_np MID 30 FEMT_0_OPA1611 +Xe_n ESDp 30 VNSE_0_OPA1611 +XIQPos VIMON MID MID VCC VCCS_LIMIT_IQ_0_OPA1611 +XIQNeg MID VIMON VEE MID VCCS_LIMIT_IQ_0_OPA1611 +C_DIFF ESDp ESDn 8e-12 +XCL_AMP 39 40 VIMON MID 41 42 CLAMP_AMP_LO_0_OPA1611 +SOR_SWp CLAMP 43 CLAMP 43 S_VSWITCH_1 +SOR_SWn 44 CLAMP 44 CLAMP S_VSWITCH_1 +XGR_AMP 45 46 47 MID 48 49 CLAMP_AMP_HI_0_OPA1611 +R39 45 MID R_NOISELESS 1G +R37 46 MID R_NOISELESS 1G +R42 VSENSE 47 R_NOISELESS 1M +C19 47 MID 1F +R38 48 MID R_NOISELESS 1 +R36 MID 49 R_NOISELESS 1 +R40 48 50 R_NOISELESS 1M +R41 49 51 R_NOISELESS 1M +C17 50 MID 1F +C18 MID 51 1F +XGR_SRC 50 51 CLAMP MID VCCS_LIM_GR_0_OPA1611 +R21 41 MID R_NOISELESS 1 +R20 MID 42 R_NOISELESS 1 +R29 41 52 R_NOISELESS 1M +R30 42 53 R_NOISELESS 1M +C9 52 MID 1F +C8 MID 53 1F +XCL_SRC 52 53 CL_CLAMP MID VCCS_LIM_4_0_OPA1611 +R22 39 MID R_NOISELESS 1G +R19 MID 40 R_NOISELESS 1G +XCLAWp VIMON MID 54 VCC_B VCCS_LIM_CLAW+_0_OPA1611 +XCLAWn MID VIMON VEE_B 55 VCCS_LIM_CLAW-_0_OPA1611 +R12 54 VCC_B R_NOISELESS 1K +R16 54 56 R_NOISELESS 1M +R13 VEE_B 55 R_NOISELESS 1K +R17 57 55 R_NOISELESS 1M +C6 57 MID 1F +C5 MID 56 1F +G2 VCC_CLP MID 56 MID -1M +R15 VCC_CLP MID R_NOISELESS 1K +G3 VEE_CLP MID 57 MID -1M +R14 MID VEE_CLP R_NOISELESS 1K +XCLAW_AMP VCC_CLP VEE_CLP VOUT_S MID 58 59 CLAMP_AMP_LO_0_OPA1611 +R26 VCC_CLP MID R_NOISELESS 1G +R23 VEE_CLP MID R_NOISELESS 1G +R25 58 MID R_NOISELESS 1 +R24 MID 59 R_NOISELESS 1 +R27 58 60 R_NOISELESS 1M +R28 59 61 R_NOISELESS 1M +C11 60 MID 1F +C10 MID 61 1F +XCLAW_SRC 60 61 CLAW_CLAMP MID VCCS_LIM_3_0_OPA1611 +H2 34 MID V11 -1 +H3 32 MID V12 1 +C12 SW_OL MID 100P +R32 62 SW_OL R_NOISELESS 100 +R31 62 MID R_NOISELESS 1 +XOL_SENSE MID 62 33 31 OL_SENSE_0_OPA1611 +S1 24 26 SW_OL MID S_VSWITCH_3 +H1 63 MID V4 1K +S7 VEE OUT VEE OUT S_VSWITCH_4 +S6 OUT VCC OUT VCC S_VSWITCH_4 +R11 MID 64 R_NOISELESS 1G +R18 64 VOUT_S R_NOISELESS 100 +C7 VOUT_S MID 10P +E5 64 MID OUT MID 1 +C13 VIMON MID 10P +R33 63 VIMON R_NOISELESS 100 +R10 MID 63 R_NOISELESS 1G +R47 65 VCLP R_NOISELESS 100 +C24 VCLP MID 10P +E4 65 MID CL_CLAMP MID 1 +C4 23 MID 1F +R9 23 66 R_NOISELESS 1M +R7 MID 67 R_NOISELESS 1G +R6 68 MID R_NOISELESS 1G +R8 MID 66 R_NOISELESS 1 +XVCM_CLAMP 69 MID 66 MID 68 67 VCCS_EXT_LIM_0_OPA1611 +E1 MID 0 70 0 1 +R89 VEE_B 0 R_NOISELESS 1 +R5 71 VEE_B R_NOISELESS 1M +C3 71 0 1F +R60 70 71 R_NOISELESS 1MEG +C1 70 0 1 +R3 70 0 R_NOISELESS 1G +R59 72 70 R_NOISELESS 1MEG +C2 72 0 1F +R4 VCC_B 72 R_NOISELESS 1M +R88 VCC_B 0 R_NOISELESS 1 +G17 VEE_B 0 VEE 0 -1 +G16 VCC_B 0 VCC 0 -1 +R_PSR 73 69 R_NOISELESS 1K +G_PSR 69 73 21 20 -1M +R2 22 ESDn R_NOISELESS 1M +R1 73 74 R_NOISELESS 1M +R_CMR 75 74 R_NOISELESS 1K +G_CMR 74 75 19 MID -1M +C_CMn ESDn MID 2e-12 +C_CMp MID ESDp 2e-12 +R53 ESDn MID R_NOISELESS 1T +R52 MID ESDp R_NOISELESS 1T +R35 IN- ESDn R_NOISELESS 10M +R34 IN+ ESDp R_NOISELESS 10M +.MODEL S_VSWITCH_1 VSWITCH (RON=10e-3 ROFF=1e9 VON=10e-3 VOFF=0) +.MODEL S_VSWITCH_3 VSWITCH (RON=1e-3 ROFF=1e9 VON=900e-3 VOFF=800e-3) +.MODEL S_VSWITCH_4 VSWITCH (RON=50 ROFF=1e12 VON=500e-3 VOFF=450e-3) +.ENDS OPA1611 +* +.SUBCKT VOS_DRIFT_OPA1611 VOS+ VOS- +.PARAM DC = 9.729e-05 +.PARAM POL = 1 +.PARAM DRIFT = 1E-06 +E1 VOS+ VOS- VALUE={DC+POL*DRIFT*(TEMP-27)} +.ENDS +* +.SUBCKT ESD_0_OPA1611 ESDp ESDn VCC VEE +SW6 ESDn ESDp ESDn ESDp S_VSWITCH_1 +SW5 ESDp ESDn ESDp ESDn S_VSWITCH_1 +SW4 ESDn VCC ESDn VCC S_VSWITCH_3 +SW3 VEE ESDn VEE ESDn S_VSWITCH_3 +SW2 ESDp VCC ESDp VCC S_VSWITCH_3 +SW1 VEE ESDp VEE ESDp S_VSWITCH_3 +.MODEL S_VSWITCH_1 VSWITCH (RON=50 ROFF=1e12 VON=700e-3 VOFF=650e-3) +.MODEL S_VSWITCH_3 VSWITCH (RON=50 ROFF=1e12 VON=500e-3 VOFF=450e-3) +.ENDS +* +.SUBCKT PSRR_CMRR_0_OPA1611 psrr_in psrr_vccb mid +.model R_NOISELESS RES ( TCE=0 T_ABS=-273.15) +R74 mid psrr_in R_NOISELESS 1 +G_2 psrr_in mid 4 mid -140.513 +R2b mid 4 R_NOISELESS 716778.969 +C2a 4 5 2.2044e-14 +R73 5 4 R_NOISELESS 100MEG +R49 mid 5 R_NOISELESS 1 +GVCCS7 5 mid 6 mid -1 +R2a mid 6 R_NOISELESS 716778.969 +C1a 6 7 2.2044e-14 +R48 7 6 R_NOISELESS 100MEG +G_1 7 mid psrr_vccb mid -0.00016265 +Rsrc mid 7 R_NOISELESS 1 +.ENDS +* +.SUBCKT PSRR_CMRR_1_OPA1611 psrr_in psrr_vccb psrr_mid +.model R_NOISELESS RES ( TCE=0 T_ABS=-273.15) +R80 psrr_mid psrr_in R_NOISELESS 79.383 +C27 psrr_in 4 2.1432e-10 +R79 4 psrr_in R_NOISELESS 100MEG +GVCCS8 4 psrr_mid psrr_vccb psrr_mid -0.11572 +R78 psrr_mid 4 R_NOISELESS 1 +.ENDS +* +.SUBCKT PSRR_CMRR_2_OPA1611 psrr_in psrr_vccb psrr_mid +.model R_NOISELESS RES ( TCE=0 T_ABS=-273.15) +R80 psrr_mid psrr_in R_NOISELESS 74.0813 +C27 psrr_in 4 3.1831e-10 +R79 4 psrr_in R_NOISELESS 100MEG +GVCCS8 4 psrr_mid psrr_vccb psrr_mid -0.12195 +R78 psrr_mid 4 R_NOISELESS 1 +.ENDS +* +.SUBCKT VCCS_LIM_2_0_OPA1611 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 0.0053649 +.PARAM IPOS = 0.028032 +.PARAM INEG = -0.027711 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* +.SUBCKT VCCS_LIM_1_0_OPA1611 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 1E-4 +.PARAM IPOS = .5 +.PARAM INEG = -.5 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* +.SUBCKT AOL_ZO_0_OPA1611 AOL_INP AOL_INN CLAMP VSENSE CLAW_CLAMP CL_CLAMP ZO_CLEFT ZO_CRIGHT ZO_OUT MID +.MODEL R_NOISELESS RES ( TCE=0 T_ABS=-273.15) +C1_A0 CLAMP MID 9.2525e-10 +R4_A0 MID CLAMP R_NOISELESS 1MEG +XVCCS_LIM_2_A0 4_A0 MID MID CLAMP VCCS_LIM_2_0_OPA1611 +R3_A0 MID 4_A0 R_NOISELESS 1MEG +XVCCS_LIM_1_A0 AOL_INP AOL_INN MID 4_A0 VCCS_LIM_1_0_OPA1611 +R4_VS VSENSE MID R_NOISELESS 1K +GVCCS4_VS VSENSE MID CLAMP MID -1M +C2_A2 out2 MID 2.316e-14 +R3_A2 out2 MID R_NOISELESS 1MEG +GVCCS3_A2 out2 MID VSENSE MID -1U +C3_A3 4_A3 out3 1.061e-13 +GVCCS4_A3 4_A3 MID out2 MID -21.5263 +R4_A3 4_A3 MID R_NOISELESS 1 +R5_A3 out3 4_A3 R_NOISELESS 10K +R6_A3 out3 MID R_NOISELESS 487.1795 +C3_A4 4_A4 out4 1.4283e-12 +GVCCS4_A4 4_A4 MID out3 MID -21.5263 +R4_A4 4_A4 MID R_NOISELESS 1 +R5_A4 out4 4_A4 R_NOISELESS 10K +R6_A4 out4 MID R_NOISELESS 487.1795 +R4_CC CLAW_CLAMP MID R_NOISELESS 1K +GVCCS4_CC CLAW_CLAMP MID out4 MID -1M +R4_CL CL_CLAMP MID R_NOISELESS 1K +GVCCS4_CL CL_CLAMP MID CLAW_CLAMP MID -1M +G_Aol_Zo Zo_Cleft MID CL_CLAMP ZO_OUT -89.0524 +GVCCS1_1 outz1 MID Zo_Cright MID -270.7824 +C1_1 Zo_Cleft Zo_Cright 1.1766e-07 +R2_1 Zo_Cright MID R_NOISELESS 37.0669 +R1_1 Zo_Cright Zo_Cleft R_NOISELESS 10K +Rdc_1 Zo_Cleft MID R_NOISELESS 1 +GVCCS2_2 outz2 MID net2 MID -1 +C2_2 5_2 MID 1.1756e-12 +R5_2 net2 5_2 R_NOISELESS 10K +R4_2 net2 outz1 R_NOISELESS 1312633.434 +R7_2 outz1 MID R_NOISELESS 1 +R1_3 2_3 MID R_NOISELESS 1 +R11_3 5_3 MID R_NOISELESS 9.2681 +C4_3 5_3 outz2 4.138e-13 +R10_3 5_3 outz2 R_NOISELESS 10K +XVCVS_LIM_1 5_3 MID MID 2_3 VCCS_LIM_ZO_0_OPA1611 +R9_3 outz2 MID R_NOISELESS 1 +Rdummy MID ZO_OUT R_NOISELESS 1410 +Rx ZO_OUT 2_3 R_NOISELESS 14100 +.ENDS +* +.SUBCKT VCCS_LIM_ZO_0_OPA1611 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 1079.9748 +.PARAM IPOS = 1551 +.PARAM INEG = -1748.4 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* +.SUBCKT FEMT_0_OPA1611 1 2 +.PARAM FLWF=0.1 +.PARAM NLFF=39529.1 +.PARAM NVRF=1683.74 +.PARAM GLFF={PWR(FLWF,0.25)*NLFF/1164} +.PARAM RNVF={1.184*PWR(NVRF,2)} +.MODEL DVNF D KF={PWR(FLWF,0.5)/1E11} IS=1.0E-16 +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVNF +D2 8 0 DVNF +E1 3 6 7 8 {GLFF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNVF} +R5 5 0 {RNVF} +R6 3 4 1E9 +R7 4 0 1E9 +G1 1 2 3 4 1E-6 +.ENDS +* +.SUBCKT VNSE_0_OPA1611 1 2 +.PARAM FLW=0.1 +.PARAM NLF=23.8513 +.PARAM NVR=1.24 +.PARAM GLF={PWR(FLW,0.25)*NLF/1164} +.PARAM RNV={1.184*PWR(NVR,2)} +.MODEL DVN D KF={PWR(FLW,0.5)/1E11} IS=1.0E-16 +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVN +D2 8 0 DVN +E1 3 6 7 8 {GLF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNV} +R5 5 0 {RNV} +R6 3 4 1E9 +R7 4 0 1E9 +E3 1 2 3 4 1 +.ENDS +* +.SUBCKT VCCS_LIMIT_IQ_0_OPA1611 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 1E-3 +G1 IOUT- IOUT+ VALUE={IF( (V(VC+,VC-)<=0),0,GAIN*V(VC+,VC-) )} +.ENDS +* +.SUBCKT CLAMP_AMP_LO_0_OPA1611 VC+ VC- VIN COM VO+ VO- +.PARAM G=1 +GVO+ COM VO+ VALUE = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVO- COM VO- VALUE = {IF(V(VIN,COM)V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVO- COM VO- VALUE = {IF(V(VIN,COM)10E-3 | V(OLP,COM)>10E-3),1,0)} +.ENDS +* +.SUBCKT VCCS_EXT_LIM_0_OPA1611 VIN+ VIN- IOUT- IOUT+ VP+ VP- +.PARAM GAIN = 1 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VIN+,VIN-),V(VP-,VIN-), V(VP+,VIN-))} +.ENDS +* diff --git a/paranoia_parallel/examples/optran/models/TL072-dual.lib b/paranoia_parallel/examples/optran/models/TL072-dual.lib new file mode 100644 index 000000000..edf6281da --- /dev/null +++ b/paranoia_parallel/examples/optran/models/TL072-dual.lib @@ -0,0 +1,7 @@ +* A dual opamp ngspice model +* file name: TL072-dual.lib +.subckt TL072c 1out 1in- 1in+ vcc- 2in+ 2in- 2out vcc+ +.include TL072.301 +XU1A 1in+ 1in- vcc+ vcc- 1out TL072 +XU1B 2in+ 2in- vcc+ vcc- 2out TL072 +.ends diff --git a/paranoia_parallel/examples/optran/models/TL072.301 b/paranoia_parallel/examples/optran/models/TL072.301 new file mode 100644 index 000000000..9757d57f5 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/TL072.301 @@ -0,0 +1,42 @@ +* TL072 OPERATIONAL AMPLIFIER "MACROMODEL" SUBCIRCUIT +* CREATED USING PARTS RELEASE 4.01 ON 06/16/89 AT 13:08 +* (REV N/A) SUPPLY VOLTAGE: +/-15V +* CONNECTIONS: NON-INVERTING INPUT +* | INVERTING INPUT +* | | POSITIVE POWER SUPPLY +* | | | NEGATIVE POWER SUPPLY +* | | | | OUTPUT +* | | | | | +.SUBCKT TL072 1 2 3 4 5 +* + C1 11 12 3.498E-12 + C2 6 7 15.00E-12 + DC 5 53 DX + DE 54 5 DX + DLP 90 91 DX + DLN 92 90 DX + DP 4 3 DX + EGND 99 0 POLY(2) (3,0) (4,0) 0 .5 .5 + FB 7 99 POLY(5) VB VC VE VLP VLN 0 4.715E6 -5E6 5E6 5E6 -5E6 + GA 6 0 11 12 282.8E-6 + GCM 0 6 10 99 8.942E-9 + ISS 3 10 DC 195.0E-6 + HLIM 90 0 VLIM 1K + J1 11 2 10 JX + J2 12 1 10 JX + R2 6 9 100.0E3 + RD1 4 11 3.536E3 + RD2 4 12 3.536E3 + RO1 8 5 150 + RO2 7 99 150 + RP 3 4 2.143E3 + RSS 10 99 1.026E6 + VB 9 0 DC 0 + VC 3 53 DC 2.200 + VE 54 4 DC 2.200 + VLIM 7 8 DC 0 + VLP 91 0 DC 25 + VLN 0 92 DC 25 +.MODEL DX D(IS=800.0E-18) +.MODEL JX PJF(IS=15.00E-12 BETA=270.1E-6 VTO=-1) +.ENDS diff --git a/paranoia_parallel/examples/optran/models/TLV6001.LIB b/paranoia_parallel/examples/optran/models/TLV6001.LIB new file mode 100644 index 000000000..52cbfd163 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/TLV6001.LIB @@ -0,0 +1,382 @@ +*$ +* TLV6001 +***************************************************************************** +* (C) Copyright 2019 Texas Instruments Incorporated. All rights reserved. +***************************************************************************** +** This model is designed as an aid for customers of Texas Instruments. +** TI and its licensors and suppliers make no warranties, either expressed +** or implied, with respect to this model, including the warranties of +** merchantability or fitness for a particular purpose. The model is +** provided solely on an "as is" basis. The entire risk as to its quality +** and performance is with the customer +***************************************************************************** +* +* This model is subject to change without notice. Texas Instruments +* Incorporated is not responsible for updating this model. +* +***************************************************************************** +* +** Released by: Online Design Tools, Texas Instruments Inc. +* Part: TLV6001 +* Date: 19FEB2019 +* Model Type: Generic (suitable for all analysis types) +* EVM Order Number: N/A +* EVM Users Guide: N/A +* Datasheet: SBOS779D -JUNE 2016-REVISED MAY 2017 +* Created with Green-Williams-Lis Op Amp Macro-model Architecture +* +* Model Version: Final 1.2 +* +***************************************************************************** +* +* Updates: +* +* Final 1.2 +* VOS drift feature is added +* Added Unique subckt name, removed Claw ABS. +* Simplified subckt for current noise. +* +* Final 1.1 +* Release to Web. +* +**************************************************************************** +* Model Usage Notes: +* 1. The following parameters are modeled: +* OPEN-LOOP GAIN AND PHASE VS. FREQUENCY WITH RL, CL EFFECTS (Aol) +* UNITY GAIN BANDWIDTH (GBW) +* INPUT COMMON-MODE REJECTION RATIO VS. FREQUENCY (CMRR) +* POWER SUPPLY REJECTION RATIO VS. FREQUENCY (PSRR) +* DIFFERENTIAL INPUT IMPEDANCE (Zid) +* COMMON-MODE INPUT IMPEDANCE (Zic) +* OPEN-LOOP OUTPUT IMPEDANCE VS. FREQUENCY (Zo) +* OUTPUT CURRENT THROUGH THE SUPPLY (Iout) +* INPUT VOLTAGE NOISE DENSITY VS. FREQUENCY (en) +* INPUT CURRENT NOISE DENSITY VS. FREQUENCY (in) +* OUTPUT VOLTAGE SWING vs. OUTPUT CURRENT (Vo) +* SHORT-CIRCUIT OUTPUT CURRENT (Isc) +* QUIESCENT CURRENT (Iq) +* SETTLING TIME VS. CAPACITIVE LOAD (ts) +* SLEW RATE (SR) +* SMALL SIGNAL OVERSHOOT VS. CAPACITIVE LOAD +* LARGE SIGNAL RESPONSE +* OVERLOAD RECOVERY TIME (tor) +* INPUT BIAS CURRENT (Ib) +* INPUT OFFSET CURRENT (Ios) +* INPUT OFFSET VOLTAGE (Vos) +* INPUT OFFSET VOLTAGE VS. TEMPERATURE (Vos Drift) +* INPUT COMMON-MODE VOLTAGE RANGE (Vcm) +* INPUT OFFSET VOLTAGE VS. INPUT COMMON-MODE VOLTAGE (Vos vs. Vcm) +* INPUT/OUTPUT ESD CELLS (ESDin, ESDout) +****************************************************** +.subckt TLV6001 IN+ IN- VCC VEE OUT +****************************************************** +* MODEL DEFINITIONS: +.model BB_SW VSWITCH(Ron=50 Roff=1e9 Von=700e-3 Voff=0) +.model ESD_SW VSWITCH(Ron=50 Roff=1e9 Von=500e-3 Voff=100e-3) +.model OL_SW VSWITCH(Ron=1e-3 Roff=1e9 Von=900e-3 Voff=800e-3) +.model OR_SW VSWITCH(Ron=10e-3 Roff=1e9 Von=1e-3 Voff=0) +.model R_NOISELESS RES(T_ABS=-273.15) +****************************************************** +XV_OS N032 N038 VOS_DRIFT_TLV6001 +R1 N035 N033 R_NOISELESS 1e-3 +R2 N044 ESDn R_NOISELESS 1e-3 +R3 N056 0 R_NOISELESS 1e9 +C1 N056 0 1 +R4 VCC_B N055 R_NOISELESS 1e-3 +C2 N055 0 1e-15 +C3 N057 0 1e-15 +R5 N057 VEE_B R_NOISELESS 1e-3 +G1 N035 N036 N006 N005 1e-3 +R6 MID N042 R_NOISELESS 1e9 +VCM_MIN N043 VEE_B -0.2 +R7 N043 MID R_NOISELESS 1e9 +VCM_MAX N042 VCC_B 0.2 +XVCM_CLAMP N036 MID N039 MID N042 N043 VCCS_EXT_LIM_TLV6001 +R8 N039 MID R_NOISELESS 1 +C4 N040 MID 1e-15 +R9 N039 N040 R_NOISELESS 1e-3 +V4 N053 OUT 0 +XIQ+ VIMON MID VCC MID VCCS_LIM_IQ_TLV6001 +XIQ- MID VIMON VEE MID VCCS_LIM_IQ_TLV6001 +R12 VCC_B N009 R_NOISELESS 1e3 +R13 N028 VEE_B R_NOISELESS 1e3 +XCLAWp VIMON MID N009 VCC_B VCCS_LIM_CLAWp_TLV6001 +XCLAWn MID VIMON VEE_B N028 VCCS_LIM_CLAWn_TLV6001 +R14 VEE_CLP MID R_NOISELESS 1e3 +R15 MID VCC_CLP R_NOISELESS 1e3 +R16 N010 N009 R_NOISELESS 1e-3 +R17 N029 N028 R_NOISELESS 1e-3 +C5 MID N010 1e-15 +C6 N029 MID 1e-15 +R18 VOUT_S N046 R_NOISELESS 100 +C7 VOUT_S MID 1e-9 +G2 MID VCC_CLP N010 MID 1e-3 +G3 MID VEE_CLP N029 MID 1e-3 +XCL_AMP N003 N034 VIMON MID N013 N026 CLAMP_AMP_LO_TLV6001 +V_ISCp N003 MID 13.5 +V_ISCn N034 MID -12.5 +R19 N034 MID R_NOISELESS 1e9 +R20 N026 MID R_NOISELESS 1 +C8 N027 MID 1e-15 +R21 MID N013 R_NOISELESS 1 +R22 MID N003 R_NOISELESS 1e9 +C9 MID N014 1e-15 +XCLAW_AMP VCC_CLP VEE_CLP VOUT_S MID N011 N024 CLAMP_AMP_LO_TLV6001 +R23 VEE_CLP MID R_NOISELESS 1e9 +R24 N024 MID R_NOISELESS 1 +C10 N025 MID 1e-15 +R25 MID N011 R_NOISELESS 1 +R26 MID VCC_CLP R_NOISELESS 1e9 +C11 MID N012 1e-15 +XCL_SRC N014 N027 CL_CLAMP MID VCCS_LIM_4_TLV6001 +XCLAW_SRC N012 N025 CLAW_CLAMP MID VCCS_LIM_3_TLV6001 +R27 N011 N012 R_NOISELESS 1e-3 +R28 N025 N024 R_NOISELESS 1e-3 +R29 N013 N014 R_NOISELESS 1e-3 +R30 N027 N026 R_NOISELESS 1e-3 +R33 VIMON N045 R_NOISELESS 100 +C13 VIMON MID 1e-9 +C_DIFF ESDp ESDn 1e-12 +C_CMn ESDn MID 5e-12 +C_CMp MID ESDp 5e-12 +I_Q VCC VEE 75e-6 +I_B N036 MID 1e-12 +I_OS N044 MID 1e-15 +R34 IN+ ESDp R_NOISELESS 10e-3 +R35 IN- ESDn R_NOISELESS 10e-3 +R36 N030 MID R_NOISELESS 1 +R37 N037 MID R_NOISELESS 1e9 +R38 MID N022 R_NOISELESS 1 +R39 MID N008 R_NOISELESS 1e9 +XGR_AMP N008 N037 N021 MID N022 N030 CLAMP_AMP_HI_TLV6001 +XGR_SRC N023 N031 CLAMP MID VCCS_LIM_GR_TLV6001 +C17 MID N023 1e-15 +C18 N031 MID 1e-15 +V_GRn N037 MID -160 +V_GRp N008 MID 160 +R40 N022 N023 R_NOISELESS 1e-3 +R41 N031 N030 R_NOISELESS 1e-3 +R42 VSENSE N021 R_NOISELESS 1e-3 +C19 MID N021 1e-15 +R43 MID VSENSE R_NOISELESS 1e3 +G5 N032 N033 N002 MID 1e-3 +G8 MID CLAW_CLAMP N047 MID 1e-3 +R45 MID CLAW_CLAMP R_NOISELESS 1e3 +G9 MID CL_CLAMP CLAW_CLAMP MID 1e-3 +R46 MID CL_CLAMP R_NOISELESS 1e3 +R47 N054 VCLP R_NOISELESS 100 +C24 MID VCLP 1e-9 +E4 N054 MID CL_CLAMP MID 1 +R52 MID ESDp R_NOISELESS 1e12 +R53 ESDn MID R_NOISELESS 1e12 +R58 N033 N032 R_NOISELESS 1e3 +R59 N055 N056 R_NOISELESS 1e6 +R60 N056 N057 R_NOISELESS 1e6 +R67 N036 N035 R_NOISELESS 1e3 +G15 MID VSENSE CLAMP MID 1e-3 +V_ORp N020 VCLP 1.8 +V_ORn N015 VCLP -1.8 +E1 MID 0 N056 0 1 +S8 N018 CLAMP CLAMP N018 OR_SW +S9 CLAMP N017 N017 CLAMP OR_SW +Xe_n N038 ESDp VNSE_TLV6001 +Xi_nn ESDn MID FEMT_TLV6001 +Xi_np N038 MID FEMT_TLV6001 +XVCCS_LIMIT_1 N040 N044 MID N041 VCCS_LIM_1_TLV6001 +XVCCS_LIMIT_2 N041 MID MID CLAMP VCCS_LIM_2_TLV6001 +R44 N041 MID R_NOISELESS 1e6 +R68 CLAMP MID R_NOISELESS 1e6 +C20 CLAMP MID 84.3e-9 +G7 MID N047 VSENSE MID 1e-6 +R69 N047 MID R_NOISELESS 1e6 +C25 N047 MID 5.3e-14 +XOL_SENSE_TLV6001 MID N060 N059 N062 OL_SENSE_TLV6001 +R31 N060 MID R_NOISELESS 1 +R51 N060 SW_OL R_NOISELESS 100 +C12 SW_OL MID 1e-12 +H2 N058 MID V11 -1 +H3 N061 MID V12 1 +V11 N017 N016 0 +V12 N018 N019 0 +R77 N058 N059 R_NOISELESS 100 +C28 N059 MID 1e-12 +R78 N061 N062 R_NOISELESS 100 +C29 N062 MID 1e-12 +G14 MID N016 N015 MID 1 +G16 MID N019 N020 MID 1 +R75 N016 MID R_NOISELESS 1 +R76 N019 MID R_NOISELESS 1 +G17 0 VCC_B VCC 0 1 +G18 0 VEE_B VEE 0 1 +R79 VCC_B 0 R_NOISELESS 1 +R80 VEE_B 0 R_NOISELESS 1 +C27 N002 N001 21.22e-12 +R81 N002 MID R_NOISELESS 5.64e3 +R82 N002 N001 R_NOISELESS 1e8 +G_adjust2 MID N001 ESDp MID 1.03 +C14 N006 N007 13.26e-12 +R48 N006 MID R_NOISELESS 2.82e3 +R49 N006 N007 R_NOISELESS 1e8 +G22 MID N007 VCC_B MID 998e-3 +R88 N007 MID R_NOISELESS 1 +C15 N005 N004 13.26e-12 +R54 N005 MID R_NOISELESS 2.82e3 +R55 N005 N004 R_NOISELESS 1e8 +G4 MID N004 VEE_B MID 998e-3 +R56 N004 MID R_NOISELESS 1 +Rx N053 N052 R_NOISELESS 1e6 +Rdummy N053 MID R_NOISELESS 1e5 +G6 MID N048 CL_CLAMP N053 89.3 +Rdc1 N048 MID R_NOISELESS 1 +R32 N048 N049 R_NOISELESS 1e4 +R50 N049 MID R_NOISELESS 2.65e3 +G10 MID N050 N049 MID 4.77 +C16 N049 N048 5.31e-6 +R63 N050 MID R_NOISELESS 1 +R64 N050 N051 R_NOISELESS 1e4 +R65 N051 MID R_NOISELESS 10.01 +C22 N051 N050 159e-15 +R89 N001 MID R_NOISELESS 1 +S2 VCC ESDn ESDn VCC ESD_SW +S3 VCC ESDp ESDp VCC ESD_SW +S4 ESDn VEE VEE ESDn ESD_SW +S5 ESDp VEE VEE ESDp ESD_SW +E2 N046 MID OUT MID 1 +R10 MID N046 R_NOISELESS 1e9 +H1 N045 MID V4 1e3 +R11 MID N045 R_NOISELESS 1e9 +S6 VCC OUT OUT VCC ESD_SW +S7 OUT VEE VEE OUT ESD_SW +S1 N049 N048 SW_OL MID OL_SW +XVCCS_LIM_ZO_TLV6001 N051 MID MID N052 VCCS_LIM_ZO_TLV6001 +R57 N052 MID R_NOISELESS 1 +.ends TLV6001 +* +.SUBCKT VOS_DRIFT_TLV6001 VOS+ VOS- +.PARAM DC = 595.218e-6 +.PARAM POL = 1 +.PARAM DRIFT = 2.00E-06 +E1 VOS+ VOS- VALUE={DC+POL*DRIFT*(TEMP-27)} +.ENDS +* +.subckt CLAMP_AMP_HI_TLV6001 VC+ VC- VIN COM VO+ VO- +.param G=10 +GVo+ COM Vo+ Value = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)10e-3 | V(4,1)>10e-3),1,0)} +.ends OL_SENSE_TLV6001 +* +.subckt VCCS_LIM_ZO_TLV6001 VC+ VC- IOUT+ IOUT- +.param Gain = 1e3 +.param Ipos =30e3 +.param Ineg = -30e3 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends VCCS_LIM_ZO_TLV6001 +* diff --git a/paranoia_parallel/examples/optran/models/TLV9002.lib b/paranoia_parallel/examples/optran/models/TLV9002.lib new file mode 100644 index 000000000..24b450a31 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/TLV9002.lib @@ -0,0 +1,422 @@ +* TLV9002 - Rev. C +* Created by Paul Goedeke; May 01, 2018 - Revised by GPAMPS Team; 2021-06-10 +* Created with Green-Williams-Lis Op Amp Macro-model Architecture +* Copyright 2018 by Texas Instruments Corporation +****************************************************** +* MACRO-MODEL SIMULATED PARAMETERS: +****************************************************** +* OPEN-LOOP GAIN AND PHASE VS. FREQUENCY WITH RL, CL EFFECTS (Aol) +* UNITY GAIN BANDWIDTH (GBW) +* INPUT COMMON-MODE REJECTION RATIO VS. FREQUENCY (CMRR) +* POWER SUPPLY REJECTION RATIO VS. FREQUENCY (PSRR) +* DIFFERENTIAL INPUT IMPEDANCE (Zid) +* COMMON-MODE INPUT IMPEDANCE (Zic) +* OPEN-LOOP OUTPUT IMPEDANCE VS. FREQUENCY (Zo) +* OUTPUT CURRENT THROUGH THE SUPPLY (Iout) +* INPUT VOLTAGE NOISE DENSITY VS. FREQUENCY (en) +* INPUT CURRENT NOISE DENSITY VS. FREQUENCY (in) +* OUTPUT VOLTAGE SWING vs. OUTPUT CURRENT (Vo) +* SHORT-CIRCUIT OUTPUT CURRENT (Isc) +* QUIESCENT CURRENT (Iq) +* SETTLING TIME VS. CAPACITIVE LOAD (ts) +* SLEW RATE (SR) +* SMALL SIGNAL OVERSHOOT VS. CAPACITIVE LOAD +* LARGE SIGNAL RESPONSE +* OVERLOAD RECOVERY TIME (tor) +* INPUT BIAS CURRENT (Ib) +* INPUT OFFSET CURRENT (Ios) +* INPUT OFFSET VOLTAGE (Vos) +* INPUT COMMON-MODE VOLTAGE RANGE (Vcm) +* INPUT OFFSET VOLTAGE VS. INPUT COMMON-MODE VOLTAGE (Vos vs. Vcm) +* INPUT/OUTPUT ESD CELLS (ESDin, ESDout) +****************************************************** +.subckt TLV9002 IN+ IN- VCC VEE OUT +****************************************************** +* MODEL DEFINITIONS: +.model BB_SW VSWITCH(Ron=50 Roff=1e12 Von=700e-3 Voff=0) +.model ESD_SW VSWITCH(Ron=50 Roff=1e12 Von=250e-3 Voff=0) +.model OL_SW VSWITCH(Ron=1e-3 Roff=1e9 Von=900e-3 Voff=800e-3) +.model OR_SW VSWITCH(Ron=10e-3 Roff=1e9 Von=1e-3 Voff=0) +.model R_NOISELESS RES(T_ABS=-273.15) +****************************************************** + + +I_OS ESDn MID 3P +I_B 33 MID 5P +V_GRp 58 MID 180 +V_GRn 59 MID -180 +V_ISCp 52 MID 42 +V_ISCn 53 MID -42 +V_ORn 41 VCLP -1.22 +V11 57 40 0 +V_ORp 39 VCLP 1.22 +V12 56 38 0 +V4 29 OUT 0 +VCM_MIN 79 VEE_B -100M +VCM_MAX 80 VCC_B 100M +I_Q VCC VEE 60U +V_OS 22 33 396.11U +XVOS_VCM 21 22 VCC VEE VOS_SRC_0 +C30 23 24 15.92U +R85 24 MID R_NOISELESS 30K +R84 24 23 R_NOISELESS 10K +R83 23 MID R_NOISELESS 1 +GVCCS10 26 MID 25 MID -1 +C29 27 MID 19.89F +R82 25 27 R_NOISELESS 10K +R81 25 28 R_NOISELESS 70K +R80 28 MID R_NOISELESS 1 +GVCCS9 28 MID 24 MID -3.8 +GVCCS4 23 MID CL_CLAMP 29 -87 +R79 30 MID R_NOISELESS 1 +XU1 31 MID MID 30 VCCS_LIM_ZO_0 +R78 31 MID R_NOISELESS 101 +C22 31 26 15.92F +R65 31 26 R_NOISELESS 10K +R64 26 MID R_NOISELESS 1 +R63 29 30 R_NOISELESS 400K +XCLAWn MID VIMON VEE_B 32 VCCS_LIM_CLAW-_0 +Xe_n ESDp 33 VNSE_0 +Xi_nn ESDn MID FEMT_0_0 +Xi_np MID 33 FEMT_0_0 +S5 VEE ESDp VEE ESDp S_VSWITCH_1 +S4 VEE ESDn VEE ESDn S_VSWITCH_2 +S2 ESDn VCC ESDn VCC S_VSWITCH_3 +S3 ESDp VCC ESDp VCC S_VSWITCH_4 +C28 34 MID 1P +R77 35 34 R_NOISELESS 100 +C27 36 MID 1P +R76 37 36 R_NOISELESS 100 +R75 MID 38 R_NOISELESS 1 +GVCCS8 38 MID 39 MID -1 +R74 40 MID R_NOISELESS 1 +GVCCS7 40 MID 41 MID -1 +C25 42 MID 25F +R69 MID 42 R_NOISELESS 1MEG +GVCCS6 42 MID VSENSE MID -1U +C20 CLAMP MID 151.6N +R68 MID CLAMP R_NOISELESS 1MEG +XVCCS_LIM_2 43 MID MID CLAMP VCCS_LIM_2_0 +R44 MID 43 R_NOISELESS 1MEG +XVCCS_LIM_1 44 45 MID 43 VCCS_LIM_1_0 +Rdummy MID 29 R_NOISELESS 40K +R61 MID 46 R_NOISELESS 273.3609 +C16 46 47 1.1018N +R58 47 46 R_NOISELESS 100MEG +GVCCS2 47 MID VEE_B MID -258.98M +R57 MID 47 R_NOISELESS 1 +R56 MID 48 R_NOISELESS 273.3609 +C15 48 49 1.1018N +R55 49 48 R_NOISELESS 100MEG +GVCCS1 49 MID VCC_B MID -258.98M +R54 MID 49 R_NOISELESS 1 +R49 MID 50 R_NOISELESS 337.4K +C14 50 51 591.7F +R48 51 50 R_NOISELESS 100MEG +G_adjust 51 MID ESDp MID -44.81M +Rsrc MID 51 R_NOISELESS 1 +XIQPos VIMON MID MID VCC VCCS_LIMIT_IQ_0 +XIQNeg MID VIMON VEE MID VCCS_LIMIT_IQ_0 +C_DIFF ESDp ESDn 1P +XCL_AMP 52 53 VIMON MID 54 55 CLAMP_AMP_LO_0 +SOR_SWp CLAMP 56 CLAMP 56 S_VSWITCH_5 +SOR_SWn 57 CLAMP 57 CLAMP S_VSWITCH_6 +XGR_AMP 58 59 60 MID 61 62 CLAMP_AMP_HI_0 +R39 58 MID R_NOISELESS 1T +R37 59 MID R_NOISELESS 1T +R42 VSENSE 60 R_NOISELESS 1M +C19 60 MID 1F +R38 61 MID R_NOISELESS 1 +R36 MID 62 R_NOISELESS 1 +R40 61 63 R_NOISELESS 1M +R41 62 64 R_NOISELESS 1M +C17 63 MID 1F +C18 MID 64 1F +XGR_SRC 63 64 CLAMP MID VCCS_LIM_GR_0 +R21 54 MID R_NOISELESS 1 +R20 MID 55 R_NOISELESS 1 +R29 54 65 R_NOISELESS 1M +R30 55 66 R_NOISELESS 1M +C9 65 MID 1F +C8 MID 66 1F +XCL_SRC 65 66 CL_CLAMP MID VCCS_LIM_4_0 +R22 52 MID R_NOISELESS 1T +R19 MID 53 R_NOISELESS 1T +XCLAWp VIMON MID 67 VCC_B VCCS_LIM_CLAW+_0 +R12 67 VCC_B R_NOISELESS 1K +R16 67 68 R_NOISELESS 1M +R13 VEE_B 32 R_NOISELESS 1K +R17 69 32 R_NOISELESS 1M +C6 69 MID 1F +C5 MID 68 1F +G2 VCC_CLP MID 68 MID -1M +R15 VCC_CLP MID R_NOISELESS 1K +G3 VEE_CLP MID 69 MID -1M +R14 MID VEE_CLP R_NOISELESS 1K +XCLAW_AMP VCC_CLP VEE_CLP VOUT_S MID 70 71 CLAMP_AMP_LO_0 +R26 VCC_CLP MID R_NOISELESS 1T +R23 VEE_CLP MID R_NOISELESS 1T +R25 70 MID R_NOISELESS 1 +R24 MID 71 R_NOISELESS 1 +R27 70 72 R_NOISELESS 1M +R28 71 73 R_NOISELESS 1M +C11 72 MID 1F +C10 MID 73 1F +XCLAW_SRC 72 73 CLAW_CLAMP MID VCCS_LIM_3_0 +H2 37 MID V11 -1 +H3 35 MID V12 1 +C12 SW_OL MID 100P +R32 74 SW_OL R_NOISELESS 100 +R31 74 MID R_NOISELESS 1 +XOL_SENSE MID 74 36 34 OL_SENSE_0 +S1 23 24 SW_OL MID S_VSWITCH_7 +H1 75 MID V4 1K +S7 VEE OUT VEE OUT S_VSWITCH_8 +S6 OUT VCC OUT VCC S_VSWITCH_9 +R11 MID 76 R_NOISELESS 1T +R18 76 VOUT_S R_NOISELESS 100 +C7 VOUT_S MID 1P +E5 76 MID OUT MID 1 +C13 VIMON MID 1N +R33 75 VIMON R_NOISELESS 100 +R10 MID 75 R_NOISELESS 1T +R47 77 VCLP R_NOISELESS 100 +C24 VCLP MID 100P +E4 77 MID CL_CLAMP MID 1 +R46 MID CL_CLAMP R_NOISELESS 1K +G9 CL_CLAMP MID CLAW_CLAMP MID -1M +R45 MID CLAW_CLAMP R_NOISELESS 1K +G8 CLAW_CLAMP MID 42 MID -1M +R43 MID VSENSE R_NOISELESS 1K +G15 VSENSE MID CLAMP MID -1M +C4 44 MID 1F +R9 44 78 R_NOISELESS 1M +R7 MID 79 R_NOISELESS 1T +R6 80 MID R_NOISELESS 1T +R8 MID 78 R_NOISELESS 1 +XVCM_CLAMP 81 MID 78 MID 80 79 VCCS_EXT_LIM_0 +E1 MID 0 82 0 1 +R89 VEE_B 0 R_NOISELESS 1 +R5 83 VEE_B R_NOISELESS 1M +C3 83 0 1F +R60 82 83 R_NOISELESS 1MEG +C1 82 0 100e-9 +R3 82 0 R_NOISELESS 1T +R59 84 82 R_NOISELESS 1MEG +C2 84 0 1F +R4 VCC_B 84 R_NOISELESS 1M +R88 VCC_B 0 R_NOISELESS 1 +G17 VEE_B 0 VEE 0 -1 +G16 VCC_B 0 VCC 0 -1 +R_PSR 85 81 R_NOISELESS 1K +G_PSR 81 85 48 46 -1M +R2 45 ESDn R_NOISELESS 1M +R1 85 86 R_NOISELESS 1M +R_CMR 21 86 R_NOISELESS 1K +G_CMR 86 21 50 MID -1M +C_CMn ESDn MID 5P +C_CMp MID ESDp 5P +R53 ESDn MID R_NOISELESS 1T +R52 MID ESDp R_NOISELESS 1T +R35 IN- ESDn R_NOISELESS 10M +R34 IN+ ESDp R_NOISELESS 10M + +.MODEL S_VSWITCH_1 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_2 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_3 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_4 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_5 VSWITCH (RON=10M ROFF=1T VON=10M VOFF=0) +.MODEL S_VSWITCH_6 VSWITCH (RON=10M ROFF=1T VON=10M VOFF=0) +.MODEL S_VSWITCH_7 VSWITCH (RON=1M ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_8 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) +.MODEL S_VSWITCH_9 VSWITCH (RON=50 ROFF=1T VON=500M VOFF=100M) + +.ENDS TLV9002 +* +.SUBCKT VOS_SRC_0 V+ V- REF+ REF- +E1 V+ 1 TABLE {(V(REF+, V-))} = ++(0, 0.8E-3) ++(1, 0.8E-3) ++(1.3, 0) ++(5.5, 0) +E2 1 V- TABLE {(V(V-, REF-))}= ++(-0.7, -2E-4) ++(-0.5, -2E-4) ++(-0.4, 0) ++(5.5, 0) +.ENDS VOS_SRC_0 +* + + +.SUBCKT VCCS_LIM_ZO_0 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 100 +.PARAM IPOS = 35E3 +.PARAM INEG = -35E3 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* + + +.SUBCKT VCCS_LIM_CLAW-_0 VC+ VC- IOUT+ IOUT- +G1 IOUT+ IOUT- TABLE {ABS(V(VC+,VC-))} = ++(00.0000, 0.00001) ++(14.0000, 0.000379) ++(28.0000, 0.000877) ++(37.3333, 0.001382) ++(37.8000, 0.00142) ++(38.7333, 0.001493) ++(39.6667, 0.001583) ++(40.6000, 0.001703) ++(41.5333, 0.00191) ++(42.0000, 0.00204) +.ENDS VCCS_LIM_CLAW-_0 +* + + +.SUBCKT VNSE_0 1 2 +.PARAM FLW=10 +.PARAM NLF=115 +.PARAM NVR=27 +.PARAM GLF={PWR(FLW,0.25)*NLF/1164} +.PARAM RNV={1.184*PWR(NVR,2)} +.MODEL DVN D KF={PWR(FLW,0.5)/1E11} IS=1.0E-16 +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVN +D2 8 0 DVN +E1 3 6 7 8 {GLF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNV} +R5 5 0 {RNV} +R6 3 4 1E9 +R7 4 0 1E9 +E3 1 2 3 4 1 +.ENDS +* + + +.SUBCKT FEMT_0_0 1 2 +.PARAM FLWF=0.001 +.PARAM NLFF=23 +.PARAM NVRF=23 +.PARAM GLFF={PWR(FLWF,0.25)*NLFF/1164} +.PARAM RNVF={1.184*PWR(NVRF,2)} +.MODEL DVNF D KF={PWR(FLWF,0.5)/1E11} IS=1.0E-16 +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVNF +D2 8 0 DVNF +E1 3 6 7 8 {GLFF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNVF} +R5 5 0 {RNVF} +R6 3 4 1E9 +R7 4 0 1E9 +G1 1 2 3 4 1E-6 +.ENDS +* + + +.SUBCKT VCCS_LIM_2_0 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 11.15E-3 +.PARAM IPOS = 0.352 +.PARAM INEG = -0.352 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* + + +.SUBCKT VCCS_LIM_1_0 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 1E-4 +.PARAM IPOS = .5 +.PARAM INEG = -.5 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VC+,VC-),INEG,IPOS)} +.ENDS +* + + +.SUBCKT VCCS_LIMIT_IQ_0 VC+ VC- IOUT+ IOUT- +.PARAM GAIN = 1E-3 +G1 IOUT- IOUT+ VALUE={IF( (V(VC+,VC-)<=0),0,GAIN*V(VC+,VC-) )} +.ENDS +* + + +.SUBCKT CLAMP_AMP_LO_0 VC+ VC- VIN COM VO+ VO- +.PARAM G=1 +GVO+ COM VO+ VALUE = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVO- COM VO- VALUE = {IF(V(VIN,COM)V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVO- COM VO- VALUE = {IF(V(VIN,COM)10E-3 | V(OLP,COM)>10E-3),1,0)} +.ENDS +* + + +.SUBCKT VCCS_EXT_LIM_0 VIN+ VIN- IOUT- IOUT+ VP+ VP- +.PARAM GAIN = 1 +G1 IOUT+ IOUT- VALUE={LIMIT(GAIN*V(VIN+,VIN-),V(VP-,VIN-), V(VP+,VIN-))} +.ENDS +* + + diff --git a/paranoia_parallel/examples/optran/models/opa1612c-dual.lib b/paranoia_parallel/examples/optran/models/opa1612c-dual.lib new file mode 100644 index 000000000..59ad627f9 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/opa1612c-dual.lib @@ -0,0 +1,8 @@ +* A dual opamp ngspice model +* file name: OPA1612c-dual.lib +.subckt OPA1612c 1OUT 1IN- 1IN+ VEE 2IN+ 2IN- 2OUT VCC +.include opa1611.lib +XU1A 1IN+ 1IN- VCC VEE 1OUT opa1611 +XU1B 2IN+ 2IN- VCC VEE 2OUT opa1611 +.ends + diff --git a/paranoia_parallel/examples/optran/models/opa1656.lib b/paranoia_parallel/examples/optran/models/opa1656.lib new file mode 100644 index 000000000..23865865d --- /dev/null +++ b/paranoia_parallel/examples/optran/models/opa1656.lib @@ -0,0 +1,547 @@ +* OPA1656 - Rev. A +* Created by Alexander Davis; February 01, 2019 +* Created with Green-Williams-Lis Op Amp Macro-model Architecture +* Copyright 2019 by Texas Instruments Corporation +****************************************************** +* MACRO-MODEL SIMULATED PARAMETERS: +****************************************************** +* OPEN-LOOP GAIN AND PHASE VS. FREQUENCY WITH RL, CL EFFECTS (Aol) +* UNITY GAIN BANDWIDTH (GBW) +* INPUT COMMON-MODE REJECTION RATIO VS. FREQUENCY (CMRR) +* POWER SUPPLY REJECTION RATIO VS. FREQUENCY (PSRR) +* DIFFERENTIAL INPUT IMPEDANCE (Zid) +* COMMON-MODE INPUT IMPEDANCE (Zic) +* OPEN-LOOP OUTPUT IMPEDANCE VS. FREQUENCY (Zo) +* OUTPUT CURRENT THROUGH THE SUPPLY (Iout) +* INPUT VOLTAGE NOISE DENSITY VS. FREQUENCY (en) +* INPUT CURRENT NOISE DENSITY VS. FREQUENCY (in) +* OUTPUT VOLTAGE SWING vs. OUTPUT CURRENT (Vo) +* SHORT-CIRCUIT OUTPUT CURRENT (Isc) +* QUIESCENT CURRENT (Iq) +* SETTLING TIME VS. CAPACITIVE LOAD (ts) +* SLEW RATE (SR) +* SMALL SIGNAL OVERSHOOT VS. CAPACITIVE LOAD +* LARGE SIGNAL RESPONSE +* OVERLOAD RECOVERY TIME (tor) +* INPUT BIAS CURRENT (Ib) +* INPUT OFFSET CURRENT (Ios) +* INPUT OFFSET VOLTAGE (Vos) +* INPUT OFFSET VOLTAGE VS. TEMPERATURE (Vos Drift) +* INPUT COMMON-MODE VOLTAGE RANGE (Vcm) +* INPUT OFFSET VOLTAGE VS. INPUT COMMON-MODE VOLTAGE (Vos vs. Vcm) +* INPUT/OUTPUT ESD CELLS (ESDin, ESDout) +****************************************************** +.subckt OPA1656 IN+ IN- VCC VEE OUT +****************************************************** +.MODEL R_NOISELESS RES (T_ABS=-273.15) +*** +.MODEL R_OS RES (TC1=14.9E-3) +C_C10 MID N45892 1e-15 TC=0,0 +C_C11 MID N61579 1e-15 TC=0,0 +C_C12 MID N56659 1e-15 TC=0,0 +C_C13 MID N42834 1e-15 TC=0,0 +C_C14 N45974 MID 1e-15 TC=0,0 +C_C15 N56721 MID 1e-15 TC=0,0 +C_C16 MID N38096 1e-15 TC=0,0 +C_C17 N44757 MID 1e-15 TC=0,0 +C_C18 N31014 MID 1e-15 TC=0,0 +C_C19 CLAMP MID 2.07e-7 TC=0,0 +C_C1a3 N680862 N680892 1.03e-13 TC=0,0 +C_C1a4 N704730 N704760 3.79e-13 TC=0,0 +C_C1a5 N687495 N199178 1.06e-10 TC=0,0 +C_C1b3 N680920 N680950 1.38e-14 TC=0,0 +C_C1b4 N704788 N704818 1.83e-13 TC=0,0 +C_C20 MID VIMON 1e-9 TC=0,0 +C_C21 MID VOUT_S 1e-9 TC=0,0 +C_C22 N716437 N716973 6.24E-15 TC=0,0 +C_C23 MID N716729 4.24E-12 TC=0,0 +C_C24 N573889 N573900 7.96e-7 TC=0,0 +C_C25 N673376 N673398 3.18e-14 TC=0,0 +C_C26 0 N673332 1.06e-11 TC=0,0 +C_C27 0 N673526 1.59e-12 TC=0,0 +C_C28 MID N716825 2.95E-16 TC=0,0 +C_C29 MID N716679 2.95E-16 TC=0,0 +C_C30 MID N576238 2.95E-16 TC=0,0 +C_C31 MID N68747 1e-12 TC=0,0 +C_C32 VCLP MID 4.613e-15 TC=0,0 +C_C33 N406634 0 1e-15 TC=0,0 +C_C34 N317950 0 1 TC=0,0 +C_C35 N406794 0 1e-15 TC=0,0 +C_C36 MID SW_OL 1e-12 TC=0,0 +C_C37 MID N68594 1e-12 +C_C9 MID N35813 1e-15 TC=0,0 +C_C_CMn1 MID ESDN 1.9e-12 TC=0,0 +C_C_CMp1 ESDP MID 1.9e-12 TC=0,0 +C_C_DIFF1 ESDN ESDP 9.1e-12 TC=0,0 +E_E1 N112292 MID OUT MID 1 +E_E2 MID 0 N317950 0 0.5 +E_E3 N91498 MID CL_CLAMP MID 1 +E_E_VOS1 N10561 N06456 N637521 MID 1 +G_G24 N680862 MID ESDP MID -4.84e-4 +G_G25 N680920 MID N680892 MID -1 +G_G26 CMR MID N680950 MID -6.52e1 +G_G27 PSRP MID N704818 MID -1.72e3 +G_G28 N704788 MID N704760 MID -1 +G_G29 N704730 MID VCC_B MID -3.16e-4 +G_G30 VCC_CLP MID N35813 MID -1E-3 +G_G31 N73852 MID N55875 MID -1 +G_G32 N55050 MID N56119 MID -1 +G_G33 N10570 N10561 CMR MID -1e-3 +G_G34 N687495 MID VEE_B MID -8.43e-1 +G_G35 VEE_CLP MID N38096 MID -1E-3 +G_G36 N25816 N11984 PSRP N199178 -1e-3 +G_G37 VSENSE MID CLAMP MID -1e-3 +G_G38 N716707 MID VSENSE MID -1 +G_G39 N716973 MID N716721 MID -1.4386E+01 +G_G40 N573889 0 CL_CLAMP N516723 -9.06e1 +G_G41 N673298 0 N573900 0 -7e2 +G_G42 N673376 0 N673518 0 -1 +G_G43 N716679 MID N716825 MID -1e-6 +G_G44 N716825 MID N716437 MID -1e-6 +G_G45 N576238 MID N716679 MID -1e-6 +G_G46 CLAW_CLAMP MID N576238 MID -1e-3 +G_G47 CL_CLAMP MID CLAW_CLAMP MID -1e-3 +G_G48 VCC_B 0 VCC 0 -1 +G_G49 VEE_B 0 VEE 0 -1 +G_Gc2 N673504 0 N673324 0 -1 +I_I_B1 N06456 MID DC 5e-12 +I_I_OS1 ESDN MID DC 3e-12 +I_I_Q1 VCC VEE DC 4e-3 +I_I_VOS1 MID N618113 DC 33.557u +R_R100 ESDN IN- R_NOISELESS 250 +R_R101 N716973 MID R_NOISELESS 1 +R_R102 N716437 MID R_NOISELESS 7.00E+04 +R_R103 ESDN N11991 R_NOISELESS 1e-3 +R_R104 N673518 N673504 R_NOISELESS 6.67e2 +R_R105 ESDN MID R_NOISELESS 1e12 +R_R106 N673332 N673324 R_NOISELESS 1e4 +R_R107 N673526 N673518 R_NOISELESS 1e3 +R_R108 N673398 N673376 R_NOISELESS 1e4 +R_R109 0 N573889 R_NOISELESS 1 +R_R110 0 N573900 R_NOISELESS 1.43e2 +R_R111 0 N673298 R_NOISELESS 1 +R_R112 0 N673504 R_NOISELESS 1 +R_R113 0 N673376 R_NOISELESS 1 +R_R114 0 N673398 R_NOISELESS 1.01e2 +R_R115 0 N673446 R_NOISELESS 1 +R_R116 N716825 MID R_NOISELESS 1e6 +R_R117 N716679 MID R_NOISELESS 1e6 +R_R118 N576238 MID R_NOISELESS 1e6 +R_R119 N68747 OLN R_NOISELESS 100 +R_R120 MID CLAW_CLAMP R_NOISELESS 1e3 +R_R121 MID CL_CLAMP R_NOISELESS 1e3 +R_R122 N91498 VCLP R_NOISELESS 1e6 +R_R123 VCC_B N406634 R_NOISELESS 1e-3 +R_R124 N406634 N317950 R_NOISELESS 1e6 +R_R125 N317950 N406794 R_NOISELESS 1e6 +R_R126 N406794 VEE_B R_NOISELESS 1e-3 +R_R127 N69264 SW_OL R_NOISELESS 100 +R_R128 VCC_B 0 R_NOISELESS 1 +R_R129 N317950 0 R_NOISELESS 1e12 +R_R130 VEE_B 0 R_NOISELESS 1 +R_R131 N68594 OLP R_NOISELESS 100 +R_R132 N69264 MID R_NOISELESS 1 +R_R1a3 N680862 N680892 R_NOISELESS 1e8 +R_R1a4 N704730 N704760 R_NOISELESS 1e8 +R_R1a5 N687495 N199178 R_NOISELESS 1e8 +R_R1a6 N573900 N573889 R_NOISELESS 1e5 +R_R1b3 N680920 N680950 R_NOISELESS 1e8 +R_R1b4 N704788 N704818 R_NOISELESS 1e8 +R_R2a3 N680892 MID R_NOISELESS 2.07e5 +R_R2a4 N704760 MID R_NOISELESS 1e5 +R_R2a5 N199178 MID R_NOISELESS 3.75e1 +R_R2b3 N680950 MID R_NOISELESS 1.56e6 +R_R2b4 N704818 MID R_NOISELESS 5.8e4 +R_R2b5 N673324 N673298 R_NOISELESS 7.4e5 +R_R46 N680862 MID R_NOISELESS 1 +R_R47 N680920 MID R_NOISELESS 1 +R_R48 CMR MID R_NOISELESS 1 +R_R49 PSRP MID R_NOISELESS 1 +R_R50 N704788 MID R_NOISELESS 1 +R_R51 N704730 MID R_NOISELESS 1 +R_R52 MID N50645 R_NOISELESS 1e9 +R_R53 MID N56919 R_NOISELESS 1e9 +R_R54 N35669 VCC_B R_NOISELESS 1e3 +R_R55 VCC_CLP MID R_NOISELESS 1e3 +R_R56 MID VCC_CLP R_NOISELESS 1e9 +R_R57 N45856 MID R_NOISELESS 1 +R_R58 N35813 N35669 R_NOISELESS 1e-3 +R_R59 N42663 MID R_NOISELESS 1 +R_R60 N61579 VSENSE R_NOISELESS 1e-3 +R_R61 N42834 N42663 R_NOISELESS 1e-3 +R_R62 N56635 MID R_NOISELESS 1 +R_R63 N45892 N45856 R_NOISELESS 1e-3 +R_R64 N45974 N45986 R_NOISELESS 1e-3 +R_R65 N56659 N56635 R_NOISELESS 1e-3 +R_R66 N38096 N38050 R_NOISELESS 1e-3 +R_R67 N44757 N44799 R_NOISELESS 1e-3 +R_R68 MID N73852 R_NOISELESS 1 +R_R69 MID N45986 R_NOISELESS 1 +R_R70 MID N55050 R_NOISELESS 1 +R_R71 N56721 N56733 R_NOISELESS 1e-3 +R_R72 MID N56733 R_NOISELESS 1 +R_R73 N38050 VEE_B R_NOISELESS 1e3 +R_R74 N10561 N10570 R_NOISELESS 1e3 +R_R75 VEE_CLP MID R_NOISELESS 1e3 +R_R76 MID N44799 R_NOISELESS 1 +R_R77 N687495 MID R_NOISELESS 1 +R_R78 MID N48550 R_NOISELESS 1e9 +R_R79 MID N56891 R_NOISELESS 1e9 +R_R80 N11984 N25816 R_NOISELESS 1e3 +R_R81 MID VEE_CLP R_NOISELESS 1e9 +R_R82 MID ESDP R_NOISELESS 1e12 +R_R83 N30136 MID R_NOISELESS 1e9 +R_R84 N31014 N30913 R_NOISELESS 1e-3 +R_R85 ESDP IN+ R_NOISELESS 250 +R_R86 N10570 N11984 R_NOISELESS 1e-3 +R_R87 MID N30913 R_NOISELESS 1 +R_R88 MID AOL_1 R_NOISELESS 1e6 +R_R89 MID CLAMP R_NOISELESS 1e6 +R_R90 MID VSENSE R_NOISELESS 1e3 +R_R91 MID N28602 R_NOISELESS 1e9 +R_R92 N716721 N716707 R_NOISELESS 1.64E+04 +R_R93 N716729 N716721 R_NOISELESS 1e4 +R_R94 VIMON N110431 R_NOISELESS 100 +R_R95 VOUT_S N112292 R_NOISELESS 100 +R_R96 N716973 N716437 R_NOISELESS 1e6 +R_R97 MID N110431 R_NOISELESS 1e9 +R_R98 MID N112292 R_NOISELESS 1e9 +R_R99 MID N716707 R_NOISELESS 1 +R_R_VOS1 N618113 MID R_OS 1 +R_Rdummy2 0 N516723 R_NOISELESS 3.15e3 +R_Rx2 N516723 N673446 R_NOISELESS 3.14e4 +V_V5 N637521 N618113 455.087u +V_V_GRN1 N56891 MID -85 +V_V_GRP1 N56919 MID 80 +V_V_ISCN1 N48550 MID -130 +V_V_ISCP1 N50645 MID 117 +V_V_ORN1 N55875 VCLP -2.3 +V_V_ORP1 N56119 VCLP 2.15 +V_VCM_MAX1 N30136 VCC_B -2 +V_VCM_MIN1 N28602 VEE_B 0 +X_AOL_1_OPA1656 N31014 N11991 MID AOL_1 AOL_1_OPA1656 +X_AOL_2_OPA1656 AOL_1 MID MID CLAMP AOL_2_OPA1656 +X_CL_AMP1_OPA1656 N50645 N48550 VIMON MID N45856 N45986 CLAMP_AMP_LO_OPA1656 +X_CL_SRC1_OPA1656 N45892 N45974 CL_CLAMP MID CL_SRC_OPA1656 +X_CLAW_AMP1_OPA1656 VCC_CLP VEE_CLP VOUT_S MID N42663 N44799 CLAMP_AMP_LO_OPA1656 +X_CLAW_SRC1_OPA1656 N42834 N44757 CLAW_CLAMP MID CLAW_SRC_OPA1656 +X_CLAWN1_OPA1656 MID VIMON VEE_B N38050 CLAWN_OPA1656 +X_CLAWP1_OPA1656 VIMON MID N35669 VCC_B CLAWP_OPA1656 +X_e_n1_OPA1656 ESDP N06456 VNSE_OPA1656 +X_ESD_IN1_OPA1656 ESDN ESDP VCC VEE ESD_IN_OPA1656 +X_ESD_OUT1_OPA1656 OUT VCC VEE ESD_OUT_OPA1656 +X_GR_AMP1_OPA1656 N56919 N56891 N61579 MID N56635 N56733 CLAMP_AMP_HI_OPA1656 +X_GR_SRC1_OPA1656 N56659 N56721 CLAMP MID GR_SRC_OPA1656 +X_H2_OPA1656 N73852 N166377 OLN MID 08_Op_Amp_Complete_H2_OPA1656 +X_H3_OPA1656 N55050 N166817 OLP MID 08_Op_Amp_Complete_H3_OPA1656 +X_H4_OPA1656 OUT N516723 N110431 MID 08_Op_Amp_Complete_H4_OPA1656 +X_i_nn1_OPA1656 ESDN MID FEMT_OPA1656 +X_i_np1_OPA1656 N06456 MID FEMT_OPA1656 +X_IQ_N1_OPA1656 MID VIMON MID VEE IQ_SRC_OPA1656 +X_IQ_P1_OPA1656 VIMON MID VCC MID IQ_SRC_OPA1656 +X_OL_SENSE1_OPA1656 MID N69264 N68747 N68594 OL_SENSE_OPA1656 +X_SW_OL1_OPA1656 SW_OL MID N573889 N573900 SW_OL_OPA1656 +X_SW_OR1_OPA1656 CLAMP N166377 N166817 SW_OR_OPA1656 +X_U3_OPA1656 N673398 0 0 N673446 ZO_SRC_OPA1656 +X_U4_OPA1656 ESDN ESDP ESD_BB_OPA1656 +X_VCM_CLAMP1_OPA1656 N25816 MID N30913 MID N30136 N28602 VCM_CLAMP_OPA1656 +.ENDS OPA1656 + +.subckt 08_Op_Amp_Complete_H4_OPA1656 1 2 3 4 +H_H4 3 4 VH_H4 -1e3 +VH_H4 1 2 0V +.ends 08_Op_Amp_Complete_H4_OPA1656 + +.subckt 08_Op_Amp_Complete_H3_OPA1656 1 2 3 4 +H_H3 3 4 VH_H3 -1 +VH_H3 1 2 0V +.ends 08_Op_Amp_Complete_H3_OPA1656 + +.subckt 08_Op_Amp_Complete_H2_OPA1656 1 2 3 4 +H_H2 3 4 VH_H2 -1 +VH_H2 1 2 0V +.ends 08_Op_Amp_Complete_H2_OPA1656 + +*$ +.subckt AOL_1_OPA1656 VC+ VC- IOUT+ IOUT- +.param Gain = 1e-4 +.param Ipos = .5 +.param Ineg = -.5 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends +*$ +* +.subckt AOL_2_OPA1656 VC+ VC- IOUT+ IOUT- +.param Gain = 6.5e-1 +.param Ipos = 5.1957 +.param Ineg = -5.1957 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends +*$ +.subckt AOL_2_EN_OPA1656 VC+ VC- IOUT+ IOUT- EN MID +.param Gain = 2.03e-2 +.param Ipos = 0.143 +.param Ineg = -0.143 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(EN,MID)*V(VC+,VC-),Ineg,Ipos)} +.ends +*$ +* +.subckt CLAMP_AMP_HI_OPA1656 VC+ VC- VIN COM VO+ VO- +.param G=10 +* Output G(COM,0) when condition not met +GVo+ COM Vo+ Value = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)=VSmin & V(EN_IN,GND)>=ENLH, 1, 0)} +RS1 N1 N2 5k +RS2 N1 N3 50 +D1 N2 N3 DD +.MODEL DD D RS=0.001 N = 0.001 +C1 N2 MID 3n +VREF NR MID 0.5 +GCOMP MID OUT VALUE = {0.5*(SGN(V(N2,NR)) - ABS(SGN(V(N2,NR))) + 2)} +* .MODEL DD D RS=0.001 N = 0.001 +.ends +*$ +* +.subckt ESD_BB_OPA1656 ESDn ESDp +.model BB_SW VSWITCH(Ron=50 Roff=1e12 Von=700e-3 Voff=650e-3) +S1 ESDp ESDn ESDn ESDp BB_SW +S2 ESDn ESDp ESDp ESDn BB_SW +.ends +*$ +* +.subckt ESD_EN_OPA1656 EN_IN VCC VEE +.model ESD_SW VSWITCH(Ron=50 Roff=1e12 Von=500e-3 Voff=450e-3) +S1 VCC EN_IN EN_IN VCC ESD_SW +S2 EN_IN VEE VEE EN_IN ESD_SW +.ends +*$ +* +.subckt ESD_IN_OPA1656 ESDn ESDp VCC VEE +.model ESD_SW VSWITCH(Ron=50 Roff=1e12 Von=500e-3 Voff=450e-3) +S1 VCC ESDn ESDn VCC ESD_SW +S2 VCC ESDp ESDp VCC ESD_SW +S3 ESDn VEE VEE ESDn ESD_SW +S4 ESDp VEE VEE ESDp ESD_SW +.ends +*$ +* +.subckt ESD_OUT_OPA1656 OUT VCC VEE +.model ESD_SW VSWITCH(Ron=50 Roff=1e12 Von=500e-3 Voff=450e-3) +S1 VCC OUT OUT VCC ESD_SW +S2 OUT VEE VEE OUT ESD_SW +.ends +*$ +* +.subckt FEMT_OPA1656 1 2 +* Input variables +* Set up 1/f noise +* FLW = 1/f frequency in Hz +.param FLWF=1e-3 +* NLF = voltage noise density at 1/f frequency in fA/rt(Hz) +.param NLFF=19 +* Set up broadband noise +* NVR = broadband voltage noise density in fA/rt(Hz) +.param NVRF=19 +* Calculated values +.param GLFF={PWR(FLWF,0.25)*NLFF/1164} +.param RNVF={1.184*PWR(NVRF,2)} +.model DVNF D KF={PWR(FLWF,0.5)/1E11} IS=1.0E-16 +* Circuit connections +I1 0 7 10e-3 +I2 0 8 10e-3 +D1 7 0 DVNF +D2 8 0 DVNF +E1 3 6 7 8 {GLFF} +R1 3 0 1e9 +R2 3 0 1e9 +R3 3 6 1e9 +E2 6 4 5 0 10 +R4 5 0 {RNVF} +R5 5 0 {RNVF} +R6 3 4 1e9 +R7 4 0 1e9 +G1 1 2 3 4 1e-6 +.ends +*$ +* +.subckt GR_SRC_OPA1656 VC+ VC- IOUT+ IOUT- +.param Gain = 1 +.param Ipos = 11 +.param Ineg = -11 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends +*$ +* +.SUBCKT IBN_EN EN MID IOUT +.param IB_EN = 1.19e-6 +.param IB_DIS = 1.19e-6 +G1 IOUT MID VALUE = {V(EN,MID)*IB_EN + (1 - V(EN,MID))*IB_DIS} +.ends +*$ +* +.SUBCKT IBP_EN EN MID IOUT +.param IB_EN = 1.2e-6 +.param IB_DIS = 1.2e-6 +G1 IOUT MID VALUE = {V(EN,MID)*IB_EN + (1 - V(EN,MID))*IB_DIS} +.ends +*$ +* +.SUBCKT IQ_EN VCC VEE MID EN +.param IQ_EN = 2.6e-3 +.param IQ_DIS = 5e-6 +G1 VCC VEE VALUE = {V(EN,MID)*IQ_EN + (1- V(EN,MID))*IQ_DIS} +.ends +*$ +* +.subckt IQ_SRC_OPA1656 VC+ VC- IOUT+ IOUT- +.param Gain = 1e-3 +G1 IOUT+ IOUT- VALUE={IF( (V(VC+,VC-)<=0),0,Gain*V(VC+,VC-) )} +.ends +*$ +* +.subckt OL_SENSE_OPA1656 1 2 3 4 +* pins COM SW+ OLN OLP +GSW+ 1 2 Value = {IF((V(3,1)>10e-3 | V(4,1)>10e-3),1,0)} +.ends +*$ +* +.subckt SW_OL_OPA1656 SW_OL MID CAP_L CAP_R +.model OL_SW VSWITCH(Ron=1e-3 Roff=1e9 Von=900e-3 Voff=800e-3) +S1 CAP_L CAP_R SW_OL MID OL_SW +.ends +*$ +* +.subckt SW_OR_OPA1656 CLAMP OLN OLP +.model OR_SW VSWITCH(Ron=10e-3 Roff=1e9 Von=10e-3 Voff=0) +S1 OLP CLAMP CLAMP OLP OR_SW +S2 CLAMP OLN OLN CLAMP OR_SW +.ends +*$ +* +.subckt VCM_CLAMP_OPA1656 VIN+ VIN- IOUT- IOUT+ VP+ VP- +.param Gain = 1 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VIN+,VIN-),V(VP-,VIN-), V(VP+,VIN-))} +.ends +*$ +* +.subckt VNSE_OPA1656 1 2 +* Input variables +* Set up 1/f noise +* FLW = 1/f frequency in Hz +.param FLW=1 +* NLF = voltage noise density at 1/f frequency in nV/rt(Hz) +.param NLF=193.3 +* Set up broadband noise +* NVR = broadband voltage noise density in nV/rt(Hz) +.param NVR=2.32 +* Calculated values +.param GLF={PWR(FLW,0.25)*NLF/1164} +.param RNV={1.184*PWR(NVR,2)} +.model DVN D KF={PWR(FLW,0.5)/1E11} IS=1.0E-16 +* Circuit connections +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVN +D2 8 0 DVN +E1 3 6 7 8 {GLF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNV} +R5 5 0 {RNV} +R6 3 4 1E9 +R7 4 0 1E9 +E3 1 2 3 4 1 +.ends +*$ +* +.subckt VOS_DRIFT_OPA1656 VOS- VOS+ +.model R_OS RES(TC1=14.9e-3) +IS 1 0 33.5e-6 +R1 0 1 R_OS 1 +VNEG 1 2 -8.75e-6 +E1 VOS+ VOS- 0 2 1 +.ends +*$ +.SUBCKT ZO_1_EN IOUT+ IOUT- VINP VINN EN MID +.param GAIN = 4.5e2 +G1 IOUT+ IOUT- VALUE = {GAIN*V(EN,MID)*V(VINP,VINN)} +.ends +*$ +* +.SUBCKT ZO_2_EN IOUT+ IOUT- VINP VINN EN MID +.param GAIN = 2 +G1 IOUT+ IOUT- VALUE = {GAIN*V(EN,MID)*V(VINP,VINN)} +.ends +*$ +* +.subckt ZO_SRC_OPA1656 VC+ VC- IOUT+ IOUT- +.param Gain = 1e2 +.param Ipos = 7.4e3 +.param Ineg = -8.2e3 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends +*$ diff --git a/paranoia_parallel/examples/optran/models/opa1656c-dual.lib b/paranoia_parallel/examples/optran/models/opa1656c-dual.lib new file mode 100644 index 000000000..6943367a8 --- /dev/null +++ b/paranoia_parallel/examples/optran/models/opa1656c-dual.lib @@ -0,0 +1,8 @@ +* A dual opamp ngspice model +* file name: OPA1656c-dual.lib +.subckt OPA1656c 1OUT 1IN- 1IN+ VEE 2IN+ 2IN- 2OUT VCC +.include opa1656.lib +XU1A 1IN+ 1IN- VCC VEE 1OUT opa1656 +XU1B 2IN+ 2IN- VCC VEE 2OUT opa1656 +.ends + diff --git a/paranoia_parallel/examples/optran/script-icout.txt b/paranoia_parallel/examples/optran/script-icout.txt new file mode 100644 index 000000000..38ac70142 --- /dev/null +++ b/paranoia_parallel/examples/optran/script-icout.txt @@ -0,0 +1,64 @@ +.temp {envtemp} +.param envtemp=40 +.option savecurrents +.control +set controlswait +if $?sharedmode +* script for shared ngspice +version +rusage +else +*** script for standard ngspice +* Start optran without first iteration, +* without gmin stepping and without src stepping +* optran step size 10 ms, duration 40s, +*optran 0 0 0 10m 40 0 +* stop after 8m, write node data, resume +stop when time = 8m +tran 1u 10m +write_ic F5interm.inc +resume +echo +* output power +let po = @ra1[i] * v(out) +meas tran power_rms rms po from=5m to=10m +echo +rusage +* temperature transistor Q6 +set xbrushwidth=4 +settype temperature q6tj q6tc q6hs +plot q6tj q6tc q6hs q3tj q3tc q3hs ylimit 40 140 +set xbrushwidth=2 +* input and output voltages +plot in out +* power supply currents +*plot V1#branch V2#branch ylimit -50 50 +plot V1#branch V2#branch ylimit -10 10 +* output current +plot @ra1[i] +*plot @ra1[i] xlimit 0 5m ylimit -0.3 0.3 +* resistance of thermistor2 TH1, TH2 +let rth1 = (v("net-_d3a1-pad1_") - v("net-_r11-pad1_")) / (@b.xth1.brtherm[i] + 1n) +let rth2 = (v("net-_d1a1-pad2_") - v("net-_r12-pad1_")) / (@b.xth2.brtherm[i] + 1n) +settype impedance rth1 rth2 +plot rth1 rth2 ylimit 0 5k + +* remove the 'stop' breakpoint +* you have to obtain the number following 'delete' manually by command 'status' +delete 88 +* reset to get rid of breakpoint introduced by command 'stop' +* reset + +ac dec 10 1 1Meg +plot db(out) +plot cph(out) + +tran 1u 100m +fft out +set xbrushwidth=4 +set color0=white +plot mag(out) xlimit 0 10k +* to see the harmonics +plot mag(out) xlimit 0 10k ylimit 0 30m +end +.endc \ No newline at end of file diff --git a/paranoia_parallel/examples/optran/script-optran.txt b/paranoia_parallel/examples/optran/script-optran.txt new file mode 100644 index 000000000..0ee37590d --- /dev/null +++ b/paranoia_parallel/examples/optran/script-optran.txt @@ -0,0 +1,56 @@ +.temp {envtemp} +.param envtemp=40 +.option savecurrents +.control +set controlswait +if $?sharedmode +* script for shared ngspice +version +rusage +else +*** script for standard ngspice +* Start optran without first iteration, +* without gmin stepping and without src stepping +* optran step size 10 ms, duration 40s, +optran 0 0 0 10m 40 0 +* check the first 10 ms, input is switched on after 5 ms +tran 1u 1m +echo +* output power +let po = @ra1[i] * v(out) +meas tran power_rms rms po from=0.5m to=1m +echo +rusage +* temperature transistor Q6 +set xbrushwidth=4 +settype temperature q6tj q6tc q6hs +plot q6tj q6tc q6hs q3tj q3tc q3hs ylimit 40 140 +set xbrushwidth=2 +* input and output voltages +plot in out +* power supply currents +*plot V1#branch V2#branch ylimit -50 50 +plot V1#branch V2#branch ylimit -10 10 +* output current +plot @ra1[i] +*plot @ra1[i] xlimit 0 5m ylimit -0.3 0.3 +* resistance of thermistor2 TH1, TH2 +let rth1 = (v("net-_d3a1-pad1_") - v("net-_r11-pad1_")) / (@b.xth1.brtherm[i] + 1n) +let rth2 = (v("net-_d1a1-pad2_") - v("net-_r12-pad1_")) / (@b.xth2.brtherm[i] + 1n) +settype impedance rth1 rth2 +plot rth1 rth2 ylimit 0 5k + +ac dec 10 1 1Meg +plot db(out) +plot cph(out) + +tran 1u 1m +fft out +set xbrushwidth=4 +set color0=white +plot mag(out) xlimit 0 10k +* to see the harmonics +plot mag(out) xlimit 0 10k ylimit 0 30m +end +quit +.endc diff --git a/paranoia_parallel/examples/optran/simple-tran.cir b/paranoia_parallel/examples/optran/simple-tran.cir new file mode 100644 index 000000000..3af2cf8e6 --- /dev/null +++ b/paranoia_parallel/examples/optran/simple-tran.cir @@ -0,0 +1,15 @@ +* simple tran sim + +V1 1 0 1 +R1 1 2 1 +C1 2 0 1u + +.ic v(2)=0.5 + +.control +tran 2n 5u uic +plot v(2) +.endc + +.end + diff --git a/paranoia_parallel/examples/pll/f-p-det-d-sub.cir b/paranoia_parallel/examples/pll/f-p-det-d-sub.cir new file mode 100644 index 000000000..cdd5af9e9 --- /dev/null +++ b/paranoia_parallel/examples/pll/f-p-det-d-sub.cir @@ -0,0 +1,16 @@ +* frequency-phase detector according to +* http://www.uwe-kerwien.de/pll/pll-phasenvergleich.htm + +.subckt f-p-det d_R d_V d_U d_U_ d_D d_D_ + +aa1 [d_U d_D] d_rset and1 +.model and1 d_and(rise_delay = 1e-10 fall_delay = 0.1e-9 ++ input_load = 0.5e-12) + +ad1 d_d1 d_R d_d0 d_rset d_U d_U_ flop1 +ad2 d_d1 d_V d_d0 d_rset d_D d_D_ flop1 +.model flop1 d_dff(clk_delay = 1.0e-10 set_delay = 1.0e-10 ++ reset_delay = 1.0e-10 ic = 2 rise_delay = 1.0e-10 ++ fall_delay = 1e-10) + +.ends f-p-det diff --git a/paranoia_parallel/examples/pll/loop-filter-2.cir b/paranoia_parallel/examples/pll/loop-filter-2.cir new file mode 100644 index 000000000..3d0931676 --- /dev/null +++ b/paranoia_parallel/examples/pll/loop-filter-2.cir @@ -0,0 +1,50 @@ +* loop filter for pll +* in: d_up d_down digital data +* out: vout, vco control voltage +* using transistors to switch current +* according to http://www.uwe-kerwien.de/pll/pll-schleifenfilter.htm +* digital input d_Un d_D +* anlog output vout + + +.subckt loopf d_Un d_D vout + +.param initcond=2.5 + +vdd dd 0 dc 'vcc' +vss ss 0 dc 0 + +* "driver" circuit, digital in, analog out +abridge-f1 [d_Un d_D] [u1n d1] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 'vcc' out_undef = 'vcc/2' ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +* uses BSIM3 model parameters from pll-xspice_2.cir +* transistors as switches +mnd dra d1 ss ss n1 w=12u l=0.35u AS=24p AD=24p PS=28u PD=28u +mpd dra u1n dd dd p1 w=24u l=0.35u AS=48p AD=48p PS=52u PD=52u + +*** passive filter elements *** +*third order filter +*parameters absolutely _not_ optimised +*better check +* http://www.national.com/assets/en/boards/deansbook4.pdf +*to do so +.ic v(vout)='initcond' v(c1)='initcond' v(dra)='initcond' v(int1)='initcond' v(u1n)='vcc' v(d1)=0 +R1 dra int1 300 +R2 int1 c1 200 +C1 c1 0 10n +C2 int1 0 5n +R3 int1 vout 50 +C3 vout 0 0.5n + +*second order filter +*parameters not optimized +*.ic v(vout)='initcond' v(c1)='initcond' v(dra)='initcond' v(u1n)='vcc' v(d1)=0 +*R1 dra vout 300 +*R2 vout c1 200 +*C1 c1 0 10n +*C2 vout 0 5n + +.ends loopf diff --git a/paranoia_parallel/examples/pll/pll-xspice.cir b/paranoia_parallel/examples/pll/pll-xspice.cir new file mode 100644 index 000000000..3a1fb5dc2 --- /dev/null +++ b/paranoia_parallel/examples/pll/pll-xspice.cir @@ -0,0 +1,145 @@ +* pll circuit using xspice code models +* output frequency 400 MHz +* locked to a 1 or 10 MHz reference + +.param vcc=3.3 +.param divisor=40 +.param fref=10e6 +.csparam simtime=5n + +.global d_d0 d_d1 + +vdd dd 0 dc 'vcc' +*vco cont 0 dc 1.9 + +*PULSE(V1 V2 TD TR TF PW PER) +* reference frequency selected by param fref +* PULSE(V1 V2 TD TR TF PW PER) +vref ref 0 dc 0 pulse(0 'vcc' 10n 1n 1n '1/fref/2' '1/fref') +abridgeref [ref] [d_ref] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 0.5 in_high = 0.5) + +*digital zero +vzero z 0 dc 0 +abridgev3 [z] [d_d0] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 'vcc*0.5' in_high = 'vcc*0.5') +*digital one +ainv1 d_d0 d_d1 invd1 +.model invd1 d_inverter(rise_delay = 1e-10 fall_delay = 1e-10) + +* vco +* buf: analog out +* d_digout: digital out +* cont: analog control voltage +* dd: analog supply voltage +*.include vco_sub.cir +*xvco buf d_digout cont dd ro_vco +.include vco_sub_new.cir +xvco buf d_digout cont dd d_osc_vco + +* digital divider +adiv1 d_digout d_divout divider +.model divider d_fdiv(div_factor = 'divisor' high_cycles = 'divisor/2' ++ i_count = 4 rise_delay = 1e-10 ++ fall_delay = 1e-10) + +* frequency phase detector +.include f-p-det-d-sub.cir +Xfpdet d_divout d_ref d_U d_Un d_D d_Dn f-p-det + +* loop filters +*2nd or 3rd order, transistors as switches +.include loop-filter-2.cir +Xlf d_Un d_D cont loopf +* 2nd order, Exxxx voltage controlled current sources as 'switches' +* loop filter current sources as charge pump +*.include loop-filter.cir +*Xlf d_U d_D cont loopfe + +* d to a for plotting +abridge-w1 [d_divout d_ref d_Un d_D] [s1 s2 u1n d1] dac1 ; change to d_u or d_Un +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +.control +save cont s1 s2 u1n d1 v.xlf.vdd#branch; to save memory +iplot cont +tran 0.1n $&simtime uic +rusage +plot cont s1 s2+1.2 u1n+2.4 d1+3.6 xlimit 4u 5u +plot v.xlf.vdd#branch xlimit 4u 5u ylimit -8m 2m +*plot cont +quit +.endc + +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + +.model P1 PMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + + +.end diff --git a/paranoia_parallel/examples/pll/vco_sub_new.cir b/paranoia_parallel/examples/pll/vco_sub_new.cir new file mode 100644 index 000000000..229ccf84a --- /dev/null +++ b/paranoia_parallel/examples/pll/vco_sub_new.cir @@ -0,0 +1,30 @@ +***** XSPICE digital controlled oscillator d_osc as vco *************** +* 150 MHz to 900 MHz +* name: d_osc_vco +* aout analog out +* dout digital out +* cont control voltage +* dd supply voltage + +.subckt d_osc_vco aout dout cont dd +* curve fitting to ro_vco 'measured' data +Bfit fitted 0 v = (-58256685.71*v(cont)*v(cont) - 186386142.9*v(cont) + 988722980)/10. + +*a5 fitted dout var_clock +*.model var_clock d_osc(cntl_array = [1.0e7 5.0e7 9.0e7] +*+ freq_array = [1.0e8 5.0e8 9.0e8] + +* linear interpolation, input data from measured ro vco +a5 cont dout var_clock +.model var_clock d_osc(cntl_array = [0.5 1 1.5 2 2.5] ++ freq_array = [8.790820e+008 7.472197e+008 5.799500e+008 3.772727e+008 1.611650e+008] ++ duty_cycle = 0.5 init_phase = 180.0 ++ rise_delay = 1e-10 fall_delay=1e-10) + +*generate an analog output for plotting +abridge-fit [dout] [aout] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +.ends d_osc_vco diff --git a/paranoia_parallel/examples/proc2mod/process.pro b/paranoia_parallel/examples/proc2mod/process.pro new file mode 100644 index 000000000..f4504a8c4 --- /dev/null +++ b/paranoia_parallel/examples/proc2mod/process.pro @@ -0,0 +1,203 @@ +NM1 PM1 NM2 PM2 NM3 PY1 ML1 ML2 DU1 DU2 +* +* Example process file +* +*PROCESS=BSIM +*RUN= +*WAFER= +*XPOS=6 +*YPOS=5 +*OPERATOR=Min-Chie +*DATE=July-16-85 +* +* NMOS-1 PARAMETERS (07-16-85) +* +-1.0087E+000,-2.1402E-001,3.44354E-001 +7.96434E-001,0.00000E+000,0.00000E+000 +1.31191E+000,3.23395E-001,-5.7698E-001 +1.46640E-001,1.68585E-001,-1.8796E-001 +-1.0027E-003,-9.4847E-003,1.47316E-002 +5.34334E+002,7.9799E-001,4.7740E-001 +4.38497E-002,6.38105E-002,-6.1053E-002 +-5.7332E-002,1.01174E+000,1.62706E-002 +8.25434E+000,-2.4197E+001,1.95696E+001 +-7.6911E-004,9.62411E-003,-3.7951E-003 +7.86777E-004,7.35448E-004,-1.7796E-003 +1.06821E-003,-8.0958E-003,4.03379E-003 +-1.9209E-002,-7.4573E-002,1.47520E-002 +5.40612E+002,6.21401E+002,-1.9190E+002 +-1.2992E+001,-6.4900E+001,4.29043E+001 +-9.4035E+000,1.18239E+002,-2.9747E+001 +0.0000E-002,0.00000E-001,0.0000E-002 +3.00000E-002,2.70000E+001,5.00000E+000 +** 2.70000E-010,2.70000E-010,1.40000E-010 +** remove the overlap capacitances !! +0.00000E-000,0.00000E-000,0.00000E-000 +1.0 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +* +*PROCESS=BSIM +*RUN= +*WAFER= +*XPOS=6 +*YPOS=5 +*OPERATOR= TRANSLATED FROM NM1 +* (BY SCALING THE MOBILITY PARAMETERS) +*DATE=July-16-85 +* +* PMOS-1 PARAMETERS (07-16-85) +* +-1.0087E+000,-2.1402E-001,3.44354E-001 +7.96434E-001,0.00000E+000,0.00000E+000 +1.31191E+000,3.23395E-001,-5.7698E-001 +1.46640E-001,1.68585E-001,-1.8796E-001 +-1.0027E-003,-9.4847E-003,1.47316E-002 +1.82193E+002,2.7226E-001,1.6288E-001 +4.38497E-002,6.38105E-002,-6.1053E-002 +-5.7332E-002,1.01174E+000,1.62706E-002 +2.81626E+000,-0.8255E+001,0.66768E+001 +-7.6911E-004,9.62411E-003,-3.7951E-003 +7.86777E-004,7.35448E-004,-1.7796E-003 +1.06821E-003,-8.0958E-003,4.03379E-003 +-1.9209E-002,-7.4573E-002,1.47520E-002 +1.84449E+002,2.12012E+002,-0.6547E+002 +-0.4433E+001,-2.2143E+001,1.46383E+001 +-3.2083E+000,0.40341E+002,-1.0149E+001 +0.0000E-002,0.00000E-001,0.0000E-002 +3.00000E-002,2.70000E+001,5.00000E+000 +** 2.70000E-010,2.70000E-010,1.40000E-010 +** remove the overlap capacitances !! +0.00000E-000,0.00000E-000,0.00000E-000 +1.0 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +* +* +*PROCESS=BSIM +*RUN=6,8 +*WAFER=1 +*XPOS=6 +*YPOS=5 +*OPERATOR=joey & min +*DATE=3/8/'85 +* +* NMOS-2 PARAMETERS (03-08-85) +* +-1.0682E+000,-6.7765E-002,4.15888E-001 +7.93602E-001,0.00000E+000,0.00000E+000 +1.38210E+000,1.56889E-001,-6.3435E-001 +1.60163E-001,1.41849E-001,-2.0333E-001 +-1.1885E-002,1.33579E-002,2.13053E-002 +5.44582E+002,9.4444E-001,4.4423E-001 +4.02955E-002,5.36003E-002,-5.1224E-002 +2.01256E-001,4.30621E-001,-1.5909E-001 +-1.1522E+000,-2.5360E+000,2.48135E+001 +-3.0525E-003,1.40355E-002,-2.1259E-003 +2.33703E-003,-1.9621E-003,-3.0147E-003 +-1.5014E-003,-1.7938E-003,5.04494E-003 +-9.6961E-002,9.68463E-002,6.56404E-002 +5.95572E+002,4.75833E+002,-2.3062E+002 +-7.7819E+001,7.75110E+001,8.19963E+001 +-1.8177E+001,1.23358E+002,-1.9316E+001 +0.0000E-003,0.00000E-002,0.0000E-002 +3.20000E-002,2.70000E+001,5.00000E+000 +2.69000E-010,2.69000E-010,2.34000E-010 +1.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +* +* PMOS-2 PARAMETERS (03-08-85) +* +-2.1389E-001,3.36471E-002,2.20237E-001 +6.97239E-001,0.00000E+000,0.00000E+000 +5.95618E-001,-9.7957E-002,-8.1902E-002 +-2.0029E-002,1.97751E-002,-4.0038E-002 +-1.4030E-002,3.62814E-002,1.44720E-002 +1.82193E+002,8.6560E-001,5.7444E-001 +1.12067E-001,9.28463E-002,-8.8985E-002 +2.39431E-002,8.89483E-002,1.05634E-002 +7.51914E+000,-1.8327E+000,3.98658E+000 +-1.3199E-003,4.00836E-003,1.97847E-004 +5.70255E-004,-1.2309E-003,-2.3082E-003 +5.07623E-003,-1.8537E-004,1.76966E-003 +-1.2781E-002,1.14420E-002,6.36308E-003 +1.89043E+002,8.64555E+001,-3.4304E+001 +4.09098E+000,3.51921E+000,4.49145E+000 +6.71879E-001,7.66627E+000,-1.5826E+000 +0.0000E-003,0.00000E-003,0.0000E-003 +3.20000E-002,2.70000E+001,5.00000E+000 +4.39000E-010,4.39000E-010,2.34000E-010 +1.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +* +*PROCESS=BSIM +*RUN= +*WAFER= +*XPOS=6 +*YPOS=5 +*OPERATOR= TRANSLATED FROM NM1 +* (BY SHIFTING VFB --- THE SIZE-INDEP. TERM ONLY) +*DATE=July-16-85 +* +* NMOS-3 PARAMETERS (DEPLETION-MODE) (07-16-85) +* +-5.6087E+000,-2.1402E-001,3.44354E-001 ++** -1.0087E+000,-2.1402E-001,3.44354E-001 +7.96434E-001,0.00000E+000,0.00000E+000 +1.31191E+000,3.23395E-001,-5.7698E-001 +1.46640E-001,1.68585E-001,-1.8796E-001 +-1.0027E-003,-9.4847E-003,1.47316E-002 +5.34334E+002,7.9799E-001,4.7740E-001 +4.38497E-002,6.38105E-002,-6.1053E-002 +-5.7332E-002,1.01174E+000,1.62706E-002 +8.25434E+000,-2.4197E+001,1.95696E+001 +-7.6911E-004,9.62411E-003,-3.7951E-003 +7.86777E-004,7.35448E-004,-1.7796E-003 +1.06821E-003,-8.0958E-003,4.03379E-003 +-1.9209E-002,-7.4573E-002,1.47520E-002 +5.40612E+002,6.21401E+002,-1.9190E+002 +-1.2992E+001,-6.4900E+001,4.29043E+001 +-9.4035E+000,1.18239E+002,-2.9747E+001 +0.0000E-002,0.00000E-001,0.0000E-002 +3.00000E-002,2.70000E+001,5.00000E+000 +** 2.70000E-010,2.70000E-010,1.40000E-010 +** remove the overlap capacitances !! +0.00000E-000,0.00000E-000,0.00000E-000 +1.0 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +0.0, 0.0, 0.0 +* +************************************** +************************************** +* +* poly layer-1 +* +30.0, 7.0E-5, 0, 0, 0 +0, 0, 0, 0, 0 +* +* metal layer-1 +* +0.040, 2.60E-5, 0, 0, 0 +0, 0, 0, 0, 0 +* +* metal layer-2 (top metal) +* +0.030, 1.3E-5, 0, 0, 0 +0, 0, 0, 0, 0 +* +* n+ diffusion layer +* +35.0, 2.75E-4, 1.90E-10, 1.0E-5, 0.7 +0.8, 0.5, 0.33, 0, 0 +* +* p+ diffusion layer +* +120.0, 3.1E-4, 3.0E-010, 1.0E-5, 0.7 +0.8, 0.5, 0.33, 0, 0 diff --git a/paranoia_parallel/examples/pton/.spiceinit b/paranoia_parallel/examples/pton/.spiceinit new file mode 100644 index 000000000..c4f7df585 --- /dev/null +++ b/paranoia_parallel/examples/pton/.spiceinit @@ -0,0 +1,5 @@ +set ngbehavior=ps +* Standard ngspice init file +alias exit quit +* step size is limited to TSTEP in tansient simulation +set stepsizelimit diff --git a/paranoia_parallel/examples/pton/555-timer-2.cir b/paranoia_parallel/examples/pton/555-timer-2.cir new file mode 100644 index 000000000..827735b19 --- /dev/null +++ b/paranoia_parallel/examples/pton/555-timer-2.cir @@ -0,0 +1,95 @@ + TIMER 555 + * https://www.electro-tech-online.com/threads/spice-and-555-timer.5806/ + .SUBCKT UA555 32 30 19 23 33 1 21 + * TR O R F TH D V + * + * Taken from the Fairchild data book (1982) page 9-3 + *SYM=UA555 + *DWG=C:\SPICE\555\UA555.DWG + Q4 25 2 3 QP + Q5 0 6 3 QP + Q6 6 6 8 QP + R1 9 21 4.7K + R2 3 21 830 + R3 8 21 4.7K + Q7 2 33 5 QN + Q8 2 5 17 QN + Q9 6 4 17 QN + Q10 6 23 4 QN + Q11 12 20 10 QP + R4 10 21 1K + Q12 22 11 12 QP + Q13 14 13 12 QP + Q14 0 32 11 QP + Q15 14 18 13 QP + R5 14 0 100K + R6 22 0 100K + R7 17 0 10K + Q16 1 15 0 QN + Q17 15 19 31 QP + R8 18 23 5K + R9 18 0 5K + R10 21 23 5K + Q18 27 20 21 QP + Q19 20 20 21 QP + R11 20 31 5K + D1 31 24 DA + Q20 24 25 0 QN + Q21 25 22 0 QN + Q22 27 24 0 QN + R12 25 27 4.7K + R13 21 29 6.8K + Q23 21 29 28 QN + Q24 29 27 16 QN + Q25 30 26 0 QN + Q26 21 28 30 QN + D2 30 29 DA + R14 16 15 100 + R15 16 26 220 + R16 16 0 4.7K + R17 28 30 3.9K + Q3 2 2 9 QP + .MODEL DA D (RS=40 IS=1.0E-14 CJO=1PF) + .MODEL QP PNP (BF=20 BR=0.02 RC=4 RB=25 IS=1.0E-14 VA=50 NE=2) + + CJE=12.4P VJE=1.1 MJE=.5 CJC=4.02P VJC=.3 MJC=.3 TF=229P TR=159N) + .MODEL QN NPN (IS=5.07F NF=1 BF=100 VAF=161 IKF=30M ISE=3.9P NE=2 + + BR=4 NR=1 VAR=16 IKR=45M RE=1.03 RB=4.12 RC=.412 XTB=1.5 + + CJE=12.4P VJE=1.1 MJE=.5 CJC=4.02P VJC=.3 MJC=.3 TF=229P TR=959P) + .ENDS + + ********** + * Sample Test Circuit for the LM555 Timer: Astable Mode + * The LM555 timer model is designed for low frequency + * applications, up to 100Hz. + .INCLUDE TLC555.LIB + .TRAN 10u 10MS + .OPTIONS RELTOL=.0001 + .SAVE v(16) v(13) v(17) + .SAVE v(1) v(4) v(3) + + V2 2 0 5 + VReset res 0 DC 0 PULSE(0 5 1u 1u 1u 30m 50m) + + R3 2 3 1k + R4 3 4 5k + C3 4 0 0.5u ; 0.15u + X2 4 1 res 6 4 3 2 ua555 +* TR O R F TH D V + RA 2 17 1k ; 5k + RB 17 16 5k ; 3k + C 16 0 0.5u ; 0.15u + RL 2 13 1k + X1 16 15 16 res 13 17 2 0 TLC555 +* THRES CONT TRIG RESET OUT DISC VCC GND + + .control + option sparse + if $?batchmode + else + run + plot v(16) v(13) v(17) v(1)+6 v(4)+6 v(3)+6 + end + quit + .endc + + .END diff --git a/paranoia_parallel/examples/pton/MCP6041.txt b/paranoia_parallel/examples/pton/MCP6041.txt new file mode 100644 index 000000000..fb6e03e6c --- /dev/null +++ b/paranoia_parallel/examples/pton/MCP6041.txt @@ -0,0 +1,170 @@ +.SUBCKT MCP6041 1 2 3 4 5 +* | | | | | +* | | | | Output +* | | | Negative Supply +* | | Positive Supply +* | Inverting Input +* Non-inverting Input +* +******************************************************************************** +* Software License Agreement * +* * +* The software supplied herewith by Microchip Technology Incorporated (the * +* 'Company') is intended and supplied to you, the Company's customer, for use * +* soley and exclusively on Microchip products. * +* * +* The software is owned by the Company and/or its supplier, and is protected * +* under applicable copyright laws. All rights are reserved. Any use in * +* violation of the foregoing restrictions may subject the user to criminal * +* sanctions under applicable laws, as well as to civil liability for the * +* breach of the terms and conditions of this license. * +* * +* THIS SOFTWARE IS PROVIDED IN AN 'AS IS' CONDITION. NO WARRANTIES, WHETHER * +* EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED * +* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO * +* THIS SOFTWARE. THE COMPANY SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR * +* SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. * +******************************************************************************** +* +* The following op-amps are covered by this model: +* MCP6041,MCP6042,MCP6043,MCP6044 +* +* Revision History: +* REV A: 07-Sep-01, Created model +* REV B: 27-Aug-06, Added over temperature, improved output stage, +* fixed overdrive recovery time +* REV C: 09-Apr-07, Adjusted quiescent current to match spec +* REV D: 27-Jul-07, Modified output impedance at expense of comparator operation +* to correct transient response with capacitive load +* +* Recommendations: +* Use PSPICE (other simulators may require translation) +* For a quick, effective design, use a combination of: data sheet +* specs, bench testing, and simulations with this macromodel +* For high impedance circuits, set GMIN=100F in the .OPTIONS statement +* +* Supported: +* Typical performance for temperature range (-40 to 125) degrees Celsius +* DC, AC, Transient, and Noise analyses. +* Most specs, including: offsets, DC PSRR, DC CMRR, input impedance, +* open loop gain, voltage ranges, supply current, ... , etc. +* Temperature effects for Ibias, Iquiescent, Iout short circuit +* current, Vsat on both rails, Slew Rate vs. Temp and P.S. +* +* Not Supported: +* Chip select (MCP6043) +* Some Variation in specs vs. Power Supply Voltage +* Monte Carlo (Vos, Ib), Process variation +* Distortion (detailed non-linear behavior) +* Behavior outside normal operating region +* +* Input Stage +V10 3 10 -500M +R10 10 11 69k +R11 10 12 69k +C12 1 0 6P +C11 11 12 95P +E12 71 14 POLY(6) 20 0 21 0 22 0 23 0 26 0 27 0 2.00M 10 10 29 29 1 1 +G12 1 0 62 0 1m +M12 11 14 15 15 NMI +G13 1 2 62 0 20u +M14 12 2 15 15 NMI +G14 2 0 62 0 1m +C14 2 0 6P +I15 15 4 4U +V16 16 4 -300M +GD16 16 1 TABLE {V(16,1)} ((-100,-1p)(0,0)(1m,1u)(2m,1m)) +V13 3 13 -300M +GD13 2 13 TABLE {V(2,13)} ((-100,-1p)(0,0)(1m,1u)(2m,1m)) +R71 1 0 20.0E12 +R72 2 0 20.0E12 +R73 1 2 20.0E12 +I80 1 2 500E-15 +* +* Noise, PSRR, and CMRR +I20 21 20 423U +D20 20 0 DN1 +D21 0 21 DN1 +I22 22 23 1N +R22 22 0 1k +R23 0 23 1k +G26 0 26 POLY(2) 3 0 4 0 0.00 -79.4U -39.8U +R26 26 0 1 +G27 0 27 POLY(2) 1 0 2 0 0 26u 26u +R27 27 0 1 +* +* Open Loop Gain, Slew Rate +G30 0 30 12 11 3.2 +R30 30 0 1.00K +I31 0 31 DC 338 +R31 31 0 1 TC=2.25M,-15U +GD31 30 0 TABLE {V(30,31)} ((-100,-1n)(0,0)(1m,0.1)(2m,2)) +I32 32 0 DC 535 +R32 32 0 1 TC=2.02M,-11U +GD32 0 30 TABLE {V(30,32)} ((-2m,2)(-1m,0.1)(0,0)(100,-1n)) +G33 0 33 30 0 1m +R33 33 0 3K +G34 0 34 33 0 1 +R34 34 0 1K +C34 34 0 100M +G37 0 341 34 0 1m +R341 341 0 1k +C341 341 0 1.3N +G371 0 37 341 0 1m +R37 37 0 1K +C37 37 0 3N +G38 0 38 37 0 1m +R38 39 0 1K +L38 38 39 13M +E38 35 0 38 0 1 +G35 33 0 TABLE {V(35,3)} ((-1,-1n)(0,0)(3.4k,1n))(3.5k,1)) +G36 33 0 TABLE {V(35,4)} ((-3.5k,-1)((-3.4k,-1n)(0,0)(1,1n)) +* +* Output Stage +R80 50 0 100MEG +G50 0 50 57 96 2 +R58 57 96 0.50 +R57 57 0 101k +C58 5 0 2.00P +G57 0 57 POLY(3) 3 0 4 0 35 0 0 10U 1.49U 9.1U +GD55 55 57 TABLE {V(55,57)} ((-2m,-1)(-1m,-1m)(0,0)(10,1n)) +GD56 57 56 TABLE {V(57,56)} ((-2m,-1)(-1m,-1m)(0,0)(10,1n)) +E55 55 0 POLY(2) 3 0 51 0 -0.7M 1 -40M +E56 56 0 POLY(2) 4 0 52 0 0.6M 1 -55M +R51 51 0 1k +R52 52 0 1k +GD51 50 51 TABLE {V(50,51)} ((-10,-1n)(0,0)(1m,1m)(2m,1)) +GD52 50 52 TABLE {V(50,52)} ((-2m,-1)(-1m,-1m)(0,0)(10,1n)) +G53 3 0 POLY(1) 51 0 -4U 1M +G54 0 4 POLY(1) 52 0 -4U -1M +* +* Current Limit +G99 96 5 99 0 1 +R98 0 98 1 TC=-6.9M +G97 0 98 TABLE { V(96,5) } ((-11.0,-3.9M)(-1.00M,-3.87M)(0,0)(1.00M,3.23M)(11.0,3.26M)) +E97 99 0 VALUE { V(98)*((V(3)-V(4))*1.39 + -1.5)} +D98 4 5 DESD +D99 5 3 DESD +* +* Temperature / Voltage Sensitive IQuiscent +R61 0 61 1 TC=2.52M,-4.31U +G61 3 4 61 0 1 +G60 0 61 TABLE {V(3, 4)} ++ ((0,0)(700M,5.3N)(770M,10.0N)(1.00,480N) ++ (1.5,500N)(3.5,530N)(7.00,580N)) +* +* Temperature Sensistive offset voltage +I73 0 70 DC 1uA +R74 0 70 1 TC=1.5 +E75 1 71 70 0 1 +* +* Temp Sensistive IBias +I62 0 62 DC 1uA +R62 0 62 REXP 210U +* +* Models +.MODEL NMI NMOS(L=2.00U W=42.0U KP=20.0U LEVEL=1 ) +.MODEL DESD D N=1 IS=1.00E-15 +.MODEL DN1 D IS=1P KF=0.2F AF=1 +.MODEL REXP RES TCE= 9 +.ENDS MCP6041 diff --git a/paranoia_parallel/examples/pton/MOS1_out.cir b/paranoia_parallel/examples/pton/MOS1_out.cir new file mode 100644 index 000000000..65a4cab09 --- /dev/null +++ b/paranoia_parallel/examples/pton/MOS1_out.cir @@ -0,0 +1,28 @@ +Test MOS1 + +vb Nvf 0 0 + +vd Nvd 0 0 +vg Nvg 0 0 + +vs1 Nvs1 0 0 +vs2 Nvs2 0 0 +vs3 Nvs3 0 0 + +* W/L = 3 +M1 Nvd Nvg Nvs1 Nvf NMOS +* W/L = 2 +M2 Nvd Nvg Nvs2 Nvf NMOS W=10u L=5u +* W/L = 1 +M3 Nvd Nvg Nvs3 Nvf NMOS3 + +.MODEL NMOS NMOS (LEVEL = 1 L = 3u W = 9u) +.MODEL NMOS3 NMOS (LEVEL = 1) + +.control +dc vd 0 5 0.1 vg 0 5 1 +plot vs1#branch vs2#branch vs3#branch +quit +.endc + +.end diff --git a/paranoia_parallel/examples/pton/OPA171.txt b/paranoia_parallel/examples/pton/OPA171.txt new file mode 100644 index 000000000..2bb29b316 --- /dev/null +++ b/paranoia_parallel/examples/pton/OPA171.txt @@ -0,0 +1,376 @@ +* OPA171 - Rev. B +* Created by Ian Williams; January 17, 2017 +* Created with Green-Williams-Lis Op Amp Macro-model Architecture +* Copyright 2017 by Texas Instruments Corporation +****************************************************** +* MACRO-MODEL SIMULATED PARAMETERS: +****************************************************** +* OPEN-LOOP GAIN AND PHASE VS. FREQUENCY WITH RL, CL EFFECTS (Aol) +* UNITY GAIN BANDWIDTH (GBW) +* INPUT COMMON-MODE REJECTION RATIO VS. FREQUENCY (CMRR) +* POWER SUPPLY REJECTION RATIO VS. FREQUENCY (PSRR) +* DIFFERENTIAL INPUT IMPEDANCE (Zid) +* COMMON-MODE INPUT IMPEDANCE (Zic) +* OPEN-LOOP OUTPUT IMPEDANCE VS. FREQUENCY (Zo) +* OUTPUT CURRENT THROUGH THE SUPPLY (Iout) +* INPUT VOLTAGE NOISE DENSITY VS. FREQUENCY (en) +* INPUT CURRENT NOISE DENSITY VS. FREQUENCY (in) +* OUTPUT VOLTAGE SWING vs. OUTPUT CURRENT (Vo) +* SHORT-CIRCUIT OUTPUT CURRENT (Isc) +* QUIESCENT CURRENT (Iq) +* SETTLING TIME VS. CAPACITIVE LOAD (ts) +* SLEW RATE (SR) +* SMALL SIGNAL OVERSHOOT VS. CAPACITIVE LOAD +* LARGE SIGNAL RESPONSE +* OVERLOAD RECOVERY TIME (tor) +* INPUT BIAS CURRENT (Ib) +* INPUT OFFSET CURRENT (Ios) +* INPUT OFFSET VOLTAGE (Vos) +* INPUT COMMON-MODE VOLTAGE RANGE (Vcm) +* INPUT/OUTPUT ESD CELLS (ESDin, ESDout) +****************************************************** +.subckt OPA171 IN+ IN- VCC VEE OUT +****************************************************** +* MODEL DEFINITIONS: +.model BB_SW VSWITCH(Ron=50 Roff=1e9 Von=700e-3 Voff=0) +.model ESD_SW VSWITCH(Ron=50 Roff=1e9 Von=500e-3 Voff=100e-3) +.model OL_SW VSWITCH(Ron=1e-3 Roff=1e9 Von=900e-3 Voff=800e-3) +.model OR_SW VSWITCH(Ron=10e-3 Roff=1e9 Von=1e-3 Voff=0) +.model R_NOISELESS RES(T_ABS=-273.15) +****************************************************** +V_OS N041 en_n 214.023e-6 +R1 N043 N042 R_NOISELESS 1e-3 +R2 N049 ESDn R_NOISELESS 1e-3 +R3 N063 0 R_NOISELESS 1e12 +C1 N063 0 1 +R4 VCC_B N062 R_NOISELESS 1e-3 +C2 N062 0 1e-15 +C3 N064 0 1e-15 +R5 N064 VEE_B R_NOISELESS 1e-3 +G_PSR N043 N044 N005 N014 1e-3 +R6 MID N047 R_NOISELESS 1e9 +VCM_MIN N048 VEE_B -0.1 +R7 N048 MID R_NOISELESS 1e9 +VCM_MAX N047 VCC_B -2 +XVCM_CLAMP N044 MID N045 MID N047 N048 VCCS_EXT_LIM +R8 N045 MID R_NOISELESS 1 +C4 VCM_CLAMP MID 1e-15 +R9 N045 VCM_CLAMP R_NOISELESS 1e-3 +V4 N061 OUT 0 +R10 MID N051 R_NOISELESS 1e9 +R11 MID N052 R_NOISELESS 1e9 +XIQp VIMON MID VCC MID VCCS_LIM_IQ +XIQn MID VIMON VEE MID VCCS_LIM_IQ +R12 VCC_B N016 R_NOISELESS 1e3 +R13 N029 VEE_B R_NOISELESS 1e3 +XCLAWp VIMON MID N016 VCC_B VCCS_LIM_CLAWp +XCLAWn MID VIMON VEE_B N029 VCCS_LIM_CLAWn +R14 VEE_CLP MID R_NOISELESS 1e3 +R15 MID VCC_CLP R_NOISELESS 1e3 +R16 N017 N016 R_NOISELESS 1e-3 +R17 N030 N029 R_NOISELESS 1e-3 +C5 MID N017 1e-15 +C6 N030 MID 1e-15 +R18 VOUT_S N052 R_NOISELESS 100 +C7 VOUT_S MID 1e-9 +G2 MID VCC_CLP N017 MID 1e-3 +G3 MID VEE_CLP N030 MID 1e-3 +XCL_AMP N013 N039 VIMON MID N020 N027 CLAMP_AMP_LO +V_ISCp N013 MID 25 +V_ISCn N039 MID -35 +XOL_SENSE MID N068 OLN OLP OL_SENSE +R19 N039 MID R_NOISELESS 1e9 +R20 N027 MID R_NOISELESS 1 +C8 N028 MID 1e-15 +R21 MID N020 R_NOISELESS 1 +R22 MID N013 R_NOISELESS 1e9 +C9 MID N021 1e-15 +XCLAW_AMP VCC_CLP VEE_CLP VOUT_S MID N018 N025 CLAMP_AMP_LO +R23 VEE_CLP MID R_NOISELESS 1e9 +R24 N025 MID R_NOISELESS 1 +C10 N026 MID 1e-15 +R25 MID N018 R_NOISELESS 1 +R26 MID VCC_CLP R_NOISELESS 1e9 +C11 MID N019 1e-15 +XCL_SRC N021 N028 CL_CLAMP MID VCCS_LIM_4 +XCLAW_SRC N019 N026 CLAW_CLAMP MID VCCS_LIM_3 +R27 N018 N019 R_NOISELESS 1e-3 +R28 N026 N025 R_NOISELESS 1e-3 +R29 N020 N021 R_NOISELESS 1e-3 +R30 N028 N027 R_NOISELESS 1e-3 +R31 N068 MID R_NOISELESS 1 +R32 N068 SW_OL R_NOISELESS 100 +C12 SW_OL MID 10e-12 +R33 VIMON N051 R_NOISELESS 100 +C13 VIMON MID 1e-9 +C_DIFF en_p ESDn 3e-12 +C_CMn ESDn MID 3e-12 +C_CMp MID en_p 3e-12 +I_Q VCC VEE 475e-6 +I_B N044 MID 8e-12 +I_OS N049 MID 4e-12 +R36 N037 MID R_NOISELESS 1 +R37 N040 MID R_NOISELESS 1e9 +R38 MID N023 R_NOISELESS 1 +R39 MID N015 R_NOISELESS 1e9 +XGR_AMP N015 N040 N022 MID N023 N037 CLAMP_AMP_HI +XGR_SRC N024 N038 CLAMP MID VCCS_LIM_GR +C17 MID N024 1e-15 +C18 N038 MID 1e-15 +V_GRn N040 MID -50 +V_GRp N015 MID 50 +R40 N023 N024 R_NOISELESS 1e-3 +R41 N038 N037 R_NOISELESS 1e-3 +R42 VSENSE N022 R_NOISELESS 1e-3 +C19 MID N022 1e-15 +R43 MID VSENSE R_NOISELESS 1e3 +G_CMR N041 N042 N012 MID 1e-3 +G8 MID CLAW_CLAMP N050 MID 1e-3 +R45 MID CLAW_CLAMP R_NOISELESS 1e3 +G9 MID CL_CLAMP CLAW_CLAMP MID 1e-3 +R46 MID CL_CLAMP R_NOISELESS 1e3 +R47 N059 VCLP R_NOISELESS 100 +C24 MID VCLP 100e-12 +E4 N059 MID CL_CLAMP MID 1 +E5 N052 MID OUT MID 1 +H1 N051 MID V4 1e3 +S1 N054 N053 SW_OL MID OL_SW +R52 MID en_p R_NOISELESS 1e9 +R53 ESDn MID R_NOISELESS 1e9 +R_CMR N042 N041 R_NOISELESS 1e3 +R59 N062 N063 R_NOISELESS 1e6 +R60 N063 N064 R_NOISELESS 1e6 +R_PSR N044 N043 R_NOISELESS 1e3 +G15 MID VSENSE CLAMP MID 1e-3 +V_ORp N036 VCLP 3 +V_ORn N031 VCLP -3 +V11 N033 N032 0 +V12 N034 N035 0 +H2 OLN MID V11 -1 +H3 OLP MID V12 1 +S2 VCC ESDn ESDn VCC ESD_SW +S3 VCC en_p en_p VCC ESD_SW +S4 ESDn VEE VEE ESDn ESD_SW +S5 en_p VEE VEE en_p ESD_SW +S6 VCC OUT OUT VCC ESD_SW +S7 OUT VEE VEE OUT ESD_SW +E1 MID 0 N063 0 1 +G16 0 VCC_B VCC 0 1 +G17 0 VEE_B VEE 0 1 +R88 VCC_B 0 R_NOISELESS 1 +R89 VEE_B 0 R_NOISELESS 1 +S8 N034 CLAMP CLAMP N034 OR_SW +S9 CLAMP N033 N033 CLAMP OR_SW +Xi_np en_n MID FEMT +Xi_nn ESDn MID FEMT +XVCCS_LIM_1 VCM_CLAMP N049 MID N046 VCCS_LIM_1 +XVCCS_LIM_2 N046 MID MID CLAMP VCCS_LIM_2 +R44 N046 MID R_NOISELESS 1e6 +R58 CLAMP MID R_NOISELESS 1e6 +C20 CLAMP MID 1.484e-7 +S10 en_p ESDn ESDn en_p BB_SW +S11 ESDn en_p en_p ESDn BB_SW +R34 en_p IN+ R_NOISELESS 10e-3 +R35 ESDn IN- R_NOISELESS 10e-3 +R48 MID N050 R_NOISELESS 1e6 +G1 MID N050 VSENSE MID 1e-6 +C14 N050 MID 7.4e-15 +Rx N061 N060 R_NOISELESS 1.65e4 +Rdummy N061 MID R_NOISELESS 1.65e3 +G_Zo MID N053 CL_CLAMP N061 172 +Rdc1 N053 MID R_NOISELESS 1 +R49 N053 N054 R_NOISELESS 1e5 +R50 N054 MID R_NOISELESS 1.266e3 +G4 MID N057 N054 MID 80 +C15 N054 N053 1.592e-6 +R51 N057 MID R_NOISELESS 1 +C16 N067 MID 1.929e-10 +R54 N067 N058 R_NOISELESS 10e3 +R55 N058 N057 R_NOISELESS 1.547e6 +C23 N007 N006 1.516e-12 +G_adjust1 MID N006 en_p MID 4.75e-4 +Rsrc1 N006 MID R_NOISELESS 1 +R56 N007 MID R_NOISELESS 2.104e5 +R57 N007 N006 R_NOISELESS 1e8 +G5 MID N008 N007 MID 1 +Rsrc2 N008 MID R_NOISELESS 1 +R61 N009 N008 R_NOISELESS 1e4 +C25 N009 N008 1.516e-8 +R62 N009 MID R_NOISELESS 2.104e1 +G6 MID N012 N009 MID 4.762e2 +Rsrc3 N012 MID R_NOISELESS 1 +C26 N011 N010 3.745e-10 +G_adjust2 MID N010 VEE_B MID 1.588e-1 +Rsrc4 N010 MID R_NOISELESS 1 +R63 N011 MID R_NOISELESS 6.296e2 +R64 N011 N010 R_NOISELESS 1e8 +G7 MID N014 N011 MID 1 +Rsrc5 N014 MID R_NOISELESS 1 +C27 N003 N004 2.792e-12 +G_adjust3 MID N004 VCC_B MID 3.772e-4 +Rsrc6 N004 MID R_NOISELESS 1 +R65 N003 MID R_NOISELESS 2.658e5 +R66 N003 N004 R_NOISELESS 1e8 +G10 MID N002 N003 MID 1 +Rsrc7 N002 MID R_NOISELESS 1 +R67 N001 N002 R_NOISELESS 1e4 +C28 N001 N002 2.792e-8 +R68 N001 MID R_NOISELESS 2.658e1 +G11 MID N005 N001 MID 3.772e2 +Rsrc8 N005 MID R_NOISELESS 1 +Xe_n N065 MID VNSE +G12 MID N066 N065 N069 1 +R69 N066 N069 R_NOISELESS 1e6 +R70 N066 N069 R_NOISELESS 11.786e3 +C29 N066 N069 6.75e-12 +R71 N069 N070 R_NOISELESS 15e3 +C30 N070 MID 106e-12 +Rpd N070 MID R_NOISELESS 1e9 +E2 en_p en_n N066 MID 1 +G13 MID N055 N058 MID 1 +R72 N055 MID R_NOISELESS 1 +R73 N056 N055 R_NOISELESS 1e4 +R74 MID N056 R_NOISELESS 5 +C21 N056 N055 3.183e-13 +XVCCS_LIM_ZO N056 MID MID N060 VCCS_LIM_ZO +R76 MID N060 R_NOISELESS 1 +G14 MID N032 N031 MID 1 +G18 MID N035 N036 MID 1 +R77 MID N032 R_NOISELESS 1 +R78 MID N035 R_NOISELESS 1 +.ends OPA171 +* +.subckt CLAMP_AMP_HI VC+ VC- VIN COM VO+ VO- +.param G=10 +GVo+ COM Vo+ Value = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)10e-3 | V(4,1)>10e-3),1,0)} +.ends OL_SENSE +* +.subckt FEMT 1 2 +.param FLWF=1e-3 +.param NLFF=1 +.param NVRF=1 +.param GLFF={PWR(FLWF,0.25)*NLFF/1164} +.param RNVF={1.184*PWR(NVRF,2)} +.model DVNF D KF={PWR(FLWF,0.5)/1e11} IS=1.0e-16 +I1 0 7 10e-3 +I2 0 8 10e-3 +D1 7 0 DVNF +D2 8 0 DVNF +E1 3 6 7 8 {GLFF} +R1 3 0 1e9 +R2 3 0 1e9 +R3 3 6 1e9 +E2 6 4 5 0 10 +R4 5 0 {RNVF} +R5 5 0 {RNVF} +R6 3 4 1e9 +R7 4 0 1e9 +G1 1 2 3 4 1e-6 +.ends FEMT +* +.subckt VCCS_EXT_LIM VIN+ VIN- IOUT- IOUT+ VP+ VP- +.param Gain = 1 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VIN+,VIN-),V(VP-,VIN-), V(VP+,VIN-))} +.ends VCCS_EXT_LIM +* +.subckt VCCS_LIM_1 VC+ VC- IOUT+ IOUT- +.param Gain = 1e-4 +.param Ipos = .5 +.param Ineg = -.5 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends VCCS_LIM_1 +* +.subckt VCCS_LIM_2 VC+ VC- IOUT+ IOUT- +.param Gain = 3.40e-2 +.param Ipos = 0.224 +.param Ineg = -0.224 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends VCCS_LIM_2 +* +.subckt VCCS_LIM_3 VC+ VC- IOUT+ IOUT- +.param Gain = 1 +.param Ipos = 100e-3 +.param Ineg = -100e-3 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends VCCS_LIM_3 +* +.subckt VCCS_LIM_4 VC+ VC- IOUT+ IOUT- +.param Gain = 1 +.param Ipos = 200e-3 +.param Ineg = -200e-3 +G1 IOUT+ IOUT- VALUE={LIMIT(Gain*V(VC+,VC-),Ineg,Ipos)} +.ends VCCS_LIM_4 +* +.subckt VCCS_LIM_CLAWn VC+ VC- IOUT+ IOUT- +G1 IOUT+ IOUT- TABLE {abs(V(VC+,VC-))} = ++(0, 1e-5) ++(3.38, 3.1e-5) ++(3.66, 3.2e-5) ++(3.87, 7.8e-5) ++(6.67, 5.64e-4) ++(8, 8.48e-4) ++(15, 2.23e-3) ++(35, 6.3e-3) +.ends VCCS_LIM_CLAWn +* +.subckt VCCS_LIM_IQ VC+ VC- IOUT+ IOUT- +.param Gain = 1e-3 +G1 IOUT+ IOUT- VALUE={IF( (V(VC+,VC-)<=0),0,Gain*V(VC+,VC-) )} +.ends VCCS_LIM_IQ +* +.subckt VNSE 1 2 +.param FLW=20 +.param NLF=45 +.param NVR=14 +.param GLF={PWR(FLW,0.25)*NLF/1164} +.param RNV={1.184*PWR(NVR,2)} +.model DVN D KF={PWR(FLW,0.5)/1E11} IS=1.0E-16 +I1 0 7 10E-3 +I2 0 8 10E-3 +D1 7 0 DVN +D2 8 0 DVN +E1 3 6 7 8 {GLF} +R1 3 0 1E9 +R2 3 0 1E9 +R3 3 6 1E9 +E2 6 4 5 0 10 +R4 5 0 {RNV} +R5 5 0 {RNV} +R6 3 4 1E9 +R7 4 0 1E9 +E3 1 2 3 4 1 +.ends VNSE +* +.subckt CLAMP_AMP_LO VC+ VC- VIN COM VO+ VO- +.param G=1 +GVo+ COM Vo+ Value = {IF(V(VIN,COM)>V(VC+,COM),((V(VIN,COM)-V(VC+,COM))*G),0)} +GVo- COM Vo- Value = {IF(V(VIN,COM)0, ++V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + +* Eldo: +* E_VOHNORL NET276 VB_3 PWL(1) VCCP VCCN ( 1.8 , 16m ) ( 3.0 , 21m ) ( +* +5.0 , 28.5m ) +* E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 1.8 , 60 ) ( 3.0 , 57 ) ( 5.0 , +* +41 ) +* E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 1.8 , 38 ) ( 3.0 , 60 ) ( +* +5.0 , 42 ) +* E_VOLNORL VB_3 NET235 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 26m ) ( 5.0 , +* +32m ) +* PSpice: +* E_VOHNORL NET276 VB_3 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 16m , 3.0 , 21m , +*+5.0 , 28.5m )} + E_VOHNORL NET276 VB_3 POLY(1) VCCP VCCN 0.00779687499999999 ++0.0047916666666666715 -1.3020833333333404E-4 + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 60 , 3.0 , 57 , 5.0 , +*+41 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 55.21875 5.75 -1.71875 + *E_VOLNORL VB_3 NET235 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 26m , +*+5.0 , 32m )} + E_VOLNORL VB_3 NET235 POLY(1) VCCP VCCN 0.02325 ++-3.3333333333334427E-4 4.166666666666681E-4 + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 38 , 3.0 , 60 , 5.0 , +*+42 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN -41.125 59.33333333333332 ++-8.541666666666664 + + E50 NET211 0 VCCP 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 3.9739130434782604E-5 ++5.652173913043478E-6 + E51 NET208 0 VCCN 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E64 IO_VAL 0 VALUE={I(VreadIo)} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ (217.76086956521732 + ++4.347826086956525*V(Vccp,Vccn)) -5000*I(VreadIo) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET223 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -217.76086956521732 ++-4.347826086956525*V(Vccp,Vccn) ) -5000*I(VreadIo)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EVLIM_LOW_VB NET214 0 VCCN 0 1.0 + E2_REF NET400 0 VCCN 0 1.0 + E_VREF VREF 0 NET394 0 1.0 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.2204347826086958E-4 ++7.3913043478260745E-6 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET368 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.5869565217391304 + 0.0826086956521739*V(Vccp,Vccn) )} + R1 VB VREF {R1} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {Ro2_1} + RIN_DIFF VP VM {RIN_DIFF} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_P_VCCP NET218 VCCP {RPROT_VCCP} + RPROT_IN_M_VCCP VCCP NET386 {RPROT_VCCP} + RO2_2 VB_3 VB_2 {Ro2_2} + RIN_CM_VP VREF VP {RIN_CM_VP} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET368 NET394 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET398 {RPROT_VCCN} + R2_REF NET394 NET400 1Meg + RPROT_IN_P_VCCN NET229 VCCN {RPROT_VCCN} + +*Eldo: +* G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+2.7 10n) (+5.0 16n) +* G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+2.7 10n) (+5.0 16n) +*PSpice: +* G_IIB_VM VREF VM VALUE={TABLE( V(VCCP,VCCN) , +2.7 , 10n , +5.0 , 16n)} +* G_IIB_VP VREF VP VALUE={TABLE( V(VCCP,VCCN) , +2.7 , 10n , +5.0 , 16n)} + G_IIB_VM VREF VM POLY(1) VCCP VCCN 2.956521739130429E-9 ++2.6086956521739144E-9 + G_IIB_VP VREF VP POLY(1) VCCP VCCN 2.956521739130429E-9 ++2.6086956521739144E-9 + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_IO VB_2 VREF VALUE={IF(abs(V(Io_val))<50m , V(VB_Vref)*GB*( ++abs(V(Io_val))/3m ) , V(VB_Vref)*GB*( 50m/3m ) )} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + IEE VEE_N VCCN_ENHANCED {IEE} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high) , 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +*Eldo: +* G_I_VB VB_2 VREF TABLE {V(VB_Vref)} = (-2.7 {-2.7*GB*3}) (-2.0 +*+{-2.0*GB*2.5}) (-1.5 {-1.5*GB*2.2}) (-0.69 {-0.69*GB*2}) (-0.65 +*+{-0.65*GB*1.0}) (-0.15 {-0.15*GB*1}) (-0.050 {-0.050*GB*1}) (-0.015 +*+{-0.015*GB*1}) (-0.0001 {-0.0001*GB*1}) (0 0) (+0.0001 {0.0001*GB*1}) +*+(+0.015 {+0.015*GB*1}) (+0.050 {+0.050*GB*1}) (+0.15 {+0.15*GB*1}) (+0.65 +*+{0.65*GB*1.0}) (+0.69 {0.69*GB*2}) (+1.5 {1.5*GB*2.2}) (+2.0 +*+{2.0*GB*2.5}) (+2.7 {2.7*GB*3}) +*PSpice: +* G_I_VB VB_2 VREF VALUE={TABLE( V(VB,Vref) , -2.7 , -2.7*GB*3 , -2.0 , +*+ -2.0*GB*2.5 , -1.5 , -1.5*GB*2.2 , -0.69 , -0.69*GB*2 , -0.65 , +*+ -0.65*GB*1.0 , -0.15 , -0.15*GB*1 , -0.050 , -0.050*GB*1 , -0.015 , +*+ -0.015*GB*1 , -0.0001 , -0.0001*GB*1 , 0 , 0 , +0.0001 , 0.0001*GB*1 , +*+ +0.015 , +0.015*GB*1 , +0.050 , +0.050*GB*1 , +0.15 , +0.15*GB*1 , +0.65, +*+ 0.65*GB*1.0 , +0.69 , 0.69*GB*2 , +1.5 , 1.5*GB*2.2 , +2.0 , +*+ 2.0*GB*2.5 , +2.7 , 2.7*GB*3 ) } + G_I_VB VB_2 VREF POLY(1) VB_VREF 0 2.0955964330729256E-18 ++0.0064704243141362125 -2.1354856438578985E-18 0.003032922143165251 ++1.7832794554106567E-19 -1.99845853108853E-4 + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by LMV3x subckt: +* + +.PARAM RINCM=6.4777e+7 +.PARAM CINCM=1.4646e-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3412e+5 +.PARAM CINDIFF=9.2768e-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM A0 = 1.0597e+006 +.PARAM Ro = 6.5024e+004 +.PARAM Ccomp=5.4p +.PARAM IEE=3u +.PARAM W=1.37u +.PARAM L=1u +.PARAM gm_mos=4.536705600382889e-05 +.PARAM GB=6m +.PARAM Ro1=50 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM RPROT_VCCP=100 +.PARAM RPROT_VCCN=15k +.PARAM Vd_compensazione=-788.4u + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_NOVd D LEVEL=1 MODTYPE=ELDO IS=10E-15 N=0.001 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 + +* +******************************************************************************* + +.ENDS LMV3X +*** End of subcircuit definition. + +**************************************************************************** +**** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT LMVXXL VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 5p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 18p + CCOMP VB VB_2 {Ccomp} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 136.08695652173913 ++-15.217391304347831 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 4.260869565217392 ++-0.6521739130434785 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6891304347826086 + 0.062173913043478246*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 3.3730434782608675E-4 ++4.1739130434782646E-5 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 103.39130434782608 ++-13.47826086956522 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0295 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM {RIN_DIFF} + ROUT NET0410 VZOUT {Rout} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15K + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15K + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={27n} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.0444086956521737E-4 ++4.3478260869565205E-6 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={27n} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV851 subckt: +* +.PARAM RINCM=4.3598E+08 +.PARAM CINCM=4.9396E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3.4m +.PARAM Ro = 85.35k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=3.86u +.PARAM W=1.6u +.PARAM L=1u +.PARAM gm_mos=5.561e-05 +.PARAM Lout = 5u +.PARAM Rout = 890 +.PARAM Cout = 0.03n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS LMVXXL + + + + + +**************************************************************************** +**** +*** LMV82X (WITHOUT STAND-BY) Spice macromodel subckt +*** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT LMV82X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 10p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 6.8p + CCOMP VB VB_2 {Ccomp} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.08695652173913 ++-0.21739130434782608 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 47.217391304347814 ++-3.0434782608695645 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -1.0782608695652169E-5 ++2.8695652173913046E-4 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 59.695652173913025 ++-6.7391304347826075 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.8260869565217391 + 0.03478260869565213*V(Vccp,Vccn) )} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0295 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM {RIN_DIFF} + ROUT NET0410 VZOUT {Rout} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15K + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15K + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={60n} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.155869565217391E-4 ++3.478260869565218E-5 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={60n} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by LMV82X subckt: +* +.PARAM RINCM=2.1315E+08 +.PARAM CINCM=4.9414E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=6.3m +.PARAM Ro = 48.89k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=10.5u +.PARAM W=6.915u +.PARAM L=1u +.PARAM gm_mos=1.9071e-04 +.PARAM Lout = 1.3u +.PARAM Rout = 430 +.PARAM Cout = 0.04n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 5m +.PARAM Iout_dc_tau__sink = 0.5m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS LMV82X + + + +**************************************************************************** +**** +*** LMV82X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT LMV82X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + G_IIB_VP VP VREF POLY(2) VSTB_CTRL 0 Iib_VP_val 0 0 0 0 0 1 + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IIB_VM VM VREF POLY(2) VSTB_CTRL 0 Iib_VM_val 0 0 0 0 0 1 + RIN_DIFF VP VM {RIN_DIFF} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + ROUT NET0584 VZOUT {Rout} + RPROT_IN_P_VCCN NET406 VCCN 15K + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0363 50 + RO2_1 VB_2 VREF {Ro2_1} + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 59.695652173913025 ++-6.7391304347826075 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 47.217391304347814 ++-3.0434782608695645 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -1.0782608695652169E-5 ++2.8695652173913046E-4 + EZOUT VB_3 NET0242 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VIL VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.2851851847826086 ++-0.03703703695652173 + E_IIB_VM_VAL IIB_VM_VAL 0 VALUE={-60n} + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EREAD_VS NET0220 0 VS 0 1.0 + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + EREAD_VREF NET0224 0 VREF 0 1.0 + E_VIH VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.7148148130434779 ++0.03703703739130437 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EZOUT_IOUT_COEFF NET0363 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.8260869565217391 + 0.03478260869565213*V(Vccp,Vccn) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_IIB_VP_VAL IIB_VP_VAL 0 VALUE={-60n} + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 1.155869565217391E-4 ++3.478260869565218E-5 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.08695652173913 ++-0.21739130434782608 + E1_REF NET287 0 VCCP 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CSTB_CTRL VSTB_CTRL 0 1n + COUT NET0584 0 {Cout} + C_RO2_1 VB_2 VREF 10p + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 6.8p + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_DIFF VM VP {CIN_DIFF} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + COUT2 VZOUT 0 {Cout2} + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VREADIO NET0242 VS_STB DC 0 + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by LMV82X subckt: +* +.PARAM RINCM=2.1315E+08 +.PARAM CINCM=4.9414E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=6.3m +.PARAM Ro = 48.89k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=10.5u +.PARAM W=6.915u +.PARAM L=1u +.PARAM gm_mos=1.9071e-04 +.PARAM Lout = 1.3u +.PARAM Rout = 430 +.PARAM Cout = 0.04n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 5m +.PARAM Iout_dc_tau__sink = 0.5m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 2.5n +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 60 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_OUT VSWITCH VON=0.9 VOFF=0.1 RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF={2.5/Iout_leak_STB -2e3} +.MODEL SW_VB2_VS VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +.MODEL SW_VB_VREF VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS LMV82X_SHDN +*** End of subcircuit definition. + +**************************************************************************** +**** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT LMX3XX VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 5p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 18p + CCOMP VB VB_2 {Ccomp} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 136.08695652173913 ++-15.217391304347831 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 4.260869565217392 ++-0.6521739130434785 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6891304347826086 + 0.062173913043478246*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 3.3730434782608675E-4 ++4.1739130434782646E-5 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 103.39130434782608 ++-13.47826086956522 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0295 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM {RIN_DIFF} + ROUT NET0410 VZOUT {Rout} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15K + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15K + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={27n} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.0444086956521737E-4 ++4.3478260869565205E-6 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={27n} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV851 subckt: +* +.PARAM RINCM=4.3598E+08 +.PARAM CINCM=4.9396E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3.4m +.PARAM Ro = 85.35k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=3.86u +.PARAM W=1.6u +.PARAM L=1u +.PARAM gm_mos=5.561e-05 +.PARAM Lout = 5u +.PARAM Rout = 890 +.PARAM Cout = 0.03n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS LMX3XX + + + + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT LS204 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=6.565195E-17 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.600000E+01 +RIN 15 16 2.600000E+01 +RIS 11 15 1.061852E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.000000E-05 +CPS 11 15 12.47E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 1.500000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.500000E+00 +FCP 4 5 VOFP 3.400000E+01 +FCN 5 4 VOFN 3.400000E+01 +FIBP 2 5 VOFN 1.000000E-02 +FIBN 5 1 VOFP 1.000000E-02 +* AMPLIFYING STAGE +FIP 5 19 VOFP 9.000000E+02 +FIN 5 19 VOFN 9.000000E+02 +RG1 19 5 1.727221E+06 +RG2 19 4 1.727221E+06 +CC 19 5 6.000000E-09 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.521739E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 6.521739E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 6.485084E-04 +RPM1 5 80 1E+06 +RPM2 4 80 1E+06 +GAVPH 5 82 19 80 2.59E-03 +RAVPHGH 82 4 771 +RAVPHGB 82 5 771 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.331E-09 +CAVPHB 5 84 0.331E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 6.498455E+01 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.742230E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.742230E+00 +.ENDS LS204 + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT LS404 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=6.647807E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.300000E+01 +RIN 15 16 1.300000E+01 +RIS 11 15 6.437882E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.000000E-05 +CPS 11 15 9.75E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.500000E+00 +FCP 4 5 VOFP 1.525000E+01 +FCN 5 4 VOFN 1.525000E+01 +FIBP 2 5 VOFN 5.000000E-03 +FIBN 5 1 VOFP 5.000000E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 1.125000E+03 +FIN 5 19 VOFN 1.125000E+03 +RG1 19 5 6.512062E+05 +RG2 19 4 6.512062E+05 +CC 19 29 1.500000E-08 +HZTP 30 29 VOFP 8.944787E+02 +HZTN 5 30 VOFN 8.944787E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.521739E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 6.521739E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 7.485029E-04 +RPM1 5 80 1E+09 +RPM2 4 80 1E+09 +GAVPH 5 82 19 80 2.99E-03 +RAVPHGH 82 4 668 +RAVPHGB 82 5 668 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.352E-09 +CAVPHB 5 84 0.352E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 150 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.785252E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.785252E+00 +.ENDS LS404 + + + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC1X58 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=9.728631E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.400000E-12 +CIN 1 5 1.400000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.040000E+04 +RIN 15 16 1.040000E+04 +RIS 11 15 8.993325E+04 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 5.000000E-06 +CPS 11 15 2.715680E-12 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 3.000000E+00 +FCP 4 5 VOFP 1.972759E+02 +FCN 5 4 VOFN 1.972759E+02 +FIBP 2 5 VOFN 1.034483E-02 +FIBN 5 1 VOFP 1.034483E-02 +* AMPLIFYING STAGE +FIP 5 19 VOFP 4.827586E+02 +FIN 5 19 VOFN 4.827586E+02 +RG1 19 5 1.918174E+07 +RG2 19 4 1.918174E+07 +CC 19 29 3.000000E-09 +HZTP 30 29 VOFP 5.729583E+03 +HZTN 5 30 VOFN 5.729583E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.380000E+03 +VIPM 28 4 1.100000E+02 +HONM 21 27 VOUT 6.380000E+03 +VINM 5 27 1.100000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.1 +DON 24 19 MDTH 400E-12 +VON 24 5 2.1 +.ENDS MC1X58 + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC3307X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=2.286238E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.200000E-11 +CIN 1 5 1.200000E-11 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.363636E+00 +RIN 15 16 2.363636E+00 +RIS 11 15 1.224040E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.100000E-04 +CPS 11 15 2.35E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 1.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.000000E+00 +FCP 4 5 VOFP 1.718182E+01 +FCN 5 4 VOFN 1.718182E+01 +FIBP 2 5 VOFN 4.545455E-03 +FIBN 5 1 VOFP 4.545455E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 9.545455E+02 +FIN 5 19 VOFN 9.545455E+02 +CC 19 29 1.500000E-08 +HZTP 30 29 VOFP 1.523529E+02 +HZTN 5 30 VOFN 1.523529E+02 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 5.172414E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 4.054054E+03 +VINM 5 27 1.500000E+02 +DBIDON1 19 53 MDTH 400E-12 +V1 51 53 0.68 +DBIDON2 54 19 MDTH 400E-12 +V2 54 52 0.68 +RG11 51 5 3.04E+05 +RG12 51 4 3.04E+05 +RG21 52 5 0.6072E+05 +RG22 52 4 0.6072E+05 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +DOP 51 25 MDTH 400E-12 +VOP 4 25 1.474575E+00 +DON 24 52 MDTH 400E-12 +VON 24 5 1.474575E+00 +RAJUS 50 5 1E12 +GCOMP 5 4 4 5 8.1566068E-04 +RPM1 5 80 1E+06 +RPM2 4 80 1E+06 +GAVPH 5 82 50 80 3.26E-03 +RAVPHGH 82 4 613 +RAVPHGB 82 5 613 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.159E-09 +CAVPHB 5 84 0.159E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 4.780354E+01 +COUT 3 5 1.000000E-12 +.ENDS MC3307X + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC3317X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=1.293682E-15 CJO=10F +.MODEL NDTH D IS=1E-12 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.733333E+01 +RIN 15 16 1.733333E+01 +RIS 11 15 1.817522E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.500000E-05 +CPS 11 15 1.848544E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.800000E+00 +FCP 4 5 VOFP 1.366667E+01 +FCN 5 4 VOFN 1.366667E+01 +FIBP 2 5 VOFP 6.666667E-04 +FIBN 5 1 VOFN 6.666667E-04 +* AMPLIFYING STAGE +FIP 5 19 VOFP 7.333333E+02 +FIN 5 19 VOFN 7.333333E+02 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 2.500000E+04 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 5.555556E+03 +VINM 5 27 1.500000E+02 +CC 19 29 5E-09 +HZTP 30 29 VOFP 4.931638E+03 +HZTN 5 30 VOFN 4.931638E+03 +DPOS 19 51 NDTH 400E-12 +DNEG 52 19 NDTH 400E-12 +IBD11 4 19 1U +IBD12 51 5 1U +IBD21 4 52 1U +IBD22 19 5 1U +RG11 51 5 1.54E+06 +RG12 51 4 1.54E+06 +RG21 52 5 3.48E+06 +RG22 52 4 3.48E+06 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +RFOL 50 5 1E12 +EOUT 26 23 50 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 51 25 MDTH 400E-12 +VOP 4 25 3.1 +DON 24 52 MDTH 400E-12 +VON 24 5 2.4 +.ENDS MC3317X + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC3X03 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=2.276045E-15 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.166667E+01 +RIN 15 16 2.166667E+01 +RIS 11 15 8.589028E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.200000E-05 +CPS 11 15 1.122007E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 2.000000E+00 +FCP 4 5 VOFP 5.733333E+01 +FCN 5 4 VOFN 5.733333E+01 +FIBP 2 5 VOFN 6.666667E-03 +FIBN 5 1 VOFP 6.666667E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 3.750000E+02 +FIN 5 19 VOFN 3.750000E+02 +RG1 19 5 6.960807E+06 +RG2 19 4 6.960807E+06 +CC 19 29 9.000000E-09 +HZTP 30 29 VOFP 1.545442E+03 +HZTN 5 30 VOFN 1.545442E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.000000E+03 +VIPM 28 4 1.800000E+02 +HONM 21 27 VOUT 6.000000E+03 +VINM 5 27 1.800000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.24 +DON 24 19 MDTH 400E-12 +VON 24 5 2.24 +.ENDS MC3X03 + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC3517X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=1.293682E-15 CJO=10F +.MODEL NDTH D IS=1E-12 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.733333E+01 +RIN 15 16 1.733333E+01 +RIS 11 15 1.817522E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.500000E-05 +CPS 11 15 1.848544E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.800000E+00 +FCP 4 5 VOFP 1.366667E+01 +FCN 5 4 VOFN 1.366667E+01 +FIBP 2 5 VOFP 6.666667E-04 +FIBN 5 1 VOFN 6.666667E-04 +* AMPLIFYING STAGE +FIP 5 19 VOFP 7.333333E+02 +FIN 5 19 VOFN 7.333333E+02 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 2.500000E+04 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 5.555556E+03 +VINM 5 27 1.500000E+02 +CC 19 29 5E-09 +HZTP 30 29 VOFP 4.931638E+03 +HZTN 5 30 VOFN 4.931638E+03 +DPOS 19 51 NDTH 400E-12 +DNEG 52 19 NDTH 400E-12 +IBD11 4 19 1U +IBD12 51 5 1U +IBD21 4 52 1U +IBD22 19 5 1U +RG11 51 5 1.54E+06 +RG12 51 4 1.54E+06 +RG21 52 5 3.48E+06 +RG22 52 4 3.48E+06 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +RFOL 50 5 1E12 +EOUT 26 23 50 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 51 25 MDTH 400E-12 +VOP 4 25 3.1 +DON 24 52 MDTH 400E-12 +VON 24 5 2.4 +.ENDS MC3517X + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT MC4558 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=3.103536E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.400000E-12 +CIN 1 5 1.400000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.238095E+01 +RIN 15 16 1.238095E+01 +RIS 11 15 1.142635E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.100000E-05 +CPS 11 15 5.9E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 3.000000E+00 +FCP 4 5 VOFP 5.376190E+01 +FCN 5 4 VOFN 5.376190E+01 +FIBP 2 5 VOFN 1.904762E-03 +FIBN 5 1 VOFP 1.904762E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 1.361905E+03 +FIN 5 19 VOFN 1.361905E+03 +RG1 19 5 8.864107E+05 +RG2 19 4 8.864107E+05 +CC 19 29 1.300000E-08 +HZTP 30 29 VOFP 8.862530E+02 +HZTN 5 30 VOFN 8.862530E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 7.500000E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 7.500000E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 6.485084E-04 +RPM1 5 80 1E+09 +RPM2 4 80 1E+09 +GAVPH 5 82 19 80 2.59E-03 +RAVPHGH 82 4 771 +RAVPHGB 82 5 771 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.331E-09 +CAVPHB 5 84 0.331E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 120 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.981520E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.981520E+00 +.ENDS MC4558 + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TJM4558 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=3.103536E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.400000E-12 +CIN 1 5 1.400000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.238095E+01 +RIN 15 16 1.238095E+01 +RIS 11 15 1.142635E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.100000E-05 +CPS 11 15 5.9E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 3.000000E+00 +FCP 4 5 VOFP 5.376190E+01 +FCN 5 4 VOFN 5.376190E+01 +FIBP 2 5 VOFN 1.904762E-03 +FIBN 5 1 VOFP 1.904762E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 1.361905E+03 +FIN 5 19 VOFN 1.361905E+03 +RG1 19 5 8.864107E+05 +RG2 19 4 8.864107E+05 +CC 19 29 1.300000E-08 +HZTP 30 29 VOFP 8.862530E+02 +HZTN 5 30 VOFN 8.862530E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 7.500000E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 7.500000E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 6.485084E-04 +RPM1 5 80 1E+09 +RPM2 4 80 1E+09 +GAVPH 5 82 19 80 2.59E-03 +RAVPHGH 82 4 771 +RAVPHGB 82 5 771 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.331E-09 +CAVPHB 5 84 0.331E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 120 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.981520E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.981520E+00 +.ENDS TJM4558 + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TL06X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=1.175758E-14 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 4.000000E+00 +RIN 15 16 4.000000E+00 +RIS 11 15 9.848265E-01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 6.500000E-05 +CPS 11 15 2.981372E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 3.000000E+00 +FCP 4 5 VOFP 2.076923E+00 +FCN 5 4 VOFN 2.076923E+00 +* AMPLIFYING STAGE +FIP 5 19 VOFP 5.384615E+02 +FIN 5 19 VOFN 5.384615E+02 +GVNEG 5 19 5 13 1.311224E-06 +GVPOS 5 19 4 13 1.311224E-06 +RG1 19 5 1.626871E+05 +RG2 19 4 1.626871E+05 +CC 19 29 1.000000E-08 +HZTP 30 29 VOFP 2.558489E+03 +HZTN 5 30 VOFN 2.558489E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3.750000E+03 +VIPM 28 4 9.000000E+01 +HONM 21 27 VOUT 9.000000E+03 +VINM 5 27 9.000000E+01 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.290897E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 2.290897E+00 +.ENDS TL06X + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TL07X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=5.306587E-14 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.130435E+00 +RIN 15 16 1.130435E+00 +RIS 11 15 2.476554E-01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.300000E-04 +CPS 11 15 4.091333E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.000000E+00 +FCP 4 5 VOFP 6.096957E+00 +FCN 5 4 VOFN 6.096957E+00 +* AMPLIFYING STAGE +FIP 5 19 VOFP 8.217391E+02 +FIN 5 19 VOFN 8.217391E+02 +RG1 19 5 1.112645E+06 +RG2 19 4 1.112645E+06 +CC 19 29 1.300000E-08 +HZTP 30 29 VOFP 7.743183E+02 +HZTN 5 30 VOFN 7.743183E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3.750000E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 3.750000E+03 +VINM 5 27 1.500000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 9.384786E+01 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 3.259753E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 3.259753E+00 +.ENDS TL07X + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TL08X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=5.306587E-14 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.130435E+00 +RIN 15 16 1.130435E+00 +RIS 11 15 2.476554E-01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.300000E-04 +CPS 11 15 4.091333E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.000000E+00 +FCP 4 5 VOFP 6.096957E+00 +FCN 5 4 VOFN 6.096957E+00 +* AMPLIFYING STAGE +FIP 5 19 VOFP 8.217391E+02 +FIN 5 19 VOFN 8.217391E+02 +RG1 19 5 1.112645E+06 +RG2 19 4 1.112645E+06 +CC 19 29 1.300000E-08 +HZTP 30 29 VOFP 7.743183E+02 +HZTN 5 30 VOFN 7.743183E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3.750000E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 3.750000E+03 +VINM 5 27 1.500000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 9.384786E+01 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 3.259753E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 3.259753E+00 +.ENDS TL08X + +**************************************************************************** +**** +*** TS185X Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS185X VP VM VCCP VCCN VS + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + V_OUTVLIM_LOW NET0204 NET0196 DC {Vd_compensazione} + V_OUTVLIM_HIGH NET0234 NET0211 DC {Vd_compensazione} + VREADIO NET0193 VS DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + D_OUTVLIM_HIGH NET0194 NET0234 DIODE_NOVd + D_OUTVLIM_LOW NET0196 NET0233 DIODE_NOVd + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + C_RO2_1 VB_2 VREF 650p + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 12p + CCOMP VB VB_2 {Ccomp} + E64 IO_VAL 0 VALUE={I(VreadIo)} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E_RO1 VB_3 NET0193 VALUE={IF(I(VreadIo)>0, ++V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + +*Eldo: +* E_VOHNORL NET0194 VB_3 PWL(1) VCCP VCCN ( 1.8 , 16m ) ( 3.0 , 21m ) ( +*+5.0 , 28.5m ) +* E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 1.8 , 60 ) ( 3.0 , 57 ) ( 5.0 , +*+41 ) +* E_VOLNORL VB_3 NET0233 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 26m ) ( +*+5.0 , 32m ) +* E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 1.8 , 38 ) ( 3.0 , 60 ) ( 5.0 , +*+42 ) +*PSpice: +* E_VOHNORL NET0194 VB_3 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 16m , 3.0 , 21m , +*+5.0 , 28.5m )} + E_VOHNORL NET0194 VB_3 POLY(1) VCCP VCCN 0.00779687499999999 ++0.0047916666666666715 -1.3020833333333404E-4 + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 60 , 3.0 , 57 , 5.0 , +*+41 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 55.21875 5.75 -1.71875 + *E_VOLNORL VB_3 NET0233 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 26m , +*+5.0 , 32m )} + E_VOLNORL VB_3 NET0233 POLY(1) VCCP VCCN 0.02325 ++-3.3333333333334427E-4 4.166666666666681E-4 + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 38 , 3.0 , 60 , 5.0 , +*+42 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN -41.125 59.33333333333332 ++-8.541666666666664 + + E50 NET0211 0 VCCP 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 7.921875E-5 -3.75E-6 ++7.8125E-7 + E51 NET0204 0 VCCN 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)<=3.0 , ( +++9.5 +75*V(Vccp,Vccn) ) -5000*I(VreadIo) , ( +227 +2.5*V(Vccp,Vccn) ) ++-5000*I(VreadIo) )} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -219.1875 ++-6.666666666666708*V(Vccp,Vccn) + 0.5208333333333386*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.3553571428571613E-5 ++8.222916666666653E-5 -1.551388888888886E-5 9.771825396825383E-7 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.4390625 + 0.22416666666666657*V(Vccp,Vccn) ++-0.022395833333333323*PWR(V(Vccp,Vccn),2) )} + RO2_1 VB_2 VREF {Ro2_1} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1 VB VREF {R1} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP {RPROT_VCCP} + RPROT_IN_M_VCCP VCCP NET348 {RPROT_VCCP} + RIN_CM_VP VREF VP {RIN_CM_VP} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_DIFF VP VM {RIN_DIFF} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 {RPROT_VCCN} + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN {RPROT_VCCN} + +*Eldo: +* G_I_VB VB_2 VREF TABLE {V(VB_Vref)} = (-2.7 {-2.7*GB*3}) (-2.0 +*+{-2.0*GB*2.5}) (-1.5 {-1.5*GB*2.2}) (-0.69 {-0.69*GB*2}) (-0.65 +*+{-0.65*GB*1.0}) (-0.15 {-0.15*GB*1}) (-0.050 {-0.050*GB*1}) (-0.015 +*+{-0.015*GB*1}) (-0.0001 {-0.0001*GB*1}) (0 0) (+0.0001 {0.0001*GB*1}) +*+(+0.015 {+0.015*GB*1}) (+0.050 {+0.050*GB*1}) (+0.15 {+0.15*GB*1}) (+0.65 +*+{0.65*GB*1.0}) (+0.69 {0.69*GB*2}) (+1.5 {1.5*GB*2.2}) (+2.0 +*+{2.0*GB*2.5}) (+2.7 {2.7*GB*3}) +*PSpice: +* G_I_VB VB_2 VREF VALUE={TABLE( V(VB,Vref) , -2.7 , -2.7*GB*3 , -2.0 , +*+ -2.0*GB*2.5 , -1.5 , -1.5*GB*2.2 , -0.69 , -0.69*GB*2 , -0.65 , +*+ -0.65*GB*1.0 , -0.15 , -0.15*GB*1 , -0.050 , -0.050*GB*1 , -0.015 , +*+ -0.015*GB*1 , -0.0001 , -0.0001*GB*1 , 0 , 0 , +0.0001 , 0.0001*GB*1 , +*+ +0.015 , +0.015*GB*1 , +0.050 , +0.050*GB*1 , +0.15 , +0.15*GB*1 , +0.65, +*+ 0.65*GB*1.0 , +0.69 , 0.69*GB*2 , +1.5 , 1.5*GB*2.2 , +2.0 , +*+ 2.0*GB*2.5 , +2.7 , 2.7*GB*3 ) } + G_I_VB VB_2 VREF POLY(1) VB_VREF 0 2.0955964330729256E-18 ++0.0064704243141362125 -2.1354856438578985E-18 0.003032922143165251 ++1.7832794554106567E-19 -1.99845853108853E-4 + + G_I_IO VB_2 VREF VALUE={IF(abs(V(Io_val))<50m , V(VB_Vref)*GB*( ++abs(V(Io_val))/2m ) , V(VB_Vref)*GB*( 50m/2m ) )} + +* G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 10n) (+3.0 10n) (+5.0 +*+16n) +* G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 10n) (+3.0 10n) (+5.0 +*+16n) + G_IIB_VM VREF VM POLY(1) VCCP VCCN 7.5625E-9 1.1666666666666626E-9 ++1.0416666666666735E-10 + G_IIB_VP VREF VP POLY(1) VCCP VCCN 7.5625E-9 1.1666666666666626E-9 ++1.0416666666666735E-10 + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + IEE VEE_N VCCN_ENHANCED {IEE} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high) , 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TS185x subckt: +* +.PARAM RINCM=6.4777e+7 +.PARAM CINCM=1.4646e-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3412e+5 +.PARAM CINDIFF=9.2768e-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM A0 = 1.0597e+6 +.PARAM Ro = 6.5024e+4 +.PARAM Ccomp=11.5p +.PARAM IEE=3u +.PARAM W=1.45u +.PARAM L=1u +.PARAM gm_mos=4.667416947578759e-05 +.PARAM GB=6m +.PARAM Ro1=50 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM RPROT_VCCP=100 +.PARAM RPROT_VCCN=15k +.PARAM Vd_compensazione=-788.4u + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_NOVd D LEVEL=1 MODTYPE=ELDO IS=10E-15 N=0.001 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DX D LEVEL=1 MODTYPE=ELDO IS=1E-14 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL DX D LEVEL=1 IS=1E-14 +******************************************************************************* + +.ENDS TS185X + + +**************************************************************************** +**** +*** TS187X Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS187X VP VM VCCP VCCN VS + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0262 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + V_OUTVLIM_LOW NET0204 NET0196 DC {Vd_compensazione} + V_OUTVLIM_HIGH NET0234 NET0211 DC {Vd_compensazione} + VREADIO NET0191 VS DC 0 + VVLIM_LOW_VB NET192 NET193 DC {Vd_compensazione} + VOS NET0262 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VVLIM_HIGH_VB NET217 NET203 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + D_OUTVLIM_HIGH NET0279 NET0234 DIODE_NOVd + D_OUTVLIM_LOW NET0196 NET0238 DIODE_NOVd + DVLIM_HIGH_VB VB NET217 DIODE_NOVd + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_NOVd + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + DPROT_IN_P_VCCP NET0262 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET0262 DIODE_VLIM + C_RO2_1 VB_2 VREF 140p + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 12p + CCOMP VB VB_2 {Ccomp} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={IF( V(Vccp,Vccn)<=3.0 , ( ++-212 -62.5*V(Vccp,Vccn) ) -5000*I(VreadIo) , ( -399.5 ) ++-5000*I(VreadIo) )} + E_RO1 VB_3 NET0191 VALUE={IF(I(VreadIo)>0, ++V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + +*Eldo: +* E_VOHNORL NET0279 VB_3 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 26m ) ( +*+5.0 , 37m ) +* E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 1.8 , 20 ) ( 3.0 , 18 ) ( 5.0 , +*+12 ) +* E_VOLNORL VB_3 NET0238 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 32m ) ( +*+5.0 , 42m ) +* E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 1.8 , 15 ) ( 3.0 , 11 ) ( 5.0 , +*+7 ) +*PSpice: +* E_VOHNORL NET0279 VB_3 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 26m , +*+5.0 , 37m )} +* E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 20 , 3.0 , 18 , 5.0 , +*+12 )} +* E_VOLNORL VB_3 NET0238 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 32m , +*+5.0 , 42m )} +* E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 15 , 3.0 , 11 , 5.0 , +*+7 )} + E_VOHNORL NET0279 VB_3 POLY(1) VCCP VCCN 0.02746875 ++-0.00408333333333334 0.0011979166666666674 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 20.75 0.3333333333333298 ++-0.41666666666666624 + E_VOLNORL VB_3 NET0238 POLY(1) VCCP VCCN 0.0091875 ++0.009166666666666663 -5.208333333333329E-4 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 23.25 -5.333333333333335 ++0.41666666666666685 + + E50 NET0211 0 VCCP 0 1.0 + E64 IO_VAL 0 VALUE={I(VreadIo)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN -8.65625E-5 ++2.533333333333334E-4 -2.7604166666666666E-5 + E51 NET0204 0 VCCN 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 VALUE={ ++IF(V(val_vdep_source)>=0, 0, V(val_vdep_source)) } + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)<=3.0 , ( +++212 +62.5*V(Vccp,Vccn) ) -5000*I(VreadIo) , ( +399.5 ) ++-5000*I(VreadIo) )} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 VALUE={ ++IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 2.93875E-4 6.666666666666659E-5 ++-5.208333333333321E-6 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( 0.796875 +++ 0.06666666666666655*V(Vccp,Vccn) -0.005208333333333318*PWR(V(Vccp,Vccn),2) ++)} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1 VB VREF {R1} + RIN_CM_VP VREF VP {RIN_CM_VP} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RIN_DIFF VP VM {RIN_DIFF} + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP {RPROT_VCCP} + RPROT_IN_M_VCCP VCCP NET348 {RPROT_VCCP} + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 {RPROT_VCCN} + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN {RPROT_VCCN} + +*Eldo: +* G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 40n) (+3.0 40n) (+5.0 +*+70n) +* G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 40n) (+3.0 40n) (+5.0 +*+70n) +*PSpice: +* G_IIB_VP VREF VP VALUE={TABLE(V(Vccp,Vccn), +1.8 , 40n , +3.0 , 40n , +5.0 , +*+70n)} +* G_IIB_VM VREF VM VALUE={TABLE(V(Vccp,Vccn), +1.8 , 40n , +3.0 , 40n , +5.0 , +*+70n)} + G_IIB_VP VREF VP POLY(1) VCCP VCCN 2.78125E-8 5.833333333333326E-9 ++5.208333333333348E-10 + G_IIB_VM VREF VM POLY(1) VCCP VCCN 2.78125E-8 5.833333333333326E-9 ++5.208333333333348E-10 + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + +*Eldo: +* G_I_VB VB_2 VREF TABLE {V(VB,Vref)} = (-2.7 {-2.7*GB*5}) (-2.0 +*+{-2.0*GB*4}) (-1.5 {-1.5*GB*3}) (-0.85 {-0.85*GB*2}) (-0.8 {-0.8*GB*1.0}) +*+(-0.15 {-0.15*GB*1}) (-0.050 {-0.050*GB*1}) (-0.015 {-0.015*GB*1}) +*+(-0.0001 {-0.0001*GB*1}) (0 0) (+0.0001 {0.0001*GB*1}) (+0.015 +*+{+0.015*GB*1}) (+0.050 {+0.050*GB*1}) (+0.15 {+0.15*GB*1}) (+0.8 +*+{0.8*GB*1.0}) (+0.85 {0.85*GB*2}) (+1.5 {1.5*GB*3}) (+2.0 {2.0*GB*4}) +*+(+2.7 {2.7*GB*5}) +*PSpice: +* G_I_VB VB_2 VREF VALUE={ TABLE( V(VB_Vref) , -2.7 , -2.7*GB*5 , -2.0 , +*+ -2.0*GB*4 , -1.5 , -1.5*GB*3 , -0.85 , -0.85*GB*2 , -0.8 , -0.8*GB*1.0 , +*+ -0.15 , -0.15*GB*1 , -0.050 , -0.050*GB*1 , -0.015 , -0.015*GB*1 , +*+ -0.0001 , -0.0001*GB*1 , 0 , 0 , +0.0001 , +0.0001*GB*1 , +0.015 , +*+ +0.015*GB*1 , +0.050 , +0.050*GB*1 , +0.15 , +0.15*GB*1 , +0.8 , +*+ +0.8*GB*1.0 , +0.85 , +0.85*GB*2 , +1.5 , +1.5*GB*3 , +2.0 , +2.0*GB*4 , +*+ +2.7 ,+2.7*GB*5) } + G_I_VB VB_2 VREF POLY(1) VB_VREF 0 -9.856565891257244E-19 ++0.005261002312869361 -1.07732629780586E-18 0.006364309660287821 ++1.4051854670098035E-19 -4.0785392718052795E-4 + + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + IEE VEE_N VCCN_ENHANCED {IEE} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high) , 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_IO VB_2 VREF VALUE={IF(abs(V(Io_val))<50m , V(VB_Vref)*GB*( ++abs(V(Io_val))/3m ) , V(VB_Vref)*GB*( 50m/3m ) )} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TS187x subckt: +* +.PARAM RINCM=6.4777e+7 +.PARAM CINCM=1.4646e-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3412e+5 +.PARAM CINDIFF=9.2768e-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM A0 = 6.8366e+5 +.PARAM Ro = 2.5282e+4 +.PARAM Ccomp=4.85p +.PARAM IEE=3u +.PARAM W=2.1u +.PARAM L=1u +.PARAM gm_mos=5.617737386835048e-05 +.PARAM GB=6m +.PARAM Ro1=15 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM RPROT_VCCP=100 +.PARAM RPROT_VCCN=15k +.PARAM Vd_compensazione=-788.4u + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_NOVd D LEVEL=1 MODTYPE=ELDO IS=10E-15 N=0.001 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DX D LEVEL=1 MODTYPE=ELDO IS=1E-14 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL DX D LEVEL=1 IS=1E-14 +******************************************************************************* + +.ENDS TS187X + + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS271_Iset_1u5 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=5.029059E-14 CJO=10F +* INPUT STAGE +CIP 2 5 7.450000E-13 +CIN 1 5 7.450000E-13 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.600000E+01 +RIN 15 16 2.600000E+01 +RIS 11 15 2.503337E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 1.000000E-05 +CPS 11 15 8.650557E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.600000E+00 +FCP 4 5 VOFP 0.15 +FCN 5 4 VOFN 0.15TS271L +* AMPLIFYING STAGE +FIP 5 19 VOFP 2.800000E+01 +FIN 5 19 VOFN 2.800000E+01 +RG1 19 5 4.504399E+07 +RG2 19 4 4.504399E+07 +CC 19 29 7.000000E-09 +HZTP 30 29 VOFP 0.55E+04 +HZTN 5 30 VOFN 0.55E+04 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 2500 +VIPM 28 4 150 +HONM 21 27 VOUT 3325 +VINM 5 27 150 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.600000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.742230E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 8.3E-01 +.ENDS TS271_Iset_1u5 + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS271_Iset_25uA 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=7.404371E-15 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 5.200000E+01 +RIN 15 16 5.200000E+01 +RIS 11 15 6.746099E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 5.000000E-06 +CPS 11 15 1.464357E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.600000E+00 +FCP 4 5 VOFP 4.8 +FCN 5 4 VOFN 4.8 +* AMPLIFYING STAGE +FIP 5 19 VOFP 8.400000E+02 +FIN 5 19 VOFN 8.400000E+02 +RG1 19 5 3.160459E+06 +RG2 19 4 3.160459E+06 +CC 19 29 7.000000E-09 +HZTP 30 29 VOFP 1.7E+04 +HZTN 5 30 VOFN 1.7E+04 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 2500 +VIPM 28 4 150 +HONM 21 27 VOUT 3325 +VINM 5 27 150 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.600000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.924208E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 9.32083E-01 +.ENDS TS271_Iset_25uA + + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS271_Iset_130uA 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=4.153070E-14 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 5.777778E+00 +RIN 15 16 5.777778E+00 +RIS 11 15 2.509675E+00 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 4.500000E-05 +CPS 11 15 1.5E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.600000E+00 +FCP 4 5 VOFP 3.5 +FCN 5 4 VOFN 3.5 +* AMPLIFYING STAGE +FIP 5 19 VOFP 7.000000E+02 +FIN 5 19 VOFN 7.000000E+02 +RG1 19 5 2.777406E+05 +RG2 19 4 2.777406E+05 +CC 19 29 7.000000E-09 +HZTP 30 29 VOFP 1.787279E+03 +HZTN 5 30 VOFN 1.787279E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 2500 +VIPM 28 4 150 +HONM 21 27 VOUT 3325 +VINM 5 27 150 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.600000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.324208E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 9.32083E-01 +.ENDS TS271_Iset_130uA + + + +.SUBCKT TS27X 2 1 4 5 3 +*** INP- = 1, INP+ =2, OUT = 3 VDD=4 VSS = 5 +*** TYPE = TS271/TS272/TS274 +.MODEL MDTH D IS=1E-8 KF=2.664E-16 CJO=10F +***INPUT STAGE +CIP 2 5 1E-12 +CIN 1 5 1E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 8 +RIN 15 16 8 +RIS 11 15 223.84 +CPS 11 15 1E-9 +DIP 11 120 MDTH 400E-12 +DIN 15 140 MDTH 400E-12 +RDEG1 12 120 4400 +RDEG2 14 140 4400 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 38E-6 +***ICC +DICC1 4 31 MDTH 400E-12 +DICC2 31 32 MDTH 400E-12 +DICC3 32 33 MDTH 400E-12 +DICC4 33 34 MDTH 400E-12 +RICC 34 5 20E3 +ICC 4 5 600E-6 +***COMMON MODE INPUT LIMITATION +DINN 17 13 MDTH 400E-12 +VIN 17 5 DC -0.1 +DINR 15 18 MDTH 400E-12 +VIP 4 18 DC 2.2 +***GM1 STAGE +FGM1P 119 5 VOFP 1 +FGM1N 119 5 VOFN 1 +RAP 119 4 1E6 +RAN 119 5 1E6 +***GM2 STAGE +G2P 19 5 119 5 4E-4 +G2N 19 5 119 4 4E-4 +R2P 19 4 450E3 +R2N 19 5 450E3 +***COMPENSATION +CC 19 119 7p +***BUFFER +EBUF 20 5 19 5 1 +***SHORT-CIRCUIT LIMITATIONS( ISINK, ISOURCE) +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 910 +VIPM 28 4 DC 50 +HONM 21 27 VOUT 1222 +VINM 5 27 DC 50 +VOUT 3 23 DC 0 +***VOH, VOL DEFINITIONS +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.5 +DON 24 19 MDTH 400E-12 +VON 24 5 0.92 +***OUTPUT RESISTOR +ROUT 23 20 10 +.ENDS TS27X + + +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS27MX 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=7.405288E-15 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 5.200000E+01 +RIN 15 16 5.200000E+01 +RIS 11 15 1.337376E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 5.000000E-06 +CPS 11 15 7.175351E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.600000E+00 +FCP 4 5 VOFP 2.900000E+01 +FCN 5 4 VOFN 2.900000E+01 +* AMPLIFYING STAGE +FIP 5 19 VOFP 8.400000E+02 +FIN 5 19 VOFN 8.400000E+02 +RG1 19 5 2.212321E+06 +RG2 19 4 2.212321E+06 +CC 19 29 7.000000E-09 +HZTP 30 29 VOFP 9.4E+03 +HZTN 5 30 VOFN 9.4E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 2500 +VIPM 28 4 150 +HONM 21 27 VOUT 3750 +VINM 5 27 150 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.600000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.924208E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 8.742083E-01 +.ENDS TS27MX + + +** Standard Linear Ics Macromodels, 1999. +** CONNECTIONS : +* N1 INVERTING INPUT +* N2 NON-INVERTING INPUT +* N3 OUTPUT +* N4 POSITIVE POWER SUPPLY +* N5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS46X N2 N1 N4 N5 N3 +***************************** +CCC N119 N19 16p +CC30 N5 N3 130p +CCIP N2 N5 1p +CCIN N1 N5 1p +CCPS N11 N15 100p +EEIP N10 N5 N2 N5 1 +EEIN N16 N5 N1 N5 1 +RRAN N119 N5 260K +RR28 N19 N23 6 +RRAP N119 N4 260K +RR2N N5 N19 10Meg +RR2P N19 N4 10Meg +RRIP N11 N10 8.12 +RRIS N11 N15 220 +RRIN N15 N16 8.12 +DDOPM N19 N22 MDTH 400p +DDONM N21 N19 MDTH 400p +DDCOPY N504 N505 MDTH 400E-9 +DDINR N15 N18 MDTH 400E-12 +DDOP N19 N25 MDTH 400p +DD39 N506 N504 MDTH 400E-9 +DDON N24 N19 MDTH 400p +DDIN N15 N14 MDTH 400p +DDIP N11 N12 MDTH 400p +DDINN N17 N13 MDTH 400E-12 +VVOFN N13 N14 0 +VVINM N5 N27 60 +VVIPM N28 N4 76 +VVOFP N12 N13 -1m +VVCOPYP N505 0 0 +VVIN N17 N5 900m +VVOUT N3 N23 0 +VVIP N4 N18 1.4 +VVINT2 N503 0 5 +VVINT1 N500 0 5 +VVN N502 0 0 +VVP N501 0 0 +RVVN N501 0 10 +RVVP N502 0 10 +VVCOPYN 0 N506 0 +VVOP N4 N25 1 +VVON N24 N5 1.025 +IIPOL N13 N5 63.6u +FFGM1P N119 N5 VVOFP 1 +FFGM1N N119 N5 VVOFN 1 +FFCOPY N503 N504 VVOUT 1 +FFCP N4 N5 VVOFP 33.8 +FFIBP N2 N5 VVOFP 7.85e-3 +FFIBN N5 N1 VVOFN 7.85e-3 +FFCN N5 N4 VVOFN 33.8 +GG2P N19 N5 N119 N5 1.92e-2 +GGCONVP N500 0 N119 N4 19.38 +GGCONVN N500 0 N119 N5 19.38 +GG2N N19 N5 N119 N4 1.92e-2 +HHONM N21 N27 VVOUT 625 +HHOPN N22 N28 VVOUT 62500 +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +F2PP N19 N5 POLY(2) VVCOPYP VVP 0 0 0 0 0.5 +F2PN N19 N5 POLY(2) VVCOPYP VVN 0 0 0 0 0.5 +.ENDS TS46X + + + + +** CONNECTIONS : +* 2 NON-INVERTING INPUT +* 1 INVERTING INPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* 3 OUTPUT +* +.SUBCKT TS482 2 1 4 5 3 +* +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +* +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 8.125000E+00 +RIN 15 16 8.125000E+00 +RIS 11 15 2.238465E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 153.5u +VOFN 13 14 DC 0 +IPOL 13 5 3.200000E-05 +CPS 11 15 1e-9 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.100000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.400000E+00 +FCP 4 5 VOFP 1.865000E+02 +FCN 5 4 VOFN 1.865000E+02 +FIBP 2 5 VOFP 6.20000E-03 +FIBN 5 1 VOFN 6.20000E-03 +ICC 5 4 3.5m +* GM1 STAGE *************** +FGM1P 119 5 VOFP 1.1 +FGM1N 119 5 VOFN 1.1 +RAP 119 4 2.6E+06 +RAN 119 5 2.6E+06 +* GM2 STAGE *************** +G2P 19 5 119 5 1.92E-02 +G2N 19 5 119 4 1.92E-02 +R2P 19 4 1E+07 +R2N 19 5 1E+07 +************************** +VINT1 500 0 5 +GCONVP 500 501 119 4 19.38 +VP 501 0 0 +GCONVN 500 502 119 5 19.38 +VN 502 0 0 +********* orientation isink isource ******* +VINT2 503 0 5 +FCOPY 503 504 VOUT 1 +DCOPYP 504 505 MDTH 400E-9 +VCOPYP 505 0 0 +DCOPYN 506 504 MDTH 400E-9 +VCOPYN 0 506 0 +*************************** +F2PP 19 5 poly(2) VCOPYP VP 0 0 0 0 0.5 +F2PN 19 5 poly(2) VCOPYP VN 0 0 0 0 0.5 +F2NP 19 5 poly(2) VCOPYN VP 0 0 0 0 1.75 +F2NN 19 5 poly(2) VCOPYN VN 0 0 0 0 1.75 +* COMPENSATION ************ +CC 19 119 30p +* OUTPUT *********** +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 4.0000E+02 +VIPM 28 4 5.000000E+01 +HONM 21 27 VOUT 4.00000E+02 +VINM 5 27 5.000000E+01 +VOUT 3 23 0 +ROUT 23 19 6 +COUT 3 5 1.300000E-10 +DOP 19 25 MDTH 400E-12 +VOP 4 25 0.5 +DON 24 19 MDTH 400E-12 +VON 24 5 0.5 +.ENDS ;TS482 + +**************************************************************************** +**** +**** TS507 Spice macromodel subckt +*** +*** Version 3.1 (April 2015) +**** +*********** CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS507 VP VM VCCP VCCN VS + FIOUT 0 VZOUT VREADIO 1.0 + LOUT_REF VZOUT 0 {Lout} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET235 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADIO NET0370 VS DC 0 + VVLIM_LOW_VB NET233 NET234 DC -770m + VOS NET235 VP DC 0 + VPROT_IN_P_VCCP NET237 NET270 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC -360m + VVLIM_HIGH_VB NET258 NET242 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC -500m + V_OUTVLIM_LOW NET245 NET246 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET247 NET429 DC {V_DPROT} + V_OUTVLIM_HIGH NET276 NET250 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET251 NET252 DC {V_DPROT} + VPROT_IN_M_VCCP NET417 NET260 DC {V_DPROT} + DVLIM_HIGH_VB VB NET258 DIODE_VLIM + DPROT_IN_M_VCCP VM NET260 DIODE_VLIM + DVLIM_LOW_VB NET234 VB DIODE_VLIM + DPROT_IN_M_VCCN NET247 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET246 NET268 DIODE_NOVd + DPROT_IN_P_VCCP NET235 NET270 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET251 NET235 DIODE_VLIM + D_OUTVLIM_HIGH NET373 NET276 DIODE_NOVd + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {Cout2} + COUT NET0309 0 {Cout} + CIN_DIFF VM VP {CIN_DIFF} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CDIFF VO_DIFF_PLUS VO_DIFF_MINUS 32p + CIN_CM_VP VP VREF {CIN_CM_VP} + C_RO2_1 VB_2 VREF 10.3n + CCOMP VB VB_2 {Ccomp} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.830882352941178 ++-0.2887254901960797 0.024509803921568797 + E50 IO_VAL 0 VALUE={I(VreadIo)} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EZOUT_IOUT_COEFF NET0307 0 VALUE={( Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau)) )} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ (-155.57672634242113 + ++79.09207161106947*V(Vccp,Vccn) + 15.984654731486176*PWR(V(Vccp,Vccn),2) ) ++ -5000*I(VreadIo)} + EVLIM_HIGH_VB NET242 0 VCCP 0 1.0 + EVLIM_HIGH_VOUT NET250 0 VCCP 0 1.0 + EVLIM_LOW_VB NET233 0 VCCN 0 1.0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_VOL NET268 VB_3 VALUE={ V(Ro1_Vol)*I(VreadIo)} + E2_REF NET431 0 VCCN 0 1.0 + EZOUT VB_3 NET0370 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VREF VREF 0 NET425 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE(V(VCCP,VCCN), 2.7 , 27 , 3.3 , 22 , 5.0 , 16)} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 68.10997442455245 ++-20.865302642796284 2.088661551577158 + + E_VOH NET373 VB_3 VALUE={ V(Ro1_Voh)*I(VreadIo)} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE(V(VCCP,VCCN), 2.7 , 27 , 3.3 , 23 , 5.0 , 16.5)} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 56.01406649616369 ++-14.08354646206311 1.2361466325660737 + + E1_REF NET381 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ (198.5306905368759 ++-111.63682864437875*V(Vccp,Vccn) -6.393861892600456*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + EVLIM_LOW_VOUT NET245 0 VCCN 0 1.0 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0307 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + ROUT NET0309 VZOUT {Rout} + RIN_DIFF VP VM {RIN_DIFF} + RIN_CM_VM VREF VM {RIN_CM_VM} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET237 VCCP 100 + RPROT_IN_M_VCCP VCCP NET417 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RO2_1 VREF VB_2 {Ro2_1} + R1_REF NET381 NET425 1Meg + R1 VB VREF {R1} + RPROT_IN_M_VCCN VCCN NET429 15K + R2_REF NET425 NET431 1Meg + RPROT_IN_P_VCCN NET252 VCCN 15K + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 5*( 1 - ++exp(-abs(V(Io_val))/10m )) ) } + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+2.7 8n) (+3.3 6n) (+5.0 8n) + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+2.7 8n) (+3.3 6n) (+5.0 8n) + G_IIB_VM VREF VM POLY(1) VCCP VCCN 3.447058823529414E-8 ++-1.5098039215686306E-8 1.9607843137254952E-9 + G_IIB_VP VREF VP POLY(1) VCCP VCCN 3.447058823529414E-8 ++-1.5098039215686306E-8 1.9607843137254952E-9 + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOUCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 6.477204603580559E-4 ++5.890878090366602E-5 -4.262574595055444E-6 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +.PARAM RINCM=6.4777e+7 +.PARAM CINCM=1.4646e-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3412e+5 +.PARAM CINDIFF=9.2768e-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM Ccomp=23.5p +.PARAM IEE=14.3u +.PARAM GB=0.813 +.PARAM A0=1.5e+7 +.PARAM Ro=3.6122e+4 +.PARAM W=11u +.PARAM L=1u +.PARAM gm_mos=0.0002807210724691585 +.PARAM Lout = 6u +.PARAM Rout = 141.25 +.PARAM Cout = 1.2n +.PARAM Cout2 = 5p +.PARAM Zout_Iout_coeff_MIN=0.1 +.PARAM Iout_dc_tau = 3m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 + +.ENDS TS507 + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS512 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=6.565195E-17 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.600000E+01 +RIN 15 16 2.600000E+01 +RIS 11 15 1.061852E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.000000E-05 +CPS 11 15 12.47E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 1.500000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.500000E+00 +FCP 4 5 VOFP 3.400000E+01 +FCN 5 4 VOFN 3.400000E+01 +FIBP 2 5 VOFN 1.000000E-02 +FIBN 5 1 VOFP 1.000000E-02 +* AMPLIFYING STAGE +FIP 5 19 VOFP 9.000000E+02 +FIN 5 19 VOFN 9.000000E+02 +RG1 19 5 1.727221E+06 +RG2 19 4 1.727221E+06 +CC 19 5 6.000000E-09 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.521739E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 6.521739E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 6.485084E-04 +RPM1 5 80 1E+06 +RPM2 4 80 1E+06 +GAVPH 5 82 19 80 2.59E-03 +RAVPHGH 82 4 771 +RAVPHGB 82 5 771 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.331E-09 +CAVPHB 5 84 0.331E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 6.498455E+01 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.742230E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.742230E+00 +.ENDS TS512 + + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS514 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=6.647807E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.300000E+01 +RIN 15 16 1.300000E+01 +RIS 11 15 6.437882E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.000000E-05 +CPS 11 15 9.75E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.500000E+00 +FCP 4 5 VOFP 1.525000E+01 +FCN 5 4 VOFN 1.525000E+01 +FIBP 2 5 VOFN 5.000000E-03 +FIBN 5 1 VOFP 5.000000E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 1.125000E+03 +FIN 5 19 VOFN 1.125000E+03 +RG1 19 5 6.512062E+05 +RG2 19 4 6.512062E+05 +CC 19 29 1.500000E-08 +HZTP 30 29 VOFP 8.944787E+02 +HZTN 5 30 VOFN 8.944787E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.521739E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 6.521739E+03 +VINM 5 27 1.500000E+02 +GCOMP 5 4 4 5 7.485029E-04 +RPM1 5 80 1E+09 +RPM2 4 80 1E+09 +GAVPH 5 82 19 80 2.99E-03 +RAVPHGH 82 4 668 +RAVPHGB 82 5 668 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.352E-09 +CAVPHB 5 84 0.352E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 150 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.785252E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.785252E+00 +.ENDS TS514 + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS52X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=2.286238E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.200000E-11 +CIN 1 5 1.200000E-11 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.363636E+00 +RIN 15 16 2.363636E+00 +RIS 11 15 1.224040E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.100000E-04 +CPS 11 15 2.35E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 1.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.000000E+00 +FCP 4 5 VOFP 1.718182E+01 +FCN 5 4 VOFN 1.718182E+01 +FIBP 2 5 VOFN 4.545455E-03 +FIBN 5 1 VOFP 4.545455E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 9.545455E+02 +FIN 5 19 VOFN 9.545455E+02 +CC 19 29 1.500000E-08 +HZTP 30 29 VOFP 1.523529E+02 +HZTN 5 30 VOFN 1.523529E+02 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 5.172414E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 4.054054E+03 +VINM 5 27 1.500000E+02 +DBIDON1 19 53 MDTH 400E-12 +V1 51 53 0.68 +DBIDON2 54 19 MDTH 400E-12 +V2 54 52 0.68 +RG11 51 5 3.04E+05 +RG12 51 4 3.04E+05 +RG21 52 5 0.6072E+05 +RG22 52 4 0.6072E+05 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +DOP 51 25 MDTH 400E-12 +VOP 4 25 1.474575E+00 +DON 24 52 MDTH 400E-12 +VON 24 5 1.474575E+00 +RAJUS 50 5 1E12 +GCOMP 5 4 4 5 8.1566068E-04 +RPM1 5 80 1E+06 +RPM2 4 80 1E+06 +GAVPH 5 82 50 80 3.26E-03 +RAVPHGH 82 4 613 +RAVPHGB 82 5 613 +RAVPHDH 82 83 1000 +RAVPHDB 82 84 1000 +CAVPHH 4 83 0.159E-09 +CAVPHB 5 84 0.159E-09 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 4.780354E+01 +COUT 3 5 1.000000E-12 +.ENDS TS52X + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TS912 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=6.563355E-14 CJO=10F +* INPUT STAGE +CIP 2 5 1.500000E-12 +CIN 1 5 1.500000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 6.500000E+00 +RIN 15 16 6.500000E+00 +RIS 11 15 7.655100E+00 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 4.000000E-05 +CPS 11 15 3.82E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 -0.5000000E+00 +FCP 4 5 VOFP 7.750000E+00 +FCN 5 4 VOFN 7.750000E+00 +* AMPLIFYING STAGE +FIP 5 19 VOFP 5.500000E+02 +FIN 5 19 VOFN 5.500000E+02 +RG1 19 5 5.087344E+05 +RG2 19 4 5.087344E+05 +CC 19 29 2.200000E-08 +HZTP 30 29 VOFP 12.33E+02 +HZTN 5 30 VOFN 12.33E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3135 +VIPM 28 4 150 +HONM 21 27 VOUT 3135 +VINM 5 27 150 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 65 +COUT 3 5 1.000000E-12 +DOP 19 68 MDTH 400E-12 +VOP 4 25 1.924 +HSCP 68 25 VSCP1 1E8 +DON 69 19 MDTH 400E-12 +VON 24 5 2.4419107 +HSCN 24 69 VSCN1 1.5E8 +VSCTHP 60 61 0.1375 +DSCP1 61 63 MDTH 400E-12 +VSCP1 63 64 0 +ISCP 64 0 1.000000E-8 +DSCP2 0 64 MDTH 400E-12 +DSCN2 0 74 MDTH 400E-12 +ISCN 74 0 1.000000E-8 +VSCN1 73 74 0 +DSCN1 71 73 MDTH 400E-12 +VSCTHN 71 70 -0.75 +ESCP 60 0 2 1 500 +ESCN 70 0 2 1 -2000 +.ENDS TS912 + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS914 2 1 4 5 3 +************************************************* +.MODEL MDTH D IS=1E-8 KF=6.564344E-14 CJO=10F +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 6.500000E+00 +RIN 15 16 6.500000E+00 +RIS 11 15 7.322092E+00 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 4.000000E-05 +CPS 11 15 2.498970E-08 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.000000E+00 +FCP 4 5 VOFP 5.750000E+00 +FCN 5 4 VOFN 5.750000E+00 +* AMPLIFYING STAGE +FIP 5 19 VOFP 4.400000E+02 +FIN 5 19 VOFN 4.400000E+02 +RG1 19 5 4.904961E+05 +RG2 19 4 4.904961E+05 +CC 19 29 2.200000E-08 +HZTP 30 29 VOFP 1.8E+03 +HZTN 5 30 VOFN 1.8E+03 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3800 +VIPM 28 4 230 +HONM 21 27 VOUT 3800 +VINM 5 27 230 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 82 +COUT 3 5 1.000000E-12 +DOP 19 68 MDTH 400E-12 +VOP 4 25 1.724 +HSCP 68 25 VSCP1 0.8E+8 +DON 69 19 MDTH 400E-12 +VON 24 5 1.7419107 +HSCN 24 69 VSCN1 0.8E+8 +VSCTHP 60 61 0.0875 +DSCP1 61 63 MDTH 400E-12 +VSCP1 63 64 0 +ISCP 64 0 1.000000E-8 +DSCP2 0 64 MDTH 400E-12 +DSCN2 0 74 MDTH 400E-12 +ISCN 74 0 1.000000E-8 +VSCN1 73 74 0 +DSCN1 71 73 MDTH 400E-12 +VSCTHN 71 70 -0.55 +ESCP 60 0 2 1 500 +ESCN 70 0 2 1 -2000 +.ENDS TS914 + + +** Standard Linear Ics Macromodels, 1996. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS92X 2 1 4 5 3 +* +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +* +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 8.125000E+00 +RIN 15 16 8.125000E+00 +RIS 11 15 2.238465E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 153.5u +VOFN 13 14 DC 0 +IPOL 13 5 3.200000E-05 +CPS 11 15 1e-9 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.100000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.400000E+00 +FCP 4 5 VOFP 1.865000E+02 +FCN 5 4 VOFN 1.865000E+02 +FIBP 2 5 VOFP 6.250000E-03 +FIBN 5 1 VOFN 6.250000E-03 +* GM1 STAGE *************** +FGM1P 119 5 VOFP 1.1 +FGM1N 119 5 VOFN 1.1 +RAP 119 4 2.6E+06 +RAN 119 5 2.6E+06 +* GM2 STAGE *************** +G2P 19 5 119 5 1.92E-02 +G2N 19 5 119 4 1.92E-02 +R2P 19 4 1E+07 +R2N 19 5 1E+07 +************************** +VINT1 500 0 5 +GCONVP 500 501 119 4 19.38 +VP 501 0 0 +GCONVN 500 502 119 5 19.38 +VN 502 0 0 +********* orientation isink isource ******* +VINT2 503 0 5 +FCOPY 503 504 VOUT 1 +DCOPYP 504 505 MDTH 400E-9 +VCOPYP 505 0 0 +DCOPYN 506 504 MDTH 400E-9 +VCOPYN 0 506 0 +*************************** +F2PP 19 5 poly(2) VCOPYP VP 0 0 0 0 0.5 +F2PN 19 5 poly(2) VCOPYP VN 0 0 0 0 0.5 +F2NP 19 5 poly(2) VCOPYN VP 0 0 0 0 1.75 +F2NN 19 5 poly(2) VCOPYN VN 0 0 0 0 1.75 +* COMPENSATION ************ +CC 19 119 25p +* OUTPUT *********** +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.250000E+02 +VIPM 28 4 5.000000E+01 +HONM 21 27 VOUT 6.250000E+02 +VINM 5 27 5.000000E+01 +VOUT 3 23 0 +ROUT 23 19 6 +COUT 3 5 1.300000E-10 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.052 +DON 24 19 MDTH 400E-12 +VON 24 5 1.052 +.ENDS TS92X + + +** Standard Linear Ics Macromodels +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS93X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=2.626433E-33 CJO=10F +.MODEL NDTH D IS=1E-12 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.600000E+01 +RIN 15 16 2.600000E+01 +RIS 11 15 1.433696E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 1.000000E-05 +CPS 11 15 7.404465E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 2.1 +FCP 4 5 VOFP 2 +FCN 5 4 VOFN 2 +* AMPLIFYING STAGE +FIP 5 19 VOFP 7.000000E+00 +FIN 5 19 VOFN 7.000000E+00 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 72500 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 33333 +VINM 5 27 1.500000E+02 +CC 19 29 1.10000E-09 +HZTP 30 29 VOFP 8.414314E+02 +HZTN 5 30 VOFN 8.414314E+02 +DPOS 19 53 NDTH 400E-12 +VPOS 51 53 0.75 +DNEG 54 19 NDTH 400E-12 +VNEG 54 52 0.75 +RG11 51 5 8.29E+08 +RG12 51 4 8.29E+08 +RG21 52 5 1.43E+07 +RG22 52 4 1.43E+07 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +RFOL 50 5 1E12 +EOUT 26 23 50 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 7.822301E-01 +DON 24 19 MDTH 400E-12 +VON 24 5 6.722301E-01 +.ENDS TS93X + + +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS94X 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=2.626433E-33 CJO=10F +.MODEL NDTH D IS=1E-12 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 2.600000E+01 +RIN 15 16 2.600000E+01 +RIS 11 15 1.433696E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 1.000000E-05 +CPS 11 15 7.404465E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.5000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 2.1 +FCP 4 5 VOFP 0.1 +FCN 5 4 VOFN 0.1 +* AMPLIFYING STAGE +FIP 5 19 VOFP 7.000000E+00 +FIN 5 19 VOFN 7.000000E+00 +DOPM 51 22 MDTH 400E-12 +DONM 21 52 MDTH 400E-12 +HOPM 22 28 VOUT 72500 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 33333 +VINM 5 27 1.500000E+02 +CC 19 29 11.900000E-09 +HZTP 30 29 VOFP 8.414314E+02 +HZTN 5 30 VOFN 8.414314E+02 +DPOS 19 53 NDTH 400E-12 +VPOS 51 53 0.75 +DNEG 54 19 NDTH 400E-12 +VNEG 54 52 0.75 +RG11 51 5 8.29E+08 +RG12 51 4 8.29E+08 +RG21 52 5 1.43E+07 +RG22 52 4 1.43E+07 +E1 50 40 51 0 1 +E2 40 39 52 0 1 +EDEC1 38 39 4 0 0.5 +EDEC2 0 38 5 0 0.5 +RFOL 50 5 1E12 +EOUT 26 23 50 5 1 +VOUT 23 5 0 +ROUT 26 3 100 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 7.822301E-01 +DON 24 19 MDTH 400E-12 +VON 24 5 6.722301E-01 +.ENDS TS94X + + + +** Standard Linear Ics Macromodels, 1996. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS95X 2 1 4 5 3 +* +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +* +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 8.125000E+00 +RIN 15 16 8.125000E+00 +RIS 11 15 2.238465E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 153.5u +VOFN 13 14 DC 0 +IPOL 13 5 3.200000E-05 +CPS 11 15 1e-9 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.100000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.400000E+00 +FCP 4 5 VOFP 1.865000E+02 +FCN 5 4 VOFN 1.865000E+02 +FIBP 2 5 VOFP 6.250000E-03 +FIBN 5 1 VOFN 6.250000E-03 +* GM1 STAGE *************** +FGM1P 119 5 VOFP 1.1 +FGM1N 119 5 VOFN 1.1 +RAP 119 4 2.6E+06 +RAN 119 5 2.6E+06 +* GM2 STAGE *************** +G2P 19 5 119 5 1.92E-02 +G2N 19 5 119 4 1.92E-02 +R2P 19 4 1E+07 +R2N 19 5 1E+07 +************************** +VINT1 500 0 5 +GCONVP 500 501 119 4 19.38 +VP 501 0 0 +GCONVN 500 502 119 5 19.38 +VN 502 0 0 +********* orientation isink isource ******* +VINT2 503 0 5 +FCOPY 503 504 VOUT 1 +DCOPYP 504 505 MDTH 400E-9 +VCOPYP 505 0 0 +DCOPYN 506 504 MDTH 400E-9 +VCOPYN 0 506 0 +*************************** +F2PP 19 5 poly(2) VCOPYP VP 0 0 0 0 0.5 +F2PN 19 5 poly(2) VCOPYP VN 0 0 0 0 0.5 +F2NP 19 5 poly(2) VCOPYN VP 0 0 0 0 1.75 +F2NN 19 5 poly(2) VCOPYN VN 0 0 0 0 1.75 +* COMPENSATION ************ +CC 19 119 25p +* OUTPUT *********** +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 6.250000E+02 +VIPM 28 4 5.000000E+01 +HONM 21 27 VOUT 6.250000E+02 +VINM 5 27 5.000000E+01 +VOUT 3 23 0 +ROUT 23 19 6 +COUT 3 5 1.300000E-10 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.052 +DON 24 19 MDTH 400E-12 +VON 24 5 1.052 +.ENDS TS95X + + + + +** Standard Linear Ics Macromodels, 1999. +** CONNECTIONS : +* N1 INVERTING INPUT +* N2 NON-INVERTING INPUT +* N3 OUTPUT +* N4 POSITIVE POWER SUPPLY +* N5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS97X N2 N1 N4 N5 N3 +***************************** +CCC N119 N19 16p +CC30 N5 N3 130p +CCIP N2 N5 1p +CCIN N1 N5 1p +CCPS N11 N15 100p +EEIP N10 N5 N2 N5 1 +EEIN N16 N5 N1 N5 1 +RRAN N119 N5 260K +RR28 N19 N23 6 +RRAP N119 N4 260K +RR2N N5 N19 10Meg +RR2P N19 N4 10Meg +RRIP N11 N10 8.12 +RRIS N11 N15 220 +RRIN N15 N16 8.12 +DDOPM N19 N22 MDTH 400p +DDONM N21 N19 MDTH 400p +DDCOPY N504 N505 MDTH 400E-9 +DDINR N15 N18 MDTH 400E-12 +DDOP N19 N25 MDTH 400p +DD39 N506 N504 MDTH 400E-9 +DDON N24 N19 MDTH 400p +DDIN N15 N14 MDTH 400p +DDIP N11 N12 MDTH 400p +DDINN N17 N13 MDTH 400E-12 +VVOFN N13 N14 0 +VVINM N5 N27 60 +VVIPM N28 N4 76 +VVOFP N12 N13 -1m +VVCOPYP N505 0 0 +VVIN N17 N5 900m +VVOUT N3 N23 0 +VVIP N4 N18 1.4 +VVINT2 N503 0 5 +VVINT1 N500 0 5 +VVN N502 0 0 +VVP N501 0 0 +RVVN N501 0 10 +RVVP N502 0 10 +VVCOPYN 0 N506 0 +VVOP N4 N25 1 +VVON N24 N5 1.025 +IIPOL N13 N5 63.6u +FFGM1P N119 N5 VVOFP 1 +FFGM1N N119 N5 VVOFN 1 +FFCOPY N503 N504 VVOUT 1 +FFCP N4 N5 VVOFP 33.8 +FFIBP N2 N5 VVOFP 7.85e-3 +FFIBN N5 N1 VVOFN 7.85e-3 +FFCN N5 N4 VVOFN 33.8 +GG2P N19 N5 N119 N5 1.92e-2 +GGCONVP N500 0 N119 N4 19.38 +GGCONVN N500 0 N119 N5 19.38 +GG2N N19 N5 N119 N4 1.92e-2 +HHONM N21 N27 VVOUT 625 +HHOPN N22 N28 VVOUT 62500 +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +F2PP N19 N5 POLY(2) VVCOPYP VVP 0 0 0 0 0.5 +F2PN N19 N5 POLY(2) VVCOPYP VVN 0 0 0 0 0.5 +.ENDS TS97X + + +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +* +.SUBCKT TS982 2 1 4 5 3 +* +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +* +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 8.125000E+00 +RIN 15 16 8.125000E+00 +RIS 11 15 2.238465E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 153.5u +VOFN 13 14 DC 0 +IPOL 13 5 3.200000E-05 +CPS 11 15 1e-9 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.100000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.400000E+00 +FCP 4 5 VOFP 1.865000E+02 +FCN 5 4 VOFN 1.865000E+02 +FIBP 2 5 VOFP 6.20000E-03 +FIBN 5 1 VOFN 6.20000E-03 +ICC 5 4 3.5m +* GM1 STAGE *************** +FGM1P 119 5 VOFP 1.1 +FGM1N 119 5 VOFN 1.1 +RAP 119 4 2.6E+06 +RAN 119 5 2.6E+06 +* GM2 STAGE *************** +G2P 19 5 119 5 1.92E-02 +G2N 19 5 119 4 1.92E-02 +R2P 19 4 1E+07 +R2N 19 5 1E+07 +************************** +VINT1 500 0 5 +GCONVP 500 501 119 4 19.38 +VP 501 0 0 +GCONVN 500 502 119 5 19.38 +VN 502 0 0 +********* orientation isink isource ******* +VINT2 503 0 5 +FCOPY 503 504 VOUT 1 +DCOPYP 504 505 MDTH 400E-9 +VCOPYP 505 0 0 +DCOPYN 506 504 MDTH 400E-9 +VCOPYN 0 506 0 +*************************** +F2PP 19 5 poly(2) VCOPYP VP 0 0 0 0 0.5 +F2PN 19 5 poly(2) VCOPYP VN 0 0 0 0 0.5 +F2NP 19 5 poly(2) VCOPYN VP 0 0 0 0 1.75 +F2NN 19 5 poly(2) VCOPYN VN 0 0 0 0 1.75 +* COMPENSATION ************ +CC 19 119 30p +* OUTPUT *********** +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 4.0000E+02 +VIPM 28 4 5.000000E+01 +HONM 21 27 VOUT 4.00000E+02 +VINM 5 27 5.000000E+01 +VOUT 3 23 0 +ROUT 23 19 6 +COUT 3 5 1.300000E-10 +DOP 19 25 MDTH 400E-12 +VOP 4 25 0.5 +DON 24 19 MDTH 400E-12 +VON 24 5 0.5 +.ENDS TS982 + + +**************************************************************************** +**** +*** TSB57X Spice macromodel subckt +*** +*** January 2017 (Version 2.0) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSB57X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VOS NET0283 NET0319 DC 0 + VD_DN1 NET0247 0 DC 100.0m + VD_DN2 NET0249 0 DC 100.0m + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0218 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + DN1 NET0247 VN_PLUS DN + DN2 NET0249 VN_MINUS DN + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 70p + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 17p + CCOMP VB VB_2 {CCOMP} + EN NET0319 VP VN_PLUS VN_MINUS 1.0 + E60 NET0242 0 VALUE={V(Vref) - V(alpha_desat_time)*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + V(alpha_desat_time)*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 5.06875 ++-0.20208333333333325 0.0024739583333333293 + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0218 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.81606924733806 + 0.018448017278224562*V(Vccp,Vccn) + ++(-6.313431286328965E-4)*V(Vccp,Vccn)*V(Vccp,Vccn) + ++(7.2518884621099345E-6)*V(Vccp,Vccn)*V(Vccp,Vccn)*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 3.50625E-4 ++2.2916666666666607E-6 1.3020833333333477E-8 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 95.09903846153848 ++-10.640715811965837 0.5458275462962989 -0.012445913461538552 ++1.059472934472944E-4 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 9.163125E-4 1.44375E-5 ++-6.640625E-8 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 120.82487549671876 ++-7.037129774263023 0.2186748110492533 -0.0023008930083466064 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( 153.875 + ++1.25*V(Vccp,Vccn) + 0.0390625*PWR(V(Vccp,Vccn),2) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 3.0*( 1 - ++exp(-abs(V(v_Io_val))/2m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={8n} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSB57X subckt: +* +.PARAM VCC_MIN=3 +.PARAM RINCM=8.0504E+09 +.PARAM CINCM=9.4465E-13 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=4.8971E+06 +.PARAM CINDIFF=1.6232E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=11.48m +.PARAM Ro = 4.7819E+05 +.PARAM A0_source = 5e6 +.PARAM A0_sink = 5e6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=11p +.PARAM IEE=10u +.PARAM W=6.1u +.PARAM L=1u +.PARAM gm_mos=1.7480E-04 +.PARAM Lout = 1.4u +.PARAM Rout = 1000 +.PARAM Cout = 0.01n +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 0.1 +.PARAM Iout_dc_tau__source = 0.1m +.PARAM Iout_dc_tau__sink = 0.1m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM RN=0.83e+04 +.MODEL DN D AF=1 KF=3.1e-11 + + +.MODEL R_NO_NOISE RES T_ABS=-273 +.MODEL R_NOISE RES T_ABS=+27 +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 T_ABS=+27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSB57X +*** End of subcircuit definition. +**************************************************************************** +* +* WARNING : please consider following remarks before usage +* +* 1) All models are a tradeoff between accuracy and complexity (ie. simulation +* time). +* +* 2) Macromodels are not a substitute to breadboarding, they rather confirm the +* validity of a design approach and help to select surrounding component values. +* +* 3) A macromodel emulates the NOMINAL performance of a TYPICAL device within +* SPECIFIED OPERATING CONDITIONS (ie. temperature, supply voltage, etc.). +* Thus the macromodel is often not as exhaustive as the datasheet, its goal +* is to illustrate the main parameters of the product. +* +* 4) Data issued from macromodels used outside of its specified conditions +* (Vcc, Temperature, etc) or even worse: outside of the device operating +* conditions (Vcc, Vicm, etc) are not reliable in any way. +* +**************************************************************************** +**** +*** TSB61X Spice macromodel subckt +*** +*** July 2015 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSB61X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VD_DN2 NET0266 0 DC 100.0m + VD_DN1 NET0264 0 DC 100.0m + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 NET0255 DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0220 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + DN2 NET0266 VN_MINUS DN + DN1 NET0264 VN_PLUS DN + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 30p + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 65p + CCOMP VB VB_2 {CCOMP} + EN NET0255 VP VN_PLUS VN_MINUS 1.0 + E60 NET0242 0 VALUE={V(Vref) - V(alpha_desat_time)*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + V(alpha_desat_time)*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0220 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.839716652136 + 0.006559260873777*V(Vccp,Vccn) + ++(-5.852626820368745E-5)*V(Vccp,Vccn)*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 4.235513875784879E-4 ++-3.5212826941669324E-7 7.086794584448001E-8 -6.422301618447638E-9 ++1.7201507762271853E-10 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 140.90155604866845 ++-6.219465969756957 0.12417904849077162 -6.700057020016115E-4 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 91.83396244138251 ++-3.9327188382931326 0.10964069439536264 -0.0010451663701980384 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E66 VOH_NORL 0 VALUE={2m} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( 121.88448125544897 + ++6.5406131938389995*V(Vccp,Vccn) -0.006054441538312483*PWR(V(Vccp,Vccn),2) ++) -5000*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 100*( 1 - ++exp(-abs(V(v_Io_val))/30m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={5n} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 8.026852659110722E-5 ++6.646081565436386E-7 -8.637669927992474E-9 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={5n} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSB611 subckt: +* +.PARAM VCC_MIN=1.5 +.PARAM RINCM=1.7748E+10 +.PARAM CINCM=7.6847E-13 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=1.0350E+07 +.PARAM CINDIFF=9.2448E-13 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=4m +.PARAM Ro = 3.0575E+06 +.PARAM A0_source = 75.5e6 +.PARAM A0_sink = 75.5e6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=55p +.PARAM IEE=10u +.PARAM W=7.9u +.PARAM L=1u +.PARAM gm_mos=1.9895E-04 +.PARAM Lout = 5u +.PARAM Rout = 1000 +.PARAM Cout = 0.1n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.1m +.PARAM Iout_dc_tau__sink = 0.1m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM RN=2.2e+04 + +.MODEL DN D AF=1 KF=3.5e-11 +.MODEL R_NO_NOISE RES T_ABS=-273 +.MODEL R_NOISE RES T_ABS=+27 +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 T_ABS=+27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSB61X +*** End of subcircuit definition. + + +** Standard Linear Ics Macromodels, 1993. +** CONNECTIONS : +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT TSH2X 2 1 4 5 3 +********************************************************* +.MODEL MDTH D IS=1E-8 KF=7.976636E-15 CJO=10F +* INPUT STAGE +CIP 2 5 1.200000E-11 +CIN 1 5 1.200000E-11 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.083333E+00 +RIN 15 16 1.083333E+00 +RIS 11 15 8.942641E+00 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 2.400000E-04 +CPS 11 15 10.5E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 -0.200000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.800000E+00 +FCP 4 5 VOFP 7.750000E+00 +FCN 5 4 VOFN 7.750000E+00 +FIBP 2 5 VOFN 5.000000E-04 +FIBN 5 1 VOFP 5.000000E-04 +* AMPLIFYING STAGE +FIP 5 19 VOFP 6.708333E+02 +FIN 5 19 VOFN 6.708333E+02 +GVNEG 5 19 5 13 1.395908E-05 +GVPOS 5 19 4 13 1.395908E-05 +RG1 19 5 8.056996E+04 +RG2 19 4 8.056996E+04 +CC 19 29 1.100000E-08 +HZTP 30 29 VOFP 6.545046E+01 +HZTN 5 30 VOFN 6.545046E+01 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 4.054054E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 4.054054E+03 +VINM 5 27 1.500000E+02 +RPM1 5 80 1E+06 +RPM2 4 80 1E+06 +GAVPH 5 82 19 80 6.00E-07 +RAVPHGH 82 4 3333222 +RAVPHGB 82 5 3333222 +RAVPHDH 82 83 1000000 +RAVPHDB 82 84 1000000 +CAVPHH 4 83 0.12243E-12 +CAVPHB 5 84 0.12243E-12 +EOUT 26 23 82 5 1 +VOUT 23 5 0 +ROUT 26 3 2.472597E+01 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.824860E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.824860E+00 +.ENDS TSH2X + + +**************************************************************************** +* +* WARNING : please consider following remarks before usage +* +* 1) All models are a tradeoff between accuracy and complexity (ie. simulation +* time). +* +* 2) Macromodels are not a substitute to breadboarding, they rather confirm the +* validity of a design approach and help to select surrounding component values. +* +* 3) A macromodel emulates the NOMINAL performance of a TYPICAL device within +* SPECIFIED OPERATING CONDITIONS (ie. temperature, supply voltage, etc.). +* Thus the macromodel is often not as exhaustive as the datasheet, its goal +* is to illustrate the main parameters of the product. +* +* 4) Data issued from macromodels used outside of its specified conditions +* (Vcc, Temperature, etc) or even worse: outside of the device operating +* conditions (Vcc, Vicm, etc) are not reliable in any way. +* +**************************************************************************** +**** +*** TSH300 Spice macromodel subckt +*** +*** May 2012 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSH300 VP VM VCCP VCCN VS + IEE VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0262 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + V_OUTVLIM_LOW NET0204 NET0196 DC {Vd_compensazione} + V_OUTVLIM_HIGH NET0234 NET0211 DC {Vd_compensazione} + VREADIO NET0375 VS DC 0 + VVLIM_LOW_VB NET192 NET0201 DC -770m + VVLIM_HIGH_VB NET0223 NET203 DC -770m + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + D_OUTVLIM_HIGH NET0260 NET0234 DIODE_NOVd + DVLIM_HIGH_VB VB NET0223 DIODE_VLIM + D_OUTVLIM_LOW NET0196 NET0228 DIODE_NOVd + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET0201 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + DPROT_IN_P_VCCP NET0262 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET0262 DIODE_VLIM + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} +* CDIFF_PARASITIC VO_DIFF_PLUS NET0249 80.0f + CCOMP VB VB_2 {Ccomp} + E_VOS_IN NET0262 VP VALUE={-500u} + E_VOHNORL NET0260 VB_2 VALUE={0.79} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ -384.5 -5000*I(VreadIo)} + E50 NET0211 0 VCCP 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E51 NET0204 0 VCCN 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + E_VOLNORL VB_2 NET0228 VALUE={0.79} + EVOUT NET0197 VREF VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 VALUE={ ++IF(V(val_vdep_source)>=0, 0, V(val_vdep_source)) } + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ 409.5 -5000*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICC VCCP VCCN VALUE={15m-IEE} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high) , 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSH300 subckt: +* +.PARAM VCC_MIN=1.0 +.PARAM RINCM=3.6905E+05 +.PARAM CINCM=1.8133E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=1.9031E+03 +.PARAM CINDIFF=4.7125E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=-700m +.PARAM VCCN_enhance=+500m +.PARAM A0 = 2641.7 +.PARAM Ro = 18 +.PARAM Ccomp=2.1p +.PARAM IEE=1m +.PARAM W=6.5u +.PARAM L=1u +.PARAM gm_mos= 1.8044E-02 +.PARAM GB=10m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1=1e5 +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM RPROT_VCCP=100 +.PARAM RPROT_VCCN=15k +.PARAM Vd_compensazione= -62e-3 +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-4 +.MODEL DIODE_NOVd D LEVEL=1 IS=0.8E-15 N=0.1 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSH300 +*** End of subcircuit definition. + + + + +**CONNECTIONS: +*2 NON INVERTING INPUT +*1 INVERTING INPUT +*4 POSITIVE POWER SUPPLY +*5 NEGATIVE POWER SUPPLY +*3 OUTPUT +.SUBCKT TSH70 2 1 4 5 3 +****************************************************************** +.MODEL MDTH D IS=1E-8 KF=2.664234E-16 CJO=10F +*INPUT STAGE +CIP 2 5 0.2E-12 +CIN 1 5 0.2E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 7 +RIN 15 16 7 +RIS 11 15 400 +DIP 11 120 MDTH 400E-12 +DIN 15 140 MDTH 400E-12 +VOFP 12 13 DC 100e-3 +VOFN 13 14 DC 0 +RDGP 120 12 312 +RDGN 140 14 312 +CDG 120 140 2P +IPOL 13 5 780e-6 +CPS 11 15 0.3E-9 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.25 +DINR 15 18 MDTH 400E-12 +VIP 4 18 2 +FCP 4 5 VOFP 9 +FCN 5 4 VOFN 9 +FIBP 2 5 VOFP 15e-3 +FIBN 5 1 VOFN 15e-3 +**GM1 STAGE ****************************** +FGM1P 119 5 VOFP 1 +FG1N 119 5 VOFN 0.5 +RAP 119 4 4.93E5 +RAN 119 5 5E5 +**GM2 STAGE ****************************** +G2P 19 5 119 5 161E-3 +G2N 19 5 119 4 161E-3 +R2P 19 4 2.5E7 +R2N 19 5 2.5E7 +****************************************** +VINT1 500 0 3 +GCONVP 500 501 119 4 19.38 +VP 501 0 0 +GCONVN 500 502 119 5 19.38 +VN 502 0 0 +***************************************** +** ORIENTATION ISINK ISOURCE +VINT2 503 0 3 +FCOPY 503 504 VOUT 1 +DCOPYP 504 505 MDTH 400E-9 +VCOPYP 505 0 0 +DCOPYN 506 504 MDTH 400E-9 +VCOPYN 0 506 0 +****************************************** +F2PP 19 5 POLY(2) VCOPYP VP 0 0 0 0 0.5 +F2PN 19 5 POLY(2) VCOPYP VN 0 0 0 0 0.5 +F2NP 19 5 POLY(2) VCOPYN VP 0 0 0 0 1.75 +F2NN 19 5 POLY(2) VCOPYN VN 0 0 0 0 1.75 +***COMPENSATION************************** +CC 19 119 4.5P +****************************************** +****OUTPUT******************************** +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 9.36E+03 +VIPM 28 4 500 +HONM 21 27 VOUT 9.90E+03 +VINM 5 27 500 +VOUT 3 23 0 +ROUT 23 19 10 +COUT 3 5 15E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.35 +DON 24 19 MDTH 400E-12 +VON 24 5 1.2 +.ENDS TSH70 + + +* +*********************************************************************************** + +**** +*** TSU10X Spice macromodel subckt +*** +*** January 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSU10X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 VP DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0333 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET0269 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 5.5n + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 1.6n + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.4452232443133237 ++-0.7284517798598779 0.09458182903955471 0.0033110316198540933 ++-9.302224375753015E-4 + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0333 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6419117647058812 + 0.20948529411764844*V(Vccp,Vccn) ++-0.04187091503268018*PWR(V(Vccp,Vccn),2) + ++0.00285947712418305*PWR(V(Vccp,Vccn),3) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 138.93382352941174 ++-46.45833333333335 4.5343137254901995 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 138.93382352941174 ++-46.45833333333335 4.5343137254901995 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -86.58455882352956 + ++97.40604575163408*V(Vccp,Vccn) -23.199210239651446*PWR(V(Vccp,Vccn),2) + ++1.8722766884531628*PWR(V(Vccp,Vccn),3) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET0269 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo) - ++V(VOH_noRL)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 150*( 1 - ++exp(-abs(V(v_Io_val))/1m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 4.97610294117647E-7 ++9.04166666666661E-9 1.88725490196079E-9 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSU10X subckt: +* +.PARAM VCC_MIN=1.5 +.PARAM RINCM=6.2904E+13 +.PARAM CINCM=1.7912E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=1.0594E+14 +.PARAM CINDIFF=1.0636E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=1.58m +.PARAM Ro = 44668360 +.PARAM A0_source = 3e+8 +.PARAM A0_sink = 3e+8 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=20p +.PARAM IEE=60n +.PARAM W=0.043u +.PARAM L=1u +.PARAM gm_mos=1.1369E-06 +.PARAM Lout = 800000u +.PARAM Rout = 55000 +.PARAM Cout = 3n +.PARAM Cout2 = 1p +.PARAM Zout_Iout_coeff_MIN= 0.8 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.018 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSU10X +*** End of subcircuit definition. + +**************************************************************************** +**** +*** TSU111 Spice macromodel subckt +*** +*** February 2017 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSU11X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VD_DN1 NET0247 0 DC 100.0m + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 NET0319 DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0347 VS DC 0 + VD_DN2 NET0249 0 DC 100.0m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DN2 NET0249 VN_MINUS DN + DN1 NET0247 VN_PLUS DN + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 50p + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 10p + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - V(alpha_desat_time)*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + V(alpha_desat_time)*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.2658088235294107 ++-0.04458333333333293 -0.0017156862745098572 + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0347 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.9014705882352939 + 0.005*V(Vccp,Vccn) + ++0.002941176470588252*V(Vccp,Vccn)*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 212.9533485691581 ++-96.73115244255024 16.80642072553862 -0.9756648359589774 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EN NET0319 VP VN_PLUS VN_MINUS 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 229.97366852146342 ++-86.90353555427167 12.559437780026279 -0.5555354820060953 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -25.55514705882354 + ++13.229166666666698*V(Vccp,Vccn) + 6.556372549019601*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 7.937347689075635E-7 ++6.857097338935517E-8 -2.7548319327730896E-8 3.616946778711464E-9 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSU111 subckt: +* +.PARAM VCC_MIN=1.5 +.PARAM RINCM=2.5297E+11 +.PARAM CINCM=4.6890E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=4.6523E+10 +.PARAM CINDIFF=2.5185E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3.126e-5 +.PARAM Ro = 100E+06 +.PARAM A0_source = 10e+8 +.PARAM A0_sink = 10e+8 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=18p +.PARAM IEE=50n +.PARAM W=0.072u +.PARAM L=1u +.PARAM gm_mos=1.3435E-06 +.PARAM Lout = 6000000u +.PARAM Rout = 80000 +.PARAM Cout = 6n +.PARAM Cout2 = 0.4p +.PARAM Zout_Iout_coeff_MIN= 0.01 +.PARAM Iout_dc_tau__source = 0.01m +.PARAM Iout_dc_tau__sink = 0.01m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM RN=0.556e+06 +.MODEL DN D AF=1 KF=0 + + +.MODEL R_NO_NOISE RES T_ABS=-273 +.MODEL R_NOISE RES T_ABS=+27 +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 T_ABS=+27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSU11X +*** End of subcircuit definition. + + + + + + +**************************************************************************** +**** +*** TSV3XX Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV3XX VP VM VCCP VCCN VS + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0262 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + V_OUTVLIM_LOW NET0204 NET0196 DC {Vd_compensazione} + V_OUTVLIM_HIGH NET0234 NET0211 DC {Vd_compensazione} + VREADIO NET0191 VS DC 0 + VVLIM_LOW_VB NET192 NET193 DC {Vd_compensazione} + VOS NET0262 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VVLIM_HIGH_VB NET217 NET203 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + D_OUTVLIM_HIGH NET0279 NET0234 DIODE_NOVd + D_OUTVLIM_LOW NET0196 NET0238 DIODE_NOVd + DVLIM_HIGH_VB VB NET217 DIODE_NOVd + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_NOVd + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + DPROT_IN_P_VCCP NET0262 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET0262 DIODE_VLIM + C_RO2_1 VB_2 VREF 140p + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 12p + CCOMP VB VB_2 {Ccomp} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={IF( V(Vccp,Vccn)<=3.0 , ( ++-212 -62.5*V(Vccp,Vccn) ) -5000*I(VreadIo) , ( -399.5 ) ++-5000*I(VreadIo) )} + E_RO1 VB_3 NET0191 VALUE={IF(I(VreadIo)>0, ++V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + +*Eldo: +* E_VOHNORL NET0279 VB_3 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 26m ) ( +*+5.0 , 37m ) +* E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 1.8 , 20 ) ( 3.0 , 18 ) ( 5.0 , +*+12 ) +* E_VOLNORL VB_3 NET0238 PWL(1) VCCP VCCN ( 1.8 , 24m ) ( 3.0 , 32m ) ( +*+5.0 , 42m ) +* E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 1.8 , 15 ) ( 3.0 , 11 ) ( 5.0 , +*+7 ) +*PSpice: +* E_VOHNORL NET0279 VB_3 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 26m , +*+5.0 , 37m )} +* E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 20 , 3.0 , 18 , 5.0 , +*+12 )} +* E_VOLNORL VB_3 NET0238 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 24m , 3.0 , 32m , +*+5.0 , 42m )} +* E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 15 , 3.0 , 11 , 5.0 , +*+7 )} + E_VOHNORL NET0279 VB_3 POLY(1) VCCP VCCN 0.02746875 ++-0.00408333333333334 0.0011979166666666674 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 20.75 0.3333333333333298 ++-0.41666666666666624 + E_VOLNORL VB_3 NET0238 POLY(1) VCCP VCCN 0.0091875 ++0.009166666666666663 -5.208333333333329E-4 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 23.25 -5.333333333333335 ++0.41666666666666685 + + E50 NET0211 0 VCCP 0 1.0 + E64 IO_VAL 0 VALUE={I(VreadIo)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN -8.65625E-5 ++2.533333333333334E-4 -2.7604166666666666E-5 + E51 NET0204 0 VCCN 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 VALUE={ ++IF(V(val_vdep_source)>=0, 0, V(val_vdep_source)) } + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)<=3.0 , ( +++212 +62.5*V(Vccp,Vccn) ) -5000*I(VreadIo) , ( +399.5 ) ++-5000*I(VreadIo) )} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 VALUE={ ++IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 2.93875E-4 6.666666666666659E-5 ++-5.208333333333321E-6 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( 0.796875 +++ 0.06666666666666655*V(Vccp,Vccn) -0.005208333333333318*PWR(V(Vccp,Vccn),2) ++)} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1 VB VREF {R1} + RIN_CM_VP VREF VP {RIN_CM_VP} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RIN_DIFF VP VM {RIN_DIFF} + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP {RPROT_VCCP} + RPROT_IN_M_VCCP VCCP NET348 {RPROT_VCCP} + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 {RPROT_VCCN} + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN {RPROT_VCCN} + +*Eldo: +* G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 40n) (+3.0 40n) (+5.0 +*+70n) +* G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 40n) (+3.0 40n) (+5.0 +*+70n) +*PSpice: +* G_IIB_VP VREF VP VALUE={TABLE(V(Vccp,Vccn), +1.8 , 40n , +3.0 , 40n , +5.0 , +*+70n)} +* G_IIB_VM VREF VM VALUE={TABLE(V(Vccp,Vccn), +1.8 , 40n , +3.0 , 40n , +5.0 , +*+70n)} + G_IIB_VP VREF VP POLY(1) VCCP VCCN 2.78125E-8 5.833333333333326E-9 ++5.208333333333348E-10 + G_IIB_VM VREF VM POLY(1) VCCP VCCN 2.78125E-8 5.833333333333326E-9 ++5.208333333333348E-10 + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + +*Eldo: +* G_I_VB VB_2 VREF TABLE {V(VB,Vref)} = (-2.7 {-2.7*GB*5}) (-2.0 +*+{-2.0*GB*4}) (-1.5 {-1.5*GB*3}) (-0.85 {-0.85*GB*2}) (-0.8 {-0.8*GB*1.0}) +*+(-0.15 {-0.15*GB*1}) (-0.050 {-0.050*GB*1}) (-0.015 {-0.015*GB*1}) +*+(-0.0001 {-0.0001*GB*1}) (0 0) (+0.0001 {0.0001*GB*1}) (+0.015 +*+{+0.015*GB*1}) (+0.050 {+0.050*GB*1}) (+0.15 {+0.15*GB*1}) (+0.8 +*+{0.8*GB*1.0}) (+0.85 {0.85*GB*2}) (+1.5 {1.5*GB*3}) (+2.0 {2.0*GB*4}) +*+(+2.7 {2.7*GB*5}) +*PSpice: +* G_I_VB VB_2 VREF VALUE={ TABLE( V(VB_Vref) , -2.7 , -2.7*GB*5 , -2.0 , +*+ -2.0*GB*4 , -1.5 , -1.5*GB*3 , -0.85 , -0.85*GB*2 , -0.8 , -0.8*GB*1.0 , +*+ -0.15 , -0.15*GB*1 , -0.050 , -0.050*GB*1 , -0.015 , -0.015*GB*1 , +*+ -0.0001 , -0.0001*GB*1 , 0 , 0 , +0.0001 , +0.0001*GB*1 , +0.015 , +*+ +0.015*GB*1 , +0.050 , +0.050*GB*1 , +0.15 , +0.15*GB*1 , +0.8 , +*+ +0.8*GB*1.0 , +0.85 , +0.85*GB*2 , +1.5 , +1.5*GB*3 , +2.0 , +2.0*GB*4 , +*+ +2.7 ,+2.7*GB*5) } + G_I_VB VB_2 VREF POLY(1) VB_VREF 0 -9.856565891257244E-19 ++0.005261002312869361 -1.07732629780586E-18 0.006364309660287821 ++1.4051854670098035E-19 -4.0785392718052795E-4 + + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + IEE VEE_N VCCN_ENHANCED {IEE} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high) , 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_IO VB_2 VREF VALUE={IF(abs(V(Io_val))<50m , V(VB_Vref)*GB*( ++abs(V(Io_val))/3m ) , V(VB_Vref)*GB*( 50m/3m ) )} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TS187x subckt: +* +.PARAM RINCM=6.4777e+7 +.PARAM CINCM=1.4646e-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3412e+5 +.PARAM CINDIFF=9.2768e-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM A0 = 6.8366e+5 +.PARAM Ro = 2.5282e+4 +.PARAM Ccomp=4.85p +.PARAM IEE=3u +.PARAM W=2.1u +.PARAM L=1u +.PARAM gm_mos=5.617737386835048e-05 +.PARAM GB=6m +.PARAM Ro1=15 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM RPROT_VCCP=100 +.PARAM RPROT_VCCN=15k +.PARAM Vd_compensazione=-788.4u + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_NOVd D LEVEL=1 MODTYPE=ELDO IS=10E-15 N=0.001 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DX D LEVEL=1 MODTYPE=ELDO IS=1E-14 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL DX D LEVEL=1 IS=1E-14 +******************************************************************************* + +.ENDS TSV3XX + + + + +**************************************************************************** +**** +*** TSV521 Spice macromodel subckt +*** +*** April 2012 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV52X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} +* C_RO2_1 NET0299 VREF 5p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 22p + CCOMP VB VB_2 {Ccomp} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.507728337236533 ++-0.3021077283372364 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.9398976982097182 -0.09454390451832913*V(Vccp,Vccn) + ++0.02131287297527709*PWR(V(Vccp,Vccn),2) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 61.355498721227576 ++-8.959931798806466 0.9377664109121895 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 174.5588235294119 ++-48.97058823529426 4.411764705882373 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -84.51534526854252 + ++55.81841432225082*V(Vccp,Vccn) + 3.1969309462915385*PWR(V(Vccp,Vccn),2) ) ++ -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 50*( 1 - ++exp(-abs(V(v_Io_val))/1.5m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.4491841432225065E-5 ++7.301790281329922E-6 -3.836317135549871E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV521 subckt: +* +.PARAM VCC_MIN=1.0 +.PARAM RINCM=2.0827E+11 +.PARAM CINCM=1.7878E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=2.138m +.PARAM Ro = 339625 +.PARAM A0_source = 1479108 +.PARAM A0_sink = 1479108 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=4p +.PARAM IEE=3.59u +.PARAM W=0.515u +.PARAM L=1u +.PARAM gm_mos=3.0417E-05 +.PARAM Lout = 20u +.PARAM Rout = 1200 +.PARAM Cout = 0.2n +.PARAM Cout2 = 2p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.6m +.PARAM Iout_dc_tau__sink = 0.1m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV52X + + + + +**************************************************************************** +**** +*** TSV61x Spice macromodel subckt +*** +*** Version 3.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV61X VP VM VCCP VCCN VS + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + G_IIB_VM VREF VM VALUE={1p} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 8.423161764705879E-6 ++-7.29166666666657E-8 7.965686274509793E-8 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + ROUT NET0249 VZOUT {Rout} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0286 50 + RIN_DIFF VP VM 1T + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {Ro2_1} + RPROT_IN_P_VCCP NET403 VCCP 100 + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + RIN_CM_VP VREF VP {RIN_CM_VP} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EVLIM_LOW_VOUT NET393 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOLnoRL)} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + E2_REF NET229 0 VCCN 0 1.0 + EVLIM_LOW_VB NET407 0 VCCN 0 1.0 + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 25 , 5.0 , +*+24 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 ++-33.64583333333336 3.9828431372549056 + + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -155.26102941176467 + ++124.8958333333334*V(Vccp,Vccn) -6.188725490196091*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EZOUT VB_3 NET0213 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 302.61248012718784 ++-270.8887965505632*V(Vccp,Vccn) + 40.840439369851765*PWR(V(Vccp,Vccn),2) ++-2.0294358529653245*PWR(V(Vccp,Vccn),3) ) -5000*I(VreadIo)} + EVLIM_HIGH_VB NET398 0 VCCP 0 1.0 + E1_REF NET271 0 VCCP 0 1.0 + E_R1 NET295 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + + *E_VOLNORL VOLNORL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 3m , 3.3 , 6m , 5.0 , +*+10m )} + E_VOLNORL VOLNORL 0 POLY(1) VCCP VCCN 5.5147058823525646E-5 0.0014375 ++1.102941176470584E-4 + + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_VREF VREF 0 NET235 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 53 , 3.3 , 33 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 95.19852941176471 ++-28.958333333333357 3.0637254901960818 + + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + + *EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 1.3 , 3.3 +*+, 1.2 , 5.0 , 1.0 )} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.3253676470588234 ++0.014583333333333308 -0.015931372549019603 + + EZOUT_IOUT_COEFF NET0286 0 VALUE={( Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau)) )} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -3.8158972691807494E-5 ++3.732444733420025E-5 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( + ++0.7536764705882353 + 0.012499999999999935*V(Vccp,Vccn) + ++0.007352941176470591*PWR(V(Vccp,Vccn),2) )} + COUT2 VZOUT 0 {Cout2} + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VP VP VREF {CIN_CM_VP} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CCOMP VB VB_2 {Ccomp} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 130p + CIN_CM_VM VM VREF {CIN_CM_VM} + C_RO2_1 VB_2 VREF 35n + COUT NET0249 0 {Cout} + DVLIM_HIGH_VB VB NET382 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + DVLIM_LOW_VB NET408 VB DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + VVLIM_HIGH_VB NET382 NET398 DC -770m + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {Vd_compensazione} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VREADIO NET0213 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + VVLIM_LOW_VB NET407 NET408 DC -770m + V_OUTVLIM_LOW NET393 NET394 DC {Vd_compensazione} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV61x subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3492E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.2785E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=62.16m +.PARAM Ro = 794328 +.PARAM A0_source = 158489319 +.PARAM A0_sink = 1.3e+6 +.PARAM Lout = 1.8m +.PARAM Rout = 5600 +.PARAM Cout = 333p +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 0.01 +.PARAM Iout_dc_tau = 0.05m +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=11p +.PARAM IEE=0.45u +.PARAM W=0.31u +.PARAM L=1u +.PARAM gm_mos=8.359416242253981e-06 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS + + + + + +**************************************************************************** +**** +*** TSV619x Spice macromodel subckt +*** +*** June 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV619X VP VM VCCP VCCN VS + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + G_IIB_VM VREF VM VALUE={1p} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 8.423161764705879E-6 ++-7.29166666666657E-8 7.965686274509793E-8 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + ROUT NET0249 VZOUT {Rout} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0286 50 + RIN_DIFF VP VM {RIN_DIFF} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {Ro2_1} + RPROT_IN_P_VCCP NET403 VCCP 100 + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + RIN_CM_VP VREF VP {RIN_CM_VP} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EVLIM_LOW_VOUT NET393 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOLnoRL)} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + E2_REF NET229 0 VCCN 0 1.0 + EVLIM_LOW_VB NET407 0 VCCN 0 1.0 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 ++-33.64583333333336 3.9828431372549056 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -155.26102941176467 + ++124.8958333333334*V(Vccp,Vccn) -6.188725490196091*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EZOUT VB_3 NET0353 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 302.61248012718784 ++-270.8887965505632*V(Vccp,Vccn) + 40.840439369851765*PWR(V(Vccp,Vccn),2) ++-2.0294358529653245*PWR(V(Vccp,Vccn),3) ) -5000*I(VreadIo)} + EVLIM_HIGH_VB NET398 0 VCCP 0 1.0 + E1_REF NET271 0 VCCP 0 1.0 + E_R1 NET295 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + E_VOLNORL VOLNORL 0 POLY(1) VCCP VCCN 5.5147058823525646E-5 0.0014375 ++1.102941176470584E-4 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_VREF VREF 0 NET235 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 95.19852941176471 ++-28.958333333333357 3.0637254901960818 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.9669117647058814 ++0.13750000000000015 -0.06617647058823531 + EZOUT_IOUT_COEFF NET0286 0 VALUE={( Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau)) )} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -3.8158972691807494E-5 ++3.732444733420025E-5 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( +++0.8735294117647053 -0.043333333333333154*V(Vccp,Vccn) + ++0.013725490196078403*PWR(V(Vccp,Vccn),2) )} + COUT2 VZOUT 0 {Cout2} + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VP VP VREF {CIN_CM_VP} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CCOMP VB VB_2 {Ccomp} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 380p + CIN_CM_VM VM VREF {CIN_CM_VM} + C_RO2_1 VB_2 VREF 10p + COUT NET0249 0 {Cout} + DVLIM_HIGH_VB VB NET382 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + DVLIM_LOW_VB NET408 VB DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + VVLIM_HIGH_VB NET382 NET398 DC -770m + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {Vd_compensazione} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VREADIO NET0353 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + VVLIM_LOW_VB NET407 NET408 DC -770m + V_OUTVLIM_LOW NET393 NET394 DC {Vd_compensazione} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV619x subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3492E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=6.4052E+10 +.PARAM CINDIFF=3.2785E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=48.14m +.PARAM Ro = 794328 +.PARAM A0_source = 158489319 +.PARAM A0_sink = 1.3e+6 +.PARAM Lout = 1.8m +.PARAM Rout = 5600 +.PARAM Cout = 100p +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 0.01 +.PARAM Iout_dc_tau = 0.05m +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=0.45u +.PARAM W=1.08u +.PARAM L=1u +.PARAM gm_mos=1.5616e-05 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* +.ENDS TSV619X + + + +**************************************************************************** +**** +*** TSV62X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** Version 3.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSV62X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + RPROT_IN_P_VCCN NET406 VCCN 15K + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0360 50 + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + ROUT NET0325 VZOUT {Rout} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM 1T + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {Ro2_1} + + *E4 RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 25 , 5.0 , 24 )} + E4 RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 -33.64583333333336 ++3.9828431372549056 + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 30 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 109.22426470588235 ++-38.68750000000002 4.448529411764708 + + *E3 VIL_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {0.5/1.8} , 5.0 , +*+{0.5/5.0} )} + E3 VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.37777777777777777 ++-0.05555555555555556 + + *E2 VIH_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {1.3/1.8} , 5.0 , +*+{4.5/5.0} )} + E2 VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.6222222222222219 ++0.05555555555555557 + + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + EREAD_VS NET0220 0 VS 0 1.0 + EREAD_VREF NET0224 0 VREF 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EZOUT VB_3 NET356 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.669117647058823 ++-0.1583333333333334 0.004901960784313741 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.700735294117647 + 0.0525*V(Vccp,Vccn) + ++0.0014705882352941194*PWR(V(Vccp,Vccn),2) )} + EZOUT_IOUT_COEFF NET0360 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -5.427573529411765E-5 ++4.281250000000003E-5 -5.51470588235299E-7 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E1_REF NET287 0 VCCP 0 1.0 + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 2.433823529411765E-5 ++-1.0833333333333407E-6 3.4313725490196195E-7 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {Cout2} + CIN_DIFF VM VP {CIN_DIFF} + COUT NET0325 0 {Cout} + CIN_CM_VP VP VREF {CIN_CM_VP} + CSTB_CTRL VSTB_CTRL 0 1n + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 80p + C_RO2_1 VB_2 VREF 100p + CCOMP VB VB_2 {Ccomp} + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VREADIO NET356 VS_STB DC 0 + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV620 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3491E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.3573E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=92m +.PARAM Ro = 4e5 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 1.0e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=10.7p +.PARAM IEE=1.5u +.PARAM W=1.07u +.PARAM L=1u +.PARAM gm_mos=2.835519773730752e-05 +.PARAM Lout = 700u +.PARAM Rout = 1.75k +.PARAM Cout = 750p +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 0.02 +.PARAM Iout_dc_tau__source = 0.21m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 5n +.PARAM VIL_STB = 100m +.PARAM VIH_STB = 900m +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 51 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_OUT VSWITCH VON={VIH_STB} VOFF={VIL_STB} RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON={VIH_STB} VOFF={VIL_STB} RON=1T ROFF={2.5/Iout_leak_STB -2e3} +.MODEL SW_VB2_VS VSWITCH VON={VIH_STB} VOFF={VIL_STB} RON=1T ROFF=1m +.MODEL SW_VB_VREF VSWITCH VON={VIH_STB} VOFF={VIL_STB} RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS TSV62X_SHDN + + +**************************************************************************** +**** +*** TSV62X (WITHOUT STAND-BY) Spice macromodel subckt +*** +*** Version 3.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV62X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 2.433823529411765E-5 ++-1.0833333333333407E-6 3.4313725490196195E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RIN_DIFF VP VM 1T + RPROT_IN_P_VCCP NET403 VCCP 100 + RO2_1 VB_2 VREF {Ro2_1} + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0285 50 + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + ROUT NET0254 VZOUT {Rout} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + EVLIM_LOW_VOUT NET393 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + + *E4 RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 25 , 5.0 , 24 )} + E4 RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 -33.64583333333336 ++3.9828431372549056 + + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 30 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 109.22426470588235 ++-38.68750000000002 4.448529411764708 + + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.669117647058823 ++-0.1583333333333334 0.004901960784313741 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + E2_REF NET229 0 VCCN 0 1.0 + EVLIM_LOW_VB NET407 0 VCCN 0 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VB NET398 0 VCCP 0 1.0 + E1_REF NET271 0 VCCP 0 1.0 + E_R1 NET295 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EZOUT VB_3 NET0207 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EZOUT_IOUT_COEFF NET0285 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VREF VREF 0 NET235 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -5.427573529411765E-5 ++4.281250000000003E-5 -5.51470588235299E-7 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.700735294117647 + 0.0525*V(Vccp,Vccn) + ++0.0014705882352941194*PWR(V(Vccp,Vccn),2) )} + COUT NET0254 0 {Cout} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {Cout2} + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 80p + C_RO2_1 VB_2 VREF 100p + DVLIM_HIGH_VB VB NET382 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + DVLIM_LOW_VB NET408 VB DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + VVLIM_HIGH_VB NET382 NET398 DC -770m + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {Vd_compensazione} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VREADIO NET0207 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + VVLIM_LOW_VB NET407 NET408 DC -770m + V_OUTVLIM_LOW NET393 NET394 DC {Vd_compensazione} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV621 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3491E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.3573E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=92m +.PARAM Ro = 4e5 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 1.0e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=10.7p +.PARAM IEE=1.5u +.PARAM W=1.07u +.PARAM L=1u +.PARAM gm_mos=2.835519773730752e-05 +.PARAM Lout = 700u +.PARAM Rout = 1.75k +.PARAM Cout = 750p +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 0.02 +.PARAM Iout_dc_tau__source = 0.21m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV62X + +**************************************************************************** +**** +*** TSV629X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSV629X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + RPROT_IN_P_VCCN NET406 VCCN 15K + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0360 50 + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + ROUT NET0325 VZOUT {Rout} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM 1T + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {Ro2_1} + EZOUT_IOUT_COEFF NET0360 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 30 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 109.22426470588235 ++-38.68750000000002 4.448529411764708 + + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + + *E4 RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 25 , 5.0 , 24 )} + E4 RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 -33.64583333333336 ++3.9828431372549056 + + EREAD_VS NET0220 0 VS 0 1.0 + + *E3 VIL_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {0.5/1.8} , 5.0 , +*+{0.5/5.0} )} + E3 VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.37777777777777777 ++-0.05555555555555556 + + *E2 VIH_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {1.3/1.8} , 5.0 , +*+{4.5/5.0} )} + E2 VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.6222222222222219 ++0.05555555555555557 + + + EREAD_VREF NET0224 0 VREF 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + EZOUT VB_3 NET356 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7561397058823526 + 0.0540416666666669*V(Vccp,Vccn) ++-0.0010539215686274882*PWR(V(Vccp,Vccn),2) )} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.669117647058823 ++-0.1583333333333334 0.004901960784313741 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -5.427573529411765E-5 ++4.281250000000003E-5 -5.51470588235299E-7 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E1_REF NET287 0 VCCP 0 1.0 + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 2.433823529411765E-5 ++-1.0833333333333407E-6 3.4313725490196195E-7 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CSTB_CTRL VSTB_CTRL 0 1n + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {Cout2} + CIN_DIFF VM VP {CIN_DIFF} + COUT NET0325 0 {Cout} + CIN_CM_VP VP VREF {CIN_CM_VP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 112p + C_RO2_1 VB_2 VREF 300p + CCOMP VB VB_2 {Ccomp} + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VREADIO NET356 VS_STB DC 0 + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV6290 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3491E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.3573E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=62.23m +.PARAM Ro = 4e5 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 1.0e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=2.7p +.PARAM IEE=1.5u +.PARAM W=0.65u +.PARAM L=1u +.PARAM gm_mos=2.20959021339181e-05 +.PARAM Lout = 550u +.PARAM Rout = 2850 +.PARAM Cout = 120p +.PARAM Cout2 = 3p +.PARAM Zout_Iout_coeff_MIN= 0.02 +.PARAM Iout_dc_tau__source = 0.07m +.PARAM Iout_dc_tau__sink = 0.005m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 5n +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 30 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_OUT VSWITCH VON=0.9 VOFF=0.1 RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF={2.5/Iout_leak_STB -5e3} +.MODEL SW_VB2_VS VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +.MODEL SW_VB_VREF VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS TSV629X_SHDN + +**************************************************************************** +**** +*** TSV629X (WITHOUT STAND-BY) Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV629X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 2.433823529411765E-5 ++-1.0833333333333407E-6 3.4313725490196195E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RIN_DIFF VP VM 1T + RPROT_IN_P_VCCP NET403 VCCP 100 + RO2_1 VB_2 VREF {Ro2_1} + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0285 50 + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + ROUT NET0254 VZOUT {Rout} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET393 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 30 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 109.22426470588235 ++-38.68750000000002 4.448529411764708 + + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.669117647058823 ++-0.1583333333333334 0.004901960784313741 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + E2_REF NET229 0 VCCN 0 1.0 + EVLIM_LOW_VB NET407 0 VCCN 0 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VB NET398 0 VCCP 0 1.0 + E1_REF NET271 0 VCCP 0 1.0 + E_R1 NET295 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EZOUT VB_3 NET0207 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + + *E4 RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 25 , 5.0 , 24 )} + E4 RO1_VOL 0 POLY(1) VCCP VCCN 92.65808823529412 -33.64583333333336 ++3.9828431372549056 + + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EZOUT_IOUT_COEFF NET0285 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VREF VREF 0 NET235 0 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -5.427573529411765E-5 ++4.281250000000003E-5 -5.51470588235299E-7 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7561397058823526 + 0.0540416666666669*V(Vccp,Vccn) ++-0.0010539215686274882*PWR(V(Vccp,Vccn),2) )} + COUT NET0254 0 {Cout} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {Cout2} + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 112p + C_RO2_1 VB_2 VREF 300p + DVLIM_HIGH_VB VB NET382 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + DVLIM_LOW_VB NET408 VB DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + VVLIM_HIGH_VB NET382 NET398 DC -770m + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {Vd_compensazione} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VREADIO NET0207 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + VVLIM_LOW_VB NET407 NET408 DC -770m + V_OUTVLIM_LOW NET393 NET394 DC {Vd_compensazione} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + + ******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV6291 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.3491E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.3573E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=62.23m +.PARAM Ro = 4e5 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 1.0e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=2.7p +.PARAM IEE=1.5u +.PARAM W=0.65u +.PARAM L=1u +.PARAM gm_mos=2.20959021339181e-05 +.PARAM Lout = 550u +.PARAM Rout = 2850 +.PARAM Cout = 120p +.PARAM Cout2 = 3p +.PARAM Zout_Iout_coeff_MIN= 0.02 +.PARAM Iout_dc_tau__source = 0.07m +.PARAM Iout_dc_tau__sink = 0.005m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV629X +**************************************************************************** +**** +*** TSV63X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSV63X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + RIN_DIFF VP VM 1T + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + ROUT NET0584 VZOUT {Rout} + RPROT_IN_P_VCCN NET406 VCCN 15K + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0363 50 + RO2_1 VB_2 VREF {Ro2_1} + EZOUT VB_3 NET0242 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + + *E3 VIL_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {0.5/1.8} , 5.0 , +*+{0.5/5.0} )} + E3 VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.37777777777777777 ++-0.05555555555555556 + + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EREAD_VS NET0220 0 VS 0 1.0 + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 28 , 5.0 , +*+23 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 80.97794117647057 ++-24.708333333333343 2.6225490196078454 + + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + EREAD_VREF NET0224 0 VREF 0 1.0 + + *E2 VIH_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {1.3/1.8} , 5.0 , +*+{4.5/5.0} )} + E2 VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.6222222222222219 ++0.05555555555555557 + + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.6599264705882346 ++-0.0645833333333332 -0.01348039215686276 + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EZOUT_IOUT_COEFF NET0363 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7286764705882351 + 0.1008333333333332*V(Vccp,Vccn) ++-0.00931372549019606*PWR(V(Vccp,Vccn),2) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -6.574632352941173E-5 ++4.014583333333334E-5 -1.5931372549019734E-7 + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 42 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 66.87132352941175 -6.6875 ++-0.25735294117647034 + + E1_REF NET287 0 VCCP 0 1.0 + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 4.027205882352942E-5 ++3.958333333333329E-6 -1.2254901960784258E-7 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CSTB_CTRL VSTB_CTRL 0 1n + COUT NET0584 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 30p + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_DIFF VM VP {CIN_DIFF} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + COUT2 VZOUT 0 {Cout2} + C_RO2_1 VB_2 VREF 700p + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VREADIO NET0242 VS_STB DC 0 + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV630 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.6478E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.5657E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=141m +.PARAM Ro = 223872 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 0.6e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=8.8p +.PARAM IEE=3u +.PARAM W=1.59u +.PARAM L=1u +.PARAM gm_mos=4.887806568937801e-05 +.PARAM Lout = 230u +.PARAM Rout = 900 +.PARAM Cout = 2n +.PARAM Cout2 = 3.7p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 5n +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 51 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_OUT VSWITCH VON=0.9 VOFF=0.1 RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF={2.5/Iout_leak_STB -2e3} +.MODEL SW_VB2_VS VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +.MODEL SW_VB_VREF VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS TSV63X_SHDN + + +**************************************************************************** +**** +*** TSV63X (WITHOUT STAND-BY) Spice macromodel subckt +*** +*** Version 2.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV63X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 700.0p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 30p + CCOMP VB VB_2 {Ccomp} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.6599264705882346 ++-0.0645833333333332 -0.01348039215686276 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 28 , 5.0 , +*+23 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 80.97794117647057 ++-24.708333333333343 2.6225490196078454 + + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -6.574632352941173E-5 ++4.014583333333334E-5 -1.5931372549019734E-7 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + +* E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 42 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 66.87132352941175 -6.6875 ++-0.25735294117647034 + + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -95.20588235294117 + ++73.33333333333336*V(Vccp,Vccn) + 3.921568627450974*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 211.65808823529403 ++-172.8125*V(Vccp,Vccn) + 12.316176470588244*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7286764705882351 + 0.1008333333333332*V(Vccp,Vccn) ++-0.00931372549019606*PWR(V(Vccp,Vccn),2) )} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0295 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM 1T + ROUT NET0410 VZOUT {Rout} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15k + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15k + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + G_ICC VCCP VCCN POLY(1) VCCP VCCN 4.027205882352942E-5 ++3.958333333333329E-6 -1.2254901960784258E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV631 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.6478E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.5657E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=141m +.PARAM Ro = 223872 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 0.6e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=8.8p +.PARAM IEE=3u +.PARAM W=1.59u +.PARAM L=1u +.PARAM gm_mos=4.887806568937801e-05 +.PARAM Lout = 230u +.PARAM Rout = 900 +.PARAM Cout = 2n +.PARAM Cout2 = 3.7p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV63X + + +**************************************************************************** +**** +*** TSV639X_SHDN (WITH STAND-BY) PSpice macromodel subckt +*** +*** Version 3.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSV639X_SHDN VP VM VCCP VCCN VS STB + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + S_SW_VB2_VS VB_2 NET0247 VSTB_CTRL 0 SW_VB2_VS + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + RPROT_IN_P_VCCN NET406 VCCN 15K + RIN_CM_VM VREF VM {RIN_CM_VM} + ROUT NET0314 VZOUT {Rout} + RIN_DIFF VP VM 1T + RO2_1 VB_2 VREF {Ro2_1} + RIN_CM_VP VREF VP {RIN_CM_VP} + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0355 50 + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 28 , 5.0 , +*+23 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 80.97794117647057 ++-24.708333333333343 2.6225490196078454 + + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 42 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 66.87132352941175 -6.6875 ++-0.25735294117647034 + + EREAD_VS NET0247 0 VS 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 233.4963235294118 ++-191.5625*V(Vccp,Vccn) + 15.992647058823547*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.6599264705882346 ++-0.0645833333333332 -0.01348039215686276 + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + EZOUT_IOUT_COEFF NET0355 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EREAD_VREF NET0224 0 VREF 0 1.0 + + *E2 VIH_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {1.3/1.8} , 5.0 , +*+{4.5/5.0} )} + E2 VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.6222222222222219 ++0.05555555555555557 + + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + + *E3 VIL_STB_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {0.5/1.8} , 5.0 , +*+{0.5/5.0} )} + E3 VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.37777777777777777 ++-0.05555555555555556 + + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7685661764705877 + 0.027291666666666915*V(Vccp,Vccn) + ++0.0037990196078431008*PWR(V(Vccp,Vccn),2) )} + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + EZOUT VB_3 NET0236 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -6.574632352941173E-5 ++4.014583333333334E-5 -1.5931372549019734E-7 + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -106.12500000000007 + ++82.70833333333343*V(Vccp,Vccn) + 2.0833333333333175*PWR(V(Vccp,Vccn),2) ) ++ -5000*I(VreadIo)} + E1_REF NET287 0 VCCP 0 1.0 + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 4.027205882352942E-5 ++3.958333333333329E-6 -1.2254901960784258E-7 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CSTB_CTRL VSTB_CTRL 0 1n + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + COUT NET0314 0 {Cout} + C_RO2_1 VB_2 VREF 10p + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 72p + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + CIN_CM_VM VM VREF {CIN_CM_VM} + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VREADIO NET0236 VS_STB DC 0 + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV6390 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.6478E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.5657E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=95m +.PARAM Ro = 223872 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 0.6e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=2.65p +.PARAM IEE=3u +.PARAM W=1.06u +.PARAM L=1u +.PARAM gm_mos=3.990140517663634e-05 +.PARAM Lout = 220u +.PARAM Rout = 1.95k +.PARAM Cout = 105p +.PARAM Cout2 = 3p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.17m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 5n +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 33 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_VB2_VS VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +.MODEL SW_OUT VSWITCH VON=0.9 VOFF=0.1 RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF={2.5/Iout_leak_STB -2e3} +.MODEL SW_VB_VREF VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS TSV639X_SHDN +*** End of subcircuit definition. + + +**************************************************************************** +**** +*** TSV639X (WITHOUT STAND-BY) Spice macromodel subckt +*** +*** Version 3.0 (March 2011) +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV639X VP VM VCCP VCCN VS + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0266 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + COUT NET0394 0 {Cout} + CIN_CM_VP VP VREF {CIN_CM_VP} + C_RO2_1 VB_2 VREF 10p + COUT2 VZOUT 0 {Cout2} + CIN_DIFF VM VP {CIN_DIFF} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VM VM VREF {CIN_CM_VM} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 72p + CCOMP VB VB_2 {Ccomp} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.6599264705882346 ++-0.0645833333333332 -0.01348039215686276 + + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 54 , 3.3 , 42 , 5.0 , +*+27 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 66.87132352941175 -6.6875 ++-0.25735294117647034 + + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EZOUT_IOUT_COEFF NET0283 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -6.574632352941173E-5 ++4.014583333333334E-5 -1.5931372549019734E-7 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -106.12500000000007 + ++82.70833333333343*V(Vccp,Vccn) + 2.0833333333333175*PWR(V(Vccp,Vccn),2) ) ++ -5000*I(VreadIo)} + + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 45 , 3.3 , 28 , 5.0 , +*+23 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 80.97794117647057 ++-24.708333333333343 2.6225490196078454 + + EZOUT VB_3 NET0266 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 233.4963235294118 ++-191.5625*V(Vccp,Vccn) + 15.992647058823547*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.7685661764705877 + 0.027291666666666915*V(Vccp,Vccn) + ++0.0037990196078431008*PWR(V(Vccp,Vccn),2) )} + RIN_DIFF VP VM 1T + RO2_1 VB_2 VREF {Ro2_1} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RIN_CM_VP VREF VP {RIN_CM_VP} + RO2_2 VB_3 VB_2 {Ro2_2} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0283 50 + ROUT NET0394 VZOUT {Rout} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET326 NET356 1Meg + RIN_CM_VM VREF VM {RIN_CM_VM} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15K + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15K + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + + *G_IIB_VM VREF VM TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VM VREF VM VALUE={1p} + + G_ICC VCCP VCCN POLY(1) VCCP VCCN 4.027205882352942E-5 ++3.958333333333329E-6 -1.2254901960784258E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + + *G_IIB_VP VREF VP TABLE {V(Vccp,Vccn)} = (+1.8 1p) (+3.3 1p) (+5.0 1p) + G_IIB_VP VREF VP VALUE={1p} + + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV6391 subckt: +* +.PARAM RINCM=2.0828E+11 +.PARAM CINCM=6.6478E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM CINDIFF=3.5657E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=95m +.PARAM Ro = 223872 +.PARAM A0_source = 5.959352977968012e+7 +.PARAM A0_sink = 0.6e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=2.65p +.PARAM IEE=3u +.PARAM W=1.06u +.PARAM L=1u +.PARAM gm_mos=3.990140517663634e-05 +.PARAM Lout = 220u +.PARAM Rout = 1.95k +.PARAM Cout = 105p +.PARAM Cout2 = 3p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.17m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* +.ENDS TSV639X + +**************************************************************************** +**** +*** TSV71X Spice macromodel subckt +*** +*** October 2013 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV71X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET229 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET367 DC 0 + VVLIM_LOW_VB NET227 NET228 DC -770m + VOS NET229 VP DC 0 + VPROT_IN_P_VCCP NET231 NET264 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0300 VS DC 0 + VVLIM_HIGH_VB NET252 NET238 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET241 NET242 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET243 NET425 DC {V_DPROT} + V_OUTVLIM_HIGH NET270 NET246 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET247 NET248 DC {V_DPROT} + VPROT_IN_M_VCCP NET411 NET254 DC {V_DPROT} + DVLIM_HIGH_VB VB NET252 DIODE_VLIM + DPROT_IN_M_VCCP VM NET254 DIODE_VLIM + DVLIM_LOW_VB NET228 VB DIODE_VLIM + DPROT_IN_M_VCCN NET243 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET242 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET229 NET264 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET247 NET229 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET270 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 100p + COUT NET404 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 270p + CCOMP VB VB_2 {CCOMP} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.9898897058823524 ++-0.096875 -0.02022058823529411 + EZOUT_IOUT_COEFF NET295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0300 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 113.44485294117663 ++-51.54738562091519 10.31794662309373 -0.7012527233115518 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -5.948529411764708E-6 ++8.20833333333334E-6 -5.637254901960795E-7 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 168.70680147058854 ++-76.77369281045773 14.837792755991346 -0.9582652505446686 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -93.33088235294122 + ++75.2083333333334*V(Vccp,Vccn) -2.328431372549031*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET246 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET241 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 2*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 7.771575630252083E-6 ++9.571778711484804E-7 -4.0161064425771053E-7 5.602240896358624E-8 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV711 subckt: +* +.PARAM VCC_MIN=1.0 +.PARAM RINCM=5.4959E+10 +.PARAM CINCM=3.9597E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=7.7132E+10 +.PARAM CINDIFF=2.7050E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=58m +.PARAM Ro = 3.5758e+6 +.PARAM A0_source = 4.9841e+10 +.PARAM A0_sink = 2e+8 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=8p +.PARAM IEE=0.48u +.PARAM W=0.24u +.PARAM L=1u +.PARAM gm_mos=7.5957E-06 +.PARAM Lout = 10m +.PARAM Rout = 5600 +.PARAM Cout = 5n +.PARAM Cout2 = 2p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV71X + +**************************************************************************** +**** +*** TSV73X Spice macromodel subckt +*** +*** October 2013 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV73X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET229 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET367 DC 0 + VVLIM_LOW_VB NET227 NET228 DC -770m + VOS NET229 VP DC 0 + VPROT_IN_P_VCCP NET231 NET264 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0303 VS DC 0 + VVLIM_HIGH_VB NET252 NET238 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET241 NET242 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET243 NET425 DC {V_DPROT} + V_OUTVLIM_HIGH NET270 NET246 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET247 NET248 DC {V_DPROT} + VPROT_IN_M_VCCP NET411 NET254 DC {V_DPROT} + DVLIM_HIGH_VB VB NET252 DIODE_VLIM + DPROT_IN_M_VCCP VM NET254 DIODE_VLIM + DVLIM_LOW_VB NET228 VB DIODE_VLIM + DPROT_IN_M_VCCN NET243 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET242 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET229 NET264 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET247 NET229 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET270 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 10p + COUT NET404 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 70p + CCOMP VB VB_2 {CCOMP} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.2658088235294107 ++-0.04458333333333293 -0.0017156862745098572 + EZOUT_IOUT_COEFF NET295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0303 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 110.9242647058825 ++-49.73692810457526 10.200844226579546 -0.7284858387799591 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN -2.36360294117647E-5 ++1.3020833333333336E-5 6.127450980392101E-8 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 146.64927604629733 ++-57.06821115221597 10.08811372501539 -0.6184765828040271 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -90.4080882352941 + ++69.0625*V(Vccp,Vccn) + 0.18382352941175562*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET246 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET241 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 5*( 1 - ++exp(-abs(V(v_Io_val))/3m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 5.38544117647059E-5 ++7.916666666666461E-7 -2.450980392156583E-8 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV731 subckt: +* +************** +************** MACROMODEL PARAMS elencati nell'ordine in cui vengono DIMENSIONATI +************** +.PARAM VCC_MIN=1.0 +.PARAM RINCM=5.4959E+10 +.PARAM CINCM=3.9650E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=7.7132E+10 +.PARAM CINDIFF=2.7050E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=130.3m +.PARAM Ro = 7.1766E+05 +.PARAM A0_source = 2.7e+11 +.PARAM A0_sink = 7e+7 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=8p +.PARAM IEE=2.8u +.PARAM W=1.4617u +.PARAM L=1u +.PARAM gm_mos=4.5275E-05 +.PARAM Lout = 450u +.PARAM Rout = 460 +.PARAM Cout = 15n +.PARAM Cout2 = 2p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV73X + +**************************************************************************** +**** +*** TSV85X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSV85X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {Lout} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + G_IIB_VP VP VREF POLY(2) VSTB_CTRL 0 Iib_VP_val 0 0 0 0 0 1 + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_IIB_VM VM VREF POLY(2) VSTB_CTRL 0 Iib_VM_val 0 0 0 0 0 1 + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + RIN_DIFF VP VM {RIN_DIFF} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + ROUT NET0584 VZOUT {Rout} + RPROT_IN_P_VCCN NET406 VCCN 15K + RSTB_CTRL VSTB_CTRL VSTB_ONE {RSTB_ctrl} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0363 50 + RO2_1 VB_2 VREF {Ro2_1} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 136.08695652173913 ++-15.217391304347831 + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + EZOUT VB_3 NET0242 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VIL VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.2851851847826086 ++-0.03703703695652173 + E_IIB_VM_VAL IIB_VM_VAL 0 VALUE={-27n} + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EREAD_VS NET0220 0 VS 0 1.0 + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + EREAD_VREF NET0224 0 VREF 0 1.0 + E_VIH VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.7148148130434779 ++0.03703703739130437 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 4.260869565217392 ++-0.6521739130434785 + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EZOUT_IOUT_COEFF NET0363 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + EVLIM_LOW_VB NET425 0 VCCN 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6891304347826086 + 0.062173913043478246*V(Vccp,Vccn) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_IIB_VP_VAL IIB_VP_VAL 0 VALUE={-27n} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_ICC ICC_VAL 0 POLY(1) VCCP VCCN 1.0444086956521737E-4 ++4.3478260869565205E-6 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 3.3730434782608675E-4 ++4.1739130434782646E-5 + EVLIM_HIGH_VB NET416 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 103.39130434782608 ++-13.47826086956522 + E1_REF NET287 0 VCCP 0 1.0 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + CSTB_CTRL VSTB_CTRL 0 1n + COUT NET0584 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 18p + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_DIFF VM VP {CIN_DIFF} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {Ccomp} + COUT2 VZOUT 0 {Cout2} + C_RO2_1 VB_2 VREF 5p + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET423 NET388 DIODE_VLIM + DVLIM_HIGH_VB VB NET400 DIODE_VLIM + DPROT_IN_M_VCCP VM NET398 DIODE_VLIM + DVLIM_LOW_VB NET426 VB DIODE_VLIM + D_OUTVLIM_LOW NET412 VB_3 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET382 DIODE_NOVd + DPROT_IN_M_VCCN NET409 VM DIODE_VLIM + DPROT_IN_P_VCCN NET405 NET423 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + V_IEE IEE_VAL 0 DC {IEE} + VPROT_IN_M_VCCP NET253 NET398 DC {V_DPROT} + VREADI_R1 VB NET311 DC 0 + VVLIM_LOW_VB NET425 NET426 DC -770m + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VPROT_IN_P_VCCP NET421 NET388 DC {V_DPROT} + VOS NET423 VP DC 0 + VVLIM_HIGH_VB NET400 NET416 DC -770m + V_OUTVLIM_LOW NET411 NET412 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET409 NET243 DC {V_DPROT} + VREADIO NET0242 VS_STB DC 0 + VPROT_IN_P_VCCN NET405 NET406 DC {V_DPROT} + V_OUTVLIM_HIGH NET382 NET408 DC {Vd_compensazione} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET423 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV850 subckt: +* +.PARAM RINCM=4.3598E+08 +.PARAM CINCM=4.9396E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3.4m +.PARAM Ro = 85.35k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=3.86u +.PARAM W=1.6u +.PARAM L=1u +.PARAM gm_mos=5.561e-05 +.PARAM Lout = 5u +.PARAM Rout = 890 +.PARAM Cout = 0.03n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM ICC_STB = 2.5n +.PARAM Iout_leak_STB = 50p +.PARAM RSTB_ctrl = 33 +.PARAM Iil_STB = 10p +.PARAM Iih_STB = 10p + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL SW_OUT VSWITCH VON=0.9 VOFF=0.1 RON=1m ROFF=1T +.MODEL SW_LEAK VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF={2.5/Iout_leak_STB -2e3} +.MODEL SW_VB2_VS VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +.MODEL SW_VB_VREF VSWITCH VON=0.9 VOFF=0.1 RON=1T ROFF=1m +* +******************************************************************************* + +.ENDS TSV85X_SHDN + +**************************************************************************** +**** +*** November 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV85X VP VM VCCP VCCN VS + LOUT VZOUT 0 {Lout} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + VREADIO NET0329 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + V_OUTVLIM_LOW NET206 NET207 DC {Vd_compensazione} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {Vd_compensazione} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {Cout2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 5p + COUT NET0410 0 {Cout} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 18p + CCOMP VB VB_2 {Ccomp} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 136.08695652173913 ++-15.217391304347831 + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 4.260869565217392 ++-0.6521739130434785 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0329 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6891304347826086 + 0.062173913043478246*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 3.3730434782608675E-4 ++4.1739130434782646E-5 + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 103.39130434782608 ++-13.47826086956522 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -183.1086956521739 + ++106.5217391304348*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + EVLIM_HIGH_VB NET203 0 VCCP 0 1.0 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_R1 NET0258 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EVLIM_LOW_VB NET192 0 VCCN 0 1.0 + E2_REF NET362 0 VCCN 0 1.0 + E_VREF VREF 0 NET356 0 1.0 + E_VOL_NORL VOL_NORL 0 POLY(1) VCCP VCCN 0.0608695652173913 ++-0.002173913043478261 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E1_REF NET326 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( -29.71739130434781 ++-36.95652173913044*V(Vccp,Vccn) ) -5000*I(VreadIo)} + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0295 50 + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM {RIN_DIFF} + ROUT NET0410 VZOUT {Rout} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {Ro2_2} + RPROT_IN_P_VCCP NET196 VCCP 100 + RPROT_IN_M_VCCP VCCP NET348 100 + RO2_1 VB_2 VREF {Ro2_1} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RIN_CM_VM VREF VM {RIN_CM_VM} + R1_REF NET326 NET356 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET360 15K + R2_REF NET356 NET362 1Meg + RPROT_IN_P_VCCN NET213 VCCN 15K + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 11*( 1 - ++exp(-abs(V(v_Io_val))/6m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={27n} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.0444086956521737E-4 ++4.3478260869565205E-6 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={27n} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSV851 subckt: +* +.PARAM RINCM=4.3598E+08 +.PARAM CINCM=4.9396E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=8.7288E+08 +.PARAM CINDIFF=2.3471E-12 +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3.4m +.PARAM Ro = 85.35k +.PARAM A0_source = 25118864 +.PARAM A0_sink = 0.9e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.5p +.PARAM IEE=3.86u +.PARAM W=1.6u +.PARAM L=1u +.PARAM gm_mos=5.561e-05 +.PARAM Lout = 5u +.PARAM Rout = 890 +.PARAM Cout = 0.03n +.PARAM Cout2 = 4p +.PARAM Zout_Iout_coeff_MIN= 0.04 +.PARAM Iout_dc_tau__source = 0.9m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSV85X + + + + +**************************************************************************** +**** +**** TSV91X Spice macromodel subckt +**** +*** Version 2.1 (April 2015) +**** +*********** CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV91X VP VM VCCP VCCN VS + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0158 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + HILIM_ICCP NET0241 0 V_OUTVLIM_HIGH -235 + HILIM_ICCN NET0249 0 V_OUTVLIM_LOW 235 + V_OUTVLIM_HIGH NET0201 NET0177 DC -770m + VVLIM_LOW_VB NET0109 NET0110 DC -770m + VOS NET0158 VP DC 0 + VPROT_IN_P_VCCP NET0123 NET0134 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC -360m + VVLIM_HIGH_VB NET0136 NET0153 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC -500m + VPROT_IN_M_VCCN NET0116 NET0192 DC {V_DPROT} + VPROT_IN_P_VCCN NET0115 NET096 DC {V_DPROT} + V_OUTVLIM_LOW NET0182 NET0183 DC -770m + VPROT_IN_M_VCCP NET0190 NET0135 DC {V_DPROT} + VREADIO NET0342 VS DC 0 + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DILIM_ICCN NET0206 VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET0183 VB_3 DIODE_VLIM + DVLIM_HIGH_VB VB NET0136 DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + DPROT_IN_M_VCCP VM NET0135 DIODE_VLIM + DVLIM_LOW_VB NET0110 VB DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET0201 DIODE_VLIM + DPROT_IN_M_VCCN NET0116 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0158 NET0134 DIODE_VLIM + DPROT_IN_P_VCCN NET0115 NET0158 DIODE_VLIM + DILIM_ICCP VB_3 NET0203 DIODE_ILIM + CGATE_VP_PARASITIC VP VREF 7p + CCOMP VB VB_2 {Ccomp} + CBD2_PARASITIC VO_DIFF_MINUS VCCN_ENHANCED 7p + CGD2_PARASITIC VO_DIFF_MINUS VM 300.0f + CBD1_PARASITIC VO_DIFF_PLUS VCCN_ENHANCED 7p + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 200.0f + CGATE_VM_PARASITIC VM VREF 7p + CGD1_PARASITIC VO_DIFF_PLUS NET0158 300.0f + + *Eldo: + *E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 + *+VALUE={VALIF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + *PSpice: + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 + +VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ 174.5 -5000*I(VreadIo)} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0.0023261764705882347 ++-5.5705882352941006E-5 5.294117647058802E-6 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0.0023261764705882347 ++-5.5705882352941006E-5 5.294117647058802E-6 + EVLIM_HIGH_VB NET0153 0 VCCP 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + + *Eldo: + *E_RO1 VB_3 NET0342 VALUE={VALIF(I(VreadIo)>0, + *+V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + *PSpice: + E_RO1 VB_3 NET0342 VALUE={IF(I(VreadIo)>0, + +V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + + EVLIM_LOW_VB NET0109 0 VCCN 0 1.0 + EILIM_ICCN NET0206 NET0249 VB_3 0 1.0 + E2_REF NET0238 0 VCCN 0 1.0 + EVLIM_HIGH_VOUT NET0177 0 VCCP 0 1.0 + E_VREF VREF 0 NET0250 0 1.0 + + *Eldo: + *E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 + *+VALUE={VALIF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + *E_VDEP_SINK_3 VDEP_SINK 0 VALUE={VALIF( abs(I(VreadIo))<1m , 0 , + *+V(val_vdep_sink_filtered))} + *E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={VALIF( abs(I(VreadIo))<1m , 0 , + *+V(val_vdep_source_filtered))} + *PSpice: + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 + +VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , + +V(val_vdep_sink_filtered))} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , + +V(val_vdep_source_filtered))} + + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + + *Eldo: + *E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 2.5 , 14 ) ( 3.3 , 11 ) ( 5.0 , 7.5 ) + *PSpice: + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE(V(VCCP,VCCN), 2.5 , 14 , 3.3 , 11 , 5.0 , 7.5 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 28.955882352941185 ++-7.673529411764715 0.6764705882352953 + + E1_REF NET0210 0 VCCP 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ -159.5 -5000*I(VreadIo)} + EVLIM_LOW_VOUT NET0182 0 VCCN 0 1.0 + + *Eldo: + *E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 2.5 , 14 ) ( 3.3 , 11 ) ( 5.0 , 7.5 ) + *PSpice: + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE(V(VCCP,VCCN), 2.5 , 14 , 3.3 , 11 , 5.0 , 7.5 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 28.955882352941185 ++-7.673529411764715 0.6764705882352953 + + EILIM_ICCP NET0203 NET0241 VB_3 0 1.0 + RO2_2 VB_3 VB_2 {Ro2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_P_VCCP NET0123 VCCP 1K + RPROT_IN_M_VCCP VCCP NET0190 1K + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RO2_1 VREF VB_2 {Ro2_1} + R1_REF NET0210 NET0250 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R1 VB VREF {R1} + RPROT_IN_M_VCCN VCCN NET0192 15K + R2_REF NET0250 NET0238 1Meg + RPROT_IN_P_VCCN NET096 VCCN 15K + + *Eldo: + *G_ICCSAT_OUTLOW VCCP VCCN VALUE={VALIF(I(V_OUTVLIM_LOW)>1u , + *+V(Icc_out_low) , 0)} + *PSpice: + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , + +V(Icc_out_low) , 0)} + + *Eldo: + *G_IOUT_SOUCED VCCP 0 VALUE={VALIF(I(VreadIo)>0, I(VreadIo),0)} + *G_ICCSAT_OUTHIGH VCCP VCCN VALUE={VALIF(I(V_OUTVLIM_HIGH)>1u , + *+V(Icc_out_high), 0)} + *PSpice: + G_IOUT_SOUCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , + +V(Icc_out_high), 0)} + + G_I_VB VB_2 VREF POLY(1) VB VREF 7.773528173127232E-19 ++0.010310813241023556 0 0.1401392933601382 + GM1 VREF VB VOUT_DIFF 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN +6.321735294117647E-4 +++5.570588235294106E-5 -5.294117647058808E-6 + + *Eldo: + *G_IOUT_SINKED VCCN 0 VALUE={VALIF(I(VreadIo)>0, 0, I(VreadIo))} + *PSpice: + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +.PARAM RD=1k +.PARAM Ccomp=8.5p +.PARAM IEE=41.65u +.PARAM A0=97.93103448E3 +.PARAM Ro=17587.2 +.PARAM W=20u +.PARAM L=2u +.PARAM gm_mos=0.0004565941678681337 +.PARAM GB=11m +.PARAM Ro1=11 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DX D LEVEL=1 MODTYPE=ELDO IS=1E-14 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL DX D LEVEL=1 IS=1E-14 + +.ENDS TSV91X + +**************************************************************************** +**** +**** TSV99X Spice macromodel subckt +**** +*** Version 2.1 (April 2015) +**** +*********** CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSV99X VP VM VCCP VCCN VS + HILIM_ICCN NET0477 0 V_OUTVLIM_LOW 235 + HILIM_ICCP NET0437 0 V_OUTVLIM_HIGH -235 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0158 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V_OUTVLIM_LOW NET0372 NET0373 DC -770m + VVLIM_LOW_VB NET0109 NET0110 DC -770m + VREADIO NET0481 VS DC 0 + VOS NET0158 VP DC 0 + VPROT_IN_P_VCCP NET0123 NET0134 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC -360m + VVLIM_HIGH_VB NET0180 NET0153 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC -500m + VPROT_IN_M_VCCN NET0116 NET0192 DC {V_DPROT} + VPROT_IN_P_VCCN NET0115 NET096 DC {V_DPROT} + VPROT_IN_M_VCCP NET0190 NET0135 DC {V_DPROT} + V_OUTVLIM_HIGH NET0397 NET0375 DC -770m + DILIM_ICCN NET0402 VB_3 DIODE_ILIM + DVLIM_HIGH_VB VB NET0180 DIODE_VLIM + DPROT_IN_M_VCCP VM NET0135 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + D_OUTVLIM_LOW NET0373 VB_3 DIODE_VLIM + DVLIM_LOW_VB NET0110 VB DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_HIGH VB_3 NET0397 DIODE_VLIM + DILIM_ICCP VB_3 NET0395 DIODE_ILIM + DPROT_IN_M_VCCN NET0116 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0158 NET0134 DIODE_VLIM + DPROT_IN_P_VCCN NET0115 NET0158 DIODE_VLIM + CGATE_VM_PARASITIC VM VREF 7p + CGATE_VP_PARASITIC VP VREF 7p + CCOMP VB VB_2 {Ccomp} + CBD2_PARASITIC VO_DIFF_MINUS VCCN_ENHANCED 7p + CGD2_PARASITIC VO_DIFF_MINUS VM 200.0f + CBD1_PARASITIC VO_DIFF_PLUS VCCN_ENHANCED 7p + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 200.0f + CGD1_PARASITIC VO_DIFF_PLUS NET0158 200.0f + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 0.0023261764705882347 ++-5.5705882352941006E-5 5.294117647058802E-6 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EVLIM_HIGH_VB NET0153 0 VCCP 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ 174.5 -5000*I(VreadIo)} + EVLIM_LOW_VB NET0109 0 VCCN 0 1.0 + + *Eldo: + *E_RO1_VOL RO1_VOL 0 PWL(1) VCCP VCCN ( 2.5 , 14 ) ( 3.3 , 11 ) ( 5.0 , 7.5 ) + *PSpice: + *E_RO1_VOL RO1_VOL 0 VALUE={TABLE(V(VCCP,VCCN), 2.5 , 14 , 3.3 , 11 , 5.0 , 7.5 )} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 28.955882352941185 ++-7.673529411764715 0.6764705882352953 + + E2_REF NET0238 0 VCCN 0 1.0 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ -159.5 -5000*I(VreadIo)} + + *Eldo: + *E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 + *+VALUE={VALIF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + *PSpice: + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 + +VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 0.0023261764705882347 ++-5.5705882352941006E-5 5.294117647058802E-6 + E_VREF VREF 0 NET0250 0 1.0 + + *Eldo: + *E_RO1_VOH RO1_VOH 0 PWL(1) VCCP VCCN ( 2.5 , 14 ) ( 3.3 , 11 ) ( 5.0 , 7.5 ) + *PSpice: + *E_RO1_VOH RO1_VOH 0 VALUE={TABLE(V(VCCP,VCCN), 2.5 , 14 , 3.3 , 11 , 5.0 , 7.5 )} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 28.955882352941185 ++-7.673529411764715 0.6764705882352953 + + *Eldo: + *E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={VALIF( abs(I(VreadIo))<1m , 0 , + *+V(val_vdep_source_filtered))} + *PSpice: + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , + +V(val_vdep_source_filtered))} + + EILIM_ICCP NET0395 NET0437 VB_3 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EILIM_ICCN NET0402 NET0477 VB_3 0 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + + *Eldo: + *E_RO1 VB_3 NET0481 VALUE={VALIF(I(VreadIo)>0, + *+V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + *E_VDEP_SINK_3 VDEP_SINK 0 VALUE={VALIF( abs(I(VreadIo))<1m , 0 , + *+V(val_vdep_sink_filtered))} + *PSpice: + E_RO1 VB_3 NET0481 VALUE={IF(I(VreadIo)>0, + +V(Ro1_Voh)*I(VreadIo),V(Ro1_Vol)*I(VreadIo))} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , + +V(val_vdep_sink_filtered))} + + E1_REF NET0210 0 VCCP 0 1.0 + EVLIM_LOW_VOUT NET0372 0 VCCN 0 1.0 + + *Eldo: + *E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 + *+VALUE={VALIF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + *PSpice: + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 + +VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + + EVLIM_HIGH_VOUT NET0375 0 VCCP 0 1.0 + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_P_VCCP NET0123 VCCP 15K + RPROT_IN_M_VCCP VCCP NET0190 15K + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RO2_1 VREF VB_2 {Ro2_1} + R1_REF NET0210 NET0250 1Meg + RO2_2 VB_3 VB_2 {Ro2_2} + R1 VB VREF {R1} + RPROT_IN_M_VCCN VCCN NET0192 15K + R2_REF NET0250 NET0238 1Meg + RPROT_IN_P_VCCN NET096 VCCN 15K + + *Eldo: + *G_IOUT_SOUCED VCCP 0 VALUE={VALIF(I(VreadIo)>0, I(VreadIo),0)} + *G_ICCSAT_OUTLOW VCCP VCCN VALUE={VALIF(I(V_OUTVLIM_LOW)>1u , + *+V(Icc_out_low) , 0)} + *G_ICCSAT_OUTHIGH VCCP VCCN VALUE={VALIF(I(V_OUTVLIM_HIGH)>1u , + *+V(Icc_out_high), 0)} + *G_IOUT_SINKED VCCN 0 VALUE={VALIF(I(VreadIo)>0, 0, I(VreadIo))} + *PSpice: + G_IOUT_SOUCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , + +V(Icc_out_low) , 0)} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , + +V(Icc_out_high), 0)} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + G_I_VB VB_2 VREF POLY(1) VB VREF 7.773528173127232E-19 + +0.010310813241023556 0 0.1401392933601382 + GM1 VREF VB VOUT_DIFF 0 {1/RD} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 6.380235294117639E-4 ++5.570588235294159E-5 -5.294117647058884E-6 + +.PARAM RD=1k +.PARAM Ccomp=3.4p +.PARAM IEE=35.8u +.PARAM W=25u +.PARAM L=2u +.PARAM gm_mos=0.0004733346976081021 +.PARAM A0=97.93103448E3 +.PARAM Ro=17587.2 +.PARAM GB=11m +.PARAM Ro1=11 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={Ro - Ro2_2 - Ro1} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m + +*Eldo: +*.MODEL MOS_N NMOS LEVEL=1 MODTYPE=ELDO VTO=+0.65 KP=500E-6 +*.MODEL DIODE_VLIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DIODE_ILIM D LEVEL=1 MODTYPE=ELDO IS=0.8E-15 +*.MODEL DX D LEVEL=1 MODTYPE=ELDO IS=1E-14 +*PSpice: +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +.MODEL DX D LEVEL=1 IS=1E-14 + +.ENDS TSV99X + + +**************************************************************************** +**** +*** TSX56X PSpice macromodel subckt +*** +*** May 2013 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX56X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VREADI_R1 VB NET0258 DC 0 + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0313 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET206 NET207 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 245p + COUT NET0410 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 17p + CCOMP VB VB_2 {CCOMP} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.5174460461617727 ++-0.5741165910746409 0.09394019966148968 -0.007879019994214111 ++3.3180047630118603E-4 -5.581775770848527E-6 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0313 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.6556409789094475 + 0.1060378621448461*V(Vccp,Vccn) ++-0.012692392861218111*PWR(V(Vccp,Vccn),2) + ++(+6.767693862708171E-4)*PWR(V(Vccp,Vccn),3) + ++(-1.335444498638336E-5)*PWR(V(Vccp,Vccn),4) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 360.32981298600623 ++-93.20220133758167 10.597787073851153 -0.5404939450507289 ++0.010250284253020337 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 574.2167880171314 ++-146.32379926231445 16.089768762730312 -0.7889765895679399 ++0.014429650650555324 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -37.09564613246879 + ++14.276811655227597*V(Vccp,Vccn) + 1.0084635142532317*PWR(V(Vccp,Vccn),2) ++) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 7*( 1 - ++exp(-abs(V(v_Io_val))/10m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 1.471150909104576E-4 +++3.076708278316671E-5 -3.831700703526984E-6 2.1178797105705115E-7 ++-4.302734331315858E-9 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX56X subckt: +* +.PARAM VCC_MIN=1.0 +.PARAM RINCM=2.0827E+11 +.PARAM CINCM=1.7878E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=1f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=8.74m +.PARAM Ro = 429536 +.PARAM A0_source = 6729766 +.PARAM A0_sink = 6729766 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5.39p +.PARAM IEE=6u +.PARAM W=0.317u +.PARAM L=1u +.PARAM gm_mos=3.0846E-05 +.PARAM Lout = 300u +.PARAM Rout = 450 +.PARAM Cout = 10n +.PARAM Cout2 = 9p +.PARAM Zout_Iout_coeff_MIN= 0.8 +.PARAM Iout_dc_tau__source = 0.3m +.PARAM Iout_dc_tau__sink = 0.3m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX56X + +**************************************************************************** +**** +*** TSX63X Spice macromodel subckt +*** +*** February 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX63X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 VP DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0341 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 10p + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 225p + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0341 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VOUT_DIFF 0 1 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 359.0289837257432 ++-99.19724864708631 12.629932015104508 -0.7291576867748092 ++0.015648577785370054 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 532.6471144805088 ++-139.5635711881178 16.56856830915354 -0.8778272267854438 ++0.017095899327075923 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -33.180068854430914 + ++12.062434050640288*V(Vccp,Vccn) + 1.3688746046180766*PWR(V(Vccp,Vccn),2) ++-0.01483173211377962*PWR(V(Vccp,Vccn),3) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 20*( 1 - ++exp(-abs(V(v_Io_val))/1.5m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN VALUE={44.5e-6} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX631 subckt: +* +.PARAM VCC_MIN=3.0 +.PARAM RINCM=2.4986E+11 +.PARAM CINCM=2.3556E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.4990E+11 +.PARAM CINDIFF=1.2495E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=0.794m +.PARAM Ro = 2.0996e+06 +.PARAM A0_source = 1.5e+6 +.PARAM A0_sink = 5e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=4.12p +.PARAM IEE=500n +.PARAM W=0.11u +.PARAM L=1u +.PARAM gm_mos=5.2469E-06 +.PARAM Lout = 140u +.PARAM Rout = 2400 +.PARAM Cout = 0.5n +.PARAM Cout2 = 8p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.37 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX63X +*** End of subcircuit definition. + + + +**************************************************************************** +**** +*** TSX71X Spice macromodel subckt +*** +*** April 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX71X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 VP DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0332 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 2.85n + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 100f + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.666666666666666 ++-0.06833333333333334 0.001666666666666667 + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0332 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.9466666666666662 + 0.0033333333333333344*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 29.666666666666664 ++-1.1666666666666667 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 34.166666666666664 ++-2.8749999999999996 0.1458333333333333 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( 97.27777777777767 + ++40.69444444444446*V(Vccp,Vccn) -1.597222222222223*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 3*( 1 - ++exp(-abs(V(v_Io_val))/1m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 5.013333333333333E-4 ++1.583333333333331E-5 -4.166666666666653E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX71X subckt: +* +.PARAM VCC_MIN=2.7 +.PARAM RINCM=2.4977E+11 +.PARAM CINCM=2.0174E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3644E+11 +.PARAM CINDIFF=4.2310E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=146m +.PARAM Ro = 2.1884E+05 +.PARAM A0_source = 4e+8 +.PARAM A0_sink = 4e+8 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=10.2p +.PARAM IEE=12u +.PARAM W=5u +.PARAM L=1u +.PARAM gm_mos=1.7333E-04 +.PARAM Lout = 100u +.PARAM Rout = 200 +.PARAM Cout = 15n +.PARAM Cout2 = 4.5p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.5 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX71X + +**************************************************************************** +**** +*** TSX7191 Spice macromodel subckt +*** +*** April 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX7191 VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 VP DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0322 VS DC 0 + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 100f + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 59p + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 2.977777777777778 ++-0.20138888888888884 0.004861111111111108 + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0322 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.908444444444444 + 0.005277777777777783*V(Vccp,Vccn) + ++2.7777777777777423E-5*PWR(V(Vccp,Vccn),2) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 29.666666666666664 ++-1.1666666666666667 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 34.166666666666664 ++-2.8749999999999996 0.1458333333333333 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( 97.27777777777767 + ++40.69444444444446*V(Vccp,Vccn) -1.597222222222223*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 3*( 1 - ++exp(-abs(V(v_Io_val))/1m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={1p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 5.013333333333333E-4 ++1.583333333333331E-5 -4.166666666666653E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={1p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX7191 subckt: +* +.PARAM VCC_MIN=2.7 +.PARAM RINCM=2.4977E+11 +.PARAM CINCM=2.0174E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=2.3644E+11 +.PARAM CINDIFF=4.2310E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=76.7m +.PARAM Ro = 4.7275E+05 +.PARAM A0_source = 4e+8 +.PARAM A0_sink = 4e+8 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=5p +.PARAM IEE=12u +.PARAM W=11.35u +.PARAM L=1u +.PARAM gm_mos=2.6125E-04 +.PARAM Lout = 80u +.PARAM Rout = 400 +.PARAM Cout = 10n +.PARAM Cout2 = 3.5p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.03m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.5 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX7191 + +**************************************************************************** +**** +*** TSX92X_SHDN (WITH STAND-BY) Spice macromodel subckt +*** +*** February 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | STAND-BY +**** | | | | | | +.SUBCKT TSX92X_SHDN VP VM VCCP VCCN VS STB + FIOUT 0 VZOUT VREADIO 1.0 + LOUT VZOUT 0 {LOUT} + S_SW_OUT VS_STB VS VSTB_CTRL 0 SW_OUT + S_SW_LEAK VS 0 VSTB_CTRL 0 SW_LEAK + S_SW_VB2_VS VB_2 NET0220 VSTB_CTRL 0 SW_VB2_VS + S_SW_VB_VREF VB NET0224 VSTB_CTRL 0 SW_VB_VREF + G_IEE_STB VEE_N VCCN_ENHANCED POLY(2) VSTB_CTRL 0 IEE_val 0 0 0 0 0 1 + G_ICC_STB VCCP VCCN POLY(2) VSTB_CTRL 0 Icc_val 0 0 0 0 0 1 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G2_ICC_STB VCCP VCCN VALUE={ICC_STB*( 1-V(VSTB_ctrl) )} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high)*V(VSTB_ctrl), 0)} + G_IIB_VP VREF VP VALUE={10p} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low)*V(VSTB_ctrl) , 0)} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={10p} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 3*( 1 - ++exp(-abs(V(v_Io_val))/10m )) ) } + G_ISTB 0 STB VALUE={ Iil_STB*(1-V(VSTB_one)) -Iih_STB*V(VSTB_one)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + R1_REF NET287 NET247 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RPROT_IN_M_VCCN VCCN NET243 15K + R2_REF NET247 NET241 1Meg + RPROT_IN_P_VCCN NET406 VCCN 15K + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0360 50 + RO2_2 VB_3 VB_2 {RO2_2} + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RPROT_IN_M_VCCP VCCP NET253 100 + RPROT_IN_P_VCCP NET421 VCCP 100 + ROUT NET0325 VZOUT {ROUT} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_DIFF VP VM {RIN_DIFF} + RIN_CM_VM VREF VM {RIN_CM_VM} + RO2_1 VB_2 VREF {RO2_1} + E3 VIL_STB_VAL 0 POLY(1) VCCP VCCN 0.142345652173913 ++-0.006943478260869564 + E7 RSTB_CTRL_ON 0 POLY(1) VCCP VCCN 34287.18902580794 ++-6253.674210132004 414.8292386783427 -9.283370792322165 + E64 VOH_NORL 0 VALUE={0} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + ESTB VSTB_ONE 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) >= ++V(VIH_STB_val) , 1 , V(VSTB_zero) )} + E5 NET0387 VSTB_ONE VALUE={I(VreadI_RSTB_ctrl)*( ++V(RSTB_ctrl_on)*V(VSTB_one) + V(RSTB_ctrl_off)*( 1.0 - V(VSTB_one)) ) } + E0 VSTB_ZERO 0 VALUE={IF( (V(STB,Vccn)/V(Vccp,Vccn)) <= ++V(VIL_STB_val) , 0 , 0.5 )} + E_VOL_NORL VOL_NORL 0 VALUE={0} + E6 RSTB_CTRL_OFF 0 POLY(1) VCCP VCCN 1745.6324110671937 ++-162.26943346508568 4.670619235836628 + EREAD_VS NET0220 0 VS 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 57.50988142292495 ++-3.789064558629788 0.24914361001317642 -0.005533596837944699 + EREAD_VREF NET0224 0 VREF 0 1.0 + E2 VIH_STB_VAL 0 POLY(1) VCCP VCCN 0.8591847826086954 ++0.006847826086956529 + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + EZOUT VB_3 NET0413 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E62 NET0263 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + E2_REF NET241 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_R1 NET311 VREF VALUE={I(VreadI_R1)*( R1_sink +++(R1_source-R1_sink)*1/(1+exp(-alpha_switch*(V(v_Io_val)-Io_val_switch) ) ++)) } + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_VREF VREF 0 NET247 0 1.0 + E60 NET0378 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + EVLIM_LOW_VOUT NET411 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VOUT_DIFF 0 1 + EZOUT_IOUT_COEFF NET0360 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + EVLIM_HIGH_VOUT NET408 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo) - ++V(VOH_noRL)} + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={10p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RIN_DIFF VP VM {RIN_DIFF} + RPROT_IN_P_VCCP NET403 VCCP 100 + RO2_1 VB_2 VREF {RO2_1} + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0285 50 + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + ROUT NET0254 VZOUT {ROUT} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {RO2_2} + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 57.50988142292495 ++-3.789064558629788 0.24914361001317642 -0.005533596837944699 + E4 RO1_VOL 0 POLY(1) VCCP VCCN 52.31620553359682 -3.718050065876152 ++0.16864295125164686 + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 171.84387351778656 ++-75.135046113307*V(Vccp,Vccn) + 3.050065876152833*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -388.1284584980241 + ++133.78129117259556*V(Vccp,Vccn) -5.401844532279315*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + E_VOL_NORL VOL_NORL 0 VALUE={0} + E60 NET0296 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E64 VOH_NORL 0 VALUE={0} + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo) - ++V(VOH_noRL)} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)=0, 0, V(val_vdep_source))} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( V(Vccp,Vccn)=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VREF VREF 0 NET235 0 1.0 + E62 NET0443 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VOUT_DIFF 0 1 + C_RO2_1 VB_2 VREF 6.5p + COUT NET0254 0 {COUT} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {COUT2} + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {CCOMP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 2.1p + D29 NET0441 VB DIODE_NOVd + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D28 VB NET0425 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + V57 NET0296 NET0441 DC {VD_COMPENSAZIONE} + V56 NET0425 NET0443 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VREADIO NET0207 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + V_OUTVLIM_LOW NET393 NET394 DC {VD_COMPENSAZIONE} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX921 subckt: +* +.PARAM VCC_MIN=4.0 +.PARAM RINCM=1T +.PARAM CINCM=8E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=10f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=5.19m +.PARAM Ro = 3.3658E+04 +.PARAM A0_source = 2e+7 +.PARAM A0_sink = 1.5e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=2.9p +.PARAM IEE=50u +.PARAM W=1.4u +.PARAM L=1u +.PARAM gm_mos=1.8712E-04 +.PARAM Lout = 0.8u +.PARAM Rout = 350 +.PARAM Cout = 3n +.PARAM Cout2 = 7p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.21m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.5 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX92X +*** End of subcircuit definition. + + +**************************************************************************** +**** +*** TSX929X Spice macromodel subckt +*** +*** February 2014 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX929X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 0.002348418972332015 ++1.4525691699604747E-4 -7.509881422924904E-6 + G_IIB_VM VREF VM VALUE={10p} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={10p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 3*( 1 - ++exp(-abs(V(v_Io_val))/10m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT_OUTLOW VCCP VCCN VALUE={IF(I(V_OUTVLIM_LOW)>1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + RIN_CM_VP VREF VP {RIN_CM_VP} + RIN_CM_VM VREF VM {RIN_CM_VM} + RIN_DIFF VP VM {RIN_DIFF} + RPROT_IN_P_VCCP NET403 VCCP 100 + RO2_1 VB_2 VREF {RO2_1} + RPROT_IN_M_VCCP VCCP NET241 100 + RD1 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RZOUT_IOUT_COEFF VZOUT_IOUT_COEFF NET0285 50 + RD2 VCCP_ENHANCED VO_DIFF_MINUS {RD} + ROUT NET0254 VZOUT {ROUT} + R1_REF NET271 NET235 1Meg + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R2_REF NET235 NET229 1Meg + RPROT_IN_M_VCCN VCCN NET231 15K + RPROT_IN_P_VCCN NET388 VCCN 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RO2_2 VB_3 VB_2 {RO2_2} + E_VOL_NORL VOL_NORL 0 VALUE={0} + E60 NET0296 0 VALUE={V(Vref) - alpha_desat_time*V(Vccp,Vccn) } + E64 VOH_NORL 0 VALUE={0} + EVLIM_HIGH_VOUT NET390 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo) - ++V(VOH_noRL)} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)=0, 0, V(val_vdep_source))} + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( V(Vccp,Vccn)=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + E_VREF VREF 0 NET235 0 1.0 + E62 NET0443 0 VALUE={V(Vref) + alpha_desat_time*V(Vccp,Vccn) } + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VOUT_DIFF 0 1 + COUT NET0254 0 {COUT} + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + CIN_DIFF VM VP {CIN_DIFF} + CIN_CM_VM VM VREF {CIN_CM_VM} + COUT2 VZOUT 0 {COUT2} + CIN_CM_VP VP VREF {CIN_CM_VP} + CCOMP VB VB_2 {CCOMP} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 3.3p + C_RO2_1 VB_2 VREF 10f + D29 NET0441 VB DIODE_NOVd + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D28 VB NET0425 DIODE_NOVd + D_OUTVLIM_HIGH VB_3 NET364 DIODE_NOVd + DPROT_IN_P_VCCN NET387 NET405 DIODE_VLIM + DPROT_IN_M_VCCP VM NET380 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCP NET405 NET370 DIODE_VLIM + DPROT_IN_M_VCCN NET391 VM DIODE_VLIM + D_OUTVLIM_LOW NET394 VB_3 DIODE_NOVd + V57 NET0296 NET0441 DC {VD_COMPENSAZIONE} + V56 NET0425 NET0443 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET387 NET388 DC {V_DPROT} + VREADI_R1 VB NET295 DC 0 + VPROT_IN_P_VCCP NET403 NET370 DC {V_DPROT} + VOS NET405 VP DC 0 + V_OUTVLIM_HIGH NET364 NET390 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCP NET241 NET380 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VREADIO NET0207 VS DC 0 + VPROT_IN_M_VCCN NET391 NET231 DC {V_DPROT} + V_OUTVLIM_LOW NET393 NET394 DC {VD_COMPENSAZIONE} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET405 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSX9291 subckt: +* +.PARAM VCC_MIN=4.0 +.PARAM RINCM=1T +.PARAM CINCM=8E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RIN_DIFF=1T +.PARAM CIN_DIFF=10f +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=3m +.PARAM Ro = 3.3658E+04 +.PARAM A0_source = 2e+7 +.PARAM A0_sink = 1.5e+6 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=1.79p +.PARAM IEE=50u +.PARAM W=1.41u +.PARAM L=1u +.PARAM gm_mos=1.8779E-04 +.PARAM Lout = 0.8u +.PARAM Rout = 350 +.PARAM Cout = 3n +.PARAM Cout2 = 7p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.21m +.PARAM Iout_dc_tau__sink = 0.03m +.PARAM alpha_desat_time = 0.5 +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2 } +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSX929X + +**************************************************************************** +**** +*** TSZ12X Spice macromodel subckt +*** +*** September 2013 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSZ12X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET194 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VVLIM_LOW_VB NET192 NET193 DC -770m + VOS NET194 VP DC 0 + VPROT_IN_P_VCCP NET196 NET229 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0313 VS DC 0 + VVLIM_HIGH_VB NET217 NET203 DC -770m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET206 NET207 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET208 NET360 DC {V_DPROT} + V_OUTVLIM_HIGH NET235 NET211 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET212 NET213 DC {V_DPROT} + VPROT_IN_M_VCCP NET348 NET219 DC {V_DPROT} + DVLIM_HIGH_VB VB NET217 DIODE_VLIM + DPROT_IN_M_VCCP VM NET219 DIODE_VLIM + DVLIM_LOW_VB NET193 VB DIODE_VLIM + DPROT_IN_M_VCCN NET208 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET207 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET194 NET229 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET212 NET194 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET235 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 1.2n + COUT NET0410 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 2p + CCOMP VB VB_2 {CCOMP} + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 POLY(1) VCCP VCCN 1.8362728537360917 ++-0.4613119971575888 0.0846310883075601 -0.0051639206050971935 + EZOUT_IOUT_COEFF NET0295 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0313 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.27501150296278326 + 0.8286956472979377*V(Vccp,Vccn) ++-0.3769832162624067*PWR(V(Vccp,Vccn),2) + ++0.0852740909465122*PWR(V(Vccp,Vccn),3) ++-0.009588582374966497*PWR(V(Vccp,Vccn),4) + ++(4.2870011729922677E-4)*PWR(V(Vccp,Vccn),5) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 62.47426470588232 ++-4.104166666666657 0.28186274509803794 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 89.69852941176467 -15.125 ++1.3970588235294117 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={ ( 357.60726351349297 ++-412.65484234231866*V(Vccp,Vccn) + 140.89480105104104*PWR(V(Vccp,Vccn),2) ++ -21.11486486486304*PWR(V(Vccp,Vccn),3) + ++1.1730480480479284*PWR(V(Vccp,Vccn),4) ) -5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET211 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET206 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 10*( 1 - ++exp(-abs(V(v_Io_val))/0.2m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM POLY(1) VCCP VCCN 3.654411764705885E-11 ++7.91666666666665E-12 -2.450980392156842E-13 + G_ICC VCCP VCCN POLY(1) VCCP VCCN 2.5746323529411758E-5 ++-1.458333333333355E-7 1.5931372549019658E-7 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP POLY(1) VCCP VCCN 3.654411764705885E-11 ++7.91666666666665E-12 -2.450980392156842E-13 + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSZ12X subckt: +* +.PARAM VCC_MIN=1.5 +.PARAM RINCM=4.9961E+10 +.PARAM CINCM=1.2533E-11 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RINDIFF=1.8019E+09 +.PARAM CINDIFF=7.5304E-12 +.PARAM RIN_DIFF={(2*RINCM*RINDIFF)/(2*RINCM - RINDIFF)} +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=10m +.PARAM Ro = 1.1229E+05 +.PARAM A0=1e+7 +.PARAM Ccomp=10.04p +.PARAM IEE=2u +.PARAM W=0.81u +.PARAM L=1u +.PARAM gm_mos=2.8481E-05 +.PARAM Lout = 10m +.PARAM Rout = 1300 +.PARAM Cout = 20n +.PARAM Cout2 = 0.7p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 0.3m +.PARAM Iout_dc_tau__sink = 0.3m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1={A0/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TSZ12X +*** End of subcircuit definition. + + +**************************************************************************** +**** +*** TSZ181 Eldo macromodel subckt +*** +*** January 2017 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSZ18X VP VM VCCP VCCN VS + LOUT VZOUT 0 {LOUT} + FIOUT 0 VZOUT VREADIO 1.0 + M_NMOS2 VO_DIFF_MINUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_PLUS NET0283 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + VD_DN1 NET0247 0 DC 100.0m + V57 NET0242 NET0244 DC {VD_COMPENSAZIONE} + VREADI_R1 VB NET386 DC 0 + V56 NET0280 NET0254 DC {VD_COMPENSAZIONE} + VOS NET0283 NET0319 DC 0 + VPROT_IN_P_VCCP NET246 NET279 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VREADIO NET0346 VS DC 0 + VD_DN2 NET0249 0 DC 100.0m + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + V_OUTVLIM_LOW NET256 NET257 DC {VD_COMPENSAZIONE} + VPROT_IN_M_VCCN NET258 NET448 DC {V_DPROT} + V_OUTVLIM_HIGH NET285 NET261 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCN NET262 NET263 DC {V_DPROT} + VPROT_IN_M_VCCP NET434 NET269 DC {V_DPROT} + D29 NET0244 VB DIODE_NOVd + D28 VB NET0280 DIODE_NOVd + DN2 NET0249 VN_MINUS DN + DN1 NET0247 VN_PLUS DN + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + DPROT_IN_M_VCCN NET258 VM DIODE_VLIM + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D_OUTVLIM_LOW NET257 VB_3 DIODE_NOVd + DPROT_IN_P_VCCP NET0283 NET279 DIODE_VLIM + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + DPROT_IN_P_VCCN NET262 NET0283 DIODE_VLIM + D_OUTVLIM_HIGH VB_3 NET285 DIODE_NOVd + CZOUT_IOUT_COEFF VZOUT_IOUT_COEFF 0 1n + COUT2 VZOUT 0 {COUT2} + CIN_CM_VM VM VREF {CIN_CM_VM} + CIN_CM_VP VP VREF {CIN_CM_VP} + CIN_DIFF VM VP {CIN_DIFF} + C_RO2_1 VB_2 VREF 40p + COUT NET427 0 {COUT} + CDIFF_PARASITIC VO_DIFF_PLUS VO_DIFF_MINUS 9p + CCOMP VB VB_2 {CCOMP} + E60 NET0242 0 VALUE={V(Vref) - V(alpha_desat_time)*V(Vccp,Vccn) } + E62 NET0254 0 VALUE={V(Vref) + V(alpha_desat_time)*V(Vccp,Vccn) } + EZOUT_VCC_COEFF VZOUT_VCC_COEFF 0 VALUE={1} + EZOUT_IOUT_COEFF NET310 0 VALUE={IF( I(VreadIo)>=0 , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__source)) ) , ( ++Zout_Iout_coeff_MIN + (1.0 - ++Zout_Iout_coeff_MIN)*exp(-abs(I(VreadIo)/Iout_dc_tau__sink)) ) )} + EZOUT VB_3 NET0346 ++VALUE={V(VZout)*V(VZout_Iout_coeff)*V(VZout_Vcc_coeff)} + E_SR_VCC_MODULATION VOUT_DIFF__SR_VCC 0 VALUE={V(Vout_diff)*( ++0.54936974789916 + 0.17320473644003018*V(Vccp,Vccn) + ++(-0.016615737203972452)*V(Vccp,Vccn)*V(Vccp,Vccn) )} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={0} + E_RO1_VOL RO1_VOL 0 POLY(1) VCCP VCCN 206.94327731092375 ++-77.55277565571632 13.207514410722826 -0.7749380744033024 + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={0} + E_READIO V_IO_VAL 0 VALUE={I(VreadIo)} + E58 VB_2_VREF 0 VB_2 VREF 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + EN NET0319 VP VN_PLUS VN_MINUS 1.0 + E_RO1_VOH RO1_VOH 0 POLY(1) VCCP VCCN 295.7100840336127 ++-99.54583651642409 13.969720119452553 -0.5937912355024489 + EMEAS_VB_VREF VB_VREF 0 VB VREF 1.0 + EMEAS_VOUT_DIFF VOUT_DIFF 0 VO_DIFF_PLUS VO_DIFF_MINUS 1.0 + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={ ( -26.23529411764716 + ++13.435828877*V(Vccp,Vccn) + 3.342245989304806*PWR(V(Vccp,Vccn),2) ) ++-5000*I(VreadIo)} + EVLIM_HIGH_VOUT NET261 0 VALUE={V(VCCP) - V(Ro1_Voh)*I(VreadIo)} + EVLIM_LOW_VOUT NET256 0 VALUE={V(VCCN) - V(Ro1_Vol)*I(VreadIo) + ++V(VOL_noRL) } + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( V(Vccp,Vccn)1u , ++V(Icc_out_low) , 0)} + G_I_VB VB_2 VREF VB_VREF 0 {GB} + G_I_IO VB_2 VREF VALUE={V(VB_Vref)*GB*( 5*( 1 - ++exp(-abs(V(v_Io_val))/0.2m )) ) } + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + GM1 VREF VB VOUT_DIFF__SR_VCC 0 {1/RD} + G_IIB_VM VREF VM VALUE={30p} + G_ICC VCCP VCCN POLY(1) VCCP VCCN 4.660809280233866E-4 ++2.0218817882884096E-4 -7.35020094994511E-5 8.908227322549483E-6 + G_ICCSAT_OUTHIGH VCCP VCCN VALUE={IF(I(V_OUTVLIM_HIGH)>1u , ++V(Icc_out_high), 0)} + G_IIB_VP VREF VP VALUE={30p} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TSZ181 subckt: +* +.PARAM VCC_MIN=1.5 +.PARAM RINCM=4.9961E+10 +.PARAM CINCM=2.7768E-12 +.PARAM RIN_CM_VM={2*RINCM} +.PARAM RIN_CM_VP={2*RINCM} +.PARAM CIN_CM_VM={CINCM/2} +.PARAM CIN_CM_VP={CINCM/2} +.PARAM RIN_DIFF=1T +.PARAM CINDIFF=2.4130E-12 +.PARAM CIN_DIFF={CINDIFF - CINCM/2} +.PARAM RD=1k +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM GB=9.817m +.PARAM Ro = 14125 +.PARAM A0_source = 0.4e+7 +.PARAM A0_sink = 0.4e+7 +.PARAM alpha_switch = 1e6 +.PARAM Io_val_switch = -7u +.PARAM Ccomp=10p +.PARAM IEE=47u +.PARAM W=1.57u +.PARAM L=1u +.PARAM gm_mos=1.9212E-04 +.PARAM Lout = 0.5u +.PARAM Rout = 650 +.PARAM Cout = 0.01n +.PARAM Cout2 = 0.4p +.PARAM Zout_Iout_coeff_MIN= 1.0 +.PARAM Iout_dc_tau__source = 3m +.PARAM Iout_dc_tau__sink = 3m +.PARAM Ro2_2=1e-3 +.PARAM Ro2_1={ Ro - Ro2_2} +.PARAM R1_sink={A0_sink/(gm_mos*GB*Ro2_1)} +.PARAM R1_source={A0_source/(gm_mos*GB*Ro2_1)} +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.PARAM RN=4.5e+04 +.MODEL DN D AF=1 KF=0 + +.MODEL R_NO_NOISE RES T_ABS=-273 +.MODEL R_NOISE RES T_ABS=+27 +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=500E-6 T_ABS=+27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* +.ENDS TSZ18X +*** End of subcircuit definition. + + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT UA741 2 1 4 5 3 +********************************************************** +.MODEL MDTH D IS=1E-8 KF=8.68230E-16 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.625000E+01 +RIN 15 16 1.625000E+01 +RIS 11 15 6.310822E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0 +VOFN 13 14 DC 0 +IPOL 13 5 1.600000E-05 +CPS 11 15 8.700201E-10 +DINN 17 13 MDTH 400E-12 +VIN 17 5 3.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 3.000000E+00 +FCP 4 5 VOFP 1.052500E+02 +FCN 5 4 VOFN 1.052500E+02 +FIBP 2 5 VOFP 1.250000E-03 +FIBN 5 1 VOFN 1.250000E-03 +* AMPLIFYING STAGE +FIP 5 19 VOFP 3.750000E+02 +FIN 5 19 VOFN 3.750000E+02 +RG1 19 5 5.256811E+06 +RG2 19 4 5.256811E+06 +CC 19 29 1.200000E-08 +HZTP 30 29 VOFP 5.813295E+02 +HZTN 5 30 VOFN 5.813295E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 4.400000E+03 +VIPM 28 4 1.100000E+02 +HONM 21 27 VOUT 4.400000E+03 +VINM 5 27 1.100000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 90 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 2.25 +DON 24 19 MDTH 400E-12 +VON 24 5 2.25 +.ENDS UA741 + + +* 1 INVERTING INPUT +* 2 NON-INVERTING INPUT +* 3 OUTPUT +* 4 POSITIVE POWER SUPPLY +* 5 NEGATIVE POWER SUPPLY +.SUBCKT UA748 2 1 4 5 3 +******************************************************** +.MODEL MDTH D IS=1E-8 KF=1.025862E-15 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 5 2 5 1 +EIN 16 5 1 5 1 +RIP 10 11 1.625000E+01 +RIN 15 16 1.625000E+01 +RIS 11 15 7.476714E+01 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 5 1.600000E-05 +CPS 11 15 2.5E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 0.000000E+00 +FCP 4 5 VOFP 1.115000E+02 +FCN 5 4 VOFN 1.115000E+02 +FIBP 2 5 VOFP 1.875000E-04 +FIBN 5 1 VOFN 1.875000E-04 +* AMPLIFYING STAGE +FIP 5 19 VOFP 9.375000E+02 +FIN 5 19 VOFN 9.375000E+02 +RG1 19 5 9.981802E+05 +RG2 19 4 9.981802E+05 +CC 19 29 3.000000E-08 +HZTP 30 29 VOFP 5.535733E+02 +HZTN 5 30 VOFN 5.535733E+02 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 5.000000E+03 +VIPM 28 4 1.500000E+02 +HONM 21 27 VOUT 5.000000E+03 +VINM 5 27 1.500000E+02 +EOUT 26 23 19 5 1 +VOUT 23 5 0 +ROUT 26 3 200 +COUT 3 5 1.000000E-12 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.480450E+00 +DON 24 19 MDTH 400E-12 +VON 24 5 1.480450E+00 +.ENDS UA748 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +*========================= +*========================= +* +*COMPARATORS +* +*========================= +*========================= + + +*----------------------------------------------------------------------------------------- +* LM119/LM219/LM319 spice macromodel +* CONNECTIONS : +* 1 NON-INVERTING INPUT +* 2 INVERTING INPUT +* 3 POSITIVE POWER SUPPLY +* 4 NEGATIVE POWER SUPPLY +* 5 OUTPUT +* +********************************************************** +.SUBCKT LMX19 2 1 44 55 33 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 33 DC 0 +R_ICCSAT_HIGH ICC_OUT_HIGH 0 1k +R_ICCSAT_LOW ICC_OUT_LOW 0 1k +G_ICCSAT 44 55 VALUE={IF(V(3)>(V(44)+V(55))/2, V(Icc_out_high), V(Icc_out_low) ) } +E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={4E-4*V(44,55)} +E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={1E-3 + 1E-4*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF (V(1)0 ++,I(VreadIo)*V(Ro_3_val_VOH),I(VreadIo)*V(Ro_3_val_VOL) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + +* E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 1.2 , 177.5 ) ( 2.7 , +*+49.5 ) ( 5.0 , 26.3 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.2 , 177.5 , 2.7 , ++49.5 , 5.0 , 26.3 )} + + E65 NET293 0 VCCN 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={( -28.95537757437066 + ++26.974065598779536*V(Vccp,Vccn) + ++2.14340198321892*V(Vccp,Vccn)*V(Vccp,Vccn)) -5000*I(VreadIo) } + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 2.661441647597253E-7 ++-4.340198321891652E-9 2.822273073989316E-9 + C_VOD_FIXED VB_D_VOD VREF 86p + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -100m , {0.01p/CAP_SCALE} ) ( +*+-75m , {0.1p/CAP_SCALE} ) ( -50m , {45p/CAP_SCALE} ) ( -30m , +*+{20p/CAP_SCALE} ) ( -10m , {2.5p/CAP_SCALE} ) ( -5m , {0.5p/CAP_SCALE} ) ( +*++5m , {0.5p/CAP_SCALE} ) ( +10m , {13p/CAP_SCALE} ) ( +30m , +*+{80p/CAP_SCALE} ) ( +50m , {150p/CAP_SCALE} ) ( +70m , {25p/CAP_SCALE} +*+) ( +100m , {1f/CAP_SCALE} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -100m , 0.01p , ++ -75m , 0.1p , -50m , 45p , -30m , 20p , -10m , 2.5p , -5m , 0.5p , ++ +5m , 0.5p , +10m , 13p , +30m , 80p , +50m , 150p , +70m , 25p , ++ +100m , 1f)/CAP_SCALE} + + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 1.72437070938215E-7 ++1.2204424103740944E-10 1.678108314263917E-9 + +* E_HYST_VAL HYST_VAL 0 PWL(1) VCCP VCCN ( 1.2 , 2.4m ) ( 2.7 , 2.7m ) ( +*+5.0 , 3.1m ) + E_HYST_VAL HYST_VAL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.2 , 2.4m , 2.7 , 2.7m , ++5.0 , 3.1m )} + + E66 NET325 0 VCCP 0 1.0 + +* E_RO_3_VAL_VOH RO_3_VAL_VOH 0 PWL(1) VCCP VCCN ( 1.2 , 228 ) ( 2.7 , +*+74.5 ) ( 5.0 , 29 ) + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.2 , 228 , 2.7 , ++74.5 , 5.0 , 29 )} + + EVLIM_HIGH_VB NET333 0 VCCP 0 1.0 + + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-5 {18p/CAP_scale}) (-2.7 {7p/CAP_scale}) (-1.2 +*+{1f/CAP_scale}) (1.2 {1f/CAP_scale}) (2.7 {8p/CAP_scale}) (5 +*+{14p/CAP_scale}) + E_C_VCC V_VALORI_C_VCC 0 VALUE={IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 1.2 , 1f , 2.7 , 8p , 5 , 14p), + +TABLE( V(VCCP,VCCN), 1.2 , 1f , 2.7 , 7p , 5 , 18p))/CAP_scale} + + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 1.2 , {70.8p/CAP_SCALE} +*+) ( 2.7 , {82p/CAP_SCALE} ) ( 5.0 , {93.8p/CAP_SCALE} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.2 , 70.8p , ++ 2.7 , 82p , 5.0 , 93.8p)/CAP_SCALE} + + EVLIM_LOW_VB NET349 0 VCCN 0 1.0 + E2_REF NET417 0 VCCN 0 1.0 + +* E_VIO VP NET358 PWL(1) VCCP VCCN ( 1.2 , 1m ) ( 2.7 , 1m ) ( 5.0 , 1m +*+) + E_VIO VP NET358 VALUE={1m} + + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET411 0 1.0 + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E1_REF NET373 0 VCCP 0 1.0 + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 1.2 , {62.2p/CAP_SCALE} +*+) ( 2.7 , {75p/CAP_SCALE} ) ( 5.0 , {100p/CAP_SCALE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 1.2 , 62.2p , ++ 2.7 , 75p , 5.0 , 100p)/CAP_SCALE} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={(8.886727688787182 ++-2.780320366132732*V(Vccp,Vccn) ++-6.979405034324943*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + E_HYST NET385 NET358 VALUE={IF( V(Vccp,Vccn)>=VCCMIN , +++V(VS,Vref)/( V(Vccp,Vccn)/V(Hyst_val)) , 0 )} + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET235 VCCP 15K + RPROT_IN_M_VCCP VCCP NET401 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET373 NET411 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET415 15K + R2_REF NET411 NET417 1Meg + RPROT_IN_P_VCCN NET246 VCCN 15K + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + +******************************************************************************* +* +.PARAM CAP_scale=1e-15 +.PARAM VCCMIN=1.0 +.PARAM A0=10E+06 +.PARAM IEE=35n +.PARAM W=0.2u +.PARAM L=1u +.PARAM gm_mos=8.3763E-07 +.PARAM RD=35k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM Ro_1=20 +.PARAM R_rise_fall=1000 +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM V_DPROT=0 +.PARAM Vd_compensazione=-788.4u +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=0.1 CJO=10f +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TS881 + + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED CAPACITOR for SPICE +******************************************************* +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE +********************************************************* + +.SUBCKT TS393 1 2 3 4 5 +********************************************************** +********************** COMPARATOR ******************** +.MODEL MDTH D IS=1E-11 KF=1.050321E-32 CJO=10F +.MODEL DIDEAL D N=0.1 IS=1E-08 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 0 2 0 1 +EIN 16 0 1 0 1 +RIP 10 11 6.500000E+01 +RIN 15 16 6.500000E+01 +RIS 11 15 1.939046E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 0 100E-06 +CPS 11 15 8.5E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.200000E+00 +FCP 4 5 VOFP 0.00 +FCN 5 4 VOFN 0.00 +FIBP 2 0 VOFN 2.000000E-08 +FIBN 0 1 VOFP 2.000000E-08 +* AMPLIFYING STAGE +RG1 5 19 2.8E+05 +RG2 4 19 2.8E+05 +DONM 21 19 MDTH 400E-12 +HONM 21 27 VOUT 3000 +VINM 5 27 135 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.097 +DON 24 19 MDTH 400E-12 +VON 24 5 1.097 +FIP 0 19 VOFP 104 +FIN 0 19 VOFN 104 +EOUT 26 23 19 5 1 +VOUT 23 5 0V +RFUIT 126 5 2.5E+09 +DOUT 126 26 DIDEAL 400E-12 +ROUT 126 3 28.33 +.ENDS +********************************************************* + +**** +*** TS3021 Spice macromodel subckt* +*** December 2007 +**** +************ CONNECTIONS: +**** INVERTING INPUT +**** | NON-INVERTING INPUT +**** | | OUTPUT +**** | | | POSITIVE POWER SUPPLY +**** | | | | NEGATIVE POWER SUPPLY +**** | | | | | +**** | | | | | +.SUBCKT TS302X VM VP VS VCCP VCCN + +****************************** +* Icc +****************************** +* Eldo: +* E_ICCSAT_HIGH ICC_OUT_HIGH 0 PWL(1) VCCP VCCN ( 2 , {64e-6 - IEE} ) ( +* +3.3 , {65e-6 - IEE} ) ( 5 , {67e-6 -IEE} ) +* PSpice: + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={TABLE( V(VCCP,VCCN) , 2 , {64e-6 - IEE} , + + 3.3 , {65e-6 - IEE} , 5 , {67e-6 -IEE} )} +* Eldo: +* E_ICCSAT_LOW ICC_OUT_LOW 0 PWL(1) VCCP VCCN ( 2 , {75e-6 - IEE} ) ( +* +3.3 , {77e-6 - IEE} ) ( 5 , {80e-6 - IEE} ) +* PSpice: + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={TABLE( V(VCCP,VCCN) , 2 , {75e-6 - IEE} , + + 3.3 , {77e-6 - IEE} , 5 , {80e-6 -IEE} )} + + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET180 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IIN_BIAS_VM VREF VM DC 80n + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + IIN_BIAS_VP VREF VP DC 80n + V59 NET0175 NET0214 DC {Vd_compensazione} + V58 NET0205 NET0146 DC {Vd_compensazione} + VI0 NET180 VP DC 0 + VPROT_IN_P_VCCP NET144 NET181 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_enhance} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_enhance} + VPROT_IN_M_VCCN NET152 NET256 DC {V_DPROT} + VPROT_IN_P_VCCN NET154 NET155 DC {V_DPROT} + VPROT_IN_M_VCCP NET242 NET173 DC {V_DPROT} + VVLIM_LOW_VB NET216 NET0206 DC {Vd_compensazione} + VVLIM_HIGH_VB NET0233 NET212 DC {Vd_compensazione} + D_ENABLE_FALL V_c_fall VB_D_G_RF DIODE_rf + D_ENABLE_RISE VB_D_G_RF V_c_rise DIODE_rf + D41 VB_D_VOD NET0175 DIODE_NOVd + D40 NET0146 VB_D_VOD DIODE_NOVd + DPROT_IN_M_VCCP VM NET173 DIODE_VLIM + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + DPROT_IN_M_VCCN NET152 VM DIODE_VLIM + DPROT_IN_P_VCCP NET180 NET181 DIODE_VLIM + DPROT_IN_P_VCCN NET154 NET180 DIODE_VLIM + D3 VB_D_G NET0233 DIODE_NOVd + D4 NET0206 VB_D_G DIODE_NOVd + CIN_DIFF_VP VP VREF 2.7p + CIN_DIFF_VM VM VREF 2.7p + E66 NET0214 0 VCCP 0 1.0 + E65 NET0205 0 VCCN 0 1.0 + EVLIM_HIGH_VB NET212 0 VCCP 0 1.0 + EVLIM_LOW_VB NET216 0 VCCN 0 1.0 + E2_REF NET258 0 VCCN 0 1.0 + E_VREF VREF 0 NET250 0 1.0 + E1_REF NET228 0 VCCP 0 1.0 + E_VAL_VDEP_SOURCE VAL_VDEP_SOURCE 0 VALUE={( -92.08371040724474 + ++72.77526395173992*V(Vccp,Vccn) + ++1.5082956259414868*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + E_VAL_VDEP_SINK VAL_VDEP_SINK 0 VALUE={(54.866515837108246 ++-60.88989441930893*V(Vccp,Vccn) +++0.6033182503774749*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + E_VDEP_SOURCE VDEP_SOURCE 0 VALUE={IF(V(val_vdep_source)>=0, 0, ++V(val_vdep_source))} + E_VDEP_SINK VDEP_SINK 0 VALUE={IF(V(val_vdep_sink)<=0 , 0 , ++V(val_vdep_sink))} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + R_RISE_FALL VREF VB_D_G_RF {R_rise_fall} + R_DELAY_VOD VREF VB_D_VOD {R_delay} + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_delay} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_delay} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_delay} + RPROT_IN_P_VCCP NET144 VCCP 15K + RPROT_IN_M_VCCP VCCP NET242 15K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + RPROT_IN_M_VCCN VCCN NET256 15K + RPROT_IN_P_VCCN NET155 VCCN 15K + R1_REF NET228 NET250 1Meg + R_GAIN VB_D_G VREF {R1} + R2_REF NET250 NET258 1Meg + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_rise_fall} + + +****************************** +* VCCAP C_FALL +****************************** +*Eldo: +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 2 , {28p/CAP_scale} ) +* + ( 3.3 , {1p/CAP_scale} ) ( 5 , {1p/CAP_scale} ) +* X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE +* +CAP_scale={CAP_scale} Rserie=1 +*PSpice: + E_C_FALL V_VALORI_C_FALL 0 VALUE={ TABLE( V(VCCP,VCCN) , 2 , 28p , + + 3.3 , 1p , 5 , 1p )/CAP_scale } + X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE + +PARAMS: CAP_scale={CAP_scale} Rserie=1 + + +****************************** +* VCCAP C_RISE +****************************** +*Eldo: +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 2 , {46p/CAP_scale}) +* + ( 3.3 , {42p/CAP_scale} ) ( 5 , {1p/CAP_scale} ) +* X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE +* +CAP_scale={CAP_scale} Rserie=1 +*PSpice: + E_C_RISE V_VALORI_C_RISE 0 VALUE={ TABLE( V(VCCP,VCCN) , 2 , 46p , + + 3.3 , 42p , 5 , 1p )/CAP_scale } + X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE + +PARAMS: CAP_scale={CAP_scale} Rserie=1 + + +****************************** +* VCCAP C_VOD +****************************** +*Eldo: +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -140m , {3.4p/CAP_scale} ) ( +* +-120m , {2.88p/CAP_scale} ) ( -110m , {2.45p/CAP_scale} ) ( -100m , +* +{2.1p/CAP_scale} ) ( -90m , {1.76p/CAP_scale} ) ( -80m , +* +{1.48p/CAP_scale} ) ( -70m , {1.27p/CAP_scale} ) ( -60m , +* +{1.095p/CAP_scale} ) ( -40m , {0.84p/CAP_scale} ) ( -20m , +* +{0.65p/CAP_scale} ) ( 20m , {0.66p/CAP_scale} ) ( 40m , {0.83p/CAP_scale} +* +) ( 60m , {1.11p/CAP_scale} ) ( 70m , {1.28p/CAP_scale} ) ( 80m , +* +{1.48p/CAP_scale} ) ( 90m , {1.76p/CAP_scale} ) ( 100m , {2.1p/CAP_scale} +* +) ( 110m , {2.45p/CAP_scale} ) ( 120m , {2.88p/CAP_scale} ) ( 140m , +* +{3.4p/CAP_scale} ) +* X_C_VOD V_VALORI_C_VOD 0 VB_D_VOD VREF VCCAP_PSPICE +* +CAP_scale={CAP_scale} Rserie=1 +* PSpice: + E_C_VOD V_VALORI_C_VOD 0 VALUE={ TABLE( V(VP,VM),-140m , 3.4p , + + -120m , 2.88p , -110m , 2.45p , -100m , 2.1p , + + -90m , 1.76p , -80m , 1.48p , -70m , 1.27p, + + -60m , 1.095p , -40m , 0.84p , -20m , 0.65p , + + 20m , 0.66p , 40m , 0.83p , 60m , 1.11p , + + 70m , 1.28p , 80m , 1.48p , 90m , 1.76p , + + 100m , 2.1p , 110m , 2.45p , 120m , 2.88p , + + 140m , 3.4p )/CAP_scale } + X_C_VOD V_VALORI_C_VOD 0 VB_D_VOD VREF VCCAP_PSPICE + +PARAMS: CAP_scale={CAP_scale} Rserie=1 + + +****************************** +* VCCAP C_VCC +****************************** +*Eldo: +* E_C_VCC V_VALORI_C_VCC 0 TABLE {VALIF(V(VP,VM)>0,V(Vccp,Vccn), +* +-V(Vccp,Vccn))}=(-5 {0.31p/CAP_scale}) (-3.3 {0.13p/CAP_scale}) (-2 +* +{1f/CAP_scale}) (2 {1f/CAP_scale}) (3.3 {0.16p/CAP_scale}) (5 +* +{0.36p/CAP_scale}) +* X_C_VCC V_VALORI_C_VCC 0 VB_D_VOD_VCC VREF VCCAP_PSPICE +* +CAP_scale=1e-15 Rserie=1 +*PSpice: + E_C_VCC v_valori_c_vcc 0 VALUE={ IF(V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 2 , 1f , 3.3 , 0.16p , 5 , 0.36p), + +TABLE( V(VCCP,VCCN), 2 , 1f , 3.3 , 0.13p , 5 , 0.31p ))/CAP_scale} + X_C_VCC v_valori_c_vcc 0 VB_D_VOD_VCC VREF VCCAP_PSPICE + +PARAMS: CAP_scale={CAP_scale} Rserie=1 + + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {Ro_1} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/Ro_1} + VREADIO VB_4 VS DC 0 + + +****************************** +* VCRES Ro_3 +****************************** +*Eldo: +* G_RO_3 VB_3 VB_4 VCR PWL(1) VCCP VCCN ( 2 , 35 ) ( 3.3 , 15 ) ( 5 , 10 ) +*PSpice: + E_RO_3 VB_3 VB_4 VALUE={ TABLE( V(VCCP,VCCN), 2 , 35 , 3.3 , 15 , 5 , 10 )*I(VreadIo)} + + +.ENDS TS3021 + + +******************************************************************************* +* +* MODELS/SUBCKTS and PARAMS used by TS3021 subckt: +* + +.PARAM A0=1.15976E+06 +.PARAM IEE=10u +.PARAM W=100u +.PARAM L=10u +.PARAM gm_mos=99.72u +.PARAM RD=20k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM R_rise_fall=100 +.PARAM Ro_1=20 +.PARAM VCCP_enhance=-300m +.PARAM VCCN_enhance=-550m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED RESISTOR for SPICE +******************************************************* +.PARAM CAP_scale=1e-15 +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE +******************************************************************************* + +.SUBCKT TS370X 2 1 44 55 33 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 33 DC 0 +G_ICCSAT 44 55 VALUE={4E-6 + 1E-6*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} +G_IOUT_SOURCED 44 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} +.MODEL MDTH D IS=1E-11 KF=1.050321E-32 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 10 0 2 0 1 +EIN 16 0 1 0 1 +RIP 10 11 6.500000E+01 +RIN 15 16 6.500000E+01 +RIS 11 15 1.939046E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 0 100E-06 +CPS 11 15 8.16E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0.000000e+00 +DINR 15 18 MDTH 400E-12 +VIP 4 18 1.200000E+00 +FCP 4 5 VOFP 0.00 +FCN 5 4 VOFN 0.00 +FIBP 2 0 VOFN 2.000000E-08 +FIBN 0 1 VOFP 2.000000E-08 +* AMPLIFYING STAGE +RG1 5 19 2.8E+05 +RG2 4 19 2.8E+05 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3500 +VIPM 28 4 150 +HONM 21 27 VOUT 3000 +VINM 5 27 150 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.097 +DON 24 19 MDTH 400E-12 +VON 24 5 1.097 +FIP 0 19 VOFP 104 +FIN 0 19 VOFN 104 +EOUT 26 23 19 5 1 +VOUT 23 5 0V +ROUT 26 3 62.5 +.ENDS +******************************************************************************* + +**** TSX370X Spice macromodel subckt +*** +*** September 2015 +*** +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX370X VP VM VCCP VCCN VS +X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_FALL} Rserie=1 +X_C_VOD V_VALORI_C_VOD 0 VB_D_VOD VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VOD} Rserie=1.0 +X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_RISE} Rserie=1 +X_C_VCC V_VALORI_C_VCC 0 VB_D_VOD_VCC VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VCC} Rserie=1 + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET0288 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IIN_BIAS_VM VREF VM DC {1p} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + IIN_BIAS_VP VREF VP DC {1p} + V58 NET279 NET214 DC {VD_COMPENSAZIONE} + V59 NET240 NET287 DC {VD_COMPENSAZIONE} + VREADIO VB_4 VS DC 0 + VVLIM_LOW_VB NET295 NET220 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCP NET223 NET256 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VVLIM_HIGH_VB NET244 NET291 DC {VD_COMPENSAZIONE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VPROT_IN_M_VCCN NET231 NET355 DC {V_DPROT} + VPROT_IN_P_VCCN NET233 NET234 DC {V_DPROT} + VPROT_IN_M_VCCP NET343 NET246 DC {V_DPROT} + D40 NET214 VB_D_VOD DIODE_NOVd + D_ENABLE_RISE VB_D_G_RF V_C_RISE DIODE_rf + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D41 VB_D_VOD NET240 DIODE_NOVd + D_ENABLE_FALL V_C_FALL VB_D_G_RF DIODE_rf + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + D3 VB_D_G NET244 DIODE_NOVd + DPROT_IN_M_VCCP VM NET246 DIODE_VLIM + D4 NET220 NET0271 DIODE_NOVd + DPROT_IN_M_VCCN NET231 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0288 NET256 DIODE_VLIM + DPROT_IN_P_VCCN NET233 NET0288 DIODE_VLIM + C84 VM VP 800.0f + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + + * E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 3 , 40 ) ( 5 , 20 ) ( +*+16 , 5 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , 40 , 5 , 20 , ++16 , 5 )} + + E65 NET279 0 VCCN 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={( -94.59090909090948 + ++45.68181818181824*V(Vccp,Vccn) + ++5.227272727272726*V(Vccp,Vccn)*V(Vccp,Vccn)) -5000*I(VreadIo) } + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + +* E_ICCSAT_LOW ICC_OUT_LOW 0 PWL(1) VCCP VCCN ( 3 , {5e-6 - IEE} ) ( 5 , +*+{5e-6 - IEE} ) ( 16 , {7e-6 - IEE} ) + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , {5e-6 - IEE} , 5 , ++{5e-6 - IEE} , 16 , {7e-6 - IEE} )} + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -100m , {29p/CAP_SCALE__C_VOD} +*+) ( -40m , {34.5p/CAP_SCALE__C_VOD} ) ( -20m , {34.7p/CAP_SCALE__C_VOD} ) +*+( -10m , {45p/CAP_SCALE__C_VOD} ) ( -5m , {65p/CAP_SCALE__C_VOD} ) ( +5m +*+, {57.5p/CAP_SCALE__C_VOD} ) ( +10m , {45p/CAP_SCALE__C_VOD} ) ( +20m , +*+{34p/CAP_SCALE__C_VOD} ) ( +40m , {33.8p/CAP_SCALE__C_VOD} ) ( +100m , +*+{31p/CAP_SCALE__C_VOD} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -100m , 29p , ++ -40m , 34.5p , -20m , 34.7p , -10m , 45p , -5m , 65p , +5m , 57.5p , +10m , ++45p , +20m , 34p , +40m , 33.8p , +100m , 31p)/CAP_SCALE__C_VOD} + + E_VOL VB_D_G NET0271 VALUE={0} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + +* E_ICCSAT_HIGH ICC_OUT_HIGH 0 PWL(1) VCCP VCCN ( 3 , {8e-6 - IEE} ) ( 5 +*+, {9e-6 - IEE} ) ( 16 , {11e-6 -IEE} ) + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , {8e-6 - IEE} , 5 ++, {9e-6 - IEE} , 16 , {11e-6 -IEE} )} + + E66 NET287 0 VCCP 0 1.0 + E_RO_3 VB_3 VB_4 VALUE={IF( I(VreadIo)>0 , ++I(VreadIo)*V(Ro_3_val_VOH) , I(VreadIo)*V(Ro_3_val_VOL) )} + EVLIM_HIGH_VB NET291 0 VCCP 0 1.0 + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-16 {6p/CAP_scale__C_VCC}) (-5 {2.7p/CAP_scale__C_VCC}) +*+(-3 {0.001p/CAP_scale__C_VCC}) (+3 {0.001p/CAP_scale__C_VCC}) (+5 +*+{0.001p/CAP_scale__C_VCC}) (+16 {0.001p/CAP_scale__C_VCC}) +* +*Spice: (al posto della "Vcc negativa fittizia" c'e' un IF V(VP,VM) +* sulle due tabelle dei valori di capacita' cioe' se V(VP,VM)>0, caso cioe' di +* low-to-high cioe' rise, si considera' la tabella dei valori definiti per +* "Vcc positiva" mentre se V(VP,VM)<= 0, caso cioe' di +* high-to-low cioe' fall, si considera' la tabella dei valori definiti per +* "Vcc negativa": + E_C_VCC V_VALORI_C_VCC 0 VALUE={ IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 3 , 0.001p , 5 , 0.001p , 16 , 0.001p), + +TABLE( V(VCCP,VCCN), 3 , 0.001p , 5 , 2.7p , 16 , 6p) )/CAP_scale__C_VCC} + + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 3 , +*+{315p/CAP_SCALE__C_RISE} ) ( 5 , {203p/CAP_SCALE__C_RISE} ) ( 16 , +*+{61.5p/CAP_SCALE__C_RISE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , ++315p , 5 , 203p , 16 , 61.5p )/CAP_SCALE__C_RISE} + + EVLIM_LOW_VB NET295 0 VCCN 0 1.0 + E2_REF NET357 0 VCCN 0 1.0 + E_VIO VP NET0288 VALUE={0.1m} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET351 0 1.0 + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E1_REF NET319 0 VCCP 0 1.0 + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 3 , +*+{349p/CAP_SCALE__C_FALL} ) ( 5.0 , {213p/CAP_SCALE__C_FALL} ) ( 16 , +*+{63p/CAP_SCALE__C_FALL} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , ++349p , 5.0 , 213p , 16 , 63p)/CAP_SCALE__C_FALL} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={( 141.37412587412595 ++-72.13286713286715*V(Vccp,Vccn) ++-1.6083916083916079*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + +* E_RO_3_VAL_VOH RO_3_VAL_VOH 0 PWL(1) VCCP VCCN ( 3 , 40 ) ( 5 , 20 ) ( +*+16 , 5 ) + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , 40 , 5 , 20 , ++16 , 5 )} + + + + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET223 VCCP 15K + RPROT_IN_M_VCCP VCCP NET343 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET319 NET351 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET355 15K + R2_REF NET351 NET357 1Meg + RPROT_IN_P_VCCN NET234 VCCN 15K + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + + +.PARAM CAP_scale__C_RISE=100p +.PARAM CAP_scale__C_FALL=100p +.PARAM CAP_scale__C_VOD=30p +.PARAM CAP_scale__C_VCC=0.001p +.PARAM VCCMIN=2.0 +.PARAM A0=20E+06 +.PARAM IEE=2.5u +.PARAM W=70u +.PARAM L=10u +.PARAM gm_mos=4.1868E-05 +.PARAM RD=20k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM Ro_1=10 +.PARAM R_rise_fall=100 +.PARAM VCCP_enhance=-300m +.PARAM VCCN_enhance=-550m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 CJO=10f T_ABS=27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 T_ABS=27 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 T_ABS=27 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 T_ABS=27 + +.ENDS TSX370X +*** End of subcircuit definition. + + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED CAPACITOR for SPICE +******************************************************* +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE + + + +******************************************************** + +**** +**** TSX393 Spice macromodel subckt +*** +*** September 2015 +*** +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TSX3XX VP VM VCCP VCCN VS +X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_FALL} Rserie=1 +X_C_VOD V_VALORI_C_VOD 0 VB_D_VOD VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VOD} Rserie=1.0 +X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_RISE} Rserie=1 +X_C_VCC V_VALORI_C_VCC 0 VB_D_VOD_VCC VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VCC} Rserie=1 + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET0288 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IIN_BIAS_VM VREF VM DC {1p} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + IIN_BIAS_VP VREF VP DC {1p} + V58 NET279 NET214 DC {VD_COMPENSAZIONE} + V59 NET240 NET287 DC {VD_COMPENSAZIONE} + VREADIO VB_4 VS DC 0 + VVLIM_LOW_VB NET295 NET220 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCP NET223 NET256 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VVLIM_HIGH_VB NET244 NET291 DC {VD_COMPENSAZIONE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VPROT_IN_M_VCCN NET231 NET355 DC {V_DPROT} + VPROT_IN_P_VCCN NET233 NET234 DC {V_DPROT} + VPROT_IN_M_VCCP NET343 NET246 DC {V_DPROT} + D40 NET214 VB_D_VOD DIODE_NOVd + D_ENABLE_RISE VB_D_G_RF V_C_RISE DIODE_rf + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D41 VB_D_VOD NET240 DIODE_NOVd + D_ENABLE_FALL V_C_FALL VB_D_G_RF DIODE_rf + D3 VB_D_G NET244 DIODE_NOVd + DPROT_IN_M_VCCP VM NET246 DIODE_VLIM + D4 NET220 NET0271 DIODE_NOVd + DPROT_IN_M_VCCN NET231 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0288 NET256 DIODE_VLIM + DPROT_IN_P_VCCN NET233 NET0288 DIODE_VLIM + C84 VM VP 800.0f + + * E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 3 , 40 ) ( 5 , 20 ) ( +*+16 , 5 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , 40 , 5 , 20 , ++16 , 5 )} + + E65 NET279 0 VCCN 0 1.0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + +* E_ICCSAT_LOW ICC_OUT_LOW 0 PWL(1) VCCP VCCN ( 3 , {5e-6 - IEE} ) ( 5 , +*+{5e-6 - IEE} ) ( 16 , {7e-6 - IEE} ) + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , {5e-6 - IEE} , 5 , ++{5e-6 - IEE} , 16 , {7e-6 - IEE} )} + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -100m , {29p/CAP_SCALE__C_VOD} +*+) ( -40m , {34.5p/CAP_SCALE__C_VOD} ) ( -20m , {34.7p/CAP_SCALE__C_VOD} ) +*+( -10m , {45p/CAP_SCALE__C_VOD} ) ( -5m , {65p/CAP_SCALE__C_VOD} ) ( +5m +*+, {60p/CAP_SCALE__C_VOD} ) ( +10m , {45p/CAP_SCALE__C_VOD} ) ( +20m , +*+{34p/CAP_SCALE__C_VOD} ) ( +40m , {30p/CAP_SCALE__C_VOD} ) ( +100m , +*+{29p/CAP_SCALE__C_VOD} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -100m , 29p , ++ -40m , 34.5p , -20m , 34.7p , -10m , 45p , -5m , 65p , +5m , 60p , +10m , ++45p , +20m , 34p , +40m , 30p , +100m , 29p)/CAP_SCALE__C_VOD} + + E_VOL VB_D_G NET0271 VALUE={0} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + +* E_ICCSAT_HIGH ICC_OUT_HIGH 0 PWL(1) VCCP VCCN ( 3 , {8e-6 - IEE} ) ( 5 +*+, {9e-6 - IEE} ) ( 16 , {11e-6 -IEE} ) + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , {8e-6 - IEE} , 5 ++, {9e-6 - IEE} , 16 , {11e-6 -IEE} )} + + E66 NET287 0 VCCP 0 1.0 + E_RO_3 VB_3 VB_4 VALUE={IF( I(VreadIo)>0 , ++I(VreadIo)*V(Ro_3_val_VOH) , I(VreadIo)*V(Ro_3_val_VOL) )} + EVLIM_HIGH_VB NET291 0 VCCP 0 1.0 + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-16 {6p/CAP_scale__C_VCC}) (-5 {2.7p/CAP_scale__C_VCC}) +*+(-3 {0.001p/CAP_scale__C_VCC}) (+3 {0.001p/CAP_scale__C_VCC}) (+5 +*+{0.001p/CAP_scale__C_VCC}) (+16 {0.001p/CAP_scale__C_VCC}) +* +*Spice: (al posto della "Vcc negativa fittizia" c'e' un IF V(VP,VM) +* sulle due tabelle dei valori di capacita' cioe' se V(VP,VM)>0, caso cioe' di +* low-to-high cioe' rise, si considera' la tabella dei valori definiti per +* "Vcc positiva" mentre se V(VP,VM)<= 0, caso cioe' di +* high-to-low cioe' fall, si considera' la tabella dei valori definiti per +* "Vcc negativa": + E_C_VCC V_VALORI_C_VCC 0 VALUE={ IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 3 , 0.001p , 5 , 0.001p , 16 , 0.001p), + +TABLE( V(VCCP,VCCN), 3 , 0.001p , 5 , 2.7p , 16 , 6p) )/CAP_scale__C_VCC} + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 3 , +*+{315p/CAP_SCALE__C_RISE} ) ( 5 , {203p/CAP_SCALE__C_RISE} ) ( 16 , +*+{62p/CAP_SCALE__C_RISE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , ++315p , 5 , 203p , 16 , 62p )/CAP_SCALE__C_RISE} + + EVLIM_LOW_VB NET295 0 VCCN 0 1.0 + E2_REF NET357 0 VCCN 0 1.0 + E_VIO VP NET0288 VALUE={0.1m} + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET351 0 1.0 + E1_REF NET319 0 VCCP 0 1.0 + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 3 , +*+{315p/CAP_SCALE__C_FALL} ) ( 5.0 , {203p/CAP_SCALE__C_FALL} ) ( 16 , +*+{62p/CAP_SCALE__C_FALL} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 3 , ++315p , 5.0 , 203p , 16 , 62p)/CAP_SCALE__C_FALL} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={( 141.37412587412595 ++-72.13286713286715*V(Vccp,Vccn) ++-1.6083916083916079*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={10G} + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET223 VCCP 15K + RPROT_IN_M_VCCP VCCP NET343 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET319 NET351 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET355 15K + R2_REF NET351 NET357 1Meg + RPROT_IN_P_VCCN NET234 VCCN 15K + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + + +.PARAM CAP_scale__C_RISE=100p +.PARAM CAP_scale__C_FALL=100p +.PARAM CAP_scale__C_VOD=30p +.PARAM CAP_scale__C_VCC=0.001p +.PARAM VCCMIN=2.0 +.PARAM A0=20E+06 +.PARAM IEE=2.5u +.PARAM W=70u +.PARAM L=10u +.PARAM gm_mos=4.1868E-05 +.PARAM RD=20k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM Ro_1=10 +.PARAM R_rise_fall=100 +.PARAM VCCP_enhance=-300m +.PARAM VCCN_enhance=-550m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-756.31u + + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 CJO=10f T_ABS=27 +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 T_ABS=27 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 T_ABS=27 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 T_ABS=27 + +.ENDS TSX3XX +*** End of subcircuit definition. + + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED CAPACITOR for SPICE +******************************************************* +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE +******************************************************** +*----------------------------------------------------------------------------------------- +* TS7211 spice macromodel +* CONNECTIONS : +* 1 NON-INVERTING INPUT +* 2 INVERTING INPUT +* 3 POSITIVE POWER SUPPLY +* 4 NEGATIVE POWER SUPPLY +* 5 OUTPUT +* +********************************************************** +.SUBCKT TS7211 2 1 44 55 33 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 33 DC 0 +R_ICCSAT_HIGH ICC_OUT_HIGH 0 1k +R_ICCSAT_LOW ICC_OUT_LOW 0 1k +G_ICCSAT 44 55 VALUE={IF(V(3)>(V(44)+V(55))/2, V(Icc_out_high), V(Icc_out_low) ) } +E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={6E-6 + 4E-7*V(44,55)} +E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={5E-6 + 2E-7*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} +G_IOUT_SOURCED 44 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} +.MODEL MDTH D IS=1E-11 KF=1.050321E-32 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 102 0 2 0 1 +VIO 10 102 -3E-3 +EIN 16 0 1 0 1 +RIP 10 11 6.500000E+01 +RIN 15 16 6.500000E+01 +RIS 11 15 1.939046E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 0 100E-06 +CPS 11 15 9E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0 +DINR 15 18 MDTH 400E-12 +VIP 4 18 .600000E+00 +FCP 4 5 VOFP 0.00 +FCN 5 4 VOFN 0.00 +FIBP 2 0 VOFN 1.5000000E-08 +FIBN 0 1 VOFP 1.5000000E-08 +* AMPLIFYING STAGE +RG1 5 19 2.8E+05 +RG2 4 19 2.8E+05 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3500 +VIPM 28 4 150 +HONM 21 27 VOUT 3000 +VINM 5 27 150 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.097 +DON 24 19 MDTH 400E-12 +VON 24 5 1.097 +FIP 0 19 VOFP 104 +FIN 0 19 VOFN 104 +EOUT 26 23 19 5 1 +VOUT 23 5 0V +ROUT 26 3 70 +.ENDS +********************************************************** +* CONNECTIONS : +* 1 NON-INVERTING INPUT +* 2 INVERTING INPUT +* 3 POSITIVE POWER SUPPLY +* 4 NEGATIVE POWER SUPPLY +* 5 OUTPUT +* +********************************************************** +.SUBCKT TS7221 2 1 44 55 66 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 66 DC 0 +R_ICCSAT_HIGH ICC_OUT_HIGH 0 1k +R_ICCSAT_LOW ICC_OUT_LOW 0 1k +G_ICCSAT 44 55 VALUE={IF(V(3)>(V(44)+V(55))/2, V(Icc_out_high), V(Icc_out_low) ) } +E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={6E-6 + 4E-7*V(44,55)} +E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={5E-6 + 2E-7*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} +.MODEL MDTH D IS=1E-11 KF=1.050321E-32 CJO=10F +.MODEL DIDEAL D N=0.1 IS=1E-08 +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 102 0 2 0 1 +VIO 10 102 -3E-3 +EIN 16 0 1 0 1 +RIP 10 11 6.500000E+01 +RIN 15 16 6.500000E+01 +RIS 11 15 1.939046E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 0 100E-06 +CPS 11 15 9E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0 +DINR 15 18 MDTH 400E-12 +VIP 4 18 .600000E+00 +FCP 4 5 VOFP 0.00 +FCN 5 4 VOFN 0.00 +FIBP 2 0 VOFN 1.5000000E-08 +FIBN 0 1 VOFP 1.5000000E-08 +* AMPLIFYING STAGE +RG1 5 19 2.8E+05 +RG2 4 19 2.8E+05 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3500 +VIPM 28 4 150 +HONM 21 27 VOUT 3000 +VINM 5 27 150 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.097 +DON 24 19 MDTH 400E-12 +VON 24 5 1.097 +FIP 0 19 VOFP -104 +FIN 0 19 VOFN -104 +EOUT 26 23 19 5 1 +VOUT 23 5 0V +.MODEL NMOD NPN(IS=0.1E-09 BF=10500) +RBOUT 127 26 800K +QOUT 103 127 128 128 NMOD +VEOUT 128 5 0V +RSOUT 3 0 1E+12 +VNUL 3 111 -61E-3 +ROUT 111 103 21 +DSTOP 32 103 MDTH 400E-12 +HSTOP 32 33 VNUL 35 +VSTOP 33 5 1 + +.ENDS +********************************************************** + +* TS861/TS862/TS864 spice macromodel +* CONNECTIONS : +* 1 NON-INVERTING INPUT +* 2 INVERTING INPUT +* 3 POSITIVE POWER SUPPLY +* 4 NEGATIVE POWER SUPPLY +* 5 OUTPUT +* +********************************************************** +.SUBCKT TS86x 2 1 44 55 33 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 33 DC 0 +R_ICCSAT_HIGH ICC_OUT_HIGH 0 1k +R_ICCSAT_LOW ICC_OUT_LOW 0 1k +G_ICCSAT 44 55 VALUE={IF(V(3)>(V(44)+V(55))/2, V(Icc_out_high), V(Icc_out_low) ) } +E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={6E-6 + 4E-7*V(44,55)} +E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={5E-6 + 2E-7*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} +G_IOUT_SOURCED 44 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + +.MODEL MDTH D IS=1E-11 KF=1.050321E-32 CJO=10F +* INPUT STAGE +CIP 2 5 1.000000E-12 +CIN 1 5 1.000000E-12 +EIP 102 0 2 0 1 +VIO 10 102 -3E-3 +EIN 16 0 1 0 1 +RIP 10 11 6.500000E+01 +RIN 15 16 6.500000E+01 +RIS 11 15 1.939046E+02 +DIP 11 12 MDTH 400E-12 +DIN 15 14 MDTH 400E-12 +VOFP 12 13 DC 0.000000E+00 +VOFN 13 14 DC 0 +IPOL 13 0 100E-06 +CPS 11 15 9E-09 +DINN 17 13 MDTH 400E-12 +VIN 17 5 0 +DINR 15 18 MDTH 400E-12 +VIP 4 18 .600000E+00 +FCP 4 5 VOFP 0.00 +FCN 5 4 VOFN 0.00 +FIBP 2 0 VOFN 1.5000000E-08 +FIBN 0 1 VOFP 1.5000000E-08 +* AMPLIFYING STAGE +RG1 5 19 2.8E+05 +RG2 4 19 2.8E+05 +DOPM 19 22 MDTH 400E-12 +DONM 21 19 MDTH 400E-12 +HOPM 22 28 VOUT 3500 +VIPM 28 4 150 +HONM 21 27 VOUT 3000 +VINM 5 27 150 +DOP 19 25 MDTH 400E-12 +VOP 4 25 1.097 +DON 24 19 MDTH 400E-12 +VON 24 5 1.097 +FIP 0 19 VOFP 104 +FIN 0 19 VOFN 104 +EOUT 26 23 19 5 1 +VOUT 23 5 0V +ROUT 26 3 70 +.ENDS + +********************************************************** +**************************************************************************** +**** +**** TS331-2-4 Spice macromodel subckt +*** +*** March 2013 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS33X VP VM VCCP VCCN VS +X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_RISE} Rserie=1 +X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_FALL} Rserie=1 +X_C_VOD V_VALORI_C_VOD 0 VB_D_VOD VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VOD} Rserie=1 +X_C_VCC V_VALORI_C_VCC 0 VB_D_VOD_VCC VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE__C_VCC} Rserie=1 + C84 VM VP 3p + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET232 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + V58 NET302 NET235 DC {VD_COMPENSAZIONE} + V59 NET261 NET326 DC {VD_COMPENSAZIONE} + VREADIO VB_4 VS DC 0 + VVLIM_LOW_VB NET342 NET241 DC {VD_COMPENSAZIONE} + VI0 NET232 VP DC -500.0u + VPROT_IN_P_VCCP NET242 NET277 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VVLIM_HIGH_VB NET267 NET330 DC {VD_COMPENSAZIONE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VPROT_IN_M_VCCN NET250 NET404 DC {V_DPROT} + VPROT_IN_P_VCCN NET252 NET253 DC {V_DPROT} + VPROT_IN_M_VCCP NET390 NET269 DC {V_DPROT} + D40 NET235 VB_D_VOD DIODE_NOVd + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D41 VB_D_VOD NET261 DIODE_NOVd + D_ENABLE_FALL V_C_FALL VB_D_G_RF DIODE_rf + D3 VB_D_G NET267 DIODE_NOVd + DPROT_IN_M_VCCP VM NET269 DIODE_VLIM + D_ENABLE_RISE VB_D_G_RF V_C_RISE DIODE_rf + D4 NET241 VB_D_G DIODE_NOVd + DPROT_IN_M_VCCN NET250 VM DIODE_VLIM + DPROT_IN_P_VCCP NET232 NET277 DIODE_VLIM + DPROT_IN_P_VCCN NET252 NET232 DIODE_VLIM + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 1.8 , +*+{457p/CAP_SCALE__C_FALL} ) ( 2.7 , {125p/CAP_SCALE__C_FALL} ) ( 5 , +*+{114p/CAP_SCALE__C_FALL} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 457p , ++ 2.7 , 125p , 5 , 114p)/CAP_SCALE__C_FALL} + + E_RO_3 VB_3 VB_4 VALUE={IF( I(VreadIo)>0 ++,I(VreadIo)*V(Ro_3_val_VOH),I(VreadIo)*V(Ro_3_val_VOL) )} + E65 NET302 0 VCCN 0 1.0 + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + +* E_ICCSAT_LOW ICC_OUT_LOW 0 PWL(1) VCCP VCCN ( 1.8 , {20e-6 - IEE} ) ( +*+2.7 , {21e-6 - IEE} ) ( 5 , {23e-6 - IEE} ) + E_ICCSAT_LOW ICC_OUT_LOW 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {20e-6 - IEE} , ++2.7 , {21e-6 - IEE} , 5 , {23e-6 - IEE} )} + + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + +* E_ICCSAT_HIGH ICC_OUT_HIGH 0 PWL(1) VCCP VCCN ( 1.8 , {22e-6 - IEE} ) +*+( 2.7 , {23e-6 - IEE} ) ( 5 , {26e-6 -IEE} ) + E_ICCSAT_HIGH ICC_OUT_HIGH 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , {22e-6 - IEE} , ++ 2.7 , {23e-6 - IEE} , 5 , {26e-6 -IEE} )} + + E66 NET326 0 VCCP 0 1.0 + EVLIM_HIGH_VB NET330 0 VCCP 0 1.0 + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-5 {3p/CAP_scale__C_VCC}) (-2.7 +*+{0.75p/CAP_scale__C_VCC}) (-1.8 {1f/CAP_scale__C_VCC}) (1.8 +*+{1f/CAP_scale__C_VCC}) (2.7 {0.7p/CAP_scale__C_VCC}) (5 +*+{2p/CAP_scale__C_VCC}) + E_C_VCC V_VALORI_C_VCC 0 VALUE={IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 1.8 , 1f , 2.7 , 0.7p , 5 , 2p), + +TABLE( V(VCCP,VCCN), 1.8 , 1f , 2.7 , 0.75p , 5 , 3p))/CAP_scale__C_VCC} + + EVLIM_LOW_VB NET342 0 VCCN 0 1.0 + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -100m , {15p/CAP_SCALE__C_VOD} ) ( +*+-80m , {15p/CAP_SCALE__C_VOD} ) ( -60m , {15p/CAP_SCALE__C_VOD} ) ( -55m +*+, {15p/CAP_SCALE__C_VOD} ) ( -45m , {15p/CAP_SCALE__C_VOD} ) ( -40m , +*+{14.5p/CAP_SCALE__C_VOD} ) ( -30m , {12p/CAP_SCALE__C_VOD} ) ( -20m , +*+{8.8p/CAP_SCALE__C_VOD} ) ( -15m , {7.75p/CAP_SCALE__C_VOD} ) ( -10m , +*+{6.8p/CAP_SCALE__C_VOD} ) ( 10m , {10.5p/CAP_SCALE__C_VOD} ) ( 15m , +*+{11.6p/CAP_SCALE__C_VOD} ) ( 20m , {13.5p/CAP_SCALE__C_VOD} ) ( 30m , +*+{15p/CAP_SCALE__C_VOD} ) ( 40m , {15p/CAP_SCALE__C_VOD} ) ( 45m , +*+{15p/CAP_SCALE__C_VOD} ) ( 55m , {15p/CAP_SCALE__C_VOD} ) ( 60m , +*+{15p/CAP_SCALE__C_VOD} ) ( 80m , {15p/CAP_SCALE__C_VOD} ) ( 100m , +*+{15p/CAP_SCALE__C_VOD} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -100m , 15p , ++-80m , 15p , -60m , 15p , -55m , 15p , -45m , 15p , -40m , 14.5p , -30m , 12p , ++-20m , 8.8p , -15m , 7.75p , -10m , 6.8p , 10m , 10.5p , 15m , 11.6p , 20m , 13.5p , ++30m , 15p , 40m , 15p , 45m , 15p , 55m , 15p , 60m , 15p , 80m , 15p , 100m , ++15p)/CAP_SCALE__C_VOD} + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 1.8 , +*+{750p/CAP_SCALE__C_RISE} ) ( 2.7 , {190p/CAP_SCALE__C_RISE} ) ( 5 , +*+{119p/CAP_SCALE__C_RISE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 750p , ++ 2.7 , 190p , 5 , 119p)/CAP_SCALE__C_RISE} + + E2_REF NET406 0 VCCN 0 1.0 + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET400 0 1.0 + E1_REF NET370 0 VCCP 0 1.0 + +* E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 1.8 , 14 ) ( 2.7 , 7 +*+) ( 5.0 , 2 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 14 , 2.7 , 7 , ++ 5.0 , 2 )} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={(165.1739130434785 ++-158.03140096618372*V(Vccp,Vccn) + ++3.0193236714976037*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + +* E_RO_3_VAL_VOH RO_3_VAL_VOH 0 PWL(1) VCCP VCCN ( 1.8 , 1T ) ( 2.7 , 1T +*+) ( 5.0 , 1T ) + *10G specified instead of 1T to allow convergence with PSPICE: + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={10G} + + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET242 VCCP 15K + RPROT_IN_M_VCCP VCCP NET390 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET370 NET400 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET404 15K + R2_REF NET400 NET406 1Meg + RPROT_IN_P_VCCN NET253 VCCN 15K + +* G_IIB_VP VREF VP PWL(1) VCCP VCCN ( 1.8 , 25n ) ( 2.7 , 25n ) ( 5.0 , +*+30n ) + G_IIB_VP VREF VP VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 25n , 2.7 , 25n , 5.0 , 30n )} + +* G_IIB_VM VREF VM PWL(1) VCCP VCCN ( 1.8 , 25n ) ( 2.7 , 25n ) ( 5.0 , +*+30n ) + G_IIB_VM VREF VM VALUE={TABLE( V(VCCP,VCCN) , 1.8 , 25n , 2.7 , 25n , 5.0 , 30n )} + + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + + +******************************************************************************* +* +.PARAM A0=100k +.PARAM IEE=2.7u +.PARAM W=235u +.PARAM L=10u +.PARAM gm_mos=7.9773E-05 +.PARAM RD=20k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM R_rise_fall=100 +.PARAM Ro_1=10 +.PARAM VCCP_enhance=-360m +.PARAM VCCN_enhance=-500m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u + +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 CJO=10f +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=10E-15 + +.PARAM CAP_scale__C_RISE=100p +.PARAM CAP_scale__C_FALL=100p +.PARAM CAP_scale__C_VOD=10p +.PARAM CAP_scale__C_VCC=10p +* +******************************************************************************* + +.ENDS TS33X + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED CAPACITOR for SPICE +******************************************************* +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE +******************************************************************************* + +**************************************************************************** +**** +**** TS3011 Spice macromodel subckt +*** +*** December 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS3011 VP VM VCCP VCCN VS +X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 +X_C_VOD V_VALORI_C_VOD 0 NET0209 VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1.0 +X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 +X_C_VCC V_VALORI_C_VCC 0 NET0285 VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET0277 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IIN_BIAS_VM VM VREF DC 1p + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + IIN_BIAS_VP VP VREF DC 1p + V58 NET279 NET214 DC {VD_COMPENSAZIONE} + V59 NET240 NET287 DC {VD_COMPENSAZIONE} + VREADIO VB_4 VS DC 0 + VVLIM_LOW_VB NET295 NET220 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCP NET223 NET256 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VVLIM_HIGH_VB NET244 NET291 DC {VD_COMPENSAZIONE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VPROT_IN_M_VCCN NET231 NET355 DC {V_DPROT} + VPROT_IN_P_VCCN NET233 NET234 DC {V_DPROT} + VPROT_IN_M_VCCP NET343 NET246 DC {V_DPROT} + D40 NET214 VB_D_VOD DIODE_NOVd + D_ENABLE_RISE VB_D_G_RF V_C_RISE DIODE_rf + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D41 VB_D_VOD NET240 DIODE_NOVd + D_ENABLE_FALL V_C_FALL VB_D_G_RF DIODE_rf + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + D3 VB_D_G NET244 DIODE_NOVd + DPROT_IN_M_VCCP VM NET246 DIODE_VLIM + D4 NET220 NET0271 DIODE_NOVd + DPROT_IN_M_VCCN NET231 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0277 NET256 DIODE_VLIM + DPROT_IN_P_VCCN NET233 NET0277 DIODE_VLIM + CSERIE_C_VOD VB_D_VOD NET0209 1u + C84 VM VP 1.2p + CSERIE_C_VCC VB_D_VOD_VCC NET0285 1u + E_RO_3 VB_3 VB_4 VALUE={IF( I(VreadIo)>0 ++,I(VreadIo)*V(Ro_3_val_VOH),I(VreadIo)*V(Ro_3_val_VOL) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + +* E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 2.2 , 17.5 ) ( 2.7 , +*+12.5 ) ( 5.0 , 2.5 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 17.5 , 2.7 , ++12.5 , 5.0 , 2.5 )} + + E65 NET279 0 VCCN 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={( -138.01552795031046 + ++114.34782608695646*V(Vccp,Vccn) ++-4.968944099378868*V(Vccp,Vccn)*V(Vccp,Vccn)) -5000*I(VreadIo) } + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 4.6822981366459573E-4 ++1.0065217391304365E-4 -1.6459627329192566E-5 + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -200m , {1.6p/CAP_SCALE} ) ( +*+-150m , {1.375p/CAP_SCALE} ) ( -100m , {1.09p/CAP_SCALE} ) ( -50m , +*+{0.768p/CAP_SCALE} ) ( -15m , {0.5p/CAP_SCALE} ) ( -5m , +*+{0.465p/CAP_SCALE} ) ( +5m , {0.43p/CAP_SCALE} ) ( +15m , +*+{0.464p/CAP_SCALE} ) ( +50m , {0.687p/CAP_SCALE} ) ( +100m , +*+{1p/CAP_SCALE} ) ( +150m , {1.27p/CAP_SCALE} ) ( +200m , +*+{1.49p/CAP_SCALE} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -200m , 1.6p , ++-150m , 1.375p , -100m , 1.09p , -50m , 0.768p , -15m , 0.5p , -5m , ++0.465p , +5m , 0.43p , +15m , 0.464p , +50m , 0.687p , +100m , ++1p , +150m , 1.27p , +200m , 1.49p)/CAP_SCALE} + + E_VOL VB_D_G NET0271 VALUE={0} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 4.338819875776397E-4 ++3.804347826086955E-5 -7.763975155279502E-6 + +* E_HYST_VAL HYST_VAL 0 PWL(1) VCCP VCCN ( 2.2 , 2m ) ( 2.7 , 2m ) ( 5.0 +*+, 2m ) + E_HYST_VAL HYST_VAL 0 VALUE={2m} + + E66 NET287 0 VCCP 0 1.0 + +* E_RO_3_VAL_VOH RO_3_VAL_VOH 0 PWL(1) VCCP VCCN ( 2.2 , 37.5 ) ( 2.7 , +*+25 ) ( 5.0 , 7.5 ) + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 37.5 , 2.7 , ++25 , 5.0 , 7.5 )} + + EVLIM_HIGH_VB NET291 0 VCCP 0 1.0 + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-5 {1f/CAP_scale}) (-2.7 {1f/CAP_scale}) (-2.2 +*+{0.055p/CAP_scale}) (2.2 {0.14p/CAP_scale}) (2.7 {0.08p/CAP_scale}) (5 +*+{1f/CAP_scale}) + E_C_VCC V_VALORI_C_VCC 0 VALUE={IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 2.2 , 0.14p , 2.7 , 0.08p , 5 , 1f), + +TABLE( V(VCCP,VCCN), 2.2 , 0.055p , 2.7 , 1f , 5 , 1f))/CAP_scale} + + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 2.2 , {2.46p/CAP_SCALE} +*+) ( 2.7 , {1.255p/CAP_SCALE} ) ( 5.0 , {0.44p/CAP_SCALE} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 2.46p , ++ 2.7 , 1.255p , 5.0 , 0.44p)/CAP_SCALE} + + EVLIM_LOW_VB NET295 0 VCCN 0 1.0 + E2_REF NET357 0 VCCN 0 1.0 + +* E_VIO VP NET0390 PWL(1) VCCP VCCN ( 2.2 , -0.2m ) ( 2.7 , -0.1m ) ( +*+5.0 , -0.4m ) + E_VIO VP NET0390 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , -0.2m , 2.7 , -0.1m , ++5.0 , -0.4m )} + + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET351 0 1.0 + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E1_REF NET319 0 VCCP 0 1.0 + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 2.2 , {2.55p/CAP_SCALE} +*+) ( 2.7 , {1.58p/CAP_SCALE} ) ( 5.0 , {0.43p/CAP_SCALE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 2.55p , ++ 2.7 , 1.58p , 5.0 , 0.43p)/CAP_SCALE} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={( 82.5186335403726 ++-60.21739130434778*V(Vccp,Vccn) ++-4.03726708074535*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + E_HYST NET0277 NET0390 VALUE={IF( V(VCCP,VCCN)>=VCCMIN , ++ +V(VS,Vref)/( V(Vccp,Vccn)/V(Hyst_val)) , 0)} + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET223 VCCP 15K + RPROT_IN_M_VCCP VCCP NET343 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET319 NET351 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET355 15K + R2_REF NET351 NET357 1Meg + RPROT_IN_P_VCCN NET234 VCCN 15K + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + +******************************************************************************* +* +.PARAM CAP_scale=1e-15 +.PARAM VCCMIN=2.2 +.PARAM A0=10E+06 +.PARAM IEE=40u +.PARAM W=100u +.PARAM L=10u +.PARAM gm_mos=200u +.PARAM RD=10k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM Ro_1=20 +.PARAM R_rise_fall=1000 +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 CJO=10f +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TS3011 + + +******************************************************* +******* SUBCKT VOLTAGE CONTROLLED CAPACITOR for SPICE +******************************************************* +.SUBCKT VCCAP_PSPICE Vctrl_plus Vctrl_minus Vout_plus Vout_minus ++ PARAMS: CAP_scale=1u Rserie=1 +EVin 2 0 VALUE={1/V(Vctrl_plus,Vctrl_minus)} +EV2 8 Vout_plus POLY(2) 6 0 2 0 0 0 0 0 1 0 0 0 0 0 +RR1 8 Vout_minus {Rserie} +GI1 0 6 Vout_minus 8 {1/Rserie} +RR2 0 6 100G +CC1 6 0 {CAP_scale} +.ENDS VCCAP_PSPICE +********************************************************* + +**************************************************************************** +* WARNING : please consider following remarks before usage +* +* 1) All models are a tradeoff between accuracy and complexity (ie. simulation +* time). +* 2) Macromodels are not a substitute to breadboarding, they rather confirm the +* validity of a design approach and help to select surrounding component values. +* +* 3) A macromodel emulates the NOMINAL performance of a TYPICAL device within +* SPECIFIED OPERATING CONDITIONS (ie. temperature, supply voltage, etc.). +* Thus the macromodel is often not as exhaustive as the datasheet, its goal +* is to illustrate the main parameters of the product. +* +* 4) Data issued from macromodels used outside of its specified conditions +* (Vcc, Temperature, etc) or even worse: outside of the device operating +* conditions (Vcc, Vicm, etc) are not reliable in any way. +* +**************************************************************************** +**** +**** TS3011 Spice macromodel subckt +*** +*** December 2011 +**** +************ CONNECTIONS: +**** NON-INVERTING INPUT +**** | INVERTING INPUT +**** | | POSITIVE POWER SUPPLY +**** | | | NEGATIVE POWER SUPPLY +**** | | | | OUTPUT +**** | | | | | +**** | | | | | +.SUBCKT TS3011 VP VM VCCP VCCN VS +X_C_FALL V_VALORI_C_FALL 0 VREF V_C_FALL VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 +X_C_VOD V_VALORI_C_VOD 0 NET0209 VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1.0 +X_C_RISE V_VALORI_C_RISE 0 V_C_RISE VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 +X_C_VCC V_VALORI_C_VCC 0 NET0285 VREF VCCAP_PSPICE ++PARAMS: CAP_scale={CAP_SCALE} Rserie=1 + M_NMOS2 VO_DIFF_PLUS VM VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + M_NMOS1 VO_DIFF_MINUS NET0277 VEE_N VCCN_ENHANCED MOS_N L={L} W={W} + IIN_BIAS_VM VM VREF DC 1p + IEE_N VEE_N VCCN_ENHANCED DC {IEE} + IIN_BIAS_VP VP VREF DC 1p + V58 NET279 NET214 DC {VD_COMPENSAZIONE} + V59 NET240 NET287 DC {VD_COMPENSAZIONE} + VREADIO VB_4 VS DC 0 + VVLIM_LOW_VB NET295 NET220 DC {VD_COMPENSAZIONE} + VPROT_IN_P_VCCP NET223 NET256 DC {V_DPROT} + V_ENHANCE_VCCN VCCN_ENHANCED VCCN DC {VCCN_ENHANCE} + VVLIM_HIGH_VB NET244 NET291 DC {VD_COMPENSAZIONE} + V_ENHANCE_VCCP VCCP_ENHANCED VCCP DC {VCCP_ENHANCE} + VPROT_IN_M_VCCN NET231 NET355 DC {V_DPROT} + VPROT_IN_P_VCCN NET233 NET234 DC {V_DPROT} + VPROT_IN_M_VCCP NET343 NET246 DC {V_DPROT} + D40 NET214 VB_D_VOD DIODE_NOVd + D_ENABLE_RISE VB_D_G_RF V_C_RISE DIODE_rf + DILIM_SINK VB_3_SINK VB_3 DIODE_ILIM + D41 VB_D_VOD NET240 DIODE_NOVd + D_ENABLE_FALL V_C_FALL VB_D_G_RF DIODE_rf + DILIM_SOURCE VB_3 VB_3_SOURCE DIODE_ILIM + D3 VB_D_G NET244 DIODE_NOVd + DPROT_IN_M_VCCP VM NET246 DIODE_VLIM + D4 NET220 NET0271 DIODE_NOVd + DPROT_IN_M_VCCN NET231 VM DIODE_VLIM + DPROT_IN_P_VCCP NET0277 NET256 DIODE_VLIM + DPROT_IN_P_VCCN NET233 NET0277 DIODE_VLIM + CSERIE_C_VOD VB_D_VOD NET0209 1u + C84 VM VP 1.2p + CSERIE_C_VCC VB_D_VOD_VCC NET0285 1u + E_RO_3 VB_3 VB_4 VALUE={IF( I(VreadIo)>0 ++,I(VreadIo)*V(Ro_3_val_VOH),I(VreadIo)*V(Ro_3_val_VOL) )} + E_VDEP_SOURCE_2 VAL_VDEP_SOURCE_FILTERED 0 ++VALUE={IF(V(val_vdep_source)>=0, 0, V(val_vdep_source))} + +* E_RO_3_VAL_VOL RO_3_VAL_VOL 0 PWL(1) VCCP VCCN ( 2.2 , 17.5 ) ( 2.7 , +*+12.5 ) ( 5.0 , 2.5 ) + E_RO_3_VAL_VOL RO_3_VAL_VOL 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 17.5 , 2.7 , ++12.5 , 5.0 , 2.5 )} + + E65 NET279 0 VCCN 0 1.0 + E_VDEP_SOURCE_1 VAL_VDEP_SOURCE 0 VALUE={( -138.01552795031046 + ++114.34782608695646*V(Vccp,Vccn) ++-4.968944099378868*V(Vccp,Vccn)*V(Vccp,Vccn)) -5000*I(VreadIo) } + E_VDEP_SINK_3 VDEP_SINK 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_sink_filtered))} + E_ICCSAT_LOW ICC_OUT_LOW 0 POLY(1) VCCP VCCN 4.6822981366459573E-4 ++1.0065217391304365E-4 -1.6459627329192566E-5 + +* E_C_VOD V_VALORI_C_VOD 0 PWL(1) VP VM ( -200m , {1.6p/CAP_SCALE} ) ( +*+-150m , {1.375p/CAP_SCALE} ) ( -100m , {1.09p/CAP_SCALE} ) ( -50m , +*+{0.768p/CAP_SCALE} ) ( -15m , {0.5p/CAP_SCALE} ) ( -5m , +*+{0.465p/CAP_SCALE} ) ( +5m , {0.43p/CAP_SCALE} ) ( +15m , +*+{0.464p/CAP_SCALE} ) ( +50m , {0.687p/CAP_SCALE} ) ( +100m , +*+{1p/CAP_SCALE} ) ( +150m , {1.27p/CAP_SCALE} ) ( +200m , +*+{1.49p/CAP_SCALE} ) + E_C_VOD V_VALORI_C_VOD 0 VALUE={TABLE( V(VP,VM) , -200m , 1.6p , ++-150m , 1.375p , -100m , 1.09p , -50m , 0.768p , -15m , 0.5p , -5m , ++0.465p , +5m , 0.43p , +15m , 0.464p , +50m , 0.687p , +100m , ++1p , +150m , 1.27p , +200m , 1.49p)/CAP_SCALE} + + E_VOL VB_D_G NET0271 VALUE={0} + E_VDEP_SINK_2 VAL_VDEP_SINK_FILTERED 0 ++VALUE={IF(V(val_vdep_sink)<=0 , 0 , V(val_vdep_sink))} + E_ICCSAT_HIGH ICC_OUT_HIGH 0 POLY(1) VCCP VCCN 4.338819875776397E-4 ++3.804347826086955E-5 -7.763975155279502E-6 + +* E_HYST_VAL HYST_VAL 0 PWL(1) VCCP VCCN ( 2.2 , 2m ) ( 2.7 , 2m ) ( 5.0 +*+, 2m ) + E_HYST_VAL HYST_VAL 0 VALUE={2m} + + E66 NET287 0 VCCP 0 1.0 + +* E_RO_3_VAL_VOH RO_3_VAL_VOH 0 PWL(1) VCCP VCCN ( 2.2 , 37.5 ) ( 2.7 , +*+25 ) ( 5.0 , 7.5 ) + E_RO_3_VAL_VOH RO_3_VAL_VOH 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 37.5 , 2.7 , ++25 , 5.0 , 7.5 )} + + EVLIM_HIGH_VB NET291 0 VCCP 0 1.0 + +* E_C_VCC V_VALORI_C_VCC 0 TABLE {IF(V(VP,VM)>0,V(Vccp,Vccn), +*+-V(Vccp,Vccn))}=(-5 {1f/CAP_scale}) (-2.7 {1f/CAP_scale}) (-2.2 +*+{0.055p/CAP_scale}) (2.2 {0.14p/CAP_scale}) (2.7 {0.08p/CAP_scale}) (5 +*+{1f/CAP_scale}) + E_C_VCC V_VALORI_C_VCC 0 VALUE={IF( V(VP,VM)>0, + +TABLE( V(VCCP,VCCN), 2.2 , 0.14p , 2.7 , 0.08p , 5 , 1f), + +TABLE( V(VCCP,VCCN), 2.2 , 0.055p , 2.7 , 1f , 5 , 1f))/CAP_scale} + + EILIM_SOURCE VB_3_SOURCE VDEP_SOURCE VB_3 0 1.0 + +* E_C_FALL V_VALORI_C_FALL 0 PWL(1) VCCP VCCN ( 2.2 , {2.46p/CAP_SCALE} +*+) ( 2.7 , {1.255p/CAP_SCALE} ) ( 5.0 , {0.44p/CAP_SCALE} ) + E_C_FALL V_VALORI_C_FALL 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 2.46p , ++ 2.7 , 1.255p , 5.0 , 0.44p)/CAP_SCALE} + + EVLIM_LOW_VB NET295 0 VCCN 0 1.0 + E2_REF NET357 0 VCCN 0 1.0 + +* E_VIO VP NET0390 PWL(1) VCCP VCCN ( 2.2 , -0.2m ) ( 2.7 , -0.1m ) ( +*+5.0 , -0.4m ) + E_VIO VP NET0390 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , -0.2m , 2.7 , -0.1m , ++5.0 , -0.4m )} + + EILIM_SINK VB_3_SINK VDEP_SINK VB_3 0 1.0 + E_VREF VREF 0 NET351 0 1.0 + E_VDEP_SOURCE_3 VDEP_SOURCE 0 VALUE={IF( abs(I(VreadIo))<1m , 0 , ++V(val_vdep_source_filtered))} + E1_REF NET319 0 VCCP 0 1.0 + +* E_C_RISE V_VALORI_C_RISE 0 PWL(1) VCCP VCCN ( 2.2 , {2.55p/CAP_SCALE} +*+) ( 2.7 , {1.58p/CAP_SCALE} ) ( 5.0 , {0.43p/CAP_SCALE} ) + E_C_RISE V_VALORI_C_RISE 0 VALUE={TABLE( V(VCCP,VCCN) , 2.2 , 2.55p , ++ 2.7 , 1.58p , 5.0 , 0.43p)/CAP_SCALE} + + E_VDEP_SINK_1 VAL_VDEP_SINK 0 VALUE={( 82.5186335403726 ++-60.21739130434778*V(Vccp,Vccn) ++-4.03726708074535*V(Vccp,Vccn)*V(Vccp,Vccn) ) -5000*I(VreadIo) } + E_HYST NET0277 NET0390 VALUE={IF( V(VCCP,VCCN)>=VCCMIN , ++ +V(VS,Vref)/( V(Vccp,Vccn)/V(Hyst_val)) , 0)} + R_RISE_FALL VREF VB_D_G_RF {R_RISE_FALL} + R_DELAY_VOD VREF VB_D_VOD {R_DELAY} + R_ICCSAT_HIGH ICC_OUT_HIGH 0 1K + RO_2 VB_3 VB_2 1m + RO_1 VREF VB_2 {RO_1} + RPROT_IN_P_VCCP NET223 VCCP 15K + RPROT_IN_M_VCCP VCCP NET343 15K + R_ICCSAT_LOW ICC_OUT_LOW 0 1K + RD1 VCCP_ENHANCED VO_DIFF_MINUS {RD} + RD2 VCCP_ENHANCED VO_DIFF_PLUS {RD} + R_DELAY_VCC VREF VB_D_VOD_VCC {R_DELAY} + R1_REF NET319 NET351 1Meg + R_GAIN VB_D_G VREF {R1} + RPROT_IN_M_VCCN VCCN NET355 15K + R2_REF NET351 NET357 1Meg + RPROT_IN_P_VCCN NET234 VCCN 15K + G_IOUT_SOURCED VCCP 0 VALUE={IF(I(VreadIo)>0, I(VreadIo),0)} + G_ICCSAT VCCP VCCN VALUE={IF( V(VS)>V(Vccp,Vccn)/2 , ++V(Icc_out_high), V(Icc_out_low) ) } + G_RISE_FALL VREF VB_D_G_RF VB_D_G VREF {1/R_RISE_FALL} + G_GAIN VREF VB_D_G VB_D_VOD_VCC VREF 1 + G_DELAY_VOD VB_D_VOD VREF VO_DIFF_MINUS VO_DIFF_PLUS {1/R_DELAY} + G_OUT VREF VB_2 VB_D_G_RF VREF {1/RO_1} + G_IOUT_SINKED VCCN 0 VALUE={IF(I(VreadIo)>0, 0, I(VreadIo))} + G_DELAY_VCC VB_D_VOD_VCC VREF VREF VB_D_VOD {1/R_DELAY} + +******************************************************************************* +* +.PARAM CAP_scale=1e-15 +.PARAM VCCMIN=2.2 +.PARAM A0=10E+06 +.PARAM IEE=40u +.PARAM W=100u +.PARAM L=10u +.PARAM gm_mos=200u +.PARAM RD=10k +.PARAM R_delay={RD} +.PARAM R1={A0/(gm_mos*RD)} +.PARAM Ro_1=20 +.PARAM R_rise_fall=1000 +.PARAM VCCP_enhance=150m +.PARAM VCCN_enhance=-1100m +.PARAM V_DPROT=150m +.PARAM Vd_compensazione=-788.4u +.MODEL MOS_N NMOS LEVEL=1 VTO=+0.65 KP=100E-6 +.MODEL DIODE_rf D LEVEL=1 IS=10E-15 N=1 CJO=10f +.MODEL DIODE_NOVd D LEVEL=1 IS=10E-15 N=0.001 +.MODEL DIODE_VLIM D LEVEL=1 IS=0.8E-15 +.MODEL DIODE_ILIM D LEVEL=1 IS=0.8E-15 +* +******************************************************************************* + +.ENDS TS3011 + +*----------------------------------------------------------------------------------------- +* TS372/TS374 spice macromodel +* CONNECTIONS : +* 1 NON-INVERTING INPUT +* 2 INVERTING INPUT +* 3 POSITIVE POWER SUPPLY +* 4 NEGATIVE POWER SUPPLY +* 5 OUTPUT +* +********************************************************** +.SUBCKT TS37x 2 1 44 55 30 +EVCCP 4 0 44 0 1.0 +EVCCN 5 0 55 0 1.0 +VREADIO 3 30 DC 0 +G_ICCSAT 44 55 VALUE= {147.5E-6 + 5.0E-7*V(44,55)} +G_IOUT_SINKED 55 0 VALUE={IF (V(1)pp,(Uee-c*z1)*z1,p*(pp-p)/c*exp((Uee-pp)/p))} +.FUNC Ih(Uds,T,p,Uee) {bet*(T0/T)**nmu3*I0(Uee,p,min(2*p,p+c*Uds),min(Uds,Uee/(2*c)))} +.FUNC Jh(d,g,w,y,s,x) ++{a*(s*(Ih(y,w,(p0+(p1+p2*w)*w)*kbq*w,g-Vth+auth*(w-Tref)+Fm*y**Fn+limit(-d,0,1))+exp(min(lB+(d-VBR(x)-ab*(w-Tref))/UT,25))))} + +.FUNC J1(d,g,T,da,s,x) {a*(s*(exp(min(lB+(d-VBR(x)-ab*(T-Tref))/UT,25))))} +.FUNC Pr(Vss0,Vssp) {Vss0*Vss0/Rm+Vssp*Vssp/Rsp} + +.FUNC QCds(x) {Cds3*min(x,x1)+Cds0*max(x-x1,0)+(Cds3-Cds0)*((limit(x,x0,x1)-x0)**3/(dx*dx)*((limit(x,x0,x1)-x0)/(2*dx)-1))} + +E_Edg1 d ox VALUE {if(V(d,g)>0,V(d,g)-(exp(ps2*max(V(d,g),0))-1)/ps2,0)} +C_Cdg1 ox g {Cox1} +E_Edg2 d ox1 VALUE {if(V(d,g)>-ps7,V(d,g)-(exp(ps4*max(V(d,g)+ps7,0))-exp(ps4*ps7))/ps4,-ps7-(1-exp(ps4*ps7))/ps4)} +C_Cdg2 ox1 g {Cox2} +C_Cdg3 d g {Cox3} + +E_Eds d edep VALUE {V(d,s)-1/(1-nd)*U0*((limit(1+V(d,s)/U0,0,2*UB))**(1-nd)-1)} +C_Cds edep s {Cdspn*0.99} + +E_Eds1 d edep1 VALUE {V(d,sp)-QCds(V(d,sp))/Cds3} +C_Cds1 edep1 sp {Cds3} + +E_Eds2 d edep2 VALUE {if(V(d,sp)>0,V(d,sp)-(exp(qs5*max(V(d,sp),0))-1)/qs5,0)} +C_Cds2 edep2 sp {Cds2} +E_Eds3 d edep3 VALUE {if(V(d,sp)>0,V(d,sp)-(exp(qs3*max(V(d,sp),0))-1)/qs3,0)} +C_Cds3 edep3 sp {Cds1} + +C_Cgs g s {Cgs0} +C_Cgs1 g sp {Cgs1} + +Rfp s sp {Rsp} + +G_chan d5a s VALUE={Jh(V(d5a,s),V(g,s),T0+limit(V(Tj),-200,500),(SQRT(1+4*al*abs(V(d5a,s)))-1)/2/al,sgn(V(d5a,s)),V(sp,s))} +Rd06 d5a d5 0.1u +V_sm d d5 0 +G_RMos d1 d VALUE={V(d1,d)/(Rf*dRd+(1-Rf)*dRd*((limit(V(Tj),-200,999)+T0)/Tref)**nmu)} +V_sense dd d1 0 + +G_Rdio d2 d1 VALUE={V(d2,d1)/(dRdi*((limit(V(Tj),-200,999)+T0)/Tref)**nmu2)} +V_sense2 d2 d3 0 + +Dbody s d3 dbody +.model dbody D (BV= {UB*10},CJO ={Cdspn/100},TT ={ta*1u},IS ={a*exp(lnIsj)} m={0.3} RS={dRdi*1m} n={ndi}) + + +R1 g s 1G +Rd01 d s 500Meg +Rd02 d2 s 500Meg +Rd03 d1 d 1k +Rssp g sp 100Meg + +Rmet s s0 {Rm} + +G_TH 0 Tj VALUE = ++{(I(V_sense)-I(V_sense2))*V(d1,d)+I(V_sm)*V(d,s)+I(V_sense2)*V(d1,s)+Pr(V(s,s0),V(s,sp))} + + +.ENDS + +********************************************************************************************************* + +.SUBCKT S6_30_b1_var dd g s0 sp Tj PARAMS: a=1 Rsp=1 dVth=0 dR=0 dgfs=0 Inn=1 ++Unn=1 Rmax=1 gmin=1 Rs=1 Rp=1 dC=0 Rm=1u + +.PARAM Fm=0.3 Fn=0.5 al=0.5 +.PARAM c=1.087 Vth0=2.51 auth=2.3m +.PARAM UT=100m ab=17m lB=-23 UB=31 + +.PARAM b0=423 p0=3.746 p1=-6.9m p2=12u + +.PARAM Rd=2.5m nmu=3.71 Tref=298 T0=273 lnIsj=-25.834 +.PARAM ndi=1.02 Rdi=2m nmu2=0.702 td=20n ta=2n +.PARAM Rf=0.79 nmu3=1.42 + +.PARAM bmgd=500 Umgd=0.546 amgd=-140u +.PARAM cmgd=1.8 nmgd=1.085 Rmgd=30m + +.PARAM kbq=85.8u + +*Cgs +.PARAM f3=576p + +*Cgfp +.PARAM f3a=72p + +*Cds_pn +.PARAM f2=220p U0=1 nd=0.8 + +*Cdfp +.PARAM q81=370p +.PARAM x0=0 x1=12.3 dx={x1-x0} +.PARAM qs1=39p qs2=251p qs3=-31.7m qs4=44.5p qs5=-0.51 + +*Cgd +.PARAM ps0=0 ps1=20p ps2=-28.46m ps3=335p +.PARAM ps4=-0.2324 ps5=3.14p ps6=7.35p ps7=3.9 + +.PARAM Vmin=2.11 Vmax=2.91 dCmax=0.33 +.PARAM Vth={Vth0+(Vmax-Vth0)*limit(dVth,0,1)-(Vmin-Vth0)*limit(dVth,-1,0)} +.PARAM q0={b0*((T0/Tref)**nmu3)*a} +.PARAM q1={(Unn-Inn*Rs-Vth0)*q0} +.PARAM q2={(Fm*SQRT(0.4)-c)*Inn*q0} +.PARAM Rlim={(q1+2*q2*Rmax-SQRT(q1**2+4*q2))/(2*q2)} +.PARAM dRd={Rd/a+if(dVth==0,limit(dR,0,1)*max(Rlim-Rd/a-Rs-Rp,0),0)} +.PARAM bm={c/((1/gmin-Rs)**2*Inn*a*(T0/Tref)**nmu3)} +.PARAM bet={b0+(b0-bm)*if(dR==0,if(dVth==0,limit(dgfs,-1,0),0),0)} +.PARAM dC1={1+dCmax*limit(dC,0,1)} +.PARAM dC2={1+dCmax*limit(dC,0,1)} + +.PARAM Cdspn={f2*a*dC1} +.PARAM Cgs0={f3*a*dC1} +.PARAM Cgs1={f3a*a*dC1} +.PARAM dRdi={Rdi/a} +.PARAM dRmgd={Rmgd/a} + +.PARAM Cox1={(ps1*a+ps0*sqrt(a))*dC1} +.PARAM Cox2={ps3*a*dC1} +.PARAM Cox3={(ps5*a+ps6)*dC1} + +.PARAM Cds0={qs1*a*dC1} +.PARAM Cds1={qs2*a*dC1} +.PARAM Cds2={qs4*a*dC1} +.PARAM Cds3={(q81+qs1)*a*dC1} + +.FUNC VBR(Udsp) {UB} + +.FUNC I0(Uee,p,pp,z1) {if(Uee>pp,(Uee-c*z1)*z1,p*(pp-p)/c*exp((Uee-pp)/p))} +.FUNC Ih(Uds,T,p,Uee) {bet*(T0/T)**nmu3*I0(Uee,p,min(2*p,p+c*Uds),min(Uds,Uee/(2*c)))} +.FUNC Jh(d,g,w,y,s,x) ++{a*(s*(Ih(y,w,(p0+(p1+p2*w)*w)*kbq*w,g-Vth+auth*(w-Tref)+Fm*y**Fn+limit(-d,0,1))+exp(min(lB+(d-VBR(x)-ab*(w-Tref))/UT,25))))} + +.FUNC J1(d,g,T,da,s,x) {a*(s*(exp(min(lB+(d-VBR(x)-ab*(T-Tref))/UT,25))))} +.FUNC Pr(Vss0,Vssp) {Vss0*Vss0/Rm+Vssp*Vssp/Rsp} + +.FUNC Imgd(Vsd,T) {a*bmgd*exp(min(-(Umgd+amgd*abs(Vsd)**cmgd)/(kbq*T),10))*(exp(min(Vsd/(nmgd*kbq*T),30))-1)} + +.FUNC QCds(x) {Cds3*min(x,x1)+Cds0*max(x-x1,0)+(Cds3-Cds0)*((limit(x,x0,x1)-x0)**3/(dx*dx)*((limit(x,x0,x1)-x0)/(2*dx)-1))} + +E_Edg1 d ox VALUE {if(V(d,g)>0,V(d,g)-(exp(ps2*max(V(d,g),0))-1)/ps2,0)} +C_Cdg1 ox g {Cox1} +E_Edg2 d ox1 VALUE {if(V(d,g)>-ps7,V(d,g)-(exp(ps4*max(V(d,g)+ps7,0))-exp(ps4*ps7))/ps4,-ps7-(1-exp(ps4*ps7))/ps4)} +C_Cdg2 ox1 g {Cox2} +C_Cdg3 d g {Cox3} + +E_Eds d edep VALUE {V(d,s)-1/(1-nd)*U0*((limit(1+V(d,s)/U0,1e-12,2*UB))**(1-nd)-1)} +C_Cds edep s {Cdspn*0.99} + +E_Eds1 d edep1 VALUE {V(d,sp)-QCds(V(d,sp))/Cds3} +C_Cds1 edep1 sp {Cds3} + +E_Eds2 d edep2 VALUE {if(V(d,sp)>0,V(d,sp)-(exp(qs5*max(V(d,sp),0))-1)/qs5,0)} +C_Cds2 edep2 sp {Cds2} +E_Eds3 d edep3 VALUE {if(V(d,sp)>0,V(d,sp)-(exp(qs3*max(V(d,sp),0))-1)/qs3,0)} +C_Cds3 edep3 sp {Cds1} + +C_Cgs g s {Cgs0} +C_Cgs1 g sp {Cgs1} + +Rfp s sp {Rsp} + +G_chan d5a s VALUE={Jh(V(d5a,s),V(g,s),T0+limit(V(Tj),-200,500),(SQRT(1+4*al*abs(V(d5a,s)))-1)/2/al,sgn(V(d5a,s)),V(sp,s))} +Rd06 d5a d5 0.1u +V_sm d d5 0 +G_RMos d1 d VALUE={V(d1,d)/(Rf*dRd+(1-Rf)*dRd*((limit(V(Tj),-200,999)+T0)/Tref)**nmu)} +V_sense dd d1 0 + +G_Rdio d2 d1 VALUE={V(d2,d1)/(dRdi*((limit(V(Tj),-200,999)+T0)/Tref)**nmu2)} +V_sense2 d2 d3 0 + +Dbody s d3 dbody +.model dbody D (BV= {UB*10},CJO ={Cdspn/100},TT ={ta*1u},IS ={a*exp(lnIsj)} m={0.3} RS={dRdi*1m} n={ndi}) + +G_sbd s dm VALUE {Imgd(V(s,dm),T0+limit(V(Tj),-200,300))} +G_sbdr dm d4 VALUE {V(dm,d4)/(dRmgd*((limit(V(Tj),-200,999)+T0)/Tref)**nmu2)} +V_smgd dd d4 0 +Rd04 dm s 500Meg +Rd05 dm d4 500Meg + +R1 g s 1G +Rd01 d s 500Meg +Rd02 d2 s 500Meg +Rd03 d1 d 1k +Rssp g sp 100Meg + +Rmet s s0 {Rm} + +G_TH 0 Tj VALUE = ++{(I(V_sense)-I(V_sense2)-I(V_smgd))*V(d1,d)+I(V_sm)*V(d,s)+(I(V_sense2)+I(V_smgd))*V(d1,s)+Pr(V(s,s0),V(s,sp))} + +.ENDS + +********************************************************************************************************* + +.SUBCKT BSC0500NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=308u Rg=0.9 Rd=10u Rm=116u +.PARAM Inn=30 Unn=10 Rmax=1.3m gmin=97 + +.PARAM act=3.7 Rsp=0.7 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {7.11m+limit(Zthtype,0,1)*2.64m} +Rth2 t1 t2 {91.83m+limit(Zthtype,0,1)*33.06m} +Rth3 t2 t3 {326.16m+limit(Zthtype,0,1)*0p} +Rth4 t3 t4 {386.31m+limit(Zthtype,0,1)*262.8m} +Rth5 t4 Tcase {410.7m+limit(Zthtype,0,1)*279.39m} +Cth1 Tj 0 25.756u +Cth2 t1 0 151.273u +Cth3 t2 0 843.456u +Cth4 t3 0 652.01u +Cth5 t4 0 25.246m +Cth6 Tcase 0 30m + +.ENDS + +********** + +.SUBCKT BSZ0500NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=433u Rg=0.9 Rd=10u Rm=70u +.PARAM Inn=20 Unn=10 Rmax=1.5m gmin=77.33 + +.PARAM act=3.7 Rsp=0.7 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {7.11m+limit(Zthtype,0,1)*2.64m} +Rth2 t1 t2 {91.83m+limit(Zthtype,0,1)*33.06m} +Rth3 t2 t3 {326.16m+limit(Zthtype,0,1)*0p} +Rth4 t3 t4 {386.31m+limit(Zthtype,0,1)*262.8m} +Rth5 t4 Tcase {410.7m+limit(Zthtype,0,1)*279.39m} +Cth1 Tj 0 25.756u +Cth2 t1 0 151.273u +Cth3 t2 0 843.456u +Cth4 t3 0 652.01u +Cth5 t4 0 25.246m +Cth6 Tcase 0 10m + +.ENDS + +********** + +.SUBCKT BSC0501NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=1.9m gmin=78 + +.PARAM act=2.314 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {11.37m+limit(Zthtype,0,1)*4.21m} +Rth2 t1 t2 {144.32m+limit(Zthtype,0,1)*52.87m} +Rth3 t2 t3 {511.42m+limit(Zthtype,0,1)*0p} +Rth4 t3 t4 {617.69m+limit(Zthtype,0,1)*381.62m} +Rth5 t4 Tcase {479.97m+limit(Zthtype,0,1)*296.53m} +Cth1 Tj 0 16.108u +Cth2 t1 0 96.679u +Cth3 t2 0 537.917u +Cth4 t3 0 407.771u +Cth5 t4 0 26.849m +Cth6 Tcase 0 30m + +.ENDS + +********** + +.SUBCKT BSZ0501NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=424u Rg=1.4 Rd=10u Rm=61u +.PARAM Inn=20 Unn=10 Rmax=2m gmin=62.42 + +.PARAM act=2.314 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {11.37m+limit(Zthtype,0,1)*4.21m} +Rth2 t1 t2 {144.32m+limit(Zthtype,0,1)*52.87m} +Rth3 t2 t3 {511.42m+limit(Zthtype,0,1)*0p} +Rth4 t3 t4 {617.69m+limit(Zthtype,0,1)*381.62m} +Rth5 t4 Tcase {479.97m+limit(Zthtype,0,1)*296.53m} +Cth1 Tj 0 16.108u +Cth2 t1 0 96.679u +Cth3 t2 0 537.917u +Cth4 t3 0 407.771u +Cth5 t4 0 26.849m +Cth6 Tcase 0 10m + +.ENDS + +********** + +.SUBCKT BSC0502NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=2.3m gmin=69 + +.PARAM act=1.816 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {14.49m+limit(Zthtype,0,1)*5.37m} +Rth2 t1 t2 {181.97m+limit(Zthtype,0,1)*67.35m} +Rth3 t2 t3 {643.94m+limit(Zthtype,0,1)*13.34u} +Rth4 t3 t4 {787.08m+limit(Zthtype,0,1)*420.45m} +Rth5 t4 Tcase {507.98m+limit(Zthtype,0,1)*271.36m} +Cth1 Tj 0 12.641u +Cth2 t1 0 76.882u +Cth3 t2 0 427.224u +Cth4 t3 0 320.014u +Cth5 t4 0 32.344m +Cth6 Tcase 0 30m + +.ENDS + +********** + +.SUBCKT BSZ0502NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=737u Rg=1.4 Rd=10u Rm=200u +.PARAM Inn=20 Unn=10 Rmax=2.8m gmin=53.54 + +.PARAM act=1.816 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {14.49m+limit(Zthtype,0,1)*5.37m} +Rth2 t1 t2 {181.97m+limit(Zthtype,0,1)*67.35m} +Rth3 t2 t3 {643.94m+limit(Zthtype,0,1)*13.34u} +Rth4 t3 t4 {787.08m+limit(Zthtype,0,1)*420.45m} +Rth5 t4 Tcase {507.98m+limit(Zthtype,0,1)*271.36m} +Cth1 Tj 0 12.641u +Cth2 t1 0 76.882u +Cth3 t2 0 427.224u +Cth4 t3 0 320.014u +Cth5 t4 0 32.344m +Cth6 Tcase 0 10m + +.ENDS + +********** + +.SUBCKT BSC0503NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=3m gmin=61 + +.PARAM act=1.425 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {18.47m+limit(Zthtype,0,1)*6.84m} +Rth2 t1 t2 {228.49m+limit(Zthtype,0,1)*84.56m} +Rth3 t2 t3 {810.4m+limit(Zthtype,0,1)*1.29m} +Rth4 t3 t4 {1+limit(Zthtype,0,1)*539.74m} +Rth5 t4 Tcase {526.2m+limit(Zthtype,0,1)*284.01m} +Cth1 Tj 0 9.92u +Cth2 t1 0 61.23u +Cth3 t2 0 339.764u +Cth4 t3 0 251.112u +Cth5 t4 0 51.796m +Cth6 Tcase 0 30m + +.ENDS + +********** + +.SUBCKT BSZ0503NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=737u Rg=1.4 Rd=10u Rm=200u +.PARAM Inn=20 Unn=10 Rmax=3.4m gmin=47.73 + +.PARAM act=1.425 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {18.47m+limit(Zthtype,0,1)*6.84m} +Rth2 t1 t2 {228.49m+limit(Zthtype,0,1)*84.56m} +Rth3 t2 t3 {810.4m+limit(Zthtype,0,1)*1.29m} +Rth4 t3 t4 {1+limit(Zthtype,0,1)*539.74m} +Rth5 t4 Tcase {526.2m+limit(Zthtype,0,1)*284.01m} +Cth1 Tj 0 9.92u +Cth2 t1 0 61.23u +Cth3 t2 0 339.764u +Cth4 t3 0 251.112u +Cth5 t4 0 51.796m +Cth6 Tcase 0 10m + +.ENDS + +********** + +.SUBCKT BSC0504NSI drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=252u Rg=1.2 Rd=10u Rm=60u +.PARAM Inn=20 Unn=10 Rmax=3.7m gmin=43.38 + +.PARAM act=1.052 Rsp=0.9 + + + +X1 d1 g s sp Tj S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {25.02m+limit(Zthtype,0,1)*9.26m} +Rth2 t1 t2 {303.04m+limit(Zthtype,0,1)*112.15m} +Rth3 t2 t3 {1.08+limit(Zthtype,0,1)*2.45m} +Rth4 t3 t4 {1.36+limit(Zthtype,0,1)*634.53m} +Rth5 t4 Tcase {527.46m+limit(Zthtype,0,1)*246.09m} +Cth1 Tj 0 7.323u +Cth2 t1 0 46.167u +Cth3 t2 0 255.662u +Cth4 t3 0 185.382u +Cth5 t4 0 3m +Cth6 Tcase 0 30m + +.ENDS + +********** + +.SUBCKT BSZ0506NS drain gate source Tj Tcase PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=687u Rg=1 Rd=10u Rm=150u +.PARAM Inn=20 Unn=10 Rmax=4.4m gmin=40 + +.PARAM act=0.946 Rsp=1 + + + +X1 d1 g s sp Tj S6_30_a_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} +Rsb source s1 10 +Rga gate g1 10 +Rdb drain d2 10 + + + + +Rth1 Tj t1 {27.82m+limit(Zthtype,0,1)*10.3m} +Rth2 t1 t2 {334.27m+limit(Zthtype,0,1)*123.72m} +Rth3 t2 t3 {1.19+limit(Zthtype,0,1)*6.74m} +Rth4 t3 t4 {1.51+limit(Zthtype,0,1)*652.39m} +Rth5 t4 Tcase {520.07m+limit(Zthtype,0,1)*224.69m} +Cth1 Tj 0 6.585u +Cth2 t1 0 41.853u +Cth3 t2 0 231.596u +Cth4 t3 0 166.703u +Cth5 t4 0 3m +Cth6 Tcase 0 10m + +.ENDS + +********** + +.SUBCKT BSC0500NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=308u Rg=0.9 Rd=10u Rm=116u +.PARAM Inn=30 Unn=10 Rmax=1.3m gmin=97 +.PARAM act=3.7 Rsp=0.7 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSZ0500NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=433u Rg=0.9 Rd=10u Rm=70u +.PARAM Inn=20 Unn=10 Rmax=1.5m gmin=77.33 +.PARAM act=3.7 Rsp=0.7 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSC0501NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=1.9m gmin=78 +.PARAM act=2.314 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSZ0501NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=424u Rg=1.4 Rd=10u Rm=61u +.PARAM Inn=20 Unn=10 Rmax=2m gmin=62.42 +.PARAM act=2.314 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSC0502NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=2.3m gmin=69 +.PARAM act=1.816 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSZ0502NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=737u Rg=1.4 Rd=10u Rm=200u +.PARAM Inn=20 Unn=10 Rmax=2.8m gmin=53.54 +.PARAM act=1.816 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSC0503NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=288u Rg=1.4 Rd=10u Rm=96u +.PARAM Inn=30 Unn=10 Rmax=3m gmin=61 +.PARAM act=1.425 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSZ0503NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=737u Rg=1.4 Rd=10u Rm=200u +.PARAM Inn=20 Unn=10 Rmax=3.4m gmin=47.73 +.PARAM act=1.425 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSC0504NSI_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=252u Rg=1.2 Rd=10u Rm=60u +.PARAM Inn=20 Unn=10 Rmax=3.7m gmin=43.38 +.PARAM act=1.052 Rsp=0.9 + +X1 d1 g s sp Tj1 S6_30_b1_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSZ0506NS_L1 drain gate source PARAMS: dVth=0 dRdson=0 dgfs=0 dC=0 Ls=0.3n Ld=1n Lg=3n + +.PARAM Rs=687u Rg=1 Rd=10u Rm=150u +.PARAM Inn=20 Unn=10 Rmax=4.4m gmin=40 +.PARAM act=0.946 Rsp=1 + +X1 d1 g s sp Tj1 S6_30_a_var PARAMS: a={act} Rsp={Rsp} dVth={dVth} dR={dRdson} dgfs={dgfs} Inn={Inn} Unn={Unn} + +Rmax={Rmax} gmin={gmin} Rs={Rs} Rp={Rd} dC={dC} Rm={Rm} +Rg g1 g {Rg} +Lg gate g1 {Lg*if(dgfs==99,0,1)} +Gs s1 s VALUE={V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)} +Rsa s1 s 1Meg +Ls source s1 {Ls*if(dgfs==99,0,1)} +Rda d1 d2 {Rd} +Ld drain d2 {Ld*if(dgfs==99,0,1)} + +E2 Tj w VALUE={TEMP} +Vp Tj1 Tj 0 +R1 Tj Tj1 1u +G_power 0 Tj VALUE ={V(s1,s)*V(s1,s)/(Rs*(1+(limit(V(Tj),-200,999)-25)*4m)-Rm)+V(g,g1)*V(g,g1)/Rg+V(d1,d2)*V(d1,d2)/Rd+I(Vp)} +R2 w 0 1u + +.ENDS + +********** + +.SUBCKT BSC0500NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 308u + +Rg g1 g2 0.9 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 1150.7 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 0.69m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.81n VJ=2.5V) +Rsp s2 s3 0.7 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=3.33n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=148p N=1.12 RS=0.14u EG=1.12 TT=3n) +Rdiode d1 21 0.68m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=1.6u N=1.1 RS=0.14u EG=0.5 TT=1p) +Rmgd d1 22 8.11m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 1.07n +.MODEL DGD D(M=0.8 CJO=1.07n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 2.4n + +.ENDS BSC0500NSI_L0 + +****** + +.SUBCKT BSZ0500NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 433u + +Rg g1 g2 0.9 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 1150.7 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 0.69m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.81n VJ=2.5V) +Rsp s2 s3 0.7 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=3.33n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=148p N=1.12 RS=0.14u EG=1.12 TT=3n) +Rdiode d1 21 0.68m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=1.6u N=1.1 RS=0.14u EG=0.5 TT=1p) +Rmgd d1 22 8.11m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 1.07n +.MODEL DGD D(M=0.8 CJO=1.07n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 2.4n + +.ENDS BSZ0500NSI_L0 + +****** + +.SUBCKT BSC0501NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 288u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 719.7 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.09m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.51n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=2.08n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=92.6p N=1.12 RS=0.22u EG=1.12 TT=3n) +Rdiode d1 21 1.08m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=1u N=1.1 RS=0.22u EG=0.5 TT=1p) +Rmgd d1 22 12.96m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.67n +.MODEL DGD D(M=0.8 CJO=0.67n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 1.5n + +.ENDS BSC0501NSI_L0 + +****** + +.SUBCKT BSZ0501NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 424u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 719.7 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.09m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.51n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=2.08n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=92.6p N=1.12 RS=0.22u EG=1.12 TT=3n) +Rdiode d1 21 1.08m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=1u N=1.1 RS=0.22u EG=0.5 TT=1p) +Rmgd d1 22 12.96m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.73n +.MODEL DGD D(M=0.8 CJO=0.73n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 1.5n + +.ENDS BSZ0501NSI_L0 + +****** + +.SUBCKT BSC0502NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 288u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 564.8 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.39m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.4n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=1.63n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=72.6p N=1.12 RS=0.28u EG=1.12 TT=3n) +Rdiode d1 21 1.38m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=0.8u N=1.1 RS=0.28u EG=0.5 TT=1p) +Rmgd d1 22 16.52m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.53n +.MODEL DGD D(M=0.8 CJO=0.53n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 1.18n + +.ENDS BSC0502NSI_L0 + +****** + +.SUBCKT BSZ0502NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 737u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 564.8 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.39m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.4n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=1.63n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=72.6p N=1.12 RS=0.28u EG=1.12 TT=3n) +Rdiode d1 21 1.38m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=0.8u N=1.1 RS=0.28u EG=0.5 TT=1p) +Rmgd d1 22 16.52m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.53n +.MODEL DGD D(M=0.8 CJO=0.53n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 1.18n + +.ENDS BSZ0502NSI_L0 + +****** + +.SUBCKT BSC0503NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 288u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 443.2 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.76m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.31n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=1.28n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=57p N=1.12 RS=0.35u EG=1.12 TT=3n) +Rdiode d1 21 1.75m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=0.6u N=1.1 RS=0.35u EG=0.5 TT=1p) +Rmgd d1 22 21.05m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.41n +.MODEL DGD D(M=0.8 CJO=0.41n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 0.92n + +.ENDS BSC0503NSI_L0 + +****** + +.SUBCKT BSZ0503NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 737u + +Rg g1 g2 1.4 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 443.2 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 1.76m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.31n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=1.28n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=57p N=1.12 RS=0.35u EG=1.12 TT=3n) +Rdiode d1 21 1.75m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=0.6u N=1.1 RS=0.35u EG=0.5 TT=1p) +Rmgd d1 22 21.05m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.41n +.MODEL DGD D(M=0.8 CJO=0.41n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 0.92n + +.ENDS BSZ0503NSI_L0 + +****** + +.SUBCKT BSC0504NSI_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 252u + +Rg g1 g2 1.2 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 327.2 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 2.39m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.23n VJ=2.5V) +Rsp s2 s3 0.9 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=0.95n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=42.1p N=1.12 RS=0.48u EG=1.12 TT=3n) +Rdiode d1 21 2.38m TC=6m +Dmgd s2 22 DMGD +.MODEL DMGD D(IS=0.4u N=1.1 RS=0.48u EG=0.5 TT=1p) +Rmgd d1 22 28.52m TC=3m + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.31n +.MODEL DGD D(M=0.8 CJO=0.31n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 0.68n + +.ENDS BSC0504NSI_L0 + +****** + +.SUBCKT BSZ0506NS_L0 drain gate source + +Lg gate g1 3n +Ld drain d1 1n +Ls source s1 0.3n +Rs s1 s2 687u + +Rg g1 g2 1 +M1 d2 g2 s2 s2 DMOS L=1u W=1u +.MODEL DMOS NMOS ( KP= 327.3 VTO=2.25 THETA=0 VMAX=1.5e5 ETA=0.01 LEVEL=3) +Rd d1 d2 2.44m TC=6m + +Dbd s2 d2 Dbt +.MODEL Dbt D(BV=33 M=0.77 CJO=0.21n VJ=2.5V) +Rsp s2 s3 1 +Dbd1 s3 d2 Dbt1 +.MODEL Dbt1 D(BV=1000 M=0.77 CJO=0.85n VJ=2.5V) +Dbody s2 21 DBODY +.MODEL DBODY D(IS=37.8p N=1.12 RS=0.53u EG=1.12 TT=3n) +Rdiode d1 21 2.64m TC=6m + + + + +.MODEL sw NMOS(VTO=0 KP=10 LEVEL=1) +Maux g2 c a a sw +Maux2 b d g2 g2 sw +Eaux c a d2 g2 1 +Eaux2 d g2 d2 g2 -1 +Cox b d2 0.33n +.MODEL DGD D(M=0.8 CJO=0.33n VJ=0.5) +Rpar b d2 1Meg +Dgd a d2 DGD +Rpar2 d2 a 10Meg +Cgs g2 s2 0.68n + +.ENDS BSZ0506NS_L0 + +****** diff --git a/paranoia_parallel/examples/pton/Optimos_out.cir b/paranoia_parallel/examples/pton/Optimos_out.cir new file mode 100644 index 000000000..7e9527b77 --- /dev/null +++ b/paranoia_parallel/examples/pton/Optimos_out.cir @@ -0,0 +1,27 @@ +Test Optimos PSPICE models + +*Xopt Nvd Nvg Nvs Tj Tcase SPD50N03S2-07 dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 +*Xopt Nvd Nvg Nvs Tj Tcase SPD30N03S2L-10 dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 +Xopt Nvd Nvg Nvs Tj Tcase BSC0500NSI dVth=0 dRdson=0 dgfs=0 dC=0 Zthtype=0 Ls=0.3n Ld=1n Lg=3n + +vd 1 0 0 +rd 1 Nvd 6m +vg Nvg 0 0 +vs Nvs 0 0 + +vtc tcase 0 25 +vjt tj 0 25 + +* the library may be downloaded from https://www.infineon.com/cms/en/product/promopages/power-mosfet-simulation-models/?redirId=56389#low-voltage-simulation-models-00001 +.include OptiMOS5_30V_PSpice.lib + +.control +dc vd 0 3 0.1 vg 2.8 3.2 0.2 +dc vd 0 3 0.1 vg 3.5 5 0.5 +* plot similar to output characteristics in data sheet +plot vs#branch vs v(Nvd) dc1.vs#branch vs dc1.v(Nvd) + +quit +.endc + +.end diff --git a/paranoia_parallel/examples/pton/README b/paranoia_parallel/examples/pton/README new file mode 100644 index 000000000..cd75fdfde --- /dev/null +++ b/paranoia_parallel/examples/pton/README @@ -0,0 +1,12 @@ +To run example relax_osc_st.cir, please download the device spice libs Opamps_Comparators_ST.lib +from https://www.st.com/resource/en/cad_symbol_library/opamps_comparators_st.zip + +To run example Optimos_out.cir, please download the device spice libs OptiMOS5_30V_PSpice.lib +from https://www.infineon.com/cms/en/product/promopages/power-mosfet-simulation-models/, especially +https://www.infineon.com/dgdl/Infineon-SimulationModel_OptiMOS_PowerMOSFET_PSpice_30V_N-Channel-SM-v01_00-EN.zip?fileId=5546d46256fb43b3015746ca67ac0fd3 + +And don't forget to add +set ngbehavior=ps +to spinit or .spiceinit to obtain PSPICE compatibility for the included (using .include) device libraries + +See ngspice manual chapt. 16.13.5 for details on the PSPICE Compatibility mode. diff --git a/paranoia_parallel/examples/pton/TLC555.LIB b/paranoia_parallel/examples/pton/TLC555.LIB new file mode 100644 index 000000000..cebcf9aee --- /dev/null +++ b/paranoia_parallel/examples/pton/TLC555.LIB @@ -0,0 +1,438 @@ +* TLC555 +***************************************************************************** +* (C) Copyright 2011 Texas Instruments Incorporated. All rights reserved. +***************************************************************************** +** This model is designed as an aid for customers of Texas Instruments. +** TI and its licensors and suppliers make no warranties, either expressed +** or implied, with respect to this model, including the warranties of +** merchantability or fitness for a particular purpose. The model is +** provided solely on an "as is" basis. The entire risk as to its quality +** and performance is with the customer. +***************************************************************************** +* +* This model is subject to change without notice. Texas Instruments +* Incorporated is not responsible for updating this model. +* +***************************************************************************** +* +** Released by: Analog eLab Design Center, Texas Instruments Inc. +* Part: TLC555 +* Date: 13JUN2011 +* Model Type: ALL IN ONE +* Simulator: PSPICE +* Simulator Version: 16.0.0.p001 +* EVM Order Number: N/A +* EVM Users Guide: N/A +* Datasheet: SLFS043F - SEPTEMBER 1983 - REVISED FEBRUARY 2005 +* +* Model Version: 1.0 +* +***************************************************************************** +* +* Updates: +* +* Version 1.0 : +* Release to Web +* +***************************************************************************** +* +* THIS MODEL IS APPLICABLE FOR TLC555 & TLC556 +* +***************************************************************************** +.SUBCKT TLC555 THRES CONT TRIG RESET OUT DISC VCC GND +XD8 GND RESI D_Z18V +XD7 GND RESET D_Z18V +XR2 RESET RESI TLC55X_RWELL ++ PARAMS: W=50u L=20u +XD2 GND TRGI D_Z18V +XD1 GND TRIG D_Z18V +XR3 TRIG TRGI TLC55X_RWELL ++ PARAMS: W=50u L=20u +XD4 GND THRI D_Z18V +XD3 GND THRES D_Z18V +XR2_2 THRES THRI TLC55X_RWELL ++ PARAMS: W=50u L=20u +XD6 GND CONTI D_Z18V +XD5 GND CONT D_Z18V +XR2_3 CONT CONTI TLC55X_RWELL ++ PARAMS: W=50u L=20u +XMN15 GOUT GND QFF GND MDSWN ++ PARAMS: W=100U L=10U M=7 +XMP15 GOUT VCC QFF GND MDSWP ++ PARAMS: W=195U L=10U M=9 +XMN3 GND TRGO 23 IIMIRRN ++ PARAMS: W1=170U L1=18U M1=1 W2=170U L2=18U M2=1 IDIN=1U +XMN5 GND THRS 25 IIMIRRN ++ PARAMS: W1=13U L1=26U M1=1 W2=52U L2=13U M2=2 IDIN=50N +XMp9 VCC RESO 15 GND IMIRRP ++ PARAMS: W=112U L=15U M=2 IO=2U +XMp6 VCC 25 15 GND IMIRRP ++ PARAMS: W=18U L=26U M=1 IO=100n +XMp5 VCC TRGS 15 GND IMIRRP ++ PARAMS: W=112U L=15U M=2 IO=2U +XMp1 VCC THRO 29 IIMIRRP ++ PARAMS: W1=172U L1=15U M1=1 W2=172U L2=15U M2=1 IDIN=1U +XIB VCC GND 15 IBIAS +XRSFF TRGO THRO RESO QFF 30 VCC GND RR1SFF ++ PARAMS: VOUTH=1 VOUTL=0 RIN=1E12 DELAY=30N ROUT=10 +XMN9 TRGO RESO GND MSWN ++ PARAMS: W=100U L=10U M=1 +XMN17 DISC GOUT GND GND TLC55X_NMOS_HV ++ PARAMS: W=350U L=10U M=20 +XMN16 OUT GOUT GND GND TLC55X_NMOS_HV ++ PARAMS: W=175U L=10U M=20 +XMP16 OUT GOUT VCC VCC TLC55X_PMOS_HV ++ PARAMS: W=270u L=10u M=7 +XMN10 RESO RESI GND GND TLC55X_NMOS_HV_L1 ++ PARAMS: W=100u L=10u M=1 +XMN2 THRO THRI THRS GND TLC55X_NMOS_MV ++ PARAMS: W=170u L=18u M=2 +XMP4 TRGO TRGI TRGS VCC TLC55X_PMOS_MV ++ PARAMS: W=172u L=15u M=2 +XMP3 23 TRGC TRGS VCC TLC55X_PMOS_MV ++ PARAMS: W=172u L=15u M=2 +XMPR1F GND GND 32 TRGC TLC55X_PMOS_LV ++ PARAMS: W=20U L=15U M=1 +XMPR1E 32 32 TRGC TRGC TLC55X_PMOS_LV ++ PARAMS: W=20U L=15U M=1 +XMPR1D TRGC TRGC 33 CONTI TLC55X_PMOS_LV ++ PARAMS: W=20U L=15U M=1 +XMPR1C 33 33 CONTI CONTI TLC55X_PMOS_LV ++ PARAMS: W=20U L=15U M=1 +XMPR1B CONTI CONTI 34 VCC TLC55X_PMOS_LV ++ PARAMS: W=20u L=15u M=1 +XMPR1A 34 34 VCC VCC TLC55X_PMOS_LV ++ PARAMS: W=20u L=15u M=1 +XMN1 29 CONTI THRS GND TLC55X_NMOS_MV ++ PARAMS: W=170u L=18u M=2 +.ENDS TLC555 + +.SUBCKT TLC55X_NMOS_HV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_NMOSD_HV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.SUBCKT TLC55X_NMOS_HV_L1 D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_NMOSD_HV_L1 W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.SUBCKT TLC55X_NMOS_MV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_NMOSD_MV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.SUBCKT TLC55X_NMOS_LV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_NMOSD_LV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.MODEL TLC55X_NMOSD_HV NMOS LEVEL=3 L=10U W=100U KP={KPN} VTO={VTOHN} LAMBDA=2E-3 THETA=1.8E-01 ++ CJ={CJN} CJSW={CJSWN} CGSO={CGSON} CGDO={CGDON} RSH= 10 PB=0.65 LD= 70N TOX={TOX} +*$ +.MODEL TLC55X_NMOSD_HV_L1 NMOS LEVEL=1 L=10U W=100U KP={KPN} VTO={VTOHN} LAMBDA=2E-3 ++ CJ={CJN} CJSW={CJSWN} CGSO={CGSON} CGDO={CGDON} RSH= 10 PB=0.65 LD= 70N TOX={TOX} +*$ +.MODEL TLC55X_NMOSD_MV NMOS LEVEL=1 L=10U W=100U KP={KPN} VTO={VTOMN} LAMBDA=2E-3 ++ CJ={CJNCG} CJSW={CJSWNCG} CGSO={CGSONCG} CGDO={CGDONCG} PB=0.65 LD= 70N TOX={TOXCG} +*+ RSH= 10 +*$ +.MODEL TLC55X_NMOSD_LV NMOS LEVEL=1 L=10U W=100U KP={KPN} VTO={VTON} LAMBDA=2E-3 ++ CJ={CJN} CJSW={CJSWN} CGSO={CGSON} CGDO={CGDON} PB=0.65 LD= 300N TOX={TOX} +*+ RSH= 10 +*$ +.SUBCKT TLC55X_PMOS_HV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_PMOSD_HV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.SUBCKT TLC55X_PMOS_MV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_PMOSD_MV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.SUBCKT TLC55X_PMOS_LV D G S B PARAMS: W = 100U L = 10U M = 1 +M1 D G S B TLC55X_PMOSD_LV W = {W} L = {L} M = {M} AD={W*LS} AS={W*LS} PD={W + 2*LS} PS={W + 2*LS} ++ NRD={LS/W} NRS={LS/W} +.ENDS +*$ +.MODEL TLC55X_PMOSD_HV PMOS LEVEL=3 L=10U W=100U KP={KPP} VTO={-VTOHP} LAMBDA=2E-3 THETA=2.2E-01 ++ CJ={CJP} CJSW={CJSWP} CGSO={CGSOP} CGDO={CGDOP} RSH=10 PB=0.65 LD=70N TOX={TOX} +*$ +.MODEL TLC55X_PMOSD_MV PMOS LEVEL=1 L=10U W=100U KP={KPP} VTO={-VTOMP} LAMBDA=2E-3 +*+ CJ={CJP} CJSW={CJSWP} CGSO={CGSOP} CGDO={CGDOP} PB=0.65 LD=70N TOX={TOX} ++ CJ={CJNCG} CJSW={CJSWNCG} CGSO={CGSONCG} CGDO={CGDONCG} PB=0.65 LD= 70N TOX={TOXCG} +*+ RSH= 10 +*$ +.MODEL TLC55X_PMOSD_LV PMOS LEVEL=1 L=10U W=100U KP={KPP} VTO={-VTOP} LAMBDA=2E-3 ++ CJ={CJP} CJSW={CJSWP} CGSO={CGSOP} CGDO={CGDOP} PB=0.65 LD=300N TOX={TOX} +*+ RSH= 10 +*$ +.SUBCKT TLC55X_RWELL 1 2 PARAMS: W = 10U L = 100U +XR1 1 2 TLC55X_RWELLD PARAMS: W = {W} L = {L} +.ENDS +*$ +.SUBCKT TLC55X_RWELLD 1 2 PARAMS: W = 10U L = 100U +R1 1 2 {RSW*L/W} +.ENDS +*$ +.SUBCKT TLC55X_RNSD 1 2 PARAMS: W = 10U L = 100U +XR1 1 2 TLC55X_RNSD_D PARAMS: W = {W} L = {L} +.ENDS +*$ +.SUBCKT TLC55X_RNSD_D 1 2 PARAMS: W = 10U L = 100U +R1 1 2 {RSN*L/W} +.ENDS +*$ +.SUBCKT TLC55X_RC 1 2 PARAMS: WW = 10U LW = 100U WNSD = 10U LNSD = 100U +XR1 1 2 TLC55X_RC_D PARAMS: WW = {WW} LW = {LW} WNSD = {WNSD} LNSD = {LNSD} +.ENDS +*$ +.SUBCKT TLC55X_RC_D 1 2 PARAMS: WW = 10U LW = 100U WNSD = 10U LNSD = 100U +R1 1 2 {RSW*LW/WW + RSN*LNSD/WNSD} +.ENDS +* +.SUBCKT IBIAS VCC GND VIB +* +.PARAM M1 = 8 +.PARAM M2 = 5 +.PARAM MP = 1 +.PARAM WP = 13U +.PARAM WN = 130U +.PARAM LPE = {36U - LDP} +.PARAM LNE = {13U - LDN} +.PARAM BP = {MP*(WP/LPE)*(KPP/2)} +.PARAM WW = 13U +.PARAM LW = 213U +.PARAM WNN = 25U +.PARAM LNN = 87U +.PARAM R1 = {(RSW*LW/WW + RSN*LNN/WNN)} +.PARAM K2 = {M2*(WN/LNE)*(KPN/2)} +.PARAM MR = {M2/M1} +* +R1 VIB GND {VBMUL} +GB VCC VIB VALUE = {LIMIT( IF ( V(VCC,GND) > VTOHP, BP*PWR(V(VCC,GND)-VTOHP, 2), 0), ++ (1 + 1*LAMBDA*(V(VCC,GND) - VTOHN))*PWR(( 1 - SQRT(MR/(1+2*LAMBDA*(V(VCC,GND) - VTOHP))) )/R1, 2)/K2, 0)} +R2 VIB VCC {RPAR} +.ENDS + +.SUBCKT IMIRRP VCC IO VIB GND PARAMS: W = 100U L = 10U M = 1 IO = 1U +* +.PARAM MP = 1 +.PARAM WP = 13U +.PARAM LPE = {36U - LDP} +.PARAM LE = {L - LDP} +.PARAM MR = { M*W/LE/(MP*WP/LPE)/VBMUL } +.PARAM B1 = { (KPP/2*MP*WP/LPE)*VBMUL } +.PARAM IS = 1E-12 +.PARAM N = {VTOHP/(VT*Log(1 + IO/IS))} +* +GB VCC IO VIB GND {MR} +R1 VCC IO {RPAR} +C1 VCC IO {M*(CBDJ*CJP*LS*W + CBDS*CJSWP*(2*LS + W))} +V1 VCC 10 {VTOHP} +D1 IO 10 DMOD1 +.MODEL DMOD1 D (IS={IS} N={N} ) +.ENDS + +.SUBCKT IIMIRRP VCC IO II PARAMS: W1 = 100U L1 = 10U M1 = 1 W2 = 100U L2= 10U M2 = 2 IDIN = 1U +* +.PARAM L1E = {L1 - LDP} +.PARAM L2E = {L2 - LDP} +.PARAM B1 = {M1*(W1/L1)*(KPP/2)} +.PARAM MR = {M2*W2/L2E/(M1*W1/L1E)} +.PARAM RDS = {1/(2*SQRT(M2*(W2/L2E)*(KPP/2)*IDIN))} +.PARAM IS = 1E-12 +.PARAM NP = {VTOP/(VT*Log(1 + IDIN/IS))} +* +FB VCC IO V1 {MR} +R1 VCC IO {RPAR} +C1 VCC IO {M2*(CBDJ*CJP*LS*W2 + CBDS*CJSWP*(2*LS + W2))} +D1 IO 10 DMODP +V1 VCC 10 {VTOP} +R2 II 10 {RDS} +C2 VCC II {M1*(CBDJ*CJP*LS*W1 + CBDS*CJSWP*(2*LS + W1)) + 2/3*COX*(M1*W1*L1E + M2*W2*L2E) + M1*CGSOP*W1} +C3 II IO {CGDOP*W2} +.MODEL DMODP D (IS={IS} N={NP} ) +.ENDS + +.SUBCKT IIMIRRN GND IO II PARAMS: W1 = 100U L1 = 10U M1 = 1 W2 = 100U L2= 10U M2 = 2 IDIN = 1U +* +.PARAM L1E = {L1 - LDN} +.PARAM L2E = {L2 - LDN} +.PARAM B1 = {M1*(W1/L1)*(KPN/2)} +.PARAM MR = { M2*W2/L2E/(M1*W1/L1E) } +.PARAM RDS = {1/(2*SQRT(M2*(W2/L2E)*(KPN/2)*IDIN))} +.PARAM IS = 1E-12 +.PARAM NN = {VTON/(VT*Log(1 + IDIN/IS))} +* +FB IO GND V1 {MR} +R1 IO GND {RPAR} +C1 IO GND {M2*(CBDJ*CJN*LS*W2 + CBDS*CJSWN*(2*LS + W2))} +D1 10 IO DMODN +V1 10 GND {VTON} +R2 II 10 {RDS} +C2 II GND {M1*(CBDJ*CJN*LS*W1 + CBDS*CJSWN*(2*LS + W1)) + 2/3*COX*(M1*W1*L1E + M2*W2*L2E) + M1*CGSON*W1} +C3 II IO {M2*CGDON*W2} +.MODEL DMODN D (IS={IS} N={NN} ) +.ENDS + +.SUBCKT MDSWP D S DG GND PARAMS: W = 100U L = 10U M = 1 +* +.PARAM LE = {L - LDP} +* +S1 D S DG GND SWN +C1 D S {M*(CBDJ*CJP*LS*W + CBDS*CJSWP*(2*LS + W))} +*D B +.MODEL SWN VSWITCH ( VON = {0.49} VOFF = {0.55} RON={1/(2*M*(W/LE)*(KPP/2)*10)} ROFF={1G} ) +.ENDS + +.SUBCKT MDSWN D S DG GND PARAMS: W = 100U L = 10U M = 1 +* +.PARAM LE = {L - LDN} +* +S1 D S DG GND SWN +C1 D S {M*(CBDJ*CJN*LS*W + CBDS*CJSWN*(2*LS + W))} +*D B +.MODEL SWN VSWITCH ( VON = {0.55} VOFF = {0.49} RON={1/(2*M*(W/LE)*(KPN/2)*10)} ROFF={1G} ) +.ENDS + +.SUBCKT MSWN D G S PARAMS: W = 100U L = 10U M = 1 +* +.PARAM LE = {L - LDN} +* +*C1 D S {M*(CBDJ*CJN*LS*W + CBDS*CJSWN*(2*LS + W))} +*D B +*C2 G S {M*2/3*COX*(W*LE) + CGSON*W} +*C3 G D {CGDON*W} +S1 D S G S SWN +.MODEL SWN VSWITCH ( VON = {VTON+1} VOFF = {VTON} RON={1/(2*M*(W/L)*(KPN/2)*10)} ROFF={1G} ) +.ENDS +* +* CONNECTIONS: A +* | C +* | | +.SUBCKT D_Z18V 1 2 +D1 1 2 DZ_18V +.ENDS + +.PARAM ISZ = 5P +.PARAM NZ = {0.3/(VT*Log(1 + 5.0M/ISZ))} +.MODEL DZ_18V D( IS={ISz} N={Nz} BV=18.0 IBV=5.0M EG={8*Nz*VT}) + +.SUBCKT RR1SFF S R R1 Q Q_ VCC GND ++ PARAMS: VOUTH=5.0 VOUTL=0 RIN=1E12 DELAY=10N ROUT=10 +.PARAM W1 = 100U +.PARAM L1 = 10U +.PARAM W2 = 100U +.PARAM L2= 10U +.PARAM W3 = 10U +.PARAM L3 = 25U +.PARAM W4 = 10U +.PARAM L4= 100U +* +XU1 Q GND S GND Q_ GND COMP2INPNORSD ++ PARAMS: ROUT={ROUT} DELAYLH={1N} DELAYHL={1N} VOUTH={VOUTH} VOUTL={VOUTL} ++ VTHRES1={0.5*(VOUTH-VOUTL)} VTHRES2={VTOCN} +XU2 VCC R R1 GND Q_ GND Q VCC GND COMP3INPNORSD ++ PARAMS: ROUT={ROUT} DELAYLH={15N} DELAYHL={1N} VOUTH={VOUTH} VOUTL={VOUTL} ++ VTHRES1={VTOCP} VTHRES2={VTOCN} VTHRES3={0.49*(VOUTH-VOUTL)} +*C1 S GND {0.5*COX*(W1*L1) + CGSON*W1} +*C2 R VCC {0.5*COX*(W2*L2) + CGSOP*W2} +*C3 R1 GND {0.5*COX*(W3*L3) + CGSON*W3} +*C4 R1 VCC {0.5*COX*(W4*L4) + CGSOP*W4} +.ENDS + +.SUBCKT COMP2INPNORSD IN1+ IN1- IN2+ IN2- OUT GND ++ PARAMS: ROUT=0 DELAYLH=0 DELAYHL=0 VOUTH=0 VOUTL=0 VTHRES1=0 VTHRES2=0 +* +.PARAM TDELLH = {IF ( (DELAYLH < 1E-9) , 1E-9, DELAYLH ) } +.PARAM TDELHL = {IF ( (DELAYHL < 1E-9) , 1E-9, DELAYHL ) } +.PARAM RO = {IF ( (TDEL > 1E-15) & (ROUT < 1), 1, ROUT ) } +.PARAM TDEL = {(TDELLH+TDELHL)/2} +.PARAM COUT={TDEL/(0.693*(RO+1U))} +.PARAM RDELLH = {TDELLH/(0.693*(COUT+1F))} +.PARAM RDELHL = {TDELHL/(0.693*(COUT+1F))} + +EOUT OUT GND VALUE= { IF ( (V(IN1+,IN1-) > {VTHRES1}) | (V(IN2+,IN2-) > {VTHRES2}), ++ VOUTL + RDELLH*I(EOUT), VOUTH + RDELHL*I(EOUT) ) } +COUT OUT GND {COUT} +.ENDS COMP2INPNORSD + +.SUBCKT COMP3INPNORSD IN1+ IN1- IN2+ IN2- IN3+ IN3- OUT VCC GND ++ PARAMS: ROUT=0 DELAYLH=0 DELAYHL=0 VOUTH=0 VOUTL=0 VTHRES1=0 VHYST1=0 VTHRES2=0 VHYST2=0 VTHRES3=0 VHYST3=0 +* +.PARAM TDELLH = {IF ( (DELAYLH < 1E-9) , 1E-9, DELAYLH ) } +.PARAM TDELHL = {IF ( (DELAYHL < 1E-9) , 1E-9, DELAYHL ) } +.PARAM RO = {IF ( (TDEL > 1E-15) & (ROUT < 1), 1, ROUT ) } +.PARAM TDEL = {(TDELLH+TDELHL)/2} +.PARAM COUT={TDEL/(0.693*(RO+1U))} +.PARAM VREFN = {(15-VTOHN)} +.PARAM VREFP = {(15-VTOHP)} +.PARAM RDELLH = {TDELLH/(0.693*(COUT+1F))*VREFP} +.PARAM RDELHL = {TDELHL/(0.693*(COUT+1F))*VREFN} +* +EOUT OUT GND VALUE= { IF ( (V(IN1+,IN1-) > {VTHRES1}) | (V(IN2+,IN2-) > {VTHRES2}) | (V(IN3+,IN3-) > {VTHRES3}), ++ VOUTL + RDELLH*I(EOUT)*V(1,GND), VOUTH + RDELHL*I(EOUT)*V(1,GND) ) } +E1 1 GND VALUE= { IF ( (V(VCC,GND) > {VTOHP+0.01}), 1/(V(VCC,GND)-VTOHP), 100 ) } +COUT OUT GND {COUT} +.ENDS COMP3INPNORSD + +.SUBCKT 1N4148 1 2 +D1 1 2 D_1N4148_1 +.MODEL D_1N4148_1 D( IS=1N N=1.7 BV=75 IBV=5U RS=2M ++ CJO=4P VJ=750M M=330M FC=500M TT=25.9N ++ EG=1.11 XTI=3 KF=0 AF=1 ) +.ENDS + +.PARAM LS = 1.0U +.PARAM VTOP_ = 0.31 +.PARAM VTOP = 0.14 +.PARAM VTON = 0.14 +.PARAM VTOMP = 0.6 +.PARAM VTOMN = 0.55 +.PARAM VTOHP = 0.85 +.PARAM VTOHN = 0.80 +.PARAM LAMBDA = 2M +.PARAM KPN = 6.0E-05 +.PARAM KPP = 3.0E-05 +.PARAM LDN = 0.07U +.PARAM LDP = 0.07U +.PARAM RSW = 1810 +.PARAM RSN = 1.41 +.PARAM VBMUL = 1E6 +.PARAM RPAR = 1T +.PARAM CBDJ = 1 +.PARAM CBDS = 1 +.PARAM CN = 0.8 +*0.8U +.PARAM CJN = {CN*180U} +.PARAM CJP = {CN*300U} +.PARAM CJSWN = {CN*1N} +.PARAM CJSWP = {CN*2.2N} +.PARAM XJN = 0.2U +.PARAM CGSON = {CN*0.6 * XJN * COX} +.PARAM CGDON = {CGSON} +.PARAM XJP = 0.3U +.PARAM CGSOP = {CN*0.6 * XJN * COX} +.PARAM CGDOP = {CGSOP} +.PARAM EPSSIO2 = {3.9*8.854214871E-12} +.PARAM TOX = 1000E-10 +.PARAM COX = {EPSSIO2/TOX} +.PARAM EC = 1.5E6 +.PARAM VTOCP = {VTOHP+0.05} +.PARAM VTOCN = {VTOHN+0.05} +*CG +.PARAM CCG = 0.2 +.PARAM CJNCG = {CCG*180U} +.PARAM CJPCG = {CCG*300U} +.PARAM CJSWNCG = {CCG*1N} +.PARAM CJSWPCG = {CCG*2.2N} +.PARAM XJNCG = 0.2U +.PARAM CGSONCG = {CCG*0.6 * XJNCG * COXCG} +.PARAM CGDONCG = {CGSONCG} +.PARAM XJPCG = 0.3U +.PARAM CGSOPCG = {CCG*0.6 * XJNCG * COXCG} +.PARAM CGDOPCG = {CGSOPCG} +.PARAM TOXCG = 1000E-10 +.PARAM COXCG = {EPSSIO2/TOXCG} \ No newline at end of file diff --git a/paranoia_parallel/examples/pton/ad22057n.lib b/paranoia_parallel/examples/pton/ad22057n.lib new file mode 100644 index 000000000..f564800da --- /dev/null +++ b/paranoia_parallel/examples/pton/ad22057n.lib @@ -0,0 +1,181 @@ +* AD22057N SPICE Macro-model +* Description: Amplifier +* Generic Desc: Bipolar, CSAmp, G=20, BiDir, Auto +* Developed by: ARG / ADSC +* Revision History: 08/10/2012 - Updated to new header style +* 1.0 (11/1995) +* Copyright 1995, 2012 by Analog Devices +* +* Refer to http://www.analog.com/Analog_Root/static/techSupport/designTools/spiceModels/license/spice_general.html for License Statement. Use of this model +* indicates your acceptance of the terms and provisions in the License Statement. +* +* BEGIN Notes: +* +* Not Modeled: +* +* Parameters modeled include: +* This version of the AD22057 model simulates the worst-case +* parameters of the 'N' grade. The worst-case parameters +* used correspond to those in the data sheet. +* +* END Notes +* +* Node assignments +* non-inverting input +* | inverting input +* | | positive supply +* | | | negative supply +* | | | | A1 out +* | | | | | A2 in +* | | | | | | offset +* | | | | | | | output +* | | | | | | | | +.SUBCKT AD22057N 1 2 99 50 30 31 40 49 +* +* A1 INPUT ATTENUATORS, GAIN, AND OFFSET RESISTORS +* +R1 1 3 200K +R2 2 4 200K +RS1 3 16 1K +RS2 4 18 1K +R3 3 5 41K +R4 4 6 41K +R5 5 6 2.55919K TC=-600U +R6 5 50 250 +R7 6 50 250 +R8 5 19 9K +R9 6 7 10K +R10 19 40 2K +R11 19 50 2K +R12 7 30 100K +R16 7 50 10K +C1 16 50 5P +C2 17 50 5P +* +* A1 INPUT STAGE AND POLE AT 1MHZ +* +I1 99 8 7.55U +Q1 11 16 9 QP 1 +Q2 12 17 10 QP 1 +R21 11 50 6.89671K +R22 12 50 6.89671K +R23 8 9 .335 +R24 8 10 .335 +C3 11 12 11.5P +EOS 61 17 POLY(1) 33 0 -61.149U 1.2 +ETC 18 61 POLY(1) 60 0 -49.665M 1 +ITC 0 60 49.665U +RTC 60 0 1E3 TC=-107U +* +* GAIN STAGE AND DOMINANT POLE AT 400HZ +* +EREF 98 50 POLY(2) 99 0 50 0 0 0.5 0.5 +G1 98 13 12 11 144.997U +R25 13 98 6.89671E6 +C4 13 98 57.6923P +D1 13 99 DX +D2 50 13 DX +* +* COMMON MODE STAGE WITH ZERO AT 1KHZ +* +ECM 32 0 POLY(2) 1 0 2 0 0 0.5 0.5 +R28 32 33 1E6 +R29 33 0 10 +CCM 32 33 159P +* +* NEGATIVE ZERO AT 0.6MHZ +* +E1 23 98 13 98 1E6 +R26 23 24 1E3 +R27 24 98 1E-3 +FNZ 23 24 VNZ -1 +ENZ 25 98 23 24 1 +VNZ 26 98 DC 0 +CNZ 25 26 265P +* +* POLE AT 5MHZ +* +G2 98 20 24 98 1E-6 +R30 20 98 1E6 +C5 20 98 32F +* +* A1 OUTPUT STAGE +* +EIN1 99 27 POLY(1) 20 98 1.5072 1.124 +Q216 50 27 28 QP375 3.444 +Q218 7 29 99 QP350 9.913 +R31 28 29 27K +I2 99 29 4.75U +* +* A2 INPUT STAGE +* +I3 99 34 2.516667U +Q3 35 31 37 QP 1 +Q4 36 39 38 QP 1 +R32 35 50 106.103K +R33 36 50 106.103K +R34 34 37 85.414K +R35 34 38 85.414K +R13 40 41 20K +R14 41 50 20K +R15 41 49 10K +R17 39 41 95K +* +* A2 1ST GAIN STAGE AND SLEW RATE +* +G3 98 42 36 35 30.159U +R36 42 98 1E6 +E2 99 43 POLY(1) 99 98 -0.473 1 +E3 44 50 POLY(1) 98 50 -0.473 1 +D3 42 43 DX +D4 44 42 DX +* +* A2 2ND GAIN STAGE AND DOMINANT POLE AT 12HZ +* +G4 98 45 42 98 2.5U +R37 45 98 132.629E6 +C7 45 98 100P +D5 45 59 DX +D6 55 45 DX +VC1 59 99 5 +VC2 50 55 5 +* +* NEGATIVE ZERO AT 1MHZ +* +E4 51 98 45 98 1E6 +R38 51 52 1E6 +R39 52 98 1 +FNZ2 51 52 VNZ2 -1 +ENZ2 53 98 51 52 1 +VNZ2 54 98 0 +CNZ2 53 54 159F +* +* A2 OUTPUT STAGE +* +ISY 99 50 469U +EIN2 99 56 POLY(1) 52 98 1.6901 112.132E-3 +RIN 46 56 10K +Q316 50 46 47 QP375 1.778 +Q310 50 47 48 QP375 5.925 +Q318 49 48 57 50 QP350 9.913 +I4 99 47 4.75U +I5 99 48 9.5U +VSC 99 57 0 +FSC 58 99 VSC 1 +QSC 46 58 99 QP350 1 +RSC 99 58 89 +* +* MODELS USED +* +.MODEL QP350 PNP(IS=1.4E-15 BF=70 CJE=.012P CJC=.06P RE=20 RB=350 ++RC=200) +.MODEL QP375 PNP(IS=1.4E-15 CJE=.01P CJC=.05P RE=20 RC=400 RB=100) +.MODEL QP AKO:QP350 PNP(BF=150 VA=100) +.MODEL DX D(CJO=1F RS=.1) +.ENDS + +.MODEL QP351 PNP(IS=1.4E-15 BF=70 CJE=.012P CJC=.06P RE=20 RB=350 ++RC=200) + + + diff --git a/paranoia_parallel/examples/pton/op-test-adi.cir b/paranoia_parallel/examples/pton/op-test-adi.cir new file mode 100644 index 000000000..0b2fbd5f6 --- /dev/null +++ b/paranoia_parallel/examples/pton/op-test-adi.cir @@ -0,0 +1,41 @@ +OpAmp Test + +vddp vp 0 15 +vddn vn 0 0 +voff off 0 -1 + +*vin in 0 0 + +.include ad22057n.lib + +* Node assignments +* non-inverting input +* | inverting input +* | | positive supply +* | | | negative supply +* | | | | A1 out +* | | | | | A2 in +* | | | | | | offset +* | | | | | | | output +* | | | | | | | | +*SUBCKT AD22057N 1 2 99 50 30 31 40 49 +Xopmap in 0 vp vn a1 a1 off outo AD22057N + +Rout outo a1 200k +Ca1 a1 0 500p + +.dc vin 0.1 0.2 0.01 + +vin in 0 DC 0 PULSE(0.1 0.2 200uS 200uS 200uS 5m 10m) +.tran 10u 1m + +.control +run +plot dc1.v(outo) vs dc1.v(in) +plot v(in) v(a1) v(outo) +quit +.endc + + +.end + diff --git a/paranoia_parallel/examples/pton/op-test-test.cir b/paranoia_parallel/examples/pton/op-test-test.cir new file mode 100644 index 000000000..28208cac7 --- /dev/null +++ b/paranoia_parallel/examples/pton/op-test-test.cir @@ -0,0 +1,198 @@ +OpAmp Test + +vddp vp 0 5 +vddn vn 0 -5 + +*vin in 0 0 + +* OPA171 IN+ IN- VCC VEE OUT +.include OPA171.txt + +Xopmap 0 ino vp vn outo OPA171 + +*Xopmap 0 ino outo vp vn CLC409 +Rin in ino 1k +Rfb ino outo 3k + +*.dc vin -1 1 0.1 + +vin in 0 DC 0 PULSE(-0.5 0.5 5uS 200NS 200NS 5uS 14uS) +.tran 10n 14u uic + +*.options vntol=10u +.control +run +plot v(in) v(outo) +*quit +.endc + + +* +* This is a Very Wide band, Low Distortion Monolithic +* Current Feedback Op Amp. +* +* Version 1, Rev. A, Date 04-09-92, By RRS +* +* Connections: Non-Inverting Input +* | Inverting Input +* | | Output +* | | | +Vcc +* | | | | -Vcc +* | | | | | +.SUBCKT CLC409 3 2 6 7 4 +* +* DC BIAS MIRROR +* +R1 7 4 28K +R2 7 9 271 +R3 10 4 335 +* +G1 7 11 POLY(2) 7 9 7 4 0 3.15M 21.5U +C3 11 0 128F +* +G2 14 4 POLY(1) 10 4 0 2.95M +C4 14 0 104F +* +* INPUT VOLTAGE BUFFER +* +E1 3 17 POLY(1) 35 0 1.0M 1.673 +C6 17 0 1.00P +* +Q1 10 17 12 QINP +D3 11 12 DY +Q2 9 17 13 QINN +D4 13 14 DY +* +G3 2 0 POLY(1) 36 0 0 9.282M +C10 2 0 2.9P +* +D5 22 2 DY +Q3 21 11 22 QINN +D6 2 23 DY +Q4 24 14 23 QINP +* +* CURRENT MIRROR GAIN BLOCKS +* +R10 7 20 640 +V1 20 21 1.9 +C8 21 28 294F +G4 7 28 POLY(1) 7 20 0 4.3M +R15 7 28 102K +C13 28 0 641F +D1 28 26 DX +V3 7 26 1.65 +G6 7 30 POLY(1) 7 20 0 2.74M +C15 30 0 676F +* +R13 25 4 640 +V2 24 25 1.85 +C12 24 29 294F +G5 29 4 POLY(1) 25 4 0 4.5M +R16 29 4 761K +C14 29 0 312F +D2 27 29 DX +V4 27 4 1.55 +G7 31 4 POLY(1) 25 4 0 6.74M +C16 31 0 330F +* +* OUTPUT STAGE AND COMPENSATION CAPACITORS +* +R14 28 29 45.0 +Q5 4 29 30 QOUTP1 +Q6 7 28 31 QOUTN1 +* +C9 21 33 .935P +C11 24 33 .935P +C17 33 0 4.00P +R19 33 6 10 +* +Q7 7 30 33 QOUTN2 +Q8 4 31 33 QOUTP2 +* +* NOISE BLOCKS +* +R20 35 0 122 +R21 35 0 122 +* +R22 36 0 122 +R23 36 0 122 +* +* MODELS +* +.MODEL DX D TT=200N +.MODEL DY D IS=0.166F +* +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* +.MODEL QOUTN1 NPN ++ IS =3.954E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=4.590E-02 ISE=5.512E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=3.087E-19 ++ NC =1.700E+00 RB =3.645E+01 IRB=0.000E+00 RBM=8.077E+00 ++ RE =3.010E-01 RC =2.702E+01 CJE=2.962E-13 ++ MJE=4.950E-01 TF =1.904E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=1.110E-01 PTF=0.000E+00 CJC=2.846E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=1.562E-01 TR =5.832E-10 CJS=5.015E-13 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QOUTN2 NPN ++ IS =9.386E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=1.089E-01 ISE=1.308E-16 NE =1.197E+00 BR =3.956E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=1.378E-18 ++ NC =1.700E+00 RB =65.4 IRB=0.000E+00 RBM=1.683E+00 ++ RC =1.857E+01 CJE=7.030E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.875E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=2.635E-01 PTF=0.000E+00 CJC=6.172E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=860m TR =1.069E-09 CJS=1.028E-12 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QINP PNP ++ IS =0.166f BF =7.165E+01 NF =1.000E+00 VAF=2.000E+01 ++ IKF=1.882E-02 ISE=6.380E-16 NE =1.366E+00 BR =1.833E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=1.321E-01 ISC=3.666E-18 ++ NC =1.634E+00 RB =78.8 IRB=0.000E+00 RBM=57.6 ++ RC =3.739E+01 CJE=1.588E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.156E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=5.084E-02 PTF=0.000E+00 CJC=2.725E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=741m TR =7.500E-11 CJS=515f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =8.803E-01 +* +.MODEL QOUTP1 PNP ++ IS =2.399E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=3.509E-02 ISE=1.190E-15 NE =1.366E+00 BR =1.900E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=2.464E-01 ISC=6.745E-18 ++ NC =1.634E+00 RB =1.542E+01 IRB=0.000E+00 RBM=4.059E+00 ++ RC =4.174E+01 CJE=2.962E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.107E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=9.481E-02 PTF=0.000E+00 CJC=4.508E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=1.562E-01 TR =9.500E-11 CJS=1.045E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.MODEL QOUTP2 PNP ++ IS =5.693E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=8.328E-02 ISE=5.742E-15 NE =1.366E+00 BR =1.923E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=5.848E-01 ISC=1.586E-17 ++ NC =1.634E+00 RB =56.5 IRB=0.000E+00 RBM=51.7 ++ RC =1.767E+00 CJE=7.030E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.073E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=2.250E-01 PTF=0.000E+00 CJC=9.776E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=923m TR =1.450E-10 CJS=1.637E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.ENDS CLC409 + +.end + diff --git a/paranoia_parallel/examples/pton/op-test.cir b/paranoia_parallel/examples/pton/op-test.cir new file mode 100644 index 000000000..920874378 --- /dev/null +++ b/paranoia_parallel/examples/pton/op-test.cir @@ -0,0 +1,198 @@ +OpAmp Test + +vddp vp 0 3 +vddn vn 0 -3 + +*vin in 0 0 + +* OPA171 IN+ IN- VCC VEE OUT +.include OPA171.txt + +Xopmap 0 ino vp vn outo OPA171 + +*Xopmap 0 ino outo vp vn CLC409 +Rin in ino 1k +Rfb ino outo 3k + +*.dc vin -1 1 0.1 + +vin in 0 DC 0 PULSE(-0.5 0.5 2uS 200NS 200NS 5uS 10uS) +.tran 10n 10u uic + +.options vntol=10u +.control +run +plot v(in) v(outo) +quit +.endc + + +* +* This is a Very Wide band, Low Distortion Monolithic +* Current Feedback Op Amp. +* +* Version 1, Rev. A, Date 04-09-92, By RRS +* +* Connections: Non-Inverting Input +* | Inverting Input +* | | Output +* | | | +Vcc +* | | | | -Vcc +* | | | | | +.SUBCKT CLC409 3 2 6 7 4 +* +* DC BIAS MIRROR +* +R1 7 4 28K +R2 7 9 271 +R3 10 4 335 +* +G1 7 11 POLY(2) 7 9 7 4 0 3.15M 21.5U +C3 11 0 128F +* +G2 14 4 POLY(1) 10 4 0 2.95M +C4 14 0 104F +* +* INPUT VOLTAGE BUFFER +* +E1 3 17 POLY(1) 35 0 1.0M 1.673 +C6 17 0 1.00P +* +Q1 10 17 12 QINP +D3 11 12 DY +Q2 9 17 13 QINN +D4 13 14 DY +* +G3 2 0 POLY(1) 36 0 0 9.282M +C10 2 0 2.9P +* +D5 22 2 DY +Q3 21 11 22 QINN +D6 2 23 DY +Q4 24 14 23 QINP +* +* CURRENT MIRROR GAIN BLOCKS +* +R10 7 20 640 +V1 20 21 1.9 +C8 21 28 294F +G4 7 28 POLY(1) 7 20 0 4.3M +R15 7 28 102K +C13 28 0 641F +D1 28 26 DX +V3 7 26 1.65 +G6 7 30 POLY(1) 7 20 0 2.74M +C15 30 0 676F +* +R13 25 4 640 +V2 24 25 1.85 +C12 24 29 294F +G5 29 4 POLY(1) 25 4 0 4.5M +R16 29 4 761K +C14 29 0 312F +D2 27 29 DX +V4 27 4 1.55 +G7 31 4 POLY(1) 25 4 0 6.74M +C16 31 0 330F +* +* OUTPUT STAGE AND COMPENSATION CAPACITORS +* +R14 28 29 45.0 +Q5 4 29 30 QOUTP1 +Q6 7 28 31 QOUTN1 +* +C9 21 33 .935P +C11 24 33 .935P +C17 33 0 4.00P +R19 33 6 10 +* +Q7 7 30 33 QOUTN2 +Q8 4 31 33 QOUTP2 +* +* NOISE BLOCKS +* +R20 35 0 122 +R21 35 0 122 +* +R22 36 0 122 +R23 36 0 122 +* +* MODELS +* +.MODEL DX D TT=200N +.MODEL DY D IS=0.166F +* +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* +.MODEL QOUTN1 NPN ++ IS =3.954E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=4.590E-02 ISE=5.512E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=3.087E-19 ++ NC =1.700E+00 RB =3.645E+01 IRB=0.000E+00 RBM=8.077E+00 ++ RE =3.010E-01 RC =2.702E+01 CJE=2.962E-13 ++ MJE=4.950E-01 TF =1.904E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=1.110E-01 PTF=0.000E+00 CJC=2.846E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=1.562E-01 TR =5.832E-10 CJS=5.015E-13 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QOUTN2 NPN ++ IS =9.386E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=1.089E-01 ISE=1.308E-16 NE =1.197E+00 BR =3.956E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=1.378E-18 ++ NC =1.700E+00 RB =65.4 IRB=0.000E+00 RBM=1.683E+00 ++ RC =1.857E+01 CJE=7.030E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.875E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=2.635E-01 PTF=0.000E+00 CJC=6.172E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=860m TR =1.069E-09 CJS=1.028E-12 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QINP PNP ++ IS =0.166f BF =7.165E+01 NF =1.000E+00 VAF=2.000E+01 ++ IKF=1.882E-02 ISE=6.380E-16 NE =1.366E+00 BR =1.833E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=1.321E-01 ISC=3.666E-18 ++ NC =1.634E+00 RB =78.8 IRB=0.000E+00 RBM=57.6 ++ RC =3.739E+01 CJE=1.588E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.156E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=5.084E-02 PTF=0.000E+00 CJC=2.725E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=741m TR =7.500E-11 CJS=515f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =8.803E-01 +* +.MODEL QOUTP1 PNP ++ IS =2.399E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=3.509E-02 ISE=1.190E-15 NE =1.366E+00 BR =1.900E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=2.464E-01 ISC=6.745E-18 ++ NC =1.634E+00 RB =1.542E+01 IRB=0.000E+00 RBM=4.059E+00 ++ RC =4.174E+01 CJE=2.962E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.107E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=9.481E-02 PTF=0.000E+00 CJC=4.508E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=1.562E-01 TR =9.500E-11 CJS=1.045E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.MODEL QOUTP2 PNP ++ IS =5.693E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=8.328E-02 ISE=5.742E-15 NE =1.366E+00 BR =1.923E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=5.848E-01 ISC=1.586E-17 ++ NC =1.634E+00 RB =56.5 IRB=0.000E+00 RBM=51.7 ++ RC =1.767E+00 CJE=7.030E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.073E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=2.250E-01 PTF=0.000E+00 CJC=9.776E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=923m TR =1.450E-10 CJS=1.637E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.ENDS CLC409 + +.end + diff --git a/paranoia_parallel/examples/pton/relax_osc_st.cir b/paranoia_parallel/examples/pton/relax_osc_st.cir new file mode 100644 index 000000000..ff6bc1c20 --- /dev/null +++ b/paranoia_parallel/examples/pton/relax_osc_st.cir @@ -0,0 +1,34 @@ +Relaxation oscillator +* ST AN4071, Fig. 26 +* www.st.com/resource/en/application_note/dm00050759.pdf + +.include Opamps_Comparators_ST.lib +XICOMP2 VM1 VP1 VS1 VCCP VCCN TS302X +* http://www.st.com/resource/en/cad_symbol_library/opamps_comparators_st.zip + +vdd vccp 0 5 +vss vccn 0 0 + +R1 vs1 vm1 10k +R2 vp1 0 10k +R3 vp1 vccp 10k +R4 vs1 vp1 10k + +C1 vm1 0 1n + +.tran 100n 50u uic + +.option rshunt=1e12 + +.control +save vs1 vm1 vp1 +run +plot vs1 vm1 vp1 +linearize vs1 +fft vs1 +plot mag(vs1) xlimit 1k 100k +listing +quit +.endc + +.end diff --git a/paranoia_parallel/examples/pton/remcirc-test.cir b/paranoia_parallel/examples/pton/remcirc-test.cir new file mode 100644 index 000000000..d5bdf5daf --- /dev/null +++ b/paranoia_parallel/examples/pton/remcirc-test.cir @@ -0,0 +1,15 @@ +remcirc test +v1 1 0 1 +v2 2 0 1 +v3 3 0 1 +.include rtest.lib + +.control +repeat 1000 + reset +end + +quit +.endc + +.end diff --git a/paranoia_parallel/examples/pton/rtest.lib b/paranoia_parallel/examples/pton/rtest.lib new file mode 100644 index 000000000..5b3510240 --- /dev/null +++ b/paranoia_parallel/examples/pton/rtest.lib @@ -0,0 +1,4 @@ +R1 1 0 res +R2 2 0 res +R3 3 0 res +.model res r r=1 diff --git a/paranoia_parallel/examples/pton/switch-invs.lib b/paranoia_parallel/examples/pton/switch-invs.lib new file mode 100644 index 000000000..4a1eaaf26 --- /dev/null +++ b/paranoia_parallel/examples/pton/switch-invs.lib @@ -0,0 +1,72 @@ +* sw like an NMOS inverter with resistive load +.subckt invertern In Out VDD DGND +*sp out vdd in vdd swswitch on +Rl out vdd 10k +Cl out dgnd 0.1p +*C2 out vdd 0.1p +sn out dgnd in dgnd swswitch off +.ends invertern + +* sw like a PMOS inverter with resistive load +.subckt inverterp In Out VDD DGND +sp out vdd vdd in swswitch +Rl out 0 10k +*Cl out dgnd 0.1p +C2 out vdd 0.1p +*sn out dgnd in dgnd swswitch off +.ends inverterp + +* sw like a CMOS inverter +.subckt inverter In Out VDD DGND +sp out vdd vdd in swswitch +Rin in 0 1e9 +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swswitch +.ends inverter + +.model swswitch sw (vt=1 vh=0.1 ron=1k roff=1e12) +.model switchn sw (vt=1 vh=0.1 ron=1k roff=1e12) + +* sw like a CMOS inverter with PSPICE VSWITCH +.subckt invertervs In Out VDD DGND +sp out vdd vdd in swn +Rin in 0 1e9 +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swn +.ends invertervs + +.MODEL SWN VSWITCH ( VON = 1.1 VOFF = 0.9 RON=1k ROFF=1e12 ) + + +* sw like a CMOS inverter with PSPICE VSWITCH +.subckt invertervs2 In Out VDD DGND +sp out vdd vdd in swn +Rin in 0 1e9 +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swn +.MODEL SWN VSWITCH ( VON = 1.1 VOFF = 0.9 RON=1k ROFF=1e12 ) +.ends invertervs2 + +* sw like a CMOS inverter with PSPICE VSWITCH +.subckt invertervs3 In Out VDD DGND +sp out vdd vdd in swn2 +Rin in 0 1e9 +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swn2 +.ends invertervs3 + +.MODEL SWN2 VSWITCH ( VON = 1.1 VOFF = 0.9 RON=1k ROFF=1e12 ) + +* sw like a CMOS inverter with PSPICE VSWITCH +.subckt invertervs4 In Out VDD DGND +sp out vdd vdd in swn +Rin in 0 1e9 +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swn +.MODEL SWN VSWITCH ( VON = 1.1 VOFF = 0.9 RON=2k ROFF=1e12 ) +.ends invertervs4 diff --git a/paranoia_parallel/examples/pton/switch-oscillators.cir b/paranoia_parallel/examples/pton/switch-oscillators.cir new file mode 100644 index 000000000..8c33a558b --- /dev/null +++ b/paranoia_parallel/examples/pton/switch-oscillators.cir @@ -0,0 +1,72 @@ +* sw ring-oscillators + +.control +destroy all +run +plot I(vmeasure) +plot V(Osc_out) +rusage + +quit +.endc + +.ic v(osc_out)=0.25 +.tran 1n 4n 50p ; +*.tran 100p 80n 50p uic ;for BSIM4 +.option method=gear maxord=3 + +VDD VDD2 0 DC 3 + +VMEASURE VDD2 VDD dc 0 + +cvdd vdd 0 1e-18 +XX18 Osc_out N001 VDD 0 inverter +XX2 N001 N002 VDD 0 inverter +XX3 N002 N003 VDD 0 inverter +XX4 N003 N004 VDD 0 inverter +XX5 N004 N005 VDD 0 inverter +XX6 N005 N006 VDD 0 inverter +XX7 N006 N007 VDD 0 inverter +XX8 N007 N008 VDD 0 inverter +XX9 N008 N009 VDD 0 inverter +XX10 N009 N010 VDD 0 inverter +XX11 N010 N011 VDD 0 inverter +XX12 N011 N012 VDD 0 inverter +XX13 N012 N013 VDD 0 inverter +XX14 N013 N014 VDD 0 inverter +XX15 N014 N015 VDD 0 inverter +XX16 N015 N016 VDD 0 inverter +XX17 N016 Osc_out VDD 0 inverter + + +* sw like an NMOS inverter with resistive load +.subckt invertern In Out VDD DGND +*sp out vdd in vdd swswitch on +Rl out vdd 10k +Cl out dgnd 0.1p +*C2 out vdd 0.1p +sn out dgnd in dgnd swswitch off +.ends invertern + +* sw like a PMOS inverter with resistive load +.subckt inverterp In Out VDD DGND +sp out vdd vdd in swswitch +Rl out 0 10k +*Cl out dgnd 0.1p +C2 out vdd 0.1p +*sn out dgnd in dgnd swswitch off +.ends inverterp + +* sw like a CMOS inverter +.subckt inverter In Out VDD DGND +sp out vdd vdd in swswitch +*Rl out 0 10k +Cl out dgnd 0.1p +C2 out vdd 0.1p +sn out dgnd in dgnd swswitch +.ends inverter + +.model swswitch sw (vt=1 vh=0.1 ron=1k roff=1e12) +.model switchn sw (vt=1 vh=0.1 ron=1k roff=1e12) + +.end diff --git a/paranoia_parallel/examples/pton/switch-oscillators_inc.cir b/paranoia_parallel/examples/pton/switch-oscillators_inc.cir new file mode 100644 index 000000000..f89caee45 --- /dev/null +++ b/paranoia_parallel/examples/pton/switch-oscillators_inc.cir @@ -0,0 +1,44 @@ +* sw ring-oscillators + +.control +destroy all +run +plot I(vmeasure) +plot V(Osc_out) +rusage +quit +.endc + +.ic v(N017)=0.25 +.tran 50p 4n 50p uic +*.option method=gear maxord=3 + +VDD VDD2 0 DC 3 + +VMEASURE VDD2 VDD dc 0 + +cvdd vdd 0 1e-18 +XX1 N017 N001 VDD 0 invertervs +XX2 N001 N002 VDD 0 inverter +XX3 N002 N003 VDD 0 invertervs +XX4 N003 N004 VDD 0 invertervs2 +XX5 N004 N005 VDD 0 invertervs3 +XX6 N005 N006 VDD 0 invertervs4 +XX7 N006 N007 VDD 0 inverter +XX8 N007 N008 VDD 0 invertervs +XX9 N008 N009 VDD 0 invertervs2 +XX10 N009 N010 VDD 0 invertervs3 +XX11 N010 N011 VDD 0 invertervs4 +XX12 N011 N012 VDD 0 inverter +XX13 N012 N013 VDD 0 invertervs +XX14 N013 N014 VDD 0 invertervs2 +XX15 N014 N015 VDD 0 invertervs3 +XX16 N015 N016 VDD 0 invertervs4 +XX17 N016 N017 VDD 0 inverter + +* amplify +XX18 N017 Osc_out VDD 0 invertervs3 + +.include switch-invs.lib + +.end diff --git a/paranoia_parallel/examples/transient-noise/README b/paranoia_parallel/examples/transient-noise/README new file mode 100644 index 000000000..ce9d41055 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/README @@ -0,0 +1,15 @@ +* noi-ring51-demo +ring oszillator with one noisy inverter +(requires 45min on a i7 860) + +* noi-sc-tr +noise source sampled + +* noise_vnoi +just a few 1/f and white noise sources + +* shot_ng +emulation of shot noise in a diode + +* rts-1.cir +random telegraph signals noise diff --git a/paranoia_parallel/examples/transient-noise/modelcard.nmos b/paranoia_parallel/examples/transient-noise/modelcard.nmos new file mode 100644 index 000000000..83ca98495 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/modelcard.nmos @@ -0,0 +1,41 @@ +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS ++Level= 8 version=3.3.0 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + + + + + + diff --git a/paranoia_parallel/examples/transient-noise/modelcard.pmos b/paranoia_parallel/examples/transient-noise/modelcard.pmos new file mode 100644 index 000000000..f50fe0a6b --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/modelcard.pmos @@ -0,0 +1,31 @@ +.model P1 PMOS ++Level= 8 version=3.3.0 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + + + + diff --git a/paranoia_parallel/examples/transient-noise/noi-ring51-demo.cir b/paranoia_parallel/examples/transient-noise/noi-ring51-demo.cir new file mode 100644 index 000000000..9b9708dd1 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noi-ring51-demo.cir @@ -0,0 +1,92 @@ +* 51 stage Ring-Osc. BSIM3, transient noise +* will need 90 sec on a i7 860 with 4 threads +* for better noise analysis simulation time may be made larger than 200n + +* closes the loop between inverters xinv1 and xinv5 +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 + +vdd dd 0 dc 0 pulse 0 2.2 0 1n 1 1 1 + +vss ss 0 dc 0 +ve sub 0 dc 0 + +vpe well 0 2.2 + +* noisy inverters +xiinv2 dd ss sub well out25 out50 inv253 +xiinv1 dd ss sub well in out25 inv253 + +*three very noisy inverters +xiinv51 dd ss sub well out50 out51 inv1_2 +xiinv52 dd ss sub well out51 out52 inv1_2 +xiinv53 dd ss sub well out52 out inv1_2 + +*output amplifier +xiinv11 dd ss sub well out25 bufout inv2 +cout bufout ss 0.2pF + +.option itl1=500 gmin=1e-15 itl4=10 noacct + +* .dc vdd 0 2 0.01 +.tran 80p 0.5n + +.save in bufout v(t1) + +.include modelcard.nmos +.include modelcard.pmos + +.include noilib-demo.h + +.control +unset ngdebug +* first run +save bufout ; needed for restricting memory usage +rusage +run +rusage +plot bufout +linearize +fft bufout +echo start noise in plot $curplot +echo + +* next run +* reset +save bufout +* original noise parameters 0.05 8p 1.0 0.001 +alter @v.xiinv51.vn1[trnoise] = [ 0 0 0 0 ] ; no noise +alter @v.xiinv52.vn1[trnoise] = [ 0 0 0 0 ] ; no noise +alter @v.xiinv53.vn1[trnoise] = [ 0 0 0 0 ] ; no noise + +run +rusage +plot bufout +linearize +fft bufout +echo no noise in plot $curplot +echo + +* next run +* reset +save bufout +alter @v.xiinv51.vn1[trnoise] = [ 0.1 8p 1.5 0.002 ] ; more noise +alter @v.xiinv52.vn1[trnoise] = [ 0.1 8p 1.5 0.002 ] ; more noise +alter @v.xiinv53.vn1[trnoise] = [ 0.1 8p 1.5 0.002 ] ; more noise + +run +rusage +plot bufout +linearize +fft bufout +echo more noise in plot $curplot +echo + +set color0=white +set color1=black +plot mag(sp6.bufout) mag(sp2.bufout) mag(sp4.bufout) xlimit 0 2G ylimit 1e-7 1 ylog + +quit +.endc + + +.end diff --git a/paranoia_parallel/examples/transient-noise/noi-ring51-demo_s.cir b/paranoia_parallel/examples/transient-noise/noi-ring51-demo_s.cir new file mode 100644 index 000000000..6ec2fbbd3 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noi-ring51-demo_s.cir @@ -0,0 +1,59 @@ +* 51 stage Ring-Osc. BSIM3, transient noise short +* will need 45 min on a i7 860 with 4 threads + +* closes the loop between inverters xinv1 and xinv5 +vin in out dc 0.5 pulse 0.5 0 0.1n 5n 1 1 1 + +vdd dd 0 dc 0 pulse 0 2.2 0 1n 1 1 1 + +vss ss 0 dc 0 +ve sub 0 dc 0 + +vpe well 0 2.2 + +* noisy inverters +xiinv2 dd ss sub well out25 out50 inv253 +xiinv1 dd ss sub well in out25 inv253 + +*very noisy inverter +xiinv5 dd ss sub well out50 out inv1_2 +*output amplifier +xiinv11 dd ss sub well out25 bufout inv1 +cout bufout ss 0.2pF + +.option itl1=500 gmin=1e-15 itl4=10 noacct + +* .dc vdd 0 2 0.01 +*.tran 0.01n 5n + +.save in bufout v(t1) + +.include modelcard.nmos +.include modelcard.pmos + +.include noilib-demo.h + +.control +unset ngdebug +* first run +save bufout ; needed for restricting memory usage +rusage +tran 8p 5n +rusage +plot bufout ; xlimit 90n 95n +linearize +fft bufout +* next run +reset +* save bufout +alter @v.xiinv5.vn1[trnoise] = [ 0 0 0 0 ] ; no noise +tran 8p 5n +rusage +plot bufout ; xlimit 90n 95n +linearize +fft bufout +plot mag(bufout) mag(sp2.bufout) xlimit 0 2G ylimit 1e-11 0.1 ylog +.endc + + +.end diff --git a/paranoia_parallel/examples/transient-noise/noi-sc-tr.cir b/paranoia_parallel/examples/transient-noise/noi-sc-tr.cir new file mode 100644 index 000000000..d48ea87fd --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noi-sc-tr.cir @@ -0,0 +1,54 @@ +* simple sample & hold, transient noise + +* switch control +* PULSE(V1 V2 TD TR TF PW PER) +vgate1 ga1 0 dc 0 pulse (0 1 0 10n 10n 90n 200n) + +Switch1 1 2 ga1 0 smodel1 + +* noisy input +* rms value white, time step, exponent < 2, rms value 1/f +vin 1 0 dc 0 trnoise 0.1m 0.2n 1 0.1m +*vin 1 0 dc 0 trnoise 0.1m 0.2n 0 0.1m + +* output +c2 2 0 10p + +* second S&H +vgate2 ga2 0 dc 0 pulse (0 1 140n 10n 10n 30n 200n) +*Buffer EXXXXXXX N+ N- NC+ NC- VALUE +e1 4 0 2 0 1 +Switch2 4 3 ga2 0 smodel2 +c3 3 0 10p + +.option itl1=500 gmin=1e-15 itl4=10 acct + +.model smodel1 sw vt=0.5 ron=100 +.model smodel2 sw vt=0.5 ron=100 + +.tran 0.4n 1u + + +.control +unset ngdebug +set filetype=ascii +rusage +run +rusage all +write noi_test.out v(1) +plot v(2) v(3) xlimit 4u 5u +plot v(ga1) v(ga2) xlimit 4u 5u +linearize +*rms v(1) +fft v(3) +plot mag(v(3)) loglog xlimit 1e4 1e8 ylimit 1e-10 1e-4 +setplot tran1 +linearize +psd 101 v(3) +plot mag(v(3)) xlimit 0 3e7 ylabel V^2/Hz + +quit +.endc + + +.end diff --git a/paranoia_parallel/examples/transient-noise/noilib-demo.h b/paranoia_parallel/examples/transient-noise/noilib-demo.h new file mode 100644 index 000000000..4e5bee50e --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noilib-demo.h @@ -0,0 +1,63 @@ + +* standard inverter made noisy +*.subckt inv1 dd ss sub well in out +*vn1 out outi dc 0 noise 0.1 0.3n 1.0 0.1 +*mn1 outi in ss sub n1 w=2u l=0.25u AS=3p AD=3p PS=4u PD=4u +*mp1 outi in dd well p1 w=4u l=0.25u AS=7p AD=7p PS=6u PD=6u +*.ends inv1 + +* standard no noise inverter +.subckt inv1 dd ss sub well in out +mn1 out in ss sub n1 w=2u l=0.25u AS=3p AD=3p PS=4u PD=4u +mp1 out in dd well p1 w=4u l=0.25u AS=7p AD=7p PS=6u PD=6u +.ends inv1 + +* standard no noise inverter +.subckt inv2 dd ss sub well in out +mn1 out in ss sub n1 w=5u l=0.25u AS=7p AD=7p PS=7u PD=7u +mp1 out in dd well p1 w=10u l=0.25u AS=12p AD=12p PS=12u PD=12u +.ends inv2 + + +* very noisy inverter (noise on vdd and well) +.subckt inv1_1 dd ss sub well in out +vn1 dd idd dc 0 trnoise 0.05 0.05n 1 0.05 +vn2 well iwell dc 0 trnoise 0.05 0.05n 1 0.05 +mn1 out in ss sub n1 w=2u l=0.25u AS=3p AD=3p PS=4u PD=4u +mp1 out in idd iwell p1 w=4u l=0.25u AS=7p AD=7p PS=6u PD=6u +*Cout out 0 0.1p +.ends inv1_1 + + +* another very noisy inverter +.subckt inv1_2 dd ss sub well in out +vn1 out outi dc 0 trnoise 0.05 8p 1.0 0.001 +mn1 outi in ss sub n1 w=2u l=0.25u AS=3p AD=3p PS=4u PD=4u +mp1 outi in dd well p1 w=4u l=0.25u AS=7p AD=7p PS=6u PD=6u +*Cout out 0 0.1p +.ends inv1_2 + +* another very noisy inverter with current souces parallel to transistor +.subckt inv13 dd ss sub well in outi +in1 ss outi dc 0 noise 200u 0.05n 1.0 50u +mn1 outi in ss sub n1 w=2u l=0.25u AS=3p AD=3p PS=4u PD=4u +in2 dd outi dc 0 noise 200u 0.05n 1.0 50u +mp1 outi in dd well p1 w=4u l=0.25u AS=7p AD=7p PS=6u PD=6u +*Cout out 0 0.1p +.ends inv13 + +.subckt inv53 dd ss sub well in out +xinv1 dd ss sub well in 1 inv1 +xinv2 dd ss sub well 1 2 inv1 +xinv3 dd ss sub well 2 3 inv1 +xinv4 dd ss sub well 3 4 inv1 +xinv5 dd ss sub well 4 out inv1 +.ends inv53 + +.subckt inv253 dd ss sub well in out +xinv1 dd ss sub well in 1 inv53 +xinv2 dd ss sub well 1 2 inv53 +xinv3 dd ss sub well 2 3 inv53 +xinv4 dd ss sub well 3 4 inv53 +xinv5 dd ss sub well 4 out inv53 +.ends inv253 diff --git a/paranoia_parallel/examples/transient-noise/noise_vnoi.cir b/paranoia_parallel/examples/transient-noise/noise_vnoi.cir new file mode 100644 index 000000000..a95fc8f95 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noise_vnoi.cir @@ -0,0 +1,33 @@ +* Random noise test +* internal noise source + +* one over f +VNOI1 1 0 DC 0 TRNOISE(0n 1n 1.7 1n) +VNOI2 2 0 DC 0 TRNOISE(0n 1n 1.4 1n) +VNOI3 3 0 DC 0 TRNOISE(0n 1n 1.0 1n) +VNOI4 4 0 DC 0 TRNOISE(0n 1n 0.5 1n) +* white +VNOI5 5 0 DC 0 TRNOISE(1n 1n 0 0) +* both +VNOI6 6 0 DC 0 TRNOISE(1n 1n 1 1n) + +* 2500 sample points +.tran 1n 2.50u + +.control +run +plot v(1) v(2) v(3) v(4) v(5) v(6) +plot v(1) v(2) v(3) v(4) v(5) v(6) xlimit 102.0u 102.01u ylimit -3n 3n +linearize +meas tran vavg5 AVG v(5) from=0 to=250u +meas tran vpp5 PP v(5) from=0 to=250u +meas tran vrms5 RMS v(5) from=0 to=250u +fft v(1) v(2) v(3) v(4) v(5) v(6) +plot mag(v(1)) mag(v(2)) mag(v(3)) mag(v(4)) mag(v(5)) loglog xlimit 1e3 1e9 +plot mag(v(6)) loglog xlimit 1e3 1e9 + +quit +.endc + +.end + diff --git a/paranoia_parallel/examples/transient-noise/noise_vnoi_test.cir b/paranoia_parallel/examples/transient-noise/noise_vnoi_test.cir new file mode 100644 index 000000000..bf39cea3b --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/noise_vnoi_test.cir @@ -0,0 +1,33 @@ +* Random noise test +* internal noise source + +* one over f +VNOI1 1 0 DC 0 TRNOISE(0n 1n 1.7 1n) +VNOI2 2 0 DC 0 TRNOISE(0n 1n 1.4 1n) +VNOI3 3 0 DC 0 TRNOISE(0n 1n 1.0 1n) +VNOI4 4 0 DC 0 TRNOISE(0n 1n 0.5 1n) +* white +VNOI5 5 0 DC 0 TRNOISE(1n 1n 0 0) +* both +VNOI6 6 0 DC 0 TRNOISE(1n 1n 1 1n) + +* 2500 sample points +.tran 1n 2.50u + +.control +run +plot v(1) v(2) v(3) v(4) v(5) v(6) title plot1 +plot v(1) v(2) v(3) v(4) v(5) v(6) xlimit 102.0u 102.01u ylimit -3n 3n title plot2 +linearize +meas tran vavg5 AVG v(5) from=0 to=250u +meas tran vpp5 PP v(5) from=0 to=250u +meas tran vrms5 RMS v(5) from=0 to=250u +fft v(1) v(2) v(3) v(4) v(5) v(6) +plot mag(v(1)) mag(v(2)) mag(v(3)) mag(v(4)) mag(v(5)) loglog xlimit 1e3 1e9 title plot3 +plot mag(v(6)) loglog xlimit 1e3 1e9 title plot4 + +*quit +.endc + +.end + diff --git a/paranoia_parallel/examples/transient-noise/rts-1.cir b/paranoia_parallel/examples/transient-noise/rts-1.cir new file mode 100644 index 000000000..d74d602c2 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/rts-1.cir @@ -0,0 +1,30 @@ +* white noise, 1/f noise, RTS noise + +* voltage source +VRTS2 13 12 DC 0 trnoise(0 0 0 0 5m 18u 30u) +VRTS3 11 0 DC 0 trnoise(0 0 0 0 10m 20u 40u) +VALL 12 11 DC 0 trnoise(1m 1u 1.0 0.1m 15m 22u 50u) + +VW1of 21 0 DC trnoise(1m 1u 1.0 0.1m) + +* current source +IRTS2 10 0 DC 0 trnoise(0 0 0 0 5m 18u 30u) +IRTS3 10 0 DC 0 trnoise(0 0 0 0 10m 20u 40u) +IALL 10 0 DC 0 trnoise(1m 1u 1.0 0.1m 15m 22u 50u) +R10 10 0 1 + +IW1of 9 0 DC trnoise(1m 1u 1.0 0.1m) +Rall 9 0 1 + +* 500000 sample points +.tran 1u 50u + +.control +run +plot v(13) v(21) +plot v(10) v(9) +quit +.endc + +.end + diff --git a/paranoia_parallel/examples/transient-noise/shot_ng.cir b/paranoia_parallel/examples/transient-noise/shot_ng.cir new file mode 100644 index 000000000..ee0a89c10 --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/shot_ng.cir @@ -0,0 +1,28 @@ +* Shot noise test with B source, diode +* voltage on device (diode, forward) +Vdev out 0 DC 0 PULSE(0.4 0.45 10u) +* diode, forward direction, to be modeled with noise +D1 mess 0 DMOD +.model DMOD D IS=1e-14 N=1 +X1 0 mess out ishot +* device between 1 and 2 +* new output terminals of device including noise: 1 and 3 +.subckt ishot 1 2 3 +* white noise source with rms 1V +VNG 0 11 DC 0 TRNOISE(1 1n 0 0) +*measure the current i(v1) +V1 2 3 DC 0 +* calculate the shot noise +* sqrt(2*current*q*bandwidth) +BI 1 3 I=sqrt(2*abs(i(v1))*1.6e-19*1e7)*v(11) +.ends ishot +* 20000 sample points +.tran 1n 2u +.control +run +plot (-1)*i(vdev) +meas tran vdev_rms avg i(vdev) from=0u to=9.9u +meas tran vdev_rms avg i(vdev) from=10.1u to=20u +quit +.endc +.end diff --git a/paranoia_parallel/examples/transient-noise/simple-noise.cir b/paranoia_parallel/examples/transient-noise/simple-noise.cir new file mode 100644 index 000000000..491dbc61d --- /dev/null +++ b/paranoia_parallel/examples/transient-noise/simple-noise.cir @@ -0,0 +1,32 @@ +test of isrc trnoise and trrandom isrc, vsrc +* 1/f noise current +i1 1 2 DC 0 TRNOISE(0.05 8p 0 1.0 0.001) +i2 2 0 DC 0 TRNOISE(0.05 8p 0 1.0 0.001) + +r1 1 2 1 +r2 2 0 1 + +* gaussian (type=2) noise +i3 3 0 DC 0 TRRANDOM(2 8p 0 1.0 0.01) +R3 3 0 1 + +v4 4 0 DC 0 TRRANDOM(2 8p 0 1.0 0.01) +*R4 4 0 1 + +.tran 8p 200n + +.control +run +alter @i1[trnoise] = [ 0.1 8p 0 1.5 0.002 ] ; more noise +alter @i2[trnoise] = [ 0.1 8p 0 1.5 0.002 ] ; more noise + +alter @i3[trrandom] = [ 2 8p 0 1.5 0.02 ] ; more noise +alter @v4[trrandom] = [ 2 8p 0 1.5 0.02 ] ; more noise + +run +plot tran2.v(1) tran1.v(1) +plot tran2.v(3) tran1.v(3) ylimit -6 6 +plot tran2.v(4) tran1.v(4) ylimit -6 6 +.endc + +.end diff --git a/paranoia_parallel/examples/various/3d_loop.sp b/paranoia_parallel/examples/various/3d_loop.sp new file mode 100644 index 000000000..bffdc3a77 --- /dev/null +++ b/paranoia_parallel/examples/various/3d_loop.sp @@ -0,0 +1,181 @@ +testing loops +*variables are global +*vector reside only in the plot where they where created + +.param rr = 10k + +R1 r2 0 r = {rr + 40*TEMPER} +V1 r2 0 1 + +.control +*create a new plot as our base plot +setplot new +set curplottitle = "crossplot" +set plotname=$curplot + +let aa = 5 +let bb = 3 +let cc = 6 +set aa="$&aa" +set bb="$&bb" +set cc="$&cc" + +* generate vector with all (here 90) elements +let result=vector(90) +settype current result +* reshape vector to format 5 x 3 x 6 +*reshape result [5][3][6] +reshape result [$aa][$bb][$cc] + +* vector to store temperature +let tvect=vector(5) +* vector to store voltage +let vvect=vector(6) +* vector to store parameter values +let pvect=vector(3) + +*index for storing in vectors tvect and result + +let indexp = 0 + +foreach pvar 9.5k 10k 10.5k + let indexv = 0 + alterparam rr = $pvar + let pvect[indexp] = $pvar + mc_source + foreach var -40 -20 0 20 40 + set temp = $var + dc v1 0 5 1 + *store name of the actual dc plot + set dcplotname = $curplot + * back to the base plot + setplot $plotname + let result[indexv][indexp] = {$dcplotname}.v1#branch + let tvect[indexv] = $var + if indexv = 0 + let vvect = {$dcplotname}.r2 + end + let indexv = indexv + 1 +* destroy $dcplotname + end + let indexp = indexp + 1 + remcirc +end + +settype voltage vvect +setscale vvect + +let indexplot = 0 +while indexplot < indexp +*plot result[0][indexplot] result[1][indexplot] result[2][indexplot] result[3][indexplot] result[4][indexplot] +let indexplot = indexplot + 1 +end + + +plot ++result[0][0] result[1][0] result[2][0] result[3][0] result[4][0] ++result[0][1] result[1][1] result[2][1] result[3][1] result[4][1] ++result[0][2] result[1][2] result[2][2] result[3][2] result[4][2] + +write 3d_loop_i_vs_v.out ++result[0][0] result[1][0] result[2][0] result[3][0] result[4][0] ++result[0][1] result[1][1] result[2][1] result[3][1] result[4][1] ++result[0][2] result[1][2] result[2][2] result[3][2] result[4][2] + +*transpoe a 3D vector +let aai = 0 +let bbi = 0 +let cci = 0 +let result1 = vector(90) +settype current result1 +* reshape vector to format 3 x 6 x 5 +reshape result1 [$bb][$cc][$aa] + +* shift from vector format 5 x 3 x 6 to 3 x 6 x 5 +*echo test output > resultout.txt +while aai < aa + let bbi = 0 + while bbi < bb + let cci = 0 + while cci < cc + let result1[bbi][cci][aai] = result[aai][bbi][cci] +* print bbi cci aai >> resultout.txt +* print result1[bbi][cci][aai] >> resultout.txt + let cci = cci + 1 + end + let bbi = bbi + 1 + end + let aai = aai + 1 +end + +settype temp-sweep tvect +setscale tvect + +* current through v1 versus temperature +plot ++result1[0][0] result1[1][0] result1[2][0] ++result1[0][1] result1[1][1] result1[2][1] ++result1[0][2] result1[1][2] result1[2][2] ++result1[0][3] result1[1][3] result1[2][3] ++result1[0][4] result1[1][4] result1[2][4] ++result1[0][5] result1[1][5] result1[2][5] + +write 3d_loop_i_vs_t.out ++result1[0][0] result1[1][0] result1[2][0] ++result1[0][1] result1[1][1] result1[2][1] ++result1[0][2] result1[1][2] result1[2][2] ++result1[0][3] result1[1][3] result1[2][3] ++result1[0][4] result1[1][4] result1[2][4] ++result1[0][5] result1[1][5] result1[2][5] + +*plot result1 + +*transpoe a 3D vector +let aai = 0 +let bbi = 0 +let cci = 0 +let result2 = vector(90) +settype current result2 +* reshape vector to format 6 x 5 x 3 +reshape result2 [$cc][$aa][$bb] + +* shift from vector format 3 x 6 x 5 to 6 x 5 x 3 +*echo test output > resultout.txt +while aai < aa + let bbi = 0 + while bbi < bb + let cci = 0 + while cci < cc + let result2[cci][aai][bbi] = result1[bbi][cci][aai] +* print cci aai bbi >> resultout.txt +* print result2[cci][aai][bbi] >> resultout.txt + let cci = cci + 1 + end + let bbi = bbi + 1 + end + let aai = aai + 1 +end + +settype impedance pvect +setscale pvect + +* current through v1 versus parameter rr +plot ++result2[0][0] result2[1][0] result2[2][0] result2[3][0] result2[4][0] result2[5][0] ++result2[0][1] result2[1][1] result2[2][1] result2[3][1] result2[4][1] result2[5][1] ++result2[0][2] result2[1][2] result2[2][2] result2[3][2] result2[4][2] result2[5][2] ++result2[0][3] result2[1][3] result2[2][3] result2[3][3] result2[4][3] result2[5][3] ++result2[0][4] result2[1][4] result2[2][4] result2[3][4] result2[4][4] result2[5][4] + +write 3d_loop_i_vs_para.out ++result2[0][0] result2[1][0] result2[2][0] result2[3][0] result2[4][0] result2[5][0] ++result2[0][1] result2[1][1] result2[2][1] result2[3][1] result2[4][1] result2[5][1] ++result2[0][2] result2[1][2] result2[2][2] result2[3][2] result2[4][2] result2[5][2] ++result2[0][3] result2[1][3] result2[2][3] result2[3][3] result2[4][3] result2[5][3] ++result2[0][4] result2[1][4] result2[2][4] result2[3][4] result2[4][4] result2[5][4] + +quit + +.endc + +.end diff --git a/paranoia_parallel/examples/various/FFT_Leakage.cir b/paranoia_parallel/examples/various/FFT_Leakage.cir new file mode 100644 index 000000000..dd7264172 --- /dev/null +++ b/paranoia_parallel/examples/various/FFT_Leakage.cir @@ -0,0 +1,55 @@ +FFT_Leakage_tests http://www.idea2ic.com/ +*=========Create_Signal================== +VTime VTime 0 DC 0 PWL( 0 0 1 1) +Vfreq Vfreq 0 DC 5.5k +BVAC IN 0 V = sin( 6.283185307179586*V(VFreq)*V(VTime)) +.control +*TRAN TSTEP TSTOP TSTART TMAX ?UIC? +tran 1u .999m 0 1u +set pensize = 2 +linearize +let numb2 = length(in) +print numb2 + +*=========Do_FFT_and_Plot_As_dB_Freq================== +let ac = in +j(0) +let ac_fft=fft(ac) +let numb_f2 = (numb2)/2 -1 +compose freq start = 1 stop = $&numb_f2 step =1 +compose vreal start = 1 stop = $&numb_f2 step =1 +compose vimag start = 1 stop = $&numb_f2 step =1 +let j = 0 +repeat $&numb_f2 +let freq[j] = freq[j] +let vreal[j] = 2*real(ac_fft[j+1]) +let vimag[j] = 2*imag(ac_fft[j+1]) +let j = j +1 +end +plot dB(abs(vreal+1f)) dB(abs(vimag+1f)) vs freq xlog + +*=========Extract_Error_Signal========================= +let funBin = 5k/1000 +let unvect = unitvec(numb2) +let fundspec = unvect*0 +j(0) +let fundspec[funBin] = real(ac_fft[funBin]) +j(imag(ac_fft[funBin] )) +let fundspec[numb2-funBin] = real(ac_fft[numb2-funBin]) +j(imag(ac_fft[numb2-funBin] )) +let fund = ifft(fundspec) +let dc_ofset = real(ac_fft[0]) +let thdspec = ac_fft +let thdspec[0] = 0 +j(0) +let thdspec[funBin] = 0 +j(0) +let thdspec[numb2-funBin] = 0 +j(0) +let thd = ifft(thdspec) +plot norm(in) norm(fund) norm(thd)/2 + +*=========Calc_Values========================= +let rms_Fund = sqrt(mean(fund*fund)) +let rms_THD = sqrt(mean(thd*thd)) +let THD_percent = 100*rms_THD/rms_Fund +let FREQ_Hz = VFreq[0] +echo "Freq_Hz=$&FREQ_Hz THD_percent=$&THD_percent Fund_rms=$&rms_Fund THD_rms=$&rms_THD " + +quit + +.endc +.end diff --git a/paranoia_parallel/examples/various/FFT_tests.cir b/paranoia_parallel/examples/various/FFT_tests.cir new file mode 100644 index 000000000..03783483a --- /dev/null +++ b/paranoia_parallel/examples/various/FFT_tests.cir @@ -0,0 +1,125 @@ +FFT_tests http://www.idea2ic.com/ +.control +set units=degrees +let a = vector(16) +*plot a vs a +set pensize = 2 +*=========Need_a_complex_input==================== +let ac = a+j(0) +print a ac +*plot fft(a) vs a +*plot real(fft(ac)) imag(fft(ac)) vs a +* fft(a) fft(ac) + +*=========DC_Works==================== +let b = unitvec(16) +let bc = b+j(0) +*plot fft(b) vs a title DC_WORKS +*print fft(b) fft(bc) + +*=========DC_Plus_cos_Remove_AC==================== +let numb = length(b) +print numb + +let indx = 0 +repeat $&numb +let ac[indx]= cos(indx*360/8)+1 +j(0) +let indx = indx +1 +end + +let fftac=fft(ac) +plot real(fftac) imag(fftac) vs a title DC_Plus_COS + +let fftac[2]=(0,0) +let fftac[14]=(0,0) +let ifftac = ifft(fftac) +plot ifftac ac vs a title COS_REMOVED + +*=========DC_Plus_cos_Remove_DC==================== +let indx = 0 +repeat $&numb +let ac[indx]= cos(indx*360/8)+1 +j(0) +let indx = indx +1 +end + +let fftac=fft(ac) +let fftac[0]=(0,0) +let ifftac = ifft(fftac) +plot ifftac ac vs a title COS_With_DC_REMOVED + +*=========DC_Plus_sin_Remove_AC==================== +let indx = 0 +repeat $&numb +let ac[indx]= sin(indx*360/8)+1 +j(0) +let indx = indx +1 +end + +let fftac=fft(ac) +plot real(fftac) imag(fftac) vs a title DC_Plus_SIN + +let fftac[2]=(0,0) +let fftac[14]=(0,0) +let ifftac = ifft(fftac) +plot ifft(fftac) ac vs a title SIN_REMOVED + +*=========DC_Plus_sin_Remove_DC==================== +let indx = 0 +repeat $&numb +let ac[indx]= sin(indx*360/8)+1 +j(0) +let indx = indx +1 +end + +let fftac=fft(ac) +let fftac[0]=(0,0) +let ifftac = ifft(fftac) +plot ifft(fftac) ac vs a title SIN_With_DC_REMOVED + +*=========DC_Plus_cos_Nyqusit_Remove_DC==================== +let indx = 0 +repeat $&numb +let ac[indx]= cos(indx*360/2)+1 +j(0) +let indx = indx +1 +end + +plot ac vs a title Nyq_COS + +let fftac=fft(ac) +plot real(fftac) imag(fftac) vs a title Nyq_FREQ_COS +let fftac[0]=(0,0) +let ifftac = ifft(fftac) +plot ifft(fftac) ac vs a title COS_With_DC_REMOVED +*=========DC_Plus_sin_Nyqusit_Remove_DC==================== +let indx = 0 +repeat $&numb +let ac[indx]= sin(indx*360/2)+1 +j(0) +let indx = indx +1 +end + +plot ac vs a title Nyq_SIN + +let fftac=fft(ac) +plot real(fftac) imag(fftac) vs a title Nyq_FREQ_SIN +let fftac[0]=(0,0) +let ifftac = ifft(fftac) +plot ifft(fftac) ac vs a title COS_With_DC_REMOVED + +*=========DC_Plus_COS_Remove_One_BIN==================== +let indx = 0 +repeat $&numb +let ac[indx]= cos(indx*360/8)+1 +j(0) +let indx = indx +1 +end + +let fftac=fft(ac) +let fftac[2]=(0,0) +plot real(fftac) imag(fftac) vs a title DC_Plus_Cos + +let ifftac = ifft(fftac) +plot ifft(fftac) ac vs a title ONE_BIN_REMOVED + +plot real(ifft(fftac)) imag(ifft(fftac)) vs a title ONE_BIN_REMOVED + +quit + +.endc +.end diff --git a/paranoia_parallel/examples/various/Tschebyschef-LP.cir b/paranoia_parallel/examples/various/Tschebyschef-LP.cir new file mode 100644 index 000000000..5441456bf --- /dev/null +++ b/paranoia_parallel/examples/various/Tschebyschef-LP.cir @@ -0,0 +1,33 @@ +** Example S--parameters of a Tschebyschef Low Pass filter +C1 in 0 33.2p +L1 in 2 99.2n +C2 2 0 57.2p +L2 2 out 99.2n +C3 out 0 33.2p + +V1 in 0 dc 0 ac 1 portnum 1 z0 50 +V2 out 0 dc 0 ac 0 portnum 2 z0 50 + +.sp lin 100 2.5MEG 250MEG ; use for Tschebyschef + +.control +run +let S11db = db(s_1_1) +let S12db = db(s_1_2) +let S21db = db(s_2_1) +let S22db = db(s_2_2) +settype decibel S11db S21db S22db S12db + +let P11=180*ph(s_1_1)/pi +let P21=180*ph(s_2_1)/pi +let P22=180*ph(S_2_2)/pi +let P12=180*ph(S_1_2)/pi +settype phase P11 P21 P22 P12 +set xbrushwidth=2 +plot s11db s21db S22db S12db ylimit -0.5 0 ; used with Tschebyschef +plot P11 P21 P22 P12 +plot smithgrid S_1_1 S_1_2 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/various/adder_mos.cir b/paranoia_parallel/examples/various/adder_mos.cir new file mode 100644 index 000000000..7e1c89ea2 --- /dev/null +++ b/paranoia_parallel/examples/various/adder_mos.cir @@ -0,0 +1,79 @@ + ADDER - 4 BIT ALL-NAND-GATE BINARY ADDER + +*** SUBCIRCUIT DEFINITIONS +.SUBCKT NAND in1 in2 out VDD +* NODES: INPUT(2), OUTPUT, VCC +M1 out in2 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M2 net.1 in2 0 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +M3 out in1 Vdd Vdd p1 W=7.5u L=0.35u pd=13.5u ad=22.5p ps=13.5u as=22.5p +M4 out in1 net.1 0 n1 W=3u L=0.35u pd=9u ad=9p ps=9u as=9p +.ENDS NAND + +.SUBCKT ONEBIT 1 2 3 4 5 6 +* NODES: INPUT(2), CARRY-IN, OUTPUT, CARRY-OUT, VCC +X1 1 2 7 6 NAND +X2 1 7 8 6 NAND +X3 2 7 9 6 NAND +X4 8 9 10 6 NAND +X5 3 10 11 6 NAND +X6 3 11 12 6 NAND +X7 10 11 13 6 NAND +X8 12 13 4 6 NAND +X9 11 7 5 6 NAND +.ENDS ONEBIT + +.SUBCKT TWOBIT 1 2 3 4 5 6 7 8 9 +* NODES: INPUT - BIT0(2) / BIT1(2), OUTPUT - BIT0 / BIT1, +* CARRY-IN, CARRY-OUT, VCC +X1 1 2 7 5 10 9 ONEBIT +X2 3 4 10 6 8 9 ONEBIT +.ENDS TWOBIT + +.SUBCKT FOURBIT 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 +* NODES: INPUT - BIT0(2) / BIT1(2) / BIT2(2) / BIT3(2), +* OUTPUT - BIT0 / BIT1 / BIT2 / BIT3, CARRY-IN, CARRY-OUT, VCC +X1 1 2 3 4 9 10 13 16 15 TWOBIT +X2 5 6 7 8 11 12 16 14 15 TWOBIT +.ENDS FOURBIT + +*** POWER +VCC 99 0 DC 3.3V + +*** ALL INPUTS +VIN1A 1 0 DC 0 PULSE(0 3 0 5NS 5NS 20NS 50NS) +VIN1B 2 0 DC 0 PULSE(0 3 0 5NS 5NS 30NS 100NS) +VIN2A 3 0 DC 0 PULSE(0 3 0 5NS 5NS 50NS 200NS) +VIN2B 4 0 DC 0 PULSE(0 3 0 5NS 5NS 90NS 400NS) +VIN3A 5 0 DC 0 PULSE(0 3 0 5NS 5NS 170NS 800NS) +VIN3B 6 0 DC 0 PULSE(0 3 0 5NS 5NS 330NS 1600NS) +VIN4A 7 0 DC 0 PULSE(0 3 0 5NS 5NS 650NS 3200NS) +VIN4B 8 0 DC 0 PULSE(0 3 0 5NS 5NS 1290NS 6400NS) + +*** DEFINE NOMINAL CIRCUIT +X1 1 2 3 4 5 6 7 8 9 10 11 12 0 13 99 FOURBIT + +.option noinit acct +.TRAN 500p 640NS +* save inputs +.save V(1) V(2) V(3) V(4) V(5) V(6) V(7) V(8) + +* use BSIM3 model with default parameters +.model n1 nmos level=49 version=3.3.0 +.model p1 pmos level=49 version=3.3.0 +*.include ./Modelcards/modelcard32.nmos +*.include ./Modelcards/modelcard32.pmos + +.control +pre_set strict_errorhandling +unset ngdebug +*save outputs and specials +save x1.x1.x1.7 V(9) V(10) V(11) V(12) V(13) +run +display +* plot the inputs, use offset to plot on top of each other +plot v(1) v(2)+4 v(3)+8 v(4)+12 v(5)+16 v(6)+20 v(7)+24 v(8)+28 +* plot the outputs, use offset to plot on top of each other +plot v(9) v(10)+4 v(11)+8 v(12)+12 v(13)+16 +.endc + +.END diff --git a/paranoia_parallel/examples/various/agauss_reduced.cir b/paranoia_parallel/examples/various/agauss_reduced.cir new file mode 100644 index 000000000..90e79bec4 --- /dev/null +++ b/paranoia_parallel/examples/various/agauss_reduced.cir @@ -0,0 +1,8 @@ +* memory leak test +* derived from agaus_test.cir +.control + define agauss(nom, avar, sig) (nom + avar/sig * sgauss(0)) + let val = agauss(1e-09, 1e-10, 3) + quit +.endc +.end diff --git a/paranoia_parallel/examples/various/agauss_test.cir b/paranoia_parallel/examples/various/agauss_test.cir new file mode 100644 index 000000000..5932f8624 --- /dev/null +++ b/paranoia_parallel/examples/various/agauss_test.cir @@ -0,0 +1,50 @@ +* agauss test in ngspice +* generate a sequence of gaussian distributed random numbers. +* test the distribution by sorting the numbers into +* a histogram (buckets) +* chapt. 17.8.6 +.control + define agauss(nom, avar, sig) (nom + avar/sig * sgauss(0)) + let mc_runs = 200 + let run = 0 + let no_buck = 8 ; number of buckets + let bucket = unitvec(no_buck) ; each element contains 1 + let delta = 3e-11 ; width of each bucket, depends + ; on avar and sig + let lolimit = 1e-09 - 3*delta + let hilimit = 1e-09 + 3*delta + + dowhile run < mc_runs + let val = agauss(1e-09, 1e-10, 3) ; get the random number + if (val < lolimit) + let bucket[0] = bucket[0] + 1 ; 'lowest' bucket + end + let part = 1 + dowhile part < (no_buck - 1) + if ((val < (lolimit + part*delta)) & ++ (val > (lolimit + (part-1)*delta))) + let bucket[part] = bucket[part] + 1 + break + end + let part = part + 1 + end + if (val > hilimit) +* 'highest' bucket + let bucket[no_buck - 1] = bucket[no_buck - 1] + 1 + end + let run = run + 1 + end + + let part = 0 + dowhile part < no_buck + let value = bucket[part] - 1 + set value = "$&value" +* print the buckets' contents + echo $value + let part = part + 1 + end + +quit + +.endc +.end diff --git a/paranoia_parallel/examples/various/alterparam.sp b/paranoia_parallel/examples/various/alterparam.sp new file mode 100644 index 000000000..663f73a2f --- /dev/null +++ b/paranoia_parallel/examples/various/alterparam.sp @@ -0,0 +1,40 @@ +*test alterparam +.param vv = 1 +.param rr = 'vv + 1' + +R1 1 0 {rr + 1} +v1 1 0 1 + +.subckt subr in out rint1 = 6 + .param rint = 5 + .param rint2 = 8 + R0 in out 'rint' + R1 in out 'rint1' + R2 in out 'rint2' +.ends + +Xr 2 0 subr rint = 7 rint1 = 9 +v2 2 0 1 + +.control +op +print v1#branch v2#branch +echo +listing expand +alterparam vv = 2 +reset +op +print v1#branch v2#branch +echo +listing expand +alterparam subr rint = 13 +alterparam subr rint1 = 15 +alterparam subr rint2 = 17 +reset +op +print v1#branch v2#branch +echo +listing expand +.endc + +.end diff --git a/paranoia_parallel/examples/various/bjt_ac_par.sp b/paranoia_parallel/examples/various/bjt_ac_par.sp new file mode 100644 index 000000000..048eb6f3c --- /dev/null +++ b/paranoia_parallel/examples/various/bjt_ac_par.sp @@ -0,0 +1,30 @@ +Plot inner small signal parameter + +v1 1 0 dc 10.0 +rc 1 c 2k +vb b 0 dc 0.6 +q1 c b 0 bfs17 + +.MODEL BFS17 NPN (level=1 IS=0.48F NF=1.008 BF=99.655 VAF=90.000 IKF=0.190 ++ ISE=7.490F NE=1.762 NR=1.010 BR=38.400 VAR=7.000 IKR=93.200M ++ ISC=0.200F NC=1.042 ++ RB=1.500 IRB=0.100M RBM=1.200 ++ RE=0.500 RC=2.680 ++ CJE=1.325P VJE=0.700 MJE=0.220 FC=0.890 ++ CJC=1.050P VJC=0.610 MJC=0.240 XCJC=0.400 ++ TF=56.940P TR=1.000N PTF=21.000 ++ XTF=68.398 VTF=0.600 ITF=0.700 ++ XTB=1.600 EG=1.110 XTI=3.000 ++ KF=1.000F AF=1.000) + +.control +save @q1[gm] @q1[pi] @q1[go] +save @q1[qbe] @q1[qbc] +save @q1[cmu] @q1[cpi] +dc vb 0.4 1 0.01 +plot @q1[gm] @q1[gpi] @q1[go] +plot @q1[qbe] @q1[qbc] +plot @q1[cmu] @q1[cpi] +.endc + +.end diff --git a/paranoia_parallel/examples/various/bjtnoise.cir b/paranoia_parallel/examples/various/bjtnoise.cir new file mode 100644 index 000000000..e8ff89204 --- /dev/null +++ b/paranoia_parallel/examples/various/bjtnoise.cir @@ -0,0 +1,32 @@ +BJT Noise Test + +vcc 4 0 50 +vin 1 0 ac 1 + +ccouple 1 2 1 + +ibias 0 2 100uA + +rload 4 3 1k + +q1 3 2 0 0 test + +.model test npn kf=1e-20 af=1 bf=100 rb=10 cjc=4e-12 +.noise v(3) vin dec 10 1k 100Meg 1 + +.control +run +setplot +setplot noise1 +plot ally +plot inoise_spectrum onoise_spectrum +setplot noise2 +print all +echo +print inoise_total onoise_total + +quit + +.endc + +.end diff --git a/paranoia_parallel/examples/various/dc_loop.sp b/paranoia_parallel/examples/various/dc_loop.sp new file mode 100644 index 000000000..195115930 --- /dev/null +++ b/paranoia_parallel/examples/various/dc_loop.sp @@ -0,0 +1,48 @@ +testing loops +*variables are global +*vector reside only in the plot where they where created + +R1 r2 0 r = {5k + 50*TEMPER} +V1 r2 0 1 + +.control +*create a new plot as our base plot +setplot new +set curplottitle = "crossplot" +set plotname=$curplot + +* generate vector with all (here 30) elements +let result=vector(30) +* reshape vector to format 5 x 6 +reshape result [5][6] +* vector to store temperature +let tvect=vector(5) + +*index for storing in vectors tvect and result +let index = 0 + +foreach var -40 -20 0 20 40 + set temp = $var + dc v1 0 5 1 + *store name of the actual dc plot + set dcplotname = $curplot + * back to the base plot + setplot $plotname + let result[index] = {$dcplotname}.v1#branch + let tvect[index] = $var + settype current result + let index = index + 1 + destroy $dcplotname +end + +settype temp-sweep tvect +setscale tvect + +transpose result + +plot result +write dc_loop.out result[0] result[1] result[2] result[3] result[4] result[5] + +.endc + +.end diff --git a/paranoia_parallel/examples/various/def_red.cir b/paranoia_parallel/examples/various/def_red.cir new file mode 100644 index 000000000..25a3d0f6b --- /dev/null +++ b/paranoia_parallel/examples/various/def_red.cir @@ -0,0 +1,19 @@ +Test define/alter +* function with single parameter is o.k. +* function with two parameters leaks memory + +R1 1 0 myres +.model myres res(r=1) +v1 1 0 1 + +.control +define myfcn(x,y) (y + x + 1) +op +print all +altermod @r1[r] = myfcn(2,2) +op +print all + +.endc + +.end diff --git a/paranoia_parallel/examples/various/def_red_2.cir b/paranoia_parallel/examples/various/def_red_2.cir new file mode 100644 index 000000000..5275609bc --- /dev/null +++ b/paranoia_parallel/examples/various/def_red_2.cir @@ -0,0 +1,10 @@ +Test define/let +* function with single parameter is o.k. +* function with two parameters leaks memory + +.control +define myfcn(x,y) (y + x + 1) +let nn = myfcn(2,3) +.endc + +.end diff --git a/paranoia_parallel/examples/various/diode_ac_par.sp b/paranoia_parallel/examples/various/diode_ac_par.sp new file mode 100644 index 000000000..b2d536318 --- /dev/null +++ b/paranoia_parallel/examples/various/diode_ac_par.sp @@ -0,0 +1,28 @@ +Plot inner small signal parameter + +v1 1 0 dc 0 +d1 1 0 myd +.model myd D(IS = 1.50E-07 ++ N = 1.0 ++ RS = 9 ++ TT = 100n ++ CJ0 = 1.01p ++ VJ = 0.44 ++ M = 0.5 ++ EG = 1.11 ++ XTI = 3 ++ KF = 0 ++ AF = 1 ++ FC = 0.5 ++ BV = 22 ++ IBV = 10u) + +.control +save @d1[gd] @d1[cd] @d1[qd] +dc v1 -5 .1 0.01 +plot @d1[gd] +plot @d1[cd] +plot @d1[qd] +.endc +* +.END diff --git a/paranoia_parallel/examples/various/echo_test.cir b/paranoia_parallel/examples/various/echo_test.cir new file mode 100644 index 000000000..796e631be --- /dev/null +++ b/paranoia_parallel/examples/various/echo_test.cir @@ -0,0 +1,10 @@ +variables case sensitivity in echo cmd +.control +set NameList = ( plus125C plus25C minus55C ) +let j = 2 +*setcs thisName = $NameList[$&j] +set thisName = $NameList[3] +echo "thisName: $thisName" +echo "thisname: $thisname" +.endc +.end diff --git a/paranoia_parallel/examples/various/gain_stage.cir b/paranoia_parallel/examples/various/gain_stage.cir new file mode 100644 index 000000000..c2fbe54a7 --- /dev/null +++ b/paranoia_parallel/examples/various/gain_stage.cir @@ -0,0 +1,34 @@ +** MOSFET Gain Stage (AC): Benchmarking Implementation of BSIM4.0.0 +** by Weidong Liu 5/16/2000. +** output redirection into file +** chapter 17.8.8 + +M1 3 2 0 0 N1 L=1u W=4u +Rsource 1 2 100k +Rload 3 vdd 25k +Vdd vdd 0 1.8 +Vin 1 0 1.2 ac 0.1 + +.control +ac dec 10 100 1000Meg +plot v(2) v(3) +let flen = length(frequency) ; length of the vector +let loopcounter = 0 +echo output test > text.txt ; start new file test.txt +* loop +while loopcounter lt flen + let vout2 = v(2)[loopcounter] ; generate a single point complex vector + let vout2re = real(vout2) ; generate a single point real vector + let vout2im = imag(vout2) ; generate a single point imaginary vector + let vout3 = v(3)[loopcounter] ; generate a single point complex vector + let vout3re = real(vout3) ; generate a single point real vector + let vout3im = imag(vout3) ; generate a single point imaginary vector + let freq = frequency[loopcounter] ; generate a single point vector + echo bbb "$&freq" "$&vout2re" "$&vout2im" "$&vout3re" "$&vout3im" >> ++text.txt ; append text and data to file (continued fromm line above) + let loopcounter = loopcounter + 1 +end +.endc + +.MODEL N1 NMOS LEVEL=14 VERSION=4.3.0 TNOM=27 +.end diff --git a/paranoia_parallel/examples/various/i(xxx)_tests.cir b/paranoia_parallel/examples/various/i(xxx)_tests.cir new file mode 100644 index 000000000..0bbd3c2d3 --- /dev/null +++ b/paranoia_parallel/examples/various/i(xxx)_tests.cir @@ -0,0 +1,89 @@ +i(XXX) test +* Restrictions of function i(device): +* O.K. when device and i(device) are at top level. +* O.K. when device and i(device) are in the same +* subcircuit at first subcircuit level. +* O.K. when device and i(device) are in the same +* subcircuit at some deeper subcircuit level. + +* source at top level, function i(XXX) at top level +*o.k. +R1 1 0 1 +V1 1 0 1 +R2 2 0 '5 * i(R1)' +V2 2 0 1 + +* source at top level, function i(XXX) at subckt level +* geht nicht! +*.subckt contr1 n1 n2 +*RS1 n1 n2 '6 * i(R1)' +*.ends + +*XR1 3 0 contr1 +*V3 3 0 1 + +* source at subckt level, function i(XXX) at same subckt +* o.k. +.subckt contr2 n1 n2 +RS1 n1 n2 '6 * i(RS2)' +RS2 1 0 1 +V1 1 0 1 +.ends + +XR2 4 0 contr2 +V4 4 0 1 + +* source at subckt level, function i(XXX) at same subckt level +* but different subcircuit: should not do! +* does not do! +*.subckt contr3 n1 n2 +*RS1 n1 n2 '6 * i(RS2)' +*.ends + +*XR3 5 0 contr3 +*V5 5 0 1 + + +* source at subckt level, function i(XXX) at top level +* geht nicht! + +*.subckt contr4 n1 n2 +*RS41 n1 n2 7 +*VS41 n1 n2 1 +*.ends + +*XR4 6 0 contr4 +*R6 7 0 '10*i(r.xr4.rs41)' +*V6 7 0 1 + + +* source at second subckt level, function i(XXX) at same subckt +* o.k. +.subckt contr5 n1 n2 +XR2 n1 n2 contr2 +.ends + +XR8 8 0 contr5 +V8 8 0 1 + +* MOS device, first node only +vd d 0 1 +vg g 0 1 +vb b 0 0 +vs s 0 0 +m1 d g s b n1 W=10u L=1u +RM 10 0 '1E6 * i(M1)' +VRM 10 0 1 + +* reuse i(M1) +BMM 11 0 V='1E6 * i(M1)' +RMM 11 0 1 + +.include modelcard.nmos + +.control +op +print i(V1) i(V2) i(V4) i(V8) i(VRM) i(BMM) +.endc + +.end diff --git a/paranoia_parallel/examples/various/model-name-check.cir b/paranoia_parallel/examples/various/model-name-check.cir new file mode 100644 index 000000000..248f5ad18 --- /dev/null +++ b/paranoia_parallel/examples/various/model-name-check.cir @@ -0,0 +1,68 @@ +* model name check + +V1 1 0 1 +R1 1 2 1k + +D1 2 0 DMOD +.model DMOD D (is=1e-13 bv=50) +* o.k. + +D2 2 0 _DMOD +.model _DMOD D (is=1e-13 bv=50) +* o.k. + +D3 2 0 1n4001 +.model 1n4001 D (is=1e-13 bv=50) +* o.k. + +D4 2 0 22N4 +.model 22N4 D (is=1e-13 bv=50) +* o.k. + +D5 2 0 1e34 +.model 1e34 D (is=1e-13 bv=50) +* not o.k. + +D6 2 0 74ls4444 +.model 74ls4444 D (is=1e-13 bv=50) +* o.k. + +D7 2 0 ^274ls4444 +.model ^274ls4444 D (is=1e-13 bv=50) +* not o.k. + +D8 2 0 74!4444 +.model 74!4444 D (is=1e-13 bv=50) +* o.k. + +D9 2 0 12p4444 +.model 12p4444 D (is=1e-13 bv=50) +* o.k. + +D10 2 0 17n +.model 17n D (is=1e-13 bv=50) +* not o.k. + +D11 2 0 17nB +.model 17nB D (is=1e-13 bv=50) +* o.k. + +D12 2 0 17e12n +.model 17e12n D (is=1e-13 bv=50) +* not o.k. + +D13 2 0 17e12Meg +.model 17e12Meg D (is=1e-13 bv=50) +* not o.k. + +D14 2 0 17e12Megg +.model 17e12Megg D (is=1e-13 bv=50) +* o.k. + +D15 2 0 20.5pF +.model 20.5pF D (is=1e-13 bv=50) +* not o.k. + +.end + + diff --git a/paranoia_parallel/examples/various/modelcard.nmos b/paranoia_parallel/examples/various/modelcard.nmos new file mode 100644 index 000000000..9512b41d6 --- /dev/null +++ b/paranoia_parallel/examples/various/modelcard.nmos @@ -0,0 +1,33 @@ +.model N1 NMOS ++Level= 8 version=3.3.0 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++Lw = 0 Lwl = 0 Lln = .316394 ++Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 ++vgs_max=4 vds_max=4 vbs_max=4 diff --git a/paranoia_parallel/examples/various/modelcard.pmos b/paranoia_parallel/examples/various/modelcard.pmos new file mode 100644 index 000000000..e64c8cee0 --- /dev/null +++ b/paranoia_parallel/examples/various/modelcard.pmos @@ -0,0 +1,28 @@ +.model P1 PMOS ++Level= 8 version=3.3.0 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 ++vgs_max=4 vds_max=4 vbs_max=4 diff --git a/paranoia_parallel/examples/various/nic_soa.cir b/paranoia_parallel/examples/various/nic_soa.cir new file mode 100644 index 000000000..5752d99d7 --- /dev/null +++ b/paranoia_parallel/examples/various/nic_soa.cir @@ -0,0 +1,39 @@ +CMOS NIC +* +.subckt osc_cmos ib_osz lc ra vdd vss +m16 ib_osz ib_osz vss vss n1 w=20u l=1u m=8 +m15 ra ib_osz vss vss n1 w=20u l=1u m=2 +m8 net99 net95 ra ra n1 w=20u l=1u m=2 +m1 net95 net95 net93 net93 n1 w=20u l=1u m=2 +m25 net99 net99 vdd vdd p1 w=3.3u l=0.5u m=1 +m5 net99 net99 vdd vdd p1 w=20u l=1u m=5 +m4 net95 net99 vdd vdd p1 w=20u l=1u m=5 +r23 net99 vss r=38K +r18 net93 lc r=10 +.ends osc_cmos +* +.subckt psens LC +R1 LC P001 40K +L1 LC P002 14.9u +R2 P002 0 0.55 +L2 P001 0 1.4m +.ends psens +* +xi36 bias lc ra vdd 0 osc_cmos +v39 vdd 0 dc=3.5 pulse ( 0 3.5 10u 10n 10n 1 2 ) +r4 ra 0 3.972K +c23 lc 0 1.8n +i37 vdd bias dc=1u +* +xi18 lc psens +* +.option warn=1 +.control +tran 1u 1m 0 50n +plot v(LC) +.endc +* +.include modelcard.nmos +.include modelcard.pmos +* +.end diff --git a/paranoia_parallel/examples/various/nmos_pmos_BSIM330.sp b/paranoia_parallel/examples/various/nmos_pmos_BSIM330.sp new file mode 100644 index 000000000..d8da21140 --- /dev/null +++ b/paranoia_parallel/examples/various/nmos_pmos_BSIM330.sp @@ -0,0 +1,44 @@ +*****Single NMOS and PMOS Transistor For BSIM3 threshold voltage check (Id-Vgs) (Id-Vds) *** + +M1 2 1 3 4 n1 W=1u L=0.35u Pd=1.5u Ps=1.5u ad=1.5p as=1.5p +vgs 1 0 3.5 +vds 2 0 0.1 +vss 3 0 0 +vbs 4 0 0 + +M2 22 11 33 44 p1 W=2.5u L=0.35u Pd=3u Ps=3u ad=2.5p as=2.5p +vgsp 11 0 -3.5 +vdsp 22 0 -0.1 +vssp 33 0 0 +vbsp 44 0 0 + +.options Temp=27.0 + +* BSIM3v3.3.0 model with modified default parameters 0.18m +.model n1 nmos level=49 version=3.3.0 tox=3.5n nch=2.4e17 nsub=5e16 vth0=0.15 +.model p1 pmos level=49 version=3.3.0 tox=3.5n nch=2.5e17 nsub=5e16 vth0=-0.15 + +*.include ./Modelcards/modelcard.nmos ; Berkeley model cards limited to L >= 0.35m +*.include ./Modelcards/modelcard.pmos ; Berkeley model cards limited to L >= 0.35m + +* update of the default parameters required +*.model n1 NMOS level=49 version=3.3.0 ; nearly no current due to VT > 2 V ? +*.model p1 PMOS level=49 version=3.3.0 + +.control +dc vgs 0 1.5 0.05 vbs 0 -2.5 -0.5 +plot vss#branch +dc vds 0 2 0.05 vgs 0 2 0.4 +plot vss#branch +dc vgsp 0 -1.5 -0.05 vbsp 0 2.5 0.5 +plot vssp#branch +dc vdsp 0 -2 -0.05 vgsp 0 -2 -0.4 +plot vssp#branch +.endc + +.end + + + + + diff --git a/paranoia_parallel/examples/various/nmos_pmos_plotting.sp b/paranoia_parallel/examples/various/nmos_pmos_plotting.sp new file mode 100644 index 000000000..90df4632f --- /dev/null +++ b/paranoia_parallel/examples/various/nmos_pmos_plotting.sp @@ -0,0 +1,49 @@ +*****Single NMOS and PMOS Transistor For BSIM3 threshold voltage check (Id-Vgs) (Id-Vds) *** + +M1 2 1 3 4 n1 W=1u L=0.35u Pd=1.5u Ps=1.5u ad=1.5p as=1.5p +vgs 1 0 3.5 +vds 2 0 0.1 +vss 3 0 0 +vbs 4 0 0 + +M2 22 11 33 44 p1 W=2.5u L=0.35u Pd=3u Ps=3u ad=2.5p as=2.5p +vgsp 11 0 -3.5 +vdsp 22 0 -0.1 +vssp 33 0 0 +vbsp 44 0 0 + +.options Temp=27.0 + +* BSIM3v3.3.0 model with modified default parameters 0.18m +.model n1 nmos level=49 version=3.3.0 tox=3.5n nch=2.4e17 nsub=5e16 vth0=0.15 +.model p1 pmos level=49 version=3.3.0 tox=3.5n nch=2.5e17 nsub=5e16 vth0=-0.15 + +*.include ./Modelcards/modelcard.nmos ; Berkeley model cards limited to L >= 0.35m +*.include ./Modelcards/modelcard.pmos ; Berkeley model cards limited to L >= 0.35m + +* update of the default parameters required +*.model n1 NMOS level=49 version=3.3.0 ; nearly no current due to VT > 2 V ? +*.model p1 PMOS level=49 version=3.3.0 + +.control +* various plot font sizes +dc vgs 0 1.5 0.05 vbs 0 -2.5 -0.5 +plot vss#branch ylabel 'output current' +set wfont_size=18 +dc vds 0 2 0.05 vgs 0 2 0.4 +plot vss#branch ylabel 'output current' +set wfont_size=20 +dc vgsp 0 -1.5 -0.05 vbsp 0 2.5 0.5 +plot vssp#branch ylabel 'output current' +set wfont=Times +set wfont_size=18 +dc vdsp 0 -2 -0.05 vgsp 0 -2 -0.4 +plot vssp#branch ylabel 'output current' +.endc + +.end + + + + + diff --git a/paranoia_parallel/examples/various/param_sweep.cir b/paranoia_parallel/examples/various/param_sweep.cir new file mode 100644 index 000000000..79d5869e5 --- /dev/null +++ b/paranoia_parallel/examples/various/param_sweep.cir @@ -0,0 +1,29 @@ +parameter sweep +* resistive divider, R1 swept from start_r to stop_r +* replaces .STEP R1 1k 10k 1k +* chapter 16.13.4.2 + +R1 1 2 1k +R2 2 0 1k + +VDD 1 0 DC 1 +.dc VDD 0 1 .1 + +.control +let start_r = 1k +let stop_r = 10k +let delta_r = 1k +let r_act = start_r +* loop +while r_act le stop_r + alter r1 r_act + run + write dc-sweep.out v(2) + set appendwrite + let r_act = r_act + delta_r +end +plot dc1.v(2) dc2.v(2) dc3.v(2) dc4.v(2) dc5.v(2) ++ dc6.v(2) dc7.v(2) dc8.v(2) dc9.v(2) dc10.v(2) +.endc + +.end diff --git a/paranoia_parallel/examples/various/probe-i-dev.cir b/paranoia_parallel/examples/various/probe-i-dev.cir new file mode 100644 index 000000000..ebd391aa2 --- /dev/null +++ b/paranoia_parallel/examples/various/probe-i-dev.cir @@ -0,0 +1,41 @@ +test .probe i(dev) + +Vcc 1 0 1 +RC 1 c 100 +vbb 2 0 1 +RB 2 b 300 + +vee e 0 0 + +Q1 c b e nbipmod +.model nbipmod npn + + +.subckt pbip c b e s +Q1 c b e s pbipmod +.model pbipmod pnp +.ends + +Vcc1 11 0 -1 +RC1 11 c1 100 +vbb1 12 0 -1 +RB1 12 b1 300 +vee1 e1 0 0 +vss1 s1 0 0 + +X1 c1 b1 e1 s1 pbip + +*.probe i(x1) i(q1) +.probe p(Q1) p(X1) + +.control +*op +dc vbb 0 2 0.01 +settype power q1:power +plot q1:power +display +quit +.endc + +.end + diff --git a/paranoia_parallel/examples/various/ro_17_4.cir b/paranoia_parallel/examples/various/ro_17_4.cir new file mode 100644 index 000000000..ebf80dd2b --- /dev/null +++ b/paranoia_parallel/examples/various/ro_17_4.cir @@ -0,0 +1,197 @@ +*****************==== 17-Stage CMOS RO ====******************* +*********** Benchmarking Implementation of BSIM4 by Jane Xi 11/05/2002. + +* this variant improves current memeasurement +* by setting 'xmu' + +vdd 1 0 2.0 +mp1 3 2 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn1 3 2 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp2 4 3 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn2 4 3 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp3 5 4 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn3 5 4 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp4 6 5 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn4 6 5 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp5 7 6 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn5 7 6 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp6 8 7 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn6 8 7 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp7 9 8 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn7 9 8 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp8 10 9 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn8 10 9 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp9 11 10 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn9 11 10 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp10 12 11 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn10 12 11 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u + +mp11 13 12 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn11 13 12 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp12 14 13 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn12 14 13 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp13 15 14 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn13 15 14 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp14 16 15 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn14 16 15 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp15 17 16 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn15 17 16 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp16 18 17 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn16 18 17 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +mp17 2 18 1 1 p1 l=0.1u w=10u ad=5p pd=6u as=5p ps=6u +mn17 2 18 0 0 n1 l=0.1u w=5u ad=5p pd=6u as=5p ps=6u +c1 18 0 .1p + +* .ic v(2)=1.0 v(3)=1.0 v(4)=1.0 +* .ic v(2)=2.0 v(3)=0.0 v(4)=2.0 +* .ic v(2)=2.0 v(3)=0.0 v(4)=2.0 v(5)=0.0 v(6)=2.0 +* .ic v(7)=0.0 v(8)=2.0 v(9)=0.0 v(10)=2.0 v(11)=0.0 v(12)=2.0 +* .ic v(13)=0.0 v(14)=2.0 v(15)=0.0 v(16)=2.0 v(17)=0.0 v(18)=2.0 +* .ic V(10)=5 v(2)=5 v(3)=5 v(4)=5 v(5)=5 v(6)=5 + +* .ic v(18)=1 + +.tran .1ns 5n + +* .option xmu = 0.49 +* .print tran v(5) + +.control + +* reduce current ringing +option xmu = 0.49 +* set xmu=0.49 + +set num_threads=4 +set noinit +run + +* current and output in a single plot +plot v(18) 1000*(-I(vdd)) ylimit -1 6 + +quit + +.endc + +* Short channel models from CMOS Circuit Design, Layout, and Simulation, +* 50nm BSIM4 models VDD=1V, see CMOSedu.com +* +.model N1 nmos level = 54 version = 4.5.0 ++binunit = 1 paramchk= 1 mobmod = 0 ++capmod = 2 igcmod = 1 igbmod = 1 geomod = 0 ++diomod = 1 rdsmod = 0 rbodymod= 1 rgatemod= 1 ++permod = 1 acnqsmod= 0 trnqsmod= 0 ++tnom = 27 toxe = 1.4e-009 toxp = 7e-010 toxm = 1.4e-009 ++epsrox = 3.9 wint = 5e-009 lint = 1.2e-008 ++ll = 0 wl = 0 lln = 1 wln = 1 ++lw = 0 ww = 0 lwn = 1 wwn = 1 ++lwl = 0 wwl = 0 xpart = 0 toxref = 1.4e-009 ++vth0 = 0.22 k1 = 0.35 k2 = 0.05 k3 = 0 ++k3b = 0 w0 = 2.5e-006 dvt0 = 2.8 dvt1 = 0.52 ++dvt2 = -0.032 dvt0w = 0 dvt1w = 0 dvt2w = 0 ++dsub = 2 minv = 0.05 voffl = 0 dvtp0 = 1e-007 ++dvtp1 = 0.05 lpe0 = 5.75e-008 lpeb = 2.3e-010 xj = 2e-008 ++ngate = 5e+020 ndep = 2.8e+018 nsd = 1e+020 phin = 0 ++cdsc = 0.0002 cdscb = 0 cdscd = 0 cit = 0 ++voff = -0.15 nfactor = 1.2 eta0 = 0.15 etab = 0 ++vfb = -0.55 u0 = 0.032 ua = 1.6e-010 ub = 1.1e-017 ++uc = -3e-011 vsat = 1.1e+005 a0 = 2 ags = 1e-020 ++a1 = 0 a2 = 1 b0 = -1e-020 b1 = 0 ++keta = 0.04 dwg = 0 dwb = 0 pclm = 0.18 ++pdiblc1 = 0.028 pdiblc2 = 0.022 pdiblcb = -0.005 drout = 0.45 ++pvag = 1e-020 delta = 0.01 pscbe1 = 8.14e+008 pscbe2 = 1e-007 ++fprout = 0.2 pdits = 0.2 pditsd = 0.23 pditsl = 2.3e+006 ++rsh = 3 rdsw = 150 rsw = 150 rdw = 150 ++rdswmin = 0 rdwmin = 0 rswmin = 0 prwg = 0 ++prwb = 6.8e-011 wr = 1 alpha0 = 0.074 alpha1 = 0.005 ++beta0 = 30 agidl = 0.0002 bgidl = 2.1e+009 cgidl = 0.0002 ++egidl = 0.8 ++aigbacc = 0.012 bigbacc = 0.0028 cigbacc = 0.002 ++nigbacc = 1 aigbinv = 0.014 bigbinv = 0.004 cigbinv = 0.004 ++eigbinv = 1.1 nigbinv = 3 aigc = 0.017 bigc = 0.0028 ++cigc = 0.002 aigsd = 0.017 bigsd = 0.0028 cigsd = 0.002 ++nigc = 1 poxedge = 1 pigcd = 1 ntox = 1 ++xrcrg1 = 12 xrcrg2 = 5 ++cgso = 6.238e-010 cgdo = 6.238e-010 cgbo = 2.56e-011 cgdl = 2.495e-10 ++cgsl = 2.495e-10 ckappas = 0.02 ckappad = 0.02 acde = 1 ++moin = 15 noff = 0.9 voffcv = 0.02 ++kt1 = -0.21 kt1l = 0.0 kt2 = -0.042 ute = -1.5 ++ua1 = 1e-009 ub1 = -3.5e-019 uc1 = 0 prt = 0 ++at = 53000 ++fnoimod = 1 tnoimod = 0 ++jss = 0.0001 jsws = 1e-011 jswgs = 1e-010 njs = 1 ++ijthsfwd= 0.01 ijthsrev= 0.001 bvs = 10 xjbvs = 1 ++jsd = 0.0001 jswd = 1e-011 jswgd = 1e-010 njd = 1 ++ijthdfwd= 0.01 ijthdrev= 0.001 bvd = 10 xjbvd = 1 ++pbs = 1 cjs = 0.0005 mjs = 0.5 pbsws = 1 ++cjsws = 5e-010 mjsws = 0.33 pbswgs = 1 cjswgs = 5e-010 ++mjswgs = 0.33 pbd = 1 cjd = 0.0005 mjd = 0.5 ++pbswd = 1 cjswd = 5e-010 mjswd = 0.33 pbswgd = 1 ++cjswgd = 5e-010 mjswgd = 0.33 tpb = 0.005 tcj = 0.001 ++tpbsw = 0.005 tcjsw = 0.001 tpbswg = 0.005 tcjswg = 0.001 ++xtis = 3 xtid = 3 ++dmcg = 0e-006 dmci = 0e-006 dmdg = 0e-006 dmcgt = 0e-007 ++dwj = 0e-008 xgw = 0e-007 xgl = 0e-008 ++rshg = 0.4 gbmin = 1e-010 rbpb = 5 rbpd = 15 ++rbps = 15 rbdb = 15 rbsb = 15 ngcon = 1 +* +.model P1 pmos level = 54 version = 4.5.0 ++binunit = 1 paramchk= 1 mobmod = 0 ++capmod = 2 igcmod = 1 igbmod = 1 geomod = 0 ++diomod = 1 rdsmod = 0 rbodymod= 1 rgatemod= 1 ++permod = 1 acnqsmod= 0 trnqsmod= 0 ++tnom = 27 toxe = 1.4e-009 toxp = 7e-010 toxm = 1.4e-009 ++epsrox = 3.9 wint = 5e-009 lint = 1.2e-008 ++ll = 0 wl = 0 lln = 1 wln = 1 ++lw = 0 ww = 0 lwn = 1 wwn = 1 ++lwl = 0 wwl = 0 xpart = 0 toxref = 1.4e-009 ++vth0 = -0.22 k1 = 0.39 k2 = 0.05 k3 = 0 ++k3b = 0 w0 = 2.5e-006 dvt0 = 3.9 dvt1 = 0.635 ++dvt2 = -0.032 dvt0w = 0 dvt1w = 0 dvt2w = 0 ++dsub = 0.7 minv = 0.05 voffl = 0 dvtp0 = 0.5e-008 ++dvtp1 = 0.05 lpe0 = 5.75e-008 lpeb = 2.3e-010 xj = 2e-008 ++ngate = 5e+020 ndep = 2.8e+018 nsd = 1e+020 phin = 0 ++cdsc = 0.000258 cdscb = 0 cdscd = 6.1e-008 cit = 0 ++voff = -0.15 nfactor = 2 eta0 = 0.15 etab = 0 ++vfb = 0.55 u0 = 0.0095 ua = 1.6e-009 ub = 8e-018 ++uc = 4.6e-013 vsat = 90000 a0 = 1.2 ags = 1e-020 ++a1 = 0 a2 = 1 b0 = -1e-020 b1 = 0 ++keta = -0.047 dwg = 0 dwb = 0 pclm = 0.55 ++pdiblc1 = 0.03 pdiblc2 = 0.0055 pdiblcb = 3.4e-008 drout = 0.56 ++pvag = 1e-020 delta = 0.014 pscbe1 = 8.14e+008 pscbe2 = 9.58e-007 ++fprout = 0.2 pdits = 0.2 pditsd = 0.23 pditsl = 2.3e+006 ++rsh = 3 rdsw = 250 rsw = 160 rdw = 160 ++rdswmin = 0 rdwmin = 0 rswmin = 0 prwg = 3.22e-008 ++prwb = 6.8e-011 wr = 1 alpha0 = 0.074 alpha1 = 0.005 ++beta0 = 30 agidl = 0.0002 bgidl = 2.1e+009 cgidl = 0.0002 ++egidl = 0.8 ++aigbacc = 0.012 bigbacc = 0.0028 cigbacc = 0.002 ++nigbacc = 1 aigbinv = 0.014 bigbinv = 0.004 cigbinv = 0.004 ++eigbinv = 1.1 nigbinv = 3 aigc = 0.69 bigc = 0.0012 ++cigc = 0.0008 aigsd = 0.0087 bigsd = 0.0012 cigsd = 0.0008 ++nigc = 1 poxedge = 1 pigcd = 1 ntox = 1 ++xrcrg1 = 12 xrcrg2 = 5 ++cgso = 7.43e-010 cgdo = 7.43e-010 cgbo = 2.56e-011 cgdl = 1e-014 ++cgsl = 1e-014 ckappas = 0.5 ckappad = 0.5 acde = 1 ++moin = 15 noff = 0.9 voffcv = 0.02 ++kt1 = -0.19 kt1l = 0 kt2 = -0.052 ute = -1.5 ++ua1 = -1e-009 ub1 = 2e-018 uc1 = 0 prt = 0 ++at = 33000 ++fnoimod = 1 tnoimod = 0 ++jss = 0.0001 jsws = 1e-011 jswgs = 1e-010 njs = 1 ++ijthsfwd= 0.01 ijthsrev= 0.001 bvs = 10 xjbvs = 1 ++jsd = 0.0001 jswd = 1e-011 jswgd = 1e-010 njd = 1 ++ijthdfwd= 0.01 ijthdrev= 0.001 bvd = 10 xjbvd = 1 ++pbs = 1 cjs = 0.0005 mjs = 0.5 pbsws = 1 ++cjsws = 5e-010 mjsws = 0.33 pbswgs = 1 cjswgs = 5e-010 ++mjswgs = 0.33 pbd = 1 cjd = 0.0005 mjd = 0.5 ++pbswd = 1 cjswd = 5e-010 mjswd = 0.33 pbswgd = 1 ++cjswgd = 5e-010 mjswgd = 0.33 tpb = 0.005 tcj = 0.001 ++tpbsw = 0.005 tcjsw = 0.001 tpbswg = 0.005 tcjswg = 0.001 ++xtis = 3 xtid = 3 ++dmcg = 0e-006 dmci = 0e-006 dmdg = 0e-006 dmcgt = 0e-007 ++dwj = 0e-008 xgw = 0e-007 xgl = 0e-008 ++rshg = 0.4 gbmin = 1e-010 rbpb = 5 rbpd = 15 ++rbps = 15 rbdb = 15 rbsb = 15 ngcon = 1 + +.end diff --git a/paranoia_parallel/examples/various/tmp-noise-2.cir b/paranoia_parallel/examples/various/tmp-noise-2.cir new file mode 100644 index 000000000..8dbb89103 --- /dev/null +++ b/paranoia_parallel/examples/various/tmp-noise-2.cir @@ -0,0 +1,24 @@ +* (exec-spice "ngspice %s" t) +* actually not noise but temp coeff + +v1 1 0 dc 100 ac=1 + +b2 2 0 i=v(1) tc1=0.001 +v2 0 2 0 + +b3 3 0 v=v(1) tc1=0.001 + +.temp 127.0 + +.control +op +let idc2=i(v2) +let vdc3=v(3) +print idc2 vdc3 + +ac dec 1 1kHz 1kHz +let iac2=i(v2) +let vac3=v(3) +print iac2 vac3 + +.endc diff --git a/paranoia_parallel/examples/various/tmp-noise.cir b/paranoia_parallel/examples/various/tmp-noise.cir new file mode 100644 index 000000000..0e2d5b090 --- /dev/null +++ b/paranoia_parallel/examples/various/tmp-noise.cir @@ -0,0 +1,33 @@ +* (exec-spice "ngspice %s" t) + +v1 1 0 dc 2 ac 1 +v2 200 0 dc=1 + +R1 1 2 1k +R2 2 0 1k tc1=0.001 ; tc2=1e-5 + +R10 1 20 1k +R20 20 0 '1k*v(200)' tc1=0.001 ; tc2=1e-5 + +.temp 127.0 + +.control +listing e + +op +let gold = 2/(1+1000/1100) +print v(2) v(20) gold + +noise v(2) v1 dec 1 1kHz 1kHz +let r = 1/(1/1000 + 1/1100) +let gold = sqrt(4*boltz*(273.15+127.0)*r) +print all gold + +noise v(20) v1 dec 1 1kHz 1kHz +print all + +ac dec 1 1kHz 1kHz +let gold = 1/(1+1000/1100) +print v(2) v(20) gold + +.endc diff --git a/paranoia_parallel/examples/various/todo-temper-3.cir b/paranoia_parallel/examples/various/todo-temper-3.cir new file mode 100644 index 000000000..e62c89e33 --- /dev/null +++ b/paranoia_parallel/examples/various/todo-temper-3.cir @@ -0,0 +1,23 @@ +* try temper + +* (exec-spice "ngspice %s" t) + +.model dplain d is={temper >= 25 ? 1e-10 : (temper+1)*1e-11} +.model dref d is=1e-10 + + +Iin 1 0 dc = -1mA +Dref 1 0 dref +e2 2 0 1 0 1 +D2 2 0 dplain +e3 3 0 1 0 1 +D3 3 0 dref area={temper >= 25 ? (temper+100)/100 : 2 } + +.control +dc temp 0 125 1.0 +plot e2#branch/@iin[dc] +plot e3#branch/@iin[dc] +*quit 0 +.endc + +.end diff --git a/paranoia_parallel/examples/vbic/DFF_Y_ECL.sp b/paranoia_parallel/examples/vbic/DFF_Y_ECL.sp new file mode 100644 index 000000000..0dec20d09 --- /dev/null +++ b/paranoia_parallel/examples/vbic/DFF_Y_ECL.sp @@ -0,0 +1,56 @@ +ECL DFF VBIC test case +* +V6 D GND PULSE(-.25 0 0 1P 1P .25N .50N) +V5 D_BAR GND PULSE(0 -.25 0 1P 1P .25N .50N) +V4 CLK GND PULSE(-0.9 -1.2 0 1P 1P .125N .25N) +V3 CLK_BAR GND PULSE(-1.2 -0.9 0 1P 1P .125N .25N) +VVCS NET2 GND DC -0.8 +R6 GND NET6 800 +R5 GND NET11 800 +R4 NET12 VEE 350 +VVEE VEE GND DC -2.0 +R3 GND NET10 800 +R2 NET13 VEE 350 +R1 GND Q 800 +QVLGNPN16 NET7 CLK_BAR NET4 VEE NPN_VBIC_VLG +QVLGNPN15 NET5 CLK NET3 VEE NPN_VBIC_VLG +QVLGNPN14 NET10 Q NET7 VEE NPN_VBIC_VLG +QVLGNPN13 Q NET6 NET9 VEE NPN_VBIC_VLG +QVLGNPN12 NET6 NET11 NET5 VEE NPN_VBIC_VLG +QVLGNPN11 NET11 D_BAR NET8 VEE NPN_VBIC_VLG +QVLGNPN10 NET4 NET2 NET13 VEE NPN_VBIC_VLG +QVLGNPN9 NET3 NET2 NET12 VEE NPN_VBIC_VLG +QVLGNPN8 NET8 CLK_BAR NET3 VEE NPN_VBIC_VLG +QVLGNPN7 NET9 CLK NET4 VEE NPN_VBIC_VLG +QVLGNPN6 Q NET10 NET7 VEE NPN_VBIC_VLG +QVLGNPN5 NET10 NET11 NET9 VEE NPN_VBIC_VLG +QVLGNPN4 NET11 NET6 NET5 VEE NPN_VBIC_VLG +QVLGNPN3 NET6 D NET8 VEE NPN_VBIC_VLG +* +.MODEL NPN_VBIC_VLG NPN LEVEL=4 ++TNOM = 27 RCI = 1E3 RCX = 50 ++VO = 1.5 GAMM = 3.402097E-11 HRCF = 1 ++RBX = 243 RBI = 20 RE = 30 ++RS = 0 RBP = 0 IS = 8.084033E-18 ++NF = 1 NR = 1.005 FC = 0.5 ++CJE = 2.083234E-15 PE = 0.8793669 ME = 0.3108762 ++CJC = 1.803275E-15 PC = 0.5512188 MC = 0.4454263 ++CJCP = 8E-15 PS = 0.66956 MS = 0.2243 ++IBEI = 4.542609E-20 WBE = 1 NEI = 1 ++IBEN = 3.275162E-16 NEN = 1.5543186 IBCI = 3.594252E-19 ++NCI = 0.996 IBCN = 1.717776E-17 NCN = 1.202521 ++AVC1 = 3E-4 AVC2 = 1E-5 ISP = 1.332E-19 ++WSP = 1 NFP = 1 IBEIP = 0 ++IBENP = 0 IBCIP = 0 NCIP = 1 ++IBCNP = 0 NCNP = 2 VEF = 109.6523 ++VER = 2.2052435 IKF = 6.03524E-3 IKR = 1.807895E-4 ++IKP = 2.908576E-5 TF = 1.1E-12 XTF = 21.5423 ++VTF = 12.4758677 ITF = 0.0175231 TR = 2.23542E-9 + +.SAVE V(D) V(CLK) V(Q) +.control +TRAN 0.25p 1n +plot V(D) V(CLK) V(Q) +quit +.endc +.END diff --git a/paranoia_parallel/examples/vbic/Infineon_VBIC.lib b/paranoia_parallel/examples/vbic/Infineon_VBIC.lib new file mode 100644 index 000000000..29018daa1 --- /dev/null +++ b/paranoia_parallel/examples/vbic/Infineon_VBIC.lib @@ -0,0 +1,287 @@ +*************************************************************** +* Comments for the user: +* The VBIC Model includes the self heating effect and the user can switch selfheating on or off. +* a) no self heating: set Rth = 0 +* b) with self heating: set Rth=80K/W + Rth_PCB (customer) +* Note: Rth = 80 K/W includes only the thermal resistance of die and package and +* the thermal resistance of the customer PCB must be added (Rth=80K/W + Rth_PCB) + +* Infineon Technologies AG +* VBIC MODEL IN SPICE 2G6 SYNTAX +* VALID UP TO 10 GHZ +* >>> BFP780 <<< +* (C) 2015 Infineon Technologies AG +* Version 1.1 October 2015 +*************************************************************** +*.OPTION TNOM=25, GMIN= 1.00e-12 +*BFP780 C B E1 E2 +.SUBCKT BFP780 1 2 3 4 +* +CCEPAR 11 33 800E-015 +* +LEx 30 35 3E-011 +LBx 20 2 3E-011 +LCx 10 1 3E-011 +* +CBPAD 22 44 30E-015 +CCPAD 11 44 30E-015 +CEPAD 33 44 30E-015 +* +LB 22 20 777E-12 +LC 10 11 777E-12 +* +CBEPCK 20 30 5.703E-015 +CBCPCK 10 20 1.497E-014 +CCEPCK 10 30 6.032E-014 +* +RE1 35 3 1E-03 +RE2 35 4 1E-03 +* +Rsub1 44 30 0.2144 +Rps 44 33 0.07306 +* +D1 33 22 Diode_fb +D2 44 22 Diode_fbd +* +.MODEL Diode_fb D( ++ IS=3.5E-015 ++ N=1 ++ CJO=10e-15 ++ RS=6.1 ++ Tnom=25) +* +.MODEL Diode_fbd D( ++ IS=1E-015 ++ N=1 ++ CJO=10E-15 ++ RS=1 ++ Tnom=25) +* +Q1 11 22 33 44 M_BFP780 +* +.ENDS BFP780 +.MODEL M_BFP780 NPN (Level=4 ++ Tnom=25 ++ Cbeo=2.47E-012 ++ Cje=561.3E-015 ++ Pe=0.7 ++ Me=0.333 ++ Aje=-1 ++ Wbe=1 ++ Cbco=10E-015 ++ Cjc=668.6E-015 ++ Pc=0.54 ++ Mc=0.333 ++ Ajc=-1 ++ Cjep=2.616E-015 ++ Cjcp=900E-015 ++ Ps=0.6 ++ Ms=0.3 ++ Ajs=-0.5 ++ Fc=0.94 ++ Vef=545.4 ++ Ver=3.291 ++ Is=2.3E-015 ++ Nf=0.9855 ++ Ibei=1.893E-018 ++ Nei=0.9399 ++ Iben=4.77E-015 ++ Nen=1.361 ++ Ikf=1 ++ Nr=0.9912 ++ Ibci=157.5E-018 ++ Nci=1.1 ++ Ibcn=4.929E-015 ++ Ncn=1.463 ++ Ikr=0.01178 ++ Wsp=1 ++ Isp=1E-015 ++ Nfp=1 ++ Ibcip=1E-015 ++ Ncip=1.029 ++ Ibcnp=1E-015 ++ Ncnp=1 ++ Ikp=1E-3 ++ Ibeip=1E-015 ++ Ibenp=1E-015 ++ Re=0.15 ++ Rcx=0.01 ++ Rci=2.665 ++ Qco=1E-015 ++ Vo=0.0005022 ++ Gamm=5.659E-012 ++ Hrcf=0.21 ++ Rbx=5 ++ Rbi=1.964 ++ Rbp=265.5 ++ Rs=26.56 ++ Avc1=3.97 ++ Avc2=29.52 ++ Tf=1.6E-012 ++ Qtf=50E-3 ++ Xtf=30 ++ Vtf=0.7 ++ Itf=1 ++ Tr=1E-015 ++ Td=500E-015 ++ Cth=0 ++ Rth=80 ++ Ea=1.12 ++ Eaie=1.12 ++ Eaic=1.12 ++ Eais=1 ++ Eane=1.12 ++ Eanc=1.12 ++ Eans=1 ++ Xre=0 ++ Xrb=0 ++ Xrc=0 ++ Xrs=0 ++ Xvo=0 ++ Xis=-1.631 ++ Xii=0 ++ Xin=0 ++ Tnf=0 ++ Tavc=0.002613 ++ Kfn=0 ++ Afn=1 ++ Bfn=1 ) +*************************************************************** +* +*.ENDS BFP780 +*************************************************************** +* Comments for the user: +* The VBIC Model includes the self heating effect and the user can switch selfheating on or off. +* a) no self heating: set Rth = 0 +* b) with self heating: set Rth=20K/W + Rth_PCB (customer) +* Note: Rth = 20 K/W includes only the thermal resistance of die and package and +* the thermal resistance of the customer PCB must be added (Rth=20K/W + Rth_PCB) + +* Infineon Technologies AG +* VBIC MODEL +* VALID UP TO 6 GHZ +* >>> BFQ790 <<< +* (C) 2015 Infineon Technologies AG +* Version 1.0 Juni 2015 +*************************************************************** +*.OPTION TNOM=25, GMIN= 1.00e-12 +*BFQ790 C B E + +* without access to the external thermal node (Rth to be adjusted by the customer in the model parameter list for the transistor +.SUBCKT BFQ790 1 2 3 +* +* with access to external thermal node +*.SUBCKT BFQ790 1 2 3 55 +* +CCSPAR 11 44 1.375E-012 +LEx 30 3 4.36882E-011 +LBx 20 2 2.77681E-011 +LCx 10 1 4.265E-011 +CBEPCK 20 30 1.105E-013 +CBCPCK 10 20 1E-014 +CCEPCK 10 30 1E-015 +LB 222 20 1.02449E-009 +LC 10 11 1.89901E-009 +* +RBL 222 22 45 +CBL 222 22 3E-011 +* +Rsub1 44 30 0.000500184 +Rps 44 33 0.102733 +* +* +* without access to the external thermal node +Q1 11 22 33 44 M_BFQ790 +* +* with access to the thermal node +* Q1 11 22 33 44 55 M_BFQ790 +* +.MODEL M_BFQ790 NPN Level=4( ++ Tnom=25 ++ Cbeo=9.31E-012 ++ Cje=7.693E-013 ++ Pe=0.5892 ++ Me=0.3115 ++ Aje=-0.5 ++ Wbe=1 ++ Cbco=1.966E-013 ++ Cjc=1E-015 ++ Pc=0.5095 ++ Mc=0.2797 ++ Ajc=-0.5 ++ Cjep=1.875E-012 ++ Cjcp=2.067E-012 ++ Ps=0.5086 ++ Ms=0.2865 ++ Ajs=-0.5 ++ Fc=0.93 ++ Vef=615.1 ++ Ver=5.61838 ++ Is=9.704E-015 ++ Nf=1.001 ++ Ibei=5E-017 ++ Nei=1.013 ++ Iben=3.609E-014 ++ Nen=1.46 ++ Ikf=2 ++ Nr=0.9958 ++ Ibci=1.001E-017 ++ Nci=1.015 ++ Ibcn=2.918E-014 ++ Ncn=1.399 ++ Ikr=0.2301 ++ Wsp=1 ++ Isp=1E-015 ++ Nfp=1 ++ Ibcip=2E-017 ++ Ncip=1 ++ Ibcnp=1.7E-015 ++ Ncnp=1.67 ++ Ikp=0.0002 ++ Ibeip=7E-017 ++ Ibenp=2.4E-014 ++ Re=0.2 ++ Rcx=0.02559 ++ Rci=1.168 ++ Qco=4E-015 ++ Vo=0.4234 ++ Gamm=2.199E-012 ++ Hrcf=0.1907 ++ Rbx=0.2825 ++ Rbi=1.868 ++ Rbp=0.001 ++ Rs=10 ++ Avc1=1 ++ Avc2=25.84 ++ Tf=3E-012 ++ Qtf=0.6758 ++ Xtf=0.01293 ++ Vtf=0.5 ++ Itf=0.1948 ++ Tr=1E-015 ++ Td=1E-015 ++ Cth=0 ++ Rth=20.05 ++ Ea=1.12 ++ Eaie=1.12 ++ Eaic=1.12 ++ Eais=1.12 ++ Eane=1.12 ++ Eanc=1.12 ++ Eans=1.12 ++ Xre=0 ++ Xrb=0 ++ Xrc=0 ++ Xrs=0 ++ Xvo=0 ++ Xis=1.907 ++ Xii=4.963 ++ Xin=-2.837 ++ Tnf=1E-006 ++ Tavc=0.006705 ++ Kfn=0 ++ Afn=1 ++ Bfn=1 ) +*************************************************************** +* +.ENDS BFQ790 diff --git a/paranoia_parallel/examples/vbic/npn_ft.sp b/paranoia_parallel/examples/vbic/npn_ft.sp new file mode 100644 index 000000000..190c05e7f --- /dev/null +++ b/paranoia_parallel/examples/vbic/npn_ft.sp @@ -0,0 +1,42 @@ +VBIC ft Test + +.include Infineon_VBIC.lib + +vce 1 0 dc 3.0 +vgain 1 c dc 0.0 +f 0 2 vgain -1000 +l 2 b 1g +c 2 0 1g +ib 0 b dc 0.0 ac 1.0 +ic 0 c 0.01 +xq1 c b 0 0 BFP780 + +.control +let ft_runs = 13 +let run = 0 +set curplot=new ; create a new plot +set curplotname=ft_plot +set curplottitle="Infineon BFP780 ft = f(Ic)" +set scratch=$curplot ; store its name to 'scratch' +setplot $scratch ; make 'scratch' the active plot +let ft=unitvec(ft_runs) ; create a vector in plot 'scratch' to store ft data +let ic=unitvec(ft_runs) ; create a vector in plot 'scratch' to store ic data +foreach myic 1m 4m 7m 10m 20m 40m 60m 75m 90m 100m 110m 130m 180m + alter ic = $myic + ac dec 10 100k 50g +*plot vdb(vgain#branch) + meas ac freq_at when vdb(vgain#branch)=0 + set run ="$&run" ; create a variable from the vector + set dt = $curplot ; store the current plot to dt + setplot $scratch ; make 'scratch' the active plot + let ic[run] = $myic ; store ic to vector ft in plot 'scratch' + let ft[run] = {$dt}.freq_at ; store ft to vector ft in plot 'scratch' + setplot $dt ; go back to the previous plot + let run = run + 1 +end +setplot unknown1 +plot ft vs ic xlog +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vbic/npn_gum.sp b/paranoia_parallel/examples/vbic/npn_gum.sp new file mode 100644 index 000000000..08d0eb8fa --- /dev/null +++ b/paranoia_parallel/examples/vbic/npn_gum.sp @@ -0,0 +1,18 @@ +VBIC Gummel Test Ic=f(Vc,Vb) + +.include qnva.mod + +VB B 0 0.5 +VC C 0 1.0 +VS S 0 0.0 +XQ1 C B 0 S qnva + +.control +options gmin=1e-15 +dc vb 0.2 1.2 0.01 +plot abs(i(vc)) abs(i(vb)) abs(i(vs)) ylimit 0.1e-12 100e-3 ylog +plot abs(i(vc))/abs(i(vb)) vs abs(-i(vc)) xlog xlimit 10e-12 10e-3 ylimit 0 40 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vbic/npn_out.sp b/paranoia_parallel/examples/vbic/npn_out.sp new file mode 100644 index 000000000..14d38de40 --- /dev/null +++ b/paranoia_parallel/examples/vbic/npn_out.sp @@ -0,0 +1,17 @@ +VBIC Output Test Ic=f(Vc,Ib) + +.include qnva.mod + +IB 0 B 200n +VC C 0 2.0 +VS S 0 0.0 +XQ1 C B 0 S qnva + +.control +dc vc 0.0 5.0 0.05 ib 1u 10u 1u +run +plot abs(i(vc)) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vbic/qnva.mod b/paranoia_parallel/examples/vbic/qnva.mod new file mode 100644 index 000000000..150e74c53 --- /dev/null +++ b/paranoia_parallel/examples/vbic/qnva.mod @@ -0,0 +1,94 @@ +.param ++qnva_is=1.000e+00 ++qnva_re=1.000e+00 ++qnva_cje=1.000e+00 ++qnva_cjc=1.000e+00 ++qnva_vef=1.000e+00 ++qnva_rcx=1.000e+00 ++qnva_rbx=1.000e+00 ++qnva_rci=1.000e+00 ++qnva_ibei=1.000e+00 ++qnva_iben=0.000e+00 ++qnva_cjep=1.000e+00 ++qnva_cjcp=1.000e+00 ++qnva_ais=0.000e+00 ++qnva_aibei=0.000e+00 ++qnva_aiben=0.000e+00 + +.subckt qnva c b e s le=2.02 par1=1 +q1 c b e s qnvamod area=1 +.model qnvamod npn level=9 ++ tref=2.700e+01 ++ ebbe=2.111e-05 ++ vo=0.000e+00 ++ gamm=1.493e-13 hrcf=0.000e+00 ++ nf=1.000e+00 nr=1.008e+00 ++ fc=8.300e-01 pe=6.500e-01 ++ me=3.500e-01 aje=-5.000e-01 ++ qco=0.000e+00 pc=6.500e-01 ++ mc=3.200e-01 ajc=-5.000e-01 ++ ps=6.000e-01 ms=3.700e-01 ++ ajs=-5.000e-01 wbe=4.800e-01 ++ nei=1.000e+00 nen=2.000e+00 ++ nci=1.000e+00 ncn=2.100e+00 ++ avc1=2.258e+00 ++ wsp=1.000e+00 nfp=1.000e+00 ++ ncip=1.000e+00 ncnp=2.000e+00 ++ ver=8.807e+00 qtf=0.000e+00 ++ xtf=3.770e+00 vtf=1.667e+00 ++ tr=3.500e-10 td=0.000e+00 ++ afn=1.000e+00 kfn=5.500e-14 ++ bfn=1.000e+00 ++ xrbi=0.000e+00 xrci=0.000e+00 ++ xre=0.000e+00 xrs=0.000e+00 ++ xvo=0.000e+00 ea=1.130e+00 ++ eaie=1.130e+00 eaic=1.110e+00 ++ eais=1.110e+00 eane=1.110e+00 ++ eanc=1.110e+00 eans=1.110e+00 ++ xis=4.864e+00 xii=2.952e+00 ++ xin=2.952e+00 ++ tnf=0.000e+00 tavc=6.580e-04 ++ rth='(0.000e+00/le+0.000e+00)' ++ cth='(0.000e+00*le+0.000e+00)' ++ vrt=0.000e+00 art=1.000e-01 ++ qbm=1.000e+00 nkf=5.000e-01 ++ xikf=1.000e+00 xrcx=0.000e+00 ++ xrbx=0.000e+00 xrbp=0.000e+00 ++ isrr=1.230e+00 xisr=0.000e+00 ++ dear=0.000e+00 eap=1.110e+00 ++ vbbe=2.266e+00 nbbe=6.584e+00 ++ tvbbe1=2.000e-04 tvbbe2=0.000e+00 ++ tnbbe=-1.900e-03 ++ vef='qnva_vef*1.500e+01' ++ tf='1.000e+00*4.300e-12' ++ rcx='qnva_rcx*(1/(le/3.800e+02+1/3.000e+02))' ++ rci='qnva_rci*(1/(le/7.200e+02+1/4.800e+02))' ++ rbx='qnva_rbx*(1/(le/2.000e+02+1/1.000e+04))' ++ rbi='1.000e+00*(1/(le/3.000e+01+1/1.000e+04))' ++ rbp='1/(le/3.000e+01+1/1.000e+04)' ++ re='qnva_re*(1.800e+01/le+(2.778e+00))' ++ rs='1/(le/1.500e+01+1/1.000e+04)' ++ is='(1+qnva_ais/sqrt(par1*le))*qnva_is*(le*1.181e-18+(3.202e-19))' ++ cbeo='(le*0.000e+00+(5.000e-15))' ++ cbco='(le*0.000e+00+(3.000e-15))' ++ cje='qnva_cje*(le*2.326e-15+(-4.733e-30))' ++ cjc='qnva_cjc*(le*1.196e-15+(2.381e-15))' ++ cjep='qnva_cjep*(le*1.196e-15+(2.381e-15))' ++ cjcp='qnva_cjcp*(le*1.824e-15+(1.814e-14))' ++ ibei='(1+qnva_aibei/sqrt(par1*le))*qnva_ibei*(le*4.032e-20+(3.890e-21))' ++ iben='exp((qnva_aiben/sqrt(par1*le))+(qnva_iben))*(le*4.125e-16+(-6.420e-20))' ++ ibci='(le*1.220e-20+(1.086e-23))' ++ ibcn='(le*1.636e-15+(1.557e-18))' ++ isp='(le*1.137e-18+(2.280e-18))' ++ ibeip='(le*6.558e-20+(2.802e-19))' ++ ibenp='(le*3.311e-20+(-5.172e-24))' ++ ibcip='(le*4.290e-17+(7.958e-16))' ++ ibcnp='(le*6.212e-16+(-1.632e-19))' ++ ikf='1.000e+00*(le*1.253e-03+(2.165e-07))' ++ ikr='(le*1.540e-04+(-1.077e-07))' ++ ikp='(le*4.007e-05+(4.615e-05))' ++ itf='(le*5.037e-03+(-2.423e-06))' ++ ccso='(le*0.000e+00+(1.000e-18))' ++ ibbe='(le*7.769e-09+(-1.684e-12))' ++ avc2='1/(1.590e-03/le+1/1.892e+01)' +.ends qnva diff --git a/paranoia_parallel/examples/vbic/self-heat.sp b/paranoia_parallel/examples/vbic/self-heat.sp new file mode 100644 index 000000000..b4036b196 --- /dev/null +++ b/paranoia_parallel/examples/vbic/self-heat.sp @@ -0,0 +1,52 @@ +VBIC Output Test Ic=f(Vc,Ib) vs self heating +.option absmos=1e-12 relmos=1e-6 relv=1e-6 absv=1e-9 post +vc c 0 0 +vb b 0 1 +ve e 0 0 +vs s 0 0 +vc1 c c1 0 +vb1 b b1 0 +ve1 e e1 0 +vs1 s s1 0 +.temp 27 +Q1 c1 b1 e1 s1 t mod1 area=1 +.model mod1 npn Level=4 ++ Tnom=27 RCX=10 RCI=60 VO=2 GAMM=2.e-11 ++ HRCF=2 RBX=10 RBI=40 RE=2 ++ RS=20 RBP=40 IS=1e-16 NF=1.00000e+00 ++ NR=1.00000e+00 FC=9.00000e-01 CBEO=0 ++ CJE=1.e-13 PE=0.75 ME=0.33 ++ AJE=-5.00000e-01 CBCO=0 CJC=2e-14 ++ QCO=1e-12 CJEP=1e-13 PC=7.50000e-01 ++ MC=3.30000e-01 AJC=-5.00000e-01 CJCP=4e-13 ++ PS=7.50000e-01 MS=3.30000e-01 AJS=-5.00000e-01 ++ IBEI=1e-18 WBE=1.0000 NEI=1.00000e+00 ++ IBEN=5e-15 NEN=2.00000e+00 IBCI=2e-17 ++ NCI=1.00000e+00 IBCN=5e-15 NCN=2.00000e+00 ++ AVC1=2 AVC2=15 ISP=1e-15 ++ WSP=1.000e+00 NFP=1.00000e+00 IBEIP=0 ++ IBENP=0 IBCIP=0 NCIP=1.00000e+00 ++ IBCNP=0 NCNP=2.00000e+00 VEF=10 ++ VER=4 IKF=0.002 IKR=0.0002 IKP=0.0002 ++ TF=1.e-11 QTF=0 XTF=20 ++ VTF=0 ITF=0.08 TR=1e-10 ++ KFN=0 AFN=1.0e+00 ++ BFN=1.0000e+00 XRE=0 XRB=0 ++ XRC=0 XRS=0 XVO=0 ++ EA=1.12000e+00 EAIE=1.12000e+00 ++ EANE=1.12000e+00 EANC=1.12000e+00 ++ EANS=1.12000e+00 XIS=3.00000e+00 ++ XII=3.00000e+00 XIN=3.00000e+00 ++ TNF=0 TAVC=0 ++ RTH=300 CTH=0 ++ TD=0 +*+ TD=2.e-11 +.control +dc vc 0.0 5.0001 0.05 vb 0.7 1.0001 0.05 +altermod @mod1[RTH]=0 +dc vc 0.0 5.0001 0.05 vb 0.7 1.0001 0.05 +plot dc1.vc1#branch dc2.vc1#branch +quit +.endc +.end + diff --git a/paranoia_parallel/examples/vbic/vbic99_dc.sp b/paranoia_parallel/examples/vbic/vbic99_dc.sp new file mode 100644 index 000000000..2295fcff5 --- /dev/null +++ b/paranoia_parallel/examples/vbic/vbic99_dc.sp @@ -0,0 +1,47 @@ +***** VBIC99 level9 DC test ***** +.OPTION gmin=1.0e-15 +vbe bx 0 0 +vcb cx bx 0 +vib bx b 0 +vic cx c 0 +ve ex 0 0 +vie ex e 0 +vs sx 0 0 +vis sx s 0 +q1 c b e s dt vbic99 area=1 m=1 +.model vbic99 npn level=9 ++tref = 27.0 rcx = 10.0 rci = 60.0 vo = 2.0 ++gamm = 2e-11 hrcf = 2.0 rbx = 10.0 rbi = 40.0 ++re = 2.0 rs = 20.0 rbp = 40.0 is = 1.0e-16 ++nf = 1.0 nr = 1.0 fc = 0.9 cbeo = 0.0 ++cje = 1.0e-13 pe = 0.75 me = 0.33 aje = -0.5 ++cbco = 0.0 cjc = 2e-14 qco = 1e-12 cjep = 1e-13 ++pc = 0.75 mc = 0.33 ajc = -0.5 cjcp = 4e-13 ++ps = 0.75 ms = 0.33 ajs = -0.5 ibei = 1.0e-18 ++wbe = 1.0 nei = 1.0 iben = 5.0e-15 nen = 2.0 ++ibci = 2.0e-17 nci = 1.0 ibcn = 5.0e-15 ncn = 2.0 ++avc1 = 2.0 avc2 = 15.0 isp = 1.0e-15 wsp = 1.0 ++nfp = 1.0 ibeip = 0.0 ibenp = 0.0 ibcip = 0.0 ++ncip = 1.0 ibcnp = 0.0 ncnp = 2.0 vef = 10.0 ++ver = 4.0 ikf = 2e-3 ikr = 2e-4 ikp = 2e-4 ++tf = 10e-12 qtf = 0.0 xtf = 20.0 vtf = 0.0 ++itf = 8e-2 tr = 100e-12 td = 1e-20 kfn = 0.0 ++afn = 1.0 bfn = 1.0 xre = 0 xrbi = 0 ++xrci = 0 xrs = 0 xvo = 0 ea = 1.12 ++eaie = 1.12 eaic = 1.12 eais = 1.12 eane = 1.12 ++eanc = 1.12 eans = 1.12 xis = 3.0 xii = 3.0 ++xin = 3.0 tnf = 0.0 tavc = 0.0 rth = 300.0 ++cth = 0.0 vrt = 0.0 art = 0.1 ccso = 0.0 ++qbm = 0.0 nkf = 0.5 xikf = 0 xrcx = 0 ++xrbx = 0 xrbp = 0 isrr = 1.0 xisr = 0.0 ++dear = 0.0 eap = 1.12 vbbe = 0.0 nbbe = 1.0 ++ibbe = 1.0e-6 tvbbe1 = 0.0 tvbbe2 = 0.0 tnbbe = 0.0 ++ebbe = 0.0 +.temp 27 +.control +dc vbe 0.1 1.1 0.02 +plot i(vib) i(vic) abs(i(vis)) ylog +plot v(dt) +quit +.endc +.end diff --git a/paranoia_parallel/examples/vbic/vbic99_tran.sp b/paranoia_parallel/examples/vbic/vbic99_tran.sp new file mode 100644 index 000000000..0a2d89708 --- /dev/null +++ b/paranoia_parallel/examples/vbic/vbic99_tran.sp @@ -0,0 +1,55 @@ +***** VBIC99 level 9 Transient test ***** +* +q1 3 2 0 0 t vbic99 +v 4 0 dc 5.0 +vin 1 0 dc 2.5 pulse (0 5 0 1n 1n 10n 25n) +r1 1 2 100 +r2 3 4 10k +* +.control +op +tran 50p 50n +plot v(1) v(2) v(3) v(4) +plot v(t) +quit +.endc +* +.model vbic99 npn ++ LEVEL = 9 TREF = 27.0 RCX = 10.26 ++ RCI = 0.001 VO = 0 GAMM = 0 ++ HRCF = 0 RBX = 122.23 RBI = 0.001 ++ RE = 17.61 RS = 1 RBP = 1 ++ IS = 4.70047e-25 NF = 1.09575 NR = 1.02 ++ FC = 0.9 CBEO = 0 CJE = 7e-15 ++ PE = 0.75 ME = 0.33 AJE = -0.5 ++ CBCO = 0 CJC = 1.1e-14 QCO = 0 ++ CJEP = 0 PC = 0.75 MC = 0.33 ++ AJC = -0.5 CJCP = 3e-15 PS = 0.75 ++ MS = 0.33 AJS = -0.5 IBEI = 1.484e-23 ++ WBE = 1 NEI = 1.302 IBEN = 6.096e-18 ++ NEN = 2.081 IBCI = 5.618e-24 NCI = 1.11 ++ IBCN = 3.297e-14 NCN = 2 AVC1 = 0 ++ AVC2 = 0 ISP = 0 WSP = 1 ++ NFP = 1 IBEIP = 0 IBENP = 0 ++ IBCIP = 0 NCIP = 1 IBCNP = 0 ++ NCNP = 2 VEF = 800 VER = 700 ++ IKF = 0 IKR = 0 IKP = 0 ++ TF = 2.3e-12 QTF = 0 XTF = 0 ++ VTF = 0 ITF = 0 TR = 0 ++ TD = 1e-15 KFN = 0 AFN = 1 ++ BFN = 1 XRE = 2 XRBI = 2 ++ XRCI = 2 XRS = 2 XVO = 0 ++ EA = 1.1095 EAIE = 1.489271 EAIC = 1.489271 ++ EAIS = 1.12 EANE = 1.489271 EANC = 1.489271 ++ EANS = 1.12 XIS = 3 XII = 3 ++ XIN = 3 TNF = 0 TAVC = 0 ++ RTH = 159.177 CTH = 0 VRT = 0 ++ ART = 0.1 CCSO = 0 QBM = 0 ++ NKF = 0.5 XIKF = 0 XRCX = 2 ++ XRBX = 2 XRBP = 0 ISRR = 1 ++ XISR = 0 DEAR = 0 EAP = 1.12 ++ VBBE = 0 NBBE = 1 IBBE = 1e-06 ++ TVBBE1 = 0 TVBBE2 = 0 TNBBE = 0 +* +.end + diff --git a/paranoia_parallel/examples/vbic/vbic_ac_par.sp b/paranoia_parallel/examples/vbic/vbic_ac_par.sp new file mode 100644 index 000000000..42fea6433 --- /dev/null +++ b/paranoia_parallel/examples/vbic/vbic_ac_par.sp @@ -0,0 +1,21 @@ +Ask for small signal values of vbic model + +.include Infineon_VBIC.lib + +v1 1 0 dc 5.0 +*rc 1 c 2k +vb b 0 dc 0.6 +q1 1 b 0 M_BFP780 + +.control +save @q1[gm] @q1[go] @q1[gpi] +save @q1[cbe] @q1[cbc] +save @q1[qbe] @q1[qbc] +dc v1 0.0 5 0.01 +plot @q1[gm] @q1[go] @q1[gpi] +plot @q1[cbe] @q1[cbc] +plot @q1[qbe] @q1[qbc] +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/100W.sp b/paranoia_parallel/examples/vdmos/100W.sp new file mode 100644 index 000000000..5600fd284 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/100W.sp @@ -0,0 +1,116 @@ +100W VDMOS power amplifier +*100W into 8Ω at less than .1% THD +*72° phase margin @ 950kHz +*Adjust R7 for 15mA quiescent current through Q1/Q2 +*R24 & R25 are optional output offset trimming +* +VTamb tamb 0 25 +MQ1 +V N010 N012 tn tcn IRFP240 thermal +X1 tcn tamb case-ambient +MQ2 -V N020 N017 tp tcp IRFP9240 thermal +X2 tcp tamb case-ambient +R1 OUT N017 .33 +R2 N012 OUT .33 +C1 OUT N016 100n +R3 N016 0 10 +R4 N010 N009 470 +R5 N020 N019 470 +V1 +V 0 50 +V2 0 -V 50 +Q3 N009 N006 N005 0 MJE350 +Q4 N006 N006 N004 0 MJE350 +R6 +V N005 100 +R7 N009 N019 820 +Q5 N019 N023 N024 0 MJE340 +R8 +V N004 100 +R9 N024 -V 100 +Q6 N022 N021 N024 0 MJE340 +C2 N023 N019 18p +C3 N022 N021 18p +R10 N006 N022 10K +Q7 N023 N015 N008 0 MJE350 +Q8 N021 N011 N008 0 MJE350 +R13 N023 -V 3.9K +R14 N021 -V 3.9K +Q9 N008 N003 N001 0 MJE350 +R15 +V N001 470 +R16 N002 N001 1K +Q10 N003 N002 +V 0 MJE350 +R17 N003 N007 10K +R18 N007 0 10K +C4 +V N007 47u +R19 OUT1 N011 27K +R20 N011 N018 1K +C5 N018 0 100u +C6 N015 0 330p +R21 N015 N014 2.2K +R22 N014 0 47K +C7 N014 N013 2.2u +Vin N013 0 ac 0 dc 0 SINE(0 {V} 1K) +RLOAD OUT 0 8 +R24 +V N011 3.7Meg +R25 N011 -V 6.1Meg +V3 OUT OUT1 dc 0 ac 1 +C8 OUT1 N011 3p +* +.param V=1.44 ; 100W RMS +.save @r1[i] @r2[i] v(out1) v(out) @rload[i] v(tn) v(tp) v(tcn) v(tcp) inoise_spectrum +.control +op +print v(out) @r1[i] @r2[i] +ac dec 100 10 1Meg +plot db(V(out)/V(out1)) +set units=degrees +plot ph(V(out)/V(out1)) +tran 1u 2m +fourier 1K V(out) +plot v(out)*@rload[i] +settype temperature v(tn) v(tp) v(tcn) v(tcp) +plot v(tn) v(tp) v(tcn) v(tcp) +linearize v(out) +fft v(out) +plot db(v(out)) xlimit 0 20k +alter v3 ac = 0 +alter vin ac = 1 +noise V(out) Vin dec 10 10 100K +setplot noise2 +plot inoise_spectrum +quit +.endc +* +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m XTI=3 ++ Cjo=1.5n Vj=0.8 m=0.5 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 ++ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.8 +.model IRFP9240 VDMOS pchan ++ Vto=-4 Kp=8.8 Lambda=.003 Theta=0.08 ksubthres=.35 ++ Rd=180m Rs=50m Rg=3 Rds=1e7 ++ Cgdmax=1.25n Cgdmin=50p a=0.23 Cgs=1.15n ++ Is=150p N=1.3 Rb=16m XTI=2 ++ Cjo=1.3n Vj=0.8 m=0.5 ++ tcvth=0.004 MU=-1.27 texp0=1.5 ++ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.6 +* +.model MJE340 NPN(Is=1.03431e-13 BF=172.974 NF=.939811 VAF=27.3487 IKF=0.0260146 ISE=4.48447e-11 Ne=1.61605 Br=16.6725 ++ Nr=0.796984 VAR=6.11596 IKR=0.10004 Isc=9.99914e-14 Nc=1.99995 RB=1.47761 IRB=0.2 RBM=1.47761 Re=0.0001 RC=1.42228 ++ XTB=2.70726 XTI=1 Eg=1.206 CJE=1e-11 VJE=0.75 Mje=.33 TF=1e-09 XTF=1 VTF=10 ITF=0.01 CJC=1e-11 VJC=.75 MJC=0.33 XCJC=.9 ++ Fc=0.5 CJS=0 VJS=0.75 MJS=0.5 TR=1e-07 PTF=0 KF=1e-15 AF=1) +.model MJE350 PNP(Is=6.01619e-15 BF=157.387 NF=.910131 VAF=23.273 IKF=0.0564808 Ise=4.48479e-12 Ne=1.58557 BR=0.1 ++ NR=1.03823 VAR=4.14543 IKR=.0999978 ISC=1.00199e-13 Nc=1.98851 RB=.1 IRB=0.202965 RBM=0.1 Re=.0710678 Rc=.355339 ++ XTB=1.03638 XTI=3.8424 Eg=1.206 Cje=1e-11 Vje=0.75 Mje=0.33 TF=1e-09 XTF=1 VTF=10 ITF=0.01 Cjc=1e-11 Vjc=0.75 ++ Mjc=0.33 XCJC=0.9 Fc=0.5 Cjs=0 Vjs=0.75 Mjs=0.5 TR=1e-07 PTF=0 KF=1e-15 AF=1) +* +.subckt case-ambient case amb +rcs case 1 0.1 +csa 1 0 30m +rsa 1 amb 1.3 +.ends + +.end + diff --git a/paranoia_parallel/examples/vdmos/100W_wingspread.sp b/paranoia_parallel/examples/vdmos/100W_wingspread.sp new file mode 100644 index 000000000..f07cbaf45 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/100W_wingspread.sp @@ -0,0 +1,93 @@ +VDMOS wingspread plot example + +M1 +V N004 N005 IRFP240 +M2 -V N009 N007 IRFP9240 +R1 OUT N007 .33 +R2 N005 OUT .33 +R4 N004 N003 470 +R5 N009 N008 470 +V1 +V 0 50 +V2 0 -V 50 +Q3 -V N011 N008 0 MJE350 +R7 N003 N008 870 +Q5 +V N002 N003 0 MJE340 +Vin N006 0 0 +RLoad OUT 0 r = 8 +V3 N001 N006 4.8 +V4 N006 N010 4.8 +I1 +V N001 12m +I2 N010 -V 12m +R3 N002 N001 10 +R8 N011 N010 10 +* +.save all @r1[i] @r2[i] v(out) @rload[i] +.control + +let gain=vector(2005) +reshape gain [5][401] +let irload=vector(2005) +reshape irload [5][401] + +let offset = 0.05 + +foreach Rl 4 6 8 + + setplot new + set curplottitle = "wingspread $Rl Ohm" + set plotname=$curplot + + alter Rload r = $Rl + + let index = 0 + + foreach vbias 4.7 4.8 4.9 5.0 5.1 + alter v3 dc = $vbias + offset + alter v4 dc = $vbias - offset + op + print v(out) @r1[i] @r2[i] + dc vin -20 20 0.1 + set dcplotname = $curplot + setplot $plotname + let gain[index] = deriv({$dcplotname}.out) + let irload[index] = {$dcplotname}.@rload[i] + let index = index + 1 + destroy $dcplotname + end + + settype current irload + plot gain[0] gain[1] gain[2] gain[3] gain[4] vs irload[2] + +end + +quit +.endc +* +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m XTI=3 ++ Cjo=1.5n Vj=0.8 m=0.5 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 +*+ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.8 +.model IRFP9240 VDMOS pchan ++ Vto=-4 Kp=8.8 Lambda=.003 Theta=0.08 ksubthres=.35 ++ Rd=180m Rs=50m Rg=3 Rds=1e7 ++ Cgdmax=1.25n Cgdmin=50p a=0.23 Cgs=1.15n ++ Is=150p N=1.3 Rb=16m XTI=2 ++ Cjo=1.3n Vj=0.8 m=0.5 ++ tcvth=0.004 MU=-1.27 texp0=1.5 +*+ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.6 +* +.model MJE340 NPN(Is=1.03431e-13 BF=172.974 NF=.939811 VAF=27.3487 IKF=0.0260146 ISE=4.48447e-11 Ne=1.61605 Br=16.6725 ++ Nr=0.796984 VAR=6.11596 IKR=0.10004 Isc=9.99914e-14 Nc=1.99995 RB=1.47761 IRB=0.2 RBM=1.47761 Re=0.0001 RC=1.42228 ++ XTB=2.70726 XTI=1 Eg=1.206 CJE=1e-11 VJE=0.75 Mje=.33 TF=1e-09 XTF=1 VTF=10 ITF=0.01 CJC=1e-11 VJC=.75 MJC=0.33 XCJC=.9 ++ Fc=0.5 CJS=0 VJS=0.75 MJS=0.5 TR=1e-07 PTF=0 KF=0 AF=1) +.model MJE350 PNP(Is=6.01619e-15 BF=157.387 NF=.910131 VAF=23.273 IKF=0.0564808 Ise=4.48479e-12 Ne=1.58557 BR=0.1 ++ NR=1.03823 VAR=4.14543 IKR=.0999978 ISC=1.00199e-13 Nc=1.98851 RB=.1 IRB=0.202965 RBM=0.1 Re=.0710678 Rc=.355339 ++ XTB=1.03638 XTI=3.8424 Eg=1.206 Cje=1e-11 Vje=0.75 Mje=0.33 TF=1e-09 XTF=1 VTF=10 ITF=0.01 Cjc=1e-11 Vjc=0.75 ++ Mjc=0.33 XCJC=0.9 Fc=0.5 Cjs=0 Vjs=0.75 Mjs=0.5 TR=1e-07 PTF=0 KF=0 AF=1) +* +.end diff --git a/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.cir b/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.cir new file mode 100644 index 000000000..dc5d66697 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.cir @@ -0,0 +1,67 @@ +VDMOS Test of quasi saturation IXTH80N20L IXTH48P20P +* Original VDMOS model parameters taken from David Zan, +* http://www.diyaudio.com/forums/software-tools/266655-power-mosfet-models-ltspice-post5300643.html +* The Quasi-aturation is added for demonstration only, it is not aligned with the data sheets +* and is for sure exagerated, at least for the IXTH80N20L + +mn1 d1 g1 s1 s1 IXTH80N20L + +vd1 d1 0 1 +vg1 g1 0 1 +vs1 s1 0 0 + +mp2 d2 g2 s2 s2 IXTH48P20P + +vd2 d2 0 1 +vg2 g2 0 1 +vs2 s2 0 0 + + + +.control +dc vd1 -1 100 0.05 vg1 3 10 1 +altermod mn1 rq=0 +altermod mp1 Lambda=2m +dc vd1 -1 100 0.05 vg1 3 10 1 +plot dc1.vs1#branch vs1#branch + +dc vd2 1 -100 -0.05 vg2 -3 -10 -1 +altermod mp2 rq=0 +altermod mp2 Lambda=5m +dc vd2 1 -100 -0.05 vg2 -3 -10 -1 +plot dc3.vs2#branch vs2#branch + +.endc + +* David Zan, (c) 2017/03/02 Preliminary +.MODEL IXTH80N20L VDMOS Nchan Vds=200 ++ VTO=4 KP=15 ++ Lambda=1m ; will be reset to original 2m ++ Mtriode=0.4 ++ subslope=120m ++ subshift=160m ++ Rs=5m Rd=10m Rds=200e6 ++ Cgdmax=9000p Cgdmin=300p A=0.25 ++ Cgs=5500p Cjo=11000p ++ Is=10e-6 Rb=8m ++ BV=200 IBV=250e-6 ++ NBV=4 ++ TT=250e-9 ++ vq=100 ++ rq=0.5 ; will be reset to original 0 + +* David Zan, (c) 2017/03/02 Preliminary +.MODEL IXTH48P20P VDMOS Pchan Vds=200 ++ VTO=-4 KP=10 ++ Lambda=7m ; will be reset to original 5m ++ Mtriode=0.3 ++ Ksubthres=120m ++ Rs=10m Rd=20m Rds=200e6 ++ Cgdmax=6000p Cgdmin=100p A=0.25 ++ Cgs=5000p Cjo=9000p ++ Is=2e-6 Rb=20m ++ BV=200 IBV=250e-6 ++ NBV=4 ++ TT=260e-9 ++ vq=100 ++ rq=0.5 diff --git a/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.sp b/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.sp new file mode 100644 index 000000000..c945447a2 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTH80N20L-IXTH48P20P-quasisat.sp @@ -0,0 +1,68 @@ +VDMOS Test of quasi saturation IXTH80N20L IXTH48P20P +* Original VDMOS model parameters taken from David Zan, +* http://www.diyaudio.com/forums/software-tools/266655-power-mosfet-models-ltspice-post5300643.html +* The Quasi-saturation is added for demonstration only, it is not aligned with the data sheets +* and is for sure exaggerated, at least for the IXTH80N20L + +mn1 d1 g1 s1 IXTH80N20L + +vd1 d1 0 1 +vg1 g1 0 1 +vs1 s1 0 0 + +mp2 d2 g2 s2 IXTH48P20P + +vd2 d2 0 1 +vg2 g2 0 1 +vs2 s2 0 0 + +.control +dc vd1 -1 100 0.05 vg1 3 10 1 +altermod mn1 rq=0 +altermod mn1 Lambda=2m +dc vd1 -1 100 0.05 vg1 3 10 1 +plot dc1.vs1#branch vs1#branch + +dc vd2 1 -100 -0.05 vg2 -3 -10 -1 +altermod mp2 rq=0 +altermod mp2 Lambda=5m +dc vd2 1 -100 -0.05 vg2 -3 -10 -1 +plot dc3.vs2#branch vs2#branch + +quit +.endc + +* David Zan, (c) 2017/03/02 Preliminary +.MODEL IXTH80N20L VDMOS Nchan Vds=200 ++ VTO=4 KP=15 ++ Lambda=3m ; will be reset by altermod to original 2m ++ Mtriode=0.4 ++ Ksubthres=120m ++ subshift=160m ++ Rs=5m Rd=10m Rds=200e6 ++ Cgdmax=9000p Cgdmin=300p A=0.25 ++ Cgs=5500p Cjo=11000p ++ Is=10e-6 Rb=8m ++ BV=200 IBV=250e-6 ++ NBV=4 ++ TT=250e-9 ++ vq=100 ++ rq=0.5 ; will be reset by altermod to original 0 + +* David Zan, (c) 2017/03/02 Preliminary +.MODEL IXTH48P20P VDMOS Pchan Vds=200 ++ VTO=-4 KP=10 ++ Lambda=7m ; will be reset by altermod to original 5m ++ Mtriode=0.3 ++ Ksubthres=120m ++ Rs=10m Rd=20m Rds=200e6 ++ Cgdmax=6000p Cgdmin=100p A=0.25 ++ Cgs=5000p Cjo=9000p ++ Is=2e-6 Rb=20m ++ BV=200 IBV=250e-6 ++ NBV=4 ++ TT=260e-9 ++ vq=100 ++ rq=0.5 ; will be reset by altermod to original 0 + +.end diff --git a/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.cir b/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.cir new file mode 100644 index 000000000..d2f748f39 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.cir @@ -0,0 +1,19 @@ +Test of VDMOS gate-source and gate-drain capacitance + +m1 d g s s IXTP6N100D2 + +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p a=1 TT=1371n IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF subthres=2.5m) + +vd d 0 dc 5 +vg g 0 pwl (0 -3 1 3) +vs s 0 0 +vb b 0 0 + +.control +save all @m1[cgd] @m1[cgs] +tran 1m 1 +plot vs#branch +plot @m1[cgd] @m1[cgs] +.endc + +.end \ No newline at end of file diff --git a/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.sp b/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.sp new file mode 100644 index 000000000..0dea67094 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTP6N100D2-cap.sp @@ -0,0 +1,19 @@ +Test of VDMOS gate-source and gate-drain capacitance + +m1 d g s IXTP6N100D2 + +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p a=1 TT=1371n IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=0.1) + +vd d 0 dc 5 +vg g 0 pwl (0 -3 1 3) +vs s 0 0 + +.control +save all @m1[cgd] @m1[cgs] +tran 1m 1 +plot vs#branch +plot @m1[cgd] @m1[cgs] +quit +.endc + +.end \ No newline at end of file diff --git a/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.cir b/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.cir new file mode 100644 index 000000000..f39aafa1e --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.cir @@ -0,0 +1,30 @@ +VDMOS output + +m1 d g s s IXTP6N100D2 +m2 d g s2 s2 IXTP6N100D2_2 + +*.model dmod d is=10n rs=0.05 + +* LTSPICE model parameters +*.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 *Vj=0.1 Cjo=3200pF subthres=2.5m) + +* equivalent ngspice model parameters +.MODEL IXTP6N100D2_2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=39m) + +* equivalent ngspice model parameters, trying to make output similar to data sheet Fig. 2 +.MODEL IXTP6N100D2 VDMOS(KP=6 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.007 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=39m rq=4 vq=200 mtriode=0.1) + +vd d 0 -0.6 +vg g 0 -2.3 +vs s 0 0 +vs2 s2 0 0 + +.control +dc vg -3.1 -2.1 0.01 vd 0.2 1 0.2 +plot vs#branch +plot vs#branch ylog +dc vd 0 60 0.1 vg -3 5 1 +plot vs#branch vs2#branch xlimit 0 60 ylimit 0 14 +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.sp b/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.sp new file mode 100644 index 000000000..5862b8abf --- /dev/null +++ b/paranoia_parallel/examples/vdmos/IXTP6N100D2-n-weak-inv.sp @@ -0,0 +1,29 @@ +VDMOS output + +m1 d g s IXTP6N100D2 +m2 d g s2 IXTP6N100D2_2 + +* LTSPICE model parameters +*.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 *Vj=0.1 Cjo=3200pF ksubthres=0.1) + +* equivalent ngspice model parameters +.MODEL IXTP6N100D2_2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=39m) + +* equivalent ngspice model parameters, trying to make output similar to data sheet Fig. 2 +.MODEL IXTP6N100D2 VDMOS(KP=6 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.007 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=39m rq=4 vq=200 mtriode=0.1) + +vd d 0 -0.6 +vg g 0 -2.3 +vs s 0 0 +vs2 s2 0 0 + +.control +dc vg -3.1 -2.1 0.01 vd 0.2 1 0.2 +plot vs#branch +plot vs#branch ylog +dc vd 0 60 0.1 vg -3 5 1 +plot vs#branch vs2#branch xlimit 0 60 ylimit 0 14 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/SUM75N06-09L-vdmos.txt b/paranoia_parallel/examples/vdmos/SUM75N06-09L-vdmos.txt new file mode 100644 index 000000000..4f7bb77b2 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/SUM75N06-09L-vdmos.txt @@ -0,0 +1 @@ +.model SUM75N06-09L VDMOS(Rg=1.5 Rd=0m Rs=25m Vto=2.0 Kp=75 Cgdmax=1.2n Cgdmin=150p Cgs=2n Cjo=1.2n Is=1p Rb=0) diff --git a/paranoia_parallel/examples/vdmos/VDMOS-DIO-AC.cir b/paranoia_parallel/examples/vdmos/VDMOS-DIO-AC.cir new file mode 100644 index 000000000..1c618d1af --- /dev/null +++ b/paranoia_parallel/examples/vdmos/VDMOS-DIO-AC.cir @@ -0,0 +1,25 @@ +Capacitance and current comparison between models d and bulk diode in vdmos + +D1 ad kd dio +.model dio d TT=1371n IS=2.13E-08 N=1.564 RS=0.0038 m=0.548 Vj=0.1 Cjo=3200pF + +Va ad 0 DC 0.5 AC 1 ; DC -20 +Vk kd 0 0 + +m1 d g s s IXTP6N100D2 +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p a=1 TT=1371n IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF subthres=2.5m subslope=43m subshift=-25m) + +Vd d 0 DC -0.5 AC 1 ; DC 20 +Vg g 0 -5 ; transistor is off +Vs s 0 0 + +.ac dec 10 1 100K + +.control +save @d1[id] @m1[id] all +run +plot mag(i(Vs)) mag (i(Vk)) +plot ph(i(Vs)) ph(i(Vk)) +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/VDMOS-DIO.cir b/paranoia_parallel/examples/vdmos/VDMOS-DIO.cir new file mode 100644 index 000000000..8ebf496e2 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/VDMOS-DIO.cir @@ -0,0 +1,27 @@ +Capacitance and current comparison between models d and bulk diode in vdmos + +D1 ad kd dio +.model dio d TT=1371n IS=2.13E-08 N=1.564 RS=0.0038 m=0.548 Vj=0.1 Cjo=3200pF + +Va ad 0 dc 0 pwl(0 -2 2.5 0.5) +Vk kd 0 0 + +m1 d g s s IXTP6N100D2 +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p a=1 TT=1371n IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF subthres=2.5m) + +Vd d 0 dc 0 pwl(0 2 2.5 -0.5) +Vg g 0 -5 ; transistor is off +Vs s 0 0 + +.tran 10m 2.5 + +.control +save @d1[cd] @m1[cds] all +run +plot abs(i(Vk)) abs(i(Vs)) ylog +plot @d1[cd] @m1[cds] +*plot abs(i(Vk)) - abs(i(Vs)) +*plot @d1[cd] - @m1[cds] +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/VDMOS-DIO.sp b/paranoia_parallel/examples/vdmos/VDMOS-DIO.sp new file mode 100644 index 000000000..125ef8852 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/VDMOS-DIO.sp @@ -0,0 +1,30 @@ +Capacitance and current comparison between models d and bulk diode in vdmos + +D1 ad kd dio +.model dio d TT=1371n IS=2.13E-08 N=1.564 RS=0.0038 m=0.548 Vj=0.1 Cjo=3200pF + +Va ad 0 ac 1 dc 0.5 pwl(0 -2 2.5 0.5) +Vk kd 0 0 + +m1 d g s IXTP6N100D2 +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p a=1 TT=1371n IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF ksubthres=0.1) + +Vd d 0 ac 1 dc -0.5 pwl(0 2 2.5 -0.5) +Vg g 0 -5 ; transistor is off +Vs s 0 0 + +.control +save all @d1[id] @m1[id] @d1[cd] @m1[cds] all +tran 10m 2.5 +plot abs(i(Vk)) abs(i(Vs)) ylog +plot @d1[cd] @m1[cds] +*plot abs(i(Vk)) - abs(i(Vs)) +*plot @d1[cd] - @m1[cds] + +ac dec 10 1 100K +plot mag(i(Vs)) mag (i(Vk)) +plot ph(i(Vs)) ph(i(Vk)) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/crss_coss_ciss.sp b/paranoia_parallel/examples/vdmos/crss_coss_ciss.sp new file mode 100644 index 000000000..39ea75c9e --- /dev/null +++ b/paranoia_parallel/examples/vdmos/crss_coss_ciss.sp @@ -0,0 +1,57 @@ +crss coss ciss +* +VP1 P1 0 PULSE(0 1.15m 100n 10n 10n 1 2) +VP2 P4 0 PULSE(0 2.8m 100n 10n 10n 1 2) +* +M1 d1 g1 0 IRFP240 +V1 g1 0 0.0 +V2 1 d1 0.0 +G1 0 1 P1 0 1.04 +* +M2 d2 0 d2 IRFP240 +V3 2 d2 0.0 +G2 0 2 P4 0 1.1 +* +M3 d3 g3 0 IRFP9240 +V4 g3 0 0.0 +V5 3 d3 0.0 +G3 3 0 P1 0 0.85 +e1 d1p 0 d3 0 -1 +* +M4 d4 0 d4 IRFP9240 +V6 4 d4 0.0 +G4 4 0 P4 0 1.0 +e2 d2p 0 d4 0 -1 +* +.control +tran 1n 25u +*plot v(d1) v(d2) v(d3) v(d4) + +plot 'i(v1)/deriv(v(d1))' 'i(v2)/deriv(v(d1))' vs v(d1) xlog xlimit 1 100 ylimit 0 3n title "IRFP240 crss & coss" +plot 'i(v3)/(deriv(v(d2)) - 1)' vs v(d2) xlog xlimit 1 100 ylimit 0 3n title "IRFP240 ciss" + +plot 'i(v4)/deriv(v(d3))' 'i(v5)/deriv(v(d3))' vs v(d1p) xlog xlimit 1 100 ylimit 0 3n title "IRFP9240 crss & coss" +plot 'i(v6)/(deriv(v(d4)) - 1)' vs v(d2p) xlog xlimit 1 100 ylimit 0 3n title "IRFP9240 ciss" + +quit +.endc +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m XTI=3 ++ Cjo=1.5n Vj=0.8 m=0.5 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 +*+ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.8 +.model IRFP9240 VDMOS pchan ++ Vto=-4 Kp=8.8 Lambda=.003 Theta=0.08 ksubthres=.35 ++ Rd=180m Rs=50m Rg=3 Rds=1e7 ++ Cgdmax=1.25n Cgdmin=50p a=0.23 Cgs=1.15n ++ Is=150p N=1.3 Rb=16m XTI=2 ++ Cjo=1.3n Vj=0.8 m=0.5 ++ tcvth=0.004 MU=-1.27 texp0=1.5 +*+ Rthjc=0.4 Cthj=5e-3 ++ mtriode=0.6 +.end + diff --git a/paranoia_parallel/examples/vdmos/dcdc.sp b/paranoia_parallel/examples/vdmos/dcdc.sp new file mode 100644 index 000000000..da8b2ba36 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/dcdc.sp @@ -0,0 +1,44 @@ +Simple regulated DCDC step-up converter + +V1 clock 0 PULSE(0 6 0 19u 1u 10n 20.01u) +V2 ref 0 2.5 +R1 OUT outdiv 100K +R2 0 outdiv 27k +R3 outdiv x 10k +C2 err x 50n +B1 err 0 V = max(0,min(5,V(ref,x)*10k)) +B2 gate 0 V = max(0,min(5,V(err,clock)*1k)) +V3 +V 0 5.0 +L1 +V lx 220u +RL lx out1 125m +M1 out1 gate 0 IRF510 +D1 out1 OUT MBRS340 +C1 OUT cx 33u +RC cx 0 50m +R4 out2 OUT R = (time<12ms ? {Rload} : time<20ms ? {Rload/2} : {2*Rload}) +V4 out2 0 0.0 + +.param Rload=100 + +.model IRF510 VDMOS nchan ++ Vto=3.6 Kp=1.3 Lambda=.001 Theta=0.07 ksubthres=.1 ++ Rg=3 Rd=200m Rs=54m Rds=1e7 ++ Cgdmax=.2n Cgdmin=.05n a=0.3 Cgs=.12n ++ Is=17p N=1.1 Rb=80m XTI=3 ++ Cjo=.25n Vj=0.8 m=0.5 ++ tcvth=0.007 MU=-1.27 texp0=1.5 + +.model MBRS340 D(Is=22.6u Rs=.042 N=1.094 Cjo=480p M=.61 Eg=.69 Xti=2) + +.control + listing e + option method=gear + tran 10n 10u 0 5n +* write dcdc.raw + plot v(err) v(clock) v(gate) v(out) + plot -i(V3) i(V4) ylimit 0 1 + rusage all +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/inv_vdmos.cir b/paranoia_parallel/examples/vdmos/inv_vdmos.cir new file mode 100644 index 000000000..bcbbc214f --- /dev/null +++ b/paranoia_parallel/examples/vdmos/inv_vdmos.cir @@ -0,0 +1,29 @@ +*****************==== Inverter ====******************* +*********** VDMOS **************************** +vdd 1 0 5 + +.subckt inv out in vdd vss +mp1 out in vdd vdd p1 +mn1 out in vss vss n1 +.ends + +xinv 3 2 1 0 inv + +Vin 2 0 Pulse (0 5 10n 10n 10n 140n 300n) + +.tran 1n 1u + +.control + +run + +* current and output in a single plot +plot v(2) v(3) + +.endc + +*.model N1 vdmos ; nmos level=1 +*.model P1 vdmos ; pmos level=1 +.model N1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k rb=1e9 cjo=0.1p +.model P1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k rb=1e9 cjo=0.1p pchan +.end diff --git a/paranoia_parallel/examples/vdmos/inv_vdmos.sp b/paranoia_parallel/examples/vdmos/inv_vdmos.sp new file mode 100644 index 000000000..3dd7299ab --- /dev/null +++ b/paranoia_parallel/examples/vdmos/inv_vdmos.sp @@ -0,0 +1,27 @@ +*****************==== Inverter ====******************* +*********** VDMOS **************************** +vdd 1 0 5 +vss 4 0 0 + +.subckt inv out in vdd vss +mp1 out in vdd p1 +mn1 out in vss n1 +.ends + +xinv 3 2 1 4 inv + +Vin 2 0 DC 0 Pulse (0 5 10n 10n 10n 140n 300n) + +.control +dc Vin 0 5 0.05 +* current and output in a single plot +plot v(2) v(3) vss#branch +tran 1n 1u +* current and output in a single plot +plot v(2) v(3) +quit +.endc + +.model N1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k rb=1e9 cjo=0.1p +.model P1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k rb=1e9 cjo=0.1p pchan +.end diff --git a/paranoia_parallel/examples/vdmos/inv_vdmos_dc.cir b/paranoia_parallel/examples/vdmos/inv_vdmos_dc.cir new file mode 100644 index 000000000..5e0d93ee2 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/inv_vdmos_dc.cir @@ -0,0 +1,30 @@ +*****************==== Inverter ====******************* +*********** VDMOS inverter dc **************************** +vdd 1 0 5 +vss 4 0 0 + +.subckt inv out in vdd vss +mp1 out in vdd vdd p1 +mn1 out in vss vss n1 +.ends + +xinv 3 2 1 4 inv + +Vin 2 0 0 + +.dc Vin 0 5 0.05 + +.control + +run + +* current and output in a single plot +plot v(2) v(3) vss#branch + +.endc + +*.model N1 vdmosn ; nmos level=1 +*.model P1 vdmosp ; pmos level=1 +.model N1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k +.model P1 vdmos cgdmin=0.2p cgdmax=1p a=2 cgs=0.5p rg=5k pchan +.end diff --git a/paranoia_parallel/examples/vdmos/lt-ng-mos-models-2012-2018.lib b/paranoia_parallel/examples/vdmos/lt-ng-mos-models-2012-2018.lib new file mode 100644 index 000000000..dc39087e4 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/lt-ng-mos-models-2012-2018.lib @@ -0,0 +1,15 @@ +* Copyright (c) 2000-2012 Linear Technology Corporation. All rights reserved. +* Modified by Holger Vogt 2018 +* original model parameter sets downloaded on May 25th 2018 from +* http://ltwiki.org/index.php?title=Standard.mos +* Models parameter sets are modified by adding the parameter ksubthres. +* Weak inversion characteristics are aligned by comparing LTSPICE and ngspice simulations, ksubthres is selected to offer best fit. +* Only the modified models are shown below: +* +.model SPA11N60C3 VDMOS(Rg=.86 Vto=4.08 subthres=10m ksubthres=27m Mtriode=.8 Rd=275m Rs=60m Rb=22m Kp=40 A=2.2 Cgdmax=2.7n Cgdmin=10p Cgs=1.5n Cjo=.7n Is=20p mfg=Infineon Vds=650 Ron=340m Qg=45n) +.MODEL IXTP6N100D2 VDMOS(KP=2.9 RS=0.1 RD=1.3 RG=1 VTO=-2.7 LAMBDA=0.03 CGDMAX=3000p CGDMIN=2p CGS=2915p TT=1371n a=1 IS=2.13E-08 N=1.564 RB=0.0038 m=0.548 Vj=0.1 Cjo=3200pF subthres=2.5m ksubthres=39m) +.MODEL IXTH20N50D VDMOS KP=1.9 RS=1m RD=.222 VTO=-1.5 RDS=20E6 Lambda=4m subthres=8m ksubthres=85m CJO=4.9n M=1.5 a=1 CGDMAX=900p CGDMIN=80p CGS=6200p VJ=2.6 RG=10m IS=1.37u N=2 +.model FDB3682 VDMOS(Rg=3 Rd=26.8m Vto=4 subthres=.1 ksubthres=96m mtriode=1.8 Kp=18 Cgdmax=400p Cgdmin=20p A=.5 Cgs=1.25n Cjo=1n M=.6 Is=1.8p Rb=14.2m mfg=Fairchild Vds=100 Ron=32m Qg=18.5n) +.model Si7489DP VDMOS(Rg=3 Rd=31.2m Rs=1m Vto=-2.4 subthres=.03 ksubthres=39m mtriode=2.2 Kp=35 lambda=0.1 Cgdmax=6n Cgdmin=10p A=1 Cgs=4n cjo=200p M=.3 VJ=.9 Is=3.6p Rb=5.5m mfg=Siliconix Vds=-100 Ron=3.3m Qg=106n pchan) +.model HUFA76645 VDMOS(Rg=3 Rd=9.4m Rs=.8m Vto=2 subthres=.01 ksubthres=27.3m mtriode=1 Kp=128 Cgdmax=8n Cgdmin=10p A=.6 Cgs=3n cjo=3.5n M=.55 VJ=.9 Is=3.6p Rb=2.24m mfg=Fairchild Vds=100 Ron=15m Qg=34n) +.model Si7102DN VDMOS(mtriode=2.3 Rg=1.4 vto=.843 subthres=180m ksubthres=31m Rd=1.1m Rs=1.75m Rb=5m Kp=350 Lambda=10m Cgdmin=800p Cgdmax=4.6n A=3 Cgs=3.4n Cjo=1.3n M=0.5 VJ=0.7 Is=2n N=1.05 TT=0 mfg=Vishay Vds=12 Ron=3.8m Qg=41n) diff --git a/paranoia_parallel/examples/vdmos/mtriode_nch.sp b/paranoia_parallel/examples/vdmos/mtriode_nch.sp new file mode 100644 index 000000000..cd32c517d --- /dev/null +++ b/paranoia_parallel/examples/vdmos/mtriode_nch.sp @@ -0,0 +1,14 @@ +VDMOS Mtriode Test +M1 D G 0 IRFP240 +VG G 0 1V +VD D 0 0.1V +.control +foreach myMTRIODE 0.5 1.0 1.5 + altermod @IRFP240[MTRIODE]=$myMTRIODE + dc vd 0 30 0.1 vg 4 10 1 +end +plot abs(dc1.vd#branch) abs(dc2.vd#branch) abs(dc3.vd#branch) +quit +.endc +.model IRFP240 VDMOS(Rg=3 Vto=4 Rd=72m Rs=18m Rb=36m Kp=4.9 Lambda=.03 Cgdmax=1.34n Cgdmin=.1n Cgs=1.25n Cjo=1.25n Is=67p ksubthres=.1 Vds=200 Ron=180m Qg=70n) +.end diff --git a/paranoia_parallel/examples/vdmos/ro_11_vdmos.cir b/paranoia_parallel/examples/vdmos/ro_11_vdmos.cir new file mode 100644 index 000000000..37fcb9107 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/ro_11_vdmos.cir @@ -0,0 +1,39 @@ +*****************==== 11-Stage CMOS RO ====******************* +*********** MOS1 or VDMOS ************************************ +vdd 1 0 5.0 + + +.subckt inv out in vdd vss +mp1 out in vdd vdd p1 l=2u w=20u +mn1 out in vss vss n1 l=2u w=10u +c1 out vss 0.2p +.ends + +xinv1 3 2 1 0 inv +xinv2 4 3 1 0 inv +xinv3 5 4 1 0 inv +xinv4 6 5 1 0 inv +xinv5 7 6 1 0 inv +xinv6 8 7 1 0 inv +xinv7 9 8 1 0 inv +xinv8 10 9 1 0 inv +xinv9 2 10 1 0 inv + + +.model N1 vdmos vto=1 cgdmin=0.05p cgdmax=0.2p a=1.2 cgs=0.15p rg=10 kp=2e-5 rb=1e7 cjo=1n subslope=0.2 +.model P1 vdmos vto=-1 cgdmin=0.05p cgdmax=0.2p a=1.2 cgs=0.15p rg=10 kp=2e-5 rb=1e7 cjo=1n pchan subslope=0.2 + +.tran 0.1n 1u + +.ic v(6)=2.5 + +.control + +run +rusage +* current and output in a single plot +plot v(6) 50000*(-I(vdd)) ylimit -1 6 + +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/ro_11_vdmos.sp b/paranoia_parallel/examples/vdmos/ro_11_vdmos.sp new file mode 100644 index 000000000..bebd36378 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/ro_11_vdmos.sp @@ -0,0 +1,37 @@ +*****************==== 11-Stage CMOS RO ====******************* +*********** MOS1 or VDMOS ************************************ +vdd 1 0 5.0 + +.subckt inv out in vdd vss +mp1 out in vdd p1 m=2 +mn1 out in vss n1 +c1 out vss 0.2p +.ends + +xinv1 3 2 1 0 inv +xinv2 4 3 1 0 inv +xinv3 5 4 1 0 inv +xinv4 6 5 1 0 inv +xinv5 7 6 1 0 inv +xinv6 8 7 1 0 inv +xinv7 9 8 1 0 inv +xinv8 10 9 1 0 inv +xinv9 2 10 1 0 inv + +.model N1 vdmos vto=1 cgdmin=0.05p cgdmax=0.2p a=1.2 cgs=0.15p rg=10 kp=1e-5 rb=1e7 cjo=1n ksubthres=0.2 +.model P1 vdmos vto=-1 cgdmin=0.05p cgdmax=0.2p a=1.2 cgs=0.15p rg=10 kp=1e-5 rb=1e7 cjo=1n pchan ksubthres=0.2 + +.tran 0.1n 100n + +.ic v(6)=2.5 + +.control + +run +rusage +* current and output in a single plot +plot v(6) 1000*(-I(vdd)) ylimit -1 6 +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/self-heating.sp b/paranoia_parallel/examples/vdmos/self-heating.sp new file mode 100644 index 000000000..4c2e7822b --- /dev/null +++ b/paranoia_parallel/examples/vdmos/self-heating.sp @@ -0,0 +1,25 @@ +VDMOS self heating test +M1 D G 0 tj tc IRFP240 thermal +rthk tc 0 0.05 +VG G 0 5V Pulse 0 10 0 1m 1m 100m 200m +*RD D D1 4 +VD D 0 2V +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m XTI=3 ++ Cjo=1.5n Vj=0.8 m=0.5 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 ++ Rthjc=0.02 Cthj=1e-3 Rthca=100 ++ mtriode=0.8 +.control +dc vd 0.2 50 .2 vg 5 13 4 +plot -i(vd) +settype temperature v(tj) v(tc) +plot v(tj) v(tc) +*tran 1m 0.01 +*plot v(d) v(g) +quit +.endc +.end diff --git a/paranoia_parallel/examples/vdmos/soa_chk.sp b/paranoia_parallel/examples/vdmos/soa_chk.sp new file mode 100644 index 000000000..d3ebc028a --- /dev/null +++ b/paranoia_parallel/examples/vdmos/soa_chk.sp @@ -0,0 +1,41 @@ +VDMOS SOA check + +.model IRFP240 VDMOS nchan ++ Vto=4 Kp=5.9 Lambda=.001 Theta=0.015 ksubthres=.27 ++ Rd=61m Rs=18m Rg=3 Rds=1e7 ++ Cgdmax=2.45n Cgdmin=10p a=0.3 Cgs=1.2n ++ Is=60p N=1.1 Rb=14m Cjo=1.5n XTI=3 ++ tcvth=0.0065 MU=-1.27 texp0=1.5 ++ mtriode=0.8 ++ Vgs_max=20 Vgd_max=20 Vds_max=200 + +vd1 d1 0 dc 0.1 +vg1 g1 0 dc 0.0 +vs1 s1 0 dc 0.0 +m1 d1 g1 s1 IRFP240 + +.model IRFP9240 VDMOS pchan ++ Vto=-4 Kp=8.8 Lambda=.003 Theta=0.08 ksubthres=.35 ++ Rd=180m Rs=50m Rg=3 Rds=1e7 ++ Cgdmax=1.25n Cgdmin=50p a=0.23 Cgs=1.15n ++ Is=150p N=1.3 Rb=16m Cjo=1.3n XTI=2 ++ tcvth=0.004 MU=-1.27 texp0=1.5 ++ mtriode=0.6 ++ Vgs_max=20 Vgd_max=20 Vds_max=200 + +vd2 0 d2 dc 0.1 +vg2 0 g2 dc 0.0 +vs2 0 s2 dc 0.0 +m2 d2 g2 s2 IRFP9240 + +.options warn=1 maxwarns=6 + +.control +dc vd1 -1 210 1 vg1 5 25 5 +plot -i(vd1) +dc vd2 -1 210 1 vg2 5 25 5 +plot i(vd2) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/sum75n06-9L_PS.lib b/paranoia_parallel/examples/vdmos/sum75n06-9L_PS.lib new file mode 100644 index 000000000..8fcb7b69a --- /dev/null +++ b/paranoia_parallel/examples/vdmos/sum75n06-9L_PS.lib @@ -0,0 +1,32 @@ +*August 6, 2007 +*Doc. ID: 76715, S-71542, Rev. B +*File Name: SUM75N06-09L_PS.txt and SUM75N06-09L_PS.lib +*This document is intended as a SPICE modeling guideline and does not +*constitute a commercial product data sheet. Designers should refer to the +*appropriate data sheet of the same number for guaranteed specification +*limits. +.SUBCKT SUM75N06-09L 4 1 2 +M1 3 1 2 2 NMOS W=4276188u L=0.25u +M2 2 1 2 4 PMOS W=4276188u L=0.40u +R1 4 3 RTEMP 42E-4 +CGS 1 2 2000E-12 +DBD 2 4 DBD +******************************************************************* +.MODEL NMOS NMOS ( LEVEL = 3 TOX = 7E-8 ++ RS = 25E-4 RD = 0 NSUB = 1.73E17 ++ KP = 1E-5 UO = 650 ++ VMAX = 0 XJ = 5E-7 KAPPA = 1E-4 ++ ETA = 1E-4 TPG = 1 ++ IS = 0 LD = 0 ++ CGSO = 0 CGDO = 0 CGBO = 0 ++ NFS = 0.8E12 DELTA = 0.1) +******************************************************************* +.MODEL PMOS PMOS ( LEVEL = 3 TOX = 7E-8 ++NSUB = 3.8E16 TPG = -1) +******************************************************************* +.MODEL DBD D (CJO=1200E-12 VJ=0.38 M=0.35 ++RS=0.1 FC=0.5 IS=1E-12 TT=5E-8 N=1 BV=60.2) +******************************************************************* +.MODEL RTEMP RES (TC1=8.2E-3 TC2=5.5E-6) +******************************************************************* +.ENDS diff --git a/paranoia_parallel/examples/vdmos/theta_nch.sp b/paranoia_parallel/examples/vdmos/theta_nch.sp new file mode 100644 index 000000000..cd35d2839 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/theta_nch.sp @@ -0,0 +1,14 @@ +VDMOS Mobility Reduction +M1 D G 0 IRFP240 +VG G 0 9V +VD D 0 1V +.control +foreach myTHETA 0.1 0.2 0.3 0.4 0.5 + altermod @IRFP240[THETA]=$myTHETA + dc VG 2 9 0.1 +end +plot abs(dc1.vd#branch) abs(dc2.vd#branch) abs(dc3.vd#branch) abs(dc4.vd#branch) abs(dc5.vd#branch) +quit +.endc +.model IRFP240 VDMOS(Rg=3 Vto=4 Rd=72m Rs=18m Rb=36m Kp=4.9 Lambda=.03 Cgdmax=1.34n Cgdmin=.1n Cgs=1.25n Cjo=1.25n Is=67p ksubthres=.1 Vds=200 Ron=180m Qg=70n) +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos-out.cir b/paranoia_parallel/examples/vdmos/vdmos-out.cir new file mode 100644 index 000000000..bea95b078 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos-out.cir @@ -0,0 +1,23 @@ +VDMOS output + +m1 d g s s n1 +*.model n1 vdmos rb=0.05 is=10n kp=2 bv=12 rd=0.1 +.model N1 vdmos vto=1 cgdmin=0.05p cgdmax=0.2p a=1.2 cgs=0.15p rg=10 kp=2e-4 rb=1e4 is=1e-9 bv=12 cjo=1p subslope=0.1 +*d1 s d dmod +*.model dmod d is=10n rs=0.05 + +vd d 0 1 +vg g 0 1 +vs s 0 0 +vb b 0 0 + +*.dc vd -2 15 0.05 vg 0 5 1 + +.control +dc vd -2 15 0.05 vg 0 5 1 +plot vs#branch +dc vg 0 5 0.05 vd 0.5 2.5 0.5 +plot vs#branch ylog +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos-out.sp b/paranoia_parallel/examples/vdmos/vdmos-out.sp new file mode 100644 index 000000000..5e429745b --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos-out.sp @@ -0,0 +1,19 @@ +VDMOS output + +m1 d g s IRFZ48Z + +.model IRFZ48Z VDMOS (Rg = 1.77 Vto=4 Rd=1.85m Rs=0.0m Rb=3.75m Kp=25 Cgdmax=2.1n Cgdmin=0.05n Cgs=1.8n Cjo=0.55n Is=2.5p tt=20n ksubthres=0.1 mfg=International_Rectifier Vds=55 Ron=8.6m Qg=43n) + +vd d 0 1 +vg g 0 1 +vs s 0 0 + +.control +dc vd -1 15 0.05 vg 3 7 1 +plot vs#branch +dc vg 2 7 0.05 vd 0.5 2.5 0.5 +plot vs#branch ylog +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos-out_ir.cir b/paranoia_parallel/examples/vdmos/vdmos-out_ir.cir new file mode 100644 index 000000000..f3395b49b --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos-out_ir.cir @@ -0,0 +1,22 @@ +VDMOS output + +m1 d g s s IRFZ48Z + +.model IRFZ48Z VDMOS ( Rg = 1.77 Vto=4 Rd=1.85m Rs=0.0m Rb=3.75m Kp=25 Cgdmax=2.1n Cgdmin=0.05n Cgs=1.8n Cjo=0.55n Is=2.5p tt=20n mfg=International_Rectifier Vds=55 Ron=8.6m Qg=43n) + +*d1 s d dmod +*.model dmod d is=10n rs=0.05 + +vd d 0 1 +vg g 0 1 +vs s 0 0 +vb b 0 0 + +.dc vd -1 15 0.05 vg 3 7 1 + +.control +run +plot vs#branch +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.cir b/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.cir new file mode 100644 index 000000000..ec6ac0a8b --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.cir @@ -0,0 +1,27 @@ +VDMOS output + +*m1 d g s b IRFZ48Z +m1 d g s s SQ7002K + +m2 d g s2 s2 SQ7002K_2 + +.model IRFZ48Z VDMOS ( Rg = 1.77 Vto=4 Rd=1.85m Rs=0.0m Rb=3.75m Kp=25 Cgdmax=2.1n Cgdmin=0.05n Cgs=1.8n Cjo=0.55n Is=2.5p tt=20n mfg=International_Rectifier Vds=55 Ron=8.6m Qg=43n) + +.MODEL SQ7002K VDMOS(KP=0.46 RS=0.8751 RG=150 VTO=1.8 rds=50Meg LAMBDA=60m CGDMAX=20p CGDMIN=2p CGS=17p TT=500n a=0.47 IS=3.25n N=1.744 RB=0.118608 m=0.348 Vj=0.23 Cjo=14pF mtriode=1 Vds=60 Ron=1 Qg=0.9n mfg=VISHAY) + +.MODEL SQ7002K_2 VDMOS(KP=0.46 RS=0.8751 RG=150 VTO=1.8 rds=50Meg LAMBDA=60m CGDMAX=20p CGDMIN=2p CGS=17p TT=500n a=0.47 IS=3.25n N=1.744 RB=0.118608 m=0.348 Vj=0.23 Cjo=14pF mtriode=2 Vds=60 Ron=1 Qg=0.9n mfg=VISHAY) + +vd d 0 1 +vg g 0 1 +vs s 0 0 +vs2 s2 0 0 + +.dc vd -1 7 0.05 vg 3 7 1 + +.control +run +plot vs#branch vs2#branch +.endc + + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.sp b/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.sp new file mode 100644 index 000000000..1a300daae --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos-out_ir_mtr.sp @@ -0,0 +1,27 @@ +VDMOS output + +*m1 d g s IRFZ48Z +m1 d g s SQ7002K + +m2 d g s2 SQ7002K_2 + +*.model IRFZ48Z VDMOS (Rg = 1.77 Vto=4 Rd=1.85m Rs=0.0m Rb=3.75m Kp=25 Cgdmax=2.1n Cgdmin=0.05n Cgs=1.8n Cjo=0.55n Is=2.5p tt=20n mfg=International_Rectifier Vds=55 Ron=8.6m Qg=43n) + +.MODEL SQ7002K VDMOS(KP=0.46 RS=0.8751 RG=150 VTO=1.8 rds=50Meg LAMBDA=60m CGDMAX=20p CGDMIN=2p CGS=17p TT=500n a=0.47 IS=3.25n N=1.744 RB=0.118608 m=0.348 Vj=0.23 Cjo=14pF mtriode=1 Vds=60 Ron=1 Qg=0.9n mfg=VISHAY) + +.MODEL SQ7002K_2 VDMOS(KP=0.46 RS=0.8751 RG=150 VTO=1.8 rds=50Meg LAMBDA=60m CGDMAX=20p CGDMIN=2p CGS=17p TT=500n a=0.47 IS=3.25n N=1.744 RB=0.118608 m=0.348 Vj=0.23 Cjo=14pF mtriode=2 Vds=60 Ron=1 Qg=0.9n mfg=VISHAY) + +vd d 0 1 +vg g 0 1 +vs s 0 0 +vs2 s2 0 0 + +.dc vd -1 7 0.05 vg 3 7 1 + +.control +run +plot vs#branch vs2#branch +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmos_model_test.cir b/paranoia_parallel/examples/vdmos/vdmos_model_test.cir new file mode 100644 index 000000000..afe874d34 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmos_model_test.cir @@ -0,0 +1,10 @@ +vdmos model test + +mn1 d s g b IRFZ48Z + +.model IRFZ48Z VDMOS ( Rg = 1.77 Vto=4 Rd=1.85m Rs=0.0m Rb=3.75m Kp=25 Cgdmax=2.1n Cgdmin=0.05n Cgs=1.8n Cjo=0.55n Is=2.5p tt=20n mfg=International_Rectifier Vds=55 Ron=8.6m Qg=43n) + +mn2 d2 s2 g2 b2 SUM110P04_05 +.MODEL SUM110P04_05 VDMOS(KP=80 RS=0.002 RD=0.001 RG=3.0 VTO=-3.3 LAMBDA=0.05 CGDMAX=7n CGDMIN=800p CGS=9n TT=100n a=0.55 IS=1.5E-08 N=1.35 RB=0.001 m=0.774 Vj=1.59 Cjo=3nF PCHAN) + +.end \ No newline at end of file diff --git a/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.cir b/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.cir new file mode 100644 index 000000000..576913937 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.cir @@ -0,0 +1,32 @@ +VDMOS p channel output + +m1 d g s s IRF7233 +.model IRF7233 VDMOS(pchan Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n) + +*d1 d s dmod +*.model dmod d is=10n rs=0.1 + +m2 d g s2 s2 IRF7233_2 +.model IRF7233_2 VDMOS(pchan mtriode=2 Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n) + +m3 d g s3 s3 IRF7233_3 +.model IRF7233_3 VDMOS(pchan mtriode=2 Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n subthres=0.5) + +vd d 0 -5 +vg g 0 -5 +vs s 0 0 +vs2 s2 0 0 +vs3 s3 0 0 + + +.dc vd -12 1 0.05 vg 0 -5 -1 + +.control +dc vd -12 1 0.05 vg 0 -5 -1 +plot vs#branch vs2#branch vs3#branch +dc vg 0 -4 -0.05 vd -1 -12 -2 +plot vs#branch vs2#branch vs3#branch +plot log(-vs#branch) log(-vs2#branch) log(-vs3#branch) +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.sp b/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.sp new file mode 100644 index 000000000..01ef639d9 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmosp-out-mtr.sp @@ -0,0 +1,27 @@ +VDMOS p channel output + +m1 d g s IRF7233 +.model IRF7233 VDMOS(pchan Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n) + +m2 d g s2 IRF7233_2 +.model IRF7233_2 VDMOS(pchan mtriode=2 Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n) + +m3 d g s3 IRF7233_3 +.model IRF7233_3 VDMOS(pchan mtriode=2 Rg=3 Rd=8m Rs=6m Vto=-1 Kp=70 Cgdmax=2n Cgdmin=.25n Cgs=3.3n Cjo=.98n Is=98p Rb=10m mfg=International_Rectifier Vds=-12 Ron=20m Qg=49n ksubthres=0.1) + +vd d 0 -5 +vg g 0 -5 +vs s 0 0 +vs2 s2 0 0 +vs3 s3 0 0 + +.control +dc vd -12 1 0.05 vg 0 -5 -1 +plot vs#branch vs2#branch vs3#branch +dc vg 0 -4 -0.05 vd -1 -12 -2 +plot vs#branch vs2#branch vs3#branch +plot log(-vs#branch) log(-vs2#branch) log(-vs3#branch) +quit +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmosp-out.cir b/paranoia_parallel/examples/vdmos/vdmosp-out.cir new file mode 100644 index 000000000..ef0c85608 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmosp-out.cir @@ -0,0 +1,20 @@ +VDMOS p channel output + +m1 d g s s p1 +.model p1 vdmos pchan vto=-1.2 is=10n kp=2 bv=-12 rb=1k +*d1 d s dmod +*.model dmod d is=10n rs=0.1 + +vd d 0 -5 +vg g 0 -5 +vs s 0 0 +vb b 0 0 + +.dc vd -15 1 0.1 vg 0 -5 -1 + +.control +run +plot vs#branch +.endc + +.end diff --git a/paranoia_parallel/examples/vdmos/vdmosp-out.sp b/paranoia_parallel/examples/vdmos/vdmosp-out.sp new file mode 100644 index 000000000..d7fc6adf5 --- /dev/null +++ b/paranoia_parallel/examples/vdmos/vdmosp-out.sp @@ -0,0 +1,18 @@ +VDMOS p channel output + +m1 d g s p1 +.model p1 vdmos pchan vto=-1.2 is=10n kp=2 bv=-12 rb=1k + +vd d 0 -5 +vg g 0 -5 +vs s 0 0 + +.dc vd -15 1 0.1 vg 0 -5 -1 + +.control +run +plot vs#branch +quit +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/analog_models1_transient.sp b/paranoia_parallel/examples/xspice/analog_models1_transient.sp new file mode 100644 index 000000000..a74bd6caa --- /dev/null +++ b/paranoia_parallel/examples/xspice/analog_models1_transient.sp @@ -0,0 +1,65 @@ +Code Model Test - Transient: gain, summer, mult, divide, pwl +* +* +*** analysis type *** +.control +tran .1s 10s +plot v(1) v(10) v(20) v(30) v(40) v(50) +.endc +* +*** input sources *** +* +v1 1 0 DC PWL(0 0 10 10) +* +v2 2 0 DC 2 +* +*** gain block *** +a1 1 10 gain1 +.model gain1 gain (in_offset=0.0 gain=2.0 out_offset=0.0) +* +* +*** summer block *** +a2 [1 2] 20 summer1 +.model summer1 summer (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** mult block *** +a3 [1 1] 30 mult1 +.model mult1 mult (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=0.1 out_offset=0.0) +* +* +*** divider block *** +a4 2 1 40 divide1 +.model divide1 divide (num_offset=0.0 num_gain=1.0 den_offset=0.0 den_gain=1.0 ++ den_lower_limit=0.1 den_domain=1.0e-16 ++ fraction=false out_gain=1.0 out_offset=0.0) +* +* +*** pwl block *** +a5 1 50 pwl1 +.model pwl1 pwl (x_array=[-1.0 0.0 1.0 2.0 3.0 4.0 5.0] ++ y_array=[ 0.0 0.0 1.0 4.0 4.5 5.0 5.0] ++ input_domain=0.01 fraction=TRUE) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +r3 3 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/bug-378-test-sequence.cir b/paranoia_parallel/examples/xspice/bug-378-test-sequence.cir new file mode 100644 index 000000000..843a39ece --- /dev/null +++ b/paranoia_parallel/examples/xspice/bug-378-test-sequence.cir @@ -0,0 +1,47 @@ +.title PORT TYPE MODIFIERS TEST + +.param sel = 0 + +V_vss vss 0 DC 0 + +V_signal pls1 0 DC 0 PULSE(0 5 1e-9 1e-9 1e-9 1e-3 2e-3) +V_signal2 pls2 0 DC 0 PULSE(0 5 1e-9 1e-9 1e-9 2e-3 4e-3) + +* Modes selected by command 'alterparam' +.if(sel == 1) +********************* MODE 1 *********************** +A_ADC %v[ pls1 %vd(pls2 0)] [dpls1 dpls2] ADC +**************************************************** +.elseif(sel == 2) +********************* MODE 2 *********************** +A_ADC [ %vd(pls1 0) %v(pls2)] [dpls1 dpls2] ADC +**************************************************** +.else +********************* MODE 3 *********************** +A_ADC %v[ pls1 pls2] [dpls1 dpls2] ADC +**************************************************** +.endif + +A_AND [dpls1 dpls2] dand AND +A_DAC [dand] [aand] DAC + + .model AND d_and + .model ADC adc_bridge + .model DAC dac_bridge + + .control + tran 1e-3 4e-3 + eprint dand + alterparam sel = 1 + reset + tran 1e-3 4e-3 + eprint dand + alterparam sel = 2 + reset + tran 1e-3 4e-3 + eprint dand + + quit 0 + .endc +.end + diff --git a/paranoia_parallel/examples/xspice/d_lut/mult4bit.spi b/paranoia_parallel/examples/xspice/d_lut/mult4bit.spi new file mode 100644 index 000000000..acad1cec2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/d_lut/mult4bit.spi @@ -0,0 +1,127 @@ +* mult4bit.spi --- +* +* Example use of d_lut and d_genlut xspice models +* +* 4 bit parallel multiplier using the d_genlut xspice cell to represent +* full and half adders, and using the d_lut xspice cell to represent the +* AND gates. +* +* The LUTs are represented by a string indicating the output for each +* combination of inputs. So a 2-input AND gate is represented by +* "0001". The d_genlut model allows multiple outputs, and the string +* result is the same as a d_lut with the strings for each output +* concatenated. So the sum output of a full adder is "01101001" +* (A ^ B ^ C), and the carry output is "00010111" (AB + BC + AC), so the +* string representation of the d_genlut output is "0110100100010111". +* +* subcircuit inputs are aa[3:0] and ab[3:0], output is ap[7:0] +* testbench inputs are a[3:0] and b[3:0], output is p[7:0] +*--------------------------------------------------------------------------- + +.subckt mult4bit ap7 ap6 ap5 ap4 ap3 ap2 ap1 ap0 aa3 aa2 aa1 aa0 ab3 ab2 ab1 ab0 + +* A-to-D and D-to-A bridges +.MODEL todig_3v adc_bridge(in_high=0.7 in_low=0.3 rise_delay=100n fall_delay=100n) +.MODEL toana_3v dac_bridge(out_high=1.0 out_low=0.0) + +AA2D00 [ab3 ab2 ab1 ab0 aa3 aa2 aa1 aa0] [db3 db2 db1 db0 da3 da2 da1 da0] todig_3v +AD2A00 [dp7 dp6 dp5 dp4 dp3 dp2 dp1 dp0] [ap7 ap6 ap5 ap4 ap3 ap2 ap1 ap0] toana_3v + +* Instantiate the 4-bit multiplier +* LUT model representing a 2-input AND gate +.model d_lut_and2 d_lut (rise_delay=50n fall_delay=50n input_load=1.0p ++ table_values "0001") + +* genLUT model representing a half adder +.model d_genlut_ha d_genlut (rise_delay=[50n 50n] fall_delay=[50n 50n] ++ input_load=[1.0p 1.0p] input_delay=[2n 2n] table_values "01100001") + +* genLUT model representing a full adder +.model d_genlut_fa d_genlut (rise_delay=[50n 50n] fall_delay=[50n 50n] ++ input_load=[1.0p 1.0p 1.0p] input_delay=[2n 2n 2n] table_values "0110100100010111") + +* Instantiate the 4-bit multiplier +AAND00 [da0 db0] dp0 d_lut_and2 +AAND10 [da1 db0] h0a d_lut_and2 +AAND11 [da0 db1] h0b d_lut_and2 +AAND20 [da2 db0] f0a d_lut_and2 +AAND21 [da1 db1] f0b d_lut_and2 +AAND22 [da0 db2] h1b d_lut_and2 +AAND30 [da3 db0] f1a d_lut_and2 +AAND31 [da2 db1] f1b d_lut_and2 +AAND32 [da1 db2] f2b d_lut_and2 +AAND33 [da0 db3] h2b d_lut_and2 +AAND40 [da3 db1] h3b d_lut_and2 +AAND41 [da2 db2] f3b d_lut_and2 +AAND42 [da1 db3] f4b d_lut_and2 +AAND50 [da3 db2] f5b d_lut_and2 +AAND51 [da2 db3] f6b d_lut_and2 +AAND60 [da3 db3] f7b d_lut_and2 + +AHA0 [h0a h0b] [dp1 f0c] d_genlut_ha +AHA1 [h1a h1b] [dp2 f2c] d_genlut_ha +AHA2 [h2a h2b] [dp3 f4c] d_genlut_ha +AHA3 [h3a h3b] [f3a f5a] d_genlut_ha + +AFA0 [f0a f0b f0c] [h1a f1c] d_genlut_fa +AFA1 [f1a f1b f1c] [f2a h3a] d_genlut_fa +AFA2 [f2a f2b f2c] [h2a f3c] d_genlut_fa +AFA3 [f3a f3b f3c] [f4a f5c] d_genlut_fa +AFA4 [f4a f4b f4c] [dp4 f6c] d_genlut_fa +AFA5 [f5a f5b f5c] [f6a f7a] d_genlut_fa +AFA6 [f6a f6b f6c] [dp5 f7c] d_genlut_fa +AFA7 [f7a f7b f7c] [dp6 dp7] d_genlut_fa + +.ends + +* Testbench to exercise the multiplier + +* Eight pulsed voltage sources to run through the bits of a and b +VV7 b3 0 DC=0 PULSE(0 1 6400u 100n 100n 6400u 12800u) +VV6 b2 0 DC=0 PULSE(0 1 3200u 100n 100n 3200u 6400u) +VV5 b1 0 DC=0 PULSE(0 1 1600u 100n 100n 1600u 3200u) +VV4 b0 0 DC=0 PULSE(0 1 800u 100n 100n 800u 1600u) +VV3 a3 0 DC=0 PULSE(0 1 400u 100n 100n 400u 800u) +VV2 a2 0 DC=0 PULSE(0 1 200u 100n 100n 200u 400u) +VV1 a1 0 DC=0 PULSE(0 1 100u 100n 100n 100u 200u) +VV0 a0 0 DC=0 PULSE(0 1 50u 100n 100n 50u 100u) + +* Give a capacitive load to the outputs +C7 p7 0 10f +C6 p6 0 10f +C5 p5 0 10f +C4 p4 0 10f +C3 p3 0 10f +C2 p2 0 10f +C1 p1 0 10f +C0 p0 0 10f + +Xmult4 p7 p6 p5 p4 p3 p2 p1 p0 a3 a2 a1 a0 b3 b2 b1 b0 mult4bit + +* Run the transient simulation + +.control + +tran 50us 12825us 25us +linearize + +let aa = (((v(a3))*2 + v(a2))*2 + v(a1))*2 + v(a0) +let bb = (((v(b3))*2 + v(b2))*2 + v(b1))*2 + v(b0) + +let pp = (((((((v(p7))*2 + v(p6))*2 + v(p5))*2 + v(p4))*2 + v(p3))*2 + v(p2))*2 + v(p1))*2 + v(p0) + +let pp_gold = aa * bb + +plot aa bb pp + +let err = vecmax(abs(pp - pp_gold)) + +if $&err > 1e-6 + echo "ERROR: multiplier output does not match golden response" +else + echo "INFO: multiplier output does match golden response" +end + +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/d_source/d_source-stimulus.txt b/paranoia_parallel/examples/xspice/d_source/d_source-stimulus.txt new file mode 100644 index 000000000..7f0d5d6ac --- /dev/null +++ b/paranoia_parallel/examples/xspice/d_source/d_source-stimulus.txt @@ -0,0 +1,13 @@ +* time, a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab +0n 0s 0s Uu Uu Uu Uu Uu Uu Uu Uu Uu +1n 1s 0s Uu Uu 0u Uu Uu Uu Uu Uu Uu +2n Us 0s Uu Uu 0u 0u Uu Uu Uu Uu Uu +3n Us 0r Uu Uu 0u 0u 0u Uu Uu Uu Uu +4n Us 1r Uu Uu 0u 0u 0u 0u Uu Uu Uu +5n Us Ur Uu Uu 0u 0u 0u 0u 0u Uu Uu +6n Us Ur 0z Uu 0u 0u 0u 0u 0u 0u Uu +7n Us Ur 1z Uu 0u 0u 0u 0u 0u 0u 0u +8n Us Ur Uz Uu 0u 0u 0u 0u 0u 0u 0u +9n Us Ur Uz 0u 0u 0u 0u 0u 0u 0u 0u +10n Us Ur Uz 1u 0u 0u 0u 0u 0u 0u 0u +11n Us Ur Uz Uu 0u 0u 0u 0u 0u 0u 0u diff --git a/paranoia_parallel/examples/xspice/d_source/d_source-stimulus2.txt b/paranoia_parallel/examples/xspice/d_source/d_source-stimulus2.txt new file mode 100644 index 000000000..9758f5774 --- /dev/null +++ b/paranoia_parallel/examples/xspice/d_source/d_source-stimulus2.txt @@ -0,0 +1,14 @@ +* time, a1 a2 a3 a4 a5 a6 a7 a8 a9 aa +0n 0s 0s Uu Uu Uu Uu Uu Uu Uu 1u +1n 1s 0s Uu Uu 0u Uu Uu Uu Uu 1u +2n Us 0s Uu Uu 0u 0u Uu Uu Uu 0u +3n Us 0r Uu Uu 0u 0u 0u Uu Uu 0u +4n Us 1r Uu Uu 0u 0u 0u 0u Uu 1u +5n Us Ur Uu Uu 0u 0u 0u 0u 0u 1u +6n Us Ur 0z Uu 0u 0u 0u 0u 0u 0u +7n Us Ur 1z Uu 0u 0u 0u 0u 0u 0u +8n Us Ur Uz Uu 0u 0u 0u 0u 0u 1u +9n Us Ur Uz 0u 0u 0u 0u 0u 0u 1u +10n Us Ur Uz 1u 0u 0u 0u 0u 0u 0u +11n Us Ur Uz Uu 0u 0u 0u 0u 0u 0u +12n Us Ur Uz 0u 0u 0u 0u 0u 0u 1u \ No newline at end of file diff --git a/paranoia_parallel/examples/xspice/d_source/d_source.cir b/paranoia_parallel/examples/xspice/d_source/d_source.cir new file mode 100644 index 000000000..9f82a3696 --- /dev/null +++ b/paranoia_parallel/examples/xspice/d_source/d_source.cir @@ -0,0 +1,22 @@ +Code Model Test: d_source + +a_source3 [c1 c2 c3] d_source3 +.model d_source3 d_source (input_file="./test/d_source-stimulus3.txt") + +a_source [a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab] d_source1 +.model d_source1 d_source (input_file="d_source-stimulus.txt") + +a_source2 [b1 b2 b3 b4 b5 b6 b7 b8 b9 ba] d_source2 +.model d_source2 d_source (input_file="d_source-stimulus2.txt") + +.control +set noaskquit +set noacct +tran 100ps 30ns +eprint c1 c2 c3 > $inputdir/d_s.out +eprint a1 a2 a3 a4 a5 a6 a7 a8 a9 aa ab >> $inputdir/d_s.out +eprint b1 b2 b3 b4 b5 b6 b7 b8 b9 ba >> $inputdir/d_s.out +quit +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/d_source/test/d_source-stimulus3.txt b/paranoia_parallel/examples/xspice/d_source/test/d_source-stimulus3.txt new file mode 100644 index 000000000..efdeb0a36 --- /dev/null +++ b/paranoia_parallel/examples/xspice/d_source/test/d_source-stimulus3.txt @@ -0,0 +1,5 @@ +* time, c1 c2 c3 +0.5n 0s 1s Us +2.5n 0r 1r Ur +4.5n 0z 1z Uz +6.0n 0u 1u Uu diff --git a/paranoia_parallel/examples/xspice/delta-sigma/README b/paranoia_parallel/examples/xspice/delta-sigma/README new file mode 100644 index 000000000..3ce6ce63e --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/README @@ -0,0 +1,25 @@ +A simple delta sigma converter using XSPICE +according to +Schreier, Temes: Understanding Delta-Sigma Data Converters, 2005 +Fig. 2.13, p. 31; Fig. 2.27, p.58 + + +delta-sigma-1.cir +converter complete, tested against sine input + +mod1-ct.cir +first order modulator +consists of analog continuous time integrator and +digitally latched comparator + +count-latch-dac.cir +contains subcircuits of +10 bit digital latch +10 bit counter, non-revolving, saturating +simple 10 bit DAC with analog B source + +mod1-ct-test.cir +test of modulator with sine input, shows noise shaping 20dB/decade + +counter-test.cir +simple test with reset diff --git a/paranoia_parallel/examples/xspice/delta-sigma/count-latch-dac.cir b/paranoia_parallel/examples/xspice/delta-sigma/count-latch-dac.cir new file mode 100644 index 000000000..7a8c7d90a --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/count-latch-dac.cir @@ -0,0 +1,81 @@ +* counter, latch DAC + +* 10 bit synchronous digital counter +* inhibit at overflow, no revolving +.subckt count10 din dinb dclk drs dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 + +* j k clk set reset out nout +ajk1 din dinb diclk ds1 drs dout1 dnout1 jkflop +ajk2 dout1 dout1 diclk ds2 drs dout2 dnout2 jkflop +ajk3 djk3 djk3 diclk ds3 drs dout3 dnout3 jkflop +ajk4 djk4 djk4 diclk ds4 drs dout4 dnout4 jkflop +ajk5 djk5 djk5 diclk ds1 drs dout5 dnout5 jkflop +ajk6 djk6 djk6 diclk ds2 drs dout6 dnout6 jkflop +ajk7 djk7 djk7 diclk ds3 drs dout7 dnout8 jkflop +ajk8 djk8 djk8 diclk ds4 drs dout8 dnout8 jkflop +ajk9 djk9 djk9 diclk ds3 drs dout9 dnout9 jkflop +ajk10 djk10 djk10 diclk ds4 drs dout10 dnout10 jkflop + +aand1 [dout1 dout2] djk3 and1 +aand2 [dout1 dout2 dout3] djk4 and1 +aand3 [dout1 dout2 dout3 dout4] djk5 and1 +aand4 [dout1 dout2 dout3 dout4 dout5] djk6 and1 +aand5 [dout1 dout2 dout3 dout4 dout5 dout6] djk7 and1 +aand6 [dout1 dout2 dout3 dout4 dout5 dout6 dout7] djk8 and1 +aand7 [dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8] djk9 and1 +aand8 [dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9] djk10 and1 + +* inhibit revolving of counter, just let it saturate +* (footnote p. 57) +aand_all [dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10] dinhibit nand1 +aandclk [dclk dinhibit] diclk and1 + + +.model nand1 d_nand(rise_delay = 1e-9 fall_delay = 1e-9 ++ input_load = 0.5e-12) + +.model and1 d_and(rise_delay = 1e-9 fall_delay = 1e-9 ++ input_load = 0.5e-12) + +.model jkflop d_jkff(clk_delay = 1.0e-9 set_delay = 1e-9 ++ reset_delay = 1e-9 ic = 0 rise_delay = 1.0e-9 ++ fall_delay = 1e-9) + +.ends count 10 + +** 10 bit edge triggered latch +.subckt latch10 din1 din2 din3 din4 din5 din6 din7 din8 din9 din10 ++ dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 dclk + +*data clk set reset out nout +aff1 din1 dclk dzero dzero dout1 dnout1 flop1 +aff2 din2 dclk dzero dzero dout2 dnout2 flop1 +aff3 din3 dclk dzero dzero dout3 dnout3 flop1 +aff4 din4 dclk dzero dzero dout4 dnout4 flop1 +aff5 din5 dclk dzero dzero dout5 dnout5 flop1 +aff6 din6 dclk dzero dzero dout6 dnout6 flop1 +aff7 din7 dclk dzero dzero dout7 dnout7 flop1 +aff8 din8 dclk dzero dzero dout8 dnout8 flop1 +aff9 din9 dclk dzero dzero dout9 dnout9 flop1 +aff10 din10 dclk dzero dzero dout10 dnout10 flop1 + +.model flop1 d_dff(clk_delay = 1e-9 set_delay = 0 ++ reset_delay = 0 ic = 0 rise_delay = 1e-9 ++ fall_delay = 1e-9) + +.ends latch10 + +** emulation of 10 bit DAC +.subckt dac10 din1 din2 din3 din4 din5 din6 din7 din8 din9 din10 aout +.param vref=1 +abridge1 [din1 din2 din3 din4 din5 din6 din7 din8 din9 din10] ++ [ain1 ain2 ain3 ain4 ain5 ain6 ain7 ain8 ain9 ain10] dac1 +BVout aout 0 V = 'vref'*(v(ain10)/2 + v(ain9)/4 + v(ain8)/8 + v(ain7)/16 + v(ain6)/32 + ++ v(ain5)/64 + v(ain4)/128 + v(ain3)/256 + v(ain2)/512 + v(ain1)/1024) + +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-9 ++ t_fall = 1e-9) + +.ends dac10 + diff --git a/paranoia_parallel/examples/xspice/delta-sigma/counter-test.cir b/paranoia_parallel/examples/xspice/delta-sigma/counter-test.cir new file mode 100644 index 000000000..8bf2baf65 --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/counter-test.cir @@ -0,0 +1,42 @@ +* 10 bit synchronous digital counter +* inhibit at overflow, no revolving +* according to Schreier, Temes: Understanding Delta-Sigma Data Converters, 2005 +* Fig. 2.27, p. 58 + +* clock generation +* PULSE(V1 V2 TD TR TF PW PER) +vclk aclk 0 dc 0 pulse(0 1 1u 2n 2n 1u 2u) + +* reset generation +* single pulse, actual value stored in latch and read by DAC +vres ars 0 dc 0 pulse(0 1 1.1m 2n 2n 1u 2.2m) + +vone aone 0 dc 1 +vzero azero 0 dc 0 + +* digital one +* digital zero +abridge1 [aone azero] [done dzero] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +* digital clock +* digital reset +abridge2 [aclk ars] [dclk dreset] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +XCounter done done dclk dreset dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 count10 +Xlatch dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 ++ dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 dreset ++ latch10 +Xdac dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 adacout dac10 + +.include count-latch-dac.cir + +.control +tran 1u 2.5m +eprint dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 > digi4b.txt +eprint dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 >> digi4b.txt +plot adacout +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/delta-sigma/delta-sigma-1.cir b/paranoia_parallel/examples/xspice/delta-sigma/delta-sigma-1.cir new file mode 100644 index 000000000..b9c5e9cb3 --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/delta-sigma-1.cir @@ -0,0 +1,108 @@ +* delta sigma A/D converter 9 bit +* first-order continuous time delta sigma modulator +* sinc filter with counter +* according to Schreier, Temes: Understanding Delta-Sigma Data Converters, 2005 +* Fig. 2.13, p. 31; Fig. 2.27, p.58 + +** sine input signal parameters +.param infreq=500 inampl=0.5 +** clock +.param clkfreq=5Meg +** simulation time +.param simtime = 2m +.csparam simtime = 'simtime' +** sample clock cycles +.param samples=500 + +.global dzero done + +.options interp ; strongly reduces memory requirements + +** input signal +* SIN(VO VA FREQ TD THETA) +vin inp inm dc 0 sin(0 'inampl' 'infreq' 0 0) +* steps from -0.5 to 0.4 +*vin inp inm dc 0 pwl(0 -0.5 0.2m -0.5 0.201m -0.4 0.4m -0.4 0.401m -0.3 0.6m -0.3 +*+ 0.601m -0.2 0.8m -0.2 0.801m -0.1 1.0m -0.1 1.001m 0.0 1.2m 0.0 1.201m 0.1 1.4m 0.1 +*+ 1.401m 0.2 1.6m 0.2 1.601m 0.3 1.8m 0.3 1.801m 0.4 2m 0.4) + +** clock and constant logic levels +* PULSE(V1 V2 TD TR TF PW PER) +vclk aclk 0 dc 0 pulse(0 1 0.1u 2n 2n '1/clkfreq/2' '1/clkfreq') + +* digital one +* digital zero +vone aone 0 dc 1 +vzero azero 0 dc 0 +abridge1 [aone azero] [done dzero] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +* digital clock +abridge2 [aclk] [dclk] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +****** delta-sigma converter**************************************************************** +* modulator +* inp inm: analog in + - +* dclk digital clock in +* dv, dvb: modulator non-inverting/inverting out +Xmod inp inm dclk dv dvb mod1 +* sinc filter, decimator +* dlout1 ..dlout10: converter 10 bit digital out +xsinc dv dvb dclk dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 sinc1 +******************************************************************************************** + +** DACs for measuring and plotting +* converter output +Xdac_latch dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 adaclout dac10 +* counter inside of sinc filter +Xdac_counter xsinc.dout1 xsinc.dout2 xsinc.dout3 xsinc.dout4 xsinc.dout5 ++ xsinc.dout6 xsinc.dout7 xsinc.dout8 xsinc.dout9 xsinc.dout10 adaccout dac10 + +* load modulator mod1 subcircuit +.include mod1-ct.cir + +* load counter, d-latch and 10 bit DAC +.include count-latch-dac.cir + +** sinc filter 1st order subcircuit +.subckt sinc1 din dinb dclk dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 +XCounter din dinb dclk ddivndel2 dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 count10 +Xlatch dout1 dout2 dout3 dout4 dout5 dout6 dout7 dout8 dout9 dout10 ++ dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 ddivndel1 ++ latch10 + +* digital divider dclk/samples +adivn dclk ddivn divider +.model divider d_fdiv(div_factor = 'samples' high_cycles = 1 ++ i_count = 0 rise_delay = 1e-9 fall_delay = 1e-9) + +* clock delays +adelay ddivn ddivndel1 buff1 ; set latch +adelay2 ddivndel1 ddivndel2 buff1 ; reset counter +.model buff1 d_buffer(rise_delay = '1/clkfreq/8' fall_delay = '1/clkfreq/8' ++ input_load = 0.5e-12) + +.ends sinc1 + +** for plotting +abridge22 [dclk xsinc.ddivndel1 xsinc.ddivndel2 dv] [acclk acset acres acin] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-9 ++ t_fall = 1e-9) + + +.control +save inp inm adaclout adaccout ; save memory space +tran 0.1u $&simtime +* analog out, scaled 'manually'; sinc filter counter; analog differential in +plot 4.1*(adaclout-0.486) adaccout v(inp)-v(inm) ylimit -0.6 0.6 +* modulator dig out +* eprint dv > digi1.txt +* +*eprint dlout1 dlout2 dlout3 dlout4 dlout5 dlout6 dlout7 dlout8 dlout9 dlout10 +*+ xsinc.dout1 xsinc.dout2 xsinc.dout3 xsinc.dout4 xsinc.dout5 +*+ xsinc.dout6 xsinc.dout7 xsinc.dout8 xsinc.dout9 xsinc.dout10 > digi4b.txt +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct-test.cir b/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct-test.cir new file mode 100644 index 000000000..7ce7b0d3b --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct-test.cir @@ -0,0 +1,52 @@ +* first-order delta sigma modulator +* continuous time +* according to Schreier, Temes: Understanding Delta-Sigma Data Converters, 2005 +* Fig. 2.13, p. 31 + +** signal +.param infreq=13k inampl=0.3 +** clock +.param clkfreq=5Meg +** simulation time +.param simtime = 5m +.csparam simtime = 'simtime' + +** input signal +*SIN(VO VA FREQ TD THETA) +vin in+ in- dc 0 sin(0 'inampl' 'infreq' 0 0) + +* clock generation +* PULSE(V1 V2 TD TR TF PW PER) +vclk aclk 0 dc 0 pulse(0 1 0.1u 2n 2n '1/clkfreq/2' '1/clkfreq') + +* digital one +* digital zero +vone aone 0 dc 1 +vzero azero 0 dc 0 +abridge1 [aone azero] [done dzero] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +* digital clock +abridge2 [aclk] [dclk] adc_buff +.model adc_buff adc_bridge(in_low = 0.5 in_high = 0.5) + +Xmod in+ in- dclk dv dvb mod1 + +* load mod1 subcircuit +.include mod1-ct.cir + +.control +save xmod.adffq in+ in- xmod.outintp xmod.outintn +tran 0.01u $&simtime +* digit density vs input +plot xmod.adffq "v(in+) - v(in-)" xlimit 0.1m 0.2m +* modulator integrator out, digital out +plot xmod.outintp-xmod.outintn xmod.adffq xlimit 0.140m 0.148m +*eprint dv dclk > digi1.txt +linearize xmod.adffq +fft xmod.adffq +* noise shaping 20dB/decade +plot db(xmod.adffq) xlimit 10k 1Meg xlog ylimit -20 -120 +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct.cir b/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct.cir new file mode 100644 index 000000000..bf3129b79 --- /dev/null +++ b/paranoia_parallel/examples/xspice/delta-sigma/mod1-ct.cir @@ -0,0 +1,46 @@ +* delta sigma modulator +* first order, continuous time + +.subckt mod1 ainp ainn dclk ddffq ddffqb +* integrator and summer +Ri1 ainn inintn 500 +Rf1 adffq inintn 500 +Cint1 outintp inintn 1n +.IC v(outintp) = 0 v(inintp) = 0 +* +Rshunt1 outintp 0 100Meg +Rshunt2 initn 0 100Meg +* +Ri2 ainp inintp 500 +Rf2 adffqb inintp 500 +Cint2 outintn inintp 1n +.IC v(outintn) = 0 v(inintn) = 0 +* +Rshunt3 outintn 0 100Meg +Rshunt4 inintp 0 100Meg +* +aint %vd(inintp inintn) %vd(outintp outintn) amp +.model amp gain ( in_offset =0.0 gain =100000 ++ out_offset = 0) + +* latched comparator (code model or B source, analog in, digital out) +*acomp %vd(outintp outintn) acompout limit5 +*.model limit5 limit(in_offset=0 gain=100000 out_lower_limit=-1.0 +*+ out_upper_limit=1.0 limit_range=0.10 fraction=FALSE) +* +BComp acompout 0 V = (V(outintp) - V(outintn)) >= 0 ? 1 : -1 +* +abridge2 [acompout] [dcompout] adc_buff +.model adc_buff adc_bridge(in_low = 0 in_high = 0) +* +* D flip flop: data clk set reset out nout +adff1 dcompout dclk ds drs ddffq ddffqb flop2 +.model flop2 d_dff(clk_delay = 1e-9 set_delay = 1.0e-9 ++ reset_delay = 1.0e-9 ic = 0 rise_delay = 1.0e-9 ++ fall_delay = 1e-9) + +abridge1 [ddffq ddffqb dclk] [adffq adffqb aclk] dac1 +.model dac1 dac_bridge(out_low = -1 out_high = 1 out_undef = 0 ++ input_load = 5.0e-12 + +.ends mod1 diff --git a/paranoia_parallel/examples/xspice/filesource/my-source.txt b/paranoia_parallel/examples/xspice/filesource/my-source.txt new file mode 100644 index 000000000..be21b6805 --- /dev/null +++ b/paranoia_parallel/examples/xspice/filesource/my-source.txt @@ -0,0 +1,12 @@ +* input test +0 0 1 +10e-6 0.1 0.9 +20e-6 0.2 0.8 +30e-6 0.3 0.7 +40e-6 0.4 0.6 +50e-6 0.5 0.5 +60e-6 0.6 0.4 +70e-6 0.7 0.3 +80e-6 0.8 0.2 +90e-6 0.9 0.1 +100e-6 1 0 diff --git a/paranoia_parallel/examples/xspice/filesource/simple-filesource.cir b/paranoia_parallel/examples/xspice/filesource/simple-filesource.cir new file mode 100644 index 000000000..ea19e8776 --- /dev/null +++ b/paranoia_parallel/examples/xspice/filesource/simple-filesource.cir @@ -0,0 +1,29 @@ +filesource staircase non-interpolating and interpolating + +* non-interpolating +.model filesrc filesource (file="my-source.txt" ++ amploffset=[0.1 0.1] amplscale=[3.0 3.0] ++ timeoffset=0 timescale=1 ++ timerelative=false amplstep=true) + +* interpolating +.model filesrc2 filesource (file="my-source.txt" ++ amploffset=[0.1 0.1] amplscale=[3.0 3.0] ++ timeoffset=0 timescale=1 ++ timerelative=false amplstep=false) + +A1 %vd([1 0 N_IN 0]) filesrc +Rload N_IN 0 1k + +A2 %vd([2 0 N_IN2 0]) filesrc2 +Rload2 N_IN2 0 1k + +.control +option NOINIT ACCT + +tran 1us 100us +display +plot allv +quit +.endc +.end diff --git a/paranoia_parallel/examples/xspice/fstest.sp b/paranoia_parallel/examples/xspice/fstest.sp new file mode 100644 index 000000000..f0f552a8d --- /dev/null +++ b/paranoia_parallel/examples/xspice/fstest.sp @@ -0,0 +1,26 @@ +* filesource Test + +* two differential ports 1 0 and 3 0 are used, so your input file +* has to have three columns (time, port_value 1, portvalue 2) + +AFILESRC %vd([1 0 3 0]) filesrc +.model filesrc filesource (file="sine.m" amploffset=[0 0] amplscale=[1 1] timerelative=false amplstep=false) + +V2 2 0 0.0 SIN(0 1 1MEG 0 0 0.0) +V4 4 0 0.0 SIN(0 1 1MEG 0 0 90.0) + +.tran 1n 1.0u + +.control +run +*listing param +wrdata vspice V(1) V(2) V(3) V(4) + + +plot V(1) V(2) V(3) V(4) + +* error between interpolation and sine source +* should be less than 1mV up to 1us +plot V(1,2) V(3,4) +.endc +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models1_ac.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models1_ac.deck new file mode 100644 index 000000000..6467c2bd2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models1_ac.deck @@ -0,0 +1,67 @@ +Code Model Test - AC: gain, summer, mult, divide, pwl +* +* +*** analysis type *** +.ac dec 10 10 1000 +* +*** input sources *** +* +v1 1 0 1.0 AC 1.0 0.0 +* +v2 2 0 1.0 AC 1.0 0.0 +* +v3 3 0 DC 2.0 +* +v4 4 0 0.5 AC 0.5 0.0 +* +*** gain block *** +a1 1 10 gain1 +.model gain1 gain (in_offset=0.0 gain=2.0 out_offset=0.0) +* +* +*** summer block *** +a2 [1 2] 20 summer1 +.model summer1 summer (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** mult block *** +a3 [1 3] 30 mult1 +.model mult1 mult (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** divider block *** +a4 1 3 40 divide1 +.model divide1 divide (num_offset=0.0 num_gain=1.0 den_offset=0.0 den_gain=1.0 ++ den_lower_limit=1.0e-10 den_domain=1.0e-16 ++ fraction=false out_gain=1.0 out_offset=0.0) +* +* +*** pwl block *** +a5 4 50 pwl1 +.model pwl1 pwl (x_array=[-1.0 0.0 1.0 2.0 3.0 4.0 5.0] ++ y_array=[-1.0 0.0 1.0 4.0 4.5 5.0 5.0] ++ input_domain=0.01 fraction=TRUE) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +r3 3 0 1k +r4 4 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models1_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models1_dc.deck new file mode 100644 index 000000000..4ad6f0c83 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models1_dc.deck @@ -0,0 +1,61 @@ +Code Model Test - DC: gain, summer, mult, divide, pwl +* +* +*** analysis type *** +.op +* +*** input sources *** +v1 1 0 DC 2 +* +v2 2 0 DC 2 +* +*** gain block *** +a1 1 10 gain1 +.model gain1 gain (in_offset=0.0 gain=2.0 out_offset=0.0) +* +* +*** summer block *** +a2 [1 2] 20 summer1 +.model summer1 summer (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** mult block *** +a3 [1 1] 30 mult1 +.model mult1 mult (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=0.1 out_offset=0.0) +* +* +*** divider block *** +a4 2 1 40 divide1 +.model divide1 divide (num_offset=0.0 num_gain=1.0 den_offset=0.0 den_gain=1.0 ++ den_lower_limit=1.0e-10 den_domain=1.0e-16 ++ fraction=false out_gain=1.0 out_offset=0.0) +* +* +*** pwl block *** +a5 1 50 pwl1 +.model pwl1 pwl (x_array=[-1.0 0.0 1.0 2.0 3.0 4.0 5.0] ++ y_array=[ 0.0 0.0 1.0 4.0 4.5 5.0 5.0] ++ input_domain=0.01 fraction=TRUE) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +r3 3 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models1_swept_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models1_swept_dc.deck new file mode 100644 index 000000000..e211325bd --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models1_swept_dc.deck @@ -0,0 +1,61 @@ +Code Model Test - Swept DC: gain, summer, mult, divide, pwl +* +* +*** analysis type *** +.dc v1 .1 10 .1 +* +*** input sources *** +v1 1 0 DC 2 +* +v2 2 0 DC 2 +* +*** gain block *** +a1 1 10 gain1 +.model gain1 gain (in_offset=0.0 gain=2.0 out_offset=0.0) +* +* +*** summer block *** +a2 [1 2] 20 summer1 +.model summer1 summer (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** mult block *** +a3 [1 1] 30 mult1 +.model mult1 mult (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=0.1 out_offset=0.0) +* +* +*** divider block *** +a4 2 1 40 divide1 +.model divide1 divide (num_offset=0.0 num_gain=1.0 den_offset=0.0 den_gain=1.0 ++ den_lower_limit=1.0e-10 den_domain=1.0e-16 ++ fraction=false out_gain=1.0 out_offset=0.0) +* +* +*** pwl block *** +a5 1 50 pwl1 +.model pwl1 pwl (x_array=[-1.0 0.0 1.0 2.0 3.0 4.0 5.0] ++ y_array=[ 0.0 0.0 1.0 4.0 4.5 5.0 5.0] ++ input_domain=0.01 fraction=TRUE) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +r3 3 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models1_transient.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models1_transient.deck new file mode 100644 index 000000000..a4967d275 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models1_transient.deck @@ -0,0 +1,62 @@ +Code Model Test - Transient: gain, summer, mult, divide, pwl +* +* +*** analysis type *** +.tran .1s 10s +* +*** input sources *** +* +v1 1 0 DC PWL(0 0 10 10) +* +v2 2 0 DC 2 +* +*** gain block *** +a1 1 10 gain1 +.model gain1 gain (in_offset=0.0 gain=2.0 out_offset=0.0) +* +* +*** summer block *** +a2 [1 2] 20 summer1 +.model summer1 summer (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=1.0 out_offset=0.0) +* +* +*** mult block *** +a3 [1 1] 30 mult1 +.model mult1 mult (in_offset=[0.0 0.0] in_gain=[1.0 1.0] ++ out_gain=0.1 out_offset=0.0) +* +* +*** divider block *** +a4 2 1 40 divide1 +.model divide1 divide (num_offset=0.0 num_gain=1.0 den_offset=0.0 den_gain=1.0 ++ den_lower_limit=0.1 den_domain=1.0e-16 ++ fraction=false out_gain=1.0 out_offset=0.0) +* +* +*** pwl block *** +a5 1 50 pwl1 +.model pwl1 pwl (x_array=[-1.0 0.0 1.0 2.0 3.0 4.0 5.0] ++ y_array=[ 0.0 0.0 1.0 4.0 4.5 5.0 5.0] ++ input_domain=0.01 fraction=TRUE) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +r3 3 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models2_ac.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models2_ac.deck new file mode 100644 index 000000000..0b450c809 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models2_ac.deck @@ -0,0 +1,66 @@ +Code Model Test - Swept DC: int, d_dt, s_xfer, core, lcouple +* +* +*** analysis type *** +.ac dec 10 10 1000 +* +* +*** input sources *** +* +v1 1 0 1.0 AC 1.0 0.0 +* +* +*** integrator block *** +a1 1 10 int1 +.model int1 int (in_offset=0.0 gain=2.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 out_ic=0.0) +* +* +*** differentiator block *** +a2 1 20 d_dt1 +.model d_dt1 d_dt (out_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6) +* +* +*** s_xfer block *** +a3 1 30 filter1 +.model filter1 s_xfer (in_offset=0.0 gain=1.0 num_coeff=[1.0] ++ den_coeff=[1.0 1.414214 1.0] int_ic=[0.0 0.0] ++ denormalized_freq=628.0) +* +* +* +*** magnetic core & inductive coupling *** +v40 45 46 0.0 +a4 40 45 core1 +.model core1 core (H_array=[-2.0 -1.0 1.0 2.0] ++ B_array=[-2.0 -1.0 1.0 2.0] ++ area=1.0 length=1.0 input_domain=1.0e-6 ++ fraction=TRUE mode=1 ++ in_low=-1.0 in_high=1.0 hyst=0.5 ++ out_lower_limit=-1.0 out_upper_limit=1.0) +* +* +r5 1 50 100.0 +a5 (50 0) (40 46) inductor1 +.model inductor1 lcouple (num_turns=10) +* +* +*** resistors to ground *** +r1 1 0 1k +* +r10 10 0 1e12 +r20 20 0 1e12 +r30 30 0 1e12 +r40 40 0 1e12 +r45 45 0 1e12 +r50 50 0 1e12 +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models2_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models2_dc.deck new file mode 100644 index 000000000..66a612e46 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models2_dc.deck @@ -0,0 +1,63 @@ +Code Model Test - DC: int, d_dt, s_xfer, core, lcouple +* +* +*** analysis type *** +.op +* +*** input sources *** +v1 1 0 DC 1.0 +* +* +* +* +*** integrator block *** +a1 1 10 int1 +.model int1 int (in_offset=0.0 gain=2.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 out_ic=0.0) +* +* +*** differentiator block *** +a2 1 20 d_dt1 +.model d_dt1 d_dt (out_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6) +* +* +*** s_xfer block *** +a3 1 30 filter1 +.model filter1 s_xfer (in_offset=0.0 gain=1.0 num_coeff=[1.0] ++ den_coeff=[1.0 1.425625 1.516203] int_ic=[0.0 0.0] ++ denormalized_freq=6283.2) +* +* +*** magnetic core & inductive coupling *** +a4 40 45 core1 +.model core1 core (H_array=[-2.0 -1.0 1.0 2.0] ++ B_array=[-2.0 -1.0 1.0 2.0] ++ area=1.0 length=1.0 input_domain=1.0e-6 ++ fraction=TRUE mode=1 ++ in_low=-1.0 in_high=1.0 hyst=0.5 ++ out_lower_limit=-1.0 out_upper_limit=1.0) +* +* +r5 1 50 100.0 +a5 (50 0) (40 45) inductor1 +.model inductor1 lcouple (num_turns=10) +* +* +*** resistors to ground *** +r1 1 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models2_swept_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models2_swept_dc.deck new file mode 100644 index 000000000..470d11c81 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models2_swept_dc.deck @@ -0,0 +1,64 @@ +Code Model Test - Swept DC: int, d_dt, s_xfer, core, lcouple +* +* +*** analysis type *** +.dc v1 .1 10 .5 +* +*** input sources *** +v1 1 0 DC 2 +* +* +*** integrator block *** +a1 1 10 int1 +.model int1 int (in_offset=0.0 gain=2.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 out_ic=0.0) +* +* +*** differentiator block *** +a2 1 20 d_dt1 +.model d_dt1 d_dt (out_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6) +* +* +*** s_xfer block *** +a3 1 30 filter1 +.model filter1 s_xfer (in_offset=0.0 gain=1.0 num_coeff=[1.0] ++ den_coeff=[1.0 1.414214 1.0] int_ic=[0.0 0.0] ++ denormalized_freq=1.0) +* +* +* +*** magnetic core & inductive coupling *** +v40 45 46 0.0 +a4 40 45 core1 +.model core1 core (H_array=[-2.0 -1.0 1.0 2.0] ++ B_array=[-2.0 -1.0 1.0 2.0] ++ area=1.0 length=1.0 input_domain=1.0e-6 ++ fraction=TRUE mode=1 ++ in_low=-1.0 in_high=1.0 hyst=0.5 ++ out_lower_limit=-1.0 out_upper_limit=1.0) +* +* +r5 1 50 100.0 +a5 (50 0) (40 46) inductor1 +.model inductor1 lcouple (num_turns=10) +* +* +*** resistors to ground *** +r1 1 0 1k +* +r10 10 0 1e12 +r20 20 0 1e12 +r30 30 0 1e12 +r40 40 0 1e12 +r45 45 0 1e12 +r50 50 0 1e12 +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models2_transient.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models2_transient.deck new file mode 100644 index 000000000..c9efac726 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models2_transient.deck @@ -0,0 +1,67 @@ +Code Model Test - Transient: int, d_dt, s_xfer, core, lcouple +* +* +*** analysis type *** +.tran .1s 10s +* +*** input sources *** +* +v1 1 0 DC PWL(0 0 10 10) +* +v2 2 0 DC PWL(0 0 0.1 0.1 0.2 0.9 0.3 1.0 10 1.0) +* +* +* +*** integrator block *** +a1 1 10 int1 +.model int1 int (in_offset=0.0 gain=2.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 out_ic=0.0) +* +* +*** differentiator block *** +a2 1 20 d_dt1 +.model d_dt1 d_dt (out_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6) +* +* +*** s_xfer block *** +a3 2 30 filter1 +.model filter1 s_xfer (in_offset=0.0 gain=1.0 num_coeff=[1.0] ++ den_coeff=[1.0 1.414214 1.0] int_ic=[0.0 0.0] ++ denormalized_freq=1.0) +* +* +* +*** magnetic core & inductive coupling *** +a4 40 45 core1 +.model core1 core (H_array=[-2.0 -1.0 1.0 2.0] ++ B_array=[-2.0 -1.0 1.0 2.0] ++ area=1.0 length=1.0 input_domain=1.0e-6 ++ fraction=TRUE mode=1 ++ in_low=-1.0 in_high=1.0 hyst=0.5 ++ out_lower_limit=-1.0 out_upper_limit=1.0) +* +* +r5 1 50 100.0 +a5 (50 0) (40 45) inductor1 +.model inductor1 lcouple (num_turns=10) +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +* +r10 10 0 1k +r20 20 0 1k +r30 30 0 1k +r40 40 0 1k +r50 50 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models3_ac.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models3_ac.deck new file mode 100644 index 000000000..3c4d7fa96 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models3_ac.deck @@ -0,0 +1,81 @@ +Code Model Test - AC: hyst, limit, ilimit, climit, cmeter, lmeter +* +* +*** analysis type *** +.ac dec 10 10 1000 +* +* +*** input sources *** +* +v1 1 0 1.0 AC 1.0 0.0 +* +v2 2 0 DC 10.0 +* +v3 3 0 DC -10.0 +* +* +* +*** hyst block *** +a1 1 10 hyst1 +.model hyst1 hyst (in_low=0.0 in_high=1.0 hyst=0.1 out_lower_limit=0.0 ++ out_upper_limit=1.0 input_domain=0.01 fraction=TRUE) +* +* +*** limit block *** +a2 1 20 limit1 +.model limit1 limit (in_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 fraction=FALSE) +* +* +*** ilimit block *** +a3 1 2 3 30 ilimit1 +.model ilimit1 ilimit (in_offset=0.0 gain=1.0 r_out_source=1.0 ++ r_out_sink=1.0 i_limit_source=1.0 ++ i_limit_sink=1.0 v_pwr_range=1.0e-3 ++ i_source_range=1.0e-6 i_sink_range=1.0e-6 ++ r_out_domain=1.0e-6) +* +* +*** climit block *** +a4 1 2 3 40 climit1 +.model climit1 climit (in_offset=0.0 gain=1.0 upper_delta=0.0 ++ lower_delta=0.0 limit_range=1.0e-6 ++ fraction=FALSE) +* +* +*** cmeter block *** +c5 51 0 1.0e-6 +a5 51 50 cmeter1 +.model cmeter1 cmeter (gain=1.0) +* +* +* +*** lmeter block *** +l6 61 0 1.0e-6 +a6 61 60 lmeter1 +.model lmeter1 lmeter (gain=1.0) +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r51 51 0 10k +r60 60 0 10k +r61 61 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models3_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models3_dc.deck new file mode 100644 index 000000000..cff617cdc --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models3_dc.deck @@ -0,0 +1,79 @@ +Code Model Test - DC: hyst, limit, ilimit, climit, cmeter, lmeter +* +* +*** analysis type *** +.op +* +*** input sources *** +v1 1 0 DC 1.0 +* +v2 2 0 DC 10.0 +* +v3 3 0 DC -10.0 +* +* +* +*** hyst block *** +a1 1 10 hyst1 +.model hyst1 hyst (in_low=0.0 in_high=1.0 hyst=0.1 out_lower_limit=0.0 ++ out_upper_limit=1.0 input_domain=0.01 fraction=TRUE) +* +* +*** limit block *** +a2 1 20 limit1 +.model limit1 limit (in_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 fraction=FALSE) +* +* +*** ilimit block *** +a3 1 2 3 30 ilimit1 +.model ilimit1 ilimit (in_offset=0.0 gain=1.0 r_out_source=1.0 ++ r_out_sink=1.0 i_limit_source=1.0 ++ i_limit_sink=1.0 v_pwr_range=1.0e-3 ++ i_source_range=1.0e-3 i_sink_range=1.0e-3 ++ r_out_domain=1.0e-3) +* +* +*** climit block *** +a4 1 2 3 40 climit1 +.model climit1 climit (in_offset=0.0 gain=1.0 upper_delta=0.0 ++ lower_delta=0.0 limit_range=1.0e-6 ++ fraction=FALSE) +* +* +*** cmeter block *** +c5 51 0 1.0e-6 +a5 51 50 cmeter1 +.model cmeter1 cmeter (gain=1.0) +* +* +* +*** lmeter block *** +l6 61 0 1.0e-6 +a6 61 60 lmeter1 +.model lmeter1 lmeter (gain=1.0) +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r51 51 0 10k +r60 60 0 10k +r61 61 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models3_swept_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models3_swept_dc.deck new file mode 100644 index 000000000..394e7aac1 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models3_swept_dc.deck @@ -0,0 +1,79 @@ +Code Model Test - DC: hyst, limit, ilimit, climit, cmeter, lmeter +* +* +*** analysis type *** +.dc v1 .1 15 .5 +* +*** input sources *** +v1 1 0 DC 1.0 +* +v2 2 0 DC 10.0 +* +v3 3 0 DC -10.0 +* +* +* +*** hyst block *** +a1 1 10 hyst1 +.model hyst1 hyst (in_low=0.0 in_high=1.0 hyst=0.1 out_lower_limit=0.0 ++ out_upper_limit=1.0 input_domain=0.01 fraction=TRUE) +* +* +*** limit block *** +a2 1 20 limit1 +.model limit1 limit (in_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 fraction=FALSE) +* +* +*** ilimit block *** +a3 1 2 3 30 ilimit1 +.model ilimit1 ilimit (in_offset=0.0 gain=1.0 r_out_source=1.0 ++ r_out_sink=1.0 i_limit_source=1.0 ++ i_limit_sink=1.0 v_pwr_range=1.0e-3 ++ i_source_range=1.0e-6 i_sink_range=1.0e-6 ++ r_out_domain=1.0e-6) +* +* +*** climit block *** +a4 1 2 3 40 climit1 +.model climit1 climit (in_offset=0.0 gain=1.0 upper_delta=0.0 ++ lower_delta=0.0 limit_range=1.0e-6 ++ fraction=FALSE) +* +* +*** cmeter block *** +c5 51 0 1.0e-6 +a5 51 50 cmeter1 +.model cmeter1 cmeter (gain=1.0) +* +* +* +*** lmeter block *** +l6 61 0 1.0e-6 +a6 61 60 lmeter1 +.model lmeter1 lmeter (gain=1.0) +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r51 51 0 10k +r60 60 0 10k +r61 61 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models3_transient.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models3_transient.deck new file mode 100644 index 000000000..c92ffff96 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models3_transient.deck @@ -0,0 +1,80 @@ +Code Model Test - Transient: hyst, limit, ilimit, climit, cmeter, lmeter +* +* +*** analysis type *** +.tran .1s 15s +* +*** input sources *** +* +v1 1 0 DC PWL(0 0 15 15) +* +v2 2 0 DC 10.0 +* +v3 3 0 DC -10.0 +* +* +* +*** hyst block *** +a1 1 10 hyst1 +.model hyst1 hyst (in_low=0.0 in_high=1.0 hyst=0.1 out_lower_limit=0.0 ++ out_upper_limit=1.0 input_domain=0.01 fraction=TRUE) +* +* +*** limit block *** +a2 1 20 limit1 +.model limit1 limit (in_offset=0.0 gain=1.0 out_lower_limit=-1.0e6 ++ out_upper_limit=1.0e6 limit_range=1.0e-6 fraction=FALSE) +* +* +*** ilimit block *** +a3 1 2 3 30 ilimit1 +.model ilimit1 ilimit (in_offset=0.0 gain=1.0 r_out_source=1.0 ++ r_out_sink=1.0 i_limit_source=1.0 ++ i_limit_sink=1.0 v_pwr_range=1.0e-3 ++ i_source_range=1.0e-6 i_sink_range=1.0e-6 ++ r_out_domain=1.0e-6) +* +* +*** climit block *** +a4 1 2 3 40 climit1 +.model climit1 climit (in_offset=0.0 gain=1.0 upper_delta=0.0 ++ lower_delta=0.0 limit_range=1.0e-6 ++ fraction=FALSE) +* +* +*** cmeter block *** +c5 51 0 1.0e-6 +a5 51 50 cmeter1 +.model cmeter1 cmeter (gain=1.0) +* +* +* +*** lmeter block *** +l6 61 0 1.0e-6 +a6 61 60 lmeter1 +.model lmeter1 lmeter (gain=1.0) +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r51 51 0 10k +r60 60 0 10k +r61 61 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models4_ac.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models4_ac.deck new file mode 100644 index 000000000..70413e1ad --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models4_ac.deck @@ -0,0 +1,78 @@ +Code Model Test - DC: sine, triangle, aswitch, zener, oneshot +* +* +*** analysis type *** +.ac dec 10 10 1000 +* +* +*** input sources *** +* +v1 1 0 1.0 AC 1.0 0.0 +* +v2 2 0 DC 1.0 +* +v3 3 0 DC 1.0 +* +* +* +* +*** sine block *** +a1 1 10 sine1 +.model sine1 sine (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0) +* +* +*** triangle block *** +a2 1 20 triangle1 +.model triangle1 triangle (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0 duty_cycle=0.8) +* +* +*** aswitch block *** +a3 1 (2 30) aswitch1 +.model aswitch1 aswitch (cntl_off=0.0 cntl_on=1.0 log=TRUE ++ r_off=1.0e12 r_on=10.0) +* +* +*** zener diode *** +r4 1 40 10K +a4 (40 0) zener1 +.model zener1 zener (v_breakdown=10.0 i_breakdown=2.0e-2 ++ r_breakdown=1.0 i_rev=1.0e-6 i_sat=1.0e-12 ++ n_forward=1.0 limit_switch=FALSE) +* +* +*** oneshot block *** +a5 3 1 2 50 oneshot1 +.model oneshot1 oneshot (cntl_array=[-1.0 0.0 1.0 2.0] ++ pw_array=[1.0 1.0 0.1 0.1] clk_trig=0.5 ++ pos_edge_trig=TRUE out_low=0.0 out_high=1.0 ++ rise_time=1.0e-6 rise_delay=1.0e-9 ++ fall_delay=1.0e-9 fall_time=1.0e-6 ++ retrig=FALSE) +* +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r60 60 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models4_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models4_dc.deck new file mode 100644 index 000000000..b3254ea5e --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models4_dc.deck @@ -0,0 +1,74 @@ +Code Model Test - DC: sine triangle aswitch zener oneshot +* +* +*** analysis type *** +.op +* +*** input sources *** +v1 1 0 DC 1.0 +* +v2 2 0 DC 1.0 +* +v3 3 0 DC 1.0 +* +* +*** sine block *** +a1 1 10 sine1 +.model sine1 sine (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0) +* +* +*** triangle block *** +a2 1 20 triangle1 +.model triangle1 triangle (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0 duty_cycle=0.8) +* +* +*** aswitch block *** +a3 1 (2 30) aswitch1 +.model aswitch1 aswitch (cntl_off=0.0 cntl_on=1.0 log=TRUE ++ r_off=1.0e12 r_on=10.0) +* +* +*** zener diode *** +r4 1 40 10K +a4 (40 0) zener1 +.model zener1 zener (v_breakdown=10.0 i_breakdown=2.0e-2 ++ r_breakdown=1.0 i_rev=1.0e-6 i_sat=1.0e-12 ++ n_forward=1.0 limit_switch=FALSE) +* +* +*** oneshot block *** +a5 3 1 2 50 oneshot1 +.model oneshot1 oneshot (cntl_array=[-1.0 0.0 1.0 2.0] ++ pw_array=[1.0 1.0 0.1 0.1] clk_trig=0.5 ++ pos_edge_trig=TRUE out_low=0.0 out_high=1.0 ++ rise_time=1.0e-6 rise_delay=1.0e-9 ++ fall_delay=1.0e-9 fall_time=1.0e-6 ++ retrig=FALSE) +* +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r60 60 0 10k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models4_swept_dc.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models4_swept_dc.deck new file mode 100644 index 000000000..d06fe05f8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models4_swept_dc.deck @@ -0,0 +1,72 @@ +Code Model Test - Swept DC: sine, triangle, aswitch, zener, oneshot +* +* +*** analysis type *** +.dc v1 .1 15 .5 +* +*** input sources *** +v1 1 0 DC 1.0 +* +v2 2 0 DC 1.0 +* +v3 3 0 DC 1.0 +* +* +*** sine block *** +a1 1 10 sine1 +.model sine1 sine (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0) +* +* +*** triangle block *** +a2 1 20 triangle1 +.model triangle1 triangle (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 100.0 100.0] ++ out_low=-1.0 out_high=1.0 duty_cycle=0.8) +* +* +*** aswitch block *** +a3 1 (2 30) aswitch1 +.model aswitch1 aswitch (cntl_off=0.0 cntl_on=1.0 log=TRUE ++ r_off=1.0e12 r_on=10.0) +* +* +*** zener diode *** +r4 1 40 100 +a4 (0 40) zener1 +.model zener1 zener (v_breakdown=8.0 i_breakdown=2.0e-2 ++ r_breakdown=1.0 i_rev=1.0e-6 i_sat=1.0e-12 ++ n_forward=1.0 limit_switch=FALSE) +* +* +*** oneshot block *** +a5 3 1 2 50 oneshot1 +.model oneshot1 oneshot (cntl_array=[-1.0 0.0 1.0 2.0] ++ pw_array=[1.0 1.0 0.1 0.1] clk_trig=0.5 ++ pos_edge_trig=TRUE out_low=0.0 out_high=1.0 ++ rise_time=1.0e-6 rise_delay=1.0e-9 ++ fall_delay=1.0e-9 fall_time=1.0e-6 ++ retrig=FALSE) +* +* +* +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r60 60 0 10k +* +* +.end + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/analog_models4_transient.deck b/paranoia_parallel/examples/xspice/original-examples/analog_models4_transient.deck new file mode 100644 index 000000000..a5bc2687c --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/analog_models4_transient.deck @@ -0,0 +1,81 @@ +Code Model Test - Transient: sine, triangle, aswitch, zener, oneshot +* +* +*** analysis type *** +.tran .01ms 2ms +* +*** input sources *** +* +v1 1 0 DC 0.0 PWL(0 0 2e-3 2) +* +v2 2 0 DC 0.0 PWL(0 0 2e-3 10) +* +v3 3 0 DC 0.0 PWL(0 0.0 0.9e-3 0.0 1e-3 1.0 1.9e-3 1.0 2e-3 0.0 2.9e-3 0.0) +* +v4 4 0 DC 1.0 +* +* +*** sine block *** +a1 2 10 sine1 +.model sine1 sine (cntl_array=[-1.0 0.0 10.0 20.0] ++ freq_array=[500 500 2000 2000] ++ out_low=-1.0 out_high=1.0) +* +* +*** triangle block *** +a2 1 20 triangle1 +.model triangle1 triangle (cntl_array=[-1.0 0.0 10.0 20.0] ++ freq_array=[500 500 10000 10000] ++ out_low=-1.0 out_high=1.0 duty_cycle=0.5) +* +* +*** aswitch block *** +a3 1 (4 30) aswitch1 +.model aswitch1 aswitch (cntl_off=0.0 cntl_on=1.0 log=TRUE ++ r_off=1.0e12 r_on=10.0) +* +* +*** zener diode *** +rzener 2 40 100 +a4 (0 40) zener1 +.model zener1 zener (v_breakdown=9.0 i_breakdown=2.0e-2 ++ r_breakdown=1.0 i_rev=1.0e-6 i_sat=1.0e-12 ++ n_forward=1.0 limit_switch=FALSE) +* +* +*** oneshot block *** +a5 3 1 0 50 oneshot1 +.model oneshot1 oneshot (cntl_array=[-1.0 0.0 1.0 2.0] ++ pw_array=[2.0e-3 2.0e-3 0.1e-3 0.1e-3] clk_trig=0.5 ++ pos_edge_trig=TRUE out_low=0.0 out_high=1.0 ++ rise_time=1.0e-6 rise_delay=1.0e-9 ++ fall_delay=1.0e-9 fall_time=1.0e-6 ++ retrig=FALSE) +* +* +*** square block *** +a6 2 60 square1 +.model square1 square (cntl_array=[-1.0 0.0 10.0 20.0] ++ freq_array=[500 500 7000 7000] ++ out_low=-0.8 out_high=1.2 duty_cycle=0.5 ++ rise_time=1e-6 fall_time=2e-6) +* +*** resistors to ground *** +r1 1 0 10k +r2 2 0 10k +r3 3 0 10k +r4 4 0 10k +* +r10 10 0 10k +r20 20 0 10k +r30 30 0 10k +r40 40 0 10k +r50 50 0 10k +r60 60 0 10k +* +* +.end + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/arbitrary_phase.deck b/paranoia_parallel/examples/xspice/original-examples/arbitrary_phase.deck new file mode 100644 index 000000000..3ef68bc29 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/arbitrary_phase.deck @@ -0,0 +1,17 @@ +Arbitrary Phase SIN and PULSE Sources +* +* This circuit generates two cycles of sine and square waves +* beginning at +45 degrees. +* +* Phase shift is specified after Berkeley defined parameters +* on the independent source cards. +* +.tran 2e-5 2e-3 +* +v1 1 0 0.0 sin(0 1 1k 0 0 45.0) +r1 1 0 1k +* +v2 2 0 0.0 pulse(-1 1 0 1e-5 1e-5 5e-4 1e-3 45.0) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/bad_io.deck b/paranoia_parallel/examples/xspice/original-examples/bad_io.deck new file mode 100644 index 000000000..74678115c --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/bad_io.deck @@ -0,0 +1,17 @@ +Invalid number of inputs/outputs +* +* This circuit contains a simple gain block to demonstrate +* that the simulator reports an error if the number of +* connections on the code model is incorrect. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 3 gain_block +a2 1 gain_block +.model gain_block gain (gain=10) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/bad_io_type.deck b/paranoia_parallel/examples/xspice/original-examples/bad_io_type.deck new file mode 100644 index 000000000..41e64ad59 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/bad_io_type.deck @@ -0,0 +1,25 @@ +Invalid input/output type +* +* This circuit contains a simple gain block to demonstrate +* that the simulator reports an error if an invalid type +* is used with the code model connections. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +* Both connections on the gain block must be analog, but +* the second is specified as digital +* +a1 1 %d 2 gain_block +.model gain_block gain (gain=10) +r2 2 0 1k +* +* Node 1 below should be a digital node, but is an analog node +* +a2 [1] [3] dac +.model dac dac_bridge +r3 3 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/bad_name.deck b/paranoia_parallel/examples/xspice/original-examples/bad_name.deck new file mode 100644 index 000000000..0380cac2e --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/bad_name.deck @@ -0,0 +1,16 @@ +Unknown code model name +* +* This circuit contains a simple gain block to demonstrate +* that the simulator reports an error if the code model name +* is incorrect. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +.model gain_block this_model_doesnt_exist (gain=10) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/bad_param.deck b/paranoia_parallel/examples/xspice/original-examples/bad_param.deck new file mode 100644 index 000000000..22a2aa2f0 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/bad_param.deck @@ -0,0 +1,16 @@ +Unknown code model parameter +* +* This circuit contains a simple gain block to demonstrate +* that the simulator reports an error if the .model card +* references a parameter that doesn't exist +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +.model gain_block gain (this_parameter_doesnt_exist=2 gain=10) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/bad_param_type.deck b/paranoia_parallel/examples/xspice/original-examples/bad_param_type.deck new file mode 100644 index 000000000..f110feda5 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/bad_param_type.deck @@ -0,0 +1,16 @@ +Invalid parameter type +* +* This circuit contains a simple gain block to demonstrate +* that the simulator reports an error if the parameter value +* is invalid. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +.model gain_block gain (gain=false) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/diffpair.in b/paranoia_parallel/examples/xspice/original-examples/diffpair.in new file mode 100644 index 000000000..da321ce89 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/diffpair.in @@ -0,0 +1,28 @@ +difpair ckt - simple differential pair +*.width in=72 +.opt acct list node lvlcod=2 +*.tf v(5) vin +*.dc vin -0.25 0.25 0.005 +*.ac dec 10 1 10ghz +.tran 5ns 500ns +vin 1 0 sin(0 0.1 5meg) ac 1 +vcc 8 0 12 +vee 9 0 -12 +q1 4 2 6 qnl +q2 5 3 6 qnl +rs1 1 2 1k +rs2 3 0 1k +rc1 4 8 10k +rc2 5 8 10k +q3 6 7 9 qnl +q4 7 7 9 qnl +rbias 7 8 20k +.model qnl npn(bf=80 rb=100 ccs=2pf tf=0.3ns tr=6ns cje=3pf cjc=2pf ++ va=50) +.print dc v(4) v(5) +.plot dc v(5) +.print ac vm(5) vp(5) +.plot ac vm(5) vp(5) +.print tran v(4) v(5) +.plot tran v(5) +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_invert.deck b/paranoia_parallel/examples/xspice/original-examples/digital_invert.deck new file mode 100644 index 000000000..08d7f6e91 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_invert.deck @@ -0,0 +1,23 @@ +Digital inversions +* +.tran 1e-8 1e-6 +* +v1 1 0 0.0 pulse(0 1 0 1e-8 1e-8 0.25e-6 0.5e-6) +r1 1 0 1k +* +a1 [1] [2] adc +.model adc adc_bridge +* +a2 2 3 inv +a3 2 ~4 inv +a4 ~2 5 inv +a5 ~2 ~6 inv +.model inv d_inverter +* +a6 [2 ~4] 7 nand +.model nand d_nand +* +a8 [2 3 4 5 6 7] [12 13 14 15 16 17] dac +.model dac dac_bridge +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_models.deck b/paranoia_parallel/examples/xspice/original-examples/digital_models.deck new file mode 100644 index 000000000..39f737278 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_models.deck @@ -0,0 +1,20 @@ +Digital models +* +* This circuit contains a nand gate oscillator enabled by +* a pulse input after 20nS. Node 1 is an analog node. +* Nodes 2 and 3 are digital nodes. +* +.tran 1e-8 1e-7 +* +v1 1 0 0.0 pulse(0 1 2e-8 1e-9 1e-9) +* +r1 1 0 1k +* +a1 [1] [2] atod1 +.model atod1 adc_bridge (in_low=0.25 in_high=0.75 ++ rise_delay=1e-9 fall_delay=1e-9) +* +a2 [2 3] 3 nand +.model nand d_nand (rise_delay=1e-9 fall_delay=1e-9) +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_models1.deck b/paranoia_parallel/examples/xspice/original-examples/digital_models1.deck new file mode 100644 index 000000000..c78fa45ad --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_models1.deck @@ -0,0 +1,77 @@ +Code Model Test: buffer, inverter, and, nand, or, nor, xor, xnor +* +* +*** analysis type *** +.tran .01s 4s +* +*** input sources *** +* +v2 200 0 DC PWL( (0 0.0) (2 0.0) (2.0000000001 1.0) (3 1.0) ) +* +v1 100 0 DC PWL( (0 0.0) (1.0 0.0) (1.0000000001 1.0) (2 1.0) ++ (2.0000000001 0.0) (3 0.0) (3.0000000001 1.0) (4 1.0) ) +* +* +*** adc_bridge blocks *** +aconverter [200 100] [2 1] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.1 in_high=0.9 ++ rise_delay=1.0e-12 fall_delay=1.0e-12) +* +* +* +*** buffer block *** +a1 1 10 d_buffer1 +.model d_buffer1 d_buffer (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** inverter block *** +a2 1 20 d_inv1 +.model d_inv1 d_inverter (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** and block *** +a3 [1 2] 30 d_and1 +.model d_and1 d_and (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** nand block *** +a4 [1 2] 40 d_nand1 +.model d_nand1 d_nand (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** or block *** +a5 [1 2] 50 d_or1 +.model d_or1 d_or (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** nor block *** +a6 [1 2] 60 d_nor1 +.model d_nor1 d_nor (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** xor block *** +a7 [1 2] 70 d_xor1 +.model d_xor1 d_xor (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +*** xnor block *** +a8 [1 2] 80 d_xnor1 +.model d_xnor1 d_xnor (rise_delay=1.0e-6 fall_delay=2.0e-6 ++ input_load=1.0e-12) +* +* +* +*** resistors to ground *** +r1 100 0 1k +r2 200 0 1k +* +* +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_models2.deck b/paranoia_parallel/examples/xspice/original-examples/digital_models2.deck new file mode 100644 index 000000000..9f6244073 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_models2.deck @@ -0,0 +1,91 @@ +Code Model Test: d flip-flop, jk flip-flop, toggle ff, set-reset ff +* +* +*** analysis type *** +.tran .01s 4s +* +*** input sources *** +* +vdata1 100 0 DC PWL( (0 0.0) (2 0.0) (2.0000000001 1.0) (3 1.0) ) +* +* +vdata2 200 0 DC PWL( (0 0.0) (1.0 0.0) (1.0000000001 1.0) (2 1.0) ++ (2.0000000001 0.0) (3 0.0) (3.0000000001 1.0) (4 1.0) ) +* +* +vclk 300 0 DC PWL( (0 0.0) (0.5 0.0) (0.50000000001 1.0) ++ (1.0 1.0) (1.00000000001 0.0) ++ (1.5 0.0) (1.50000000001 1.0) ++ (2.0 1.0) (2.00000000001 0.0) ++ (2.5 0.0) (2.50000000001 1.0) ++ (3.0 1.0) (3.00000000001 0.0) ++ (3.5 0.0) (3.50000000001 1.0) (4.0 1.0) ) +* +* +vset 400 0 DC 0.0 +* +* +vreset 500 0 DC PWL( (0 0.0) (3.8 0.0) (3.80000000001 1.0) (4 1.0) ) +* +* +*** adc_bridge blocks *** +aconverter [100 200 300 400 500] [1 2 3 4 5] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.1 in_high=0.9 ++ rise_delay=1.0e-12 fall_delay=1.0e-12) +* +* +* +*** d flip-flop block *** +a1 1 3 4 5 10 11 d_dff1 +.model d_dff1 d_dff (clk_delay=1.0e-6 set_delay=2.0e-6 ++ reset_delay=3.0e-6 ic=0 ++ rise_delay=4.0e-6 fall_delay=5.0e-6 ++ data_load=1.0e-12 clk_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +*** jk flip-flop block *** +a2 1 2 3 4 5 20 21 d_jkff1 +.model d_jkff1 d_jkff (clk_delay=1.0e-6 set_delay=2.0e-6 ++ reset_delay=3.0e-6 ic=0 ++ rise_delay=4.0e-6 fall_delay=5.0e-6 ++ jk_load=1.0e-12 clk_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +*** toggle flip-flop block *** +a3 1 3 4 5 30 31 d_tff1 +.model d_tff1 d_tff (clk_delay=1.0e-6 set_delay=2.0e-6 ++ reset_delay=3.0e-6 ic=0 ++ rise_delay=4.0e-6 fall_delay=5.0e-6 ++ t_load=1.0e-12 clk_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +*** set-reset flip-flop block *** +a4 1 2 3 4 5 40 41 d_srff1 +.model d_srff1 d_srff (clk_delay=1.0e-6 set_delay=2.0e-6 ++ reset_delay=3.0e-6 ic=0 ++ rise_delay=4.0e-6 fall_delay=5.0e-6 ++ sr_load=1.0e-12 clk_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +* +* +*** resistors to ground *** +r1 100 0 1k +r2 200 0 1k +r3 300 0 1k +r4 400 0 1k +r5 500 0 1k +* +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_models3.deck b/paranoia_parallel/examples/xspice/original-examples/digital_models3.deck new file mode 100644 index 000000000..476ed3071 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_models3.deck @@ -0,0 +1,92 @@ +Code Model Test: d latch, set-reset latch, frequency divider +* +* +*** analysis type *** +.tran .01s 8s +* +*** input sources *** +* +vdata1 100 0 DC PWL( (0 0.0) (2 0.0) (2.0000000001 1.0) (3 1.0) ) +* +* +vdata2 200 0 DC PWL( (0 0.0) (1.0 0.0) (1.0000000001 1.0) (2 1.0) ++ (2.0000000001 0.0) (3 0.0) (3.0000000001 1.0) (4 1.0) ) +* +* +vclk 300 0 DC PWL( (0 0.0) (0.5 0.0) (0.50000000001 1.0) ++ (1.0 1.0) (1.00000000001 0.0) ++ (1.5 0.0) (1.50000000001 1.0) ++ (2.0 1.0) (2.00000000001 0.0) ++ (2.5 0.0) (2.50000000001 1.0) ++ (3.0 1.0) (3.00000000001 0.0) ++ (3.5 0.0) (3.50000000001 1.0) ++ (4.0 1.0) (4.00000000001 0.0) ++ (4.5 0.0) (4.50000000001 1.0) ++ (5.0 1.0) (5.00000000001 0.0) ++ (5.5 0.0) (5.50000000001 1.0) ++ (6.0 1.0) (6.00000000001 0.0) ++ (6.5 0.0) (6.50000000001 1.0) ++ (7.0 1.0) (7.00000000001 0.0) ++ (7.5 0.0) (7.50000000001 1.0) (8.0 1.0) ) +* +* +vset 400 0 DC 0.0 +* +* +vreset 500 0 DC PWL( (0 0.0) (3.8 0.0) (3.80000000001 1.0) (4 1.0) ) +* +* +*** adc_bridge block *** +aconverter [100 200 300 400 500] [1 2 3 4 5] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.1 in_high=0.9 ++ rise_delay=1.0e-12 fall_delay=1.0e-12) +* +* +* +*** d latch block *** +a1 1 3 4 5 10 11 d_dlatch1 +.model d_dlatch1 d_dlatch (data_delay=1.0e-6 enable_delay=2.0e-6 ++ set_delay=3.0e-6 reset_delay=4.0e-6 ++ ic=0 ++ rise_delay=5.0e-6 fall_delay=6.0e-6 ++ data_load=1.0e-12 enable_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +*** set-reset latch block *** +a2 1 2 3 4 5 20 21 d_srlatch1 +.model d_srlatch1 d_srlatch (sr_delay=1.0e-6 enable_delay=2.0e-6 ++ set_delay=3.0e-6 reset_delay=4.0e-6 ++ ic=0 ++ rise_delay=5.0e-6 fall_delay=6.0e-6 ++ sr_load=1.0e-12 enable_load=1.0e-12 ++ set_load=1.0e-12 reset_load=1.0e-12) +* +* +*** frequency divider block *** +a3 3 30 d_fdiv1 +.model d_fdiv1 d_fdiv (div_factor=3 high_cycles=2 ++ i_count=0 rise_delay=1.0e-6 fall_delay=2.0e-6 ++ freq_in_load=1.0e-12) +* +* +* +* +* +* +*** resistors to ground *** +r1 100 0 1k +r2 200 0 1k +r3 300 0 1k +r4 400 0 1k +r5 500 0 1k +* +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/digital_models4.deck b/paranoia_parallel/examples/xspice/original-examples/digital_models4.deck new file mode 100644 index 000000000..6d18c98b8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/digital_models4.deck @@ -0,0 +1,91 @@ +Code Model Test: State Machine, RAM +* +* +*** analysis type *** +.tran .01s 8s +* +*** input sources *** +* +vdata1 100 0 DC PWL( (0 0.0) (2 0.0) (2.0000000001 1.0) (3 1.0) ++ (3.5000000001 0.0) (4 0.0) ) +* +* +vdata2 200 0 DC PWL( (0 0.0) (1.0 0.0) (1.0000000001 1.0) (2 1.0) ++ (2.0000000001 0.0) (3 0.0) (3.0000000001 1.0) (4 1.0) ) +* +* +vclk 300 0 DC PWL( (0 0.0) (0.5 0.0) (0.50000000001 1.0) ++ (1.0 1.0) (1.00000000001 0.0) ++ (1.5 0.0) (1.50000000001 1.0) ++ (2.0 1.0) (2.00000000001 0.0) ++ (2.5 0.0) (2.50000000001 1.0) ++ (3.0 1.0) (3.00000000001 0.0) ++ (3.5 0.0) (3.50000000001 1.0) ++ (4.0 1.0) (4.00000000001 0.0) ++ (4.5 0.0) (4.50000000001 1.0) ++ (5.0 1.0) (5.00000000001 0.0) ++ (5.5 0.0) (5.50000000001 1.0) ++ (6.0 1.0) (6.00000000001 0.0) ++ (6.5 0.0) (6.50000000001 1.0) ++ (7.0 1.0) (7.00000000001 0.0) ++ (7.5 0.0) (7.50000000001 1.0) (8.0 1.0) ) +* +vaddr1 400 0 DC 0 +* +* +vaddr2 500 0 DC PWL( (0 0.0) (0.6 0.0) (0.60000000001 1.0) ++ (0.9 1.0) (0.90000000001 0.0) ++ (2.6 0.0) (2.60000000001 1.0) ++ (2.9 1.0) (2.90000000001 0.0) (3.0 0.0) ) +* +* +* +vselect 600 0 DC PWL( (0 0.0) (1.0 0.0) (2 1.0) (2.0000000001 1.0) ) +* +* +* +* +* +*** adc_bridge block *** +aconverter [100 200 300 400 500 600] [1 2 3 4 5 6] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.1 in_high=0.9 ++ rise_delay=1.0e-12 fall_delay=1.0e-12) +* +* +* +*** state machine block *** +*a1 [1 2] 3 4 [10 11] d_state1 +*.model d_state1 d_state (clk_delay=1.0e-6 reset_delay=2.0e-6 +*+ state_file="state.txt" reset_state=0 +*+ input_load=1.0e-12 clk_load=1.0e-12 +*+ reset_load=1.0e-12) +* +* +*** RAM block *** +a2 [1 2] [20 21] [3 4] 5 [6] d_ram1 +.model d_ram1 d_ram (select_value=1 ic=0 ++ read_delay=1.0e-6 data_load=1.0e-12 ++ address_load=1.0e-12 select_load=1.0e-12 ++ enable_load=1.0e-12) +* +* +* +* +* +*** resistors to ground *** +r1 100 0 10k +r2 200 0 10k +r3 300 0 10k +r4 400 0 10k +r5 500 0 10k +r6 600 0 10k +* +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/dot_model_ref.deck b/paranoia_parallel/examples/xspice/original-examples/dot_model_ref.deck new file mode 100644 index 000000000..159d144f8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/dot_model_ref.deck @@ -0,0 +1,19 @@ +Model card reference +* +* This circuit contains simple gain blocks that share a +* single .model card. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +r2 2 0 1k +* +a2 1 3 gain_block +r3 3 0 1k +* +.model gain_block gain (in_offset = 1 gain=10) +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_dc.deck b/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_dc.deck new file mode 100644 index 000000000..837b8baa7 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_dc.deck @@ -0,0 +1,46 @@ +Code Model Test - DC: d_osc, dac_bridge, adc_bridge +* +* +*** analysis type *** +.op +* +*** input sources *** +v1 1 0 DC 2 +* +v2 2 0 DC 2 +* +*** d_osc block *** +a1 1 10 d_osc1 +.model d_osc1 d_osc (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[100 100 1000 1000] ++ duty_cycle=0.5 init_phase=0.0 ++ rise_delay=1.0e-6 fall_delay=2.0e-6) +* +*** dac_bridge block *** +a2 [10] [20] dac_bridge1 +.model dac_bridge1 dac_bridge (out_low=0.5 out_high=4.5 out_undef=1.8 ++ input_load=1.0e-12 ++ t_rise=1.0e-6 t_fall=2.0e-6) +* +* +*** adc_bridge block *** +a3 [2] [30] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.7 in_high=2.4 ++ rise_delay=1.0e-12 fall_delay=2.0e-12) +* +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +* +r20 20 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_transient.deck b/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_transient.deck new file mode 100644 index 000000000..e09b15ad4 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/hybrid_models1_transient.deck @@ -0,0 +1,48 @@ +Code Model Test - Transient: d_osc, dac_bridge, adc_bridge +* +* +*** analysis type *** +.tran .01s 1s +* +*** input sources *** +* +v1 1 0 DC PWL( (0 0.0) (1 1.0) ) +* +v2 2 0 DC PWL( (0 0.0) (1 5.0) ) +* +* +*** d_osc block *** +a1 1 10 d_osc1 +.model d_osc1 d_osc (cntl_array=[-1.0 0.0 1.0 2.0] ++ freq_array=[1.0 1.0 8.0 8.0] ++ duty_cycle=0.5 init_phase=0.0 ++ rise_delay=1.0e-6 fall_delay=2.0e-6) +* +*** dac_bridge block *** +a2 [10] [20] dac_bridge1 +.model dac_bridge1 dac_bridge (out_low=0.5 out_high=4.5 out_undef=1.8 ++ input_load=1.0e-12 ++ t_rise=1.0e-6 t_fall=2.0e-6) +* +* +*** adc_bridge block *** +a3 [2] [30] adc_bridge1 +.model adc_bridge1 adc_bridge (in_low=0.7 in_high=2.4 ++ rise_delay=1.0e-12 fall_delay=2.0e-12) +* +* +* +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k +* +r20 20 0 1k +* +* +.end + + + + + + diff --git a/paranoia_parallel/examples/xspice/original-examples/initial_conditions.deck b/paranoia_parallel/examples/xspice/original-examples/initial_conditions.deck new file mode 100644 index 000000000..f2ca5d9ff --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/initial_conditions.deck @@ -0,0 +1,19 @@ +Capacitor and inductor with natural initial conditions +* +* This circuit contains a capacitor and an inductor with +* initial conditions on them. Each of the components +* has a parallel resistor so that an exponential decay +* of the initial condition occurs with a time constant of +* 1 second. +* +.tran 0.1 5 +* +a1 1 0 cap +.model cap capacitor (c=1000uf ic=1) +r1 1 0 1k +* +a2 2 0 ind +.model ind inductor (l=1H ic=1) +r2 2 0 1.0 +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/io_ordering.deck b/paranoia_parallel/examples/xspice/original-examples/io_ordering.deck new file mode 100644 index 000000000..dea8459c2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/io_ordering.deck @@ -0,0 +1,17 @@ +IO ordering +* +* This circuit contains a simple gain block. The order of +* the nodes listed on the instance line follows the order +* of the connections defined in the 'ifspec.ifs' file for +* the model. Refer to /atesse-su/src/cml/gain/ifspec.ifs . +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +.model gain_block gain (gain=10) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/io_types.deck b/paranoia_parallel/examples/xspice/original-examples/io_types.deck new file mode 100644 index 000000000..4a55a4917 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/io_types.deck @@ -0,0 +1,34 @@ +IO types +* +* This circuit contains a mix of input output types including +* voltages, currents, digital signals, and user defined +* signals. +* +.tran 1e-6 1e-4 +* +v1 1 0 0.0 pulse(0 1 2e-5) +r1 1 0 1k +* +abridge1 [1] [enable] node_bridge1 +.model node_bridge1 adc_bridge +* +aclk [enable clk] clk nand +.model nand d_nand (rise_delay=1e-5 fall_delay=1e-5) +* +abridge2 clk enable real_node1 node_bridge2 +.model node_bridge2 d_to_real (zero=-1 one=1) +* +again real_node1 real_node2 times10 +.model times10 real_gain (gain=10) +* +abridge3 real_node2 analog_node node_bridge3 +.model node_bridge3 real_to_v +* +rout analog_node 0 1k +* +again2 %vnam v1 %i i_out gain_block +.model gain_block gain (gain=10) +ri_out i_out 0 1k +* +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/long_names.deck b/paranoia_parallel/examples/xspice/original-examples/long_names.deck new file mode 100644 index 000000000..fda6613f8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/long_names.deck @@ -0,0 +1,19 @@ +Long names +* +* This circuit contains a sine wave source followed by a +* gain block code model with a gain of 10. Long names +* are used for instances, models, and nodes. +* +.tran 1e-5 1e-3 +* +v1_123456789_123456789_1234 1 0 0.0 sin(0 1 2k) +* +r1_123456789_123456789_1234 1 0 1k +* +a1_123456789_123456789_1234 1 out_123456789_123456789_1234 ++ gain_block_123456789_123456789_1234 +* +.model gain_block_123456789_123456789_1234 gain (gain=10) +r2_123456789_123456789_1234 out_123456789_123456789_1234 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/mixed_case.deck b/paranoia_parallel/examples/xspice/original-examples/mixed_case.deck new file mode 100644 index 000000000..be044c7e6 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mixed_case.deck @@ -0,0 +1,15 @@ +MiXeD CaSe +* +* This circuit contains a simple gain block to demonstrate +* that the simulator deck parsing code is case-insensitive. +* +.TrAn 1E-5 1e-3 +* +V1 1 0 0.0 sIn(0 1 1k) +r1 1 0 1k +* +A1 1 2 GaIn_BlOcK +.MODel gAiN_bLoCk GAin (gaIN=10) +r2 2 0 1K +* +.eNd diff --git a/paranoia_parallel/examples/xspice/original-examples/mixed_io_size.deck b/paranoia_parallel/examples/xspice/original-examples/mixed_io_size.deck new file mode 100644 index 000000000..cc6bee565 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mixed_io_size.deck @@ -0,0 +1,33 @@ +Mixed IO sizes +* +* This circuit contains a collection of digital and analog +* models with saclar and vector inputs of varying sizes. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 pulse(0 1 1e-4) +r1 1 0 1k +* +v2 2 0 0.0 sin(0 1 2k) +r2 2 0 1k +* +abridge1 [1] [enable] atod +.model atod adc_bridge +* +aosc [enable clk] clk nand +.model nand d_nand (rise_delay=1e-4 fall_delay=1e-4) +* +ainv clk clk_bar inv +.model inv d_inverter (rise_delay=1e-5 fall_delay=1e-5) +* +adac [clk clk_bar] [3 4] dac +.model dac dac_bridge (t_rise=1e-5 t_fall=1e-5) +* +asum [1 2 3 4] 5 sum +.model sum summer +* +r3 3 0 1k +r4 4 0 1k +r5 5 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/mixed_mode.deck b/paranoia_parallel/examples/xspice/original-examples/mixed_mode.deck new file mode 100644 index 000000000..bdf9ee230 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mixed_mode.deck @@ -0,0 +1,98 @@ +Mixed IO types +* +* This circuit contains a mixture of IO types, including +* analog, digital, user-defined (real), and 'null'. +* +* The circuit demonstrates the use of the digital and +* user-defined node capability to model system-level designs +* such as sampled-data filters. The simulated circuit +* contains a digital oscillator enabled after 100us. The +* square wave oscillator output is divided by 8 with a +* ripple counter. The result is passed through a digital +* filter to convert it to a sine wave. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 pulse(0 1 1e-4 1e-6) +r1 1 0 1k +* +abridge1 [1] [enable] atod +.model atod adc_bridge +* +aclk [enable clk] clk nand +.model nand d_nand (rise_delay=1e-5 fall_delay=1e-5) +* +adiv2 div2_out clk NULL NULL NULL div2_out dff +adiv4 div4_out div2_out NULL NULL NULL div4_out dff +adiv8 div8_out div4_out NULL NULL NULL div8_out dff +.model dff d_dff +* +abridge2 div8_out enable filt_in node_bridge2 +.model node_bridge2 d_to_real (zero=-1 one=1) +* +xfilter filt_in clk filt_out dig_filter +* +abridge3 filt_out a_out node_bridge3 +.model node_bridge3 real_to_v +* +rlpf1 a_out oa_minus 10k +* +xlpf 0 oa_minus lpf_out opamp +* +rlpf2 oa_minus lpf_out 10k +clpf lpf_out oa_minus 0.01uF +* +* +.subckt dig_filter filt_in clk filt_out +* +.model n0 real_gain (gain=1.0) +.model n1 real_gain (gain=2.0) +.model n2 real_gain (gain=1.0) +.model g1 real_gain (gain=0.125) +.model zm1 real_delay +.model d0a real_gain (gain=-0.75) +.model d1a real_gain (gain=0.5625) +.model d0b real_gain (gain=-0.3438) +.model d1b real_gain (gain=1.0) +* +an0a filt_in x0a n0 +an1a filt_in x1a n1 +an2a filt_in x2a n2 +* +az0a x0a clk x1a zm1 +az1a x1a clk x2a zm1 +* +ad0a x2a x0a d0a +ad1a x2a x1a d1a +* +az2a x2a filt1_out g1 +az3a filt1_out clk filt2_in zm1 +* +an0b filt2_in x0b n0 +an1b filt2_in x1b n1 +an2b filt2_in x2b n2 +* +az0b x0b clk x1b zm1 +az1b x1b clk x2b zm1 +* +ad0 x2b x0b d0b +ad1 x2b x1b d1b +* +az2b x2b clk filt_out zm1 +* +.ends dig_filter +* +* +.subckt opamp plus minus out +* +r1 plus minus 300k +a1 %vd (plus minus) outint lim +.model lim limit (out_lower_limit = -12 out_upper_limit = 12 ++ fraction = true limit_range = 0.2 gain=300e3) +r3 outint out 50.0 +r2 out 0 1e12 +* +.ends opamp +* +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/mixed_ref.deck b/paranoia_parallel/examples/xspice/original-examples/mixed_ref.deck new file mode 100644 index 000000000..3dd3faad2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mixed_ref.deck @@ -0,0 +1,41 @@ +Mixed references +* +* This circuit demonstrates the use of single-ended and +* differential inputs and outputs. +* +* Note that digital models reference a single node for +* their inputs and output (i.e. they are single-ended) +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 5k) +v2 2 0 0.0 sin(0 1 1k) +* +r1 1 0 1k +r2 2 0 1k +* +* +a1 %v 1 %i 10 times10 +r10 10 0 1k +* +* +a2 %vd (1 2) %id(11 12) times10 +r11 11 0 1k +r12 12 0 1k +r11_12 11 12 1.0 +* +* +r3 2 3 1k +a3 %i 3 %v 13 times10 +r13 13 0 1k +* +a4 [1] [digital_node1] adc +.model adc adc_bridge +* +a5 digital_node1 digital_node2 inv +.model inv d_inverter +* +* +.model times10 gain (gain=10) +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/mosamp2.in b/paranoia_parallel/examples/xspice/original-examples/mosamp2.in new file mode 100644 index 000000000..fff88e101 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mosamp2.in @@ -0,0 +1,42 @@ +mosamp2 - mos amplifier - transient +.options acct abstol=10n vntol=10n +.tran 0.1us 10us +m1 15 15 1 32 m w=88.9u l=25.4u +m2 1 1 2 32 m w=12.7u l=266.7u +m3 2 2 30 32 m w=88.9u l=25.4u +m4 15 5 4 32 m w=12.7u l=106.7u +m5 4 4 30 32 m w=88.9u l=12.7u +m6 15 15 5 32 m w=44.5u l=25.4u +m7 5 20 8 32 m w=482.6u l=12.7u +m8 8 2 30 32 m w=88.9u l=25.4u +m9 15 15 6 32 m w=44.5u l=25.4u +m10 6 21 8 32 m w=482.6u l=12.7u +m11 15 6 7 32 m w=12.7u l=106.7u +m12 7 4 30 32 m w=88.9u l=12.7u +m13 15 10 9 32 m w=139.7u l=12.7u +m14 9 11 30 32 m w=139.7u l=12.7u +m15 15 15 12 32 m w=12.7u l=207.8u +m16 12 12 11 32 m w=54.1u l=12.7u +m17 11 11 30 32 m w=54.1u l=12.7u +m18 15 15 10 32 m w=12.7u l=45.2u +m19 10 12 13 32 m w=270.5u l=12.7u +m20 13 7 30 32 m w=270.5u l=12.7u +m21 15 10 14 32 m w=254u l=12.7u +m22 14 11 30 32 m w=241.3u l=12.7u +m23 15 20 16 32 m w=19u l=38.1u +m24 16 14 30 32 m w=406.4u l=12.7u +m25 15 15 20 32 m w=38.1u l=42.7u +m26 20 16 30 32 m w=381u l=25.4u +m27 20 15 66 32 m w=22.9u l=7.6u +cc 7 9 40pf +cl 66 0 70pf +vin 21 0 pulse(0 5 1ns 1ns 1ns 5us 10us) +vccp 15 0 dc +15 +vddn 30 0 dc -15 +vb 32 0 dc -20 +.model m nmos(nsub=2.2e15 uo=575 ucrit=49k uexp=0.1 tox=0.11u xj=2.95u ++ level=2 cgso=1.5n cgdo=1.5n cbd=4.5f cbs=4.5f ld=2.4485u nss=3.2e10 ++ kp=2e-5 phi=0.6 ) +.print tran v(20) v(66) +.plot tran v(20) v(66) +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/mosmem.in b/paranoia_parallel/examples/xspice/original-examples/mosmem.in new file mode 100644 index 000000000..2654ca8ec --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/mosmem.in @@ -0,0 +1,27 @@ +mosmem - mos memory cell +.width in=72 +.opt abstol=1u +.opt acct list node +.tran 20ns 2us +vdd 9 0 dc 5 +vs 7 0 pulse(2 0 520ns 20ns 20ns 500ns 2000ns) +vw 1 0 pulse(0 2 20ns 20ns 500ns 200ns) +vwb 2 0 pulse(2 0 20ns 20ns 20ns 2000ns 2000ns) +m1 3 1 0 0 mod w=250u l=5u +m2 4 2 0 0 mod w=250u l=5u +m3 9 9 3 0 mod w=5u l=5u +m4 9 9 4 0 mod w=5u l=5u +m5 5 7 3 0 mod w=50u l=5u +m6 6 7 4 0 mod w=50u l=5u +m7 5 6 0 0 mod w=250u l=5u +m8 6 5 0 0 mod w=250u l=5u +m9 9 9 5 0 mod w=5u l=5u +m10 9 9 6 0 mod w=5u l=5u +m11 8 4 0 0 mod w=250u l=5u +m12 9 9 8 0 mod w=5u l=5u +.model mod nmos(vto=0.5 phi=0.7 kp=1.0e-6 gamma=1.83 lambda=0.115 ++ level=1 cgso=1u cgdo=1u cbd=50p cbs=50p) +.print dc v(5) v(6) +.plot dc v(6) +.plot tran v(6) v(5) v(7) v(1) v(2) +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/param_defaults.deck b/paranoia_parallel/examples/xspice/original-examples/param_defaults.deck new file mode 100644 index 000000000..3553fd0e2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/param_defaults.deck @@ -0,0 +1,16 @@ +Parameter defaults +* +* This circuit contains a code model with +* parameters of various types, which are all defaulted, +* and prints the default values. +* +.op +* +r1 1 0 1k +r2 2 0 1k +r3 1 2 1k +* +a1 [1 2] mod +.model mod print_param_types +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/param_types.deck b/paranoia_parallel/examples/xspice/original-examples/param_types.deck new file mode 100644 index 000000000..31a0c754c --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/param_types.deck @@ -0,0 +1,23 @@ +Parameter types +* +* This circuit contains a code model which accepts several +* parameters of various types and prints them. +* +.op +* +r1 1 0 1k +r2 2 0 1k +r3 1 2 1k +* +a1 [1 2] mod +.model mod print_param_types ++ integer=2 ++ real=3.0 ++ complex=<4.0 5.0> ++ string=six ++ integer_array=[7 8] ++ real_array=[9.0 10.0] ++ complex_array=[< 11.0 12.0 > < 13.0 14.0 >] ++ string_array=[fifteen sixteen] +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/parsing.deck b/paranoia_parallel/examples/xspice/original-examples/parsing.deck new file mode 100644 index 000000000..1eb814a48 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/parsing.deck @@ -0,0 +1,16 @@ +Parsing +* +* This circuit contains a simple gain block to demonstrate +* that the simulator parses the syntax used to reference +* code models. +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +r1 1 0 1k +* +a1 1 2 gain_block +.model gain_block gain (gain=10) +r2 2 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/polarity.deck b/paranoia_parallel/examples/xspice/original-examples/polarity.deck new file mode 100644 index 000000000..0724d8141 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/polarity.deck @@ -0,0 +1,26 @@ +Polarity of voltages and currents +* +* This circuit contains a set of gain blocks to evaluate +* the polarity of voltages and currents on code models +* +.tran 1e-5 1e-3 +* +v1 1 0 0.0 sin(0 1 1k) +* +r1 1 0 1k +* +* +a1 %v 1 %v 10 times10 +r10 10 0 1k +* +r1_2 1 2 1k +a2 %i 2 %v 11 times10 +r11 11 0 1k +* +a3 1 %i 12 times10 +r12 12 0 1k +* +* +.model times10 gain (gain=10) +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/rca3040.in b/paranoia_parallel/examples/xspice/original-examples/rca3040.in new file mode 100644 index 000000000..75eba0901 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/rca3040.in @@ -0,0 +1,33 @@ +rca3040 ckt - rca 3040 wideband amplifier +.ac dec 10 1 10ghz +.dc vin -0.25 0.25 0.005 +.tran 2.0ns 200ns +vin 1 0 sin(0 0.1 50meg 0.5ns) ac 1 +vcc 2 0 15.0 +vee 3 0 -15.0 +rs1 30 1 1k +rs2 31 0 1k +r1 5 3 4.8k +r2 6 3 4.8k +r3 9 3 811 +r4 8 3 2.17k +r5 8 0 820 +r6 2 14 1.32k +r7 2 12 4.5k +r8 2 15 1.32k +r9 16 0 5.25k +r10 17 0 5.25k +q1 2 30 5 qnl +q2 2 31 6 qnl +q3 10 5 7 qnl +q4 11 6 7 qnl +q5 14 12 10 qnl +q6 15 12 11 qnl +q7 12 12 13 qnl +q8 13 13 0 qnl +q9 7 8 9 qnl +q10 2 15 16 qnl +q11 2 14 17 qnl +.model qnl npn bf=80 rb=100 ccs=2pf tf=0.3ns tr=6ns cje=3pf ++ cjc=2pf va 50 +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/rtlinv.in b/paranoia_parallel/examples/xspice/original-examples/rtlinv.in new file mode 100644 index 000000000..ad7de7491 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/rtlinv.in @@ -0,0 +1,20 @@ +rtlinv ckt - cascaded rtl inverters +.width in=72 +.opt acct list node lvlcod=2 +.dc vin 0.0 2.5 0.025 +.tran 2ns 200ns +vcc 6 0 5 +vin 1 0 pulse(0 5 2ns 2ns 2ns 80ns) +rb1 1 2 10k +rc1 6 3 1k +q1 3 2 0 qnd +rb2 3 4 10k +q2 5 4 0 qnd +rc2 6 5 1k +.model qnd npn(bf=50 rb=70 rc=40 ccs=2pf tf=0.1ns tr=10ns cje=0.9pf ++ cjc=1.5pf pc=0.85 va=50) +.print dc v(3) v(5) +.plot dc v(3) +.print tran v(3) v(5) +.plot tran v(3) v(5) v(1) +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/schmitt.in b/paranoia_parallel/examples/xspice/original-examples/schmitt.in new file mode 100644 index 000000000..49b08ebfd --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/schmitt.in @@ -0,0 +1,24 @@ +schmitt ckt - ecl compatible schmitt trigger +.width in=72 +.opt acct list node lvlcod=2 +.tran 10ns 1000ns +vin 1 0 pulse(-1.6 -1.2 10ns 400ns 400ns 100ns 10000ns) +vee 8 0 -5 +rin 1 2 50 +rc1 0 3 50 +r1 3 5 185 +r2 5 8 760 +rc2 0 6 100 +re 4 8 260 +rth1 7 8 125 +rth2 7 0 85 +cload 7 0 5pf +q1 3 2 4 qstd off +q2 6 5 4 qstd +q3 0 6 7 qstd +q4 0 6 7 qstd +.model qstd npn(is=1.0e-16 bf=50 br=0.1 rb=50 rc=10 tf=0.12ns tr=5ns ++ cje=0.4pf pe=0.8 me=0.4 cjc=0.5pf pc=0.8 mc=0.333 ccs=1pf va=50) +.print tran v(1) v(3) v(5) v(6) +.plot tran v(3) v(5) v(6) v(1) +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/spice3.deck b/paranoia_parallel/examples/xspice/original-examples/spice3.deck new file mode 100644 index 000000000..0cd56b417 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/spice3.deck @@ -0,0 +1,25 @@ +A Berkeley SPICE3 compatible circuit +* +* This circuit contains only Berkeley SPICE3 components. +* +* The circuit is an AC coupled transistor amplifier with +* a sinewave input at node "1", a gain of approximately -3.9, +* and output on node "coll". +* +.tran 1e-5 2e-3 +* +vcc vcc 0 12.0 +vin 1 0 0.0 ac 1.0 sin(0 1 1k) +* +ccouple 1 base 10uF +* +rbias1 vcc base 100k +rbias2 base 0 24k +* +q1 coll base emit generic +.model generic npn +* +rcollector vcc coll 3.9k +remitter emit 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/suffixes.deck b/paranoia_parallel/examples/xspice/original-examples/suffixes.deck new file mode 100644 index 000000000..cbacf988c --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/suffixes.deck @@ -0,0 +1,25 @@ +Engineering suffixes +* +* This circuit contains a code model which accepts several +* parameters of various types and prints them. The values +* specified on the .model card use engineering suffixes on +* the numeric parameters. +* +.op +* +r1 1 0 1k +r2 2 0 1k +r3 1 2 1k +* +a1 [1 2] mod +.model mod print_param_types ++ integer=2k ++ real=3.0u ++ complex=< 4.0f 5.0mil > ++ string=six ++ integer_array=[7meg 8] ++ real_array=[9.0n 10.0p] ++ complex_array=[< 11.0t 12.0g > < 13.0m 14.0 >] ++ string_array=[fifteen sixteen] +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/supply_ramping.deck b/paranoia_parallel/examples/xspice/original-examples/supply_ramping.deck new file mode 100644 index 000000000..beb3539ed --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/supply_ramping.deck @@ -0,0 +1,30 @@ +Supply ramping option +* +* This circuit demonstrates the use of the option +* "ramptime" which ramps independent sources and the +* capacitor and inductor initial conditions from +* zero to their final value during the time period +* specified. +* +* +.tran 0.1 5 +.option ramptime=0.2 +* +a1 1 0 cap +.model cap capacitor (c=1000uf ic=1) +r1 1 0 1k +* +a2 2 0 ind +.model ind inductor (l=1H ic=1) +r2 2 0 1.0 +* +v1 3 0 1.0 +r3 3 0 1k +* +i1 4 0 1e-3 +r4 4 0 1k +* +v2 5 0 0.0 sin(0 1 0.3 0 0 45.0) +r5 5 0 1k +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/user_defined_nodes.deck b/paranoia_parallel/examples/xspice/original-examples/user_defined_nodes.deck new file mode 100644 index 000000000..6a3c7236e --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/user_defined_nodes.deck @@ -0,0 +1,30 @@ +User defined nodes +* +* This circuit contains a mix of node types including +* two 'real' type user-defined nodes and associated +* node bridges. +* +.tran 1e-6 1e-4 +* +v1 1 0 0.0 pulse(0 1 2e-5) +r1 1 0 1k +* +abridge1 [1] [enable] node_bridge1 +.model node_bridge1 adc_bridge +* +aclk [enable clk] clk nand +.model nand d_nand (rise_delay=1e-5 fall_delay=1e-5) +* +abridge2 clk enable real_node1 node_bridge2 +.model node_bridge2 d_to_real (zero=-1 one=1) +* +again real_node1 real_node2 times10 +.model times10 real_gain (gain=10) +* +abridge3 real_node2 analog_node node_bridge3 +.model node_bridge3 real_to_v +* +rout analog_node 0 1k +* +* +.end diff --git a/paranoia_parallel/examples/xspice/original-examples/xspice.deck b/paranoia_parallel/examples/xspice/original-examples/xspice.deck new file mode 100644 index 000000000..b79ed4fe9 --- /dev/null +++ b/paranoia_parallel/examples/xspice/original-examples/xspice.deck @@ -0,0 +1,22 @@ +A simple XSPICE amplifier circuit +* +* This uses an XSPICE "gain" code model to substitute for +* the transistor amplifier circuit in spice3.deck. +* +.tran 1e-5 2e-3 +* +vin 1 0 0.0 ac 1.0 sin(0 1 1k) +* +ccouple 1 in 10uF +* +* +rzin in 0 19.35k +* +aamp in coll gain_block +.model gain_block gain (gain = -3.9 out_offset = 7.003) +* +rzout out coll 3.9k +rbig coll 0 1e12 +* +* +.end diff --git a/paranoia_parallel/examples/xspice/pll/README b/paranoia_parallel/examples/xspice/pll/README new file mode 100644 index 000000000..f5c38b393 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/README @@ -0,0 +1,39 @@ +This directory contains a mixed mode pll, combining +ngspice and XSPICE circuit blocks. +The pll consists of the following blocks: + +** voltage controlled oscillator: +vco_sub.cir + 7 stage ring oscillator with gain cells, CMOS devices +or +vco_sub_new.cir + vco made from code model d_osc, cntl_array/freq_array data + are gained by running test-vco.cir with vco_sub.cir + +** digital divider and frequency reference: +pll-xspice.cir + +** phase frequency detector: +f-p-det-d-sub.cir + +** loop filter: +loop-filter.cir + switched current sources as charge pump, 2nd order + passive RC filter +or +loop-filter-2.cir + transistors as switches for charge pump, 2nd or 3rd + order passive RC filters + +** main simulation control: +pll-xspice.cir + +Two test files are included: +test-vco.cir simulates vco frequency versus control voltage +test-f-p-det.cir simulates the phase frequency detector and the loop filter. + +The main building blocks are organised as subcircuits. + +main simulation control with three reference frequencies: +pll-xspice-fstep.cir + simulates two steps of the reference in one simulation run diff --git a/paranoia_parallel/examples/xspice/pll/f-p-det-d-sub.cir b/paranoia_parallel/examples/xspice/pll/f-p-det-d-sub.cir new file mode 100644 index 000000000..cdd5af9e9 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/f-p-det-d-sub.cir @@ -0,0 +1,16 @@ +* frequency-phase detector according to +* http://www.uwe-kerwien.de/pll/pll-phasenvergleich.htm + +.subckt f-p-det d_R d_V d_U d_U_ d_D d_D_ + +aa1 [d_U d_D] d_rset and1 +.model and1 d_and(rise_delay = 1e-10 fall_delay = 0.1e-9 ++ input_load = 0.5e-12) + +ad1 d_d1 d_R d_d0 d_rset d_U d_U_ flop1 +ad2 d_d1 d_V d_d0 d_rset d_D d_D_ flop1 +.model flop1 d_dff(clk_delay = 1.0e-10 set_delay = 1.0e-10 ++ reset_delay = 1.0e-10 ic = 2 rise_delay = 1.0e-10 ++ fall_delay = 1e-10) + +.ends f-p-det diff --git a/paranoia_parallel/examples/xspice/pll/loop-filter-2.cir b/paranoia_parallel/examples/xspice/pll/loop-filter-2.cir new file mode 100644 index 000000000..3d0931676 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/loop-filter-2.cir @@ -0,0 +1,50 @@ +* loop filter for pll +* in: d_up d_down digital data +* out: vout, vco control voltage +* using transistors to switch current +* according to http://www.uwe-kerwien.de/pll/pll-schleifenfilter.htm +* digital input d_Un d_D +* anlog output vout + + +.subckt loopf d_Un d_D vout + +.param initcond=2.5 + +vdd dd 0 dc 'vcc' +vss ss 0 dc 0 + +* "driver" circuit, digital in, analog out +abridge-f1 [d_Un d_D] [u1n d1] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 'vcc' out_undef = 'vcc/2' ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +* uses BSIM3 model parameters from pll-xspice_2.cir +* transistors as switches +mnd dra d1 ss ss n1 w=12u l=0.35u AS=24p AD=24p PS=28u PD=28u +mpd dra u1n dd dd p1 w=24u l=0.35u AS=48p AD=48p PS=52u PD=52u + +*** passive filter elements *** +*third order filter +*parameters absolutely _not_ optimised +*better check +* http://www.national.com/assets/en/boards/deansbook4.pdf +*to do so +.ic v(vout)='initcond' v(c1)='initcond' v(dra)='initcond' v(int1)='initcond' v(u1n)='vcc' v(d1)=0 +R1 dra int1 300 +R2 int1 c1 200 +C1 c1 0 10n +C2 int1 0 5n +R3 int1 vout 50 +C3 vout 0 0.5n + +*second order filter +*parameters not optimized +*.ic v(vout)='initcond' v(c1)='initcond' v(dra)='initcond' v(u1n)='vcc' v(d1)=0 +*R1 dra vout 300 +*R2 vout c1 200 +*C1 c1 0 10n +*C2 vout 0 5n + +.ends loopf diff --git a/paranoia_parallel/examples/xspice/pll/loop-filter.cir b/paranoia_parallel/examples/xspice/pll/loop-filter.cir new file mode 100644 index 000000000..a83ebb7ab --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/loop-filter.cir @@ -0,0 +1,31 @@ +* loop filter for pll +* in: d_up d_down digital data +* out: vout, vco control voltage +* according to http://www.uwe-kerwien.de/pll/pll-schleifenfilter.htm + +.subckt loopfe d_U d_D vout + +.param loadcur=5m +.param initcond=2.5 + +v1 vtop 0 1 +v2 vbot 0 -1 + +abridge-f1 [d_U d_D] [u1 d1] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +*top switched current source +Gtop vtop vout cur='loadcur*v(u1)' +*bottom switched current source +Gbot vout vbot cur='loadcur*v(d1)' + +*passive filter elements +.ic v(vout)='initcond' v(c1)='initcond' +R2 vout c1 200 +C1 c1 0 5n +C2 vout 0 5n +Rshunt vout 0 10000k + +.ends diff --git a/paranoia_parallel/examples/xspice/pll/pll-xspice-fstep.cir b/paranoia_parallel/examples/xspice/pll/pll-xspice-fstep.cir new file mode 100644 index 000000000..5c79e1522 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/pll-xspice-fstep.cir @@ -0,0 +1,165 @@ +* pll circuit using xspice code models +* three frequencies generate steps in control voltage v(cont) + +.param vcc=3.3 +.param divisor=40 +.param fref=10e6 +.param fref2=9e6 +.param fref3=11e6 +.csparam simtime=45u +.csparam f2='fref2' +.csparam f3='fref3' + +* digital zero and one +.global d_d0 d_d1 + +vdd dd 0 dc 'vcc' + +* 10 MHz reference frequency +* PULSE(V1 V2 TD TR TF PW PER) +vref ref 0 dc 0 pulse(0 'vcc' 10n 1n 1n '1/fref/2' '1/fref') +abridgeref [ref] [d_ref] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 0.5 in_high = 0.5) + +*digital zero +vzero z 0 dc 0 +abridgev3 [z] [d_d0] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 'vcc*0.5' in_high = 'vcc*0.5') +*digital one +ainv1 d_d0 d_d1 invd1 +.model invd1 d_inverter(rise_delay = 1e-10 fall_delay = 1e-10) + +* vco +* buf: analog out +* d_digout: digital out +* cont: analog control voltage +* dd: analog supply voltage +*.include vco_sub.cir +*xvco buf d_digout cont dd ro_vco +.include vco_sub_new.cir +xvco buf d_digout cont dd d_osc_vco + +* digital divider +adiv1 d_digout d_divout divider +.model divider d_fdiv(div_factor = 'divisor' high_cycles = 'divisor/2' ++ i_count = 4 rise_delay = 1e-10 ++ fall_delay = 1e-10) + +* frequency phase detector +.include f-p-det-d-sub.cir +Xfpdet d_divout d_ref d_U d_Un d_D d_Dn f-p-det + +* loop filter +*2nd or 3rd order, transistors as switches +.include loop-filter-2.cir +Xlf d_Un d_D cont loopf +* 2nd order, Exxxx voltage controlled current sources as 'switches' +* loop filter current sources as charge pump +*.include loop-filter.cir +*Xlf d_U d_D cont loopfe + +* d to a for plotting +abridge-w1 [d_divout d_ref d_Un d_D] [s1 s2 u1 d1] dac1 ; change to d_u or d_Un +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +.control +save cont s1 s2 u1 d1 +iplot cont +* calculate breakpoint for switching frequency +let t1_3 = simtime/3 +set ti1_3 ="$&t1_3" +let t2_3 = simtime/3*2 +set ti2_3 ="$&t2_3" +stop when time=$ti1_3 +stop when time=$ti2_3 +* calculate new periods for f2 +let per2=1/f2 +let pw2 = per2/2 +let per3=1/f3 +let pw3 = per3/2 +*simulate +tran 0.1n $&simtime uic +*change frequency after stopping +* first pair of [] without spaces, second pair with spaces +alter @vref[pulse] = [ 0 3.3 10n 1n 1n $&pw2 $&per2 ] +resume +*another change after second stop +alter @vref[pulse] = [ 0 3.3 10n 1n 1n $&pw3 $&per3 ] +resume +rusage +plot cont s1 s2+1.2 u1+2.4 d1+3.6 xlimit 15u 16u +*plot cont +.endc + +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + +.model P1 PMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + + +.end diff --git a/paranoia_parallel/examples/xspice/pll/pll-xspice.cir b/paranoia_parallel/examples/xspice/pll/pll-xspice.cir new file mode 100644 index 000000000..1d14368de --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/pll-xspice.cir @@ -0,0 +1,144 @@ +* pll circuit using xspice code models +* output frequency 400 MHz +* locked to a 1 or 10 MHz reference + +.param vcc=3.3 +.param divisor=40 +.param fref=10e6 +.csparam simtime=25u + +.global d_d0 d_d1 + +vdd dd 0 dc 'vcc' +*vco cont 0 dc 1.9 + +*PULSE(V1 V2 TD TR TF PW PER) +* reference frequency selected by param fref +* PULSE(V1 V2 TD TR TF PW PER) +vref ref 0 dc 0 pulse(0 'vcc' 10n 1n 1n '1/fref/2' '1/fref') +abridgeref [ref] [d_ref] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 0.5 in_high = 0.5) + +*digital zero +vzero z 0 dc 0 +abridgev3 [z] [d_d0] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 'vcc*0.5' in_high = 'vcc*0.5') +*digital one +ainv1 d_d0 d_d1 invd1 +.model invd1 d_inverter(rise_delay = 1e-10 fall_delay = 1e-10) + +* vco +* buf: analog out +* d_digout: digital out +* cont: analog control voltage +* dd: analog supply voltage +*.include vco_sub.cir +*xvco buf d_digout cont dd ro_vco +.include vco_sub_new.cir +xvco buf d_digout cont dd d_osc_vco + +* digital divider +adiv1 d_digout d_divout divider +.model divider d_fdiv(div_factor = 'divisor' high_cycles = 'divisor/2' ++ i_count = 4 rise_delay = 1e-10 ++ fall_delay = 1e-10) + +* frequency phase detector +.include f-p-det-d-sub.cir +Xfpdet d_divout d_ref d_U d_Un d_D d_Dn f-p-det + +* loop filters +*2nd or 3rd order, transistors as switches +.include loop-filter-2.cir +Xlf d_Un d_D cont loopf +* 2nd order, Exxxx voltage controlled current sources as 'switches' +* loop filter current sources as charge pump +*.include loop-filter.cir +*Xlf d_U d_D cont loopfe + +* d to a for plotting +abridge-w1 [d_divout d_ref d_Un d_D] [s1 s2 u1n d1] dac1 ; change to d_u or d_Un +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +.control +save cont s1 s2 u1n d1 v.xlf.vdd#branch; to save memory +iplot cont +tran 0.1n $&simtime uic +rusage +plot cont s1 s2+1.2 u1n+2.4 d1+3.6 xlimit 4u 5u +plot v.xlf.vdd#branch xlimit 4u 5u ylimit -8m 2m +*plot cont +.endc + +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + +.model P1 PMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + + +.end diff --git a/paranoia_parallel/examples/xspice/pll/test-f-p-det.cir b/paranoia_parallel/examples/xspice/pll/test-f-p-det.cir new file mode 100644 index 000000000..16060b9b1 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/test-f-p-det.cir @@ -0,0 +1,114 @@ +* test frequency-phase detector similar to 12040 + +.param vcc=3.3 +.global d_d0 d_d1 + +*PULSE(V1 V2 TD TR TF PW PER) +v1 1 0 dc 0 pulse(0 'vcc' 10n 1n 1n 10n 20n) +v2 2 0 dc 0 pulse(0 'vcc' 8n 1n 1n 10n 20n) + +*digital zero +v3 3 0 dc 0 +abridgev1 [1 2 3] [d_sig1 d_sig2 d_d0] adc_vbuf +.model adc_vbuf adc_bridge(in_low = 'vcc*0.5' in_high = 'vcc*0.5') +*digital one +ainv1 d_d0 d_d1 invd1 +.model invd1 d_inverter(rise_delay = 1e-10 fall_delay = 1e-10) + +Xfpdet d_sig1 d_sig2 d_U d_Un d_D d_Dn f-p-det + +*.include f-p-det-sub.cir +.include f-p-det-d-sub.cir + +* d to a for plotting +abridge-w1 [d_sig1 d_sig2 d_U d_D] [s1 s2 u1 d1] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +* loop filters +*2nd or 3rd order, transistors as switches +.include loop-filter-2.cir +Xlf d_Un d_D cont loopf +* 2nd order, Exxxx voltage controlled current sources as 'switches' +* loop filter current sources as charge pump +*.include loop-filter.cir +*Xlf d_U d_D cont loopfe + +.control +set xtrtol=2 +tran 0.1n 1000n +plot s1 s2+1.2 u1+2.4 d1+3.6 xlimit 140n 200n +.endc + + +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + +.model P1 PMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + + +.end diff --git a/paranoia_parallel/examples/xspice/pll/test_vco.cir b/paranoia_parallel/examples/xspice/pll/test_vco.cir new file mode 100644 index 000000000..a3c0a9ca8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/test_vco.cir @@ -0,0 +1,158 @@ +* Test of VCO: frequency versus control voltage +* 7 stage Ring-Osc. made of gain cells BSIM3 +* P.-H. Hsieh, J. Maxey, C.-K. K. Yang, IEEE JSSC, Sept. 2009, pp. 2488 - 2495 +* alternatively use d_osc code model +* measure frequency of R.O. by fft + +.param vcc=3.3 +.csparam simtime=500n + +vdd dd 0 dc 'vcc' +vco cont 0 dc 2.5 + +* vco +* buf: analog out +* d_digout: digital out +* cont: analog control voltage +* dd: analog supply voltage +*.include vco_sub.cir +*xvco buf d_digout cont dd ro_vco +.include vco_sub_new.cir +xvco buf d_digout cont dd d_osc_vco + +.option noacct + +.control +set xtrtol=2 +set dt = $curplot +set curplot = new +set curplottitle = "Frequency versus voltage" +set freq_volt = $curplot ; store its name to 'freq_volt' +setplot $freq_volt +let vcovec=vector(5) +let foscvec=vector(5) +setplot $dt +alter vco 0.5 +tran 0.1n $&simtime 0 +let {$freq_volt}.vcovec[0]=v(cont) +linearize buf +fft buf +* start meas at freq > 0 to skip large dc part +meas sp fosc MAX_AT buf from=1e3 to=1e9 +let {$freq_volt}.foscvec[0]=fosc +plot d_digout xlimit 140n 160n +reset +alter vco 1 +tran 0.1n $&simtime 0 +let {$freq_volt}.vcovec[1]=v(cont) +linearize buf +fft buf +meas sp fosc MAX_AT buf from=1e3 to=1e9 +let {$freq_volt}.foscvec[1]=fosc +plot d_digout xlimit 140n 160n +reset +alter vco 1.5 +tran 0.1n $&simtime 0 +let {$freq_volt}.vcovec[2]=v(cont) +linearize buf +fft buf +meas sp fosc MAX_AT buf from=1e3 to=1e9 +let {$freq_volt}.foscvec[2]=fosc +plot d_digout xlimit 140n 160n +reset +alter vco 2 +tran 0.1n $&simtime 0 +let {$freq_volt}.vcovec[3]=v(cont) +linearize buf +fft buf +meas sp fosc MAX_AT buf from=1e3 to=1e9 +let {$freq_volt}.foscvec[3]=fosc +plot d_digout xlimit 140n 160n +reset +alter vco 2.5 +tran 0.1n $&simtime 0 +let {$freq_volt}.vcovec[4]=v(cont) +linearize buf +fft buf +meas sp fosc MAX_AT buf from=1e3 to=1e9 +let {$freq_volt}.foscvec[4]=fosc +plot d_digout xlimit 140n 160n +plot tran1.buf tran3.buf tran5.buf tran7.buf tran9.buf xlimit 140n 160n +plot mag(sp2.buf) mag(sp4.buf) mag(sp6.buf) mag(sp8.buf) mag(sp10.buf) xlimit 100e6 1100e6 +setplot $freq_volt +settype frequency foscvec +settype voltage vcovec +plot foscvec vs vcovec +print vcovec foscvec +rusage +.endc + +*model = bsim3v3 +*Berkeley Spice Compatibility +* Lmin= .35 Lmax= 20 Wmin= .6 Wmax= 20 +.model N1 NMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 2.498E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=9.36e-8 Wint=1.47e-7 ++Vth0= .6322 K1= .756 K2= -3.83e-2 K3= -2.612 ++Dvt0= 2.812 Dvt1= 0.462 Dvt2=-9.17e-2 ++Nlx= 3.52291E-08 W0= 1.163e-6 ++K3b= 2.233 ++Vsat= 86301.58 Ua= 6.47e-9 Ub= 4.23e-18 Uc=-4.706281E-11 ++Rdsw= 650 U0= 388.3203 wr=1 ++A0= .3496967 Ags=.1 B0=0.546 B1= 1 ++ Dwg = -6.0E-09 Dwb = -3.56E-09 Prwb = -.213 ++Keta=-3.605872E-02 A1= 2.778747E-02 A2= .9 ++Voff=-6.735529E-02 NFactor= 1.139926 Cit= 1.622527E-04 ++Cdsc=-2.147181E-05 ++Cdscb= 0 Dvt0w = 0 Dvt1w = 0 Dvt2w = 0 ++ Cdscd = 0 Prwg = 0 ++Eta0= 1.0281729E-02 Etab=-5.042203E-03 ++Dsub= .31871233 ++Pclm= 1.114846 Pdiblc1= 2.45357E-03 Pdiblc2= 6.406289E-03 ++Drout= .31871233 Pscbe1= 5000000 Pscbe2= 5E-09 Pdiblcb = -.234 ++Pvag= 0 delta=0.01 ++ Wl = 0 Ww = -1.420242E-09 Wwl = 0 ++ Wln = 0 Wwn = .2613948 Ll = 1.300902E-10 ++ Lw = 0 Lwl = 0 Lln = .316394 ++ Lwn = 0 ++kt1=-.3 kt2=-.051 ++At= 22400 ++Ute=-1.48 ++Ua1= 3.31E-10 Ub1= 2.61E-19 Uc1= -3.42e-10 ++Kt1l=0 Prt=764.3 + +.model P1 PMOS +*+version = 3.2.4 ++version = 3.3.0 ++Level= 8 ++Tnom=27.0 ++Nch= 3.533024E+17 Tox=9E-09 Xj=1.00000E-07 ++Lint=6.23e-8 Wint=1.22e-7 ++Vth0=-.6732829 K1= .8362093 K2=-8.606622E-02 K3= 1.82 ++Dvt0= 1.903801 Dvt1= .5333922 Dvt2=-.1862677 ++Nlx= 1.28e-8 W0= 2.1e-6 ++K3b= -0.24 Prwg=-0.001 Prwb=-0.323 ++Vsat= 103503.2 Ua= 1.39995E-09 Ub= 1.e-19 Uc=-2.73e-11 ++ Rdsw= 460 U0= 138.7609 ++A0= .4716551 Ags=0.12 ++Keta=-1.871516E-03 A1= .3417965 A2= 0.83 ++Voff=-.074182 NFactor= 1.54389 Cit=-1.015667E-03 ++Cdsc= 8.937517E-04 ++Cdscb= 1.45e-4 Cdscd=1.04e-4 ++ Dvt0w=0.232 Dvt1w=4.5e6 Dvt2w=-0.0023 ++Eta0= 6.024776E-02 Etab=-4.64593E-03 ++Dsub= .23222404 ++Pclm= .989 Pdiblc1= 2.07418E-02 Pdiblc2= 1.33813E-3 ++Drout= .3222404 Pscbe1= 118000 Pscbe2= 1E-09 ++Pvag= 0 ++kt1= -0.25 kt2= -0.032 prt=64.5 ++At= 33000 ++Ute= -1.5 ++Ua1= 4.312e-9 Ub1= 6.65e-19 Uc1= 0 ++Kt1l=0 + +.end diff --git a/paranoia_parallel/examples/xspice/pll/vco_sub.cir b/paranoia_parallel/examples/xspice/pll/vco_sub.cir new file mode 100644 index 000000000..77f873602 --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/vco_sub.cir @@ -0,0 +1,67 @@ +* VCO: 7 stage Ring-Osc. made of gain cells BSIM3 +* P.-H. Hsieh, J. Maxey, C.-K. K. Yang, IEEE JSSC, Sept. 2009, pp. 2488 - 2495 +* 150 MHz to 900 MHz with control voltage 2.5 to 0.5 V at 3.3 V supply +* BSIM 3 model data for transistors in main file pll-xspice.cir + +***** ring oscillator as voltage controlled oscillator *************** +* name: ro_vco +* aout analog out +* dout digital out +* cont control voltage +* dd supply voltage + +.subckt ro_vco aout dout cont dd +* ignition circuit (not needed) +* feedback between in and out, pulse to help start oscillation +vin inm1 outp7 dc 0 +*vin inm1 outp7 dc 2.5 pulse 2.5 0 0.1n 5n 1 1 1 + +*vin2 inp1 outp7 dc -0.5 pulse -0.5 0 0.1n 5n 1 1 1 +vin2 inp1 outm7 dc 0 + + +vss ss 0 dc 0 +ve sub 0 dc 0 +vpe well 0 dc 3.3 + + +* gain cell +.subckt gaincell dd ss sub well co in- in+ out- out+ +mn1 out- in+ ss sub n1 w=2u l=0.35u AS=3p AD=3p PS=4u PD=4u +mn2 out- out+ ss sub n1 w=2u l=0.35u AS=3p AD=3p PS=4u PD=4u +mn3 out+ out- ss sub n1 w=2u l=0.35u AS=3p AD=3p PS=4u PD=4u +mn4 out+ in- ss sub n1 w=2u l=0.35u AS=3p AD=3p PS=4u PD=4u +mp1 out- co dd well p1 w=4u l=0.35u AS=7p AD=7p PS=6u PD=6u +mp2 out+ co dd well p1 w=4u l=0.35u AS=7p AD=7p PS=6u PD=6u +.ends gaincell + +* inverter +.subckt inv2 dd ss sub well in out +mn1 out in ss sub n1 w=6u l=0.35u AS=12p AD=12p PS=16u PD=16u +mp1 out in dd well p1 w=12u l=0.35u AS=24p AD=24p PS=28u PD=28u +.ends inv2 + +* inverter +.subckt inv1 dd ss sub well in out +mn1 out in ss sub n1 w=2u l=0.35u AS=3p AD=3p PS=4u PD=4u +mp1 out in dd well p1 w=4u l=0.35u AS=7p AD=7p PS=6u PD=6u +.ends inv1 + +* chain of 25 inverters + output buffer +xinv1 dd ss sub well cont inm1 inp1 outm1 outp1 gaincell +xinv2 dd ss sub well cont outp1 outm1 outm2 outp2 gaincell +xinv3 dd ss sub well cont outp2 outm2 outm3 outp3 gaincell +xinv4 dd ss sub well cont outp3 outm3 outm4 outp4 gaincell +xinv5 dd ss sub well cont outp4 outm4 outm5 outp5 gaincell +xinv6 dd ss sub well cont outp5 outm5 outm6 outp6 gaincell +xinv7 dd ss sub well cont outp6 outm6 outm7 outp7 gaincell +* analog out (two stage buffer) +xinv11 dd 0 sub well outm1 outm2 inv1 +xinv12 dd 0 sub well outm2 aout inv2 +cout aout 0 0.2pF +*digital out +abridge1 [aout] [dout] adc_buff +.model adc_buff adc_bridge(in_low = 'vcc*0.5' in_high = 'vcc*0.5') +.ends ro_vco +****************************************************************** + diff --git a/paranoia_parallel/examples/xspice/pll/vco_sub_new.cir b/paranoia_parallel/examples/xspice/pll/vco_sub_new.cir new file mode 100644 index 000000000..229ccf84a --- /dev/null +++ b/paranoia_parallel/examples/xspice/pll/vco_sub_new.cir @@ -0,0 +1,30 @@ +***** XSPICE digital controlled oscillator d_osc as vco *************** +* 150 MHz to 900 MHz +* name: d_osc_vco +* aout analog out +* dout digital out +* cont control voltage +* dd supply voltage + +.subckt d_osc_vco aout dout cont dd +* curve fitting to ro_vco 'measured' data +Bfit fitted 0 v = (-58256685.71*v(cont)*v(cont) - 186386142.9*v(cont) + 988722980)/10. + +*a5 fitted dout var_clock +*.model var_clock d_osc(cntl_array = [1.0e7 5.0e7 9.0e7] +*+ freq_array = [1.0e8 5.0e8 9.0e8] + +* linear interpolation, input data from measured ro vco +a5 cont dout var_clock +.model var_clock d_osc(cntl_array = [0.5 1 1.5 2 2.5] ++ freq_array = [8.790820e+008 7.472197e+008 5.799500e+008 3.772727e+008 1.611650e+008] ++ duty_cycle = 0.5 init_phase = 180.0 ++ rise_delay = 1e-10 fall_delay=1e-10) + +*generate an analog output for plotting +abridge-fit [dout] [aout] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 1 out_undef = 0.5 ++ input_load = 5.0e-12 t_rise = 1e-10 ++ t_fall = 1e-10) + +.ends d_osc_vco diff --git a/paranoia_parallel/examples/xspice/sine.m b/paranoia_parallel/examples/xspice/sine.m new file mode 100644 index 000000000..c01fbe9a5 --- /dev/null +++ b/paranoia_parallel/examples/xspice/sine.m @@ -0,0 +1,264 @@ +# Created by Octave 3.4.0, Mon Jun 06 10:16:19 2011 CEST +# name: x +# type: matrix +# rows: 257 +# columns: 3 + 0 0 1 + 3.90625e-09 0.02454122852291229 0.9996988186962042 + 7.8125e-09 0.04906767432741801 0.9987954562051724 + 1.171875e-08 0.07356456359966743 0.9972904566786902 + 1.5625e-08 0.0980171403295606 0.9951847266721969 + 1.953125e-08 0.1224106751992162 0.99247953459871 + 2.34375e-08 0.1467304744553617 0.989176509964781 + 2.734375e-08 0.1709618887603012 0.9852776423889412 + 3.125e-08 0.1950903220161282 0.9807852804032304 + 3.515625e-08 0.2191012401568698 0.9757021300385286 + 3.90625e-08 0.2429801799032639 0.970031253194544 + 4.296875e-08 0.2667127574748984 0.9637760657954398 + 4.6875e-08 0.2902846772544623 0.9569403357322088 + 5.078125e-08 0.3136817403988915 0.9495281805930367 + 5.46875e-08 0.3368898533922201 0.9415440651830208 + 5.859374999999999e-08 0.3598950365349881 0.932992798834739 + 6.25e-08 0.3826834323650898 0.9238795325112867 + 6.640625e-08 0.4052413140049899 0.9142097557035307 + 7.03125e-08 0.4275550934302821 0.9039892931234433 + 7.421874999999999e-08 0.4496113296546065 0.8932243011955153 + 7.812499999999999e-08 0.4713967368259976 0.881921264348355 + 8.203125e-08 0.492898192229784 0.8700869911087115 + 8.59375e-08 0.5141027441932217 0.8577286100002721 + 8.984375e-08 0.5349976198870972 0.8448535652497071 + 9.375e-08 0.5555702330196022 0.8314696123025452 + 9.765624999999999e-08 0.5758081914178453 0.8175848131515837 + 1.015625e-07 0.5956993044924334 0.8032075314806449 + 1.0546875e-07 0.6152315905806268 0.7883464276266063 + 1.09375e-07 0.6343932841636455 0.773010453362737 + 1.1328125e-07 0.6531728429537768 0.7572088465064846 + 1.171875e-07 0.6715589548470183 0.7409511253549591 + 1.2109375e-07 0.6895405447370668 0.724247082951467 + 1.25e-07 0.7071067811865475 0.7071067811865476 + 1.2890625e-07 0.7242470829514669 0.6895405447370669 + 1.328125e-07 0.7409511253549591 0.6715589548470183 + 1.3671875e-07 0.7572088465064845 0.6531728429537768 + 1.40625e-07 0.773010453362737 0.6343932841636455 + 1.4453125e-07 0.7883464276266062 0.6152315905806268 + 1.484375e-07 0.8032075314806448 0.5956993044924335 + 1.5234375e-07 0.8175848131515837 0.5758081914178453 + 1.5625e-07 0.8314696123025452 0.5555702330196023 + 1.6015625e-07 0.844853565249707 0.5349976198870973 + 1.640625e-07 0.8577286100002721 0.5141027441932217 + 1.6796875e-07 0.8700869911087113 0.4928981922297841 + 1.71875e-07 0.8819212643483549 0.4713967368259978 + 1.7578125e-07 0.8932243011955153 0.4496113296546066 + 1.796875e-07 0.9039892931234433 0.4275550934302822 + 1.8359375e-07 0.9142097557035307 0.4052413140049899 + 1.875e-07 0.9238795325112867 0.3826834323650898 + 1.9140625e-07 0.9329927988347388 0.3598950365349883 + 1.953125e-07 0.9415440651830208 0.3368898533922201 + 1.9921875e-07 0.9495281805930367 0.3136817403988916 + 2.03125e-07 0.9569403357322089 0.2902846772544623 + 2.0703125e-07 0.9637760657954398 0.2667127574748984 + 2.109375e-07 0.970031253194544 0.242980179903264 + 2.1484375e-07 0.9757021300385286 0.2191012401568698 + 2.1875e-07 0.9807852804032304 0.1950903220161283 + 2.2265625e-07 0.9852776423889412 0.1709618887603014 + 2.265625e-07 0.989176509964781 0.1467304744553617 + 2.3046875e-07 0.99247953459871 0.1224106751992163 + 2.34375e-07 0.9951847266721968 0.09801714032956077 + 2.3828125e-07 0.9972904566786902 0.07356456359966745 + 2.421875e-07 0.9987954562051724 0.04906767432741813 + 2.4609375e-07 0.9996988186962042 0.02454122852291226 + 2.5e-07 1 6.123233995736766e-17 + 2.5390625e-07 0.9996988186962042 -0.02454122852291214 + 2.578125e-07 0.9987954562051724 -0.04906767432741801 + 2.6171875e-07 0.9972904566786902 -0.07356456359966733 + 2.65625e-07 0.9951847266721969 -0.09801714032956065 + 2.6953125e-07 0.99247953459871 -0.1224106751992162 + 2.734375e-07 0.989176509964781 -0.1467304744553616 + 2.7734375e-07 0.9852776423889412 -0.1709618887603012 + 2.8125e-07 0.9807852804032304 -0.1950903220161282 + 2.8515625e-07 0.9757021300385286 -0.2191012401568697 + 2.890625e-07 0.970031253194544 -0.2429801799032639 + 2.9296875e-07 0.9637760657954398 -0.2667127574748983 + 2.96875e-07 0.9569403357322089 -0.2902846772544622 + 3.0078125e-07 0.9495281805930367 -0.3136817403988914 + 3.046875e-07 0.9415440651830208 -0.3368898533922199 + 3.0859375e-07 0.9329927988347388 -0.3598950365349882 + 3.125e-07 0.9238795325112867 -0.3826834323650897 + 3.1640625e-07 0.9142097557035307 -0.4052413140049897 + 3.203125e-07 0.9039892931234434 -0.4275550934302819 + 3.2421875e-07 0.8932243011955152 -0.4496113296546067 + 3.28125e-07 0.881921264348355 -0.4713967368259977 + 3.3203125e-07 0.8700869911087115 -0.492898192229784 + 3.359375e-07 0.8577286100002721 -0.5141027441932217 + 3.3984375e-07 0.8448535652497072 -0.534997619887097 + 3.4375e-07 0.8314696123025455 -0.555570233019602 + 3.4765625e-07 0.8175848131515837 -0.5758081914178453 + 3.515625e-07 0.8032075314806449 -0.5956993044924334 + 3.5546875e-07 0.7883464276266063 -0.6152315905806267 + 3.59375e-07 0.7730104533627371 -0.6343932841636454 + 3.6328125e-07 0.7572088465064847 -0.6531728429537765 + 3.671875e-07 0.740951125354959 -0.6715589548470184 + 3.7109375e-07 0.7242470829514669 -0.6895405447370669 + 3.75e-07 0.7071067811865476 -0.7071067811865475 + 3.7890625e-07 0.6895405447370671 -0.7242470829514668 + 3.828125e-07 0.6715589548470186 -0.7409511253549589 + 3.8671875e-07 0.6531728429537766 -0.7572088465064846 + 3.90625e-07 0.6343932841636455 -0.773010453362737 + 3.9453125e-07 0.6152315905806269 -0.7883464276266062 + 3.984375e-07 0.5956993044924335 -0.8032075314806448 + 4.0234375e-07 0.5758081914178454 -0.8175848131515836 + 4.0625e-07 0.5555702330196022 -0.8314696123025453 + 4.1015625e-07 0.5349976198870972 -0.8448535652497071 + 4.140625e-07 0.5141027441932218 -0.857728610000272 + 4.1796875e-07 0.4928981922297841 -0.8700869911087113 + 4.21875e-07 0.4713967368259979 -0.8819212643483549 + 4.2578125e-07 0.4496113296546069 -0.8932243011955152 + 4.296875e-07 0.427555093430282 -0.9039892931234433 + 4.3359375e-07 0.4052413140049899 -0.9142097557035307 + 4.375e-07 0.3826834323650899 -0.9238795325112867 + 4.4140625e-07 0.3598950365349883 -0.9329927988347388 + 4.453125e-07 0.3368898533922203 -0.9415440651830207 + 4.4921875e-07 0.3136817403988914 -0.9495281805930367 + 4.53125e-07 0.2902846772544624 -0.9569403357322088 + 4.5703125e-07 0.2667127574748985 -0.9637760657954398 + 4.609375e-07 0.2429801799032641 -0.970031253194544 + 4.6484375e-07 0.21910124015687 -0.9757021300385285 + 4.6875e-07 0.1950903220161286 -0.9807852804032304 + 4.7265625e-07 0.1709618887603012 -0.9852776423889412 + 4.765625e-07 0.1467304744553618 -0.989176509964781 + 4.804687499999999e-07 0.1224106751992163 -0.99247953459871 + 4.84375e-07 0.09801714032956083 -0.9951847266721968 + 4.8828125e-07 0.07356456359966773 -0.9972904566786902 + 4.921875e-07 0.04906767432741797 -0.9987954562051724 + 4.9609375e-07 0.02454122852291233 -0.9996988186962042 + 5e-07 1.224646799147353e-16 -1 + 5.0390625e-07 -0.02454122852291208 -0.9996988186962042 + 5.078125e-07 -0.04906767432741772 -0.9987954562051724 + 5.117187499999999e-07 -0.0735645635996675 -0.9972904566786902 + 5.156249999999999e-07 -0.09801714032956059 -0.9951847266721969 + 5.1953125e-07 -0.1224106751992161 -0.99247953459871 + 5.234375e-07 -0.1467304744553616 -0.989176509964781 + 5.2734375e-07 -0.170961888760301 -0.9852776423889413 + 5.3125e-07 -0.1950903220161284 -0.9807852804032304 + 5.3515625e-07 -0.2191012401568698 -0.9757021300385286 + 5.390625e-07 -0.2429801799032638 -0.970031253194544 + 5.4296875e-07 -0.2667127574748983 -0.96377606579544 + 5.46875e-07 -0.2902846772544621 -0.9569403357322089 + 5.507812499999999e-07 -0.3136817403988912 -0.9495281805930368 + 5.546874999999999e-07 -0.3368898533922201 -0.9415440651830208 + 5.5859375e-07 -0.3598950365349881 -0.932992798834739 + 5.625e-07 -0.3826834323650897 -0.9238795325112868 + 5.6640625e-07 -0.4052413140049897 -0.9142097557035307 + 5.703125e-07 -0.4275550934302818 -0.9039892931234434 + 5.7421875e-07 -0.4496113296546067 -0.8932243011955153 + 5.78125e-07 -0.4713967368259976 -0.881921264348355 + 5.8203125e-07 -0.4928981922297839 -0.8700869911087115 + 5.859374999999999e-07 -0.5141027441932216 -0.8577286100002721 + 5.898437499999999e-07 -0.5349976198870969 -0.8448535652497072 + 5.937499999999999e-07 -0.555570233019602 -0.8314696123025455 + 5.9765625e-07 -0.5758081914178453 -0.8175848131515837 + 6.015625e-07 -0.5956993044924332 -0.8032075314806449 + 6.0546875e-07 -0.6152315905806267 -0.7883464276266063 + 6.09375e-07 -0.6343932841636453 -0.7730104533627371 + 6.1328125e-07 -0.6531728429537765 -0.7572088465064848 + 6.171875e-07 -0.6715589548470184 -0.7409511253549591 + 6.2109375e-07 -0.6895405447370668 -0.724247082951467 + 6.249999999999999e-07 -0.7071067811865475 -0.7071067811865477 + 6.289062499999999e-07 -0.7242470829514668 -0.6895405447370671 + 6.328124999999999e-07 -0.7409511253549589 -0.6715589548470187 + 6.3671875e-07 -0.7572088465064842 -0.6531728429537771 + 6.40625e-07 -0.7730104533627367 -0.6343932841636459 + 6.4453125e-07 -0.7883464276266059 -0.6152315905806273 + 6.484375e-07 -0.8032075314806451 -0.5956993044924331 + 6.5234375e-07 -0.8175848131515838 -0.5758081914178452 + 6.5625e-07 -0.8314696123025452 -0.5555702330196022 + 6.6015625e-07 -0.844853565249707 -0.5349976198870973 + 6.640624999999999e-07 -0.857728610000272 -0.5141027441932218 + 6.679687499999999e-07 -0.8700869911087113 -0.4928981922297842 + 6.718749999999999e-07 -0.8819212643483549 -0.4713967368259979 + 6.7578125e-07 -0.8932243011955152 -0.4496113296546069 + 6.796875e-07 -0.9039892931234431 -0.4275550934302825 + 6.8359375e-07 -0.9142097557035305 -0.4052413140049904 + 6.875e-07 -0.9238795325112865 -0.3826834323650903 + 6.9140625e-07 -0.932992798834739 -0.3598950365349879 + 6.953125e-07 -0.9415440651830208 -0.3368898533922199 + 6.992187499999999e-07 -0.9495281805930367 -0.3136817403988915 + 7.031249999999999e-07 -0.9569403357322088 -0.2902846772544624 + 7.070312499999999e-07 -0.9637760657954398 -0.2667127574748985 + 7.109374999999999e-07 -0.970031253194544 -0.2429801799032641 + 7.1484375e-07 -0.9757021300385285 -0.2191012401568701 + 7.1875e-07 -0.9807852804032303 -0.1950903220161287 + 7.2265625e-07 -0.9852776423889411 -0.1709618887603017 + 7.265625e-07 -0.9891765099647809 -0.1467304744553623 + 7.3046875e-07 -0.9924795345987101 -0.122410675199216 + 7.34375e-07 -0.9951847266721969 -0.09801714032956045 + 7.382812499999999e-07 -0.9972904566786902 -0.07356456359966736 + 7.421874999999999e-07 -0.9987954562051724 -0.04906767432741803 + 7.460937499999999e-07 -0.9996988186962042 -0.02454122852291239 + 7.5e-07 -1 -1.83697019872103e-16 + 7.5390625e-07 -0.9996988186962042 0.02454122852291202 + 7.578125e-07 -0.9987954562051724 0.04906767432741766 + 7.6171875e-07 -0.9972904566786902 0.07356456359966698 + 7.65625e-07 -0.9951847266721969 0.09801714032956009 + 7.6953125e-07 -0.9924795345987101 0.1224106751992156 + 7.734375e-07 -0.9891765099647809 0.1467304744553619 + 7.773437499999999e-07 -0.9852776423889412 0.1709618887603013 + 7.812499999999999e-07 -0.9807852804032304 0.1950903220161283 + 7.851562499999999e-07 -0.9757021300385286 0.2191012401568697 + 7.890625e-07 -0.970031253194544 0.2429801799032638 + 7.9296875e-07 -0.96377606579544 0.2667127574748982 + 7.96875e-07 -0.9569403357322089 0.2902846772544621 + 8.0078125e-07 -0.9495281805930368 0.3136817403988911 + 8.046875e-07 -0.9415440651830209 0.3368898533922196 + 8.0859375e-07 -0.9329927988347391 0.3598950365349876 + 8.124999999999999e-07 -0.9238795325112866 0.38268343236509 + 8.164062499999999e-07 -0.9142097557035306 0.40524131400499 + 8.203124999999999e-07 -0.9039892931234433 0.4275550934302821 + 8.242187499999999e-07 -0.8932243011955153 0.4496113296546066 + 8.28125e-07 -0.881921264348355 0.4713967368259976 + 8.3203125e-07 -0.8700869911087115 0.4928981922297839 + 8.359375e-07 -0.8577286100002722 0.5141027441932216 + 8.3984375e-07 -0.8448535652497072 0.5349976198870969 + 8.4375e-07 -0.8314696123025455 0.5555702330196018 + 8.4765625e-07 -0.817584813151584 0.5758081914178449 + 8.515624999999999e-07 -0.8032075314806453 0.5956993044924329 + 8.554687499999999e-07 -0.7883464276266061 0.615231590580627 + 8.593749999999999e-07 -0.7730104533627369 0.6343932841636456 + 8.632812499999999e-07 -0.7572088465064846 0.6531728429537768 + 8.671875e-07 -0.7409511253549591 0.6715589548470183 + 8.7109375e-07 -0.724247082951467 0.6895405447370668 + 8.75e-07 -0.7071067811865477 0.7071067811865474 + 8.7890625e-07 -0.6895405447370672 0.7242470829514667 + 8.828125e-07 -0.6715589548470187 0.7409511253549589 + 8.8671875e-07 -0.6531728429537771 0.7572088465064842 + 8.906249999999999e-07 -0.6343932841636459 0.7730104533627367 + 8.945312499999999e-07 -0.6152315905806274 0.7883464276266059 + 8.984374999999999e-07 -0.5956993044924332 0.8032075314806451 + 9.023437499999999e-07 -0.5758081914178452 0.8175848131515837 + 9.0625e-07 -0.5555702330196022 0.8314696123025452 + 9.1015625e-07 -0.5349976198870973 0.844853565249707 + 9.140625e-07 -0.5141027441932219 0.857728610000272 + 9.1796875e-07 -0.4928981922297843 0.8700869911087113 + 9.21875e-07 -0.4713967368259979 0.8819212643483548 + 9.2578125e-07 -0.449611329654607 0.8932243011955151 + 9.296874999999999e-07 -0.4275550934302825 0.9039892931234431 + 9.335937499999999e-07 -0.4052413140049904 0.9142097557035305 + 9.374999999999999e-07 -0.3826834323650904 0.9238795325112865 + 9.414062499999999e-07 -0.359895036534988 0.932992798834739 + 9.453125e-07 -0.33688985339222 0.9415440651830208 + 9.4921875e-07 -0.3136817403988915 0.9495281805930367 + 9.53125e-07 -0.2902846772544625 0.9569403357322088 + 9.5703125e-07 -0.2667127574748986 0.9637760657954398 + 9.609374999999999e-07 -0.2429801799032642 0.970031253194544 + 9.648437499999999e-07 -0.2191012401568702 0.9757021300385285 + 9.6875e-07 -0.1950903220161287 0.9807852804032303 + 9.726562499999999e-07 -0.1709618887603018 0.9852776423889411 + 9.765625e-07 -0.1467304744553624 0.9891765099647809 + 9.804687499999999e-07 -0.122410675199216 0.99247953459871 + 9.84375e-07 -0.09801714032956051 0.9951847266721969 + 9.882812499999999e-07 -0.07356456359966741 0.9972904566786902 + 9.921875e-07 -0.04906767432741809 0.9987954562051724 + 9.960937499999999e-07 -0.02454122852291245 0.9996988186962042 + 1e-06 -2.449293598294706e-16 1 + + diff --git a/paranoia_parallel/examples/xspice/state/nggtk.tcl b/paranoia_parallel/examples/xspice/state/nggtk.tcl new file mode 100644 index 000000000..a8669f6f8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/state/nggtk.tcl @@ -0,0 +1,10 @@ +# tcl script for gtkwave: show vcd file data created by ngspice +set nfacs [ gtkwave::getNumFacs ] + +for {set i 0} {$i < $nfacs } {incr i} { + set facname [ gtkwave::getFacName $i ] + set num_added [ gtkwave::addSignalsFromList $facname ] +} + +gtkwave::/Edit/UnHighlight_All +gtkwave::/Time/Zoom/Zoom_Full diff --git a/paranoia_parallel/examples/xspice/state/state-machine.cir b/paranoia_parallel/examples/xspice/state/state-machine.cir new file mode 100644 index 000000000..08a2b0c97 --- /dev/null +++ b/paranoia_parallel/examples/xspice/state/state-machine.cir @@ -0,0 +1,40 @@ +* state machine example +* by Marcel Hendrix, Jan. 10th, 2014 + +* Define a simple up/down counter that counts clk edges. +* Digital outputs are on msb+lsb. +* inputs clock reset outputs (all digital) +a0 [n_one] clk n_zero [msb lsb] state1 +*.model state1 d_state(state_file = "D:\Software\Spice\various\xspice\state.in") +.model state1 d_state(state_file = "state.in") + +* Digital "one" and "zero" +a1 n_one pullup1 +.model pullup1 d_pullup(load = 1pF) +a2 n_zero pulldown1 +.model pulldown1 d_pulldown(load = 1pF) + +* Convert the digital outputs to analog so we can conveniently plot them +a3 [msb] [out_msb] dac1 +a4 [lsb] [out_lsb] dac1 +.model dac1 dac_bridge(out_low = 0 out_high = 5 out_undef = 2.5) + +* The digital VCO needs an analog control voltage +Vcnt cntl 0 pulse(-1V 1V 0 5ms 4ms 1ms 1) + +* Digital VCO to drive state-machine (counter) +a5 cntl clk var_clock +.model var_clock d_osc(cntl_array = [-2 -1 1 2] freq_array = [1e3 1e3 10e3 10e3] ++ duty_cycle = 0.1) + +.control +tran 1us 10ms +write spifsim.raw +plot cntl out_msb+2 out_lsb+8 +eprvcd n_one clk n_zero msb lsb > spifsim.vcd +* plotting the vcd file (e.g. with GTKWave) +shell gtkwave spifsim.vcd --script nggtk.tcl & +quit +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/state/state.in b/paranoia_parallel/examples/xspice/state/state.in new file mode 100644 index 000000000..61fa3fdb0 --- /dev/null +++ b/paranoia_parallel/examples/xspice/state/state.in @@ -0,0 +1,13 @@ +* This is an example state.in file. This file +* defines a simple 2-bit counter with one input. The +* value of this input determines whether the counter counts +* up (in = 1) or down (in = 0). +* [state#] [output1 output2] [input] [next state] +0 0s 0s 0 -> 3 + 1 -> 1 +1 0s 1z 0 -> 0 + 1 -> 2 +2 1z 0s 0 -> 1 + 1 -> 3 +3 1z 1z 0 -> 2 +3 1z 1z 1 -> 0 diff --git a/paranoia_parallel/examples/xspice/table/bsim4n-2d-1.table b/paranoia_parallel/examples/xspice/table/bsim4n-2d-1.table new file mode 100644 index 000000000..8f992f982 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/bsim4n-2d-1.table @@ -0,0 +1,200 @@ +*table for nmos bsim 4 +*x +191 +*y +191 +*x row +-0.1 -0.09 -0.08 -0.07 -0.06 -0.05 -0.04 -0.03 -0.02 -0.01 -1.04083E-17 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 0.12 0.13 0.14 0.15 0.16 0.17 0.18 0.19 0.2 0.21 0.22 0.23 0.24 0.25 0.26 0.27 0.28 0.29 0.3 0.31 0.32 0.33 0.34 0.35 0.36 0.37 0.38 0.39 0.4 0.41 0.42 0.43 0.44 0.45 0.46 0.47 0.48 0.49 0.5 0.51 0.52 0.53 0.54 0.55 0.56 0.57 0.58 0.59 0.6 0.61 0.62 0.63 0.64 0.65 0.66 0.67 0.68 0.69 0.7 0.71 0.72 0.73 0.74 0.75 0.76 0.77 0.78 0.79 0.8 0.81 0.82 0.83 0.84 0.85 0.86 0.87 0.88 0.89 0.9 0.91 0.92 0.93 0.94 0.95 0.96 0.97 0.98 0.99 1 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.2 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.3 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.4 1.41 1.42 1.43 1.44 1.45 1.46 1.47 1.48 1.49 1.5 1.51 1.52 1.53 1.54 1.55 1.56 1.57 1.58 1.59 1.6 1.61 1.62 1.63 1.64 1.65 1.66 1.67 1.68 1.69 1.7 1.71 1.72 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 +*y column +-0.1 -0.09 -0.08 -0.07 -0.06 -0.05 -0.04 -0.03 -0.02 -0.01 -1.04083E-17 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 0.11 0.12 0.13 0.14 0.15 0.16 0.17 0.18 0.19 0.2 0.21 0.22 0.23 0.24 0.25 0.26 0.27 0.28 0.29 0.3 0.31 0.32 0.33 0.34 0.35 0.36 0.37 0.38 0.39 0.4 0.41 0.42 0.43 0.44 0.45 0.46 0.47 0.48 0.49 0.5 0.51 0.52 0.53 0.54 0.55 0.56 0.57 0.58 0.59 0.6 0.61 0.62 0.63 0.64 0.65 0.66 0.67 0.68 0.69 0.7 0.71 0.72 0.73 0.74 0.75 0.76 0.77 0.78 0.79 0.8 0.81 0.82 0.83 0.84 0.85 0.86 0.87 0.88 0.89 0.9 0.91 0.92 0.93 0.94 0.95 0.96 0.97 0.98 0.99 1 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.2 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 1.3 1.31 1.32 1.33 1.34 1.35 1.36 1.37 1.38 1.39 1.4 1.41 1.42 1.43 1.44 1.45 1.46 1.47 1.48 1.49 1.5 1.51 1.52 1.53 1.54 1.55 1.56 1.57 1.58 1.59 1.6 1.61 1.62 1.63 1.64 1.65 1.66 1.67 1.68 1.69 1.7 1.71 1.72 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 +-1.59139E-08 -1.09661E-08 -7.51975E-09 -5.12447E-09 -3.46062E-09 -2.30207E-09 -1.48954E-09 -9.12644E-10 -4.98778E-10 -2.03982E-10 -1.7633E-12 1.37412E-10 2.3399E-10 2.96452E-10 3.34913E-10 3.58568E-10 3.73876E-10 3.8462E-10 3.92833E-10 3.9959E-10 4.05469E-10 4.10796E-10 4.15762E-10 4.20481E-10 4.25029E-10 4.29452E-10 4.33785E-10 4.3805E-10 4.42262E-10 4.46435E-10 4.50577E-10 4.54695E-10 4.58794E-10 4.62878E-10 4.6695E-10 4.71013E-10 4.75069E-10 4.79119E-10 4.83166E-10 4.87209E-10 4.91251E-10 4.95292E-10 4.99332E-10 5.03373E-10 5.07415E-10 5.11458E-10 5.15502E-10 5.19549E-10 5.23598E-10 5.2765E-10 5.31704E-10 5.35761E-10 5.39821E-10 5.43885E-10 5.47952E-10 5.52023E-10 5.56098E-10 5.60176E-10 5.64258E-10 5.68344E-10 5.72434E-10 5.76529E-10 5.80627E-10 5.84729E-10 5.88836E-10 5.92947E-10 5.97063E-10 6.01182E-10 6.05307E-10 6.09435E-10 6.13568E-10 6.17705E-10 6.21847E-10 6.25993E-10 6.30144E-10 6.34299E-10 6.38459E-10 6.42623E-10 6.46792E-10 6.50966E-10 6.55143E-10 6.59326E-10 6.63513E-10 6.67704E-10 6.719E-10 6.76101E-10 6.80306E-10 6.84516E-10 6.8873E-10 6.92949E-10 6.97172E-10 7.014E-10 7.05632E-10 7.09869E-10 7.14111E-10 7.18357E-10 7.22608E-10 7.26863E-10 7.31123E-10 7.35388E-10 7.39657E-10 7.43931E-10 7.48209E-10 7.52492E-10 7.5678E-10 7.61072E-10 7.65369E-10 7.69671E-10 7.73978E-10 7.78289E-10 7.82605E-10 7.86926E-10 7.91251E-10 7.95582E-10 7.99917E-10 8.04257E-10 8.08602E-10 8.12952E-10 8.17307E-10 8.21668E-10 8.26033E-10 8.30403E-10 8.34778E-10 8.39159E-10 8.43545E-10 8.47936E-10 8.52332E-10 8.56734E-10 8.61142E-10 8.65555E-10 8.69973E-10 8.74397E-10 8.78827E-10 8.83263E-10 8.87705E-10 8.92152E-10 8.96606E-10 9.01065E-10 9.05531E-10 9.10003E-10 9.14482E-10 9.18967E-10 9.23459E-10 9.27957E-10 9.32463E-10 9.36975E-10 9.41494E-10 9.4602E-10 9.50554E-10 9.55095E-10 9.59644E-10 9.64201E-10 9.68765E-10 9.73337E-10 9.77918E-10 9.82507E-10 9.87105E-10 9.91711E-10 9.96326E-10 1.00095E-09 1.00558E-09 1.01023E-09 1.01488E-09 1.01954E-09 1.02422E-09 1.0289E-09 1.0336E-09 1.0383E-09 1.04302E-09 1.04775E-09 1.05249E-09 1.05724E-09 1.06201E-09 1.06678E-09 1.07158E-09 1.07638E-09 1.0812E-09 1.08604E-09 1.09088E-09 1.09575E-09 1.10063E-09 1.10553E-09 1.11044E-09 1.11537E-09 1.12032E-09 1.12529E-09 1.13027E-09 1.13528E-09 1.14031E-09 1.14536E-09 1.15043E-09 +-2.09962E-08 -1.44989E-08 -9.96104E-09 -6.79942E-09 -4.59842E-09 -3.06281E-09 -1.98385E-09 -1.21647E-09 -6.65041E-10 -2.71643E-10 -1.37794E-12 1.84782E-10 3.13966E-10 3.97515E-10 4.4896E-10 4.80601E-10 5.01077E-10 5.15448E-10 5.26434E-10 5.35472E-10 5.43336E-10 5.50462E-10 5.57103E-10 5.63416E-10 5.69498E-10 5.75415E-10 5.81211E-10 5.86915E-10 5.9255E-10 5.98131E-10 6.03672E-10 6.0918E-10 6.14662E-10 6.20124E-10 6.25571E-10 6.31005E-10 6.3643E-10 6.41848E-10 6.4726E-10 6.52669E-10 6.58075E-10 6.6348E-10 6.68884E-10 6.74289E-10 6.79695E-10 6.85103E-10 6.90513E-10 6.95926E-10 7.01341E-10 7.0676E-10 7.12183E-10 7.1761E-10 7.23041E-10 7.28476E-10 7.33917E-10 7.39361E-10 7.44811E-10 7.50266E-10 7.55726E-10 7.61192E-10 7.66662E-10 7.72139E-10 7.7762E-10 7.83108E-10 7.88601E-10 7.941E-10 7.99604E-10 8.05114E-10 8.10631E-10 8.16153E-10 8.21681E-10 8.27214E-10 8.32754E-10 8.383E-10 8.43852E-10 8.4941E-10 8.54974E-10 8.60544E-10 8.6612E-10 8.71701E-10 8.7729E-10 8.82884E-10 8.88484E-10 8.9409E-10 8.99702E-10 9.05321E-10 9.10945E-10 9.16576E-10 9.22212E-10 9.27855E-10 9.33504E-10 9.39159E-10 9.4482E-10 9.50487E-10 9.5616E-10 9.6184E-10 9.67525E-10 9.73217E-10 9.78915E-10 9.84619E-10 9.90329E-10 9.96045E-10 1.00177E-09 1.0075E-09 1.01323E-09 1.01897E-09 1.02472E-09 1.03047E-09 1.03623E-09 1.042E-09 1.04777E-09 1.05355E-09 1.05934E-09 1.06513E-09 1.07093E-09 1.07673E-09 1.08254E-09 1.08836E-09 1.09419E-09 1.10002E-09 1.10585E-09 1.1117E-09 1.11755E-09 1.12341E-09 1.12928E-09 1.13515E-09 1.14103E-09 1.14692E-09 1.15281E-09 1.15871E-09 1.16462E-09 1.17054E-09 1.17646E-09 1.1824E-09 1.18834E-09 1.19428E-09 1.20024E-09 1.2062E-09 1.21218E-09 1.21816E-09 1.22415E-09 1.23014E-09 1.23615E-09 1.24216E-09 1.24819E-09 1.25422E-09 1.26027E-09 1.26632E-09 1.27238E-09 1.27845E-09 1.28454E-09 1.29063E-09 1.29673E-09 1.30284E-09 1.30897E-09 1.3151E-09 1.32125E-09 1.32741E-09 1.33358E-09 1.33976E-09 1.34596E-09 1.35216E-09 1.35838E-09 1.36462E-09 1.37086E-09 1.37712E-09 1.3834E-09 1.38969E-09 1.39599E-09 1.40231E-09 1.40865E-09 1.415E-09 1.42136E-09 1.42775E-09 1.43415E-09 1.44057E-09 1.44701E-09 1.45347E-09 1.45994E-09 1.46644E-09 1.47296E-09 1.4795E-09 1.48606E-09 1.49264E-09 1.49925E-09 1.50588E-09 1.51254E-09 1.51922E-09 1.52593E-09 1.53267E-09 1.53944E-09 +-2.76589E-08 -1.91443E-08 -1.31798E-08 -9.01312E-09 -6.10546E-09 -4.07238E-09 -2.64101E-09 -1.62106E-09 -8.86825E-10 -3.62117E-10 -1.05093E-12 2.47873E-10 4.2061E-10 5.32328E-10 6.01118E-10 6.43428E-10 6.70807E-10 6.90024E-10 7.04714E-10 7.16798E-10 7.27314E-10 7.36841E-10 7.45722E-10 7.54163E-10 7.62296E-10 7.70207E-10 7.77956E-10 7.85584E-10 7.93118E-10 8.00582E-10 8.0799E-10 8.15354E-10 8.22685E-10 8.29989E-10 8.37271E-10 8.44538E-10 8.51791E-10 8.59036E-10 8.66272E-10 8.73504E-10 8.80733E-10 8.8796E-10 8.95186E-10 9.02413E-10 9.09641E-10 9.16872E-10 9.24106E-10 9.31343E-10 9.38584E-10 9.4583E-10 9.53081E-10 9.60337E-10 9.67599E-10 9.74867E-10 9.82141E-10 9.89421E-10 9.96708E-10 1.004E-09 1.0113E-09 1.01861E-09 1.02592E-09 1.03325E-09 1.04058E-09 1.04791E-09 1.05526E-09 1.06261E-09 1.06997E-09 1.07734E-09 1.08471E-09 1.0921E-09 1.09949E-09 1.10689E-09 1.1143E-09 1.12171E-09 1.12913E-09 1.13657E-09 1.144E-09 1.15145E-09 1.15891E-09 1.16637E-09 1.17384E-09 1.18132E-09 1.18881E-09 1.19631E-09 1.20381E-09 1.21132E-09 1.21884E-09 1.22637E-09 1.23391E-09 1.24145E-09 1.24901E-09 1.25657E-09 1.26414E-09 1.27171E-09 1.2793E-09 1.28689E-09 1.29449E-09 1.3021E-09 1.30972E-09 1.31735E-09 1.32498E-09 1.33263E-09 1.34028E-09 1.34794E-09 1.35561E-09 1.36328E-09 1.37097E-09 1.37866E-09 1.38636E-09 1.39407E-09 1.40179E-09 1.40951E-09 1.41725E-09 1.42499E-09 1.43275E-09 1.44051E-09 1.44828E-09 1.45606E-09 1.46384E-09 1.47164E-09 1.47945E-09 1.48726E-09 1.49508E-09 1.50292E-09 1.51076E-09 1.51861E-09 1.52647E-09 1.53434E-09 1.54222E-09 1.55011E-09 1.55802E-09 1.56593E-09 1.57385E-09 1.58178E-09 1.58972E-09 1.59767E-09 1.60563E-09 1.6136E-09 1.62159E-09 1.62958E-09 1.63759E-09 1.64561E-09 1.65364E-09 1.66168E-09 1.66973E-09 1.6778E-09 1.68588E-09 1.69397E-09 1.70207E-09 1.71019E-09 1.71832E-09 1.72646E-09 1.73462E-09 1.74279E-09 1.75098E-09 1.75918E-09 1.76739E-09 1.77562E-09 1.78387E-09 1.79213E-09 1.80041E-09 1.8087E-09 1.81701E-09 1.82534E-09 1.83369E-09 1.84206E-09 1.85044E-09 1.85884E-09 1.86727E-09 1.87571E-09 1.88417E-09 1.89266E-09 1.90116E-09 1.90969E-09 1.91824E-09 1.92682E-09 1.93541E-09 1.94404E-09 1.95269E-09 1.96136E-09 1.97006E-09 1.9788E-09 1.98755E-09 1.99634E-09 2.00516E-09 2.01401E-09 2.0229E-09 2.03182E-09 2.04077E-09 2.04976E-09 2.05878E-09 +-3.6373E-08 -2.524E-08 -1.74159E-08 -1.19342E-08 -8.09875E-09 -5.41051E-09 -3.5137E-09 -2.15929E-09 -1.18236E-09 -4.8293E-10 -7.77326E-13 3.31941E-10 5.62829E-10 7.12156E-10 8.04103E-10 8.60657E-10 8.97253E-10 9.22938E-10 9.42574E-10 9.58726E-10 9.72781E-10 9.85516E-10 9.97386E-10 1.00867E-09 1.01954E-09 1.03011E-09 1.04047E-09 1.05066E-09 1.06074E-09 1.07071E-09 1.08061E-09 1.09046E-09 1.10025E-09 1.11002E-09 1.11975E-09 1.12946E-09 1.13916E-09 1.14884E-09 1.15851E-09 1.16818E-09 1.17784E-09 1.1875E-09 1.19716E-09 1.20682E-09 1.21648E-09 1.22614E-09 1.23581E-09 1.24548E-09 1.25516E-09 1.26485E-09 1.27454E-09 1.28424E-09 1.29394E-09 1.30366E-09 1.31338E-09 1.32311E-09 1.33285E-09 1.3426E-09 1.35236E-09 1.36212E-09 1.3719E-09 1.38169E-09 1.39148E-09 1.40129E-09 1.41111E-09 1.42093E-09 1.43077E-09 1.44062E-09 1.45048E-09 1.46034E-09 1.47022E-09 1.48011E-09 1.49001E-09 1.49992E-09 1.50985E-09 1.51978E-09 1.52972E-09 1.53968E-09 1.54964E-09 1.55962E-09 1.5696E-09 1.5796E-09 1.58961E-09 1.59963E-09 1.60966E-09 1.6197E-09 1.62975E-09 1.63981E-09 1.64988E-09 1.65997E-09 1.67006E-09 1.68017E-09 1.69028E-09 1.70041E-09 1.71055E-09 1.7207E-09 1.73086E-09 1.74103E-09 1.75121E-09 1.7614E-09 1.77161E-09 1.78182E-09 1.79205E-09 1.80229E-09 1.81253E-09 1.82279E-09 1.83306E-09 1.84335E-09 1.85364E-09 1.86394E-09 1.87426E-09 1.88458E-09 1.89492E-09 1.90527E-09 1.91563E-09 1.92601E-09 1.93639E-09 1.94679E-09 1.95719E-09 1.96761E-09 1.97805E-09 1.98849E-09 1.99895E-09 2.00942E-09 2.0199E-09 2.03039E-09 2.0409E-09 2.05142E-09 2.06195E-09 2.07249E-09 2.08305E-09 2.09362E-09 2.10421E-09 2.11481E-09 2.12542E-09 2.13604E-09 2.14668E-09 2.15734E-09 2.16801E-09 2.17869E-09 2.18939E-09 2.20011E-09 2.21084E-09 2.22158E-09 2.23234E-09 2.24312E-09 2.25392E-09 2.26473E-09 2.27555E-09 2.2864E-09 2.29726E-09 2.30814E-09 2.31904E-09 2.32996E-09 2.3409E-09 2.35185E-09 2.36283E-09 2.37382E-09 2.38484E-09 2.39588E-09 2.40694E-09 2.41802E-09 2.42912E-09 2.44025E-09 2.4514E-09 2.46257E-09 2.47377E-09 2.48499E-09 2.49624E-09 2.50751E-09 2.51882E-09 2.53015E-09 2.5415E-09 2.55289E-09 2.56431E-09 2.57576E-09 2.58724E-09 2.59875E-09 2.6103E-09 2.62188E-09 2.63349E-09 2.64514E-09 2.65683E-09 2.66856E-09 2.68033E-09 2.69214E-09 2.70399E-09 2.71589E-09 2.72783E-09 2.73982E-09 2.75186E-09 +-4.77406E-08 -3.32202E-08 -2.29795E-08 -1.57818E-08 -1.07311E-08 -7.1817E-09 -4.6712E-09 -2.8745E-09 -1.57578E-09 -6.44065E-10 -5.52518E-13 4.43972E-10 7.52449E-10 9.51958E-10 1.07481E-09 1.15036E-09 1.19926E-09 1.23358E-09 1.25981E-09 1.28139E-09 1.30017E-09 1.31718E-09 1.33304E-09 1.34811E-09 1.36264E-09 1.37676E-09 1.3906E-09 1.40422E-09 1.41767E-09 1.431E-09 1.44423E-09 1.45738E-09 1.47047E-09 1.48351E-09 1.49652E-09 1.50949E-09 1.52245E-09 1.53538E-09 1.5483E-09 1.56122E-09 1.57413E-09 1.58703E-09 1.59993E-09 1.61284E-09 1.62575E-09 1.63866E-09 1.65157E-09 1.6645E-09 1.67743E-09 1.69037E-09 1.70331E-09 1.71627E-09 1.72924E-09 1.74221E-09 1.7552E-09 1.7682E-09 1.78121E-09 1.79424E-09 1.80727E-09 1.82032E-09 1.83338E-09 1.84646E-09 1.85955E-09 1.87265E-09 1.88576E-09 1.89889E-09 1.91203E-09 1.92519E-09 1.93836E-09 1.95154E-09 1.96474E-09 1.97795E-09 1.99118E-09 2.00442E-09 2.01768E-09 2.03094E-09 2.04423E-09 2.05753E-09 2.07084E-09 2.08417E-09 2.09751E-09 2.11086E-09 2.12423E-09 2.13762E-09 2.15102E-09 2.16443E-09 2.17786E-09 2.1913E-09 2.20476E-09 2.21823E-09 2.23171E-09 2.24522E-09 2.25873E-09 2.27226E-09 2.2858E-09 2.29936E-09 2.31294E-09 2.32652E-09 2.34013E-09 2.35374E-09 2.36738E-09 2.38102E-09 2.39468E-09 2.40836E-09 2.42205E-09 2.43575E-09 2.44948E-09 2.46321E-09 2.47696E-09 2.49073E-09 2.50451E-09 2.5183E-09 2.53211E-09 2.54594E-09 2.55978E-09 2.57364E-09 2.58751E-09 2.6014E-09 2.6153E-09 2.62922E-09 2.64316E-09 2.65711E-09 2.67108E-09 2.68506E-09 2.69906E-09 2.71308E-09 2.72711E-09 2.74117E-09 2.75523E-09 2.76932E-09 2.78342E-09 2.79755E-09 2.81169E-09 2.82584E-09 2.84002E-09 2.85421E-09 2.86843E-09 2.88266E-09 2.89691E-09 2.91118E-09 2.92547E-09 2.93978E-09 2.95412E-09 2.96847E-09 2.98284E-09 2.99724E-09 3.01165E-09 3.02609E-09 3.04056E-09 3.05504E-09 3.06955E-09 3.08408E-09 3.09864E-09 3.11322E-09 3.12782E-09 3.14245E-09 3.15711E-09 3.17179E-09 3.18651E-09 3.20124E-09 3.21601E-09 3.23081E-09 3.24563E-09 3.26049E-09 3.27537E-09 3.29029E-09 3.30524E-09 3.32023E-09 3.33524E-09 3.3503E-09 3.36538E-09 3.38051E-09 3.39567E-09 3.41087E-09 3.4261E-09 3.44138E-09 3.4567E-09 3.47207E-09 3.48747E-09 3.50292E-09 3.51842E-09 3.53397E-09 3.54956E-09 3.56521E-09 3.5809E-09 3.59666E-09 3.61246E-09 3.62833E-09 3.64425E-09 3.66023E-09 3.67628E-09 +-6.25275E-08 -4.36412E-08 -3.02703E-08 -2.08397E-08 -1.42012E-08 -9.52252E-09 -6.2044E-09 -3.82378E-09 -2.09891E-09 -8.58734E-10 -3.72189E-13 5.9323E-10 1.00516E-09 1.27158E-09 1.43563E-09 1.53653E-09 1.60183E-09 1.64765E-09 1.68268E-09 1.7115E-09 1.73658E-09 1.75929E-09 1.78047E-09 1.8006E-09 1.81999E-09 1.83886E-09 1.85733E-09 1.87552E-09 1.89349E-09 1.91128E-09 1.92895E-09 1.94651E-09 1.96398E-09 1.9814E-09 1.99877E-09 2.01609E-09 2.03339E-09 2.05066E-09 2.06792E-09 2.08516E-09 2.10239E-09 2.11963E-09 2.13686E-09 2.15409E-09 2.17132E-09 2.18856E-09 2.20581E-09 2.22307E-09 2.24033E-09 2.25761E-09 2.2749E-09 2.2922E-09 2.30951E-09 2.32684E-09 2.34419E-09 2.36154E-09 2.37892E-09 2.39631E-09 2.41372E-09 2.43114E-09 2.44858E-09 2.46604E-09 2.48352E-09 2.50101E-09 2.51852E-09 2.53605E-09 2.5536E-09 2.57117E-09 2.58875E-09 2.60636E-09 2.62398E-09 2.64162E-09 2.65928E-09 2.67696E-09 2.69466E-09 2.71238E-09 2.73012E-09 2.74787E-09 2.76565E-09 2.78344E-09 2.80126E-09 2.81909E-09 2.83694E-09 2.85481E-09 2.87271E-09 2.89062E-09 2.90855E-09 2.92649E-09 2.94446E-09 2.96245E-09 2.98046E-09 2.99849E-09 3.01653E-09 3.0346E-09 3.05268E-09 3.07079E-09 3.08891E-09 3.10705E-09 3.12521E-09 3.1434E-09 3.1616E-09 3.17982E-09 3.19806E-09 3.21632E-09 3.2346E-09 3.2529E-09 3.27122E-09 3.28956E-09 3.30792E-09 3.3263E-09 3.3447E-09 3.36312E-09 3.38156E-09 3.40002E-09 3.4185E-09 3.437E-09 3.45553E-09 3.47407E-09 3.49263E-09 3.51122E-09 3.52983E-09 3.54845E-09 3.5671E-09 3.58578E-09 3.60447E-09 3.62318E-09 3.64192E-09 3.66068E-09 3.67947E-09 3.69827E-09 3.7171E-09 3.73596E-09 3.75484E-09 3.77374E-09 3.79266E-09 3.81161E-09 3.83059E-09 3.84959E-09 3.86862E-09 3.88767E-09 3.90675E-09 3.92586E-09 3.94499E-09 3.96415E-09 3.98334E-09 4.00256E-09 4.0218E-09 4.04108E-09 4.06038E-09 4.07972E-09 4.09909E-09 4.11848E-09 4.13791E-09 4.15738E-09 4.17687E-09 4.1964E-09 4.21596E-09 4.23556E-09 4.2552E-09 4.27487E-09 4.29458E-09 4.31433E-09 4.33411E-09 4.35394E-09 4.3738E-09 4.39371E-09 4.41366E-09 4.43365E-09 4.45369E-09 4.47378E-09 4.49391E-09 4.51408E-09 4.53431E-09 4.55459E-09 4.57492E-09 4.5953E-09 4.61573E-09 4.63622E-09 4.65677E-09 4.67738E-09 4.69805E-09 4.71878E-09 4.73957E-09 4.76043E-09 4.78136E-09 4.80236E-09 4.82343E-09 4.84457E-09 4.86579E-09 4.88709E-09 4.90848E-09 +-8.17027E-08 -5.72114E-08 -3.98006E-08 -2.7474E-08 -1.87669E-08 -1.26109E-08 -8.23223E-09 -5.08206E-09 -2.79371E-09 -1.1444E-09 -2.32307E-13 7.91982E-10 1.34175E-09 1.69732E-09 1.91626E-09 2.05093E-09 2.13807E-09 2.19923E-09 2.24598E-09 2.28444E-09 2.31791E-09 2.34823E-09 2.37649E-09 2.40335E-09 2.42923E-09 2.45441E-09 2.47906E-09 2.50334E-09 2.52731E-09 2.55106E-09 2.57463E-09 2.59807E-09 2.62139E-09 2.64464E-09 2.66781E-09 2.69093E-09 2.71401E-09 2.73706E-09 2.76009E-09 2.7831E-09 2.8061E-09 2.8291E-09 2.85209E-09 2.87509E-09 2.89809E-09 2.9211E-09 2.94411E-09 2.96714E-09 2.99018E-09 3.01324E-09 3.03631E-09 3.0594E-09 3.08251E-09 3.10563E-09 3.12878E-09 3.15194E-09 3.17513E-09 3.19834E-09 3.22157E-09 3.24482E-09 3.26809E-09 3.29139E-09 3.31471E-09 3.33806E-09 3.36143E-09 3.38482E-09 3.40824E-09 3.43168E-09 3.45515E-09 3.47864E-09 3.50216E-09 3.5257E-09 3.54927E-09 3.57286E-09 3.59648E-09 3.62013E-09 3.6438E-09 3.66749E-09 3.69121E-09 3.71496E-09 3.73873E-09 3.76253E-09 3.78635E-09 3.8102E-09 3.83408E-09 3.85798E-09 3.88191E-09 3.90586E-09 3.92984E-09 3.95384E-09 3.97787E-09 4.00193E-09 4.02601E-09 4.05012E-09 4.07425E-09 4.09841E-09 4.1226E-09 4.14681E-09 4.17104E-09 4.19531E-09 4.2196E-09 4.24391E-09 4.26825E-09 4.29262E-09 4.31701E-09 4.34143E-09 4.36588E-09 4.39035E-09 4.41485E-09 4.43938E-09 4.46393E-09 4.48851E-09 4.51312E-09 4.53775E-09 4.56242E-09 4.5871E-09 4.61182E-09 4.63657E-09 4.66134E-09 4.68614E-09 4.71097E-09 4.73582E-09 4.76071E-09 4.78562E-09 4.81057E-09 4.83554E-09 4.86055E-09 4.88558E-09 4.91064E-09 4.93574E-09 4.96086E-09 4.98602E-09 5.01121E-09 5.03643E-09 5.06168E-09 5.08697E-09 5.11229E-09 5.13764E-09 5.16303E-09 5.18845E-09 5.21391E-09 5.2394E-09 5.26493E-09 5.29049E-09 5.31609E-09 5.34173E-09 5.36741E-09 5.39313E-09 5.41888E-09 5.44468E-09 5.47052E-09 5.4964E-09 5.52232E-09 5.54828E-09 5.57429E-09 5.60034E-09 5.62644E-09 5.65259E-09 5.67878E-09 5.70502E-09 5.73131E-09 5.75765E-09 5.78404E-09 5.81048E-09 5.83698E-09 5.86353E-09 5.89013E-09 5.9168E-09 5.94352E-09 5.9703E-09 5.99714E-09 6.02405E-09 6.05102E-09 6.07806E-09 6.10516E-09 6.13233E-09 6.15958E-09 6.18689E-09 6.21429E-09 6.24175E-09 6.2693E-09 6.29693E-09 6.32464E-09 6.35244E-09 6.38033E-09 6.40831E-09 6.43638E-09 6.46455E-09 6.49282E-09 6.52119E-09 6.54967E-09 +-1.06485E-07 -7.48288E-08 -5.22241E-08 -3.61547E-08 -2.47611E-08 -1.66778E-08 -1.09098E-08 -6.7475E-09 -3.71532E-09 -1.52407E-09 -1.29095E-13 1.05645E-09 1.78969E-09 2.26393E-09 2.55595E-09 2.73556E-09 2.85179E-09 2.93336E-09 2.99572E-09 3.04701E-09 3.09164E-09 3.13208E-09 3.16977E-09 3.20559E-09 3.24011E-09 3.27369E-09 3.30657E-09 3.33894E-09 3.37091E-09 3.40259E-09 3.43402E-09 3.46528E-09 3.49639E-09 3.52738E-09 3.55829E-09 3.58912E-09 3.61991E-09 3.65065E-09 3.68136E-09 3.71205E-09 3.74272E-09 3.77339E-09 3.80405E-09 3.83472E-09 3.8654E-09 3.89608E-09 3.92677E-09 3.95748E-09 3.98821E-09 4.01896E-09 4.04973E-09 4.08052E-09 4.11134E-09 4.14218E-09 4.17304E-09 4.20393E-09 4.23486E-09 4.26581E-09 4.29678E-09 4.32779E-09 4.35883E-09 4.3899E-09 4.42101E-09 4.45214E-09 4.4833E-09 4.5145E-09 4.54573E-09 4.577E-09 4.60829E-09 4.63962E-09 4.67098E-09 4.70238E-09 4.73381E-09 4.76527E-09 4.79677E-09 4.8283E-09 4.85987E-09 4.89147E-09 4.9231E-09 4.95477E-09 4.98647E-09 5.01821E-09 5.04998E-09 5.08179E-09 5.11363E-09 5.1455E-09 5.17741E-09 5.20935E-09 5.24133E-09 5.27334E-09 5.30538E-09 5.33746E-09 5.36958E-09 5.40173E-09 5.43391E-09 5.46613E-09 5.49838E-09 5.53067E-09 5.56299E-09 5.59534E-09 5.62774E-09 5.66016E-09 5.69262E-09 5.72512E-09 5.75765E-09 5.79021E-09 5.82281E-09 5.85545E-09 5.88812E-09 5.92082E-09 5.95357E-09 5.98634E-09 6.01916E-09 6.05201E-09 6.0849E-09 6.11782E-09 6.15078E-09 6.18377E-09 6.21681E-09 6.24988E-09 6.28299E-09 6.31613E-09 6.34932E-09 6.38254E-09 6.41581E-09 6.44911E-09 6.48245E-09 6.51583E-09 6.54925E-09 6.58271E-09 6.61622E-09 6.64976E-09 6.68335E-09 6.71698E-09 6.75065E-09 6.78437E-09 6.81813E-09 6.85194E-09 6.88579E-09 6.91968E-09 6.95362E-09 6.98761E-09 7.02165E-09 7.05574E-09 7.08987E-09 7.12406E-09 7.15829E-09 7.19258E-09 7.22692E-09 7.26131E-09 7.29576E-09 7.33026E-09 7.36482E-09 7.39943E-09 7.43411E-09 7.46884E-09 7.50363E-09 7.53848E-09 7.5734E-09 7.60837E-09 7.64342E-09 7.67853E-09 7.7137E-09 7.74895E-09 7.78427E-09 7.81965E-09 7.85512E-09 7.89065E-09 7.92627E-09 7.96196E-09 7.99773E-09 8.03358E-09 8.06952E-09 8.10555E-09 8.14166E-09 8.17787E-09 8.21416E-09 8.25056E-09 8.28705E-09 8.32364E-09 8.36033E-09 8.39713E-09 8.43404E-09 8.47106E-09 8.5082E-09 8.54546E-09 8.58283E-09 8.62034E-09 8.65797E-09 8.69574E-09 8.73365E-09 +-1.38399E-07 -9.76247E-08 -6.83707E-08 -4.74825E-08 -3.26119E-08 -2.20219E-08 -1.44386E-08 -8.94823E-09 -4.93603E-09 -2.02806E-09 -5.89689E-14 1.40805E-09 2.38525E-09 3.0173E-09 3.4065E-09 3.64588E-09 3.80079E-09 3.9095E-09 3.99261E-09 4.06096E-09 4.12044E-09 4.17433E-09 4.22456E-09 4.2723E-09 4.3183E-09 4.36304E-09 4.40687E-09 4.45E-09 4.49261E-09 4.53482E-09 4.57672E-09 4.61837E-09 4.65982E-09 4.70113E-09 4.74231E-09 4.7834E-09 4.82442E-09 4.86539E-09 4.90631E-09 4.94721E-09 4.98809E-09 5.02895E-09 5.06982E-09 5.11069E-09 5.15156E-09 5.19245E-09 5.23336E-09 5.27428E-09 5.31523E-09 5.3562E-09 5.3972E-09 5.43824E-09 5.4793E-09 5.5204E-09 5.56153E-09 5.6027E-09 5.6439E-09 5.68514E-09 5.72643E-09 5.76775E-09 5.80911E-09 5.85051E-09 5.89196E-09 5.93345E-09 5.97498E-09 6.01655E-09 6.05817E-09 6.09983E-09 6.14153E-09 6.18328E-09 6.22507E-09 6.26691E-09 6.30879E-09 6.35072E-09 6.39269E-09 6.43471E-09 6.47677E-09 6.51888E-09 6.56104E-09 6.60324E-09 6.64548E-09 6.68777E-09 6.73011E-09 6.77249E-09 6.81492E-09 6.85739E-09 6.89991E-09 6.94247E-09 6.98509E-09 7.02774E-09 7.07044E-09 7.11319E-09 7.15598E-09 7.19882E-09 7.24171E-09 7.28464E-09 7.32762E-09 7.37064E-09 7.41371E-09 7.45683E-09 7.49999E-09 7.54319E-09 7.58645E-09 7.62975E-09 7.67309E-09 7.71649E-09 7.75993E-09 7.80342E-09 7.84695E-09 7.89053E-09 7.93416E-09 7.97784E-09 8.02156E-09 8.06533E-09 8.10915E-09 8.15302E-09 8.19694E-09 8.24091E-09 8.28492E-09 8.32899E-09 8.37311E-09 8.41727E-09 8.46149E-09 8.50576E-09 8.55008E-09 8.59445E-09 8.63888E-09 8.68336E-09 8.72789E-09 8.77247E-09 8.81711E-09 8.86181E-09 8.90656E-09 8.95137E-09 8.99624E-09 9.04116E-09 9.08614E-09 9.13118E-09 9.17628E-09 9.22144E-09 9.26666E-09 9.31195E-09 9.3573E-09 9.40271E-09 9.44819E-09 9.49373E-09 9.53934E-09 9.58502E-09 9.63077E-09 9.67659E-09 9.72248E-09 9.76844E-09 9.81448E-09 9.86059E-09 9.90678E-09 9.95304E-09 9.99939E-09 1.00458E-08 1.00923E-08 1.01389E-08 1.01856E-08 1.02324E-08 1.02792E-08 1.03262E-08 1.03732E-08 1.04203E-08 1.04675E-08 1.05149E-08 1.05623E-08 1.06098E-08 1.06575E-08 1.07052E-08 1.07531E-08 1.0801E-08 1.08491E-08 1.08973E-08 1.09456E-08 1.09941E-08 1.10427E-08 1.10914E-08 1.11402E-08 1.11892E-08 1.12383E-08 1.12876E-08 1.1337E-08 1.13866E-08 1.14363E-08 1.14862E-08 1.15363E-08 1.15865E-08 1.16369E-08 +-1.79339E-07 -1.27016E-07 -8.92875E-08 -6.2221E-08 -4.2867E-08 -2.90278E-08 -1.90796E-08 -1.1851E-08 -6.55029E-09 -2.69608E-09 -1.82281E-14 1.87496E-09 3.17619E-09 4.01784E-09 4.53612E-09 4.85491E-09 5.06119E-09 5.20596E-09 5.31662E-09 5.40764E-09 5.48684E-09 5.55859E-09 5.62547E-09 5.68904E-09 5.75028E-09 5.80986E-09 5.86821E-09 5.92564E-09 5.98238E-09 6.03858E-09 6.09436E-09 6.14981E-09 6.20501E-09 6.26E-09 6.31484E-09 6.36955E-09 6.42417E-09 6.47871E-09 6.5332E-09 6.58765E-09 6.64208E-09 6.69649E-09 6.7509E-09 6.80531E-09 6.85973E-09 6.91417E-09 6.96864E-09 7.02312E-09 7.07764E-09 7.1322E-09 7.18679E-09 7.24142E-09 7.29609E-09 7.35081E-09 7.40557E-09 7.46038E-09 7.51525E-09 7.57016E-09 7.62512E-09 7.68014E-09 7.73521E-09 7.79033E-09 7.84551E-09 7.90075E-09 7.95604E-09 8.01139E-09 8.0668E-09 8.12227E-09 8.1778E-09 8.23338E-09 8.28902E-09 8.34473E-09 8.40049E-09 8.45631E-09 8.51219E-09 8.56813E-09 8.62414E-09 8.6802E-09 8.73632E-09 8.79251E-09 8.84875E-09 8.90506E-09 8.96142E-09 9.01785E-09 9.07434E-09 9.13088E-09 9.18749E-09 9.24416E-09 9.30089E-09 9.35768E-09 9.41454E-09 9.47145E-09 9.52842E-09 9.58546E-09 9.64255E-09 9.69971E-09 9.75693E-09 9.81421E-09 9.87155E-09 9.92895E-09 9.98641E-09 1.00439E-08 1.01015E-08 1.01592E-08 1.02169E-08 1.02746E-08 1.03325E-08 1.03904E-08 1.04483E-08 1.05064E-08 1.05644E-08 1.06226E-08 1.06808E-08 1.07391E-08 1.07974E-08 1.08558E-08 1.09143E-08 1.09728E-08 1.10314E-08 1.10901E-08 1.11488E-08 1.12076E-08 1.12665E-08 1.13254E-08 1.13844E-08 1.14435E-08 1.15026E-08 1.15618E-08 1.16211E-08 1.16805E-08 1.17399E-08 1.17994E-08 1.1859E-08 1.19186E-08 1.19784E-08 1.20382E-08 1.2098E-08 1.2158E-08 1.2218E-08 1.22782E-08 1.23384E-08 1.23986E-08 1.2459E-08 1.25194E-08 1.258E-08 1.26406E-08 1.27013E-08 1.27621E-08 1.2823E-08 1.2884E-08 1.29451E-08 1.30063E-08 1.30675E-08 1.31289E-08 1.31904E-08 1.3252E-08 1.33136E-08 1.33754E-08 1.34373E-08 1.34993E-08 1.35615E-08 1.36237E-08 1.3686E-08 1.37485E-08 1.38111E-08 1.38738E-08 1.39367E-08 1.39996E-08 1.40627E-08 1.4126E-08 1.41894E-08 1.42529E-08 1.43165E-08 1.43804E-08 1.44443E-08 1.45084E-08 1.45727E-08 1.46372E-08 1.47018E-08 1.47666E-08 1.48315E-08 1.48967E-08 1.4962E-08 1.50275E-08 1.50932E-08 1.51591E-08 1.52252E-08 1.52916E-08 1.53581E-08 1.54249E-08 1.54919E-08 +-2.31644E-07 -1.64767E-07 -1.16288E-07 -8.13352E-08 -5.62238E-08 -3.81882E-08 -2.51693E-08 -1.56718E-08 -8.68114E-09 -3.58013E-09 -3.84696E-24 2.4942E-09 4.22523E-09 5.34492E-09 6.03445E-09 6.45856E-09 6.73299E-09 6.92559E-09 7.0728E-09 7.19389E-09 7.29924E-09 7.39469E-09 7.48365E-09 7.56821E-09 7.64968E-09 7.72892E-09 7.80654E-09 7.88294E-09 7.9584E-09 8.03315E-09 8.10735E-09 8.18111E-09 8.25453E-09 8.32768E-09 8.40062E-09 8.47339E-09 8.54604E-09 8.61859E-09 8.69107E-09 8.76349E-09 8.83589E-09 8.90826E-09 8.98063E-09 9.05301E-09 9.12539E-09 9.19781E-09 9.27025E-09 9.34272E-09 9.41524E-09 9.4878E-09 9.56041E-09 9.63308E-09 9.7058E-09 9.77858E-09 9.85142E-09 9.92432E-09 9.99729E-09 1.00703E-08 1.01434E-08 1.02166E-08 1.02899E-08 1.03632E-08 1.04366E-08 1.051E-08 1.05836E-08 1.06572E-08 1.07309E-08 1.08047E-08 1.08785E-08 1.09525E-08 1.10265E-08 1.11006E-08 1.11747E-08 1.1249E-08 1.13233E-08 1.13977E-08 1.14722E-08 1.15468E-08 1.16214E-08 1.16961E-08 1.1771E-08 1.18458E-08 1.19208E-08 1.19959E-08 1.2071E-08 1.21462E-08 1.22215E-08 1.22969E-08 1.23723E-08 1.24479E-08 1.25235E-08 1.25992E-08 1.2675E-08 1.27508E-08 1.28267E-08 1.29028E-08 1.29789E-08 1.30551E-08 1.31313E-08 1.32077E-08 1.32841E-08 1.33606E-08 1.34372E-08 1.35139E-08 1.35906E-08 1.36674E-08 1.37444E-08 1.38214E-08 1.38985E-08 1.39756E-08 1.40529E-08 1.41302E-08 1.42076E-08 1.42851E-08 1.43627E-08 1.44404E-08 1.45182E-08 1.4596E-08 1.46739E-08 1.4752E-08 1.48301E-08 1.49083E-08 1.49866E-08 1.50649E-08 1.51434E-08 1.5222E-08 1.53006E-08 1.53794E-08 1.54582E-08 1.55372E-08 1.56162E-08 1.56953E-08 1.57746E-08 1.58539E-08 1.59333E-08 1.60128E-08 1.60925E-08 1.61722E-08 1.6252E-08 1.6332E-08 1.6412E-08 1.64922E-08 1.65725E-08 1.66529E-08 1.67334E-08 1.6814E-08 1.68947E-08 1.69756E-08 1.70565E-08 1.71376E-08 1.72189E-08 1.73002E-08 1.73817E-08 1.74633E-08 1.7545E-08 1.76269E-08 1.77089E-08 1.77911E-08 1.78734E-08 1.79558E-08 1.80384E-08 1.81211E-08 1.8204E-08 1.82871E-08 1.83703E-08 1.84537E-08 1.85372E-08 1.86209E-08 1.87048E-08 1.87889E-08 1.88731E-08 1.89575E-08 1.90421E-08 1.9127E-08 1.9212E-08 1.92972E-08 1.93826E-08 1.94682E-08 1.95541E-08 1.96402E-08 1.97265E-08 1.9813E-08 1.98998E-08 1.99868E-08 2.00741E-08 2.01617E-08 2.02495E-08 2.03376E-08 2.0426E-08 2.05146E-08 2.06036E-08 +-2.98187E-07 -2.13061E-07 -1.51012E-07 -1.06038E-07 -7.35653E-08 -5.01315E-08 -3.31393E-08 -2.06896E-08 -1.14882E-08 -4.74796E-09 1.85195E-14 3.31427E-09 5.61454E-09 7.10252E-09 8.01887E-09 8.58251E-09 8.94722E-09 9.20317E-09 9.39879E-09 9.5597E-09 9.69969E-09 9.82652E-09 9.94473E-09 1.00571E-08 1.01653E-08 1.02706E-08 1.03737E-08 1.04752E-08 1.05755E-08 1.06748E-08 1.07734E-08 1.08714E-08 1.0969E-08 1.10662E-08 1.11631E-08 1.12598E-08 1.13563E-08 1.14527E-08 1.1549E-08 1.16452E-08 1.17414E-08 1.18375E-08 1.19337E-08 1.20298E-08 1.2126E-08 1.22222E-08 1.23185E-08 1.24148E-08 1.25111E-08 1.26075E-08 1.2704E-08 1.28005E-08 1.28972E-08 1.29938E-08 1.30906E-08 1.31875E-08 1.32844E-08 1.33815E-08 1.34786E-08 1.35758E-08 1.36731E-08 1.37705E-08 1.38681E-08 1.39657E-08 1.40634E-08 1.41612E-08 1.42591E-08 1.43571E-08 1.44552E-08 1.45535E-08 1.46518E-08 1.47502E-08 1.48488E-08 1.49474E-08 1.50461E-08 1.5145E-08 1.5244E-08 1.5343E-08 1.54422E-08 1.55415E-08 1.56409E-08 1.57404E-08 1.584E-08 1.59397E-08 1.60395E-08 1.61394E-08 1.62394E-08 1.63396E-08 1.64398E-08 1.65402E-08 1.66406E-08 1.67412E-08 1.68419E-08 1.69426E-08 1.70435E-08 1.71445E-08 1.72456E-08 1.73468E-08 1.74482E-08 1.75496E-08 1.76511E-08 1.77528E-08 1.78545E-08 1.79564E-08 1.80583E-08 1.81604E-08 1.82626E-08 1.83649E-08 1.84673E-08 1.85698E-08 1.86724E-08 1.87752E-08 1.8878E-08 1.8981E-08 1.90841E-08 1.91873E-08 1.92906E-08 1.9394E-08 1.94975E-08 1.96012E-08 1.97049E-08 1.98088E-08 1.99128E-08 2.00169E-08 2.01212E-08 2.02256E-08 2.033E-08 2.04346E-08 2.05394E-08 2.06442E-08 2.07492E-08 2.08543E-08 2.09596E-08 2.1065E-08 2.11705E-08 2.12761E-08 2.13819E-08 2.14878E-08 2.15939E-08 2.17001E-08 2.18064E-08 2.19129E-08 2.20195E-08 2.21263E-08 2.22332E-08 2.23403E-08 2.24475E-08 2.25549E-08 2.26625E-08 2.27702E-08 2.28781E-08 2.29861E-08 2.30943E-08 2.32027E-08 2.33113E-08 2.342E-08 2.35289E-08 2.3638E-08 2.37473E-08 2.38568E-08 2.39665E-08 2.40764E-08 2.41865E-08 2.42967E-08 2.44072E-08 2.45179E-08 2.46289E-08 2.474E-08 2.48514E-08 2.4963E-08 2.50749E-08 2.5187E-08 2.52993E-08 2.54119E-08 2.55247E-08 2.56379E-08 2.57512E-08 2.58649E-08 2.59789E-08 2.60931E-08 2.62077E-08 2.63225E-08 2.64377E-08 2.65532E-08 2.6669E-08 2.67852E-08 2.69017E-08 2.70185E-08 2.71358E-08 2.72534E-08 2.73714E-08 +-3.82473E-07 -2.7458E-07 -1.95488E-07 -1.37844E-07 -9.60026E-08 -6.5654E-08 -4.35406E-08 -2.72626E-08 -1.51777E-08 -6.2876E-09 6.02259E-14 4.39847E-09 7.45138E-09 9.42635E-09 1.06427E-08 1.13909E-08 1.1875E-08 1.22147E-08 1.24743E-08 1.26879E-08 1.28737E-08 1.3042E-08 1.31988E-08 1.33479E-08 1.34916E-08 1.36313E-08 1.37682E-08 1.39029E-08 1.40359E-08 1.41677E-08 1.42985E-08 1.44286E-08 1.4558E-08 1.4687E-08 1.48156E-08 1.49439E-08 1.50719E-08 1.51998E-08 1.53276E-08 1.54553E-08 1.55829E-08 1.57105E-08 1.58381E-08 1.59657E-08 1.60933E-08 1.6221E-08 1.63487E-08 1.64765E-08 1.66043E-08 1.67322E-08 1.68603E-08 1.69884E-08 1.71166E-08 1.72449E-08 1.73733E-08 1.75018E-08 1.76304E-08 1.77592E-08 1.78881E-08 1.80171E-08 1.81462E-08 1.82755E-08 1.84048E-08 1.85344E-08 1.8664E-08 1.87938E-08 1.89237E-08 1.90538E-08 1.9184E-08 1.93143E-08 1.94448E-08 1.95754E-08 1.97061E-08 1.9837E-08 1.9968E-08 2.00992E-08 2.02305E-08 2.03619E-08 2.04935E-08 2.06253E-08 2.07571E-08 2.08891E-08 2.10213E-08 2.11536E-08 2.1286E-08 2.14186E-08 2.15513E-08 2.16842E-08 2.18172E-08 2.19503E-08 2.20836E-08 2.22171E-08 2.23506E-08 2.24844E-08 2.26182E-08 2.27522E-08 2.28864E-08 2.30207E-08 2.31551E-08 2.32897E-08 2.34244E-08 2.35592E-08 2.36942E-08 2.38294E-08 2.39647E-08 2.41001E-08 2.42357E-08 2.43714E-08 2.45073E-08 2.46433E-08 2.47795E-08 2.49158E-08 2.50522E-08 2.51888E-08 2.53256E-08 2.54625E-08 2.55996E-08 2.57368E-08 2.58741E-08 2.60117E-08 2.61493E-08 2.62872E-08 2.64251E-08 2.65633E-08 2.67016E-08 2.684E-08 2.69787E-08 2.71175E-08 2.72564E-08 2.73955E-08 2.75348E-08 2.76743E-08 2.78139E-08 2.79537E-08 2.80937E-08 2.82338E-08 2.83742E-08 2.85147E-08 2.86554E-08 2.87962E-08 2.89373E-08 2.90786E-08 2.922E-08 2.93617E-08 2.95035E-08 2.96456E-08 2.97878E-08 2.99303E-08 3.0073E-08 3.02158E-08 3.03589E-08 3.05023E-08 3.06458E-08 3.07896E-08 3.09336E-08 3.10778E-08 3.12223E-08 3.1367E-08 3.1512E-08 3.16572E-08 3.18026E-08 3.19484E-08 3.20944E-08 3.22406E-08 3.23872E-08 3.2534E-08 3.26811E-08 3.28285E-08 3.29762E-08 3.31242E-08 3.32725E-08 3.34211E-08 3.35701E-08 3.37194E-08 3.3869E-08 3.4019E-08 3.41693E-08 3.432E-08 3.4471E-08 3.46225E-08 3.47743E-08 3.49265E-08 3.50792E-08 3.52323E-08 3.53857E-08 3.55397E-08 3.56941E-08 3.58489E-08 3.60043E-08 3.61601E-08 3.63164E-08 +-4.88758E-07 -3.52605E-07 -2.52217E-07 -1.78634E-07 -1.24926E-07 -8.57598E-08 -5.70727E-08 -3.58488E-08 -2.0015E-08 -8.31291E-09 1.32287E-13 5.82908E-09 9.87524E-09 1.2493E-08 1.41053E-08 1.50971E-08 1.57388E-08 1.61891E-08 1.65333E-08 1.68163E-08 1.70625E-08 1.72856E-08 1.74934E-08 1.7691E-08 1.78814E-08 1.80665E-08 1.82478E-08 1.84263E-08 1.86026E-08 1.87773E-08 1.89506E-08 1.91229E-08 1.92944E-08 1.94653E-08 1.96357E-08 1.98057E-08 1.99754E-08 2.01449E-08 2.03142E-08 2.04834E-08 2.06525E-08 2.08216E-08 2.09906E-08 2.11597E-08 2.13288E-08 2.14979E-08 2.16672E-08 2.18364E-08 2.20058E-08 2.21753E-08 2.23449E-08 2.25147E-08 2.26845E-08 2.28545E-08 2.30247E-08 2.3195E-08 2.33654E-08 2.3536E-08 2.37068E-08 2.38777E-08 2.40488E-08 2.42201E-08 2.43915E-08 2.45631E-08 2.47349E-08 2.49068E-08 2.5079E-08 2.52513E-08 2.54238E-08 2.55965E-08 2.57693E-08 2.59424E-08 2.61156E-08 2.6289E-08 2.64626E-08 2.66364E-08 2.68104E-08 2.69845E-08 2.71589E-08 2.73334E-08 2.75081E-08 2.7683E-08 2.78581E-08 2.80334E-08 2.82089E-08 2.83845E-08 2.85604E-08 2.87364E-08 2.89126E-08 2.90891E-08 2.92657E-08 2.94424E-08 2.96194E-08 2.97966E-08 2.99739E-08 3.01515E-08 3.03292E-08 3.05071E-08 3.06852E-08 3.08635E-08 3.1042E-08 3.12206E-08 3.13995E-08 3.15786E-08 3.17578E-08 3.19372E-08 3.21169E-08 3.22967E-08 3.24767E-08 3.26569E-08 3.28373E-08 3.30179E-08 3.31987E-08 3.33796E-08 3.35608E-08 3.37422E-08 3.39238E-08 3.41056E-08 3.42875E-08 3.44697E-08 3.46521E-08 3.48347E-08 3.50175E-08 3.52005E-08 3.53837E-08 3.55672E-08 3.57508E-08 3.59347E-08 3.61188E-08 3.63031E-08 3.64876E-08 3.66723E-08 3.68573E-08 3.70425E-08 3.72279E-08 3.74136E-08 3.75995E-08 3.77856E-08 3.7972E-08 3.81586E-08 3.83455E-08 3.85326E-08 3.872E-08 3.89077E-08 3.90956E-08 3.92837E-08 3.94722E-08 3.96609E-08 3.98498E-08 4.00391E-08 4.02286E-08 4.04185E-08 4.06086E-08 4.0799E-08 4.09898E-08 4.11808E-08 4.13721E-08 4.15638E-08 4.17558E-08 4.19481E-08 4.21408E-08 4.23338E-08 4.25271E-08 4.27208E-08 4.29149E-08 4.31093E-08 4.33041E-08 4.34993E-08 4.36949E-08 4.38909E-08 4.40872E-08 4.4284E-08 4.44813E-08 4.46789E-08 4.4877E-08 4.50755E-08 4.52746E-08 4.5474E-08 4.5674E-08 4.58745E-08 4.60754E-08 4.62769E-08 4.64789E-08 4.66815E-08 4.68846E-08 4.70883E-08 4.72926E-08 4.74975E-08 4.77031E-08 4.79092E-08 4.8116E-08 +-6.22182E-07 -4.51122E-07 -3.24259E-07 -2.30727E-07 -1.62062E-07 -1.11706E-07 -7.46184E-08 -4.70299E-08 -2.63393E-08 -1.09705E-08 2.3897E-13 7.71268E-09 1.30668E-08 1.65312E-08 1.86652E-08 1.9978E-08 2.08273E-08 2.14233E-08 2.18787E-08 2.22532E-08 2.2579E-08 2.28742E-08 2.31492E-08 2.34106E-08 2.36624E-08 2.39074E-08 2.41473E-08 2.43834E-08 2.46166E-08 2.48477E-08 2.5077E-08 2.53049E-08 2.55318E-08 2.57579E-08 2.59833E-08 2.62082E-08 2.64327E-08 2.66569E-08 2.68809E-08 2.71047E-08 2.73284E-08 2.75521E-08 2.77757E-08 2.79993E-08 2.8223E-08 2.84468E-08 2.86706E-08 2.88946E-08 2.91187E-08 2.93429E-08 2.95672E-08 2.97918E-08 3.00165E-08 3.02414E-08 3.04664E-08 3.06917E-08 3.09172E-08 3.11428E-08 3.13687E-08 3.15948E-08 3.18211E-08 3.20477E-08 3.22745E-08 3.25015E-08 3.27287E-08 3.29561E-08 3.31839E-08 3.34118E-08 3.364E-08 3.38684E-08 3.4097E-08 3.43259E-08 3.45551E-08 3.47845E-08 3.50141E-08 3.5244E-08 3.54741E-08 3.57045E-08 3.59351E-08 3.6166E-08 3.63971E-08 3.66284E-08 3.686E-08 3.70919E-08 3.7324E-08 3.75564E-08 3.7789E-08 3.80218E-08 3.82549E-08 3.84882E-08 3.87218E-08 3.89557E-08 3.91898E-08 3.94241E-08 3.96587E-08 3.98935E-08 4.01286E-08 4.03639E-08 4.05995E-08 4.08353E-08 4.10714E-08 4.13077E-08 4.15443E-08 4.17811E-08 4.20182E-08 4.22556E-08 4.24932E-08 4.2731E-08 4.29691E-08 4.32074E-08 4.3446E-08 4.36849E-08 4.3924E-08 4.41634E-08 4.44031E-08 4.4643E-08 4.48831E-08 4.51236E-08 4.53642E-08 4.56052E-08 4.58464E-08 4.6088E-08 4.63297E-08 4.65718E-08 4.68141E-08 4.70567E-08 4.72996E-08 4.75428E-08 4.77863E-08 4.803E-08 4.82741E-08 4.85184E-08 4.8763E-08 4.9008E-08 4.92532E-08 4.94988E-08 4.97446E-08 4.99908E-08 5.02373E-08 5.04841E-08 5.07313E-08 5.09787E-08 5.12265E-08 5.14747E-08 5.17232E-08 5.1972E-08 5.22212E-08 5.24708E-08 5.27207E-08 5.29709E-08 5.32216E-08 5.34726E-08 5.3724E-08 5.39759E-08 5.42281E-08 5.44807E-08 5.47337E-08 5.49871E-08 5.5241E-08 5.54953E-08 5.575E-08 5.60052E-08 5.62609E-08 5.6517E-08 5.67735E-08 5.70306E-08 5.72881E-08 5.75462E-08 5.78047E-08 5.80638E-08 5.83234E-08 5.85836E-08 5.88443E-08 5.91055E-08 5.93674E-08 5.96298E-08 5.98928E-08 6.01565E-08 6.04207E-08 6.06857E-08 6.09512E-08 6.12175E-08 6.14844E-08 6.17521E-08 6.20205E-08 6.22896E-08 6.25595E-08 6.28302E-08 6.31016E-08 6.33739E-08 6.36471E-08 +-7.88928E-07 -5.74954E-07 -4.15339E-07 -2.96963E-07 -2.09545E-07 -1.45058E-07 -9.72846E-08 -6.15414E-08 -3.45826E-08 -1.44482E-08 3.8483E-13 1.01867E-08 1.72592E-08 2.18362E-08 2.46559E-08 2.63906E-08 2.75129E-08 2.83003E-08 2.89019E-08 2.93967E-08 2.9827E-08 3.02168E-08 3.058E-08 3.09252E-08 3.12578E-08 3.15813E-08 3.18981E-08 3.22099E-08 3.25179E-08 3.2823E-08 3.31258E-08 3.34268E-08 3.37264E-08 3.4025E-08 3.43226E-08 3.46196E-08 3.4916E-08 3.52121E-08 3.55078E-08 3.58034E-08 3.60988E-08 3.63941E-08 3.66894E-08 3.69847E-08 3.728E-08 3.75755E-08 3.78711E-08 3.81668E-08 3.84627E-08 3.87587E-08 3.9055E-08 3.93515E-08 3.96481E-08 3.99451E-08 4.02423E-08 4.05397E-08 4.08374E-08 4.11354E-08 4.14337E-08 4.17322E-08 4.2031E-08 4.23302E-08 4.26296E-08 4.29293E-08 4.32293E-08 4.35297E-08 4.38303E-08 4.41313E-08 4.44326E-08 4.47342E-08 4.50361E-08 4.53383E-08 4.56408E-08 4.59437E-08 4.62469E-08 4.65504E-08 4.68543E-08 4.71584E-08 4.74629E-08 4.77678E-08 4.80729E-08 4.83784E-08 4.86842E-08 4.89903E-08 4.92967E-08 4.96035E-08 4.99106E-08 5.02181E-08 5.05258E-08 5.08339E-08 5.11423E-08 5.1451E-08 5.17601E-08 5.20695E-08 5.23792E-08 5.26893E-08 5.29996E-08 5.33103E-08 5.36214E-08 5.39327E-08 5.42444E-08 5.45564E-08 5.48688E-08 5.51815E-08 5.54945E-08 5.58078E-08 5.61215E-08 5.64355E-08 5.67498E-08 5.70645E-08 5.73795E-08 5.76949E-08 5.80106E-08 5.83266E-08 5.8643E-08 5.89597E-08 5.92768E-08 5.95942E-08 5.9912E-08 6.02301E-08 6.05486E-08 6.08674E-08 6.11866E-08 6.15062E-08 6.18261E-08 6.21464E-08 6.2467E-08 6.27881E-08 6.31095E-08 6.34313E-08 6.37534E-08 6.4076E-08 6.4399E-08 6.47223E-08 6.50461E-08 6.53702E-08 6.56948E-08 6.60198E-08 6.63452E-08 6.6671E-08 6.69972E-08 6.73239E-08 6.7651E-08 6.79786E-08 6.83066E-08 6.86351E-08 6.8964E-08 6.92934E-08 6.96233E-08 6.99536E-08 7.02845E-08 7.06159E-08 7.09477E-08 7.12801E-08 7.1613E-08 7.19464E-08 7.22803E-08 7.26148E-08 7.29499E-08 7.32855E-08 7.36217E-08 7.39585E-08 7.42959E-08 7.46339E-08 7.49725E-08 7.53117E-08 7.56516E-08 7.59921E-08 7.63333E-08 7.66751E-08 7.70177E-08 7.73609E-08 7.77049E-08 7.80496E-08 7.83951E-08 7.87413E-08 7.90883E-08 7.94361E-08 7.97848E-08 8.01342E-08 8.04845E-08 8.08357E-08 8.11878E-08 8.15408E-08 8.18948E-08 8.22497E-08 8.26056E-08 8.29625E-08 8.33205E-08 8.36795E-08 8.40396E-08 +-9.9641E-07 -7.29907E-07 -5.29966E-07 -3.80807E-07 -2.69993E-07 -1.8775E-07 -1.26451E-07 -8.03058E-08 -4.52907E-08 -1.8985E-08 5.75234E-13 1.34274E-08 2.27515E-08 2.87869E-08 3.25056E-08 3.47935E-08 3.62737E-08 3.73122E-08 3.81055E-08 3.87577E-08 3.9325E-08 3.98389E-08 4.03176E-08 4.07726E-08 4.12109E-08 4.16373E-08 4.20548E-08 4.24657E-08 4.28716E-08 4.32736E-08 4.36727E-08 4.40694E-08 4.44642E-08 4.48576E-08 4.52498E-08 4.56412E-08 4.60318E-08 4.64219E-08 4.68117E-08 4.72011E-08 4.75904E-08 4.79795E-08 4.83687E-08 4.87578E-08 4.9147E-08 4.95363E-08 4.99258E-08 5.03155E-08 5.07054E-08 5.10955E-08 5.14859E-08 5.18765E-08 5.22675E-08 5.26588E-08 5.30504E-08 5.34423E-08 5.38346E-08 5.42272E-08 5.46202E-08 5.50136E-08 5.54074E-08 5.58015E-08 5.61961E-08 5.6591E-08 5.69864E-08 5.73821E-08 5.77783E-08 5.81748E-08 5.85718E-08 5.89692E-08 5.9367E-08 5.97652E-08 6.01639E-08 6.0563E-08 6.09625E-08 6.13624E-08 6.17628E-08 6.21635E-08 6.25647E-08 6.29664E-08 6.33684E-08 6.37709E-08 6.41738E-08 6.45772E-08 6.4981E-08 6.53852E-08 6.57898E-08 6.61949E-08 6.66004E-08 6.70063E-08 6.74127E-08 6.78195E-08 6.82267E-08 6.86343E-08 6.90424E-08 6.94509E-08 6.98598E-08 7.02692E-08 7.0679E-08 7.10892E-08 7.14999E-08 7.1911E-08 7.23225E-08 7.27345E-08 7.31469E-08 7.35597E-08 7.3973E-08 7.43867E-08 7.48009E-08 7.52155E-08 7.56305E-08 7.6046E-08 7.64619E-08 7.68783E-08 7.72952E-08 7.77124E-08 7.81302E-08 7.85484E-08 7.8967E-08 7.93861E-08 7.98057E-08 8.02258E-08 8.06463E-08 8.10673E-08 8.14888E-08 8.19107E-08 8.23332E-08 8.27561E-08 8.31795E-08 8.36035E-08 8.40279E-08 8.44529E-08 8.48783E-08 8.53043E-08 8.57308E-08 8.61578E-08 8.65854E-08 8.70135E-08 8.74422E-08 8.78714E-08 8.83012E-08 8.87315E-08 8.91625E-08 8.9594E-08 9.0026E-08 9.04587E-08 9.0892E-08 9.1326E-08 9.17605E-08 9.21957E-08 9.26315E-08 9.30679E-08 9.35051E-08 9.39429E-08 9.43813E-08 9.48205E-08 9.52604E-08 9.57009E-08 9.61422E-08 9.65843E-08 9.70271E-08 9.74706E-08 9.7915E-08 9.83601E-08 9.8806E-08 9.92528E-08 9.97004E-08 1.00149E-07 1.00598E-07 1.01048E-07 1.01499E-07 1.01951E-07 1.02404E-07 1.02858E-07 1.03313E-07 1.03769E-07 1.04226E-07 1.04684E-07 1.05143E-07 1.05603E-07 1.06064E-07 1.06526E-07 1.06989E-07 1.07454E-07 1.0792E-07 1.08387E-07 1.08855E-07 1.09325E-07 1.09796E-07 1.10269E-07 1.10742E-07 +-1.25349E-06 -9.22945E-07 -6.73575E-07 -4.86454E-07 -3.46599E-07 -2.4216E-07 -1.63823E-07 -1.04474E-07 -5.91495E-08 -2.48837E-08 8.16777E-13 1.76595E-08 2.99254E-08 3.78671E-08 4.27615E-08 4.5773E-08 4.77212E-08 4.90878E-08 5.01317E-08 5.09897E-08 5.1736E-08 5.24118E-08 5.30414E-08 5.36398E-08 5.42161E-08 5.47767E-08 5.53257E-08 5.58661E-08 5.63998E-08 5.69284E-08 5.74531E-08 5.79747E-08 5.84938E-08 5.9011E-08 5.95267E-08 6.00413E-08 6.05549E-08 6.10678E-08 6.15802E-08 6.20922E-08 6.2604E-08 6.31156E-08 6.36272E-08 6.41388E-08 6.46505E-08 6.51624E-08 6.56745E-08 6.61868E-08 6.66993E-08 6.72122E-08 6.77255E-08 6.82391E-08 6.87531E-08 6.92675E-08 6.97823E-08 7.02976E-08 7.08133E-08 7.13295E-08 7.18461E-08 7.23633E-08 7.2881E-08 7.33992E-08 7.39178E-08 7.4437E-08 7.49568E-08 7.5477E-08 7.59978E-08 7.65192E-08 7.7041E-08 7.75635E-08 7.80864E-08 7.861E-08 7.9134E-08 7.96587E-08 8.01839E-08 8.07096E-08 8.12359E-08 8.17628E-08 8.22902E-08 8.28182E-08 8.33467E-08 8.38758E-08 8.44055E-08 8.49357E-08 8.54665E-08 8.59979E-08 8.65298E-08 8.70623E-08 8.75954E-08 8.8129E-08 8.86632E-08 8.91979E-08 8.97332E-08 9.02691E-08 9.08055E-08 9.13425E-08 9.18801E-08 9.24182E-08 9.29569E-08 9.34961E-08 9.4036E-08 9.45764E-08 9.51173E-08 9.56589E-08 9.6201E-08 9.67436E-08 9.72869E-08 9.78307E-08 9.83751E-08 9.89201E-08 9.94656E-08 1.00012E-07 1.00559E-07 1.01106E-07 1.01654E-07 1.02202E-07 1.02751E-07 1.03301E-07 1.03851E-07 1.04402E-07 1.04954E-07 1.05506E-07 1.06059E-07 1.06612E-07 1.07166E-07 1.07721E-07 1.08276E-07 1.08832E-07 1.09388E-07 1.09946E-07 1.10503E-07 1.11062E-07 1.11621E-07 1.12181E-07 1.12742E-07 1.13303E-07 1.13865E-07 1.14428E-07 1.14991E-07 1.15555E-07 1.1612E-07 1.16686E-07 1.17252E-07 1.17819E-07 1.18387E-07 1.18956E-07 1.19525E-07 1.20095E-07 1.20666E-07 1.21238E-07 1.21811E-07 1.22385E-07 1.22959E-07 1.23534E-07 1.24111E-07 1.24688E-07 1.25266E-07 1.25845E-07 1.26425E-07 1.27005E-07 1.27587E-07 1.2817E-07 1.28754E-07 1.29339E-07 1.29925E-07 1.30512E-07 1.311E-07 1.31689E-07 1.32279E-07 1.32871E-07 1.33463E-07 1.34057E-07 1.34652E-07 1.35248E-07 1.35846E-07 1.36445E-07 1.37045E-07 1.37646E-07 1.38249E-07 1.38853E-07 1.39459E-07 1.40066E-07 1.40675E-07 1.41285E-07 1.41897E-07 1.4251E-07 1.43125E-07 1.43742E-07 1.4436E-07 1.4498E-07 1.45602E-07 +-1.57075E-06 -1.1624E-06 -8.5269E-07 -6.18967E-07 -4.43235E-07 -3.11187E-07 -2.11498E-07 -1.35469E-07 -7.70145E-08 -3.25247E-08 1.11786E-12 2.31682E-08 3.92653E-08 4.9691E-08 5.61183E-08 6.00734E-08 6.26321E-08 6.44264E-08 6.57967E-08 6.69229E-08 6.79021E-08 6.87888E-08 6.96149E-08 7.03998E-08 7.11559E-08 7.18912E-08 7.26113E-08 7.332E-08 7.402E-08 7.47133E-08 7.54014E-08 7.60854E-08 7.67663E-08 7.74446E-08 7.8121E-08 7.87957E-08 7.94693E-08 8.0142E-08 8.08139E-08 8.14854E-08 8.21566E-08 8.28275E-08 8.34984E-08 8.41694E-08 8.48404E-08 8.55117E-08 8.61832E-08 8.6855E-08 8.75272E-08 8.81997E-08 8.88728E-08 8.95463E-08 9.02203E-08 9.08949E-08 9.157E-08 9.22457E-08 9.2922E-08 9.35989E-08 9.42764E-08 9.49545E-08 9.56334E-08 9.63128E-08 9.6993E-08 9.76738E-08 9.83554E-08 9.90376E-08 9.97205E-08 1.00404E-07 1.01088E-07 1.01773E-07 1.02459E-07 1.03146E-07 1.03833E-07 1.04521E-07 1.0521E-07 1.05899E-07 1.06589E-07 1.0728E-07 1.07971E-07 1.08664E-07 1.09357E-07 1.10051E-07 1.10745E-07 1.1144E-07 1.12136E-07 1.12833E-07 1.13531E-07 1.14229E-07 1.14928E-07 1.15627E-07 1.16328E-07 1.17029E-07 1.17731E-07 1.18433E-07 1.19137E-07 1.19841E-07 1.20546E-07 1.21251E-07 1.21958E-07 1.22665E-07 1.23372E-07 1.24081E-07 1.2479E-07 1.255E-07 1.26211E-07 1.26923E-07 1.27635E-07 1.28348E-07 1.29062E-07 1.29776E-07 1.30491E-07 1.31207E-07 1.31924E-07 1.32642E-07 1.3336E-07 1.34079E-07 1.34799E-07 1.3552E-07 1.36241E-07 1.36964E-07 1.37687E-07 1.38411E-07 1.39135E-07 1.39861E-07 1.40587E-07 1.41314E-07 1.42042E-07 1.42771E-07 1.43501E-07 1.44231E-07 1.44963E-07 1.45695E-07 1.46428E-07 1.47162E-07 1.47897E-07 1.48633E-07 1.49369E-07 1.50107E-07 1.50846E-07 1.51585E-07 1.52326E-07 1.53067E-07 1.53809E-07 1.54553E-07 1.55297E-07 1.56043E-07 1.56789E-07 1.57537E-07 1.58285E-07 1.59035E-07 1.59786E-07 1.60538E-07 1.61291E-07 1.62045E-07 1.628E-07 1.63557E-07 1.64314E-07 1.65073E-07 1.65833E-07 1.66594E-07 1.67357E-07 1.68121E-07 1.68886E-07 1.69653E-07 1.70421E-07 1.7119E-07 1.71961E-07 1.72733E-07 1.73506E-07 1.74281E-07 1.75058E-07 1.75836E-07 1.76616E-07 1.77397E-07 1.7818E-07 1.78964E-07 1.79751E-07 1.80539E-07 1.81328E-07 1.8212E-07 1.82913E-07 1.83709E-07 1.84506E-07 1.85305E-07 1.86106E-07 1.8691E-07 1.87715E-07 1.88523E-07 1.89333E-07 1.90145E-07 1.90959E-07 +-1.96077E-06 -1.45823E-06 -1.07512E-06 -7.84424E-07 -5.64575E-07 -3.9835E-07 -2.72036E-07 -1.75042E-07 -9.99447E-08 -4.23827E-08 1.48957E-12 3.03125E-08 5.13816E-08 6.50339E-08 7.34535E-08 7.86355E-08 8.19875E-08 8.43377E-08 8.6132E-08 8.76063E-08 8.88879E-08 9.00481E-08 9.11289E-08 9.21558E-08 9.31448E-08 9.41067E-08 9.50486E-08 9.59755E-08 9.6891E-08 9.77978E-08 9.86978E-08 9.95924E-08 1.00483E-07 1.0137E-07 1.02254E-07 1.03137E-07 1.04018E-07 1.04898E-07 1.05776E-07 1.06654E-07 1.07532E-07 1.0841E-07 1.09287E-07 1.10164E-07 1.11042E-07 1.1192E-07 1.12798E-07 1.13676E-07 1.14555E-07 1.15435E-07 1.16315E-07 1.17196E-07 1.18077E-07 1.18959E-07 1.19842E-07 1.20725E-07 1.2161E-07 1.22495E-07 1.23381E-07 1.24268E-07 1.25155E-07 1.26044E-07 1.26933E-07 1.27823E-07 1.28715E-07 1.29607E-07 1.305E-07 1.31394E-07 1.32288E-07 1.33184E-07 1.34081E-07 1.34978E-07 1.35877E-07 1.36776E-07 1.37677E-07 1.38578E-07 1.39481E-07 1.40384E-07 1.41288E-07 1.42193E-07 1.431E-07 1.44007E-07 1.44915E-07 1.45824E-07 1.46734E-07 1.47645E-07 1.48557E-07 1.4947E-07 1.50384E-07 1.51298E-07 1.52214E-07 1.53131E-07 1.54049E-07 1.54967E-07 1.55887E-07 1.56808E-07 1.57729E-07 1.58652E-07 1.59575E-07 1.60499E-07 1.61425E-07 1.62351E-07 1.63279E-07 1.64207E-07 1.65136E-07 1.66066E-07 1.66998E-07 1.6793E-07 1.68863E-07 1.69797E-07 1.70732E-07 1.71669E-07 1.72606E-07 1.73544E-07 1.74483E-07 1.75423E-07 1.76364E-07 1.77307E-07 1.7825E-07 1.79194E-07 1.80139E-07 1.81086E-07 1.82033E-07 1.82982E-07 1.83931E-07 1.84882E-07 1.85833E-07 1.86786E-07 1.8774E-07 1.88695E-07 1.89651E-07 1.90608E-07 1.91567E-07 1.92526E-07 1.93487E-07 1.94449E-07 1.95412E-07 1.96376E-07 1.97342E-07 1.98308E-07 1.99276E-07 2.00246E-07 2.01216E-07 2.02188E-07 2.03161E-07 2.04135E-07 2.05111E-07 2.06088E-07 2.07067E-07 2.08047E-07 2.09028E-07 2.10011E-07 2.10995E-07 2.11981E-07 2.12968E-07 2.13956E-07 2.14947E-07 2.15939E-07 2.16932E-07 2.17927E-07 2.18924E-07 2.19922E-07 2.20922E-07 2.21924E-07 2.22927E-07 2.23933E-07 2.2494E-07 2.25949E-07 2.2696E-07 2.27972E-07 2.28987E-07 2.30004E-07 2.31023E-07 2.32043E-07 2.33066E-07 2.34091E-07 2.35119E-07 2.36148E-07 2.3718E-07 2.38214E-07 2.3925E-07 2.40289E-07 2.41331E-07 2.42375E-07 2.43421E-07 2.4447E-07 2.45522E-07 2.46577E-07 2.47634E-07 2.48695E-07 2.49758E-07 +-2.43852E-06 -1.82226E-06 -1.35018E-06 -9.901E-07 -7.1623E-07 -5.07893E-07 -3.48542E-07 -2.25329E-07 -1.29241E-07 -5.50457E-08 1.94707E-12 3.95411E-08 6.70388E-08 8.48671E-08 9.58674E-08 1.02639E-07 1.07019E-07 1.10089E-07 1.12433E-07 1.14357E-07 1.1603E-07 1.17543E-07 1.18953E-07 1.20293E-07 1.21582E-07 1.22837E-07 1.24065E-07 1.25274E-07 1.26468E-07 1.2765E-07 1.28823E-07 1.2999E-07 1.31151E-07 1.32307E-07 1.33461E-07 1.34611E-07 1.3576E-07 1.36906E-07 1.38052E-07 1.39197E-07 1.40341E-07 1.41485E-07 1.42629E-07 1.43773E-07 1.44917E-07 1.46061E-07 1.47206E-07 1.48351E-07 1.49497E-07 1.50644E-07 1.51791E-07 1.52939E-07 1.54088E-07 1.55238E-07 1.56389E-07 1.57541E-07 1.58693E-07 1.59847E-07 1.61002E-07 1.62158E-07 1.63315E-07 1.64473E-07 1.65633E-07 1.66793E-07 1.67955E-07 1.69118E-07 1.70282E-07 1.71447E-07 1.72613E-07 1.73781E-07 1.7495E-07 1.7612E-07 1.77291E-07 1.78464E-07 1.79638E-07 1.80813E-07 1.81989E-07 1.83166E-07 1.84345E-07 1.85525E-07 1.86706E-07 1.87888E-07 1.89072E-07 1.90257E-07 1.91443E-07 1.9263E-07 1.93819E-07 1.95009E-07 1.962E-07 1.97393E-07 1.98586E-07 1.99781E-07 2.00977E-07 2.02175E-07 2.03373E-07 2.04573E-07 2.05774E-07 2.06977E-07 2.0818E-07 2.09385E-07 2.10591E-07 2.11799E-07 2.13007E-07 2.14217E-07 2.15428E-07 2.16641E-07 2.17855E-07 2.1907E-07 2.20286E-07 2.21503E-07 2.22722E-07 2.23942E-07 2.25164E-07 2.26386E-07 2.2761E-07 2.28836E-07 2.30062E-07 2.3129E-07 2.32519E-07 2.3375E-07 2.34982E-07 2.36215E-07 2.3745E-07 2.38686E-07 2.39924E-07 2.41162E-07 2.42403E-07 2.43644E-07 2.44887E-07 2.46132E-07 2.47378E-07 2.48625E-07 2.49874E-07 2.51125E-07 2.52377E-07 2.5363E-07 2.54885E-07 2.56142E-07 2.574E-07 2.5866E-07 2.59921E-07 2.61184E-07 2.62449E-07 2.63715E-07 2.64983E-07 2.66253E-07 2.67524E-07 2.68798E-07 2.70073E-07 2.71349E-07 2.72628E-07 2.73909E-07 2.75191E-07 2.76475E-07 2.77762E-07 2.7905E-07 2.8034E-07 2.81632E-07 2.82927E-07 2.84223E-07 2.85521E-07 2.86822E-07 2.88125E-07 2.8943E-07 2.90737E-07 2.92047E-07 2.93359E-07 2.94674E-07 2.9599E-07 2.9731E-07 2.98631E-07 2.99956E-07 3.01283E-07 3.02612E-07 3.03945E-07 3.0528E-07 3.06618E-07 3.07959E-07 3.09302E-07 3.10649E-07 3.11999E-07 3.13352E-07 3.14708E-07 3.16067E-07 3.1743E-07 3.18796E-07 3.20165E-07 3.21538E-07 3.22915E-07 3.24295E-07 3.25679E-07 +-3.02173E-06 -2.26859E-06 -1.68899E-06 -1.24468E-06 -9.04913E-07 -6.44912E-07 -4.44757E-07 -2.88915E-07 -1.66491E-07 -7.12358E-08 2.51167E-12 5.1411E-08 8.71868E-08 1.104E-07 1.24731E-07 1.33557E-07 1.39264E-07 1.43263E-07 1.46314E-07 1.48819E-07 1.50994E-07 1.52963E-07 1.54797E-07 1.56538E-07 1.58215E-07 1.59845E-07 1.61441E-07 1.63012E-07 1.64564E-07 1.661E-07 1.67625E-07 1.69141E-07 1.70649E-07 1.72152E-07 1.73651E-07 1.75146E-07 1.76638E-07 1.78128E-07 1.79617E-07 1.81104E-07 1.82591E-07 1.84077E-07 1.85563E-07 1.8705E-07 1.88536E-07 1.90023E-07 1.9151E-07 1.92998E-07 1.94487E-07 1.95976E-07 1.97467E-07 1.98959E-07 2.00451E-07 2.01945E-07 2.03441E-07 2.04937E-07 2.06435E-07 2.07934E-07 2.09434E-07 2.10936E-07 2.12439E-07 2.13944E-07 2.1545E-07 2.16958E-07 2.18467E-07 2.19977E-07 2.21489E-07 2.23003E-07 2.24519E-07 2.26035E-07 2.27554E-07 2.29074E-07 2.30595E-07 2.32118E-07 2.33643E-07 2.3517E-07 2.36698E-07 2.38227E-07 2.39758E-07 2.41291E-07 2.42825E-07 2.44361E-07 2.45899E-07 2.47438E-07 2.48979E-07 2.50521E-07 2.52065E-07 2.53611E-07 2.55158E-07 2.56707E-07 2.58258E-07 2.5981E-07 2.61364E-07 2.62919E-07 2.64476E-07 2.66035E-07 2.67595E-07 2.69157E-07 2.7072E-07 2.72285E-07 2.73852E-07 2.7542E-07 2.7699E-07 2.78561E-07 2.80135E-07 2.81709E-07 2.83286E-07 2.84864E-07 2.86444E-07 2.88025E-07 2.89608E-07 2.91193E-07 2.92779E-07 2.94368E-07 2.95957E-07 2.97549E-07 2.99142E-07 3.00737E-07 3.02333E-07 3.03932E-07 3.05532E-07 3.07134E-07 3.08737E-07 3.10343E-07 3.1195E-07 3.13559E-07 3.1517E-07 3.16782E-07 3.18397E-07 3.20013E-07 3.21631E-07 3.23251E-07 3.24873E-07 3.26497E-07 3.28123E-07 3.29751E-07 3.31381E-07 3.33013E-07 3.34647E-07 3.36283E-07 3.37921E-07 3.39561E-07 3.41203E-07 3.42848E-07 3.44495E-07 3.46144E-07 3.47795E-07 3.49448E-07 3.51104E-07 3.52762E-07 3.54422E-07 3.56085E-07 3.5775E-07 3.59418E-07 3.61088E-07 3.62761E-07 3.64436E-07 3.66114E-07 3.67794E-07 3.69478E-07 3.71164E-07 3.72852E-07 3.74544E-07 3.76239E-07 3.77936E-07 3.79636E-07 3.8134E-07 3.83046E-07 3.84755E-07 3.86468E-07 3.88184E-07 3.89903E-07 3.91626E-07 3.93352E-07 3.95081E-07 3.96814E-07 3.98551E-07 4.00291E-07 4.02035E-07 4.03783E-07 4.05535E-07 4.0729E-07 4.0905E-07 4.10814E-07 4.12582E-07 4.14355E-07 4.16131E-07 4.17913E-07 4.19699E-07 4.2149E-07 4.23285E-07 +-3.73138E-06 -2.81392E-06 -2.10473E-06 -1.5585E-06 -1.13863E-06 -8.15493E-07 -5.65162E-07 -3.68912E-07 -2.13611E-07 -9.18321E-08 3.21406E-12 6.66076E-08 1.12997E-07 1.43126E-07 1.61742E-07 1.7321E-07 1.80626E-07 1.8582E-07 1.89779E-07 1.93028E-07 1.95849E-07 1.98401E-07 2.00776E-07 2.03032E-07 2.05204E-07 2.07316E-07 2.09383E-07 2.11418E-07 2.13426E-07 2.15416E-07 2.1739E-07 2.19353E-07 2.21306E-07 2.23252E-07 2.25192E-07 2.27127E-07 2.29059E-07 2.30988E-07 2.32915E-07 2.34841E-07 2.36765E-07 2.38689E-07 2.40613E-07 2.42537E-07 2.44461E-07 2.46386E-07 2.48311E-07 2.50237E-07 2.52164E-07 2.54092E-07 2.56022E-07 2.57953E-07 2.59885E-07 2.61819E-07 2.63754E-07 2.65691E-07 2.67629E-07 2.6957E-07 2.71512E-07 2.73456E-07 2.75401E-07 2.77349E-07 2.79298E-07 2.8125E-07 2.83203E-07 2.85158E-07 2.87115E-07 2.89075E-07 2.91036E-07 2.92999E-07 2.94964E-07 2.96931E-07 2.98901E-07 3.00872E-07 3.02846E-07 3.04821E-07 3.06799E-07 3.08778E-07 3.1076E-07 3.12744E-07 3.14729E-07 3.16717E-07 3.18707E-07 3.20699E-07 3.22693E-07 3.2469E-07 3.26688E-07 3.28688E-07 3.30691E-07 3.32695E-07 3.34702E-07 3.3671E-07 3.38721E-07 3.40734E-07 3.42749E-07 3.44766E-07 3.46785E-07 3.48806E-07 3.50829E-07 3.52855E-07 3.54882E-07 3.56911E-07 3.58943E-07 3.60977E-07 3.63013E-07 3.65051E-07 3.67091E-07 3.69133E-07 3.71177E-07 3.73223E-07 3.75272E-07 3.77323E-07 3.79375E-07 3.8143E-07 3.83488E-07 3.85547E-07 3.87609E-07 3.89672E-07 3.91738E-07 3.93807E-07 3.95877E-07 3.9795E-07 4.00025E-07 4.02102E-07 4.04182E-07 4.06263E-07 4.08348E-07 4.10434E-07 4.12523E-07 4.14615E-07 4.16708E-07 4.18805E-07 4.20903E-07 4.23005E-07 4.25108E-07 4.27215E-07 4.29323E-07 4.31435E-07 4.33549E-07 4.35665E-07 4.37785E-07 4.39907E-07 4.42032E-07 4.44159E-07 4.4629E-07 4.48423E-07 4.50559E-07 4.52698E-07 4.5484E-07 4.56985E-07 4.59133E-07 4.61284E-07 4.63439E-07 4.65596E-07 4.67757E-07 4.69921E-07 4.72088E-07 4.74258E-07 4.76432E-07 4.7861E-07 4.80791E-07 4.82975E-07 4.85163E-07 4.87355E-07 4.8955E-07 4.9175E-07 4.93953E-07 4.9616E-07 4.98371E-07 5.00586E-07 5.02805E-07 5.05029E-07 5.07256E-07 5.09489E-07 5.11725E-07 5.13966E-07 5.16212E-07 5.18462E-07 5.20717E-07 5.22977E-07 5.25242E-07 5.27512E-07 5.29787E-07 5.32068E-07 5.34354E-07 5.36645E-07 5.38942E-07 5.41245E-07 5.43553E-07 5.45868E-07 5.48188E-07 +-4.59211E-06 -3.478E-06 -2.61306E-06 -1.94385E-06 -1.4269E-06 -1.02688E-06 -7.15101E-07 -4.69036E-07 -2.72901E-07 -1.17896E-07 4.0992E-12 8.59674E-08 1.45904E-07 1.84878E-07 2.08985E-07 2.23843E-07 2.33449E-07 2.40172E-07 2.45294E-07 2.49494E-07 2.53139E-07 2.56434E-07 2.59501E-07 2.62412E-07 2.65215E-07 2.67939E-07 2.70606E-07 2.7323E-07 2.75821E-07 2.78387E-07 2.80933E-07 2.83464E-07 2.85983E-07 2.88492E-07 2.90994E-07 2.9349E-07 2.95981E-07 2.98468E-07 3.00953E-07 3.03436E-07 3.05917E-07 3.08398E-07 3.10878E-07 3.13359E-07 3.1584E-07 3.18321E-07 3.20803E-07 3.23287E-07 3.25771E-07 3.28257E-07 3.30745E-07 3.33234E-07 3.35725E-07 3.38218E-07 3.40713E-07 3.4321E-07 3.45709E-07 3.48211E-07 3.50715E-07 3.53221E-07 3.55729E-07 3.5824E-07 3.60753E-07 3.63268E-07 3.65786E-07 3.68307E-07 3.7083E-07 3.73356E-07 3.75884E-07 3.78415E-07 3.80948E-07 3.83484E-07 3.86023E-07 3.88564E-07 3.91108E-07 3.93654E-07 3.96203E-07 3.98755E-07 4.01309E-07 4.03867E-07 4.06426E-07 4.08989E-07 4.11554E-07 4.14121E-07 4.16692E-07 4.19265E-07 4.21841E-07 4.24419E-07 4.27E-07 4.29584E-07 4.3217E-07 4.34759E-07 4.37351E-07 4.39945E-07 4.42543E-07 4.45142E-07 4.47745E-07 4.5035E-07 4.52957E-07 4.55568E-07 4.58181E-07 4.60797E-07 4.63415E-07 4.66037E-07 4.6866E-07 4.71287E-07 4.73916E-07 4.76548E-07 4.79183E-07 4.81821E-07 4.84461E-07 4.87104E-07 4.89749E-07 4.92398E-07 4.95049E-07 4.97703E-07 5.0036E-07 5.0302E-07 5.05682E-07 5.08348E-07 5.11016E-07 5.13687E-07 5.16362E-07 5.19039E-07 5.21719E-07 5.24402E-07 5.27088E-07 5.29777E-07 5.32469E-07 5.35164E-07 5.37862E-07 5.40563E-07 5.43268E-07 5.45976E-07 5.48686E-07 5.51401E-07 5.54118E-07 5.56839E-07 5.59563E-07 5.62291E-07 5.65022E-07 5.67756E-07 5.70494E-07 5.73236E-07 5.75981E-07 5.7873E-07 5.81482E-07 5.84238E-07 5.86998E-07 5.89762E-07 5.9253E-07 5.95301E-07 5.98077E-07 6.00857E-07 6.03641E-07 6.06429E-07 6.09221E-07 6.12017E-07 6.14818E-07 6.17623E-07 6.20433E-07 6.23247E-07 6.26066E-07 6.2889E-07 6.31718E-07 6.34551E-07 6.3739E-07 6.40233E-07 6.43081E-07 6.45934E-07 6.48793E-07 6.51657E-07 6.54526E-07 6.57401E-07 6.60282E-07 6.63168E-07 6.66061E-07 6.68959E-07 6.71863E-07 6.74773E-07 6.7769E-07 6.80613E-07 6.83543E-07 6.86479E-07 6.89423E-07 6.92373E-07 6.9533E-07 6.98295E-07 7.01267E-07 7.04247E-07 7.07234E-07 +-5.63272E-06 -4.28404E-06 -3.23247E-06 -2.41527E-06 -1.78102E-06 -1.28767E-06 -9.00911E-07 -5.93701E-07 -3.47102E-07 -1.50698E-07 5.23373E-12 1.10502E-07 1.87648E-07 2.37888E-07 2.69005E-07 2.88194E-07 3.00598E-07 3.09274E-07 3.15877E-07 3.21287E-07 3.25978E-07 3.30217E-07 3.3416E-07 3.37903E-07 3.41504E-07 3.45005E-07 3.48431E-07 3.51801E-07 3.5513E-07 3.58425E-07 3.61695E-07 3.64945E-07 3.6818E-07 3.71402E-07 3.74614E-07 3.77818E-07 3.81017E-07 3.84211E-07 3.87401E-07 3.90589E-07 3.93775E-07 3.9696E-07 4.00144E-07 4.03328E-07 4.06513E-07 4.09699E-07 4.12885E-07 4.16073E-07 4.19263E-07 4.22455E-07 4.25648E-07 4.28843E-07 4.32041E-07 4.35242E-07 4.38444E-07 4.4165E-07 4.44858E-07 4.48069E-07 4.51283E-07 4.545E-07 4.57719E-07 4.60942E-07 4.64168E-07 4.67397E-07 4.70629E-07 4.73865E-07 4.77103E-07 4.80345E-07 4.8359E-07 4.86838E-07 4.9009E-07 4.93345E-07 4.96604E-07 4.99865E-07 5.0313E-07 5.06399E-07 5.09671E-07 5.12946E-07 5.16224E-07 5.19506E-07 5.22792E-07 5.2608E-07 5.29372E-07 5.32668E-07 5.35967E-07 5.39269E-07 5.42575E-07 5.45884E-07 5.49197E-07 5.52513E-07 5.55832E-07 5.59155E-07 5.62481E-07 5.65811E-07 5.69143E-07 5.7248E-07 5.7582E-07 5.79163E-07 5.8251E-07 5.8586E-07 5.89213E-07 5.9257E-07 5.9593E-07 5.99294E-07 6.02661E-07 6.06032E-07 6.09406E-07 6.12784E-07 6.16165E-07 6.19549E-07 6.22937E-07 6.26329E-07 6.29724E-07 6.33122E-07 6.36525E-07 6.3993E-07 6.4334E-07 6.46753E-07 6.50169E-07 6.53589E-07 6.57013E-07 6.60441E-07 6.63872E-07 6.67307E-07 6.70746E-07 6.74189E-07 6.77635E-07 6.81086E-07 6.8454E-07 6.87998E-07 6.9146E-07 6.94926E-07 6.98396E-07 7.0187E-07 7.05349E-07 7.08831E-07 7.12318E-07 7.15808E-07 7.19304E-07 7.22803E-07 7.26307E-07 7.29815E-07 7.33328E-07 7.36845E-07 7.40367E-07 7.43894E-07 7.47425E-07 7.50961E-07 7.54502E-07 7.58048E-07 7.61598E-07 7.65154E-07 7.68715E-07 7.72281E-07 7.75852E-07 7.79428E-07 7.8301E-07 7.86598E-07 7.9019E-07 7.93789E-07 7.97393E-07 8.01003E-07 8.04619E-07 8.08241E-07 8.11868E-07 8.15502E-07 8.19143E-07 8.22789E-07 8.26442E-07 8.30102E-07 8.33768E-07 8.37441E-07 8.41121E-07 8.44808E-07 8.48503E-07 8.52204E-07 8.55913E-07 8.59629E-07 8.63353E-07 8.67085E-07 8.70825E-07 8.74573E-07 8.78329E-07 8.82094E-07 8.85868E-07 8.8965E-07 8.93441E-07 8.97241E-07 9.01051E-07 9.0487E-07 9.08699E-07 +-6.88655E-06 -5.25922E-06 -3.98473E-06 -2.98994E-06 -2.21434E-06 -1.60802E-06 -1.13008E-06 -7.48112E-07 -4.39446E-07 -1.91742E-07 6.71706E-12 1.41425E-07 2.40323E-07 3.04854E-07 3.44886E-07 3.69593E-07 3.85561E-07 3.96719E-07 4.05201E-07 4.12143E-07 4.18157E-07 4.23588E-07 4.28637E-07 4.33427E-07 4.38035E-07 4.42513E-07 4.46895E-07 4.51206E-07 4.55461E-07 4.59675E-07 4.63855E-07 4.6801E-07 4.72145E-07 4.76264E-07 4.8037E-07 4.84466E-07 4.88554E-07 4.92636E-07 4.96713E-07 5.00787E-07 5.04859E-07 5.0893E-07 5.12999E-07 5.17069E-07 5.21139E-07 5.2521E-07 5.29282E-07 5.33356E-07 5.37432E-07 5.41511E-07 5.45591E-07 5.49675E-07 5.53761E-07 5.57851E-07 5.61943E-07 5.66039E-07 5.70138E-07 5.74241E-07 5.78348E-07 5.82458E-07 5.86572E-07 5.9069E-07 5.94812E-07 5.98938E-07 6.03067E-07 6.07201E-07 6.11339E-07 6.15481E-07 6.19627E-07 6.23778E-07 6.27932E-07 6.32091E-07 6.36254E-07 6.40421E-07 6.44593E-07 6.48768E-07 6.52948E-07 6.57133E-07 6.61321E-07 6.65514E-07 6.69711E-07 6.73913E-07 6.78119E-07 6.82329E-07 6.86544E-07 6.90762E-07 6.94985E-07 6.99213E-07 7.03445E-07 7.07681E-07 7.11921E-07 7.16166E-07 7.20415E-07 7.24668E-07 7.28926E-07 7.33188E-07 7.37455E-07 7.41725E-07 7.46E-07 7.5028E-07 7.54563E-07 7.58851E-07 7.63144E-07 7.67441E-07 7.71742E-07 7.76047E-07 7.80357E-07 7.84672E-07 7.8899E-07 7.93314E-07 7.97641E-07 8.01973E-07 8.0631E-07 8.10651E-07 8.14996E-07 8.19347E-07 8.23701E-07 8.2806E-07 8.32424E-07 8.36793E-07 8.41166E-07 8.45544E-07 8.49926E-07 8.54314E-07 8.58706E-07 8.63103E-07 8.67504E-07 8.71911E-07 8.76323E-07 8.80739E-07 8.85161E-07 8.89588E-07 8.94019E-07 8.98456E-07 9.02899E-07 9.07346E-07 9.11799E-07 9.16257E-07 9.20721E-07 9.2519E-07 9.29664E-07 9.34145E-07 9.38631E-07 9.43122E-07 9.4762E-07 9.52123E-07 9.56633E-07 9.61148E-07 9.6567E-07 9.70197E-07 9.74732E-07 9.79272E-07 9.83819E-07 9.88372E-07 9.92932E-07 9.97499E-07 1.00207E-06 1.00665E-06 1.01124E-06 1.01583E-06 1.02044E-06 1.02505E-06 1.02966E-06 1.03429E-06 1.03892E-06 1.04356E-06 1.04821E-06 1.05286E-06 1.05752E-06 1.0622E-06 1.06688E-06 1.07157E-06 1.07626E-06 1.08097E-06 1.08569E-06 1.09041E-06 1.09514E-06 1.09989E-06 1.10464E-06 1.1094E-06 1.11418E-06 1.11896E-06 1.12375E-06 1.12856E-06 1.13337E-06 1.1382E-06 1.14304E-06 1.14789E-06 1.15275E-06 1.15762E-06 1.16251E-06 +-8.39185E-06 -6.43501E-06 -4.89527E-06 -3.68805E-06 -2.74256E-06 -1.9999E-06 -1.4114E-06 -9.38381E-07 -5.53727E-07 -2.42798E-07 8.69758E-12 1.80178E-07 3.06435E-07 3.89012E-07 4.40346E-07 4.72059E-07 4.92549E-07 5.06852E-07 5.17711E-07 5.26584E-07 5.34263E-07 5.41191E-07 5.47628E-07 5.53731E-07 5.59601E-07 5.65303E-07 5.70881E-07 5.76368E-07 5.81784E-07 5.87146E-07 5.92465E-07 5.97752E-07 6.03012E-07 6.08252E-07 6.13475E-07 6.18685E-07 6.23886E-07 6.29078E-07 6.34264E-07 6.39446E-07 6.44625E-07 6.49802E-07 6.54978E-07 6.60154E-07 6.6533E-07 6.70508E-07 6.75687E-07 6.80868E-07 6.86051E-07 6.91237E-07 6.96427E-07 7.0162E-07 7.06816E-07 7.12016E-07 7.1722E-07 7.22429E-07 7.27641E-07 7.32859E-07 7.3808E-07 7.43307E-07 7.48538E-07 7.53774E-07 7.59015E-07 7.64261E-07 7.69512E-07 7.74768E-07 7.80029E-07 7.85296E-07 7.90567E-07 7.95844E-07 8.01126E-07 8.06414E-07 8.11707E-07 8.17005E-07 8.22309E-07 8.27618E-07 8.32932E-07 8.38252E-07 8.43577E-07 8.48908E-07 8.54244E-07 8.59585E-07 8.64932E-07 8.70285E-07 8.75643E-07 8.81006E-07 8.86375E-07 8.91749E-07 8.97129E-07 9.02514E-07 9.07905E-07 9.13301E-07 9.18702E-07 9.24109E-07 9.29522E-07 9.34939E-07 9.40363E-07 9.45792E-07 9.51226E-07 9.56666E-07 9.62111E-07 9.67562E-07 9.73018E-07 9.7848E-07 9.83947E-07 9.8942E-07 9.94898E-07 1.00038E-06 1.00587E-06 1.01137E-06 1.01687E-06 1.02237E-06 1.02789E-06 1.0334E-06 1.03893E-06 1.04446E-06 1.04999E-06 1.05553E-06 1.06108E-06 1.06663E-06 1.07219E-06 1.07775E-06 1.08332E-06 1.0889E-06 1.09448E-06 1.10007E-06 1.10566E-06 1.11126E-06 1.11687E-06 1.12248E-06 1.1281E-06 1.13373E-06 1.13936E-06 1.145E-06 1.15065E-06 1.1563E-06 1.16196E-06 1.16762E-06 1.17329E-06 1.17897E-06 1.18466E-06 1.19035E-06 1.19605E-06 1.20176E-06 1.20748E-06 1.2132E-06 1.21893E-06 1.22467E-06 1.23041E-06 1.23617E-06 1.24193E-06 1.2477E-06 1.25348E-06 1.25926E-06 1.26506E-06 1.27086E-06 1.27667E-06 1.28249E-06 1.28832E-06 1.29416E-06 1.3E-06 1.30586E-06 1.31172E-06 1.3176E-06 1.32348E-06 1.32938E-06 1.33528E-06 1.3412E-06 1.34712E-06 1.35306E-06 1.359E-06 1.36496E-06 1.37092E-06 1.3769E-06 1.38289E-06 1.38889E-06 1.39491E-06 1.40093E-06 1.40697E-06 1.41302E-06 1.41908E-06 1.42516E-06 1.43124E-06 1.43735E-06 1.44346E-06 1.44959E-06 1.45573E-06 1.46189E-06 1.46806E-06 1.47425E-06 1.48045E-06 +-1.01918E-05 -7.84754E-06 -5.99358E-06 -4.53316E-06 -3.38412E-06 -2.47732E-06 -1.75517E-06 -1.17164E-06 -6.9436E-07 -3.05927E-07 1.13959E-11 2.28457E-07 3.8895E-07 4.94226E-07 5.59835E-07 6.00419E-07 6.26635E-07 6.44909E-07 6.58759E-07 6.70058E-07 6.79822E-07 6.88622E-07 6.96791E-07 7.04531E-07 7.11972E-07 7.19198E-07 7.26265E-07 7.33215E-07 7.40074E-07 7.46863E-07 7.53598E-07 7.60291E-07 7.6695E-07 7.73582E-07 7.80193E-07 7.86788E-07 7.93369E-07 7.99941E-07 8.06504E-07 8.13062E-07 8.19616E-07 8.26167E-07 8.32716E-07 8.39266E-07 8.45815E-07 8.52366E-07 8.58919E-07 8.65475E-07 8.72033E-07 8.78595E-07 8.8516E-07 8.9173E-07 8.98305E-07 9.04884E-07 9.11468E-07 9.18057E-07 9.24652E-07 9.31252E-07 9.37858E-07 9.4447E-07 9.51087E-07 9.57711E-07 9.64341E-07 9.70977E-07 9.7762E-07 9.84268E-07 9.90924E-07 9.97586E-07 1.00425E-06 1.01093E-06 1.01761E-06 1.0243E-06 1.03099E-06 1.0377E-06 1.0444E-06 1.05112E-06 1.05784E-06 1.06457E-06 1.07131E-06 1.07805E-06 1.0848E-06 1.09155E-06 1.09832E-06 1.10509E-06 1.11186E-06 1.11865E-06 1.12544E-06 1.13223E-06 1.13904E-06 1.14585E-06 1.15267E-06 1.15949E-06 1.16632E-06 1.17316E-06 1.18E-06 1.18686E-06 1.19371E-06 1.20058E-06 1.20745E-06 1.21433E-06 1.22122E-06 1.22811E-06 1.23501E-06 1.24192E-06 1.24883E-06 1.25575E-06 1.26268E-06 1.26962E-06 1.27656E-06 1.28351E-06 1.29046E-06 1.29742E-06 1.30439E-06 1.31137E-06 1.31836E-06 1.32535E-06 1.33235E-06 1.33935E-06 1.34637E-06 1.35339E-06 1.36041E-06 1.36745E-06 1.37449E-06 1.38154E-06 1.3886E-06 1.39567E-06 1.40274E-06 1.40982E-06 1.41691E-06 1.42401E-06 1.43111E-06 1.43822E-06 1.44535E-06 1.45247E-06 1.45961E-06 1.46676E-06 1.47391E-06 1.48108E-06 1.48825E-06 1.49543E-06 1.50262E-06 1.50981E-06 1.51702E-06 1.52424E-06 1.53146E-06 1.5387E-06 1.54594E-06 1.55319E-06 1.56046E-06 1.56773E-06 1.57501E-06 1.58231E-06 1.58961E-06 1.59692E-06 1.60425E-06 1.61158E-06 1.61893E-06 1.62628E-06 1.63365E-06 1.64103E-06 1.64842E-06 1.65582E-06 1.66324E-06 1.67066E-06 1.6781E-06 1.68555E-06 1.69301E-06 1.70048E-06 1.70797E-06 1.71547E-06 1.72299E-06 1.73051E-06 1.73806E-06 1.74561E-06 1.75318E-06 1.76076E-06 1.76836E-06 1.77598E-06 1.7836E-06 1.79125E-06 1.79891E-06 1.80658E-06 1.81427E-06 1.82198E-06 1.82971E-06 1.83745E-06 1.84521E-06 1.85299E-06 1.86078E-06 1.8686E-06 1.87643E-06 +-1.23346E-05 -9.53765E-06 -7.31345E-06 -5.55253E-06 -4.16043E-06 -3.05663E-06 -2.17337E-06 -1.45615E-06 -8.66448E-07 -3.83508E-07 1.5137E-11 2.88244E-07 4.9136E-07 6.25068E-07 7.08659E-07 7.60447E-07 7.93892E-07 8.17169E-07 8.34772E-07 8.49104E-07 8.61468E-07 8.72595E-07 8.82914E-07 8.92684E-07 9.02071E-07 9.11182E-07 9.20091E-07 9.28849E-07 9.37491E-07 9.46044E-07 9.54527E-07 9.62956E-07 9.71342E-07 9.79693E-07 9.88018E-07 9.9632E-07 1.00461E-06 1.01288E-06 1.02114E-06 1.0294E-06 1.03765E-06 1.04589E-06 1.05414E-06 1.06238E-06 1.07062E-06 1.07887E-06 1.08712E-06 1.09537E-06 1.10362E-06 1.11188E-06 1.12014E-06 1.12841E-06 1.13668E-06 1.14496E-06 1.15325E-06 1.16154E-06 1.16984E-06 1.17814E-06 1.18646E-06 1.19478E-06 1.2031E-06 1.21144E-06 1.21978E-06 1.22813E-06 1.23649E-06 1.24485E-06 1.25323E-06 1.26161E-06 1.27E-06 1.2784E-06 1.2868E-06 1.29522E-06 1.30364E-06 1.31207E-06 1.32051E-06 1.32896E-06 1.33742E-06 1.34589E-06 1.35436E-06 1.36284E-06 1.37133E-06 1.37983E-06 1.38834E-06 1.39686E-06 1.40538E-06 1.41391E-06 1.42246E-06 1.43101E-06 1.43957E-06 1.44813E-06 1.45671E-06 1.46529E-06 1.47389E-06 1.48249E-06 1.4911E-06 1.49972E-06 1.50835E-06 1.51698E-06 1.52563E-06 1.53428E-06 1.54294E-06 1.55161E-06 1.56029E-06 1.56898E-06 1.57767E-06 1.58638E-06 1.59509E-06 1.60382E-06 1.61255E-06 1.62129E-06 1.63003E-06 1.63879E-06 1.64756E-06 1.65633E-06 1.66512E-06 1.67391E-06 1.68271E-06 1.69152E-06 1.70034E-06 1.70917E-06 1.71801E-06 1.72686E-06 1.73572E-06 1.74458E-06 1.75346E-06 1.76234E-06 1.77124E-06 1.78014E-06 1.78906E-06 1.79798E-06 1.80692E-06 1.81586E-06 1.82482E-06 1.83378E-06 1.84276E-06 1.85174E-06 1.86074E-06 1.86975E-06 1.87876E-06 1.88779E-06 1.89683E-06 1.90588E-06 1.91495E-06 1.92402E-06 1.9331E-06 1.9422E-06 1.95131E-06 1.96043E-06 1.96956E-06 1.97871E-06 1.98786E-06 1.99703E-06 2.00621E-06 2.01541E-06 2.02462E-06 2.03384E-06 2.04307E-06 2.05232E-06 2.06158E-06 2.07086E-06 2.08015E-06 2.08946E-06 2.09878E-06 2.10811E-06 2.11746E-06 2.12683E-06 2.13621E-06 2.1456E-06 2.15501E-06 2.16444E-06 2.17389E-06 2.18335E-06 2.19283E-06 2.20232E-06 2.21184E-06 2.22137E-06 2.23092E-06 2.24049E-06 2.25007E-06 2.25968E-06 2.26931E-06 2.27895E-06 2.28862E-06 2.2983E-06 2.30801E-06 2.31774E-06 2.32749E-06 2.33726E-06 2.34706E-06 2.35687E-06 2.36671E-06 +-1.48726E-05 -1.15508E-05 -8.8931E-06 -6.77732E-06 -5.09617E-06 -3.75672E-06 -2.67984E-06 -1.80143E-06 -1.07585E-06 -4.78264E-07 2.03914E-11 3.61833E-07 6.17744E-07 7.86931E-07 8.93106E-07 9.59019E-07 1.00157E-06 1.03114E-06 1.05344E-06 1.07155E-06 1.08714E-06 1.10115E-06 1.11412E-06 1.12639E-06 1.13818E-06 1.14961E-06 1.16078E-06 1.17176E-06 1.18259E-06 1.19331E-06 1.20393E-06 1.21449E-06 1.225E-06 1.23546E-06 1.24588E-06 1.25628E-06 1.26665E-06 1.27701E-06 1.28736E-06 1.29769E-06 1.30802E-06 1.31834E-06 1.32866E-06 1.33898E-06 1.3493E-06 1.35962E-06 1.36994E-06 1.38027E-06 1.3906E-06 1.40094E-06 1.41128E-06 1.42163E-06 1.43198E-06 1.44234E-06 1.45271E-06 1.46309E-06 1.47347E-06 1.48387E-06 1.49427E-06 1.50468E-06 1.5151E-06 1.52553E-06 1.53597E-06 1.54642E-06 1.55688E-06 1.56735E-06 1.57782E-06 1.58831E-06 1.59881E-06 1.60932E-06 1.61984E-06 1.63037E-06 1.6409E-06 1.65145E-06 1.66201E-06 1.67258E-06 1.68316E-06 1.69376E-06 1.70436E-06 1.71497E-06 1.72559E-06 1.73623E-06 1.74687E-06 1.75752E-06 1.76819E-06 1.77886E-06 1.78955E-06 1.80025E-06 1.81095E-06 1.82167E-06 1.8324E-06 1.84314E-06 1.85389E-06 1.86465E-06 1.87542E-06 1.8862E-06 1.89699E-06 1.90779E-06 1.91861E-06 1.92943E-06 1.94026E-06 1.95111E-06 1.96197E-06 1.97283E-06 1.98371E-06 1.9946E-06 2.0055E-06 2.0164E-06 2.02733E-06 2.03826E-06 2.0492E-06 2.06015E-06 2.07111E-06 2.08209E-06 2.09308E-06 2.10407E-06 2.11508E-06 2.1261E-06 2.13713E-06 2.14817E-06 2.15923E-06 2.17029E-06 2.18137E-06 2.19246E-06 2.20356E-06 2.21467E-06 2.22579E-06 2.23693E-06 2.24808E-06 2.25924E-06 2.27041E-06 2.2816E-06 2.29279E-06 2.304E-06 2.31523E-06 2.32646E-06 2.33771E-06 2.34898E-06 2.36025E-06 2.37154E-06 2.38284E-06 2.39416E-06 2.40549E-06 2.41684E-06 2.42819E-06 2.43957E-06 2.45096E-06 2.46236E-06 2.47378E-06 2.48521E-06 2.49666E-06 2.50812E-06 2.5196E-06 2.5311E-06 2.54261E-06 2.55414E-06 2.56569E-06 2.57725E-06 2.58883E-06 2.60043E-06 2.61204E-06 2.62367E-06 2.63532E-06 2.64699E-06 2.65868E-06 2.67039E-06 2.68211E-06 2.69386E-06 2.70562E-06 2.71741E-06 2.72921E-06 2.74104E-06 2.75289E-06 2.76475E-06 2.77665E-06 2.78856E-06 2.80049E-06 2.81245E-06 2.82443E-06 2.83644E-06 2.84847E-06 2.86052E-06 2.8726E-06 2.8847E-06 2.89683E-06 2.90899E-06 2.92117E-06 2.93338E-06 2.94562E-06 2.95788E-06 2.97018E-06 +-1.78619E-05 -1.39367E-05 -1.0775E-05 -8.24266E-06 -6.21941E-06 -4.59917E-06 -3.29044E-06 -2.21837E-06 -1.32922E-06 -5.93287E-07 2.78234E-11 4.51852E-07 7.72832E-07 9.86129E-07 1.1206E-06 1.20429E-06 1.25832E-06 1.29577E-06 1.32393E-06 1.34673E-06 1.36632E-06 1.38387E-06 1.40011E-06 1.41545E-06 1.43017E-06 1.44443E-06 1.45837E-06 1.47206E-06 1.48556E-06 1.49892E-06 1.51216E-06 1.52532E-06 1.5384E-06 1.55143E-06 1.56441E-06 1.57736E-06 1.59028E-06 1.60317E-06 1.61605E-06 1.62892E-06 1.64178E-06 1.65463E-06 1.66747E-06 1.68032E-06 1.69316E-06 1.70601E-06 1.71886E-06 1.73171E-06 1.74457E-06 1.75743E-06 1.7703E-06 1.78318E-06 1.79606E-06 1.80896E-06 1.82186E-06 1.83477E-06 1.8477E-06 1.86063E-06 1.87357E-06 1.88653E-06 1.89949E-06 1.91247E-06 1.92546E-06 1.93846E-06 1.95147E-06 1.96449E-06 1.97753E-06 1.99058E-06 2.00364E-06 2.01671E-06 2.0298E-06 2.0429E-06 2.05601E-06 2.06913E-06 2.08227E-06 2.09542E-06 2.10858E-06 2.12176E-06 2.13494E-06 2.14815E-06 2.16136E-06 2.17459E-06 2.18783E-06 2.20108E-06 2.21434E-06 2.22762E-06 2.24092E-06 2.25422E-06 2.26754E-06 2.28087E-06 2.29421E-06 2.30757E-06 2.32094E-06 2.33432E-06 2.34772E-06 2.36113E-06 2.37455E-06 2.38798E-06 2.40143E-06 2.41489E-06 2.42837E-06 2.44186E-06 2.45536E-06 2.46887E-06 2.4824E-06 2.49594E-06 2.50949E-06 2.52306E-06 2.53664E-06 2.55023E-06 2.56384E-06 2.57746E-06 2.59109E-06 2.60474E-06 2.6184E-06 2.63207E-06 2.64576E-06 2.65947E-06 2.67318E-06 2.68691E-06 2.70066E-06 2.71442E-06 2.72819E-06 2.74198E-06 2.75578E-06 2.76959E-06 2.78342E-06 2.79727E-06 2.81113E-06 2.82501E-06 2.8389E-06 2.85281E-06 2.86673E-06 2.88066E-06 2.89462E-06 2.90859E-06 2.92257E-06 2.93658E-06 2.95059E-06 2.96463E-06 2.97868E-06 2.99275E-06 3.00684E-06 3.02094E-06 3.03506E-06 3.0492E-06 3.06336E-06 3.07753E-06 3.09172E-06 3.10594E-06 3.12017E-06 3.13442E-06 3.14869E-06 3.16298E-06 3.17729E-06 3.19162E-06 3.20597E-06 3.22034E-06 3.23474E-06 3.24915E-06 3.26359E-06 3.27804E-06 3.29252E-06 3.30703E-06 3.32155E-06 3.3361E-06 3.35068E-06 3.36527E-06 3.37989E-06 3.39454E-06 3.40921E-06 3.42391E-06 3.43863E-06 3.45338E-06 3.46816E-06 3.48296E-06 3.49779E-06 3.51265E-06 3.52754E-06 3.54246E-06 3.5574E-06 3.57238E-06 3.58738E-06 3.60242E-06 3.61749E-06 3.63259E-06 3.64773E-06 3.6629E-06 3.6781E-06 3.69333E-06 3.70861E-06 +-2.13607E-05 -1.67481E-05 -1.30052E-05 -9.98738E-06 -7.56157E-06 -5.60834E-06 -4.02307E-06 -2.71926E-06 -1.63409E-06 -7.3205E-07 3.83382E-11 5.61293E-07 9.62072E-07 1.23002E-06 1.39988E-06 1.50593E-06 1.57438E-06 1.62171E-06 1.65718E-06 1.6858E-06 1.7103E-06 1.73221E-06 1.75244E-06 1.77152E-06 1.7898E-06 1.80752E-06 1.82481E-06 1.84179E-06 1.85853E-06 1.87509E-06 1.8915E-06 1.9078E-06 1.924E-06 1.94014E-06 1.95621E-06 1.97225E-06 1.98824E-06 2.00421E-06 2.02015E-06 2.03608E-06 2.05199E-06 2.0679E-06 2.0838E-06 2.0997E-06 2.11559E-06 2.13149E-06 2.14739E-06 2.16329E-06 2.1792E-06 2.19512E-06 2.21104E-06 2.22697E-06 2.24292E-06 2.25887E-06 2.27483E-06 2.29081E-06 2.3068E-06 2.3228E-06 2.33881E-06 2.35484E-06 2.37087E-06 2.38693E-06 2.40299E-06 2.41908E-06 2.43517E-06 2.45128E-06 2.46741E-06 2.48355E-06 2.4997E-06 2.51587E-06 2.53206E-06 2.54826E-06 2.56447E-06 2.5807E-06 2.59695E-06 2.61321E-06 2.62949E-06 2.64579E-06 2.6621E-06 2.67842E-06 2.69476E-06 2.71112E-06 2.72749E-06 2.74388E-06 2.76029E-06 2.77671E-06 2.79314E-06 2.8096E-06 2.82606E-06 2.84255E-06 2.85905E-06 2.87556E-06 2.8921E-06 2.90864E-06 2.92521E-06 2.94179E-06 2.95838E-06 2.97499E-06 2.99162E-06 3.00827E-06 3.02492E-06 3.0416E-06 3.05829E-06 3.075E-06 3.09172E-06 3.10846E-06 3.12522E-06 3.14199E-06 3.15878E-06 3.17559E-06 3.19241E-06 3.20925E-06 3.2261E-06 3.24297E-06 3.25986E-06 3.27676E-06 3.29369E-06 3.31062E-06 3.32758E-06 3.34455E-06 3.36154E-06 3.37855E-06 3.39557E-06 3.41262E-06 3.42968E-06 3.44675E-06 3.46385E-06 3.48096E-06 3.4981E-06 3.51525E-06 3.53242E-06 3.54961E-06 3.56681E-06 3.58404E-06 3.60128E-06 3.61855E-06 3.63584E-06 3.65314E-06 3.67047E-06 3.68781E-06 3.70518E-06 3.72257E-06 3.73997E-06 3.7574E-06 3.77486E-06 3.79233E-06 3.80982E-06 3.82734E-06 3.84488E-06 3.86245E-06 3.88003E-06 3.89764E-06 3.91528E-06 3.93294E-06 3.95062E-06 3.96833E-06 3.98606E-06 4.00382E-06 4.0216E-06 4.03941E-06 4.05725E-06 4.07511E-06 4.09301E-06 4.11093E-06 4.12887E-06 4.14685E-06 4.16485E-06 4.18289E-06 4.20095E-06 4.21905E-06 4.23717E-06 4.25533E-06 4.27352E-06 4.29174E-06 4.31E-06 4.32828E-06 4.3466E-06 4.36496E-06 4.38335E-06 4.40177E-06 4.42024E-06 4.43873E-06 4.45727E-06 4.47584E-06 4.49446E-06 4.51311E-06 4.5318E-06 4.55053E-06 4.5693E-06 4.58812E-06 4.60698E-06 +-2.54275E-05 -2.00398E-05 -1.56329E-05 -1.20535E-05 -9.15712E-06 -6.8112E-06 -4.89772E-06 -3.31785E-06 -1.99884E-06 -8.98419E-07 5.31077E-11 6.93527E-07 1.19169E-06 1.52711E-06 1.74115E-06 1.8753E-06 1.96191E-06 2.02163E-06 2.06619E-06 2.102E-06 2.13254E-06 2.15977E-06 2.18485E-06 2.20848E-06 2.23109E-06 2.25297E-06 2.27431E-06 2.29526E-06 2.3159E-06 2.33631E-06 2.35653E-06 2.37661E-06 2.39657E-06 2.41644E-06 2.43624E-06 2.45597E-06 2.47566E-06 2.49532E-06 2.51494E-06 2.53454E-06 2.55413E-06 2.5737E-06 2.59327E-06 2.61282E-06 2.63238E-06 2.65194E-06 2.6715E-06 2.69107E-06 2.71064E-06 2.73022E-06 2.7498E-06 2.7694E-06 2.78901E-06 2.80864E-06 2.82827E-06 2.84792E-06 2.86758E-06 2.88726E-06 2.90695E-06 2.92666E-06 2.94638E-06 2.96612E-06 2.98588E-06 3.00566E-06 3.02545E-06 3.04526E-06 3.06509E-06 3.08493E-06 3.1048E-06 3.12468E-06 3.14458E-06 3.1645E-06 3.18444E-06 3.20439E-06 3.22437E-06 3.24436E-06 3.26438E-06 3.28441E-06 3.30446E-06 3.32453E-06 3.34462E-06 3.36473E-06 3.38485E-06 3.405E-06 3.42517E-06 3.44535E-06 3.46556E-06 3.48578E-06 3.50602E-06 3.52629E-06 3.54657E-06 3.56687E-06 3.58719E-06 3.60753E-06 3.62789E-06 3.64827E-06 3.66866E-06 3.68908E-06 3.70952E-06 3.72997E-06 3.75045E-06 3.77094E-06 3.79146E-06 3.81199E-06 3.83254E-06 3.85312E-06 3.87371E-06 3.89432E-06 3.91495E-06 3.9356E-06 3.95628E-06 3.97697E-06 3.99768E-06 4.01841E-06 4.03916E-06 4.05994E-06 4.08073E-06 4.10154E-06 4.12238E-06 4.14323E-06 4.16411E-06 4.18501E-06 4.20593E-06 4.22687E-06 4.24783E-06 4.26881E-06 4.28982E-06 4.31084E-06 4.33189E-06 4.35297E-06 4.37406E-06 4.39518E-06 4.41632E-06 4.43748E-06 4.45867E-06 4.47988E-06 4.50112E-06 4.52238E-06 4.54366E-06 4.56497E-06 4.58631E-06 4.60767E-06 4.62905E-06 4.65046E-06 4.6719E-06 4.69337E-06 4.71486E-06 4.73638E-06 4.75792E-06 4.7795E-06 4.8011E-06 4.82273E-06 4.84439E-06 4.86608E-06 4.8878E-06 4.90955E-06 4.93134E-06 4.95315E-06 4.97499E-06 4.99687E-06 5.01878E-06 5.04072E-06 5.06269E-06 5.0847E-06 5.10674E-06 5.12882E-06 5.15093E-06 5.17308E-06 5.19527E-06 5.21749E-06 5.23975E-06 5.26204E-06 5.28438E-06 5.30676E-06 5.32917E-06 5.35163E-06 5.37412E-06 5.39666E-06 5.41924E-06 5.44187E-06 5.46453E-06 5.48725E-06 5.51E-06 5.53281E-06 5.55566E-06 5.57856E-06 5.6015E-06 5.6245E-06 5.64755E-06 5.67064E-06 5.69379E-06 +-3.01189E-05 -2.38665E-05 -1.87083E-05 -1.44851E-05 -1.10429E-05 -8.237E-06 -5.9362E-06 -4.0292E-06 -2.43269E-06 -1.09665E-06 7.35502E-11 8.52312E-07 1.46874E-06 1.88719E-06 2.1563E-06 2.32577E-06 2.43523E-06 2.51048E-06 2.56638E-06 2.61106E-06 2.649E-06 2.68273E-06 2.7137E-06 2.74281E-06 2.77063E-06 2.79752E-06 2.82373E-06 2.84943E-06 2.87475E-06 2.89976E-06 2.92454E-06 2.94913E-06 2.97358E-06 2.99791E-06 3.02215E-06 3.04631E-06 3.07041E-06 3.09446E-06 3.11848E-06 3.14246E-06 3.16642E-06 3.19037E-06 3.2143E-06 3.23822E-06 3.26215E-06 3.28607E-06 3.30999E-06 3.33392E-06 3.35785E-06 3.38179E-06 3.40575E-06 3.42971E-06 3.45369E-06 3.47768E-06 3.50169E-06 3.52571E-06 3.54975E-06 3.57381E-06 3.59788E-06 3.62198E-06 3.64609E-06 3.67022E-06 3.69437E-06 3.71855E-06 3.74274E-06 3.76696E-06 3.79119E-06 3.81545E-06 3.83973E-06 3.86403E-06 3.88835E-06 3.9127E-06 3.93706E-06 3.96145E-06 3.98586E-06 4.0103E-06 4.03476E-06 4.05924E-06 4.08374E-06 4.10827E-06 4.13282E-06 4.15739E-06 4.18199E-06 4.2066E-06 4.23125E-06 4.25591E-06 4.2806E-06 4.30531E-06 4.33004E-06 4.3548E-06 4.37958E-06 4.40438E-06 4.42921E-06 4.45406E-06 4.47893E-06 4.50383E-06 4.52875E-06 4.55369E-06 4.57866E-06 4.60365E-06 4.62866E-06 4.6537E-06 4.67876E-06 4.70385E-06 4.72895E-06 4.75408E-06 4.77924E-06 4.80442E-06 4.82962E-06 4.85485E-06 4.8801E-06 4.90537E-06 4.93067E-06 4.95599E-06 4.98134E-06 5.00671E-06 5.03211E-06 5.05753E-06 5.08298E-06 5.10845E-06 5.13395E-06 5.15947E-06 5.18502E-06 5.21059E-06 5.23619E-06 5.26182E-06 5.28747E-06 5.31315E-06 5.33886E-06 5.36459E-06 5.39035E-06 5.41614E-06 5.44196E-06 5.4678E-06 5.49368E-06 5.51958E-06 5.54551E-06 5.57147E-06 5.59746E-06 5.62348E-06 5.64953E-06 5.67561E-06 5.70173E-06 5.72787E-06 5.75405E-06 5.78026E-06 5.8065E-06 5.83277E-06 5.85908E-06 5.88542E-06 5.9118E-06 5.93821E-06 5.96465E-06 5.99113E-06 6.01765E-06 6.04421E-06 6.0708E-06 6.09743E-06 6.12409E-06 6.1508E-06 6.17755E-06 6.20433E-06 6.23116E-06 6.25802E-06 6.28493E-06 6.31188E-06 6.33887E-06 6.36591E-06 6.39299E-06 6.42012E-06 6.44729E-06 6.4745E-06 6.50177E-06 6.52908E-06 6.55644E-06 6.58384E-06 6.6113E-06 6.63881E-06 6.66637E-06 6.69398E-06 6.72164E-06 6.74936E-06 6.77714E-06 6.80496E-06 6.83285E-06 6.86079E-06 6.88879E-06 6.91685E-06 6.94497E-06 6.97315E-06 7.0014E-06 +-3.5487E-05 -2.82805E-05 -2.22811E-05 -1.7327E-05 -1.32572E-05 -9.91652E-06 -7.16182E-06 -4.86959E-06 -2.94564E-06 -1.33135E-06 1.01237E-10 1.0418E-06 1.80112E-06 2.32142E-06 2.65904E-06 2.87291E-06 3.01119E-06 3.10596E-06 3.17597E-06 3.23161E-06 3.27862E-06 3.32023E-06 3.35832E-06 3.39404E-06 3.4281E-06 3.46099E-06 3.49301E-06 3.52438E-06 3.55525E-06 3.58575E-06 3.61595E-06 3.64591E-06 3.67568E-06 3.70531E-06 3.73481E-06 3.76421E-06 3.79354E-06 3.8228E-06 3.85202E-06 3.88119E-06 3.91034E-06 3.93946E-06 3.96857E-06 3.99766E-06 4.02675E-06 4.05583E-06 4.08492E-06 4.11401E-06 4.14311E-06 4.17222E-06 4.20133E-06 4.23046E-06 4.25961E-06 4.28877E-06 4.31795E-06 4.34714E-06 4.37636E-06 4.4056E-06 4.43485E-06 4.46413E-06 4.49343E-06 4.52276E-06 4.55211E-06 4.58148E-06 4.61088E-06 4.6403E-06 4.66974E-06 4.69922E-06 4.72871E-06 4.75824E-06 4.78779E-06 4.81736E-06 4.84697E-06 4.8766E-06 4.90625E-06 4.93593E-06 4.96564E-06 4.99538E-06 5.02515E-06 5.05494E-06 5.08476E-06 5.1146E-06 5.14448E-06 5.17438E-06 5.20431E-06 5.23427E-06 5.26425E-06 5.29426E-06 5.3243E-06 5.35437E-06 5.38446E-06 5.41459E-06 5.44474E-06 5.47492E-06 5.50512E-06 5.53535E-06 5.56562E-06 5.59591E-06 5.62622E-06 5.65657E-06 5.68694E-06 5.71734E-06 5.74777E-06 5.77823E-06 5.80871E-06 5.83923E-06 5.86977E-06 5.90034E-06 5.93094E-06 5.96157E-06 5.99222E-06 6.02291E-06 6.05362E-06 6.08437E-06 6.11514E-06 6.14594E-06 6.17677E-06 6.20764E-06 6.23853E-06 6.26945E-06 6.3004E-06 6.33138E-06 6.3624E-06 6.39344E-06 6.42452E-06 6.45562E-06 6.48676E-06 6.51793E-06 6.54914E-06 6.58037E-06 6.61164E-06 6.64294E-06 6.67428E-06 6.70565E-06 6.73705E-06 6.76849E-06 6.79996E-06 6.83147E-06 6.86301E-06 6.89459E-06 6.92621E-06 6.95786E-06 6.98955E-06 7.02128E-06 7.05305E-06 7.08485E-06 7.1167E-06 7.14858E-06 7.18051E-06 7.21248E-06 7.24448E-06 7.27653E-06 7.30862E-06 7.34076E-06 7.37294E-06 7.40516E-06 7.43742E-06 7.46974E-06 7.50209E-06 7.5345E-06 7.56695E-06 7.59945E-06 7.632E-06 7.6646E-06 7.69725E-06 7.72994E-06 7.76269E-06 7.7955E-06 7.82835E-06 7.86126E-06 7.89422E-06 7.92724E-06 7.96032E-06 7.99345E-06 8.02664E-06 8.05989E-06 8.0932E-06 8.12657E-06 8.16E-06 8.19349E-06 8.22705E-06 8.26067E-06 8.29436E-06 8.32811E-06 8.36193E-06 8.39582E-06 8.42978E-06 8.46381E-06 8.49792E-06 8.5321E-06 8.56635E-06 +-4.15757E-05 -3.3329E-05 -2.6398E-05 -2.06226E-05 -1.58379E-05 -1.18811E-05 -8.59872E-06 -5.85608E-06 -3.5483E-06 -1.60745E-06 1.37726E-10 1.2665E-06 2.19762E-06 2.84235E-06 3.2651E-06 3.53479E-06 3.70946E-06 3.82879E-06 3.91642E-06 3.98561E-06 4.04372E-06 4.0949E-06 4.14157E-06 4.1852E-06 4.22673E-06 4.26676E-06 4.30567E-06 4.34377E-06 4.38123E-06 4.41821E-06 4.45481E-06 4.4911E-06 4.52716E-06 4.56302E-06 4.59873E-06 4.63432E-06 4.6698E-06 4.7052E-06 4.74054E-06 4.77583E-06 4.81107E-06 4.84628E-06 4.88147E-06 4.91665E-06 4.95181E-06 4.98697E-06 5.02212E-06 5.05728E-06 5.09245E-06 5.12762E-06 5.16281E-06 5.19801E-06 5.23322E-06 5.26846E-06 5.30371E-06 5.33899E-06 5.37428E-06 5.4096E-06 5.44494E-06 5.48031E-06 5.51571E-06 5.55113E-06 5.58658E-06 5.62206E-06 5.65756E-06 5.6931E-06 5.72866E-06 5.76425E-06 5.79988E-06 5.83553E-06 5.87122E-06 5.90693E-06 5.94268E-06 5.97846E-06 6.01427E-06 6.05011E-06 6.08599E-06 6.12189E-06 6.15783E-06 6.1938E-06 6.2298E-06 6.26584E-06 6.30191E-06 6.33801E-06 6.37414E-06 6.4103E-06 6.4465E-06 6.48273E-06 6.51899E-06 6.55529E-06 6.59162E-06 6.62798E-06 6.66437E-06 6.7008E-06 6.73726E-06 6.77375E-06 6.81028E-06 6.84684E-06 6.88343E-06 6.92006E-06 6.95672E-06 6.99341E-06 7.03013E-06 7.06689E-06 7.10368E-06 7.14051E-06 7.17736E-06 7.21426E-06 7.25118E-06 7.28814E-06 7.32514E-06 7.36217E-06 7.39923E-06 7.43633E-06 7.47346E-06 7.51063E-06 7.54783E-06 7.58507E-06 7.62234E-06 7.65965E-06 7.697E-06 7.73438E-06 7.7718E-06 7.80925E-06 7.84675E-06 7.88428E-06 7.92184E-06 7.95945E-06 7.9971E-06 8.03478E-06 8.0725E-06 8.11026E-06 8.14806E-06 8.18591E-06 8.22379E-06 8.26171E-06 8.29968E-06 8.33769E-06 8.37574E-06 8.41383E-06 8.45197E-06 8.49015E-06 8.52838E-06 8.56665E-06 8.60497E-06 8.64333E-06 8.68174E-06 8.7202E-06 8.75871E-06 8.79726E-06 8.83587E-06 8.87452E-06 8.91322E-06 8.95198E-06 8.99079E-06 9.02965E-06 9.06856E-06 9.10753E-06 9.14656E-06 9.18564E-06 9.22477E-06 9.26397E-06 9.30322E-06 9.34253E-06 9.3819E-06 9.42133E-06 9.46082E-06 9.50038E-06 9.53999E-06 9.57968E-06 9.61942E-06 9.65924E-06 9.69912E-06 9.73907E-06 9.77909E-06 9.81918E-06 9.85934E-06 9.89957E-06 9.93987E-06 9.98026E-06 1.00207E-05 1.00612E-05 1.01019E-05 1.01426E-05 1.01833E-05 1.02242E-05 1.02651E-05 1.03061E-05 1.03473E-05 1.03885E-05 1.04297E-05 +-4.84169E-05 -3.90506E-05 -3.10999E-05 -2.44116E-05 -1.88212E-05 -1.41614E-05 -1.0271E-05 -7.00609E-06 -4.25166E-06 -1.93011E-06 1.84363E-10 1.53126E-06 2.6678E-06 3.46398E-06 3.99223E-06 4.33211E-06 4.55281E-06 4.70313E-06 4.81281E-06 4.89878E-06 4.97048E-06 5.03326E-06 5.09026E-06 5.14337E-06 5.19379E-06 5.24227E-06 5.28935E-06 5.33537E-06 5.38059E-06 5.42519E-06 5.46931E-06 5.51304E-06 5.55647E-06 5.59965E-06 5.64263E-06 5.68545E-06 5.72814E-06 5.77072E-06 5.81322E-06 5.85565E-06 5.89802E-06 5.94035E-06 5.98265E-06 6.02493E-06 6.06719E-06 6.10944E-06 6.15168E-06 6.19393E-06 6.23618E-06 6.27843E-06 6.3207E-06 6.36299E-06 6.40529E-06 6.44761E-06 6.48995E-06 6.53232E-06 6.57471E-06 6.61712E-06 6.65956E-06 6.70204E-06 6.74454E-06 6.78707E-06 6.82963E-06 6.87223E-06 6.91486E-06 6.95752E-06 7.00022E-06 7.04295E-06 7.08571E-06 7.12852E-06 7.17135E-06 7.21423E-06 7.25713E-06 7.30008E-06 7.34306E-06 7.38608E-06 7.42914E-06 7.47224E-06 7.51537E-06 7.55854E-06 7.60175E-06 7.64499E-06 7.68827E-06 7.7316E-06 7.77496E-06 7.81835E-06 7.86179E-06 7.90526E-06 7.94878E-06 7.99233E-06 8.03592E-06 8.07955E-06 8.12321E-06 8.16692E-06 8.21066E-06 8.25445E-06 8.29827E-06 8.34213E-06 8.38603E-06 8.42996E-06 8.47394E-06 8.51796E-06 8.56201E-06 8.60611E-06 8.65024E-06 8.69441E-06 8.73863E-06 8.78288E-06 8.82717E-06 8.8715E-06 8.91588E-06 8.96029E-06 9.00474E-06 9.04924E-06 9.09377E-06 9.13835E-06 9.18297E-06 9.22763E-06 9.27233E-06 9.31707E-06 9.36186E-06 9.40669E-06 9.45156E-06 9.49648E-06 9.54144E-06 9.58644E-06 9.63149E-06 9.67659E-06 9.72173E-06 9.76691E-06 9.81215E-06 9.85742E-06 9.90275E-06 9.94812E-06 9.99355E-06 1.0039E-05 1.00845E-05 1.01301E-05 1.01757E-05 1.02214E-05 1.02671E-05 1.03129E-05 1.03587E-05 1.04046E-05 1.04505E-05 1.04965E-05 1.05426E-05 1.05887E-05 1.06349E-05 1.06811E-05 1.07273E-05 1.07737E-05 1.08201E-05 1.08665E-05 1.09131E-05 1.09596E-05 1.10063E-05 1.1053E-05 1.10998E-05 1.11466E-05 1.11935E-05 1.12405E-05 1.12876E-05 1.13347E-05 1.13819E-05 1.14291E-05 1.14764E-05 1.15239E-05 1.15713E-05 1.16189E-05 1.16665E-05 1.17142E-05 1.1762E-05 1.18099E-05 1.18579E-05 1.19059E-05 1.1954E-05 1.20023E-05 1.20506E-05 1.20989E-05 1.21474E-05 1.2196E-05 1.22447E-05 1.22934E-05 1.23423E-05 1.23912E-05 1.24403E-05 1.24894E-05 1.25387E-05 1.2588E-05 1.26375E-05 +-5.60305E-05 -4.54711E-05 -3.64187E-05 -2.87276E-05 -2.2239E-05 -1.67855E-05 -1.22017E-05 -8.33675E-06 -5.06677E-06 -2.3046E-06 2.42139E-10 1.84118E-06 3.22192E-06 4.20158E-06 4.86022E-06 5.28827E-06 5.56731E-06 5.75686E-06 5.89424E-06 6.00104E-06 6.0894E-06 6.16627E-06 6.23568E-06 6.3001E-06 6.36106E-06 6.41954E-06 6.47622E-06 6.53156E-06 6.58587E-06 6.6394E-06 6.6923E-06 6.74471E-06 6.79673E-06 6.84843E-06 6.89988E-06 6.95112E-06 7.00219E-06 7.05312E-06 7.10394E-06 7.15467E-06 7.20532E-06 7.25592E-06 7.30647E-06 7.35699E-06 7.40749E-06 7.45796E-06 7.50843E-06 7.5589E-06 7.60936E-06 7.65983E-06 7.71032E-06 7.76081E-06 7.81133E-06 7.86186E-06 7.91242E-06 7.963E-06 8.01361E-06 8.06425E-06 8.11492E-06 8.16562E-06 8.21635E-06 8.26712E-06 8.31793E-06 8.36877E-06 8.41965E-06 8.47056E-06 8.52152E-06 8.57251E-06 8.62355E-06 8.67462E-06 8.72574E-06 8.7769E-06 8.8281E-06 8.87934E-06 8.93063E-06 8.98195E-06 9.03333E-06 9.08474E-06 9.1362E-06 9.1877E-06 9.23924E-06 9.29083E-06 9.34247E-06 9.39414E-06 9.44587E-06 9.49763E-06 9.54944E-06 9.6013E-06 9.6532E-06 9.70514E-06 9.75713E-06 9.80916E-06 9.86124E-06 9.91336E-06 9.96553E-06 1.00177E-05 1.007E-05 1.01223E-05 1.01747E-05 1.02271E-05 1.02795E-05 1.0332E-05 1.03845E-05 1.04371E-05 1.04897E-05 1.05424E-05 1.05951E-05 1.06479E-05 1.07007E-05 1.07535E-05 1.08064E-05 1.08594E-05 1.09124E-05 1.09654E-05 1.10185E-05 1.10716E-05 1.11248E-05 1.11781E-05 1.12314E-05 1.12847E-05 1.13381E-05 1.13915E-05 1.1445E-05 1.14985E-05 1.15521E-05 1.16058E-05 1.16595E-05 1.17132E-05 1.1767E-05 1.18209E-05 1.18748E-05 1.19287E-05 1.19827E-05 1.20368E-05 1.2091E-05 1.21451E-05 1.21994E-05 1.22537E-05 1.23081E-05 1.23625E-05 1.2417E-05 1.24715E-05 1.25261E-05 1.25808E-05 1.26355E-05 1.26903E-05 1.27452E-05 1.28002E-05 1.28552E-05 1.29102E-05 1.29654E-05 1.30206E-05 1.30758E-05 1.31312E-05 1.31866E-05 1.32421E-05 1.32977E-05 1.33534E-05 1.34091E-05 1.34649E-05 1.35208E-05 1.35767E-05 1.36328E-05 1.36889E-05 1.37451E-05 1.38014E-05 1.38578E-05 1.39143E-05 1.39708E-05 1.40275E-05 1.40842E-05 1.41411E-05 1.4198E-05 1.4255E-05 1.43122E-05 1.43694E-05 1.44267E-05 1.44841E-05 1.45417E-05 1.45993E-05 1.4657E-05 1.47149E-05 1.47728E-05 1.48309E-05 1.48891E-05 1.49474E-05 1.50058E-05 1.50643E-05 1.5123E-05 1.51818E-05 1.52407E-05 +-6.44218E-05 -5.26043E-05 -4.23732E-05 -3.35946E-05 -2.61167E-05 -1.97775E-05 -1.44116E-05 -9.8641E-06 -6.00436E-06 -2.73616E-06 3.11652E-10 2.2015E-06 3.87076E-06 5.0715E-06 5.89065E-06 6.42934E-06 6.78237E-06 7.02174E-06 7.19404E-06 7.32678E-06 7.43564E-06 7.52961E-06 7.61396E-06 7.69185E-06 7.76529E-06 7.83555E-06 7.90351E-06 7.96974E-06 8.03465E-06 8.09856E-06 8.16168E-06 8.22416E-06 8.28614E-06 8.34772E-06 8.40897E-06 8.46995E-06 8.53071E-06 8.59129E-06 8.65172E-06 8.71203E-06 8.77225E-06 8.83238E-06 8.89246E-06 8.95248E-06 9.01247E-06 9.07243E-06 9.13238E-06 9.19231E-06 9.25225E-06 9.31218E-06 9.37212E-06 9.43208E-06 9.49205E-06 9.55204E-06 9.61206E-06 9.6721E-06 9.73217E-06 9.79227E-06 9.85241E-06 9.91258E-06 9.97279E-06 1.0033E-05 1.00933E-05 1.01536E-05 1.0214E-05 1.02744E-05 1.03349E-05 1.03954E-05 1.04559E-05 1.05165E-05 1.05771E-05 1.06378E-05 1.06986E-05 1.07593E-05 1.08202E-05 1.08811E-05 1.0942E-05 1.1003E-05 1.1064E-05 1.11251E-05 1.11862E-05 1.12474E-05 1.13086E-05 1.13699E-05 1.14312E-05 1.14926E-05 1.1554E-05 1.16155E-05 1.1677E-05 1.17386E-05 1.18003E-05 1.18619E-05 1.19237E-05 1.19855E-05 1.20473E-05 1.21092E-05 1.21712E-05 1.22332E-05 1.22952E-05 1.23573E-05 1.24195E-05 1.24817E-05 1.2544E-05 1.26063E-05 1.26686E-05 1.27311E-05 1.27935E-05 1.28561E-05 1.29186E-05 1.29813E-05 1.3044E-05 1.31067E-05 1.31695E-05 1.32324E-05 1.32953E-05 1.33583E-05 1.34213E-05 1.34844E-05 1.35475E-05 1.36107E-05 1.3674E-05 1.37373E-05 1.38006E-05 1.38641E-05 1.39276E-05 1.39911E-05 1.40547E-05 1.41184E-05 1.41821E-05 1.42459E-05 1.43098E-05 1.43737E-05 1.44377E-05 1.45018E-05 1.45659E-05 1.46301E-05 1.46943E-05 1.47587E-05 1.48231E-05 1.48875E-05 1.49521E-05 1.50167E-05 1.50814E-05 1.51461E-05 1.52109E-05 1.52758E-05 1.53408E-05 1.54059E-05 1.5471E-05 1.55362E-05 1.56015E-05 1.56669E-05 1.57324E-05 1.57979E-05 1.58636E-05 1.59293E-05 1.59951E-05 1.6061E-05 1.6127E-05 1.61931E-05 1.62593E-05 1.63255E-05 1.63919E-05 1.64584E-05 1.65249E-05 1.65916E-05 1.66584E-05 1.67252E-05 1.67922E-05 1.68593E-05 1.69264E-05 1.69937E-05 1.70611E-05 1.71287E-05 1.71963E-05 1.7264E-05 1.73319E-05 1.73999E-05 1.7468E-05 1.75362E-05 1.76046E-05 1.76731E-05 1.77417E-05 1.78104E-05 1.78793E-05 1.79483E-05 1.80174E-05 1.80867E-05 1.81562E-05 1.82257E-05 1.82954E-05 +-7.35795E-05 -6.04489E-05 -4.89703E-05 -3.90246E-05 -3.04715E-05 -2.31559E-05 -1.69178E-05 -1.16023E-05 -7.07432E-06 -3.22979E-06 3.93194E-10 2.61745E-06 4.62531E-06 6.09079E-06 7.10657E-06 7.78366E-06 8.23056E-06 8.53337E-06 8.74988E-06 8.91508E-06 9.04923E-06 9.16403E-06 9.26633E-06 9.36028E-06 9.44848E-06 9.53259E-06 9.61372E-06 9.69264E-06 9.76988E-06 9.84582E-06 9.92075E-06 9.99487E-06 1.00683E-05 1.01413E-05 1.02138E-05 1.0286E-05 1.03579E-05 1.04296E-05 1.0501E-05 1.05723E-05 1.06435E-05 1.07146E-05 1.07856E-05 1.08565E-05 1.09274E-05 1.09982E-05 1.1069E-05 1.11398E-05 1.12105E-05 1.12813E-05 1.13521E-05 1.14229E-05 1.14936E-05 1.15645E-05 1.16353E-05 1.17061E-05 1.1777E-05 1.1848E-05 1.19189E-05 1.19899E-05 1.20609E-05 1.2132E-05 1.22031E-05 1.22743E-05 1.23455E-05 1.24168E-05 1.24881E-05 1.25594E-05 1.26308E-05 1.27023E-05 1.27738E-05 1.28454E-05 1.2917E-05 1.29887E-05 1.30604E-05 1.31322E-05 1.3204E-05 1.32759E-05 1.33478E-05 1.34199E-05 1.34919E-05 1.3564E-05 1.36362E-05 1.37084E-05 1.37807E-05 1.38531E-05 1.39255E-05 1.3998E-05 1.40705E-05 1.41431E-05 1.42157E-05 1.42884E-05 1.43612E-05 1.4434E-05 1.45069E-05 1.45798E-05 1.46528E-05 1.47259E-05 1.4799E-05 1.48722E-05 1.49454E-05 1.50187E-05 1.50921E-05 1.51655E-05 1.5239E-05 1.53125E-05 1.53861E-05 1.54598E-05 1.55335E-05 1.56073E-05 1.56812E-05 1.57551E-05 1.58291E-05 1.59031E-05 1.59772E-05 1.60514E-05 1.61256E-05 1.61999E-05 1.62743E-05 1.63487E-05 1.64232E-05 1.64978E-05 1.65724E-05 1.66471E-05 1.67219E-05 1.67967E-05 1.68716E-05 1.69466E-05 1.70217E-05 1.70968E-05 1.7172E-05 1.72473E-05 1.73226E-05 1.7398E-05 1.74735E-05 1.75491E-05 1.76248E-05 1.77005E-05 1.77763E-05 1.78522E-05 1.79282E-05 1.80043E-05 1.80804E-05 1.81567E-05 1.8233E-05 1.83094E-05 1.83859E-05 1.84625E-05 1.85392E-05 1.8616E-05 1.86928E-05 1.87698E-05 1.88469E-05 1.8924E-05 1.90013E-05 1.90786E-05 1.91561E-05 1.92337E-05 1.93114E-05 1.93891E-05 1.9467E-05 1.9545E-05 1.96231E-05 1.97014E-05 1.97797E-05 1.98582E-05 1.99367E-05 2.00154E-05 2.00943E-05 2.01732E-05 2.02523E-05 2.03315E-05 2.04108E-05 2.04902E-05 2.05698E-05 2.06496E-05 2.07294E-05 2.08094E-05 2.08896E-05 2.09698E-05 2.10503E-05 2.11309E-05 2.12116E-05 2.12925E-05 2.13735E-05 2.14547E-05 2.15361E-05 2.16176E-05 2.16993E-05 2.17811E-05 2.18632E-05 +-8.34763E-05 -6.89877E-05 -5.62027E-05 -4.50184E-05 -3.53091E-05 -2.69316E-05 -1.97329E-05 -1.35629E-05 -8.28526E-06 -3.79007E-06 4.869E-10 3.09411E-06 5.49642E-06 7.27666E-06 8.5318E-06 9.3813E-06 9.94715E-06 1.03309E-05 1.06036E-05 1.08096E-05 1.09751E-05 1.11153E-05 1.12392E-05 1.13523E-05 1.1458E-05 1.15583E-05 1.16548E-05 1.17485E-05 1.184E-05 1.19298E-05 1.20184E-05 1.21058E-05 1.21925E-05 1.22785E-05 1.23639E-05 1.24489E-05 1.25335E-05 1.26179E-05 1.27019E-05 1.27858E-05 1.28695E-05 1.2953E-05 1.30364E-05 1.31198E-05 1.3203E-05 1.32862E-05 1.33693E-05 1.34525E-05 1.35356E-05 1.36186E-05 1.37017E-05 1.37848E-05 1.38679E-05 1.3951E-05 1.40341E-05 1.41173E-05 1.42004E-05 1.42836E-05 1.43669E-05 1.44502E-05 1.45335E-05 1.46169E-05 1.47003E-05 1.47837E-05 1.48673E-05 1.49508E-05 1.50344E-05 1.51181E-05 1.52018E-05 1.52856E-05 1.53695E-05 1.54534E-05 1.55373E-05 1.56214E-05 1.57054E-05 1.57896E-05 1.58738E-05 1.59581E-05 1.60424E-05 1.61268E-05 1.62113E-05 1.62958E-05 1.63804E-05 1.6465E-05 1.65497E-05 1.66345E-05 1.67194E-05 1.68043E-05 1.68893E-05 1.69743E-05 1.70594E-05 1.71446E-05 1.72299E-05 1.73152E-05 1.74006E-05 1.7486E-05 1.75715E-05 1.76571E-05 1.77427E-05 1.78285E-05 1.79143E-05 1.80001E-05 1.8086E-05 1.8172E-05 1.82581E-05 1.83442E-05 1.84304E-05 1.85167E-05 1.8603E-05 1.86894E-05 1.87759E-05 1.88625E-05 1.89491E-05 1.90358E-05 1.91226E-05 1.92094E-05 1.92964E-05 1.93833E-05 1.94704E-05 1.95576E-05 1.96448E-05 1.97321E-05 1.98195E-05 1.99069E-05 1.99944E-05 2.00821E-05 2.01697E-05 2.02575E-05 2.03454E-05 2.04333E-05 2.05213E-05 2.06095E-05 2.06977E-05 2.07859E-05 2.08743E-05 2.09628E-05 2.10513E-05 2.114E-05 2.12287E-05 2.13175E-05 2.14065E-05 2.14955E-05 2.15846E-05 2.16738E-05 2.17631E-05 2.18526E-05 2.19421E-05 2.20317E-05 2.21214E-05 2.22113E-05 2.23012E-05 2.23913E-05 2.24815E-05 2.25717E-05 2.26621E-05 2.27527E-05 2.28433E-05 2.29341E-05 2.30249E-05 2.31159E-05 2.32071E-05 2.32983E-05 2.33897E-05 2.34812E-05 2.35729E-05 2.36647E-05 2.37566E-05 2.38487E-05 2.39409E-05 2.40332E-05 2.41257E-05 2.42184E-05 2.43112E-05 2.44041E-05 2.44972E-05 2.45905E-05 2.46839E-05 2.47775E-05 2.48712E-05 2.49651E-05 2.50592E-05 2.51535E-05 2.52479E-05 2.53425E-05 2.54373E-05 2.55323E-05 2.56274E-05 2.57228E-05 2.58183E-05 2.5914E-05 2.601E-05 +-9.40694E-05 -7.81888E-05 -6.40487E-05 -5.15641E-05 -4.06263E-05 -3.11065E-05 -2.28635E-05 -1.57538E-05 -9.64399E-06 -4.42092E-06 5.92901E-10 3.63615E-06 6.49436E-06 8.64583E-06 1.01901E-05 1.12531E-05 1.19692E-05 1.24562E-05 1.28005E-05 1.3058E-05 1.32626E-05 1.3434E-05 1.35842E-05 1.37201E-05 1.38463E-05 1.39657E-05 1.40801E-05 1.41909E-05 1.42988E-05 1.44046E-05 1.45087E-05 1.46115E-05 1.47132E-05 1.48141E-05 1.49142E-05 1.50138E-05 1.51129E-05 1.52116E-05 1.53099E-05 1.5408E-05 1.55058E-05 1.56035E-05 1.5701E-05 1.57984E-05 1.58956E-05 1.59928E-05 1.60899E-05 1.6187E-05 1.6284E-05 1.6381E-05 1.6478E-05 1.65749E-05 1.66719E-05 1.67689E-05 1.68659E-05 1.69629E-05 1.70599E-05 1.7157E-05 1.72541E-05 1.73513E-05 1.74485E-05 1.75457E-05 1.7643E-05 1.77403E-05 1.78377E-05 1.79351E-05 1.80326E-05 1.81302E-05 1.82278E-05 1.83255E-05 1.84232E-05 1.8521E-05 1.86189E-05 1.87168E-05 1.88148E-05 1.89129E-05 1.9011E-05 1.91092E-05 1.92075E-05 1.93058E-05 1.94043E-05 1.95027E-05 1.96013E-05 1.96999E-05 1.97986E-05 1.98974E-05 1.99963E-05 2.00952E-05 2.01942E-05 2.02933E-05 2.03924E-05 2.04916E-05 2.05909E-05 2.06903E-05 2.07897E-05 2.08892E-05 2.09888E-05 2.10885E-05 2.11882E-05 2.12881E-05 2.1388E-05 2.14879E-05 2.1588E-05 2.16881E-05 2.17883E-05 2.18886E-05 2.1989E-05 2.20894E-05 2.21899E-05 2.22905E-05 2.23912E-05 2.2492E-05 2.25928E-05 2.26937E-05 2.27948E-05 2.28958E-05 2.2997E-05 2.30983E-05 2.31996E-05 2.3301E-05 2.34026E-05 2.35042E-05 2.36059E-05 2.37076E-05 2.38095E-05 2.39115E-05 2.40135E-05 2.41157E-05 2.42179E-05 2.43202E-05 2.44227E-05 2.45252E-05 2.46278E-05 2.47305E-05 2.48334E-05 2.49363E-05 2.50393E-05 2.51424E-05 2.52457E-05 2.5349E-05 2.54525E-05 2.5556E-05 2.56597E-05 2.57635E-05 2.58674E-05 2.59714E-05 2.60756E-05 2.61798E-05 2.62842E-05 2.63887E-05 2.64934E-05 2.65981E-05 2.6703E-05 2.6808E-05 2.69132E-05 2.70185E-05 2.71239E-05 2.72294E-05 2.73351E-05 2.7441E-05 2.7547E-05 2.76531E-05 2.77594E-05 2.78658E-05 2.79724E-05 2.80792E-05 2.81861E-05 2.82931E-05 2.84004E-05 2.85078E-05 2.86153E-05 2.87231E-05 2.8831E-05 2.8939E-05 2.90473E-05 2.91558E-05 2.92644E-05 2.93732E-05 2.94822E-05 2.95914E-05 2.97008E-05 2.98104E-05 2.99202E-05 3.00302E-05 3.01404E-05 3.02508E-05 3.03614E-05 3.04723E-05 3.05834E-05 3.06946E-05 3.08062E-05 +-0.000105303 -8.80067E-05 -7.2474E-05 -5.86383E-05 -4.64092E-05 -3.56751E-05 -2.63093E-05 -1.81788E-05 -1.11551E-05 -5.12536E-06 7.11431E-10 4.24764E-06 7.62836E-06 1.02137E-05 1.2104E-05 1.34292E-05 1.43342E-05 1.49528E-05 1.53887E-05 1.57117E-05 1.59651E-05 1.6175E-05 1.63569E-05 1.65202E-05 1.66708E-05 1.68125E-05 1.69478E-05 1.70782E-05 1.72051E-05 1.73292E-05 1.74511E-05 1.75713E-05 1.76901E-05 1.78078E-05 1.79246E-05 1.80407E-05 1.81561E-05 1.8271E-05 1.83855E-05 1.84996E-05 1.86134E-05 1.8727E-05 1.88403E-05 1.89535E-05 1.90665E-05 1.91794E-05 1.92922E-05 1.94049E-05 1.95176E-05 1.96302E-05 1.97428E-05 1.98553E-05 1.99679E-05 2.00804E-05 2.0193E-05 2.03055E-05 2.04181E-05 2.05307E-05 2.06434E-05 2.0756E-05 2.08688E-05 2.09815E-05 2.10943E-05 2.12072E-05 2.13201E-05 2.14331E-05 2.15461E-05 2.16592E-05 2.17724E-05 2.18856E-05 2.19989E-05 2.21122E-05 2.22256E-05 2.23391E-05 2.24527E-05 2.25663E-05 2.26801E-05 2.27938E-05 2.29077E-05 2.30217E-05 2.31357E-05 2.32498E-05 2.3364E-05 2.34782E-05 2.35925E-05 2.3707E-05 2.38214E-05 2.3936E-05 2.40507E-05 2.41654E-05 2.42802E-05 2.43951E-05 2.45101E-05 2.46252E-05 2.47403E-05 2.48556E-05 2.49709E-05 2.50863E-05 2.52018E-05 2.53173E-05 2.5433E-05 2.55487E-05 2.56646E-05 2.57805E-05 2.58965E-05 2.60125E-05 2.61287E-05 2.6245E-05 2.63613E-05 2.64778E-05 2.65943E-05 2.67109E-05 2.68276E-05 2.69444E-05 2.70613E-05 2.71783E-05 2.72954E-05 2.74125E-05 2.75298E-05 2.76472E-05 2.77646E-05 2.78822E-05 2.79999E-05 2.81176E-05 2.82355E-05 2.83534E-05 2.84715E-05 2.85897E-05 2.87079E-05 2.88263E-05 2.89448E-05 2.90634E-05 2.91821E-05 2.93009E-05 2.94199E-05 2.95389E-05 2.96581E-05 2.97774E-05 2.98968E-05 3.00163E-05 3.0136E-05 3.02558E-05 3.03757E-05 3.04957E-05 3.06159E-05 3.07362E-05 3.08566E-05 3.09772E-05 3.10979E-05 3.12187E-05 3.13397E-05 3.14608E-05 3.15821E-05 3.17035E-05 3.18251E-05 3.19469E-05 3.20688E-05 3.21908E-05 3.2313E-05 3.24354E-05 3.25579E-05 3.26807E-05 3.28035E-05 3.29266E-05 3.30498E-05 3.31732E-05 3.32968E-05 3.34206E-05 3.35446E-05 3.36687E-05 3.37931E-05 3.39176E-05 3.40423E-05 3.41673E-05 3.42924E-05 3.44178E-05 3.45434E-05 3.46691E-05 3.47951E-05 3.49214E-05 3.50478E-05 3.51745E-05 3.53014E-05 3.54285E-05 3.55559E-05 3.56835E-05 3.58114E-05 3.59395E-05 3.60679E-05 3.61965E-05 3.63254E-05 +-0.000117113 -9.83857E-05 -8.14335E-05 -6.62072E-05 -5.2635E-05 -4.06241E-05 -3.00646E-05 -2.08368E-05 -1.28205E-05 -5.90537E-06 8.42892E-10 4.93185E-06 8.90607E-06 1.19937E-05 1.42939E-05 1.59381E-05 1.70786E-05 1.78644E-05 1.84174E-05 1.88236E-05 1.91386E-05 1.93962E-05 1.96168E-05 1.9813E-05 1.99925E-05 2.01604E-05 2.03198E-05 2.04731E-05 2.06216E-05 2.07666E-05 2.09088E-05 2.10488E-05 2.1187E-05 2.13237E-05 2.14593E-05 2.15939E-05 2.17277E-05 2.18608E-05 2.19934E-05 2.21255E-05 2.22571E-05 2.23885E-05 2.25196E-05 2.26504E-05 2.2781E-05 2.29115E-05 2.30418E-05 2.3172E-05 2.33021E-05 2.34321E-05 2.35621E-05 2.3692E-05 2.3822E-05 2.39518E-05 2.40817E-05 2.42116E-05 2.43415E-05 2.44714E-05 2.46013E-05 2.47313E-05 2.48613E-05 2.49913E-05 2.51214E-05 2.52515E-05 2.53817E-05 2.5512E-05 2.56423E-05 2.57726E-05 2.59031E-05 2.60336E-05 2.61641E-05 2.62948E-05 2.64255E-05 2.65563E-05 2.66871E-05 2.68181E-05 2.69491E-05 2.70802E-05 2.72114E-05 2.73426E-05 2.7474E-05 2.76054E-05 2.77369E-05 2.78685E-05 2.80002E-05 2.8132E-05 2.82638E-05 2.83958E-05 2.85278E-05 2.86599E-05 2.87922E-05 2.89245E-05 2.90568E-05 2.91893E-05 2.93219E-05 2.94546E-05 2.95873E-05 2.97202E-05 2.98531E-05 2.99861E-05 3.01193E-05 3.02525E-05 3.03858E-05 3.05192E-05 3.06527E-05 3.07863E-05 3.092E-05 3.10538E-05 3.11877E-05 3.13217E-05 3.14558E-05 3.15899E-05 3.17242E-05 3.18586E-05 3.19931E-05 3.21277E-05 3.22624E-05 3.23972E-05 3.25321E-05 3.26671E-05 3.28022E-05 3.29375E-05 3.30728E-05 3.32083E-05 3.33438E-05 3.34795E-05 3.36153E-05 3.37512E-05 3.38873E-05 3.40234E-05 3.41597E-05 3.42961E-05 3.44326E-05 3.45692E-05 3.4706E-05 3.48429E-05 3.498E-05 3.51171E-05 3.52544E-05 3.53919E-05 3.55294E-05 3.56672E-05 3.5805E-05 3.5943E-05 3.60812E-05 3.62195E-05 3.6358E-05 3.64966E-05 3.66353E-05 3.67743E-05 3.69134E-05 3.70526E-05 3.7192E-05 3.73316E-05 3.74714E-05 3.76113E-05 3.77514E-05 3.78917E-05 3.80322E-05 3.81729E-05 3.83137E-05 3.84548E-05 3.8596E-05 3.87374E-05 3.88791E-05 3.90209E-05 3.9163E-05 3.93052E-05 3.94477E-05 3.95904E-05 3.97333E-05 3.98764E-05 4.00198E-05 4.01633E-05 4.03072E-05 4.04512E-05 4.05955E-05 4.07401E-05 4.08849E-05 4.10299E-05 4.11752E-05 4.13208E-05 4.14666E-05 4.16127E-05 4.17591E-05 4.19057E-05 4.20526E-05 4.21998E-05 4.23473E-05 4.24951E-05 4.26432E-05 +-0.000129426 -0.000109263 -9.08743E-05 -7.42287E-05 -5.92729E-05 -4.59331E-05 -3.41178E-05 -2.37227E-05 -1.46389E-05 -6.76162E-06 9.87875E-10 5.69099E-06 1.03331E-05 1.39961E-05 1.67764E-05 1.8804E-05 2.02355E-05 2.12324E-05 2.19348E-05 2.24474E-05 2.28402E-05 2.31572E-05 2.34253E-05 2.36611E-05 2.38751E-05 2.40736E-05 2.42612E-05 2.44407E-05 2.46142E-05 2.4783E-05 2.49481E-05 2.51105E-05 2.52705E-05 2.54286E-05 2.55853E-05 2.57407E-05 2.5895E-05 2.60485E-05 2.62012E-05 2.63534E-05 2.6505E-05 2.66561E-05 2.68069E-05 2.69574E-05 2.71075E-05 2.72575E-05 2.74072E-05 2.75568E-05 2.77063E-05 2.78556E-05 2.80049E-05 2.81541E-05 2.83032E-05 2.84523E-05 2.86013E-05 2.87504E-05 2.88994E-05 2.90485E-05 2.91975E-05 2.93466E-05 2.94957E-05 2.96448E-05 2.9794E-05 2.99432E-05 3.00925E-05 3.02418E-05 3.03912E-05 3.05406E-05 3.06901E-05 3.08397E-05 3.09894E-05 3.11391E-05 3.12889E-05 3.14387E-05 3.15887E-05 3.17387E-05 3.18888E-05 3.2039E-05 3.21893E-05 3.23396E-05 3.24901E-05 3.26406E-05 3.27913E-05 3.2942E-05 3.30928E-05 3.32437E-05 3.33947E-05 3.35458E-05 3.3697E-05 3.38483E-05 3.39996E-05 3.41511E-05 3.43027E-05 3.44543E-05 3.46061E-05 3.4758E-05 3.49099E-05 3.5062E-05 3.52141E-05 3.53664E-05 3.55188E-05 3.56712E-05 3.58238E-05 3.59765E-05 3.61292E-05 3.62821E-05 3.64351E-05 3.65882E-05 3.67414E-05 3.68947E-05 3.70481E-05 3.72016E-05 3.73553E-05 3.7509E-05 3.76628E-05 3.78168E-05 3.79709E-05 3.81251E-05 3.82794E-05 3.84338E-05 3.85884E-05 3.8743E-05 3.88978E-05 3.90528E-05 3.92078E-05 3.9363E-05 3.95182E-05 3.96737E-05 3.98292E-05 3.99849E-05 4.01407E-05 4.02967E-05 4.04528E-05 4.0609E-05 4.07654E-05 4.09219E-05 4.10786E-05 4.12354E-05 4.13924E-05 4.15495E-05 4.17068E-05 4.18642E-05 4.20218E-05 4.21795E-05 4.23375E-05 4.24956E-05 4.26538E-05 4.28123E-05 4.29709E-05 4.31297E-05 4.32886E-05 4.34478E-05 4.36071E-05 4.37667E-05 4.39264E-05 4.40863E-05 4.42465E-05 4.44068E-05 4.45673E-05 4.47281E-05 4.4889E-05 4.50502E-05 4.52116E-05 4.53732E-05 4.55351E-05 4.56971E-05 4.58594E-05 4.6022E-05 4.61848E-05 4.63478E-05 4.65111E-05 4.66746E-05 4.68384E-05 4.70025E-05 4.71668E-05 4.73314E-05 4.74962E-05 4.76614E-05 4.78268E-05 4.79925E-05 4.81585E-05 4.83248E-05 4.84914E-05 4.86583E-05 4.88255E-05 4.8993E-05 4.91609E-05 4.93291E-05 4.94975E-05 4.96664E-05 4.98355E-05 +-0.000142168 -0.000120571 -0.000100738 -8.26552E-05 -6.6286E-05 -5.15759E-05 -3.84522E-05 -2.68276E-05 -1.66066E-05 -7.69325E-06 1.14715E-09 6.52604E-06 1.19127E-05 1.62275E-05 1.95633E-05 2.20459E-05 2.38324E-05 2.50932E-05 2.59855E-05 2.66338E-05 2.71254E-05 2.75168E-05 2.78435E-05 2.81274E-05 2.83824E-05 2.86172E-05 2.88376E-05 2.90474E-05 2.92493E-05 2.94452E-05 2.96364E-05 2.98239E-05 3.00084E-05 3.01906E-05 3.03708E-05 3.05493E-05 3.07265E-05 3.09026E-05 3.10778E-05 3.12521E-05 3.14258E-05 3.15988E-05 3.17714E-05 3.19435E-05 3.21153E-05 3.22868E-05 3.2458E-05 3.26289E-05 3.27997E-05 3.29703E-05 3.31408E-05 3.33112E-05 3.34815E-05 3.36517E-05 3.38218E-05 3.39919E-05 3.4162E-05 3.43321E-05 3.45021E-05 3.46722E-05 3.48423E-05 3.50124E-05 3.51825E-05 3.53527E-05 3.55229E-05 3.56931E-05 3.58634E-05 3.60338E-05 3.62042E-05 3.63747E-05 3.65453E-05 3.67159E-05 3.68866E-05 3.70574E-05 3.72282E-05 3.73992E-05 3.75702E-05 3.77413E-05 3.79125E-05 3.80838E-05 3.82552E-05 3.84266E-05 3.85982E-05 3.87699E-05 3.89416E-05 3.91135E-05 3.92854E-05 3.94575E-05 3.96296E-05 3.98018E-05 3.99742E-05 4.01466E-05 4.03192E-05 4.04918E-05 4.06646E-05 4.08375E-05 4.10104E-05 4.11835E-05 4.13567E-05 4.153E-05 4.17034E-05 4.18769E-05 4.20505E-05 4.22242E-05 4.2398E-05 4.2572E-05 4.27461E-05 4.29202E-05 4.30945E-05 4.32689E-05 4.34435E-05 4.36181E-05 4.37929E-05 4.39677E-05 4.41427E-05 4.43179E-05 4.44931E-05 4.46685E-05 4.4844E-05 4.50196E-05 4.51954E-05 4.53713E-05 4.55473E-05 4.57235E-05 4.58998E-05 4.60762E-05 4.62528E-05 4.64295E-05 4.66064E-05 4.67834E-05 4.69605E-05 4.71378E-05 4.73153E-05 4.74929E-05 4.76707E-05 4.78486E-05 4.80267E-05 4.82049E-05 4.83834E-05 4.8562E-05 4.87407E-05 4.89197E-05 4.90988E-05 4.92781E-05 4.94576E-05 4.96372E-05 4.98171E-05 4.99972E-05 5.01774E-05 5.03579E-05 5.05385E-05 5.07194E-05 5.09004E-05 5.10817E-05 5.12632E-05 5.1445E-05 5.16269E-05 5.18091E-05 5.19915E-05 5.21741E-05 5.2357E-05 5.25401E-05 5.27235E-05 5.29071E-05 5.3091E-05 5.32751E-05 5.34595E-05 5.36442E-05 5.38291E-05 5.40143E-05 5.41998E-05 5.43856E-05 5.45716E-05 5.4758E-05 5.49447E-05 5.51316E-05 5.53189E-05 5.55065E-05 5.56944E-05 5.58826E-05 5.60712E-05 5.62601E-05 5.64493E-05 5.66389E-05 5.68288E-05 5.70191E-05 5.72097E-05 5.74007E-05 5.75921E-05 5.77838E-05 5.7976E-05 +-0.000155266 -0.000132242 -0.000110966 -9.1436E-05 -7.36335E-05 -5.75217E-05 -4.30466E-05 -3.01386E-05 -1.87175E-05 -8.69832E-06 1.32164E-09 7.43645E-06 1.36447E-05 1.86898E-05 2.26599E-05 2.56748E-05 2.78883E-05 2.94751E-05 3.06068E-05 3.14279E-05 3.20449E-05 3.25299E-05 3.29292E-05 3.32717E-05 3.35759E-05 3.38535E-05 3.41121E-05 3.4357E-05 3.45915E-05 3.48181E-05 3.50387E-05 3.52545E-05 3.54665E-05 3.56754E-05 3.58818E-05 3.60861E-05 3.62887E-05 3.64898E-05 3.66896E-05 3.68885E-05 3.70864E-05 3.72836E-05 3.74801E-05 3.76761E-05 3.78715E-05 3.80666E-05 3.82613E-05 3.84557E-05 3.86498E-05 3.88437E-05 3.90374E-05 3.92309E-05 3.94243E-05 3.96176E-05 3.98108E-05 4.00039E-05 4.0197E-05 4.039E-05 4.0583E-05 4.07759E-05 4.09689E-05 4.11619E-05 4.13548E-05 4.15479E-05 4.17409E-05 4.19339E-05 4.21271E-05 4.23202E-05 4.25134E-05 4.27067E-05 4.29E-05 4.30934E-05 4.32869E-05 4.34804E-05 4.3674E-05 4.38677E-05 4.40615E-05 4.42554E-05 4.44493E-05 4.46434E-05 4.48375E-05 4.50317E-05 4.5226E-05 4.54204E-05 4.5615E-05 4.58096E-05 4.60043E-05 4.61991E-05 4.6394E-05 4.6589E-05 4.67842E-05 4.69794E-05 4.71747E-05 4.73702E-05 4.75657E-05 4.77614E-05 4.79572E-05 4.81531E-05 4.83491E-05 4.85452E-05 4.87414E-05 4.89378E-05 4.91342E-05 4.93308E-05 4.95275E-05 4.97243E-05 4.99212E-05 5.01183E-05 5.03155E-05 5.05128E-05 5.07102E-05 5.09078E-05 5.11054E-05 5.13033E-05 5.15012E-05 5.16993E-05 5.18975E-05 5.20958E-05 5.22943E-05 5.24929E-05 5.26917E-05 5.28906E-05 5.30896E-05 5.32888E-05 5.34881E-05 5.36876E-05 5.38872E-05 5.4087E-05 5.4287E-05 5.44871E-05 5.46874E-05 5.48878E-05 5.50884E-05 5.52892E-05 5.54901E-05 5.56912E-05 5.58925E-05 5.6094E-05 5.62957E-05 5.64975E-05 5.66995E-05 5.69018E-05 5.71042E-05 5.73068E-05 5.75097E-05 5.77127E-05 5.79159E-05 5.81194E-05 5.83231E-05 5.8527E-05 5.87311E-05 5.89355E-05 5.914E-05 5.93449E-05 5.95499E-05 5.97552E-05 5.99608E-05 6.01666E-05 6.03727E-05 6.0579E-05 6.07856E-05 6.09925E-05 6.11996E-05 6.1407E-05 6.16148E-05 6.18228E-05 6.2031E-05 6.22396E-05 6.24485E-05 6.26577E-05 6.28673E-05 6.30771E-05 6.32873E-05 6.34978E-05 6.37086E-05 6.39198E-05 6.41313E-05 6.43431E-05 6.45554E-05 6.47679E-05 6.49809E-05 6.51942E-05 6.54079E-05 6.5622E-05 6.58365E-05 6.60514E-05 6.62667E-05 6.64824E-05 6.66985E-05 6.6915E-05 6.7132E-05 +-0.000168648 -0.000144211 -0.000121497 -0.000100519 -8.12722E-05 -6.37368E-05 -4.78766E-05 -3.364E-05 -2.0963E-05 -9.77365E-06 1.51244E-09 8.42058E-06 1.55269E-05 2.13812E-05 2.60662E-05 2.96947E-05 3.24136E-05 3.43975E-05 3.58279E-05 3.68675E-05 3.76438E-05 3.82469E-05 3.87365E-05 3.91509E-05 3.95145E-05 3.98428E-05 4.01462E-05 4.04315E-05 4.07034E-05 4.0965E-05 4.12188E-05 4.14663E-05 4.1709E-05 4.19477E-05 4.21831E-05 4.24158E-05 4.26463E-05 4.2875E-05 4.3102E-05 4.33277E-05 4.35523E-05 4.37758E-05 4.39985E-05 4.42205E-05 4.44418E-05 4.46626E-05 4.48829E-05 4.51028E-05 4.53224E-05 4.55416E-05 4.57605E-05 4.59793E-05 4.61978E-05 4.64161E-05 4.66343E-05 4.68524E-05 4.70704E-05 4.72883E-05 4.75062E-05 4.7724E-05 4.79417E-05 4.81595E-05 4.83772E-05 4.85949E-05 4.88127E-05 4.90304E-05 4.92482E-05 4.9466E-05 4.96839E-05 4.99018E-05 5.01198E-05 5.03378E-05 5.05559E-05 5.0774E-05 5.09923E-05 5.12105E-05 5.14289E-05 5.16474E-05 5.18659E-05 5.20845E-05 5.23032E-05 5.2522E-05 5.27409E-05 5.29599E-05 5.3179E-05 5.33982E-05 5.36175E-05 5.38369E-05 5.40564E-05 5.4276E-05 5.44957E-05 5.47155E-05 5.49355E-05 5.51555E-05 5.53756E-05 5.55959E-05 5.58163E-05 5.60368E-05 5.62574E-05 5.64781E-05 5.6699E-05 5.69199E-05 5.7141E-05 5.73622E-05 5.75836E-05 5.7805E-05 5.80266E-05 5.82483E-05 5.84701E-05 5.86921E-05 5.89142E-05 5.91365E-05 5.93588E-05 5.95813E-05 5.9804E-05 6.00268E-05 6.02497E-05 6.04728E-05 6.0696E-05 6.09193E-05 6.11428E-05 6.13665E-05 6.15903E-05 6.18143E-05 6.20384E-05 6.22627E-05 6.24872E-05 6.27118E-05 6.29366E-05 6.31616E-05 6.33867E-05 6.3612E-05 6.38375E-05 6.40632E-05 6.42891E-05 6.45151E-05 6.47414E-05 6.49679E-05 6.51945E-05 6.54214E-05 6.56484E-05 6.58757E-05 6.61032E-05 6.63309E-05 6.65588E-05 6.6787E-05 6.70154E-05 6.7244E-05 6.74728E-05 6.7702E-05 6.79313E-05 6.81609E-05 6.83908E-05 6.86209E-05 6.88513E-05 6.90819E-05 6.93129E-05 6.95441E-05 6.97756E-05 7.00074E-05 7.02395E-05 7.04719E-05 7.07046E-05 7.09376E-05 7.11709E-05 7.14045E-05 7.16385E-05 7.18728E-05 7.21074E-05 7.23424E-05 7.25777E-05 7.28134E-05 7.30495E-05 7.32859E-05 7.35227E-05 7.37598E-05 7.39974E-05 7.42353E-05 7.44737E-05 7.47124E-05 7.49516E-05 7.51912E-05 7.54312E-05 7.56716E-05 7.59124E-05 7.61538E-05 7.63955E-05 7.66377E-05 7.68804E-05 7.71236E-05 7.73672E-05 +-0.000182248 -0.000156413 -0.000132275 -0.000109853 -8.91585E-05 -7.01858E-05 -5.29156E-05 -3.73137E-05 -2.33326E-05 -1.0915E-05 1.72083E-09 9.47556E-06 1.75542E-05 2.42954E-05 2.97764E-05 3.41016E-05 3.74092E-05 3.98688E-05 4.16666E-05 4.29802E-05 4.39579E-05 4.471E-05 4.53126E-05 4.58155E-05 4.62509E-05 4.66399E-05 4.69959E-05 4.73282E-05 4.76428E-05 4.79442E-05 4.82354E-05 4.85186E-05 4.87954E-05 4.90671E-05 4.93346E-05 4.95987E-05 4.98599E-05 5.01188E-05 5.03755E-05 5.06306E-05 5.08842E-05 5.11365E-05 5.13877E-05 5.16379E-05 5.18874E-05 5.21361E-05 5.23841E-05 5.26317E-05 5.28787E-05 5.31253E-05 5.33716E-05 5.36175E-05 5.38632E-05 5.41086E-05 5.43538E-05 5.45988E-05 5.48437E-05 5.50885E-05 5.53331E-05 5.55776E-05 5.58221E-05 5.60665E-05 5.63109E-05 5.65553E-05 5.67996E-05 5.7044E-05 5.72883E-05 5.75326E-05 5.7777E-05 5.80214E-05 5.82659E-05 5.85103E-05 5.87549E-05 5.89995E-05 5.92441E-05 5.94888E-05 5.97336E-05 5.99785E-05 6.02234E-05 6.04684E-05 6.07135E-05 6.09587E-05 6.12039E-05 6.14493E-05 6.16948E-05 6.19403E-05 6.2186E-05 6.24317E-05 6.26776E-05 6.29235E-05 6.31696E-05 6.34158E-05 6.36621E-05 6.39085E-05 6.4155E-05 6.44016E-05 6.46483E-05 6.48952E-05 6.51422E-05 6.53892E-05 6.56365E-05 6.58838E-05 6.61313E-05 6.63788E-05 6.66266E-05 6.68744E-05 6.71224E-05 6.73705E-05 6.76187E-05 6.78671E-05 6.81156E-05 6.83642E-05 6.8613E-05 6.8862E-05 6.9111E-05 6.93603E-05 6.96096E-05 6.98591E-05 7.01088E-05 7.03587E-05 7.06086E-05 7.08588E-05 7.11091E-05 7.13596E-05 7.16102E-05 7.18611E-05 7.2112E-05 7.23632E-05 7.26146E-05 7.28661E-05 7.31178E-05 7.33697E-05 7.36218E-05 7.38741E-05 7.41267E-05 7.43794E-05 7.46323E-05 7.48854E-05 7.51388E-05 7.53923E-05 7.56461E-05 7.59001E-05 7.61544E-05 7.64089E-05 7.66636E-05 7.69186E-05 7.71738E-05 7.74293E-05 7.76851E-05 7.79411E-05 7.81974E-05 7.8454E-05 7.87108E-05 7.89679E-05 7.92254E-05 7.94831E-05 7.97411E-05 7.99994E-05 8.02581E-05 8.0517E-05 8.07763E-05 8.1036E-05 8.12959E-05 8.15562E-05 8.18169E-05 8.20779E-05 8.23392E-05 8.2601E-05 8.28631E-05 8.31255E-05 8.33884E-05 8.36517E-05 8.39153E-05 8.41794E-05 8.44439E-05 8.47088E-05 8.49741E-05 8.52399E-05 8.55061E-05 8.57728E-05 8.60399E-05 8.63074E-05 8.65755E-05 8.6844E-05 8.7113E-05 8.73825E-05 8.76525E-05 8.7923E-05 8.8194E-05 8.84656E-05 8.87377E-05 +-0.000196004 -0.000168792 -0.000143244 -0.000119389 -9.72495E-05 -7.6833E-05 -5.81358E-05 -4.114E-05 -2.58145E-05 -1.21171E-05 1.94821E-09 1.05974E-05 1.97192E-05 2.74223E-05 3.37784E-05 3.88836E-05 4.28654E-05 4.5885E-05 4.81274E-05 4.97804E-05 5.1011E-05 5.19509E-05 5.26948E-05 5.33072E-05 5.38303E-05 5.42918E-05 5.47099E-05 5.50969E-05 5.54608E-05 5.58074E-05 5.61408E-05 5.64639E-05 5.67787E-05 5.70871E-05 5.739E-05 5.76885E-05 5.79834E-05 5.82752E-05 5.85645E-05 5.88515E-05 5.91366E-05 5.942E-05 5.97021E-05 5.99829E-05 6.02627E-05 6.05415E-05 6.08196E-05 6.10969E-05 6.13735E-05 6.16496E-05 6.19253E-05 6.22004E-05 6.24753E-05 6.27497E-05 6.30239E-05 6.32978E-05 6.35716E-05 6.38451E-05 6.41184E-05 6.43916E-05 6.46647E-05 6.49377E-05 6.52106E-05 6.54835E-05 6.57562E-05 6.6029E-05 6.63017E-05 6.65744E-05 6.68471E-05 6.71198E-05 6.73926E-05 6.76653E-05 6.79381E-05 6.82109E-05 6.84838E-05 6.87567E-05 6.90297E-05 6.93027E-05 6.95758E-05 6.9849E-05 7.01222E-05 7.03955E-05 7.06689E-05 7.09424E-05 7.1216E-05 7.14896E-05 7.17634E-05 7.20372E-05 7.23112E-05 7.25852E-05 7.28594E-05 7.31336E-05 7.3408E-05 7.36824E-05 7.3957E-05 7.42317E-05 7.45065E-05 7.47814E-05 7.50565E-05 7.53316E-05 7.56069E-05 7.58823E-05 7.61578E-05 7.64335E-05 7.67092E-05 7.69852E-05 7.72612E-05 7.75374E-05 7.78137E-05 7.80901E-05 7.83667E-05 7.86435E-05 7.89203E-05 7.91974E-05 7.94745E-05 7.97519E-05 8.00293E-05 8.0307E-05 8.05848E-05 8.08627E-05 8.11409E-05 8.14192E-05 8.16976E-05 8.19762E-05 8.22551E-05 8.25341E-05 8.28132E-05 8.30926E-05 8.33722E-05 8.36519E-05 8.39319E-05 8.4212E-05 8.44924E-05 8.47729E-05 8.50537E-05 8.53347E-05 8.56159E-05 8.58974E-05 8.61791E-05 8.6461E-05 8.67431E-05 8.70256E-05 8.73082E-05 8.75911E-05 8.78743E-05 8.81578E-05 8.84415E-05 8.87255E-05 8.90097E-05 8.92943E-05 8.95792E-05 8.98643E-05 9.01498E-05 9.04356E-05 9.07217E-05 9.10081E-05 9.12948E-05 9.15819E-05 9.18693E-05 9.21571E-05 9.24452E-05 9.27337E-05 9.30226E-05 9.33118E-05 9.36015E-05 9.38915E-05 9.41819E-05 9.44727E-05 9.47639E-05 9.50555E-05 9.53476E-05 9.56401E-05 9.5933E-05 9.62264E-05 9.65202E-05 9.68145E-05 9.71093E-05 9.74046E-05 9.77003E-05 9.79965E-05 9.82932E-05 9.85905E-05 9.88883E-05 9.91865E-05 9.94854E-05 9.97847E-05 0.000100085 0.000100385 0.000100686 0.000100988 0.00010129 +-0.000209861 -0.000181294 -0.000154355 -0.000129081 -0.000105504 -8.36434E-05 -6.35091E-05 -4.50983E-05 -2.83955E-05 -1.3374E-05 2.19611E-09 1.1781E-05 2.20124E-05 3.07484E-05 3.80556E-05 4.40217E-05 4.87632E-05 5.243E-05 5.52009E-05 5.72678E-05 5.88126E-05 5.99877E-05 6.09086E-05 6.16567E-05 6.2287E-05 6.2836E-05 6.33279E-05 6.37787E-05 6.41995E-05 6.45978E-05 6.49789E-05 6.53466E-05 6.57039E-05 6.60527E-05 6.63946E-05 6.67309E-05 6.70626E-05 6.73904E-05 6.77148E-05 6.80364E-05 6.83557E-05 6.86728E-05 6.89882E-05 6.93019E-05 6.96143E-05 6.99256E-05 7.02357E-05 7.05449E-05 7.08533E-05 7.1161E-05 7.14681E-05 7.17745E-05 7.20805E-05 7.2386E-05 7.26911E-05 7.29959E-05 7.33004E-05 7.36046E-05 7.39085E-05 7.42123E-05 7.45158E-05 7.48192E-05 7.51225E-05 7.54256E-05 7.57287E-05 7.60317E-05 7.63346E-05 7.66374E-05 7.69402E-05 7.7243E-05 7.75458E-05 7.78486E-05 7.81514E-05 7.84542E-05 7.8757E-05 7.90598E-05 7.93627E-05 7.96656E-05 7.99686E-05 8.02716E-05 8.05747E-05 8.08778E-05 8.1181E-05 8.14843E-05 8.17877E-05 8.20911E-05 8.23947E-05 8.26983E-05 8.3002E-05 8.33057E-05 8.36096E-05 8.39136E-05 8.42177E-05 8.45219E-05 8.48262E-05 8.51306E-05 8.54351E-05 8.57397E-05 8.60444E-05 8.63493E-05 8.66542E-05 8.69593E-05 8.72645E-05 8.75699E-05 8.78753E-05 8.81809E-05 8.84867E-05 8.87925E-05 8.90985E-05 8.94046E-05 8.97109E-05 9.00173E-05 9.03239E-05 9.06306E-05 9.09375E-05 9.12445E-05 9.15517E-05 9.1859E-05 9.21665E-05 9.24741E-05 9.2782E-05 9.309E-05 9.33982E-05 9.37065E-05 9.40151E-05 9.43238E-05 9.46328E-05 9.49419E-05 9.52512E-05 9.55607E-05 9.58705E-05 9.61804E-05 9.64906E-05 9.6801E-05 9.71116E-05 9.74224E-05 9.77335E-05 9.80448E-05 9.83564E-05 9.86682E-05 9.89803E-05 9.92927E-05 9.96053E-05 9.99182E-05 0.000100231 0.000100545 0.000100859 0.000101173 0.000101487 0.000101802 0.000102117 0.000102432 0.000102747 0.000103063 0.00010338 0.000103696 0.000104013 0.000104331 0.000104649 0.000104967 0.000105285 0.000105604 0.000105923 0.000106243 0.000106563 0.000106884 0.000107205 0.000107526 0.000107848 0.000108171 0.000108493 0.000108817 0.00010914 0.000109465 0.000109789 0.000110115 0.00011044 0.000110767 0.000111094 0.000111421 0.000111749 0.000112077 0.000112406 0.000112736 0.000113066 0.000113397 0.000113729 0.000114061 0.000114393 0.000114727 0.000115061 +-0.000223771 -0.000193871 -0.000165562 -0.000138886 -0.000113883 -9.05833E-05 -6.90079E-05 -4.91678E-05 -3.10622E-05 -1.46794E-05 2.46619E-09 1.30207E-05 2.44225E-05 3.42573E-05 4.25867E-05 4.94908E-05 5.50751E-05 5.94766E-05 6.28639E-05 6.54269E-05 6.73567E-05 6.88239E-05 6.99655E-05 7.08821E-05 7.1644E-05 7.2299E-05 7.28787E-05 7.34046E-05 7.38912E-05 7.43485E-05 7.47836E-05 7.52015E-05 7.56059E-05 7.59996E-05 7.63844E-05 7.67621E-05 7.71339E-05 7.75007E-05 7.78634E-05 7.82224E-05 7.85784E-05 7.89318E-05 7.92829E-05 7.9632E-05 7.99794E-05 8.03253E-05 8.06698E-05 8.10131E-05 8.13554E-05 8.16967E-05 8.20372E-05 8.2377E-05 8.27161E-05 8.30546E-05 8.33926E-05 8.37301E-05 8.40672E-05 8.44039E-05 8.47403E-05 8.50764E-05 8.54123E-05 8.57479E-05 8.60833E-05 8.64185E-05 8.67536E-05 8.70885E-05 8.74233E-05 8.77581E-05 8.80927E-05 8.84273E-05 8.87618E-05 8.90963E-05 8.94308E-05 8.97652E-05 9.00996E-05 9.04341E-05 9.07685E-05 9.1103E-05 9.14374E-05 9.17719E-05 9.21065E-05 9.24411E-05 9.27757E-05 9.31104E-05 9.34452E-05 9.378E-05 9.41149E-05 9.44499E-05 9.47849E-05 9.512E-05 9.54552E-05 9.57905E-05 9.61259E-05 9.64614E-05 9.67969E-05 9.71326E-05 9.74684E-05 9.78042E-05 9.81402E-05 9.84763E-05 9.88125E-05 9.91488E-05 9.94852E-05 9.98218E-05 0.000100158 0.000100495 0.000100832 0.000101169 0.000101506 0.000101844 0.000102181 0.000102519 0.000102857 0.000103194 0.000103533 0.000103871 0.000104209 0.000104548 0.000104886 0.000105225 0.000105564 0.000105903 0.000106243 0.000106582 0.000106922 0.000107262 0.000107602 0.000107943 0.000108283 0.000108624 0.000108965 0.000109306 0.000109648 0.000109989 0.000110331 0.000110673 0.000111016 0.000111358 0.000111701 0.000112044 0.000112388 0.000112732 0.000113076 0.00011342 0.000113765 0.000114109 0.000114455 0.0001148 0.000115146 0.000115492 0.000115839 0.000116186 0.000116533 0.000116881 0.000117228 0.000117577 0.000117926 0.000118275 0.000118624 0.000118974 0.000119324 0.000119675 0.000120026 0.000120378 0.00012073 0.000121083 0.000121436 0.000121789 0.000122143 0.000122498 0.000122853 0.000123208 0.000123564 0.000123921 0.000124278 0.000124636 0.000124994 0.000125353 0.000125712 0.000126072 0.000126433 0.000126794 0.000127156 0.000127518 0.000127881 0.000128245 0.000128609 0.000128974 0.00012934 0.000129707 0.000130074 +-0.000237691 -0.000206482 -0.000176824 -0.000148766 -0.000122352 -9.76213E-05 -7.46058E-05 -5.33281E-05 -3.38009E-05 -1.60264E-05 2.76021E-09 1.43102E-05 2.69371E-05 3.79305E-05 4.73476E-05 5.52615E-05 6.17672E-05 6.69885E-05 7.1081E-05 7.42271E-05 7.6621E-05 7.84469E-05 7.98616E-05 8.09869E-05 8.19107E-05 8.26943E-05 8.33793E-05 8.39938E-05 8.4557E-05 8.50822E-05 8.55786E-05 8.60529E-05 8.65099E-05 8.69531E-05 8.73851E-05 8.78081E-05 8.82236E-05 8.86328E-05 8.90367E-05 8.94362E-05 8.98317E-05 9.0224E-05 9.06134E-05 9.10003E-05 9.1385E-05 9.17678E-05 9.21489E-05 9.25284E-05 9.29067E-05 9.32837E-05 9.36597E-05 9.40347E-05 9.44089E-05 9.47824E-05 9.51551E-05 9.55272E-05 9.58988E-05 9.62699E-05 9.66405E-05 9.70108E-05 9.73806E-05 9.77502E-05 9.81195E-05 9.84885E-05 9.88573E-05 9.92259E-05 9.95943E-05 9.99625E-05 0.000100331 0.000100699 0.000101067 0.000101434 0.000101802 0.00010217 0.000102537 0.000102905 0.000103273 0.00010364 0.000104008 0.000104375 0.000104743 0.00010511 0.000105478 0.000105846 0.000106213 0.000106581 0.000106949 0.000107317 0.000107684 0.000108052 0.00010842 0.000108788 0.000109157 0.000109525 0.000109893 0.000110262 0.00011063 0.000110999 0.000111367 0.000111736 0.000112105 0.000112474 0.000112843 0.000113212 0.000113582 0.000113951 0.000114321 0.00011469 0.00011506 0.00011543 0.0001158 0.00011617 0.000116541 0.000116911 0.000117282 0.000117652 0.000118023 0.000118395 0.000118766 0.000119137 0.000119509 0.000119881 0.000120253 0.000120625 0.000120997 0.00012137 0.000121742 0.000122115 0.000122488 0.000122862 0.000123235 0.000123609 0.000123983 0.000124358 0.000124732 0.000125107 0.000125482 0.000125857 0.000126233 0.000126609 0.000126985 0.000127361 0.000127738 0.000128115 0.000128493 0.00012887 0.000129248 0.000129627 0.000130005 0.000130385 0.000130764 0.000131144 0.000131524 0.000131904 0.000132285 0.000132667 0.000133049 0.000133431 0.000133813 0.000134196 0.00013458 0.000134964 0.000135348 0.000135733 0.000136119 0.000136505 0.000136891 0.000137278 0.000137665 0.000138053 0.000138442 0.000138831 0.00013922 0.000139611 0.000140001 0.000140393 0.000140785 0.000141178 0.000141571 0.000141965 0.000142359 0.000142755 0.00014315 0.000143547 0.000143944 0.000144342 0.000144741 0.00014514 0.000145541 0.000145942 0.000146343 +-0.000251583 -0.000219089 -0.000188106 -0.000158685 -0.000130877 -0.000104728 -8.0278E-05 -5.75597E-05 -3.65981E-05 -1.74084E-05 3.08002E-09 1.56428E-05 2.95429E-05 4.17481E-05 5.23119E-05 6.1301E-05 6.88008E-05 7.49223E-05 7.98067E-05 8.36251E-05 8.6568E-05 8.88276E-05 9.05774E-05 9.19599E-05 9.30826E-05 9.40228E-05 9.48343E-05 9.55538E-05 9.62065E-05 9.681E-05 9.73763E-05 9.79141E-05 9.84298E-05 9.89279E-05 9.94119E-05 9.98844E-05 0.000100347 0.000100803 0.000101251 0.000101694 0.000102132 0.000102566 0.000102996 0.000103423 0.000103848 0.00010427 0.00010469 0.000105108 0.000105524 0.000105939 0.000106352 0.000106765 0.000107176 0.000107586 0.000107995 0.000108404 0.000108812 0.000109219 0.000109625 0.000110032 0.000110437 0.000110842 0.000111247 0.000111652 0.000112056 0.00011246 0.000112863 0.000113267 0.00011367 0.000114073 0.000114475 0.000114878 0.000115281 0.000115683 0.000116085 0.000116488 0.00011689 0.000117292 0.000117694 0.000118096 0.000118498 0.0001189 0.000119302 0.000119704 0.000120106 0.000120508 0.00012091 0.000121312 0.000121715 0.000122117 0.000122519 0.000122921 0.000123323 0.000123726 0.000124128 0.000124531 0.000124933 0.000125336 0.000125739 0.000126141 0.000126544 0.000126947 0.00012735 0.000127754 0.000128157 0.00012856 0.000128964 0.000129367 0.000129771 0.000130175 0.000130579 0.000130983 0.000131387 0.000131792 0.000132196 0.000132601 0.000133006 0.000133411 0.000133816 0.000134221 0.000134626 0.000135032 0.000135438 0.000135844 0.00013625 0.000136656 0.000137063 0.00013747 0.000137877 0.000138284 0.000138692 0.000139099 0.000139507 0.000139915 0.000140324 0.000140732 0.000141141 0.000141551 0.00014196 0.00014237 0.00014278 0.00014319 0.000143601 0.000144012 0.000144424 0.000144835 0.000145247 0.00014566 0.000146072 0.000146486 0.000146899 0.000147313 0.000147727 0.000148142 0.000148557 0.000148973 0.000149389 0.000149805 0.000150222 0.00015064 0.000151057 0.000151476 0.000151895 0.000152314 0.000152734 0.000153154 0.000153575 0.000153997 0.000154419 0.000154841 0.000155265 0.000155689 0.000156113 0.000156538 0.000156964 0.00015739 0.000157817 0.000158245 0.000158673 0.000159102 0.000159532 0.000159962 0.000160394 0.000160826 0.000161258 0.000161692 0.000162126 0.000162561 0.000162997 0.000163434 0.000163871 +-0.000265415 -0.00023166 -0.000199375 -0.000168613 -0.00013943 -0.000111877 -8.60014E-05 -6.18442E-05 -3.94409E-05 -1.88188E-05 3.42762E-09 1.70118E-05 3.22263E-05 4.56898E-05 5.74522E-05 6.75747E-05 7.61344E-05 8.32301E-05 8.89887E-05 9.3567E-05 9.71471E-05 9.99221E-05 0.000102078 0.000103774 0.00010514 0.000106271 0.000107235 0.00010808 0.000108838 0.000109532 0.000110178 0.000110788 0.000111369 0.000111928 0.000112469 0.000112996 0.000113511 0.000114016 0.000114512 0.000115002 0.000115485 0.000115964 0.000116438 0.000116908 0.000117374 0.000117838 0.000118299 0.000118757 0.000119214 0.000119669 0.000120121 0.000120573 0.000121023 0.000121472 0.00012192 0.000122366 0.000122812 0.000123257 0.000123701 0.000124145 0.000124588 0.00012503 0.000125472 0.000125914 0.000126355 0.000126795 0.000127236 0.000127676 0.000128115 0.000128555 0.000128994 0.000129433 0.000129872 0.00013031 0.000130749 0.000131187 0.000131625 0.000132063 0.000132501 0.000132939 0.000133377 0.000133815 0.000134253 0.00013469 0.000135128 0.000135566 0.000136003 0.000136441 0.000136879 0.000137316 0.000137754 0.000138192 0.000138629 0.000139067 0.000139505 0.000139943 0.000140381 0.000140819 0.000141257 0.000141695 0.000142133 0.000142571 0.000143009 0.000143448 0.000143886 0.000144325 0.000144763 0.000145202 0.000145641 0.00014608 0.000146519 0.000146958 0.000147398 0.000147837 0.000148277 0.000148716 0.000149156 0.000149596 0.000150036 0.000150477 0.000150917 0.000151358 0.000151799 0.00015224 0.000152681 0.000153122 0.000153564 0.000154005 0.000154447 0.00015489 0.000155332 0.000155775 0.000156218 0.000156661 0.000157104 0.000157548 0.000157992 0.000158436 0.000158881 0.000159326 0.000159771 0.000160216 0.000160662 0.000161108 0.000161554 0.000162001 0.000162448 0.000162896 0.000163344 0.000163792 0.000164241 0.00016469 0.000165139 0.000165589 0.00016604 0.000166491 0.000166942 0.000167394 0.000167846 0.000168299 0.000168752 0.000169206 0.00016966 0.000170115 0.000170571 0.000171027 0.000171483 0.00017194 0.000172398 0.000172857 0.000173316 0.000173775 0.000174236 0.000174697 0.000175158 0.000175621 0.000176084 0.000176548 0.000177012 0.000177477 0.000177943 0.00017841 0.000178878 0.000179346 0.000179815 0.000180285 0.000180756 0.000181228 0.000181701 0.000182174 0.000182648 +-0.00027916 -0.000244168 -0.000210604 -0.000178524 -0.000147986 -0.000119045 -9.17551E-05 -6.61644E-05 -4.23172E-05 -2.0251E-05 3.80507E-09 1.84106E-05 3.4974E-05 4.9735E-05 6.27408E-05 7.40477E-05 8.37253E-05 9.18618E-05 9.85702E-05 0.000103992 0.000108297 0.000111673 0.000114312 0.000116389 0.000118051 0.000119414 0.000120562 0.000121556 0.000122437 0.000123237 0.000123975 0.000124666 0.000125321 0.000125948 0.000126552 0.000127138 0.000127709 0.000128268 0.000128817 0.000129356 0.000129889 0.000130414 0.000130935 0.00013145 0.000131961 0.000132469 0.000132973 0.000133475 0.000133973 0.00013447 0.000134964 0.000135457 0.000135947 0.000136437 0.000136925 0.000137411 0.000137897 0.000138381 0.000138865 0.000139347 0.000139829 0.00014031 0.000140791 0.000141271 0.00014175 0.000142229 0.000142708 0.000143186 0.000143663 0.00014414 0.000144617 0.000145094 0.00014557 0.000146046 0.000146522 0.000146998 0.000147474 0.000147949 0.000148424 0.000148899 0.000149374 0.000149849 0.000150324 0.000150798 0.000151273 0.000151747 0.000152222 0.000152696 0.000153171 0.000153645 0.000154119 0.000154594 0.000155068 0.000155542 0.000156017 0.000156491 0.000156965 0.00015744 0.000157914 0.000158389 0.000158863 0.000159338 0.000159813 0.000160287 0.000160762 0.000161237 0.000161712 0.000162187 0.000162662 0.000163137 0.000163612 0.000164088 0.000164563 0.000165039 0.000165514 0.00016599 0.000166466 0.000166942 0.000167418 0.000167895 0.000168371 0.000168848 0.000169325 0.000169802 0.000170279 0.000170756 0.000171234 0.000171712 0.00017219 0.000172668 0.000173146 0.000173625 0.000174104 0.000174583 0.000175063 0.000175542 0.000176022 0.000176502 0.000176983 0.000177464 0.000177945 0.000178426 0.000178908 0.00017939 0.000179873 0.000180356 0.000180839 0.000181323 0.000181807 0.000182291 0.000182776 0.000183261 0.000183747 0.000184233 0.00018472 0.000185207 0.000185695 0.000186183 0.000186671 0.00018716 0.00018765 0.00018814 0.000188631 0.000189122 0.000189614 0.000190107 0.0001906 0.000191094 0.000191588 0.000192083 0.000192579 0.000193076 0.000193573 0.000194071 0.000194569 0.000195068 0.000195569 0.000196069 0.000196571 0.000197073 0.000197577 0.000198081 0.000198586 0.000199091 0.000199598 0.000200106 0.000200614 0.000201123 0.000201634 0.000202145 0.000202657 +-0.000292795 -0.000256589 -0.000221769 -0.000188393 -0.000156521 -0.000126211 -9.75204E-05 -7.0505E-05 -4.52157E-05 -2.1699E-05 4.21457E-09 1.98327E-05 3.77727E-05 5.38639E-05 6.81508E-05 8.06855E-05 9.15313E-05 0.000100767 0.000108493 0.000114836 0.00011995 0.000124014 0.000127219 0.000129749 0.000131768 0.000133411 0.000134781 0.000135953 0.000136981 0.000137903 0.000138747 0.000139531 0.000140269 0.000140972 0.000141646 0.000142297 0.00014293 0.000143547 0.000144151 0.000144745 0.000145329 0.000145905 0.000146475 0.000147039 0.000147597 0.000148151 0.000148701 0.000149247 0.00014979 0.000150331 0.000150868 0.000151404 0.000151937 0.000152469 0.000152998 0.000153527 0.000154054 0.000154579 0.000155103 0.000155627 0.000156149 0.00015667 0.000157191 0.000157711 0.00015823 0.000158749 0.000159266 0.000159784 0.000160301 0.000160817 0.000161333 0.000161849 0.000162364 0.000162879 0.000163393 0.000163907 0.000164421 0.000164935 0.000165449 0.000165962 0.000166475 0.000166988 0.000167501 0.000168014 0.000168527 0.000169039 0.000169551 0.000170064 0.000170576 0.000171088 0.0001716 0.000172112 0.000172624 0.000173136 0.000173648 0.00017416 0.000174672 0.000175184 0.000175696 0.000176208 0.00017672 0.000177232 0.000177744 0.000178256 0.000178768 0.00017928 0.000179792 0.000180304 0.000180816 0.000181329 0.000181841 0.000182354 0.000182866 0.000183379 0.000183892 0.000184405 0.000184918 0.000185431 0.000185944 0.000186457 0.000186971 0.000187484 0.000187998 0.000188512 0.000189026 0.000189541 0.000190055 0.00019057 0.000191085 0.0001916 0.000192115 0.000192631 0.000193147 0.000193663 0.000194179 0.000194696 0.000195212 0.00019573 0.000196247 0.000196765 0.000197283 0.000197801 0.00019832 0.000198839 0.000199358 0.000199878 0.000200398 0.000200919 0.00020144 0.000201961 0.000202483 0.000203005 0.000203528 0.000204051 0.000204575 0.000205099 0.000205624 0.000206149 0.000206675 0.000207201 0.000207728 0.000208256 0.000208784 0.000209312 0.000209842 0.000210371 0.000210902 0.000211433 0.000211965 0.000212498 0.000213031 0.000213565 0.0002141 0.000214635 0.000215172 0.000215709 0.000216247 0.000216785 0.000217325 0.000217865 0.000218407 0.000218949 0.000219492 0.000220036 0.000220581 0.000221126 0.000221673 0.000222221 0.00022277 0.00022332 0.00022387 +-0.0003063 -0.000268903 -0.00023285 -0.000198201 -0.000165015 -0.000133355 -0.000103281 -7.48518E-05 -4.81261E-05 -2.31573E-05 4.65842E-09 2.12719E-05 4.06101E-05 5.80574E-05 7.36561E-05 8.74549E-05 9.95115E-05 0.000109897 0.0001187 0.000126033 0.000132035 0.000136872 0.000140726 0.000143788 0.000146232 0.000148212 0.000149848 0.000151233 0.000152434 0.000153501 0.000154467 0.000155357 0.000156189 0.000156976 0.000157728 0.000158451 0.00015915 0.000159831 0.000160495 0.000161147 0.000161787 0.000162417 0.000163039 0.000163653 0.000164262 0.000164865 0.000165462 0.000166056 0.000166646 0.000167232 0.000167815 0.000168395 0.000168973 0.000169548 0.000170122 0.000170693 0.000171263 0.000171831 0.000172398 0.000172963 0.000173527 0.00017409 0.000174652 0.000175214 0.000175774 0.000176333 0.000176892 0.00017745 0.000178007 0.000178564 0.00017912 0.000179676 0.000180231 0.000180786 0.00018134 0.000181894 0.000182448 0.000183001 0.000183554 0.000184107 0.00018466 0.000185212 0.000185764 0.000186316 0.000186867 0.000187419 0.00018797 0.000188521 0.000189073 0.000189623 0.000190174 0.000190725 0.000191276 0.000191826 0.000192377 0.000192927 0.000193478 0.000194028 0.000194578 0.000195129 0.000195679 0.000196229 0.000196779 0.00019733 0.00019788 0.00019843 0.00019898 0.000199531 0.000200081 0.000200631 0.000201182 0.000201732 0.000202283 0.000202833 0.000203384 0.000203935 0.000204486 0.000205037 0.000205588 0.000206139 0.00020669 0.000207242 0.000207793 0.000208345 0.000208897 0.000209449 0.000210001 0.000210554 0.000211106 0.000211659 0.000212212 0.000212765 0.000213319 0.000213873 0.000214427 0.000214981 0.000215535 0.00021609 0.000216645 0.000217201 0.000217756 0.000218312 0.000218869 0.000219425 0.000219982 0.00022054 0.000221098 0.000221656 0.000222215 0.000222774 0.000223333 0.000223893 0.000224454 0.000225015 0.000225576 0.000226138 0.000226701 0.000227264 0.000227828 0.000228392 0.000228957 0.000229522 0.000230088 0.000230655 0.000231222 0.00023179 0.000232359 0.000232928 0.000233498 0.000234069 0.00023464 0.000235213 0.000235786 0.00023636 0.000236934 0.00023751 0.000238086 0.000238664 0.000239242 0.000239821 0.000240401 0.000240982 0.000241564 0.000242146 0.00024273 0.000243315 0.000243901 0.000244488 0.000245076 0.000245665 0.000246255 +-0.000319658 -0.000281093 -0.00024383 -0.00020793 -0.000173453 -0.000140462 -0.000109021 -7.91926E-05 -5.10392E-05 -2.46209E-05 5.13904E-09 2.27227E-05 4.34746E-05 6.22978E-05 7.92327E-05 9.43248E-05 0.000107627 0.000119204 0.000129135 0.000137519 0.00014448 0.000150168 0.000154757 0.000158431 0.000161375 0.000163754 0.000165708 0.000167347 0.000168753 0.000169989 0.000171097 0.000172109 0.000173048 0.00017393 0.000174768 0.000175569 0.000176342 0.000177092 0.000177821 0.000178535 0.000179234 0.000179922 0.0001806 0.000181268 0.000181929 0.000182583 0.000183232 0.000183875 0.000184513 0.000185147 0.000185778 0.000186405 0.000187029 0.00018765 0.000188268 0.000188885 0.000189499 0.000190111 0.000190722 0.000191331 0.000191938 0.000192544 0.000193149 0.000193753 0.000194355 0.000194957 0.000195557 0.000196157 0.000196756 0.000197354 0.000197952 0.000198549 0.000199145 0.000199741 0.000200336 0.000200931 0.000201525 0.000202119 0.000202713 0.000203306 0.000203899 0.000204491 0.000205084 0.000205676 0.000206267 0.000206859 0.00020745 0.000208041 0.000208632 0.000209222 0.000209813 0.000210403 0.000210993 0.000211583 0.000212173 0.000212763 0.000213353 0.000213942 0.000214532 0.000215122 0.000215711 0.0002163 0.00021689 0.000217479 0.000218068 0.000218657 0.000219247 0.000219836 0.000220425 0.000221014 0.000221603 0.000222193 0.000222782 0.000223371 0.000223961 0.00022455 0.00022514 0.000225729 0.000226319 0.000226909 0.000227499 0.000228089 0.000228679 0.000229269 0.000229859 0.00023045 0.00023104 0.000231631 0.000232222 0.000232813 0.000233405 0.000233996 0.000234588 0.00023518 0.000235773 0.000236365 0.000236958 0.000237551 0.000238144 0.000238738 0.000239332 0.000239926 0.000240521 0.000241116 0.000241711 0.000242307 0.000242903 0.0002435 0.000244097 0.000244694 0.000245292 0.000245891 0.00024649 0.000247089 0.000247689 0.000248289 0.00024889 0.000249492 0.000250094 0.000250697 0.0002513 0.000251904 0.000252508 0.000253114 0.00025372 0.000254326 0.000254934 0.000255542 0.00025615 0.00025676 0.00025737 0.000257982 0.000258594 0.000259207 0.00025982 0.000260435 0.00026105 0.000261667 0.000262284 0.000262902 0.000263522 0.000264142 0.000264763 0.000265385 0.000266009 0.000266633 0.000267259 0.000267885 0.000268513 0.000269142 0.000269772 +-0.000332856 -0.000293144 -0.000254694 -0.000217565 -0.000181819 -0.000147518 -0.000114729 -8.35165E-05 -5.39468E-05 -2.6085E-05 5.65896E-09 2.41799E-05 4.63556E-05 6.65687E-05 8.48579E-05 0.000101266 0.000115843 0.000128646 0.000139747 0.000149233 0.000157215 0.000163827 0.000169229 0.000173598 0.000177119 0.000179967 0.000182297 0.000184237 0.000185887 0.000187321 0.000188595 0.000189747 0.000190807 0.000191796 0.00019273 0.000193619 0.000194472 0.000195296 0.000196097 0.000196877 0.00019764 0.000198389 0.000199126 0.000199851 0.000200568 0.000201276 0.000201978 0.000202672 0.000203362 0.000204046 0.000204726 0.000205401 0.000206073 0.000206742 0.000207407 0.00020807 0.00020873 0.000209388 0.000210044 0.000210697 0.00021135 0.000212 0.000212649 0.000213296 0.000213942 0.000214587 0.000215231 0.000215874 0.000216516 0.000217156 0.000217796 0.000218436 0.000219074 0.000219712 0.000220349 0.000220986 0.000221622 0.000222257 0.000222892 0.000223527 0.000224161 0.000224794 0.000225428 0.00022606 0.000226693 0.000227325 0.000227957 0.000228589 0.00022922 0.000229851 0.000230482 0.000231113 0.000231744 0.000232374 0.000233004 0.000233634 0.000234264 0.000234894 0.000235523 0.000236152 0.000236782 0.000237411 0.00023804 0.000238669 0.000239298 0.000239927 0.000240556 0.000241185 0.000241813 0.000242442 0.000243071 0.0002437 0.000244328 0.000244957 0.000245586 0.000246215 0.000246843 0.000247472 0.000248101 0.00024873 0.000249359 0.000249988 0.000250617 0.000251247 0.000251876 0.000252506 0.000253135 0.000253765 0.000254395 0.000255025 0.000255656 0.000256286 0.000256917 0.000257548 0.000258179 0.000258811 0.000259442 0.000260074 0.000260707 0.000261339 0.000261972 0.000262605 0.000263239 0.000263873 0.000264507 0.000265141 0.000265776 0.000266412 0.000267048 0.000267684 0.000268321 0.000268958 0.000269596 0.000270234 0.000270873 0.000271512 0.000272152 0.000272793 0.000273434 0.000274075 0.000274718 0.000275361 0.000276004 0.000276649 0.000277294 0.00027794 0.000278586 0.000279233 0.000279881 0.00028053 0.00028118 0.000281831 0.000282482 0.000283134 0.000283788 0.000284442 0.000285097 0.000285753 0.00028641 0.000287068 0.000287727 0.000288387 0.000289048 0.00028971 0.000290373 0.000291038 0.000291704 0.00029237 0.000293038 0.000293707 0.000294378 +-0.000345882 -0.000305046 -0.000265431 -0.000227095 -0.000190101 -0.000154511 -0.000120393 -8.7814E-05 -5.68418E-05 -2.75456E-05 6.22085E-09 2.56387E-05 4.92434E-05 7.08553E-05 9.05116E-05 0.000108253 0.000124126 0.000138183 0.000150488 0.00016112 0.000170176 0.000177775 0.000184063 0.000189206 0.000193382 0.000196773 0.000199544 0.000201839 0.000203776 0.000205443 0.000206909 0.000208223 0.000209422 0.000210532 0.000211573 0.000212559 0.000213501 0.000214407 0.000215283 0.000216136 0.000216967 0.000217781 0.000218581 0.000219367 0.000220142 0.000220908 0.000221664 0.000222413 0.000223156 0.000223892 0.000224623 0.000225349 0.000226071 0.000226789 0.000227503 0.000228213 0.000228921 0.000229626 0.000230329 0.000231029 0.000231727 0.000232423 0.000233117 0.000233809 0.0002345 0.00023519 0.000235878 0.000236564 0.00023725 0.000237934 0.000238618 0.0002393 0.000239982 0.000240663 0.000241343 0.000242022 0.000242701 0.000243378 0.000244056 0.000244732 0.000245408 0.000246084 0.000246759 0.000247434 0.000248108 0.000248782 0.000249455 0.000250128 0.000250801 0.000251474 0.000252146 0.000252817 0.000253489 0.00025416 0.000254831 0.000255502 0.000256173 0.000256843 0.000257513 0.000258183 0.000258853 0.000259523 0.000260193 0.000260862 0.000261531 0.000262201 0.00026287 0.000263539 0.000264208 0.000264876 0.000265545 0.000266214 0.000266883 0.000267551 0.00026822 0.000268889 0.000269557 0.000270226 0.000270895 0.000271563 0.000272232 0.000272901 0.00027357 0.000274239 0.000274908 0.000275577 0.000276246 0.000276916 0.000277585 0.000278255 0.000278925 0.000279595 0.000280265 0.000280935 0.000281606 0.000282277 0.000282948 0.000283619 0.00028429 0.000284962 0.000285635 0.000286307 0.00028698 0.000287653 0.000288327 0.000289001 0.000289675 0.00029035 0.000291025 0.0002917 0.000292376 0.000293053 0.00029373 0.000294408 0.000295086 0.000295765 0.000296444 0.000297124 0.000297804 0.000298485 0.000299167 0.000299849 0.000300533 0.000301216 0.000301901 0.000302586 0.000303272 0.000303959 0.000304647 0.000305336 0.000306025 0.000306715 0.000307407 0.000308099 0.000308792 0.000309486 0.000310181 0.000310877 0.000311574 0.000312272 0.000312971 0.000313671 0.000314373 0.000315075 0.000315779 0.000316484 0.00031719 0.000317897 0.000318606 0.000319316 0.000320027 +-0.000358728 -0.000316789 -0.00027603 -0.000236509 -0.000198289 -0.000161432 -0.000126005 -9.2077E-05 -5.97179E-05 -2.89992E-05 6.82753E-09 2.70951E-05 5.21296E-05 7.51444E-05 9.61755E-05 0.000115262 0.000132446 0.000147778 0.000161315 0.000173128 0.000183302 0.000191944 0.000199183 0.000205172 0.000210082 0.00021409 0.000217371 0.000220082 0.000222354 0.000224295 0.000225985 0.000227487 0.000228844 0.000230092 0.000231253 0.000232346 0.000233385 0.000234381 0.000235341 0.00023627 0.000237175 0.000238059 0.000238925 0.000239776 0.000240613 0.000241438 0.000242253 0.000243059 0.000243857 0.000244648 0.000245432 0.000246211 0.000246984 0.000247753 0.000248517 0.000249278 0.000250034 0.000250788 0.000251538 0.000252286 0.000253031 0.000253774 0.000254515 0.000255253 0.00025599 0.000256725 0.000257458 0.00025819 0.000258921 0.00025965 0.000260378 0.000261104 0.00026183 0.000262555 0.000263278 0.000264001 0.000264723 0.000265444 0.000266164 0.000266884 0.000267603 0.000268321 0.000269039 0.000269756 0.000270473 0.000271189 0.000271905 0.00027262 0.000273335 0.000274049 0.000274763 0.000275476 0.00027619 0.000276903 0.000277615 0.000278327 0.000279039 0.000279751 0.000280463 0.000281174 0.000281885 0.000282596 0.000283306 0.000284017 0.000284727 0.000285437 0.000286147 0.000286857 0.000287566 0.000288276 0.000288985 0.000289694 0.000290404 0.000291113 0.000291822 0.000292531 0.00029324 0.000293949 0.000294658 0.000295367 0.000296076 0.000296785 0.000297494 0.000298203 0.000298912 0.000299621 0.00030033 0.00030104 0.000301749 0.000302459 0.000303168 0.000303878 0.000304588 0.000305298 0.000306009 0.000306719 0.00030743 0.000308141 0.000308853 0.000309564 0.000310276 0.000310988 0.000311701 0.000312414 0.000313127 0.000313841 0.000314555 0.000315269 0.000315984 0.000316699 0.000317415 0.000318131 0.000318848 0.000319565 0.000320283 0.000321001 0.00032172 0.00032244 0.00032316 0.000323881 0.000324602 0.000325325 0.000326048 0.000326771 0.000327496 0.000328221 0.000328947 0.000329674 0.000330401 0.00033113 0.000331859 0.00033259 0.000333321 0.000334053 0.000334786 0.000335521 0.000336256 0.000336992 0.000337729 0.000338468 0.000339207 0.000339948 0.00034069 0.000341433 0.000342178 0.000342923 0.00034367 0.000344418 0.000345168 0.000345918 0.000346671 +-0.000371386 -0.000328364 -0.000286483 -0.000245799 -0.000206374 -0.000168271 -0.000131556 -9.62987E-05 -6.25697E-05 -3.04426E-05 7.48193E-09 2.85454E-05 5.50065E-05 7.94242E-05 0.000101833 0.000122271 0.000140778 0.0001574 0.00017219 0.000185211 0.00019654 0.00020627 0.000214517 0.000221419 0.000227134 0.000231836 0.000235698 0.000238888 0.000241552 0.000243811 0.000245763 0.000247481 0.000249021 0.000250424 0.000251721 0.000252934 0.000254081 0.000255175 0.000256225 0.000257239 0.000258223 0.000259181 0.000260118 0.000261037 0.000261939 0.000262828 0.000263704 0.00026457 0.000265426 0.000266273 0.000267113 0.000267946 0.000268773 0.000269594 0.00027041 0.000271222 0.000272029 0.000272833 0.000273633 0.000274429 0.000275223 0.000276014 0.000276802 0.000277588 0.000278372 0.000279153 0.000279933 0.000280711 0.000281487 0.000282262 0.000283035 0.000283807 0.000284577 0.000285347 0.000286115 0.000286882 0.000287648 0.000288413 0.000289177 0.000289941 0.000290703 0.000291465 0.000292226 0.000292986 0.000293746 0.000294505 0.000295264 0.000296021 0.000296779 0.000297536 0.000298292 0.000299048 0.000299804 0.000300559 0.000301313 0.000302068 0.000302822 0.000303575 0.000304328 0.000305081 0.000305834 0.000306586 0.000307339 0.00030809 0.000308842 0.000309593 0.000310345 0.000311096 0.000311846 0.000312597 0.000313348 0.000314098 0.000314848 0.000315598 0.000316348 0.000317098 0.000317848 0.000318597 0.000319347 0.000320097 0.000320846 0.000321596 0.000322345 0.000323095 0.000323844 0.000324594 0.000325343 0.000326093 0.000326843 0.000327593 0.000328343 0.000329093 0.000329843 0.000330593 0.000331344 0.000332095 0.000332846 0.000333597 0.000334348 0.0003351 0.000335852 0.000336604 0.000337357 0.000338109 0.000338863 0.000339616 0.00034037 0.000341124 0.000341879 0.000342635 0.00034339 0.000344146 0.000344903 0.00034566 0.000346418 0.000347176 0.000347935 0.000348695 0.000349455 0.000350216 0.000350978 0.00035174 0.000352503 0.000353266 0.000354031 0.000354796 0.000355562 0.000356329 0.000357097 0.000357866 0.000358636 0.000359406 0.000360178 0.00036095 0.000361724 0.000362499 0.000363274 0.000364051 0.000364829 0.000365608 0.000366388 0.00036717 0.000367952 0.000368736 0.000369521 0.000370308 0.000371096 0.000371885 0.000372675 0.000373467 0.000374261 +-0.000383851 -0.000339766 -0.000296783 -0.000254958 -0.00021435 -0.000175022 -0.00013704 -0.000100473 -6.53927E-05 -3.18733E-05 8.18718E-09 2.99863E-05 5.78676E-05 8.36845E-05 0.000107471 0.000129263 0.000149098 0.000167021 0.000183079 0.000197329 0.000209841 0.000220697 0.000229999 0.000237872 0.00024446 0.000249926 0.000254443 0.00025818 0.000261295 0.000263924 0.000266178 0.000268147 0.000269896 0.000271476 0.000272927 0.000274274 0.000275541 0.000276743 0.000277891 0.000278996 0.000280065 0.000281104 0.000282117 0.000283107 0.000284079 0.000285034 0.000285975 0.000286902 0.000287819 0.000288726 0.000289623 0.000290513 0.000291395 0.000292271 0.000293141 0.000294005 0.000294865 0.000295719 0.00029657 0.000297417 0.000298261 0.000299101 0.000299938 0.000300772 0.000301604 0.000302433 0.00030326 0.000304085 0.000304908 0.000305729 0.000306549 0.000307366 0.000308183 0.000308997 0.000309811 0.000310623 0.000311434 0.000312244 0.000313053 0.00031386 0.000314667 0.000315473 0.000316278 0.000317082 0.000317886 0.000318688 0.00031949 0.000320291 0.000321092 0.000321892 0.000322691 0.00032349 0.000324288 0.000325086 0.000325884 0.00032668 0.000327477 0.000328273 0.000329068 0.000329863 0.000330658 0.000331453 0.000332247 0.000333041 0.000333834 0.000334627 0.00033542 0.000336213 0.000337005 0.000337797 0.000338589 0.000339381 0.000340172 0.000340964 0.000341755 0.000342546 0.000343337 0.000344128 0.000344918 0.000345709 0.000346499 0.00034729 0.00034808 0.00034887 0.000349661 0.000350451 0.000351241 0.000352032 0.000352822 0.000353613 0.000354403 0.000355194 0.000355984 0.000356775 0.000357566 0.000358357 0.000359149 0.00035994 0.000360732 0.000361524 0.000362316 0.000363109 0.000363901 0.000364694 0.000365488 0.000366282 0.000367076 0.00036787 0.000368665 0.000369461 0.000370257 0.000371053 0.00037185 0.000372647 0.000373445 0.000374244 0.000375043 0.000375842 0.000376643 0.000377444 0.000378246 0.000379048 0.000379851 0.000380655 0.00038146 0.000382266 0.000383072 0.000383879 0.000384687 0.000385497 0.000386307 0.000387118 0.00038793 0.000388743 0.000389557 0.000390372 0.000391188 0.000392006 0.000392824 0.000393644 0.000394465 0.000395287 0.000396111 0.000396936 0.000397762 0.000398589 0.000399418 0.000400249 0.00040108 0.000401914 0.000402748 +-0.000396117 -0.00035099 -0.000306925 -0.000263979 -0.00022221 -0.000181679 -0.000142451 -0.000104596 -6.81832E-05 -3.3289E-05 8.94653E-09 3.14152E-05 6.07071E-05 8.79164E-05 0.000113076 0.000136221 0.000157387 0.000176615 0.000193951 0.000209446 0.000223162 0.000235174 0.000245571 0.000254465 0.000261985 0.000268283 0.000273523 0.000277877 0.000281506 0.00028456 0.000287165 0.000289422 0.000291411 0.000293194 0.000294818 0.000296316 0.000297716 0.000299037 0.000300293 0.000301497 0.000302658 0.000303783 0.000304876 0.000305944 0.000306989 0.000308014 0.000309022 0.000310015 0.000310995 0.000311964 0.000312921 0.00031387 0.000314809 0.000315742 0.000316667 0.000317586 0.000318499 0.000319407 0.00032031 0.000321208 0.000322103 0.000322993 0.00032388 0.000324764 0.000325645 0.000326523 0.000327398 0.000328271 0.000329142 0.00033001 0.000330877 0.000331741 0.000332604 0.000333465 0.000334325 0.000335183 0.000336039 0.000336894 0.000337748 0.000338601 0.000339453 0.000340303 0.000341153 0.000342002 0.000342849 0.000343696 0.000344542 0.000345387 0.000346231 0.000347075 0.000347918 0.00034876 0.000349602 0.000350443 0.000351283 0.000352123 0.000352962 0.000353801 0.000354639 0.000355477 0.000356314 0.000357151 0.000357987 0.000358823 0.000359659 0.000360494 0.000361329 0.000362164 0.000362998 0.000363832 0.000364666 0.0003655 0.000366333 0.000367166 0.000367998 0.000368831 0.000369663 0.000370495 0.000371327 0.000372159 0.000372991 0.000373823 0.000374654 0.000375486 0.000376317 0.000377148 0.00037798 0.000378811 0.000379642 0.000380473 0.000381305 0.000382136 0.000382967 0.000383799 0.000384631 0.000385462 0.000386294 0.000387126 0.000387959 0.000388791 0.000389624 0.000390457 0.00039129 0.000392123 0.000392957 0.000393791 0.000394626 0.000395461 0.000396296 0.000397132 0.000397968 0.000398805 0.000399642 0.00040048 0.000401318 0.000402157 0.000402996 0.000403836 0.000404677 0.000405518 0.00040636 0.000407203 0.000408047 0.000408891 0.000409736 0.000410582 0.000411429 0.000412277 0.000413125 0.000413975 0.000414826 0.000415677 0.00041653 0.000417383 0.000418238 0.000419094 0.000419951 0.000420809 0.000421668 0.000422529 0.000423391 0.000424254 0.000425119 0.000425984 0.000426852 0.00042772 0.00042859 0.000429462 0.000430335 0.000431209 0.000432085 +-0.000408182 -0.000362031 -0.000316906 -0.00027286 -0.000229951 -0.000188238 -0.000147786 -0.000108662 -7.09378E-05 -3.46877E-05 9.76345E-09 3.28298E-05 6.35203E-05 9.21124E-05 0.000118638 0.000143131 0.000165626 0.000186163 0.000204782 0.000221531 0.000236468 0.000249658 0.000261182 0.000271137 0.00027964 0.00028683 0.000292861 0.000297899 0.000302109 0.000305647 0.000308653 0.000311241 0.000313506 0.00031552 0.000317341 0.000319009 0.000320557 0.000322009 0.000323384 0.000324696 0.000325957 0.000327173 0.000328354 0.000329503 0.000330625 0.000331725 0.000332804 0.000333866 0.000334912 0.000335945 0.000336965 0.000337974 0.000338974 0.000339964 0.000340947 0.000341922 0.00034289 0.000343853 0.000344809 0.000345761 0.000346707 0.00034765 0.000348588 0.000349523 0.000350454 0.000351381 0.000352306 0.000353228 0.000354147 0.000355064 0.000355978 0.00035689 0.0003578 0.000358708 0.000359614 0.000360519 0.000361422 0.000362323 0.000363223 0.000364121 0.000365018 0.000365914 0.000366809 0.000367703 0.000368595 0.000369486 0.000370377 0.000371266 0.000372155 0.000373042 0.000373929 0.000374815 0.000375701 0.000376585 0.000377469 0.000378352 0.000379235 0.000380117 0.000380998 0.000381879 0.000382759 0.000383639 0.000384518 0.000385397 0.000386275 0.000387153 0.00038803 0.000388907 0.000389784 0.00039066 0.000391536 0.000392411 0.000393286 0.000394161 0.000395036 0.00039591 0.000396784 0.000397658 0.000398531 0.000399405 0.000400278 0.000401151 0.000402024 0.000402897 0.000403769 0.000404642 0.000405514 0.000406387 0.000407259 0.000408131 0.000409003 0.000409876 0.000410748 0.000411621 0.000412493 0.000413366 0.000414238 0.000415111 0.000415984 0.000416857 0.000417731 0.000418604 0.000419478 0.000420352 0.000421226 0.000422101 0.000422976 0.000423852 0.000424727 0.000425604 0.00042648 0.000427357 0.000428235 0.000429113 0.000429992 0.000430871 0.000431751 0.000432631 0.000433512 0.000434394 0.000435277 0.00043616 0.000437044 0.000437928 0.000438814 0.0004397 0.000440588 0.000441476 0.000442365 0.000443255 0.000444146 0.000445039 0.000445932 0.000446826 0.000447721 0.000448618 0.000449516 0.000450415 0.000451315 0.000452216 0.000453119 0.000454023 0.000454929 0.000455835 0.000456744 0.000457653 0.000458565 0.000459477 0.000460392 0.000461308 0.000462225 +-0.000420042 -0.000372888 -0.000326722 -0.000281597 -0.000237568 -0.000194694 -0.000153039 -0.000112669 -7.36539E-05 -3.6068E-05 1.06416E-08 3.42281E-05 6.6303E-05 9.62659E-05 0.000124148 0.000149982 0.000173802 0.000195644 0.000215548 0.000233559 0.000249726 0.000264111 0.000276786 0.000287835 0.000297366 0.0003055 0.000312383 0.00031817 0.000323025 0.00032711 0.000330572 0.000333539 0.000336119 0.000338397 0.00034044 0.000342299 0.000344013 0.000345611 0.000347117 0.000348547 0.000349915 0.000351231 0.000352505 0.000353741 0.000354946 0.000356124 0.000357278 0.000358412 0.000359528 0.000360628 0.000361713 0.000362786 0.000363847 0.000364898 0.00036594 0.000366973 0.000367998 0.000369016 0.000370028 0.000371034 0.000372034 0.00037303 0.00037402 0.000375007 0.000375989 0.000376967 0.000377942 0.000378914 0.000379882 0.000380848 0.000381811 0.000382772 0.00038373 0.000384685 0.000385639 0.000386591 0.000387541 0.000388489 0.000389435 0.00039038 0.000391323 0.000392265 0.000393205 0.000394144 0.000395082 0.000396018 0.000396954 0.000397888 0.000398821 0.000399753 0.000400684 0.000401615 0.000402544 0.000403473 0.000404401 0.000405327 0.000406254 0.000407179 0.000408104 0.000409028 0.000409951 0.000410874 0.000411797 0.000412718 0.000413639 0.00041456 0.00041548 0.000416399 0.000417319 0.000418237 0.000419155 0.000420073 0.00042099 0.000421907 0.000422824 0.00042374 0.000424656 0.000425572 0.000426487 0.000427403 0.000428317 0.000429232 0.000430147 0.000431061 0.000431975 0.000432889 0.000433803 0.000434716 0.00043563 0.000436543 0.000437457 0.00043837 0.000439284 0.000440197 0.00044111 0.000442024 0.000442938 0.000443851 0.000444765 0.000445679 0.000446593 0.000447507 0.000448422 0.000449337 0.000450252 0.000451167 0.000452083 0.000452999 0.000453915 0.000454832 0.000455749 0.000456666 0.000457584 0.000458503 0.000459422 0.000460342 0.000461262 0.000462183 0.000463105 0.000464027 0.00046495 0.000465873 0.000466798 0.000467723 0.000468649 0.000469576 0.000470504 0.000471433 0.000472362 0.000473293 0.000474225 0.000475157 0.000476091 0.000477026 0.000477962 0.000478899 0.000479838 0.000480778 0.000481719 0.000482661 0.000483604 0.000484549 0.000485496 0.000486444 0.000487393 0.000488344 0.000489296 0.00049025 0.000491206 0.000492163 0.000493122 +-0.000431698 -0.000383559 -0.000336371 -0.000290187 -0.000245059 -0.000201046 -0.00015821 -0.000116614 -7.63296E-05 -3.74285E-05 1.15847E-08 3.56085E-05 6.90518E-05 0.000100372 0.000129599 0.000156764 0.000181901 0.000205045 0.000226232 0.000245505 0.00026291 0.000278501 0.000292344 0.000304515 0.000315107 0.000324232 0.000332019 0.000338616 0.000344181 0.000348874 0.00035285 0.000356248 0.000359187 0.000361765 0.00036406 0.000366134 0.000368034 0.000369795 0.000371444 0.000373004 0.000374489 0.000375913 0.000377286 0.000378616 0.000379909 0.00038117 0.000382403 0.000383613 0.000384801 0.000385971 0.000387125 0.000388263 0.000389389 0.000390502 0.000391605 0.000392698 0.000393782 0.000394858 0.000395926 0.000396988 0.000398043 0.000399093 0.000400137 0.000401176 0.000402211 0.000403241 0.000404267 0.000405289 0.000406308 0.000407324 0.000408337 0.000409346 0.000410353 0.000411357 0.000412359 0.000413359 0.000414356 0.000415351 0.000416345 0.000417336 0.000418326 0.000419314 0.000420301 0.000421286 0.000422269 0.000423251 0.000424232 0.000425212 0.00042619 0.000427167 0.000428143 0.000429118 0.000430092 0.000431065 0.000432037 0.000433008 0.000433978 0.000434948 0.000435916 0.000436884 0.000437851 0.000438817 0.000439783 0.000440747 0.000441712 0.000442675 0.000443638 0.000444601 0.000445563 0.000446524 0.000447485 0.000448445 0.000449405 0.000450364 0.000451323 0.000452281 0.00045324 0.000454197 0.000455155 0.000456112 0.000457068 0.000458025 0.000458981 0.000459937 0.000460893 0.000461848 0.000462803 0.000463758 0.000464713 0.000465668 0.000466623 0.000467578 0.000468532 0.000469487 0.000470441 0.000471396 0.00047235 0.000473305 0.00047426 0.000475214 0.000476169 0.000477124 0.00047808 0.000479035 0.000479991 0.000480947 0.000481903 0.00048286 0.000483817 0.000484774 0.000485732 0.00048669 0.000487649 0.000488608 0.000489567 0.000490528 0.000491488 0.00049245 0.000493412 0.000494374 0.000495338 0.000496302 0.000497267 0.000498232 0.000499199 0.000500166 0.000501135 0.000502104 0.000503074 0.000504045 0.000505017 0.000505991 0.000506965 0.000507941 0.000508917 0.000509895 0.000510874 0.000511855 0.000512836 0.00051382 0.000514804 0.00051579 0.000516777 0.000517766 0.000518756 0.000519748 0.000520741 0.000521737 0.000522733 0.000523732 0.000524732 +-0.000443147 -0.000394042 -0.000345852 -0.000298628 -0.000252422 -0.000207291 -0.000163294 -0.000120496 -7.89631E-05 -3.87682E-05 1.25969E-08 3.69696E-05 7.17639E-05 0.000104425 0.000134983 0.000163469 0.000189913 0.000214351 0.000236817 0.00025735 0.000275995 0.0002928 0.000307824 0.000321135 0.000332817 0.000342969 0.000351709 0.000359171 0.000365505 0.000370869 0.000375418 0.0003793 0.000382645 0.000385563 0.000388145 0.000390462 0.00039257 0.000394511 0.00039632 0.000398021 0.000399635 0.000401175 0.000402656 0.000404085 0.000405472 0.000406821 0.000408138 0.000409428 0.000410692 0.000411936 0.00041316 0.000414367 0.00041556 0.000416738 0.000417904 0.000419059 0.000420203 0.000421338 0.000422465 0.000423584 0.000424696 0.000425801 0.0004269 0.000427993 0.000429081 0.000430164 0.000431242 0.000432316 0.000433386 0.000434453 0.000435516 0.000436575 0.000437632 0.000438685 0.000439736 0.000440784 0.00044183 0.000442873 0.000443914 0.000444953 0.00044599 0.000447025 0.000448058 0.000449089 0.000450119 0.000451147 0.000452174 0.000453199 0.000454223 0.000455245 0.000456266 0.000457286 0.000458305 0.000459323 0.000460339 0.000461355 0.000462369 0.000463383 0.000464395 0.000465407 0.000466418 0.000467428 0.000468437 0.000469445 0.000470453 0.00047146 0.000472466 0.000473471 0.000474476 0.00047548 0.000476484 0.000477487 0.000478489 0.000479491 0.000480493 0.000481494 0.000482494 0.000483494 0.000484493 0.000485493 0.000486491 0.00048749 0.000488488 0.000489485 0.000490483 0.00049148 0.000492477 0.000493473 0.00049447 0.000495466 0.000496462 0.000497458 0.000498454 0.00049945 0.000500445 0.000501441 0.000502436 0.000503432 0.000504428 0.000505424 0.000506419 0.000507415 0.000508411 0.000509408 0.000510404 0.000511401 0.000512398 0.000513395 0.000514393 0.00051539 0.000516389 0.000517387 0.000518387 0.000519386 0.000520386 0.000521387 0.000522388 0.00052339 0.000524392 0.000525396 0.000526399 0.000527404 0.000528409 0.000529415 0.000530422 0.00053143 0.000532439 0.000533449 0.000534459 0.000535471 0.000536483 0.000537497 0.000538512 0.000539528 0.000540545 0.000541564 0.000542584 0.000543605 0.000544627 0.000545651 0.000546676 0.000547703 0.000548731 0.00054976 0.000550791 0.000551824 0.000552859 0.000553895 0.000554933 0.000555972 0.000557014 +-0.00045439 -0.000404336 -0.000355163 -0.000306919 -0.000259656 -0.000213427 -0.000168292 -0.000124312 -8.1553E-05 -4.00862E-05 1.36824E-08 3.83104E-05 7.4437E-05 0.000108423 0.000140296 0.000170088 0.00019783 0.000223552 0.00024729 0.00026908 0.000288963 0.000306984 0.000323197 0.000337663 0.000350457 0.000361666 0.000371397 0.000379772 0.000386931 0.000393024 0.000398206 0.000402629 0.00040643 0.000409732 0.000412637 0.000415228 0.000417569 0.000419712 0.000421697 0.000423555 0.000425308 0.000426975 0.000428572 0.000430109 0.000431595 0.000433038 0.000434444 0.000435817 0.000437162 0.000438483 0.000439781 0.00044106 0.000442321 0.000443567 0.000444798 0.000446017 0.000447224 0.00044842 0.000449607 0.000450784 0.000451954 0.000453116 0.000454271 0.000455419 0.000456562 0.000457699 0.00045883 0.000459957 0.000461079 0.000462197 0.000463311 0.000464422 0.000465528 0.000466632 0.000467732 0.000468829 0.000469924 0.000471015 0.000472105 0.000473191 0.000474276 0.000475358 0.000476439 0.000477517 0.000478593 0.000479668 0.000480741 0.000481812 0.000482882 0.00048395 0.000485017 0.000486082 0.000487146 0.000488209 0.00048927 0.000490331 0.00049139 0.000492448 0.000493505 0.00049456 0.000495615 0.000496669 0.000497722 0.000498774 0.000499825 0.000500876 0.000501925 0.000502974 0.000504022 0.000505069 0.000506116 0.000507162 0.000508207 0.000509251 0.000510295 0.000511339 0.000512382 0.000513424 0.000514466 0.000515507 0.000516548 0.000517588 0.000518628 0.000519668 0.000520707 0.000521746 0.000522784 0.000523823 0.000524861 0.000525898 0.000526936 0.000527973 0.00052901 0.000530047 0.000531084 0.000532121 0.000533158 0.000534194 0.000535231 0.000536268 0.000537304 0.000538341 0.000539378 0.000540415 0.000541452 0.00054249 0.000543527 0.000544565 0.000545603 0.000546642 0.000547681 0.00054872 0.00054976 0.0005508 0.00055184 0.000552881 0.000553923 0.000554965 0.000556008 0.000557052 0.000558096 0.000559141 0.000560186 0.000561233 0.00056228 0.000563328 0.000564377 0.000565427 0.000566478 0.00056753 0.000568584 0.000569638 0.000570693 0.00057175 0.000572807 0.000573866 0.000574926 0.000575988 0.000577051 0.000578115 0.000579181 0.000580248 0.000581317 0.000582387 0.000583459 0.000584533 0.000585608 0.000586685 0.000587764 0.000588844 0.000589927 +-0.000465426 -0.000414443 -0.000364305 -0.000315061 -0.000266759 -0.000219454 -0.000173201 -0.000128061 -8.40985E-05 -4.13821E-05 1.48458E-08 3.96301E-05 7.70693E-05 0.000112361 0.000145534 0.000176618 0.000205642 0.000232639 0.000257639 0.000280679 0.000301797 0.000321034 0.00033844 0.00035407 0.000367991 0.000380281 0.000391036 0.000400365 0.000408398 0.000415275 0.000421148 0.000426167 0.000430478 0.000434211 0.00043748 0.000440378 0.000442981 0.00044535 0.00044753 0.00044956 0.000451466 0.000453271 0.000454993 0.000456646 0.000458239 0.000459782 0.000461281 0.000462744 0.000464173 0.000465574 0.00046695 0.000468304 0.000469637 0.000470953 0.000472252 0.000473536 0.000474808 0.000476067 0.000477315 0.000478553 0.000479782 0.000481002 0.000482215 0.00048342 0.000484618 0.00048581 0.000486996 0.000488176 0.000489351 0.000490522 0.000491688 0.00049285 0.000494007 0.000495161 0.000496312 0.000497459 0.000498603 0.000499744 0.000500882 0.000502017 0.00050315 0.00050428 0.000505408 0.000506534 0.000507657 0.000508779 0.000509898 0.000511016 0.000512132 0.000513246 0.000514359 0.00051547 0.000516579 0.000517687 0.000518794 0.000519899 0.000521003 0.000522106 0.000523207 0.000524308 0.000525407 0.000526505 0.000527602 0.000528698 0.000529793 0.000530887 0.00053198 0.000533072 0.000534164 0.000535254 0.000536344 0.000537433 0.000538521 0.000539608 0.000540695 0.000541781 0.000542866 0.000543951 0.000545035 0.000546119 0.000547202 0.000548284 0.000549366 0.000550448 0.000551529 0.00055261 0.00055369 0.00055477 0.00055585 0.000556929 0.000558008 0.000559087 0.000560165 0.000561243 0.000562321 0.000563399 0.000564477 0.000565555 0.000566633 0.00056771 0.000568788 0.000569866 0.000570943 0.000572021 0.000573099 0.000574177 0.000575255 0.000576334 0.000577413 0.000578492 0.000579571 0.000580651 0.000581731 0.000582811 0.000583892 0.000584974 0.000586056 0.000587138 0.000588222 0.000589305 0.00059039 0.000591475 0.000592561 0.000593648 0.000594735 0.000595824 0.000596913 0.000598003 0.000599095 0.000600187 0.00060128 0.000602375 0.00060347 0.000604567 0.000605665 0.000606765 0.000607865 0.000608967 0.00061007 0.000611175 0.000612281 0.000613389 0.000614499 0.000615609 0.000616722 0.000617836 0.000618952 0.00062007 0.000621189 0.000622311 0.000623434 +-0.000476258 -0.000424361 -0.000373277 -0.000323052 -0.000273732 -0.00022537 -0.000178021 -0.000131743 -8.65988E-05 -4.26552E-05 1.60917E-08 4.09279E-05 7.96593E-05 0.000116238 0.000150693 0.000183053 0.000213346 0.000241603 0.000267856 0.000292137 0.000314483 0.000334933 0.000353533 0.000370332 0.00038539 0.00039878 0.000410584 0.000420902 0.000429851 0.000437563 0.00044418 0.000449852 0.000454726 0.00045894 0.000462616 0.000465859 0.000468755 0.000471375 0.000473773 0.000475992 0.000478067 0.000480023 0.000481881 0.000483657 0.000485365 0.000487014 0.000488614 0.00049017 0.000491689 0.000493175 0.000494632 0.000496063 0.000497472 0.00049886 0.000500229 0.000501582 0.00050292 0.000504244 0.000505556 0.000506856 0.000508146 0.000509426 0.000510697 0.000511959 0.000513214 0.000514462 0.000515704 0.000516939 0.000518168 0.000519392 0.000520611 0.000521825 0.000523034 0.00052424 0.000525441 0.000526639 0.000527833 0.000529023 0.000530211 0.000531395 0.000532576 0.000533755 0.000534931 0.000536105 0.000537276 0.000538445 0.000539611 0.000540776 0.000541939 0.000543099 0.000544258 0.000545415 0.00054657 0.000547724 0.000548876 0.000550027 0.000551176 0.000552324 0.00055347 0.000554615 0.000555759 0.000556901 0.000558042 0.000559182 0.000560321 0.000561459 0.000562596 0.000563732 0.000564867 0.000566 0.000567133 0.000568266 0.000569397 0.000570527 0.000571657 0.000572785 0.000573914 0.000575041 0.000576167 0.000577293 0.000578419 0.000579544 0.000580668 0.000581791 0.000582914 0.000584037 0.000585159 0.000586281 0.000587402 0.000588523 0.000589643 0.000590763 0.000591883 0.000593003 0.000594122 0.000595241 0.00059636 0.000597479 0.000598598 0.000599716 0.000600835 0.000601953 0.000603072 0.000604191 0.000605309 0.000606428 0.000607547 0.000608666 0.000609785 0.000610905 0.000612025 0.000613145 0.000614265 0.000615386 0.000616507 0.000617629 0.000618751 0.000619874 0.000620998 0.000622122 0.000623246 0.000624372 0.000625498 0.000626625 0.000627752 0.000628881 0.000630011 0.000631141 0.000632272 0.000633405 0.000634538 0.000635673 0.000636809 0.000637946 0.000639084 0.000640224 0.000641364 0.000642507 0.00064365 0.000644795 0.000645942 0.00064709 0.00064824 0.000649391 0.000650544 0.000651699 0.000652855 0.000654013 0.000655173 0.000656335 0.000657499 +-0.000486884 -0.000434093 -0.000382081 -0.000330893 -0.000280575 -0.000231177 -0.000182752 -0.000135357 -8.90534E-05 -4.39053E-05 1.74252E-08 4.22035E-05 8.22059E-05 0.000120052 0.000155771 0.000189389 0.000220936 0.00025044 0.000277932 0.000303445 0.000327011 0.000348669 0.000368459 0.000386428 0.000402632 0.000417132 0.000430005 0.00044134 0.000451242 0.000459832 0.000467245 0.000473623 0.000479114 0.000483859 0.000487988 0.000491616 0.00049484 0.00049774 0.00050038 0.000502809 0.000505069 0.000507189 0.000509195 0.000511106 0.000512937 0.0005147 0.000516406 0.000518061 0.000519674 0.000521249 0.000522791 0.000524304 0.000525791 0.000527254 0.000528697 0.000530121 0.000531527 0.000532918 0.000534295 0.000535659 0.000537011 0.000538353 0.000539684 0.000541006 0.000542319 0.000543624 0.000544922 0.000546213 0.000547497 0.000548775 0.000550048 0.000551315 0.000552577 0.000553835 0.000555088 0.000556336 0.000557581 0.000558822 0.000560059 0.000561293 0.000562524 0.000563751 0.000564976 0.000566198 0.000567417 0.000568634 0.000569848 0.00057106 0.000572269 0.000573477 0.000574682 0.000575886 0.000577087 0.000578287 0.000579484 0.000580681 0.000581875 0.000583068 0.000584259 0.000585449 0.000586638 0.000587825 0.00058901 0.000590195 0.000591378 0.00059256 0.00059374 0.00059492 0.000596099 0.000597276 0.000598452 0.000599628 0.000600802 0.000601976 0.000603148 0.00060432 0.00060549 0.00060666 0.00060783 0.000608998 0.000610166 0.000611333 0.000612499 0.000613665 0.00061483 0.000615994 0.000617158 0.000618322 0.000619485 0.000620647 0.000621809 0.000622971 0.000624132 0.000625293 0.000626454 0.000627614 0.000628774 0.000629934 0.000631093 0.000632253 0.000633412 0.000634572 0.000635731 0.00063689 0.00063805 0.000639209 0.000640368 0.000641528 0.000642688 0.000643848 0.000645008 0.000646168 0.000647329 0.00064849 0.000649652 0.000650814 0.000651976 0.000653139 0.000654303 0.000655467 0.000656632 0.000657797 0.000658963 0.00066013 0.000661298 0.000662467 0.000663636 0.000664807 0.000665978 0.000667151 0.000668324 0.000669499 0.000670675 0.000671852 0.00067303 0.000674209 0.00067539 0.000676573 0.000677756 0.000678941 0.000680128 0.000681316 0.000682506 0.000683698 0.000684891 0.000686086 0.000687283 0.000688482 0.000689682 0.000690885 0.000692089 +-0.000497308 -0.000443638 -0.000390716 -0.000338584 -0.000287287 -0.000236873 -0.000187393 -0.000138904 -9.14622E-05 -4.51322E-05 1.88515E-08 4.34564E-05 8.47084E-05 0.000123802 0.000160765 0.000195624 0.000228408 0.000259144 0.000287863 0.000314594 0.000339371 0.000362229 0.000383205 0.000402344 0.000419694 0.000435314 0.000449271 0.000461644 0.000472529 0.000482036 0.000490288 0.000497422 0.000503582 0.000508909 0.00051354 0.000517596 0.000521186 0.000524398 0.000527306 0.000529967 0.00053243 0.000534731 0.000536898 0.000538954 0.000540917 0.000542803 0.000544621 0.000546383 0.000548095 0.000549764 0.000551396 0.000552994 0.000554562 0.000556104 0.000557623 0.00055912 0.000560597 0.000562058 0.000563502 0.000564932 0.000566348 0.000567752 0.000569145 0.000570527 0.0005719 0.000573264 0.000574619 0.000575967 0.000577307 0.000578641 0.000579968 0.000581289 0.000582605 0.000583915 0.00058522 0.000586521 0.000587817 0.000589109 0.000590397 0.000591681 0.000592961 0.000594238 0.000595512 0.000596782 0.00059805 0.000599315 0.000600577 0.000601836 0.000603093 0.000604348 0.0006056 0.00060685 0.000608098 0.000609344 0.000610588 0.00061183 0.00061307 0.000614308 0.000615545 0.00061678 0.000618013 0.000619245 0.000620475 0.000621704 0.000622932 0.000624158 0.000625382 0.000626606 0.000627828 0.000629049 0.000630269 0.000631488 0.000632706 0.000633922 0.000635138 0.000636352 0.000637566 0.000638779 0.000639991 0.000641202 0.000642412 0.000643621 0.00064483 0.000646037 0.000647245 0.000648451 0.000649657 0.000650862 0.000652067 0.000653271 0.000654474 0.000655677 0.00065688 0.000658082 0.000659284 0.000660486 0.000661687 0.000662888 0.000664088 0.000665289 0.000666489 0.000667689 0.000668889 0.000670089 0.000671289 0.000672489 0.000673689 0.000674889 0.000676089 0.000677289 0.00067849 0.00067969 0.000680891 0.000682093 0.000683294 0.000684496 0.000685699 0.000686902 0.000688106 0.00068931 0.000690515 0.00069172 0.000692926 0.000694133 0.000695341 0.000696549 0.000697759 0.000698969 0.00070018 0.000701393 0.000702606 0.00070382 0.000705036 0.000706253 0.000707471 0.000708691 0.000709911 0.000711133 0.000712357 0.000713582 0.000714809 0.000716037 0.000717267 0.000718499 0.000719732 0.000720967 0.000722204 0.000723443 0.000724683 0.000725926 0.000727171 +-0.00050753 -0.000453 -0.000399185 -0.000346127 -0.00029387 -0.000242459 -0.000191946 -0.000142382 -9.38249E-05 -4.63357E-05 2.03762E-08 4.46864E-05 8.71661E-05 0.000127486 0.000165674 0.000201756 0.000235759 0.000267712 0.000297642 0.00032558 0.000351556 0.000375604 0.00039776 0.000418064 0.000436562 0.000453305 0.000468355 0.000481783 0.000493675 0.00050413 0.000513262 0.000521198 0.000528076 0.000534036 0.000539217 0.000543747 0.000547741 0.0005513 0.000554505 0.000557424 0.000560111 0.000562609 0.000564951 0.000567165 0.000569272 0.000571288 0.000573228 0.000575102 0.000576919 0.000578688 0.000580413 0.0005821 0.000583754 0.000585378 0.000586975 0.000588548 0.0005901 0.000591631 0.000593145 0.000594643 0.000596125 0.000597594 0.00059905 0.000600494 0.000601928 0.000603351 0.000604766 0.000606171 0.000607568 0.000608958 0.000610341 0.000611717 0.000613087 0.000614451 0.000615809 0.000617162 0.00061851 0.000619854 0.000621193 0.000622528 0.000623858 0.000625185 0.000626509 0.000627829 0.000629145 0.000630458 0.000631769 0.000633076 0.000634381 0.000635683 0.000636982 0.000638279 0.000639574 0.000640866 0.000642157 0.000643445 0.000644731 0.000646015 0.000647297 0.000648577 0.000649856 0.000651132 0.000652408 0.000653681 0.000654953 0.000656224 0.000657493 0.00065876 0.000660026 0.000661291 0.000662555 0.000663817 0.000665078 0.000666338 0.000667597 0.000668854 0.000670111 0.000671366 0.000672621 0.000673874 0.000675127 0.000676379 0.00067763 0.00067888 0.000680129 0.000681377 0.000682625 0.000683872 0.000685118 0.000686364 0.000687609 0.000688853 0.000690097 0.000691341 0.000692584 0.000693827 0.000695069 0.000696311 0.000697552 0.000698794 0.000700035 0.000701275 0.000702516 0.000703757 0.000704997 0.000706237 0.000707478 0.000708718 0.000709959 0.000711199 0.00071244 0.000713681 0.000714922 0.000716163 0.000717405 0.000718647 0.00071989 0.000721133 0.000722376 0.00072362 0.000724865 0.00072611 0.000727356 0.000728603 0.00072985 0.000731098 0.000732348 0.000733598 0.000734849 0.000736101 0.000737354 0.000738608 0.000739863 0.00074112 0.000742378 0.000743637 0.000744897 0.000746159 0.000747422 0.000748687 0.000749954 0.000751222 0.000752491 0.000753763 0.000755036 0.000756311 0.000757588 0.000758866 0.000760147 0.00076143 0.000762715 +-0.000517553 -0.000462178 -0.000407488 -0.000353523 -0.000300324 -0.000247937 -0.000196409 -0.000145792 -9.61417E-05 -4.75158E-05 2.20052E-08 4.58934E-05 8.95788E-05 0.000131105 0.000170497 0.000207783 0.000242988 0.00027614 0.000307267 0.000336397 0.00036356 0.000388788 0.000412115 0.000433578 0.00045322 0.000471088 0.000487237 0.000501732 0.00051465 0.000526079 0.000536124 0.000544903 0.000552545 0.000559186 0.000564965 0.000570015 0.000574457 0.000578399 0.000581934 0.000585137 0.000588071 0.000590786 0.00059332 0.000595705 0.000597966 0.000600123 0.000602192 0.000604185 0.000606115 0.000607988 0.000609812 0.000611593 0.000613336 0.000615046 0.000616725 0.000618377 0.000620005 0.00062161 0.000623196 0.000624763 0.000626314 0.000627849 0.00062937 0.000630878 0.000632374 0.000633858 0.000635333 0.000636797 0.000638253 0.0006397 0.000641139 0.000642571 0.000643996 0.000645414 0.000646827 0.000648233 0.000649634 0.00065103 0.00065242 0.000653806 0.000655188 0.000656565 0.000657939 0.000659308 0.000660674 0.000662037 0.000663396 0.000664752 0.000666104 0.000667454 0.000668801 0.000670146 0.000671487 0.000672826 0.000674163 0.000675498 0.00067683 0.00067816 0.000679488 0.000680813 0.000682137 0.000683459 0.000684779 0.000686098 0.000687414 0.000688729 0.000690043 0.000691354 0.000692665 0.000693973 0.000695281 0.000696587 0.000697891 0.000699194 0.000700496 0.000701797 0.000703097 0.000704395 0.000705692 0.000706988 0.000708284 0.000709578 0.000710871 0.000712163 0.000713454 0.000714745 0.000716034 0.000717323 0.000718611 0.000719898 0.000721185 0.000722471 0.000723756 0.000725041 0.000726325 0.000727609 0.000728892 0.000730175 0.000731458 0.00073274 0.000734021 0.000735303 0.000736584 0.000737865 0.000739146 0.000740427 0.000741708 0.000742988 0.000744269 0.00074555 0.000746831 0.000748112 0.000749393 0.000750674 0.000751956 0.000753238 0.00075452 0.000755803 0.000757086 0.00075837 0.000759654 0.000760939 0.000762225 0.000763511 0.000764798 0.000766086 0.000767375 0.000768664 0.000769955 0.000771247 0.000772539 0.000773833 0.000775128 0.000776424 0.000777721 0.00077902 0.00078032 0.000781621 0.000782924 0.000784228 0.000785534 0.000786842 0.000788151 0.000789462 0.000790775 0.000792089 0.000793406 0.000794724 0.000796045 0.000797367 0.000798692 +-0.000527378 -0.000471175 -0.000415627 -0.000360772 -0.00030665 -0.000253305 -0.000200784 -0.000149135 -9.84126E-05 -4.86725E-05 2.37446E-08 4.70774E-05 9.19462E-05 0.000134656 0.000175233 0.000213703 0.000250092 0.000284427 0.000316734 0.000347042 0.000375378 0.000401774 0.000426262 0.000448877 0.000469658 0.000488649 0.0005059 0.000521469 0.000535426 0.000547851 0.000558837 0.000568494 0.000576941 0.00058431 0.000590734 0.00059635 0.000601282 0.000605648 0.000609547 0.000613064 0.000616271 0.000619222 0.000621966 0.000624537 0.000626965 0.000629274 0.000631482 0.000633603 0.000635651 0.000637635 0.000639563 0.000641443 0.00064328 0.000645079 0.000646844 0.000648578 0.000650285 0.000651967 0.000653627 0.000655266 0.000656887 0.00065849 0.000660077 0.000661651 0.00066321 0.000664757 0.000666293 0.000667818 0.000669333 0.000670839 0.000672335 0.000673824 0.000675305 0.000676779 0.000678246 0.000679706 0.00068116 0.000682609 0.000684052 0.00068549 0.000686923 0.000688352 0.000689776 0.000691195 0.000692611 0.000694023 0.000695431 0.000696836 0.000698237 0.000699635 0.00070103 0.000702422 0.000703811 0.000705197 0.000706581 0.000707962 0.00070934 0.000710717 0.00071209 0.000713462 0.000714831 0.000716199 0.000717564 0.000718927 0.000720289 0.000721648 0.000723006 0.000724362 0.000725717 0.00072707 0.000728421 0.00072977 0.000731118 0.000732465 0.00073381 0.000735154 0.000736497 0.000737838 0.000739178 0.000740517 0.000741855 0.000743191 0.000744527 0.000745861 0.000747195 0.000748527 0.000749859 0.000751189 0.000752519 0.000753848 0.000755176 0.000756504 0.00075783 0.000759156 0.000760482 0.000761806 0.000763131 0.000764454 0.000765778 0.0007671 0.000768423 0.000769745 0.000771067 0.000772388 0.00077371 0.000775031 0.000776352 0.000777672 0.000778993 0.000780314 0.000781635 0.000782956 0.000784277 0.000785598 0.00078692 0.000788242 0.000789564 0.000790886 0.000792209 0.000793533 0.000794856 0.000796181 0.000797506 0.000798832 0.000800158 0.000801486 0.000802814 0.000804143 0.000805473 0.000806804 0.000808135 0.000809468 0.000810803 0.000812138 0.000813475 0.000814813 0.000816152 0.000817493 0.000818835 0.000820179 0.000821524 0.000822871 0.000824219 0.00082557 0.000826922 0.000828276 0.000829632 0.00083099 0.00083235 0.000833712 0.000835076 +-0.000537008 -0.000479994 -0.000423604 -0.000367876 -0.00031285 -0.000258567 -0.000205071 -0.000152411 -0.000100638 -4.98061E-05 2.5601E-08 4.82384E-05 9.42684E-05 0.000138141 0.000179882 0.000219517 0.000257072 0.000292571 0.000326042 0.000357512 0.000387008 0.000414559 0.000440197 0.000463954 0.000485867 0.000505976 0.000524329 0.000540977 0.000555982 0.000569418 0.000581369 0.000591934 0.000601223 0.00060936 0.000616476 0.000622703 0.00062817 0.000633 0.0006373 0.000641163 0.000644669 0.000647882 0.000650854 0.000653628 0.000656238 0.00065871 0.000661066 0.000663325 0.000665499 0.0006676 0.000669639 0.000671622 0.000673558 0.00067545 0.000677304 0.000679124 0.000680913 0.000682674 0.000684411 0.000686124 0.000687817 0.000689491 0.000691147 0.000692787 0.000694412 0.000696023 0.000697621 0.000699208 0.000700784 0.000702349 0.000703904 0.000705451 0.000706988 0.000708518 0.000710041 0.000711556 0.000713065 0.000714567 0.000716063 0.000717554 0.000719039 0.000720519 0.000721994 0.000723464 0.00072493 0.000726392 0.00072785 0.000729304 0.000730754 0.0007322 0.000733644 0.000735083 0.00073652 0.000737954 0.000739385 0.000740812 0.000742238 0.00074366 0.00074508 0.000746498 0.000747913 0.000749326 0.000750737 0.000752145 0.000753552 0.000754956 0.000756358 0.000757759 0.000759158 0.000760555 0.00076195 0.000763343 0.000764735 0.000766125 0.000767514 0.000768901 0.000770287 0.000771671 0.000773054 0.000774436 0.000775816 0.000777195 0.000778573 0.000779949 0.000781325 0.000782699 0.000784073 0.000785445 0.000786817 0.000788187 0.000789557 0.000790926 0.000792294 0.000793661 0.000795027 0.000796393 0.000797758 0.000799123 0.000800487 0.000801851 0.000803214 0.000804576 0.000805938 0.0008073 0.000808662 0.000810023 0.000811384 0.000812745 0.000814106 0.000815467 0.000816828 0.000818189 0.00081955 0.000820911 0.000822272 0.000823633 0.000824995 0.000826357 0.00082772 0.000829082 0.000830446 0.00083181 0.000833174 0.000834539 0.000835905 0.000837271 0.000838639 0.000840007 0.000841376 0.000842746 0.000844117 0.00084549 0.000846863 0.000848237 0.000849613 0.00085099 0.000852369 0.000853748 0.00085513 0.000856512 0.000857897 0.000859283 0.000860671 0.00086206 0.000863451 0.000864845 0.00086624 0.000867637 0.000869036 0.000870437 0.000871841 +-0.000546446 -0.000488635 -0.000431421 -0.000374838 -0.000318925 -0.000263722 -0.000209272 -0.000155621 -0.000102818 -5.09165E-05 2.75812E-08 4.93765E-05 9.65456E-05 0.00014156 0.000184445 0.000225225 0.000263925 0.000300572 0.00033519 0.000367805 0.000398446 0.000427139 0.000453914 0.000478803 0.00050184 0.000523062 0.000542513 0.00056024 0.0005763 0.000590759 0.000603692 0.000615189 0.000625352 0.000634296 0.000642144 0.000649027 0.000655074 0.00066041 0.000665149 0.000669392 0.000673227 0.000676726 0.000679949 0.000682944 0.00068575 0.000688399 0.000690916 0.00069332 0.000695629 0.000697855 0.00070001 0.000702103 0.000704142 0.000706132 0.000708079 0.000709988 0.000711863 0.000713707 0.000715523 0.000717313 0.00071908 0.000720826 0.000722553 0.000724261 0.000725953 0.00072763 0.000729293 0.000730943 0.00073258 0.000734206 0.000735821 0.000737426 0.000739022 0.000740609 0.000742188 0.000743759 0.000745322 0.000746879 0.000748429 0.000749973 0.000751511 0.000753043 0.000754569 0.000756091 0.000757608 0.00075912 0.000760628 0.000762131 0.000763631 0.000765126 0.000766618 0.000768106 0.000769591 0.000771072 0.00077255 0.000774025 0.000775498 0.000776967 0.000778433 0.000779897 0.000781358 0.000782817 0.000784273 0.000785727 0.000787178 0.000788628 0.000790075 0.00079152 0.000792963 0.000794404 0.000795844 0.000797281 0.000798717 0.000800151 0.000801583 0.000803013 0.000804442 0.000805869 0.000807295 0.00080872 0.000810143 0.000811564 0.000812984 0.000814403 0.000815821 0.000817238 0.000818653 0.000820067 0.00082148 0.000822892 0.000824304 0.000825714 0.000827123 0.000828531 0.000829939 0.000831346 0.000832752 0.000834157 0.000835562 0.000836966 0.00083837 0.000839773 0.000841176 0.000842578 0.00084398 0.000845381 0.000846782 0.000848183 0.000849584 0.000850985 0.000852385 0.000853786 0.000855187 0.000856587 0.000857988 0.000859389 0.00086079 0.000862192 0.000863593 0.000864996 0.000866398 0.000867801 0.000869205 0.000870609 0.000872014 0.00087342 0.000874826 0.000876234 0.000877642 0.000879051 0.000880461 0.000881872 0.000883284 0.000884698 0.000886112 0.000887528 0.000888946 0.000890364 0.000891784 0.000893206 0.000894629 0.000896054 0.000897481 0.00089891 0.00090034 0.000901772 0.000903206 0.000904642 0.00090608 0.000907521 0.000908963 +-0.000555692 -0.000497101 -0.000439079 -0.000381658 -0.000324876 -0.000268772 -0.000213387 -0.000158765 -0.000104954 -5.2004E-05 2.96925E-08 5.04919E-05 9.87778E-05 0.000144912 0.00018892 0.000230825 0.000270653 0.000308428 0.000344176 0.000377921 0.000409691 0.000439511 0.000467411 0.00049342 0.000517571 0.000539899 0.000560443 0.000579249 0.000596366 0.000611854 0.000625783 0.000638232 0.000649296 0.000659079 0.000667699 0.000675279 0.000681948 0.000687832 0.00069305 0.000697709 0.000701905 0.000705718 0.000709215 0.000712451 0.000715471 0.000718311 0.000721 0.000723561 0.000726014 0.000728373 0.000730651 0.00073286 0.000735007 0.0007371 0.000739144 0.000741147 0.00074311 0.00074504 0.000746938 0.000748808 0.000750652 0.000752472 0.000754271 0.000756051 0.000757811 0.000759556 0.000761284 0.000762998 0.000764699 0.000766386 0.000768063 0.000769728 0.000771383 0.000773028 0.000774664 0.000776291 0.000777911 0.000779522 0.000781127 0.000782724 0.000784315 0.0007859 0.000787479 0.000789053 0.000790621 0.000792184 0.000793742 0.000795296 0.000796845 0.00079839 0.00079993 0.000801467 0.000803 0.00080453 0.000806056 0.000807578 0.000809097 0.000810614 0.000812127 0.000813637 0.000815144 0.000816649 0.000818151 0.00081965 0.000821147 0.000822641 0.000824134 0.000825624 0.000827111 0.000828597 0.00083008 0.000831562 0.000833041 0.000834519 0.000835994 0.000837468 0.00083894 0.000840411 0.00084188 0.000843347 0.000844812 0.000846277 0.000847739 0.0008492 0.00085066 0.000852119 0.000853576 0.000855032 0.000856487 0.000857941 0.000859393 0.000860845 0.000862295 0.000863745 0.000865194 0.000866641 0.000868088 0.000869535 0.00087098 0.000872425 0.000873869 0.000875312 0.000876755 0.000878198 0.00087964 0.000881081 0.000882522 0.000883963 0.000885404 0.000886844 0.000888285 0.000889725 0.000891165 0.000892605 0.000894046 0.000895486 0.000896926 0.000898367 0.000899808 0.00090125 0.000902691 0.000904134 0.000905576 0.00090702 0.000908463 0.000909908 0.000911353 0.000912799 0.000914246 0.000915694 0.000917143 0.000918593 0.000920044 0.000921496 0.00092295 0.000924404 0.00092586 0.000927318 0.000928777 0.000930237 0.000931699 0.000933163 0.000934628 0.000936095 0.000937564 0.000939035 0.000940508 0.000941983 0.00094346 0.000944939 0.00094642 +-0.000564751 -0.000505395 -0.00044658 -0.000388338 -0.000330705 -0.000273718 -0.000217417 -0.000161844 -0.000107045 -5.30688E-05 3.19424E-08 5.15847E-05 0.000100965 0.000148199 0.000193309 0.00023632 0.000277256 0.000316141 0.000353001 0.000387859 0.000420741 0.000451674 0.000480685 0.000507802 0.000533056 0.000556481 0.000578112 0.000597992 0.000616166 0.000632688 0.000647622 0.000661039 0.000673025 0.000683676 0.000693101 0.000701418 0.00070875 0.000715224 0.000720961 0.000726074 0.000730664 0.000734821 0.000738617 0.000742117 0.000745369 0.000748416 0.00075129 0.00075402 0.000756626 0.000759126 0.000761536 0.000763866 0.000766128 0.000768328 0.000770475 0.000772575 0.000774631 0.000776649 0.000778633 0.000780585 0.000782508 0.000784406 0.00078628 0.000788132 0.000789963 0.000791776 0.000793572 0.000795352 0.000797117 0.000798868 0.000800607 0.000802333 0.000804048 0.000805752 0.000807446 0.000809131 0.000810807 0.000812475 0.000814135 0.000815787 0.000817432 0.00081907 0.000820702 0.000822328 0.000823948 0.000825562 0.000827171 0.000828776 0.000830375 0.000831969 0.000833559 0.000835145 0.000836727 0.000838305 0.000839879 0.000841449 0.000843015 0.000844579 0.000846139 0.000847696 0.000849249 0.0008508 0.000852348 0.000853893 0.000855436 0.000856975 0.000858513 0.000860047 0.00086158 0.00086311 0.000864637 0.000866163 0.000867686 0.000869208 0.000870727 0.000872245 0.00087376 0.000875274 0.000876785 0.000878295 0.000879804 0.000881311 0.000882816 0.000884319 0.000885821 0.000887322 0.000888821 0.000890319 0.000891816 0.000893311 0.000894805 0.000896298 0.00089779 0.00089928 0.00090077 0.000902259 0.000903746 0.000905233 0.000906719 0.000908205 0.000909689 0.000911173 0.000912656 0.000914139 0.000915621 0.000917102 0.000918583 0.000920064 0.000921544 0.000923025 0.000924505 0.000925984 0.000927464 0.000928943 0.000930423 0.000931903 0.000933382 0.000934862 0.000936342 0.000937823 0.000939304 0.000940785 0.000942266 0.000943748 0.000945231 0.000946715 0.000948199 0.000949683 0.000951169 0.000952656 0.000954143 0.000955632 0.000957121 0.000958612 0.000960104 0.000961597 0.000963091 0.000964587 0.000966085 0.000967583 0.000969084 0.000970586 0.00097209 0.000973595 0.000975103 0.000976612 0.000978123 0.000979637 0.000981152 0.00098267 0.00098419 +-0.000573624 -0.000513519 -0.000453927 -0.000394881 -0.000336414 -0.000278562 -0.000221363 -0.000164858 -0.000109092 -5.41111E-05 3.43392E-08 5.26552E-05 0.000103109 0.00015142 0.000197612 0.000241708 0.000283733 0.00032371 0.000361664 0.000397618 0.000431598 0.000463628 0.000493735 0.000521947 0.000548293 0.000572804 0.000595515 0.000616463 0.000635691 0.000653249 0.000669194 0.000683591 0.000696516 0.000708059 0.000718319 0.000727406 0.000735441 0.000742545 0.000748841 0.000754446 0.000759466 0.000763997 0.000768121 0.000771906 0.000775411 0.000778682 0.000781758 0.000784668 0.000787438 0.000790089 0.000792638 0.000795098 0.00079748 0.000799794 0.000802048 0.000804249 0.000806402 0.000808513 0.000810585 0.000812623 0.000814628 0.000816605 0.000818556 0.000820483 0.000822387 0.000824271 0.000826136 0.000827983 0.000829814 0.00083163 0.000833432 0.000835221 0.000836997 0.000838761 0.000840515 0.000842258 0.000843991 0.000845716 0.000847431 0.000849139 0.000850839 0.000852531 0.000854217 0.000855895 0.000857568 0.000859234 0.000860895 0.00086255 0.000864199 0.000865844 0.000867484 0.000869119 0.00087075 0.000872376 0.000873999 0.000875617 0.000877231 0.000878842 0.000880449 0.000882053 0.000883653 0.000885251 0.000886845 0.000888436 0.000890024 0.000891609 0.000893191 0.000894771 0.000896348 0.000897923 0.000899495 0.000901065 0.000902633 0.000904198 0.000905761 0.000907322 0.000908881 0.000910437 0.000911992 0.000913545 0.000915096 0.000916646 0.000918193 0.000919739 0.000921284 0.000922826 0.000924368 0.000925907 0.000927445 0.000928982 0.000930518 0.000932052 0.000933585 0.000935117 0.000936647 0.000938177 0.000939705 0.000941233 0.00094276 0.000944285 0.00094581 0.000947334 0.000948858 0.00095038 0.000951902 0.000953424 0.000954945 0.000956465 0.000957985 0.000959505 0.000961024 0.000962543 0.000964062 0.000965581 0.0009671 0.000968619 0.000970138 0.000971657 0.000973176 0.000974695 0.000976215 0.000977735 0.000979255 0.000980776 0.000982297 0.000983819 0.000985342 0.000986865 0.000988389 0.000989914 0.00099144 0.000992967 0.000994495 0.000996024 0.000997554 0.000999085 0.00100062 0.00100215 0.00100369 0.00100522 0.00100676 0.0010083 0.00100985 0.00101139 0.00101294 0.00101448 0.00101603 0.00101758 0.00101914 0.00102069 0.00102225 +-0.000582315 -0.000521475 -0.000461123 -0.000401288 -0.000342003 -0.000283304 -0.000225226 -0.00016781 -0.000111096 -5.51313E-05 3.68911E-08 5.37036E-05 0.000105209 0.000154576 0.000201829 0.000246992 0.000290086 0.000331137 0.000370167 0.000407199 0.00044226 0.000475372 0.000506561 0.000535854 0.00056328 0.000588866 0.000612647 0.000634656 0.000654935 0.000673527 0.000690485 0.000705869 0.000719747 0.000732201 0.000743321 0.000753211 0.000761983 0.000769756 0.000776651 0.000782785 0.000788271 0.00079321 0.00079769 0.000801788 0.000805568 0.000809082 0.000812373 0.000815478 0.000818425 0.000821237 0.000823934 0.00082653 0.00082904 0.000831474 0.00083384 0.000836147 0.000838402 0.000840609 0.000842773 0.000844899 0.00084699 0.000849049 0.000851079 0.000853083 0.000855062 0.000857019 0.000858955 0.000860871 0.00086277 0.000864652 0.000866518 0.00086837 0.000870209 0.000872035 0.000873848 0.000875651 0.000877443 0.000879225 0.000880998 0.000882761 0.000884516 0.000886264 0.000888003 0.000889735 0.000891461 0.00089318 0.000894892 0.000896599 0.000898299 0.000899995 0.000901685 0.00090337 0.00090505 0.000906725 0.000908396 0.000910063 0.000911725 0.000913384 0.000915039 0.000916689 0.000918337 0.00091998 0.000921621 0.000923258 0.000924892 0.000926523 0.000928151 0.000929775 0.000931398 0.000933017 0.000934634 0.000936248 0.00093786 0.000939469 0.000941076 0.00094268 0.000944283 0.000945883 0.000947481 0.000949077 0.000950671 0.000952263 0.000953853 0.000955441 0.000957028 0.000958613 0.000960196 0.000961777 0.000963357 0.000964935 0.000966512 0.000968088 0.000969662 0.000971235 0.000972807 0.000974377 0.000975946 0.000977514 0.000979081 0.000980648 0.000982213 0.000983777 0.00098534 0.000986903 0.000988465 0.000990026 0.000991587 0.000993147 0.000994707 0.000996266 0.000997825 0.000999383 0.00100094 0.0010025 0.00100406 0.00100562 0.00100717 0.00100873 0.00101029 0.00101185 0.0010134 0.00101496 0.00101652 0.00101808 0.00101964 0.0010212 0.00102276 0.00102432 0.00102589 0.00102745 0.00102901 0.00103058 0.00103215 0.00103371 0.00103528 0.00103685 0.00103842 0.00103999 0.00104157 0.00104314 0.00104472 0.0010463 0.00104788 0.00104946 0.00105104 0.00105263 0.00105422 0.00105581 0.0010574 0.00105899 0.00106059 +-0.000590825 -0.000529266 -0.000468168 -0.000407561 -0.000347476 -0.000287947 -0.000229008 -0.000170698 -0.000113058 -5.61295E-05 3.96072E-08 5.47302E-05 0.000107265 0.000157669 0.000205963 0.000252171 0.000296316 0.000338421 0.000378509 0.000416604 0.000452728 0.000486906 0.000519162 0.000549523 0.000578014 0.000604664 0.000629505 0.000652567 0.00067389 0.000693514 0.000711486 0.000727861 0.000742702 0.000756081 0.000768083 0.000778802 0.000788343 0.000796821 0.000804352 0.000811055 0.000817043 0.000822424 0.000827291 0.000831728 0.000835806 0.000839584 0.00084311 0.000846424 0.00084956 0.000852545 0.000855399 0.00085814 0.000860785 0.000863345 0.000865829 0.000868248 0.000870608 0.000872915 0.000875176 0.000877393 0.000879573 0.000881717 0.000883829 0.000885912 0.000887968 0.00089 0.000892008 0.000893996 0.000895964 0.000897913 0.000899846 0.000901763 0.000903665 0.000905553 0.000907429 0.000909292 0.000911143 0.000912983 0.000914814 0.000916634 0.000918446 0.000920248 0.000922043 0.000923829 0.000925608 0.00092738 0.000929145 0.000930903 0.000932656 0.000934402 0.000936143 0.000937878 0.000939608 0.000941333 0.000943053 0.000944768 0.000946479 0.000948185 0.000949888 0.000951586 0.00095328 0.000954971 0.000956658 0.000958341 0.000960021 0.000961698 0.000963371 0.000965042 0.000966709 0.000968373 0.000970035 0.000971693 0.000973349 0.000975003 0.000976654 0.000978302 0.000979948 0.000981591 0.000983232 0.000984872 0.000986508 0.000988143 0.000989776 0.000991406 0.000993035 0.000994662 0.000996287 0.000997911 0.000999532 0.00100115 0.00100277 0.00100439 0.001006 0.00100762 0.00100923 0.00101084 0.00101245 0.00101406 0.00101567 0.00101727 0.00101888 0.00102048 0.00102209 0.00102369 0.00102529 0.00102689 0.00102849 0.00103009 0.00103169 0.00103329 0.00103489 0.00103649 0.00103808 0.00103968 0.00104128 0.00104287 0.00104447 0.00104607 0.00104766 0.00104926 0.00105086 0.00105245 0.00105405 0.00105565 0.00105725 0.00105885 0.00106044 0.00106204 0.00106364 0.00106525 0.00106685 0.00106845 0.00107006 0.00107166 0.00107327 0.00107487 0.00107648 0.00107809 0.0010797 0.00108132 0.00108293 0.00108455 0.00108617 0.00108779 0.00108941 0.00109103 0.00109266 0.00109428 0.00109591 0.00109754 0.00109918 +-0.000599158 -0.000536893 -0.000475065 -0.000413702 -0.000352833 -0.000292491 -0.000232709 -0.000173525 -0.000114977 -5.71062E-05 4.24968E-08 5.57354E-05 0.000109279 0.000160698 0.000210013 0.000257247 0.000302424 0.000345565 0.000386693 0.000425832 0.000463003 0.000498231 0.000531539 0.000562952 0.000592496 0.000620198 0.000646087 0.000670194 0.000692553 0.000713203 0.000732188 0.000749556 0.000765365 0.000779682 0.000792582 0.000804153 0.000814492 0.000823706 0.000831909 0.000839217 0.000845745 0.000851602 0.000856889 0.000861695 0.000866096 0.000870159 0.000873938 0.000877479 0.000880819 0.000883987 0.000887009 0.000889905 0.000892692 0.000895385 0.000897994 0.00090053 0.000903 0.000905413 0.000907773 0.000910086 0.000912357 0.000914589 0.000916786 0.000918951 0.000921086 0.000923195 0.000925278 0.000927338 0.000929377 0.000931396 0.000933397 0.00093538 0.000937347 0.000939299 0.000941237 0.000943161 0.000945073 0.000946973 0.000948862 0.00095074 0.000952608 0.000954467 0.000956317 0.000958158 0.000959992 0.000961817 0.000963635 0.000965446 0.000967251 0.000969048 0.00097084 0.000972626 0.000974406 0.000976181 0.00097795 0.000979714 0.000981474 0.000983229 0.000984979 0.000986725 0.000988467 0.000990205 0.000991938 0.000993668 0.000995394 0.000997117 0.000998836 0.00100055 0.00100226 0.00100397 0.00100568 0.00100738 0.00100908 0.00101078 0.00101248 0.00101417 0.00101586 0.00101755 0.00101923 0.00102091 0.00102259 0.00102427 0.00102594 0.00102762 0.00102929 0.00103096 0.00103262 0.00103429 0.00103595 0.00103761 0.00103927 0.00104093 0.00104259 0.00104424 0.0010459 0.00104755 0.0010492 0.00105085 0.0010525 0.00105414 0.00105579 0.00105743 0.00105908 0.00106072 0.00106236 0.001064 0.00106564 0.00106728 0.00106892 0.00107056 0.00107219 0.00107383 0.00107547 0.0010771 0.00107874 0.00108037 0.00108201 0.00108365 0.00108528 0.00108692 0.00108855 0.00109019 0.00109182 0.00109346 0.00109509 0.00109673 0.00109837 0.00110001 0.00110164 0.00110328 0.00110492 0.00110656 0.00110821 0.00110985 0.00111149 0.00111314 0.00111479 0.00111643 0.00111808 0.00111973 0.00112138 0.00112304 0.00112469 0.00112635 0.00112801 0.00112967 0.00113133 0.001133 0.00113466 0.00113633 0.00113801 +-0.000607316 -0.000544361 -0.000481817 -0.000419713 -0.000358076 -0.000296938 -0.000236332 -0.000176292 -0.000116855 -5.80616E-05 4.55699E-08 5.67193E-05 0.000111251 0.000163664 0.00021398 0.000262221 0.00030841 0.000352569 0.00039472 0.000434885 0.000473087 0.000509348 0.000543693 0.000576144 0.000606727 0.000635467 0.000662393 0.000687533 0.000710921 0.000732591 0.000752584 0.000770945 0.000787726 0.000802988 0.0008168 0.000829241 0.000840402 0.000850382 0.00085929 0.000867239 0.000874342 0.000880711 0.00088645 0.000891654 0.000896406 0.000900779 0.000904832 0.000908616 0.000912174 0.00091554 0.000918741 0.000921802 0.00092474 0.000927573 0.000930313 0.000932972 0.000935558 0.00093808 0.000940545 0.000942957 0.000945323 0.000947646 0.000949931 0.000952181 0.000954398 0.000956585 0.000958746 0.000960881 0.000962992 0.000965082 0.000967152 0.000969203 0.000971236 0.000973253 0.000975255 0.000977242 0.000979215 0.000981176 0.000983124 0.000985061 0.000986987 0.000988903 0.000990809 0.000992706 0.000994594 0.000996474 0.000998346 0.00100021 0.00100207 0.00100392 0.00100576 0.0010076 0.00100943 0.00101125 0.00101307 0.00101489 0.00101669 0.0010185 0.0010203 0.00102209 0.00102388 0.00102566 0.00102744 0.00102922 0.00103099 0.00103276 0.00103453 0.00103629 0.00103805 0.0010398 0.00104155 0.0010433 0.00104505 0.00104679 0.00104853 0.00105026 0.001052 0.00105373 0.00105546 0.00105718 0.0010589 0.00106062 0.00106234 0.00106406 0.00106577 0.00106748 0.00106919 0.0010709 0.0010726 0.00107431 0.00107601 0.00107771 0.0010794 0.0010811 0.00108279 0.00108449 0.00108618 0.00108787 0.00108956 0.00109124 0.00109293 0.00109461 0.0010963 0.00109798 0.00109966 0.00110134 0.00110302 0.0011047 0.00110638 0.00110805 0.00110973 0.00111141 0.00111308 0.00111476 0.00111643 0.0011181 0.00111978 0.00112145 0.00112313 0.0011248 0.00112647 0.00112815 0.00112982 0.00113149 0.00113317 0.00113484 0.00113652 0.00113819 0.00113987 0.00114155 0.00114322 0.0011449 0.00114658 0.00114826 0.00114994 0.00115163 0.00115331 0.001155 0.00115668 0.00115837 0.00116006 0.00116175 0.00116344 0.00116514 0.00116683 0.00116853 0.00117023 0.00117193 0.00117364 0.00117535 0.00117705 +-0.000615302 -0.00055167 -0.000488426 -0.000425596 -0.000363207 -0.00030129 -0.000239876 -0.000178998 -0.000118692 -5.89959E-05 4.88367E-08 5.76824E-05 0.000113182 0.000166569 0.000217866 0.000267095 0.000314278 0.000359436 0.000402591 0.000443765 0.00048298 0.000520259 0.000555624 0.000589098 0.000620706 0.000650471 0.000678421 0.000704584 0.000728991 0.000751673 0.000772669 0.000792021 0.000809775 0.000825987 0.00084072 0.000854047 0.00086605 0.000876822 0.000886465 0.000895087 0.000902801 0.000909716 0.000915942 0.000921575 0.000926706 0.000931413 0.000935762 0.000939809 0.000943602 0.000947179 0.000950572 0.000953808 0.000956907 0.000959889 0.000962767 0.000965555 0.000968262 0.000970899 0.000973472 0.000975988 0.000978453 0.000980871 0.000983246 0.000985583 0.000987885 0.000990154 0.000992393 0.000994605 0.000996792 0.000998954 0.0010011 0.00100322 0.00100532 0.0010074 0.00100947 0.00101152 0.00101355 0.00101557 0.00101758 0.00101958 0.00102157 0.00102354 0.0010255 0.00102746 0.0010294 0.00103133 0.00103326 0.00103518 0.00103709 0.00103899 0.00104089 0.00104277 0.00104466 0.00104653 0.0010484 0.00105026 0.00105212 0.00105397 0.00105582 0.00105766 0.0010595 0.00106133 0.00106316 0.00106499 0.0010668 0.00106862 0.00107043 0.00107224 0.00107404 0.00107584 0.00107764 0.00107943 0.00108122 0.00108301 0.00108479 0.00108657 0.00108835 0.00109012 0.00109189 0.00109366 0.00109543 0.00109719 0.00109895 0.00110071 0.00110247 0.00110422 0.00110597 0.00110772 0.00110947 0.00111121 0.00111295 0.00111469 0.00111643 0.00111817 0.0011199 0.00112164 0.00112337 0.0011251 0.00112683 0.00112856 0.00113028 0.00113201 0.00113373 0.00113545 0.00113717 0.00113889 0.00114061 0.00114233 0.00114405 0.00114576 0.00114748 0.00114919 0.00115091 0.00115262 0.00115433 0.00115604 0.00115776 0.00115947 0.00116118 0.00116289 0.0011646 0.00116632 0.00116803 0.00116974 0.00117145 0.00117316 0.00117488 0.00117659 0.0011783 0.00118002 0.00118173 0.00118345 0.00118517 0.00118689 0.0011886 0.00119032 0.00119205 0.00119377 0.00119549 0.00119722 0.00119894 0.00120067 0.0012024 0.00120413 0.00120587 0.0012076 0.00120934 0.00121108 0.00121282 0.00121456 0.00121631 +-0.000623119 -0.000558824 -0.000494894 -0.000431353 -0.000368228 -0.000305549 -0.000243344 -0.000181646 -0.000120489 -5.99097E-05 5.23083E-08 5.8625E-05 0.000115071 0.000169413 0.000221672 0.000271869 0.000320026 0.000366165 0.000410307 0.000452473 0.000492686 0.000530965 0.000567335 0.000601817 0.000634434 0.000665212 0.000694174 0.000721348 0.000746762 0.000770448 0.000792441 0.000812778 0.000831504 0.000848669 0.000864331 0.000878554 0.000891416 0.000903002 0.000913406 0.000922733 0.000931089 0.000938586 0.00094533 0.000951425 0.000956965 0.000962032 0.0009667 0.000971031 0.000975077 0.000978881 0.000982479 0.000985901 0.000989171 0.00099231 0.000995335 0.000998258 0.00100109 0.00100385 0.00100654 0.00100916 0.00101173 0.00101424 0.00101671 0.00101914 0.00102153 0.00102388 0.0010262 0.0010285 0.00103076 0.001033 0.00103521 0.0010374 0.00103957 0.00104172 0.00104385 0.00104597 0.00104807 0.00105015 0.00105222 0.00105428 0.00105633 0.00105836 0.00106038 0.00106239 0.00106439 0.00106638 0.00106836 0.00107033 0.0010723 0.00107425 0.0010762 0.00107814 0.00108007 0.001082 0.00108392 0.00108583 0.00108774 0.00108964 0.00109154 0.00109343 0.00109532 0.0010972 0.00109907 0.00110094 0.00110281 0.00110467 0.00110653 0.00110838 0.00111023 0.00111208 0.00111392 0.00111576 0.00111759 0.00111942 0.00112125 0.00112307 0.0011249 0.00112671 0.00112853 0.00113034 0.00113215 0.00113396 0.00113576 0.00113756 0.00113936 0.00114115 0.00114295 0.00114474 0.00114653 0.00114831 0.0011501 0.00115188 0.00115366 0.00115544 0.00115721 0.00115899 0.00116076 0.00116253 0.0011643 0.00116607 0.00116783 0.0011696 0.00117136 0.00117312 0.00117488 0.00117664 0.0011784 0.00118016 0.00118191 0.00118367 0.00118542 0.00118717 0.00118893 0.00119068 0.00119243 0.00119418 0.00119593 0.00119768 0.00119943 0.00120118 0.00120293 0.00120468 0.00120643 0.00120818 0.00120993 0.00121168 0.00121343 0.00121518 0.00121693 0.00121869 0.00122044 0.00122219 0.00122395 0.0012257 0.00122746 0.00122921 0.00123097 0.00123273 0.00123449 0.00123625 0.00123802 0.00123978 0.00124155 0.00124332 0.00124509 0.00124686 0.00124863 0.00125041 0.00125219 0.00125397 0.00125575 +-0.000630769 -0.000565825 -0.000501223 -0.000436986 -0.000373141 -0.000309715 -0.000246736 -0.000184235 -0.000122246 -6.08031E-05 5.59963E-08 5.95474E-05 0.000116921 0.000172197 0.000225398 0.000276545 0.000325659 0.000372761 0.000417871 0.000461012 0.000502204 0.000541468 0.000578827 0.000614301 0.000647914 0.000679689 0.00070965 0.000737823 0.000764235 0.000788915 0.000811896 0.000833214 0.000852909 0.000871027 0.00088762 0.000902749 0.000916483 0.0009289 0.000940089 0.000950147 0.000959178 0.000967288 0.000974585 0.000981174 0.000987152 0.000992608 0.000997621 0.00100226 0.00100657 0.00101062 0.00101444 0.00101806 0.00102151 0.00102482 0.001028 0.00103106 0.00103403 0.00103692 0.00103972 0.00104246 0.00104513 0.00104775 0.00105032 0.00105284 0.00105532 0.00105776 0.00106016 0.00106253 0.00106488 0.00106719 0.00106948 0.00107174 0.00107398 0.0010762 0.0010784 0.00108059 0.00108275 0.0010849 0.00108703 0.00108915 0.00109126 0.00109335 0.00109543 0.0010975 0.00109955 0.0011016 0.00110364 0.00110566 0.00110768 0.00110969 0.00111169 0.00111368 0.00111567 0.00111765 0.00111962 0.00112158 0.00112354 0.00112549 0.00112744 0.00112938 0.00113131 0.00113324 0.00113516 0.00113708 0.001139 0.0011409 0.00114281 0.00114471 0.0011466 0.00114849 0.00115038 0.00115226 0.00115414 0.00115602 0.00115789 0.00115976 0.00116163 0.00116349 0.00116535 0.0011672 0.00116905 0.0011709 0.00117275 0.00117459 0.00117643 0.00117827 0.00118011 0.00118194 0.00118377 0.0011856 0.00118742 0.00118925 0.00119107 0.00119289 0.0011947 0.00119652 0.00119833 0.00120014 0.00120195 0.00120376 0.00120556 0.00120737 0.00120917 0.00121097 0.00121277 0.00121457 0.00121637 0.00121816 0.00121996 0.00122175 0.00122355 0.00122534 0.00122713 0.00122892 0.00123071 0.0012325 0.00123429 0.00123608 0.00123787 0.00123965 0.00124144 0.00124323 0.00124502 0.0012468 0.00124859 0.00125038 0.00125217 0.00125395 0.00125574 0.00125753 0.00125932 0.00126111 0.0012629 0.0012647 0.00126649 0.00126828 0.00127008 0.00127187 0.00127367 0.00127547 0.00127727 0.00127907 0.00128088 0.00128268 0.00128449 0.0012863 0.00128811 0.00128992 0.00129173 0.00129355 0.00129537 +-0.000638256 -0.000572676 -0.000507416 -0.000442498 -0.000377947 -0.00031379 -0.000250054 -0.000186768 -0.000123965 -6.16765E-05 5.99127E-08 6.045E-05 0.00011873 0.000174922 0.000229047 0.000281124 0.000331176 0.000379223 0.000425285 0.000469383 0.000511538 0.000551771 0.000590102 0.000626554 0.000661147 0.000693906 0.000724852 0.000754011 0.000781409 0.000807073 0.000831034 0.000853326 0.000873985 0.000893054 0.00091058 0.00092662 0.000941236 0.0009545 0.000966494 0.000977307 0.00098704 0.000995794 0.00100368 0.00101079 0.00101724 0.00102311 0.00102849 0.00103346 0.00103807 0.00104238 0.00104643 0.00105026 0.00105391 0.00105739 0.00106073 0.00106395 0.00106706 0.00107008 0.00107301 0.00107586 0.00107865 0.00108137 0.00108404 0.00108666 0.00108923 0.00109176 0.00109425 0.00109671 0.00109913 0.00110152 0.00110389 0.00110622 0.00110854 0.00111083 0.0011131 0.00111535 0.00111758 0.00111979 0.00112199 0.00112417 0.00112634 0.00112849 0.00113063 0.00113276 0.00113487 0.00113698 0.00113907 0.00114115 0.00114322 0.00114529 0.00114734 0.00114939 0.00115143 0.00115346 0.00115548 0.00115749 0.0011595 0.0011615 0.0011635 0.00116549 0.00116747 0.00116945 0.00117142 0.00117339 0.00117535 0.0011773 0.00117925 0.0011812 0.00118314 0.00118508 0.00118701 0.00118894 0.00119086 0.00119278 0.0011947 0.00119661 0.00119852 0.00120043 0.00120233 0.00120423 0.00120613 0.00120802 0.00120991 0.00121179 0.00121368 0.00121556 0.00121743 0.00121931 0.00122118 0.00122305 0.00122492 0.00122678 0.00122864 0.0012305 0.00123236 0.00123422 0.00123607 0.00123792 0.00123977 0.00124162 0.00124346 0.00124531 0.00124715 0.00124899 0.00125083 0.00125267 0.00125451 0.00125634 0.00125818 0.00126001 0.00126184 0.00126367 0.0012655 0.00126733 0.00126916 0.00127099 0.00127281 0.00127464 0.00127647 0.00127829 0.00128012 0.00128194 0.00128377 0.00128559 0.00128742 0.00128924 0.00129107 0.00129289 0.00129472 0.00129654 0.00129837 0.0013002 0.00130203 0.00130386 0.00130569 0.00130752 0.00130935 0.00131118 0.00131301 0.00131485 0.00131669 0.00131853 0.00132036 0.00132221 0.00132405 0.00132589 0.00132774 0.00132959 0.00133144 0.00133329 0.00133515 +-0.000645582 -0.000579379 -0.000513474 -0.00044789 -0.000382649 -0.000317776 -0.000253299 -0.000189245 -0.000125645 -6.25302E-05 6.40703E-08 6.13331E-05 0.000120501 0.000177589 0.000232618 0.000285608 0.00033658 0.000385554 0.00043255 0.000477588 0.000520689 0.000561874 0.000601163 0.000638576 0.000674136 0.000707863 0.000739782 0.000769914 0.000798286 0.000824923 0.000849854 0.000873112 0.000894729 0.000914745 0.000933205 0.000950159 0.000965663 0.000979786 0.0009926 0.00100419 0.00101465 0.00102408 0.00103257 0.00104025 0.00104719 0.00105351 0.00105929 0.00106461 0.00106954 0.00107413 0.00107843 0.00108249 0.00108634 0.00109001 0.00109353 0.00109691 0.00110016 0.00110332 0.00110638 0.00110935 0.00111226 0.00111509 0.00111786 0.00112058 0.00112325 0.00112587 0.00112845 0.001131 0.0011335 0.00113598 0.00113842 0.00114083 0.00114322 0.00114558 0.00114793 0.00115024 0.00115254 0.00115482 0.00115708 0.00115933 0.00116156 0.00116377 0.00116597 0.00116816 0.00117033 0.00117249 0.00117464 0.00117678 0.00117891 0.00118103 0.00118314 0.00118524 0.00118733 0.00118941 0.00119149 0.00119355 0.00119561 0.00119766 0.00119971 0.00120175 0.00120378 0.00120581 0.00120783 0.00120984 0.00121185 0.00121385 0.00121585 0.00121784 0.00121983 0.00122182 0.00122379 0.00122577 0.00122774 0.0012297 0.00123166 0.00123362 0.00123558 0.00123753 0.00123947 0.00124141 0.00124335 0.00124529 0.00124722 0.00124915 0.00125107 0.001253 0.00125492 0.00125683 0.00125875 0.00126066 0.00126257 0.00126447 0.00126638 0.00126828 0.00127018 0.00127207 0.00127397 0.00127586 0.00127775 0.00127964 0.00128152 0.00128341 0.00128529 0.00128717 0.00128905 0.00129092 0.0012928 0.00129467 0.00129655 0.00129842 0.00130029 0.00130216 0.00130403 0.00130589 0.00130776 0.00130963 0.00131149 0.00131336 0.00131522 0.00131708 0.00131895 0.00132081 0.00132267 0.00132453 0.0013264 0.00132826 0.00133012 0.00133198 0.00133385 0.00133571 0.00133757 0.00133944 0.0013413 0.00134317 0.00134503 0.0013469 0.00134877 0.00135064 0.00135251 0.00135438 0.00135625 0.00135813 0.00136 0.00136188 0.00136376 0.00136564 0.00136753 0.00136941 0.0013713 0.00137319 0.00137508 +-0.000652749 -0.000585937 -0.000519401 -0.000453164 -0.000387247 -0.000321675 -0.000256472 -0.000191667 -0.000127287 -6.33646E-05 6.84826E-08 6.2197E-05 0.000122234 0.000180199 0.000236114 0.000289998 0.000341872 0.000391755 0.000439668 0.00048563 0.000529661 0.000571781 0.000612011 0.000650371 0.000686882 0.000721564 0.00075444 0.000785533 0.000814866 0.000842465 0.000868357 0.000892571 0.000915139 0.000936099 0.000955489 0.000973357 0.000989756 0.00100474 0.00101839 0.00103078 0.00104199 0.00105211 0.00106125 0.00106951 0.00107699 0.00108379 0.00108999 0.00109569 0.00110095 0.00110584 0.00111042 0.00111472 0.00111879 0.00112266 0.00112636 0.0011299 0.00113332 0.00113662 0.00113981 0.00114292 0.00114594 0.00114889 0.00115178 0.0011546 0.00115737 0.00116009 0.00116276 0.00116539 0.00116798 0.00117054 0.00117306 0.00117555 0.00117802 0.00118046 0.00118287 0.00118526 0.00118763 0.00118997 0.0011923 0.00119461 0.0011969 0.00119918 0.00120144 0.00120369 0.00120592 0.00120814 0.00121035 0.00121255 0.00121473 0.00121691 0.00121907 0.00122122 0.00122337 0.0012255 0.00122763 0.00122975 0.00123186 0.00123396 0.00123606 0.00123815 0.00124023 0.0012423 0.00124437 0.00124644 0.00124849 0.00125054 0.00125259 0.00125463 0.00125666 0.00125869 0.00126072 0.00126274 0.00126475 0.00126676 0.00126877 0.00127077 0.00127277 0.00127476 0.00127675 0.00127874 0.00128072 0.0012827 0.00128468 0.00128665 0.00128862 0.00129058 0.00129254 0.0012945 0.00129646 0.00129841 0.00130036 0.00130231 0.00130425 0.00130619 0.00130813 0.00131007 0.001312 0.00131394 0.00131587 0.00131779 0.00131972 0.00132164 0.00132357 0.00132549 0.0013274 0.00132932 0.00133124 0.00133315 0.00133506 0.00133697 0.00133888 0.00134079 0.00134269 0.0013446 0.00134651 0.00134841 0.00135031 0.00135221 0.00135412 0.00135602 0.00135792 0.00135982 0.00136172 0.00136362 0.00136552 0.00136742 0.00136931 0.00137121 0.00137311 0.00137501 0.00137691 0.00137882 0.00138072 0.00138262 0.00138452 0.00138642 0.00138833 0.00139024 0.00139214 0.00139405 0.00139596 0.00139787 0.00139978 0.0014017 0.00140361 0.00140553 0.00140745 0.00140937 0.00141129 0.00141322 0.00141514 +-0.00065976 -0.000592351 -0.000525199 -0.000458322 -0.000391744 -0.000325487 -0.000259575 -0.000194035 -0.000128893 -6.418E-05 7.31636E-08 6.30422E-05 0.000123929 0.000182753 0.000239536 0.000294296 0.000347054 0.000397829 0.000446642 0.00049351 0.000538454 0.000581494 0.00062265 0.000661941 0.000699387 0.00073501 0.00076883 0.00080087 0.000831152 0.000859701 0.000886543 0.000911704 0.000935216 0.000957112 0.000977429 0.000996211 0.00101351 0.00102937 0.00104386 0.00105705 0.00106903 0.00107988 0.00108969 0.00109857 0.00110661 0.00111391 0.00112056 0.00112667 0.00113229 0.0011375 0.00114236 0.00114693 0.00115123 0.00115531 0.00115921 0.00116293 0.00116651 0.00116996 0.0011733 0.00117654 0.00117969 0.00118276 0.00118576 0.00118869 0.00119156 0.00119438 0.00119715 0.00119987 0.00120255 0.00120519 0.0012078 0.00121037 0.00121292 0.00121543 0.00121792 0.00122038 0.00122282 0.00122523 0.00122763 0.00123 0.00123236 0.0012347 0.00123703 0.00123934 0.00124163 0.00124391 0.00124618 0.00124843 0.00125067 0.0012529 0.00125512 0.00125733 0.00125953 0.00126172 0.0012639 0.00126607 0.00126823 0.00127038 0.00127253 0.00127467 0.0012768 0.00127893 0.00128104 0.00128316 0.00128526 0.00128736 0.00128945 0.00129154 0.00129362 0.0012957 0.00129777 0.00129983 0.0013019 0.00130395 0.001306 0.00130805 0.00131009 0.00131213 0.00131416 0.00131619 0.00131822 0.00132024 0.00132226 0.00132428 0.00132629 0.00132829 0.0013303 0.0013323 0.0013343 0.00133629 0.00133828 0.00134027 0.00134226 0.00134424 0.00134622 0.0013482 0.00135017 0.00135215 0.00135412 0.00135608 0.00135805 0.00136001 0.00136197 0.00136393 0.00136589 0.00136785 0.0013698 0.00137175 0.0013737 0.00137565 0.0013776 0.00137955 0.00138149 0.00138344 0.00138538 0.00138732 0.00138926 0.0013912 0.00139314 0.00139508 0.00139702 0.00139895 0.00140089 0.00140283 0.00140476 0.0014067 0.00140864 0.00141057 0.00141251 0.00141445 0.00141638 0.00141832 0.00142026 0.0014222 0.00142414 0.00142608 0.00142802 0.00142996 0.0014319 0.00143384 0.00143579 0.00143774 0.00143968 0.00144163 0.00144358 0.00144554 0.00144749 0.00144945 0.00145141 0.00145337 0.00145533 +-0.000666619 -0.000598626 -0.000530869 -0.000463367 -0.000396142 -0.000329214 -0.000262609 -0.000196349 -0.000130463 -6.49767E-05 7.81282E-08 6.38689E-05 0.000125587 0.000185252 0.000242885 0.000298503 0.000352128 0.000403778 0.000453473 0.000501231 0.000547073 0.000591016 0.000633082 0.000673288 0.000711656 0.000748204 0.000782955 0.000815928 0.000847146 0.000876633 0.000904413 0.000930511 0.000954958 0.000977783 0.000999023 0.00101872 0.00103691 0.00105364 0.00106899 0.001083 0.00109577 0.00110735 0.00111786 0.00112738 0.00113601 0.00114384 0.00115098 0.00115752 0.00116352 0.00116908 0.00117425 0.00117909 0.00118365 0.00118796 0.00119206 0.00119597 0.00119972 0.00120334 0.00120683 0.00121021 0.00121349 0.00121668 0.0012198 0.00122284 0.00122582 0.00122874 0.00123161 0.00123443 0.0012372 0.00123993 0.00124262 0.00124528 0.0012479 0.00125049 0.00125305 0.00125559 0.0012581 0.00126059 0.00126305 0.0012655 0.00126792 0.00127032 0.00127271 0.00127508 0.00127744 0.00127978 0.0012821 0.00128442 0.00128672 0.001289 0.00129128 0.00129354 0.0012958 0.00129804 0.00130027 0.0013025 0.00130471 0.00130692 0.00130912 0.00131131 0.00131349 0.00131566 0.00131783 0.00131999 0.00132214 0.00132429 0.00132643 0.00132857 0.00133069 0.00133282 0.00133494 0.00133705 0.00133915 0.00134126 0.00134335 0.00134544 0.00134753 0.00134961 0.00135169 0.00135377 0.00135584 0.0013579 0.00135996 0.00136202 0.00136408 0.00136613 0.00136817 0.00137022 0.00137226 0.00137429 0.00137632 0.00137835 0.00138038 0.00138241 0.00138443 0.00138645 0.00138846 0.00139047 0.00139248 0.00139449 0.0013965 0.0013985 0.0014005 0.0014025 0.0014045 0.00140649 0.00140849 0.00141048 0.00141247 0.00141445 0.00141644 0.00141842 0.00142041 0.00142239 0.00142437 0.00142635 0.00142833 0.00143031 0.00143228 0.00143426 0.00143623 0.00143821 0.00144018 0.00144216 0.00144413 0.0014461 0.00144808 0.00145005 0.00145202 0.00145399 0.00145597 0.00145794 0.00145992 0.00146189 0.00146387 0.00146584 0.00146782 0.0014698 0.00147177 0.00147375 0.00147573 0.00147772 0.0014797 0.00148169 0.00148367 0.00148566 0.00148765 0.00148964 0.00149164 0.00149363 0.00149563 +-0.000673327 -0.000604762 -0.000536413 -0.0004683 -0.000400441 -0.000332859 -0.000265574 -0.000198612 -0.000131996 -6.57549E-05 8.33921E-08 6.46776E-05 0.000127209 0.000187697 0.000246161 0.000302621 0.000357095 0.000409603 0.000460164 0.000508796 0.000555518 0.000600349 0.000643309 0.000684416 0.000723689 0.000761149 0.000796816 0.000830709 0.000862851 0.000893263 0.000921969 0.000948995 0.000974366 0.000998113 0.00102027 0.00104087 0.00105995 0.00107757 0.00109377 0.00110862 0.00112218 0.00113452 0.00114575 0.00115593 0.00116517 0.00117357 0.00118122 0.00118821 0.00119463 0.00120056 0.00120606 0.0012112 0.00121602 0.00122057 0.00122489 0.001229 0.00123294 0.00123672 0.00124037 0.0012439 0.00124732 0.00125064 0.00125388 0.00125704 0.00126014 0.00126316 0.00126613 0.00126905 0.00127191 0.00127473 0.00127751 0.00128025 0.00128296 0.00128563 0.00128827 0.00129088 0.00129347 0.00129602 0.00129856 0.00130107 0.00130356 0.00130603 0.00130849 0.00131092 0.00131334 0.00131574 0.00131813 0.0013205 0.00132286 0.0013252 0.00132753 0.00132985 0.00133216 0.00133446 0.00133675 0.00133903 0.00134129 0.00134355 0.0013458 0.00134804 0.00135027 0.0013525 0.00135472 0.00135693 0.00135913 0.00136132 0.00136351 0.0013657 0.00136787 0.00137004 0.00137221 0.00137437 0.00137652 0.00137867 0.00138081 0.00138294 0.00138508 0.0013872 0.00138933 0.00139145 0.00139356 0.00139567 0.00139777 0.00139987 0.00140197 0.00140406 0.00140615 0.00140824 0.00141032 0.0014124 0.00141447 0.00141654 0.00141861 0.00142068 0.00142274 0.0014248 0.00142686 0.00142891 0.00143096 0.00143301 0.00143505 0.0014371 0.00143914 0.00144117 0.00144321 0.00144524 0.00144728 0.00144931 0.00145133 0.00145336 0.00145538 0.00145741 0.00145943 0.00146145 0.00146347 0.00146549 0.0014675 0.00146952 0.00147153 0.00147354 0.00147556 0.00147757 0.00147958 0.00148159 0.0014836 0.00148561 0.00148762 0.00148963 0.00149164 0.00149365 0.00149566 0.00149767 0.00149968 0.00150169 0.0015037 0.00150571 0.00150772 0.00150974 0.00151175 0.00151377 0.00151578 0.0015178 0.00151982 0.00152184 0.00152386 0.00152589 0.00152791 0.00152994 0.00153197 0.001534 0.00153603 +-0.000679887 -0.000610763 -0.000541835 -0.000473123 -0.000404645 -0.000336421 -0.000268473 -0.000200823 -0.000133495 -6.65152E-05 8.89716E-08 6.54686E-05 0.000128795 0.000190089 0.000249367 0.000306651 0.000361958 0.000415307 0.000466717 0.000516206 0.000563792 0.000609496 0.000653334 0.000695327 0.000735491 0.000773848 0.000810416 0.000845216 0.000878268 0.000909593 0.000939214 0.000967156 0.000993442 0.0010181 0.00104117 0.00106267 0.00108264 0.00110114 0.0011182 0.00113388 0.00114825 0.00116137 0.00117333 0.0011842 0.00119408 0.00120307 0.00121126 0.00121874 0.00122559 0.00123191 0.00123777 0.00124322 0.00124832 0.00125313 0.00125768 0.00126201 0.00126614 0.0012701 0.00127392 0.0012776 0.00128117 0.00128463 0.00128799 0.00129128 0.00129448 0.00129762 0.0013007 0.00130371 0.00130668 0.00130959 0.00131246 0.00131529 0.00131808 0.00132083 0.00132355 0.00132624 0.0013289 0.00133153 0.00133414 0.00133672 0.00133928 0.00134182 0.00134434 0.00134684 0.00134932 0.00135178 0.00135423 0.00135666 0.00135908 0.00136148 0.00136387 0.00136625 0.00136861 0.00137097 0.00137331 0.00137564 0.00137796 0.00138027 0.00138258 0.00138487 0.00138715 0.00138943 0.00139169 0.00139395 0.00139621 0.00139845 0.00140069 0.00140292 0.00140514 0.00140736 0.00140957 0.00141178 0.00141398 0.00141617 0.00141836 0.00142054 0.00142272 0.00142489 0.00142706 0.00142922 0.00143138 0.00143353 0.00143568 0.00143782 0.00143996 0.0014421 0.00144423 0.00144636 0.00144848 0.0014506 0.00145272 0.00145483 0.00145694 0.00145905 0.00146115 0.00146325 0.00146535 0.00146744 0.00146953 0.00147162 0.0014737 0.00147579 0.00147787 0.00147994 0.00148202 0.00148409 0.00148616 0.00148823 0.0014903 0.00149236 0.00149443 0.00149649 0.00149855 0.0015006 0.00150266 0.00150472 0.00150677 0.00150882 0.00151087 0.00151292 0.00151497 0.00151702 0.00151907 0.00152112 0.00152317 0.00152521 0.00152726 0.0015293 0.00153135 0.0015334 0.00153544 0.00153749 0.00153953 0.00154158 0.00154363 0.00154567 0.00154772 0.00154977 0.00155182 0.00155387 0.00155592 0.00155798 0.00156003 0.00156209 0.00156414 0.0015662 0.00156826 0.00157033 0.00157239 0.00157446 0.00157652 +-0.000686302 -0.00061663 -0.000547136 -0.000477839 -0.000408755 -0.000339904 -0.000271306 -0.000202984 -0.000134959 -6.72576E-05 9.4884E-08 6.62421E-05 0.000130347 0.000192428 0.000252504 0.000310594 0.000366717 0.000420891 0.000473133 0.000523464 0.000571899 0.000618459 0.000663161 0.000706023 0.000747065 0.000786304 0.00082376 0.000859452 0.000893401 0.000925626 0.000956151 0.000984996 0.00101219 0.00103775 0.00106172 0.00108411 0.00110497 0.00112434 0.00114227 0.00115879 0.00117397 0.00118788 0.00120059 0.00121217 0.00122272 0.00123232 0.00124107 0.00124906 0.00125638 0.00126312 0.00126934 0.00127513 0.00128054 0.00128562 0.00129042 0.00129497 0.00129931 0.00130346 0.00130745 0.0013113 0.00131501 0.00131862 0.00132212 0.00132553 0.00132886 0.00133211 0.00133529 0.00133841 0.00134148 0.00134449 0.00134745 0.00135037 0.00135325 0.00135608 0.00135889 0.00136165 0.00136439 0.0013671 0.00136978 0.00137243 0.00137506 0.00137767 0.00138025 0.00138282 0.00138536 0.00138789 0.0013904 0.00139289 0.00139537 0.00139783 0.00140028 0.00140272 0.00140514 0.00140755 0.00140995 0.00141233 0.00141471 0.00141707 0.00141943 0.00142177 0.00142411 0.00142643 0.00142875 0.00143106 0.00143336 0.00143566 0.00143794 0.00144022 0.00144249 0.00144476 0.00144702 0.00144927 0.00145152 0.00145376 0.00145599 0.00145822 0.00146044 0.00146266 0.00146487 0.00146708 0.00146928 0.00147147 0.00147367 0.00147585 0.00147804 0.00148022 0.00148239 0.00148456 0.00148673 0.00148889 0.00149105 0.0014932 0.00149535 0.0014975 0.00149964 0.00150178 0.00150392 0.00150606 0.00150819 0.00151031 0.00151244 0.00151456 0.00151668 0.0015188 0.00152091 0.00152303 0.00152514 0.00152724 0.00152935 0.00153145 0.00153355 0.00153565 0.00153775 0.00153985 0.00154194 0.00154403 0.00154612 0.00154821 0.0015503 0.00155239 0.00155448 0.00155656 0.00155865 0.00156073 0.00156282 0.0015649 0.00156698 0.00156906 0.00157114 0.00157323 0.00157531 0.00157739 0.00157947 0.00158155 0.00158364 0.00158572 0.0015878 0.00158989 0.00159197 0.00159406 0.00159615 0.00159823 0.00160032 0.00160241 0.00160451 0.0016066 0.0016087 0.00161079 0.00161289 0.00161499 0.0016171 +-0.000692574 -0.000622366 -0.000552319 -0.000482448 -0.000412771 -0.000343307 -0.000274075 -0.000205095 -0.00013639 -6.79827E-05 1.01147E-07 6.69987E-05 0.000131864 0.000194716 0.000255573 0.000314453 0.000371375 0.000426357 0.000479417 0.000530572 0.000579841 0.000627241 0.000672792 0.000716509 0.000758412 0.00079852 0.000836849 0.000873421 0.000908253 0.000941366 0.000972781 0.00100252 0.0010306 0.00105706 0.00108192 0.0011052 0.00112695 0.00114719 0.00116597 0.00118334 0.00119934 0.00121404 0.00122751 0.00123982 0.00125105 0.00126129 0.00127063 0.00127916 0.00128697 0.00129415 0.00130077 0.00130692 0.00131265 0.00131802 0.00132308 0.00132787 0.00133243 0.00133678 0.00134096 0.00134497 0.00134885 0.0013526 0.00135625 0.00135979 0.00136324 0.00136661 0.00136991 0.00137314 0.00137631 0.00137942 0.00138248 0.00138549 0.00138845 0.00139138 0.00139426 0.00139711 0.00139993 0.00140271 0.00140547 0.00140819 0.00141089 0.00141357 0.00141623 0.00141886 0.00142147 0.00142406 0.00142663 0.00142919 0.00143173 0.00143425 0.00143676 0.00143925 0.00144173 0.0014442 0.00144665 0.00144909 0.00145152 0.00145394 0.00145635 0.00145874 0.00146113 0.00146351 0.00146588 0.00146824 0.00147059 0.00147293 0.00147527 0.0014776 0.00147992 0.00148223 0.00148454 0.00148684 0.00148913 0.00149141 0.00149369 0.00149597 0.00149824 0.0015005 0.00150276 0.00150501 0.00150725 0.00150949 0.00151173 0.00151396 0.00151619 0.00151841 0.00152063 0.00152284 0.00152505 0.00152725 0.00152945 0.00153165 0.00153384 0.00153603 0.00153821 0.00154039 0.00154257 0.00154475 0.00154692 0.00154909 0.00155125 0.00155341 0.00155557 0.00155773 0.00155988 0.00156203 0.00156418 0.00156633 0.00156847 0.00157062 0.00157275 0.00157489 0.00157703 0.00157916 0.00158129 0.00158342 0.00158555 0.00158768 0.00158981 0.00159193 0.00159405 0.00159618 0.0015983 0.00160042 0.00160254 0.00160466 0.00160678 0.0016089 0.00161101 0.00161313 0.00161525 0.00161737 0.00161948 0.0016216 0.00162372 0.00162584 0.00162796 0.00163008 0.0016322 0.00163432 0.00163644 0.00163856 0.00164069 0.00164281 0.00164494 0.00164707 0.0016492 0.00165133 0.00165347 0.0016556 0.00165774 +-0.000698706 -0.000627974 -0.000557385 -0.000486954 -0.000416697 -0.000346633 -0.00027678 -0.000207158 -0.000137787 -6.86906E-05 1.07781E-07 6.77386E-05 0.000133348 0.000196953 0.000258574 0.000318228 0.000375934 0.000431708 0.000485568 0.000537533 0.00058762 0.000635846 0.000682229 0.000726787 0.000769537 0.000810498 0.000849688 0.000887124 0.000922827 0.000956814 0.000989108 0.00101973 0.0010487 0.00107604 0.00110178 0.00112594 0.00114856 0.00116967 0.00118931 0.00120752 0.00122435 0.00123985 0.00125409 0.00126714 0.00127908 0.00128997 0.00129992 0.00130902 0.00131734 0.00132499 0.00133204 0.00133856 0.00134463 0.00135031 0.00135565 0.0013607 0.00136549 0.00137005 0.00137442 0.00137862 0.00138266 0.00138657 0.00139036 0.00139404 0.00139762 0.00140112 0.00140453 0.00140787 0.00141115 0.00141436 0.00141752 0.00142063 0.00142368 0.0014267 0.00142967 0.0014326 0.0014355 0.00143836 0.00144119 0.00144399 0.00144677 0.00144952 0.00145224 0.00145494 0.00145762 0.00146028 0.00146291 0.00146553 0.00146813 0.00147072 0.00147328 0.00147584 0.00147837 0.0014809 0.00148341 0.0014859 0.00148839 0.00149086 0.00149332 0.00149578 0.00149822 0.00150065 0.00150307 0.00150548 0.00150788 0.00151027 0.00151266 0.00151503 0.0015174 0.00151976 0.00152212 0.00152446 0.0015268 0.00152914 0.00153146 0.00153378 0.0015361 0.0015384 0.00154071 0.001543 0.00154529 0.00154758 0.00154986 0.00155213 0.0015544 0.00155667 0.00155893 0.00156118 0.00156343 0.00156568 0.00156792 0.00157016 0.00157239 0.00157462 0.00157685 0.00157907 0.00158129 0.0015835 0.00158572 0.00158792 0.00159013 0.00159233 0.00159453 0.00159673 0.00159892 0.00160111 0.0016033 0.00160548 0.00160766 0.00160984 0.00161202 0.0016142 0.00161637 0.00161854 0.00162071 0.00162288 0.00162505 0.00162721 0.00162937 0.00163154 0.0016337 0.00163586 0.00163801 0.00164017 0.00164233 0.00164448 0.00164664 0.00164879 0.00165095 0.0016531 0.00165525 0.00165741 0.00165956 0.00166171 0.00166387 0.00166602 0.00166818 0.00167033 0.00167249 0.00167464 0.0016768 0.00167896 0.00168112 0.00168328 0.00168544 0.0016876 0.00168977 0.00169193 0.0016941 0.00169627 0.00169844 +-0.000704701 -0.000633456 -0.000562336 -0.000491357 -0.000420534 -0.000349883 -0.000279423 -0.000209173 -0.000139152 -6.93816E-05 1.14805E-07 6.84621E-05 0.000134798 0.000199142 0.00026151 0.000321922 0.000380394 0.000436944 0.00049159 0.000544349 0.000595238 0.000644275 0.000691476 0.00073686 0.000780443 0.000822243 0.000862279 0.000900567 0.000937126 0.000971975 0.00100513 0.00103662 0.00106646 0.00109468 0.00112129 0.00114633 0.00116981 0.00119179 0.00121228 0.00123133 0.00124899 0.0012653 0.00128032 0.00129412 0.00130677 0.00131834 0.00132893 0.00133861 0.00134747 0.00135561 0.00136311 0.00137004 0.00137647 0.00138248 0.00138812 0.00139343 0.00139846 0.00140325 0.00140782 0.00141221 0.00141643 0.0014205 0.00142445 0.00142827 0.00143199 0.00143561 0.00143915 0.00144261 0.00144599 0.00144931 0.00145257 0.00145578 0.00145893 0.00146203 0.00146509 0.00146811 0.00147109 0.00147404 0.00147695 0.00147982 0.00148267 0.00148549 0.00148829 0.00149106 0.0014938 0.00149653 0.00149923 0.00150191 0.00150458 0.00150722 0.00150985 0.00151246 0.00151506 0.00151764 0.00152021 0.00152276 0.0015253 0.00152783 0.00153035 0.00153285 0.00153535 0.00153783 0.0015403 0.00154276 0.00154522 0.00154766 0.0015501 0.00155252 0.00155494 0.00155735 0.00155975 0.00156215 0.00156453 0.00156691 0.00156929 0.00157165 0.00157401 0.00157636 0.00157871 0.00158105 0.00158339 0.00158572 0.00158804 0.00159036 0.00159267 0.00159498 0.00159728 0.00159958 0.00160187 0.00160416 0.00160645 0.00160873 0.001611 0.00161327 0.00161554 0.0016178 0.00162006 0.00162232 0.00162457 0.00162682 0.00162906 0.00163131 0.00163354 0.00163578 0.00163801 0.00164024 0.00164247 0.00164469 0.00164691 0.00164913 0.00165135 0.00165356 0.00165577 0.00165798 0.00166019 0.00166239 0.0016646 0.0016668 0.001669 0.0016712 0.0016734 0.00167559 0.00167779 0.00167998 0.00168217 0.00168436 0.00168656 0.00168875 0.00169094 0.00169312 0.00169531 0.0016975 0.00169969 0.00170188 0.00170407 0.00170626 0.00170845 0.00171064 0.00171283 0.00171502 0.00171721 0.0017194 0.0017216 0.00172379 0.00172599 0.00172818 0.00173038 0.00173258 0.00173479 0.00173699 0.0017392 +-0.00071056 -0.000638814 -0.000567175 -0.00049566 -0.000424282 -0.000353059 -0.000282006 -0.000211141 -0.000140485 -7.00561E-05 1.22239E-07 6.91696E-05 0.000136217 0.000201282 0.000264382 0.000325535 0.000384759 0.00044207 0.000497485 0.000551023 0.000602699 0.000652531 0.000700536 0.000746731 0.000791132 0.000833758 0.000874625 0.000913751 0.000951154 0.000986853 0.00102086 0.00105321 0.00108391 0.00111299 0.00114046 0.00116636 0.00119071 0.00121354 0.00123488 0.00125477 0.00127325 0.00129037 0.00130619 0.00132075 0.00133413 0.00134639 0.00135763 0.00136792 0.00137735 0.001386 0.00139397 0.00140132 0.00140814 0.0014145 0.00142045 0.00142605 0.00143134 0.00143636 0.00144116 0.00144574 0.00145015 0.00145439 0.00145849 0.00146247 0.00146633 0.00147009 0.00147375 0.00147733 0.00148083 0.00148426 0.00148762 0.00149093 0.00149418 0.00149738 0.00150053 0.00150363 0.0015067 0.00150973 0.00151272 0.00151567 0.0015186 0.00152149 0.00152436 0.0015272 0.00153002 0.00153281 0.00153558 0.00153833 0.00154105 0.00154376 0.00154645 0.00154913 0.00155178 0.00155442 0.00155705 0.00155966 0.00156226 0.00156484 0.00156741 0.00156997 0.00157252 0.00157505 0.00157758 0.00158009 0.0015826 0.00158509 0.00158758 0.00159005 0.00159252 0.00159498 0.00159743 0.00159987 0.00160231 0.00160473 0.00160715 0.00160956 0.00161197 0.00161437 0.00161676 0.00161915 0.00162153 0.0016239 0.00162627 0.00162863 0.00163099 0.00163334 0.00163569 0.00163803 0.00164036 0.00164269 0.00164502 0.00164734 0.00164966 0.00165197 0.00165428 0.00165658 0.00165888 0.00166118 0.00166347 0.00166576 0.00166805 0.00167033 0.00167261 0.00167488 0.00167715 0.00167942 0.00168169 0.00168395 0.00168621 0.00168846 0.00169072 0.00169297 0.00169522 0.00169747 0.00169971 0.00170195 0.0017042 0.00170643 0.00170867 0.00171091 0.00171314 0.00171537 0.00171761 0.00171984 0.00172206 0.00172429 0.00172652 0.00172875 0.00173097 0.0017332 0.00173542 0.00173764 0.00173987 0.00174209 0.00174432 0.00174654 0.00174876 0.00175099 0.00175321 0.00175544 0.00175767 0.00175989 0.00176212 0.00176435 0.00176658 0.00176881 0.00177105 0.00177328 0.00177552 0.00177776 0.00178 +-0.000716287 -0.000644049 -0.000571904 -0.000499864 -0.000427945 -0.000356161 -0.000284528 -0.000213064 -0.000141786 -7.07143E-05 1.30107E-07 6.98615E-05 0.000137603 0.000203374 0.00026719 0.000329069 0.000389029 0.000447085 0.000503255 0.000557556 0.000610005 0.000660618 0.000709412 0.000756403 0.000801609 0.000845046 0.000886731 0.000926682 0.000964915 0.00100145 0.0010363 0.00106949 0.00110104 0.00113097 0.0011593 0.00118605 0.00121125 0.00123493 0.00125711 0.00127784 0.00129715 0.00131508 0.00133168 0.00134701 0.00136113 0.0013741 0.00138601 0.00139693 0.00140694 0.00141614 0.00142459 0.0014324 0.00143963 0.00144635 0.00145264 0.00145854 0.0014641 0.00146938 0.0014744 0.00147919 0.00148379 0.00148822 0.00149249 0.00149662 0.00150063 0.00150452 0.00150832 0.00151202 0.00151564 0.00151919 0.00152266 0.00152607 0.00152942 0.00153272 0.00153596 0.00153916 0.00154231 0.00154542 0.00154849 0.00155153 0.00155453 0.0015575 0.00156045 0.00156336 0.00156624 0.00156911 0.00157194 0.00157476 0.00157755 0.00158032 0.00158308 0.00158581 0.00158853 0.00159123 0.00159391 0.00159658 0.00159924 0.00160188 0.0016045 0.00160712 0.00160972 0.00161231 0.00161489 0.00161745 0.00162001 0.00162255 0.00162509 0.00162762 0.00163013 0.00163264 0.00163514 0.00163763 0.00164011 0.00164259 0.00164505 0.00164751 0.00164996 0.00165241 0.00165485 0.00165728 0.0016597 0.00166212 0.00166454 0.00166694 0.00166934 0.00167174 0.00167413 0.00167651 0.00167889 0.00168126 0.00168363 0.001686 0.00168835 0.00169071 0.00169306 0.0016954 0.00169774 0.00170008 0.00170241 0.00170474 0.00170707 0.00170939 0.00171171 0.00171402 0.00171633 0.00171864 0.00172094 0.00172324 0.00172554 0.00172784 0.00173013 0.00173242 0.00173471 0.00173699 0.00173927 0.00174155 0.00174383 0.00174611 0.00174838 0.00175066 0.00175293 0.00175519 0.00175746 0.00175973 0.00176199 0.00176426 0.00176652 0.00176878 0.00177104 0.0017733 0.00177556 0.00177782 0.00178008 0.00178234 0.0017846 0.00178686 0.00178912 0.00179138 0.00179364 0.0017959 0.00179816 0.00180042 0.00180268 0.00180495 0.00180721 0.00180948 0.00181174 0.00181401 0.00181628 0.00181855 0.00182083 +-0.000721883 -0.000649166 -0.000576524 -0.000503972 -0.000431523 -0.000359191 -0.000286991 -0.000214941 -0.000143056 -7.13566E-05 1.38432E-07 7.0538E-05 0.000138959 0.00020542 0.000269936 0.000332526 0.000393206 0.000451993 0.000508902 0.000563952 0.000617159 0.000668538 0.000718106 0.00076588 0.000811876 0.00085611 0.0008986 0.000939361 0.000978412 0.00101577 0.00105145 0.00108547 0.00111786 0.00114863 0.0011778 0.00120539 0.00123144 0.00125595 0.00127898 0.00130054 0.00132066 0.00133941 0.0013568 0.00137291 0.00138777 0.00140147 0.00141406 0.00142562 0.00143624 0.001446 0.00145497 0.00146325 0.00147091 0.00147802 0.00148466 0.00149088 0.00149674 0.00150227 0.00150754 0.00151255 0.00151736 0.00152197 0.00152642 0.00153071 0.00153487 0.00153892 0.00154285 0.00154668 0.00155043 0.00155409 0.00155767 0.00156119 0.00156465 0.00156804 0.00157138 0.00157467 0.00157791 0.00158111 0.00158427 0.00158739 0.00159047 0.00159352 0.00159653 0.00159952 0.00160248 0.00160541 0.00160832 0.0016112 0.00161406 0.0016169 0.00161971 0.00162251 0.00162529 0.00162805 0.00163079 0.00163352 0.00163623 0.00163893 0.00164161 0.00164428 0.00164694 0.00164958 0.00165221 0.00165483 0.00165744 0.00166004 0.00166263 0.0016652 0.00166777 0.00167033 0.00167288 0.00167542 0.00167795 0.00168047 0.00168298 0.00168549 0.00168799 0.00169048 0.00169296 0.00169544 0.00169791 0.00170037 0.00170283 0.00170528 0.00170773 0.00171016 0.0017126 0.00171502 0.00171745 0.00171986 0.00172227 0.00172468 0.00172708 0.00172947 0.00173187 0.00173425 0.00173663 0.00173901 0.00174139 0.00174375 0.00174612 0.00174848 0.00175084 0.00175319 0.00175554 0.00175789 0.00176023 0.00176257 0.00176491 0.00176724 0.00176957 0.0017719 0.00177422 0.00177655 0.00177887 0.00178118 0.0017835 0.00178581 0.00178812 0.00179043 0.00179274 0.00179505 0.00179735 0.00179965 0.00180195 0.00180425 0.00180655 0.00180885 0.00181115 0.00181344 0.00181574 0.00181803 0.00182033 0.00182262 0.00182491 0.00182721 0.0018295 0.0018318 0.00183409 0.00183638 0.00183868 0.00184098 0.00184327 0.00184557 0.00184787 0.00185017 0.00185247 0.00185477 0.00185708 0.00185938 0.00186169 +-0.000727351 -0.000654164 -0.000581038 -0.000507985 -0.000435018 -0.00036215 -0.000289397 -0.000216774 -0.000144297 -7.19832E-05 1.47237E-07 7.11995E-05 0.000140285 0.00020742 0.000272621 0.000335907 0.000397292 0.000456794 0.000514429 0.000570213 0.000624162 0.000676293 0.000726621 0.000775164 0.000821936 0.000866954 0.000910234 0.000951793 0.000991648 0.00102982 0.00106631 0.00110116 0.00113437 0.00116596 0.00119596 0.00122439 0.00125127 0.00127662 0.00130047 0.00132286 0.00134381 0.00136335 0.00138155 0.00139843 0.00141405 0.00142847 0.00144176 0.00145399 0.00146523 0.00147557 0.00148508 0.00149385 0.00150196 0.00150949 0.0015165 0.00152306 0.00152922 0.00153504 0.00154056 0.00154581 0.00155082 0.00155564 0.00156027 0.00156474 0.00156906 0.00157325 0.00157733 0.00158129 0.00158517 0.00158895 0.00159265 0.00159628 0.00159984 0.00160334 0.00160678 0.00161016 0.0016135 0.00161679 0.00162003 0.00162323 0.0016264 0.00162952 0.00163262 0.00163568 0.00163871 0.00164172 0.00164469 0.00164764 0.00165057 0.00165347 0.00165636 0.00165922 0.00166206 0.00166488 0.00166768 0.00167047 0.00167324 0.001676 0.00167874 0.00168146 0.00168417 0.00168687 0.00168956 0.00169223 0.00169489 0.00169754 0.00170018 0.00170281 0.00170542 0.00170803 0.00171063 0.00171322 0.0017158 0.00171837 0.00172093 0.00172348 0.00172603 0.00172857 0.0017311 0.00173362 0.00173614 0.00173864 0.00174115 0.00174364 0.00174613 0.00174861 0.00175109 0.00175356 0.00175602 0.00175848 0.00176094 0.00176338 0.00176583 0.00176826 0.0017707 0.00177312 0.00177555 0.00177797 0.00178038 0.00178279 0.00178519 0.00178759 0.00178999 0.00179238 0.00179477 0.00179716 0.00179954 0.00180192 0.0018043 0.00180667 0.00180904 0.0018114 0.00181376 0.00181612 0.00181848 0.00182084 0.00182319 0.00182554 0.00182789 0.00183023 0.00183258 0.00183492 0.00183726 0.0018396 0.00184194 0.00184427 0.00184661 0.00184894 0.00185127 0.0018536 0.00185593 0.00185826 0.00186059 0.00186292 0.00186525 0.00186758 0.00186991 0.00187223 0.00187456 0.00187689 0.00187922 0.00188155 0.00188388 0.00188621 0.00188855 0.00189088 0.00189321 0.00189555 0.00189789 0.00190023 0.00190257 +-0.000732693 -0.000659048 -0.000585448 -0.000511905 -0.000438431 -0.000365041 -0.000291746 -0.000218563 -0.000145507 -7.25943E-05 1.56549E-07 7.18463E-05 0.00014158 0.000209375 0.000275247 0.000339213 0.000401289 0.000461492 0.000519837 0.000576341 0.000631019 0.000683887 0.000734962 0.000784258 0.000831792 0.000877581 0.000921638 0.000963982 0.00100463 0.00104359 0.00108089 0.00111655 0.00115057 0.00118298 0.0012138 0.00124305 0.00127076 0.00129693 0.00132161 0.00134481 0.00136657 0.00138692 0.00140591 0.00142357 0.00143995 0.00145511 0.00146911 0.00148201 0.0014939 0.00150483 0.00151491 0.00152419 0.00153278 0.00154074 0.00154814 0.00155506 0.00156154 0.00156766 0.00157344 0.00157894 0.00158418 0.0015892 0.00159403 0.00159868 0.00160317 0.00160752 0.00161174 0.00161585 0.00161985 0.00162376 0.00162759 0.00163133 0.001635 0.0016386 0.00164215 0.00164563 0.00164906 0.00165244 0.00165577 0.00165906 0.00166231 0.00166551 0.00166869 0.00167183 0.00167493 0.00167801 0.00168106 0.00168408 0.00168707 0.00169005 0.00169299 0.00169592 0.00169882 0.00170171 0.00170457 0.00170742 0.00171025 0.00171307 0.00171586 0.00171865 0.00172141 0.00172417 0.00172691 0.00172963 0.00173235 0.00173505 0.00173774 0.00174042 0.00174309 0.00174575 0.00174839 0.00175103 0.00175366 0.00175628 0.00175889 0.00176149 0.00176408 0.00176667 0.00176924 0.00177181 0.00177437 0.00177693 0.00177947 0.00178201 0.00178455 0.00178707 0.00178959 0.00179211 0.00179461 0.00179712 0.00179961 0.0018021 0.00180459 0.00180707 0.00180954 0.00181201 0.00181447 0.00181693 0.00181939 0.00182184 0.00182428 0.00182672 0.00182916 0.00183159 0.00183402 0.00183645 0.00183887 0.00184128 0.0018437 0.00184611 0.00184852 0.00185092 0.00185332 0.00185572 0.00185811 0.00186051 0.00186289 0.00186528 0.00186767 0.00187005 0.00187243 0.00187481 0.00187718 0.00187956 0.00188193 0.0018843 0.00188667 0.00188904 0.00189141 0.00189378 0.00189614 0.00189851 0.00190087 0.00190324 0.0019056 0.00190796 0.00191032 0.00191269 0.00191505 0.00191741 0.00191978 0.00192214 0.0019245 0.00192687 0.00192924 0.0019316 0.00193397 0.00193634 0.00193871 0.00194108 0.00194346 +-0.000737911 -0.000663818 -0.000589755 -0.000515733 -0.000441765 -0.000367863 -0.00029404 -0.00022031 -0.000146688 -7.31902E-05 1.66394E-07 7.24788E-05 0.000142846 0.000211286 0.000277814 0.000342446 0.000405198 0.000466087 0.000525128 0.000582337 0.00063773 0.000691322 0.000743129 0.000793166 0.000841449 0.000887994 0.000932816 0.000975931 0.00101735 0.0010571 0.00109519 0.00113164 0.00116647 0.00119969 0.00123132 0.00126138 0.0012899 0.00131689 0.00134238 0.00136639 0.00138896 0.00141011 0.00142989 0.00144833 0.00146547 0.00148138 0.00149609 0.00150969 0.00152222 0.00153378 0.00154443 0.00155426 0.00156333 0.00157175 0.00157956 0.00158685 0.00159368 0.00160011 0.00160618 0.00161193 0.00161742 0.00162266 0.00162768 0.00163252 0.00163719 0.0016417 0.00164608 0.00165033 0.00165448 0.00165852 0.00166247 0.00166633 0.00167011 0.00167383 0.00167747 0.00168106 0.00168458 0.00168805 0.00169148 0.00169485 0.00169819 0.00170148 0.00170473 0.00170795 0.00171114 0.00171429 0.00171741 0.0017205 0.00172357 0.0017266 0.00172962 0.00173261 0.00173558 0.00173853 0.00174146 0.00174437 0.00174726 0.00175013 0.00175299 0.00175582 0.00175865 0.00176146 0.00176425 0.00176703 0.0017698 0.00177256 0.0017753 0.00177803 0.00178075 0.00178346 0.00178616 0.00178885 0.00179152 0.00179419 0.00179685 0.0017995 0.00180214 0.00180477 0.00180739 0.00181001 0.00181262 0.00181522 0.00181781 0.00182039 0.00182297 0.00182554 0.0018281 0.00183066 0.00183321 0.00183576 0.0018383 0.00184083 0.00184336 0.00184588 0.00184839 0.0018509 0.00185341 0.00185591 0.0018584 0.00186089 0.00186338 0.00186586 0.00186834 0.00187081 0.00187328 0.00187574 0.0018782 0.00188066 0.00188311 0.00188556 0.001888 0.00189044 0.00189288 0.00189532 0.00189775 0.00190018 0.00190261 0.00190503 0.00190745 0.00190987 0.00191229 0.0019147 0.00191712 0.00191953 0.00192194 0.00192434 0.00192675 0.00192915 0.00193156 0.00193396 0.00193636 0.00193876 0.00194116 0.00194356 0.00194595 0.00194835 0.00195075 0.00195315 0.00195554 0.00195794 0.00196034 0.00196273 0.00196513 0.00196753 0.00196993 0.00197233 0.00197473 0.00197714 0.00197954 0.00198195 0.00198435 +-0.000743009 -0.000668477 -0.000593961 -0.000519471 -0.00044502 -0.000370618 -0.000296279 -0.000222015 -0.000147841 -7.37713E-05 1.768E-07 7.30972E-05 0.000144084 0.000213154 0.000280323 0.000345607 0.000409021 0.000470582 0.000530305 0.000588206 0.000644299 0.000698601 0.000751126 0.000801891 0.000850909 0.000898197 0.00094377 0.000987643 0.00102983 0.00107035 0.00110922 0.00114646 0.00118207 0.00121608 0.00124851 0.00127938 0.0013087 0.00133649 0.00136279 0.00138761 0.00141098 0.00143293 0.00145349 0.00147271 0.00149062 0.00150726 0.0015227 0.001537 0.0015502 0.00156239 0.00157364 0.00158402 0.00159361 0.0016025 0.00161075 0.00161844 0.00162563 0.00163238 0.00163875 0.00164478 0.00165051 0.00165598 0.00166122 0.00166626 0.00167111 0.00167579 0.00168033 0.00168474 0.00168903 0.0016932 0.00169728 0.00170127 0.00170517 0.00170899 0.00171275 0.00171643 0.00172006 0.00172363 0.00172715 0.00173061 0.00173404 0.00173741 0.00174075 0.00174405 0.00174731 0.00175054 0.00175373 0.0017569 0.00176003 0.00176314 0.00176623 0.00176928 0.00177232 0.00177533 0.00177832 0.00178129 0.00178425 0.00178718 0.00179009 0.00179299 0.00179587 0.00179874 0.00180159 0.00180443 0.00180725 0.00181006 0.00181285 0.00181564 0.00181841 0.00182117 0.00182392 0.00182665 0.00182938 0.0018321 0.00183481 0.0018375 0.00184019 0.00184287 0.00184554 0.0018482 0.00185086 0.0018535 0.00185614 0.00185877 0.00186139 0.00186401 0.00186661 0.00186921 0.00187181 0.0018744 0.00187698 0.00187955 0.00188212 0.00188469 0.00188724 0.0018898 0.00189234 0.00189488 0.00189742 0.00189995 0.00190248 0.001905 0.00190751 0.00191002 0.00191253 0.00191504 0.00191753 0.00192003 0.00192252 0.00192501 0.00192749 0.00192997 0.00193245 0.00193492 0.00193739 0.00193986 0.00194232 0.00194478 0.00194724 0.0019497 0.00195215 0.0019546 0.00195705 0.0019595 0.00196194 0.00196438 0.00196682 0.00196926 0.0019717 0.00197414 0.00197658 0.00197901 0.00198144 0.00198388 0.00198631 0.00198874 0.00199117 0.0019936 0.00199603 0.00199847 0.0020009 0.00200333 0.00200576 0.00200819 0.00201062 0.00201306 0.00201549 0.00201793 0.00202037 0.00202281 0.00202525 +-0.000747987 -0.000673027 -0.000598068 -0.000523121 -0.000448198 -0.000373308 -0.000298464 -0.000223679 -0.000148965 -7.43376E-05 1.87798E-07 7.3702E-05 0.000145294 0.00021498 0.000282776 0.000348697 0.00041276 0.000474979 0.00053537 0.000593948 0.000650729 0.000705727 0.000758957 0.000810435 0.000860175 0.000908193 0.000954504 0.000999123 0.00104206 0.00108334 0.00112298 0.00116098 0.00119738 0.00123217 0.00126539 0.00129704 0.00132716 0.00135575 0.00138284 0.00140846 0.00143262 0.00145536 0.00147671 0.0014967 0.00151537 0.00153277 0.00154894 0.00156394 0.00157782 0.00159066 0.00160252 0.00161347 0.0016236 0.00163298 0.00164169 0.00164979 0.00165736 0.00166446 0.00167115 0.00167746 0.00168346 0.00168917 0.00169464 0.00169988 0.00170492 0.00170978 0.00171449 0.00171906 0.00172349 0.00172781 0.00173202 0.00173613 0.00174016 0.0017441 0.00174796 0.00175176 0.00175549 0.00175916 0.00176277 0.00176633 0.00176984 0.0017733 0.00177672 0.0017801 0.00178345 0.00178675 0.00179002 0.00179326 0.00179647 0.00179965 0.0018028 0.00180593 0.00180903 0.00181211 0.00181517 0.0018182 0.00182121 0.00182421 0.00182718 0.00183014 0.00183308 0.001836 0.00183891 0.0018418 0.00184468 0.00184754 0.00185039 0.00185323 0.00185605 0.00185886 0.00186166 0.00186445 0.00186723 0.00186999 0.00187275 0.0018755 0.00187823 0.00188096 0.00188368 0.00188639 0.00188908 0.00189178 0.00189446 0.00189713 0.0018998 0.00190246 0.00190511 0.00190776 0.0019104 0.00191303 0.00191565 0.00191827 0.00192088 0.00192349 0.00192609 0.00192868 0.00193127 0.00193385 0.00193643 0.001939 0.00194157 0.00194413 0.00194668 0.00194923 0.00195178 0.00195432 0.00195686 0.0019594 0.00196193 0.00196445 0.00196697 0.00196949 0.001972 0.00197452 0.00197702 0.00197953 0.00198203 0.00198453 0.00198702 0.00198951 0.001992 0.00199449 0.00199698 0.00199946 0.00200194 0.00200442 0.00200689 0.00200937 0.00201184 0.00201431 0.00201679 0.00201925 0.00202172 0.00202419 0.00202666 0.00202912 0.00203159 0.00203405 0.00203652 0.00203898 0.00204145 0.00204391 0.00204638 0.00204884 0.00205131 0.00205378 0.00205625 0.00205871 0.00206118 0.00206366 0.00206613 +-0.000752849 -0.000677469 -0.000602078 -0.000526685 -0.0004513 -0.000375933 -0.000300597 -0.000225302 -0.000150062 -7.48896E-05 1.99418E-07 7.42933E-05 0.000146476 0.000216765 0.000285174 0.000351719 0.000416416 0.000479279 0.000540325 0.000599567 0.000657021 0.000712702 0.000766624 0.000818802 0.000869251 0.000917986 0.000965022 0.00101037 0.00105405 0.00109608 0.00113647 0.00117524 0.00121239 0.00124796 0.00128195 0.00131439 0.00134528 0.00137466 0.00140254 0.00142894 0.00145389 0.00147742 0.00149955 0.00152031 0.00153975 0.00155789 0.00157479 0.0015905 0.00160507 0.00161857 0.00163105 0.0016426 0.00165328 0.00166318 0.00167236 0.0016809 0.00168887 0.00169633 0.00170335 0.00170997 0.00171624 0.00172221 0.00172791 0.00173336 0.00173861 0.00174366 0.00174854 0.00175327 0.00175786 0.00176232 0.00176667 0.00177092 0.00177507 0.00177913 0.00178311 0.00178702 0.00179085 0.00179462 0.00179833 0.00180199 0.00180559 0.00180914 0.00181265 0.00181612 0.00181954 0.00182293 0.00182627 0.00182959 0.00183287 0.00183612 0.00183935 0.00184254 0.00184571 0.00184886 0.00185198 0.00185508 0.00185815 0.00186121 0.00186424 0.00186726 0.00187026 0.00187324 0.0018762 0.00187915 0.00188209 0.001885 0.00188791 0.0018908 0.00189367 0.00189654 0.00189939 0.00190223 0.00190506 0.00190787 0.00191068 0.00191347 0.00191626 0.00191903 0.0019218 0.00192455 0.0019273 0.00193004 0.00193276 0.00193549 0.0019382 0.0019409 0.0019436 0.00194629 0.00194897 0.00195164 0.00195431 0.00195697 0.00195963 0.00196228 0.00196492 0.00196755 0.00197018 0.00197281 0.00197542 0.00197804 0.00198064 0.00198324 0.00198584 0.00198843 0.00199102 0.0019936 0.00199618 0.00199875 0.00200132 0.00200388 0.00200644 0.002009 0.00201155 0.0020141 0.00201664 0.00201918 0.00202172 0.00202426 0.00202679 0.00202932 0.00203184 0.00203437 0.00203689 0.00203941 0.00204192 0.00204444 0.00204695 0.00204946 0.00205197 0.00205448 0.00205698 0.00205949 0.00206199 0.00206449 0.00206699 0.00206949 0.00207199 0.00207449 0.00207699 0.00207949 0.00208199 0.00208448 0.00208698 0.00208948 0.00209198 0.00209448 0.00209698 0.00209948 0.00210199 0.00210449 0.002107 +-0.000757595 -0.000681807 -0.000605993 -0.000530164 -0.000454328 -0.000378496 -0.000302678 -0.000226886 -0.000151131 -7.54273E-05 2.11692E-07 7.48715E-05 0.000147632 0.000218509 0.000287517 0.000354673 0.00041999 0.000483485 0.000545171 0.000605064 0.000663178 0.000719528 0.000774129 0.000826995 0.00087814 0.000927579 0.000975327 0.0010214 0.00106581 0.00110857 0.0011497 0.00118921 0.00122712 0.00126345 0.0012982 0.00133141 0.00136308 0.00139323 0.00142189 0.00144907 0.0014748 0.0014991 0.00152201 0.00154354 0.00156373 0.00158263 0.00160026 0.00161669 0.00163195 0.00164612 0.00165924 0.00167139 0.00168265 0.00169307 0.00170275 0.00171174 0.00172013 0.00172797 0.00173534 0.00174228 0.00174885 0.00175508 0.00176102 0.00176671 0.00177216 0.00177741 0.00178248 0.00178738 0.00179213 0.00179674 0.00180124 0.00180562 0.0018099 0.00181408 0.00181818 0.0018222 0.00182614 0.00183002 0.00183383 0.00183759 0.00184128 0.00184493 0.00184852 0.00185207 0.00185558 0.00185905 0.00186248 0.00186587 0.00186923 0.00187255 0.00187585 0.00187911 0.00188235 0.00188556 0.00188875 0.00189191 0.00189505 0.00189817 0.00190127 0.00190435 0.00190741 0.00191045 0.00191347 0.00191647 0.00191946 0.00192244 0.00192539 0.00192834 0.00193127 0.00193418 0.00193709 0.00193998 0.00194286 0.00194572 0.00194858 0.00195142 0.00195426 0.00195708 0.00195989 0.00196269 0.00196549 0.00196827 0.00197105 0.00197381 0.00197657 0.00197932 0.00198206 0.0019848 0.00198752 0.00199024 0.00199295 0.00199566 0.00199835 0.00200104 0.00200373 0.0020064 0.00200907 0.00201174 0.0020144 0.00201705 0.0020197 0.00202234 0.00202498 0.00202761 0.00203023 0.00203286 0.00203547 0.00203808 0.00204069 0.00204329 0.00204589 0.00204848 0.00205107 0.00205366 0.00205624 0.00205882 0.0020614 0.00206397 0.00206654 0.0020691 0.00207167 0.00207423 0.00207678 0.00207934 0.00208189 0.00208444 0.00208699 0.00208953 0.00209208 0.00209462 0.00209716 0.0020997 0.00210223 0.00210477 0.00210731 0.00210984 0.00211237 0.00211491 0.00211744 0.00211997 0.0021225 0.00212503 0.00212757 0.0021301 0.00213263 0.00213516 0.0021377 0.00214023 0.00214277 0.0021453 0.00214784 +-0.000762229 -0.000686041 -0.000609814 -0.000533559 -0.000457283 -0.000380996 -0.000304708 -0.00022843 -0.000152174 -7.59512E-05 2.24656E-07 7.54369E-05 0.000148761 0.000220213 0.000289808 0.00035756 0.000423485 0.000487597 0.000549911 0.000610442 0.000669203 0.00072621 0.000781476 0.000835016 0.000886845 0.000936975 0.000985423 0.0010322 0.00107733 0.00112081 0.00116267 0.00120292 0.00124157 0.00127864 0.00131415 0.00134812 0.00138055 0.00141147 0.00144089 0.00146885 0.00149535 0.00152042 0.00154409 0.00156638 0.00158733 0.00160697 0.00162534 0.00164249 0.00165845 0.00167329 0.00168707 0.00169984 0.00171168 0.00172265 0.00173284 0.00174231 0.00175113 0.00175938 0.00176711 0.00177438 0.00178126 0.00178777 0.00179398 0.0017999 0.00180557 0.00181103 0.00181628 0.00182136 0.00182628 0.00183105 0.0018357 0.00184022 0.00184463 0.00184895 0.00185317 0.0018573 0.00186136 0.00186534 0.00186926 0.00187311 0.00187691 0.00188065 0.00188433 0.00188797 0.00189156 0.00189511 0.00189862 0.00190209 0.00190553 0.00190893 0.0019123 0.00191564 0.00191894 0.00192223 0.00192548 0.00192871 0.00193191 0.00193509 0.00193825 0.00194139 0.00194451 0.00194761 0.00195069 0.00195376 0.0019568 0.00195983 0.00196284 0.00196584 0.00196883 0.0019718 0.00197475 0.00197769 0.00198062 0.00198354 0.00198645 0.00198934 0.00199222 0.00199509 0.00199796 0.00200081 0.00200365 0.00200648 0.0020093 0.00201211 0.00201492 0.00201771 0.0020205 0.00202328 0.00202605 0.00202881 0.00203156 0.00203431 0.00203705 0.00203978 0.00204251 0.00204523 0.00204794 0.00205065 0.00205335 0.00205604 0.00205873 0.00206141 0.00206409 0.00206676 0.00206942 0.00207209 0.00207474 0.00207739 0.00208004 0.00208268 0.00208531 0.00208795 0.00209057 0.0020932 0.00209582 0.00209843 0.00210105 0.00210366 0.00210626 0.00210886 0.00211146 0.00211406 0.00211665 0.00211924 0.00212183 0.00212442 0.002127 0.00212958 0.00213216 0.00213473 0.00213731 0.00213988 0.00214245 0.00214503 0.00214759 0.00215016 0.00215273 0.0021553 0.00215786 0.00216043 0.00216299 0.00216556 0.00216812 0.00217069 0.00217325 0.00217582 0.00217839 0.00218095 0.00218352 0.00218609 0.00218866 +-0.000766753 -0.000690174 -0.000613544 -0.000536872 -0.000460166 -0.000383435 -0.000306689 -0.000229937 -0.000153191 -7.64612E-05 2.38345E-07 7.59898E-05 0.000149865 0.000221879 0.000292046 0.000360382 0.000426902 0.000491619 0.000554547 0.000615703 0.000675098 0.000732748 0.000788667 0.000842869 0.000895368 0.000946178 0.000995313 0.00104279 0.00108861 0.00113281 0.00117538 0.00121636 0.00125574 0.00129355 0.0013298 0.00136451 0.0013977 0.00142937 0.00145956 0.00148827 0.00151553 0.00154137 0.00156579 0.00158885 0.00161055 0.00163093 0.00165004 0.0016679 0.00168457 0.00170009 0.00171453 0.00172793 0.00174037 0.00175191 0.00176262 0.00177258 0.00178186 0.00179053 0.00179864 0.00180627 0.00181346 0.00182028 0.00182675 0.00183292 0.00183883 0.00184449 0.00184995 0.00185521 0.00186031 0.00186524 0.00187004 0.00187471 0.00187926 0.00188371 0.00188806 0.00189231 0.00189649 0.00190058 0.00190461 0.00190856 0.00191246 0.00191629 0.00192007 0.0019238 0.00192748 0.00193111 0.00193471 0.00193826 0.00194177 0.00194525 0.00194869 0.0019521 0.00195548 0.00195883 0.00196216 0.00196545 0.00196872 0.00197197 0.00197519 0.00197839 0.00198157 0.00198473 0.00198787 0.00199099 0.0019941 0.00199718 0.00200025 0.00200331 0.00200634 0.00200937 0.00201238 0.00201537 0.00201835 0.00202132 0.00202428 0.00202722 0.00203015 0.00203307 0.00203598 0.00203888 0.00204177 0.00204465 0.00204752 0.00205038 0.00205323 0.00205607 0.0020589 0.00206172 0.00206454 0.00206734 0.00207014 0.00207293 0.00207571 0.00207849 0.00208126 0.00208402 0.00208677 0.00208952 0.00209226 0.002095 0.00209773 0.00210045 0.00210317 0.00210588 0.00210858 0.00211128 0.00211398 0.00211667 0.00211935 0.00212203 0.00212471 0.00212738 0.00213004 0.00213271 0.00213536 0.00213802 0.00214067 0.00214331 0.00214595 0.00214859 0.00215123 0.00215386 0.00215649 0.00215912 0.00216174 0.00216436 0.00216698 0.00216959 0.00217221 0.00217482 0.00217743 0.00218004 0.00218264 0.00218525 0.00218785 0.00219045 0.00219306 0.00219566 0.00219826 0.00220085 0.00220345 0.00220605 0.00220865 0.00221125 0.00221385 0.00221644 0.00221904 0.00222164 0.00222424 0.00222684 0.00222945 +-0.000771167 -0.000694207 -0.000617183 -0.000540105 -0.000462979 -0.000385815 -0.00030862 -0.000231406 -0.000154182 -7.69578E-05 2.52796E-07 7.65305E-05 0.000150943 0.000223506 0.000294234 0.000363141 0.000430242 0.00049555 0.000559081 0.000620848 0.000680865 0.000739147 0.000795706 0.000850557 0.000903714 0.00095519 0.001005 0.00105316 0.00109967 0.00114457 0.00118785 0.00122953 0.00126964 0.00130817 0.00134515 0.0013806 0.00141452 0.00144694 0.00147788 0.00150734 0.00153536 0.00156195 0.00158713 0.00161093 0.00163338 0.00165451 0.00167434 0.00169293 0.0017103 0.00172651 0.00174161 0.00175566 0.00176871 0.00178083 0.00179209 0.00180256 0.00181231 0.00182141 0.00182992 0.00183792 0.00184545 0.00185258 0.00185933 0.00186577 0.00187191 0.0018778 0.00188347 0.00188893 0.0018942 0.00189931 0.00190427 0.00190909 0.00191379 0.00191837 0.00192285 0.00192723 0.00193152 0.00193573 0.00193986 0.00194393 0.00194792 0.00195186 0.00195573 0.00195955 0.00196332 0.00196704 0.00197072 0.00197435 0.00197795 0.0019815 0.00198502 0.00198851 0.00199196 0.00199538 0.00199877 0.00200214 0.00200548 0.00200879 0.00201207 0.00201534 0.00201858 0.0020218 0.002025 0.00202818 0.00203134 0.00203449 0.00203761 0.00204072 0.00204382 0.00204689 0.00204996 0.002053 0.00205604 0.00205906 0.00206206 0.00206506 0.00206804 0.00207101 0.00207397 0.00207692 0.00207985 0.00208278 0.0020857 0.0020886 0.0020915 0.00209438 0.00209726 0.00210013 0.00210299 0.00210584 0.00210868 0.00211151 0.00211434 0.00211716 0.00211997 0.00212277 0.00212557 0.00212836 0.00213114 0.00213392 0.00213669 0.00213945 0.00214221 0.00214496 0.00214771 0.00215045 0.00215318 0.00215591 0.00215863 0.00216135 0.00216406 0.00216677 0.00216948 0.00217218 0.00217487 0.00217756 0.00218025 0.00218293 0.00218561 0.00218829 0.00219096 0.00219363 0.00219629 0.00219895 0.00220161 0.00220427 0.00220692 0.00220957 0.00221222 0.00221487 0.00221751 0.00222015 0.0022228 0.00222543 0.00222807 0.00223071 0.00223334 0.00223598 0.00223861 0.00224124 0.00224387 0.00224651 0.00224914 0.00225177 0.0022544 0.00225703 0.00225966 0.00226229 0.00226493 0.00226756 0.00227019 +-0.000775475 -0.000698142 -0.000620734 -0.000543259 -0.000465723 -0.000388135 -0.000310504 -0.000232838 -0.000155147 -7.74411E-05 2.68049E-07 7.70593E-05 0.000151997 0.000225096 0.000296371 0.000365837 0.000433506 0.000499394 0.000563514 0.000625881 0.000686507 0.000745407 0.000802594 0.000858082 0.000911885 0.000964016 0.00101449 0.00106332 0.00111051 0.00115609 0.00120007 0.00124245 0.00128326 0.00132251 0.00136021 0.00139638 0.00143104 0.0014642 0.00149587 0.00152607 0.00155483 0.00158217 0.0016081 0.00163264 0.00165583 0.0016777 0.00169826 0.00171757 0.00173565 0.00175255 0.00176832 0.00178301 0.00179668 0.00180939 0.00182121 0.00183221 0.00184245 0.00185201 0.00186094 0.00186932 0.00187721 0.00188466 0.00189171 0.00189842 0.00190482 0.00191095 0.00191683 0.00192249 0.00192795 0.00193324 0.00193836 0.00194334 0.00194819 0.00195291 0.00195753 0.00196204 0.00196645 0.00197078 0.00197503 0.0019792 0.0019833 0.00198733 0.00199131 0.00199522 0.00199908 0.00200289 0.00200666 0.00201038 0.00201405 0.00201769 0.00202128 0.00202484 0.00202837 0.00203186 0.00203533 0.00203876 0.00204217 0.00204554 0.0020489 0.00205223 0.00205553 0.00205881 0.00206207 0.00206531 0.00206853 0.00207174 0.00207492 0.00207809 0.00208123 0.00208437 0.00208748 0.00209058 0.00209367 0.00209674 0.0020998 0.00210285 0.00210588 0.0021089 0.00211191 0.0021149 0.00211789 0.00212086 0.00212382 0.00212678 0.00212972 0.00213265 0.00213557 0.00213849 0.00214139 0.00214429 0.00214717 0.00215005 0.00215292 0.00215578 0.00215864 0.00216148 0.00216432 0.00216715 0.00216998 0.0021728 0.00217561 0.00217841 0.00218121 0.002184 0.00218678 0.00218956 0.00219234 0.00219511 0.00219787 0.00220063 0.00220338 0.00220612 0.00220887 0.0022116 0.00221434 0.00221706 0.00221979 0.00222251 0.00222522 0.00222794 0.00223064 0.00223335 0.00223605 0.00223875 0.00224144 0.00224413 0.00224682 0.00224951 0.00225219 0.00225487 0.00225755 0.00226023 0.0022629 0.00226558 0.00226825 0.00227092 0.00227359 0.00227626 0.00227892 0.00228159 0.00228425 0.00228692 0.00228958 0.00229224 0.00229491 0.00229757 0.00230024 0.0023029 0.00230556 0.00230823 0.0023109 +-0.000779678 -0.000701982 -0.000624198 -0.000546335 -0.000468399 -0.000390399 -0.000312341 -0.000234234 -0.000156088 -7.79113E-05 2.84147E-07 7.75765E-05 0.000153027 0.00022665 0.00029846 0.000368471 0.000436697 0.000503152 0.000567849 0.000630803 0.000692026 0.000751532 0.000809335 0.000865448 0.000919884 0.000972657 0.00102378 0.00107327 0.00112113 0.00116738 0.00121204 0.00125512 0.00129662 0.00133657 0.00137499 0.00141187 0.00144725 0.00148113 0.00151353 0.00154447 0.00157396 0.00160203 0.0016287 0.00165398 0.00167791 0.0017005 0.00172179 0.00174181 0.0017606 0.0017782 0.00179464 0.00180999 0.00182429 0.00183761 0.00185 0.00186154 0.00187228 0.00188231 0.00189168 0.00190047 0.00190872 0.00191651 0.00192388 0.00193087 0.00193754 0.00194391 0.00195002 0.00195589 0.00196155 0.00196702 0.00197232 0.00197746 0.00198246 0.00198733 0.00199209 0.00199673 0.00200127 0.00200572 0.00201009 0.00201437 0.00201858 0.00202272 0.00202679 0.0020308 0.00203476 0.00203866 0.00204251 0.00204631 0.00205007 0.00205379 0.00205747 0.0020611 0.00206471 0.00206827 0.00207181 0.00207531 0.00207879 0.00208223 0.00208565 0.00208905 0.00209241 0.00209576 0.00209908 0.00210238 0.00210566 0.00210892 0.00211217 0.00211539 0.00211859 0.00212178 0.00212495 0.00212811 0.00213125 0.00213437 0.00213748 0.00214058 0.00214366 0.00214673 0.00214979 0.00215284 0.00215587 0.00215889 0.0021619 0.0021649 0.00216789 0.00217087 0.00217384 0.0021768 0.00217975 0.00218269 0.00218562 0.00218854 0.00219145 0.00219436 0.00219725 0.00220014 0.00220302 0.0022059 0.00220876 0.00221162 0.00221447 0.00221732 0.00222016 0.00222299 0.00222582 0.00222863 0.00223145 0.00223425 0.00223706 0.00223985 0.00224264 0.00224543 0.00224821 0.00225098 0.00225375 0.00225652 0.00225928 0.00226204 0.00226479 0.00226754 0.00227028 0.00227302 0.00227576 0.00227849 0.00228122 0.00228395 0.00228668 0.0022894 0.00229212 0.00229483 0.00229755 0.00230026 0.00230297 0.00230567 0.00230838 0.00231108 0.00231378 0.00231649 0.00231919 0.00232188 0.00232458 0.00232728 0.00232998 0.00233267 0.00233537 0.00233806 0.00234076 0.00234346 0.00234615 0.00234885 0.00235155 +-0.000783779 -0.000705727 -0.000627577 -0.000549335 -0.000471009 -0.000392605 -0.000314131 -0.000235595 -0.000157004 -7.83686E-05 3.01131E-07 7.80824E-05 0.000154033 0.000228168 0.000300501 0.000371046 0.000439816 0.000506826 0.000572088 0.000635616 0.000697424 0.000757525 0.000815931 0.000872657 0.000927715 0.000981118 0.00103288 0.00108301 0.00113153 0.00117845 0.00122378 0.00126753 0.00130972 0.00135036 0.00138947 0.00142706 0.00146315 0.00149774 0.00153086 0.00156252 0.00159274 0.00162154 0.00164894 0.00167495 0.0016996 0.00172292 0.00174494 0.00176567 0.00178517 0.00180345 0.00182058 0.00183659 0.00185153 0.00186546 0.00187843 0.00189052 0.00190179 0.00191231 0.00192213 0.00193134 0.00193998 0.00194812 0.00195582 0.00196311 0.00197006 0.00197668 0.00198303 0.00198912 0.00199499 0.00200065 0.00200613 0.00201144 0.0020166 0.00202163 0.00202652 0.0020313 0.00203598 0.00204055 0.00204503 0.00204943 0.00205375 0.002058 0.00206217 0.00206629 0.00207034 0.00207433 0.00207827 0.00208217 0.00208601 0.00208981 0.00209357 0.00209728 0.00210096 0.0021046 0.00210821 0.00211179 0.00211533 0.00211885 0.00212233 0.00212579 0.00212923 0.00213264 0.00213602 0.00213939 0.00214273 0.00214605 0.00214935 0.00215263 0.00215589 0.00215913 0.00216236 0.00216557 0.00216876 0.00217194 0.0021751 0.00217825 0.00218139 0.00218451 0.00218762 0.00219071 0.00219379 0.00219686 0.00219992 0.00220297 0.002206 0.00220903 0.00221204 0.00221505 0.00221804 0.00222103 0.002224 0.00222697 0.00222993 0.00223288 0.00223582 0.00223875 0.00224167 0.00224459 0.0022475 0.0022504 0.00225329 0.00225618 0.00225905 0.00226193 0.00226479 0.00226765 0.0022705 0.00227335 0.00227619 0.00227903 0.00228186 0.00228468 0.0022875 0.00229031 0.00229312 0.00229592 0.00229872 0.00230151 0.0023043 0.00230709 0.00230987 0.00231265 0.00231542 0.00231819 0.00232096 0.00232372 0.00232648 0.00232923 0.00233199 0.00233474 0.00233749 0.00234023 0.00234298 0.00234572 0.00234846 0.00235119 0.00235393 0.00235666 0.0023594 0.00236213 0.00236486 0.00236759 0.00237032 0.00237305 0.00237578 0.0023785 0.00238123 0.00238396 0.00238669 0.00238942 0.00239215 +-0.000787778 -0.000709379 -0.000630872 -0.000552261 -0.000473554 -0.000394757 -0.000315876 -0.00023692 -0.000157896 -7.88132E-05 3.19048E-07 7.85773E-05 0.000155017 0.000229651 0.000302495 0.000373561 0.000442864 0.000510416 0.000576231 0.000640323 0.000702703 0.000763387 0.000822385 0.000879712 0.00093538 0.000989402 0.00104179 0.00109256 0.00114172 0.00118929 0.00123528 0.0012797 0.00132256 0.00136389 0.00140368 0.00144196 0.00147875 0.00151404 0.00154787 0.00158025 0.00161118 0.0016407 0.00166882 0.00169555 0.00172093 0.00174497 0.0017677 0.00178915 0.00180934 0.00182832 0.00184613 0.0018628 0.00187838 0.00189293 0.00190651 0.00191917 0.00193097 0.00194199 0.00195228 0.00196192 0.00197097 0.00197948 0.00198752 0.00199513 0.00200236 0.00200926 0.00201585 0.00202217 0.00202825 0.00203411 0.00203978 0.00204527 0.0020506 0.00205578 0.00206082 0.00206575 0.00207055 0.00207526 0.00207986 0.00208438 0.00208881 0.00209317 0.00209745 0.00210167 0.00210582 0.00210991 0.00211394 0.00211792 0.00212185 0.00212574 0.00212958 0.00213337 0.00213713 0.00214085 0.00214453 0.00214818 0.0021518 0.00215538 0.00215894 0.00216247 0.00216597 0.00216944 0.00217289 0.00217631 0.00217972 0.0021831 0.00218645 0.00218979 0.00219311 0.00219641 0.0021997 0.00220296 0.00220621 0.00220944 0.00221266 0.00221586 0.00221904 0.00222222 0.00222537 0.00222852 0.00223165 0.00223477 0.00223788 0.00224097 0.00224406 0.00224713 0.00225019 0.00225324 0.00225628 0.00225931 0.00226233 0.00226534 0.00226834 0.00227134 0.00227432 0.00227729 0.00228026 0.00228322 0.00228617 0.00228911 0.00229205 0.00229497 0.00229789 0.00230081 0.00230371 0.00230661 0.0023095 0.00231239 0.00231527 0.00231814 0.00232101 0.00232387 0.00232673 0.00232958 0.00233243 0.00233527 0.0023381 0.00234093 0.00234376 0.00234658 0.0023494 0.00235221 0.00235502 0.00235783 0.00236063 0.00236343 0.00236622 0.00236901 0.0023718 0.00237459 0.00237737 0.00238015 0.00238293 0.0023857 0.00238848 0.00239125 0.00239402 0.00239678 0.00239955 0.00240232 0.00240508 0.00240784 0.0024106 0.00241337 0.00241613 0.00241889 0.00242165 0.00242441 0.00242717 0.00242993 0.00243269 +-0.000791679 -0.000712941 -0.000634084 -0.000555113 -0.000476034 -0.000396853 -0.000317577 -0.000238211 -0.000158765 -7.92453E-05 3.37946E-07 7.90614E-05 0.000155977 0.0002311 0.000304443 0.000376019 0.000445842 0.000513926 0.000580282 0.000644925 0.000707867 0.000769121 0.000828699 0.000886615 0.000942882 0.000997512 0.00105052 0.00110191 0.00115171 0.00119991 0.00124655 0.00129162 0.00133515 0.00137714 0.00141762 0.00145658 0.00149405 0.00153004 0.00156457 0.00159765 0.00162929 0.00165952 0.00168835 0.0017158 0.00174189 0.00176664 0.00179008 0.00181223 0.00183313 0.0018528 0.00187129 0.00188862 0.00190486 0.00192004 0.00193421 0.00194745 0.0019598 0.00197134 0.00198212 0.00199221 0.00200167 0.00201057 0.00201897 0.00202691 0.00203444 0.00204162 0.00204847 0.00205503 0.00206134 0.00206741 0.00207327 0.00207894 0.00208444 0.00208978 0.00209498 0.00210005 0.002105 0.00210984 0.00211457 0.00211921 0.00212376 0.00212823 0.00213262 0.00213694 0.00214119 0.00214538 0.00214951 0.00215358 0.0021576 0.00216157 0.00216549 0.00216937 0.00217321 0.00217701 0.00218077 0.00218449 0.00218818 0.00219183 0.00219546 0.00219905 0.00220262 0.00220616 0.00220967 0.00221316 0.00221663 0.00222007 0.00222349 0.00222689 0.00223026 0.00223362 0.00223696 0.00224028 0.00224358 0.00224687 0.00225014 0.00225339 0.00225663 0.00225985 0.00226306 0.00226626 0.00226944 0.00227261 0.00227576 0.00227891 0.00228204 0.00228516 0.00228827 0.00229136 0.00229445 0.00229753 0.00230059 0.00230365 0.00230669 0.00230973 0.00231276 0.00231577 0.00231878 0.00232178 0.00232478 0.00232776 0.00233074 0.00233371 0.00233667 0.00233962 0.00234257 0.00234551 0.00234844 0.00235136 0.00235428 0.0023572 0.0023601 0.002363 0.0023659 0.00236879 0.00237167 0.00237455 0.00237742 0.00238029 0.00238315 0.00238601 0.00238887 0.00239172 0.00239456 0.0023974 0.00240024 0.00240307 0.0024059 0.00240873 0.00241155 0.00241437 0.00241719 0.00242 0.00242282 0.00242563 0.00242843 0.00243124 0.00243404 0.00243684 0.00243964 0.00244244 0.00244524 0.00244803 0.00245083 0.00245362 0.00245641 0.00245921 0.002462 0.00246479 0.00246758 0.00247038 0.00247317 +-0.000795482 -0.000716414 -0.000637216 -0.000557894 -0.000478452 -0.000398896 -0.000319233 -0.000239469 -0.00015961 -7.96651E-05 3.57874E-07 7.95351E-05 0.000156916 0.000232515 0.000306346 0.00037842 0.000448753 0.000517356 0.000584242 0.000649424 0.000712916 0.000774729 0.000834876 0.000893371 0.000950224 0.00100545 0.00105906 0.00111107 0.00116148 0.00121032 0.00125759 0.00130331 0.00134749 0.00139014 0.00143128 0.00147091 0.00150906 0.00154574 0.00158095 0.00161472 0.00164706 0.00167799 0.00170752 0.00173568 0.00176248 0.00178794 0.00181208 0.00183494 0.00185653 0.00187689 0.00189606 0.00191406 0.00193095 0.00194676 0.00196155 0.00197537 0.00198828 0.00200035 0.00201163 0.00202219 0.00203209 0.00204139 0.00205016 0.00205844 0.00206629 0.00207376 0.00208088 0.00208769 0.00209423 0.00210052 0.00210658 0.00211244 0.00211812 0.00212363 0.00212899 0.00213421 0.00213931 0.00214428 0.00214915 0.00215391 0.00215858 0.00216316 0.00216767 0.00217209 0.00217645 0.00218074 0.00218496 0.00218913 0.00219324 0.0021973 0.00220131 0.00220527 0.00220919 0.00221307 0.00221691 0.0022207 0.00222447 0.0022282 0.00223189 0.00223556 0.00223919 0.0022428 0.00224637 0.00224993 0.00225345 0.00225696 0.00226044 0.0022639 0.00226733 0.00227075 0.00227414 0.00227752 0.00228088 0.00228422 0.00228754 0.00229085 0.00229414 0.00229742 0.00230068 0.00230393 0.00230716 0.00231038 0.00231358 0.00231677 0.00231995 0.00232312 0.00232627 0.00232942 0.00233255 0.00233567 0.00233878 0.00234188 0.00234497 0.00234805 0.00235112 0.00235419 0.00235724 0.00236028 0.00236332 0.00236634 0.00236936 0.00237237 0.00237537 0.00237837 0.00238135 0.00238433 0.00238731 0.00239027 0.00239323 0.00239618 0.00239913 0.00240207 0.002405 0.00240793 0.00241085 0.00241377 0.00241668 0.00241958 0.00242248 0.00242538 0.00242827 0.00243115 0.00243403 0.00243691 0.00243978 0.00244265 0.00244552 0.00244838 0.00245124 0.00245409 0.00245695 0.00245979 0.00246264 0.00246548 0.00246832 0.00247116 0.002474 0.00247683 0.00247967 0.0024825 0.00248533 0.00248816 0.00249098 0.00249381 0.00249663 0.00249946 0.00250228 0.00250511 0.00250793 0.00251075 0.00251358 +-0.000799189 -0.000719799 -0.000640269 -0.000560603 -0.000480808 -0.000400887 -0.000320847 -0.000240693 -0.000160433 -8.00727E-05 3.78886E-07 7.99986E-05 0.000157834 0.000233898 0.000308204 0.000380766 0.000451596 0.000520708 0.000588112 0.000653823 0.000717853 0.000780214 0.000840919 0.00089998 0.00095741 0.00101322 0.00106742 0.00112003 0.00117106 0.00122051 0.00126841 0.00131476 0.00135958 0.00140288 0.00144467 0.00148497 0.00152379 0.00156113 0.00159703 0.00163148 0.00166451 0.00169613 0.00172636 0.00175521 0.00178271 0.00180886 0.00183371 0.00185726 0.00187954 0.00190059 0.00192044 0.00193911 0.00195665 0.0019731 0.00198851 0.00200293 0.00201641 0.00202902 0.00204081 0.00205185 0.0020622 0.00207192 0.00208107 0.00208971 0.0020979 0.00210567 0.00211307 0.00212015 0.00212692 0.00213344 0.00213971 0.00214577 0.00215164 0.00215732 0.00216285 0.00216822 0.00217347 0.00217858 0.00218358 0.00218848 0.00219327 0.00219797 0.00220259 0.00220713 0.00221159 0.00221598 0.0022203 0.00222457 0.00222877 0.00223292 0.00223702 0.00224107 0.00224507 0.00224903 0.00225294 0.00225682 0.00226066 0.00226446 0.00226823 0.00227196 0.00227567 0.00227934 0.00228298 0.0022866 0.00229019 0.00229376 0.0022973 0.00230082 0.00230432 0.00230779 0.00231125 0.00231468 0.00231809 0.00232149 0.00232487 0.00232823 0.00233157 0.0023349 0.00233821 0.00234151 0.00234479 0.00234806 0.00235132 0.00235456 0.00235779 0.002361 0.0023642 0.00236739 0.00237057 0.00237374 0.0023769 0.00238004 0.00238318 0.0023863 0.00238942 0.00239252 0.00239562 0.00239871 0.00240178 0.00240485 0.00240791 0.00241096 0.00241401 0.00241704 0.00242007 0.00242309 0.0024261 0.00242911 0.00243211 0.0024351 0.00243808 0.00244106 0.00244403 0.002447 0.00244996 0.00245291 0.00245586 0.0024588 0.00246174 0.00246467 0.0024676 0.00247052 0.00247344 0.00247635 0.00247926 0.00248216 0.00248506 0.00248796 0.00249085 0.00249374 0.00249663 0.00249951 0.00250239 0.00250527 0.00250814 0.00251102 0.00251389 0.00251675 0.00251962 0.00252248 0.00252535 0.00252821 0.00253107 0.00253393 0.00253678 0.00253964 0.0025425 0.00254535 0.00254821 0.00255106 0.00255392 +-0.000802802 -0.000723098 -0.000643244 -0.000563244 -0.000483103 -0.000402826 -0.000322418 -0.000241885 -0.000161233 -8.04683E-05 4.01036E-07 8.04523E-05 0.00015873 0.000235249 0.00031002 0.000383058 0.000454375 0.000523983 0.000591895 0.000658124 0.000722681 0.000785579 0.00084683 0.000906447 0.000964441 0.00102082 0.00107561 0.00112881 0.00118043 0.0012305 0.00127901 0.00132598 0.00137143 0.00141537 0.00145781 0.00149875 0.00153823 0.00157624 0.0016128 0.00164793 0.00168163 0.00171394 0.00174485 0.00177439 0.00180258 0.00182943 0.00185496 0.0018792 0.00190218 0.00192391 0.00194443 0.00196376 0.00198196 0.00199905 0.00201508 0.0020301 0.00204417 0.00205733 0.00206964 0.00208118 0.00209199 0.00210215 0.0021117 0.00212072 0.00212924 0.00213733 0.00214503 0.00215238 0.00215941 0.00216616 0.00217265 0.00217892 0.00218498 0.00219084 0.00219654 0.00220208 0.00220747 0.00221273 0.00221787 0.0022229 0.00222782 0.00223265 0.00223738 0.00224203 0.0022466 0.0022511 0.00225553 0.00225989 0.00226419 0.00226843 0.00227262 0.00227675 0.00228084 0.00228488 0.00228888 0.00229283 0.00229675 0.00230062 0.00230446 0.00230827 0.00231205 0.00231579 0.0023195 0.00232318 0.00232684 0.00233047 0.00233407 0.00233765 0.00234121 0.00234475 0.00234826 0.00235175 0.00235522 0.00235867 0.00236211 0.00236552 0.00236892 0.0023723 0.00237567 0.00237902 0.00238235 0.00238567 0.00238897 0.00239226 0.00239554 0.0023988 0.00240205 0.00240529 0.00240852 0.00241173 0.00241493 0.00241812 0.00242131 0.00242447 0.00242763 0.00243078 0.00243392 0.00243705 0.00244017 0.00244328 0.00244639 0.00244948 0.00245256 0.00245564 0.00245871 0.00246177 0.00246482 0.00246787 0.0024709 0.00247394 0.00247696 0.00247998 0.00248299 0.00248599 0.00248899 0.00249198 0.00249497 0.00249795 0.00250092 0.00250389 0.00250685 0.00250981 0.00251276 0.00251571 0.00251866 0.0025216 0.00252453 0.00252747 0.00253039 0.00253332 0.00253624 0.00253916 0.00254207 0.00254498 0.00254789 0.0025508 0.0025537 0.0025566 0.0025595 0.0025624 0.00256529 0.00256818 0.00257108 0.00257397 0.00257686 0.00257975 0.00258263 0.00258552 0.00258841 0.00259129 0.00259418 +-0.000806323 -0.000726312 -0.000646142 -0.000565816 -0.000485338 -0.000404714 -0.000323948 -0.000243045 -0.000162011 -8.0852E-05 4.24383E-07 8.08963E-05 0.000159606 0.000236568 0.000311794 0.000385297 0.000457089 0.000527184 0.000595592 0.000662327 0.0007274 0.000790824 0.000852611 0.000912772 0.00097132 0.00102827 0.00108362 0.0011374 0.00118962 0.00124028 0.00128939 0.00133698 0.00138305 0.00142761 0.00147068 0.00151227 0.00155239 0.00159105 0.00162827 0.00166406 0.00169844 0.00173142 0.00176301 0.00179323 0.0018221 0.00184963 0.00187585 0.00190078 0.00192443 0.00194684 0.00196803 0.00198803 0.00200688 0.00202462 0.00204128 0.0020569 0.00207155 0.00208528 0.00209813 0.00211017 0.00212146 0.00213207 0.00214204 0.00215144 0.00216033 0.00216875 0.00217675 0.00218438 0.00219168 0.00219867 0.0022054 0.00221187 0.00221813 0.00222419 0.00223006 0.00223576 0.00224132 0.00224673 0.00225201 0.00225718 0.00226223 0.00226718 0.00227204 0.0022768 0.00228149 0.00228609 0.00229062 0.00229508 0.00229948 0.00230382 0.0023081 0.00231232 0.0023165 0.00232062 0.0023247 0.00232874 0.00233273 0.00233668 0.0023406 0.00234448 0.00234832 0.00235213 0.00235591 0.00235967 0.00236339 0.00236708 0.00237075 0.00237439 0.00237801 0.00238161 0.00238518 0.00238873 0.00239226 0.00239577 0.00239925 0.00240273 0.00240618 0.00240961 0.00241303 0.00241643 0.00241982 0.00242319 0.00242654 0.00242988 0.00243321 0.00243652 0.00243982 0.0024431 0.00244638 0.00244964 0.00245289 0.00245612 0.00245935 0.00246256 0.00246577 0.00246896 0.00247214 0.00247532 0.00247848 0.00248163 0.00248478 0.00248791 0.00249104 0.00249416 0.00249727 0.00250037 0.00250346 0.00250655 0.00250962 0.00251269 0.00251576 0.00251881 0.00252186 0.0025249 0.00252794 0.00253097 0.00253399 0.00253701 0.00254002 0.00254303 0.00254603 0.00254902 0.00255201 0.002555 0.00255798 0.00256095 0.00256393 0.00256689 0.00256986 0.00257281 0.00257577 0.00257872 0.00258167 0.00258462 0.00258756 0.0025905 0.00259343 0.00259637 0.0025993 0.00260223 0.00260516 0.00260808 0.00261101 0.00261393 0.00261685 0.00261977 0.00262269 0.00262561 0.00262853 0.00263145 0.00263436 +-0.000809754 -0.000729444 -0.000648965 -0.000568321 -0.000487515 -0.000406552 -0.000325437 -0.000244174 -0.000162767 -8.12241E-05 4.48986E-07 8.1331E-05 0.000160462 0.000237857 0.000313526 0.000387484 0.000459741 0.000530311 0.000599205 0.000666435 0.000732014 0.000795954 0.000858265 0.000918961 0.000978052 0.00103555 0.00109147 0.00114582 0.00119861 0.00124985 0.00129956 0.00134775 0.00139443 0.00143961 0.0014833 0.00152552 0.00156628 0.00160558 0.00164345 0.0016799 0.00171493 0.00174857 0.00178083 0.00181172 0.00184127 0.00186948 0.00189637 0.00192198 0.00194631 0.00196939 0.00199125 0.00201191 0.00203142 0.00204979 0.00206708 0.00208332 0.00209857 0.00211286 0.00212626 0.00213882 0.0021506 0.00216167 0.00217207 0.00218187 0.00219113 0.0021999 0.00220822 0.00221615 0.00222372 0.00223097 0.00223793 0.00224463 0.00225109 0.00225734 0.0022634 0.00226928 0.002275 0.00228057 0.002286 0.0022913 0.00229649 0.00230157 0.00230655 0.00231144 0.00231623 0.00232095 0.00232559 0.00233015 0.00233465 0.00233908 0.00234346 0.00234777 0.00235204 0.00235625 0.00236041 0.00236453 0.0023686 0.00237263 0.00237662 0.00238057 0.00238449 0.00238837 0.00239223 0.00239604 0.00239983 0.00240359 0.00240733 0.00241103 0.00241471 0.00241837 0.002422 0.00242561 0.0024292 0.00243276 0.00243631 0.00243983 0.00244334 0.00244683 0.0024503 0.00245375 0.00245719 0.00246061 0.00246402 0.00246741 0.00247078 0.00247415 0.00247749 0.00248083 0.00248415 0.00248745 0.00249075 0.00249403 0.0024973 0.00250056 0.00250381 0.00250705 0.00251028 0.00251349 0.0025167 0.0025199 0.00252308 0.00252626 0.00252943 0.00253259 0.00253574 0.00253888 0.00254202 0.00254514 0.00254826 0.00255137 0.00255447 0.00255757 0.00256065 0.00256374 0.00256681 0.00256988 0.00257294 0.00257599 0.00257904 0.00258208 0.00258512 0.00258815 0.00259118 0.0025942 0.00259722 0.00260023 0.00260323 0.00260624 0.00260923 0.00261223 0.00261522 0.0026182 0.00262119 0.00262417 0.00262714 0.00263011 0.00263308 0.00263605 0.00263902 0.00264198 0.00264494 0.0026479 0.00265085 0.00265381 0.00265676 0.00265972 0.00266267 0.00266562 0.00266857 0.00267152 0.00267447 +-0.000813096 -0.000732494 -0.000651714 -0.00057076 -0.000489634 -0.000408342 -0.000326886 -0.000245271 -0.000163502 -8.15846E-05 4.7491E-07 8.17566E-05 0.000161299 0.000239115 0.000315218 0.000389619 0.000462331 0.000533366 0.000602735 0.000670451 0.000736525 0.000800969 0.000863795 0.000925013 0.000984637 0.00104268 0.00109915 0.00115405 0.00120741 0.00125923 0.00130953 0.00135831 0.00140558 0.00145137 0.00149567 0.00153851 0.00157989 0.00161983 0.00165834 0.00169543 0.00173112 0.00176541 0.00179833 0.00182988 0.00186009 0.00188897 0.00191654 0.00194281 0.00196781 0.00199156 0.00201408 0.00203541 0.00205557 0.00207458 0.0020925 0.00210936 0.0021252 0.00214007 0.00215403 0.00216712 0.00217941 0.00219094 0.00220179 0.00221201 0.00222165 0.00223078 0.00223944 0.00224767 0.00225553 0.00226304 0.00227025 0.00227718 0.00228386 0.00229031 0.00229656 0.00230261 0.0023085 0.00231423 0.00231982 0.00232527 0.0023306 0.00233581 0.00234092 0.00234592 0.00235084 0.00235567 0.00236042 0.00236509 0.00236969 0.00237422 0.00237869 0.0023831 0.00238745 0.00239175 0.002396 0.0024002 0.00240435 0.00240846 0.00241253 0.00241656 0.00242055 0.00242451 0.00242843 0.00243231 0.00243617 0.00244 0.0024438 0.00244757 0.00245131 0.00245503 0.00245872 0.00246239 0.00246603 0.00246966 0.00247326 0.00247684 0.00248041 0.00248395 0.00248748 0.00249098 0.00249447 0.00249794 0.0025014 0.00250484 0.00250827 0.00251168 0.00251507 0.00251846 0.00252183 0.00252518 0.00252852 0.00253185 0.00253517 0.00253847 0.00254177 0.00254505 0.00254832 0.00255158 0.00255483 0.00255807 0.0025613 0.00256452 0.00256773 0.00257093 0.00257413 0.00257731 0.00258048 0.00258365 0.00258681 0.00258996 0.0025931 0.00259623 0.00259936 0.00260248 0.00260559 0.0026087 0.0026118 0.00261489 0.00261797 0.00262105 0.00262413 0.0026272 0.00263026 0.00263332 0.00263637 0.00263941 0.00264246 0.00264549 0.00264853 0.00265156 0.00265458 0.0026576 0.00266062 0.00266363 0.00266664 0.00266965 0.00267265 0.00267565 0.00267865 0.00268164 0.00268464 0.00268763 0.00269062 0.0026936 0.00269659 0.00269957 0.00270256 0.00270554 0.00270852 0.0027115 0.00271448 +-0.00081635 -0.000735464 -0.000654391 -0.000573135 -0.000491697 -0.000410083 -0.000328295 -0.000246338 -0.000164216 -8.19337E-05 5.0222E-07 8.21734E-05 0.000162117 0.000240345 0.00031687 0.000391705 0.000464862 0.000536351 0.000606185 0.000674375 0.000740934 0.000805872 0.000869201 0.000930933 0.000991079 0.00104965 0.00110666 0.00116211 0.00121603 0.00126841 0.00131928 0.00136864 0.00141651 0.00146289 0.0015078 0.00155125 0.00159324 0.00163381 0.00167294 0.00171067 0.00174699 0.00178193 0.0018155 0.00184771 0.00187858 0.00190812 0.00193634 0.00196328 0.00198894 0.00201336 0.00203654 0.00205852 0.00207933 0.00209899 0.00211754 0.00213501 0.00215146 0.00216691 0.00218143 0.00219506 0.00220786 0.00221988 0.00223119 0.00224184 0.00225188 0.00226138 0.00227038 0.00227894 0.00228709 0.00229488 0.00230234 0.00230951 0.00231641 0.00232308 0.00232952 0.00233576 0.00234183 0.00234772 0.00235347 0.00235907 0.00236454 0.00236989 0.00237513 0.00238026 0.0023853 0.00239024 0.0023951 0.00239988 0.00240459 0.00240922 0.00241379 0.00241829 0.00242274 0.00242713 0.00243146 0.00243574 0.00243998 0.00244417 0.00244832 0.00245243 0.00245649 0.00246052 0.00246451 0.00246847 0.0024724 0.00247629 0.00248016 0.00248399 0.0024878 0.00249158 0.00249533 0.00249906 0.00250277 0.00250645 0.00251011 0.00251375 0.00251737 0.00252097 0.00252455 0.00252811 0.00253165 0.00253518 0.00253869 0.00254218 0.00254565 0.00254911 0.00255256 0.00255599 0.00255941 0.00256281 0.0025662 0.00256958 0.00257294 0.00257629 0.00257963 0.00258296 0.00258627 0.00258958 0.00259287 0.00259615 0.00259943 0.00260269 0.00260594 0.00260918 0.00261242 0.00261564 0.00261886 0.00262206 0.00262526 0.00262845 0.00263163 0.00263481 0.00263797 0.00264113 0.00264428 0.00264743 0.00265056 0.00265369 0.00265682 0.00265993 0.00266304 0.00266615 0.00266925 0.00267234 0.00267543 0.00267851 0.00268159 0.00268466 0.00268773 0.00269079 0.00269385 0.00269691 0.00269996 0.002703 0.00270605 0.00270909 0.00271212 0.00271516 0.00271819 0.00272122 0.00272424 0.00272727 0.00273029 0.00273331 0.00273632 0.00273934 0.00274235 0.00274537 0.00274838 0.00275139 0.0027544 +-0.000819518 -0.000738355 -0.000656997 -0.000575446 -0.000493705 -0.000411777 -0.000329666 -0.000247375 -0.000164909 -8.22714E-05 5.30987E-07 8.25818E-05 0.000162916 0.000241546 0.000318484 0.000393743 0.000467333 0.000539266 0.000609555 0.00067821 0.000745243 0.000810666 0.000874488 0.000936723 0.000997381 0.00105647 0.00111401 0.00117 0.00122447 0.00127741 0.00132884 0.00137877 0.00142721 0.00147418 0.00151968 0.00156373 0.00160633 0.00164751 0.00168727 0.00172562 0.00176257 0.00179815 0.00183236 0.00186521 0.00189673 0.00192692 0.0019558 0.00198339 0.00200971 0.00203478 0.00205862 0.00208125 0.0021027 0.002123 0.00214218 0.00216028 0.00217733 0.00219337 0.00220846 0.00222264 0.00223596 0.00224848 0.00226025 0.00227134 0.0022818 0.00229168 0.00230105 0.00230993 0.00231839 0.00232647 0.0023342 0.00234162 0.00234876 0.00235564 0.00236228 0.00236872 0.00237496 0.00238103 0.00238694 0.00239269 0.00239831 0.0024038 0.00240918 0.00241444 0.0024196 0.00242467 0.00242964 0.00243453 0.00243934 0.00244408 0.00244875 0.00245335 0.00245789 0.00246237 0.00246679 0.00247117 0.00247549 0.00247976 0.00248399 0.00248817 0.00249231 0.00249642 0.00250048 0.00250451 0.00250851 0.00251247 0.0025164 0.0025203 0.00252418 0.00252802 0.00253184 0.00253563 0.00253939 0.00254314 0.00254685 0.00255055 0.00255423 0.00255788 0.00256152 0.00256513 0.00256873 0.00257231 0.00257587 0.00257941 0.00258294 0.00258645 0.00258994 0.00259342 0.00259689 0.00260034 0.00260378 0.0026072 0.00261061 0.00261401 0.00261739 0.00262077 0.00262413 0.00262747 0.00263081 0.00263414 0.00263745 0.00264076 0.00264405 0.00264734 0.00265061 0.00265388 0.00265714 0.00266038 0.00266362 0.00266685 0.00267007 0.00267329 0.00267649 0.00267969 0.00268288 0.00268606 0.00268923 0.0026924 0.00269556 0.00269872 0.00270187 0.00270501 0.00270814 0.00271127 0.0027144 0.00271752 0.00272063 0.00272374 0.00272684 0.00272994 0.00273303 0.00273612 0.00273921 0.00274229 0.00274536 0.00274844 0.00275151 0.00275457 0.00275764 0.0027607 0.00276376 0.00276681 0.00276987 0.00277292 0.00277597 0.00277901 0.00278206 0.00278511 0.00278815 0.00279119 0.00279423 +-0.000822602 -0.000741169 -0.000659533 -0.000577694 -0.000495657 -0.000413424 -0.000330999 -0.000248383 -0.000165581 -8.25981E-05 5.61283E-07 8.29819E-05 0.000163697 0.000242719 0.00032006 0.000395732 0.000469747 0.000542115 0.000612848 0.000681958 0.000749455 0.000815351 0.000879658 0.000942385 0.00100354 0.00106315 0.0011212 0.00117773 0.00123273 0.00128621 0.00133819 0.00138869 0.0014377 0.00148524 0.00153133 0.00157596 0.00161917 0.00166095 0.00170131 0.00174028 0.00177786 0.00181406 0.0018489 0.00188239 0.00191454 0.00194538 0.00197491 0.00200315 0.00203012 0.00205584 0.00208032 0.0021036 0.0021257 0.00214663 0.00216644 0.00218516 0.00220281 0.00221945 0.00223511 0.00224984 0.0022637 0.00227673 0.00228898 0.00230053 0.00231141 0.00232169 0.00233142 0.00234066 0.00234944 0.00235782 0.00236582 0.0023735 0.00238088 0.00238798 0.00239484 0.00240148 0.00240791 0.00241415 0.00242023 0.00242614 0.00243191 0.00243755 0.00244306 0.00244846 0.00245375 0.00245894 0.00246403 0.00246903 0.00247395 0.0024788 0.00248357 0.00248827 0.00249291 0.00249748 0.00250199 0.00250645 0.00251086 0.00251522 0.00251953 0.00252379 0.00252801 0.00253219 0.00253633 0.00254043 0.0025445 0.00254853 0.00255253 0.0025565 0.00256044 0.00256435 0.00256823 0.00257208 0.00257591 0.00257971 0.00258349 0.00258724 0.00259098 0.00259469 0.00259838 0.00260205 0.0026057 0.00260933 0.00261294 0.00261654 0.00262012 0.00262368 0.00262722 0.00263075 0.00263427 0.00263777 0.00264125 0.00264472 0.00264818 0.00265162 0.00265505 0.00265847 0.00266188 0.00266527 0.00266865 0.00267202 0.00267538 0.00267873 0.00268207 0.0026854 0.00268871 0.00269202 0.00269532 0.00269861 0.00270188 0.00270515 0.00270842 0.00271167 0.00271491 0.00271815 0.00272138 0.0027246 0.00272781 0.00273102 0.00273421 0.00273741 0.00274059 0.00274377 0.00274694 0.00275011 0.00275327 0.00275642 0.00275957 0.00276271 0.00276585 0.00276899 0.00277211 0.00277524 0.00277836 0.00278147 0.00278458 0.00278769 0.00279079 0.00279389 0.00279699 0.00280008 0.00280317 0.00280626 0.00280935 0.00281243 0.00281551 0.00281859 0.00282167 0.00282475 0.00282782 0.00283089 0.00283397 +-0.000825603 -0.000743907 -0.000661999 -0.000579882 -0.000497556 -0.000415026 -0.000332294 -0.000249362 -0.000166234 -8.29136E-05 5.93185E-07 8.3374E-05 0.00016446 0.000243865 0.000321599 0.000397675 0.000472104 0.000544897 0.000616065 0.000685619 0.000753571 0.000819931 0.000884711 0.000947922 0.00100957 0.00106968 0.00112824 0.00118528 0.00124081 0.00129483 0.00134736 0.0013984 0.00144797 0.00149608 0.00154274 0.00158796 0.00163175 0.00167412 0.00171509 0.00175466 0.00179285 0.00182967 0.00186513 0.00189925 0.00193204 0.00196351 0.00199367 0.00202256 0.00205017 0.00207653 0.00210166 0.00212558 0.00214831 0.00216988 0.00219032 0.00220965 0.00222791 0.00224515 0.00226139 0.00227668 0.00229107 0.00230462 0.00231737 0.00232938 0.0023407 0.00235139 0.00236151 0.0023711 0.00238021 0.0023889 0.0023972 0.00240514 0.00241277 0.00242011 0.00242718 0.00243403 0.00244065 0.00244708 0.00245333 0.00245941 0.00246534 0.00247112 0.00247678 0.00248231 0.00248773 0.00249304 0.00249826 0.00250338 0.00250841 0.00251337 0.00251824 0.00252304 0.00252778 0.00253245 0.00253706 0.00254161 0.0025461 0.00255054 0.00255493 0.00255928 0.00256358 0.00256784 0.00257205 0.00257623 0.00258037 0.00258447 0.00258854 0.00259257 0.00259658 0.00260055 0.0026045 0.00260841 0.0026123 0.00261617 0.00262 0.00262382 0.00262761 0.00263138 0.00263512 0.00263885 0.00264256 0.00264624 0.00264991 0.00265356 0.00265719 0.0026608 0.00266439 0.00266797 0.00267154 0.00267509 0.00267862 0.00268214 0.00268564 0.00268913 0.00269261 0.00269607 0.00269952 0.00270296 0.00270639 0.0027098 0.00271321 0.0027166 0.00271998 0.00272335 0.00272671 0.00273006 0.0027334 0.00273672 0.00274004 0.00274335 0.00274666 0.00274995 0.00275323 0.00275651 0.00275977 0.00276303 0.00276628 0.00276953 0.00277276 0.00277599 0.00277922 0.00278243 0.00278564 0.00278884 0.00279204 0.00279523 0.00279841 0.00280159 0.00280477 0.00280793 0.0028111 0.00281425 0.00281741 0.00282056 0.0028237 0.00282684 0.00282998 0.00283311 0.00283624 0.00283937 0.00284249 0.00284561 0.00284873 0.00285185 0.00285496 0.00285807 0.00286118 0.00286429 0.00286739 0.0028705 0.0028736 +-0.000828523 -0.000746571 -0.000664399 -0.000582009 -0.000499403 -0.000416583 -0.000333552 -0.000250312 -0.000166866 -8.32182E-05 6.26773E-07 8.37584E-05 0.000165207 0.000244984 0.000323102 0.000399572 0.000474406 0.000547614 0.000619207 0.000689196 0.000757593 0.000824408 0.000889652 0.000953335 0.00101547 0.00107606 0.00113513 0.00119268 0.00124872 0.00130327 0.00135633 0.00140791 0.00145803 0.0015067 0.00155392 0.00159971 0.00164408 0.00168703 0.00172859 0.00176876 0.00180755 0.00184498 0.00188106 0.0019158 0.00194921 0.0019813 0.0020121 0.00204162 0.00206987 0.00209686 0.00212263 0.00214718 0.00217055 0.00219275 0.00221381 0.00223376 0.00225263 0.00227046 0.00228728 0.00230314 0.00231808 0.00233215 0.0023454 0.00235789 0.00236966 0.00238077 0.00239129 0.00240125 0.00241071 0.00241972 0.00242831 0.00243653 0.00244442 0.002452 0.00245931 0.00246636 0.00247319 0.00247981 0.00248623 0.00249249 0.00249858 0.00250452 0.00251032 0.00251599 0.00252154 0.00252699 0.00253233 0.00253757 0.00254272 0.00254778 0.00255276 0.00255767 0.0025625 0.00256727 0.00257197 0.00257662 0.0025812 0.00258573 0.00259021 0.00259463 0.00259901 0.00260335 0.00260764 0.00261189 0.00261611 0.00262028 0.00262442 0.00262853 0.0026326 0.00263664 0.00264065 0.00264463 0.00264858 0.0026525 0.0026564 0.00266028 0.00266413 0.00266795 0.00267176 0.00267554 0.0026793 0.00268304 0.00268676 0.00269046 0.00269414 0.00269781 0.00270145 0.00270508 0.0027087 0.0027123 0.00271588 0.00271944 0.002723 0.00272653 0.00273006 0.00273357 0.00273706 0.00274055 0.00274402 0.00274748 0.00275092 0.00275436 0.00275778 0.0027612 0.0027646 0.00276799 0.00277137 0.00277474 0.0027781 0.00278145 0.00278479 0.00278812 0.00279145 0.00279476 0.00279807 0.00280137 0.00280466 0.00280794 0.00281121 0.00281448 0.00281774 0.00282099 0.00282424 0.00282747 0.00283071 0.00283393 0.00283715 0.00284037 0.00284358 0.00284678 0.00284998 0.00285317 0.00285636 0.00285954 0.00286272 0.00286589 0.00286906 0.00287223 0.00287539 0.00287855 0.00288171 0.00288486 0.00288801 0.00289116 0.0028943 0.00289745 0.00290059 0.00290372 0.00290686 0.00291 0.00291313 +-0.000831362 -0.000749161 -0.000666732 -0.000584077 -0.000501197 -0.000418096 -0.000334774 -0.000251234 -0.000167479 -8.3512E-05 6.62132E-07 8.41355E-05 0.000165936 0.000246077 0.00032457 0.000401425 0.000476654 0.000550267 0.000622276 0.000692691 0.000761523 0.000828783 0.000894481 0.000958628 0.00102123 0.00108231 0.00114187 0.00119992 0.00125647 0.00131153 0.00136511 0.00141723 0.00146788 0.0015171 0.00156487 0.00161122 0.00165616 0.00169969 0.00174183 0.00178259 0.00182198 0.00186001 0.00189669 0.00193203 0.00196606 0.00199878 0.0020302 0.00206034 0.00208921 0.00211684 0.00214324 0.00216842 0.00219242 0.00221524 0.00223692 0.00225749 0.00227697 0.00229539 0.0023128 0.00232922 0.00234471 0.00235932 0.00237308 0.00238605 0.00239828 0.00240983 0.00242076 0.0024311 0.00244092 0.00245026 0.00245916 0.00246767 0.00247583 0.00248366 0.0024912 0.00249848 0.00250552 0.00251233 0.00251894 0.00252537 0.00253162 0.00253772 0.00254368 0.00254949 0.00255519 0.00256076 0.00256623 0.00257159 0.00257686 0.00258204 0.00258713 0.00259214 0.00259708 0.00260195 0.00260675 0.00261148 0.00261616 0.00262078 0.00262534 0.00262985 0.00263431 0.00263873 0.0026431 0.00264743 0.00265172 0.00265596 0.00266017 0.00266435 0.00266849 0.0026726 0.00267667 0.00268072 0.00268473 0.00268872 0.00269268 0.00269661 0.00270052 0.00270441 0.00270827 0.00271211 0.00271592 0.00271972 0.00272349 0.00272725 0.00273098 0.0027347 0.0027384 0.00274208 0.00274574 0.00274939 0.00275302 0.00275664 0.00276024 0.00276382 0.00276739 0.00277095 0.00277449 0.00277802 0.00278154 0.00278504 0.00278853 0.00279201 0.00279548 0.00279893 0.00280238 0.00280581 0.00280923 0.00281264 0.00281605 0.00281944 0.00282282 0.00282619 0.00282956 0.00283291 0.00283625 0.00283959 0.00284292 0.00284624 0.00284955 0.00285286 0.00285615 0.00285944 0.00286272 0.002866 0.00286927 0.00287253 0.00287579 0.00287904 0.00288228 0.00288552 0.00288875 0.00289198 0.0028952 0.00289842 0.00290163 0.00290484 0.00290804 0.00291124 0.00291444 0.00291763 0.00292082 0.002924 0.00292719 0.00293037 0.00293354 0.00293672 0.00293989 0.00294306 0.00294623 0.00294939 0.00295256 +-0.000834123 -0.000751679 -0.000668999 -0.000586086 -0.000502941 -0.000419565 -0.00033596 -0.000252129 -0.000168073 -8.3795E-05 6.99348E-07 8.45053E-05 0.00016665 0.000247145 0.000326003 0.000403234 0.000478849 0.000552859 0.000625274 0.000696105 0.000765363 0.000833059 0.000899202 0.000963803 0.00102687 0.00108842 0.00114846 0.001207 0.00126404 0.00131961 0.00137371 0.00142635 0.00147754 0.00152729 0.00157561 0.00162251 0.00166801 0.0017121 0.00175482 0.00179615 0.00183612 0.00187474 0.00191202 0.00194797 0.0019826 0.00201593 0.00204796 0.00207872 0.00210822 0.00213647 0.00216349 0.00218929 0.00221391 0.00223736 0.00225966 0.00228083 0.00230092 0.00231994 0.00233793 0.00235493 0.00237098 0.00238612 0.00240039 0.00241386 0.00242657 0.00243856 0.00244991 0.00246064 0.00247083 0.00248052 0.00248974 0.00249855 0.00250699 0.00251508 0.00252287 0.00253037 0.00253762 0.00254464 0.00255144 0.00255805 0.00256448 0.00257074 0.00257685 0.00258281 0.00258865 0.00259436 0.00259996 0.00260544 0.00261083 0.00261613 0.00262133 0.00262646 0.0026315 0.00263647 0.00264137 0.0026462 0.00265097 0.00265568 0.00266033 0.00266493 0.00266947 0.00267397 0.00267842 0.00268282 0.00268719 0.00269151 0.00269579 0.00270004 0.00270425 0.00270842 0.00271257 0.00271668 0.00272076 0.00272481 0.00272883 0.00273283 0.0027368 0.00274074 0.00274466 0.00274856 0.00275243 0.00275628 0.00276011 0.00276392 0.00276771 0.00277148 0.00277523 0.00277896 0.00278267 0.00278637 0.00279005 0.00279372 0.00279736 0.002801 0.00280461 0.00280822 0.00281181 0.00281538 0.00281894 0.00282249 0.00282603 0.00282955 0.00283306 0.00283656 0.00284005 0.00284352 0.00284699 0.00285044 0.00285388 0.00285731 0.00286074 0.00286415 0.00286755 0.00287095 0.00287433 0.00287771 0.00288107 0.00288443 0.00288778 0.00289112 0.00289446 0.00289779 0.0029011 0.00290442 0.00290772 0.00291102 0.00291431 0.0029176 0.00292088 0.00292415 0.00292742 0.00293068 0.00293394 0.00293719 0.00294043 0.00294368 0.00294691 0.00295015 0.00295337 0.0029566 0.00295982 0.00296304 0.00296625 0.00296946 0.00297267 0.00297588 0.00297908 0.00298228 0.00298548 0.00298868 0.00299187 +-0.000836806 -0.000754126 -0.000671203 -0.000588038 -0.000504634 -0.000420991 -0.000337111 -0.000252996 -0.000168647 -8.40673E-05 7.38514E-07 8.48683E-05 0.000167348 0.000248189 0.000327403 0.000405 0.000480992 0.000555389 0.000628202 0.00069944 0.000769115 0.000837237 0.000903816 0.000968862 0.00103239 0.0010944 0.00115491 0.00121392 0.00127146 0.00132752 0.00138213 0.00143528 0.00148699 0.00153726 0.00158612 0.00163357 0.00167961 0.00172427 0.00176754 0.00180945 0.00185 0.0018892 0.00192706 0.0019636 0.00199883 0.00203276 0.0020654 0.00209677 0.00212688 0.00215574 0.00218338 0.00220981 0.00223504 0.0022591 0.00228201 0.0023038 0.00232449 0.0023441 0.00236268 0.00238025 0.00239686 0.00241254 0.00242735 0.00244132 0.0024545 0.00246696 0.00247873 0.00248987 0.00250044 0.00251048 0.00252004 0.00252916 0.00253789 0.00254625 0.00255429 0.00256203 0.0025695 0.00257673 0.00258373 0.00259052 0.00259713 0.00260356 0.00260983 0.00261595 0.00262193 0.00262778 0.00263351 0.00263913 0.00264464 0.00265005 0.00265537 0.00266061 0.00266576 0.00267083 0.00267583 0.00268076 0.00268563 0.00269043 0.00269517 0.00269985 0.00270449 0.00270907 0.0027136 0.00271808 0.00272252 0.00272692 0.00273128 0.0027356 0.00273988 0.00274412 0.00274833 0.00275251 0.00275665 0.00276077 0.00276486 0.00276891 0.00277294 0.00277695 0.00278093 0.00278488 0.00278881 0.00279272 0.0027966 0.00280047 0.00280431 0.00280813 0.00281193 0.00281572 0.00281948 0.00282323 0.00282696 0.00283068 0.00283437 0.00283805 0.00284172 0.00284537 0.002849 0.00285263 0.00285623 0.00285983 0.00286341 0.00286697 0.00287053 0.00287407 0.0028776 0.00288112 0.00288462 0.00288812 0.0028916 0.00289508 0.00289854 0.00290199 0.00290544 0.00290887 0.00291229 0.00291571 0.00291912 0.00292251 0.0029259 0.00292928 0.00293265 0.00293602 0.00293937 0.00294272 0.00294606 0.0029494 0.00295273 0.00295605 0.00295936 0.00296267 0.00296597 0.00296927 0.00297256 0.00297585 0.00297913 0.0029824 0.00298567 0.00298894 0.0029922 0.00299546 0.00299871 0.00300196 0.00300521 0.00300845 0.00301169 0.00301493 0.00301816 0.0030214 0.00302463 0.00302786 0.00303108 +-0.000839414 -0.000756503 -0.000673343 -0.000589934 -0.000506278 -0.000422376 -0.000338228 -0.000253836 -0.000169202 -8.4329E-05 7.79727E-07 8.52248E-05 0.00016803 0.000249208 0.000328769 0.000406725 0.000483085 0.00055786 0.000631061 0.000702698 0.00077278 0.000841319 0.000908325 0.000973807 0.00103778 0.00110024 0.00116121 0.0012207 0.00127872 0.00133527 0.00139037 0.00144402 0.00149624 0.00154704 0.00159642 0.0016444 0.00169099 0.00173619 0.00178002 0.00182249 0.0018636 0.00190338 0.00194182 0.00197894 0.00201476 0.00204928 0.00208252 0.00211449 0.00214521 0.00217468 0.00220293 0.00222996 0.00225581 0.00228048 0.002304 0.00232639 0.00234768 0.00236789 0.00238705 0.0024052 0.00242237 0.0024386 0.00245393 0.00246841 0.00248209 0.00249501 0.00250722 0.00251878 0.00252974 0.00254015 0.00255005 0.0025595 0.00256852 0.00257716 0.00258546 0.00259345 0.00260115 0.00260859 0.0026158 0.00262279 0.00262957 0.00263618 0.00264261 0.00264889 0.00265502 0.00266101 0.00266688 0.00267263 0.00267827 0.00268381 0.00268925 0.00269459 0.00269986 0.00270504 0.00271014 0.00271517 0.00272013 0.00272502 0.00272986 0.00273463 0.00273935 0.00274402 0.00274863 0.0027532 0.00275771 0.00276219 0.00276662 0.00277101 0.00277537 0.00277968 0.00278396 0.00278821 0.00279242 0.0027966 0.00280075 0.00280487 0.00280896 0.00281302 0.00281706 0.00282107 0.00282506 0.00282903 0.00283297 0.00283689 0.00284078 0.00284466 0.00284852 0.00285235 0.00285617 0.00285997 0.00286375 0.00286751 0.00287126 0.00287499 0.0028787 0.0028824 0.00288608 0.00288975 0.0028934 0.00289704 0.00290067 0.00290428 0.00290788 0.00291146 0.00291504 0.0029186 0.00292215 0.00292568 0.00292921 0.00293272 0.00293623 0.00293972 0.00294321 0.00294668 0.00295014 0.0029536 0.00295704 0.00296048 0.0029639 0.00296732 0.00297073 0.00297413 0.00297753 0.00298091 0.00298429 0.00298766 0.00299103 0.00299438 0.00299773 0.00300108 0.00300441 0.00300774 0.00301107 0.00301439 0.0030177 0.00302101 0.00302432 0.00302762 0.00303091 0.0030342 0.00303749 0.00304077 0.00304405 0.00304733 0.0030506 0.00305387 0.00305713 0.0030604 0.00306366 0.00306692 0.00307018 +-0.000841946 -0.000758812 -0.000675421 -0.000591775 -0.000507874 -0.000423719 -0.00033931 -0.00025465 -0.000169739 -8.45802E-05 8.23087E-07 8.55748E-05 0.000168698 0.000250204 0.000330104 0.000408409 0.000485129 0.000560273 0.000633854 0.000705879 0.000776361 0.000845308 0.000912731 0.00097864 0.00104304 0.00110595 0.00116738 0.00122733 0.00128582 0.00134285 0.00139843 0.00145258 0.0015053 0.00155661 0.00160651 0.00165502 0.00170213 0.00174787 0.00179225 0.00183527 0.00187694 0.00191728 0.00195629 0.00199399 0.00203039 0.0020655 0.00209933 0.00213189 0.0021632 0.00219328 0.00222213 0.00224977 0.00227622 0.0023015 0.00232562 0.00234861 0.0023705 0.0023913 0.00241105 0.00242977 0.0024475 0.00246428 0.00248015 0.00249514 0.00250932 0.00252271 0.00253538 0.00254737 0.00255873 0.00256952 0.00257977 0.00258955 0.00259888 0.00260781 0.00261639 0.00262463 0.00263256 0.00264023 0.00264764 0.00265483 0.00266181 0.00266859 0.00267519 0.00268163 0.00268791 0.00269406 0.00270007 0.00270595 0.00271172 0.00271739 0.00272295 0.00272841 0.00273378 0.00273907 0.00274428 0.00274941 0.00275447 0.00275947 0.00276439 0.00276926 0.00277406 0.00277882 0.00278351 0.00278816 0.00279276 0.00279731 0.00280182 0.00280629 0.00281071 0.0028151 0.00281945 0.00282376 0.00282804 0.00283229 0.0028365 0.00284069 0.00284484 0.00284897 0.00285307 0.00285714 0.00286119 0.00286521 0.0028692 0.00287318 0.00287713 0.00288106 0.00288497 0.00288886 0.00289273 0.00289658 0.00290041 0.00290423 0.00290802 0.0029118 0.00291556 0.00291931 0.00292304 0.00292675 0.00293045 0.00293414 0.00293781 0.00294146 0.00294511 0.00294874 0.00295235 0.00295596 0.00295955 0.00296313 0.0029667 0.00297025 0.0029738 0.00297733 0.00298086 0.00298437 0.00298787 0.00299137 0.00299485 0.00299833 0.00300179 0.00300525 0.00300869 0.00301213 0.00301556 0.00301899 0.0030224 0.00302581 0.00302921 0.0030326 0.00303599 0.00303937 0.00304274 0.00304611 0.00304947 0.00305282 0.00305617 0.00305951 0.00306285 0.00306618 0.00306951 0.00307283 0.00307615 0.00307947 0.00308278 0.00308609 0.00308939 0.00309269 0.00309599 0.00309928 0.00310258 0.00310587 0.00310915 +-0.000844405 -0.000761053 -0.000677438 -0.000593561 -0.000509422 -0.000425021 -0.000340359 -0.000255438 -0.000170258 -8.48208E-05 8.68701E-07 8.59189E-05 0.000169351 0.000251177 0.000331408 0.000410053 0.000487123 0.000562629 0.00063658 0.000708987 0.000779858 0.000849205 0.000917037 0.000983364 0.0010482 0.00111154 0.00117341 0.00123381 0.00129276 0.00135026 0.00140632 0.00146096 0.00151418 0.00156598 0.00161639 0.00166541 0.00171305 0.00175933 0.00180424 0.0018478 0.00189002 0.00193091 0.00197049 0.00200876 0.00204573 0.00208141 0.00211582 0.00214897 0.00218087 0.00221154 0.00224099 0.00226922 0.00229627 0.00232215 0.00234687 0.00237046 0.00239294 0.00241433 0.00243466 0.00245396 0.00247226 0.00248959 0.00250599 0.00252151 0.00253619 0.00255006 0.00256319 0.00257562 0.00258739 0.00259857 0.00260919 0.00261931 0.00262896 0.0026382 0.00264705 0.00265555 0.00266373 0.00267163 0.00267926 0.00268665 0.00269382 0.00270079 0.00270757 0.00271417 0.00272062 0.00272691 0.00273306 0.00273909 0.00274499 0.00275078 0.00275647 0.00276205 0.00276754 0.00277294 0.00277826 0.00278349 0.00278866 0.00279375 0.00279877 0.00280373 0.00280862 0.00281346 0.00281825 0.00282298 0.00282766 0.00283229 0.00283688 0.00284142 0.00284592 0.00285038 0.0028548 0.00285918 0.00286353 0.00286784 0.00287212 0.00287637 0.00288059 0.00288478 0.00288894 0.00289307 0.00289717 0.00290125 0.00290531 0.00290934 0.00291335 0.00291733 0.0029213 0.00292524 0.00292916 0.00293306 0.00293695 0.00294081 0.00294466 0.00294849 0.0029523 0.00295609 0.00295987 0.00296363 0.00296737 0.00297111 0.00297482 0.00297852 0.00298221 0.00298588 0.00298955 0.00299319 0.00299683 0.00300045 0.00300406 0.00300766 0.00301125 0.00301482 0.00301839 0.00302194 0.00302548 0.00302902 0.00303254 0.00303605 0.00303956 0.00304305 0.00304654 0.00305001 0.00305348 0.00305694 0.00306039 0.00306384 0.00306727 0.0030707 0.00307412 0.00307754 0.00308095 0.00308435 0.00308774 0.00309113 0.00309451 0.00309789 0.00310126 0.00310463 0.00310799 0.00311135 0.0031147 0.00311805 0.00312139 0.00312473 0.00312806 0.0031314 0.00313473 0.00313805 0.00314138 0.0031447 0.00314801 +-0.000846791 -0.000763228 -0.000679395 -0.000595293 -0.000510922 -0.000426283 -0.000341375 -0.0002562 -0.000170758 -8.50511E-05 9.16678E-07 8.62572E-05 0.00016999 0.000252128 0.00033268 0.000411658 0.000489071 0.000564929 0.000639243 0.000712021 0.000783275 0.000853012 0.000921245 0.000987981 0.00105323 0.001117 0.00117931 0.00124016 0.00129956 0.00135752 0.00141405 0.00146916 0.00152286 0.00157516 0.00162607 0.0016756 0.00172375 0.00177055 0.00181599 0.00186008 0.00190285 0.00194429 0.00198441 0.00202324 0.00206077 0.00209703 0.00213201 0.00216574 0.00219822 0.00222947 0.00225951 0.00228834 0.00231598 0.00234245 0.00236777 0.00239195 0.00241501 0.00243699 0.0024579 0.00247777 0.00249663 0.00251452 0.00253147 0.00254751 0.00256269 0.00257706 0.00259065 0.00260353 0.00261573 0.0026273 0.0026383 0.00264877 0.00265876 0.0026683 0.00267744 0.00268621 0.00269465 0.00270279 0.00271065 0.00271825 0.00272562 0.00273277 0.00273973 0.00274651 0.00275311 0.00275956 0.00276587 0.00277204 0.00277808 0.002784 0.00278981 0.00279552 0.00280112 0.00280664 0.00281206 0.00281741 0.00282267 0.00282786 0.00283298 0.00283804 0.00284302 0.00284795 0.00285282 0.00285764 0.0028624 0.00286712 0.00287178 0.0028764 0.00288098 0.00288551 0.00289 0.00289446 0.00289887 0.00290325 0.0029076 0.00291191 0.0029162 0.00292045 0.00292467 0.00292886 0.00293303 0.00293717 0.00294128 0.00294537 0.00294943 0.00295347 0.00295749 0.00296149 0.00296546 0.00296942 0.00297335 0.00297727 0.00298116 0.00298504 0.0029889 0.00299274 0.00299657 0.00300038 0.00300417 0.00300795 0.00301171 0.00301546 0.00301919 0.00302291 0.00302661 0.0030303 0.00303398 0.00303765 0.0030413 0.00304494 0.00304857 0.00305219 0.00305579 0.00305939 0.00306297 0.00306654 0.00307011 0.00307366 0.0030772 0.00308073 0.00308426 0.00308777 0.00309128 0.00309477 0.00309826 0.00310174 0.00310522 0.00310868 0.00311214 0.00311559 0.00311903 0.00312247 0.0031259 0.00312932 0.00313274 0.00313615 0.00313955 0.00314295 0.00314635 0.00314974 0.00315312 0.0031565 0.00315988 0.00316325 0.00316662 0.00316998 0.00317334 0.0031767 0.00318005 0.00318341 0.00318675 +-0.000849106 -0.000765338 -0.000681293 -0.000596973 -0.000512377 -0.000427505 -0.000342358 -0.000256936 -0.00017124 -8.52709E-05 9.67135E-07 8.659E-05 0.000170616 0.000253057 0.000333923 0.000413225 0.000490973 0.000567175 0.000641843 0.000714985 0.000786611 0.000856732 0.000925355 0.000992492 0.00105815 0.00112234 0.00118508 0.00124636 0.0013062 0.00136462 0.00142161 0.00147719 0.00153137 0.00158415 0.00163555 0.00168558 0.00173424 0.00178154 0.0018275 0.00187212 0.00191542 0.0019574 0.00199807 0.00203745 0.00207553 0.00211235 0.0021479 0.0021822 0.00221526 0.00224709 0.0022777 0.00230711 0.00233534 0.0023624 0.0023883 0.00241307 0.00243672 0.00245928 0.00248077 0.00250121 0.00252064 0.00253908 0.00255656 0.00257314 0.00258883 0.0026037 0.00261777 0.0026311 0.00264373 0.00265571 0.0026671 0.00267793 0.00268826 0.00269812 0.00270756 0.00271662 0.00272532 0.0027337 0.00274179 0.00274961 0.00275719 0.00276454 0.00277168 0.00277863 0.00278541 0.00279202 0.00279847 0.00280479 0.00281097 0.00281703 0.00282297 0.0028288 0.00283453 0.00284016 0.0028457 0.00285115 0.00285652 0.00286181 0.00286703 0.00287218 0.00287726 0.00288228 0.00288724 0.00289214 0.00289699 0.00290179 0.00290653 0.00291123 0.00291588 0.00292049 0.00292506 0.00292958 0.00293407 0.00293852 0.00294293 0.00294732 0.00295166 0.00295598 0.00296026 0.00296452 0.00296874 0.00297294 0.00297711 0.00298126 0.00298538 0.00298948 0.00299355 0.0029976 0.00300163 0.00300564 0.00300963 0.00301359 0.00301754 0.00302147 0.00302538 0.00302927 0.00303314 0.003037 0.00304084 0.00304466 0.00304847 0.00305226 0.00305604 0.00305981 0.00306355 0.00306729 0.00307101 0.00307472 0.00307841 0.0030821 0.00308577 0.00308943 0.00309307 0.00309671 0.00310033 0.00310394 0.00310755 0.00311114 0.00311472 0.00311829 0.00312185 0.00312541 0.00312895 0.00313248 0.00313601 0.00313953 0.00314304 0.00314654 0.00315003 0.00315352 0.00315699 0.00316047 0.00316393 0.00316739 0.00317084 0.00317428 0.00317772 0.00318116 0.00318459 0.00318801 0.00319143 0.00319484 0.00319825 0.00320165 0.00320505 0.00320845 0.00321184 0.00321523 0.00321861 0.00322199 0.00322537 +-0.000851351 -0.000767383 -0.000683133 -0.0005986 -0.000513785 -0.000428688 -0.000343309 -0.000257648 -0.000171704 -8.54804E-05 1.02019E-06 8.69175E-05 0.000171229 0.000253965 0.000335138 0.000414756 0.000492829 0.000569368 0.000644381 0.000717878 0.00078987 0.000860364 0.000929372 0.000996901 0.00106296 0.00112756 0.00119072 0.00125243 0.00131271 0.00137156 0.00142901 0.00148505 0.00153969 0.00159295 0.00164483 0.00169535 0.00174451 0.00179231 0.00183878 0.00188392 0.00192774 0.00197025 0.00201146 0.00205138 0.00209002 0.00212738 0.00216349 0.00219835 0.00223198 0.00226438 0.00229556 0.00232556 0.00235436 0.002382 0.00240848 0.00243383 0.00245807 0.0024812 0.00250326 0.00252428 0.00254426 0.00256326 0.00258129 0.0025984 0.00261461 0.00262997 0.00264453 0.00265832 0.00267139 0.0026838 0.00269558 0.00270679 0.00271746 0.00272766 0.0027374 0.00274675 0.00275572 0.00276436 0.00277269 0.00278073 0.00278852 0.00279607 0.00280341 0.00281054 0.00281749 0.00282426 0.00283088 0.00283734 0.00284367 0.00284986 0.00285594 0.0028619 0.00286775 0.0028735 0.00287915 0.00288471 0.00289019 0.00289559 0.00290091 0.00290616 0.00291134 0.00291645 0.0029215 0.00292649 0.00293142 0.0029363 0.00294113 0.00294591 0.00295064 0.00295532 0.00295996 0.00296456 0.00296912 0.00297364 0.00297812 0.00298257 0.00298698 0.00299136 0.00299571 0.00300003 0.00300432 0.00300858 0.00301281 0.00301701 0.00302119 0.00302534 0.00302947 0.00303358 0.00303766 0.00304172 0.00304576 0.00304978 0.00305378 0.00305776 0.00306172 0.00306566 0.00306958 0.00307349 0.00307737 0.00308125 0.0030851 0.00308894 0.00309276 0.00309657 0.00310037 0.00310414 0.00310791 0.00311166 0.0031154 0.00311913 0.00312284 0.00312654 0.00313023 0.0031339 0.00313757 0.00314122 0.00314486 0.00314849 0.00315211 0.00315572 0.00315932 0.00316291 0.0031665 0.00317007 0.00317363 0.00317719 0.00318073 0.00318427 0.0031878 0.00319132 0.00319483 0.00319834 0.00320184 0.00320533 0.00320882 0.0032123 0.00321577 0.00321924 0.0032227 0.00322615 0.0032296 0.00323305 0.00323649 0.00323993 0.00324336 0.00324678 0.00325021 0.00325363 0.00325704 0.00326046 0.00326387 +-0.000853527 -0.000769365 -0.000684915 -0.000600176 -0.000515149 -0.000429833 -0.000344228 -0.000258334 -0.000172151 -8.56795E-05 1.07598E-06 8.72402E-05 0.000171829 0.000254853 0.000336323 0.00041625 0.000494641 0.000571508 0.000646859 0.000720704 0.000793052 0.000863913 0.000933295 0.00100121 0.00106766 0.00113267 0.00119623 0.00125836 0.00131906 0.00137836 0.00143624 0.00149274 0.00154784 0.00160156 0.00165392 0.00170492 0.00175456 0.00180287 0.00184984 0.00189549 0.00193983 0.00198286 0.00202459 0.00206504 0.00210422 0.00214213 0.00217879 0.00221421 0.00224839 0.00228135 0.00231311 0.00234367 0.00237305 0.00240126 0.00242832 0.00245424 0.00247905 0.00250276 0.00252539 0.00254697 0.00256752 0.00258707 0.00260565 0.00262328 0.00264002 0.00265589 0.00267093 0.00268519 0.00269871 0.00271154 0.00272373 0.00273532 0.00274636 0.00275689 0.00276696 0.0027766 0.00278586 0.00279476 0.00280333 0.00281161 0.00281962 0.00282738 0.00283491 0.00284223 0.00284935 0.0028563 0.00286307 0.00286969 0.00287617 0.0028825 0.00288871 0.0028948 0.00290078 0.00290665 0.00291242 0.0029181 0.00292369 0.00292919 0.00293462 0.00293997 0.00294524 0.00295045 0.00295559 0.00296067 0.00296569 0.00297066 0.00297557 0.00298043 0.00298524 0.00299 0.00299471 0.00299939 0.00300402 0.00300861 0.00301316 0.00301768 0.00302216 0.0030266 0.00303102 0.0030354 0.00303975 0.00304407 0.00304836 0.00305262 0.00305686 0.00306107 0.00306525 0.00306942 0.00307355 0.00307767 0.00308176 0.00308583 0.00308988 0.00309391 0.00309792 0.00310191 0.00310589 0.00310984 0.00311378 0.00311769 0.0031216 0.00312548 0.00312935 0.00313321 0.00313704 0.00314087 0.00314468 0.00314847 0.00315225 0.00315602 0.00315978 0.00316352 0.00316725 0.00317097 0.00317467 0.00317836 0.00318205 0.00318572 0.00318938 0.00319303 0.00319667 0.00320029 0.00320391 0.00320752 0.00321112 0.00321472 0.0032183 0.00322187 0.00322544 0.00322899 0.00323254 0.00323609 0.00323962 0.00324315 0.00324667 0.00325018 0.00325369 0.00325719 0.00326068 0.00326417 0.00326766 0.00327113 0.00327461 0.00327807 0.00328154 0.003285 0.00328845 0.0032919 0.00329535 0.0032988 0.00330224 +-0.000855635 -0.000771285 -0.000686641 -0.000601702 -0.000516469 -0.00043094 -0.000345116 -0.000258996 -0.00017258 -8.58683E-05 1.13463E-06 8.75582E-05 0.000172416 0.000255721 0.000337482 0.000417709 0.000496411 0.000573598 0.000649278 0.000723463 0.00079616 0.000867379 0.000937128 0.00100542 0.00107226 0.00113765 0.00120162 0.00126416 0.00132528 0.001385 0.00144333 0.00150026 0.00155581 0.00161 0.00166282 0.00171429 0.00176442 0.00181321 0.00186068 0.00190683 0.00195167 0.00199521 0.00203747 0.00207845 0.00211815 0.0021566 0.0021938 0.00222976 0.0022645 0.00229802 0.00233033 0.00236145 0.0023914 0.00242018 0.00244781 0.0024743 0.00249968 0.00252396 0.00254716 0.0025693 0.00259041 0.00261051 0.00262963 0.0026478 0.00266506 0.00268143 0.00269697 0.00271171 0.00272569 0.00273896 0.00275156 0.00276354 0.00277495 0.00278583 0.00279623 0.00280618 0.00281572 0.00282489 0.00283372 0.00284224 0.00285048 0.00285845 0.00286618 0.00287369 0.002881 0.00288812 0.00289506 0.00290184 0.00290846 0.00291494 0.00292129 0.00292752 0.00293363 0.00293962 0.00294551 0.00295131 0.00295701 0.00296262 0.00296815 0.0029736 0.00297898 0.00298428 0.00298952 0.00299469 0.0029998 0.00300485 0.00300985 0.00301479 0.00301968 0.00302452 0.00302931 0.00303406 0.00303876 0.00304343 0.00304805 0.00305263 0.00305718 0.00306169 0.00306617 0.00307062 0.00307503 0.00307941 0.00308376 0.00308809 0.00309238 0.00309665 0.00310089 0.00310511 0.00310931 0.00311348 0.00311762 0.00312175 0.00312585 0.00312993 0.00313399 0.00313803 0.00314205 0.00314606 0.00315004 0.00315401 0.00315796 0.00316189 0.00316581 0.00316971 0.00317359 0.00317746 0.00318131 0.00318515 0.00318898 0.00319279 0.00319658 0.00320037 0.00320414 0.0032079 0.00321164 0.00321538 0.0032191 0.00322281 0.00322651 0.0032302 0.00323388 0.00323754 0.0032412 0.00324485 0.00324849 0.00325212 0.00325573 0.00325935 0.00326295 0.00326654 0.00327013 0.0032737 0.00327727 0.00328083 0.00328439 0.00328794 0.00329148 0.00329501 0.00329854 0.00330206 0.00330558 0.00330909 0.0033126 0.0033161 0.00331959 0.00332308 0.00332657 0.00333005 0.00333353 0.00333701 0.00334048 +-0.000857676 -0.000773143 -0.000688311 -0.000603178 -0.000517745 -0.00043201 -0.000345973 -0.000259634 -0.000172991 -8.60467E-05 1.19627E-06 8.78719E-05 0.000172992 0.00025657 0.000338613 0.000419133 0.000498138 0.000575637 0.00065164 0.000726156 0.000799194 0.000870763 0.000940872 0.00100953 0.00107675 0.00114253 0.00120689 0.00126983 0.00133137 0.00139151 0.00145025 0.00150762 0.00156362 0.00161826 0.00167154 0.00172347 0.00177407 0.00182334 0.00187129 0.00191793 0.00196328 0.00200733 0.00205009 0.00209159 0.00213182 0.0021708 0.00220853 0.00224503 0.00228031 0.00231438 0.00234724 0.00237892 0.00240942 0.00243876 0.00246696 0.00249401 0.00251996 0.0025448 0.00256856 0.00259126 0.00261293 0.00263358 0.00265324 0.00267195 0.00268973 0.00270662 0.00272265 0.00273787 0.00275231 0.00276602 0.00277905 0.00279144 0.00280323 0.00281447 0.0028252 0.00283547 0.00284531 0.00285476 0.00286385 0.00287262 0.00288109 0.00288928 0.00289722 0.00290493 0.00291242 0.00291972 0.00292683 0.00293377 0.00294055 0.00294718 0.00295367 0.00296004 0.00296628 0.0029724 0.00297842 0.00298433 0.00299014 0.00299587 0.00300151 0.00300706 0.00301254 0.00301794 0.00302327 0.00302854 0.00303374 0.00303888 0.00304396 0.00304898 0.00305395 0.00305888 0.00306375 0.00306857 0.00307335 0.00307809 0.00308278 0.00308744 0.00309205 0.00309663 0.00310118 0.00310569 0.00311016 0.00311461 0.00311902 0.00312341 0.00312776 0.00313209 0.00313639 0.00314066 0.00314491 0.00314914 0.00315334 0.00315752 0.00316167 0.00316581 0.00316992 0.00317401 0.00317808 0.00318213 0.00318617 0.00319018 0.00319418 0.00319816 0.00320212 0.00320607 0.00321 0.00321391 0.00321781 0.00322169 0.00322556 0.00322942 0.00323326 0.00323708 0.0032409 0.0032447 0.00324848 0.00325226 0.00325602 0.00325977 0.00326351 0.00326724 0.00327096 0.00327466 0.00327836 0.00328204 0.00328572 0.00328938 0.00329304 0.00329669 0.00330033 0.00330396 0.00330758 0.00331119 0.00331479 0.00331839 0.00332198 0.00332556 0.00332914 0.00333271 0.00333627 0.00333982 0.00334337 0.00334692 0.00335045 0.00335399 0.00335752 0.00336104 0.00336456 0.00336807 0.00337158 0.00337509 0.00337859 +-0.000859651 -0.000774941 -0.000689926 -0.000604605 -0.000518978 -0.000433043 -0.000346799 -0.000260247 -0.000173386 -8.62149E-05 1.26107E-06 8.81815E-05 0.000173557 0.0002574 0.000339719 0.000420524 0.000499824 0.000577629 0.000653946 0.000728786 0.000802157 0.000874069 0.000944529 0.00101355 0.00108113 0.00114729 0.00121204 0.00127538 0.00133732 0.00139786 0.00145703 0.00151483 0.00157126 0.00162634 0.00168007 0.00173246 0.00178352 0.00183326 0.00188169 0.00192882 0.00197465 0.0020192 0.00206247 0.00210447 0.00214522 0.00218472 0.00222298 0.00226001 0.00229583 0.00233043 0.00236384 0.00239607 0.00242713 0.00245702 0.00248577 0.00251339 0.00253989 0.00256529 0.00258961 0.00261287 0.00263508 0.00265628 0.00267649 0.00269573 0.00271404 0.00273144 0.00274797 0.00276367 0.00277859 0.00279275 0.00280621 0.002819 0.00283118 0.00284279 0.00285387 0.00286446 0.00287461 0.00288435 0.00289372 0.00290274 0.00291144 0.00291986 0.00292802 0.00293593 0.00294362 0.0029511 0.00295838 0.00296549 0.00297243 0.00297921 0.00298585 0.00299236 0.00299873 0.00300498 0.00301113 0.00301716 0.00302309 0.00302893 0.00303468 0.00304034 0.00304592 0.00305143 0.00305685 0.00306221 0.00306751 0.00307274 0.0030779 0.00308302 0.00308807 0.00309307 0.00309802 0.00310293 0.00310778 0.00311259 0.00311736 0.00312209 0.00312677 0.00313142 0.00313603 0.00314061 0.00314515 0.00314966 0.00315413 0.00315858 0.00316299 0.00316738 0.00317174 0.00317607 0.00318038 0.00318466 0.00318891 0.00319314 0.00319735 0.00320154 0.0032057 0.00320985 0.00321397 0.00321807 0.00322215 0.00322622 0.00323026 0.00323429 0.0032383 0.00324229 0.00324627 0.00325023 0.00325417 0.0032581 0.00326201 0.00326591 0.00326979 0.00327366 0.00327752 0.00328136 0.00328519 0.003289 0.00329281 0.0032966 0.00330038 0.00330414 0.0033079 0.00331165 0.00331538 0.0033191 0.00332282 0.00332652 0.00333021 0.0033339 0.00333757 0.00334124 0.00334489 0.00334854 0.00335218 0.00335581 0.00335944 0.00336306 0.00336667 0.00337027 0.00337386 0.00337745 0.00338103 0.00338461 0.00338818 0.00339175 0.00339531 0.00339886 0.00340241 0.00340596 0.0034095 0.00341304 0.00341657 +-0.000861561 -0.000776679 -0.000691487 -0.000605984 -0.000520168 -0.000434039 -0.000347596 -0.000260837 -0.000173763 -8.63726E-05 1.32916E-06 8.84874E-05 0.000174111 0.000258212 0.000340799 0.000421882 0.00050147 0.000579572 0.000656197 0.000731354 0.000805051 0.000877297 0.000948101 0.00101747 0.00108542 0.00115195 0.00121707 0.0012808 0.00134313 0.00140408 0.00146366 0.00152188 0.00157874 0.00163425 0.00168842 0.00174126 0.00179278 0.00184298 0.00189188 0.00193949 0.0019858 0.00203084 0.00207461 0.00211711 0.00215837 0.00219838 0.00223716 0.00227471 0.00231105 0.00234619 0.00238014 0.00241291 0.00244451 0.00247495 0.00250425 0.00253242 0.00255948 0.00258543 0.0026103 0.00263411 0.00265688 0.00267862 0.00269937 0.00271914 0.00273797 0.00275589 0.00277293 0.00278912 0.0028045 0.00281912 0.00283302 0.00284623 0.00285881 0.0028708 0.00288223 0.00289316 0.00290363 0.00291366 0.00292331 0.00293259 0.00294155 0.0029502 0.00295857 0.00296669 0.00297458 0.00298225 0.00298971 0.00299699 0.00300409 0.00301103 0.00301782 0.00302447 0.00303098 0.00303737 0.00304364 0.0030498 0.00305585 0.00306181 0.00306767 0.00307344 0.00307913 0.00308473 0.00309026 0.00309572 0.0031011 0.00310642 0.00311168 0.00311688 0.00312202 0.0031271 0.00313214 0.00313712 0.00314205 0.00314694 0.00315178 0.00315658 0.00316133 0.00316605 0.00317073 0.00317537 0.00317998 0.00318455 0.00318909 0.0031936 0.00319807 0.00320252 0.00320694 0.00321133 0.00321569 0.00322003 0.00322434 0.00322863 0.00323289 0.00323713 0.00324135 0.00324554 0.00324971 0.00325387 0.003258 0.00326211 0.00326621 0.00327028 0.00327434 0.00327838 0.0032824 0.0032864 0.00329039 0.00329436 0.00329832 0.00330226 0.00330619 0.0033101 0.003314 0.00331788 0.00332175 0.00332561 0.00332946 0.00333329 0.00333711 0.00334091 0.00334471 0.00334849 0.00335227 0.00335603 0.00335978 0.00336352 0.00336725 0.00337097 0.00337468 0.00337839 0.00338208 0.00338576 0.00338944 0.00339311 0.00339676 0.00340042 0.00340406 0.0034077 0.00341133 0.00341495 0.00341856 0.00342217 0.00342578 0.00342937 0.00343297 0.00343655 0.00344013 0.00344371 0.00344728 0.00345085 0.00345442 +-0.000863407 -0.000778359 -0.000692995 -0.000607314 -0.000521316 -0.000434999 -0.000348362 -0.000261403 -0.000174123 -8.652E-05 1.4007E-06 8.87898E-05 0.000174654 0.000259006 0.000341855 0.000423209 0.000503078 0.00058147 0.000658395 0.00073386 0.000807875 0.000880449 0.00095159 0.00102131 0.00108961 0.0011565 0.00122199 0.0012861 0.00134882 0.00141017 0.00147015 0.00152877 0.00158605 0.00164199 0.00169659 0.00174988 0.00180184 0.0018525 0.00190186 0.00194994 0.00199673 0.00204225 0.0020865 0.0021295 0.00217125 0.00221177 0.00225106 0.00228913 0.002326 0.00236166 0.00239614 0.00242944 0.00246158 0.00249256 0.00252241 0.00255112 0.00257872 0.00260523 0.00263065 0.00265501 0.00267832 0.0027006 0.00272189 0.00274219 0.00276155 0.00277998 0.00279752 0.00281421 0.00283007 0.00284515 0.00285949 0.00287313 0.00288611 0.00289848 0.00291029 0.00292156 0.00293235 0.00294269 0.00295262 0.00296218 0.00297139 0.00298028 0.00298888 0.00299722 0.00300531 0.00301317 0.00302082 0.00302827 0.00303554 0.00304264 0.00304959 0.00305638 0.00306304 0.00306956 0.00307596 0.00308225 0.00308842 0.0030945 0.00310047 0.00310635 0.00311215 0.00311786 0.00312349 0.00312904 0.00313452 0.00313994 0.00314529 0.00315057 0.0031558 0.00316097 0.00316608 0.00317114 0.00317615 0.00318112 0.00318603 0.00319091 0.00319573 0.00320052 0.00320527 0.00320998 0.00321465 0.00321929 0.0032239 0.00322847 0.003233 0.00323751 0.00324199 0.00324644 0.00325086 0.00325525 0.00325962 0.00326396 0.00326828 0.00327257 0.00327684 0.00328109 0.00328531 0.00328952 0.0032937 0.00329786 0.003302 0.00330613 0.00331023 0.00331432 0.00331839 0.00332244 0.00332647 0.00333049 0.00333449 0.00333848 0.00334245 0.0033464 0.00335034 0.00335427 0.00335818 0.00336208 0.00336597 0.00336984 0.0033737 0.00337755 0.00338138 0.0033852 0.00338902 0.00339282 0.00339661 0.00340038 0.00340415 0.00340791 0.00341166 0.0034154 0.00341913 0.00342285 0.00342656 0.00343026 0.00343395 0.00343764 0.00344132 0.00344499 0.00344865 0.00345231 0.00345596 0.0034596 0.00346324 0.00346687 0.00347049 0.00347411 0.00347772 0.00348133 0.00348493 0.00348853 0.00349213 +-0.00086519 -0.00077998 -0.00069445 -0.000608598 -0.000522423 -0.000435924 -0.000349099 -0.000261946 -0.000174466 -8.6657E-05 1.47587E-06 8.90891E-05 0.000175188 0.000259784 0.000342886 0.000424505 0.000504647 0.000583322 0.00066054 0.000736307 0.000810633 0.000883527 0.000954996 0.00102505 0.0010937 0.00116095 0.0012268 0.00129128 0.00135438 0.00141611 0.00147649 0.00153552 0.00159321 0.00164957 0.0017046 0.00175831 0.00181072 0.00186183 0.00191164 0.00196018 0.00200743 0.00205343 0.00209816 0.00214165 0.00218389 0.00222491 0.0022647 0.00230328 0.00234066 0.00237685 0.00241185 0.00244568 0.00247834 0.00250986 0.00254024 0.0025695 0.00259764 0.00262468 0.00265065 0.00267555 0.0026994 0.00272223 0.00274405 0.00276488 0.00278476 0.00280371 0.00282175 0.00283893 0.00285528 0.00287083 0.00288561 0.00289969 0.00291308 0.00292585 0.00293802 0.00294965 0.00296077 0.00297143 0.00298166 0.00299149 0.00300096 0.0030101 0.00301894 0.00302749 0.00303579 0.00304385 0.00305169 0.00305932 0.00306677 0.00307403 0.00308113 0.00308808 0.00309488 0.00310154 0.00310808 0.0031145 0.0031208 0.00312699 0.00313308 0.00313908 0.00314498 0.0031508 0.00315653 0.00316219 0.00316777 0.00317328 0.00317872 0.00318409 0.00318941 0.00319466 0.00319986 0.003205 0.00321009 0.00321513 0.00322013 0.00322507 0.00322997 0.00323483 0.00323965 0.00324443 0.00324917 0.00325388 0.00325854 0.00326318 0.00326778 0.00327235 0.00327689 0.00328139 0.00328587 0.00329032 0.00329475 0.00329915 0.00330352 0.00330787 0.00331219 0.00331649 0.00332077 0.00332502 0.00332925 0.00333347 0.00333766 0.00334183 0.00334598 0.00335012 0.00335423 0.00335833 0.00336241 0.00336647 0.00337052 0.00337455 0.00337856 0.00338256 0.00338655 0.00339052 0.00339447 0.00339841 0.00340234 0.00340625 0.00341015 0.00341404 0.00341791 0.00342178 0.00342563 0.00342947 0.00343329 0.00343711 0.00344092 0.00344471 0.0034485 0.00345227 0.00345604 0.00345979 0.00346354 0.00346728 0.00347101 0.00347473 0.00347844 0.00348215 0.00348584 0.00348953 0.00349322 0.00349689 0.00350056 0.00350422 0.00350788 0.00351153 0.00351518 0.00351882 0.00352245 0.00352608 0.00352971 +-0.00086691 -0.000781545 -0.000695853 -0.000609835 -0.000523489 -0.000436813 -0.000349806 -0.000262466 -0.000174792 -8.67835E-05 1.55484E-06 8.93855E-05 0.000175712 0.000260545 0.000343895 0.00042577 0.000506179 0.000585131 0.000662633 0.000738696 0.000813326 0.000886532 0.000958323 0.00102871 0.00109769 0.00116529 0.0012315 0.00129634 0.00135982 0.00142193 0.0014827 0.00154212 0.00160021 0.00165698 0.00171243 0.00176657 0.00181941 0.00187096 0.00192122 0.00197021 0.00201793 0.00206438 0.00210959 0.00215356 0.00219629 0.00223779 0.00227808 0.00231716 0.00235505 0.00239174 0.00242726 0.00246161 0.0024948 0.00252685 0.00255776 0.00258754 0.00261622 0.00264381 0.00267031 0.00269574 0.00272013 0.00274349 0.00276585 0.00278721 0.00280761 0.00282707 0.00284563 0.0028633 0.00288013 0.00289615 0.00291139 0.0029259 0.00293972 0.00295288 0.00296544 0.00297743 0.00298889 0.00299987 0.00301041 0.00302053 0.00303027 0.00303966 0.00304874 0.00305752 0.00306603 0.0030743 0.00308233 0.00309015 0.00309777 0.0031052 0.00311247 0.00311957 0.00312652 0.00313332 0.00314 0.00314654 0.00315297 0.00315929 0.0031655 0.00317161 0.00317763 0.00318355 0.00318939 0.00319515 0.00320083 0.00320644 0.00321197 0.00321744 0.00322284 0.00322818 0.00323347 0.00323869 0.00324386 0.00324898 0.00325405 0.00325908 0.00326405 0.00326898 0.00327387 0.00327872 0.00328353 0.0032883 0.00329303 0.00329773 0.0033024 0.00330703 0.00331163 0.0033162 0.00332074 0.00332524 0.00332973 0.00333418 0.00333861 0.00334301 0.00334739 0.00335174 0.00335607 0.00336038 0.00336466 0.00336892 0.00337317 0.00337739 0.00338159 0.00338577 0.00338993 0.00339408 0.0033982 0.00340231 0.0034064 0.00341048 0.00341454 0.00341858 0.00342261 0.00342662 0.00343062 0.0034346 0.00343857 0.00344252 0.00344646 0.00345039 0.0034543 0.00345821 0.0034621 0.00346597 0.00346984 0.0034737 0.00347754 0.00348137 0.00348519 0.00348901 0.00349281 0.0034966 0.00350038 0.00350416 0.00350792 0.00351168 0.00351542 0.00351916 0.0035229 0.00352662 0.00353033 0.00353404 0.00353775 0.00354144 0.00354513 0.00354881 0.00355249 0.00355616 0.00355983 0.00356349 0.00356715 +-0.000868569 -0.000783052 -0.000697205 -0.000611027 -0.000524515 -0.000437668 -0.000350484 -0.000262963 -0.000175101 -8.68995E-05 1.63779E-06 8.96794E-05 0.000176227 0.000261291 0.000344881 0.000427007 0.000507675 0.000586896 0.000664677 0.000741027 0.000815954 0.000889467 0.000961572 0.00103228 0.0011016 0.00116953 0.00123609 0.00130129 0.00136513 0.00142762 0.00148877 0.00154858 0.00160707 0.00166424 0.0017201 0.00177466 0.00182792 0.0018799 0.0019306 0.00198003 0.00202821 0.00207512 0.0021208 0.00216523 0.00220844 0.00225043 0.00229121 0.00233078 0.00236916 0.00240636 0.00244239 0.00247725 0.00251096 0.00254352 0.00257496 0.00260527 0.00263448 0.0026626 0.00268963 0.0027156 0.00274052 0.00276441 0.00278729 0.00280918 0.0028301 0.00285008 0.00286914 0.00288731 0.00290462 0.00292112 0.00293682 0.00295177 0.00296602 0.00297959 0.00299254 0.0030049 0.00301671 0.00302802 0.00303886 0.00304928 0.0030593 0.00306896 0.00307828 0.0030873 0.00309603 0.0031045 0.00311273 0.00312074 0.00312854 0.00313615 0.00314358 0.00315084 0.00315794 0.00316489 0.00317171 0.00317839 0.00318495 0.00319139 0.00319773 0.00320396 0.00321009 0.00321612 0.00322207 0.00322793 0.00323371 0.00323942 0.00324505 0.00325061 0.0032561 0.00326153 0.0032669 0.00327221 0.00327746 0.00328266 0.00328781 0.00329291 0.00329796 0.00330297 0.00330793 0.00331285 0.00331773 0.00332257 0.00332737 0.00333213 0.00333686 0.00334155 0.00334621 0.00335084 0.00335544 0.00336001 0.00336455 0.00336906 0.00337354 0.003378 0.00338243 0.00338684 0.00339122 0.00339558 0.00339992 0.00340423 0.00340852 0.00341279 0.00341704 0.00342127 0.00342549 0.00342968 0.00343385 0.00343801 0.00344214 0.00344626 0.00345037 0.00345445 0.00345852 0.00346258 0.00346662 0.00347064 0.00347465 0.00347865 0.00348263 0.0034866 0.00349055 0.0034945 0.00349843 0.00350234 0.00350625 0.00351014 0.00351402 0.00351789 0.00352175 0.0035256 0.00352944 0.00353327 0.00353709 0.0035409 0.0035447 0.00354849 0.00355227 0.00355604 0.00355981 0.00356357 0.00356732 0.00357106 0.00357479 0.00357852 0.00358224 0.00358596 0.00358967 0.00359337 0.00359707 0.00360076 0.00360445 +-0.000870167 -0.000784504 -0.000698507 -0.000612173 -0.000525501 -0.000438488 -0.000351134 -0.000263436 -0.000175393 -8.70049E-05 1.72492E-06 8.99712E-05 0.000176733 0.000262021 0.000345845 0.000428215 0.000509137 0.00058862 0.000666673 0.000743304 0.000818521 0.000892332 0.000964745 0.00103577 0.00110541 0.00117368 0.00124058 0.00130613 0.00137032 0.00143318 0.0014947 0.00155489 0.00161377 0.00167134 0.0017276 0.00178257 0.00183625 0.00188866 0.00193979 0.00198966 0.00203828 0.00208565 0.00213178 0.00217668 0.00222035 0.00226282 0.00230408 0.00234414 0.00238301 0.00242071 0.00245724 0.0024926 0.00252682 0.0025599 0.00259185 0.00262269 0.00265242 0.00268106 0.00270862 0.00273512 0.00276057 0.00278498 0.00280839 0.0028308 0.00285224 0.00287273 0.00289229 0.00291096 0.00292876 0.00294573 0.0029619 0.0029773 0.00299197 0.00300596 0.0030193 0.00303204 0.00304421 0.00305586 0.00306703 0.00307775 0.00308805 0.00309798 0.00310756 0.00311681 0.00312577 0.00313446 0.0031429 0.0031511 0.00315909 0.00316687 0.00317447 0.00318189 0.00318915 0.00319625 0.00320321 0.00321003 0.00321672 0.0032233 0.00322975 0.0032361 0.00324235 0.0032485 0.00325455 0.00326052 0.00326641 0.00327221 0.00327794 0.0032836 0.00328918 0.0032947 0.00330016 0.00330556 0.00331089 0.00331617 0.0033214 0.00332658 0.00333171 0.00333679 0.00334182 0.00334681 0.00335176 0.00335667 0.00336154 0.00336637 0.00337116 0.00337592 0.00338064 0.00338533 0.00338999 0.00339462 0.00339922 0.00340379 0.00340833 0.00341284 0.00341733 0.00342179 0.00342622 0.00343064 0.00343502 0.00343939 0.00344373 0.00344805 0.00345235 0.00345663 0.00346089 0.00346513 0.00346935 0.00347355 0.00347773 0.0034819 0.00348605 0.00349018 0.00349429 0.00349839 0.00350247 0.00350654 0.00351059 0.00351463 0.00351865 0.00352266 0.00352666 0.00353064 0.00353461 0.00353857 0.00354251 0.00354644 0.00355036 0.00355427 0.00355817 0.00356205 0.00356593 0.00356979 0.00357365 0.00357749 0.00358133 0.00358516 0.00358897 0.00359278 0.00359658 0.00360037 0.00360416 0.00360793 0.0036117 0.00361546 0.00361922 0.00362296 0.0036267 0.00363044 0.00363417 0.00363789 0.00364161 +-0.000871705 -0.000785902 -0.000699758 -0.000613274 -0.000526447 -0.000439274 -0.000351755 -0.000263887 -0.000175669 -8.70996E-05 1.81641E-06 9.0261E-05 0.000177231 0.000262737 0.000346789 0.000429395 0.000510564 0.000590303 0.000668621 0.000745526 0.000821026 0.000895129 0.000967843 0.00103918 0.00110914 0.00117773 0.00124497 0.00131086 0.0013754 0.00143862 0.0015005 0.00156107 0.00162033 0.00167828 0.00173494 0.00179032 0.00184441 0.00189723 0.00194879 0.00199909 0.00204814 0.00209596 0.00214254 0.00218789 0.00223203 0.00227497 0.0023167 0.00235724 0.0023966 0.00243478 0.00247181 0.00250767 0.00254239 0.00257598 0.00260844 0.00263979 0.00267004 0.0026992 0.00272728 0.0027543 0.00278027 0.00280521 0.00282914 0.00285207 0.00287402 0.00289502 0.00291509 0.00293426 0.00295255 0.00296999 0.00298662 0.00300248 0.00301759 0.003032 0.00304574 0.00305887 0.0030714 0.0030834 0.00309489 0.00310592 0.00311652 0.00312672 0.00313656 0.00314607 0.00315526 0.00316417 0.00317282 0.00318122 0.00318939 0.00319736 0.00320513 0.00321272 0.00322013 0.00322739 0.0032345 0.00324146 0.00324829 0.00325499 0.00326158 0.00326805 0.00327442 0.00328068 0.00328685 0.00329293 0.00329892 0.00330482 0.00331065 0.0033164 0.00332208 0.0033277 0.00333324 0.00333872 0.00334415 0.00334951 0.00335482 0.00336008 0.00336528 0.00337044 0.00337555 0.00338061 0.00338563 0.00339061 0.00339554 0.00340044 0.0034053 0.00341012 0.00341491 0.00341966 0.00342438 0.00342907 0.00343373 0.00343836 0.00344295 0.00344752 0.00345207 0.00345658 0.00346107 0.00346554 0.00346998 0.0034744 0.00347879 0.00348316 0.00348751 0.00349184 0.00349615 0.00350043 0.0035047 0.00350895 0.00351318 0.00351739 0.00352158 0.00352576 0.00352992 0.00353406 0.00353818 0.00354229 0.00354639 0.00355047 0.00355453 0.00355858 0.00356262 0.00356664 0.00357065 0.00357465 0.00357863 0.0035826 0.00358656 0.00359051 0.00359444 0.00359836 0.00360228 0.00360618 0.00361007 0.00361395 0.00361782 0.00362168 0.00362553 0.00362938 0.00363321 0.00363704 0.00364085 0.00364466 0.00364847 0.00365226 0.00365605 0.00365983 0.0036636 0.00366737 0.00367113 0.00367488 0.00367863 +-0.000873184 -0.000787244 -0.00070096 -0.000614331 -0.000527354 -0.000440027 -0.000352348 -0.000264316 -0.000175928 -8.71835E-05 1.91248E-06 9.05493E-05 0.000177721 0.000263439 0.000347712 0.000430549 0.000511957 0.000591946 0.000670523 0.000747695 0.000823471 0.00089786 0.000970868 0.0010425 0.00111277 0.00118169 0.00124925 0.00131548 0.00138037 0.00144393 0.00150618 0.00156711 0.00162674 0.00168508 0.00174213 0.0017979 0.0018524 0.00190563 0.0019576 0.00200833 0.00205781 0.00210606 0.00215308 0.00219889 0.00224348 0.00228688 0.00232908 0.00237009 0.00240993 0.00244859 0.0024861 0.00252246 0.00255768 0.00259177 0.00262473 0.00265659 0.00268735 0.00271702 0.00274562 0.00277315 0.00279964 0.0028251 0.00284954 0.00287299 0.00289545 0.00291696 0.00293753 0.0029572 0.00297598 0.0029939 0.003011 0.00302731 0.00304286 0.0030577 0.00307185 0.00308537 0.00309828 0.00311063 0.00312246 0.00313381 0.0031447 0.00315519 0.0031653 0.00317506 0.00318449 0.00319363 0.00320249 0.00321109 0.00321947 0.00322762 0.00323557 0.00324332 0.0032509 0.00325831 0.00326557 0.00327268 0.00327965 0.00328649 0.0032932 0.0032998 0.00330629 0.00331267 0.00331895 0.00332514 0.00333123 0.00333725 0.00334317 0.00334903 0.0033548 0.00336051 0.00336614 0.00337172 0.00337722 0.00338267 0.00338807 0.0033934 0.00339869 0.00340392 0.0034091 0.00341424 0.00341933 0.00342438 0.00342939 0.00343435 0.00343928 0.00344416 0.00344902 0.00345383 0.00345862 0.00346336 0.00346808 0.00347277 0.00347742 0.00348205 0.00348665 0.00349122 0.00349577 0.00350028 0.00350478 0.00350925 0.00351369 0.00351812 0.00352252 0.00352689 0.00353125 0.00353558 0.0035399 0.0035442 0.00354847 0.00355273 0.00355697 0.00356119 0.00356539 0.00356958 0.00357375 0.0035779 0.00358204 0.00358616 0.00359027 0.00359436 0.00359843 0.0036025 0.00360655 0.00361058 0.0036146 0.00361861 0.00362261 0.0036266 0.00363057 0.00363453 0.00363848 0.00364242 0.00364634 0.00365026 0.00365417 0.00365807 0.00366195 0.00366583 0.0036697 0.00367356 0.00367741 0.00368125 0.00368509 0.00368892 0.00369274 0.00369655 0.00370035 0.00370415 0.00370794 0.00371173 0.00371551 +-0.000874605 -0.000788533 -0.000702113 -0.000615344 -0.000528222 -0.000440746 -0.000352913 -0.000264722 -0.00017617 -8.72566E-05 2.01335E-06 9.08364E-05 0.000178204 0.000264127 0.000348615 0.000431677 0.000513319 0.000593551 0.000672379 0.000749813 0.000825859 0.000900526 0.000973821 0.00104575 0.00111633 0.00118555 0.00125344 0.00131999 0.00138522 0.00144913 0.00151172 0.00157302 0.00163302 0.00169173 0.00174916 0.00180532 0.00186021 0.00191385 0.00196623 0.00201737 0.00206728 0.00211596 0.00216342 0.00220967 0.00225471 0.00229856 0.00234121 0.00238269 0.002423 0.00246214 0.00250013 0.00253698 0.00257268 0.00260727 0.00264073 0.00267309 0.00270435 0.00273453 0.00276364 0.00279168 0.00281868 0.00284465 0.00286961 0.00289356 0.00291654 0.00293855 0.00295963 0.00297978 0.00299905 0.00301746 0.00303503 0.00305179 0.00306779 0.00308306 0.00309763 0.00311154 0.00312483 0.00313754 0.00314972 0.00316139 0.0031726 0.00318338 0.00319376 0.00320378 0.00321346 0.00322283 0.00323191 0.00324073 0.0032493 0.00325764 0.00326577 0.0032737 0.00328145 0.00328902 0.00329643 0.00330368 0.00331079 0.00331777 0.00332462 0.00333134 0.00333796 0.00334446 0.00335086 0.00335716 0.00336336 0.00336948 0.00337551 0.00338146 0.00338734 0.00339314 0.00339887 0.00340453 0.00341012 0.00341566 0.00342113 0.00342655 0.00343192 0.00343723 0.00344249 0.0034477 0.00345286 0.00345798 0.00346306 0.00346809 0.00347309 0.00347804 0.00348296 0.00348784 0.00349269 0.0034975 0.00350227 0.00350702 0.00351174 0.00351642 0.00352108 0.0035257 0.0035303 0.00353488 0.00353942 0.00354395 0.00354844 0.00355292 0.00355737 0.00356179 0.0035662 0.00357058 0.00357495 0.00357929 0.00358361 0.00358792 0.0035922 0.00359647 0.00360072 0.00360495 0.00360916 0.00361336 0.00361754 0.0036217 0.00362585 0.00362998 0.0036341 0.00363821 0.0036423 0.00364637 0.00365043 0.00365448 0.00365852 0.00366254 0.00366655 0.00367055 0.00367454 0.00367851 0.00368248 0.00368643 0.00369037 0.0036943 0.00369823 0.00370214 0.00370604 0.00370994 0.00371382 0.0037177 0.00372157 0.00372543 0.00372928 0.00373313 0.00373696 0.00374079 0.00374462 0.00374844 0.00375225 +-0.000875968 -0.000789769 -0.000703218 -0.000616313 -0.000529052 -0.000441432 -0.00035345 -0.000265106 -0.000176395 -8.73186E-05 2.11925E-06 9.11227E-05 0.00017868 0.000264803 0.0003495 0.000432779 0.000514649 0.000595118 0.000674192 0.00075188 0.00082819 0.000903129 0.000976705 0.00104893 0.0011198 0.00118933 0.00125753 0.0013244 0.00138996 0.00145421 0.00151715 0.0015788 0.00163916 0.00169824 0.00175604 0.00181258 0.00186786 0.0019219 0.00197468 0.00202623 0.00207656 0.00212566 0.00217355 0.00222023 0.00226571 0.00231001 0.00235312 0.00239505 0.00243582 0.00247544 0.0025139 0.00255122 0.00258741 0.00262248 0.00265644 0.00268929 0.00272105 0.00275173 0.00278134 0.00280989 0.0028374 0.00286388 0.00288934 0.0029138 0.00293728 0.0029598 0.00298137 0.00300202 0.00302178 0.00304066 0.0030587 0.00307593 0.00309238 0.00310808 0.00312307 0.00313738 0.00315106 0.00316414 0.00317667 0.00318867 0.0032002 0.00321127 0.00322194 0.00323222 0.00324216 0.00325177 0.00326107 0.00327011 0.00327888 0.00328742 0.00329574 0.00330385 0.00331176 0.0033195 0.00332706 0.00333447 0.00334173 0.00334884 0.00335583 0.00336268 0.00336942 0.00337605 0.00338256 0.00338898 0.00339529 0.00340152 0.00340766 0.00341371 0.00341968 0.00342558 0.0034314 0.00343716 0.00344284 0.00344847 0.00345403 0.00345953 0.00346497 0.00347036 0.0034757 0.00348099 0.00348623 0.00349142 0.00349657 0.00350167 0.00350673 0.00351176 0.00351674 0.00352168 0.00352659 0.00353147 0.00353631 0.00354111 0.00354589 0.00355063 0.00355534 0.00356003 0.00356468 0.00356931 0.00357391 0.00357849 0.00358304 0.00358756 0.00359206 0.00359654 0.003601 0.00360543 0.00360984 0.00361423 0.00361861 0.00362296 0.00362729 0.0036316 0.00363589 0.00364017 0.00364442 0.00364866 0.00365289 0.0036571 0.00366129 0.00366546 0.00366962 0.00367377 0.0036779 0.00368201 0.00368611 0.0036902 0.00369428 0.00369834 0.00370239 0.00370642 0.00371045 0.00371446 0.00371846 0.00372245 0.00372643 0.0037304 0.00373436 0.0037383 0.00374224 0.00374617 0.00375009 0.003754 0.0037579 0.0037618 0.00376568 0.00376956 0.00377343 0.00377729 0.00378115 0.003785 0.00378884 +-0.000877273 -0.000790952 -0.000704275 -0.000617239 -0.000529843 -0.000442084 -0.00035396 -0.000265467 -0.000176604 -8.73695E-05 2.23041E-06 9.14084E-05 0.00017915 0.000265466 0.000350366 0.000433858 0.000515949 0.000596648 0.000675962 0.000753899 0.000830466 0.00090567 0.00097952 0.00105202 0.00112319 0.00119302 0.00126153 0.00132871 0.00139459 0.00145917 0.00152245 0.00158445 0.00164516 0.0017046 0.00176277 0.00181969 0.00187535 0.00192977 0.00198296 0.00203491 0.00208564 0.00213516 0.00218347 0.00223058 0.0022765 0.00232123 0.00236479 0.00240717 0.0024484 0.00248848 0.00252741 0.0025652 0.00260187 0.00263742 0.00267186 0.0027052 0.00273745 0.00276862 0.00279873 0.00282778 0.00285579 0.00288277 0.00290874 0.0029337 0.00295768 0.0029807 0.00300277 0.00302391 0.00304415 0.00306352 0.00308203 0.00309972 0.00311662 0.00313276 0.00314817 0.00316289 0.00317696 0.00319042 0.00320331 0.00321565 0.0032275 0.00323888 0.00324984 0.0032604 0.00327059 0.00328044 0.00328998 0.00329924 0.00330822 0.00331696 0.00332547 0.00333376 0.00334185 0.00334975 0.00335748 0.00336504 0.00337245 0.00337971 0.00338683 0.00339382 0.00340068 0.00340743 0.00341407 0.0034206 0.00342703 0.00343337 0.00343961 0.00344577 0.00345184 0.00345784 0.00346376 0.0034696 0.00347538 0.00348109 0.00348674 0.00349232 0.00349785 0.00350332 0.00350874 0.0035141 0.00351942 0.00352468 0.0035299 0.00353508 0.00354021 0.0035453 0.00355035 0.00355536 0.00356033 0.00356527 0.00357017 0.00357504 0.00357987 0.00358468 0.00358945 0.00359419 0.0035989 0.00360359 0.00360824 0.00361287 0.00361747 0.00362205 0.00362661 0.00363113 0.00363564 0.00364012 0.00364458 0.00364902 0.00365344 0.00365784 0.00366222 0.00366658 0.00367091 0.00367523 0.00367954 0.00368382 0.00368809 0.00369234 0.00369657 0.00370079 0.00370499 0.00370918 0.00371335 0.0037175 0.00372164 0.00372577 0.00372989 0.00373399 0.00373807 0.00374215 0.00374621 0.00375026 0.0037543 0.00375832 0.00376234 0.00376634 0.00377034 0.00377432 0.00377829 0.00378226 0.00378621 0.00379016 0.00379409 0.00379802 0.00380194 0.00380585 0.00380975 0.00381365 0.00381753 0.00382141 0.00382529 +-0.000878522 -0.000792083 -0.000705284 -0.000618123 -0.000530597 -0.000442704 -0.000354441 -0.000265806 -0.000176795 -8.74091E-05 2.34709E-06 9.16941E-05 0.000179614 0.000266118 0.000351215 0.000434913 0.00051722 0.000598144 0.000677691 0.00075587 0.000832687 0.000908152 0.00098227 0.00105505 0.0011265 0.00119662 0.00126543 0.00133293 0.00139912 0.00146402 0.00152764 0.00158997 0.00165103 0.00171083 0.00176936 0.00182665 0.00188268 0.00193749 0.00199106 0.00204341 0.00209454 0.00214447 0.00219319 0.00224072 0.00228707 0.00233223 0.00237623 0.00241906 0.00246074 0.00250127 0.00254066 0.00257892 0.00261605 0.00265208 0.00268699 0.00272082 0.00275355 0.00278522 0.00281582 0.00284536 0.00287387 0.00290135 0.00292781 0.00295327 0.00297775 0.00300126 0.00302383 0.00304546 0.00306619 0.00308603 0.00310501 0.00312317 0.00314052 0.00315709 0.00317293 0.00318807 0.00320254 0.00321638 0.00322963 0.00324232 0.0032545 0.0032662 0.00327745 0.00328829 0.00329875 0.00330885 0.00331863 0.00332811 0.00333731 0.00334625 0.00335496 0.00336343 0.0033717 0.00337978 0.00338767 0.00339539 0.00340295 0.00341035 0.00341761 0.00342474 0.00343174 0.00343861 0.00344537 0.00345202 0.00345857 0.00346502 0.00347137 0.00347763 0.00348381 0.00348991 0.00349592 0.00350186 0.00350773 0.00351353 0.00351927 0.00352494 0.00353055 0.00353611 0.0035416 0.00354704 0.00355244 0.00355778 0.00356307 0.00356832 0.00357352 0.00357868 0.0035838 0.00358887 0.00359391 0.00359891 0.00360388 0.00360881 0.0036137 0.00361856 0.00362339 0.00362819 0.00363296 0.0036377 0.00364241 0.0036471 0.00365175 0.00365638 0.00366099 0.00366557 0.00367013 0.00367466 0.00367917 0.00368366 0.00368812 0.00369257 0.00369699 0.0037014 0.00370578 0.00371015 0.0037145 0.00371883 0.00372314 0.00372743 0.00373171 0.00373596 0.00374021 0.00374444 0.00374865 0.00375284 0.00375703 0.00376119 0.00376535 0.00376949 0.00377361 0.00377772 0.00378182 0.00378591 0.00378999 0.00379405 0.0037981 0.00380214 0.00380617 0.00381019 0.0038142 0.0038182 0.00382219 0.00382616 0.00383013 0.00383409 0.00383805 0.00384199 0.00384593 0.00384985 0.00385377 0.00385769 0.00386159 +-0.000879714 -0.000793162 -0.000706247 -0.000618965 -0.000531314 -0.000443292 -0.000354896 -0.000266122 -0.00017697 -8.74373E-05 2.46954E-06 9.198E-05 0.000180072 0.000266758 0.000352047 0.000435946 0.000518462 0.000599604 0.000679379 0.000757794 0.000834857 0.000910574 0.000984954 0.001058 0.00112973 0.00120014 0.00126924 0.00133704 0.00140355 0.00146877 0.00153271 0.00159537 0.00165677 0.00171692 0.00177581 0.00183345 0.00188986 0.00194504 0.00199899 0.00205173 0.00210326 0.00215359 0.00220272 0.00225066 0.00229743 0.00234302 0.00238745 0.00243072 0.00247284 0.00251382 0.00255366 0.00259238 0.00262997 0.00266647 0.00270186 0.00273615 0.00276937 0.00280152 0.0028326 0.00286264 0.00289163 0.0029196 0.00294656 0.00297251 0.00299749 0.00302149 0.00304454 0.00306666 0.00308787 0.00310819 0.00312765 0.00314627 0.00316407 0.00318109 0.00319736 0.00321292 0.00322779 0.00324202 0.00325564 0.00326869 0.0032812 0.00329322 0.00330477 0.0033159 0.00332663 0.00333699 0.00334702 0.00335673 0.00336615 0.0033753 0.0033842 0.00339287 0.00340132 0.00340957 0.00341763 0.00342551 0.00343322 0.00344078 0.00344819 0.00345545 0.00346258 0.00346959 0.00347647 0.00348325 0.00348991 0.00349647 0.00350294 0.00350931 0.00351559 0.00352179 0.0035279 0.00353394 0.0035399 0.00354579 0.00355162 0.00355738 0.00356307 0.00356871 0.00357429 0.00357981 0.00358528 0.0035907 0.00359606 0.00360138 0.00360666 0.00361189 0.00361707 0.00362222 0.00362732 0.00363239 0.00363741 0.00364241 0.00364736 0.00365229 0.00365718 0.00366203 0.00366686 0.00367166 0.00367642 0.00368116 0.00368587 0.00369056 0.00369522 0.00369985 0.00370446 0.00370904 0.0037136 0.00371814 0.00372265 0.00372715 0.00373162 0.00373607 0.0037405 0.00374491 0.0037493 0.00375368 0.00375803 0.00376237 0.00376669 0.00377099 0.00377527 0.00377954 0.0037838 0.00378803 0.00379226 0.00379646 0.00380066 0.00380484 0.003809 0.00381315 0.00381729 0.00382142 0.00382553 0.00382963 0.00383372 0.00383779 0.00384186 0.00384591 0.00384996 0.00385399 0.00385801 0.00386203 0.00386603 0.00387002 0.00387401 0.00387798 0.00388195 0.00388591 0.00388987 0.00389381 0.00389775 +-0.000880852 -0.000794191 -0.000707162 -0.000619764 -0.000531993 -0.000443847 -0.000355322 -0.000266417 -0.000177127 -8.74539E-05 2.59804E-06 9.22665E-05 0.000180526 0.000267388 0.000352863 0.000436956 0.000519677 0.000601032 0.000681028 0.000759673 0.000836975 0.00091294 0.000987575 0.00106089 0.00113289 0.00120358 0.00127297 0.00134106 0.00140787 0.0014734 0.00153766 0.00160066 0.00166239 0.00172287 0.00178211 0.00184011 0.00189688 0.00195243 0.00200676 0.00205988 0.0021118 0.00216252 0.00221205 0.00226041 0.00230758 0.0023536 0.00239845 0.00244215 0.0024847 0.00252612 0.00256641 0.00260558 0.00264364 0.00268059 0.00271644 0.00275121 0.0027849 0.00281752 0.00284909 0.00287961 0.00290909 0.00293754 0.00296499 0.00299143 0.00301689 0.00304139 0.00306493 0.00308753 0.00310922 0.00313002 0.00314994 0.00316902 0.00318728 0.00320475 0.00322145 0.00323743 0.00325271 0.00326733 0.00328133 0.00329473 0.00330759 0.00331994 0.0033318 0.00334322 0.00335423 0.00336486 0.00337514 0.00338509 0.00339473 0.0034041 0.00341321 0.00342207 0.00343071 0.00343914 0.00344737 0.00345541 0.00346328 0.00347099 0.00347854 0.00348595 0.00349322 0.00350035 0.00350737 0.00351426 0.00352105 0.00352773 0.0035343 0.00354078 0.00354717 0.00355347 0.00355969 0.00356582 0.00357188 0.00357787 0.00358378 0.00358963 0.00359541 0.00360113 0.00360679 0.0036124 0.00361794 0.00362344 0.00362888 0.00363428 0.00363962 0.00364492 0.00365018 0.00365539 0.00366056 0.00366569 0.00367079 0.00367584 0.00368086 0.00368584 0.00369079 0.00369571 0.00370059 0.00370545 0.00371027 0.00371507 0.00371983 0.00372457 0.00372928 0.00373397 0.00373863 0.00374326 0.00374787 0.00375246 0.00375702 0.00376156 0.00376608 0.00377058 0.00377506 0.00377952 0.00378395 0.00378837 0.00379277 0.00379715 0.00380152 0.00380586 0.00381019 0.0038145 0.00381879 0.00382307 0.00382734 0.00383158 0.00383582 0.00384004 0.00384424 0.00384843 0.00385261 0.00385677 0.00386092 0.00386506 0.00386918 0.00387329 0.0038774 0.00388149 0.00388556 0.00388963 0.00389369 0.00389774 0.00390178 0.0039058 0.00390982 0.00391383 0.00391783 0.00392183 0.00392581 0.00392979 0.00393376 +-0.000881934 -0.000795168 -0.000708032 -0.000620522 -0.000532635 -0.00044437 -0.000355722 -0.000266689 -0.000177268 -8.74587E-05 2.73287E-06 9.2554E-05 0.000180975 0.000268009 0.000353663 0.000437946 0.000520865 0.000602427 0.000682639 0.000761509 0.000839043 0.000915249 0.000990134 0.00106371 0.00113597 0.00120694 0.00127661 0.00134499 0.0014121 0.00147794 0.00154251 0.00160582 0.00166788 0.0017287 0.00178828 0.00184663 0.00190375 0.00195966 0.00201436 0.00206786 0.00212016 0.00217127 0.0022212 0.00226995 0.00231754 0.00236396 0.00240923 0.00245336 0.00249634 0.00253819 0.00257892 0.00261854 0.00265704 0.00269445 0.00273076 0.002766 0.00280015 0.00283325 0.00286528 0.00289628 0.00292624 0.00295517 0.0029831 0.00301003 0.00303598 0.00306095 0.00308498 0.00310806 0.00313023 0.0031515 0.0031719 0.00319144 0.00321015 0.00322806 0.00324521 0.00326161 0.0032773 0.00329232 0.00330669 0.00332047 0.00333368 0.00334636 0.00335854 0.00337026 0.00338156 0.00339245 0.00340299 0.00341318 0.00342306 0.00343264 0.00344196 0.00345102 0.00345985 0.00346846 0.00347687 0.00348508 0.00349311 0.00350097 0.00350868 0.00351623 0.00352364 0.00353091 0.00353805 0.00354507 0.00355198 0.00355878 0.00356547 0.00357206 0.00357856 0.00358496 0.00359128 0.00359752 0.00360368 0.00360976 0.00361576 0.0036217 0.00362757 0.00363338 0.00363912 0.00364481 0.00365043 0.00365601 0.00366152 0.00366699 0.00367241 0.00367778 0.00368311 0.00368839 0.00369363 0.00369883 0.00370399 0.00370911 0.00371419 0.00371924 0.00372425 0.00372922 0.00373417 0.00373908 0.00374396 0.00374881 0.00375363 0.00375842 0.00376319 0.00376793 0.00377264 0.00377732 0.00378199 0.00378662 0.00379124 0.00379583 0.00380039 0.00380494 0.00380946 0.00381397 0.00381845 0.00382291 0.00382736 0.00383178 0.00383619 0.00384058 0.00384495 0.0038493 0.00385364 0.00385796 0.00386226 0.00386655 0.00387083 0.00387508 0.00387933 0.00388355 0.00388777 0.00389197 0.00389616 0.00390033 0.0039045 0.00390865 0.00391278 0.00391691 0.00392102 0.00392513 0.00392922 0.0039333 0.00393737 0.00394144 0.00394549 0.00394953 0.00395357 0.00395759 0.00396161 0.00396562 0.00396962 +-0.000882961 -0.000796095 -0.000708855 -0.000621238 -0.000533241 -0.000444861 -0.000356094 -0.000266939 -0.000177391 -8.74514E-05 2.87434E-06 9.2843E-05 0.000181421 0.00026862 0.000354449 0.000438916 0.000522027 0.000603791 0.000684213 0.000763301 0.000841063 0.000917505 0.000992634 0.00106646 0.00113898 0.00121021 0.00128016 0.00134883 0.00141623 0.00148237 0.00154724 0.00161087 0.00167325 0.0017344 0.00179431 0.001853 0.00191048 0.00196674 0.0020218 0.00207567 0.00212835 0.00217984 0.00223015 0.0022793 0.00232729 0.00237412 0.0024198 0.00246434 0.00250775 0.00255003 0.0025912 0.00263125 0.0026702 0.00270805 0.00274482 0.00278051 0.00281513 0.00284868 0.00288119 0.00291265 0.00294309 0.0029725 0.00300091 0.00302831 0.00305474 0.0030802 0.0031047 0.00312826 0.00315091 0.00317265 0.00319351 0.00321352 0.00323268 0.00325104 0.00326862 0.00328545 0.00330156 0.00331697 0.00333174 0.00334589 0.00335945 0.00337247 0.00338498 0.00339701 0.00340859 0.00341977 0.00343056 0.00344101 0.00345112 0.00346093 0.00347046 0.00347973 0.00348876 0.00349755 0.00350614 0.00351452 0.00352272 0.00353074 0.00353859 0.00354629 0.00355384 0.00356125 0.00356853 0.00357568 0.00358271 0.00358963 0.00359644 0.00360314 0.00360975 0.00361626 0.00362269 0.00362902 0.00363528 0.00364145 0.00364756 0.00365358 0.00365954 0.00366544 0.00367127 0.00367703 0.00368274 0.00368839 0.00369399 0.00369954 0.00370503 0.00371047 0.00371587 0.00372122 0.00372653 0.0037318 0.00373702 0.00374221 0.00374735 0.00375246 0.00375753 0.00376257 0.00376757 0.00377254 0.00377748 0.00378239 0.00378727 0.00379211 0.00379693 0.00380172 0.00380649 0.00381123 0.00381594 0.00382063 0.00382529 0.00382993 0.00383455 0.00383914 0.00384371 0.00384826 0.00385279 0.0038573 0.00386179 0.00386626 0.00387071 0.00387514 0.00387956 0.00388395 0.00388833 0.00389269 0.00389704 0.00390137 0.00390568 0.00390998 0.00391426 0.00391853 0.00392278 0.00392702 0.00393125 0.00393546 0.00393966 0.00394385 0.00394802 0.00395218 0.00395633 0.00396047 0.0039646 0.00396872 0.00397282 0.00397692 0.003981 0.00398508 0.00398915 0.00399321 0.00399726 0.0040013 0.00400533 +-0.000883934 -0.000796973 -0.000709633 -0.000621913 -0.00053381 -0.000445319 -0.000356439 -0.000267166 -0.000177497 -8.74319E-05 3.02275E-06 9.31339E-05 0.000181863 0.000269223 0.000355221 0.000439866 0.000523165 0.000605124 0.000685751 0.000765053 0.000843036 0.000919707 0.000995074 0.00106914 0.00114192 0.00121342 0.00128364 0.00135258 0.00142027 0.00148669 0.00155187 0.0016158 0.0016785 0.00173997 0.00180021 0.00185924 0.00191706 0.00197367 0.00202909 0.00208332 0.00213636 0.00218823 0.00223893 0.00228847 0.00233685 0.00238408 0.00243016 0.00247512 0.00251894 0.00256165 0.00260324 0.00264372 0.00268311 0.0027214 0.00275862 0.00279476 0.00282983 0.00286385 0.00289681 0.00292874 0.00295964 0.00298953 0.00301841 0.00304629 0.00307319 0.00309912 0.0031241 0.00314814 0.00317125 0.00319346 0.00321479 0.00323526 0.00325488 0.00327369 0.0032917 0.00330896 0.00332548 0.00334131 0.00335646 0.00337099 0.00338491 0.00339828 0.00341111 0.00342346 0.00343534 0.0034468 0.00345787 0.00346856 0.00347892 0.00348896 0.00349871 0.00350819 0.00351741 0.0035264 0.00353517 0.00354373 0.00355209 0.00356027 0.00356829 0.00357613 0.00358383 0.00359138 0.00359879 0.00360607 0.00361323 0.00362027 0.0036272 0.00363402 0.00364074 0.00364736 0.00365389 0.00366033 0.00366669 0.00367296 0.00367916 0.00368528 0.00369133 0.00369731 0.00370323 0.00370908 0.00371487 0.0037206 0.00372628 0.0037319 0.00373747 0.00374299 0.00374846 0.00375388 0.00375926 0.00376459 0.00376988 0.00377513 0.00378034 0.00378552 0.00379065 0.00379575 0.00380081 0.00380584 0.00381084 0.0038158 0.00382074 0.00382564 0.00383052 0.00383536 0.00384018 0.00384497 0.00384973 0.00385447 0.00385918 0.00386387 0.00386854 0.00387318 0.0038778 0.0038824 0.00388698 0.00389153 0.00389607 0.00390058 0.00390507 0.00390955 0.00391401 0.00391845 0.00392287 0.00392727 0.00393166 0.00393603 0.00394038 0.00394472 0.00394904 0.00395335 0.00395764 0.00396192 0.00396618 0.00397043 0.00397467 0.0039789 0.00398311 0.0039873 0.00399149 0.00399567 0.00399983 0.00400398 0.00400812 0.00401225 0.00401637 0.00402048 0.00402458 0.00402867 0.00403275 0.00403683 0.00404089 +-0.000884853 -0.0007978 -0.000710366 -0.000622547 -0.000534342 -0.000445746 -0.000356757 -0.000267371 -0.000177586 -8.74E-05 3.17843E-06 9.34269E-05 0.000182302 0.000269817 0.00035598 0.000440798 0.000524279 0.000606429 0.000687255 0.000766764 0.000844963 0.000921858 0.000997458 0.00107177 0.00114479 0.00121655 0.00128703 0.00135625 0.00142421 0.00149092 0.0015564 0.00162063 0.00168364 0.00174542 0.00180599 0.00186534 0.0019235 0.00198046 0.00203622 0.00209081 0.00214422 0.00219645 0.00224753 0.00229744 0.00234621 0.00239384 0.00244032 0.00248568 0.00252992 0.00257304 0.00261505 0.00265596 0.00269578 0.00273451 0.00277216 0.00280874 0.00284426 0.00287873 0.00291216 0.00294455 0.00297591 0.00300626 0.0030356 0.00306395 0.00309132 0.00311773 0.00314318 0.00316768 0.00319127 0.00321395 0.00323574 0.00325666 0.00327674 0.00329599 0.00331445 0.00333214 0.00334908 0.00336531 0.00338086 0.00339577 0.00341006 0.00342378 0.00343695 0.00344961 0.00346181 0.00347355 0.00348489 0.00349585 0.00350646 0.00351673 0.00352671 0.0035364 0.00354583 0.00355501 0.00356396 0.0035727 0.00358124 0.00358958 0.00359775 0.00360575 0.0036136 0.00362129 0.00362884 0.00363626 0.00364354 0.00365071 0.00365776 0.0036647 0.00367153 0.00367826 0.0036849 0.00369145 0.0036979 0.00370428 0.00371057 0.00371679 0.00372293 0.003729 0.00373501 0.00374094 0.00374682 0.00375263 0.00375839 0.00376409 0.00376973 0.00377533 0.00378087 0.00378637 0.00379181 0.00379722 0.00380258 0.00380789 0.00381317 0.0038184 0.0038236 0.00382876 0.00383389 0.00383898 0.00384403 0.00384905 0.00385405 0.003859 0.00386393 0.00386883 0.00387371 0.00387855 0.00388337 0.00388816 0.00389292 0.00389766 0.00390237 0.00390706 0.00391173 0.00391638 0.003921 0.0039256 0.00393018 0.00393474 0.00393928 0.0039438 0.0039483 0.00395279 0.00395725 0.0039617 0.00396612 0.00397054 0.00397493 0.00397931 0.00398367 0.00398802 0.00399235 0.00399667 0.00400097 0.00400526 0.00400953 0.00401379 0.00401804 0.00402227 0.0040265 0.00403071 0.00403491 0.00403909 0.00404327 0.00404743 0.00405159 0.00405573 0.00405986 0.00406399 0.0040681 0.00407221 0.00407631 +-0.000885719 -0.000798578 -0.000711053 -0.000623141 -0.000534838 -0.000446141 -0.000357048 -0.000267554 -0.000177656 -8.73553E-05 3.34171E-06 9.37228E-05 0.000182739 0.000270404 0.000356727 0.000441713 0.00052537 0.000607705 0.000688725 0.000768436 0.000846845 0.00092396 0.000999786 0.00107433 0.0011476 0.0012196 0.00129034 0.00135983 0.00142806 0.00149506 0.00156082 0.00162535 0.00168866 0.00175075 0.00181163 0.00187132 0.0019298 0.00198709 0.00204321 0.00209814 0.0021519 0.0022045 0.00225595 0.00230624 0.00235539 0.0024034 0.00245028 0.00249604 0.00254068 0.0025842 0.00262663 0.00266796 0.0027082 0.00274736 0.00278545 0.00282247 0.00285844 0.00289335 0.00292722 0.00296007 0.00299189 0.0030227 0.0030525 0.00308132 0.00310915 0.00313602 0.00316194 0.00318691 0.00321096 0.00323411 0.00325636 0.00327774 0.00329827 0.00331797 0.00333687 0.00335498 0.00337235 0.00338899 0.00340494 0.00342023 0.0034349 0.00344897 0.00346248 0.00347547 0.00348797 0.00350002 0.00351164 0.00352286 0.00353372 0.00354424 0.00355445 0.00356435 0.00357399 0.00358337 0.00359252 0.00360144 0.00361015 0.00361866 0.003627 0.00363515 0.00364315 0.00365098 0.00365867 0.00366623 0.00367365 0.00368094 0.00368811 0.00369517 0.00370212 0.00370897 0.00371571 0.00372237 0.00372893 0.0037354 0.00374179 0.00374811 0.00375434 0.00376051 0.0037666 0.00377262 0.00377858 0.00378448 0.00379032 0.0037961 0.00380182 0.00380749 0.00381311 0.00381868 0.00382419 0.00382967 0.0038351 0.00384048 0.00384582 0.00385112 0.00385638 0.00386161 0.00386679 0.00387194 0.00387706 0.00388214 0.00388719 0.0038922 0.00389719 0.00390214 0.00390707 0.00391197 0.00391684 0.00392168 0.00392649 0.00393128 0.00393605 0.00394079 0.0039455 0.0039502 0.00395487 0.00395952 0.00396414 0.00396875 0.00397333 0.0039779 0.00398244 0.00398697 0.00399148 0.00399596 0.00400043 0.00400489 0.00400932 0.00401374 0.00401815 0.00402253 0.0040269 0.00403126 0.0040356 0.00403993 0.00404424 0.00404854 0.00405282 0.00405709 0.00406135 0.0040656 0.00406983 0.00407405 0.00407826 0.00408246 0.00408665 0.00409083 0.004095 0.00409915 0.0041033 0.00410744 0.00411157 +-0.000886532 -0.000799307 -0.000711696 -0.000623693 -0.000535297 -0.000446504 -0.000357311 -0.000267714 -0.000177709 -8.72976E-05 3.51297E-06 9.40217E-05 0.000183175 0.000270985 0.000357461 0.00044261 0.000526439 0.000608954 0.000690162 0.00077007 0.000848685 0.000926012 0.00100206 0.00107683 0.00115034 0.00122259 0.00129358 0.00136333 0.00143183 0.0014991 0.00156514 0.00162996 0.00169357 0.00175596 0.00181716 0.00187716 0.00193597 0.00199359 0.00205004 0.00210532 0.00215943 0.00221239 0.0022642 0.00231486 0.00236438 0.00241277 0.00246004 0.00250619 0.00255123 0.00259516 0.00263799 0.00267974 0.0027204 0.00275998 0.00279849 0.00283595 0.00287235 0.0029077 0.00294202 0.00297531 0.00300758 0.00303885 0.00306911 0.00309838 0.00312668 0.00315401 0.00318039 0.00320583 0.00323034 0.00325394 0.00327665 0.00329849 0.00331947 0.00333961 0.00335895 0.0033775 0.00339529 0.00341234 0.00342869 0.00344437 0.00345941 0.00347385 0.00348771 0.00350103 0.00351385 0.0035262 0.0035381 0.0035496 0.00356072 0.00357149 0.00358192 0.00359206 0.0036019 0.00361149 0.00362083 0.00362993 0.00363882 0.00364751 0.00365601 0.00366433 0.00367247 0.00368046 0.00368829 0.00369598 0.00370353 0.00371096 0.00371826 0.00372544 0.00373251 0.00373947 0.00374633 0.00375309 0.00375975 0.00376633 0.00377282 0.00377923 0.00378556 0.00379182 0.003798 0.00380412 0.00381016 0.00381614 0.00382206 0.00382792 0.00383373 0.00383947 0.00384517 0.00385081 0.0038564 0.00386194 0.00386744 0.00387289 0.0038783 0.00388367 0.003889 0.00389428 0.00389953 0.00390474 0.00390992 0.00391506 0.00392016 0.00392524 0.00393028 0.00393529 0.00394027 0.00394522 0.00395014 0.00395504 0.00395991 0.00396475 0.00396956 0.00397435 0.00397912 0.00398386 0.00398858 0.00399327 0.00399794 0.0040026 0.00400723 0.00401184 0.00401643 0.00402099 0.00402554 0.00403008 0.00403459 0.00403908 0.00404356 0.00404802 0.00405246 0.00405689 0.0040613 0.0040657 0.00407008 0.00407444 0.00407879 0.00408313 0.00408745 0.00409176 0.00409605 0.00410034 0.00410461 0.00410886 0.00411311 0.00411734 0.00412156 0.00412578 0.00412998 0.00413417 0.00413835 0.00414252 0.00414668 +-0.000887292 -0.000799988 -0.000712293 -0.000624205 -0.00053572 -0.000446835 -0.000357547 -0.000267851 -0.000177744 -8.72266E-05 3.69255E-06 9.43244E-05 0.000183609 0.00027156 0.000358185 0.000443492 0.000527487 0.000610177 0.000691569 0.000771668 0.000850482 0.000928018 0.00100428 0.00107928 0.00115302 0.0012255 0.00129674 0.00136674 0.00143551 0.00150305 0.00156937 0.00163447 0.00169837 0.00176106 0.00182256 0.00188287 0.001942 0.00199995 0.00205673 0.00211235 0.00216681 0.00222011 0.00227228 0.0023233 0.00237319 0.00242196 0.00246961 0.00251614 0.00256157 0.0026059 0.00264914 0.00269129 0.00273236 0.00277236 0.0028113 0.00284918 0.00288601 0.0029218 0.00295655 0.00299029 0.003023 0.00305471 0.00308543 0.00311516 0.00314391 0.0031717 0.00319853 0.00322443 0.0032494 0.00327346 0.00329662 0.00331891 0.00334034 0.00336093 0.0033807 0.00339969 0.0034179 0.00343537 0.00345212 0.0034682 0.00348362 0.00349842 0.00351263 0.00352629 0.00353943 0.00355209 0.00356429 0.00357606 0.00358745 0.00359846 0.00360914 0.0036195 0.00362957 0.00363936 0.00364889 0.00365819 0.00366727 0.00367613 0.00368479 0.00369327 0.00370157 0.00370971 0.00371769 0.00372552 0.00373321 0.00374077 0.00374819 0.0037555 0.00376269 0.00376976 0.00377674 0.00378361 0.00379038 0.00379707 0.00380366 0.00381017 0.0038166 0.00382295 0.00382922 0.00383542 0.00384156 0.00384762 0.00385363 0.00385957 0.00386545 0.00387128 0.00387705 0.00388276 0.00388843 0.00389404 0.00389961 0.00390513 0.00391061 0.00391604 0.00392144 0.00392679 0.0039321 0.00393737 0.00394261 0.00394781 0.00395297 0.00395811 0.0039632 0.00396827 0.00397331 0.00397831 0.00398329 0.00398824 0.00399316 0.00399805 0.00400291 0.00400775 0.00401257 0.00401736 0.00402212 0.00402687 0.00403159 0.00403629 0.00404096 0.00404562 0.00405025 0.00405486 0.00405946 0.00406403 0.00406859 0.00407312 0.00407764 0.00408214 0.00408663 0.0040911 0.00409555 0.00409998 0.0041044 0.0041088 0.00411319 0.00411757 0.00412192 0.00412627 0.0041306 0.00413492 0.00413923 0.00414352 0.0041478 0.00415207 0.00415633 0.00416057 0.00416481 0.00416903 0.00417325 0.00417745 0.00418164 +-0.000887998 -0.000800619 -0.000712846 -0.000624677 -0.000536107 -0.000447135 -0.000357755 -0.000267965 -0.00017776 -8.71419E-05 3.88086E-06 9.46311E-05 0.000184043 0.000272129 0.000358899 0.000444359 0.000528515 0.000611375 0.000692945 0.000773231 0.00085224 0.000929978 0.00100645 0.00108167 0.00115563 0.00122835 0.00129983 0.00137008 0.00143911 0.00150691 0.0015735 0.00163888 0.00170306 0.00176605 0.00182785 0.00188846 0.0019479 0.00200617 0.00206328 0.00211923 0.00217402 0.00222768 0.00228019 0.00233157 0.00238183 0.00243096 0.00247898 0.0025259 0.00257171 0.00261643 0.00266006 0.00270262 0.00274409 0.00278451 0.00282386 0.00286216 0.00289942 0.00293563 0.00297082 0.00300499 0.00303815 0.0030703 0.00310146 0.00313164 0.00316084 0.00318908 0.00321637 0.00324272 0.00326814 0.00329266 0.00331628 0.00333901 0.00336089 0.00338192 0.00340213 0.00342155 0.00344018 0.00345807 0.00347523 0.0034917 0.0035075 0.00352267 0.00353724 0.00355125 0.00356471 0.00357768 0.00359018 0.00360224 0.0036139 0.00362517 0.00363609 0.00364669 0.00365697 0.00366698 0.00367672 0.00368621 0.00369547 0.00370451 0.00371335 0.00372199 0.00373045 0.00373874 0.00374687 0.00375484 0.00376267 0.00377036 0.00377792 0.00378535 0.00379266 0.00379986 0.00380695 0.00381393 0.00382081 0.0038276 0.0038343 0.00384091 0.00384744 0.00385388 0.00386025 0.00386654 0.00387277 0.00387892 0.00388501 0.00389103 0.003897 0.0039029 0.00390875 0.00391454 0.00392028 0.00392597 0.00393161 0.0039372 0.00394275 0.00394825 0.0039537 0.00395912 0.0039645 0.00396983 0.00397513 0.00398039 0.00398562 0.00399081 0.00399596 0.00400109 0.00400618 0.00401124 0.00401627 0.00402127 0.00402624 0.00403119 0.0040361 0.00404099 0.00404586 0.0040507 0.00405551 0.0040603 0.00406507 0.00406982 0.00407454 0.00407924 0.00408392 0.00408857 0.00409321 0.00409783 0.00410243 0.00410701 0.00411157 0.00411611 0.00412064 0.00412514 0.00412964 0.00413411 0.00413857 0.00414301 0.00414744 0.00415185 0.00415625 0.00416063 0.004165 0.00416935 0.00417369 0.00417802 0.00418234 0.00418664 0.00419094 0.00419522 0.00419948 0.00420374 0.00420799 0.00421223 0.00421645 +-0.000888653 -0.000801202 -0.000713355 -0.000625108 -0.000536458 -0.000447402 -0.000357936 -0.000268055 -0.000177758 -8.70434E-05 4.07831E-06 9.49424E-05 0.000184476 0.000272694 0.000359603 0.000445211 0.000529524 0.000612549 0.000694292 0.000774759 0.000853958 0.000931894 0.00100857 0.001084 0.00115819 0.00123114 0.00130285 0.00137335 0.00144262 0.00151068 0.00157754 0.00164319 0.00170765 0.00177093 0.00183302 0.00189393 0.00195368 0.00201226 0.00206969 0.00212596 0.00218109 0.00223508 0.00228794 0.00233967 0.00239029 0.00243978 0.00248817 0.00253546 0.00258165 0.00262676 0.00267078 0.00271373 0.00275561 0.00279643 0.00283619 0.0028749 0.00291258 0.00294922 0.00298484 0.00301944 0.00305303 0.00308562 0.00311722 0.00314784 0.00317749 0.00320617 0.00323391 0.00326071 0.00328658 0.00331155 0.00333561 0.0033588 0.00338112 0.00340259 0.00342324 0.00344308 0.00346214 0.00348044 0.00349801 0.00351488 0.00353107 0.00354662 0.00356155 0.0035759 0.0035897 0.00360299 0.00361579 0.00362814 0.00364007 0.00365161 0.00366278 0.00367361 0.00368413 0.00369435 0.00370429 0.00371398 0.00372343 0.00373265 0.00374167 0.00375048 0.0037591 0.00376755 0.00377583 0.00378395 0.00379192 0.00379974 0.00380743 0.00381499 0.00382243 0.00382975 0.00383695 0.00384405 0.00385105 0.00385794 0.00386474 0.00387146 0.00387808 0.00388462 0.00389109 0.00389747 0.00390379 0.00391003 0.0039162 0.00392231 0.00392836 0.00393434 0.00394027 0.00394614 0.00395195 0.00395772 0.00396343 0.00396909 0.00397471 0.00398028 0.0039858 0.00399128 0.00399672 0.00400212 0.00400748 0.0040128 0.00401809 0.00402334 0.00402855 0.00403374 0.00403888 0.004044 0.00404909 0.00405414 0.00405917 0.00406416 0.00406913 0.00407407 0.00407899 0.00408388 0.00408874 0.00409358 0.00409839 0.00410319 0.00410795 0.0041127 0.00411742 0.00412213 0.00412681 0.00413147 0.00413611 0.00414074 0.00414534 0.00414992 0.00415449 0.00415904 0.00416357 0.00416808 0.00417258 0.00417706 0.00418153 0.00418598 0.00419041 0.00419483 0.00419924 0.00420363 0.00420801 0.00421237 0.00421673 0.00422106 0.00422539 0.00422971 0.00423401 0.0042383 0.00424258 0.00424685 0.00425111 +-0.000889255 -0.000801736 -0.000713819 -0.000625499 -0.000536773 -0.000447637 -0.000358089 -0.000268123 -0.000177737 -8.69305E-05 4.2853E-06 9.52589E-05 0.000184911 0.000273254 0.000360298 0.00044605 0.000530515 0.0006137 0.000695611 0.000776255 0.000855638 0.000933766 0.00101065 0.00108628 0.00116069 0.00123386 0.0013058 0.00137654 0.00144605 0.00151437 0.00158148 0.00164741 0.00171214 0.00177569 0.00183807 0.00189928 0.00195933 0.00201822 0.00207596 0.00213256 0.00218801 0.00224234 0.00229553 0.00234761 0.00239857 0.00244843 0.00249718 0.00254484 0.0025914 0.00263689 0.00268129 0.00272463 0.0027669 0.00280812 0.00284829 0.00288741 0.0029255 0.00296256 0.00299859 0.00303362 0.00306764 0.00310066 0.0031327 0.00316376 0.00319384 0.00322297 0.00325115 0.0032784 0.00330472 0.00333013 0.00335464 0.00337827 0.00340103 0.00342294 0.00344402 0.0034643 0.00348378 0.0035025 0.00352048 0.00353774 0.00355432 0.00357025 0.00358554 0.00360024 0.00361438 0.003628 0.00364111 0.00365375 0.00366597 0.00367777 0.0036892 0.00370027 0.00371102 0.00372146 0.00373162 0.00374151 0.00375115 0.00376056 0.00376975 0.00377873 0.00378752 0.00379613 0.00380456 0.00381283 0.00382094 0.00382891 0.00383673 0.00384442 0.00385199 0.00385943 0.00386675 0.00387397 0.00388108 0.00388808 0.00389499 0.00390181 0.00390853 0.00391518 0.00392174 0.00392822 0.00393462 0.00394095 0.00394721 0.00395341 0.00395954 0.0039656 0.00397161 0.00397756 0.00398345 0.00398929 0.00399507 0.00400081 0.00400649 0.00401213 0.00401772 0.00402327 0.00402878 0.00403424 0.00403966 0.00404505 0.0040504 0.0040557 0.00406098 0.00406622 0.00407142 0.0040766 0.00408174 0.00408685 0.00409192 0.00409697 0.00410199 0.00410699 0.00411195 0.00411689 0.00412181 0.00412669 0.00413156 0.0041364 0.00414121 0.004146 0.00415077 0.00415552 0.00416025 0.00416495 0.00416964 0.0041743 0.00417895 0.00418358 0.00418818 0.00419277 0.00419735 0.0042019 0.00420644 0.00421096 0.00421546 0.00421995 0.00422443 0.00422888 0.00423333 0.00423776 0.00424217 0.00424657 0.00425096 0.00425533 0.00425969 0.00426404 0.00426838 0.00427271 0.00427702 0.00428133 0.00428562 +-0.000889805 -0.000802222 -0.000714238 -0.000625849 -0.000537051 -0.00044784 -0.000358213 -0.000268167 -0.000177696 -8.6803E-05 4.50229E-06 9.5581E-05 0.000185346 0.000273812 0.000360986 0.000446877 0.000531489 0.000614829 0.000696904 0.00077772 0.000857282 0.000935598 0.00101267 0.00108851 0.00116313 0.00123651 0.00130869 0.00137965 0.00144941 0.00151797 0.00158534 0.00165153 0.00171653 0.00178036 0.00184302 0.00190452 0.00196486 0.00202405 0.0020821 0.00213901 0.00219479 0.00224944 0.00230297 0.00235539 0.00240669 0.0024569 0.00250601 0.00255403 0.00260096 0.00264682 0.0026916 0.00273532 0.00277799 0.0028196 0.00286016 0.00289969 0.00293818 0.00297565 0.0030121 0.00304755 0.00308199 0.00311544 0.00314791 0.0031794 0.00320992 0.00323949 0.00326811 0.00329579 0.00332255 0.0033484 0.00337336 0.00339743 0.00342063 0.00344298 0.00346449 0.00348519 0.0035051 0.00352424 0.00354263 0.00356029 0.00357726 0.00359356 0.00360923 0.00362429 0.00363877 0.00365271 0.00366614 0.00367908 0.00369158 0.00370366 0.00371535 0.00372667 0.00373766 0.00374832 0.00375869 0.00376879 0.00377863 0.00378823 0.0037976 0.00380676 0.00381572 0.00382449 0.00383307 0.00384149 0.00384975 0.00385786 0.00386582 0.00387364 0.00388134 0.0038889 0.00389635 0.00390368 0.0039109 0.00391802 0.00392504 0.00393196 0.00393879 0.00394553 0.00395219 0.00395877 0.00396526 0.00397169 0.00397804 0.00398432 0.00399053 0.00399668 0.00400277 0.00400879 0.00401476 0.00402068 0.00402654 0.00403234 0.0040381 0.00404381 0.00404947 0.00405509 0.00406066 0.00406619 0.00407168 0.00407712 0.00408253 0.0040879 0.00409323 0.00409853 0.0041038 0.00410902 0.00411422 0.00411939 0.00412452 0.00412962 0.0041347 0.00413974 0.00414476 0.00414975 0.00415471 0.00415965 0.00416456 0.00416945 0.00417431 0.00417915 0.00418396 0.00418876 0.00419353 0.00419828 0.00420301 0.00420772 0.0042124 0.00421707 0.00422172 0.00422635 0.00423097 0.00423556 0.00424014 0.0042447 0.00424924 0.00425377 0.00425828 0.00426278 0.00426726 0.00427173 0.00427618 0.00428061 0.00428504 0.00428945 0.00429384 0.00429823 0.0043026 0.00430696 0.00431131 0.00431565 0.00431997 +-0.000890302 -0.00080266 -0.000714613 -0.000626158 -0.000537292 -0.000448011 -0.00035831 -0.000268187 -0.000177636 -8.66604E-05 4.72974E-06 9.59094E-05 0.000185783 0.000274366 0.000361667 0.000447692 0.000532446 0.000615938 0.000698171 0.000779154 0.000858891 0.000937389 0.00101465 0.00109069 0.00116551 0.00123911 0.00131151 0.0013827 0.00145269 0.0015215 0.00158911 0.00165555 0.00172082 0.00178492 0.00184786 0.00190964 0.00197027 0.00202976 0.00208811 0.00214533 0.00220142 0.0022564 0.00231025 0.002363 0.00241465 0.0024652 0.00251466 0.00256304 0.00261033 0.00265656 0.00270171 0.00274581 0.00278886 0.00283085 0.00287181 0.00291173 0.00295063 0.00298851 0.00302537 0.00306123 0.00309609 0.00312996 0.00316285 0.00319477 0.00322572 0.00325572 0.00328477 0.00331289 0.00334009 0.00336638 0.00339177 0.00341628 0.00343991 0.0034627 0.00348464 0.00350577 0.0035261 0.00354566 0.00356445 0.00358252 0.00359988 0.00361657 0.00363261 0.00364802 0.00366285 0.00367713 0.00369087 0.00370413 0.00371692 0.00372928 0.00374123 0.0037528 0.00376403 0.00377493 0.00378552 0.00379583 0.00380587 0.00381566 0.00382521 0.00383455 0.00384368 0.00385261 0.00386136 0.00386993 0.00387834 0.00388659 0.00389469 0.00390265 0.00391047 0.00391817 0.00392574 0.00393319 0.00394053 0.00394776 0.00395489 0.00396192 0.00396885 0.0039757 0.00398245 0.00398913 0.00399572 0.00400223 0.00400867 0.00401504 0.00402134 0.00402757 0.00403374 0.00403985 0.0040459 0.00405189 0.00405782 0.00406371 0.00406954 0.00407531 0.00408105 0.00408673 0.00409237 0.00409796 0.00410352 0.00410903 0.0041145 0.00411993 0.00412532 0.00413068 0.004136 0.00414129 0.00414654 0.00415176 0.00415695 0.00416211 0.00416723 0.00417233 0.0041774 0.00418244 0.00418745 0.00419244 0.0041974 0.00420233 0.00420724 0.00421213 0.00421699 0.00422183 0.00422665 0.00423144 0.00423622 0.00424097 0.0042457 0.00425041 0.00425511 0.00425978 0.00426443 0.00426907 0.00427369 0.00427829 0.00428287 0.00428744 0.00429199 0.00429652 0.00430104 0.00430554 0.00431003 0.0043145 0.00431896 0.00432341 0.00432784 0.00433226 0.00433667 0.00434106 0.00434544 0.00434981 0.00435417 +-0.000890747 -0.000803049 -0.000714944 -0.000626427 -0.000537497 -0.000448149 -0.000358379 -0.000268182 -0.000177557 -8.65023E-05 4.96813E-06 9.62445E-05 0.000186223 0.000274919 0.000362342 0.000448496 0.000533389 0.000617026 0.000699414 0.000780559 0.000860466 0.000939142 0.00101659 0.00109282 0.00116784 0.00124165 0.00131426 0.00138568 0.0014559 0.00152494 0.0015928 0.00165949 0.00172502 0.00178938 0.00185259 0.00191465 0.00197557 0.00203535 0.002094 0.00215152 0.00220792 0.00226321 0.00231739 0.00237047 0.00242245 0.00247334 0.00252314 0.00257187 0.00261952 0.0026661 0.00271163 0.0027561 0.00279952 0.0028419 0.00288324 0.00292356 0.00296285 0.00300113 0.00303839 0.00307466 0.00310993 0.00314422 0.00317753 0.00320987 0.00324125 0.00327167 0.00330116 0.00332971 0.00335734 0.00338406 0.00340989 0.00343483 0.0034589 0.00348211 0.00350449 0.00352604 0.00354679 0.00356676 0.00358597 0.00360444 0.00362219 0.00363926 0.00365567 0.00367146 0.00368664 0.00370125 0.00371532 0.00372888 0.00374197 0.00375461 0.00376684 0.00377867 0.00379014 0.00380127 0.00381209 0.00382261 0.00383286 0.00384284 0.00385259 0.0038621 0.00387141 0.00388051 0.00388942 0.00389815 0.00390671 0.00391511 0.00392335 0.00393144 0.0039394 0.00394722 0.00395492 0.00396249 0.00396995 0.0039773 0.00398454 0.00399168 0.00399872 0.00400566 0.00401252 0.00401929 0.00402598 0.00403259 0.00403912 0.00404558 0.00405196 0.00405828 0.00406454 0.00407072 0.00407685 0.00408292 0.00408893 0.00409489 0.00410079 0.00410664 0.00411244 0.0041182 0.0041239 0.00412957 0.00413518 0.00414076 0.00414629 0.00415179 0.00415724 0.00416266 0.00416804 0.00417338 0.00417869 0.00418397 0.00418921 0.00419442 0.0041996 0.00420475 0.00420987 0.00421497 0.00422003 0.00422507 0.00423008 0.00423506 0.00424002 0.00424495 0.00424986 0.00425475 0.00425961 0.00426445 0.00426927 0.00427407 0.00427884 0.00428359 0.00428833 0.00429304 0.00429774 0.00430242 0.00430707 0.00431172 0.00431634 0.00432094 0.00432553 0.0043301 0.00433466 0.0043392 0.00434373 0.00434824 0.00435273 0.00435722 0.00436168 0.00436614 0.00437058 0.00437501 0.00437943 0.00438383 0.00438822 +-0.00089114 -0.00080339 -0.000715229 -0.000626656 -0.000537665 -0.000448254 -0.000358418 -0.000268153 -0.000177456 -8.63283E-05 5.21797E-06 9.6587E-05 0.000186666 0.000275471 0.000363011 0.000449291 0.000534317 0.000618096 0.000700634 0.000781936 0.000862008 0.000940857 0.00101849 0.00109491 0.00117012 0.00124414 0.00131696 0.00138859 0.00145904 0.00152831 0.00159641 0.00166335 0.00172912 0.00179375 0.00185722 0.00191955 0.00198075 0.00204081 0.00209975 0.00215758 0.00221428 0.00226988 0.00232438 0.00237778 0.00243008 0.00248131 0.00253145 0.00258052 0.00262853 0.00267547 0.00272135 0.00276619 0.00280998 0.00285274 0.00289446 0.00293516 0.00297484 0.00301352 0.00305118 0.00308785 0.00312353 0.00315823 0.00319195 0.00322471 0.0032565 0.00328735 0.00331726 0.00334624 0.0033743 0.00340145 0.00342771 0.00345308 0.00347757 0.00350122 0.00352402 0.003546 0.00356717 0.00358755 0.00360717 0.00362604 0.00364419 0.00366165 0.00367844 0.00369458 0.00371012 0.00372507 0.00373947 0.00375335 0.00376674 0.00377967 0.00379217 0.00380427 0.00381599 0.00382736 0.00383841 0.00384915 0.0038596 0.00386979 0.00387972 0.00388942 0.00389891 0.00390818 0.00391725 0.00392614 0.00393486 0.0039434 0.00395179 0.00396002 0.00396811 0.00397607 0.00398389 0.00399159 0.00399917 0.00400663 0.00401399 0.00402123 0.00402838 0.00403544 0.0040424 0.00404927 0.00405605 0.00406275 0.00406938 0.00407593 0.0040824 0.00408881 0.00409514 0.00410142 0.00410762 0.00411377 0.00411986 0.00412589 0.00413187 0.00413779 0.00414367 0.00414949 0.00415527 0.004161 0.00416668 0.00417232 0.00417792 0.00418347 0.00418899 0.00419447 0.00419991 0.00420531 0.00421068 0.00421601 0.00422131 0.00422658 0.00423181 0.00423701 0.00424219 0.00424733 0.00425245 0.00425753 0.00426259 0.00426763 0.00427263 0.00427762 0.00428257 0.0042875 0.00429241 0.0042973 0.00430216 0.004307 0.00431182 0.00431662 0.0043214 0.00432615 0.00433089 0.00433561 0.00434031 0.00434499 0.00434965 0.0043543 0.00435892 0.00436353 0.00436813 0.00437271 0.00437727 0.00438182 0.00438635 0.00439087 0.00439537 0.00439986 0.00440434 0.0044088 0.00441325 0.00441769 0.00442212 +-0.000891481 -0.000803682 -0.00071547 -0.000626843 -0.000537796 -0.000448326 -0.000358429 -0.0002681 -0.000177336 -8.61378E-05 5.47978E-06 9.69374E-05 0.000187113 0.000276023 0.000363675 0.000450077 0.000535232 0.000619149 0.000701831 0.000783286 0.00086352 0.000942537 0.00102034 0.00109695 0.00117235 0.00124656 0.00131959 0.00139143 0.0014621 0.0015316 0.00159994 0.00166711 0.00173314 0.00179801 0.00186175 0.00192435 0.00198582 0.00204617 0.00210539 0.00216351 0.00222051 0.00227641 0.00233122 0.00238494 0.00243757 0.00248912 0.0025396 0.00258901 0.00263736 0.00268465 0.00273089 0.00277609 0.00282024 0.00286337 0.00290547 0.00294655 0.00298662 0.00302568 0.00306374 0.0031008 0.00313688 0.00317199 0.00320612 0.00323929 0.0032715 0.00330276 0.00333309 0.00336249 0.00339098 0.00341855 0.00344523 0.00347103 0.00349595 0.00352002 0.00354325 0.00356565 0.00358723 0.00360803 0.00362806 0.00364733 0.00366588 0.00368372 0.00370089 0.0037174 0.0037333 0.00374859 0.00376333 0.00377753 0.00379123 0.00380445 0.00381723 0.0038296 0.00384157 0.00385319 0.00386447 0.00387543 0.00388609 0.00389649 0.00390662 0.00391651 0.00392617 0.00393561 0.00394486 0.00395391 0.00396278 0.00397147 0.00398001 0.00398839 0.00399661 0.0040047 0.00401265 0.00402048 0.00402818 0.00403576 0.00404323 0.00405059 0.00405785 0.00406501 0.00407207 0.00407905 0.00408593 0.00409273 0.00409945 0.00410609 0.00411265 0.00411915 0.00412557 0.00413192 0.00413821 0.00414444 0.00415061 0.00415672 0.00416277 0.00416877 0.00417471 0.00418061 0.00418645 0.00419225 0.004198 0.00420371 0.00420937 0.00421499 0.00422057 0.00422611 0.00423161 0.00423707 0.00424249 0.00424789 0.00425324 0.00425856 0.00426385 0.00426911 0.00427434 0.00427953 0.0042847 0.00428984 0.00429495 0.00430003 0.00430509 0.00431012 0.00431512 0.0043201 0.00432505 0.00432999 0.00433489 0.00433978 0.00434464 0.00434948 0.0043543 0.0043591 0.00436388 0.00436864 0.00437338 0.0043781 0.00438281 0.00438749 0.00439216 0.00439681 0.00440144 0.00440606 0.00441066 0.00441524 0.00441981 0.00442437 0.00442891 0.00443343 0.00443795 0.00444244 0.00444693 0.0044514 0.00445586 +-0.000891769 -0.000803925 -0.000715666 -0.000626989 -0.00053789 -0.000448365 -0.00035841 -0.000268021 -0.000177194 -8.59305E-05 5.75411E-06 9.72965E-05 0.000187565 0.000276575 0.000364336 0.000450854 0.000536135 0.000620184 0.000703008 0.000784612 0.000865001 0.000944183 0.00102216 0.00109894 0.00117453 0.00124894 0.00132217 0.00139422 0.0014651 0.00153482 0.00160339 0.0016708 0.00173707 0.00180219 0.00186618 0.00192904 0.00199078 0.0020514 0.00211091 0.00216931 0.00222661 0.00228281 0.00233793 0.00239195 0.0024449 0.00249678 0.00254758 0.00259733 0.00264601 0.00269365 0.00274024 0.00278579 0.00283031 0.0028738 0.00291627 0.00295773 0.00299817 0.00303762 0.00307606 0.00311352 0.00315 0.0031855 0.00322004 0.00325361 0.00328623 0.00331791 0.00334866 0.00337847 0.00340738 0.00343537 0.00346247 0.00348869 0.00351404 0.00353853 0.00356217 0.00358499 0.003607 0.0036282 0.00364864 0.00366832 0.00368726 0.00370549 0.00372304 0.00373992 0.00375617 0.00377182 0.00378689 0.00380142 0.00381543 0.00382895 0.00384202 0.00385465 0.00386689 0.00387876 0.00389027 0.00390146 0.00391234 0.00392294 0.00393327 0.00394335 0.0039532 0.00396282 0.00397223 0.00398145 0.00399048 0.00399933 0.00400801 0.00401653 0.0040249 0.00403312 0.00404121 0.00404916 0.00405698 0.00406469 0.00407227 0.00407975 0.00408712 0.00409439 0.00410156 0.00410863 0.00411562 0.00412251 0.00412933 0.00413606 0.00414272 0.0041493 0.00415581 0.00416225 0.00416862 0.00417493 0.00418118 0.00418736 0.00419349 0.00419957 0.00420558 0.00421155 0.00421747 0.00422333 0.00422915 0.00423492 0.00424065 0.00424633 0.00425198 0.00425758 0.00426314 0.00426866 0.00427414 0.00427959 0.00428501 0.00429038 0.00429573 0.00430104 0.00430632 0.00431157 0.00431679 0.00432198 0.00432714 0.00433227 0.00433738 0.00434246 0.00434751 0.00435254 0.00435754 0.00436251 0.00436747 0.0043724 0.00437731 0.00438219 0.00438706 0.0043919 0.00439672 0.00440152 0.0044063 0.00441106 0.00441581 0.00442053 0.00442524 0.00442993 0.0044346 0.00443926 0.00444389 0.00444852 0.00445312 0.00445771 0.00446229 0.00446685 0.0044714 0.00447593 0.00448045 0.00448496 0.00448945 +-0.000892004 -0.000804119 -0.000715817 -0.000627094 -0.000537946 -0.00044837 -0.000358361 -0.000267916 -0.00017703 -8.57057E-05 6.04154E-06 9.76648E-05 0.000188022 0.000277129 0.000364995 0.000451626 0.000537027 0.000621205 0.000704165 0.000785913 0.000866454 0.000945795 0.00102394 0.0011009 0.00117667 0.00125126 0.00132469 0.00139694 0.00146803 0.00153797 0.00160676 0.0016744 0.00174091 0.00180628 0.00187052 0.00193364 0.00199564 0.00205653 0.00211631 0.002175 0.00223258 0.00228908 0.00234449 0.00239883 0.00245209 0.00250428 0.00255541 0.00260548 0.0026545 0.00270248 0.00274941 0.00279531 0.00284019 0.00288404 0.00292687 0.0029687 0.00300952 0.00304934 0.00308817 0.00312601 0.00316288 0.00319878 0.00323371 0.00326768 0.00330071 0.0033328 0.00336395 0.00339418 0.0034235 0.00345191 0.00347943 0.00350607 0.00353183 0.00355674 0.0035808 0.00360404 0.00362645 0.00364807 0.00366891 0.00368899 0.00370833 0.00372695 0.00374488 0.00376214 0.00377875 0.00379475 0.00381016 0.00382502 0.00383934 0.00385317 0.00386652 0.00387944 0.00389194 0.00390406 0.00391582 0.00392724 0.00393834 0.00394915 0.00395968 0.00396996 0.00397999 0.00398979 0.00399938 0.00400876 0.00401795 0.00402696 0.00403579 0.00404446 0.00405297 0.00406133 0.00406955 0.00407763 0.00408558 0.00409341 0.00410111 0.0041087 0.00411619 0.00412356 0.00413084 0.00413802 0.00414511 0.0041521 0.00415901 0.00416584 0.00417259 0.00417926 0.00418586 0.00419239 0.00419885 0.00420524 0.00421156 0.00421783 0.00422404 0.00423018 0.00423628 0.00424232 0.0042483 0.00425424 0.00426013 0.00426597 0.00427176 0.00427751 0.00428321 0.00428888 0.0042945 0.00430008 0.00430563 0.00431113 0.0043166 0.00432204 0.00432744 0.00433281 0.00433814 0.00434345 0.00434872 0.00435396 0.00435917 0.00436435 0.00436951 0.00437463 0.00437974 0.00438481 0.00438986 0.00439488 0.00439988 0.00440486 0.00440981 0.00441474 0.00441965 0.00442453 0.0044294 0.00443424 0.00443906 0.00444387 0.00444865 0.00445342 0.00445816 0.00446289 0.0044676 0.0044723 0.00447697 0.00448163 0.00448628 0.0044909 0.00449552 0.00450011 0.0045047 0.00450927 0.00451382 0.00451836 0.00452289 +-0.000892187 -0.000804264 -0.000715922 -0.000627157 -0.000537964 -0.000448341 -0.000358283 -0.000267785 -0.000176845 -8.5463E-05 6.34266E-06 9.8043E-05 0.000188485 0.000277684 0.000365651 0.000452391 0.000537909 0.000622211 0.000705304 0.000787191 0.00086788 0.000947376 0.00102568 0.00110281 0.00117876 0.00125354 0.00132715 0.0013996 0.0014709 0.00154105 0.00161006 0.00167793 0.00174467 0.00181027 0.00187476 0.00193813 0.00200039 0.00206155 0.0021216 0.00218056 0.00223843 0.00229522 0.00235092 0.00240556 0.00245913 0.00251163 0.00256308 0.00261347 0.00266282 0.00271113 0.00275841 0.00280465 0.00284988 0.00289408 0.00293727 0.00297946 0.00302065 0.00306084 0.00310005 0.00313828 0.00317553 0.00321182 0.00324714 0.00328151 0.00331494 0.00334743 0.00337899 0.00340963 0.00343935 0.00346818 0.00349611 0.00352316 0.00354934 0.00357466 0.00359914 0.00362279 0.00364562 0.00366764 0.00368889 0.00370937 0.0037291 0.00374811 0.00376642 0.00378405 0.00380103 0.00381738 0.00383314 0.00384833 0.00386297 0.0038771 0.00389075 0.00390395 0.00391673 0.0039291 0.0039411 0.00395276 0.00396409 0.00397511 0.00398585 0.00399632 0.00400654 0.00401653 0.00402629 0.00403585 0.0040452 0.00405436 0.00406335 0.00407217 0.00408082 0.00408932 0.00409768 0.00410589 0.00411397 0.00412192 0.00412975 0.00413746 0.00414505 0.00415254 0.00415993 0.00416721 0.0041744 0.0041815 0.00418851 0.00419543 0.00420228 0.00420904 0.00421573 0.00422234 0.00422888 0.00423536 0.00424177 0.00424812 0.0042544 0.00426062 0.00426679 0.00427291 0.00427896 0.00428497 0.00429093 0.00429683 0.0043027 0.00430851 0.00431428 0.00432001 0.00432569 0.00433134 0.00433694 0.00434251 0.00434804 0.00435353 0.00435899 0.00436441 0.0043698 0.00437515 0.00438048 0.00438577 0.00439104 0.00439627 0.00440148 0.00440665 0.0044118 0.00441692 0.00442202 0.00442709 0.00443214 0.00443716 0.00444216 0.00444713 0.00445208 0.00445701 0.00446192 0.00446681 0.00447167 0.00447652 0.00448134 0.00448615 0.00449093 0.0044957 0.00450045 0.00450518 0.0045099 0.0045146 0.00451928 0.00452394 0.00452859 0.00453322 0.00453784 0.00454245 0.00454704 0.00455161 0.00455618 +-0.000892317 -0.00080436 -0.000715981 -0.000627177 -0.000537944 -0.000448278 -0.000358174 -0.000267628 -0.000176636 -8.52018E-05 6.65811E-06 9.84319E-05 0.000188954 0.000278243 0.000366307 0.000453151 0.000538782 0.000623205 0.000706425 0.000788448 0.000869281 0.000948927 0.00102739 0.00110468 0.00118081 0.00125576 0.00132956 0.00140221 0.00147371 0.00154407 0.00161329 0.00168138 0.00174834 0.00181419 0.00187891 0.00194253 0.00200505 0.00206646 0.00212678 0.00218601 0.00224416 0.00230123 0.00235723 0.00241216 0.00246602 0.00251883 0.00257059 0.00262131 0.00267098 0.00271962 0.00276723 0.00281381 0.00285938 0.00290393 0.00294748 0.00299003 0.00303158 0.00307214 0.00311172 0.00315032 0.00318795 0.00322462 0.00326034 0.0032951 0.00332892 0.00336181 0.00339377 0.00342481 0.00345494 0.00348417 0.00351251 0.00353998 0.00356657 0.0035923 0.00361719 0.00364124 0.00366448 0.00368691 0.00370856 0.00372944 0.00374957 0.00376897 0.00378766 0.00380567 0.00382301 0.00383972 0.00385582 0.00387134 0.00388631 0.00390076 0.00391471 0.00392819 0.00394124 0.00395388 0.00396613 0.00397802 0.00398958 0.00400083 0.00401177 0.00402245 0.00403286 0.00404303 0.00405298 0.0040627 0.00407222 0.00408155 0.00409069 0.00409966 0.00410846 0.0041171 0.00412559 0.00413394 0.00414215 0.00415023 0.00415818 0.00416601 0.00417372 0.00418132 0.00418882 0.00419621 0.00420351 0.00421071 0.00421781 0.00422484 0.00423177 0.00423863 0.00424541 0.00425211 0.00425874 0.0042653 0.00427179 0.00427822 0.00428458 0.00429089 0.00429713 0.00430332 0.00430945 0.00431553 0.00432155 0.00432753 0.00433346 0.00433934 0.00434518 0.00435097 0.00435671 0.00436242 0.00436809 0.00437371 0.0043793 0.00438485 0.00439037 0.00439584 0.00440129 0.0044067 0.00441208 0.00441742 0.00442274 0.00442803 0.00443328 0.00443851 0.00444371 0.00444888 0.00445402 0.00445914 0.00446423 0.0044693 0.00447434 0.00447936 0.00448436 0.00448933 0.00449428 0.00449921 0.00450412 0.00450901 0.00451387 0.00451872 0.00452355 0.00452835 0.00453314 0.00453791 0.00454267 0.0045474 0.00455212 0.00455682 0.00456151 0.00456618 0.00457084 0.00457548 0.0045801 0.00458471 0.00458931 +-0.000892393 -0.000804406 -0.000715995 -0.000627156 -0.000537885 -0.000448179 -0.000358033 -0.000267443 -0.000176405 -8.49214E-05 6.98853E-06 9.88321E-05 0.000189432 0.000278805 0.000366962 0.000453907 0.000539647 0.000624186 0.00070753 0.000789685 0.000870657 0.000950449 0.00102907 0.00110652 0.00118281 0.00125795 0.00133193 0.00140476 0.00147646 0.00154702 0.00161645 0.00168476 0.00175194 0.00181802 0.00188298 0.00194684 0.0020096 0.00207127 0.00213185 0.00219135 0.00224977 0.00230712 0.0023634 0.00241862 0.00247278 0.0025259 0.00257796 0.00262899 0.00267898 0.00272794 0.00277588 0.0028228 0.0028687 0.0029136 0.0029575 0.0030004 0.00304231 0.00308323 0.00312318 0.00316215 0.00320016 0.0032372 0.0032733 0.00330845 0.00334266 0.00337594 0.00340829 0.00343973 0.00347027 0.0034999 0.00352865 0.00355652 0.00358351 0.00360965 0.00363495 0.00365941 0.00368305 0.00370589 0.00372794 0.00374922 0.00376974 0.00378953 0.0038086 0.00382698 0.0038447 0.00386176 0.00387821 0.00389407 0.00390937 0.00392413 0.00393838 0.00395216 0.00396549 0.00397839 0.0039909 0.00400303 0.00401483 0.00402629 0.00403745 0.00404833 0.00405894 0.0040693 0.00407943 0.00408933 0.00409902 0.00410851 0.00411781 0.00412693 0.00413588 0.00414467 0.0041533 0.00416178 0.00417012 0.00417833 0.0041864 0.00419435 0.00420218 0.0042099 0.00421751 0.00422501 0.00423241 0.00423972 0.00424693 0.00425405 0.00426108 0.00426803 0.0042749 0.00428169 0.00428841 0.00429506 0.00430163 0.00430814 0.00431459 0.00432097 0.00432729 0.00433355 0.00433976 0.00434591 0.00435201 0.00435805 0.00436405 0.00437 0.0043759 0.00438176 0.00438757 0.00439334 0.00439906 0.00440475 0.0044104 0.00441601 0.00442158 0.00442711 0.00443261 0.00443808 0.00444351 0.00444891 0.00445428 0.00445962 0.00446492 0.0044702 0.00447545 0.00448067 0.00448586 0.00449103 0.00449617 0.00450128 0.00450637 0.00451144 0.00451648 0.00452149 0.00452649 0.00453146 0.00453641 0.00454134 0.00454625 0.00455114 0.004556 0.00456085 0.00456568 0.00457049 0.00457528 0.00458006 0.00458481 0.00458955 0.00459428 0.00459898 0.00460367 0.00460835 0.00461301 0.00461766 0.00462229 +-0.000892415 -0.000804401 -0.000715961 -0.000627091 -0.000537787 -0.000448045 -0.000357861 -0.000267231 -0.00017615 -8.46211E-05 7.33461E-06 9.92445E-05 0.000189918 0.000279373 0.000367618 0.000454661 0.000540505 0.000625157 0.000708621 0.000790904 0.00087201 0.000951945 0.00103071 0.00110832 0.00118478 0.00126008 0.00133424 0.00140726 0.00147915 0.00154991 0.00161954 0.00168806 0.00175547 0.00182176 0.00188696 0.00195106 0.00201406 0.00207598 0.00213682 0.00219658 0.00225526 0.00231289 0.00236945 0.00242495 0.00247941 0.00253282 0.00258519 0.00263652 0.00268683 0.0027361 0.00278437 0.00283161 0.00287785 0.00292309 0.00296733 0.00301057 0.00305283 0.00309412 0.00313442 0.00317376 0.00321214 0.00324956 0.00328603 0.00332156 0.00335616 0.00338983 0.00342257 0.00345441 0.00348534 0.00351537 0.00354452 0.00357278 0.00360019 0.00362673 0.00365243 0.00367729 0.00370134 0.00372458 0.00374703 0.0037687 0.00378962 0.00380979 0.00382925 0.003848 0.00386608 0.00388351 0.00390031 0.00391651 0.00393214 0.00394722 0.00396178 0.00397585 0.00398946 0.00400264 0.0040154 0.00402779 0.00403982 0.00405151 0.00406289 0.00407398 0.00408479 0.00409534 0.00410565 0.00411572 0.00412559 0.00413524 0.0041447 0.00415398 0.00416308 0.00417201 0.00418079 0.00418941 0.00419788 0.00420622 0.00421442 0.00422249 0.00423044 0.00423828 0.004246 0.00425361 0.00426112 0.00426853 0.00427584 0.00428307 0.0042902 0.00429724 0.00430421 0.00431109 0.0043179 0.00432463 0.00433129 0.00433788 0.00434441 0.00435087 0.00435727 0.00436361 0.00436989 0.00437611 0.00438228 0.0043884 0.00439447 0.00440048 0.00440645 0.00441237 0.00441825 0.00442408 0.00442987 0.00443562 0.00444133 0.004447 0.00445263 0.00445822 0.00446378 0.0044693 0.00447478 0.00448024 0.00448566 0.00449105 0.00449641 0.00450173 0.00450703 0.0045123 0.00451754 0.00452276 0.00452795 0.00453311 0.00453824 0.00454335 0.00454844 0.0045535 0.00455854 0.00456355 0.00456855 0.00457352 0.00457847 0.0045834 0.0045883 0.00459319 0.00459806 0.00460291 0.00460774 0.00461256 0.00461735 0.00462213 0.00462689 0.00463163 0.00463636 0.00464107 0.00464577 0.00465045 0.00465512 +-0.000892383 -0.000804346 -0.000715881 -0.000626983 -0.00053765 -0.000447876 -0.000357657 -0.00026699 -0.00017587 -8.43005E-05 7.69707E-06 9.96697E-05 0.000190413 0.000279946 0.000368277 0.000455412 0.000541358 0.000626118 0.000709698 0.000792104 0.000873341 0.000953414 0.00103233 0.00111009 0.0011867 0.00126217 0.00133651 0.00140971 0.00148178 0.00155274 0.00162257 0.0016913 0.00175892 0.00182543 0.00189085 0.00195518 0.00201843 0.00208059 0.00214168 0.0022017 0.00226065 0.00231854 0.00237537 0.00243116 0.0024859 0.0025396 0.00259227 0.0026439 0.00269452 0.00274411 0.00279269 0.00284026 0.00288683 0.0029324 0.00297697 0.00302056 0.00306317 0.0031048 0.00314547 0.00318517 0.00322391 0.0032617 0.00329854 0.00333445 0.00336943 0.00340348 0.00343661 0.00346883 0.00350015 0.00353058 0.00356012 0.00358879 0.00361659 0.00364353 0.00366963 0.0036949 0.00371934 0.00374298 0.00376582 0.00378789 0.0038092 0.00382976 0.0038496 0.00386873 0.00388718 0.00390497 0.00392212 0.00393867 0.00395463 0.00397003 0.0039849 0.00399927 0.00401317 0.00402662 0.00403965 0.00405228 0.00406455 0.00407648 0.00408808 0.00409938 0.00411039 0.00412114 0.00413163 0.00414189 0.00415193 0.00416175 0.00417138 0.00418081 0.00419006 0.00419915 0.00420806 0.00421682 0.00422543 0.0042339 0.00424223 0.00425043 0.0042585 0.00426646 0.00427429 0.00428202 0.00428964 0.00429715 0.00430457 0.00431189 0.00431912 0.00432627 0.00433332 0.0043403 0.0043472 0.00435402 0.00436077 0.00436744 0.00437405 0.00438059 0.00438707 0.00439349 0.00439984 0.00440614 0.00441239 0.00441858 0.00442471 0.0044308 0.00443683 0.00444282 0.00444876 0.00445466 0.00446051 0.00446632 0.00447209 0.00447782 0.00448351 0.00448916 0.00449477 0.00450035 0.00450589 0.0045114 0.00451687 0.00452232 0.00452773 0.00453311 0.00453845 0.00454377 0.00454907 0.00455433 0.00455956 0.00456477 0.00456995 0.00457511 0.00458024 0.00458535 0.00459043 0.00459549 0.00460053 0.00460554 0.00461053 0.0046155 0.00462045 0.00462538 0.00463029 0.00463518 0.00464005 0.0046449 0.00464973 0.00465455 0.00465935 0.00466413 0.00466889 0.00467364 0.00467837 0.00468309 0.00468779 +-0.000892296 -0.00080424 -0.000715753 -0.000626831 -0.000537472 -0.000447669 -0.00035742 -0.00026672 -0.000175565 -8.39586E-05 8.07664E-06 0.000100109 0.000190918 0.000280525 0.000368938 0.000456163 0.000542206 0.000627071 0.000710763 0.000793289 0.000874653 0.00095486 0.00103392 0.00111183 0.00118859 0.00126423 0.00133873 0.00141211 0.00148436 0.00155551 0.00162554 0.00169447 0.00176229 0.00182902 0.00189467 0.00195923 0.0020227 0.00208511 0.00214644 0.00220671 0.00226592 0.00232408 0.00238118 0.00243724 0.00249226 0.00254625 0.00259921 0.00265114 0.00270206 0.00275196 0.00280085 0.00284874 0.00289563 0.00294153 0.00298644 0.00303037 0.00307332 0.0031153 0.00315631 0.00319637 0.00323547 0.00327362 0.00331083 0.00334711 0.00338246 0.00341689 0.0034504 0.00348301 0.00351472 0.00354553 0.00357547 0.00360453 0.00363272 0.00366006 0.00368656 0.00371222 0.00373706 0.0037611 0.00378434 0.00380679 0.00382849 0.00384944 0.00386966 0.00388916 0.00390798 0.00392614 0.00394364 0.00396053 0.00397683 0.00399255 0.00400774 0.00402241 0.0040366 0.00405033 0.00406363 0.00407652 0.00408904 0.0041012 0.00411302 0.00412453 0.00413575 0.0041467 0.00415739 0.00416783 0.00417804 0.00418804 0.00419783 0.00420742 0.00421683 0.00422606 0.00423512 0.00424403 0.00425277 0.00426138 0.00426984 0.00427816 0.00428636 0.00429443 0.00430238 0.00431022 0.00431795 0.00432558 0.0043331 0.00434053 0.00434786 0.0043551 0.00436225 0.00436932 0.00437631 0.00438322 0.00439006 0.00439682 0.00440351 0.00441014 0.00441669 0.00442319 0.00442962 0.004436 0.00444231 0.00444858 0.00445478 0.00446094 0.00446704 0.0044731 0.0044791 0.00448507 0.00449098 0.00449685 0.00450268 0.00450847 0.00451422 0.00451993 0.0045256 0.00453124 0.00453683 0.0045424 0.00454793 0.00455342 0.00455888 0.00456432 0.00456972 0.00457509 0.00458043 0.00458574 0.00459102 0.00459628 0.00460151 0.00460671 0.00461189 0.00461704 0.00462216 0.00462727 0.00463235 0.0046374 0.00464244 0.00464745 0.00465244 0.00465741 0.00466236 0.00466729 0.0046722 0.00467709 0.00468197 0.00468682 0.00469165 0.00469647 0.00470127 0.00470606 0.00471083 0.00471558 0.00472032 +-0.000892155 -0.000804082 -0.000715577 -0.000626635 -0.000537253 -0.000447426 -0.00035715 -0.000266421 -0.000175234 -8.35948E-05 8.47409E-06 0.000100562 0.000191435 0.000281112 0.000369604 0.000456915 0.000543051 0.000628017 0.000711818 0.000794459 0.000875946 0.000956283 0.00103548 0.00111353 0.00119045 0.00126624 0.00134091 0.00141446 0.00148689 0.00155822 0.00162844 0.00169757 0.0017656 0.00183254 0.0018984 0.00196318 0.00202689 0.00208953 0.00215111 0.00221162 0.00227109 0.0023295 0.00238687 0.0024432 0.0024985 0.00255277 0.00260602 0.00265824 0.00270946 0.00275966 0.00280886 0.00285706 0.00290427 0.00295049 0.00299573 0.00303999 0.00308328 0.0031256 0.00316696 0.00320737 0.00324682 0.00328533 0.00332291 0.00335955 0.00339527 0.00343007 0.00346396 0.00349695 0.00352904 0.00356024 0.00359056 0.00362001 0.0036486 0.00367633 0.00370322 0.00372927 0.00375451 0.00377893 0.00380256 0.00382541 0.0038475 0.00386883 0.00388943 0.00390931 0.0039285 0.00394701 0.00396488 0.00398211 0.00399875 0.0040148 0.0040303 0.00404528 0.00405977 0.00407378 0.00408735 0.0041005 0.00411327 0.00412566 0.00413772 0.00414945 0.00416088 0.00417203 0.00418291 0.00419353 0.00420393 0.0042141 0.00422405 0.00423381 0.00424338 0.00425276 0.00426197 0.00427102 0.0042799 0.00428864 0.00429723 0.00430569 0.00431401 0.0043222 0.00433028 0.00433823 0.00434607 0.00435381 0.00436144 0.00436897 0.0043764 0.00438374 0.00439099 0.00439816 0.00440524 0.00441224 0.00441916 0.00442601 0.00443279 0.0044395 0.00444614 0.00445271 0.00445922 0.00446568 0.00447207 0.0044784 0.00448468 0.00449091 0.00449708 0.0045032 0.00450928 0.0045153 0.00452128 0.00452722 0.00453311 0.00453896 0.00454477 0.00455054 0.00455627 0.00456196 0.00456761 0.00457323 0.00457882 0.00458437 0.00458988 0.00459536 0.00460082 0.00460624 0.00461163 0.00461699 0.00462232 0.00462762 0.0046329 0.00463815 0.00464337 0.00464857 0.00465374 0.00465889 0.00466401 0.00466911 0.00467419 0.00467925 0.00468428 0.00468929 0.00469428 0.00469925 0.0047042 0.00470913 0.00471404 0.00471893 0.00472381 0.00472866 0.0047335 0.00473832 0.00474313 0.00474792 0.00475269 +-0.000891957 -0.000803872 -0.000715352 -0.000626394 -0.000536993 -0.000447145 -0.000356846 -0.000266091 -0.000174877 -8.32084E-05 8.89025E-06 0.000101031 0.000191963 0.000281708 0.000370274 0.000457668 0.000543893 0.000628957 0.000712862 0.000795615 0.000877221 0.000957685 0.00103701 0.00111521 0.00119227 0.00126822 0.00134305 0.00141676 0.00148937 0.00156088 0.00163129 0.00170061 0.00176884 0.00183599 0.00190206 0.00196706 0.002031 0.00209387 0.00215568 0.00221644 0.00227615 0.00233482 0.00239245 0.00244905 0.00250462 0.00255916 0.00261269 0.0026652 0.00271671 0.00276721 0.00281672 0.00286523 0.00291275 0.00295929 0.00300485 0.00304944 0.00309306 0.00313571 0.00317742 0.00321817 0.00325797 0.00329684 0.00333477 0.00337178 0.00340786 0.00344303 0.00347729 0.00351065 0.00354312 0.0035747 0.00360541 0.00363524 0.00366421 0.00369233 0.00371961 0.00374605 0.00377168 0.0037965 0.00382051 0.00384375 0.00386622 0.00388793 0.00390891 0.00392917 0.00394873 0.00396761 0.00398582 0.00400341 0.00402038 0.00403677 0.00405259 0.00406788 0.00408266 0.00409696 0.00411081 0.00412422 0.00413724 0.00414988 0.00416217 0.00417412 0.00418576 0.00419711 0.00420819 0.00421901 0.00422959 0.00423993 0.00425006 0.00425998 0.0042697 0.00427924 0.0042886 0.00429779 0.00430682 0.0043157 0.00432442 0.00433301 0.00434146 0.00434978 0.00435797 0.00436604 0.004374 0.00438184 0.00438958 0.00439722 0.00440475 0.0044122 0.00441955 0.00442681 0.00443398 0.00444108 0.00444809 0.00445503 0.00446189 0.00446868 0.0044754 0.00448206 0.00448865 0.00449518 0.00450164 0.00450805 0.00451441 0.0045207 0.00452695 0.00453314 0.00453928 0.00454537 0.00455142 0.00455742 0.00456337 0.00456928 0.00457515 0.00458098 0.00458677 0.00459252 0.00459823 0.0046039 0.00460954 0.00461515 0.00462072 0.00462625 0.00463176 0.00463723 0.00464267 0.00464808 0.00465346 0.00465881 0.00466414 0.00466943 0.0046747 0.00467995 0.00468516 0.00469036 0.00469552 0.00470067 0.00470579 0.00471089 0.00471596 0.00472101 0.00472605 0.00473106 0.00473605 0.00474102 0.00474597 0.0047509 0.00475581 0.0047607 0.00476558 0.00477044 0.00477528 0.0047801 0.00478491 +-0.000891703 -0.000803609 -0.000715078 -0.000626106 -0.00053669 -0.000446825 -0.000356507 -0.00026573 -0.000174493 -8.27984E-05 9.32596E-06 0.000101516 0.000192505 0.000282313 0.000370951 0.000458423 0.000544735 0.000629892 0.000713899 0.00079676 0.000878481 0.000959067 0.00103852 0.00111685 0.00119406 0.00127016 0.00134514 0.00141902 0.0014918 0.00156349 0.00163408 0.00170359 0.00177202 0.00183937 0.00190565 0.00197086 0.00203502 0.00209811 0.00216016 0.00222116 0.00228111 0.00234003 0.00239792 0.00245478 0.00251061 0.00256543 0.00261924 0.00267203 0.00272383 0.00277462 0.00282442 0.00287324 0.00292107 0.00296792 0.0030138 0.00305871 0.00310266 0.00314565 0.00318768 0.00322878 0.00326893 0.00330814 0.00334643 0.00338379 0.00342023 0.00345577 0.0034904 0.00352413 0.00355697 0.00358892 0.00362001 0.00365022 0.00367957 0.00370808 0.00373574 0.00376257 0.00378858 0.00381379 0.00383819 0.00386181 0.00388466 0.00390676 0.00392811 0.00394874 0.00396867 0.00398791 0.00400649 0.00402442 0.00404174 0.00405845 0.0040746 0.0040902 0.00410528 0.00411988 0.004134 0.00414769 0.00416096 0.00417385 0.00418637 0.00419855 0.00421041 0.00422197 0.00423324 0.00424425 0.00425502 0.00426554 0.00427584 0.00428593 0.00429581 0.00430551 0.00431502 0.00432436 0.00433353 0.00434255 0.00435141 0.00436012 0.0043687 0.00437714 0.00438546 0.00439365 0.00440172 0.00440968 0.00441753 0.00442527 0.00443292 0.00444046 0.00444791 0.00445527 0.00446254 0.00446972 0.00447683 0.00448386 0.00449081 0.00449768 0.00450449 0.00451122 0.0045179 0.0045245 0.00453105 0.00453753 0.00454396 0.00455033 0.00455664 0.0045629 0.00456911 0.00457527 0.00458138 0.00458745 0.00459347 0.00459944 0.00460537 0.00461126 0.00461711 0.00462291 0.00462868 0.00463441 0.00464011 0.00464577 0.00465139 0.00465698 0.00466253 0.00466806 0.00467355 0.00467901 0.00468444 0.00468984 0.00469522 0.00470056 0.00470588 0.00471117 0.00471643 0.00472167 0.00472688 0.00473207 0.00473723 0.00474237 0.00474749 0.00475258 0.00475766 0.00476271 0.00476774 0.00477275 0.00477774 0.00478271 0.00478766 0.00479259 0.0047975 0.0048024 0.00480728 0.00481214 0.00481698 +-0.000891391 -0.000803292 -0.000714754 -0.000625773 -0.000536345 -0.000446466 -0.000356132 -0.000265338 -0.00017408 -8.23641E-05 9.78209E-06 0.000102019 0.00019306 0.000282929 0.000371635 0.000459183 0.000545578 0.000630825 0.000714929 0.000797894 0.000879727 0.000960432 0.00104001 0.00111848 0.00119583 0.00127207 0.00134721 0.00142124 0.00149419 0.00156605 0.00163682 0.00170651 0.00177513 0.00184268 0.00190916 0.00197459 0.00203896 0.00210228 0.00216455 0.00222578 0.00228598 0.00234514 0.00240328 0.00246039 0.00251649 0.00257158 0.00262565 0.00267873 0.00273081 0.00278189 0.00283199 0.0028811 0.00292923 0.00297639 0.00302258 0.00306781 0.00311208 0.0031554 0.00319777 0.0032392 0.00327969 0.00331924 0.00335788 0.00339559 0.00343239 0.00346828 0.00350327 0.00353737 0.00357058 0.00360291 0.00363436 0.00366495 0.00369469 0.00372357 0.00375161 0.00377883 0.00380522 0.00383081 0.0038556 0.0038796 0.00390283 0.0039253 0.00394703 0.00396804 0.00398833 0.00400794 0.00402687 0.00404516 0.00406281 0.00407986 0.00409633 0.00411225 0.00412764 0.00414252 0.00415693 0.00417089 0.00418443 0.00419756 0.00421032 0.00422273 0.00423481 0.00424658 0.00425806 0.00426927 0.00428022 0.00429092 0.0043014 0.00431165 0.0043217 0.00433156 0.00434122 0.00435071 0.00436003 0.00436919 0.00437818 0.00438703 0.00439574 0.00440431 0.00441275 0.00442106 0.00442925 0.00443732 0.00444528 0.00445314 0.00446088 0.00446853 0.00447608 0.00448354 0.00449091 0.00449819 0.00450539 0.0045125 0.00451954 0.0045265 0.00453339 0.00454021 0.00454697 0.00455365 0.00456027 0.00456683 0.00457333 0.00457978 0.00458616 0.00459249 0.00459877 0.004605 0.00461118 0.00461731 0.00462339 0.00462943 0.00463542 0.00464137 0.00464728 0.00465314 0.00465897 0.00466476 0.00467051 0.00467622 0.0046819 0.00468755 0.00469315 0.00469873 0.00470427 0.00470978 0.00471527 0.00472072 0.00472614 0.00473153 0.00473689 0.00474223 0.00474754 0.00475282 0.00475808 0.00476331 0.00476852 0.0047737 0.00477886 0.004784 0.00478912 0.00479421 0.00479928 0.00480433 0.00480936 0.00481437 0.00481936 0.00482433 0.00482928 0.00483421 0.00483913 0.00484402 0.0048489 +-0.000891021 -0.00080292 -0.000714378 -0.000625392 -0.000535956 -0.000446067 -0.000355721 -0.000264912 -0.000173638 -8.19045E-05 1.02596E-05 0.00010254 0.000193631 0.000283557 0.000372327 0.000459947 0.000546422 0.000631755 0.000715953 0.00079902 0.00088096 0.00096178 0.00104148 0.00112007 0.00119756 0.00127394 0.00134923 0.00142343 0.00149653 0.00156856 0.0016395 0.00170938 0.00177818 0.00184593 0.00191261 0.00197824 0.00204282 0.00210636 0.00216885 0.00223031 0.00229075 0.00235015 0.00240853 0.0024659 0.00252226 0.0025776 0.00263195 0.0026853 0.00273765 0.00278902 0.00283941 0.00288881 0.00293724 0.00298471 0.00303121 0.00307675 0.00312134 0.00316498 0.00320767 0.00324943 0.00329026 0.00333015 0.00336913 0.00340719 0.00344434 0.00348059 0.00351594 0.00355039 0.00358397 0.00361666 0.00364849 0.00367945 0.00370955 0.00373881 0.00376724 0.00379483 0.0038216 0.00384757 0.00387274 0.00389712 0.00392073 0.00394358 0.00396568 0.00398706 0.00400772 0.00402768 0.00404698 0.00406561 0.00408361 0.004101 0.0041178 0.00413403 0.00414973 0.00416491 0.0041796 0.00419384 0.00420764 0.00422103 0.00423403 0.00424668 0.00425898 0.00427096 0.00428265 0.00429405 0.00430519 0.00431608 0.00432673 0.00433716 0.00434737 0.00435739 0.00436721 0.00437685 0.00438632 0.00439561 0.00440475 0.00441374 0.00442258 0.00443128 0.00443984 0.00444827 0.00445658 0.00446477 0.00447284 0.00448081 0.00448866 0.00449642 0.00450407 0.00451163 0.00451909 0.00452647 0.00453376 0.00454097 0.00454809 0.00455515 0.00456212 0.00456902 0.00457586 0.00458262 0.00458932 0.00459596 0.00460254 0.00460905 0.00461551 0.00462192 0.00462827 0.00463456 0.00464081 0.004647 0.00465315 0.00465925 0.00466531 0.00467132 0.00467729 0.00468321 0.0046891 0.00469494 0.00470075 0.00470652 0.00471225 0.00471795 0.00472361 0.00472924 0.00473484 0.0047404 0.00474593 0.00475143 0.0047569 0.00476234 0.00476775 0.00477314 0.00477849 0.00478382 0.00478912 0.0047944 0.00479965 0.00480488 0.00481008 0.00481526 0.00482042 0.00482555 0.00483067 0.00483576 0.00484083 0.00484587 0.0048509 0.00485591 0.0048609 0.00486587 0.00487082 0.00487576 0.00488068 +-0.000890593 -0.000802494 -0.000713951 -0.000624962 -0.000535522 -0.000445627 -0.000355272 -0.000264453 -0.000173167 -8.14187E-05 1.07594E-05 0.00010308 0.000194218 0.000284198 0.00037303 0.000460718 0.000547269 0.000632685 0.000716973 0.000800138 0.000882183 0.000963113 0.00104293 0.00112165 0.00119927 0.00127579 0.00135122 0.00142557 0.00149883 0.00157102 0.00164214 0.00171219 0.00178118 0.00184911 0.00191599 0.00198182 0.00204661 0.00211036 0.00217307 0.00223476 0.00229542 0.00235506 0.00241369 0.0024713 0.00252791 0.00258352 0.00263813 0.00269174 0.00274437 0.00279602 0.00284669 0.00289638 0.00294511 0.00299287 0.00303968 0.00308553 0.00313043 0.00317438 0.0032174 0.00325948 0.00330064 0.00334087 0.00338019 0.00341859 0.00345609 0.00349268 0.00352838 0.0035632 0.00359713 0.00363019 0.00366238 0.00369371 0.00372418 0.00375381 0.00378261 0.00381058 0.00383773 0.00386407 0.00388961 0.00391437 0.00393835 0.00396158 0.00398405 0.0040058 0.00402683 0.00404716 0.0040668 0.00408579 0.00410413 0.00412186 0.00413898 0.00415554 0.00417155 0.00418703 0.00420201 0.00421653 0.0042306 0.00424424 0.00425749 0.00427037 0.0042829 0.00429511 0.004307 0.0043186 0.00432994 0.00434101 0.00435184 0.00436244 0.00437283 0.004383 0.00439299 0.00440278 0.00441239 0.00442184 0.00443111 0.00444024 0.00444921 0.00445804 0.00446673 0.00447529 0.00448371 0.00449202 0.00450021 0.00450828 0.00451625 0.00452411 0.00453187 0.00453952 0.00454709 0.00455456 0.00456195 0.00456925 0.00457647 0.00458361 0.00459067 0.00459766 0.00460457 0.00461142 0.0046182 0.00462492 0.00463157 0.00463816 0.00464469 0.00465117 0.00465759 0.00466395 0.00467027 0.00467653 0.00468274 0.00468891 0.00469503 0.0047011 0.00470713 0.00471312 0.00471906 0.00472497 0.00473083 0.00473666 0.00474245 0.0047482 0.00475391 0.0047596 0.00476524 0.00477086 0.00477644 0.00478199 0.00478751 0.004793 0.00479846 0.00480389 0.00480929 0.00481467 0.00482002 0.00482534 0.00483063 0.00483591 0.00484115 0.00484637 0.00485157 0.00485675 0.0048619 0.00486703 0.00487214 0.00487723 0.0048823 0.00488735 0.00489237 0.00489738 0.00490237 0.00490734 0.0049123 +-0.000890105 -0.000802011 -0.000713472 -0.000624484 -0.000535043 -0.000445145 -0.000354785 -0.00026396 -0.000172664 -8.09057E-05 1.12824E-05 0.00010364 0.000194822 0.000284853 0.000373743 0.000461497 0.00054812 0.000633617 0.000717992 0.00080125 0.000883396 0.000964434 0.00104437 0.00112321 0.00120095 0.00127761 0.00135318 0.00142768 0.00150109 0.00157344 0.00164473 0.00171495 0.00178412 0.00185224 0.00191931 0.00198534 0.00205033 0.00211429 0.00217721 0.00223912 0.00230001 0.00235988 0.00241874 0.0024766 0.00253346 0.00258932 0.00264419 0.00269807 0.00275097 0.00280289 0.00285383 0.00290381 0.00295283 0.00300089 0.00304799 0.00309414 0.00313935 0.00318362 0.00322696 0.00326936 0.00331084 0.0033514 0.00339105 0.00342979 0.00346763 0.00350457 0.00354062 0.00357579 0.00361007 0.00364349 0.00367604 0.00370773 0.00373857 0.00376857 0.00379774 0.00382608 0.0038536 0.00388031 0.00390623 0.00393136 0.00395572 0.00397931 0.00400216 0.00402427 0.00404566 0.00406635 0.00408636 0.00410569 0.00412438 0.00414244 0.0041599 0.00417678 0.0041931 0.00420888 0.00422416 0.00423896 0.0042533 0.00426721 0.00428071 0.00429383 0.00430659 0.00431901 0.00433112 0.00434293 0.00435445 0.00436572 0.00437673 0.00438751 0.00439806 0.0044084 0.00441854 0.00442849 0.00443826 0.00444785 0.00445727 0.00446653 0.00447564 0.0044846 0.00449342 0.0045021 0.00451065 0.00451908 0.00452738 0.00453557 0.00454364 0.00455161 0.00455947 0.00456724 0.0045749 0.00458247 0.00458995 0.00459735 0.00460466 0.00461189 0.00461904 0.00462611 0.00463311 0.00464004 0.0046469 0.0046537 0.00466043 0.0046671 0.0046737 0.00468025 0.00468674 0.00469318 0.00469956 0.00470589 0.00471217 0.0047184 0.00472458 0.00473072 0.00473681 0.00474286 0.00474886 0.00475483 0.00476075 0.00476663 0.00477248 0.00477828 0.00478406 0.00478979 0.00479549 0.00480116 0.00480679 0.00481239 0.00481796 0.0048235 0.00482901 0.00483449 0.00483994 0.00484536 0.00485075 0.00485612 0.00486146 0.00486678 0.00487207 0.00487733 0.00488257 0.00488779 0.00489299 0.00489816 0.00490331 0.00490844 0.00491354 0.00491863 0.0049237 0.00492874 0.00493377 0.00493878 0.00494377 +-0.000889556 -0.000801471 -0.000712938 -0.000623955 -0.000534517 -0.00044462 -0.000354259 -0.00026343 -0.00017213 -8.03645E-05 1.18299E-05 0.000104222 0.000195445 0.000285523 0.000374468 0.000462284 0.000548977 0.00063455 0.000719009 0.000802357 0.000884601 0.000965743 0.00104579 0.00112475 0.00120261 0.0012794 0.00135511 0.00142975 0.00150332 0.00157582 0.00164727 0.00171766 0.00178701 0.0018553 0.00192256 0.00198878 0.00205397 0.00211814 0.00218128 0.0022434 0.00230451 0.00236461 0.0024237 0.0024818 0.0025389 0.00259501 0.00265013 0.00270427 0.00275744 0.00280963 0.00286085 0.00291111 0.00296041 0.00300876 0.00305615 0.00310261 0.00314812 0.00319269 0.00323634 0.00327906 0.00332087 0.00336175 0.00340173 0.0034408 0.00347898 0.00351626 0.00355265 0.00358817 0.0036228 0.00365657 0.00368948 0.00372153 0.00375273 0.0037831 0.00381263 0.00384133 0.00386922 0.00389631 0.00392259 0.00394809 0.00397282 0.00399678 0.00402 0.00404248 0.00406423 0.00408528 0.00410564 0.00412533 0.00414436 0.00416276 0.00418055 0.00419775 0.00421438 0.00423048 0.00424605 0.00426113 0.00427575 0.00428992 0.00430368 0.00431704 0.00433004 0.00434268 0.004355 0.00436702 0.00437874 0.0043902 0.0044014 0.00441235 0.00442308 0.00443359 0.00444389 0.004454 0.00446391 0.00447365 0.00448322 0.00449262 0.00450186 0.00451096 0.00451991 0.00452871 0.00453739 0.00454593 0.00455436 0.00456266 0.00457085 0.00457892 0.00458689 0.00459476 0.00460253 0.0046102 0.00461778 0.00462527 0.00463267 0.00463999 0.00464723 0.00465439 0.00466148 0.00466849 0.00467543 0.00468231 0.00468911 0.00469586 0.00470254 0.00470916 0.00471573 0.00472223 0.00472868 0.00473508 0.00474143 0.00474773 0.00475397 0.00476017 0.00476633 0.00477244 0.0047785 0.00478453 0.00479051 0.00479645 0.00480235 0.00480821 0.00481404 0.00481983 0.00482558 0.0048313 0.00483699 0.00484264 0.00484826 0.00485384 0.0048594 0.00486493 0.00487043 0.0048759 0.00488134 0.00488675 0.00489214 0.0048975 0.00490283 0.00490814 0.00491342 0.00491868 0.00492392 0.00492913 0.00493432 0.00493949 0.00494464 0.00494977 0.00495487 0.00495996 0.00496502 0.00497007 0.0049751 +-0.000888945 -0.000800872 -0.00071235 -0.000623376 -0.000533944 -0.000444051 -0.000353693 -0.000262864 -0.000171562 -7.9794E-05 1.24028E-05 0.000104827 0.000196087 0.00028621 0.000375207 0.000463082 0.000549841 0.000635488 0.000720026 0.000803462 0.000885799 0.000967043 0.0010472 0.00112627 0.00120426 0.00128117 0.00135701 0.00143179 0.00150551 0.00157817 0.00164977 0.00172033 0.00178984 0.00185832 0.00192576 0.00199217 0.00205755 0.00212192 0.00218526 0.0022476 0.00230892 0.00236925 0.00242857 0.0024869 0.00254424 0.0026006 0.00265597 0.00271036 0.00276379 0.00281624 0.00286774 0.00291827 0.00296785 0.00301648 0.00306417 0.00311092 0.00315673 0.00320161 0.00324556 0.0032886 0.00333072 0.00337192 0.00341222 0.00345163 0.00349013 0.00352775 0.00356448 0.00360034 0.00363532 0.00366944 0.0037027 0.0037351 0.00376666 0.00379739 0.00382728 0.00385635 0.0038846 0.00391205 0.00393871 0.00396457 0.00398967 0.004014 0.00403758 0.00406042 0.00408253 0.00410394 0.00412465 0.00414469 0.00416407 0.00418281 0.00420093 0.00421846 0.00423541 0.00425181 0.00426768 0.00428305 0.00429794 0.00431239 0.0043264 0.00434001 0.00435324 0.00436612 0.00437866 0.00439088 0.00440281 0.00441446 0.00442584 0.00443698 0.00444788 0.00445856 0.00446902 0.00447929 0.00448936 0.00449925 0.00450896 0.0045185 0.00452789 0.00453711 0.00454619 0.00455513 0.00456393 0.0045726 0.00458114 0.00458956 0.00459786 0.00460605 0.00461412 0.0046221 0.00462997 0.00463774 0.00464542 0.004653 0.0046605 0.00466791 0.00467524 0.00468249 0.00468966 0.00469676 0.00470378 0.00471074 0.00471763 0.00472445 0.00473121 0.0047379 0.00474454 0.00475112 0.00475764 0.00476411 0.00477052 0.00477689 0.0047832 0.00478947 0.00479568 0.00480185 0.00480798 0.00481406 0.0048201 0.0048261 0.00483206 0.00483798 0.00484386 0.00484971 0.00485551 0.00486129 0.00486702 0.00487273 0.0048784 0.00488404 0.00488964 0.00489522 0.00490076 0.00490628 0.00491177 0.00491723 0.00492266 0.00492806 0.00493344 0.00493879 0.00494412 0.00494943 0.0049547 0.00495996 0.00496519 0.0049704 0.00497559 0.00498075 0.0049859 0.00499102 0.00499613 0.00500121 0.00500628 +-0.000888271 -0.000800214 -0.000711706 -0.000622744 -0.000533322 -0.000443437 -0.000353085 -0.00026226 -0.00017096 -7.91931E-05 1.30023E-05 0.000105455 0.00019675 0.000286915 0.000375961 0.000463892 0.000550714 0.000636431 0.000721046 0.000804566 0.000886994 0.000968334 0.00104859 0.00112777 0.00120588 0.00128292 0.00135889 0.0014338 0.00150766 0.00158047 0.00165223 0.00172295 0.00179263 0.00186128 0.0019289 0.00199549 0.00206107 0.00212563 0.00218918 0.00225172 0.00231326 0.0023738 0.00243335 0.00249191 0.00254948 0.00260608 0.0026617 0.00271634 0.00277002 0.00282274 0.0028745 0.00292531 0.00297516 0.00302407 0.00307205 0.00311908 0.00316519 0.00321037 0.00325462 0.00329797 0.0033404 0.00338192 0.00342254 0.00346227 0.0035011 0.00353905 0.00357612 0.00361231 0.00364763 0.0036821 0.0037157 0.00374846 0.00378037 0.00381145 0.0038417 0.00387113 0.00389974 0.00392755 0.00395457 0.0039808 0.00400626 0.00403095 0.0040549 0.0040781 0.00410057 0.00412234 0.0041434 0.00416379 0.00418351 0.00420259 0.00422105 0.0042389 0.00425617 0.00427288 0.00428905 0.00430471 0.00431989 0.0043346 0.00434888 0.00436274 0.00437621 0.00438932 0.00440208 0.00441451 0.00442665 0.00443849 0.00445006 0.00446138 0.00447246 0.00448331 0.00449394 0.00450437 0.00451459 0.00452463 0.00453449 0.00454418 0.0045537 0.00456307 0.00457228 0.00458135 0.00459028 0.00459907 0.00460773 0.00461626 0.00462468 0.00463298 0.00464117 0.00464925 0.00465722 0.00466509 0.00467287 0.00468055 0.00468815 0.00469565 0.00470307 0.00471041 0.00471767 0.00472485 0.00473196 0.004739 0.00474597 0.00475287 0.0047597 0.00476648 0.00477319 0.00477984 0.00478643 0.00479297 0.00479945 0.00480589 0.00481226 0.00481859 0.00482488 0.00483111 0.0048373 0.00484344 0.00484954 0.0048556 0.00486162 0.00486759 0.00487353 0.00487943 0.00488529 0.00489112 0.00489691 0.00490266 0.00490838 0.00491407 0.00491973 0.00492535 0.00493095 0.00493651 0.00494205 0.00494755 0.00495303 0.00495848 0.0049639 0.0049693 0.00497467 0.00498002 0.00498534 0.00499064 0.00499591 0.00500116 0.00500639 0.00501159 0.00501678 0.00502194 0.00502708 0.0050322 0.00503731 +-0.000887533 -0.000799496 -0.000711006 -0.000622058 -0.00053265 -0.000442777 -0.000352435 -0.000261618 -0.000170323 -7.85606E-05 1.36295E-05 0.000106108 0.000197435 0.000287639 0.000376731 0.000464715 0.000551597 0.000637381 0.00072207 0.00080567 0.000888185 0.00096962 0.00104998 0.00112927 0.00120749 0.00128464 0.00136074 0.00143579 0.00150979 0.00158274 0.00165465 0.00172553 0.00179537 0.00186419 0.00193198 0.00199876 0.00206452 0.00212927 0.00219302 0.00225577 0.00231752 0.00237827 0.00243804 0.00249683 0.00255463 0.00261146 0.00266732 0.00272222 0.00277615 0.00282912 0.00288114 0.00293221 0.00298234 0.00303153 0.00307978 0.0031271 0.0031735 0.00321897 0.00326353 0.00330717 0.00334991 0.00339174 0.00343268 0.00347273 0.00351188 0.00355016 0.00358756 0.00362408 0.00365975 0.00369455 0.0037285 0.0037616 0.00379386 0.00382529 0.00385589 0.00388568 0.00391465 0.00394282 0.0039702 0.00399679 0.00402261 0.00404766 0.00407196 0.00409552 0.00411835 0.00414047 0.00416189 0.00418263 0.0042027 0.00422211 0.0042409 0.00425908 0.00427667 0.00429369 0.00431017 0.00432612 0.00434158 0.00435657 0.00437111 0.00438522 0.00439894 0.00441228 0.00442527 0.00443792 0.00445026 0.0044623 0.00447407 0.00448557 0.00449683 0.00450785 0.00451865 0.00452924 0.00453962 0.00454981 0.00455982 0.00456966 0.00457932 0.00458882 0.00459817 0.00460737 0.00461642 0.00462534 0.00463412 0.00464278 0.00465131 0.00465972 0.00466802 0.00467621 0.00468429 0.00469227 0.00470014 0.00470793 0.00471562 0.00472322 0.00473073 0.00473816 0.00474551 0.00475278 0.00475997 0.00476709 0.00477414 0.00478112 0.00478803 0.00479488 0.00480167 0.00480839 0.00481506 0.00482167 0.00482822 0.00483472 0.00484116 0.00484756 0.00485391 0.0048602 0.00486645 0.00487266 0.00487882 0.00488494 0.00489101 0.00489705 0.00490304 0.004909 0.00491491 0.00492079 0.00492663 0.00493244 0.00493822 0.00494396 0.00494966 0.00495534 0.00496098 0.00496659 0.00497217 0.00497773 0.00498325 0.00498875 0.00499421 0.00499966 0.00500507 0.00501046 0.00501582 0.00502116 0.00502648 0.00503177 0.00503704 0.00504228 0.00504751 0.00505271 0.00505789 0.00506305 0.00506819 +-0.000886729 -0.000798715 -0.000710246 -0.000621319 -0.000531928 -0.00044207 -0.000351741 -0.000260935 -0.00016965 -7.78953E-05 1.42857E-05 0.000106788 0.000198144 0.000288384 0.000377518 0.000465553 0.000552492 0.000638339 0.000723099 0.000806777 0.000889376 0.000970901 0.00105136 0.00113075 0.00120908 0.00128635 0.00136258 0.00143775 0.00151188 0.00158498 0.00165704 0.00172807 0.00179807 0.00186705 0.00193502 0.00200197 0.00206792 0.00213286 0.0021968 0.00225974 0.0023217 0.00238267 0.00244265 0.00250166 0.00255969 0.00261675 0.00267285 0.00272798 0.00278216 0.00283539 0.00288767 0.002939 0.0029894 0.00303885 0.00308738 0.00313499 0.00318167 0.00322743 0.00327228 0.00331622 0.00335926 0.0034014 0.00344265 0.00348301 0.00352249 0.00356108 0.00359881 0.00363566 0.00367166 0.0037068 0.00374109 0.00377453 0.00380714 0.00383891 0.00386986 0.0039 0.00392933 0.00395785 0.00398558 0.00401253 0.00403871 0.00406412 0.00408878 0.00411269 0.00413588 0.00415835 0.00418012 0.00420121 0.00422162 0.00424137 0.0042605 0.004279 0.00429691 0.00431424 0.00433103 0.00434728 0.00436302 0.00437829 0.00439309 0.00440747 0.00442143 0.00443501 0.00444822 0.00446109 0.00447364 0.00448589 0.00449785 0.00450954 0.00452098 0.00453218 0.00454314 0.0045539 0.00456444 0.00457479 0.00458495 0.00459493 0.00460474 0.00461438 0.00462386 0.00463319 0.00464238 0.00465142 0.00466033 0.0046691 0.00467775 0.00468628 0.00469469 0.00470299 0.00471117 0.00471926 0.00472724 0.00473512 0.0047429 0.0047506 0.00475821 0.00476573 0.00477316 0.00478052 0.0047878 0.00479501 0.00480214 0.0048092 0.00481619 0.00482312 0.00482998 0.00483678 0.00484352 0.0048502 0.00485682 0.00486339 0.0048699 0.00487636 0.00488278 0.00488914 0.00489545 0.00490172 0.00490794 0.00491412 0.00492025 0.00492634 0.00493239 0.00493841 0.00494438 0.00495031 0.00495621 0.00496207 0.0049679 0.00497369 0.00497944 0.00498517 0.00499086 0.00499652 0.00500215 0.00500775 0.00501332 0.00501886 0.00502438 0.00502986 0.00503532 0.00504075 0.00504616 0.00505154 0.0050569 0.00506223 0.00506754 0.00507283 0.00507809 0.00508334 0.00508856 0.00509376 0.00509893 diff --git a/paranoia_parallel/examples/xspice/table/bsim4n-3d-1.table b/paranoia_parallel/examples/xspice/table/bsim4n-3d-1.table new file mode 100644 index 000000000..11420bb39 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/bsim4n-3d-1.table @@ -0,0 +1,493 @@ +* 3D table for nmos bsim 4 +*x +39 +*y +39 +*z +12 +*x row +-0.1 -0.05 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 0.7 0.75 0.8 0.85 0.9 0.95 1 1.05 1.1 1.15 1.2 1.25 1.3 1.35 1.4 1.45 1.5 1.55 1.6 1.65 1.7 1.75 1.8 +*y column +-0.1 -0.05 0 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 0.7 0.75 0.8 0.85 0.9 0.95 1 1.05 1.1 1.15 1.2 1.25 1.3 1.35 1.4 1.45 1.5 1.55 1.6 1.65 1.7 1.75 1.8 +*z tables +-1.8 -1.6 -1.4 -1.2 -1 -0.8 -0.6 -0.4 -0.2 -2.77556E-16 0.2 0.4 +*table -1.8 +-4.50688E-10 -4.50613E-10 -4.50601E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50599E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50598E-10 -4.50597E-10 -4.50597E-10 -4.50597E-10 -4.50597E-10 -4.50597E-10 -4.50597E-10 -4.50597E-10 -4.50596E-10 -4.50596E-10 -4.50596E-10 -4.50595E-10 -4.50595E-10 -4.50594E-10 -4.50594E-10 -4.50593E-10 -4.50592E-10 -4.5059E-10 +-4.49622E-10 -4.49267E-10 -4.4921E-10 -4.49202E-10 -4.49201E-10 -4.492E-10 -4.492E-10 -4.49199E-10 -4.49199E-10 -4.49198E-10 -4.49198E-10 -4.49197E-10 -4.49197E-10 -4.49196E-10 -4.49196E-10 -4.49195E-10 -4.49195E-10 -4.49194E-10 -4.49194E-10 -4.49193E-10 -4.49193E-10 -4.49192E-10 -4.49192E-10 -4.49191E-10 -4.49191E-10 -4.4919E-10 -4.4919E-10 -4.49189E-10 -4.49189E-10 -4.49188E-10 -4.49188E-10 -4.49187E-10 -4.49186E-10 -4.49186E-10 -4.49185E-10 -4.49184E-10 -4.49184E-10 -4.49183E-10 -4.49182E-10 +-4.50672E-10 -4.49099E-10 -4.48838E-10 -4.48795E-10 -4.48789E-10 -4.48787E-10 -4.48784E-10 -4.48782E-10 -4.48779E-10 -4.48777E-10 -4.48774E-10 -4.48772E-10 -4.48769E-10 -4.48767E-10 -4.48765E-10 -4.48762E-10 -4.4876E-10 -4.48757E-10 -4.48755E-10 -4.48752E-10 -4.48749E-10 -4.48747E-10 -4.48744E-10 -4.48742E-10 -4.48739E-10 -4.48736E-10 -4.48734E-10 -4.48731E-10 -4.48729E-10 -4.48726E-10 -4.48723E-10 -4.4872E-10 -4.48718E-10 -4.48715E-10 -4.48712E-10 -4.48709E-10 -4.48706E-10 -4.48703E-10 -4.487E-10 +-4.55575E-10 -4.4953E-10 -4.48435E-10 -4.48217E-10 -4.48188E-10 -4.48174E-10 -4.48161E-10 -4.48148E-10 -4.48136E-10 -4.48124E-10 -4.48111E-10 -4.48099E-10 -4.48086E-10 -4.48074E-10 -4.48061E-10 -4.48048E-10 -4.48036E-10 -4.48023E-10 -4.4801E-10 -4.47997E-10 -4.47984E-10 -4.47971E-10 -4.47957E-10 -4.47944E-10 -4.47931E-10 -4.47917E-10 -4.47904E-10 -4.4789E-10 -4.47877E-10 -4.47863E-10 -4.47849E-10 -4.47835E-10 -4.47821E-10 -4.47806E-10 -4.47792E-10 -4.47777E-10 -4.47763E-10 -4.47747E-10 -4.47732E-10 +-4.66747E-10 -4.50236E-10 -4.4664E-10 -4.45529E-10 -4.45381E-10 -4.45307E-10 -4.45241E-10 -4.45178E-10 -4.45115E-10 -4.45051E-10 -4.44988E-10 -4.44924E-10 -4.4486E-10 -4.44796E-10 -4.44732E-10 -4.44667E-10 -4.44601E-10 -4.44536E-10 -4.4447E-10 -4.44403E-10 -4.44336E-10 -4.44269E-10 -4.44202E-10 -4.44134E-10 -4.44065E-10 -4.43997E-10 -4.43928E-10 -4.43858E-10 -4.43788E-10 -4.43718E-10 -4.43647E-10 -4.43575E-10 -4.43503E-10 -4.4343E-10 -4.43357E-10 -4.43283E-10 -4.43207E-10 -4.43131E-10 -4.43053E-10 +-4.85615E-10 -4.43477E-10 -4.39523E-10 -4.33863E-10 -4.33116E-10 -4.32738E-10 -4.32404E-10 -4.32079E-10 -4.31756E-10 -4.31434E-10 -4.3111E-10 -4.30785E-10 -4.30459E-10 -4.3013E-10 -4.298E-10 -4.29469E-10 -4.29135E-10 -4.28799E-10 -4.28462E-10 -4.28123E-10 -4.27782E-10 -4.27439E-10 -4.27094E-10 -4.26747E-10 -4.26398E-10 -4.26048E-10 -4.25695E-10 -4.2534E-10 -4.24983E-10 -4.24623E-10 -4.24261E-10 -4.23896E-10 -4.23529E-10 -4.23157E-10 -4.22783E-10 -4.22404E-10 -4.22021E-10 -4.21634E-10 -4.2124E-10 +-9.69499E-10 -3.77642E-10 -3.98311E-10 -3.6959E-10 -3.65825E-10 -3.63914E-10 -3.62215E-10 -3.60563E-10 -3.58921E-10 -3.57279E-10 -3.55631E-10 -3.53977E-10 -3.52314E-10 -3.50642E-10 -3.48961E-10 -3.4727E-10 -3.4557E-10 -3.43861E-10 -3.42142E-10 -3.40414E-10 -3.38676E-10 -3.36929E-10 -3.35172E-10 -3.33406E-10 -3.3163E-10 -3.29844E-10 -3.28047E-10 -3.2624E-10 -3.24421E-10 -3.22589E-10 -3.20745E-10 -3.18887E-10 -3.17014E-10 -3.15125E-10 -3.13219E-10 -3.11294E-10 -3.09347E-10 -3.07377E-10 -3.05381E-10 +-5.31807E-09 -4.65727E-10 -1.66105E-10 -2.09762E-11 -2.04234E-12 7.60003E-12 1.61887E-11 2.45512E-11 3.28627E-11 4.11788E-11 4.9522E-11 5.79027E-11 6.63263E-11 7.47956E-11 8.33121E-11 9.18763E-11 1.00488E-10 1.09149E-10 1.17857E-10 1.26612E-10 1.35415E-10 1.44266E-10 1.53165E-10 1.62113E-10 1.7111E-10 1.80158E-10 1.89259E-10 1.98414E-10 2.07627E-10 2.16901E-10 2.26239E-10 2.35645E-10 2.45125E-10 2.54684E-10 2.64327E-10 2.74063E-10 2.83901E-10 2.93849E-10 3.0392E-10 +-2.82015E-08 -3.02235E-09 5.46038E-10 1.27538E-09 1.37108E-09 1.41962E-09 1.46274E-09 1.50467E-09 1.54633E-09 1.58799E-09 1.62978E-09 1.67176E-09 1.71394E-09 1.75635E-09 1.799E-09 1.84188E-09 1.885E-09 1.92836E-09 1.97196E-09 2.01579E-09 2.05986E-09 2.10417E-09 2.14871E-09 2.1935E-09 2.23854E-09 2.28382E-09 2.32937E-09 2.37519E-09 2.42129E-09 2.46769E-09 2.5144E-09 2.56145E-09 2.60885E-09 2.65663E-09 2.70481E-09 2.75343E-09 2.80252E-09 2.85213E-09 2.90228E-09 +-1.23272E-07 -1.82767E-08 1.75382E-09 5.33542E-09 5.80929E-09 6.04816E-09 6.25953E-09 6.46476E-09 6.66844E-09 6.87208E-09 7.07628E-09 7.28133E-09 7.48737E-09 7.6945E-09 7.90275E-09 8.11214E-09 8.32268E-09 8.53437E-09 8.74721E-09 8.9612E-09 9.17633E-09 9.39261E-09 9.61005E-09 9.82865E-09 1.00484E-08 1.02695E-08 1.04917E-08 1.07153E-08 1.09403E-08 1.11666E-08 1.13945E-08 1.1624E-08 1.18552E-08 1.20881E-08 1.2323E-08 1.25599E-08 1.27991E-08 1.30406E-08 1.32846E-08 +-4.53143E-07 -8.45783E-08 3.36863E-09 2.00499E-08 2.22676E-08 2.33804E-08 2.43627E-08 2.53155E-08 2.62606E-08 2.72053E-08 2.81523E-08 2.91031E-08 3.00584E-08 3.10187E-08 3.1984E-08 3.29546E-08 3.39304E-08 3.49115E-08 3.58978E-08 3.68894E-08 3.78862E-08 3.88883E-08 3.98956E-08 4.09083E-08 4.19265E-08 4.29502E-08 4.39797E-08 4.50152E-08 4.60569E-08 4.71051E-08 4.81602E-08 4.92226E-08 5.02926E-08 5.13709E-08 5.24578E-08 5.35539E-08 5.466E-08 5.57766E-08 5.69046E-08 +-1.43971E-06 -3.21348E-07 5.3794E-09 7.63924E-08 8.58748E-08 9.05998E-08 9.47612E-08 9.8794E-08 1.02793E-07 1.06788E-07 1.10793E-07 1.14814E-07 1.18853E-07 1.22912E-07 1.26992E-07 1.31093E-07 1.35217E-07 1.39362E-07 1.43529E-07 1.47718E-07 1.51928E-07 1.5616E-07 1.60414E-07 1.6469E-07 1.68989E-07 1.73311E-07 1.77656E-07 1.82027E-07 1.86423E-07 1.90846E-07 1.95298E-07 1.9978E-07 2.04293E-07 2.08841E-07 2.13424E-07 2.18045E-07 2.22707E-07 2.27413E-07 2.32164E-07 +-4.1205E-06 -1.03973E-06 7.82017E-09 2.74075E-07 3.10041E-07 3.27609E-07 3.43001E-07 3.57893E-07 3.72649E-07 3.87387E-07 4.02154E-07 4.16974E-07 4.31859E-07 4.46815E-07 4.61846E-07 4.76953E-07 4.92138E-07 5.074E-07 5.2274E-07 5.38157E-07 5.53651E-07 5.69223E-07 5.84873E-07 6.00601E-07 6.16411E-07 6.32303E-07 6.4828E-07 6.64345E-07 6.80504E-07 6.96759E-07 7.13116E-07 7.29581E-07 7.46161E-07 7.62862E-07 7.79691E-07 7.96657E-07 8.13768E-07 8.31034E-07 8.48463E-07 +-1.08323E-05 -2.97732E-06 1.07798E-08 8.78858E-07 1.00036E-06 1.05655E-06 1.10507E-06 1.15181E-06 1.19805E-06 1.24418E-06 1.29038E-06 1.33672E-06 1.38324E-06 1.42997E-06 1.47692E-06 1.52409E-06 1.57148E-06 1.61911E-06 1.66697E-06 1.71505E-06 1.76337E-06 1.81191E-06 1.86069E-06 1.9097E-06 1.95896E-06 2.00846E-06 2.05821E-06 2.10823E-06 2.15853E-06 2.20912E-06 2.26002E-06 2.31124E-06 2.36281E-06 2.41475E-06 2.46708E-06 2.51982E-06 2.57301E-06 2.62666E-06 2.68081E-06 +-2.53477E-05 -7.65395E-06 1.4462E-08 2.52822E-06 2.91612E-06 3.07447E-06 3.2061E-06 3.33163E-06 3.45528E-06 3.57838E-06 3.70148E-06 3.82483E-06 3.94857E-06 4.07277E-06 4.19747E-06 4.32271E-06 4.44849E-06 4.57483E-06 4.70172E-06 4.82916E-06 4.95717E-06 5.08573E-06 5.21486E-06 5.34458E-06 5.47488E-06 5.6058E-06 5.73735E-06 5.86957E-06 6.00249E-06 6.13615E-06 6.27059E-06 6.40586E-06 6.54202E-06 6.67912E-06 6.81723E-06 6.95641E-06 7.09672E-06 7.23825E-06 7.38106E-06 +-5.029E-05 -1.70234E-05 1.92819E-08 6.58642E-06 7.85141E-06 8.26894E-06 8.5857E-06 8.8803E-06 9.16776E-06 9.4526E-06 9.73661E-06 1.00206E-05 1.03051E-05 1.05902E-05 1.08763E-05 1.11632E-05 1.14512E-05 1.17402E-05 1.20303E-05 1.23215E-05 1.26137E-05 1.29071E-05 1.32015E-05 1.34972E-05 1.3794E-05 1.40921E-05 1.43915E-05 1.46923E-05 1.49945E-05 1.52983E-05 1.56038E-05 1.59111E-05 1.62203E-05 1.65316E-05 1.68451E-05 1.7161E-05 1.74794E-05 1.78005E-05 1.81244E-05 +-8.37088E-05 -3.15796E-05 2.59412E-08 1.50118E-05 1.91488E-05 2.02744E-05 2.09754E-05 2.15906E-05 2.21785E-05 2.27555E-05 2.33275E-05 2.38973E-05 2.44665E-05 2.50358E-05 2.56057E-05 2.61767E-05 2.67489E-05 2.73224E-05 2.78974E-05 2.84739E-05 2.9052E-05 2.96317E-05 3.02132E-05 3.07965E-05 3.13816E-05 3.19688E-05 3.25582E-05 3.31499E-05 3.37441E-05 3.43411E-05 3.49411E-05 3.55443E-05 3.61511E-05 3.67617E-05 3.73765E-05 3.79957E-05 3.86198E-05 3.92491E-05 3.9884E-05 +-0.000121053 -4.96402E-05 3.53768E-08 2.86489E-05 4.01776E-05 4.34756E-05 4.49904E-05 4.61618E-05 4.72339E-05 4.82662E-05 4.92793E-05 5.0282E-05 5.1279E-05 5.22727E-05 5.32648E-05 5.42564E-05 5.5248E-05 5.62402E-05 5.72333E-05 5.82276E-05 5.92233E-05 6.02205E-05 6.12196E-05 6.22205E-05 6.32237E-05 6.42293E-05 6.52377E-05 6.62492E-05 6.72642E-05 6.82832E-05 6.93065E-05 7.03348E-05 7.13685E-05 7.24083E-05 7.34547E-05 7.45084E-05 7.557E-05 7.66402E-05 7.77197E-05 +-0.000158927 -6.90483E-05 4.86412E-08 4.60983E-05 7.05654E-05 7.98038E-05 8.32572E-05 8.53943E-05 8.71895E-05 8.88594E-05 9.04701E-05 9.20481E-05 9.36063E-05 9.51518E-05 9.66887E-05 9.82198E-05 9.9747E-05 0.000101272 0.000102795 0.000104316 0.000105838 0.00010736 0.000108882 0.000110405 0.000111929 0.000113455 0.000114984 0.000116516 0.000118051 0.000119591 0.000121137 0.000122688 0.000124247 0.000125814 0.00012739 0.000128976 0.000130574 0.000132184 0.000133808 +-0.000195612 -8.83626E-05 6.69108E-08 6.51932E-05 0.000106199 0.00012668 0.000134845 0.000138832 0.000141718 0.000144244 0.000146614 0.0001489 0.000151136 0.000153338 0.000155517 0.000157679 0.000159829 0.000161969 0.000164101 0.000166227 0.000168349 0.000170467 0.000172583 0.000174697 0.000176809 0.000178921 0.000181034 0.000183149 0.000185266 0.000187388 0.000189515 0.000191648 0.000193789 0.00019594 0.000198102 0.000200277 0.000202467 0.000204672 0.000206895 +-0.000230371 -0.000106867 9.1619E-08 8.43847E-05 0.000143234 0.000178759 0.000196062 0.000203877 0.000208552 0.000212255 0.000215578 0.000218712 0.000221737 0.00022469 0.000227593 0.000230459 0.000233297 0.000236113 0.000238911 0.000241695 0.000244468 0.00024723 0.000249983 0.00025273 0.000255471 0.000258209 0.000260943 0.000263676 0.000266409 0.000269144 0.000271883 0.000274628 0.00027738 0.000280143 0.000282917 0.000285706 0.000288512 0.000291337 0.000294184 +-0.000262936 -0.000124267 1.24605E-07 0.000102877 0.00017955 0.000231608 0.000261964 0.000276997 0.000284878 0.000290313 0.000294867 0.000299024 0.000302962 0.000306763 0.000310469 0.000314106 0.000317691 0.000321235 0.000324745 0.000328228 0.000331688 0.000335128 0.000338552 0.000341961 0.000345358 0.000348744 0.000352122 0.000355494 0.000358862 0.000362229 0.000365596 0.000368966 0.000372342 0.000375728 0.000379125 0.000382538 0.000385968 0.00038942 0.000392897 +-0.000293258 -0.000140474 1.68244E-07 0.000120336 0.000214199 0.000282909 0.000328289 0.00035421 0.000367785 0.000375987 0.000382221 0.000387643 0.000392652 0.000397414 0.000402011 0.000406491 0.000410882 0.000415204 0.00041947 0.000423689 0.000427871 0.000432019 0.000436138 0.000440233 0.000444306 0.00044836 0.000452399 0.000456424 0.00046044 0.000464448 0.000468452 0.000472456 0.000476462 0.000480474 0.000484497 0.000488535 0.00049259 0.000496667 0.000500771 +-0.000321381 -0.00015549 2.25592E-07 0.000136656 0.000246816 0.000331681 0.000392556 0.000431785 0.0004542 0.000466967 0.000475654 0.000482709 0.000489003 0.00049487 0.000500465 0.000505869 0.000511133 0.000516287 0.000521355 0.00052635 0.000531286 0.000536171 0.000541012 0.000545815 0.000550583 0.000555322 0.000560036 0.000564727 0.0005694 0.000574059 0.000578706 0.000583348 0.000587987 0.000592629 0.000597277 0.000601937 0.000606614 0.000611313 0.000616039 +-0.000347396 -0.000169354 3.00547E-07 0.000151837 0.000277305 0.000377568 0.000453663 0.000507147 0.000541024 0.000560876 0.000573319 0.000582599 0.000590486 0.000597648 0.000604373 0.000610801 0.000617015 0.000623065 0.000628985 0.0006348 0.000640527 0.000646181 0.00065177 0.000657303 0.000662787 0.000668228 0.000673631 0.000679 0.000684341 0.000689658 0.000694956 0.00070024 0.000705514 0.000710786 0.000716059 0.00072134 0.000726635 0.000731949 0.00073729 +-0.00037141 -0.000182122 3.98066E-07 0.000165922 0.000305694 0.000420496 0.000511207 0.000578979 0.000625739 0.000655214 0.000673345 0.000685807 0.000695749 0.000704469 0.000712493 0.000720067 0.000727324 0.000734343 0.000741176 0.000747859 0.000754419 0.000760875 0.000767242 0.000773532 0.000779753 0.000785914 0.000792022 0.000798083 0.000804103 0.000810087 0.000816042 0.000821974 0.000827887 0.00083379 0.000839687 0.000845587 0.000851496 0.000857421 0.000863369 +-0.000393532 -0.000193852 5.24425E-07 0.000178975 0.000332068 0.000460523 0.000565111 0.00064676 0.000706814 0.000747676 0.000773736 0.000790825 0.000803539 0.000814187 0.000823735 0.000832608 0.000841021 0.000849096 0.000856912 0.000864521 0.000871961 0.00087926 0.000886438 0.000893512 0.000900494 0.000907397 0.000914227 0.000920995 0.000927706 0.000934369 0.000940989 0.000947574 0.000954131 0.000960667 0.00096719 0.000973707 0.000980227 0.000986757 0.000993307 +-0.000413873 -0.000204602 6.87548E-07 0.000191068 0.000356539 0.000497767 0.000615447 0.000710366 0.000783544 0.000836602 0.000872495 0.00089606 0.00091262 0.000925742 0.000937119 0.000947487 0.000957194 0.00096643 0.000975311 0.000983912 0.000992286 0.00100047 0.0010085 0.00101639 0.00102416 0.00103183 0.0010394 0.00104689 0.00105431 0.00106166 0.00106896 0.0010762 0.00108341 0.00109058 0.00109773 0.00110487 0.001112 0.00111913 0.00112628 +-0.000432534 -0.000214424 8.9742E-07 0.000202277 0.000379231 0.000532379 0.000662358 0.000769859 0.00085571 0.000921085 0.000967964 0.000999848 0.00102171 0.00103811 0.00105174 0.00106386 0.00107503 0.00108555 0.0010956 0.00110527 0.00111464 0.00112376 0.00113268 0.00114143 0.00115002 0.00115848 0.00116682 0.00117505 0.00118319 0.00119124 0.00119923 0.00120714 0.00121501 0.00122282 0.0012306 0.00123836 0.0012461 0.00125383 0.00126157 +-0.000449608 -0.000223366 1.16659E-06 0.000212677 0.000400271 0.000564525 0.000706027 0.000825397 0.000923341 0.00100077 0.00105907 0.00110065 0.00112945 0.00115025 0.00116674 0.00118094 0.0011938 0.00120576 0.00121708 0.00122791 0.00123835 0.00124848 0.00125834 0.00126798 0.00127742 0.0012867 0.00129583 0.00130483 0.00131371 0.00132248 0.00133117 0.00133977 0.00134829 0.00135676 0.00136518 0.00137355 0.0013819 0.00139024 0.00139856 +-0.000465179 -0.000231465 1.5108E-06 0.000222347 0.000419787 0.000594373 0.000746648 0.00087718 0.000986587 0.00107562 0.0011453 0.00119732 0.0012345 0.00126105 0.00128125 0.00129802 0.00131283 0.00132642 0.00133915 0.00135124 0.00136284 0.00137403 0.00138489 0.00139547 0.00140581 0.00141594 0.00142589 0.00143568 0.00144532 0.00145484 0.00146423 0.00147353 0.00148273 0.00149186 0.00150092 0.00150992 0.00151888 0.00152782 0.00153674 +-0.000479316 -0.000238755 1.94978E-06 0.000231362 0.000437908 0.000622094 0.000784429 0.000925432 0.00104566 0.00114575 0.00122652 0.00128918 0.00133572 0.00136941 0.0013944 0.00141436 0.0014315 0.00144694 0.00146125 0.00147473 0.00148757 0.00149991 0.00151183 0.00152341 0.00153469 0.00154571 0.00155652 0.00156712 0.00157755 0.00158782 0.00159795 0.00160796 0.00161785 0.00162765 0.00163736 0.00164699 0.00165658 0.00166611 0.00167562 +-0.000492075 -0.000245255 2.50816E-06 0.000239803 0.00045476 0.00064786 0.000819574 0.000970384 0.0011008 0.00121137 0.00130279 0.00137597 0.00143233 0.00147426 0.00150527 0.00152926 0.00154922 0.00156681 0.00158289 0.0015979 0.0016121 0.00162567 0.00163873 0.00165136 0.00166363 0.00167559 0.00168728 0.00169873 0.00170997 0.00172103 0.00173191 0.00174264 0.00175324 0.00176372 0.00177409 0.00178437 0.00179458 0.00180473 0.00181483 +-0.0005035 -0.000250976 3.21671E-06 0.000247749 0.000470472 0.000671838 0.000852289 0.00101227 0.00115226 0.00127274 0.0013743 0.00145768 0.00152394 0.00157479 0.00161293 0.00164198 0.0016654 0.00168552 0.00170361 0.00172032 0.00173601 0.00175091 0.00176519 0.00177894 0.00179226 0.0018052 0.00181782 0.00183015 0.00184224 0.0018541 0.00186576 0.00187724 0.00188855 0.00189973 0.00191078 0.00192171 0.00193255 0.00194331 0.00195401 +-0.000513613 -0.000255915 4.11376E-06 0.000255285 0.000485171 0.000694198 0.00088278 0.00105134 0.0012003 0.00133012 0.00144131 0.00153448 0.00161046 0.00167051 0.00171661 0.00175176 0.00177945 0.00180259 0.00182299 0.0018416 0.00185893 0.00187528 0.00189087 0.00190582 0.00192024 0.00193422 0.00194781 0.00196107 0.00197403 0.00198672 0.00199918 0.00201143 0.00202349 0.00203538 0.00204711 0.00205871 0.0020702 0.00208158 0.00209288 +-0.000522421 -0.000260056 5.24698E-06 0.000262503 0.000498989 0.000715109 0.000911252 0.00108781 0.00124518 0.00138379 0.00150408 0.00160659 0.00169199 0.00176122 0.00181575 0.0018579 0.00189076 0.00191756 0.00194065 0.0019614 0.00198053 0.00199847 0.00201546 0.0020317 0.00204731 0.00206238 0.00207699 0.00209121 0.00210509 0.00211865 0.00213194 0.00214498 0.00215779 0.00217041 0.00218285 0.00219513 0.00220727 0.00221929 0.0022312 +-0.000529907 -0.000263365 6.67554E-06 0.0002695 0.000512062 0.000734744 0.000937911 0.00112193 0.00128718 0.00143404 0.00156292 0.0016743 0.00176872 0.00184694 0.00191007 0.00195982 0.00199875 0.00202995 0.00205622 0.0020794 0.00210054 0.0021202 0.00213872 0.00215634 0.0021732 0.00218943 0.00220513 0.00222036 0.00223518 0.00224965 0.00226379 0.00227765 0.00229126 0.00230462 0.00231779 0.00233076 0.00234357 0.00235623 0.00236876 +-0.000536028 -0.000265788 8.47286E-06 0.000276388 0.000524535 0.000753281 0.000962968 0.00115394 0.00132655 0.00148116 0.00161813 0.0017379 0.00184093 0.00192785 0.00199951 0.00205719 0.00210288 0.00213928 0.00216931 0.00219531 0.00221869 0.00224024 0.00226043 0.00227952 0.00229773 0.00231519 0.00233203 0.00234832 0.00236414 0.00237955 0.00239458 0.00240929 0.0024237 0.00243784 0.00245175 0.00246543 0.00247892 0.00249224 0.00250541 +-0.000540714 -0.000267248 1.07297E-05 0.000283289 0.000536565 0.000770908 0.000986641 0.00118409 0.00136358 0.00152544 0.00167003 0.00179772 0.00190894 0.0020042 0.00208418 0.00214988 0.00220278 0.0022451 0.00227959 0.00230885 0.00233476 0.0023584 0.00238038 0.00240107 0.00242071 0.00243949 0.00245753 0.00247495 0.00249181 0.0025082 0.00252416 0.00253975 0.002555 0.00256994 0.0025846 0.00259902 0.00261321 0.0026272 0.00264102 +*table -1.6 +-3.10015E-10 -3.09767E-10 -3.0973E-10 -3.09724E-10 -3.09724E-10 -3.09723E-10 -3.09723E-10 -3.09723E-10 -3.09722E-10 -3.09722E-10 -3.09722E-10 -3.09721E-10 -3.09721E-10 -3.09721E-10 -3.0972E-10 -3.0972E-10 -3.0972E-10 -3.0972E-10 -3.09719E-10 -3.09719E-10 -3.09719E-10 -3.09718E-10 -3.09718E-10 -3.09717E-10 -3.09717E-10 -3.09717E-10 -3.09716E-10 -3.09716E-10 -3.09716E-10 -3.09715E-10 -3.09715E-10 -3.09714E-10 -3.09713E-10 -3.09713E-10 -3.09712E-10 -3.09711E-10 -3.0971E-10 -3.09708E-10 -3.09707E-10 +-3.09748E-10 -3.08524E-10 -3.08339E-10 -3.08312E-10 -3.08308E-10 -3.08306E-10 -3.08304E-10 -3.08303E-10 -3.08301E-10 -3.083E-10 -3.08298E-10 -3.08297E-10 -3.08295E-10 -3.08294E-10 -3.08292E-10 -3.0829E-10 -3.08289E-10 -3.08287E-10 -3.08286E-10 -3.08284E-10 -3.08282E-10 -3.08281E-10 -3.08279E-10 -3.08277E-10 -3.08276E-10 -3.08274E-10 -3.08272E-10 -3.08271E-10 -3.08269E-10 -3.08267E-10 -3.08265E-10 -3.08263E-10 -3.08262E-10 -3.0826E-10 -3.08258E-10 -3.08256E-10 -3.08254E-10 -3.08251E-10 -3.08249E-10 +-3.14813E-10 -3.08879E-10 -3.07966E-10 -3.07828E-10 -3.0781E-10 -3.078E-10 -3.07792E-10 -3.07784E-10 -3.07777E-10 -3.07769E-10 -3.07761E-10 -3.07753E-10 -3.07745E-10 -3.07737E-10 -3.07729E-10 -3.07721E-10 -3.07713E-10 -3.07705E-10 -3.07697E-10 -3.07688E-10 -3.0768E-10 -3.07672E-10 -3.07663E-10 -3.07655E-10 -3.07646E-10 -3.07638E-10 -3.07629E-10 -3.07621E-10 -3.07612E-10 -3.07603E-10 -3.07595E-10 -3.07586E-10 -3.07577E-10 -3.07568E-10 -3.07559E-10 -3.07549E-10 -3.0754E-10 -3.07531E-10 -3.07521E-10 +-3.39892E-10 -3.11953E-10 -3.07566E-10 -3.06866E-10 -3.06773E-10 -3.06726E-10 -3.06685E-10 -3.06645E-10 -3.06605E-10 -3.06565E-10 -3.06525E-10 -3.06486E-10 -3.06445E-10 -3.06405E-10 -3.06364E-10 -3.06324E-10 -3.06283E-10 -3.06241E-10 -3.062E-10 -3.06158E-10 -3.06116E-10 -3.06074E-10 -3.06032E-10 -3.05989E-10 -3.05946E-10 -3.05903E-10 -3.0586E-10 -3.05816E-10 -3.05772E-10 -3.05728E-10 -3.05683E-10 -3.05639E-10 -3.05593E-10 -3.05548E-10 -3.05501E-10 -3.05455E-10 -3.05407E-10 -3.05359E-10 -3.05311E-10 +-4.52067E-10 -3.26038E-10 -3.05802E-10 -3.02263E-10 -3.01791E-10 -3.01554E-10 -3.01345E-10 -3.01143E-10 -3.00942E-10 -3.00741E-10 -3.00539E-10 -3.00337E-10 -3.00134E-10 -2.9993E-10 -2.99725E-10 -2.99518E-10 -2.99311E-10 -2.99102E-10 -2.98892E-10 -2.98681E-10 -2.98469E-10 -2.98256E-10 -2.98041E-10 -2.97826E-10 -2.97609E-10 -2.97391E-10 -2.97171E-10 -2.96951E-10 -2.96729E-10 -2.96505E-10 -2.9628E-10 -2.96053E-10 -2.95824E-10 -2.95593E-10 -2.9536E-10 -2.95125E-10 -2.94887E-10 -2.94645E-10 -2.94401E-10 +-9.66966E-10 -3.86918E-10 -2.98993E-10 -2.81135E-10 -2.78756E-10 -2.77562E-10 -2.76507E-10 -2.75484E-10 -2.74469E-10 -2.73455E-10 -2.72438E-10 -2.71417E-10 -2.70391E-10 -2.6936E-10 -2.68323E-10 -2.67281E-10 -2.66232E-10 -2.65178E-10 -2.64118E-10 -2.63053E-10 -2.61981E-10 -2.60904E-10 -2.59821E-10 -2.58732E-10 -2.57637E-10 -2.56536E-10 -2.55429E-10 -2.54314E-10 -2.53193E-10 -2.52064E-10 -2.50927E-10 -2.49782E-10 -2.48628E-10 -2.47464E-10 -2.46289E-10 -2.45103E-10 -2.43903E-10 -2.4269E-10 -2.4146E-10 +-3.76975E-09 -6.56315E-10 -2.60441E-10 -1.70721E-10 -1.58795E-10 -1.52797E-10 -1.47497E-10 -1.42355E-10 -1.37252E-10 -1.32152E-10 -1.27039E-10 -1.21904E-10 -1.16744E-10 -1.11557E-10 -1.06342E-10 -1.01099E-10 -9.5826E-11 -9.05244E-11 -8.51938E-11 -7.98342E-11 -7.44457E-11 -6.90282E-11 -6.35814E-11 -5.8105E-11 -5.25982E-11 -4.70604E-11 -4.14905E-11 -3.58871E-11 -3.02486E-11 -2.4573E-11 -1.88583E-11 -1.31017E-11 -7.3004E-12 -1.45096E-12 4.45052E-12 1.04085E-11 1.64282E-11 2.25158E-11 2.86784E-11 +-1.82858E-08 -2.31689E-09 -4.46809E-11 4.02282E-10 4.61605E-10 4.91469E-10 5.17873E-10 5.43499E-10 5.68929E-10 5.9435E-10 6.1984E-10 6.45435E-10 6.71155E-10 6.9701E-10 7.23005E-10 7.49143E-10 7.75426E-10 8.01853E-10 8.28424E-10 8.55139E-10 8.81998E-10 9.09001E-10 9.3615E-10 9.63446E-10 9.90892E-10 1.01849E-09 1.04625E-09 1.07418E-09 1.10228E-09 1.13056E-09 1.15903E-09 1.18771E-09 1.2166E-09 1.24573E-09 1.27512E-09 1.30477E-09 1.33472E-09 1.36499E-09 1.39561E-09 +-8.13651E-08 -1.18247E-08 6.16545E-10 2.80638E-09 3.09749E-09 3.24383E-09 3.37311E-09 3.49854E-09 3.62299E-09 3.74738E-09 3.87209E-09 3.99732E-09 4.12314E-09 4.24963E-09 4.37679E-09 4.50465E-09 4.63321E-09 4.76248E-09 4.89244E-09 5.02311E-09 5.15448E-09 5.28655E-09 5.41932E-09 5.55282E-09 5.68704E-09 5.822E-09 5.95774E-09 6.09428E-09 6.23166E-09 6.36992E-09 6.50911E-09 6.64928E-09 6.79049E-09 6.93282E-09 7.07635E-09 7.22115E-09 7.36733E-09 7.515E-09 7.66428E-09 +-3.12554E-07 -5.51038E-08 1.73894E-09 1.20786E-08 1.34569E-08 1.41478E-08 1.47574E-08 1.53485E-08 1.59347E-08 1.65205E-08 1.71078E-08 1.76975E-08 1.82899E-08 1.88854E-08 1.9484E-08 2.00859E-08 2.06911E-08 2.12995E-08 2.19112E-08 2.25262E-08 2.31444E-08 2.37659E-08 2.43907E-08 2.50188E-08 2.56503E-08 2.62853E-08 2.69239E-08 2.75663E-08 2.82125E-08 2.88628E-08 2.95174E-08 3.01765E-08 3.08405E-08 3.15096E-08 3.21842E-08 3.28646E-08 3.35513E-08 3.42447E-08 3.49454E-08 +-1.03641E-06 -2.18711E-07 3.24232E-09 4.8683E-08 5.47577E-08 5.77893E-08 6.04594E-08 6.30468E-08 6.56122E-08 6.81755E-08 7.07448E-08 7.3324E-08 7.59151E-08 7.85192E-08 8.1137E-08 8.37686E-08 8.64143E-08 8.90741E-08 9.17479E-08 9.44358E-08 9.71377E-08 9.98536E-08 1.02584E-07 1.05328E-07 1.08087E-07 1.10861E-07 1.13651E-07 1.16456E-07 1.19278E-07 1.22118E-07 1.24976E-07 1.27854E-07 1.30752E-07 1.33673E-07 1.36616E-07 1.39585E-07 1.4258E-07 1.45603E-07 1.48657E-07 +-3.05902E-06 -7.41443E-07 5.12223E-09 1.83637E-07 2.0768E-07 2.19521E-07 2.29913E-07 2.39972E-07 2.4994E-07 2.59896E-07 2.69874E-07 2.79887E-07 2.89945E-07 3.00052E-07 3.1021E-07 3.20421E-07 3.30684E-07 3.41E-07 3.5137E-07 3.61792E-07 3.72268E-07 3.82796E-07 3.93378E-07 4.04014E-07 4.14705E-07 4.25453E-07 4.36259E-07 4.47125E-07 4.58055E-07 4.69052E-07 4.80118E-07 4.91258E-07 5.02476E-07 5.13778E-07 5.25167E-07 5.3665E-07 5.48233E-07 5.59923E-07 5.71726E-07 +-8.28163E-06 -2.20415E-06 7.42795E-09 6.18653E-07 7.02966E-07 7.42922E-07 7.77631E-07 8.1113E-07 8.44285E-07 8.77377E-07 9.10521E-07 9.43773E-07 9.77161E-07 1.0107E-06 1.0444E-06 1.07827E-06 1.1123E-06 1.1465E-06 1.18087E-06 1.21541E-06 1.25011E-06 1.28499E-06 1.32003E-06 1.35525E-06 1.39064E-06 1.42621E-06 1.46197E-06 1.49792E-06 1.53408E-06 1.57045E-06 1.60704E-06 1.64387E-06 1.68096E-06 1.71831E-06 1.75594E-06 1.79388E-06 1.83214E-06 1.87074E-06 1.9097E-06 +-2.02749E-05 -5.88926E-06 1.02846E-08 1.85145E-06 2.12358E-06 2.24086E-06 2.34001E-06 2.43498E-06 2.52868E-06 2.62205E-06 2.71547E-06 2.80911E-06 2.90308E-06 2.99742E-06 3.09218E-06 3.18735E-06 3.28296E-06 3.379E-06 3.47548E-06 3.5724E-06 3.66976E-06 3.76757E-06 3.86582E-06 3.96452E-06 4.06369E-06 4.16333E-06 4.26348E-06 4.36414E-06 4.46534E-06 4.56712E-06 4.66951E-06 4.77254E-06 4.87625E-06 4.98069E-06 5.08591E-06 5.19195E-06 5.29886E-06 5.40671E-06 5.51555E-06 +-4.27396E-05 -1.38517E-05 1.39631E-08 5.00754E-06 5.88247E-06 6.19647E-06 6.44464E-06 6.67801E-06 6.90663E-06 7.13361E-06 7.36019E-06 7.58695E-06 7.81421E-06 8.04215E-06 8.27087E-06 8.50044E-06 8.73089E-06 8.96225E-06 9.19452E-06 9.42771E-06 9.66184E-06 9.89692E-06 1.0133E-05 1.037E-05 1.0608E-05 1.08471E-05 1.10872E-05 1.13286E-05 1.15711E-05 1.1815E-05 1.20602E-05 1.23069E-05 1.25552E-05 1.28051E-05 1.30569E-05 1.33106E-05 1.35663E-05 1.38242E-05 1.40845E-05 +-7.54326E-05 -2.74018E-05 1.89632E-08 1.20414E-05 1.49326E-05 1.57625E-05 1.63255E-05 1.68325E-05 1.73213E-05 1.78029E-05 1.82814E-05 1.87589E-05 1.92363E-05 1.97143E-05 2.01931E-05 2.06731E-05 2.11544E-05 2.1637E-05 2.21211E-05 2.26066E-05 2.30937E-05 2.35823E-05 2.40726E-05 2.45646E-05 2.50583E-05 2.55538E-05 2.60514E-05 2.6551E-05 2.70529E-05 2.75573E-05 2.80643E-05 2.85741E-05 2.9087E-05 2.96032E-05 3.0123E-05 3.06467E-05 3.11745E-05 3.17067E-05 3.22436E-05 +-0.000113932 -4.54484E-05 2.60232E-08 2.45284E-05 3.32215E-05 3.55836E-05 3.67995E-05 3.7793E-05 3.87193E-05 3.96181E-05 4.05037E-05 4.13824E-05 4.22576E-05 4.31311E-05 4.40041E-05 4.48773E-05 4.57513E-05 4.66264E-05 4.75029E-05 4.83808E-05 4.92604E-05 5.01419E-05 5.10253E-05 5.19108E-05 5.27986E-05 5.3689E-05 5.45821E-05 5.54782E-05 5.63778E-05 5.72811E-05 5.81886E-05 5.91006E-05 6.00177E-05 6.09403E-05 6.1869E-05 6.28043E-05 6.37467E-05 6.46968E-05 6.56553E-05 +-0.000153976 -6.56584E-05 3.60293E-08 4.17734E-05 6.21353E-05 6.90284E-05 7.17297E-05 7.35578E-05 7.51502E-05 7.66522E-05 7.81106E-05 7.95449E-05 8.09647E-05 8.23754E-05 8.37803E-05 8.51815E-05 8.65805E-05 8.79782E-05 8.93755E-05 9.07727E-05 9.21705E-05 9.3569E-05 9.49688E-05 9.63701E-05 9.77733E-05 9.9179E-05 0.000100587 0.000101999 0.000103415 0.000104836 0.000106262 0.000107694 0.000109133 0.00011058 0.000112035 0.000113501 0.000114977 0.000116465 0.000117965 +-0.000193185 -8.61846E-05 4.99692E-08 6.15326E-05 9.83008E-05 0.000115077 0.000121456 0.000124818 0.000127403 0.000129722 0.00013192 0.000134053 0.000136146 0.000138213 0.000140261 0.000142296 0.000144322 0.00014634 0.000148353 0.000150362 0.000152368 0.000154372 0.000156375 0.000158376 0.000160378 0.000162381 0.000164385 0.000166391 0.000168401 0.000170416 0.000172436 0.000174463 0.000176499 0.000178544 0.000180601 0.00018267 0.000184753 0.000186852 0.000188968 +-0.000230495 -0.000106027 6.90145E-08 8.18549E-05 0.000137152 0.000168659 0.000182922 0.000189409 0.000193567 0.000196994 0.000200122 0.000203097 0.000205981 0.000208804 0.000211586 0.000214337 0.000217064 0.000219774 0.000222469 0.000225152 0.000227826 0.000230492 0.000233152 0.000235806 0.000238456 0.000241104 0.00024375 0.000246396 0.000249044 0.000251694 0.000254349 0.000257011 0.000259681 0.000262362 0.000265056 0.000267764 0.000270489 0.000273234 0.000276 +-0.000265493 -0.000124749 9.46491E-08 0.000101636 0.000175809 0.000224386 0.000251133 0.000263825 0.000270724 0.000275738 0.000280052 0.000284038 0.000287837 0.000291517 0.000295115 0.000298653 0.000302145 0.000305601 0.000309028 0.000312432 0.000315815 0.000319182 0.000322535 0.000325875 0.000329205 0.000332526 0.000335842 0.000339152 0.00034246 0.000345768 0.000349079 0.000352393 0.000355715 0.000359047 0.000362392 0.000365753 0.000369132 0.000372534 0.00037596 +-0.000298075 -0.000142201 1.2879E-07 0.000120382 0.000212907 0.000279052 0.000321088 0.000343948 0.000355791 0.000363268 0.000369167 0.000374391 0.000379258 0.000383908 0.000388411 0.000392808 0.000397125 0.00040138 0.000405584 0.000409747 0.000413876 0.000417974 0.000422048 0.000426099 0.000430131 0.000434146 0.000438148 0.000442139 0.000446122 0.000450099 0.000454074 0.000458051 0.000462031 0.00046602 0.00047002 0.000474035 0.00047807 0.000482128 0.000486214 +-0.000328269 -0.000158363 1.73908E-07 0.000137917 0.000247894 0.00033123 0.000389487 0.000425617 0.000445574 0.000457091 0.000465247 0.000472044 0.000478183 0.000483943 0.000489455 0.000494794 0.000500003 0.000505111 0.000510139 0.000515101 0.000520008 0.000524868 0.000529687 0.000534471 0.000539225 0.000543951 0.000548654 0.000553338 0.000558005 0.00056266 0.000567307 0.000571949 0.000576591 0.000581237 0.000585892 0.00059056 0.000595247 0.000599957 0.000604695 +-0.000356167 -0.000173273 2.33171E-07 0.000154212 0.000280597 0.000380372 0.000454747 0.000505621 0.000536759 0.000554733 0.000566291 0.000575189 0.000582886 0.000589938 0.00059659 0.000602968 0.000609146 0.00061517 0.000621073 0.000626877 0.000632599 0.000638251 0.000643844 0.000649384 0.000654878 0.000660331 0.00066575 0.000671138 0.000676499 0.000681839 0.000687163 0.000692474 0.000697779 0.000703083 0.000708391 0.000713708 0.000719042 0.000724397 0.00072978 +-0.000381884 -0.00018699 3.10614E-07 0.000169305 0.000311014 0.000426329 0.000516256 0.000582158 0.00062641 0.00065359 0.000670345 0.000682194 0.000691872 0.000700465 0.000708422 0.00071596 0.000723198 0.000730212 0.00073705 0.000743745 0.000750323 0.000756802 0.000763196 0.000769516 0.000775772 0.000781971 0.00078812 0.000794225 0.000800291 0.000806324 0.00081233 0.000818315 0.000824285 0.000830247 0.000836206 0.000842169 0.000848145 0.000854138 0.000860158 +-0.000405546 -0.000199579 4.11361E-07 0.000183259 0.000339227 0.000469131 0.000573849 0.000654453 0.000712556 0.00075112 0.000775359 0.00079148 0.000803785 0.000814265 0.000823743 0.000832591 0.000841003 0.000849093 0.000856935 0.000864578 0.000872059 0.000879404 0.000886633 0.000893762 0.000900804 0.000907768 0.000914664 0.000921499 0.000928282 0.000935017 0.000941714 0.000948377 0.000955016 0.000961636 0.000968246 0.000974853 0.000981466 0.000988092 0.000994739 +-0.000427276 -0.000211107 5.41898E-07 0.000196151 0.000365352 0.000508896 0.000627571 0.000722274 0.000794203 0.000845319 0.000879215 0.000901414 0.000917324 0.000930192 0.000941481 0.00095183 0.000961553 0.000970824 0.000979752 0.00098841 0.000996848 0.0010051 0.00101321 0.00102117 0.00102903 0.00103678 0.00104444 0.00105203 0.00105954 0.00106699 0.00107438 0.00108173 0.00108904 0.00109633 0.00110359 0.00111084 0.00111808 0.00112534 0.00113261 +-0.000447191 -0.000221636 7.10414E-07 0.000208062 0.000389519 0.00054578 0.000677561 0.000785646 0.000870991 0.000934983 0.000980023 0.00101027 0.00103117 0.00104716 0.00106066 0.00107275 0.00108396 0.00109453 0.00110465 0.0011144 0.00112385 0.00113307 0.00114209 0.00115094 0.00115963 0.0011682 0.00117665 0.001185 0.00119326 0.00120143 0.00120954 0.00121758 0.00122557 0.00123352 0.00124144 0.00124933 0.00125721 0.00126509 0.00127297 +-0.000465402 -0.000231223 9.27221E-07 0.000219072 0.000411866 0.000579958 0.000724009 0.000844718 0.00094289 0.00101958 0.00107645 0.00111638 0.00114393 0.00116409 0.00118036 0.00119452 0.00120742 0.00121945 0.00123086 0.0012418 0.00125235 0.00126259 0.00127257 0.00128234 0.00129191 0.00130132 0.00131059 0.00131973 0.00132875 0.00133766 0.00134649 0.00135524 0.00136392 0.00137254 0.00138111 0.00138965 0.00139816 0.00140666 0.00141516 +-0.000482005 -0.000239917 1.20529E-06 0.000229264 0.00043253 0.000611614 0.000767124 0.000899698 0.00101004 0.00109899 0.00116778 0.00121839 0.0012542 0.00127986 0.00129968 0.00131636 0.00133121 0.00134489 0.00135774 0.00136996 0.00138169 0.00139302 0.00140403 0.00141476 0.00142525 0.00143554 0.00144565 0.00145559 0.0014654 0.00147508 0.00148464 0.00149411 0.00150348 0.00151278 0.00152202 0.00153121 0.00154035 0.00154948 0.00155858 +-0.000497088 -0.000247759 1.56087E-06 0.000238716 0.000451649 0.00064093 0.000807126 0.000950821 0.00107264 0.00117331 0.00125376 0.00131543 0.00136069 0.0013933 0.00141773 0.00143751 0.00145467 0.00147022 0.00148467 0.0014983 0.0015113 0.00152381 0.0015359 0.00154765 0.00155911 0.00157031 0.0015813 0.00159208 0.0016027 0.00161315 0.00162347 0.00163367 0.00164376 0.00165375 0.00166366 0.0016735 0.00168328 0.00169303 0.00170275 +-0.000510724 -0.000254782 2.01435E-06 0.000247511 0.000469357 0.000668089 0.000844236 0.000998335 0.00113096 0.00124273 0.00133442 0.0014071 0.00146247 0.0015033 0.00153355 0.00155723 0.00157717 0.00159487 0.00161111 0.0016263 0.0016407 0.00165446 0.00166772 0.00168055 0.00169302 0.00170518 0.00171707 0.00172873 0.00174018 0.00175144 0.00176254 0.00177348 0.00178429 0.00179498 0.00180557 0.00181608 0.00182651 0.00183688 0.00184721 +-0.000522971 -0.000261008 2.59117E-06 0.000255728 0.000485787 0.00069327 0.000878672 0.00104249 0.00118525 0.00130751 0.00140993 0.00149335 0.00155901 0.00160891 0.0016462 0.00167478 0.0016981 0.00171832 0.00173658 0.0017535 0.00176941 0.00178454 0.00179904 0.00181302 0.00182657 0.00183974 0.00185258 0.00186515 0.00187746 0.00188955 0.00190144 0.00191315 0.0019247 0.00193611 0.0019474 0.00195857 0.00196965 0.00198066 0.00199161 +-0.000533872 -0.000266447 3.32313E-06 0.000263453 0.000501071 0.000716649 0.000910652 0.00108354 0.00123581 0.00136795 0.00148054 0.00157428 0.00165012 0.00170952 0.00175482 0.00178937 0.00181684 0.00184005 0.00186063 0.00187948 0.00189706 0.00191367 0.00192951 0.00194472 0.0019594 0.00197363 0.00198747 0.00200098 0.00201419 0.00202714 0.00203985 0.00205236 0.00206467 0.00207681 0.0020888 0.00210066 0.0021124 0.00212405 0.00213562 +-0.000543452 -0.000271096 4.24979E-06 0.000270773 0.000515341 0.000738402 0.000940389 0.00112174 0.0012829 0.00142433 0.00154654 0.00165012 0.00173585 0.00180481 0.00185874 0.00190026 0.00193279 0.00195957 0.00198285 0.00200386 0.00202328 0.0020415 0.00205879 0.00207531 0.0020912 0.00210656 0.00212145 0.00213595 0.00215009 0.00216393 0.00217749 0.00219081 0.0022039 0.00221679 0.00222951 0.00224206 0.00225448 0.00226678 0.00227898 +-0.000551715 -0.000274937 5.42041E-06 0.00027778 0.000528733 0.000758703 0.000968097 0.00115732 0.0013268 0.00147695 0.00160823 0.00172117 0.00181639 0.00189477 0.00195757 0.0020068 0.00204531 0.00207641 0.00210283 0.0021263 0.00214776 0.00216775 0.0021866 0.00220453 0.00222171 0.00223825 0.00225426 0.00226979 0.00228491 0.00229968 0.00231412 0.00232827 0.00234217 0.00235583 0.00236929 0.00238256 0.00239566 0.00240862 0.00242146 +-0.000558644 -0.000277936 6.89611E-06 0.000284577 0.000541389 0.000777732 0.00099399 0.00119055 0.00136779 0.00152611 0.00166593 0.00178772 0.00189202 0.00197951 0.0020512 0.00210856 0.00215386 0.00219007 0.0022202 0.00224648 0.00227021 0.00229213 0.00231268 0.00233214 0.00235069 0.0023685 0.00238567 0.0024023 0.00241844 0.00243417 0.00244953 0.00246455 0.00247928 0.00249373 0.00250795 0.00252195 0.00253576 0.00254939 0.00256288 +-0.000564194 -0.000280036 8.75269E-06 0.000291277 0.000553456 0.000795672 0.00101828 0.00122165 0.00140614 0.00157212 0.00171997 0.00185012 0.00196303 0.00205929 0.00213968 0.00220533 0.00225797 0.00230008 0.00233459 0.00236411 0.00239039 0.00241444 0.00243684 0.00245793 0.00247796 0.00249712 0.00251553 0.0025333 0.00255052 0.00256725 0.00258356 0.00259949 0.00261507 0.00263035 0.00264535 0.00266009 0.00267462 0.00268894 0.00270309 +-0.000568291 -0.000281157 1.1084E-05 0.000298008 0.000565096 0.000812715 0.0010412 0.0012509 0.00144215 0.00161528 0.00177067 0.0019087 0.00202977 0.0021344 0.00222322 0.00229711 0.0023574 0.00240603 0.00244562 0.00247892 0.00250809 0.00253449 0.00255889 0.00258174 0.00260336 0.00262395 0.00264367 0.00266266 0.00268101 0.0026988 0.00271609 0.00273296 0.00274943 0.00276555 0.00278136 0.00279688 0.00281214 0.00282717 0.002842 +*table -1.4 +-2.04848E-10 -2.04008E-10 -2.03882E-10 -2.03863E-10 -2.03861E-10 -2.0386E-10 -2.03859E-10 -2.03858E-10 -2.03857E-10 -2.03856E-10 -2.03855E-10 -2.03853E-10 -2.03852E-10 -2.03851E-10 -2.0385E-10 -2.03849E-10 -2.03848E-10 -2.03847E-10 -2.03846E-10 -2.03845E-10 -2.03844E-10 -2.03843E-10 -2.03841E-10 -2.0384E-10 -2.03839E-10 -2.03838E-10 -2.03837E-10 -2.03836E-10 -2.03834E-10 -2.03833E-10 -2.03832E-10 -2.0383E-10 -2.03829E-10 -2.03827E-10 -2.03826E-10 -2.03824E-10 -2.03822E-10 -2.03819E-10 -2.03817E-10 +-2.07275E-10 -2.03117E-10 -2.02491E-10 -2.02399E-10 -2.02387E-10 -2.0238E-10 -2.02375E-10 -2.0237E-10 -2.02364E-10 -2.02359E-10 -2.02354E-10 -2.02349E-10 -2.02343E-10 -2.02338E-10 -2.02333E-10 -2.02327E-10 -2.02322E-10 -2.02317E-10 -2.02311E-10 -2.02306E-10 -2.023E-10 -2.02295E-10 -2.02289E-10 -2.02283E-10 -2.02278E-10 -2.02272E-10 -2.02266E-10 -2.02261E-10 -2.02255E-10 -2.02249E-10 -2.02243E-10 -2.02237E-10 -2.02231E-10 -2.02225E-10 -2.02219E-10 -2.02212E-10 -2.02206E-10 -2.02199E-10 -2.02192E-10 +-2.25652E-10 -2.0522E-10 -2.02118E-10 -2.01657E-10 -2.01596E-10 -2.01565E-10 -2.01537E-10 -2.01511E-10 -2.01485E-10 -2.01459E-10 -2.01432E-10 -2.01406E-10 -2.0138E-10 -2.01353E-10 -2.01326E-10 -2.01299E-10 -2.01272E-10 -2.01245E-10 -2.01218E-10 -2.01191E-10 -2.01163E-10 -2.01135E-10 -2.01107E-10 -2.01079E-10 -2.01051E-10 -2.01023E-10 -2.00994E-10 -2.00965E-10 -2.00936E-10 -2.00907E-10 -2.00878E-10 -2.00848E-10 -2.00818E-10 -2.00788E-10 -2.00758E-10 -2.00727E-10 -2.00696E-10 -2.00664E-10 -2.00632E-10 +-3.16215E-10 -2.1697E-10 -2.0172E-10 -1.99411E-10 -1.99102E-10 -1.98947E-10 -1.98811E-10 -1.98679E-10 -1.98548E-10 -1.98417E-10 -1.98286E-10 -1.98154E-10 -1.98022E-10 -1.97888E-10 -1.97755E-10 -1.9762E-10 -1.97485E-10 -1.97349E-10 -1.97212E-10 -1.97075E-10 -1.96936E-10 -1.96797E-10 -1.96658E-10 -1.96517E-10 -1.96376E-10 -1.96234E-10 -1.96091E-10 -1.95947E-10 -1.95802E-10 -1.95656E-10 -1.95509E-10 -1.95361E-10 -1.95212E-10 -1.95062E-10 -1.9491E-10 -1.94756E-10 -1.946E-10 -1.94443E-10 -1.94283E-10 +-7.47204E-10 -2.73973E-10 -1.99985E-10 -1.88442E-10 -1.86898E-10 -1.86124E-10 -1.85443E-10 -1.84782E-10 -1.84127E-10 -1.83472E-10 -1.82816E-10 -1.82157E-10 -1.81495E-10 -1.8083E-10 -1.80161E-10 -1.79488E-10 -1.78812E-10 -1.78132E-10 -1.77448E-10 -1.76761E-10 -1.7607E-10 -1.75375E-10 -1.74676E-10 -1.73974E-10 -1.73267E-10 -1.72557E-10 -1.71842E-10 -1.71123E-10 -1.704E-10 -1.69671E-10 -1.68938E-10 -1.68199E-10 -1.67454E-10 -1.66702E-10 -1.65944E-10 -1.65177E-10 -1.64403E-10 -1.63618E-10 -1.62823E-10 +-2.7757E-09 -5.45364E-10 -1.93473E-10 -1.35952E-10 -1.28261E-10 -1.24407E-10 -1.2101E-10 -1.17718E-10 -1.14454E-10 -1.11191E-10 -1.07921E-10 -1.04637E-10 -1.01338E-10 -9.80223E-11 -9.46884E-11 -9.13362E-11 -8.79656E-11 -8.45765E-11 -8.1169E-11 -7.77429E-11 -7.42984E-11 -7.08354E-11 -6.73537E-11 -6.3853E-11 -6.03329E-11 -5.6793E-11 -5.32325E-11 -4.96504E-11 -4.60459E-11 -4.24175E-11 -3.87639E-11 -3.50834E-11 -3.13739E-11 -2.76332E-11 -2.38586E-11 -2.00471E-11 -1.61952E-11 -1.22985E-11 -8.35206E-12 +-1.23877E-08 -1.82364E-09 -1.57468E-10 1.27216E-10 1.65257E-10 1.84326E-10 2.01137E-10 2.17432E-10 2.33592E-10 2.49741E-10 2.65929E-10 2.82182E-10 2.98513E-10 3.14928E-10 3.31431E-10 3.48025E-10 3.64709E-10 3.81485E-10 3.98352E-10 4.15311E-10 4.3236E-10 4.49502E-10 4.66735E-10 4.84062E-10 5.01484E-10 5.19004E-10 5.36626E-10 5.54353E-10 5.7219E-10 5.90144E-10 6.08221E-10 6.26429E-10 6.44777E-10 6.63276E-10 6.81937E-10 7.00773E-10 7.19801E-10 7.39039E-10 7.58508E-10 +-5.49015E-08 -8.0744E-09 4.25347E-11 1.43188E-09 1.61744E-09 1.71047E-09 1.79249E-09 1.87201E-09 1.95086E-09 2.02966E-09 2.10866E-09 2.18796E-09 2.26765E-09 2.34775E-09 2.42828E-09 2.50924E-09 2.59065E-09 2.6725E-09 2.7548E-09 2.83754E-09 2.92072E-09 3.00435E-09 3.08843E-09 3.17296E-09 3.25795E-09 3.34342E-09 3.42938E-09 3.51585E-09 3.60285E-09 3.69042E-09 3.77857E-09 3.86736E-09 3.95682E-09 4.04699E-09 4.13793E-09 4.2297E-09 4.32237E-09 4.41602E-09 4.51073E-09 +-2.18203E-07 -3.67985E-08 6.55001E-10 7.24589E-09 8.12663E-09 8.56777E-09 8.95658E-09 9.33342E-09 9.7071E-09 1.00805E-08 1.04548E-08 1.08306E-08 1.12081E-08 1.15876E-08 1.19691E-08 1.23526E-08 1.27383E-08 1.3126E-08 1.35158E-08 1.39077E-08 1.43017E-08 1.46978E-08 1.5096E-08 1.54963E-08 1.58988E-08 1.63035E-08 1.67106E-08 1.712E-08 1.75319E-08 1.79464E-08 1.83637E-08 1.8784E-08 1.92073E-08 1.9634E-08 2.00642E-08 2.04982E-08 2.09363E-08 2.13788E-08 2.18261E-08 +-7.54257E-07 -1.50619E-07 1.69585E-09 3.12867E-08 3.52473E-08 3.72254E-08 3.89672E-08 4.06547E-08 4.23277E-08 4.39992E-08 4.56746E-08 4.73564E-08 4.90459E-08 5.0744E-08 5.2451E-08 5.41671E-08 5.58924E-08 5.76269E-08 5.93707E-08 6.11237E-08 6.28858E-08 6.46572E-08 6.64379E-08 6.8228E-08 7.00277E-08 7.18372E-08 7.36569E-08 7.54871E-08 7.73283E-08 7.9181E-08 8.10459E-08 8.29237E-08 8.48151E-08 8.6721E-08 8.86424E-08 9.05803E-08 9.25359E-08 9.45105E-08 9.65056E-08 +-2.30017E-06 -5.33429E-07 3.09411E-09 1.23918E-07 1.40166E-07 1.48211E-07 1.55277E-07 1.62118E-07 1.68897E-07 1.75669E-07 1.82455E-07 1.89266E-07 1.96107E-07 2.02982E-07 2.09892E-07 2.16838E-07 2.2382E-07 2.30839E-07 2.37894E-07 2.44986E-07 2.52114E-07 2.59279E-07 2.6648E-07 2.73719E-07 2.80995E-07 2.88311E-07 2.95666E-07 3.03064E-07 3.10504E-07 3.17991E-07 3.25526E-07 3.33111E-07 3.4075E-07 3.48447E-07 3.56205E-07 3.64027E-07 3.71919E-07 3.79885E-07 3.87929E-07 +-6.39281E-06 -1.64748E-06 4.85545E-09 4.38265E-07 4.97495E-07 5.26039E-07 5.50935E-07 5.74987E-07 5.988E-07 6.22573E-07 6.46387E-07 6.70281E-07 6.94275E-07 7.18381E-07 7.42605E-07 7.66949E-07 7.91416E-07 8.16006E-07 8.40719E-07 8.65555E-07 8.90514E-07 9.15596E-07 9.40802E-07 9.66134E-07 9.91595E-07 1.01719E-06 1.04292E-06 1.06879E-06 1.0948E-06 1.12098E-06 1.14731E-06 1.17382E-06 1.20052E-06 1.22741E-06 1.2545E-06 1.28182E-06 1.30937E-06 1.33717E-06 1.36524E-06 +-1.62305E-05 -4.55463E-06 7.05186E-09 1.36705E-06 1.5622E-06 1.64979E-06 1.72469E-06 1.79665E-06 1.86774E-06 1.93862E-06 2.00955E-06 2.08068E-06 2.15208E-06 2.22377E-06 2.29579E-06 2.36814E-06 2.44082E-06 2.51385E-06 2.58723E-06 2.66095E-06 2.73501E-06 2.80941E-06 2.88417E-06 2.95928E-06 3.03475E-06 3.1106E-06 3.18683E-06 3.26346E-06 3.34051E-06 3.41801E-06 3.49598E-06 3.57444E-06 3.65343E-06 3.73299E-06 3.81314E-06 3.89392E-06 3.97538E-06 4.05757E-06 4.14051E-06 +-3.60918E-05 -1.12251E-05 9.85508E-09 3.82744E-06 4.44998E-06 4.69022E-06 4.88569E-06 5.07091E-06 5.25289E-06 5.43381E-06 5.61456E-06 5.79557E-06 5.97707E-06 6.15918E-06 6.34197E-06 6.5255E-06 6.70977E-06 6.89482E-06 7.08065E-06 7.26725E-06 7.45464E-06 7.64283E-06 7.83182E-06 8.02163E-06 8.21228E-06 8.40381E-06 8.59624E-06 8.78963E-06 8.98402E-06 9.17948E-06 9.37606E-06 9.57386E-06 9.77293E-06 9.97338E-06 1.01753E-05 1.03788E-05 1.05839E-05 1.07908E-05 1.09996E-05 +-6.75055E-05 -2.3587E-05 1.36069E-08 9.62274E-06 1.16678E-05 1.22984E-05 1.27549E-05 1.31735E-05 1.35798E-05 1.39812E-05 1.43809E-05 1.47801E-05 1.51795E-05 1.55798E-05 1.5981E-05 1.63833E-05 1.67869E-05 1.71918E-05 1.75981E-05 1.80058E-05 1.84149E-05 1.88254E-05 1.92374E-05 1.96509E-05 2.00661E-05 2.04829E-05 2.09014E-05 2.13218E-05 2.17442E-05 2.21688E-05 2.25956E-05 2.30249E-05 2.34568E-05 2.38916E-05 2.43295E-05 2.47707E-05 2.52153E-05 2.56638E-05 2.61163E-05 +-0.000106815 -4.13571E-05 1.88637E-08 2.08164E-05 2.72874E-05 2.90245E-05 3.0019E-05 3.08658E-05 3.16661E-05 3.24473E-05 3.32194E-05 3.39871E-05 3.47528E-05 3.55179E-05 3.62833E-05 3.70494E-05 3.78167E-05 3.85855E-05 3.93558E-05 4.01278E-05 4.09016E-05 4.16774E-05 4.24552E-05 4.32351E-05 4.40174E-05 4.48022E-05 4.55896E-05 4.638E-05 4.71736E-05 4.79707E-05 4.87717E-05 4.95769E-05 5.03867E-05 5.12015E-05 5.20218E-05 5.2848E-05 5.36807E-05 5.45202E-05 5.53672E-05 +-0.000149009 -6.22471E-05 2.63503E-08 3.758E-05 5.42165E-05 5.93336E-05 6.15009E-05 6.3083E-05 6.44997E-05 6.58507E-05 6.71695E-05 6.84707E-05 6.97614E-05 7.1046E-05 7.23268E-05 7.36056E-05 7.48835E-05 7.61612E-05 7.74392E-05 7.87181E-05 7.99981E-05 8.12796E-05 8.25627E-05 8.38479E-05 8.51353E-05 8.64255E-05 8.77189E-05 8.90158E-05 9.03168E-05 9.16225E-05 9.29335E-05 9.42506E-05 9.55744E-05 9.69058E-05 9.82455E-05 9.95943E-05 0.000100953 0.000102323 0.000103705 +-0.000190903 -8.40049E-05 3.68946E-08 5.78492E-05 9.04309E-05 0.000103917 0.000108948 0.000111837 0.000114171 0.000116305 0.000118347 0.000120337 0.000122295 0.000124233 0.000126156 0.00012807 0.000129977 0.000131879 0.000133777 0.000135673 0.000137567 0.00013946 0.000141353 0.000143246 0.00014514 0.000147036 0.000148933 0.000150834 0.00015274 0.00015465 0.000156566 0.000158489 0.000160421 0.000162362 0.000164315 0.00016628 0.000168259 0.000170252 0.000172263 +-0.00023099 -0.00010528 5.14596E-08 7.92999E-05 0.000130967 0.000158528 0.000170175 0.000175644 0.000179392 0.000182583 0.000185537 0.000188365 0.000191117 0.000193819 0.000196486 0.000199128 0.000201751 0.000204359 0.000206955 0.000209542 0.000212122 0.000214695 0.000217264 0.000219829 0.000222392 0.000224953 0.000227514 0.000230076 0.000232641 0.000235209 0.000237784 0.000240365 0.000242955 0.000245557 0.000248171 0.0002508 0.000253446 0.000256112 0.000258799 +-0.00026866 -0.000125445 7.12443E-08 0.000100456 0.000172065 0.000217077 0.000240367 0.000251098 0.000257229 0.0002619 0.000266009 0.000269841 0.000273515 0.000277085 0.000280584 0.00028403 0.000287437 0.000290813 0.000294163 0.000297493 0.000300806 0.000304105 0.000307392 0.000310668 0.000313936 0.000317198 0.000320455 0.000323709 0.000326962 0.000330216 0.000333474 0.000336737 0.000340009 0.000343291 0.000346587 0.0003499 0.000353232 0.000356587 0.000359966 +-0.000303729 -0.000144265 9.77926E-08 0.000120608 0.000211813 0.000275309 0.000313957 0.000333982 0.000344401 0.000351303 0.000356926 0.000361981 0.000366725 0.000371277 0.000375697 0.000380023 0.000384276 0.000388473 0.000392625 0.00039674 0.000400824 0.000404881 0.000408915 0.00041293 0.000416929 0.000420913 0.000424885 0.000428849 0.000432806 0.000436759 0.000440712 0.000444668 0.000448629 0.0004526 0.000456584 0.000460584 0.000464605 0.00046865 0.000472723 +-0.000336199 -0.00016169 1.33099E-07 0.000139483 0.000249399 0.000331188 0.00038674 0.000419799 0.000437558 0.00044806 0.000455792 0.000462378 0.000468389 0.00047406 0.000479506 0.000484792 0.000489959 0.000495033 0.000500033 0.000504973 0.000509862 0.000514707 0.000519515 0.000524292 0.000529039 0.000533763 0.000538466 0.000543151 0.000547822 0.000552483 0.000557138 0.00056179 0.000566444 0.000571104 0.000575774 0.00058046 0.000585165 0.000589895 0.000594655 +-0.000366161 -0.000177748 1.79728E-07 0.000157012 0.000284542 0.000383901 0.00045651 0.000504711 0.000533213 0.00054956 0.000560407 0.000569002 0.00057655 0.000583517 0.000590116 0.00059646 0.000602617 0.000608631 0.000614531 0.000620338 0.000626067 0.000631732 0.00063734 0.0006429 0.000648416 0.000653895 0.000659341 0.000664759 0.000670154 0.000675529 0.00068089 0.000686241 0.000691588 0.000696936 0.00070229 0.000707656 0.00071304 0.000718447 0.000723885 +-0.00039374 -0.000192501 2.40957E-07 0.000173222 0.0003172 0.000433191 0.000522359 0.000586332 0.00062806 0.000653103 0.000668701 0.000680065 0.000689541 0.000698041 0.000705955 0.000713477 0.000720716 0.000727742 0.0007346 0.000741324 0.000747935 0.000754452 0.000760889 0.000767256 0.000773561 0.000779813 0.000786017 0.000792179 0.000798306 0.000804402 0.000810474 0.000816527 0.000822568 0.000828602 0.000834637 0.000840679 0.000846734 0.000852811 0.000858916 +-0.000419076 -0.000206024 3.2096E-07 0.000188175 0.000347443 0.000479051 0.000584003 0.000663553 0.000719652 0.000755957 0.000778561 0.000793891 0.000805883 0.000816244 0.000825683 0.00083453 0.000842963 0.000851088 0.000858974 0.00086667 0.000874209 0.000881618 0.000888916 0.000896117 0.000903234 0.000910278 0.000917256 0.000924176 0.000931045 0.000937871 0.00094466 0.000951419 0.000958155 0.000964876 0.000971589 0.000978302 0.000985023 0.000991761 0.000998524 +-0.000442307 -0.000218392 4.25034E-07 0.000201954 0.000375391 0.000521589 0.000641445 0.00073599 0.000806639 0.000855783 0.000887776 0.000908794 0.000924191 0.000936878 0.00094812 0.00095848 0.000968243 0.000977571 0.000986568 0.000995302 0.00100382 0.00101217 0.00102036 0.00102843 0.00103639 0.00104424 0.00105201 0.00105971 0.00106733 0.0010749 0.00108241 0.00108988 0.00109732 0.00110472 0.00111212 0.0011195 0.00112688 0.00113427 0.00114168 +-0.000463569 -0.000229678 5.59878E-07 0.000214645 0.000401185 0.000560971 0.000694816 0.000803613 0.000888469 0.000951042 0.000994253 0.001023 0.0010431 0.00105878 0.0010722 0.00108432 0.00109558 0.00110624 0.00111644 0.00112629 0.00113586 0.00114519 0.00115433 0.0011633 0.00117212 0.00118082 0.0011894 0.00119788 0.00120628 0.0012146 0.00122284 0.00123103 0.00123917 0.00124727 0.00125534 0.00126339 0.00127143 0.00127947 0.00128753 +-0.000482987 -0.000239948 7.33952E-07 0.000226334 0.000424973 0.000597384 0.000744315 0.000866558 0.000965034 0.00104098 0.00109639 0.00113473 0.00116118 0.00118083 0.00119696 0.00121113 0.0012241 0.00123624 0.00124777 0.00125882 0.00126951 0.00127989 0.00129002 0.00129993 0.00130966 0.00131922 0.00132864 0.00133794 0.00134712 0.00135621 0.0013652 0.00137412 0.00138297 0.00139176 0.00140051 0.00140923 0.00141793 0.00142662 0.00143531 +-0.000500677 -0.000249262 9.57911E-07 0.00023711 0.000446904 0.000631026 0.000790164 0.000925037 0.00103644 0.00112536 0.00119323 0.00124244 0.00127696 0.00130187 0.00132143 0.00133809 0.00135302 0.00136683 0.00137981 0.00139219 0.00140408 0.00141558 0.00142676 0.00143766 0.00144833 0.00145879 0.00146908 0.00147921 0.0014892 0.00149907 0.00150882 0.00151848 0.00152805 0.00153755 0.00154699 0.00155638 0.00156573 0.00157506 0.00158439 +-0.000516743 -0.000257673 1.24515E-06 0.000247056 0.000467126 0.000662094 0.000832601 0.000979304 0.00110291 0.00120424 0.00128439 0.00134505 0.00138906 0.00142072 0.0014447 0.00146439 0.00148163 0.00149732 0.00151194 0.00152575 0.00153895 0.00155165 0.00156393 0.00157588 0.00158754 0.00159895 0.00161013 0.00162113 0.00163195 0.00164262 0.00165315 0.00166356 0.00167386 0.00168407 0.00169421 0.00170427 0.00171429 0.00172426 0.00173422 +-0.000531274 -0.000265224 1.61246E-06 0.000256258 0.000485783 0.000690786 0.000871864 0.00102962 0.0011647 0.00127781 0.00136983 0.00144201 0.00149638 0.00153618 0.0015658 0.00158928 0.00160926 0.00162712 0.00164355 0.00165895 0.00167357 0.00168755 0.00170103 0.00171409 0.00172679 0.00173918 0.0017513 0.00176319 0.00177487 0.00178636 0.00179769 0.00180887 0.00181992 0.00183085 0.00184169 0.00185244 0.00186311 0.00187374 0.00188433 +-0.000544346 -0.000271948 2.08089E-06 0.000264799 0.000503016 0.000717294 0.000908189 0.00107626 0.0012221 0.00134633 0.00144969 0.00153317 0.00159822 0.00164722 0.00168374 0.00171197 0.00173527 0.00175564 0.00177413 0.00179129 0.00180745 0.00182284 0.00183759 0.00185182 0.00186562 0.00187904 0.00189214 0.00190496 0.00191753 0.00192987 0.00194202 0.00195399 0.0019658 0.00197747 0.00198902 0.00200046 0.00201181 0.00202309 0.00203431 +-0.00055602 -0.000277867 2.67673E-06 0.000272764 0.000518963 0.000741805 0.000941808 0.00111949 0.0012754 0.0014101 0.00152424 0.0016186 0.0016943 0.00175306 0.00179761 0.00183167 0.00185903 0.00188237 0.00190319 0.00192231 0.00194018 0.00195707 0.0019732 0.00198869 0.00200365 0.00201816 0.00203228 0.00204607 0.00205956 0.00207279 0.00208578 0.00209856 0.00211115 0.00212357 0.00213585 0.00214799 0.00216002 0.00217196 0.00218383 +-0.000566339 -0.000282992 3.43281E-06 0.000280238 0.000533761 0.000764503 0.000972947 0.00115958 0.00132491 0.00146944 0.00159375 0.00169852 0.00178461 0.00185331 0.00190664 0.00194761 0.00197991 0.00200678 0.00203029 0.00205161 0.00207135 0.0020899 0.0021075 0.00212434 0.00214054 0.0021562 0.0021714 0.0021862 0.00220065 0.00221479 0.00222865 0.00224227 0.00225566 0.00226885 0.00228187 0.00229473 0.00230745 0.00232006 0.00233257 +-0.000575328 -0.00028732 4.39001E-06 0.000287311 0.000547548 0.000785569 0.00100183 0.00119679 0.00137091 0.00152466 0.00165857 0.00177321 0.00186931 0.00194785 0.00201033 0.00205907 0.00209728 0.00212837 0.00215502 0.00217881 0.00220063 0.00222098 0.00224019 0.00225847 0.00227599 0.00229288 0.00230921 0.00232507 0.00234052 0.00235561 0.00237038 0.00238486 0.00239907 0.00241306 0.00242684 0.00244043 0.00245386 0.00246714 0.00248031 +-0.000582991 -0.000290833 5.59918E-06 0.000294081 0.000560462 0.000805185 0.00102868 0.00123137 0.00141369 0.00157608 0.00171901 0.001843 0.00194865 0.00203677 0.00210849 0.00216555 0.00221052 0.00224665 0.00227697 0.00230358 0.00232771 0.00235004 0.00237099 0.00239083 0.00240977 0.00242794 0.00244548 0.00246246 0.00247896 0.00249504 0.00251074 0.00252611 0.00254118 0.00255598 0.00257053 0.00258487 0.00259902 0.002613 0.00262684 +-0.000589308 -0.000293492 7.12347E-06 0.000300652 0.000572648 0.000823534 0.00105371 0.00126358 0.00145354 0.00162401 0.00177542 0.00190823 0.00202297 0.0021203 0.00220112 0.00226674 0.00231915 0.00236113 0.00239576 0.00242561 0.00245233 0.00247683 0.00249967 0.00252119 0.00254164 0.0025612 0.00258 0.00259816 0.00261576 0.00263287 0.00264955 0.00266584 0.00268179 0.00269743 0.00271279 0.0027279 0.00274279 0.00275747 0.00277199 +-0.000594234 -0.00029524 9.04115E-06 0.00030714 0.00058426 0.000840805 0.00107715 0.00129368 0.00149076 0.00166878 0.00182813 0.00196925 0.00209259 0.00219873 0.00228839 0.00236258 0.00242282 0.00247135 0.00251101 0.00254461 0.00257423 0.00260113 0.00262602 0.00264936 0.00267143 0.00269246 0.00271262 0.00273202 0.00275078 0.00276897 0.00278667 0.00280392 0.00282078 0.00283729 0.00285348 0.00286938 0.00288502 0.00290043 0.00291564 +-0.000597691 -0.000295993 1.14491E-05 0.000313675 0.000595463 0.000857197 0.00109923 0.00132192 0.00152562 0.00171069 0.00187749 0.00202642 0.0021579 0.00227242 0.00237057 0.00245318 0.00252142 0.00257701 0.00262238 0.0026603 0.00269321 0.00272276 0.00274989 0.00277519 0.00279901 0.00282161 0.0028432 0.00286392 0.0028839 0.00290323 0.00292199 0.00294024 0.00295805 0.00297545 0.00299249 0.00300921 0.00302562 0.00304178 0.0030577 +*table -1.2 +-1.30945E-10 -1.28E-10 -1.27559E-10 -1.27494E-10 -1.27485E-10 -1.27481E-10 -1.27477E-10 -1.27473E-10 -1.27469E-10 -1.27466E-10 -1.27462E-10 -1.27458E-10 -1.27455E-10 -1.27451E-10 -1.27447E-10 -1.27443E-10 -1.2744E-10 -1.27436E-10 -1.27432E-10 -1.27428E-10 -1.27424E-10 -1.2742E-10 -1.27416E-10 -1.27412E-10 -1.27408E-10 -1.27404E-10 -1.274E-10 -1.27396E-10 -1.27392E-10 -1.27388E-10 -1.27383E-10 -1.27379E-10 -1.27374E-10 -1.2737E-10 -1.27365E-10 -1.2736E-10 -1.27355E-10 -1.27349E-10 -1.27344E-10 +-1.42755E-10 -1.28343E-10 -1.26168E-10 -1.25846E-10 -1.25803E-10 -1.25782E-10 -1.25763E-10 -1.25745E-10 -1.25726E-10 -1.25708E-10 -1.2569E-10 -1.25672E-10 -1.25653E-10 -1.25635E-10 -1.25616E-10 -1.25597E-10 -1.25579E-10 -1.2556E-10 -1.25541E-10 -1.25522E-10 -1.25502E-10 -1.25483E-10 -1.25464E-10 -1.25444E-10 -1.25424E-10 -1.25405E-10 -1.25385E-10 -1.25365E-10 -1.25345E-10 -1.25324E-10 -1.25304E-10 -1.25283E-10 -1.25262E-10 -1.25241E-10 -1.2522E-10 -1.25198E-10 -1.25176E-10 -1.25154E-10 -1.25131E-10 +-2.06692E-10 -1.36484E-10 -1.25795E-10 -1.24207E-10 -1.23994E-10 -1.23887E-10 -1.23793E-10 -1.23702E-10 -1.23612E-10 -1.23522E-10 -1.23432E-10 -1.23341E-10 -1.2325E-10 -1.23159E-10 -1.23067E-10 -1.22974E-10 -1.22881E-10 -1.22788E-10 -1.22694E-10 -1.22599E-10 -1.22504E-10 -1.22409E-10 -1.22313E-10 -1.22216E-10 -1.22119E-10 -1.22021E-10 -1.21923E-10 -1.21824E-10 -1.21724E-10 -1.21624E-10 -1.21523E-10 -1.21421E-10 -1.21319E-10 -1.21215E-10 -1.2111E-10 -1.21004E-10 -1.20897E-10 -1.20788E-10 -1.20678E-10 +-5.16536E-10 -1.77689E-10 -1.25399E-10 -1.17549E-10 -1.16498E-10 -1.15971E-10 -1.15508E-10 -1.15059E-10 -1.14613E-10 -1.14169E-10 -1.13723E-10 -1.13275E-10 -1.12825E-10 -1.12373E-10 -1.11919E-10 -1.11462E-10 -1.11002E-10 -1.1054E-10 -1.10076E-10 -1.09609E-10 -1.09139E-10 -1.08667E-10 -1.08192E-10 -1.07715E-10 -1.07235E-10 -1.06752E-10 -1.06267E-10 -1.05778E-10 -1.05287E-10 -1.04792E-10 -1.04293E-10 -1.0379E-10 -1.03284E-10 -1.02773E-10 -1.02256E-10 -1.01735E-10 -1.01207E-10 -1.00672E-10 -1.00129E-10 +-1.98373E-09 -3.7731E-10 -1.23692E-10 -8.49996E-11 -7.98171E-11 -7.72223E-11 -7.49373E-11 -7.27236E-11 -7.05291E-11 -6.83364E-11 -6.61386E-11 -6.39321E-11 -6.17152E-11 -5.94869E-11 -5.72467E-11 -5.49942E-11 -5.27294E-11 -5.04522E-11 -4.81627E-11 -4.58607E-11 -4.35462E-11 -4.12194E-11 -3.88799E-11 -3.65277E-11 -3.41624E-11 -3.17837E-11 -2.93911E-11 -2.69839E-11 -2.45615E-11 -2.21228E-11 -1.96669E-11 -1.71926E-11 -1.46984E-11 -1.21826E-11 -9.64327E-12 -7.07813E-12 -4.48445E-12 -1.85896E-12 8.02257E-13 +-8.72527E-09 -1.32822E-09 -1.17463E-10 7.2273E-11 9.76829E-11 1.10406E-10 1.2161E-10 1.32464E-10 1.43225E-10 1.53976E-10 1.64753E-10 1.75573E-10 1.86443E-10 1.97369E-10 2.08353E-10 2.19397E-10 2.30502E-10 2.41667E-10 2.52894E-10 2.6418E-10 2.75528E-10 2.86936E-10 2.98406E-10 3.09939E-10 3.21535E-10 3.33196E-10 3.44925E-10 3.56725E-10 3.68598E-10 3.8055E-10 3.92585E-10 4.04708E-10 4.16926E-10 4.29247E-10 4.41678E-10 4.54231E-10 4.66915E-10 4.79746E-10 4.92739E-10 +-3.8252E-08 -5.73483E-09 -8.38993E-11 8.36394E-10 9.59617E-10 1.02131E-09 1.07565E-09 1.12829E-09 1.18047E-09 1.23261E-09 1.28487E-09 1.33734E-09 1.39005E-09 1.44304E-09 1.4963E-09 1.54986E-09 1.60371E-09 1.65785E-09 1.71229E-09 1.76701E-09 1.82204E-09 1.87735E-09 1.93297E-09 1.98888E-09 2.0451E-09 2.10164E-09 2.1585E-09 2.2157E-09 2.27326E-09 2.33119E-09 2.38951E-09 2.44826E-09 2.50746E-09 2.56714E-09 2.62734E-09 2.68811E-09 2.74948E-09 2.81153E-09 2.87432E-09 +-1.55399E-07 -2.54391E-08 1.01015E-10 4.4657E-09 5.05004E-09 5.34253E-09 5.60009E-09 5.8496E-09 6.09696E-09 6.3441E-09 6.59181E-09 6.84049E-09 7.09032E-09 7.34143E-09 7.59388E-09 7.84769E-09 8.10287E-09 8.35944E-09 8.6174E-09 8.87674E-09 9.13746E-09 9.39956E-09 9.66307E-09 9.92799E-09 1.01944E-08 1.04622E-08 1.07316E-08 1.10025E-08 1.12752E-08 1.15496E-08 1.18258E-08 1.2104E-08 1.23843E-08 1.26668E-08 1.29517E-08 1.32392E-08 1.35294E-08 1.38227E-08 1.41194E-08 +-5.5758E-07 -1.05832E-07 6.66851E-10 2.04803E-08 2.31346E-08 2.4461E-08 2.56284E-08 2.67592E-08 2.78801E-08 2.89998E-08 3.01221E-08 3.12487E-08 3.23805E-08 3.3518E-08 3.46615E-08 3.58111E-08 3.69669E-08 3.81288E-08 3.9297E-08 4.04714E-08 4.16519E-08 4.28387E-08 4.40317E-08 4.52311E-08 4.64369E-08 4.76494E-08 4.88687E-08 5.00951E-08 5.1329E-08 5.25706E-08 5.38205E-08 5.50791E-08 5.6347E-08 5.76247E-08 5.8913E-08 6.02126E-08 6.15243E-08 6.28492E-08 6.41883E-08 +-1.75832E-06 -3.89224E-07 1.63022E-09 8.48619E-08 9.60446E-08 1.01601E-07 1.06483E-07 1.11209E-07 1.15893E-07 1.20571E-07 1.25259E-07 1.29965E-07 1.34692E-07 1.39441E-07 1.44216E-07 1.49015E-07 1.5384E-07 1.5869E-07 1.63566E-07 1.68466E-07 1.73393E-07 1.78344E-07 1.83322E-07 1.88325E-07 1.93355E-07 1.98412E-07 2.03496E-07 2.0861E-07 2.13755E-07 2.18931E-07 2.24141E-07 2.29387E-07 2.3467E-07 2.39993E-07 2.45359E-07 2.50771E-07 2.56232E-07 2.61746E-07 2.67315E-07 +-5.01096E-06 -1.24842E-06 2.93106E-09 3.14082E-07 3.56343E-07 3.76946E-07 3.94962E-07 4.12377E-07 4.29623E-07 4.46841E-07 4.64091E-07 4.814E-07 4.98783E-07 5.16248E-07 5.33799E-07 5.5144E-07 5.6917E-07 5.86991E-07 6.04902E-07 6.22903E-07 6.40995E-07 6.59177E-07 6.77451E-07 6.95817E-07 7.14277E-07 7.32834E-07 7.51491E-07 7.70252E-07 7.89122E-07 8.08106E-07 8.27209E-07 8.46441E-07 8.65807E-07 8.85316E-07 9.04978E-07 9.24802E-07 9.448E-07 9.64984E-07 9.85365E-07 +-1.30998E-05 -3.56296E-06 4.59016E-09 1.02157E-06 1.16455E-06 1.23067E-06 1.28765E-06 1.34251E-06 1.39675E-06 1.45084E-06 1.505E-06 1.55932E-06 1.61384E-06 1.6686E-06 1.72362E-06 1.7789E-06 1.83444E-06 1.89025E-06 1.94633E-06 2.00268E-06 2.0593E-06 2.11618E-06 2.17334E-06 2.23078E-06 2.2885E-06 2.34651E-06 2.40481E-06 2.46344E-06 2.52238E-06 2.58168E-06 2.64133E-06 2.70138E-06 2.76183E-06 2.82272E-06 2.88407E-06 2.94591E-06 3.00828E-06 3.07121E-06 3.13473E-06 +-3.04705E-05 -9.12589E-06 6.71056E-09 2.95797E-06 3.41444E-06 3.60136E-06 3.75657E-06 3.90444E-06 4.05E-06 4.19488E-06 4.3397E-06 4.48481E-06 4.63035E-06 4.77643E-06 4.92309E-06 5.07037E-06 5.21829E-06 5.36686E-06 5.51608E-06 5.66595E-06 5.81648E-06 5.96767E-06 6.11953E-06 6.27207E-06 6.42531E-06 6.57927E-06 6.73399E-06 6.88948E-06 7.04581E-06 7.20301E-06 7.36113E-06 7.52024E-06 7.6804E-06 7.84168E-06 8.00415E-06 8.16789E-06 8.33298E-06 8.49953E-06 8.66761E-06 +-6.01894E-05 -2.02357E-05 9.51802E-09 7.71764E-06 9.19875E-06 9.69138E-06 1.00654E-05 1.0413E-05 1.07518E-05 1.10874E-05 1.14219E-05 1.17564E-05 1.20913E-05 1.2427E-05 1.27638E-05 1.31016E-05 1.34406E-05 1.37808E-05 1.41222E-05 1.44649E-05 1.48089E-05 1.51542E-05 1.55008E-05 1.58488E-05 1.61983E-05 1.65491E-05 1.69016E-05 1.72556E-05 1.76115E-05 1.79691E-05 1.83288E-05 1.86905E-05 1.90546E-05 1.94211E-05 1.97902E-05 2.01622E-05 2.05371E-05 2.09152E-05 2.12968E-05 +-9.99205E-05 -3.74945E-05 1.3414E-08 1.75988E-05 2.24132E-05 2.37341E-05 2.45617E-05 2.52879E-05 2.59812E-05 2.6661E-05 2.73347E-05 2.80056E-05 2.86755E-05 2.93455E-05 3.00162E-05 3.06881E-05 3.13613E-05 3.20361E-05 3.27127E-05 3.3391E-05 3.40711E-05 3.47533E-05 3.54374E-05 3.61237E-05 3.68122E-05 3.75031E-05 3.81966E-05 3.88928E-05 3.95921E-05 4.02946E-05 4.10006E-05 4.17105E-05 4.24246E-05 4.31432E-05 4.38667E-05 4.45956E-05 4.53302E-05 4.60709E-05 4.68183E-05 +-0.000144207 -5.89199E-05 1.89705E-08 3.36449E-05 4.70561E-05 5.08923E-05 5.26775E-05 5.40618E-05 5.53274E-05 5.65447E-05 5.77381E-05 5.89187E-05 6.0092E-05 6.12613E-05 6.24284E-05 6.35947E-05 6.4761E-05 6.59279E-05 6.70959E-05 6.82653E-05 6.94362E-05 7.0609E-05 7.17839E-05 7.29611E-05 7.4141E-05 7.53237E-05 7.65097E-05 7.76994E-05 7.88932E-05 8.00917E-05 8.12954E-05 8.25049E-05 8.37209E-05 8.4944E-05 8.6175E-05 8.74146E-05 8.86636E-05 8.99228E-05 9.11929E-05 +-0.000188945 -8.19151E-05 2.68731E-08 5.42464E-05 8.28156E-05 9.35255E-05 9.75709E-05 0.000100098 0.000102222 0.000104194 0.000106094 0.000107953 0.000109787 0.000111605 0.000113413 0.000115214 0.000117009 0.000118801 0.000120592 0.000122381 0.000124169 0.000125958 0.000127747 0.000129537 0.000131329 0.000133123 0.00013492 0.000136721 0.000138526 0.000140336 0.000142153 0.000143977 0.00014581 0.000147652 0.000149505 0.00015137 0.000153249 0.000155142 0.000157052 +-0.000232057 -0.000104722 3.79151E-08 7.68034E-05 0.000124841 0.000148652 0.000158151 0.000162854 0.000166275 0.000169265 0.000172065 0.00017476 0.000177393 0.000179984 0.000182546 0.000185087 0.000187612 0.000190126 0.00019263 0.000195128 0.00019762 0.000200107 0.000202591 0.000205073 0.000207554 0.000210034 0.000212515 0.000214999 0.000217485 0.000219977 0.000222475 0.00022498 0.000227495 0.000230021 0.000232561 0.000235116 0.000237688 0.000240279 0.000242891 +-0.000272668 -0.000126464 5.30675E-08 9.94177E-05 0.000168461 0.000209897 0.000229992 0.000239144 0.000244682 0.000249075 0.000253008 0.000256708 0.000260271 0.000263744 0.000267155 0.000270521 0.000273852 0.000277156 0.000280438 0.000283704 0.000286954 0.000290193 0.000293422 0.000296642 0.000299856 0.000303066 0.000306271 0.000309476 0.00031268 0.000315887 0.000319099 0.000322317 0.000325545 0.000328785 0.000332038 0.000335309 0.0003386 0.000341914 0.000345254 +-0.00031048 -0.000146792 7.35723E-08 0.000121106 0.000211071 0.000271882 0.000307177 0.000324673 0.000333956 0.000340406 0.000345807 0.000350721 0.000355364 0.000359834 0.000364187 0.000368454 0.000372656 0.000376807 0.000380918 0.000384996 0.000389046 0.000393073 0.000397079 0.000401069 0.000405043 0.000409006 0.000412959 0.000416905 0.000420846 0.000424785 0.000428725 0.000432669 0.00043662 0.000440582 0.000444559 0.000448553 0.000452568 0.000456609 0.000460679 +-0.00034546 -0.000165609 1.01035E-07 0.00014146 0.000251511 0.000331782 0.00038459 0.000414685 0.000430548 0.000440247 0.000447647 0.000454067 0.000459978 0.000465582 0.000470979 0.00047623 0.000481371 0.000486426 0.000491414 0.000496345 0.000501229 0.000506074 0.000510885 0.000515666 0.000520422 0.000525155 0.00052987 0.00053457 0.000539258 0.000543937 0.000548612 0.000553286 0.000557964 0.00056265 0.000567348 0.000572062 0.000576798 0.000581561 0.000586354 +-0.000377693 -0.000182931 1.37527E-07 0.000160358 0.000289347 0.000388417 0.000459253 0.000504768 0.000530808 0.000545794 0.000556084 0.000564448 0.000571886 0.000578796 0.000585365 0.000591696 0.000597852 0.000603873 0.000609787 0.000615615 0.000621369 0.000627063 0.000632703 0.000638298 0.000643853 0.000649373 0.000654863 0.000660327 0.000665769 0.000671195 0.000676608 0.000682014 0.000687418 0.000692825 0.00069824 0.000703669 0.000709118 0.000714593 0.000720099 +-0.000407313 -0.000198822 1.85703E-07 0.000177806 0.000324483 0.000441382 0.000529858 0.000591878 0.000631119 0.000654238 0.000668895 0.00067989 0.000689221 0.000697666 0.000705565 0.000713095 0.000720357 0.000727416 0.000734316 0.000741087 0.000747751 0.000754326 0.000760825 0.000767256 0.00077363 0.000779952 0.00078623 0.000792469 0.000798674 0.000804851 0.000811006 0.000817145 0.000823274 0.000829399 0.000835527 0.000841664 0.000847818 0.000853995 0.000860203 +-0.000434474 -0.000213365 2.48953E-07 0.000193869 0.00035697 0.000490614 0.000595958 0.000674476 0.000728554 0.000762694 0.000783881 0.000798589 0.000810355 0.000820647 0.000830082 0.000838957 0.000847437 0.00085562 0.000863574 0.000871345 0.000878965 0.000886459 0.000893847 0.000901142 0.000908356 0.000915499 0.000922579 0.000929604 0.000936581 0.000943517 0.000950419 0.000957293 0.000964147 0.000970989 0.000977825 0.000984665 0.000991515 0.000998384 0.00100528 +-0.000459334 -0.000226644 3.31592E-07 0.00020863 0.000386933 0.000536212 0.000657494 0.000751975 0.000821339 0.000868521 0.000898753 0.000918787 0.000933802 0.000946378 0.000957618 0.000968023 0.000977855 0.000987266 0.000996357 0.00100519 0.00101382 0.00102228 0.00103059 0.00103878 0.00104686 0.00105485 0.00106275 0.00107057 0.00107833 0.00108604 0.00109369 0.0011013 0.00110889 0.00111644 0.00112399 0.00113152 0.00113906 0.00114662 0.00115419 +-0.000482046 -0.000238743 4.39091E-07 0.000222185 0.00041452 0.000578344 0.000714584 0.000824264 0.000908677 0.000969819 0.00101125 0.00103867 0.00105813 0.00107361 0.00108702 0.00109919 0.00111054 0.0011213 0.00113163 0.00114161 0.00115131 0.00116078 0.00117006 0.00117918 0.00118815 0.00119701 0.00120575 0.00121439 0.00122295 0.00123143 0.00123984 0.0012482 0.00125651 0.00126479 0.00127304 0.00128127 0.0012895 0.00129773 0.00130597 +-0.000502754 -0.000249741 5.78372E-07 0.000234628 0.000439895 0.000617214 0.000767433 0.000891457 0.000990347 0.00106556 0.00111951 0.00115636 0.00118187 0.00120116 0.00121722 0.00123146 0.00124454 0.00125681 0.00126848 0.0012797 0.00129055 0.00130109 0.00131139 0.00132148 0.00133138 0.00134113 0.00135073 0.00136021 0.00136958 0.00137886 0.00138804 0.00139716 0.00140621 0.0014152 0.00142416 0.00143308 0.00144199 0.00145089 0.0014598 +-0.000521594 -0.000259709 7.58174E-07 0.000246053 0.00046322 0.000653035 0.000816281 0.000953774 0.00106642 0.00115537 0.00122231 0.00127015 0.00130352 0.00132784 0.00134724 0.00136394 0.001379 0.00139296 0.00140613 0.00141868 0.00143076 0.00144246 0.00145383 0.00146494 0.00147581 0.00148648 0.00149698 0.00150732 0.00151752 0.0015276 0.00153758 0.00154745 0.00155725 0.00156697 0.00157664 0.00158626 0.00159585 0.00160542 0.00161498 +-0.000538686 -0.000268709 9.895E-07 0.000256552 0.000484656 0.000686025 0.000861386 0.00101148 0.00113711 0.00123923 0.0013191 0.00137876 0.00142159 0.00145243 0.0014761 0.00149579 0.00151316 0.00152904 0.00154385 0.00155788 0.0015713 0.00158422 0.00159673 0.00160891 0.00162079 0.00163243 0.00164385 0.00165508 0.00166614 0.00167705 0.00168782 0.00169848 0.00170903 0.00171948 0.00172987 0.00174018 0.00175046 0.0017607 0.00177092 +-0.000554137 -0.000276797 1.28618E-06 0.000266214 0.000504359 0.000716398 0.000903006 0.00106487 0.0012027 0.00131732 0.00140974 0.00148144 0.00153483 0.0015737 0.00160281 0.00162621 0.00164631 0.00166437 0.00168104 0.00169668 0.00171155 0.00172579 0.00173952 0.00175283 0.00176578 0.00177843 0.00179081 0.00180296 0.0018149 0.00182666 0.00183825 0.0018497 0.00186101 0.00187222 0.00188332 0.00189435 0.00190531 0.00191622 0.00192709 +-0.000568043 -0.000284017 1.66558E-06 0.000275127 0.000522481 0.000744362 0.000941397 0.00111422 0.00126349 0.00138992 0.00149435 0.00157793 0.00164238 0.00169051 0.00172639 0.00175439 0.00177777 0.00179836 0.00181711 0.00183455 0.00185099 0.00186666 0.0018817 0.00189621 0.00191029 0.001924 0.00193738 0.00195048 0.00196334 0.00197597 0.0019884 0.00200066 0.00201276 0.00202472 0.00203657 0.0020483 0.00205995 0.00207154 0.00208307 +-0.00058048 -0.000290404 2.14941E-06 0.000283378 0.000539169 0.000770118 0.000976811 0.00115983 0.00131979 0.00145733 0.00157318 0.00166825 0.00174384 0.00180198 0.00184584 0.00187954 0.0019069 0.00193044 0.00195155 0.00197099 0.00198917 0.00200639 0.00202283 0.00203863 0.0020539 0.00206872 0.00208316 0.00209725 0.00211105 0.00212459 0.00213789 0.00215098 0.00216388 0.00217662 0.00218921 0.00220167 0.00221402 0.00222628 0.00223847 +-0.000591512 -0.00029598 2.76484E-06 0.000291053 0.000554566 0.000793862 0.00100949 0.001202 0.00137194 0.00151991 0.00164654 0.0017526 0.0018391 0.00190756 0.00196032 0.00200085 0.00203304 0.00206008 0.0020839 0.00210556 0.00212566 0.00214457 0.00216252 0.0021797 0.00219625 0.00221225 0.00222778 0.00224292 0.0022577 0.00227217 0.00228637 0.00230031 0.00231404 0.00232757 0.00234092 0.00235411 0.00236718 0.00238013 0.00239298 +-0.000601182 -0.000300756 3.54577E-06 0.000298242 0.000568813 0.000815786 0.00103967 0.00124098 0.00142024 0.00157797 0.00171476 0.00183127 0.00192832 0.00200706 0.00206924 0.00211756 0.00215556 0.00218676 0.00221371 0.00223788 0.0022601 0.00228085 0.00230044 0.00231911 0.00233701 0.00235426 0.00237095 0.00238718 0.00240299 0.00241843 0.00243356 0.00244839 0.00246296 0.0024773 0.00249143 0.00250537 0.00251916 0.00253281 0.00254634 +-0.000609515 -0.000304729 4.53443E-06 0.000305038 0.000582053 0.000836076 0.00106759 0.00127706 0.00146499 0.00163186 0.0017782 0.00190459 0.00201172 0.00210052 0.00217229 0.00222908 0.00227381 0.00230997 0.00234056 0.00236758 0.00239215 0.00241492 0.0024363 0.00245656 0.00247591 0.00249449 0.00251241 0.00252978 0.00254667 0.00256313 0.00257921 0.00259496 0.0026104 0.00262557 0.0026405 0.00265522 0.00266974 0.0026841 0.00269831 +-0.000616514 -0.000307878 5.78332E-06 0.000311539 0.000594428 0.000854919 0.00109346 0.00131051 0.0015065 0.00168191 0.00183721 0.00197292 0.00208965 0.00218813 0.00226942 0.00233502 0.00238726 0.0024292 0.00246406 0.00249433 0.00252152 0.00254652 0.00256983 0.00259182 0.00261272 0.00263271 0.00265194 0.00267052 0.00268853 0.00270605 0.00272313 0.00273982 0.00275617 0.0027722 0.00278796 0.00280346 0.00281874 0.00283382 0.00284873 +-0.00062216 -0.000310164 7.35766E-06 0.000317853 0.000606088 0.000872506 0.00111753 0.00134158 0.00154508 0.00172845 0.00189215 0.00203663 0.00216244 0.00227021 0.00236075 0.00243526 0.0024955 0.002544 0.00258383 0.00261782 0.00264795 0.00267539 0.00270082 0.00272466 0.00274723 0.00276874 0.00278935 0.00280921 0.00282841 0.00284703 0.00286516 0.00288284 0.00290012 0.00291704 0.00293364 0.00294995 0.002966 0.00298183 0.00299745 +-0.000626401 -0.000311528 9.33828E-06 0.0003241 0.000617189 0.000889029 0.00114002 0.00137054 0.00158101 0.00177181 0.00194337 0.0020961 0.00223049 0.00234708 0.00244656 0.00252986 0.00259833 0.00265398 0.00269949 0.00273778 0.00277122 0.00280135 0.00282907 0.00285493 0.00287929 0.00290241 0.0029245 0.00294571 0.00296616 0.00298595 0.00300516 0.00302387 0.00304212 0.00305996 0.00307743 0.00309458 0.00311143 0.00312801 0.00314436 +-0.000629158 -0.000311882 1.18252E-05 0.000330414 0.000627902 0.000904692 0.00116116 0.00139767 0.0016146 0.00181233 0.00199122 0.00215169 0.00229417 0.00241913 0.00252715 0.00261901 0.00269574 0.00275892 0.00281074 0.00285392 0.00289111 0.00292423 0.00295445 0.00298248 0.00300877 0.00303362 0.00305728 0.00307992 0.00310169 0.0031227 0.00314306 0.00316283 0.00318209 0.00320088 0.00321926 0.00323727 0.00325493 0.0032723 0.00328939 +*table -1 +-8.74854E-11 -7.67895E-11 -7.51754E-11 -7.49371E-11 -7.49051E-11 -7.48891E-11 -7.48751E-11 -7.48614E-11 -7.48479E-11 -7.48344E-11 -7.48209E-11 -7.48073E-11 -7.47937E-11 -7.478E-11 -7.47662E-11 -7.47523E-11 -7.47384E-11 -7.47244E-11 -7.47103E-11 -7.46961E-11 -7.46818E-11 -7.46675E-11 -7.46531E-11 -7.46386E-11 -7.4624E-11 -7.46093E-11 -7.45945E-11 -7.45796E-11 -7.45645E-11 -7.45493E-11 -7.4534E-11 -7.45185E-11 -7.45028E-11 -7.44868E-11 -7.44705E-11 -7.44539E-11 -7.44369E-11 -7.44194E-11 -7.44013E-11 +-1.3312E-10 -8.16177E-11 -7.37844E-11 -7.26218E-11 -7.2466E-11 -7.2388E-11 -7.23194E-11 -7.22529E-11 -7.2187E-11 -7.21211E-11 -7.20551E-11 -7.19889E-11 -7.19223E-11 -7.18555E-11 -7.17882E-11 -7.17206E-11 -7.16526E-11 -7.15842E-11 -7.15155E-11 -7.14464E-11 -7.13769E-11 -7.1307E-11 -7.12368E-11 -7.11661E-11 -7.10951E-11 -7.10236E-11 -7.09517E-11 -7.08793E-11 -7.08065E-11 -7.07331E-11 -7.06592E-11 -7.05846E-11 -7.05093E-11 -7.04333E-11 -7.03564E-11 -7.02785E-11 -7.01995E-11 -7.01192E-11 -7.00373E-11 +-3.57828E-10 -1.11336E-10 -7.3412E-11 -6.77453E-11 -6.69862E-11 -6.6606E-11 -6.62713E-11 -6.59473E-11 -6.56261E-11 -6.53052E-11 -6.49836E-11 -6.46607E-11 -6.43363E-11 -6.40102E-11 -6.36824E-11 -6.33529E-11 -6.30215E-11 -6.26883E-11 -6.23533E-11 -6.20164E-11 -6.16778E-11 -6.13373E-11 -6.0995E-11 -6.06507E-11 -6.03046E-11 -5.99564E-11 -5.96062E-11 -5.92538E-11 -5.88991E-11 -5.85419E-11 -5.81821E-11 -5.78194E-11 -5.74536E-11 -5.70843E-11 -5.67113E-11 -5.6334E-11 -5.59519E-11 -5.55644E-11 -5.51706E-11 +-1.42065E-09 -2.55696E-10 -7.30181E-11 -4.54502E-11 -4.17571E-11 -3.99076E-11 -3.82797E-11 -3.67033E-11 -3.51407E-11 -3.35797E-11 -3.2015E-11 -3.04443E-11 -2.88663E-11 -2.72802E-11 -2.56856E-11 -2.40824E-11 -2.24703E-11 -2.08495E-11 -1.92198E-11 -1.75813E-11 -1.5934E-11 -1.42777E-11 -1.26125E-11 -1.09382E-11 -9.25456E-12 -7.56128E-12 -5.85802E-12 -4.14429E-12 -2.41954E-12 -6.83089E-13 1.06588E-12 2.82833E-12 4.60538E-12 6.39835E-12 8.20881E-12 1.00386E-11 1.189E-11 1.37658E-11 1.56691E-11 +-6.30997E-09 -9.42128E-10 -7.13378E-11 6.22358E-11 8.01291E-11 8.909E-11 9.69768E-11 1.04615E-10 1.12185E-10 1.19748E-10 1.27329E-10 1.34938E-10 1.42584E-10 1.50268E-10 1.57993E-10 1.65761E-10 1.7357E-10 1.81423E-10 1.89318E-10 1.97255E-10 2.05236E-10 2.13259E-10 2.21326E-10 2.29437E-10 2.37592E-10 2.45794E-10 2.54044E-10 2.62344E-10 2.70696E-10 2.79104E-10 2.87572E-10 2.96103E-10 3.04702E-10 3.13375E-10 3.2213E-10 3.30973E-10 3.39913E-10 3.48963E-10 3.58136E-10 +-2.77231E-08 -4.12998E-09 -6.53795E-11 5.76315E-10 6.6227E-10 7.05313E-10 7.43196E-10 7.79882E-10 8.16245E-10 8.52571E-10 8.8898E-10 9.2553E-10 9.6225E-10 9.99158E-10 1.03626E-09 1.07357E-09 1.11107E-09 1.14879E-09 1.1867E-09 1.22483E-09 1.26315E-09 1.30168E-09 1.34042E-09 1.37937E-09 1.41853E-09 1.45792E-09 1.49753E-09 1.53738E-09 1.57748E-09 1.61784E-09 1.65848E-09 1.69942E-09 1.74068E-09 1.78229E-09 1.82426E-09 1.86665E-09 1.90948E-09 1.95279E-09 1.99666E-09 +-1.14066E-07 -1.82878E-08 -3.41531E-11 2.99451E-09 3.40018E-09 3.60327E-09 3.782E-09 3.95508E-09 4.12663E-09 4.298E-09 4.46976E-09 4.64218E-09 4.8154E-09 4.98949E-09 5.16451E-09 5.34048E-09 5.5174E-09 5.69527E-09 5.87411E-09 6.05391E-09 6.23467E-09 6.41639E-09 6.59909E-09 6.78277E-09 6.96745E-09 7.15316E-09 7.33994E-09 7.52784E-09 7.71689E-09 7.90717E-09 8.09874E-09 8.2917E-09 8.48612E-09 8.68213E-09 8.87984E-09 9.07938E-09 9.28093E-09 9.48467E-09 9.69081E-09 +-4.21596E-07 -7.6656E-08 1.36325E-10 1.39379E-08 1.5787E-08 1.67118E-08 1.75254E-08 1.83132E-08 1.90939E-08 1.98739E-08 2.06555E-08 2.14401E-08 2.22283E-08 2.30205E-08 2.38168E-08 2.46174E-08 2.54223E-08 2.62316E-08 2.70452E-08 2.78631E-08 2.86853E-08 2.95119E-08 3.03428E-08 3.11782E-08 3.20181E-08 3.28627E-08 3.3712E-08 3.45663E-08 3.54259E-08 3.62909E-08 3.71618E-08 3.80387E-08 3.89223E-08 3.98128E-08 4.07108E-08 4.1617E-08 4.25318E-08 4.34561E-08 4.43907E-08 +-1.37309E-06 -2.90147E-07 6.577E-10 5.96462E-08 6.75633E-08 7.15074E-08 7.49737E-08 7.83289E-08 8.16536E-08 8.49742E-08 8.83017E-08 9.16415E-08 9.49964E-08 9.83678E-08 1.01757E-07 1.05163E-07 1.08588E-07 1.12031E-07 1.15492E-07 1.18971E-07 1.22469E-07 1.25984E-07 1.29518E-07 1.3307E-07 1.36641E-07 1.40232E-07 1.43843E-07 1.47475E-07 1.51128E-07 1.54804E-07 1.58505E-07 1.62231E-07 1.65984E-07 1.69766E-07 1.73579E-07 1.77426E-07 1.81308E-07 1.85228E-07 1.8919E-07 +-4.01068E-06 -9.64126E-07 1.54825E-09 2.29412E-07 2.60219E-07 2.75363E-07 2.88627E-07 3.01452E-07 3.14153E-07 3.26835E-07 3.3954E-07 3.52289E-07 3.65094E-07 3.7796E-07 3.9089E-07 4.03886E-07 4.16949E-07 4.30079E-07 4.43277E-07 4.56542E-07 4.69875E-07 4.83275E-07 4.96743E-07 5.1028E-07 5.23887E-07 5.37566E-07 5.5132E-07 5.65151E-07 5.79063E-07 5.93061E-07 6.07148E-07 6.2133E-07 6.35613E-07 6.50003E-07 6.64508E-07 6.79134E-07 6.93892E-07 7.08789E-07 7.23837E-07 +-1.074E-05 -2.83642E-06 2.76169E-09 7.76553E-07 8.83786E-07 9.34462E-07 9.78378E-07 1.02071E-06 1.06258E-06 1.10435E-06 1.14618E-06 1.18814E-06 1.23026E-06 1.27257E-06 1.31508E-06 1.3578E-06 1.40073E-06 1.44387E-06 1.48722E-06 1.53078E-06 1.57455E-06 1.61854E-06 1.66273E-06 1.70715E-06 1.75179E-06 1.79666E-06 1.84176E-06 1.88711E-06 1.93271E-06 1.97859E-06 2.02475E-06 2.07121E-06 2.11799E-06 2.16512E-06 2.2126E-06 2.26048E-06 2.30877E-06 2.3575E-06 2.4067E-06 +-2.59087E-05 -7.50152E-06 4.34013E-09 2.3242E-06 2.66946E-06 2.81756E-06 2.94234E-06 3.06165E-06 3.17927E-06 3.29641E-06 3.41358E-06 3.531E-06 3.64881E-06 3.76708E-06 3.88584E-06 4.00513E-06 4.12496E-06 4.24533E-06 4.36624E-06 4.4877E-06 4.60971E-06 4.73227E-06 4.85539E-06 4.97908E-06 5.10335E-06 5.22822E-06 5.35371E-06 5.47985E-06 5.60668E-06 5.73422E-06 5.86253E-06 5.99166E-06 6.12164E-06 6.25254E-06 6.38443E-06 6.51736E-06 6.6514E-06 6.78664E-06 6.92314E-06 +-5.3733E-05 -1.74126E-05 6.42538E-09 6.25929E-06 7.36639E-06 7.76157E-06 8.07219E-06 8.36351E-06 8.64852E-06 8.93126E-06 9.21335E-06 9.49558E-06 9.77837E-06 1.00619E-05 1.03465E-05 1.0632E-05 1.09186E-05 1.12063E-05 1.14952E-05 1.17852E-05 1.20763E-05 1.23686E-05 1.26621E-05 1.29568E-05 1.32527E-05 1.355E-05 1.38486E-05 1.41486E-05 1.44502E-05 1.47533E-05 1.50582E-05 1.5365E-05 1.56736E-05 1.59844E-05 1.62975E-05 1.6613E-05 1.6931E-05 1.72518E-05 1.75756E-05 +-9.35207E-05 -3.39951E-05 9.29594E-09 1.49202E-05 1.8548E-05 1.95891E-05 2.029E-05 2.09184E-05 2.1523E-05 2.21179E-05 2.27085E-05 2.32974E-05 2.3886E-05 2.44752E-05 2.50653E-05 2.56567E-05 2.62497E-05 2.68442E-05 2.74405E-05 2.80386E-05 2.86385E-05 2.92403E-05 2.98441E-05 3.045E-05 3.1058E-05 3.16682E-05 3.22809E-05 3.28961E-05 3.35141E-05 3.41351E-05 3.47594E-05 3.53872E-05 3.60187E-05 3.66544E-05 3.72945E-05 3.79394E-05 3.85894E-05 3.92449E-05 3.99063E-05 +-0.000139818 -5.58129E-05 1.33859E-08 3.00951E-05 4.08489E-05 4.37944E-05 4.53031E-05 4.65284E-05 4.76664E-05 4.87682E-05 4.98522E-05 5.09268E-05 5.19964E-05 5.30635E-05 5.41297E-05 5.51959E-05 5.62628E-05 5.73309E-05 5.84005E-05 5.94719E-05 6.05452E-05 6.16207E-05 6.26985E-05 6.37788E-05 6.48619E-05 6.5948E-05 6.70374E-05 6.81305E-05 6.92278E-05 7.03296E-05 7.14365E-05 7.25489E-05 7.36675E-05 7.47929E-05 7.59256E-05 7.70665E-05 7.82161E-05 7.93752E-05 8.05446E-05 +-0.000187566 -8.00442E-05 1.92505E-08 5.08547E-05 7.57192E-05 8.4206E-05 8.75465E-05 8.97967E-05 9.17461E-05 9.35781E-05 9.53528E-05 9.70954E-05 9.88186E-05 0.00010053 0.000102233 0.000103931 0.000105625 0.000107318 0.00010901 0.000110702 0.000112394 0.000114087 0.000115782 0.000117478 0.000119176 0.000120878 0.000122582 0.000124291 0.000126004 0.000127723 0.000129449 0.000131182 0.000132923 0.000134674 0.000136436 0.000138209 0.000139995 0.000141796 0.000143612 +-0.00023398 -0.000104486 2.75414E-08 7.44835E-05 0.000118998 0.000139383 0.000147199 0.000151331 0.000154494 0.000157317 0.000159983 0.000162563 0.00016509 0.000167583 0.000170052 0.000172504 0.000174943 0.000177373 0.000179795 0.000182213 0.000184626 0.000187037 0.000189445 0.000191853 0.00019426 0.000196669 0.000199079 0.000201491 0.000203908 0.000206331 0.00020876 0.000211197 0.000213645 0.000216104 0.000218577 0.000221065 0.000223569 0.000226093 0.000228638 +-0.000277834 -0.000127956 3.9046E-08 9.86407E-05 0.000165206 0.000203149 0.000220414 0.000228338 0.000233423 0.000237594 0.000241383 0.000244973 0.000248444 0.000251836 0.000255175 0.000258473 0.000261741 0.000264987 0.000268213 0.000271426 0.000274626 0.000277816 0.000280998 0.000284173 0.000287344 0.000290511 0.000293676 0.000296841 0.000300007 0.000303177 0.000306352 0.000309536 0.000312729 0.000315935 0.000319157 0.000322396 0.000325655 0.000328937 0.000332246 +-0.000318683 -0.000149949 5.47629E-08 0.000122006 0.000210904 0.000269065 0.000301135 0.000316466 0.00032487 0.000330974 0.000336201 0.000341006 0.00034557 0.00034998 0.000354283 0.000358509 0.000362676 0.000366798 0.000370884 0.00037494 0.000378971 0.000382981 0.000386974 0.000390951 0.000394916 0.00039887 0.000402817 0.000406758 0.000410696 0.000414634 0.000418574 0.000422519 0.000426473 0.000430439 0.000434421 0.000438421 0.000442444 0.000446493 0.000450572 +-0.00035644 -0.000170307 7.59819E-08 0.000143995 0.00025448 0.000333332 0.00038342 0.000410747 0.000425039 0.00043412 0.00044127 0.000447569 0.000453412 0.000458974 0.000464346 0.000469583 0.000474718 0.000479774 0.000484767 0.000489708 0.000494606 0.000499468 0.000504299 0.000509102 0.000513882 0.000518643 0.000523387 0.000528117 0.000532838 0.000537552 0.000542263 0.000546976 0.000551693 0.00055642 0.000561161 0.000565921 0.000570704 0.000575514 0.000580357 +-0.000391178 -0.000189026 1.0437E-07 0.000164412 0.000295297 0.000394282 0.00046339 0.000506272 0.000530094 0.000543984 0.000553857 0.000562058 0.000569428 0.000576312 0.000582879 0.000589223 0.000595401 0.000601453 0.000607404 0.000613273 0.000619073 0.000624817 0.00063051 0.000636161 0.000641774 0.000647355 0.000652908 0.000658438 0.000663948 0.000669443 0.000674928 0.000680408 0.000685888 0.000691373 0.000696868 0.000702379 0.000707913 0.000713474 0.000719069 +-0.000423041 -0.000206171 1.42072E-07 0.000183238 0.000333177 0.000451307 0.000539218 0.000599306 0.000636163 0.000657616 0.00067154 0.000682271 0.000691516 0.000699946 0.000707863 0.000715431 0.000722743 0.000729862 0.000736829 0.000743672 0.000750414 0.000757071 0.000763655 0.000770175 0.00077664 0.000783056 0.00078943 0.000795767 0.000802073 0.000808354 0.000814615 0.000820862 0.000827101 0.000833339 0.000839582 0.000845836 0.00085211 0.00085841 0.000864743 +-0.000452199 -0.00022183 1.91834E-07 0.000200532 0.00036815 0.000504268 0.000610228 0.000687781 0.000739865 0.000771997 0.000792005 0.000806252 0.000817877 0.000828153 0.000837623 0.00084656 0.000855116 0.000863388 0.000871438 0.000879311 0.000887039 0.000894646 0.00090215 0.000909565 0.000916901 0.00092417 0.000931378 0.000938534 0.000945644 0.000952715 0.000959754 0.000966769 0.000973766 0.000980752 0.000987737 0.000994727 0.00100173 0.00100876 0.00101581 +-0.000478831 -0.000236102 2.57162E-07 0.000216383 0.000400339 0.000553244 0.000676278 0.000770838 0.00083895 0.000884229 0.00091289 0.000932145 0.000946901 0.000959438 0.000970723 0.000981211 0.000991147 0.00100067 0.00100989 0.00101886 0.00102763 0.00103623 0.00104469 0.00105302 0.00106126 0.0010694 0.00107745 0.00108544 0.00109336 0.00110123 0.00110906 0.00111684 0.00112459 0.00113233 0.00114005 0.00114777 0.00115549 0.00116324 0.001171 +-0.000503109 -0.00024908 3.42512E-07 0.000230895 0.000429906 0.000598409 0.000737465 0.000848257 0.00093231 0.000992045 0.0010318 0.00105808 0.00107707 0.00109245 0.0011059 0.00111817 0.00112965 0.00114056 0.00115104 0.00116118 0.00117105 0.0011807 0.00119015 0.00119945 0.0012086 0.00121764 0.00122657 0.0012354 0.00124415 0.00125283 0.00126144 0.00127 0.00127851 0.00128699 0.00129545 0.00130389 0.00131233 0.00132078 0.00132925 +-0.000525201 -0.000260857 4.53536E-07 0.000244171 0.000457028 0.000639981 0.000793999 0.00092012 0.00101958 0.0010941 0.00114663 0.00118212 0.00120688 0.00122594 0.00124202 0.00125637 0.0012696 0.00128205 0.0012939 0.00130531 0.00131635 0.0013271 0.0013376 0.0013479 0.00135801 0.00136797 0.00137779 0.00138749 0.00139708 0.00140657 0.00141598 0.00142532 0.0014346 0.00144383 0.00145302 0.00146218 0.00147133 0.00148048 0.00148964 +-0.00054526 -0.000271516 5.97383E-07 0.000256315 0.000481885 0.000678196 0.00084614 0.000986647 0.00110076 0.00118983 0.00125588 0.00130241 0.00133478 0.00135867 0.00137802 0.00139483 0.00141007 0.00142423 0.00143761 0.00145039 0.00146269 0.00147462 0.00148622 0.00149756 0.00150867 0.00151958 0.00153032 0.00154091 0.00155136 0.00156169 0.00157191 0.00158204 0.00159209 0.00160207 0.00161199 0.00162188 0.00163174 0.00164158 0.00165142 +-0.000563427 -0.000281132 7.83079E-07 0.000267426 0.000504653 0.000713291 0.000894166 0.00104812 0.00117608 0.00127913 0.00135878 0.00141747 0.00145921 0.0014894 0.00151289 0.00153267 0.00155024 0.00156634 0.0015814 0.00159568 0.00160935 0.00162253 0.0016353 0.00164774 0.00165989 0.0016718 0.00168349 0.00169499 0.00170632 0.0017175 0.00172855 0.00173948 0.00175031 0.00176105 0.00177171 0.00178232 0.00179288 0.00180342 0.00181394 +-0.00057983 -0.000289771 1.02199E-06 0.000277601 0.000525503 0.000745502 0.000938362 0.00110486 0.00124582 0.00136217 0.00145509 0.00152634 0.00157879 0.00161686 0.00164562 0.00166904 0.00168933 0.00170765 0.00172459 0.00174052 0.00175567 0.0017702 0.00178422 0.00179783 0.00181107 0.00182401 0.00183669 0.00184913 0.00186137 0.00187342 0.00188532 0.00189706 0.00190868 0.00192019 0.00193161 0.00194294 0.00195422 0.00196544 0.00197664 +-0.000594581 -0.000297489 1.32839E-06 0.000286933 0.000544602 0.000775056 0.000979009 0.00115718 0.00131031 0.00143921 0.00154487 0.00162861 0.00169249 0.00173983 0.0017752 0.00180311 0.00182666 0.00184752 0.00186658 0.00188434 0.00190111 0.00191709 0.00193245 0.00194729 0.00196169 0.00197571 0.00198942 0.00200284 0.00201601 0.00202897 0.00204173 0.00205431 0.00206673 0.00207902 0.00209119 0.00210326 0.00211525 0.00212717 0.00213905 +-0.000607777 -0.000304334 1.72022E-06 0.000295513 0.000562105 0.000802173 0.00101638 0.00120539 0.00136989 0.00151061 0.00162837 0.00172425 0.00179975 0.00185731 0.00190059 0.00193407 0.00196153 0.00198536 0.00200681 0.0020266 0.00204515 0.00206272 0.00207951 0.00209566 0.00211129 0.00212646 0.00214124 0.00215568 0.00216982 0.0021837 0.00219735 0.00221079 0.00222404 0.00223712 0.00225006 0.00226287 0.00227558 0.0022882 0.00230076 +-0.000619497 -0.000310339 2.2199E-06 0.00030343 0.000578168 0.000827064 0.00105074 0.00124981 0.00142491 0.0015767 0.00170591 0.00181341 0.0019004 0.00196863 0.0020209 0.00206109 0.0020933 0.0021206 0.00214479 0.00216685 0.00218735 0.00220665 0.00222499 0.00224256 0.00225948 0.00227585 0.00229176 0.00230727 0.00232242 0.00233726 0.00235183 0.00236614 0.00238024 0.00239414 0.00240786 0.00242143 0.00243486 0.00244819 0.00246143 +-0.000629807 -0.00031553 2.8555E-06 0.000310776 0.000592937 0.000849932 0.00108234 0.00129074 0.00147571 0.00163786 0.00177784 0.00189641 0.00199451 0.00207348 0.00213541 0.00218338 0.0022213 0.00225271 0.00228004 0.00230465 0.00232731 0.0023485 0.00236852 0.00238761 0.00240592 0.00242357 0.00244067 0.00245729 0.0024735 0.00248934 0.00250485 0.00252007 0.00253503 0.00254976 0.00256429 0.00257863 0.00259281 0.00260685 0.00262078 +-0.000638751 -0.000319917 3.662E-06 0.000317641 0.000606559 0.000870974 0.00111143 0.00132846 0.00152261 0.00169445 0.00184455 0.00197358 0.00208233 0.00217186 0.00224372 0.00230029 0.00234488 0.00238118 0.00241214 0.00243963 0.00246469 0.00248795 0.0025098 0.00253052 0.00255031 0.00256932 0.00258768 0.00260548 0.00262278 0.00263966 0.00265616 0.00267232 0.00268817 0.00270376 0.0027191 0.00273423 0.00274916 0.00276393 0.00277857 +-0.000646353 -0.000323494 4.68302E-06 0.000324121 0.00061918 0.000890386 0.00113825 0.00136326 0.00156595 0.00174681 0.0019064 0.0020453 0.00216418 0.00226392 0.00234571 0.00241134 0.00246347 0.00250549 0.00254068 0.00257144 0.00259917 0.00262469 0.00264853 0.00267101 0.0026924 0.00271286 0.00273256 0.00275159 0.00277005 0.00278801 0.00280553 0.00282266 0.00283944 0.00285591 0.00287209 0.00288802 0.00290373 0.00291925 0.00293459 +-0.000652617 -0.000326241 5.97278E-06 0.000330317 0.000630946 0.000908358 0.00116303 0.00139543 0.00160603 0.00179531 0.00196378 0.00211195 0.00224044 0.00234996 0.00244146 0.00251632 0.00257659 0.00262515 0.00266527 0.00269975 0.00273045 0.00275848 0.00278448 0.00280887 0.00283196 0.00285398 0.00287509 0.00289543 0.00291511 0.00293421 0.00295279 0.00297093 0.00298867 0.00300604 0.00302309 0.00303985 0.00305636 0.00307263 0.0030887 +-0.000657519 -0.000328117 7.59862E-06 0.00033634 0.000642012 0.000925085 0.00118601 0.00142522 0.00164316 0.00184029 0.00201705 0.00217394 0.00231149 0.00243031 0.00253121 0.00261524 0.00268399 0.00273976 0.00278552 0.00282426 0.00285831 0.00288908 0.00291744 0.0029439 0.00296883 0.00299251 0.00301513 0.00303685 0.00305781 0.0030781 0.0030978 0.00311699 0.00313572 0.00315403 0.00317198 0.00318959 0.00320691 0.00322396 0.00324077 +-0.000661007 -0.000329059 9.64399E-06 0.000342313 0.000652538 0.000940768 0.00120742 0.00145291 0.00167765 0.00188207 0.00206658 0.00223164 0.00237773 0.00250539 0.00261527 0.00270826 0.00278558 0.00284903 0.0029011 0.00294472 0.00298252 0.00301632 0.00304724 0.00307593 0.00310285 0.0031283 0.00315253 0.00317573 0.00319804 0.00321958 0.00324045 0.00326073 0.00328049 0.00329978 0.00331866 0.00333715 0.0033553 0.00337315 0.00339073 +-0.000662996 -0.000328977 1.22122E-05 0.000348374 0.000662699 0.000955614 0.00122751 0.00147878 0.00170982 0.00192101 0.00211275 0.00228546 0.00243957 0.00257558 0.00269404 0.00279568 0.00288147 0.00295283 0.00301175 0.00306086 0.00310289 0.00314005 0.00317375 0.00320486 0.0032339 0.00326125 0.0032872 0.00331196 0.0033357 0.00335857 0.00338067 0.00340209 0.00342293 0.00344323 0.00346306 0.00348246 0.00350148 0.00352015 0.00353851 +*table -0.8 +-8.79182E-11 -4.74638E-11 -4.13054E-11 -4.03909E-11 -4.02686E-11 -4.02072E-11 -4.01532E-11 -4.0101E-11 -4.00492E-11 -3.99975E-11 -3.99456E-11 -3.98936E-11 -3.98413E-11 -3.97887E-11 -3.97359E-11 -3.96828E-11 -3.96293E-11 -3.95756E-11 -3.95216E-11 -3.94673E-11 -3.94127E-11 -3.93578E-11 -3.93026E-11 -3.92471E-11 -3.91912E-11 -3.9135E-11 -3.90785E-11 -3.90216E-11 -3.89642E-11 -3.89064E-11 -3.88481E-11 -3.87893E-11 -3.87298E-11 -3.86696E-11 -3.86086E-11 -3.85467E-11 -3.84837E-11 -3.84193E-11 -3.83534E-11 +-2.60005E-10 -6.92673E-11 -3.99144E-11 -3.55274E-11 -3.49404E-11 -3.46461E-11 -3.43871E-11 -3.41364E-11 -3.3888E-11 -3.36398E-11 -3.33911E-11 -3.31414E-11 -3.28905E-11 -3.26384E-11 -3.2385E-11 -3.21301E-11 -3.18739E-11 -3.16163E-11 -3.13572E-11 -3.10968E-11 -3.08349E-11 -3.05716E-11 -3.03069E-11 -3.00407E-11 -2.9773E-11 -2.95037E-11 -2.92328E-11 -2.89602E-11 -2.86858E-11 -2.84093E-11 -2.81308E-11 -2.785E-11 -2.75666E-11 -2.72804E-11 -2.6991E-11 -2.6698E-11 -2.6401E-11 -2.60992E-11 -2.57919E-11 +-1.06945E-09 -1.78921E-10 -3.95421E-11 -1.85285E-11 -1.57168E-11 -1.43071E-11 -1.30667E-11 -1.18659E-11 -1.06759E-11 -9.48714E-12 -8.29578E-12 -7.09987E-12 -5.8984E-12 -4.69082E-12 -3.47681E-12 -2.25621E-12 -1.02894E-12 2.05039E-13 1.44574E-12 2.69316E-12 3.94732E-12 5.20827E-12 6.47606E-12 7.75084E-12 9.03276E-12 1.03221E-11 1.16191E-11 1.29241E-11 1.42377E-11 1.55604E-11 1.68928E-11 1.82359E-11 1.95905E-11 2.09577E-11 2.2339E-11 2.3736E-11 2.51506E-11 2.65854E-11 2.80433E-11 +-4.77113E-09 -6.95754E-10 -3.91501E-11 6.1178E-11 7.46021E-11 8.13326E-11 8.72543E-11 9.29872E-11 9.86686E-11 1.04344E-10 1.10031E-10 1.15741E-10 1.21477E-10 1.27242E-10 1.33037E-10 1.38864E-10 1.44723E-10 1.50614E-10 1.56537E-10 1.62492E-10 1.68479E-10 1.74498E-10 1.8055E-10 1.86635E-10 1.92753E-10 1.98907E-10 2.05097E-10 2.11325E-10 2.17593E-10 2.23903E-10 2.30259E-10 2.36664E-10 2.43121E-10 2.49637E-10 2.56215E-10 2.62864E-10 2.69591E-10 2.76406E-10 2.8332E-10 +-2.10162E-08 -3.08083E-09 -3.74955E-11 4.38254E-10 5.01909E-10 5.33821E-10 5.61898E-10 5.89079E-10 6.16016E-10 6.42923E-10 6.69888E-10 6.96957E-10 7.24151E-10 7.51483E-10 7.7896E-10 8.06586E-10 8.34362E-10 8.62289E-10 8.90368E-10 9.18598E-10 9.4698E-10 9.75514E-10 1.0042E-09 1.03305E-09 1.06205E-09 1.09122E-09 1.12055E-09 1.15007E-09 1.17977E-09 1.20967E-09 1.23978E-09 1.27012E-09 1.3007E-09 1.33154E-09 1.36266E-09 1.39411E-09 1.42589E-09 1.45807E-09 1.49068E-09 +-8.73039E-08 -1.36923E-08 -3.17969E-11 2.19248E-09 2.49008E-09 2.63924E-09 2.77047E-09 2.89751E-09 3.0234E-09 3.14915E-09 3.27517E-09 3.40167E-09 3.52875E-09 3.65648E-09 3.78488E-09 3.91398E-09 4.04377E-09 4.17427E-09 4.30547E-09 4.43738E-09 4.57E-09 4.70332E-09 4.83735E-09 4.97212E-09 5.10762E-09 5.24388E-09 5.38093E-09 5.51879E-09 5.65752E-09 5.79716E-09 5.93777E-09 6.0794E-09 6.22213E-09 6.36605E-09 6.51126E-09 6.65787E-09 6.806E-09 6.95583E-09 7.10752E-09 +-3.29394E-07 -5.78516E-08 -2.807E-12 1.01059E-08 1.14586E-08 1.21361E-08 1.27321E-08 1.33089E-08 1.38805E-08 1.44514E-08 1.50236E-08 1.55979E-08 1.61748E-08 1.67546E-08 1.73375E-08 1.79234E-08 1.85126E-08 1.91049E-08 1.97004E-08 2.0299E-08 2.09009E-08 2.15059E-08 2.21142E-08 2.27257E-08 2.33405E-08 2.39588E-08 2.45805E-08 2.5206E-08 2.58353E-08 2.64687E-08 2.71063E-08 2.77486E-08 2.83957E-08 2.9048E-08 2.9706E-08 3.037E-08 3.10407E-08 3.17186E-08 3.24044E-08 +-1.1028E-06 -2.2327E-07 1.53884E-10 4.37246E-08 4.95617E-08 5.24773E-08 5.50398E-08 5.75197E-08 5.99767E-08 6.24305E-08 6.48894E-08 6.73573E-08 6.98363E-08 7.23275E-08 7.48316E-08 7.7349E-08 7.98798E-08 8.2424E-08 8.49817E-08 8.75529E-08 9.01375E-08 9.27357E-08 9.53474E-08 9.7973E-08 1.00613E-07 1.03267E-07 1.05936E-07 1.0862E-07 1.11321E-07 1.14039E-07 1.16775E-07 1.1953E-07 1.22306E-07 1.25103E-07 1.27924E-07 1.3077E-07 1.33643E-07 1.36545E-07 1.3948E-07 +-3.29815E-06 -7.6419E-07 6.33145E-10 1.72686E-07 1.95852E-07 2.07313E-07 2.17361E-07 2.27077E-07 2.367E-07 2.46308E-07 2.55934E-07 2.65594E-07 2.75295E-07 2.85043E-07 2.94841E-07 3.04689E-07 3.14588E-07 3.24538E-07 3.3454E-07 3.44594E-07 3.54698E-07 3.64855E-07 3.75063E-07 3.85325E-07 3.9564E-07 4.0601E-07 4.16437E-07 4.26924E-07 4.37473E-07 4.48087E-07 4.5877E-07 4.69525E-07 4.80359E-07 4.91275E-07 5.02279E-07 5.13378E-07 5.24579E-07 5.35889E-07 5.47317E-07 +-9.01283E-06 -2.31299E-06 1.4567E-09 6.04786E-07 6.87486E-07 7.27206E-07 7.61755E-07 7.95085E-07 8.2806E-07 8.60965E-07 8.93917E-07 9.26973E-07 9.60164E-07 9.93505E-07 1.02701E-06 1.06067E-06 1.09451E-06 1.12851E-06 1.16268E-06 1.19702E-06 1.23154E-06 1.26622E-06 1.30107E-06 1.33609E-06 1.3713E-06 1.40668E-06 1.44226E-06 1.47802E-06 1.514E-06 1.55019E-06 1.58661E-06 1.62327E-06 1.66019E-06 1.69738E-06 1.73486E-06 1.77265E-06 1.81078E-06 1.84926E-06 1.88813E-06 +-2.23726E-05 -6.28536E-06 2.59613E-09 1.86818E-06 2.13805E-06 2.25806E-06 2.36018E-06 2.45809E-06 2.55471E-06 2.65098E-06 2.7473E-06 2.84385E-06 2.94075E-06 3.03803E-06 3.13574E-06 3.2339E-06 3.3325E-06 3.43157E-06 3.5311E-06 3.63108E-06 3.73154E-06 3.83245E-06 3.93384E-06 4.0357E-06 4.13806E-06 4.24091E-06 4.34429E-06 4.44822E-06 4.55272E-06 4.65782E-06 4.76355E-06 4.86997E-06 4.97711E-06 5.08501E-06 5.19374E-06 5.30334E-06 5.41387E-06 5.52541E-06 5.63801E-06 +-4.8349E-05 -1.51462E-05 4.12149E-09 5.17307E-06 6.03183E-06 6.35765E-06 6.62022E-06 6.86811E-06 7.11122E-06 7.35267E-06 7.59376E-06 7.83508E-06 8.07698E-06 8.31964E-06 8.56317E-06 8.80763E-06 9.05307E-06 9.29951E-06 9.54696E-06 9.79543E-06 1.00449E-05 1.02955E-05 1.05471E-05 1.07997E-05 1.10535E-05 1.13085E-05 1.15646E-05 1.1822E-05 1.20807E-05 1.23409E-05 1.26025E-05 1.28658E-05 1.31308E-05 1.33976E-05 1.36663E-05 1.39372E-05 1.42103E-05 1.44859E-05 1.47639E-05 +-8.79436E-05 -3.09921E-05 6.21675E-09 1.27853E-05 1.5589E-05 1.64402E-05 1.70455E-05 1.75968E-05 1.813E-05 1.8656E-05 1.91791E-05 1.97011E-05 2.02233E-05 2.07463E-05 2.12704E-05 2.17959E-05 2.23229E-05 2.28516E-05 2.33819E-05 2.3914E-05 2.44479E-05 2.49836E-05 2.55212E-05 2.60607E-05 2.66023E-05 2.7146E-05 2.76919E-05 2.82403E-05 2.87912E-05 2.93449E-05 2.99016E-05 3.04615E-05 3.10248E-05 3.15919E-05 3.21629E-05 3.27383E-05 3.33184E-05 3.39034E-05 3.44937E-05 +-0.000136186 -5.3096E-05 9.19876E-09 2.70467E-05 3.57184E-05 3.80589E-05 3.93671E-05 4.0467E-05 4.15005E-05 4.25062E-05 4.34983E-05 4.44836E-05 4.54655E-05 4.6446E-05 4.74265E-05 4.84075E-05 4.93898E-05 5.03737E-05 5.13593E-05 5.2347E-05 5.33369E-05 5.43291E-05 5.53237E-05 5.6321E-05 5.73211E-05 5.83243E-05 5.93309E-05 6.03412E-05 6.13554E-05 6.23741E-05 6.33977E-05 6.44267E-05 6.54615E-05 6.65027E-05 6.75509E-05 6.86067E-05 6.96708E-05 7.07438E-05 7.18263E-05 +-0.000187131 -7.85719E-05 1.35042E-08 4.78314E-05 6.94284E-05 7.6225E-05 7.90687E-05 8.11081E-05 8.29166E-05 8.4632E-05 8.63014E-05 8.79452E-05 8.95736E-05 9.11927E-05 9.28061E-05 9.4416E-05 9.60241E-05 9.76314E-05 9.92388E-05 0.000100847 0.000102456 0.000104067 0.000105679 0.000107294 0.000108911 0.000110532 0.000112157 0.000113785 0.000115419 0.000117059 0.000118705 0.000120359 0.000122021 0.000123692 0.000125374 0.000127068 0.000128774 0.000130494 0.000132229 +-0.00023716 -0.000104767 1.9663E-08 7.25031E-05 0.000113731 0.000131133 0.000137686 0.000141401 0.000144364 0.000147051 0.000149609 0.000152094 0.000154535 0.000156947 0.000159338 0.000161716 0.000164084 0.000166444 0.000168799 0.000171151 0.000173499 0.000175847 0.000178193 0.000180539 0.000182886 0.000185235 0.000187586 0.000189941 0.0001923 0.000194666 0.000197039 0.00019942 0.000201813 0.000204217 0.000206634 0.000209067 0.000211517 0.000213986 0.000216476 +-0.000284605 -0.000130133 2.8313E-08 9.82959E-05 0.000162592 0.000197248 0.000212122 0.000219125 0.000223874 0.000227876 0.000231554 0.00023506 0.000238461 0.000241793 0.000245077 0.000248327 0.00025155 0.000254754 0.000257942 0.000261117 0.000264282 0.00026744 0.00027059 0.000273736 0.000276878 0.000280018 0.000283157 0.000286297 0.00028944 0.000292587 0.000295741 0.000298903 0.000302077 0.000305264 0.000308466 0.000311687 0.000314929 0.000318195 0.000321487 +-0.000328825 -0.000153971 4.02565E-08 0.000123496 0.00021163 0.000267272 0.000296358 0.000309919 0.000317666 0.000323517 0.000328619 0.00033335 0.000337864 0.000342238 0.000346515 0.000350722 0.000354877 0.00035899 0.00036307 0.000367124 0.000371155 0.000375168 0.000379166 0.00038315 0.000387123 0.000391088 0.000395046 0.000399001 0.000402954 0.000406907 0.000410865 0.000414829 0.000418804 0.000422791 0.000426795 0.000430819 0.000434867 0.000438941 0.000443047 +-0.000369662 -0.00017604 5.65271E-08 0.000147298 0.00025866 0.000336289 0.000383768 0.000408613 0.000421658 0.000430288 0.000437266 0.000443491 0.000449301 0.000454853 0.000460228 0.000465478 0.000470633 0.000475714 0.000480737 0.000485712 0.000490648 0.000495549 0.000500422 0.00050527 0.000510097 0.000514906 0.000519701 0.000524484 0.000529259 0.000534029 0.000538798 0.000543569 0.000548348 0.000553138 0.000557943 0.000562768 0.000567618 0.000572498 0.000577411 +-0.000407173 -0.000196308 7.84632E-08 0.000169405 0.000302782 0.000401998 0.0004695 0.000509884 0.000531793 0.000544842 0.000554425 0.00056253 0.000569879 0.000576775 0.000583373 0.000589761 0.000595992 0.000602103 0.000608119 0.000614057 0.000619932 0.000625751 0.000631524 0.000637257 0.000642955 0.000648622 0.000654264 0.000659884 0.000665487 0.000671077 0.000676658 0.000682237 0.000687817 0.000693404 0.000699004 0.000704622 0.000710264 0.000715936 0.000721644 +-0.000441508 -0.000214837 1.07792E-07 0.000189764 0.00034371 0.000463519 0.000551072 0.000609316 0.000643969 0.000664044 0.000677431 0.000688001 0.000697221 0.000705681 0.000713657 0.000721298 0.000728695 0.000735906 0.000742972 0.000749919 0.00075677 0.000763539 0.000770237 0.000776875 0.000783461 0.00079 0.000796499 0.000802963 0.000809399 0.000815811 0.000822205 0.000828588 0.000834966 0.000841344 0.000847729 0.00085413 0.000860551 0.000867001 0.000873487 +-0.000472858 -0.000231725 1.46732E-07 0.000208425 0.000381442 0.000520613 0.000627507 0.000704222 0.000754401 0.000784742 0.000803823 0.000817761 0.000829331 0.000839646 0.000849198 0.000858237 0.000866908 0.000875305 0.000883487 0.000891497 0.000899368 0.00090712 0.000914774 0.00092234 0.000929832 0.000937258 0.000944626 0.000951944 0.000959218 0.000966455 0.000973663 0.000980849 0.000988019 0.000995182 0.00100235 0.00100952 0.00101671 0.00102392 0.00103117 +-0.000501421 -0.00024708 1.98122E-07 0.000225485 0.000416097 0.000573328 0.000698546 0.000793396 0.000860336 0.000903829 0.000931152 0.000949836 0.000964454 0.000977024 0.000988408 0.000999026 0.00100911 0.00101879 0.00102817 0.00103731 0.00104625 0.00105503 0.00106367 0.00107219 0.00108061 0.00108894 0.00109719 0.00110538 0.0011135 0.00112156 0.00112959 0.00113758 0.00114554 0.00115348 0.00116141 0.00116935 0.00117729 0.00118526 0.00119325 +-0.000527396 -0.000261013 2.65584E-07 0.000241056 0.000447851 0.000621842 0.000764256 0.000876468 0.00096029 0.00101869 0.00105692 0.00108228 0.00110097 0.00111635 0.00112991 0.00114233 0.00115399 0.00116509 0.00117576 0.0011861 0.00119618 0.00120603 0.0012157 0.00122521 0.00123459 0.00124384 0.001253 0.00126206 0.00127103 0.00127994 0.00128878 0.00129758 0.00130633 0.00131505 0.00132375 0.00133244 0.00134113 0.00134983 0.00135856 +-0.000550973 -0.000273627 3.53719E-07 0.000255252 0.000476897 0.000666391 0.00082485 0.000953472 0.0010537 0.00112761 0.0011788 0.00121311 0.00123732 0.00125629 0.00127247 0.00128699 0.00130043 0.00131309 0.00132517 0.00133681 0.00134809 0.00135908 0.00136983 0.00138037 0.00139073 0.00140094 0.00141101 0.00142097 0.00143082 0.00144057 0.00145024 0.00145985 0.00146939 0.00147889 0.00148835 0.00149779 0.00150722 0.00151665 0.0015261 +-0.000572328 -0.000285019 4.68366E-07 0.000268187 0.000503435 0.000707233 0.000880608 0.00102463 0.0011405 0.00122981 0.00129503 0.00134036 0.00137192 0.00139555 0.00141496 0.00143196 0.00144742 0.00146184 0.00147547 0.00148851 0.00150109 0.00151328 0.00152516 0.00153677 0.00154816 0.00155936 0.00157038 0.00158125 0.00159198 0.0016026 0.00161311 0.00162353 0.00163387 0.00164415 0.00165438 0.00166457 0.00167473 0.00168489 0.00169505 +-0.000591625 -0.000295279 6.16907E-07 0.000279972 0.000527661 0.000744634 0.000931836 0.00109024 0.00122089 0.00132508 0.00140458 0.00146235 0.00150314 0.00153286 0.00155632 0.00157627 0.00159409 0.00161047 0.00162583 0.0016404 0.00165437 0.00166785 0.00168093 0.00169367 0.00170613 0.00171835 0.00173034 0.00174216 0.0017538 0.00176529 0.00177666 0.00178791 0.00179906 0.00181012 0.00182111 0.00183205 0.00184295 0.00185382 0.00186468 +-0.000609012 -0.000304485 8.08659E-07 0.000290712 0.000549764 0.000778851 0.000978847 0.00115064 0.00129518 0.00141352 0.00150706 0.00157791 0.0016295 0.00166692 0.00169551 0.00171905 0.00173962 0.00175824 0.00177552 0.00179178 0.00180726 0.00182212 0.00183647 0.00185041 0.00186399 0.00187727 0.00189028 0.00190306 0.00191564 0.00192803 0.00194027 0.00195236 0.00196432 0.00197618 0.00198794 0.00199963 0.00201126 0.00202285 0.00203441 +-0.000624621 -0.000312706 1.05536E-06 0.000300508 0.000569926 0.000810136 0.00102195 0.00120619 0.0013637 0.00149543 0.00160249 0.00168646 0.00174981 0.00179647 0.00183149 0.00185945 0.00188325 0.00190446 0.00192388 0.00194201 0.00195914 0.00197549 0.00199122 0.00200642 0.00202118 0.00203557 0.00204963 0.00206342 0.00207696 0.00209028 0.0021034 0.00211635 0.00212914 0.0021418 0.00215434 0.00216679 0.00217916 0.00219146 0.00220372 +-0.000638569 -0.000320001 1.37176E-06 0.000309456 0.000588319 0.000838731 0.00106145 0.00125723 0.00142686 0.00157115 0.00169108 0.00178788 0.00186335 0.00192038 0.00196322 0.00199662 0.0020243 0.00204848 0.00207034 0.00209054 0.00210948 0.00212746 0.00214465 0.00216119 0.00217721 0.00219277 0.00220794 0.00222277 0.0022373 0.00225157 0.00226561 0.00227943 0.00229307 0.00230655 0.00231988 0.00233309 0.0023462 0.00235923 0.00237219 +-0.000650957 -0.000326418 1.77636E-06 0.000317652 0.000605108 0.000864865 0.00109763 0.0013041 0.001485 0.00164108 0.00177317 0.00188229 0.00196982 0.00203787 0.00208972 0.00212972 0.00216208 0.00218974 0.00221436 0.00223687 0.00225781 0.00227755 0.00229633 0.00231432 0.00233166 0.00234846 0.00236478 0.0023807 0.00239627 0.00241152 0.0024265 0.00244123 0.00245573 0.00247004 0.00248418 0.00249817 0.00251202 0.00252578 0.00253944 +-0.000661865 -0.000331992 2.29233E-06 0.000325188 0.000620452 0.000888759 0.00113077 0.00134713 0.00153852 0.00170561 0.00184915 0.00196999 0.00206925 0.00214851 0.00221022 0.00225796 0.00229592 0.00232767 0.00235545 0.00238055 0.00240371 0.00242537 0.00244587 0.00246541 0.00248417 0.00250228 0.00251982 0.00253688 0.00255353 0.0025698 0.00258575 0.0026014 0.0026168 0.00263196 0.00264692 0.0026617 0.00267631 0.0026908 0.00270518 +-0.000671361 -0.000336749 2.94864E-06 0.000332156 0.000634503 0.000910623 0.00116113 0.00138664 0.00158776 0.00176512 0.0019194 0.00205134 0.00216186 0.0022522 0.00232418 0.0023806 0.00242517 0.00246174 0.00249316 0.00252118 0.00254678 0.00257057 0.00259293 0.00261415 0.00263442 0.00265392 0.00267275 0.00269101 0.00270878 0.00272612 0.00274308 0.00275969 0.002776 0.00279204 0.00280784 0.00282342 0.00283881 0.00285404 0.00286914 +-0.000679489 -0.000340697 3.78142E-06 0.000338651 0.000647413 0.000930662 0.00118897 0.00142292 0.00163307 0.00182001 0.00198434 0.00212674 0.00224799 0.00234908 0.00243141 0.0024971 0.00254922 0.00259144 0.00262708 0.00265839 0.00268671 0.00271282 0.00273721 0.00276024 0.00278215 0.00280312 0.00282332 0.00284285 0.0028618 0.00288025 0.00289825 0.00291586 0.00293311 0.00295005 0.00296671 0.00298311 0.0029993 0.00301529 0.00303111 +-0.000686273 -0.000343833 4.8357E-06 0.00034477 0.000659331 0.000949075 0.00121454 0.00145627 0.00167478 0.00187063 0.00204437 0.00219661 0.00232801 0.00243942 0.00253194 0.00260718 0.00266755 0.00271627 0.00275679 0.00279185 0.00282319 0.00285185 0.00287846 0.00290344 0.0029271 0.00294967 0.00297132 0.00299218 0.00301237 0.00303198 0.00305107 0.00306971 0.00308794 0.00310581 0.00312336 0.00314061 0.0031576 0.00317437 0.00319094 +-0.000691716 -0.000346133 6.16745E-06 0.000350619 0.000670408 0.000966062 0.00123808 0.00148698 0.00171323 0.00191737 0.00209989 0.00226134 0.00240234 0.00252358 0.00262597 0.00271078 0.00277984 0.00283581 0.00288192 0.00292123 0.00295596 0.00298742 0.00301645 0.00304355 0.00306909 0.00309336 0.00311655 0.00313884 0.00316034 0.00318116 0.0032014 0.00322111 0.00324036 0.00325919 0.00327764 0.00329577 0.00331359 0.00333115 0.00334848 +-0.000695793 -0.000347555 7.84619E-06 0.000356311 0.000680802 0.00098182 0.00125984 0.00151532 0.00174874 0.00196056 0.00215127 0.00232136 0.00247138 0.00260195 0.00271383 0.00280801 0.00288594 0.0029497 0.00300212 0.00304628 0.00308478 0.00311933 0.00315098 0.00318038 0.00320796 0.00323405 0.00325889 0.00328267 0.00330556 0.00332767 0.0033491 0.00336993 0.00339023 0.00341006 0.00342946 0.00344848 0.00346716 0.00348554 0.00350364 +-0.000698447 -0.000348033 9.95809E-06 0.000361971 0.000690679 0.000996555 0.00128004 0.00154158 0.00178161 0.00200057 0.0021989 0.00237708 0.00253558 0.00267497 0.00279588 0.00289915 0.0029859 0.00305779 0.00311711 0.00316673 0.00320946 0.00324742 0.00328193 0.0033138 0.00334356 0.0033716 0.0033982 0.00342359 0.00344795 0.00347141 0.00349409 0.00351609 0.00353749 0.00355835 0.00357873 0.00359868 0.00361824 0.00363746 0.00365636 +-0.000699591 -0.000347473 1.26097E-05 0.000367743 0.000700216 0.00101048 0.00129895 0.00156605 0.00181217 0.00203774 0.00224318 0.0024289 0.00259536 0.00274305 0.00287255 0.00298454 0.00307994 0.00316004 0.00322669 0.00328236 0.00332984 0.00337155 0.00340916 0.0034437 0.00347581 0.00350595 0.00353443 0.00356152 0.00358742 0.00361231 0.00363632 0.00365954 0.00368209 0.00370403 0.00372543 0.00374633 0.0037668 0.00378688 0.0038066 +*table -0.6 +-2.05703E-10 -4.56135E-11 -2.094E-11 -1.72497E-11 -1.67573E-11 -1.65099E-11 -1.62922E-11 -1.60815E-11 -1.58728E-11 -1.56643E-11 -1.54554E-11 -1.52457E-11 -1.5035E-11 -1.48232E-11 -1.46103E-11 -1.43963E-11 -1.41811E-11 -1.39647E-11 -1.37471E-11 -1.35283E-11 -1.33084E-11 -1.30872E-11 -1.28649E-11 -1.26412E-11 -1.24163E-11 -1.21901E-11 -1.19624E-11 -1.17333E-11 -1.15026E-11 -1.12701E-11 -1.10358E-11 -1.07994E-11 -1.05606E-11 -1.03193E-11 -1.00751E-11 -9.82744E-12 -9.57589E-12 -9.31975E-12 -9.05819E-12 +-8.69028E-10 -1.34565E-10 -1.9549E-11 -2.1956E-12 1.19884E-13 1.28344E-12 2.30698E-12 3.29763E-12 4.2792E-12 5.25956E-12 6.24203E-12 7.2282E-12 8.21892E-12 9.21466E-12 1.02157E-11 1.12221E-11 1.22341E-11 1.32515E-11 1.42746E-11 1.53031E-11 1.63373E-11 1.7377E-11 1.84224E-11 1.94736E-11 2.05308E-11 2.15941E-11 2.26638E-11 2.37403E-11 2.4824E-11 2.59154E-11 2.70152E-11 2.8124E-11 2.92428E-11 3.03726E-11 3.15148E-11 3.2671E-11 3.38431E-11 3.50336E-11 3.62454E-11 +-3.86648E-09 -5.51885E-10 -1.91767E-11 6.22082E-11 7.30674E-11 7.85241E-11 8.33241E-11 8.79699E-11 9.2573E-11 9.71705E-11 1.01778E-10 1.06402E-10 1.11049E-10 1.15718E-10 1.20412E-10 1.25132E-10 1.29877E-10 1.34649E-10 1.39446E-10 1.44269E-10 1.49118E-10 1.53993E-10 1.58895E-10 1.63824E-10 1.6878E-10 1.73765E-10 1.7878E-10 1.83826E-10 1.88904E-10 1.94018E-10 1.9917E-10 2.04362E-10 2.09599E-10 2.14884E-10 2.20224E-10 2.25624E-10 2.31093E-10 2.36638E-10 2.42273E-10 +-1.69369E-08 -2.45367E-09 -1.87866E-11 3.60763E-10 4.11405E-10 4.36851E-10 4.59235E-10 4.80898E-10 5.02363E-10 5.23801E-10 5.45285E-10 5.6685E-10 5.88514E-10 6.10287E-10 6.32175E-10 6.54182E-10 6.76308E-10 6.98555E-10 7.20923E-10 7.43411E-10 7.6602E-10 7.88751E-10 8.11604E-10 8.34582E-10 8.57688E-10 8.80926E-10 9.043E-10 9.27817E-10 9.51485E-10 9.75314E-10 9.99313E-10 1.0235E-09 1.04788E-09 1.07248E-09 1.09732E-09 1.12242E-09 1.14781E-09 1.17354E-09 1.19964E-09 +-7.05138E-08 -1.08581E-08 -1.71567E-11 1.73256E-09 1.96602E-09 2.0833E-09 2.18647E-09 2.28631E-09 2.38523E-09 2.48403E-09 2.58304E-09 2.68242E-09 2.78225E-09 2.88259E-09 2.98345E-09 3.08486E-09 3.18682E-09 3.28934E-09 3.3924E-09 3.49602E-09 3.6002E-09 3.70493E-09 3.81023E-09 3.91609E-09 4.02254E-09 4.12959E-09 4.23727E-09 4.34559E-09 4.4546E-09 4.56433E-09 4.67483E-09 4.78616E-09 4.89837E-09 5.01155E-09 5.12577E-09 5.24114E-09 5.35778E-09 5.47582E-09 5.59544E-09 +-2.69481E-07 -4.59752E-08 -1.17066E-11 7.8694E-09 8.92103E-09 9.44906E-09 9.91343E-09 1.03628E-08 1.08081E-08 1.12527E-08 1.16983E-08 1.21456E-08 1.25948E-08 1.30464E-08 1.35002E-08 1.39566E-08 1.44154E-08 1.48766E-08 1.53404E-08 1.58066E-08 1.62753E-08 1.67464E-08 1.72201E-08 1.76964E-08 1.81752E-08 1.86567E-08 1.9141E-08 1.96282E-08 2.01184E-08 2.06118E-08 2.11086E-08 2.1609E-08 2.21133E-08 2.26218E-08 2.31347E-08 2.36526E-08 2.41759E-08 2.47051E-08 2.52408E-08 +-9.20344E-07 -1.79674E-07 1.51454E-11 3.39839E-08 3.85202E-08 4.07932E-08 4.27911E-08 4.47242E-08 4.66392E-08 4.85516E-08 5.04678E-08 5.23909E-08 5.43228E-08 5.62641E-08 5.82156E-08 6.01773E-08 6.21495E-08 6.41323E-08 6.61255E-08 6.81293E-08 7.01437E-08 7.21686E-08 7.42042E-08 7.62505E-08 7.8308E-08 8.03767E-08 8.24572E-08 8.45499E-08 8.66554E-08 8.87744E-08 9.09076E-08 9.3056E-08 9.52206E-08 9.74026E-08 9.96032E-08 1.01824E-07 1.04067E-07 1.06333E-07 1.08626E-07 +-2.80821E-06 -6.28196E-07 1.58727E-10 1.35952E-07 1.54151E-07 1.63206E-07 1.7115E-07 1.78831E-07 1.86439E-07 1.94034E-07 2.01643E-07 2.09279E-07 2.16948E-07 2.24654E-07 2.32399E-07 2.40185E-07 2.48011E-07 2.55878E-07 2.63786E-07 2.71735E-07 2.79725E-07 2.87756E-07 2.95828E-07 3.03943E-07 3.121E-07 3.20302E-07 3.28549E-07 3.36843E-07 3.45187E-07 3.53583E-07 3.62035E-07 3.70544E-07 3.79117E-07 3.87755E-07 3.96466E-07 4.05253E-07 4.14122E-07 4.23082E-07 4.32138E-07 +-7.80612E-06 -1.94749E-06 5.98653E-10 4.87773E-07 5.53935E-07 5.86114E-07 6.14173E-07 6.41257E-07 6.68057E-07 6.94801E-07 7.21586E-07 7.48456E-07 7.75438E-07 8.02543E-07 8.2978E-07 8.57153E-07 8.84665E-07 9.12315E-07 9.40104E-07 9.68032E-07 9.96099E-07 1.02431E-06 1.05265E-06 1.08115E-06 1.10978E-06 1.13857E-06 1.16751E-06 1.19662E-06 1.22589E-06 1.25534E-06 1.28498E-06 1.31482E-06 1.34487E-06 1.37514E-06 1.40566E-06 1.43643E-06 1.46749E-06 1.49884E-06 1.53051E-06 +-1.98008E-05 -5.41477E-06 1.36291E-09 1.548E-06 1.76694E-06 1.86701E-06 1.95279E-06 2.03518E-06 2.11652E-06 2.19761E-06 2.27875E-06 2.3601E-06 2.44175E-06 2.52374E-06 2.6061E-06 2.68884E-06 2.77197E-06 2.8555E-06 2.93942E-06 3.02374E-06 3.10846E-06 3.19357E-06 3.27909E-06 3.36503E-06 3.45138E-06 3.53816E-06 3.62539E-06 3.71309E-06 3.80127E-06 3.88998E-06 3.97923E-06 4.06906E-06 4.1595E-06 4.25061E-06 4.34242E-06 4.43497E-06 4.52834E-06 4.62256E-06 4.71771E-06 +-4.42139E-05 -1.34396E-05 2.44598E-09 4.39229E-06 5.08678E-06 5.36383E-06 5.59112E-06 5.8067E-06 6.01849E-06 6.22902E-06 6.43933E-06 6.64993E-06 6.8611E-06 7.07298E-06 7.28567E-06 7.49921E-06 7.71365E-06 7.92899E-06 8.14525E-06 8.36243E-06 8.58055E-06 8.7996E-06 9.01961E-06 9.24059E-06 9.46256E-06 9.68557E-06 9.90966E-06 1.01349E-05 1.03613E-05 1.05889E-05 1.08179E-05 1.10484E-05 1.12803E-05 1.15139E-05 1.17492E-05 1.19864E-05 1.22256E-05 1.24669E-05 1.27105E-05 +-8.35765E-05 -2.86152E-05 3.95074E-09 1.11735E-05 1.34205E-05 1.41432E-05 1.46784E-05 1.51713E-05 1.565E-05 1.61231E-05 1.65941E-05 1.70645E-05 1.75353E-05 1.80071E-05 1.848E-05 1.89544E-05 1.94302E-05 1.99077E-05 2.03868E-05 2.08676E-05 2.13501E-05 2.18344E-05 2.23205E-05 2.28084E-05 2.32983E-05 2.37902E-05 2.42841E-05 2.47804E-05 2.5279E-05 2.57802E-05 2.62842E-05 2.67911E-05 2.73013E-05 2.78148E-05 2.83321E-05 2.88533E-05 2.93788E-05 2.99088E-05 3.04437E-05 +-0.000133781 -5.09804E-05 6.09775E-09 2.46018E-05 3.17245E-05 3.36629E-05 3.48285E-05 3.58336E-05 3.67862E-05 3.77166E-05 3.86366E-05 3.95514E-05 4.04639E-05 4.13759E-05 4.22883E-05 4.32018E-05 4.41168E-05 4.50337E-05 4.59526E-05 4.68736E-05 4.7797E-05 4.87228E-05 4.96512E-05 5.05823E-05 5.15163E-05 5.24534E-05 5.33938E-05 5.43379E-05 5.52859E-05 5.62382E-05 5.71953E-05 5.81575E-05 5.91253E-05 6.00993E-05 6.10799E-05 6.20678E-05 6.30635E-05 6.40676E-05 6.50808E-05 +-0.000188164 -7.77476E-05 9.21936E-09 4.53636E-05 6.42395E-05 6.98154E-05 7.23168E-05 7.4202E-05 7.59031E-05 7.75283E-05 7.91156E-05 8.06819E-05 8.22361E-05 8.37831E-05 8.53259E-05 8.68666E-05 8.84065E-05 8.99465E-05 9.14872E-05 9.30293E-05 9.4573E-05 9.61187E-05 9.76667E-05 9.92175E-05 0.000100771 0.000102329 0.00010389 0.000105456 0.000107027 0.000108604 0.000110188 0.000111779 0.000113379 0.000114988 0.000116607 0.000118238 0.000119881 0.000121538 0.000123209 +-0.000242178 -0.00010584 1.37387E-08 7.10848E-05 0.000109425 0.000124371 0.000130019 0.000133439 0.000136256 0.000138844 0.000141322 0.000143737 0.000146115 0.000148468 0.000150804 0.000153128 0.000155445 0.000157756 0.000160063 0.000162368 0.000164671 0.000166974 0.000169276 0.00017158 0.000173885 0.000176192 0.000178503 0.000180817 0.000183138 0.000185464 0.000187799 0.000190143 0.000192497 0.000194864 0.000197244 0.00019964 0.000202053 0.000204486 0.000206938 +-0.000293615 -0.0001333 2.01702E-08 9.8629E-05 0.000161038 0.000192749 0.000205712 0.000212056 0.000216569 0.000220456 0.000224061 0.000227514 0.000230874 0.000234172 0.000237428 0.000240653 0.000243855 0.00024704 0.000250212 0.000253373 0.000256526 0.000259672 0.000262812 0.00026595 0.000269084 0.000272218 0.000275352 0.000278488 0.000281628 0.000284773 0.000287926 0.000291088 0.000294262 0.00029745 0.000300654 0.000303878 0.000307123 0.000310392 0.000313688 +-0.000341592 -0.000159192 2.91572E-08 0.000125846 0.000213704 0.000267095 0.000293552 0.000305741 0.000313026 0.000318711 0.000323741 0.000328438 0.000332936 0.000337307 0.000341589 0.000345807 0.000349976 0.000354108 0.00035821 0.000362288 0.000366346 0.000370388 0.000374416 0.000378432 0.000382439 0.000386439 0.000390433 0.000394426 0.000398418 0.000402412 0.000406411 0.000410418 0.000414437 0.00041847 0.00042252 0.000426592 0.000430688 0.000434813 0.00043897 +-0.000385858 -0.000183167 4.15262E-08 0.000151663 0.000264555 0.000341295 0.00038639 0.00040912 0.000421234 0.000429561 0.000436446 0.000442649 0.00044847 0.00045405 0.000459465 0.000464762 0.00046997 0.000475109 0.000480194 0.000485234 0.000490237 0.000495209 0.000500154 0.000505076 0.000509979 0.000514866 0.000519739 0.000524603 0.00052946 0.000534314 0.000539169 0.000544028 0.000548896 0.000553776 0.000558673 0.000563593 0.000568538 0.000573515 0.000578527 +-0.000426445 -0.000205157 5.83484E-08 0.000175656 0.000312354 0.00041227 0.000478394 0.000516514 0.00053686 0.000549311 0.000558724 0.000566806 0.000574186 0.000581141 0.000587813 0.000594284 0.000600606 0.000606814 0.000612931 0.000618974 0.000624957 0.000630887 0.000636774 0.000642622 0.000648437 0.000654224 0.000659987 0.00066573 0.000671458 0.000677174 0.000682885 0.000688593 0.000694306 0.000700028 0.000705764 0.000711521 0.000717303 0.000723118 0.000728972 +-0.000463513 -0.000225221 8.10101E-08 0.000197724 0.000356678 0.000478788 0.000566302 0.000622872 0.000655583 0.000674588 0.000687626 0.000698137 0.000707401 0.000715945 0.000724027 0.000731786 0.000739311 0.000746657 0.000753861 0.000760953 0.000767951 0.00077487 0.000781721 0.000788515 0.000795258 0.000801956 0.000808617 0.000815245 0.000821845 0.000828425 0.000834988 0.000841543 0.000848093 0.000854647 0.000861211 0.000867792 0.000874397 0.000881034 0.000887709 +-0.000497271 -0.000243462 1.11298E-07 0.000217908 0.000397477 0.000540473 0.000648745 0.000724832 0.000773268 0.000802098 0.000820508 0.000834284 0.000845888 0.000856308 0.000865995 0.000875186 0.000884021 0.000892587 0.000900945 0.000909137 0.000917191 0.000925132 0.000932976 0.000940736 0.000948423 0.000956047 0.000963614 0.000971133 0.000978611 0.000986054 0.000993469 0.00100086 0.00100825 0.00101562 0.001023 0.0010304 0.00103781 0.00104525 0.00105273 +-0.000527945 -0.000260004 1.51505E-07 0.00023631 0.000434868 0.000597336 0.000725314 0.000820753 0.000886664 0.000928554 0.000954809 0.000973128 0.00098773 0.00100041 0.00101196 0.00102276 0.00103304 0.00104293 0.00105252 0.00106187 0.00107103 0.00108004 0.0010889 0.00109766 0.00110631 0.00111487 0.00112336 0.00113178 0.00114014 0.00114845 0.00115671 0.00116495 0.00117316 0.00118135 0.00118954 0.00119773 0.00120593 0.00121416 0.00122242 +-0.00055576 -0.000274973 2.04564E-07 0.000253051 0.000469039 0.000649555 0.000796028 0.000910069 0.000993852 0.00105103 0.00108794 0.00111264 0.0011312 0.00114667 0.00116041 0.00117305 0.00118493 0.00119627 0.00120719 0.00121778 0.00122811 0.00123822 0.00124815 0.00125793 0.00126757 0.00127709 0.00128651 0.00129584 0.00130509 0.00131427 0.00132339 0.00133247 0.0013415 0.00135051 0.00135949 0.00136847 0.00137746 0.00138646 0.00139549 +-0.000580933 -0.000288487 2.74213E-07 0.00026826 0.000500205 0.000697387 0.000861103 0.000992746 0.00109402 0.00116745 0.00121742 0.00125078 0.00127465 0.00129365 0.00131001 0.00132478 0.00133847 0.00135141 0.00136377 0.00137569 0.00138726 0.00139854 0.00140958 0.00142042 0.00143108 0.00144158 0.00145196 0.00146222 0.00147237 0.00148243 0.00149241 0.00150232 0.00151218 0.001522 0.00153178 0.00154154 0.0015513 0.00156106 0.00157084 +-0.000603666 -0.000300661 3.65207E-07 0.000282065 0.000528587 0.000741117 0.000920841 0.001069 0.001187 0.00127673 0.0013412 0.00138549 0.00141645 0.00143999 0.00145957 0.00147682 0.00149259 0.00150731 0.00152125 0.00153461 0.0015475 0.00156002 0.00157222 0.00158416 0.00159588 0.0016074 0.00161876 0.00162996 0.00164103 0.00165198 0.00166283 0.00167359 0.00168427 0.0016949 0.00170547 0.00171601 0.00172653 0.00173705 0.00174757 +-0.000624148 -0.000311596 4.83569E-07 0.000294588 0.000554406 0.000781039 0.000975579 0.00113915 0.00127296 0.00137852 0.00145799 0.00151493 0.00155495 0.00158439 0.00160795 0.00162817 0.00164631 0.00166304 0.00167874 0.00169367 0.00170799 0.00172182 0.00173525 0.00174835 0.00176117 0.00177374 0.0017861 0.00179827 0.00181028 0.00182214 0.00183387 0.00184548 0.001857 0.00186843 0.0018798 0.00189112 0.00190239 0.00191365 0.00192491 +-0.000642551 -0.000321387 6.36924E-07 0.000305944 0.000577872 0.000817442 0.00102567 0.00120356 0.00135223 0.00147289 0.00156722 0.00163773 0.00168858 0.00172553 0.0017541 0.00177789 0.00179879 0.0018178 0.00183545 0.0018521 0.00186797 0.00188321 0.00189795 0.00191228 0.00192624 0.00193991 0.00195331 0.00196648 0.00197944 0.00199223 0.00200485 0.00201733 0.00202969 0.00204194 0.00205411 0.0020662 0.00207824 0.00209024 0.00210222 +-0.000659029 -0.000330115 8.3489E-07 0.000316245 0.000599185 0.000850605 0.00107144 0.00126264 0.00142517 0.00156012 0.0016688 0.0017531 0.00181599 0.00186209 0.00189694 0.00192508 0.00194924 0.00197085 0.0019907 0.00200925 0.0020268 0.00204357 0.00205971 0.00207532 0.0020905 0.00210531 0.00211979 0.00213399 0.00214794 0.00216167 0.00217521 0.00218858 0.00220179 0.00221487 0.00222784 0.00224071 0.0022535 0.00226624 0.00227894 +-0.000673721 -0.000337852 1.08958E-06 0.000325597 0.000618537 0.000880796 0.00111324 0.00131675 0.00149221 0.00164057 0.00176295 0.00186081 0.0019363 0.00199289 0.00203543 0.0020689 0.00209692 0.00212154 0.00214385 0.00216451 0.00218392 0.00220234 0.00221998 0.00223697 0.00225343 0.00226943 0.00228504 0.00230031 0.00231528 0.00232999 0.00234447 0.00235873 0.00237282 0.00238674 0.00240051 0.00241417 0.00242773 0.00244121 0.00245463 +-0.000686746 -0.00034466 1.41623E-06 0.0003341 0.000636108 0.000908267 0.00115139 0.00136628 0.00155375 0.00171468 0.00185001 0.00196093 0.00204908 0.002117 0.00216854 0.0022085 0.00224113 0.00226924 0.00229436 0.00231737 0.00233881 0.00235904 0.0023783 0.00239677 0.00241458 0.00243184 0.00244864 0.00246502 0.00248105 0.00249677 0.00251221 0.0025274 0.00254237 0.00255714 0.00257174 0.0025862 0.00260053 0.00261475 0.0026289 +-0.000698208 -0.000350587 1.83393E-06 0.000341851 0.000652069 0.00093326 0.00118618 0.00141158 0.00161021 0.00178285 0.00193037 0.00205375 0.00215428 0.00223387 0.00229542 0.00234304 0.0023812 0.00241338 0.0024417 0.00246735 0.00249104 0.00251324 0.00253425 0.00255431 0.00257357 0.00259217 0.00261021 0.00262776 0.00264489 0.00266165 0.00267808 0.00269422 0.0027101 0.00272575 0.00274119 0.00275646 0.00277156 0.00278654 0.00280142 +-0.000708192 -0.00035567 2.36661E-06 0.000348946 0.000666584 0.000956003 0.00121791 0.00145299 0.00166196 0.00184554 0.00200448 0.00213964 0.0022521 0.0023433 0.00241544 0.00247179 0.00251647 0.00255343 0.0025854 0.00261402 0.00264021 0.00266457 0.00268748 0.00270925 0.00273006 0.00275008 0.00276943 0.00278821 0.00280649 0.00282434 0.0028418 0.00285892 0.00287573 0.00289228 0.00290858 0.00292467 0.00294057 0.00295631 0.00297192 +-0.000716764 -0.000359934 3.04416E-06 0.00035548 0.000679811 0.000976714 0.00124685 0.00149086 0.0017094 0.00190314 0.00207276 0.00221904 0.00234286 0.0024454 0.00252831 0.00259411 0.00264631 0.00268886 0.00272504 0.00275699 0.00278595 0.00281268 0.00283768 0.00286129 0.00288376 0.0029053 0.00292605 0.00294612 0.0029656 0.00298458 0.00300311 0.00302125 0.00303903 0.00305649 0.00307367 0.0030906 0.00310731 0.00312383 0.00314018 +-0.000723969 -0.000363389 3.90388E-06 0.000361551 0.000691907 0.000995606 0.00127326 0.00152549 0.00175288 0.00195606 0.00213566 0.00229237 0.00242697 0.00254041 0.002634 0.00270965 0.00277018 0.00281917 0.0028602 0.00289592 0.00292796 0.0029573 0.00298456 0.00301017 0.00303444 0.00305759 0.00307982 0.00310126 0.00312201 0.00314217 0.00316182 0.003181 0.00319978 0.00321819 0.00323628 0.00325407 0.00327161 0.00328892 0.00330603 +-0.000729833 -0.000366028 4.99225E-06 0.000367258 0.000703023 0.00101288 0.00129741 0.00155718 0.00179275 0.0020047 0.0021936 0.00236009 0.00250485 0.00262869 0.00273267 0.00281827 0.00288768 0.00294392 0.0029905 0.00303048 0.00306595 0.00309816 0.00312789 0.00315567 0.00318187 0.00320676 0.00323056 0.00325345 0.00327554 0.00329694 0.00331775 0.00333803 0.00335784 0.00337724 0.00339625 0.00341493 0.00343332 0.00345143 0.00346932 +-0.000734356 -0.000367828 6.36706E-06 0.00037271 0.000713316 0.00102875 0.00131954 0.00158623 0.00182935 0.00204942 0.00224699 0.00242263 0.00257695 0.00271066 0.00282464 0.00292005 0.00299861 0.00306274 0.0031156 0.00316041 0.00319968 0.00323504 0.00326746 0.00329759 0.00332587 0.00335263 0.00337812 0.00340253 0.00342604 0.00344875 0.00347078 0.0034922 0.00351309 0.0035335 0.00355348 0.00357307 0.00359233 0.00361127 0.00362995 +-0.000737509 -0.000368744 8.10005E-06 0.000378021 0.000722946 0.00104341 0.0013399 0.00161294 0.00186301 0.0020906 0.00229623 0.00248042 0.00264371 0.00278675 0.00291027 0.00301523 0.00310297 0.00317541 0.00323519 0.00328543 0.00332895 0.00336776 0.00340312 0.00343579 0.00346631 0.00349506 0.00352235 0.00354841 0.00357341 0.0035975 0.00362081 0.00364343 0.00366543 0.00368689 0.00370787 0.00372841 0.00374856 0.00376836 0.00378785 +-0.000739236 -0.000368708 1.02801E-05 0.000383323 0.000732084 0.00105707 0.00135874 0.00163758 0.00189405 0.00212861 0.00234172 0.00253388 0.00270559 0.00285742 0.00299 0.00310415 0.00320092 0.00328184 0.00334905 0.00340533 0.00345358 0.00349619 0.00353472 0.00357013 0.00360306 0.00363397 0.00366318 0.00369098 0.00371756 0.00374312 0.00376777 0.00379164 0.00381481 0.00383737 0.00385938 0.0038809 0.00390198 0.00392266 0.00394298 +-0.000739443 -0.000367621 1.30174E-05 0.000388761 0.000740912 0.00106995 0.00137632 0.00166046 0.00192281 0.00216379 0.00238385 0.00258345 0.00276303 0.00292312 0.00306429 0.00318721 0.00329276 0.00338216 0.0034571 0.00351994 0.00357345 0.00362022 0.00366219 0.00370055 0.00373607 0.00376927 0.00380054 0.00383019 0.00385846 0.00388555 0.00391163 0.00393681 0.0039612 0.00398491 0.00400799 0.00403053 0.00405256 0.00407414 0.00409533 +*table -0.4 +-7.80369E-10 -1.14276E-10 -9.73359E-12 6.05607E-12 8.15255E-12 9.2099E-12 1.01401E-11 1.10401E-11 1.19318E-11 1.28222E-11 1.37145E-11 1.46101E-11 1.55099E-11 1.64141E-11 1.73232E-11 1.82371E-11 1.91561E-11 2.008E-11 2.1009E-11 2.19431E-11 2.28822E-11 2.38265E-11 2.47759E-11 2.57307E-11 2.66908E-11 2.76567E-11 2.86285E-11 2.96066E-11 3.05914E-11 3.15835E-11 3.25835E-11 3.35921E-11 3.46103E-11 3.56393E-11 3.66805E-11 3.77356E-11 3.88067E-11 3.98966E-11 4.10086E-11 +-3.42743E-09 -4.82076E-10 -8.34252E-12 6.41106E-11 7.37304E-11 7.85821E-11 8.28501E-11 8.698E-11 9.10712E-11 9.51569E-11 9.92511E-11 1.03361E-10 1.07489E-10 1.11638E-10 1.15809E-10 1.20002E-10 1.24219E-10 1.28458E-10 1.3272E-10 1.37006E-10 1.41314E-10 1.45646E-10 1.50002E-10 1.54381E-10 1.58786E-10 1.63216E-10 1.67672E-10 1.72157E-10 1.76672E-10 1.81219E-10 1.858E-10 1.90419E-10 1.95079E-10 1.99786E-10 2.04543E-10 2.09358E-10 2.14239E-10 2.19196E-10 2.2424E-10 +-1.48032E-08 -2.1309E-09 -7.97026E-12 3.22919E-10 3.66852E-10 3.89007E-10 4.08497E-10 4.27357E-10 4.46039E-10 4.64696E-10 4.83392E-10 5.02157E-10 5.21008E-10 5.39953E-10 5.58999E-10 5.78147E-10 5.97399E-10 6.16757E-10 6.36219E-10 6.55786E-10 6.75458E-10 6.95237E-10 7.15122E-10 7.35117E-10 7.55224E-10 7.75446E-10 7.95788E-10 8.16257E-10 8.36859E-10 8.57603E-10 8.78499E-10 8.99561E-10 9.20803E-10 9.42242E-10 9.639E-10 9.85802E-10 1.00798E-09 1.03047E-09 1.05331E-09 +-6.11546E-08 -9.31332E-09 -7.58201E-12 1.48896E-09 1.68766E-09 1.78785E-09 1.87598E-09 1.96126E-09 2.04573E-09 2.13009E-09 2.21463E-09 2.29947E-09 2.38471E-09 2.47037E-09 2.55648E-09 2.64305E-09 2.73009E-09 2.81761E-09 2.9056E-09 2.99406E-09 3.08299E-09 3.17241E-09 3.2623E-09 3.35269E-09 3.44357E-09 3.53497E-09 3.62691E-09 3.71941E-09 3.8125E-09 3.90622E-09 4.00061E-09 4.09572E-09 4.19161E-09 4.28836E-09 4.38603E-09 4.48474E-09 4.58459E-09 4.68574E-09 4.78834E-09 +-2.34315E-07 -3.91418E-08 -5.9756E-12 6.63232E-09 7.51374E-09 7.95798E-09 8.34871E-09 8.72676E-09 9.10124E-09 9.4752E-09 9.84992E-09 1.0226E-08 1.06038E-08 1.09835E-08 1.13651E-08 1.17489E-08 1.21346E-08 1.25225E-08 1.29124E-08 1.33045E-08 1.36986E-08 1.40948E-08 1.44931E-08 1.48936E-08 1.52963E-08 1.57013E-08 1.61086E-08 1.65183E-08 1.69306E-08 1.73457E-08 1.77636E-08 1.81847E-08 1.86091E-08 1.90371E-08 1.9469E-08 1.99053E-08 2.03463E-08 2.07926E-08 2.12448E-08 +-8.09443E-07 -1.53396E-07 -7.63317E-13 2.83728E-08 3.21423E-08 3.40393E-08 3.57069E-08 3.73202E-08 3.8918E-08 4.05136E-08 4.21123E-08 4.37167E-08 4.53284E-08 4.6948E-08 4.85759E-08 5.02125E-08 5.18579E-08 5.3512E-08 5.5175E-08 5.68467E-08 5.85273E-08 6.02167E-08 6.19151E-08 6.36225E-08 6.53392E-08 6.70654E-08 6.88015E-08 7.05478E-08 7.2305E-08 7.40735E-08 7.58541E-08 7.76475E-08 7.94548E-08 8.12769E-08 8.3115E-08 8.49706E-08 8.68453E-08 8.87409E-08 9.06597E-08 +-2.50341E-06 -5.43167E-07 2.40514E-11 1.13694E-07 1.28836E-07 1.36414E-07 1.43066E-07 1.49498E-07 1.55867E-07 1.62225E-07 1.68596E-07 1.74988E-07 1.81409E-07 1.8786E-07 1.94344E-07 2.00862E-07 2.07414E-07 2.14001E-07 2.20622E-07 2.27278E-07 2.33968E-07 2.40692E-07 2.47452E-07 2.54247E-07 2.61078E-07 2.67947E-07 2.74853E-07 2.818E-07 2.88789E-07 2.95822E-07 3.02902E-07 3.10032E-07 3.17215E-07 3.24455E-07 3.31756E-07 3.39123E-07 3.46562E-07 3.54079E-07 3.61682E-07 +-7.0463E-06 -1.71221E-06 1.55297E-10 4.13376E-07 4.68986E-07 4.96316E-07 5.20193E-07 5.43245E-07 5.66057E-07 5.88822E-07 6.11622E-07 6.34496E-07 6.57465E-07 6.80541E-07 7.0373E-07 7.27036E-07 7.5046E-07 7.74003E-07 7.97666E-07 8.21448E-07 8.4535E-07 8.69372E-07 8.93516E-07 9.17782E-07 9.42174E-07 9.66694E-07 9.91349E-07 1.01614E-06 1.04108E-06 1.06617E-06 1.09143E-06 1.11685E-06 1.14247E-06 1.16827E-06 1.19429E-06 1.22053E-06 1.24702E-06 1.27376E-06 1.3008E-06 +-1.8149E-05 -4.84426E-06 5.59487E-10 1.33705E-06 1.52291E-06 1.6097E-06 1.68448E-06 1.75638E-06 1.82741E-06 1.89822E-06 1.96908E-06 2.04014E-06 2.11147E-06 2.1831E-06 2.25506E-06 2.32736E-06 2.40001E-06 2.473E-06 2.54635E-06 2.62005E-06 2.6941E-06 2.76851E-06 2.84328E-06 2.91841E-06 2.99391E-06 3.06979E-06 3.14607E-06 3.22277E-06 3.2999E-06 3.37748E-06 3.45555E-06 3.53414E-06 3.61327E-06 3.69299E-06 3.77333E-06 3.85434E-06 3.93608E-06 4.01858E-06 4.10192E-06 +-4.15022E-05 -1.2293E-05 1.27483E-09 3.86769E-06 4.45657E-06 4.70106E-06 4.90421E-06 5.09751E-06 5.28762E-06 5.47672E-06 5.66569E-06 5.85497E-06 6.0448E-06 6.23531E-06 6.42658E-06 6.61864E-06 6.81153E-06 7.00526E-06 7.19983E-06 7.39526E-06 7.59155E-06 7.78871E-06 7.98674E-06 8.18567E-06 8.38551E-06 8.58631E-06 8.78809E-06 8.9909E-06 9.1948E-06 9.39986E-06 9.60614E-06 9.81373E-06 1.00227E-05 1.02332E-05 1.04452E-05 1.0659E-05 1.08746E-05 1.10922E-05 1.13118E-05 +-8.08931E-05 -2.70031E-05 2.32345E-09 1.00599E-05 1.19459E-05 1.25852E-05 1.30728E-05 1.35254E-05 1.39661E-05 1.44023E-05 1.48369E-05 1.52712E-05 1.57061E-05 1.6142E-05 1.65791E-05 1.70176E-05 1.74576E-05 1.78992E-05 1.83423E-05 1.87872E-05 1.92337E-05 1.96819E-05 2.01318E-05 2.05835E-05 2.10371E-05 2.14926E-05 2.19501E-05 2.24097E-05 2.28717E-05 2.3336E-05 2.3803E-05 2.42728E-05 2.47455E-05 2.52215E-05 2.5701E-05 2.61842E-05 2.66714E-05 2.71629E-05 2.7659E-05 +-0.000133257 -4.97374E-05 3.84053E-09 2.28578E-05 2.88996E-05 3.05814E-05 3.16524E-05 3.25927E-05 3.34895E-05 3.43679E-05 3.52377E-05 3.61035E-05 3.69679E-05 3.78322E-05 3.86973E-05 3.95638E-05 4.04321E-05 4.13023E-05 4.21748E-05 4.30496E-05 4.39267E-05 4.48064E-05 4.56887E-05 4.65738E-05 4.74618E-05 4.83529E-05 4.92474E-05 5.01455E-05 5.10474E-05 5.19537E-05 5.28645E-05 5.37804E-05 5.47017E-05 5.5629E-05 5.65628E-05 5.75035E-05 5.84518E-05 5.94083E-05 6.03735E-05 +-0.000191427 -7.79242E-05 6.06843E-09 4.36794E-05 6.04636E-05 6.521E-05 6.74896E-05 6.9273E-05 7.09029E-05 7.24684E-05 7.40017E-05 7.55174E-05 7.70231E-05 7.85231E-05 8.00202E-05 8.15161E-05 8.30119E-05 8.45085E-05 8.60064E-05 8.75061E-05 8.90079E-05 9.0512E-05 9.20189E-05 9.35288E-05 9.50422E-05 9.65593E-05 9.80806E-05 9.96068E-05 0.000101138 0.000102676 0.00010422 0.000105773 0.000107333 0.000108903 0.000110483 0.000112074 0.000113678 0.000115294 0.000116926 +-0.000249879 -0.000108113 9.33708E-09 7.05362E-05 0.00010658 0.000119644 0.000124683 0.000127914 0.000130642 0.000133172 0.000135604 0.000137983 0.000140327 0.000142651 0.00014496 0.00014726 0.000149553 0.000151842 0.000154128 0.000156413 0.000158697 0.000160982 0.000163267 0.000165553 0.000167842 0.000170134 0.00017243 0.00017473 0.000177037 0.00017935 0.000181672 0.000184003 0.000186346 0.000188701 0.00019107 0.000193454 0.000195857 0.000198278 0.000200721 +-0.000305785 -0.000137906 1.40572E-08 9.99967E-05 0.000161133 0.000190401 0.000201941 0.00020785 0.000212224 0.000216053 0.000219631 0.000223071 0.000226426 0.000229726 0.000232987 0.000236221 0.000239434 0.000242633 0.000245819 0.000248997 0.000252167 0.000255332 0.000258494 0.000261652 0.000264809 0.000267966 0.000271125 0.000274286 0.000277452 0.000280624 0.000283804 0.000286995 0.000290198 0.000293416 0.000296651 0.000299907 0.000303184 0.000306486 0.000309816 +-0.000357969 -0.000166094 2.07428E-08 0.000129453 0.000217791 0.000269376 0.000293673 0.000304878 0.000311876 0.000317484 0.000322504 0.000327216 0.000331744 0.000336154 0.000340481 0.000344748 0.00034897 0.000353157 0.000357317 0.000361455 0.000365575 0.00036968 0.000373773 0.000377855 0.00038193 0.000385999 0.000390063 0.000394127 0.000398191 0.000402259 0.000406333 0.000410417 0.000414512 0.000418623 0.000422754 0.000426906 0.000431085 0.000435293 0.000439535 +-0.000406066 -0.000192202 3.00528E-08 0.00015752 0.000272894 0.000349276 0.000392353 0.000413405 0.000424885 0.000433054 0.000439929 0.000446174 0.00045206 0.000457718 0.000463219 0.000468608 0.000473913 0.000479152 0.00048434 0.000489486 0.000494597 0.000499679 0.000504735 0.000509771 0.000514788 0.000519791 0.000524782 0.000529765 0.000534742 0.000539718 0.000544696 0.00054968 0.000554673 0.000559682 0.000564709 0.000569759 0.000574838 0.00057995 0.0005851 +-0.000450078 -0.000216115 4.28418E-08 0.000183624 0.000324802 0.000426106 0.000491223 0.000527425 0.000546592 0.000558676 0.000568041 0.000576181 0.000583658 0.000590729 0.000597528 0.000604133 0.000610595 0.000616948 0.000623213 0.000629407 0.000635543 0.000641629 0.000647673 0.000653681 0.000659657 0.000665606 0.000671533 0.000677441 0.000683336 0.000689221 0.000695101 0.000700982 0.000706869 0.000712766 0.00071868 0.000724617 0.000730582 0.000736582 0.000742623 +-0.000490174 -0.000237882 6.02186E-08 0.000207604 0.00037292 0.000498197 0.000586145 0.000641324 0.000672436 0.000690692 0.000703565 0.000714124 0.000723509 0.000732205 0.000740453 0.000748388 0.000756094 0.000763627 0.000771023 0.000778309 0.000785503 0.000792622 0.000799675 0.000806672 0.00081362 0.000820525 0.000827393 0.000834231 0.000841043 0.000847835 0.000854613 0.000861384 0.000868154 0.000874929 0.000881716 0.000888524 0.000895358 0.000902226 0.000909136 +-0.000526584 -0.000257618 8.36169E-08 0.000229486 0.000417141 0.000565002 0.000675268 0.000751043 0.000797989 0.000825637 0.000843634 0.000857399 0.000869134 0.000879736 0.000889626 0.000899031 0.000908088 0.000916882 0.000925471 0.000933898 0.000942192 0.000950373 0.00095846 0.000966465 0.000974399 0.00098227 0.000990087 0.000997857 0.00100559 0.00101329 0.00102096 0.00102861 0.00103625 0.0010439 0.00105154 0.0010592 0.00106689 0.0010746 0.00108236 +-0.000559566 -0.000275462 1.14883E-07 0.000249377 0.000457573 0.000626479 0.000757984 0.000854428 0.000919531 0.000960073 0.00098556 0.00100372 0.00101843 0.00103132 0.0010431 0.00105415 0.00106469 0.00107485 0.00108471 0.00109433 0.00110377 0.00111306 0.00112221 0.00113124 0.00114018 0.00114903 0.0011578 0.00116651 0.00117517 0.00118377 0.00119233 0.00120086 0.00120937 0.00121787 0.00122636 0.00123486 0.00124338 0.00125192 0.0012605 +-0.000589376 -0.000291557 1.56384E-07 0.000267413 0.00049442 0.000682807 0.000834251 0.000950661 0.00103467 0.00109081 0.00112667 0.00115095 0.00116954 0.00118522 0.00119922 0.00121215 0.00122433 0.00123597 0.0012472 0.0012581 0.00126874 0.00127917 0.00128942 0.00129952 0.00130948 0.00131933 0.00132907 0.00133873 0.00134831 0.00135782 0.00136727 0.00137668 0.00138604 0.00139539 0.00140472 0.00141404 0.00142338 0.00143273 0.00144212 +-0.000616262 -0.000306041 2.1115E-07 0.000283737 0.000527921 0.000734264 0.000904283 0.00103962 0.00114229 0.0012154 0.00126434 0.001297 0.00132074 0.00133991 0.00135656 0.00137164 0.00138567 0.00139895 0.00141165 0.00142392 0.00143584 0.00144747 0.00145886 0.00147005 0.00148107 0.00149193 0.00150267 0.00151328 0.0015238 0.00153422 0.00154457 0.00155485 0.00156507 0.00157526 0.00158542 0.00159556 0.0016057 0.00161584 0.00162602 +-0.000640458 -0.000319044 2.83038E-07 0.000298492 0.000558325 0.000781168 0.000968407 0.00112149 0.00124209 0.00133245 0.0013963 0.00143975 0.00147034 0.00149397 0.00151382 0.00153143 0.00154756 0.00156265 0.00157698 0.00159072 0.00160399 0.00161689 0.00162948 0.00164181 0.00165391 0.00166583 0.00167757 0.00168916 0.00170062 0.00171197 0.00172322 0.00173437 0.00174546 0.00175648 0.00176746 0.00177841 0.00178934 0.00180028 0.00181122 +-0.000662179 -0.000330687 3.76954E-07 0.000311817 0.000585878 0.000823847 0.001027 0.00119663 0.00133418 0.00144142 0.00152098 0.00157722 0.00161667 0.00164604 0.00166983 0.00169042 0.00170896 0.0017261 0.00174221 0.00175755 0.00177229 0.00178654 0.00180039 0.0018139 0.00182714 0.00184013 0.00185291 0.0018655 0.00187793 0.00189021 0.00190237 0.00191441 0.00192635 0.00193822 0.00195002 0.00196177 0.00197349 0.00198519 0.0019969 +-0.000681625 -0.000341078 4.99118E-07 0.00032384 0.000610818 0.000862627 0.00108044 0.00126545 0.00141891 0.0015423 0.00163758 0.00170784 0.00175809 0.00179477 0.00182348 0.00184763 0.00186897 0.00188842 0.00190652 0.00192362 0.00193993 0.00195563 0.00197082 0.00198558 0.002 0.00201411 0.00202796 0.00204158 0.00205499 0.00206822 0.0020813 0.00209424 0.00210705 0.00211976 0.00213238 0.00214493 0.00215744 0.00216991 0.00218237 +-0.000698975 -0.000350315 6.57396E-07 0.000334685 0.00063337 0.000897819 0.00112912 0.00132837 0.00149669 0.00163535 0.00174591 0.00183062 0.00189314 0.00193884 0.00197369 0.00200215 0.00202675 0.00204885 0.00206918 0.00208821 0.00210625 0.0021235 0.00214011 0.0021562 0.00217185 0.00218713 0.00220209 0.00221677 0.00223119 0.0022454 0.00225942 0.00227326 0.00228695 0.00230051 0.00231396 0.00232732 0.0023406 0.00235384 0.00236704 +-0.00071439 -0.000358483 8.61717E-07 0.000344468 0.000653745 0.000929722 0.00117341 0.00138581 0.00156796 0.00172097 0.00184613 0.00194518 0.00202075 0.00207699 0.00211939 0.00215309 0.00218155 0.00220668 0.00222952 0.0022507 0.00227063 0.00228956 0.00230771 0.0023252 0.00234216 0.00235866 0.00237477 0.00239055 0.00240602 0.00242123 0.0024362 0.00245097 0.00246555 0.00247997 0.00249426 0.00250842 0.00252249 0.00253649 0.00255043 +-0.000728015 -0.000365657 1.12458E-06 0.000353297 0.000672142 0.000958618 0.00121366 0.0014382 0.00163319 0.00179961 0.00193859 0.00205152 0.00214036 0.0022082 0.00225954 0.00229961 0.00233265 0.00236128 0.00238697 0.00241054 0.00243254 0.00245331 0.00247311 0.00249211 0.00251045 0.00252824 0.00254556 0.00256247 0.00257902 0.00259526 0.00261122 0.00262693 0.00264243 0.00265772 0.00267285 0.00268783 0.00270269 0.00271746 0.00273214 +-0.000739972 -0.0003719 1.46171E-06 0.000361279 0.000688751 0.000984772 0.00125021 0.00148594 0.00169282 0.00187175 0.00202373 0.00214991 0.00225183 0.00233177 0.00239322 0.00244086 0.00247935 0.00251206 0.00254097 0.00256723 0.00259152 0.0026143 0.00263588 0.0026565 0.00267632 0.00269547 0.00271406 0.00273216 0.00274984 0.00276714 0.00278411 0.0028008 0.00281722 0.00283341 0.0028494 0.00286521 0.00288086 0.0028964 0.00291183 +-0.000750368 -0.000377263 1.89281E-06 0.000368512 0.000703749 0.00100843 0.00128338 0.0015294 0.00174728 0.00193786 0.00210201 0.00224074 0.0023553 0.00244741 0.00251973 0.00257608 0.002621 0.00265846 0.00269106 0.00272032 0.00274715 0.00277213 0.00279566 0.00281802 0.00283941 0.00286001 0.00287994 0.00289929 0.00291814 0.00293655 0.00295457 0.00297226 0.00298963 0.00300674 0.0030236 0.00304025 0.00305672 0.00307303 0.00308922 +-0.00075929 -0.000381783 2.44256E-06 0.000375097 0.000717305 0.00102984 0.00131347 0.00156894 0.00179699 0.00199838 0.00217391 0.00232447 0.00245109 0.00255515 0.00263866 0.0027046 0.00275697 0.00279996 0.00283678 0.00286942 0.00289907 0.00292647 0.00295211 0.00297635 0.00299944 0.00302158 0.00304293 0.00306359 0.00308367 0.00310323 0.00312234 0.00314106 0.00315942 0.00317746 0.00319522 0.00321273 0.00323002 0.00324713 0.00326407 +-0.000766806 -0.000385485 3.14183E-06 0.000381129 0.000729582 0.00104923 0.00134077 0.00160491 0.00184234 0.00205376 0.00223991 0.00240156 0.00253962 0.00265522 0.0027499 0.00282597 0.0028867 0.00293607 0.00297771 0.00301415 0.00304693 0.00307699 0.00310494 0.00313122 0.00315613 0.00317993 0.00320278 0.00322483 0.0032462 0.00326697 0.00328721 0.003307 0.00332637 0.00334538 0.00336406 0.00338245 0.00340059 0.00341849 0.00343621 +-0.000772962 -0.000388378 4.0291E-06 0.00038671 0.000740739 0.0010668 0.00136555 0.00163763 0.00188371 0.00210443 0.00230045 0.0024725 0.00262135 0.00274797 0.00285358 0.00293998 0.00300973 0.00306633 0.00311348 0.00315419 0.00319045 0.00322343 0.00325391 0.0032824 0.00330928 0.00333484 0.0033593 0.00338282 0.00340555 0.00342758 0.00344901 0.00346991 0.00349034 0.00351034 0.00352997 0.00354926 0.00356826 0.00358699 0.00360549 +-0.00077778 -0.000390455 5.15232E-06 0.000391943 0.000750935 0.00108277 0.00138807 0.00166743 0.00192147 0.00215078 0.00235599 0.00253774 0.00269675 0.00283383 0.00294999 0.00304665 0.00312582 0.00319035 0.00324373 0.00328927 0.00332937 0.00336556 0.00339879 0.00342968 0.00345868 0.00348614 0.00351232 0.0035374 0.00356157 0.00358493 0.0036076 0.00362966 0.00365118 0.00367222 0.00369282 0.00371305 0.00373293 0.0037525 0.00377181 +-0.000781262 -0.000391692 6.57113E-06 0.000396936 0.000760329 0.00109735 0.00140859 0.0016946 0.00195595 0.00219321 0.00240695 0.00259777 0.0027663 0.00291326 0.00303952 0.0031462 0.00323489 0.00330787 0.00336817 0.00341911 0.00346349 0.00350319 0.00353941 0.0035729 0.0036042 0.0036337 0.0036617 0.00368846 0.00371414 0.00373891 0.00376288 0.00378615 0.00380881 0.00383092 0.00385254 0.00387372 0.00389451 0.00391494 0.00393507 +-0.000783376 -0.00039204 8.35956E-06 0.000401809 0.000769086 0.00111076 0.00142736 0.00171944 0.00198751 0.0022321 0.00245376 0.00265301 0.00283046 0.00298674 0.00312258 0.00323894 0.00333707 0.00341878 0.00348656 0.0035435 0.00359261 0.00363617 0.00367563 0.00371193 0.00374569 0.00377739 0.00380736 0.00383588 0.00386318 0.00388943 0.00391477 0.00393931 0.00396316 0.00398638 0.00400905 0.00403122 0.00405295 0.00407428 0.00409526 +-0.000784062 -0.000391429 1.06093E-05 0.000406696 0.000777378 0.00112319 0.00144465 0.00174225 0.00201647 0.00226783 0.00249681 0.00270393 0.00288971 0.00305474 0.00319966 0.00332528 0.00343262 0.00352311 0.00359877 0.00366228 0.00371662 0.00376438 0.00380735 0.00384667 0.00388308 0.00391713 0.0039492 0.00397961 0.00400863 0.00403645 0.00406323 0.00408911 0.00411419 0.00413858 0.00416234 0.00418554 0.00420824 0.00423048 0.00425233 +-0.000783222 -0.000389757 1.3434E-05 0.000411747 0.000785395 0.00113489 0.00146071 0.00176332 0.00204318 0.00230077 0.00253653 0.00275095 0.00294451 0.00311775 0.00327124 0.00340566 0.00352189 0.00362107 0.00370481 0.00377535 0.00383541 0.00388776 0.00393451 0.00397707 0.00401632 0.00405287 0.00408719 0.00411962 0.00415046 0.00417994 0.00420824 0.00423552 0.00426191 0.00428751 0.0043124 0.00433667 0.00436037 0.00438357 0.00440632 +*table -0.2 +-3.40339E-09 -4.76661E-10 -4.19229E-12 6.81896E-11 7.77251E-11 8.25609E-11 8.68168E-11 9.09341E-11 9.50122E-11 9.90844E-11 1.03165E-10 1.0726E-10 1.11374E-10 1.15509E-10 1.19665E-10 1.23844E-10 1.28045E-10 1.3227E-10 1.36517E-10 1.40788E-10 1.45081E-10 1.49398E-10 1.53739E-10 1.58104E-10 1.62494E-10 1.66909E-10 1.71352E-10 1.75823E-10 1.80325E-10 1.8486E-10 1.8943E-10 1.9404E-10 1.98694E-10 2.03396E-10 2.08153E-10 2.12973E-10 2.17865E-10 2.22841E-10 2.27916E-10 +-1.43518E-08 -2.06461E-09 -2.8012E-12 3.1912E-10 3.61528E-10 3.83035E-10 4.01961E-10 4.20272E-10 4.38407E-10 4.56517E-10 4.74662E-10 4.92874E-10 5.11169E-10 5.29555E-10 5.48039E-10 5.66621E-10 5.85305E-10 6.0409E-10 6.22977E-10 6.41966E-10 6.61058E-10 6.80253E-10 6.99552E-10 7.18958E-10 7.38473E-10 7.58101E-10 7.77848E-10 7.97719E-10 8.17722E-10 8.37867E-10 8.58164E-10 8.78628E-10 8.99274E-10 9.20122E-10 9.41195E-10 9.62523E-10 9.84139E-10 1.00609E-09 1.02842E-09 +-5.82008E-08 -8.82981E-09 -2.42898E-12 1.41732E-09 1.60435E-09 1.69918E-09 1.78264E-09 1.86338E-09 1.94334E-09 2.02319E-09 2.1032E-09 2.1835E-09 2.26416E-09 2.34522E-09 2.42672E-09 2.50864E-09 2.59102E-09 2.67384E-09 2.7571E-09 2.84082E-09 2.92498E-09 3.0096E-09 3.09467E-09 3.18021E-09 3.26623E-09 3.35274E-09 3.43976E-09 3.52732E-09 3.61545E-09 3.70419E-09 3.79358E-09 3.88367E-09 3.97453E-09 4.06622E-09 4.15885E-09 4.25251E-09 4.34734E-09 4.44349E-09 4.54115E-09 +-2.20866E-07 -3.64667E-08 -2.04247E-12 6.15558E-09 6.96678E-09 7.37796E-09 7.73975E-09 8.08974E-09 8.43637E-09 8.78249E-09 9.12929E-09 9.47734E-09 9.82696E-09 1.01783E-08 1.05315E-08 1.08866E-08 1.12436E-08 1.16025E-08 1.19634E-08 1.23262E-08 1.26909E-08 1.30575E-08 1.34262E-08 1.37968E-08 1.41695E-08 1.45443E-08 1.49213E-08 1.53005E-08 1.56822E-08 1.60665E-08 1.64535E-08 1.68434E-08 1.72365E-08 1.76331E-08 1.80335E-08 1.84381E-08 1.88473E-08 1.92618E-08 1.96822E-08 +-7.63059E-07 -1.41648E-07 -4.58634E-13 2.58686E-08 2.92781E-08 3.1004E-08 3.25221E-08 3.39904E-08 3.54445E-08 3.68964E-08 3.8351E-08 3.98109E-08 4.12772E-08 4.27508E-08 4.4232E-08 4.5721E-08 4.7218E-08 4.87231E-08 5.02361E-08 5.17572E-08 5.32863E-08 5.48235E-08 5.63688E-08 5.79225E-08 5.94846E-08 6.10554E-08 6.26353E-08 6.42246E-08 6.58239E-08 6.74336E-08 6.90546E-08 7.06874E-08 7.23332E-08 7.39928E-08 7.56676E-08 7.73589E-08 7.90684E-08 8.07981E-08 8.25504E-08 +-2.37291E-06 -5.02257E-07 4.5266E-12 1.02749E-07 1.16319E-07 1.23157E-07 1.29164E-07 1.34972E-07 1.40722E-07 1.46463E-07 1.52214E-07 1.57985E-07 1.63781E-07 1.69605E-07 1.75459E-07 1.81343E-07 1.87258E-07 1.93205E-07 1.99183E-07 2.05191E-07 2.11232E-07 2.17303E-07 2.23406E-07 2.29542E-07 2.3571E-07 2.41912E-07 2.48149E-07 2.54423E-07 2.60735E-07 2.67087E-07 2.73483E-07 2.79924E-07 2.86414E-07 2.92956E-07 2.99556E-07 3.06218E-07 3.12947E-07 3.1975E-07 3.26635E-07 +-6.71726E-06 -1.59616E-06 2.74161E-11 3.74244E-07 4.24082E-07 4.48816E-07 4.70458E-07 4.91356E-07 5.12036E-07 5.32673E-07 5.53341E-07 5.74077E-07 5.94899E-07 6.15818E-07 6.36841E-07 6.5797E-07 6.79207E-07 7.00553E-07 7.22007E-07 7.43571E-07 7.65244E-07 7.87027E-07 8.08921E-07 8.30927E-07 8.53047E-07 8.75286E-07 8.97647E-07 9.20136E-07 9.42758E-07 9.6552E-07 9.88432E-07 1.0115E-06 1.03474E-06 1.05816E-06 1.08178E-06 1.10561E-06 1.12966E-06 1.15397E-06 1.17854E-06 +-1.74412E-05 -4.56055E-06 1.47308E-10 1.22219E-06 1.3894E-06 1.46885E-06 1.53755E-06 1.60365E-06 1.66895E-06 1.73407E-06 1.79924E-06 1.8646E-06 1.93021E-06 1.9961E-06 2.06229E-06 2.12881E-06 2.19564E-06 2.2628E-06 2.33029E-06 2.3981E-06 2.46625E-06 2.53472E-06 2.60353E-06 2.67267E-06 2.74216E-06 2.81201E-06 2.88223E-06 2.95283E-06 3.02384E-06 3.09527E-06 3.16715E-06 3.23952E-06 3.3124E-06 3.38582E-06 3.45983E-06 3.53448E-06 3.6098E-06 3.68586E-06 3.76271E-06 +-4.04644E-05 -1.1735E-05 5.2067E-10 3.57711E-06 4.10554E-06 4.33183E-06 4.52152E-06 4.70239E-06 4.88041E-06 5.05754E-06 5.2346E-06 5.41198E-06 5.5899E-06 5.76847E-06 5.94777E-06 6.12784E-06 6.3087E-06 6.49036E-06 6.67284E-06 6.85613E-06 7.04024E-06 7.22518E-06 7.41096E-06 7.59759E-06 7.78509E-06 7.9735E-06 8.16284E-06 8.35318E-06 8.54455E-06 8.73701E-06 8.93064E-06 9.12552E-06 9.32171E-06 9.51933E-06 9.71847E-06 9.91924E-06 1.01218E-05 1.03262E-05 1.05326E-05 +-8.05311E-05 -2.63395E-05 1.20057E-09 9.44189E-06 1.11164E-05 1.17095E-05 1.21711E-05 1.26019E-05 1.30222E-05 1.34385E-05 1.38535E-05 1.42684E-05 1.4684E-05 1.51005E-05 1.55184E-05 1.59377E-05 1.63584E-05 1.67808E-05 1.72047E-05 1.76303E-05 1.80575E-05 1.84864E-05 1.8917E-05 1.93494E-05 1.97835E-05 2.02196E-05 2.06576E-05 2.10978E-05 2.15401E-05 2.19848E-05 2.24321E-05 2.28821E-05 2.3335E-05 2.3791E-05 2.42505E-05 2.47135E-05 2.51805E-05 2.56516E-05 2.61273E-05 +-0.000135564 -4.97423E-05 2.23873E-09 2.19365E-05 2.73063E-05 2.88434E-05 2.98644E-05 3.07721E-05 3.16414E-05 3.24944E-05 3.334E-05 3.41823E-05 3.50237E-05 3.58653E-05 3.67081E-05 3.75524E-05 3.83987E-05 3.92471E-05 4.00978E-05 4.09509E-05 4.18066E-05 4.26648E-05 4.35257E-05 4.43895E-05 4.52563E-05 4.61262E-05 4.69995E-05 4.78765E-05 4.87573E-05 4.96425E-05 5.05322E-05 5.1427E-05 5.23272E-05 5.32333E-05 5.41458E-05 5.50653E-05 5.59922E-05 5.69272E-05 5.7871E-05 +-0.000198064 -7.96202E-05 3.79439E-09 4.3081E-05 5.84722E-05 6.27136E-05 6.48739E-05 6.66099E-05 6.82108E-05 6.97542E-05 7.12688E-05 7.27678E-05 7.42582E-05 7.57441E-05 7.72278E-05 7.8711E-05 8.01946E-05 8.16795E-05 8.31661E-05 8.46549E-05 8.61461E-05 8.76401E-05 8.9137E-05 9.06373E-05 9.21413E-05 9.36493E-05 9.51618E-05 9.66793E-05 9.82025E-05 9.97319E-05 0.000101268 0.000102812 0.000104365 0.000105927 0.0001075 0.000109084 0.00011068 0.00011229 0.000113915 +-0.000261543 -0.000112195 6.11599E-09 7.12992E-05 0.000105873 0.000117653 0.000122335 0.000125478 0.000128178 0.0001307 0.000133134 0.000135517 0.000137871 0.000140205 0.000142526 0.000144839 0.000147147 0.000149452 0.000151755 0.000154057 0.000156359 0.000158662 0.000160966 0.000163273 0.000165582 0.000167895 0.000170212 0.000172534 0.000174863 0.000177199 0.000179544 0.000181899 0.000184266 0.000186646 0.00018904 0.000191451 0.00019388 0.000196328 0.000198798 +-0.000322495 -0.000144624 9.52629E-09 0.00010293 0.000163743 0.000191239 0.000201837 0.000207515 0.000211848 0.000215689 0.000219297 0.000222777 0.000226177 0.000229526 0.000232839 0.000236126 0.000239395 0.00024265 0.000245895 0.000249132 0.000252363 0.000255589 0.000258813 0.000262034 0.000265255 0.000268477 0.000271701 0.000274928 0.000278161 0.000281401 0.00028465 0.00028791 0.000291184 0.000294473 0.000297781 0.000301109 0.00030446 0.000307838 0.000311244 +-0.000379417 -0.000175402 1.44331E-08 0.000134907 0.000224876 0.000275342 0.000298058 0.000308652 0.000315534 0.000321163 0.000326245 0.000331037 0.000335655 0.000340158 0.000344583 0.000348952 0.000353278 0.000357571 0.000361838 0.000366085 0.000370315 0.000374532 0.000378737 0.000382932 0.000387121 0.000391305 0.000395486 0.000399667 0.00040385 0.000408037 0.000412232 0.000416437 0.000420656 0.000424891 0.000429147 0.000433427 0.000437734 0.000442073 0.000446447 +-0.000431812 -0.000203907 2.13597E-08 0.000165509 0.000284758 0.000361589 0.000403187 0.000423055 0.000434192 0.000442351 0.000449313 0.000455679 0.000461699 0.000467499 0.000473148 0.000478688 0.000484147 0.000489543 0.00049489 0.000500196 0.000505469 0.000510714 0.000515935 0.000521136 0.00052632 0.00053149 0.00053665 0.000541802 0.000546951 0.000552099 0.000557251 0.00056241 0.00056758 0.000572767 0.000577974 0.000583207 0.00058847 0.000593768 0.000599107 +-0.00047965 -0.000229971 3.09852E-08 0.000193987 0.000341285 0.000444977 0.000509648 0.000544399 0.000562795 0.000574742 0.000584194 0.000592487 0.000600142 0.000607402 0.000614397 0.000621203 0.000627869 0.000634429 0.000640903 0.000647309 0.000653657 0.000659958 0.000666217 0.000672441 0.000678635 0.000684802 0.000690949 0.000697078 0.000703195 0.000709304 0.000715409 0.000721517 0.000727632 0.00073376 0.000739907 0.00074608 0.000752283 0.000758523 0.000764807 +-0.000523106 -0.000253636 4.41932E-08 0.000220111 0.000393662 0.000523316 0.000612381 0.000666585 0.00069652 0.000714354 0.00072725 0.000737979 0.00074758 0.00075651 0.000765 0.000773183 0.000781141 0.000788929 0.000796582 0.000804127 0.000811584 0.000818965 0.000826282 0.000833544 0.000840757 0.00084793 0.000855066 0.000862173 0.000869256 0.00087632 0.000883372 0.000890418 0.000897466 0.00090452 0.00091159 0.000918682 0.000925804 0.000932964 0.000940169 +-0.000562442 -0.000275026 6.21297E-08 0.00024389 0.00044171 0.000595853 0.000708964 0.000784877 0.000830682 0.000857522 0.000875368 0.00088928 0.000901257 0.000912133 0.000922309 0.000932008 0.000941361 0.000950455 0.000959348 0.000968079 0.00097668 0.000985169 0.000993566 0.00100188 0.00101013 0.00101831 0.00102644 0.00103453 0.00104257 0.00105059 0.00105858 0.00106655 0.00107452 0.00108248 0.00109046 0.00109845 0.00110647 0.00111452 0.00112262 +-0.000597949 -0.000294298 8.62756E-08 0.000265437 0.000485529 0.00066248 0.00079854 0.00089655 0.000961154 0.00100067 0.00102571 0.00104392 0.00105888 0.00107207 0.00108418 0.00109556 0.00110644 0.00111694 0.00112714 0.00113712 0.00114691 0.00115654 0.00116604 0.00117543 0.00118472 0.00119393 0.00120306 0.00121212 0.00122113 0.00123009 0.00123902 0.00124791 0.00125678 0.00126565 0.00127451 0.00128338 0.00129228 0.0013012 0.00131017 +-0.00062992 -0.000311617 1.18537E-07 0.000284902 0.000525342 0.000723374 0.000880989 0.00100047 0.00108506 0.0011404 0.00117552 0.00119965 0.00121844 0.00123444 0.0012488 0.0012621 0.00127466 0.00128669 0.0012983 0.00130959 0.00132062 0.00133144 0.00134208 0.00135256 0.00136292 0.00137316 0.0013833 0.00139335 0.00140333 0.00141323 0.00142309 0.00143289 0.00144266 0.00145241 0.00146215 0.00147189 0.00148164 0.00149141 0.00150122 +-0.000658641 -0.000327142 1.61357E-07 0.000302449 0.000561415 0.00077884 0.000956519 0.0010964 0.00120092 0.00127393 0.00132207 0.0013543 0.00137812 0.0013976 0.00141464 0.00143013 0.00144458 0.00145828 0.0014714 0.0014841 0.00149644 0.00150849 0.00152031 0.00153193 0.00154338 0.00155467 0.00156584 0.00157688 0.00158783 0.00159869 0.00160946 0.00162018 0.00163085 0.00164147 0.00165207 0.00166266 0.00167325 0.00168385 0.00169449 +-0.000684379 -0.000341024 2.1786E-07 0.00031824 0.000594031 0.000829235 0.00102549 0.0011845 0.00130825 0.00139952 0.0014629 0.00150573 0.0015362 0.00156007 0.00158032 0.00159837 0.00161495 0.0016305 0.00164529 0.00165948 0.00167322 0.00168657 0.00169962 0.00171241 0.00172498 0.00173736 0.00174956 0.00176162 0.00177355 0.00178536 0.00179707 0.00180869 0.00182025 0.00183174 0.0018432 0.00185463 0.00186604 0.00187746 0.0018889 +-0.000707385 -0.000353403 2.92028E-07 0.00033243 0.000623469 0.000874928 0.00108831 0.00126514 0.00140713 0.00151639 0.00159617 0.00165186 0.00169096 0.00172044 0.00174461 0.00176566 0.00178469 0.00180231 0.00181892 0.00183475 0.00184998 0.00186472 0.00187906 0.00189307 0.0019068 0.00192028 0.00193355 0.00194664 0.00195956 0.00197234 0.00198499 0.00199752 0.00200997 0.00202233 0.00203464 0.0020469 0.00205913 0.00207136 0.00208359 +-0.000727888 -0.000364404 3.88922E-07 0.000345166 0.000649996 0.000916284 0.00114542 0.00133878 0.00149787 0.00162443 0.00172084 0.00179094 0.00184073 0.00187734 0.00190636 0.00193097 0.00195282 0.0019728 0.00199143 0.00200905 0.00202588 0.0020421 0.00205781 0.00207309 0.00208803 0.00210266 0.00211703 0.00213117 0.0021451 0.00215886 0.00217246 0.00218592 0.00219926 0.00221249 0.00222565 0.00223873 0.00225178 0.00226479 0.0022778 +-0.000746097 -0.000374143 5.14958E-07 0.000356586 0.000673866 0.000953659 0.00119724 0.00140589 0.00158094 0.00172388 0.00183656 0.00192177 0.00198398 0.00202944 0.00206446 0.00209336 0.0021185 0.00214115 0.00216204 0.00218162 0.00220021 0.00221801 0.00223517 0.00225181 0.00226801 0.00228383 0.00229934 0.00231456 0.00232953 0.00234429 0.00235885 0.00237324 0.00238748 0.00240159 0.00241559 0.00242951 0.00244336 0.00245716 0.00247094 +-0.000762198 -0.000382722 6.7825E-07 0.000366818 0.000695317 0.000987385 0.00124421 0.00146695 0.00165684 0.00181515 0.00194344 0.0020438 0.00211947 0.00217545 0.00221785 0.00225192 0.00228091 0.00230663 0.00233006 0.00235183 0.00237233 0.00239184 0.00241056 0.00242863 0.00244616 0.00246323 0.00247992 0.00249626 0.0025123 0.00252807 0.00254362 0.00255895 0.00257411 0.0025891 0.00260396 0.00261871 0.00263336 0.00264795 0.00266249 +-0.000776361 -0.000390229 8.89041E-07 0.000375983 0.000714572 0.00101778 0.0012867 0.00152243 0.00172606 0.00189875 0.00204182 0.00215692 0.00224648 0.00231424 0.00236548 0.0024058 0.00243934 0.00246858 0.00249489 0.00251909 0.0025417 0.00256307 0.00258347 0.00260306 0.002622 0.00264039 0.0026583 0.0026758 0.00269294 0.00270977 0.00272632 0.00274262 0.0027587 0.0027746 0.00279032 0.0028059 0.00282136 0.00283673 0.00285203 +-0.000788733 -0.000396742 1.16023E-06 0.000384196 0.000731841 0.00104514 0.00132511 0.00157276 0.0017891 0.00197518 0.00213215 0.00226139 0.00236475 0.00244502 0.0025064 0.00255416 0.00259308 0.0026264 0.00265597 0.00268288 0.00270782 0.00273123 0.00275344 0.00277468 0.00279511 0.00281488 0.00283408 0.00285279 0.00287108 0.00288899 0.00290658 0.00292387 0.0029409 0.0029577 0.0029743 0.00299072 0.003007 0.00302316 0.00303922 +-0.000799443 -0.000402326 1.50802E-06 0.000391563 0.000747317 0.00106974 0.00135978 0.00161838 0.00184645 0.00204497 0.00221496 0.00235759 0.00247435 0.00256736 0.00263982 0.00269622 0.00274149 0.00277952 0.0028128 0.00284276 0.00287027 0.00289591 0.00292009 0.00294309 0.00296513 0.00298637 0.00300693 0.00302691 0.00304638 0.00306542 0.00308407 0.00310238 0.00312038 0.00313811 0.00315561 0.00317289 0.00318999 0.00320694 0.00322377 +-0.0008086 -0.000407032 1.95276E-06 0.00039819 0.000761187 0.00109185 0.00139105 0.00165967 0.00189857 0.00210863 0.00229077 0.00244602 0.00257561 0.0026812 0.00276524 0.0028313 0.00288392 0.00292743 0.00296493 0.00299829 0.00302866 0.00305676 0.00308309 0.003108 0.00313175 0.00315455 0.00317655 0.00319786 0.00321859 0.00323879 0.00325855 0.00327791 0.00329691 0.00331559 0.00333399 0.00335215 0.00337009 0.00338784 0.00340545 +-0.000816292 -0.0004109 2.51989E-06 0.000404177 0.000773623 0.0011117 0.00141923 0.00169703 0.00194589 0.00216662 0.00236008 0.00252717 0.00266894 0.00278674 0.00288246 0.00295886 0.00301981 0.00306963 0.00311193 0.00314913 0.00318267 0.00321347 0.00324214 0.00326911 0.00329472 0.00331919 0.00334271 0.00336543 0.00338746 0.00340889 0.0034298 0.00345024 0.00347027 0.00348993 0.00350927 0.00352832 0.00354711 0.00356568 0.00358406 +-0.000822588 -0.000413953 3.24125E-06 0.000409625 0.000784794 0.00112954 0.00144462 0.0017308 0.00198882 0.00221943 0.0024234 0.00260156 0.00275483 0.00288433 0.00299154 0.00307863 0.00314869 0.00320566 0.00325343 0.00329492 0.00333198 0.00336575 0.00339698 0.0034262 0.00345379 0.00348006 0.0035052 0.00352941 0.00355282 0.00357553 0.00359763 0.0036192 0.0036403 0.00366097 0.00368127 0.00370123 0.0037209 0.0037403 0.00375948 +-0.000827535 -0.0004162 4.15655E-06 0.000414635 0.000794864 0.00114558 0.0014675 0.00176133 0.00202776 0.00226748 0.00248122 0.00266972 0.00283379 0.0029744 0.00309276 0.00319056 0.00327024 0.00333515 0.00338909 0.00343539 0.00347634 0.00351336 0.00354739 0.00357905 0.00360879 0.00363698 0.00366386 0.00368966 0.00371451 0.00373857 0.00376193 0.00378467 0.00380687 0.00382859 0.00384988 0.00387078 0.00389134 0.0039116 0.00393159 +-0.000831155 -0.000417635 5.31523E-06 0.000419314 0.000803995 0.00116005 0.00148815 0.00178894 0.00206308 0.00231121 0.002534 0.00273212 0.00290633 0.00305744 0.00318648 0.00329481 0.00338434 0.00345779 0.0035186 0.00357027 0.00361552 0.00365611 0.00369318 0.00372748 0.00375956 0.00378981 0.00381855 0.00384603 0.00387243 0.0038979 0.00392257 0.00394654 0.00396989 0.00399269 0.004015 0.00403687 0.00405835 0.00407948 0.00410031 +-0.000833447 -0.00041823 6.77881E-06 0.000423774 0.000812349 0.00117316 0.00150681 0.00181394 0.00209514 0.00235101 0.00258218 0.00278927 0.00297295 0.00313395 0.00327316 0.00339169 0.00349105 0.00357342 0.00364173 0.00369936 0.00374934 0.00379383 0.00383421 0.00387137 0.00390595 0.00393843 0.00396916 0.00399843 0.00402646 0.00405343 0.00407949 0.00410475 0.0041293 0.00415322 0.00417659 0.00419946 0.00422189 0.00424392 0.0042656 +-0.000834377 -0.000417935 8.62363E-06 0.000428137 0.000820095 0.00118511 0.00152377 0.00183664 0.00212429 0.00238729 0.00262621 0.00284162 0.00303414 0.00320444 0.00335328 0.00348159 0.00359061 0.00368205 0.00375833 0.00382249 0.00387768 0.0039264 0.00397035 0.0040106 0.00404788 0.00408275 0.00411561 0.0041468 0.00417657 0.00420512 0.00423263 0.00425924 0.00428504 0.00431014 0.00433461 0.00435852 0.00438193 0.00440488 0.00442744 +-0.000833883 -0.000416676 1.09443E-05 0.000432539 0.000827412 0.00119614 0.00153927 0.00185734 0.00215088 0.00242042 0.00266649 0.00288963 0.00309041 0.00326942 0.00342734 0.00356497 0.00368334 0.00378382 0.00386836 0.00393956 0.00400043 0.00405376 0.00410155 0.0041451 0.00418529 0.00422271 0.00425786 0.00429109 0.0043227 0.00435294 0.00438199 0.00441001 0.00443712 0.00446345 0.00448906 0.00451405 0.00453847 0.00456238 0.00458584 +-0.000831861 -0.000414347 1.38579E-05 0.000437136 0.00083449 0.00120647 0.00155359 0.00187636 0.00217526 0.0024508 0.00270346 0.00293376 0.00314222 0.00332938 0.00349585 0.00364232 0.00376966 0.00387901 0.00397191 0.00405052 0.00411756 0.00417587 0.00422778 0.00427486 0.00431813 0.00435829 0.00439587 0.00443128 0.00446486 0.00449688 0.00452755 0.00455706 0.00458556 0.00461316 0.00463997 0.00466608 0.00469155 0.00471645 0.00474085 +*table -2.77556E-16 +-1.59139E-08 -2.30207E-09 -1.7633E-12 3.58568E-10 4.05469E-10 4.29452E-10 4.50577E-10 4.71013E-10 4.91251E-10 5.11458E-10 5.31704E-10 5.52023E-10 5.72434E-10 5.92947E-10 6.13568E-10 6.34299E-10 6.55143E-10 6.76101E-10 6.97172E-10 7.18357E-10 7.39657E-10 7.61072E-10 7.82605E-10 8.04257E-10 8.26033E-10 8.47936E-10 8.69973E-10 8.92152E-10 9.14482E-10 9.36975E-10 9.59644E-10 9.82507E-10 1.00558E-09 1.0289E-09 1.05249E-09 1.07638E-09 1.10063E-09 1.12529E-09 1.15043E-09 +-6.25275E-08 -9.52252E-09 -3.72189E-13 1.53653E-09 1.73658E-09 1.83886E-09 1.92895E-09 2.01609E-09 2.10239E-09 2.18856E-09 2.2749E-09 2.36154E-09 2.44858E-09 2.53605E-09 2.62398E-09 2.71238E-09 2.80126E-09 2.89062E-09 2.98046E-09 3.07079E-09 3.1616E-09 3.2529E-09 3.3447E-09 3.437E-09 3.52983E-09 3.62318E-09 3.7171E-09 3.81161E-09 3.90675E-09 4.00256E-09 4.09909E-09 4.1964E-09 4.29458E-09 4.39371E-09 4.49391E-09 4.5953E-09 4.69805E-09 4.80236E-09 4.90848E-09 +-2.31644E-07 -3.81882E-08 -2.06642E-27 6.45856E-09 7.29924E-09 7.72892E-09 8.10735E-09 8.47339E-09 8.83589E-09 9.19781E-09 9.56041E-09 9.92432E-09 1.02899E-08 1.06572E-08 1.10265E-08 1.13977E-08 1.1771E-08 1.21462E-08 1.25235E-08 1.29028E-08 1.32841E-08 1.36674E-08 1.40529E-08 1.44404E-08 1.48301E-08 1.5222E-08 1.56162E-08 1.60128E-08 1.6412E-08 1.6814E-08 1.72189E-08 1.76269E-08 1.80384E-08 1.84537E-08 1.88731E-08 1.92972E-08 1.97265E-08 2.01617E-08 2.06036E-08 +-7.88928E-07 -1.45058E-07 3.8483E-13 2.63906E-08 2.9827E-08 3.15813E-08 3.31258E-08 3.46196E-08 3.60988E-08 3.75755E-08 3.9055E-08 4.05397E-08 4.2031E-08 4.35297E-08 4.50361E-08 4.65504E-08 4.80729E-08 4.96035E-08 5.11423E-08 5.26893E-08 5.42444E-08 5.58078E-08 5.73795E-08 5.89597E-08 6.05486E-08 6.21464E-08 6.37534E-08 6.53702E-08 6.69972E-08 6.86351E-08 7.02845E-08 7.19464E-08 7.36217E-08 7.53117E-08 7.70177E-08 7.87413E-08 8.04845E-08 8.22497E-08 8.40396E-08 +-2.43852E-06 -5.07893E-07 1.94707E-12 1.02639E-07 1.1603E-07 1.22837E-07 1.28823E-07 1.34611E-07 1.40341E-07 1.46061E-07 1.51791E-07 1.57541E-07 1.63315E-07 1.69118E-07 1.7495E-07 1.80813E-07 1.86706E-07 1.9263E-07 1.98586E-07 2.04573E-07 2.10591E-07 2.16641E-07 2.22722E-07 2.28836E-07 2.34982E-07 2.41162E-07 2.47378E-07 2.5363E-07 2.59921E-07 2.66253E-07 2.72628E-07 2.7905E-07 2.85521E-07 2.92047E-07 2.98631E-07 3.0528E-07 3.11999E-07 3.18796E-07 3.25679E-07 +-6.88655E-06 -1.60802E-06 6.71706E-12 3.69593E-07 4.18157E-07 4.42513E-07 4.63855E-07 4.84466E-07 5.04859E-07 5.2521E-07 5.45591E-07 5.66039E-07 5.86572E-07 6.07201E-07 6.27932E-07 6.48768E-07 6.69711E-07 6.90762E-07 7.11921E-07 7.33188E-07 7.54563E-07 7.76047E-07 7.97641E-07 8.19347E-07 8.41166E-07 8.63103E-07 8.85161E-07 9.07346E-07 9.29664E-07 9.52123E-07 9.74732E-07 9.97499E-07 1.02044E-06 1.04356E-06 1.06688E-06 1.09041E-06 1.11418E-06 1.1382E-06 1.16251E-06 +-1.78619E-05 -4.59917E-06 2.78234E-11 1.20429E-06 1.36632E-06 1.44443E-06 1.51216E-06 1.57736E-06 1.64178E-06 1.70601E-06 1.7703E-06 1.83477E-06 1.89949E-06 1.96449E-06 2.0298E-06 2.09542E-06 2.16136E-06 2.22762E-06 2.29421E-06 2.36113E-06 2.42837E-06 2.49594E-06 2.56384E-06 2.63207E-06 2.70066E-06 2.76959E-06 2.8389E-06 2.90859E-06 2.97868E-06 3.0492E-06 3.12017E-06 3.19162E-06 3.26359E-06 3.3361E-06 3.40921E-06 3.48296E-06 3.5574E-06 3.63259E-06 3.70861E-06 +-4.15757E-05 -1.18811E-05 1.37726E-10 3.53479E-06 4.04372E-06 4.26676E-06 4.45481E-06 4.63432E-06 4.81107E-06 4.98697E-06 5.16281E-06 5.33899E-06 5.51571E-06 5.6931E-06 5.87122E-06 6.05011E-06 6.2298E-06 6.4103E-06 6.59162E-06 6.77375E-06 6.95672E-06 7.14051E-06 7.32514E-06 7.51063E-06 7.697E-06 7.88428E-06 8.0725E-06 8.26171E-06 8.45197E-06 8.64333E-06 8.83587E-06 9.02965E-06 9.22477E-06 9.42133E-06 9.61942E-06 9.81918E-06 1.00207E-05 1.02242E-05 1.04297E-05 +-8.34763E-05 -2.69316E-05 4.869E-10 9.3813E-06 1.09751E-05 1.15583E-05 1.20184E-05 1.24489E-05 1.28695E-05 1.32862E-05 1.37017E-05 1.41173E-05 1.45335E-05 1.49508E-05 1.53695E-05 1.57896E-05 1.62113E-05 1.66345E-05 1.70594E-05 1.7486E-05 1.79143E-05 1.83442E-05 1.87759E-05 1.92094E-05 1.96448E-05 2.00821E-05 2.05213E-05 2.09628E-05 2.14065E-05 2.18526E-05 2.23012E-05 2.27527E-05 2.32071E-05 2.36647E-05 2.41257E-05 2.45905E-05 2.50592E-05 2.55323E-05 2.601E-05 +-0.000142168 -5.15759E-05 1.14715E-09 2.20459E-05 2.71254E-05 2.86172E-05 2.96364E-05 3.05493E-05 3.14258E-05 3.22868E-05 3.31408E-05 3.39919E-05 3.48423E-05 3.56931E-05 3.65453E-05 3.73992E-05 3.82552E-05 3.91135E-05 3.99742E-05 4.08375E-05 4.17034E-05 4.2572E-05 4.34435E-05 4.43179E-05 4.51954E-05 4.60762E-05 4.69605E-05 4.78486E-05 4.87407E-05 4.96372E-05 5.05385E-05 5.1445E-05 5.2357E-05 5.32751E-05 5.41998E-05 5.51316E-05 5.60712E-05 5.70191E-05 5.7976E-05 +-0.000209861 -8.36434E-05 2.19611E-09 4.40217E-05 5.88126E-05 6.2836E-05 6.49789E-05 6.67309E-05 6.83557E-05 6.99256E-05 7.14681E-05 7.29959E-05 7.45158E-05 7.60317E-05 7.75458E-05 7.90598E-05 8.05747E-05 8.20911E-05 8.36096E-05 8.51306E-05 8.66542E-05 8.81809E-05 8.97109E-05 9.12445E-05 9.2782E-05 9.43238E-05 9.58705E-05 9.74224E-05 9.89803E-05 0.000100545 0.000102117 0.000103696 0.000105285 0.000106884 0.000108493 0.000110115 0.000111749 0.000113397 0.000115061 +-0.00027916 -0.000119045 3.80507E-09 7.40477E-05 0.000108297 0.000119414 0.000123975 0.000127138 0.000129889 0.000132469 0.000134964 0.000137411 0.000139829 0.000142229 0.000144617 0.000146998 0.000149374 0.000151747 0.000154119 0.000156491 0.000158863 0.000161237 0.000163612 0.00016599 0.000168371 0.000170756 0.000173146 0.000175542 0.000177945 0.000180356 0.000182776 0.000185207 0.00018765 0.000190107 0.000192579 0.000195068 0.000197577 0.000200106 0.000202657 +-0.000345882 -0.000154511 6.22085E-09 0.000108253 0.000170176 0.000196773 0.000206909 0.000212559 0.000216967 0.000220908 0.000224623 0.000228213 0.000231727 0.00023519 0.000238618 0.000242022 0.000245408 0.000248782 0.000252146 0.000255502 0.000258853 0.000262201 0.000265545 0.000268889 0.000272232 0.000275577 0.000278925 0.000282277 0.000285635 0.000289001 0.000292376 0.000295765 0.000299167 0.000302586 0.000306025 0.000309486 0.000312971 0.000316484 0.000320027 +-0.000408182 -0.000188238 9.76345E-09 0.000143131 0.000236468 0.00028683 0.000308653 0.000319009 0.000325957 0.000331725 0.000336965 0.000341922 0.000346707 0.000351381 0.000355978 0.000360519 0.000365018 0.000369486 0.000373929 0.000378352 0.000382759 0.000387153 0.000391536 0.00039591 0.000400278 0.000404642 0.000409003 0.000413366 0.000417731 0.000422101 0.00042648 0.000430871 0.000435277 0.0004397 0.000444146 0.000448618 0.000453119 0.000457653 0.000462225 +-0.000465426 -0.000219454 1.48458E-08 0.000176618 0.000301797 0.000380281 0.000421148 0.000440378 0.000451466 0.000459782 0.00046695 0.000473536 0.000479782 0.00048581 0.000491688 0.000497459 0.00050315 0.000508779 0.000514359 0.000519899 0.000525407 0.000530887 0.000536344 0.000541781 0.000547202 0.00055261 0.000558008 0.000563399 0.000568788 0.000574177 0.000579571 0.000584974 0.00059039 0.000595824 0.00060128 0.000606765 0.000612281 0.000617836 0.000623434 +-0.000517553 -0.000247937 2.20052E-08 0.000207783 0.00036356 0.000471088 0.000536124 0.000570015 0.000588071 0.000600123 0.000609812 0.000618377 0.000626314 0.000633858 0.000641139 0.000648233 0.000655188 0.000662037 0.000668801 0.000675498 0.000682137 0.000688729 0.000695281 0.000701797 0.000708284 0.000714745 0.000721185 0.000727609 0.000734021 0.000740427 0.000746831 0.000753238 0.000759654 0.000766086 0.000772539 0.00077902 0.000785534 0.000792089 0.000798692 +-0.000564751 -0.000273718 3.19424E-08 0.00023632 0.000420741 0.000556481 0.000647622 0.000701418 0.000730664 0.000748416 0.000761536 0.000772575 0.000782508 0.000791776 0.000800607 0.000809131 0.000817432 0.000825562 0.000833559 0.000841449 0.000849249 0.000856975 0.000864637 0.000872245 0.000879804 0.000887322 0.000894805 0.000902259 0.000909689 0.000917102 0.000924505 0.000931903 0.000939304 0.000946715 0.000954143 0.000961597 0.000969084 0.000976612 0.00098419 +-0.000607316 -0.000296938 4.55699E-08 0.000262221 0.000473087 0.000635467 0.000752584 0.000829241 0.000874342 0.000900779 0.000918741 0.000932972 0.000945323 0.000956585 0.000967152 0.000977242 0.000986987 0.000996474 0.00100576 0.00101489 0.00102388 0.00103276 0.00104155 0.00105026 0.0010589 0.00106748 0.00107601 0.00108449 0.00109293 0.00110134 0.00110973 0.0011181 0.00112647 0.00113484 0.00114322 0.00115163 0.00116006 0.00116853 0.00117705 +-0.000645582 -0.000317776 6.40703E-08 0.000285608 0.000520689 0.000707863 0.000849854 0.000950159 0.00101465 0.00105351 0.00107843 0.00109691 0.00111226 0.00112587 0.00113842 0.00115024 0.00116156 0.00117249 0.00118314 0.00119355 0.00120378 0.00121385 0.00122379 0.00123362 0.00124335 0.001253 0.00126257 0.00127207 0.00128152 0.00129092 0.00130029 0.00130963 0.00131895 0.00132826 0.00133757 0.0013469 0.00135625 0.00136564 0.00137508 +-0.000679887 -0.000336421 8.89716E-08 0.000306651 0.000563792 0.000773848 0.000939214 0.00106267 0.00114825 0.00120307 0.00123777 0.00126201 0.00128117 0.00129762 0.00131246 0.00132624 0.00133928 0.00135178 0.00136387 0.00137564 0.00138715 0.00139845 0.00140957 0.00142054 0.00143138 0.0014421 0.00145272 0.00146325 0.0014737 0.00148409 0.00149443 0.00150472 0.00151497 0.00152521 0.00153544 0.00154567 0.00155592 0.0015662 0.00157652 +-0.00071056 -0.000353059 1.22239E-07 0.000325535 0.000602699 0.000833758 0.00102086 0.00116636 0.00127325 0.00134639 0.00139397 0.00142605 0.00145015 0.00147009 0.00148762 0.00150363 0.0015186 0.00153281 0.00154645 0.00155966 0.00157252 0.00158509 0.00159743 0.00160956 0.00162153 0.00163334 0.00164502 0.00165658 0.00166805 0.00167942 0.00169072 0.00170195 0.00171314 0.00172429 0.00173542 0.00174654 0.00175767 0.00176881 0.00178 +-0.000737911 -0.000367863 1.66394E-07 0.000342446 0.00063773 0.000887994 0.00109519 0.00126138 0.00138896 0.00148138 0.00154443 0.00158685 0.00161742 0.0016417 0.00166247 0.00168106 0.00169819 0.00171429 0.00172962 0.00174437 0.00175865 0.00177256 0.00178616 0.0017995 0.00181262 0.00182554 0.0018383 0.0018509 0.00186338 0.00187574 0.001888 0.00190018 0.00191229 0.00192434 0.00193636 0.00194835 0.00196034 0.00197233 0.00198435 +-0.000762229 -0.000380996 2.24656E-07 0.00035756 0.000669203 0.000936975 0.00116267 0.00134812 0.00149535 0.00160697 0.00168707 0.00174231 0.00178126 0.00181103 0.0018357 0.0018573 0.00187691 0.00189511 0.0019123 0.00192871 0.00194451 0.00195983 0.00197475 0.00198934 0.00200365 0.00201771 0.00203156 0.00204523 0.00205873 0.00207209 0.00208531 0.00209843 0.00211146 0.00212442 0.00213731 0.00215016 0.00216299 0.00217582 0.00218866 +-0.000783779 -0.000392605 3.01131E-07 0.000371046 0.000697424 0.000981118 0.00122378 0.00142706 0.00159274 0.00172292 0.00182058 0.00189052 0.00193998 0.00197668 0.00200613 0.0020313 0.00205375 0.00207433 0.00209357 0.00211179 0.00212923 0.00214605 0.00216236 0.00217825 0.00219379 0.00220903 0.002224 0.00223875 0.00225329 0.00226765 0.00228186 0.00229592 0.00230987 0.00232372 0.00233749 0.00235119 0.00236486 0.0023785 0.00239215 +-0.000802802 -0.000402826 4.01036E-07 0.000383058 0.000722681 0.00102082 0.00127901 0.00149875 0.00168163 0.00182943 0.00194443 0.0020301 0.00209199 0.00213733 0.00217265 0.00220208 0.00222782 0.0022511 0.00227262 0.00229283 0.00231205 0.00233047 0.00234826 0.00236552 0.00238235 0.0023988 0.00241493 0.00243078 0.00244639 0.00246177 0.00247696 0.00249198 0.00250685 0.0025216 0.00253624 0.0025508 0.00256529 0.00257975 0.00259418 +-0.000819518 -0.000411777 5.30987E-07 0.000393743 0.000745243 0.00105647 0.00132884 0.00156373 0.00176257 0.00192692 0.00205862 0.00216028 0.00223596 0.00229168 0.0023342 0.00236872 0.00239831 0.00242467 0.00244875 0.00247117 0.00249231 0.00251247 0.00253184 0.00255055 0.00256873 0.00258645 0.00260378 0.00262077 0.00263745 0.00265388 0.00267007 0.00268606 0.00270187 0.00271752 0.00273303 0.00274844 0.00276376 0.00277901 0.00279423 +-0.000834123 -0.000419565 6.99348E-07 0.000403234 0.000765363 0.00108842 0.00137371 0.00162251 0.00183612 0.00201593 0.00216349 0.00228083 0.00237098 0.00243856 0.00248974 0.00253037 0.00256448 0.00259436 0.00262133 0.0026462 0.00266947 0.00269151 0.00271257 0.00273283 0.00275243 0.00277148 0.00279005 0.00280822 0.00282603 0.00284352 0.00286074 0.00287771 0.00289446 0.00291102 0.00292742 0.00294368 0.00295982 0.00297588 0.00299187 +-0.000846791 -0.000426283 9.16678E-07 0.000411658 0.000783275 0.001117 0.00141405 0.0016756 0.00190285 0.00209703 0.00225951 0.00239195 0.00249663 0.00257706 0.0026383 0.00268621 0.00272562 0.00275956 0.00278981 0.00281741 0.00284302 0.00286712 0.00289 0.00291191 0.00293303 0.00295347 0.00297335 0.00299274 0.00301171 0.0030303 0.00304857 0.00306654 0.00308426 0.00310174 0.00311903 0.00313615 0.00315312 0.00316998 0.00318675 +-0.000857676 -0.00043201 1.19627E-06 0.000419133 0.000799194 0.00114253 0.00145025 0.00172347 0.00196328 0.0021708 0.00234724 0.00249401 0.00261293 0.00270662 0.00277905 0.00283547 0.00288109 0.00291972 0.00295367 0.00298433 0.00301254 0.00303888 0.00306375 0.00308744 0.00311016 0.00313209 0.00315334 0.00317401 0.00319418 0.00321391 0.00323326 0.00325226 0.00327096 0.00328938 0.00330758 0.00332556 0.00334337 0.00336104 0.00337859 +-0.00086691 -0.000436813 1.55484E-06 0.00042577 0.000813326 0.00116529 0.0014827 0.00176657 0.00201793 0.00223779 0.00242726 0.00258754 0.00272013 0.00282707 0.00291139 0.00297743 0.00303027 0.0030743 0.00311247 0.00314654 0.00317763 0.00320644 0.00323347 0.00325908 0.00328353 0.00330703 0.00332973 0.00335174 0.00337317 0.00339408 0.00341454 0.0034346 0.0034543 0.0034737 0.00349281 0.00351168 0.00353033 0.00354881 0.00356715 +-0.000874605 -0.000440746 2.01335E-06 0.000431677 0.000825859 0.00118555 0.00151172 0.00180532 0.00206728 0.00229856 0.00250013 0.00267309 0.00281868 0.00293855 0.00303503 0.00311154 0.0031726 0.00322283 0.00326577 0.00330368 0.00333796 0.00336948 0.00339887 0.00342655 0.00345286 0.00347804 0.00350227 0.0035257 0.00354844 0.00357058 0.0035922 0.00361336 0.0036341 0.00365448 0.00367454 0.0036943 0.00371382 0.00373313 0.00375225 +-0.000880852 -0.000443847 2.59804E-06 0.000436956 0.000836975 0.00120358 0.00153766 0.00184011 0.0021118 0.0023536 0.00256641 0.00275121 0.00290909 0.00304139 0.00314994 0.00323743 0.00330759 0.00336486 0.00341321 0.00345541 0.00349322 0.00352773 0.00355969 0.00358963 0.00361794 0.00364492 0.00367079 0.00369571 0.00371983 0.00374326 0.00376608 0.00378837 0.00381019 0.00383158 0.00385261 0.00387329 0.00389369 0.00391383 0.00393376 +-0.000885719 -0.000446141 3.34171E-06 0.000441713 0.000846845 0.0012196 0.00156082 0.00187132 0.0021519 0.0024034 0.00262663 0.00282247 0.00299189 0.00313602 0.00325636 0.00335498 0.0034349 0.00350002 0.00355445 0.00360144 0.00364315 0.00368094 0.00371571 0.00374811 0.00377858 0.00380749 0.0038351 0.00386161 0.00388719 0.00391197 0.00393605 0.00395952 0.00398244 0.00400489 0.0040269 0.00404854 0.00406983 0.00409083 0.00411157 +-0.000889255 -0.000447637 4.2853E-06 0.00044605 0.000855638 0.00123386 0.00158148 0.00189928 0.00218801 0.00244843 0.00268129 0.00288741 0.00306764 0.00322297 0.00335464 0.0034643 0.00355432 0.003628 0.0036892 0.00374151 0.00378752 0.00382891 0.00386675 0.00390181 0.00393462 0.0039656 0.00399507 0.00402327 0.0040504 0.0040766 0.00410199 0.00412669 0.00415077 0.0041743 0.00419735 0.00421995 0.00424217 0.00426404 0.00428562 +-0.000891481 -0.000448326 5.47978E-06 0.000450077 0.00086352 0.00124656 0.00159994 0.00192435 0.00222051 0.00248912 0.00273089 0.00294655 0.00313688 0.00330276 0.00344523 0.00356565 0.00366588 0.00374859 0.00381723 0.00387543 0.00392617 0.00397147 0.00401265 0.00405059 0.00408593 0.00411915 0.00415061 0.00418061 0.00420937 0.00423707 0.00426385 0.00428984 0.00431512 0.00433978 0.00436388 0.00438749 0.00441066 0.00443343 0.00445586 +-0.000892393 -0.000448179 6.98853E-06 0.000453907 0.000870657 0.00125795 0.00161645 0.00194684 0.00224977 0.0025259 0.00277588 0.0030004 0.00320016 0.00337594 0.00352865 0.00365941 0.00376974 0.00386176 0.00393838 0.00400303 0.00405894 0.00410851 0.0041533 0.00419435 0.00423241 0.00426803 0.00430163 0.00433355 0.00436405 0.00439334 0.00442158 0.00444891 0.00447545 0.00450128 0.00452649 0.00455114 0.00457528 0.00459898 0.00462229 +-0.000891957 -0.000447145 8.89025E-06 0.000457668 0.000877221 0.00126822 0.00163129 0.00196706 0.00227615 0.00255916 0.00281672 0.00304944 0.00325797 0.00344303 0.00360541 0.00374605 0.00386622 0.00396761 0.00405259 0.00412422 0.00418576 0.00423993 0.0042886 0.00433301 0.004374 0.0044122 0.00444809 0.00448206 0.00451441 0.00454537 0.00457515 0.0046039 0.00463176 0.00465881 0.00468516 0.00471089 0.00473605 0.0047607 0.00478491 +-0.000890105 -0.000445145 1.12824E-05 0.000461497 0.000883396 0.00127761 0.00164473 0.00198534 0.00230001 0.00258932 0.00285383 0.00309414 0.00331084 0.00350457 0.00367604 0.00382608 0.00395572 0.00406635 0.0041599 0.00423896 0.00430659 0.00436572 0.00441854 0.00446653 0.00451065 0.00455161 0.00458995 0.00462611 0.00466043 0.00469318 0.00472458 0.00475483 0.00478406 0.00481239 0.00483994 0.00486678 0.00489299 0.00491863 0.00494377 +-0.000886729 -0.00044207 1.42857E-05 0.000465553 0.000889376 0.00128635 0.00165704 0.00200197 0.0023217 0.00261675 0.00288767 0.00313499 0.00335926 0.00356108 0.00374109 0.0039 0.00403871 0.00415835 0.0042605 0.00434728 0.00442143 0.00448589 0.00454314 0.00459493 0.00464238 0.00468628 0.00472724 0.00476573 0.00480214 0.00483678 0.0048699 0.00490172 0.00493239 0.00496207 0.00499086 0.00501886 0.00504616 0.00507283 0.00509893 +*table 0.2 +-7.90382E-08 -1.21933E-08 1.70711E-12 1.98446E-09 2.23781E-09 2.36898E-09 2.48471E-09 2.59667E-09 2.70754E-09 2.81823E-09 2.92912E-09 3.04042E-09 3.15221E-09 3.26456E-09 3.37749E-09 3.49103E-09 3.60518E-09 3.71995E-09 3.83535E-09 3.95136E-09 4.068E-09 4.18528E-09 4.30319E-09 4.42175E-09 4.54099E-09 4.66092E-09 4.78159E-09 4.90303E-09 5.02529E-09 5.14844E-09 5.27254E-09 5.3977E-09 5.52402E-09 5.65164E-09 5.78072E-09 5.91146E-09 6.04409E-09 6.17894E-09 6.31638E-09 +-2.80375E-07 -4.67203E-08 3.09825E-12 7.97142E-09 8.98962E-09 9.5166E-09 9.9815E-09 1.04312E-08 1.08766E-08 1.13212E-08 1.17666E-08 1.22136E-08 1.26626E-08 1.31138E-08 1.35674E-08 1.40234E-08 1.44818E-08 1.49427E-08 1.54061E-08 1.5872E-08 1.63404E-08 1.68113E-08 1.72847E-08 1.77607E-08 1.82394E-08 1.87209E-08 1.92052E-08 1.96925E-08 2.01831E-08 2.06771E-08 2.11748E-08 2.16765E-08 2.21826E-08 2.26936E-08 2.321E-08 2.37325E-08 2.42619E-08 2.47991E-08 2.53455E-08 +-9.23594E-07 -1.70537E-07 3.4704E-12 3.12223E-08 3.52131E-08 3.72761E-08 3.90953E-08 4.0855E-08 4.25974E-08 4.43367E-08 4.60793E-08 4.78279E-08 4.95843E-08 5.13493E-08 5.31234E-08 5.49068E-08 5.66998E-08 5.85024E-08 6.03147E-08 6.21365E-08 6.3968E-08 6.58093E-08 6.76604E-08 6.95215E-08 7.13929E-08 7.32749E-08 7.51679E-08 7.70724E-08 7.89892E-08 8.09191E-08 8.28628E-08 8.48217E-08 8.67969E-08 8.879E-08 9.08028E-08 9.28376E-08 9.4897E-08 9.69841E-08 9.91029E-08 +-2.79233E-06 -5.79117E-07 3.85363E-12 1.17038E-07 1.32026E-07 1.39742E-07 1.46538E-07 1.53109E-07 1.59615E-07 1.66108E-07 1.72613E-07 1.7914E-07 1.85695E-07 1.92281E-07 1.98902E-07 2.05556E-07 2.12246E-07 2.18971E-07 2.25732E-07 2.32528E-07 2.39359E-07 2.46227E-07 2.5313E-07 2.6007E-07 2.67048E-07 2.74064E-07 2.81121E-07 2.8822E-07 2.95363E-07 3.02554E-07 3.09794E-07 3.17089E-07 3.24442E-07 3.31858E-07 3.39343E-07 3.46904E-07 3.5455E-07 3.62289E-07 3.70134E-07 +-7.77347E-06 -1.79767E-06 5.39533E-12 4.09734E-07 4.62567E-07 4.894E-07 5.12955E-07 5.35703E-07 5.58212E-07 5.80671E-07 6.03164E-07 6.25729E-07 6.48388E-07 6.71153E-07 6.9403E-07 7.17024E-07 7.40136E-07 7.63367E-07 7.86717E-07 8.10187E-07 8.33776E-07 8.57486E-07 8.81318E-07 9.05273E-07 9.29355E-07 9.53568E-07 9.77915E-07 1.0024E-06 1.02704E-06 1.05184E-06 1.0768E-06 1.10194E-06 1.12727E-06 1.15281E-06 1.17858E-06 1.20459E-06 1.23087E-06 1.25745E-06 1.28436E-06 +-1.99235E-05 -5.08313E-06 9.96521E-12 1.31162E-06 1.48454E-06 1.56905E-06 1.64248E-06 1.71317E-06 1.78301E-06 1.85265E-06 1.92235E-06 1.99225E-06 2.06241E-06 2.13288E-06 2.20368E-06 2.27482E-06 2.34631E-06 2.41815E-06 2.49034E-06 2.56289E-06 2.63579E-06 2.70905E-06 2.78267E-06 2.85666E-06 2.93103E-06 3.00578E-06 3.08093E-06 3.15651E-06 3.23252E-06 3.309E-06 3.38598E-06 3.46349E-06 3.54157E-06 3.62026E-06 3.6996E-06 3.77967E-06 3.8605E-06 3.94219E-06 4.02481E-06 +-4.58611E-05 -1.30337E-05 2.94915E-11 3.81396E-06 4.3499E-06 4.58861E-06 4.79052E-06 4.98332E-06 5.17316E-06 5.36207E-06 5.55092E-06 5.74013E-06 5.92992E-06 6.12043E-06 6.31173E-06 6.50387E-06 6.69686E-06 6.89072E-06 7.08546E-06 7.28109E-06 7.47761E-06 7.67502E-06 7.87334E-06 8.07259E-06 8.27278E-06 8.47397E-06 8.67617E-06 8.87945E-06 9.08385E-06 9.28946E-06 9.49634E-06 9.70458E-06 9.91428E-06 1.01255E-05 1.03385E-05 1.05533E-05 1.077E-05 1.09889E-05 1.12101E-05 +-9.1456E-05 -2.93983E-05 1.31326E-10 1.00719E-05 1.17281E-05 1.23464E-05 1.28371E-05 1.32969E-05 1.3746E-05 1.41911E-05 1.46349E-05 1.50787E-05 1.55232E-05 1.5969E-05 1.64161E-05 1.68648E-05 1.73152E-05 1.77673E-05 1.82212E-05 1.86769E-05 1.91343E-05 1.95936E-05 2.00548E-05 2.05179E-05 2.0983E-05 2.14502E-05 2.19195E-05 2.23911E-05 2.28652E-05 2.33419E-05 2.38213E-05 2.43038E-05 2.47894E-05 2.52785E-05 2.57714E-05 2.62683E-05 2.67695E-05 2.72755E-05 2.77866E-05 +-0.0001555 -5.62456E-05 4.64574E-10 2.36212E-05 2.88351E-05 3.03921E-05 3.14714E-05 3.24412E-05 3.33728E-05 3.42883E-05 3.51964E-05 3.61015E-05 3.70059E-05 3.79109E-05 3.88172E-05 3.97255E-05 4.0636E-05 4.1549E-05 4.24646E-05 4.33829E-05 4.43041E-05 4.52282E-05 4.61554E-05 4.70857E-05 4.80193E-05 4.89565E-05 4.98975E-05 5.08425E-05 5.17918E-05 5.27459E-05 5.37051E-05 5.46699E-05 5.56407E-05 5.6618E-05 5.76024E-05 5.85946E-05 5.95951E-05 6.06047E-05 6.16241E-05 +-0.000229739 -9.13479E-05 1.1205E-09 4.72788E-05 6.24536E-05 6.65559E-05 6.88013E-05 7.06532E-05 7.23744E-05 7.40388E-05 7.56748E-05 7.72957E-05 7.89084E-05 8.0517E-05 8.2124E-05 8.3731E-05 8.5339E-05 8.69487E-05 8.85608E-05 9.01755E-05 9.17932E-05 9.34142E-05 9.50387E-05 9.66672E-05 9.82999E-05 9.99373E-05 0.00010158 0.000103228 0.000104883 0.000106545 0.000108214 0.000109893 0.000111581 0.000113279 0.000114989 0.000116712 0.000118449 0.000120201 0.00012197 +-0.000305972 -0.000130252 2.19426E-09 7.98946E-05 0.000115452 0.000126601 0.000131292 0.000134612 0.000137516 0.000140246 0.000142889 0.000145482 0.000148045 0.00015059 0.000153123 0.000155648 0.000158169 0.000160687 0.000163204 0.00016572 0.000168238 0.000170757 0.000173278 0.000175802 0.00017833 0.000180862 0.0001834 0.000185943 0.000188495 0.000191055 0.000193625 0.000196207 0.000198802 0.000201412 0.000204038 0.000206683 0.000209348 0.000212036 0.000214748 +-0.000379404 -0.000169304 3.86077E-09 0.000117313 0.000182525 0.000209359 0.000219549 0.000225401 0.000230031 0.000234189 0.000238118 0.000241918 0.000245639 0.000249309 0.000252943 0.000256553 0.000260145 0.000263724 0.000267293 0.000270855 0.000274411 0.000277964 0.000281515 0.000285064 0.000288614 0.000292165 0.00029572 0.00029928 0.000302846 0.000306422 0.000310008 0.000313607 0.000317222 0.000320856 0.00032451 0.000328188 0.000331893 0.000335627 0.000339394 +-0.000447877 -0.000206437 6.36574E-09 0.00015562 0.000254981 0.000306698 0.00032844 0.000338955 0.000346182 0.000352241 0.000357768 0.000363005 0.000368067 0.000373016 0.000377885 0.000382698 0.000387468 0.000392207 0.00039692 0.000401613 0.000406289 0.000410952 0.000415604 0.000420248 0.000424886 0.000429519 0.000434151 0.000438784 0.000443421 0.000448064 0.000452716 0.000457382 0.000462064 0.000466766 0.000471492 0.000476245 0.000481031 0.000485853 0.000490716 +-0.000510638 -0.000240745 1.00319E-08 0.00019244 0.000326633 0.00040853 0.000449647 0.000468839 0.000480197 0.000488866 0.000496394 0.000503333 0.000509925 0.000516296 0.000522514 0.000528623 0.000534651 0.000540616 0.000546531 0.000552405 0.000558247 0.00056406 0.00056985 0.000575619 0.000581373 0.000587113 0.000592844 0.000598569 0.000604291 0.000610015 0.000615744 0.000621484 0.000627239 0.000633014 0.000638814 0.000644644 0.00065051 0.000656417 0.00066237 +-0.000567601 -0.000271959 1.52817E-08 0.000226671 0.000394398 0.000507846 0.000574351 0.000608078 0.000626246 0.000638663 0.000648773 0.000657759 0.00066611 0.000674064 0.00068175 0.000689246 0.000696601 0.000703848 0.000711009 0.000718101 0.000725136 0.000732122 0.000739067 0.000745976 0.000752855 0.000759709 0.000766541 0.000773358 0.000780163 0.000786962 0.00079376 0.000800563 0.000807378 0.00081421 0.000821065 0.000827952 0.000834876 0.000841844 0.000848864 +-0.000618979 -0.000300109 2.26681E-08 0.000257937 0.000457042 0.000601278 0.000695784 0.000749861 0.000778942 0.000796956 0.00081052 0.000822036 0.000832446 0.000842184 0.000851479 0.000860465 0.000869224 0.000877811 0.000886262 0.000894605 0.000902858 0.000911035 0.000919147 0.000927203 0.00093521 0.000943176 0.000951106 0.000959007 0.000966885 0.000974746 0.000982597 0.000990446 0.000998299 0.00100617 0.00101405 0.00102197 0.00102992 0.00103792 0.00104597 +-0.000665113 -0.000325355 3.29135E-08 0.00028622 0.000514238 0.000687573 0.00081023 0.000888353 0.000933218 0.000959652 0.000977998 0.000992734 0.00100561 0.0010174 0.00102848 0.00103909 0.00104934 0.00105934 0.00106913 0.00107876 0.00108826 0.00109765 0.00110694 0.00111615 0.00112529 0.00113436 0.00114339 0.00115236 0.0011613 0.00117021 0.0011791 0.00118797 0.00119684 0.00120572 0.00121461 0.00122352 0.00123247 0.00124146 0.00125051 +-0.00070639 -0.000347904 4.69584E-08 0.000311652 0.000566079 0.000766472 0.000916191 0.00101964 0.0010844 0.00112296 0.00114806 0.00116701 0.00118291 0.00119709 0.0012102 0.00122259 0.00123446 0.00124595 0.00125715 0.00126811 0.00127889 0.00128951 0.0013 0.00131038 0.00132065 0.00133084 0.00134095 0.001351 0.00136099 0.00137094 0.00138085 0.00139073 0.0014006 0.00141046 0.00142032 0.00143021 0.00144012 0.00145008 0.00146009 +-0.000743203 -0.000367976 6.6022E-08 0.00033443 0.000612838 0.000838158 0.00101333 0.00114179 0.00122874 0.00128326 0.00131781 0.00134239 0.00136208 0.00137913 0.00139457 0.00140894 0.00142258 0.00143567 0.00144836 0.00146072 0.00147282 0.00148471 0.00149641 0.00150797 0.00151939 0.0015307 0.0015419 0.00155302 0.00156405 0.00157503 0.00158594 0.00159682 0.00160766 0.00161849 0.00162931 0.00164014 0.00165099 0.00166188 0.00167281 +-0.000775933 -0.000385788 9.16784E-08 0.000354768 0.000654863 0.000903006 0.00110183 0.00125421 0.00136394 0.00143729 0.00148445 0.0015166 0.00154115 0.00156167 0.00157982 0.00159646 0.00161205 0.00162688 0.00164115 0.00165498 0.00166847 0.00168166 0.00169462 0.00170738 0.00171997 0.0017324 0.0017447 0.00175688 0.00176896 0.00178095 0.00179287 0.00180473 0.00181654 0.00182831 0.00184007 0.00185182 0.00186359 0.00187538 0.00188721 +-0.000804941 -0.000401542 1.25952E-07 0.000372877 0.000692521 0.000961474 0.00118212 0.00135697 0.001489 0.00158263 0.00164533 0.00168748 0.00171829 0.0017431 0.00176448 0.0017837 0.00180148 0.00181823 0.00183421 0.00184961 0.00186454 0.00187911 0.00189336 0.00190735 0.00192112 0.00193469 0.0019481 0.00196136 0.00197448 0.00198749 0.00200041 0.00201323 0.002026 0.00203871 0.00205138 0.00206404 0.00207669 0.00208936 0.00210207 +-0.000830561 -0.000415429 1.7144E-07 0.000388963 0.000726178 0.00101404 0.00125473 0.00145048 0.00160377 0.00171791 0.00179816 0.0018529 0.00189179 0.00192195 0.00194719 0.00196944 0.0019897 0.00200857 0.00202642 0.0020435 0.00205997 0.00207597 0.00209156 0.00210683 0.00212181 0.00213655 0.00215108 0.00216542 0.0021796 0.00219363 0.00220754 0.00222133 0.00223504 0.00224868 0.00226226 0.0022758 0.00228933 0.00230286 0.00231641 +-0.000853102 -0.000427619 2.31459E-07 0.000403218 0.000756185 0.00106118 0.00132022 0.00153529 0.00170857 0.00184265 0.00194137 0.00201092 0.00205999 0.00209685 0.00212678 0.00215256 0.00217566 0.00219691 0.00221682 0.00223572 0.00225385 0.00227136 0.00228836 0.00230495 0.00232119 0.00233712 0.00235279 0.00236824 0.00238347 0.00239853 0.00241344 0.0024282 0.00244285 0.00245741 0.00247189 0.00248631 0.00250069 0.00251506 0.00252944 +-0.000872845 -0.000438272 3.10238E-07 0.000415819 0.000782873 0.00110336 0.00137913 0.001612 0.0018039 0.001957 0.00207418 0.00215996 0.0022213 0.00226649 0.00230212 0.00233209 0.00235846 0.0023824 0.00240459 0.00242549 0.0024454 0.00246452 0.00248302 0.00250099 0.00251853 0.00253569 0.00255254 0.0025691 0.00258542 0.00260152 0.00261743 0.00263317 0.00264876 0.00266423 0.0026796 0.00269489 0.00271012 0.00272532 0.00274051 +-0.000890046 -0.000447526 4.13148E-07 0.000426933 0.000806549 0.00114101 0.00143201 0.00168123 0.00189039 0.00206137 0.00219647 0.00229904 0.00237431 0.00242959 0.00247217 0.00250711 0.00253729 0.00256428 0.00258903 0.00261213 0.00263398 0.00265484 0.00267491 0.00269434 0.00271324 0.00273168 0.00274974 0.00276745 0.00278487 0.00280203 0.00281895 0.00283567 0.00285221 0.0028686 0.00288486 0.00290101 0.00291709 0.00293311 0.0029491 +-0.000904933 -0.000455509 5.47004E-07 0.000436711 0.0008275 0.00117453 0.00147937 0.00174355 0.00196866 0.00215634 0.00230852 0.00242776 0.00251796 0.00258498 0.00263593 0.0026768 0.0027114 0.00274189 0.00276951 0.00279505 0.00281901 0.00284175 0.00286351 0.00288449 0.00290482 0.00292459 0.0029439 0.0029628 0.00298135 0.00299958 0.00301754 0.00303525 0.00305275 0.00307007 0.00308722 0.00310424 0.00312115 0.00313798 0.00315476 +-0.000917713 -0.000462331 7.20419E-07 0.000445294 0.000845991 0.0012043 0.00152168 0.00179955 0.00203934 0.00224254 0.00241081 0.0025462 0.00265166 0.00273168 0.00279244 0.00284035 0.00288012 0.00291461 0.00294548 0.00297372 0.00300001 0.00302479 0.00304838 0.00307101 0.00309284 0.00311402 0.00313463 0.00315476 0.00317447 0.00319381 0.00321283 0.00323155 0.00325002 0.00326827 0.00328632 0.0033042 0.00332195 0.00333959 0.00335716 +-0.000928565 -0.000468088 9.44267E-07 0.000452814 0.000862267 0.00123069 0.00155941 0.00184976 0.00210305 0.00232062 0.00250394 0.00265473 0.00277528 0.00286899 0.00294087 0.00299701 0.00304281 0.00308189 0.00311642 0.0031477 0.00317656 0.00320357 0.00322913 0.00325353 0.00327697 0.00329962 0.0033216 0.00334301 0.00336392 0.0033844 0.0034045 0.00342426 0.00344371 0.00346291 0.00348187 0.00350063 0.00351922 0.00353767 0.00355602 +-0.00093765 -0.000472864 1.23224E-06 0.000459393 0.000876554 0.001254 0.00159297 0.00189468 0.00216035 0.0023912 0.00258855 0.00275387 0.00288902 0.00299661 0.00308053 0.0031461 0.00319888 0.00324323 0.00328191 0.00331657 0.00334828 0.00337774 0.00340544 0.00343174 0.00345689 0.00348111 0.00350453 0.00352728 0.00354944 0.0035711 0.00359231 0.00361313 0.0036336 0.00365375 0.00367364 0.00369328 0.00371272 0.00373199 0.00375113 +-0.000945104 -0.000476725 1.60154E-06 0.000465146 0.000889063 0.00127454 0.00162274 0.00193478 0.00221178 0.00245489 0.00266527 0.00284422 0.0029933 0.00311457 0.00321103 0.00328702 0.0033478 0.00339817 0.00344153 0.00347998 0.00351484 0.00354699 0.00357702 0.00360538 0.00363237 0.00365825 0.0036832 0.00370735 0.00373082 0.00375371 0.00377607 0.00379798 0.00381948 0.00384063 0.00386145 0.00388199 0.00390229 0.00392239 0.00394231 +-0.000951041 -0.000479728 2.07376E-06 0.000470182 0.000899991 0.0012926 0.00164909 0.0019705 0.00225787 0.00251225 0.0027347 0.00292639 0.00308864 0.00322315 0.00333225 0.00341936 0.00348908 0.00354628 0.00359492 0.0036376 0.00367595 0.00371106 0.00374364 0.00377422 0.0038032 0.00383085 0.00385742 0.00388305 0.0039079 0.00393206 0.00395562 0.00397866 0.00400122 0.00402338 0.00404516 0.00406663 0.0040878 0.00410873 0.00412946 +-0.000955555 -0.000481911 2.67592E-06 0.00047461 0.000909524 0.00130844 0.00167236 0.00200226 0.00229909 0.00256382 0.00279744 0.00300099 0.00317564 0.00332279 0.00344432 0.00354291 0.00362235 0.0036872 0.00374176 0.00378915 0.00383136 0.00386971 0.00390507 0.00393808 0.00396919 0.00399875 0.00402704 0.00405424 0.00408053 0.00410603 0.00413084 0.00415504 0.00417871 0.00420191 0.00422468 0.00424708 0.00426915 0.00429093 0.00431247 +-0.000958716 -0.0004833 3.4418E-06 0.000478535 0.000917838 0.00132231 0.00169287 0.00203043 0.00233588 0.00261012 0.00285405 0.00306863 0.00325488 0.00341402 0.00354758 0.00365768 0.00374737 0.00382063 0.00388179 0.00393438 0.00398085 0.00402276 0.00406115 0.00409679 0.00413021 0.00416182 0.00419194 0.00422081 0.00424862 0.00427552 0.00430164 0.00432706 0.00435187 0.00437615 0.00439994 0.0044233 0.00444628 0.00446893 0.00449129 +-0.00096057 -0.000483903 4.41353E-06 0.000482063 0.000925107 0.00133444 0.00171092 0.00205539 0.00236868 0.00265163 0.00290507 0.00312987 0.00332696 0.00349739 0.00364247 0.00376389 0.00386407 0.00394636 0.00401477 0.00407311 0.00412424 0.00417003 0.00421174 0.00425022 0.00428613 0.00431995 0.00435203 0.00438268 0.0044121 0.00444048 0.00446796 0.00449466 0.00452066 0.00454604 0.00457089 0.00459524 0.00461916 0.0046427 0.00466591 +-0.00096114 -0.00048371 5.6436E-06 0.000485306 0.000931499 0.00134506 0.00172679 0.00207747 0.00239788 0.00268879 0.00295099 0.00318526 0.00339245 0.00357349 0.0037295 0.00386188 0.00397257 0.00406429 0.00414056 0.0042052 0.0042614 0.00431142 0.0043567 0.00439828 0.00443688 0.00447306 0.00450725 0.00453979 0.00457092 0.00460086 0.00462978 0.0046578 0.00468504 0.00471159 0.00473752 0.0047629 0.00478779 0.00481224 0.00483631 +-0.000960421 -0.000482689 7.19728E-06 0.00048838 0.000937186 0.0013544 0.00174076 0.00209701 0.00242387 0.00272206 0.0029923 0.00323532 0.00345191 0.00364289 0.00380923 0.00395212 0.00407313 0.00417446 0.00425907 0.00433053 0.00439225 0.00444682 0.00449597 0.00454088 0.00458238 0.00462111 0.00465756 0.00469211 0.00472506 0.00475666 0.00478709 0.0048165 0.00484504 0.00487279 0.00489984 0.00492628 0.00495217 0.00497757 0.00500253 +-0.000958374 -0.000480788 9.15556E-06 0.000491415 0.000942344 0.00136268 0.00175311 0.00211434 0.00244702 0.00275184 0.00302946 0.00328058 0.00350588 0.00370615 0.00388221 0.00403511 0.00416613 0.00427705 0.00437031 0.00444909 0.00451676 0.00457622 0.00462951 0.00467798 0.0047226 0.00476406 0.00480292 0.00483963 0.00487452 0.00490786 0.00493989 0.00497077 0.00500066 0.00502967 0.0050579 0.00508544 0.00511236 0.00513872 0.0051646 +-0.000954928 -0.000477925 1.16188E-05 0.000494552 0.000947158 0.00137013 0.00176412 0.00212976 0.0024677 0.00277855 0.00306294 0.0033215 0.0035549 0.00376382 0.00394901 0.00411138 0.00425201 0.00437236 0.00447443 0.00456089 0.00463494 0.00469963 0.00475733 0.0048096 0.00485753 0.00490192 0.00494336 0.00498237 0.00501931 0.00505452 0.00508823 0.00512066 0.00515196 0.00518229 0.00521174 0.00524042 0.00526841 0.00529578 0.0053226 +-0.000949972 -0.000473986 1.47113E-05 0.000497953 0.000951829 0.00137699 0.00177406 0.00214362 0.00248627 0.00280259 0.00309317 0.00335859 0.00359948 0.00381645 0.00401019 0.00418149 0.00433129 0.0044608 0.00457164 0.00466605 0.00474686 0.00481713 0.00487949 0.00493578 0.00498723 0.00503471 0.00507891 0.00512036 0.0051595 0.00519667 0.00523217 0.00526622 0.00529902 0.00533072 0.00536146 0.00539132 0.00542043 0.00544884 0.00547664 +*table 0.4 +-4.0845E-07 -6.53378E-08 5.72664E-09 1.80673E-08 1.95982E-08 2.04063E-08 2.11215E-08 2.18136E-08 2.24989E-08 2.31832E-08 2.38686E-08 2.45565E-08 2.52475E-08 2.59418E-08 2.66398E-08 2.73415E-08 2.80469E-08 2.87562E-08 2.94693E-08 3.01862E-08 3.09069E-08 3.16315E-08 3.23601E-08 3.30927E-08 3.38293E-08 3.45703E-08 3.53158E-08 3.6066E-08 3.68212E-08 3.75819E-08 3.83484E-08 3.91214E-08 3.99014E-08 4.06893E-08 4.14861E-08 4.22928E-08 4.31111E-08 4.39425E-08 4.47895E-08 +-1.2768E-06 -2.36898E-07 5.72803E-09 5.10475E-08 5.66724E-08 5.96373E-08 6.22598E-08 6.47975E-08 6.73102E-08 6.98186E-08 7.23315E-08 7.48531E-08 7.73858E-08 7.9931E-08 8.24892E-08 8.50609E-08 8.76464E-08 9.02456E-08 9.28588E-08 9.54858E-08 9.81268E-08 1.00782E-07 1.03451E-07 1.06135E-07 1.08834E-07 1.11548E-07 1.14278E-07 1.17025E-07 1.1979E-07 1.22574E-07 1.25379E-07 1.28206E-07 1.31057E-07 1.33936E-07 1.36844E-07 1.39786E-07 1.42766E-07 1.45789E-07 1.48861E-07 +-3.69818E-06 -7.728E-07 5.72841E-09 1.65673E-07 1.85566E-07 1.96001E-07 2.05218E-07 2.14133E-07 2.22959E-07 2.31768E-07 2.40592E-07 2.49446E-07 2.58338E-07 2.67273E-07 2.76254E-07 2.85281E-07 2.94355E-07 3.03477E-07 3.12648E-07 3.21866E-07 3.31133E-07 3.40448E-07 3.49812E-07 3.59226E-07 3.68692E-07 3.7821E-07 3.87784E-07 3.97415E-07 4.07107E-07 4.16864E-07 4.26691E-07 4.36593E-07 4.46576E-07 4.56647E-07 4.66817E-07 4.77094E-07 4.87492E-07 4.98027E-07 5.08715E-07 +-9.97218E-06 -2.31035E-06 5.72879E-09 5.37417E-07 6.04027E-07 6.38442E-07 6.68725E-07 6.97977E-07 7.26919E-07 7.55797E-07 7.84715E-07 8.13726E-07 8.42857E-07 8.72123E-07 9.01533E-07 9.31092E-07 9.60803E-07 9.90667E-07 1.02068E-06 1.05085E-06 1.08118E-06 1.11166E-06 1.14229E-06 1.17309E-06 1.20405E-06 1.23517E-06 1.26648E-06 1.29796E-06 1.32964E-06 1.36152E-06 1.39363E-06 1.42596E-06 1.45855E-06 1.49141E-06 1.52458E-06 1.55807E-06 1.59192E-06 1.62618E-06 1.66089E-06 +-2.48397E-05 -6.35185E-06 5.73031E-09 1.64222E-06 1.85197E-06 1.95593E-06 2.04641E-06 2.1335E-06 2.21953E-06 2.3053E-06 2.39114E-06 2.47721E-06 2.56361E-06 2.65038E-06 2.73755E-06 2.82514E-06 2.91316E-06 3.00161E-06 3.09049E-06 3.17981E-06 3.26956E-06 3.35976E-06 3.4504E-06 3.54149E-06 3.63304E-06 3.72508E-06 3.81761E-06 3.91066E-06 4.00426E-06 4.09845E-06 4.19325E-06 4.28871E-06 4.38489E-06 4.48184E-06 4.57962E-06 4.6783E-06 4.77798E-06 4.87876E-06 4.98074E-06 +-5.54975E-05 -1.59084E-05 5.7347E-09 4.63874E-06 5.2725E-06 5.5574E-06 5.79846E-06 6.02852E-06 6.25494E-06 6.48018E-06 6.70532E-06 6.93085E-06 7.15706E-06 7.3841E-06 7.61207E-06 7.84102E-06 8.07098E-06 8.30197E-06 8.534E-06 8.76708E-06 9.00122E-06 9.23641E-06 9.47269E-06 9.71006E-06 9.94857E-06 1.01883E-05 1.04292E-05 1.06713E-05 1.09149E-05 1.11599E-05 1.14064E-05 1.16545E-05 1.19044E-05 1.21563E-05 1.24101E-05 1.26662E-05 1.29248E-05 1.31859E-05 1.345E-05 +-0.0001077 -3.50511E-05 5.75295E-09 1.20001E-05 1.3924E-05 1.46454E-05 1.52175E-05 1.57527E-05 1.62751E-05 1.67925E-05 1.73083E-05 1.78239E-05 1.83404E-05 1.88581E-05 1.93774E-05 1.98985E-05 2.04215E-05 2.09464E-05 2.14734E-05 2.20024E-05 2.25335E-05 2.30666E-05 2.3602E-05 2.41395E-05 2.46794E-05 2.52216E-05 2.57664E-05 2.63138E-05 2.6864E-05 2.74173E-05 2.79739E-05 2.85339E-05 2.90977E-05 2.96656E-05 3.02379E-05 3.0815E-05 3.13973E-05 3.19852E-05 3.25793E-05 +-0.000179701 -6.56835E-05 5.84922E-09 2.76188E-05 3.35641E-05 3.53431E-05 3.65764E-05 3.76824E-05 3.87436E-05 3.97854E-05 4.08184E-05 4.18476E-05 4.28757E-05 4.39043E-05 4.49343E-05 4.59663E-05 4.70007E-05 4.80379E-05 4.90779E-05 5.01209E-05 5.11671E-05 5.22165E-05 5.32693E-05 5.43257E-05 5.53858E-05 5.64499E-05 5.75182E-05 5.8591E-05 5.96689E-05 6.0752E-05 6.1841E-05 6.29364E-05 6.40387E-05 6.51485E-05 6.62664E-05 6.73933E-05 6.85299E-05 6.9677E-05 7.08356E-05 +-0.000262559 -0.000105159 6.17513E-09 5.43656E-05 7.13337E-05 7.5896E-05 7.84129E-05 8.04883E-05 8.24147E-05 8.42759E-05 8.61042E-05 8.79149E-05 8.97159E-05 9.15119E-05 9.33057E-05 9.50993E-05 9.68938E-05 9.869E-05 0.000100489 0.00010229 0.000104095 0.000105903 0.000107714 0.000109531 0.000111351 0.000113177 0.000115009 0.000116847 0.000118692 0.000120545 0.000122407 0.000124278 0.00012616 0.000128055 0.000129962 0.000131884 0.000133822 0.000135777 0.00013775 +-0.000347349 -0.000148602 6.83805E-09 9.08325E-05 0.000130137 0.00014218 0.000147319 0.000150982 0.000154188 0.000157201 0.000160116 0.000162975 0.000165801 0.000168605 0.000171396 0.000174179 0.000176956 0.00017973 0.000182502 0.000185274 0.000188047 0.000190821 0.000193598 0.000196377 0.00019916 0.000201948 0.000204741 0.000207542 0.000210351 0.000213169 0.000215999 0.000218841 0.000221699 0.000224572 0.000227464 0.000230377 0.000233313 0.000236273 0.000239261 +-0.000428803 -0.000192028 7.94256E-09 0.000132461 0.000204312 0.000232872 0.000243709 0.00025005 0.000255099 0.000259639 0.00026393 0.00026808 0.000272144 0.000276152 0.000280121 0.000284063 0.000287985 0.000291893 0.00029579 0.000299679 0.000303562 0.00030744 0.000311316 0.000315191 0.000319065 0.000322942 0.000326822 0.000330707 0.0003346 0.000338502 0.000342417 0.000346346 0.000350293 0.000354259 0.000358249 0.000362265 0.000366311 0.00037039 0.000374505 +-0.000504523 -0.000233182 9.66489E-09 0.00017496 0.000284423 0.000339501 0.000362089 0.000373207 0.000380974 0.000387523 0.000393506 0.000399181 0.000404669 0.000410034 0.000415315 0.000420535 0.00042571 0.00043085 0.000435963 0.000441054 0.000446128 0.000451187 0.000456234 0.000461272 0.000466303 0.000471329 0.000476354 0.000481381 0.000486411 0.000491448 0.000496496 0.000501558 0.000506639 0.000511742 0.000516871 0.000522031 0.000527227 0.000532463 0.000537743 +-0.000573671 -0.000271071 1.22526E-08 0.000215713 0.000363606 0.000451359 0.000493866 0.000513634 0.000525606 0.000534864 0.000542942 0.000550404 0.000557502 0.000564366 0.00057107 0.00057766 0.000584163 0.0005906 0.000596984 0.000603325 0.000609631 0.000615907 0.000622157 0.000628387 0.000634599 0.000640797 0.000646985 0.000653167 0.000659347 0.000665529 0.000671717 0.000677917 0.000684134 0.000690374 0.000696641 0.000702942 0.000709282 0.000715668 0.000722106 +-0.000636165 -0.0003054 1.60345E-08 0.00025349 0.000438372 0.00056062 0.000629865 0.000664097 0.000682801 0.000695858 0.000706595 0.000716182 0.000725112 0.00073363 0.00074187 0.000749913 0.000757809 0.000765593 0.000773287 0.000780909 0.000788471 0.000795982 0.000803449 0.000810879 0.000818277 0.000825648 0.000832997 0.00084033 0.000847651 0.000854967 0.000862282 0.000869605 0.00087694 0.000884295 0.000891677 0.000899093 0.000906551 0.000914058 0.000921622 +-0.000692264 -0.000336214 2.14439E-08 0.000287871 0.000507305 0.000663347 0.000762694 0.000817628 0.000846966 0.000865541 0.000879766 0.00089194 0.00090299 0.000913353 0.000923261 0.000932852 0.000942211 0.000951392 0.000960434 0.000969363 0.000978199 0.000986957 0.000995647 0.00100428 0.00101286 0.0010214 0.0010299 0.00103837 0.00104682 0.00105525 0.00106367 0.00107209 0.00108051 0.00108896 0.00109742 0.00110592 0.00111446 0.00112305 0.0011317 +-0.000742372 -0.000363704 2.90493E-08 0.000318837 0.00057003 0.000758033 0.000887997 0.000968099 0.00101297 0.00103968 0.00105862 0.00107403 0.00108759 0.00110004 0.00111179 0.00112304 0.00113395 0.00114459 0.00115502 0.00116529 0.00117542 0.00118543 0.00119535 0.00120519 0.00121495 0.00122464 0.00123429 0.00124388 0.00125344 0.00126296 0.00127247 0.00128196 0.00129145 0.00130095 0.00131046 0.00132001 0.00132959 0.00133923 0.00134892 +-0.000786944 -0.000388115 3.95942E-08 0.000346545 0.000626652 0.000844342 0.00100389 0.00111108 0.00117609 0.00121447 0.00123992 0.00125948 0.00127607 0.00129094 0.00130474 0.00131782 0.00133037 0.00134255 0.00135442 0.00136606 0.00137752 0.00138881 0.00139997 0.00141101 0.00142195 0.0014328 0.00144357 0.00145428 0.00146492 0.00147553 0.00148609 0.00149664 0.00150716 0.00151769 0.00152822 0.00153878 0.00154937 0.00156001 0.00157071 +-0.00082644 -0.000409707 5.40458E-08 0.000371225 0.000677491 0.000922472 0.00110988 0.00124418 0.00133232 0.00138632 0.00142077 0.00144577 0.00146609 0.00148382 0.00149996 0.00151504 0.00152938 0.00154319 0.00155658 0.00156965 0.00158245 0.00159505 0.00160746 0.00161971 0.00163184 0.00164384 0.00165574 0.00166755 0.00167928 0.00169094 0.00170255 0.00171412 0.00172566 0.00173719 0.00174872 0.00176025 0.00177182 0.00178343 0.00179509 +-0.00086131 -0.000428734 7.36583E-08 0.000393127 0.000722949 0.000992852 0.00120615 0.0013665 0.00147892 0.00155194 0.00159844 0.00163063 0.00165565 0.0016768 0.00169564 0.00171297 0.00172928 0.00174483 0.00175983 0.00177439 0.0017886 0.00180253 0.00181622 0.0018297 0.00184301 0.00185617 0.0018692 0.0018821 0.0018949 0.00190762 0.00192026 0.00193284 0.00194538 0.00195788 0.00197037 0.00198286 0.00199537 0.00200792 0.00202051 +-0.000891974 -0.000445435 1.0005E-07 0.000412498 0.000763455 0.00105601 0.00129315 0.00147803 0.00161453 0.00170864 0.00177033 0.00181196 0.00184294 0.00186825 0.00189025 0.00191016 0.00192864 0.0019461 0.00196281 0.00197895 0.00199462 0.00200993 0.00202493 0.00203967 0.00205418 0.00206851 0.00208266 0.00209666 0.00211053 0.00212429 0.00213795 0.00215153 0.00216504 0.00217851 0.00219194 0.00220536 0.00221879 0.00223224 0.00224573 +-0.000918826 -0.000460032 1.35303E-07 0.000429577 0.000799433 0.00111249 0.00137148 0.00157919 0.00173879 0.00185468 0.00193408 0.00198773 0.00202631 0.00205673 0.00208249 0.00210534 0.00212627 0.00214583 0.0021644 0.00218221 0.00219943 0.00221617 0.00223253 0.00224855 0.0022643 0.0022798 0.00229509 0.00231019 0.00232513 0.00233993 0.0023546 0.00236916 0.00238364 0.00239805 0.00241241 0.00242674 0.00244106 0.00245539 0.00246975 +-0.000942226 -0.000472729 1.82087E-07 0.000444586 0.000831289 0.00116286 0.00144178 0.00167058 0.00185195 0.00198932 0.00208788 0.00215601 0.00220418 0.00224091 0.00227116 0.00229745 0.00232114 0.00234305 0.00236364 0.00238326 0.00240212 0.00242037 0.00243813 0.00245548 0.00247248 0.00248919 0.00250563 0.00252185 0.00253786 0.00255369 0.00256938 0.00258492 0.00260036 0.0026157 0.00263097 0.00264619 0.00266139 0.00267658 0.00269178 +-0.000962505 -0.00048371 2.43812E-07 0.000457732 0.000859407 0.00120763 0.00150469 0.00175287 0.00195454 0.00211251 0.00223065 0.00231514 0.00237501 0.00241955 0.0024552 0.00248551 0.00251238 0.0025369 0.00255974 0.00258131 0.00260192 0.00262178 0.00264101 0.00265974 0.00267804 0.00269597 0.00271359 0.00273093 0.00274803 0.00276491 0.00278161 0.00279813 0.00281452 0.00283079 0.00284696 0.00286306 0.00287911 0.00289514 0.00291117 +-0.000979962 -0.000493141 3.24823E-07 0.000469204 0.000884142 0.00124731 0.00156082 0.00182675 0.00204724 0.00222465 0.00236202 0.00246391 0.00253742 0.00259145 0.00263361 0.00266866 0.00269919 0.00272667 0.00275199 0.00277571 0.00279821 0.00281977 0.00284056 0.00286073 0.00288038 0.00289958 0.0029184 0.00293689 0.00295509 0.00297303 0.00299074 0.00300825 0.00302559 0.00304278 0.00305985 0.00307682 0.00309372 0.00311058 0.00312741 +-0.000994866 -0.000501172 4.30646E-07 0.000479178 0.000905825 0.00128237 0.00161077 0.00189291 0.00213074 0.00232633 0.00248215 0.00260167 0.00269023 0.00275548 0.00280547 0.00284611 0.00288086 0.0029117 0.00293979 0.00296588 0.00299045 0.00301383 0.00303628 0.00305797 0.00307902 0.00309954 0.0031196 0.00313927 0.00315859 0.0031776 0.00319634 0.00321484 0.00323314 0.00325125 0.00326921 0.00328705 0.00330479 0.00332246 0.00334009 +-0.00100746 -0.000507933 5.6828E-07 0.000487813 0.000924757 0.00131325 0.00165508 0.001952 0.00220577 0.00241824 0.00259152 0.00272831 0.00283266 0.00291065 0.00296989 0.00301711 0.00305676 0.00309143 0.00312264 0.00315134 0.00317816 0.00320353 0.00322775 0.00325104 0.00327357 0.00329547 0.00331681 0.00333769 0.00335816 0.00337827 0.00339805 0.00341756 0.00343682 0.00345586 0.00347471 0.00349341 0.00351199 0.00353047 0.00354888 +-0.00101796 -0.000513542 7.46583E-07 0.000495258 0.000941218 0.00134034 0.00169426 0.00200461 0.00227301 0.0025011 0.00269073 0.00284412 0.00296437 0.00305617 0.00312605 0.00318098 0.0032263 0.00326534 0.00330005 0.00333166 0.00336096 0.00338848 0.00341461 0.00343962 0.00346371 0.00348704 0.00350973 0.00353186 0.00355351 0.00357474 0.00359559 0.00361612 0.00363635 0.00365633 0.00367609 0.00369565 0.00371506 0.00373435 0.00375354 +-0.00102654 -0.000518097 9.76729E-07 0.000501647 0.000955465 0.00136401 0.0017288 0.00205134 0.0023331 0.00257561 0.00278049 0.0029496 0.00308543 0.00319155 0.00327326 0.00333708 0.00338895 0.00343296 0.00347163 0.00350648 0.0035385 0.00356838 0.00359657 0.00362341 0.00364917 0.00367402 0.0036981 0.00372154 0.00374441 0.0037668 0.00378875 0.00381031 0.00383154 0.00385247 0.00387313 0.00389357 0.00391382 0.00393391 0.00395388 +-0.00103339 -0.000521686 1.27279E-06 0.00050711 0.000967734 0.0013846 0.00175913 0.0020927 0.00238668 0.00264245 0.00286147 0.00304537 0.00319617 0.00331667 0.00341101 0.00348485 0.00354421 0.00359389 0.003637 0.00367546 0.0037105 0.00374294 0.00377337 0.0038022 0.00382972 0.00385618 0.00388174 0.00390654 0.00393069 0.00395426 0.00397734 0.00399997 0.00402221 0.0040441 0.00406569 0.00408701 0.0041081 0.004129 0.00414975 +-0.00103864 -0.000524378 1.65245E-06 0.000511763 0.000978243 0.00140244 0.00178567 0.00212921 0.00243431 0.00270226 0.00293438 0.00313209 0.00329712 0.00343169 0.00353904 0.00362381 0.00369163 0.00374772 0.00379583 0.00383831 0.00387668 0.00391195 0.00394481 0.00397577 0.0040052 0.00403337 0.00406048 0.00408672 0.00411219 0.004137 0.00416124 0.00418497 0.00420825 0.00423113 0.00425366 0.00427587 0.00429782 0.00431954 0.00434107 +-0.0010424 -0.000526229 2.13789E-06 0.000515721 0.000987197 0.00141782 0.00180879 0.00216131 0.00247654 0.00275565 0.00299986 0.00321044 0.00338887 0.003537 0.00365737 0.00375368 0.00383085 0.00389414 0.00394783 0.00399478 0.00403684 0.0040752 0.00411072 0.00414399 0.00417545 0.00420544 0.00423421 0.00426195 0.00428882 0.00431492 0.00434037 0.00436523 0.00438958 0.00441347 0.00443696 0.00446009 0.0044829 0.00450545 0.00452777 +-0.00104478 -0.00052728 2.75689E-06 0.000519095 0.000994787 0.001431 0.00182885 0.00218944 0.00251386 0.00280319 0.00305854 0.00328107 0.00347207 0.0036331 0.00376622 0.00387435 0.00396159 0.00403287 0.00409277 0.00414466 0.00419077 0.00423252 0.00427093 0.0043067 0.00434037 0.00437231 0.00440284 0.00443217 0.0044605 0.00448795 0.00451466 0.00454069 0.00456615 0.00459108 0.00461555 0.00463961 0.00466332 0.0046867 0.00470982 +-0.00104584 -0.000527556 3.54415E-06 0.000521991 0.0010012 0.00144224 0.00184617 0.002214 0.00254675 0.00284541 0.00311101 0.00334461 0.00354735 0.00372058 0.003866 0.00398594 0.00408372 0.00416369 0.00423044 0.00428777 0.00433831 0.00438378 0.00442533 0.00446382 0.00449985 0.00453389 0.00456629 0.00459732 0.00462719 0.00465606 0.00468407 0.00471133 0.00473793 0.00476393 0.00478942 0.00481444 0.00483905 0.00486329 0.00488723 +-0.00104563 -0.000527065 4.54297E-06 0.000524519 0.0010066 0.00145179 0.00186106 0.00223537 0.00257565 0.00288282 0.00315784 0.00340167 0.00361534 0.00380004 0.0039572 0.00408872 0.00419725 0.00428647 0.0043607 0.00442398 0.00447936 0.00452886 0.00457383 0.00461526 0.00465385 0.00469014 0.00472454 0.00475736 0.00478886 0.00481922 0.00484861 0.00487714 0.00490492 0.00493204 0.00495857 0.00498458 0.00501012 0.00503524 0.00506001 +-0.00104418 -0.000525796 5.80729E-06 0.000526792 0.00101117 0.00145988 0.00187383 0.00225391 0.00260097 0.00291589 0.00319955 0.00345282 0.00367666 0.0038721 0.00404039 0.00418309 0.00430236 0.0044012 0.00448346 0.00455321 0.00461384 0.00466769 0.00471636 0.00476096 0.00480231 0.00484102 0.00487755 0.00491229 0.00494552 0.00497745 0.00500828 0.00503814 0.00506716 0.00509543 0.00512304 0.00515007 0.00517656 0.00520259 0.00522821 +-0.00104147 -0.000523716 7.40417E-06 0.000528931 0.00101509 0.00146675 0.00188476 0.00226995 0.00262312 0.00294508 0.00323664 0.00349862 0.00373188 0.00393737 0.00411615 0.00426956 0.00439935 0.00450797 0.00459872 0.00467543 0.0047417 0.00480025 0.00485289 0.00490091 0.00494522 0.00498652 0.00502534 0.00506212 0.00509718 0.00513077 0.00516312 0.00519437 0.00522468 0.00525416 0.00528289 0.00531096 0.00533844 0.0053654 0.00539189 +-0.00103747 -0.000520769 9.41682E-06 0.000531066 0.00101853 0.00147262 0.00189413 0.00228383 0.00264247 0.00297081 0.0032696 0.00353959 0.00378158 0.00399642 0.00418506 0.00434865 0.00448864 0.00460703 0.00470655 0.00479066 0.00486299 0.00492654 0.00498343 0.0050351 0.00508258 0.00512665 0.00516793 0.00520688 0.00524388 0.00527923 0.00531317 0.0053459 0.00537755 0.00540828 0.00543817 0.00546733 0.00549583 0.00552375 0.00555114 +-0.0010321 -0.00051687 1.19484E-05 0.000533342 0.00102168 0.00147773 0.00190222 0.00229588 0.00265941 0.00299352 0.00329889 0.00357624 0.0038263 0.00404985 0.00424773 0.00442094 0.00457071 0.00469869 0.00480712 0.004899 0.00497777 0.00504664 0.00510802 0.00516357 0.00521444 0.00526147 0.00530536 0.00534662 0.00538569 0.00542291 0.00545853 0.00549279 0.00552586 0.00555789 0.005589 0.00561929 0.00564885 0.00567775 0.00570607 +-0.00102524 -0.000511902 1.51264E-05 0.000535924 0.00102474 0.00148232 0.00190932 0.00230643 0.00267431 0.00301361 0.00332498 0.00360908 0.00386659 0.00409821 0.00430472 0.004487 0.00464609 0.00478338 0.00490071 0.00500059 0.00508616 0.00516066 0.00522678 0.00528642 0.00534086 0.00539104 0.00543771 0.00548143 0.0055227 0.00556188 0.00559929 0.00563517 0.00566972 0.00570312 0.00573549 0.00576695 0.0057976 0.00582753 0.00585681 diff --git a/paranoia_parallel/examples/xspice/table/bsim4p-2d-1.table b/paranoia_parallel/examples/xspice/table/bsim4p-2d-1.table new file mode 100644 index 000000000..085fe8924 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/bsim4p-2d-1.table @@ -0,0 +1,200 @@ +*table for pmos bsim 4 +*x +191 +*y +191 +*x row +-1.8 -1.79 -1.78 -1.77 -1.76 -1.75 -1.74 -1.73 -1.72 -1.71 -1.7 -1.69 -1.68 -1.67 -1.66 -1.65 -1.64 -1.63 -1.62 -1.61 -1.6 -1.59 -1.58 -1.57 -1.56 -1.55 -1.54 -1.53 -1.52 -1.51 -1.5 -1.49 -1.48 -1.47 -1.46 -1.45 -1.44 -1.43 -1.42 -1.41 -1.4 -1.39 -1.38 -1.37 -1.36 -1.35 -1.34 -1.33 -1.32 -1.31 -1.3 -1.29 -1.28 -1.27 -1.26 -1.25 -1.24 -1.23 -1.22 -1.21 -1.2 -1.19 -1.18 -1.17 -1.16 -1.15 -1.14 -1.13 -1.12 -1.11 -1.1 -1.09 -1.08 -1.07 -1.06 -1.05 -1.04 -1.03 -1.02 -1.01 -1 -0.99 -0.98 -0.97 -0.96 -0.95 -0.94 -0.93 -0.92 -0.91 -0.9 -0.89 -0.88 -0.87 -0.86 -0.85 -0.84 -0.83 -0.82 -0.81 -0.8 -0.79 -0.78 -0.77 -0.76 -0.75 -0.74 -0.73 -0.72 -0.71 -0.7 -0.69 -0.68 -0.67 -0.66 -0.65 -0.64 -0.63 -0.62 -0.61 -0.6 -0.59 -0.58 -0.57 -0.56 -0.55 -0.54 -0.53 -0.52 -0.51 -0.5 -0.49 -0.48 -0.47 -0.46 -0.45 -0.44 -0.43 -0.42 -0.41 -0.4 -0.39 -0.38 -0.37 -0.36 -0.35 -0.34 -0.33 -0.32 -0.31 -0.3 -0.29 -0.28 -0.27 -0.26 -0.25 -0.24 -0.23 -0.22 -0.21 -0.2 -0.19 -0.18 -0.17 -0.16 -0.15 -0.14 -0.13 -0.12 -0.11 -0.1 -0.09 -0.08 -0.07 -0.06 -0.05 -0.04 -0.03 -0.02 -0.01 1.419E-15 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 +*y column +-1.8 -1.79 -1.78 -1.77 -1.76 -1.75 -1.74 -1.73 -1.72 -1.71 -1.7 -1.69 -1.68 -1.67 -1.66 -1.65 -1.64 -1.63 -1.62 -1.61 -1.6 -1.59 -1.58 -1.57 -1.56 -1.55 -1.54 -1.53 -1.52 -1.51 -1.5 -1.49 -1.48 -1.47 -1.46 -1.45 -1.44 -1.43 -1.42 -1.41 -1.4 -1.39 -1.38 -1.37 -1.36 -1.35 -1.34 -1.33 -1.32 -1.31 -1.3 -1.29 -1.28 -1.27 -1.26 -1.25 -1.24 -1.23 -1.22 -1.21 -1.2 -1.19 -1.18 -1.17 -1.16 -1.15 -1.14 -1.13 -1.12 -1.11 -1.1 -1.09 -1.08 -1.07 -1.06 -1.05 -1.04 -1.03 -1.02 -1.01 -1 -0.99 -0.98 -0.97 -0.96 -0.95 -0.94 -0.93 -0.92 -0.91 -0.9 -0.89 -0.88 -0.87 -0.86 -0.85 -0.84 -0.83 -0.82 -0.81 -0.8 -0.79 -0.78 -0.77 -0.76 -0.75 -0.74 -0.73 -0.72 -0.71 -0.7 -0.69 -0.68 -0.67 -0.66 -0.65 -0.64 -0.63 -0.62 -0.61 -0.6 -0.59 -0.58 -0.57 -0.56 -0.55 -0.54 -0.53 -0.52 -0.51 -0.5 -0.49 -0.48 -0.47 -0.46 -0.45 -0.44 -0.43 -0.42 -0.41 -0.4 -0.39 -0.38 -0.37 -0.36 -0.35 -0.34 -0.33 -0.32 -0.31 -0.3 -0.29 -0.28 -0.27 -0.26 -0.25 -0.24 -0.23 -0.22 -0.21 -0.2 -0.19 -0.18 -0.17 -0.16 -0.15 -0.14 -0.13 -0.12 -0.11 -0.1 -0.09 -0.08 -0.07 -0.06 -0.05 -0.04 -0.03 -0.02 -0.01 1.419E-15 0.01 0.02 0.03 0.04 0.05 0.06 0.07 0.08 0.09 0.1 +-0.00233258 -0.00233015 -0.00232771 -0.00232527 -0.00232281 -0.00232034 -0.00231786 -0.00231538 -0.00231288 -0.00231037 -0.00230786 -0.00230533 -0.00230279 -0.00230024 -0.00229768 -0.00229511 -0.00229253 -0.00228994 -0.00228733 -0.00228471 -0.00228208 -0.00227944 -0.00227678 -0.00227411 -0.00227143 -0.00226874 -0.00226603 -0.00226331 -0.00226057 -0.00225782 -0.00225506 -0.00225228 -0.00224948 -0.00224667 -0.00224384 -0.002241 -0.00223814 -0.00223526 -0.00223237 -0.00222946 -0.00222653 -0.00222358 -0.00222061 -0.00221763 -0.00221462 -0.00221159 -0.00220855 -0.00220548 -0.00220239 -0.00219927 -0.00219614 -0.00219298 -0.0021898 -0.00218659 -0.00218335 -0.00218009 -0.00217681 -0.00217349 -0.00217014 -0.00216677 -0.00216336 -0.00215992 -0.00215644 -0.00215293 -0.00214938 -0.00214578 -0.00214215 -0.00213847 -0.00213473 -0.00213095 -0.0021271 -0.0021232 -0.00211922 -0.00211517 -0.00211103 -0.00210681 -0.00210248 -0.00209805 -0.0020935 -0.00208882 -0.002084 -0.00207904 -0.0020739 -0.0020686 -0.00206311 -0.00205742 -0.00205153 -0.00204541 -0.00203907 -0.00203249 -0.00202566 -0.00201857 -0.00201122 -0.00200359 -0.00199569 -0.0019875 -0.00197902 -0.00197024 -0.00196115 -0.00195176 -0.00194206 -0.00193204 -0.00192171 -0.00191104 -0.00190006 -0.00188874 -0.00187709 -0.00186511 -0.00185279 -0.00184014 -0.00182714 -0.00181379 -0.00180011 -0.00178607 -0.00177169 -0.00175696 -0.00174188 -0.00172644 -0.00171065 -0.00169451 -0.00167801 -0.00166115 -0.00164393 -0.00162635 -0.00160842 -0.00159012 -0.00157145 -0.00155242 -0.00153303 -0.00151327 -0.00149315 -0.00147265 -0.00145179 -0.00143056 -0.00140896 -0.00138699 -0.00136464 -0.00134192 -0.00131883 -0.00129536 -0.00127152 -0.00124731 -0.00122271 -0.00119774 -0.00117239 -0.00114666 -0.00112056 -0.00109407 -0.0010672 -0.00103995 -0.00101231 -0.000984294 -0.000955892 -0.000927106 -0.000897934 -0.000868375 -0.00083843 -0.000808097 -0.000777376 -0.000746265 -0.000714765 -0.000682874 -0.000650592 -0.000617918 -0.000584851 -0.00055139 -0.000517535 -0.000483285 -0.000448639 -0.000413597 -0.000378157 -0.000342318 -0.000306081 -0.000269443 -0.000232405 -0.000194965 -0.000157122 -0.000118875 -8.02236E-05 -4.11662E-05 -1.70168E-06 3.78661E-05 7.72442E-05 0.000116434 0.000155437 0.000194256 0.000232892 0.000271347 0.000309622 0.00034772 0.000385643 +-0.00232133 -0.00231892 -0.00231649 -0.00231406 -0.00231162 -0.00230916 -0.0023067 -0.00230423 -0.00230175 -0.00229926 -0.00229675 -0.00229424 -0.00229172 -0.00228919 -0.00228664 -0.00228409 -0.00228152 -0.00227894 -0.00227635 -0.00227375 -0.00227114 -0.00226851 -0.00226588 -0.00226323 -0.00226056 -0.00225789 -0.0022552 -0.00225249 -0.00224977 -0.00224704 -0.0022443 -0.00224154 -0.00223876 -0.00223597 -0.00223316 -0.00223034 -0.0022275 -0.00222464 -0.00222177 -0.00221888 -0.00221597 -0.00221305 -0.0022101 -0.00220714 -0.00220416 -0.00220115 -0.00219813 -0.00219509 -0.00219202 -0.00218893 -0.00218582 -0.00218269 -0.00217953 -0.00217635 -0.00217314 -0.00216991 -0.00216665 -0.00216336 -0.00216005 -0.0021567 -0.00215332 -0.00214991 -0.00214647 -0.00214299 -0.00213947 -0.00213592 -0.00213232 -0.00212868 -0.00212498 -0.00212124 -0.00211744 -0.00211358 -0.00210966 -0.00210566 -0.00210159 -0.00209743 -0.00209318 -0.00208882 -0.00208435 -0.00207976 -0.00207503 -0.00207016 -0.00206514 -0.00205994 -0.00205457 -0.002049 -0.00204324 -0.00203725 -0.00203105 -0.00202461 -0.00201792 -0.00201098 -0.00200378 -0.00199631 -0.00198856 -0.00198053 -0.00197221 -0.00196359 -0.00195466 -0.00194543 -0.00193589 -0.00192603 -0.00191585 -0.00190535 -0.00189452 -0.00188336 -0.00187187 -0.00186005 -0.00184788 -0.00183537 -0.00182253 -0.00180933 -0.00179579 -0.0017819 -0.00176767 -0.00175308 -0.00173813 -0.00172284 -0.00170718 -0.00169117 -0.0016748 -0.00165807 -0.00164098 -0.00162353 -0.00160571 -0.00158753 -0.00156898 -0.00155007 -0.00153079 -0.00151114 -0.00149112 -0.00147074 -0.00144998 -0.00142884 -0.00140734 -0.00138546 -0.00136321 -0.00134058 -0.00131758 -0.0012942 -0.00127044 -0.0012463 -0.00122178 -0.00119688 -0.00117161 -0.00114595 -0.0011199 -0.00109348 -0.00106667 -0.00103948 -0.0010119 -0.000983931 -0.000955578 -0.000926838 -0.000897709 -0.000868192 -0.000838285 -0.000807987 -0.000777297 -0.000746216 -0.000714742 -0.000682875 -0.000650613 -0.000617957 -0.000584905 -0.000551456 -0.00051761 -0.000483366 -0.000448723 -0.000413681 -0.000378238 -0.000342394 -0.000306147 -0.000269498 -0.000232445 -0.000194987 -0.000157124 -0.000118854 -8.01758E-05 -4.10892E-05 -1.59261E-06 3.80091E-05 7.74213E-05 0.000116645 0.000155683 0.000194536 0.000233206 0.000271695 0.000310005 0.000348137 0.000386093 +-0.00230999 -0.00230759 -0.00230518 -0.00230276 -0.00230033 -0.00229789 -0.00229544 -0.00229299 -0.00229052 -0.00228804 -0.00228556 -0.00228306 -0.00228055 -0.00227803 -0.00227551 -0.00227297 -0.00227042 -0.00226786 -0.00226528 -0.0022627 -0.0022601 -0.00225749 -0.00225487 -0.00225224 -0.0022496 -0.00224694 -0.00224427 -0.00224158 -0.00223888 -0.00223617 -0.00223344 -0.0022307 -0.00222794 -0.00222517 -0.00222239 -0.00221958 -0.00221676 -0.00221393 -0.00221108 -0.00220821 -0.00220532 -0.00220242 -0.0021995 -0.00219656 -0.0021936 -0.00219062 -0.00218762 -0.0021846 -0.00218156 -0.00217849 -0.00217541 -0.0021723 -0.00216917 -0.00216601 -0.00216283 -0.00215963 -0.0021564 -0.00215314 -0.00214985 -0.00214653 -0.00214319 -0.00213981 -0.0021364 -0.00213295 -0.00212947 -0.00212595 -0.00212239 -0.00211878 -0.00211513 -0.00211143 -0.00210768 -0.00210387 -0.00209999 -0.00209605 -0.00209204 -0.00208794 -0.00208375 -0.00207947 -0.00207508 -0.00207057 -0.00206593 -0.00206116 -0.00205623 -0.00205115 -0.00204589 -0.00204044 -0.0020348 -0.00202895 -0.00202288 -0.00201658 -0.00201004 -0.00200325 -0.0019962 -0.00198888 -0.00198129 -0.00197341 -0.00196525 -0.00195679 -0.00194802 -0.00193896 -0.00192958 -0.00191988 -0.00190986 -0.00189952 -0.00188885 -0.00187785 -0.00186652 -0.00185485 -0.00184284 -0.00183049 -0.00181779 -0.00180475 -0.00179136 -0.00177762 -0.00176353 -0.00174908 -0.00173428 -0.00171912 -0.0017036 -0.00168773 -0.00167149 -0.00165489 -0.00163793 -0.00162061 -0.00160291 -0.00158485 -0.00156643 -0.00154763 -0.00152847 -0.00150893 -0.00148902 -0.00146874 -0.00144809 -0.00142706 -0.00140565 -0.00138387 -0.00136172 -0.00133918 -0.00131626 -0.00129297 -0.0012693 -0.00124524 -0.0012208 -0.00119598 -0.00117077 -0.00114519 -0.00111921 -0.00109285 -0.0010661 -0.00103897 -0.00101145 -0.000983534 -0.000955232 -0.000926541 -0.000897457 -0.000867982 -0.000838115 -0.000807853 -0.000777198 -0.000746148 -0.000714702 -0.000682859 -0.00065062 -0.000617983 -0.000584947 -0.000551511 -0.000517675 -0.000483439 -0.0004488 -0.000413759 -0.000378315 -0.000342466 -0.000306212 -0.000269553 -0.000232486 -0.000195012 -0.000157129 -0.000118836 -8.01331E-05 -4.10181E-05 -1.49029E-06 3.81446E-05 7.759E-05 0.000116848 0.000155919 0.000194806 0.000233509 0.000272032 0.000310375 0.000348541 0.000386531 +-0.00229855 -0.00229616 -0.00229376 -0.00229136 -0.00228894 -0.00228652 -0.00228409 -0.00228165 -0.00227919 -0.00227673 -0.00227426 -0.00227178 -0.00226929 -0.00226679 -0.00226427 -0.00226175 -0.00225922 -0.00225667 -0.00225412 -0.00225155 -0.00224897 -0.00224638 -0.00224378 -0.00224116 -0.00223853 -0.00223589 -0.00223324 -0.00223057 -0.00222789 -0.0022252 -0.00222249 -0.00221977 -0.00221703 -0.00221428 -0.00221151 -0.00220873 -0.00220593 -0.00220312 -0.00220029 -0.00219744 -0.00219458 -0.00219169 -0.00218879 -0.00218588 -0.00218294 -0.00217998 -0.00217701 -0.00217401 -0.00217099 -0.00216796 -0.0021649 -0.00216181 -0.00215871 -0.00215558 -0.00215243 -0.00214925 -0.00214604 -0.00214281 -0.00213956 -0.00213627 -0.00213295 -0.0021296 -0.00212622 -0.00212281 -0.00211936 -0.00211588 -0.00211235 -0.00210879 -0.00210517 -0.00210152 -0.00209781 -0.00209404 -0.00209022 -0.00208633 -0.00208237 -0.00207833 -0.00207421 -0.00206999 -0.00206568 -0.00206125 -0.0020567 -0.00205202 -0.00204719 -0.00204221 -0.00203707 -0.00203174 -0.00202622 -0.0020205 -0.00201456 -0.0020084 -0.002002 -0.00199536 -0.00198846 -0.0019813 -0.00197386 -0.00196614 -0.00195814 -0.00194984 -0.00194124 -0.00193233 -0.00192311 -0.00191358 -0.00190373 -0.00189355 -0.00188304 -0.0018722 -0.00186103 -0.00184952 -0.00183767 -0.00182547 -0.00181293 -0.00180004 -0.0017868 -0.00177321 -0.00175927 -0.00174497 -0.00173031 -0.0017153 -0.00169992 -0.00168418 -0.00166808 -0.00165162 -0.00163479 -0.00161759 -0.00160002 -0.00158209 -0.00156379 -0.00154511 -0.00152606 -0.00150664 -0.00148684 -0.00146667 -0.00144613 -0.0014252 -0.0014039 -0.00138222 -0.00136016 -0.00133771 -0.00131489 -0.00129169 -0.0012681 -0.00124412 -0.00121977 -0.00119502 -0.00116989 -0.00114438 -0.00111847 -0.00109218 -0.0010655 -0.00103842 -0.00101096 -0.000983103 -0.000954854 -0.000926212 -0.000897176 -0.000867745 -0.000837919 -0.000807696 -0.000777076 -0.000746059 -0.000714642 -0.000682827 -0.000650611 -0.000617994 -0.000584976 -0.000551555 -0.000517731 -0.000483503 -0.000448871 -0.000413832 -0.000378388 -0.000342536 -0.000306276 -0.000269607 -0.000232528 -0.000195038 -0.000157137 -0.000118823 -8.00949E-05 -4.09525E-05 -1.39433E-06 3.82728E-05 7.77508E-05 0.000117041 0.000156145 0.000195065 0.000233802 0.000272358 0.000310734 0.000348933 0.000386956 +-0.00228701 -0.00228464 -0.00228225 -0.00227986 -0.00227746 -0.00227505 -0.00227264 -0.00227021 -0.00226777 -0.00226532 -0.00226287 -0.0022604 -0.00225793 -0.00225544 -0.00225294 -0.00225044 -0.00224792 -0.00224539 -0.00224285 -0.0022403 -0.00223774 -0.00223516 -0.00223258 -0.00222998 -0.00222737 -0.00222475 -0.00222211 -0.00221946 -0.0022168 -0.00221413 -0.00221144 -0.00220873 -0.00220602 -0.00220329 -0.00220054 -0.00219778 -0.002195 -0.00219221 -0.0021894 -0.00218657 -0.00218373 -0.00218087 -0.00217799 -0.0021751 -0.00217218 -0.00216925 -0.0021663 -0.00216332 -0.00216033 -0.00215732 -0.00215428 -0.00215123 -0.00214815 -0.00214504 -0.00214192 -0.00213877 -0.00213559 -0.00213239 -0.00212916 -0.0021259 -0.00212262 -0.0021193 -0.00211595 -0.00211257 -0.00210915 -0.0021057 -0.00210221 -0.00209868 -0.00209511 -0.00209149 -0.00208783 -0.00208411 -0.00208033 -0.00207649 -0.00207259 -0.00206861 -0.00206455 -0.0020604 -0.00205616 -0.00205181 -0.00204734 -0.00204275 -0.00203802 -0.00203314 -0.0020281 -0.00202289 -0.00201749 -0.0020119 -0.00200609 -0.00200007 -0.00199381 -0.00198732 -0.00198057 -0.00197356 -0.00196627 -0.00195872 -0.00195087 -0.00194273 -0.0019343 -0.00192555 -0.0019165 -0.00190713 -0.00189744 -0.00188743 -0.00187709 -0.00186641 -0.0018554 -0.00184405 -0.00183236 -0.00182032 -0.00180794 -0.00179521 -0.00178212 -0.00176868 -0.00175489 -0.00174074 -0.00172623 -0.00171136 -0.00169613 -0.00168053 -0.00166457 -0.00164824 -0.00163154 -0.00161448 -0.00159704 -0.00157923 -0.00156105 -0.0015425 -0.00152357 -0.00150427 -0.00148458 -0.00146453 -0.00144409 -0.00142327 -0.00140207 -0.00138049 -0.00135853 -0.00133619 -0.00131346 -0.00129034 -0.00126684 -0.00124295 -0.00121868 -0.00119402 -0.00116896 -0.00114352 -0.00111769 -0.00109146 -0.00106485 -0.00103784 -0.00101043 -0.000982636 -0.000954442 -0.000925852 -0.000896864 -0.00086748 -0.000837696 -0.000807514 -0.000776931 -0.000745948 -0.000714563 -0.000682775 -0.000650585 -0.00061799 -0.000584991 -0.000551587 -0.000517776 -0.000483559 -0.000448933 -0.000413899 -0.000378455 -0.000342601 -0.000306336 -0.000269659 -0.000232569 -0.000195065 -0.000157146 -0.000118812 -8.00608E-05 -4.0892E-05 -1.30436E-06 3.83942E-05 7.79038E-05 0.000117226 0.000156362 0.000195314 0.000234084 0.000272672 0.000311081 0.000349313 0.000387368 +-0.00227538 -0.00227302 -0.00227065 -0.00226827 -0.00226588 -0.00226349 -0.00226108 -0.00225867 -0.00225625 -0.00225382 -0.00225138 -0.00224893 -0.00224647 -0.002244 -0.00224152 -0.00223902 -0.00223652 -0.00223401 -0.00223149 -0.00222895 -0.00222641 -0.00222385 -0.00222128 -0.0022187 -0.00221611 -0.0022135 -0.00221089 -0.00220826 -0.00220561 -0.00220296 -0.00220029 -0.0021976 -0.00219491 -0.00219219 -0.00218947 -0.00218672 -0.00218397 -0.0021812 -0.00217841 -0.0021756 -0.00217278 -0.00216994 -0.00216709 -0.00216421 -0.00216132 -0.00215841 -0.00215548 -0.00215254 -0.00214957 -0.00214658 -0.00214357 -0.00214054 -0.00213748 -0.00213441 -0.00213131 -0.00212818 -0.00212504 -0.00212186 -0.00211866 -0.00211543 -0.00211218 -0.00210889 -0.00210557 -0.00210222 -0.00209884 -0.00209543 -0.00209197 -0.00208848 -0.00208494 -0.00208137 -0.00207774 -0.00207406 -0.00207033 -0.00206655 -0.00206269 -0.00205877 -0.00205477 -0.00205069 -0.00204651 -0.00204224 -0.00203785 -0.00203335 -0.00202871 -0.00202393 -0.002019 -0.0020139 -0.00200862 -0.00200315 -0.00199747 -0.00199159 -0.00198547 -0.00197912 -0.00197252 -0.00196566 -0.00195853 -0.00195113 -0.00194345 -0.00193547 -0.0019272 -0.00191862 -0.00190974 -0.00190053 -0.00189101 -0.00188116 -0.00187099 -0.00186048 -0.00184963 -0.00183844 -0.00182691 -0.00181504 -0.00180282 -0.00179024 -0.00177731 -0.00176403 -0.00175039 -0.00173639 -0.00172203 -0.00170731 -0.00169222 -0.00167676 -0.00166094 -0.00164475 -0.00162819 -0.00161126 -0.00159396 -0.00157628 -0.00155823 -0.0015398 -0.00152099 -0.0015018 -0.00148224 -0.0014623 -0.00144197 -0.00142126 -0.00140017 -0.0013787 -0.00135683 -0.00133459 -0.00131195 -0.00128893 -0.00126552 -0.00124172 -0.00121754 -0.00119295 -0.00116798 -0.00114262 -0.00111686 -0.0010907 -0.00106416 -0.00103721 -0.00100987 -0.000982131 -0.000953994 -0.000925457 -0.000896521 -0.000867184 -0.000837446 -0.000807305 -0.000776761 -0.000745814 -0.000714462 -0.000682704 -0.000650541 -0.00061797 -0.000584992 -0.000551606 -0.00051781 -0.000483604 -0.000448987 -0.000413958 -0.000378517 -0.000342662 -0.000306393 -0.000269709 -0.000232609 -0.000195092 -0.000157157 -0.000118804 -8.00303E-05 -4.08361E-05 -1.22001E-06 3.85089E-05 7.80494E-05 0.000117403 0.00015657 0.000195554 0.000234355 0.000272976 0.000311417 0.00034968 0.000387768 +-0.00226364 -0.00226129 -0.00225894 -0.00225658 -0.0022542 -0.00225182 -0.00224943 -0.00224704 -0.00224463 -0.00224221 -0.00223979 -0.00223735 -0.00223491 -0.00223245 -0.00222999 -0.00222751 -0.00222503 -0.00222253 -0.00222002 -0.00221751 -0.00221498 -0.00221244 -0.00220989 -0.00220732 -0.00220475 -0.00220216 -0.00219956 -0.00219695 -0.00219433 -0.00219169 -0.00218904 -0.00218637 -0.00218369 -0.002181 -0.00217829 -0.00217557 -0.00217284 -0.00217008 -0.00216732 -0.00216453 -0.00216173 -0.00215892 -0.00215608 -0.00215323 -0.00215036 -0.00214748 -0.00214457 -0.00214165 -0.0021387 -0.00213574 -0.00213275 -0.00212975 -0.00212672 -0.00212367 -0.0021206 -0.0021175 -0.00211438 -0.00211123 -0.00210806 -0.00210486 -0.00210163 -0.00209838 -0.00209509 -0.00209178 -0.00208843 -0.00208504 -0.00208162 -0.00207817 -0.00207467 -0.00207113 -0.00206755 -0.00206391 -0.00206023 -0.00205649 -0.00205268 -0.00204882 -0.00204488 -0.00204085 -0.00203675 -0.00203254 -0.00202824 -0.00202382 -0.00201927 -0.00201459 -0.00200975 -0.00200476 -0.0019996 -0.00199425 -0.0019887 -0.00198295 -0.00197697 -0.00197076 -0.00196431 -0.00195761 -0.00195064 -0.00194339 -0.00193587 -0.00192806 -0.00191995 -0.00191154 -0.00190282 -0.00189378 -0.00188443 -0.00187475 -0.00186474 -0.0018544 -0.00184372 -0.00183269 -0.00182133 -0.00180962 -0.00179756 -0.00178514 -0.00177237 -0.00175925 -0.00174576 -0.00173192 -0.00171771 -0.00170313 -0.00168819 -0.00167289 -0.00165721 -0.00164116 -0.00162474 -0.00160794 -0.00159077 -0.00157323 -0.0015553 -0.001537 -0.00151832 -0.00149926 -0.00147981 -0.00145998 -0.00143977 -0.00141918 -0.00139819 -0.00137683 -0.00135507 -0.00133292 -0.00131039 -0.00128746 -0.00126415 -0.00124044 -0.00121633 -0.00119184 -0.00116695 -0.00114166 -0.00111598 -0.0010899 -0.00106342 -0.00103654 -0.00100926 -0.000981587 -0.000953509 -0.000925028 -0.000896144 -0.000866857 -0.000837165 -0.000807069 -0.000776566 -0.000745656 -0.000714339 -0.000682613 -0.000650478 -0.000617933 -0.000584977 -0.00055161 -0.000517831 -0.000483638 -0.000449031 -0.000414009 -0.000378572 -0.000342718 -0.000306446 -0.000269757 -0.000232648 -0.000195119 -0.00015717 -0.000118798 -8.00031E-05 -4.07846E-05 -1.14097E-06 3.86175E-05 7.81878E-05 0.000117571 0.00015677 0.000195784 0.000234617 0.000273268 0.000311741 0.000350036 0.000388155 +-0.0022518 -0.00224947 -0.00224713 -0.00224478 -0.00224242 -0.00224006 -0.00223768 -0.0022353 -0.00223291 -0.00223051 -0.0022281 -0.00222568 -0.00222325 -0.00222081 -0.00221836 -0.0022159 -0.00221343 -0.00221095 -0.00220846 -0.00220596 -0.00220345 -0.00220092 -0.00219839 -0.00219584 -0.00219329 -0.00219072 -0.00218814 -0.00218554 -0.00218294 -0.00218032 -0.00217768 -0.00217504 -0.00217238 -0.00216971 -0.00216702 -0.00216432 -0.0021616 -0.00215887 -0.00215612 -0.00215336 -0.00215058 -0.00214779 -0.00214498 -0.00214215 -0.0021393 -0.00213644 -0.00213356 -0.00213066 -0.00212774 -0.0021248 -0.00212184 -0.00211885 -0.00211585 -0.00211283 -0.00210978 -0.00210671 -0.00210362 -0.0021005 -0.00209735 -0.00209418 -0.00209099 -0.00208776 -0.00208451 -0.00208122 -0.0020779 -0.00207455 -0.00207117 -0.00206775 -0.00206429 -0.00206079 -0.00205724 -0.00205365 -0.00205001 -0.00204632 -0.00204256 -0.00203875 -0.00203486 -0.0020309 -0.00202686 -0.00202273 -0.00201849 -0.00201415 -0.00200969 -0.0020051 -0.00200037 -0.00199549 -0.00199043 -0.0019852 -0.00197978 -0.00197416 -0.00196832 -0.00196225 -0.00195595 -0.00194939 -0.00194258 -0.00193549 -0.00192813 -0.00192048 -0.00191254 -0.0019043 -0.00189574 -0.00188688 -0.00187769 -0.00186818 -0.00185834 -0.00184817 -0.00183765 -0.0018268 -0.0018156 -0.00180406 -0.00179216 -0.00177991 -0.0017673 -0.00175434 -0.00174101 -0.00172732 -0.00171326 -0.00169884 -0.00168405 -0.00166889 -0.00165336 -0.00163746 -0.00162118 -0.00160452 -0.00158749 -0.00157008 -0.00155228 -0.00153411 -0.00151556 -0.00149662 -0.0014773 -0.00145759 -0.00143749 -0.00141701 -0.00139614 -0.00137488 -0.00135323 -0.00133119 -0.00130875 -0.00128592 -0.0012627 -0.00123909 -0.00121507 -0.00119066 -0.00116586 -0.00114065 -0.00111505 -0.00108904 -0.00106263 -0.00103583 -0.00100862 -0.000981003 -0.000952985 -0.000924562 -0.000895733 -0.000866498 -0.000836855 -0.000806804 -0.000776343 -0.000745473 -0.000714192 -0.0006825 -0.000650395 -0.000617878 -0.000584946 -0.0005516 -0.000517838 -0.00048366 -0.000449065 -0.000414051 -0.000378619 -0.000342767 -0.000306495 -0.000269801 -0.000232685 -0.000195146 -0.000157182 -0.000118794 -7.99788E-05 -4.0737E-05 -1.06691E-06 3.872E-05 7.83193E-05 0.000117732 0.00015696 0.000196005 0.000234867 0.00027355 0.000312053 0.000350379 0.000388529 +-0.00223987 -0.00223755 -0.00223522 -0.00223289 -0.00223054 -0.00222819 -0.00222583 -0.00222346 -0.00222108 -0.0022187 -0.0022163 -0.0022139 -0.00221148 -0.00220906 -0.00220663 -0.00220418 -0.00220173 -0.00219927 -0.00219679 -0.00219431 -0.00219181 -0.00218931 -0.00218679 -0.00218426 -0.00218172 -0.00217917 -0.00217661 -0.00217403 -0.00217144 -0.00216884 -0.00216623 -0.0021636 -0.00216096 -0.00215831 -0.00215564 -0.00215296 -0.00215026 -0.00214755 -0.00214483 -0.00214209 -0.00213933 -0.00213656 -0.00213377 -0.00213096 -0.00212814 -0.0021253 -0.00212244 -0.00211956 -0.00211666 -0.00211375 -0.00211081 -0.00210786 -0.00210488 -0.00210188 -0.00209886 -0.00209582 -0.00209275 -0.00208966 -0.00208654 -0.0020834 -0.00208023 -0.00207704 -0.00207381 -0.00207056 -0.00206728 -0.00206396 -0.00206061 -0.00205722 -0.0020538 -0.00205033 -0.00204683 -0.00204328 -0.00203968 -0.00203603 -0.00203233 -0.00202856 -0.00202473 -0.00202083 -0.00201685 -0.00201278 -0.00200862 -0.00200436 -0.00199998 -0.00199548 -0.00199085 -0.00198606 -0.00198112 -0.00197601 -0.00197071 -0.00196521 -0.00195951 -0.00195358 -0.00194742 -0.00194102 -0.00193436 -0.00192743 -0.00192023 -0.00191274 -0.00190497 -0.00189689 -0.00188851 -0.00187981 -0.0018708 -0.00186146 -0.00185179 -0.00184178 -0.00183144 -0.00182076 -0.00180973 -0.00179835 -0.00178662 -0.00177454 -0.00176209 -0.00174929 -0.00173612 -0.00172259 -0.00170869 -0.00169443 -0.00167979 -0.00166478 -0.0016494 -0.00163364 -0.0016175 -0.00160099 -0.0015841 -0.00156682 -0.00154916 -0.00153112 -0.0015127 -0.00149389 -0.00147469 -0.0014551 -0.00143513 -0.00141476 -0.001394 -0.00137285 -0.00135131 -0.00132938 -0.00130705 -0.00128432 -0.00126119 -0.00123767 -0.00121375 -0.00118943 -0.00116471 -0.00113959 -0.00111406 -0.00108813 -0.0010618 -0.00103507 -0.00100793 -0.000980377 -0.000952422 -0.000924059 -0.000895287 -0.000866105 -0.000836512 -0.000806508 -0.000776093 -0.000745264 -0.000714021 -0.000682364 -0.000650292 -0.000617803 -0.000584897 -0.000551574 -0.000517831 -0.00048367 -0.000449087 -0.000414084 -0.000378659 -0.000342811 -0.000306539 -0.000269842 -0.00023272 -0.000195171 -0.000157195 -0.000118791 -7.99569E-05 -4.06929E-05 -9.97532E-07 3.88168E-05 7.8444E-05 0.000117885 0.000157142 0.000196216 0.000235108 0.00027382 0.000312353 0.00035071 0.00038889 +-0.00222783 -0.00222552 -0.00222321 -0.00222089 -0.00221856 -0.00221622 -0.00221387 -0.00221152 -0.00220916 -0.00220679 -0.00220441 -0.00220202 -0.00219962 -0.00219721 -0.00219479 -0.00219236 -0.00218993 -0.00218748 -0.00218502 -0.00218255 -0.00218008 -0.00217759 -0.00217509 -0.00217258 -0.00217005 -0.00216752 -0.00216497 -0.00216242 -0.00215985 -0.00215727 -0.00215467 -0.00215206 -0.00214944 -0.00214681 -0.00214416 -0.0021415 -0.00213882 -0.00213613 -0.00213343 -0.00213071 -0.00212797 -0.00212522 -0.00212245 -0.00211967 -0.00211687 -0.00211405 -0.00211121 -0.00210836 -0.00210549 -0.0021026 -0.00209969 -0.00209675 -0.0020938 -0.00209083 -0.00208784 -0.00208482 -0.00208178 -0.00207872 -0.00207563 -0.00207251 -0.00206938 -0.00206621 -0.00206302 -0.00205979 -0.00205654 -0.00205326 -0.00204994 -0.00204659 -0.0020432 -0.00203977 -0.00203631 -0.0020328 -0.00202924 -0.00202564 -0.00202198 -0.00201826 -0.00201448 -0.00201064 -0.00200672 -0.00200272 -0.00199863 -0.00199444 -0.00199014 -0.00198573 -0.00198118 -0.0019765 -0.00197167 -0.00196666 -0.00196149 -0.00195612 -0.00195054 -0.00194475 -0.00193874 -0.00193248 -0.00192597 -0.0019192 -0.00191216 -0.00190484 -0.00189723 -0.00188932 -0.00188111 -0.00187258 -0.00186374 -0.00185457 -0.00184508 -0.00183525 -0.00182508 -0.00181457 -0.00180371 -0.0017925 -0.00178094 -0.00176902 -0.00175674 -0.0017441 -0.0017311 -0.00171773 -0.00170399 -0.00168988 -0.0016754 -0.00166055 -0.00164532 -0.00162971 -0.00161372 -0.00159735 -0.0015806 -0.00156346 -0.00154594 -0.00152803 -0.00150974 -0.00149106 -0.00147199 -0.00145253 -0.00143267 -0.00141243 -0.00139179 -0.00137075 -0.00134932 -0.00132749 -0.00130527 -0.00128264 -0.00125962 -0.00123619 -0.00121236 -0.00118814 -0.0011635 -0.00113847 -0.00111302 -0.00108718 -0.00106092 -0.00103426 -0.00100719 -0.000979709 -0.000951818 -0.000923516 -0.000894803 -0.000865676 -0.000836137 -0.000806182 -0.000775813 -0.000745027 -0.000713825 -0.000682205 -0.000650166 -0.000617708 -0.00058483 -0.000551531 -0.00051781 -0.000483666 -0.000449098 -0.000414107 -0.00037869 -0.000342846 -0.000306576 -0.000269878 -0.000232751 -0.000195195 -0.000157207 -0.000118789 -7.99372E-05 -4.06522E-05 -9.32551E-07 3.89082E-05 7.85623E-05 0.000118031 0.000157316 0.000196418 0.000235339 0.00027408 0.000312642 0.000351028 0.000389238 +-0.00221568 -0.00221339 -0.00221109 -0.00220878 -0.00220647 -0.00220415 -0.00220182 -0.00219948 -0.00219713 -0.00219477 -0.00219241 -0.00219003 -0.00218765 -0.00218526 -0.00218285 -0.00218044 -0.00217802 -0.00217559 -0.00217315 -0.0021707 -0.00216824 -0.00216576 -0.00216328 -0.00216079 -0.00215828 -0.00215577 -0.00215324 -0.0021507 -0.00214815 -0.00214558 -0.00214301 -0.00214042 -0.00213782 -0.0021352 -0.00213258 -0.00212993 -0.00212728 -0.00212461 -0.00212192 -0.00211922 -0.00211651 -0.00211378 -0.00211103 -0.00210827 -0.00210549 -0.0021027 -0.00209989 -0.00209706 -0.00209421 -0.00209134 -0.00208845 -0.00208555 -0.00208262 -0.00207967 -0.0020767 -0.00207371 -0.0020707 -0.00206766 -0.0020646 -0.00206152 -0.00205841 -0.00205527 -0.00205211 -0.00204892 -0.0020457 -0.00204244 -0.00203916 -0.00203584 -0.00203249 -0.0020291 -0.00202567 -0.0020222 -0.00201869 -0.00201513 -0.00201151 -0.00200784 -0.00200412 -0.00200033 -0.00199646 -0.00199252 -0.0019885 -0.00198438 -0.00198017 -0.00197584 -0.00197138 -0.0019668 -0.00196206 -0.00195717 -0.00195211 -0.00194686 -0.00194142 -0.00193577 -0.00192989 -0.00192378 -0.00191743 -0.00191081 -0.00190393 -0.00189678 -0.00188933 -0.00188159 -0.00187355 -0.0018652 -0.00185653 -0.00184753 -0.00183821 -0.00182855 -0.00181856 -0.00180822 -0.00179754 -0.0017865 -0.00177511 -0.00176336 -0.00175125 -0.00173878 -0.00172594 -0.00171274 -0.00169916 -0.00168521 -0.00167089 -0.00165619 -0.00164111 -0.00162565 -0.00160981 -0.00159359 -0.00157699 -0.00155999 -0.00154261 -0.00152484 -0.00150669 -0.00148814 -0.00146919 -0.00144986 -0.00143013 -0.00141001 -0.00138948 -0.00136857 -0.00134725 -0.00132553 -0.00130341 -0.00128089 -0.00125797 -0.00123464 -0.00121091 -0.00118678 -0.00116224 -0.00113729 -0.00111193 -0.00108617 -0.00105999 -0.0010334 -0.00100641 -0.000978995 -0.000951171 -0.000922933 -0.000894281 -0.000865212 -0.000835727 -0.000805824 -0.000775503 -0.000744762 -0.000713602 -0.000682021 -0.000650018 -0.000617592 -0.000584743 -0.00055147 -0.000517772 -0.000483648 -0.000449097 -0.000414118 -0.000378711 -0.000342874 -0.000306608 -0.000269909 -0.000232779 -0.000195216 -0.000157219 -0.000118787 -7.99192E-05 -4.06144E-05 -8.71702E-07 3.89942E-05 7.86741E-05 0.000118169 0.000157481 0.00019661 0.000235559 0.000274328 0.000312919 0.000351334 0.000389573 +-0.00220343 -0.00220116 -0.00219887 -0.00219658 -0.00219428 -0.00219197 -0.00218965 -0.00218733 -0.00218499 -0.00218265 -0.0021803 -0.00217794 -0.00217557 -0.0021732 -0.00217081 -0.00216842 -0.00216601 -0.0021636 -0.00216117 -0.00215874 -0.00215629 -0.00215384 -0.00215137 -0.00214889 -0.00214641 -0.00214391 -0.0021414 -0.00213888 -0.00213634 -0.0021338 -0.00213124 -0.00212867 -0.00212609 -0.00212349 -0.00212088 -0.00211826 -0.00211563 -0.00211298 -0.00211031 -0.00210764 -0.00210494 -0.00210223 -0.00209951 -0.00209677 -0.00209401 -0.00209124 -0.00208845 -0.00208564 -0.00208282 -0.00207997 -0.00207711 -0.00207423 -0.00207133 -0.00206841 -0.00206546 -0.0020625 -0.00205951 -0.00205651 -0.00205347 -0.00205042 -0.00204734 -0.00204423 -0.0020411 -0.00203793 -0.00203474 -0.00203152 -0.00202827 -0.00202499 -0.00202167 -0.00201832 -0.00201493 -0.00201149 -0.00200802 -0.0020045 -0.00200093 -0.00199731 -0.00199363 -0.0019899 -0.00198609 -0.00198221 -0.00197825 -0.0019742 -0.00197006 -0.00196581 -0.00196144 -0.00195695 -0.00195232 -0.00194753 -0.00194258 -0.00193746 -0.00193214 -0.00192662 -0.00192089 -0.00191492 -0.00190872 -0.00190226 -0.00189554 -0.00188854 -0.00188126 -0.00187369 -0.00186582 -0.00185764 -0.00184914 -0.00184033 -0.00183118 -0.0018217 -0.00181188 -0.00180172 -0.00179121 -0.00178035 -0.00176913 -0.00175756 -0.00174562 -0.00173332 -0.00172065 -0.00170761 -0.0016942 -0.00168041 -0.00166625 -0.00165171 -0.00163678 -0.00162148 -0.00160579 -0.00158972 -0.00157326 -0.00155641 -0.00153918 -0.00152155 -0.00150353 -0.00148511 -0.0014663 -0.0014471 -0.0014275 -0.0014075 -0.0013871 -0.0013663 -0.00134509 -0.00132349 -0.00130148 -0.00127907 -0.00125625 -0.00123303 -0.0012094 -0.00118536 -0.00116091 -0.00113605 -0.00111078 -0.0010851 -0.001059 -0.0010325 -0.00100557 -0.000978235 -0.000950481 -0.000922309 -0.000893719 -0.00086471 -0.000835281 -0.000805432 -0.000775161 -0.000744468 -0.000713351 -0.000681811 -0.000649845 -0.000617454 -0.000584636 -0.000551391 -0.000517718 -0.000483615 -0.000449082 -0.000414118 -0.000378722 -0.000342894 -0.000306632 -0.000269935 -0.000232803 -0.000195235 -0.00015723 -0.000118786 -7.99026E-05 -4.05793E-05 -8.14731E-07 3.90753E-05 7.87799E-05 0.0001183 0.000157638 0.000196794 0.000235769 0.000274566 0.000313184 0.000351627 0.000389894 +-0.00219108 -0.00218882 -0.00218655 -0.00218427 -0.00218198 -0.00217968 -0.00217738 -0.00217507 -0.00217275 -0.00217043 -0.00216809 -0.00216575 -0.00216339 -0.00216103 -0.00215866 -0.00215628 -0.00215389 -0.00215149 -0.00214909 -0.00214667 -0.00214424 -0.0021418 -0.00213935 -0.00213689 -0.00213442 -0.00213194 -0.00212945 -0.00212695 -0.00212443 -0.00212191 -0.00211937 -0.00211682 -0.00211425 -0.00211168 -0.00210909 -0.00210649 -0.00210387 -0.00210124 -0.0020986 -0.00209594 -0.00209327 -0.00209058 -0.00208788 -0.00208516 -0.00208243 -0.00207968 -0.00207691 -0.00207412 -0.00207132 -0.0020685 -0.00206566 -0.00206281 -0.00205993 -0.00205703 -0.00205412 -0.00205118 -0.00204822 -0.00204524 -0.00204223 -0.00203921 -0.00203615 -0.00203308 -0.00202997 -0.00202684 -0.00202368 -0.00202049 -0.00201727 -0.00201402 -0.00201074 -0.00200742 -0.00200407 -0.00200068 -0.00199724 -0.00199376 -0.00199024 -0.00198666 -0.00198303 -0.00197934 -0.00197559 -0.00197177 -0.00196787 -0.00196389 -0.00195982 -0.00195565 -0.00195137 -0.00194696 -0.00194242 -0.00193774 -0.0019329 -0.0019279 -0.0019227 -0.00191732 -0.00191172 -0.00190589 -0.00189984 -0.00189353 -0.00188697 -0.00188014 -0.00187303 -0.00186562 -0.00185792 -0.00184992 -0.0018416 -0.00183296 -0.00182399 -0.00181468 -0.00180504 -0.00179506 -0.00178473 -0.00177404 -0.001763 -0.0017516 -0.00173984 -0.00172771 -0.00171521 -0.00170234 -0.00168909 -0.00167547 -0.00166147 -0.00164709 -0.00163233 -0.00161718 -0.00160165 -0.00158573 -0.00156942 -0.00155272 -0.00153563 -0.00151814 -0.00150026 -0.00148199 -0.00146331 -0.00144424 -0.00142477 -0.00140489 -0.00138462 -0.00136394 -0.00134286 -0.00132137 -0.00129947 -0.00127717 -0.00125446 -0.00123134 -0.00120781 -0.00118387 -0.00115952 -0.00113475 -0.00110957 -0.00108398 -0.00105797 -0.00103154 -0.00100469 -0.000977428 -0.000949745 -0.000921641 -0.000893116 -0.000864169 -0.000834799 -0.000805005 -0.000774787 -0.000744143 -0.000713072 -0.000681574 -0.000649648 -0.000617293 -0.000584509 -0.000551293 -0.000517646 -0.000483566 -0.000449053 -0.000414106 -0.000378723 -0.000342904 -0.000306649 -0.000269955 -0.000232823 -0.000195251 -0.000157238 -0.000118784 -7.98871E-05 -4.05466E-05 -7.61401E-07 3.91514E-05 7.88796E-05 0.000118424 0.000157787 0.000196968 0.000235969 0.000274792 0.000313438 0.000351908 0.000390203 +-0.00217862 -0.00217637 -0.00217411 -0.00217185 -0.00216958 -0.0021673 -0.00216501 -0.00216271 -0.00216041 -0.0021581 -0.00215578 -0.00215345 -0.00215111 -0.00214876 -0.00214641 -0.00214404 -0.00214167 -0.00213929 -0.0021369 -0.00213449 -0.00213208 -0.00212966 -0.00212723 -0.00212479 -0.00212233 -0.00211987 -0.0021174 -0.00211491 -0.00211241 -0.00210991 -0.00210739 -0.00210485 -0.00210231 -0.00209975 -0.00209718 -0.0020946 -0.002092 -0.0020894 -0.00208677 -0.00208414 -0.00208148 -0.00207882 -0.00207614 -0.00207344 -0.00207073 -0.002068 -0.00206526 -0.0020625 -0.00205972 -0.00205692 -0.00205411 -0.00205127 -0.00204842 -0.00204555 -0.00204266 -0.00203975 -0.00203682 -0.00203386 -0.00203088 -0.00202788 -0.00202486 -0.00202181 -0.00201874 -0.00201564 -0.00201251 -0.00200935 -0.00200617 -0.00200295 -0.0019997 -0.00199642 -0.0019931 -0.00198974 -0.00198635 -0.00198291 -0.00197943 -0.0019759 -0.00197231 -0.00196867 -0.00196498 -0.00196121 -0.00195737 -0.00195346 -0.00194945 -0.00194536 -0.00194115 -0.00193683 -0.00193239 -0.00192781 -0.00192308 -0.00191818 -0.00191311 -0.00190785 -0.00190239 -0.0018967 -0.00189079 -0.00188464 -0.00187824 -0.00187157 -0.00186462 -0.00185739 -0.00184986 -0.00184202 -0.00183388 -0.00182542 -0.00181663 -0.0018075 -0.00179804 -0.00178824 -0.00177808 -0.00176758 -0.00175671 -0.00174549 -0.0017339 -0.00172195 -0.00170962 -0.00169692 -0.00168385 -0.0016704 -0.00165656 -0.00164235 -0.00162775 -0.00161276 -0.00159739 -0.00158162 -0.00156546 -0.00154891 -0.00153197 -0.00151463 -0.00149689 -0.00147876 -0.00146022 -0.00144128 -0.00142194 -0.0014022 -0.00138205 -0.00136149 -0.00134053 -0.00131916 -0.00129738 -0.0012752 -0.00125259 -0.00122958 -0.00120616 -0.00118232 -0.00115806 -0.00113339 -0.0011083 -0.0010828 -0.00105687 -0.00103053 -0.00100376 -0.000976572 -0.000948962 -0.000920929 -0.000892471 -0.000863588 -0.000834279 -0.000804543 -0.000774379 -0.000743786 -0.000712763 -0.00068131 -0.000649426 -0.000617109 -0.000584359 -0.000551175 -0.000517556 -0.000483501 -0.000449009 -0.00041408 -0.000378712 -0.000342905 -0.000306657 -0.000269969 -0.000232838 -0.000195263 -0.000157245 -0.000118782 -7.98725E-05 -4.0516E-05 -7.11486E-07 3.9223E-05 7.89735E-05 0.000118541 0.000157927 0.000197133 0.000236159 0.000275008 0.000313679 0.000352175 0.000390497 +-0.00216605 -0.00216382 -0.00216157 -0.00215932 -0.00215706 -0.0021548 -0.00215252 -0.00215024 -0.00214795 -0.00214566 -0.00214335 -0.00214104 -0.00213872 -0.00213638 -0.00213405 -0.0021317 -0.00212934 -0.00212697 -0.0021246 -0.00212221 -0.00211982 -0.00211741 -0.002115 -0.00211257 -0.00211014 -0.00210769 -0.00210523 -0.00210277 -0.00210029 -0.0020978 -0.0020953 -0.00209278 -0.00209026 -0.00208772 -0.00208517 -0.00208261 -0.00208003 -0.00207744 -0.00207484 -0.00207222 -0.00206959 -0.00206695 -0.00206429 -0.00206161 -0.00205892 -0.00205622 -0.0020535 -0.00205076 -0.002048 -0.00204523 -0.00204244 -0.00203963 -0.00203681 -0.00203396 -0.0020311 -0.00202821 -0.0020253 -0.00202237 -0.00201942 -0.00201645 -0.00201346 -0.00201044 -0.00200739 -0.00200432 -0.00200122 -0.0019981 -0.00199494 -0.00199176 -0.00198854 -0.0019853 -0.00198201 -0.00197869 -0.00197534 -0.00197194 -0.0019685 -0.00196501 -0.00196147 -0.00195788 -0.00195424 -0.00195053 -0.00194675 -0.00194289 -0.00193896 -0.00193493 -0.0019308 -0.00192657 -0.00192221 -0.00191773 -0.0019131 -0.00190832 -0.00190336 -0.00189822 -0.00189289 -0.00188735 -0.00188158 -0.00187558 -0.00186933 -0.00186282 -0.00185604 -0.00184897 -0.00184162 -0.00183396 -0.00182599 -0.00181771 -0.00180909 -0.00180015 -0.00179087 -0.00178125 -0.00177128 -0.00176095 -0.00175027 -0.00173923 -0.00172782 -0.00171604 -0.00170389 -0.00169136 -0.00167846 -0.00166518 -0.00165151 -0.00163747 -0.00162303 -0.00160821 -0.00159299 -0.00157739 -0.00156138 -0.00154499 -0.0015282 -0.001511 -0.00149341 -0.00147542 -0.00145702 -0.00143822 -0.00141902 -0.00139941 -0.00137939 -0.00135896 -0.00133812 -0.00131687 -0.00129521 -0.00127314 -0.00125065 -0.00122775 -0.00120443 -0.00118069 -0.00115654 -0.00113196 -0.00110697 -0.00108155 -0.00105572 -0.00102946 -0.00100277 -0.000975666 -0.000948132 -0.000920171 -0.000891783 -0.000862966 -0.00083372 -0.000804043 -0.000773936 -0.000743396 -0.000712424 -0.000681017 -0.000649176 -0.000616899 -0.000584186 -0.000551036 -0.000517447 -0.000483418 -0.00044895 -0.000414041 -0.00037869 -0.000342896 -0.000306658 -0.000269975 -0.000232847 -0.000195272 -0.00015725 -0.000118779 -7.98583E-05 -4.04873E-05 -6.64776E-07 3.929E-05 7.90616E-05 0.000118651 0.00015806 0.000197289 0.000236339 0.000275212 0.000313909 0.00035243 0.000390778 +-0.00215338 -0.00215116 -0.00214893 -0.00214669 -0.00214444 -0.00214219 -0.00213993 -0.00213767 -0.00213539 -0.00213311 -0.00213082 -0.00212852 -0.00212621 -0.0021239 -0.00212157 -0.00211924 -0.0021169 -0.00211455 -0.00211219 -0.00210982 -0.00210744 -0.00210506 -0.00210266 -0.00210025 -0.00209783 -0.0020954 -0.00209296 -0.00209051 -0.00208805 -0.00208558 -0.0020831 -0.0020806 -0.0020781 -0.00207558 -0.00207305 -0.00207051 -0.00206795 -0.00206538 -0.0020628 -0.0020602 -0.00205759 -0.00205497 -0.00205233 -0.00204968 -0.00204701 -0.00204433 -0.00204163 -0.00203891 -0.00203618 -0.00203343 -0.00203067 -0.00202788 -0.00202508 -0.00202226 -0.00201942 -0.00201656 -0.00201368 -0.00201078 -0.00200785 -0.00200491 -0.00200194 -0.00199895 -0.00199593 -0.00199289 -0.00198983 -0.00198673 -0.00198361 -0.00198046 -0.00197728 -0.00197406 -0.00197081 -0.00196753 -0.00196421 -0.00196085 -0.00195745 -0.00195401 -0.00195052 -0.00194697 -0.00194338 -0.00193972 -0.00193599 -0.0019322 -0.00192833 -0.00192437 -0.00192032 -0.00191616 -0.0019119 -0.0019075 -0.00190297 -0.0018983 -0.00189346 -0.00188844 -0.00188324 -0.00187783 -0.00187221 -0.00186635 -0.00186026 -0.0018539 -0.00184729 -0.00184039 -0.0018332 -0.00182572 -0.00181793 -0.00180982 -0.00180139 -0.00179263 -0.00178354 -0.00177409 -0.00176431 -0.00175416 -0.00174366 -0.0017328 -0.00172157 -0.00170997 -0.001698 -0.00168565 -0.00167293 -0.00165982 -0.00164633 -0.00163245 -0.00161818 -0.00160352 -0.00158847 -0.00157302 -0.00155718 -0.00154094 -0.0015243 -0.00150726 -0.00148982 -0.00147197 -0.00145372 -0.00143506 -0.00141599 -0.00139652 -0.00137663 -0.00135633 -0.00133562 -0.0013145 -0.00129296 -0.001271 -0.00124863 -0.00122584 -0.00120263 -0.001179 -0.00115494 -0.00113047 -0.00110557 -0.00108025 -0.00105451 -0.00102833 -0.00100173 -0.000974708 -0.000947251 -0.000919366 -0.000891049 -0.000862301 -0.00083312 -0.000803505 -0.000773457 -0.000742972 -0.000712052 -0.000680694 -0.000648899 -0.000616664 -0.00058399 -0.000550875 -0.000517318 -0.000483318 -0.000448875 -0.000413987 -0.000378654 -0.000342875 -0.000306649 -0.000269974 -0.00023285 -0.000195276 -0.000157251 -0.000118774 -7.98443E-05 -4.04603E-05 -6.2107E-07 3.93527E-05 7.91441E-05 0.000118754 0.000158184 0.000197436 0.000236509 0.000275405 0.000314126 0.000352672 0.000391045 +-0.0021406 -0.00213839 -0.00213617 -0.00213395 -0.00213172 -0.00212948 -0.00212723 -0.00212498 -0.00212272 -0.00212045 -0.00211818 -0.00211589 -0.0021136 -0.0021113 -0.002109 -0.00210668 -0.00210435 -0.00210202 -0.00209968 -0.00209732 -0.00209496 -0.00209259 -0.00209021 -0.00208782 -0.00208542 -0.00208301 -0.00208058 -0.00207815 -0.00207571 -0.00207326 -0.00207079 -0.00206832 -0.00206583 -0.00206333 -0.00206082 -0.00205829 -0.00205576 -0.00205321 -0.00205065 -0.00204807 -0.00204548 -0.00204288 -0.00204026 -0.00203763 -0.00203499 -0.00203232 -0.00202965 -0.00202696 -0.00202425 -0.00202152 -0.00201878 -0.00201602 -0.00201324 -0.00201044 -0.00200763 -0.0020048 -0.00200194 -0.00199907 -0.00199617 -0.00199325 -0.00199031 -0.00198735 -0.00198436 -0.00198135 -0.00197832 -0.00197525 -0.00197216 -0.00196904 -0.00196589 -0.00196271 -0.0019595 -0.00195625 -0.00195297 -0.00194965 -0.00194629 -0.00194289 -0.00193944 -0.00193594 -0.00193239 -0.00192879 -0.00192512 -0.00192138 -0.00191757 -0.00191368 -0.0019097 -0.00190562 -0.00190144 -0.00189713 -0.0018927 -0.00188813 -0.0018834 -0.0018785 -0.00187342 -0.00186815 -0.00186266 -0.00185695 -0.00185101 -0.00184481 -0.00183836 -0.00183163 -0.00182461 -0.00181731 -0.00180969 -0.00180177 -0.00179352 -0.00178494 -0.00177603 -0.00176677 -0.00175717 -0.00174721 -0.00173689 -0.00172621 -0.00171517 -0.00170375 -0.00169196 -0.00167979 -0.00166725 -0.00165431 -0.00164099 -0.00162729 -0.00161319 -0.0015987 -0.00158382 -0.00156853 -0.00155285 -0.00153677 -0.00152029 -0.0015034 -0.00148611 -0.00146841 -0.00145031 -0.00143179 -0.00141286 -0.00139353 -0.00137377 -0.00135361 -0.00133303 -0.00131203 -0.00129061 -0.00126878 -0.00124652 -0.00122385 -0.00120075 -0.00117723 -0.00115328 -0.00112891 -0.00110411 -0.00107889 -0.00105323 -0.00102715 -0.00100064 -0.000973696 -0.00094632 -0.000918512 -0.000890269 -0.000861592 -0.000832478 -0.000802928 -0.00077294 -0.000742514 -0.000711648 -0.000680341 -0.000648593 -0.000616402 -0.000583769 -0.000550691 -0.000517168 -0.000483199 -0.000448783 -0.000413919 -0.000378606 -0.000342843 -0.00030663 -0.000269965 -0.000232847 -0.000195276 -0.00015725 -0.000118768 -7.98303E-05 -4.04346E-05 -5.80182E-07 3.94111E-05 7.92212E-05 0.000118851 0.000158301 0.000197573 0.000236668 0.000275587 0.000314331 0.0003529 0.000391298 +-0.0021277 -0.00212551 -0.0021233 -0.00212109 -0.00211888 -0.00211665 -0.00211442 -0.00211219 -0.00210994 -0.00210769 -0.00210543 -0.00210316 -0.00210088 -0.0020986 -0.00209631 -0.002094 -0.0020917 -0.00208938 -0.00208705 -0.00208471 -0.00208237 -0.00208001 -0.00207765 -0.00207528 -0.00207289 -0.0020705 -0.00206809 -0.00206568 -0.00206326 -0.00206082 -0.00205837 -0.00205592 -0.00205345 -0.00205097 -0.00204847 -0.00204597 -0.00204345 -0.00204093 -0.00203838 -0.00203583 -0.00203326 -0.00203068 -0.00202808 -0.00202547 -0.00202285 -0.00202021 -0.00201756 -0.00201489 -0.0020122 -0.0020095 -0.00200678 -0.00200404 -0.00200129 -0.00199852 -0.00199573 -0.00199292 -0.00199009 -0.00198724 -0.00198438 -0.00198149 -0.00197857 -0.00197564 -0.00197268 -0.0019697 -0.00196669 -0.00196366 -0.0019606 -0.00195751 -0.0019544 -0.00195125 -0.00194807 -0.00194486 -0.00194162 -0.00193833 -0.00193501 -0.00193165 -0.00192824 -0.00192479 -0.00192129 -0.00191773 -0.00191412 -0.00191043 -0.00190668 -0.00190286 -0.00189895 -0.00189494 -0.00189084 -0.00188662 -0.00188228 -0.00187781 -0.00187318 -0.0018684 -0.00186344 -0.0018583 -0.00185295 -0.00184738 -0.00184159 -0.00183555 -0.00182926 -0.00182269 -0.00181585 -0.00180871 -0.00180128 -0.00179353 -0.00178546 -0.00177707 -0.00176834 -0.00175927 -0.00174986 -0.00174009 -0.00172996 -0.00171946 -0.0017086 -0.00169737 -0.00168577 -0.00167378 -0.00166141 -0.00164866 -0.00163552 -0.00162199 -0.00160806 -0.00159374 -0.00157903 -0.00156391 -0.00154839 -0.00153248 -0.00151615 -0.00149942 -0.00148228 -0.00146474 -0.00144678 -0.00142841 -0.00140963 -0.00139043 -0.00137082 -0.00135079 -0.00133034 -0.00130947 -0.00128818 -0.00126647 -0.00124433 -0.00122177 -0.00119879 -0.00117538 -0.00115154 -0.00112728 -0.00110258 -0.00107746 -0.0010519 -0.00102591 -0.000999487 -0.000972629 -0.000945337 -0.000917608 -0.000889442 -0.000860837 -0.000831794 -0.00080231 -0.000772386 -0.000742019 -0.000711209 -0.000679956 -0.000648257 -0.000616113 -0.000583522 -0.000550484 -0.000516997 -0.00048306 -0.000448673 -0.000413834 -0.000378544 -0.000342799 -0.000306601 -0.000269947 -0.000232837 -0.00019527 -0.000157245 -0.000118761 -7.98159E-05 -4.04101E-05 -5.41935E-07 3.94656E-05 7.92928E-05 0.000118941 0.00015841 0.000197702 0.000236817 0.000275757 0.000314523 0.000353116 0.000391536 +-0.0021147 -0.00211251 -0.00211033 -0.00210813 -0.00210593 -0.00210372 -0.0021015 -0.00209928 -0.00209705 -0.00209481 -0.00209257 -0.00209031 -0.00208805 -0.00208578 -0.00208351 -0.00208122 -0.00207893 -0.00207662 -0.00207431 -0.00207199 -0.00206966 -0.00206733 -0.00206498 -0.00206262 -0.00206026 -0.00205788 -0.00205549 -0.0020531 -0.00205069 -0.00204827 -0.00204584 -0.00204341 -0.00204096 -0.00203849 -0.00203602 -0.00203354 -0.00203104 -0.00202853 -0.00202601 -0.00202347 -0.00202093 -0.00201837 -0.00201579 -0.0020132 -0.0020106 -0.00200798 -0.00200535 -0.0020027 -0.00200004 -0.00199736 -0.00199467 -0.00199196 -0.00198923 -0.00198648 -0.00198372 -0.00198093 -0.00197813 -0.00197531 -0.00197247 -0.0019696 -0.00196672 -0.00196381 -0.00196088 -0.00195793 -0.00195495 -0.00195195 -0.00194892 -0.00194587 -0.00194278 -0.00193967 -0.00193653 -0.00193335 -0.00193014 -0.0019269 -0.00192361 -0.00192029 -0.00191693 -0.00191352 -0.00191006 -0.00190655 -0.00190299 -0.00189936 -0.00189567 -0.0018919 -0.00188806 -0.00188413 -0.0018801 -0.00187597 -0.00187171 -0.00186734 -0.00186282 -0.00185814 -0.00185331 -0.00184828 -0.00184307 -0.00183765 -0.001832 -0.00182611 -0.00181998 -0.00181358 -0.0018069 -0.00179994 -0.00179268 -0.00178512 -0.00177723 -0.00176903 -0.00176048 -0.0017516 -0.00174237 -0.00173279 -0.00172285 -0.00171255 -0.00170187 -0.00169083 -0.00167941 -0.00166761 -0.00165542 -0.00164285 -0.00162989 -0.00161654 -0.00160279 -0.00158864 -0.0015741 -0.00155915 -0.0015438 -0.00152805 -0.00151189 -0.00149532 -0.00147834 -0.00146095 -0.00144314 -0.00142492 -0.00140629 -0.00138723 -0.00136776 -0.00134787 -0.00132755 -0.00130682 -0.00128566 -0.00126407 -0.00124206 -0.00121962 -0.00119675 -0.00117346 -0.00114973 -0.00112557 -0.00110098 -0.00107596 -0.0010505 -0.00102461 -0.000998275 -0.000971507 -0.000944299 -0.000916653 -0.000888565 -0.000860037 -0.000831065 -0.00080165 -0.000771791 -0.000741487 -0.000710736 -0.000679537 -0.000647891 -0.000615795 -0.000583249 -0.000550252 -0.000516803 -0.000482901 -0.000448545 -0.000413734 -0.000378467 -0.000342743 -0.000306561 -0.000269921 -0.00023282 -0.000195259 -0.000157236 -0.000118751 -7.9801E-05 -4.03866E-05 -5.06163E-07 3.95161E-05 7.9359E-05 0.000119024 0.000158511 0.000197821 0.000236956 0.000275916 0.000314703 0.000353317 0.000391759 +-0.00210158 -0.00209941 -0.00209724 -0.00209506 -0.00209287 -0.00209067 -0.00208847 -0.00208626 -0.00208405 -0.00208182 -0.00207959 -0.00207736 -0.00207511 -0.00207286 -0.00207059 -0.00206832 -0.00206605 -0.00206376 -0.00206147 -0.00205916 -0.00205685 -0.00205453 -0.0020522 -0.00204986 -0.00204751 -0.00204515 -0.00204278 -0.0020404 -0.00203801 -0.00203561 -0.0020332 -0.00203078 -0.00202835 -0.00202591 -0.00202346 -0.00202099 -0.00201851 -0.00201602 -0.00201352 -0.00201101 -0.00200848 -0.00200594 -0.00200339 -0.00200082 -0.00199824 -0.00199565 -0.00199304 -0.00199041 -0.00198777 -0.00198512 -0.00198244 -0.00197976 -0.00197705 -0.00197433 -0.00197159 -0.00196883 -0.00196605 -0.00196326 -0.00196044 -0.00195761 -0.00195475 -0.00195187 -0.00194897 -0.00194605 -0.0019431 -0.00194013 -0.00193713 -0.00193411 -0.00193105 -0.00192797 -0.00192486 -0.00192172 -0.00191855 -0.00191534 -0.0019121 -0.00190882 -0.00190549 -0.00190213 -0.00189871 -0.00189525 -0.00189174 -0.00188816 -0.00188453 -0.00188082 -0.00187704 -0.00187318 -0.00186922 -0.00186517 -0.001861 -0.00185672 -0.0018523 -0.00184773 -0.00184301 -0.00183811 -0.00183302 -0.00182774 -0.00182223 -0.0018165 -0.00181052 -0.00180428 -0.00179778 -0.00179099 -0.00178391 -0.00177652 -0.00176882 -0.0017608 -0.00175245 -0.00174375 -0.00173471 -0.00172532 -0.00171557 -0.00170546 -0.00169498 -0.00168412 -0.00167289 -0.00166127 -0.00164927 -0.00163689 -0.00162411 -0.00161094 -0.00159737 -0.0015834 -0.00156903 -0.00155426 -0.00153908 -0.00152349 -0.0015075 -0.00149109 -0.00147427 -0.00145704 -0.00143939 -0.00142132 -0.00140283 -0.00138393 -0.0013646 -0.00134485 -0.00132467 -0.00130407 -0.00128304 -0.00126158 -0.0012397 -0.00121738 -0.00119464 -0.00117146 -0.00114784 -0.0011238 -0.00109931 -0.00107439 -0.00104904 -0.00102324 -0.000997003 -0.000970326 -0.000943207 -0.000915644 -0.000887639 -0.000859188 -0.000830291 -0.000800947 -0.000771156 -0.000740916 -0.000710226 -0.000679085 -0.000647493 -0.000615448 -0.000582949 -0.000549996 -0.000516587 -0.000482721 -0.000448398 -0.000413616 -0.000378375 -0.000342673 -0.00030651 -0.000269885 -0.000232796 -0.000195242 -0.000157224 -0.000118738 -7.97852E-05 -4.03638E-05 -4.72709E-07 3.95627E-05 7.942E-05 0.0001191 0.000158603 0.000197931 0.000237084 0.000276063 0.00031487 0.000353504 0.000391968 +-0.00208835 -0.0020862 -0.00208404 -0.00208187 -0.0020797 -0.00207752 -0.00207533 -0.00207313 -0.00207093 -0.00206872 -0.00206651 -0.00206429 -0.00206205 -0.00205982 -0.00205757 -0.00205532 -0.00205305 -0.00205078 -0.0020485 -0.00204622 -0.00204392 -0.00204162 -0.0020393 -0.00203698 -0.00203465 -0.00203231 -0.00202996 -0.00202759 -0.00202522 -0.00202284 -0.00202045 -0.00201805 -0.00201564 -0.00201321 -0.00201078 -0.00200833 -0.00200587 -0.0020034 -0.00200092 -0.00199843 -0.00199592 -0.0019934 -0.00199087 -0.00198833 -0.00198577 -0.00198319 -0.00198061 -0.001978 -0.00197539 -0.00197275 -0.00197011 -0.00196744 -0.00196476 -0.00196206 -0.00195935 -0.00195661 -0.00195386 -0.00195109 -0.0019483 -0.0019455 -0.00194267 -0.00193981 -0.00193694 -0.00193405 -0.00193113 -0.00192819 -0.00192522 -0.00192223 -0.00191921 -0.00191616 -0.00191308 -0.00190998 -0.00190684 -0.00190367 -0.00190046 -0.00189722 -0.00189394 -0.00189061 -0.00188724 -0.00188383 -0.00188036 -0.00187684 -0.00187326 -0.00186961 -0.00186589 -0.00186209 -0.00185821 -0.00185423 -0.00185015 -0.00184595 -0.00184163 -0.00183717 -0.00183255 -0.00182777 -0.00182281 -0.00181766 -0.0018123 -0.00180671 -0.00180089 -0.00179481 -0.00178847 -0.00178186 -0.00177495 -0.00176775 -0.00176023 -0.00175239 -0.00174423 -0.00173572 -0.00172688 -0.00171768 -0.00170812 -0.0016982 -0.00168791 -0.00167724 -0.0016662 -0.00165478 -0.00164297 -0.00163077 -0.00161817 -0.00160518 -0.0015918 -0.00157801 -0.00156382 -0.00154922 -0.00153422 -0.0015188 -0.00150297 -0.00148673 -0.00147008 -0.001453 -0.00143551 -0.0014176 -0.00139927 -0.00138051 -0.00136133 -0.00134172 -0.00132168 -0.00130122 -0.00128033 -0.001259 -0.00123725 -0.00121506 -0.00119243 -0.00116937 -0.00114588 -0.00112194 -0.00109757 -0.00107276 -0.0010475 -0.00102181 -0.000995669 -0.000969085 -0.000942057 -0.000914582 -0.00088666 -0.00085829 -0.00082947 -0.0008002 -0.000770479 -0.000740306 -0.000709679 -0.000678598 -0.000647062 -0.00061507 -0.000582621 -0.000549713 -0.000516346 -0.000482519 -0.000448231 -0.000413481 -0.000378268 -0.00034259 -0.000306448 -0.000269839 -0.000232763 -0.000195219 -0.000157206 -0.000118723 -7.97684E-05 -4.03416E-05 -4.41428E-07 3.96057E-05 7.94758E-05 0.00011917 0.000158688 0.000198032 0.000237202 0.000276199 0.000315024 0.000353678 0.000392162 +-0.00207501 -0.00207287 -0.00207072 -0.00206857 -0.00206641 -0.00206424 -0.00206207 -0.00205989 -0.0020577 -0.00205551 -0.00205331 -0.0020511 -0.00204889 -0.00204666 -0.00204443 -0.00204219 -0.00203995 -0.00203769 -0.00203543 -0.00203316 -0.00203088 -0.00202859 -0.0020263 -0.00202399 -0.00202168 -0.00201935 -0.00201702 -0.00201467 -0.00201232 -0.00200996 -0.00200758 -0.0020052 -0.00200281 -0.0020004 -0.00199799 -0.00199556 -0.00199312 -0.00199067 -0.00198821 -0.00198574 -0.00198325 -0.00198075 -0.00197824 -0.00197572 -0.00197318 -0.00197063 -0.00196806 -0.00196548 -0.00196289 -0.00196028 -0.00195765 -0.00195501 -0.00195235 -0.00194968 -0.00194699 -0.00194428 -0.00194156 -0.00193881 -0.00193605 -0.00193327 -0.00193047 -0.00192764 -0.0019248 -0.00192193 -0.00191904 -0.00191613 -0.00191319 -0.00191023 -0.00190724 -0.00190423 -0.00190119 -0.00189811 -0.00189501 -0.00189187 -0.00188871 -0.0018855 -0.00188226 -0.00187897 -0.00187565 -0.00187228 -0.00186886 -0.00186539 -0.00186186 -0.00185826 -0.00185461 -0.00185087 -0.00184706 -0.00184315 -0.00183915 -0.00183504 -0.00183081 -0.00182645 -0.00182194 -0.00181727 -0.00181244 -0.00180741 -0.00180219 -0.00179675 -0.00179108 -0.00178516 -0.00177899 -0.00177254 -0.00176581 -0.00175878 -0.00175145 -0.0017438 -0.00173582 -0.00172751 -0.00171886 -0.00170985 -0.00170049 -0.00169076 -0.00168066 -0.00167019 -0.00165935 -0.00164811 -0.00163649 -0.00162448 -0.00161208 -0.00159928 -0.00158608 -0.00157247 -0.00155846 -0.00154404 -0.00152921 -0.00151397 -0.00149832 -0.00148224 -0.00146575 -0.00144885 -0.00143151 -0.00141376 -0.00139558 -0.00137698 -0.00135795 -0.00133849 -0.00131859 -0.00129827 -0.00127752 -0.00125633 -0.0012347 -0.00121264 -0.00119015 -0.00116721 -0.00114383 -0.00112001 -0.00109575 -0.00107105 -0.0010459 -0.00102031 -0.000994271 -0.000967784 -0.000940849 -0.000913464 -0.000885628 -0.000857341 -0.000828601 -0.000799407 -0.000769759 -0.000739655 -0.000709094 -0.000678075 -0.000646598 -0.000614661 -0.000582263 -0.000549403 -0.000516081 -0.000482295 -0.000448044 -0.000413327 -0.000378144 -0.000342493 -0.000306373 -0.000269783 -0.000232722 -0.00019519 -0.000157184 -0.000118705 -7.97503E-05 -4.03198E-05 -4.12182E-07 3.9645E-05 7.95264E-05 0.000119233 0.000158765 0.000198123 0.000237308 0.000276322 0.000315165 0.000353837 0.00039234 +-0.00206156 -0.00205943 -0.0020573 -0.00205516 -0.00205301 -0.00205086 -0.0020487 -0.00204654 -0.00204436 -0.00204218 -0.00204 -0.00203781 -0.00203561 -0.0020334 -0.00203118 -0.00202896 -0.00202673 -0.00202449 -0.00202224 -0.00201999 -0.00201773 -0.00201546 -0.00201318 -0.00201089 -0.00200859 -0.00200628 -0.00200396 -0.00200164 -0.0019993 -0.00199696 -0.0019946 -0.00199224 -0.00198986 -0.00198748 -0.00198508 -0.00198267 -0.00198025 -0.00197782 -0.00197538 -0.00197293 -0.00197046 -0.00196799 -0.00196549 -0.00196299 -0.00196047 -0.00195795 -0.0019554 -0.00195284 -0.00195027 -0.00194769 -0.00194508 -0.00194247 -0.00193983 -0.00193718 -0.00193452 -0.00193184 -0.00192914 -0.00192642 -0.00192368 -0.00192092 -0.00191815 -0.00191535 -0.00191254 -0.0019097 -0.00190684 -0.00190396 -0.00190105 -0.00189812 -0.00189516 -0.00189218 -0.00188917 -0.00188613 -0.00188306 -0.00187996 -0.00187683 -0.00187366 -0.00187046 -0.00186722 -0.00186393 -0.00186061 -0.00185723 -0.00185381 -0.00185033 -0.00184679 -0.00184319 -0.00183952 -0.00183577 -0.00183194 -0.00182801 -0.00182398 -0.00181984 -0.00181557 -0.00181117 -0.00180661 -0.0018019 -0.001797 -0.00179191 -0.00178661 -0.00178109 -0.00177533 -0.00176932 -0.00176304 -0.00175648 -0.00174964 -0.00174249 -0.00173502 -0.00172724 -0.00171912 -0.00171065 -0.00170184 -0.00169267 -0.00168314 -0.00167324 -0.00166297 -0.00165232 -0.00164128 -0.00162986 -0.00161804 -0.00160582 -0.00159321 -0.0015802 -0.00156678 -0.00155295 -0.00153872 -0.00152407 -0.001509 -0.00149352 -0.00147762 -0.0014613 -0.00144456 -0.00142739 -0.0014098 -0.00139178 -0.00137333 -0.00135445 -0.00133514 -0.0013154 -0.00129522 -0.00127461 -0.00125356 -0.00123207 -0.00121014 -0.00118777 -0.00116496 -0.0011417 -0.001118 -0.00109386 -0.00106927 -0.00104423 -0.00101874 -0.000992808 -0.00096642 -0.000939581 -0.000912288 -0.000884542 -0.00085634 -0.000827682 -0.000798567 -0.000768994 -0.000738962 -0.000708469 -0.000677515 -0.000646099 -0.000614219 -0.000581875 -0.000549066 -0.00051579 -0.000482047 -0.000447836 -0.000413155 -0.000378003 -0.00034238 -0.000306285 -0.000269716 -0.000232672 -0.000195153 -0.000157157 -0.000118683 -7.97306E-05 -4.02982E-05 -3.84841E-07 3.96808E-05 7.95718E-05 0.000119289 0.000158833 0.000198205 0.000237404 0.000276433 0.000315292 0.000353982 0.000392503 +-0.00204799 -0.00204588 -0.00204376 -0.00204163 -0.0020395 -0.00203736 -0.00203522 -0.00203307 -0.00203091 -0.00202874 -0.00202657 -0.0020244 -0.00202221 -0.00202002 -0.00201782 -0.00201561 -0.0020134 -0.00201117 -0.00200894 -0.0020067 -0.00200446 -0.0020022 -0.00199994 -0.00199767 -0.00199539 -0.0019931 -0.0019908 -0.00198849 -0.00198617 -0.00198385 -0.00198151 -0.00197916 -0.0019768 -0.00197444 -0.00197206 -0.00196967 -0.00196727 -0.00196486 -0.00196244 -0.00196001 -0.00195756 -0.0019551 -0.00195263 -0.00195015 -0.00194766 -0.00194515 -0.00194263 -0.00194009 -0.00193754 -0.00193498 -0.0019324 -0.00192981 -0.0019272 -0.00192457 -0.00192193 -0.00191927 -0.0019166 -0.0019139 -0.00191119 -0.00190846 -0.00190571 -0.00190295 -0.00190016 -0.00189735 -0.00189452 -0.00189166 -0.00188879 -0.00188589 -0.00188296 -0.00188001 -0.00187703 -0.00187403 -0.00187099 -0.00186793 -0.00186483 -0.0018617 -0.00185854 -0.00185533 -0.00185209 -0.00184881 -0.00184548 -0.0018421 -0.00183867 -0.00183519 -0.00183164 -0.00182803 -0.00182435 -0.00182058 -0.00181673 -0.00181278 -0.00180872 -0.00180455 -0.00180024 -0.0017958 -0.00179119 -0.00178642 -0.00178146 -0.0017763 -0.00177092 -0.00176532 -0.00175947 -0.00175336 -0.00174697 -0.0017403 -0.00173334 -0.00172606 -0.00171846 -0.00171053 -0.00170226 -0.00169365 -0.00168468 -0.00167535 -0.00166565 -0.00165557 -0.00164512 -0.00163428 -0.00162305 -0.00161142 -0.00159941 -0.00158699 -0.00157416 -0.00156093 -0.00154729 -0.00153324 -0.00151877 -0.00150389 -0.00148859 -0.00147286 -0.00145671 -0.00144014 -0.00142314 -0.00140572 -0.00138786 -0.00136957 -0.00135085 -0.00133169 -0.0013121 -0.00129207 -0.0012716 -0.00125069 -0.00122933 -0.00120754 -0.0011853 -0.00116262 -0.00113949 -0.00111591 -0.00109189 -0.00106741 -0.00104249 -0.00101711 -0.000991278 -0.000964992 -0.000938251 -0.000911054 -0.000883399 -0.000855286 -0.000826713 -0.000797679 -0.000768184 -0.000738226 -0.000707804 -0.000676917 -0.000645564 -0.000613744 -0.000581457 -0.0005487 -0.000515473 -0.000481775 -0.000447605 -0.000412962 -0.000377845 -0.000342252 -0.000306184 -0.000269637 -0.000232613 -0.000195109 -0.000157124 -0.000118658 -7.97092E-05 -4.02767E-05 -3.59283E-07 3.9713E-05 7.96122E-05 0.000119339 0.000158893 0.000198277 0.000237489 0.000276532 0.000315406 0.000354112 0.000392649 +-0.00203431 -0.00203221 -0.0020301 -0.00202799 -0.00202587 -0.00202375 -0.00202162 -0.00201948 -0.00201734 -0.00201519 -0.00201303 -0.00201087 -0.0020087 -0.00200652 -0.00200434 -0.00200215 -0.00199995 -0.00199774 -0.00199553 -0.0019933 -0.00199107 -0.00198884 -0.00198659 -0.00198433 -0.00198207 -0.0019798 -0.00197752 -0.00197523 -0.00197293 -0.00197062 -0.0019683 -0.00196597 -0.00196363 -0.00196128 -0.00195892 -0.00195655 -0.00195417 -0.00195178 -0.00194938 -0.00194697 -0.00194454 -0.00194211 -0.00193966 -0.0019372 -0.00193472 -0.00193224 -0.00192974 -0.00192722 -0.00192469 -0.00192215 -0.0019196 -0.00191703 -0.00191444 -0.00191184 -0.00190922 -0.00190659 -0.00190394 -0.00190127 -0.00189859 -0.00189589 -0.00189316 -0.00189042 -0.00188766 -0.00188488 -0.00188208 -0.00187925 -0.00187641 -0.00187354 -0.00187064 -0.00186772 -0.00186478 -0.0018618 -0.0018588 -0.00185577 -0.00185271 -0.00184962 -0.00184649 -0.00184333 -0.00184013 -0.00183689 -0.0018336 -0.00183027 -0.00182689 -0.00182346 -0.00181997 -0.00181641 -0.00181279 -0.00180909 -0.00180531 -0.00180143 -0.00179746 -0.00179337 -0.00178916 -0.00178482 -0.00178033 -0.00177567 -0.00177084 -0.00176581 -0.00176058 -0.00175513 -0.00174943 -0.00174349 -0.00173727 -0.00173078 -0.001724 -0.0017169 -0.0017095 -0.00170176 -0.00169369 -0.00168527 -0.0016765 -0.00166737 -0.00165787 -0.00164799 -0.00163774 -0.0016271 -0.00161607 -0.00160464 -0.00159282 -0.00158059 -0.00156796 -0.00155493 -0.00154148 -0.00152761 -0.00151333 -0.00149863 -0.00148351 -0.00146796 -0.00145199 -0.00143559 -0.00141876 -0.0014015 -0.00138381 -0.00136569 -0.00134712 -0.00132812 -0.00130868 -0.0012888 -0.00126848 -0.00124771 -0.0012265 -0.00120485 -0.00118274 -0.00116019 -0.00113719 -0.00111374 -0.00108984 -0.00106548 -0.00104067 -0.0010154 -0.000989679 -0.000963498 -0.000936859 -0.00090976 -0.000882199 -0.000854177 -0.000825692 -0.000796742 -0.000767327 -0.000737445 -0.000707097 -0.000676279 -0.000644993 -0.000613235 -0.000581006 -0.000548305 -0.000515129 -0.000481479 -0.000447353 -0.00041275 -0.000377669 -0.000342109 -0.000306068 -0.000269547 -0.000232544 -0.000195057 -0.000157086 -0.000118629 -7.96858E-05 -4.0255E-05 -3.35396E-07 3.97419E-05 7.96474E-05 0.000119382 0.000158945 0.000198339 0.000237563 0.000276619 0.000315506 0.000354226 0.00039278 +-0.00202051 -0.00201842 -0.00201633 -0.00201423 -0.00201213 -0.00201002 -0.0020079 -0.00200578 -0.00200365 -0.00200152 -0.00199938 -0.00199723 -0.00199507 -0.00199291 -0.00199074 -0.00198857 -0.00198638 -0.00198419 -0.00198199 -0.00197979 -0.00197757 -0.00197535 -0.00197312 -0.00197088 -0.00196864 -0.00196638 -0.00196412 -0.00196185 -0.00195956 -0.00195727 -0.00195497 -0.00195266 -0.00195034 -0.00194801 -0.00194567 -0.00194332 -0.00194096 -0.00193859 -0.00193621 -0.00193381 -0.00193141 -0.00192899 -0.00192656 -0.00192412 -0.00192167 -0.00191921 -0.00191673 -0.00191424 -0.00191173 -0.00190921 -0.00190668 -0.00190413 -0.00190157 -0.00189899 -0.0018964 -0.00189379 -0.00189117 -0.00188852 -0.00188587 -0.00188319 -0.00188049 -0.00187778 -0.00187505 -0.00187229 -0.00186952 -0.00186672 -0.00186391 -0.00186107 -0.0018582 -0.00185531 -0.0018524 -0.00184946 -0.00184649 -0.0018435 -0.00184047 -0.00183742 -0.00183433 -0.0018312 -0.00182804 -0.00182484 -0.0018216 -0.00181831 -0.00181498 -0.0018116 -0.00180816 -0.00180466 -0.0018011 -0.00179746 -0.00179375 -0.00178994 -0.00178605 -0.00178205 -0.00177793 -0.00177369 -0.0017693 -0.00176476 -0.00176005 -0.00175515 -0.00175006 -0.00174475 -0.00173922 -0.00173343 -0.00172739 -0.00172107 -0.00171447 -0.00170756 -0.00170034 -0.0016928 -0.00168492 -0.0016767 -0.00166813 -0.0016592 -0.0016499 -0.00164023 -0.00163017 -0.00161974 -0.00160891 -0.00159768 -0.00158606 -0.00157404 -0.0015616 -0.00154876 -0.0015355 -0.00152183 -0.00150774 -0.00149322 -0.00147828 -0.00146292 -0.00144713 -0.00143091 -0.00141425 -0.00139716 -0.00137964 -0.00136168 -0.00134328 -0.00132444 -0.00130515 -0.00128543 -0.00126526 -0.00124464 -0.00122357 -0.00120206 -0.00118009 -0.00115767 -0.0011348 -0.00111148 -0.0010877 -0.00106347 -0.00103877 -0.00101362 -0.00098801 -0.000961937 -0.000935402 -0.000908403 -0.00088094 -0.000853012 -0.000824616 -0.000795753 -0.000766421 -0.00073662 -0.000706347 -0.000675602 -0.000644383 -0.000612691 -0.000580523 -0.000547879 -0.000514757 -0.000481157 -0.000447077 -0.000412516 -0.000377474 -0.000341948 -0.000305939 -0.000269445 -0.000232464 -0.000194997 -0.000157041 -0.000118596 -7.96603E-05 -4.0233E-05 -3.13072E-07 3.97674E-05 7.96776E-05 0.000119418 0.000158989 0.000198392 0.000237626 0.000276692 0.000315592 0.000354325 0.000392893 +-0.00200659 -0.00200452 -0.00200244 -0.00200036 -0.00199827 -0.00199617 -0.00199407 -0.00199196 -0.00198985 -0.00198773 -0.0019856 -0.00198347 -0.00198133 -0.00197918 -0.00197703 -0.00197487 -0.0019727 -0.00197053 -0.00196835 -0.00196616 -0.00196396 -0.00196175 -0.00195954 -0.00195732 -0.00195509 -0.00195285 -0.0019506 -0.00194835 -0.00194608 -0.00194381 -0.00194153 -0.00193924 -0.00193693 -0.00193462 -0.0019323 -0.00192997 -0.00192763 -0.00192528 -0.00192292 -0.00192054 -0.00191816 -0.00191576 -0.00191335 -0.00191093 -0.0019085 -0.00190606 -0.0019036 -0.00190113 -0.00189865 -0.00189615 -0.00189364 -0.00189112 -0.00188858 -0.00188603 -0.00188346 -0.00188087 -0.00187827 -0.00187566 -0.00187302 -0.00187037 -0.0018677 -0.00186502 -0.00186231 -0.00185959 -0.00185684 -0.00185407 -0.00185128 -0.00184847 -0.00184564 -0.00184278 -0.0018399 -0.001837 -0.00183406 -0.0018311 -0.00182811 -0.00182509 -0.00182204 -0.00181895 -0.00181583 -0.00181267 -0.00180947 -0.00180623 -0.00180294 -0.00179961 -0.00179622 -0.00179277 -0.00178927 -0.00178569 -0.00178204 -0.00177831 -0.00177449 -0.00177057 -0.00176655 -0.0017624 -0.00175811 -0.00175368 -0.00174909 -0.00174433 -0.00173937 -0.0017342 -0.00172882 -0.00172319 -0.00171732 -0.00171117 -0.00170474 -0.00169802 -0.00169099 -0.00168364 -0.00167596 -0.00166794 -0.00165957 -0.00165084 -0.00164175 -0.00163228 -0.00162243 -0.0016122 -0.00160157 -0.00159055 -0.00157913 -0.00156731 -0.00155507 -0.00154243 -0.00152937 -0.00151589 -0.00150199 -0.00148766 -0.00147291 -0.00145773 -0.00144212 -0.00142608 -0.00140961 -0.00139269 -0.00137534 -0.00135755 -0.00133931 -0.00132063 -0.00130151 -0.00128194 -0.00126192 -0.00124145 -0.00122054 -0.00119917 -0.00117734 -0.00115506 -0.00113233 -0.00110913 -0.00108548 -0.00106137 -0.0010368 -0.00101177 -0.000986269 -0.000960306 -0.000933878 -0.000906984 -0.000879621 -0.000851789 -0.000823486 -0.000794713 -0.000765467 -0.000735747 -0.000705553 -0.000674882 -0.000643735 -0.00061211 -0.000580006 -0.000547422 -0.000514356 -0.000480808 -0.000446776 -0.000412261 -0.000377259 -0.000341771 -0.000305795 -0.00026933 -0.000232375 -0.000194928 -0.00015699 -0.000118558 -7.96323E-05 -4.02106E-05 -2.9221E-07 3.97896E-05 7.97027E-05 0.000119448 0.000159024 0.000198434 0.000237677 0.000276753 0.000315664 0.000354409 0.00039299 +-0.00199256 -0.0019905 -0.00198844 -0.00198637 -0.00198429 -0.00198221 -0.00198012 -0.00197803 -0.00197593 -0.00197383 -0.00197171 -0.0019696 -0.00196747 -0.00196534 -0.0019632 -0.00196106 -0.00195891 -0.00195675 -0.00195458 -0.00195241 -0.00195023 -0.00194804 -0.00194584 -0.00194364 -0.00194142 -0.0019392 -0.00193697 -0.00193473 -0.00193249 -0.00193023 -0.00192797 -0.00192569 -0.00192341 -0.00192112 -0.00191882 -0.0019165 -0.00191418 -0.00191185 -0.00190951 -0.00190715 -0.00190479 -0.00190241 -0.00190003 -0.00189763 -0.00189522 -0.00189279 -0.00189036 -0.00188791 -0.00188545 -0.00188298 -0.00188049 -0.00187799 -0.00187547 -0.00187294 -0.0018704 -0.00186784 -0.00186526 -0.00186267 -0.00186006 -0.00185744 -0.0018548 -0.00185214 -0.00184946 -0.00184676 -0.00184404 -0.0018413 -0.00183854 -0.00183576 -0.00183296 -0.00183013 -0.00182728 -0.00182441 -0.00182151 -0.00181858 -0.00181562 -0.00181264 -0.00180962 -0.00180657 -0.00180349 -0.00180037 -0.00179721 -0.00179402 -0.00179078 -0.00178749 -0.00178415 -0.00178076 -0.00177731 -0.00177379 -0.00177021 -0.00176654 -0.0017628 -0.00175896 -0.00175501 -0.00175095 -0.00174677 -0.00174245 -0.00173797 -0.00173333 -0.0017285 -0.00172348 -0.00171824 -0.00171277 -0.00170706 -0.00170108 -0.00169483 -0.00168829 -0.00168145 -0.00167429 -0.00166681 -0.00165899 -0.00165082 -0.00164229 -0.0016334 -0.00162414 -0.0016145 -0.00160447 -0.00159405 -0.00158324 -0.00157202 -0.0015604 -0.00154837 -0.00153593 -0.00152307 -0.00150978 -0.00149608 -0.00148195 -0.00146739 -0.0014524 -0.00143697 -0.00142112 -0.00140482 -0.00138808 -0.00137091 -0.00135329 -0.00133522 -0.00131671 -0.00129775 -0.00127834 -0.00125848 -0.00123816 -0.0012174 -0.00119617 -0.00117449 -0.00115235 -0.00112976 -0.0011067 -0.00108318 -0.0010592 -0.00103475 -0.00100983 -0.000984453 -0.000958605 -0.000932287 -0.000905499 -0.000878239 -0.000850507 -0.0008223 -0.000793619 -0.000764461 -0.000734826 -0.000704713 -0.00067412 -0.000643047 -0.000611492 -0.000579454 -0.000546932 -0.000513925 -0.000480432 -0.000446452 -0.000411983 -0.000377024 -0.000341575 -0.000305635 -0.000269201 -0.000232274 -0.000194851 -0.000156932 -0.000118516 -7.96018E-05 -4.01877E-05 -2.72717E-07 3.98085E-05 7.97227E-05 0.00011947 0.000159051 0.000198466 0.000237716 0.000276801 0.000315721 0.000354477 0.000393069 +-0.00197841 -0.00197637 -0.00197432 -0.00197226 -0.0019702 -0.00196813 -0.00196606 -0.00196398 -0.0019619 -0.0019598 -0.00195771 -0.0019556 -0.0019535 -0.00195138 -0.00194926 -0.00194713 -0.00194499 -0.00194285 -0.0019407 -0.00193854 -0.00193638 -0.0019342 -0.00193202 -0.00192984 -0.00192764 -0.00192544 -0.00192322 -0.001921 -0.00191877 -0.00191654 -0.00191429 -0.00191203 -0.00190977 -0.0019075 -0.00190521 -0.00190292 -0.00190062 -0.0018983 -0.00189598 -0.00189365 -0.0018913 -0.00188895 -0.00188658 -0.0018842 -0.00188181 -0.00187941 -0.001877 -0.00187457 -0.00187213 -0.00186968 -0.00186722 -0.00186474 -0.00186225 -0.00185974 -0.00185722 -0.00185468 -0.00185213 -0.00184957 -0.00184698 -0.00184438 -0.00184177 -0.00183913 -0.00183648 -0.00183381 -0.00183112 -0.00182841 -0.00182568 -0.00182293 -0.00182016 -0.00181736 -0.00181454 -0.0018117 -0.00180883 -0.00180594 -0.00180302 -0.00180007 -0.00179709 -0.00179407 -0.00179103 -0.00178795 -0.00178483 -0.00178168 -0.00177848 -0.00177524 -0.00177195 -0.00176861 -0.00176521 -0.00176175 -0.00175823 -0.00175463 -0.00175096 -0.00174719 -0.00174333 -0.00173936 -0.00173527 -0.00173105 -0.00172668 -0.00172216 -0.00171746 -0.00171257 -0.00170748 -0.00170216 -0.00169661 -0.0016908 -0.00168473 -0.00167837 -0.00167171 -0.00166475 -0.00165746 -0.00164984 -0.00164187 -0.00163355 -0.00162487 -0.00161581 -0.00160638 -0.00159656 -0.00158635 -0.00157575 -0.00156474 -0.00155332 -0.0015415 -0.00152926 -0.0015166 -0.00150352 -0.00149001 -0.00147607 -0.00146171 -0.00144691 -0.00143168 -0.001416 -0.00139989 -0.00138334 -0.00136634 -0.00134889 -0.001331 -0.00131266 -0.00129386 -0.00127462 -0.00125492 -0.00123476 -0.00121415 -0.00119308 -0.00117154 -0.00114955 -0.00112709 -0.00110417 -0.00108079 -0.00105693 -0.00103261 -0.00100782 -0.000982563 -0.000956831 -0.000930626 -0.000903948 -0.000876794 -0.000849164 -0.000821056 -0.00079247 -0.000763404 -0.000733856 -0.000703827 -0.000673315 -0.000642318 -0.000610835 -0.000578866 -0.00054641 -0.000513464 -0.000480028 -0.000446101 -0.000411682 -0.000376769 -0.000341362 -0.000305459 -0.000269059 -0.000232162 -0.000194765 -0.000156868 -0.000118469 -7.95685E-05 -4.0164E-05 -2.54505E-07 3.98242E-05 7.97376E-05 0.000119486 0.000159069 0.000198488 0.000237743 0.000276835 0.000315762 0.000354528 0.000393131 +-0.00196415 -0.00196211 -0.00196008 -0.00195803 -0.00195599 -0.00195393 -0.00195188 -0.00194981 -0.00194774 -0.00194567 -0.00194358 -0.0019415 -0.0019394 -0.0019373 -0.00193519 -0.00193308 -0.00193096 -0.00192883 -0.0019267 -0.00192456 -0.00192241 -0.00192025 -0.00191809 -0.00191592 -0.00191374 -0.00191155 -0.00190936 -0.00190715 -0.00190494 -0.00190272 -0.00190049 -0.00189826 -0.00189601 -0.00189375 -0.00189149 -0.00188922 -0.00188693 -0.00188464 -0.00188233 -0.00188002 -0.0018777 -0.00187536 -0.00187301 -0.00187066 -0.00186829 -0.00186591 -0.00186352 -0.00186111 -0.0018587 -0.00185627 -0.00185382 -0.00185137 -0.0018489 -0.00184642 -0.00184392 -0.00184141 -0.00183888 -0.00183634 -0.00183378 -0.00183121 -0.00182862 -0.00182601 -0.00182339 -0.00182074 -0.00181808 -0.0018154 -0.0018127 -0.00180998 -0.00180723 -0.00180447 -0.00180168 -0.00179887 -0.00179603 -0.00179317 -0.00179028 -0.00178737 -0.00178442 -0.00178145 -0.00177844 -0.0017754 -0.00177232 -0.00176921 -0.00176606 -0.00176286 -0.00175962 -0.00175633 -0.00175298 -0.00174958 -0.00174612 -0.00174258 -0.00173897 -0.00173528 -0.0017315 -0.00172761 -0.00172361 -0.00171949 -0.00171523 -0.00171082 -0.00170624 -0.00170149 -0.00169653 -0.00169137 -0.00168597 -0.00168033 -0.00167443 -0.00166825 -0.00166178 -0.001655 -0.00164791 -0.00164049 -0.00163272 -0.00162461 -0.00161613 -0.00160729 -0.00159807 -0.00158846 -0.00157846 -0.00156807 -0.00155727 -0.00154606 -0.00153445 -0.00152241 -0.00150996 -0.00149708 -0.00148378 -0.00147004 -0.00145587 -0.00144127 -0.00142623 -0.00141074 -0.00139482 -0.00137845 -0.00136163 -0.00134437 -0.00132665 -0.00130848 -0.00128986 -0.00127078 -0.00125124 -0.00123125 -0.00121079 -0.00118987 -0.00116849 -0.00114664 -0.00112433 -0.00110155 -0.0010783 -0.00105458 -0.00103039 -0.00100573 -0.000980594 -0.000954982 -0.000928894 -0.000902328 -0.000875283 -0.000847758 -0.000819753 -0.000791264 -0.000762292 -0.000732836 -0.000702893 -0.000672464 -0.000641546 -0.000610139 -0.000578242 -0.000545853 -0.000512971 -0.000479595 -0.000445724 -0.000411357 -0.000376492 -0.000341129 -0.000305267 -0.000268903 -0.000232037 -0.000194669 -0.000156796 -0.000118417 -7.95323E-05 -4.01394E-05 -2.37491E-07 3.98367E-05 7.97474E-05 0.000119495 0.000159079 0.0001985 0.000237758 0.000276855 0.000315789 0.000354562 0.000393174 +-0.00194976 -0.00194774 -0.00194572 -0.00194369 -0.00194166 -0.00193962 -0.00193757 -0.00193552 -0.00193347 -0.00193141 -0.00192934 -0.00192727 -0.00192519 -0.0019231 -0.00192101 -0.00191891 -0.00191681 -0.0019147 -0.00191258 -0.00191045 -0.00190832 -0.00190618 -0.00190403 -0.00190188 -0.00189972 -0.00189755 -0.00189537 -0.00189319 -0.00189099 -0.00188879 -0.00188658 -0.00188436 -0.00188213 -0.00187989 -0.00187765 -0.00187539 -0.00187313 -0.00187085 -0.00186857 -0.00186628 -0.00186397 -0.00186166 -0.00185933 -0.00185699 -0.00185465 -0.00185229 -0.00184992 -0.00184753 -0.00184514 -0.00184273 -0.00184031 -0.00183788 -0.00183543 -0.00183297 -0.0018305 -0.00182801 -0.00182551 -0.00182299 -0.00182046 -0.00181791 -0.00181535 -0.00181277 -0.00181017 -0.00180755 -0.00180492 -0.00180226 -0.00179959 -0.0017969 -0.00179419 -0.00179145 -0.00178869 -0.00178591 -0.00178311 -0.00178028 -0.00177743 -0.00177455 -0.00177164 -0.0017687 -0.00176573 -0.00176273 -0.00175969 -0.00175662 -0.00175351 -0.00175035 -0.00174716 -0.00174392 -0.00174062 -0.00173727 -0.00173387 -0.00173039 -0.00172685 -0.00172323 -0.00171952 -0.00171571 -0.0017118 -0.00170777 -0.00170362 -0.00169932 -0.00169486 -0.00169023 -0.00168541 -0.00168039 -0.00167515 -0.00166967 -0.00166394 -0.00165794 -0.00165165 -0.00164506 -0.00163817 -0.00163094 -0.00162338 -0.00161547 -0.0016072 -0.00159857 -0.00158956 -0.00158016 -0.00157038 -0.0015602 -0.00154961 -0.00153862 -0.00152721 -0.00151539 -0.00150314 -0.00149047 -0.00147737 -0.00146384 -0.00144987 -0.00143547 -0.00142062 -0.00140534 -0.0013896 -0.00137342 -0.00135679 -0.0013397 -0.00132217 -0.00130417 -0.00128572 -0.00126682 -0.00124745 -0.00122761 -0.00120732 -0.00118656 -0.00116533 -0.00114364 -0.00112147 -0.00109884 -0.00107573 -0.00105215 -0.00102809 -0.00100356 -0.000978546 -0.000953057 -0.000927089 -0.000900638 -0.000873706 -0.000846289 -0.000818388 -0.000790001 -0.000761127 -0.000731763 -0.000701911 -0.000671567 -0.000640732 -0.000609403 -0.00057758 -0.000545261 -0.000512446 -0.000479133 -0.00044532 -0.000411008 -0.000376194 -0.000340877 -0.000305057 -0.000268732 -0.000231901 -0.000194563 -0.000156716 -0.00011836 -7.94928E-05 -4.01138E-05 -2.21597E-07 3.98461E-05 7.9752E-05 0.000119496 0.000159079 0.000198501 0.000237761 0.000276861 0.0003158 0.000354579 0.000393199 +-0.00193526 -0.00193325 -0.00193124 -0.00192923 -0.00192721 -0.00192518 -0.00192315 -0.00192112 -0.00191908 -0.00191703 -0.00191498 -0.00191292 -0.00191086 -0.00190879 -0.00190671 -0.00190463 -0.00190254 -0.00190044 -0.00189834 -0.00189623 -0.00189412 -0.00189199 -0.00188986 -0.00188772 -0.00188558 -0.00188343 -0.00188127 -0.0018791 -0.00187692 -0.00187474 -0.00187255 -0.00187034 -0.00186813 -0.00186592 -0.00186369 -0.00186145 -0.00185921 -0.00185695 -0.00185469 -0.00185241 -0.00185013 -0.00184783 -0.00184553 -0.00184321 -0.00184088 -0.00183854 -0.0018362 -0.00183383 -0.00183146 -0.00182908 -0.00182668 -0.00182427 -0.00182185 -0.00181941 -0.00181696 -0.0018145 -0.00181202 -0.00180953 -0.00180702 -0.0018045 -0.00180196 -0.0017994 -0.00179683 -0.00179424 -0.00179163 -0.00178901 -0.00178636 -0.0017837 -0.00178102 -0.00177831 -0.00177558 -0.00177284 -0.00177006 -0.00176727 -0.00176445 -0.0017616 -0.00175872 -0.00175582 -0.00175289 -0.00174992 -0.00174693 -0.0017439 -0.00174083 -0.00173772 -0.00173457 -0.00173137 -0.00172813 -0.00172483 -0.00172148 -0.00171807 -0.00171459 -0.00171103 -0.00170739 -0.00170367 -0.00169984 -0.0016959 -0.00169184 -0.00168765 -0.00168331 -0.0016788 -0.00167412 -0.00166923 -0.00166414 -0.00165882 -0.00165325 -0.00164743 -0.00164132 -0.00163492 -0.00162822 -0.00162119 -0.00161384 -0.00160613 -0.00159808 -0.00158965 -0.00158085 -0.00157168 -0.00156211 -0.00155214 -0.00154177 -0.00153099 -0.0015198 -0.00150819 -0.00149615 -0.00148369 -0.0014708 -0.00145748 -0.00144371 -0.00142951 -0.00141486 -0.00139977 -0.00138423 -0.00136824 -0.0013518 -0.0013349 -0.00131755 -0.00129973 -0.00128146 -0.00126273 -0.00124353 -0.00122386 -0.00120373 -0.00118313 -0.00116206 -0.00114052 -0.00111851 -0.00109602 -0.00107306 -0.00104962 -0.0010257 -0.0010013 -0.000976417 -0.000951055 -0.000925208 -0.000898877 -0.00087206 -0.000844755 -0.000816962 -0.000788679 -0.000759904 -0.000730638 -0.000700878 -0.000670623 -0.000639873 -0.000608625 -0.000576879 -0.000544633 -0.000511887 -0.000478639 -0.000444888 -0.000410633 -0.000375873 -0.000340605 -0.00030483 -0.000268546 -0.000231752 -0.000194447 -0.000156629 -0.000118297 -7.945E-05 -4.00871E-05 -2.06751E-07 3.98522E-05 7.97514E-05 0.000119491 0.000159071 0.000198491 0.000237751 0.000276853 0.000315796 0.000354579 0.000393205 +-0.00192063 -0.00191864 -0.00191665 -0.00191464 -0.00191264 -0.00191063 -0.00190861 -0.00190659 -0.00190457 -0.00190253 -0.0019005 -0.00189845 -0.0018964 -0.00189435 -0.00189229 -0.00189022 -0.00188815 -0.00188607 -0.00188398 -0.00188189 -0.00187979 -0.00187768 -0.00187557 -0.00187345 -0.00187132 -0.00186919 -0.00186704 -0.00186489 -0.00186273 -0.00186057 -0.00185839 -0.00185621 -0.00185402 -0.00185182 -0.00184961 -0.00184739 -0.00184516 -0.00184293 -0.00184068 -0.00183843 -0.00183616 -0.00183389 -0.0018316 -0.00182931 -0.001827 -0.00182468 -0.00182236 -0.00182002 -0.00181766 -0.0018153 -0.00181293 -0.00181054 -0.00180814 -0.00180573 -0.0018033 -0.00180086 -0.00179841 -0.00179594 -0.00179346 -0.00179096 -0.00178844 -0.00178592 -0.00178337 -0.00178081 -0.00177823 -0.00177563 -0.00177301 -0.00177038 -0.00176772 -0.00176505 -0.00176235 -0.00175963 -0.00175689 -0.00175413 -0.00175134 -0.00174853 -0.00174569 -0.00174282 -0.00173992 -0.001737 -0.00173404 -0.00173105 -0.00172802 -0.00172495 -0.00172185 -0.0017187 -0.0017155 -0.00171226 -0.00170896 -0.0017056 -0.00170218 -0.00169869 -0.00169512 -0.00169147 -0.00168773 -0.00168388 -0.00167991 -0.00167582 -0.00167159 -0.0016672 -0.00166264 -0.0016579 -0.00165295 -0.00164778 -0.00164238 -0.00163672 -0.0016308 -0.00162458 -0.00161807 -0.00161124 -0.00160409 -0.00159659 -0.00158874 -0.00158053 -0.00157195 -0.00156299 -0.00155363 -0.00154389 -0.00153373 -0.00152317 -0.0015122 -0.0015008 -0.00148898 -0.00147674 -0.00146406 -0.00145094 -0.00143738 -0.00142339 -0.00140894 -0.00139405 -0.00137871 -0.00136291 -0.00134666 -0.00132996 -0.00131279 -0.00129516 -0.00127707 -0.00125851 -0.00123949 -0.00121999 -0.00120003 -0.0011796 -0.00115869 -0.0011373 -0.00111544 -0.00109311 -0.00107029 -0.00104699 -0.00102321 -0.000998952 -0.000974205 -0.000948972 -0.000923252 -0.000897043 -0.000870344 -0.000843154 -0.000815471 -0.000787295 -0.000758625 -0.000729458 -0.000699793 -0.00066963 -0.000638968 -0.000607804 -0.000576138 -0.000543969 -0.000511295 -0.000478115 -0.000444428 -0.000410233 -0.000375528 -0.000340313 -0.000304585 -0.000268345 -0.00023159 -0.00019432 -0.000156533 -0.000118228 -7.94037E-05 -4.00591E-05 -1.92886E-07 3.98552E-05 7.97455E-05 0.000119478 0.000159053 0.00019847 0.000237729 0.00027683 0.000315775 0.000354561 0.000393191 +-0.00190589 -0.00190391 -0.00190193 -0.00189994 -0.00189795 -0.00189595 -0.00189395 -0.00189195 -0.00188993 -0.00188792 -0.00188589 -0.00188387 -0.00188183 -0.00187979 -0.00187775 -0.0018757 -0.00187364 -0.00187158 -0.00186951 -0.00186743 -0.00186534 -0.00186325 -0.00186116 -0.00185905 -0.00185694 -0.00185482 -0.0018527 -0.00185056 -0.00184842 -0.00184627 -0.00184412 -0.00184195 -0.00183978 -0.0018376 -0.00183541 -0.00183321 -0.001831 -0.00182878 -0.00182656 -0.00182432 -0.00182208 -0.00181982 -0.00181756 -0.00181528 -0.001813 -0.0018107 -0.00180839 -0.00180608 -0.00180375 -0.00180141 -0.00179905 -0.00179669 -0.00179431 -0.00179192 -0.00178952 -0.0017871 -0.00178467 -0.00178223 -0.00177977 -0.0017773 -0.00177481 -0.00177231 -0.00176979 -0.00176725 -0.0017647 -0.00176213 -0.00175954 -0.00175693 -0.00175431 -0.00175166 -0.001749 -0.00174631 -0.0017436 -0.00174087 -0.00173811 -0.00173533 -0.00173252 -0.00172969 -0.00172683 -0.00172394 -0.00172102 -0.00171807 -0.00171508 -0.00171206 -0.00170899 -0.00170589 -0.00170274 -0.00169955 -0.0016963 -0.001693 -0.00168964 -0.00168621 -0.00168271 -0.00167913 -0.00167546 -0.0016717 -0.00166782 -0.00166383 -0.0016597 -0.00165543 -0.00165099 -0.00164638 -0.00164157 -0.00163656 -0.00163131 -0.00162582 -0.00162007 -0.00161404 -0.00160772 -0.00160109 -0.00159414 -0.00158685 -0.00157921 -0.00157121 -0.00156284 -0.0015541 -0.00154496 -0.00153544 -0.0015255 -0.00151516 -0.00150441 -0.00149323 -0.00148163 -0.0014696 -0.00145713 -0.00144423 -0.00143088 -0.0014171 -0.00140286 -0.00138817 -0.00137303 -0.00135743 -0.00134138 -0.00132487 -0.00130789 -0.00129045 -0.00127254 -0.00125416 -0.00123532 -0.001216 -0.00119621 -0.00117594 -0.0011552 -0.00113398 -0.00111227 -0.00109009 -0.00106743 -0.00104428 -0.00102064 -0.000996518 -0.000971908 -0.000946808 -0.000921216 -0.000895133 -0.000868556 -0.000841484 -0.000813916 -0.00078585 -0.000757286 -0.000728221 -0.000698656 -0.000668588 -0.000638016 -0.000606939 -0.000575356 -0.000543266 -0.000510667 -0.000477558 -0.000443938 -0.000409805 -0.000375159 -0.000339998 -0.000304321 -0.000268127 -0.000231414 -0.000194182 -0.000156429 -0.000118153 -7.93537E-05 -4.00298E-05 -1.79937E-07 3.9855E-05 7.97344E-05 0.000119458 0.000159026 0.000198437 0.000237693 0.000276793 0.000315737 0.000354525 0.000393158 +-0.00189102 -0.00188906 -0.00188709 -0.00188512 -0.00188314 -0.00188116 -0.00187917 -0.00187718 -0.00187518 -0.00187318 -0.00187117 -0.00186916 -0.00186714 -0.00186512 -0.00186309 -0.00186105 -0.00185901 -0.00185696 -0.00185491 -0.00185285 -0.00185078 -0.00184871 -0.00184662 -0.00184454 -0.00184244 -0.00184034 -0.00183823 -0.00183612 -0.00183399 -0.00183186 -0.00182972 -0.00182758 -0.00182542 -0.00182326 -0.00182109 -0.00181891 -0.00181672 -0.00181452 -0.00181231 -0.0018101 -0.00180787 -0.00180564 -0.00180339 -0.00180114 -0.00179887 -0.0017966 -0.00179431 -0.00179201 -0.00178971 -0.00178739 -0.00178506 -0.00178272 -0.00178036 -0.00177799 -0.00177561 -0.00177322 -0.00177082 -0.0017684 -0.00176596 -0.00176352 -0.00176105 -0.00175857 -0.00175608 -0.00175357 -0.00175105 -0.0017485 -0.00174594 -0.00174336 -0.00174077 -0.00173815 -0.00173551 -0.00173286 -0.00173018 -0.00172748 -0.00172476 -0.00172201 -0.00171924 -0.00171644 -0.00171361 -0.00171076 -0.00170788 -0.00170496 -0.00170201 -0.00169903 -0.00169601 -0.00169295 -0.00168985 -0.00168671 -0.00168351 -0.00168026 -0.00167696 -0.00167359 -0.00167016 -0.00166664 -0.00166305 -0.00165936 -0.00165558 -0.00165168 -0.00164765 -0.00164349 -0.00163917 -0.00163468 -0.00163002 -0.00162515 -0.00162006 -0.00161473 -0.00160915 -0.00160331 -0.00159717 -0.00159073 -0.00158398 -0.0015769 -0.00156947 -0.00156168 -0.00155353 -0.00154501 -0.00153609 -0.00152679 -0.00151708 -0.00150696 -0.00149642 -0.00148547 -0.00147409 -0.00146228 -0.00145003 -0.00143734 -0.00142421 -0.00141063 -0.00139661 -0.00138213 -0.00136719 -0.0013518 -0.00133594 -0.00131963 -0.00130284 -0.00128559 -0.00126787 -0.00124968 -0.00123102 -0.00121188 -0.00119226 -0.00117217 -0.00115159 -0.00113054 -0.001109 -0.00108697 -0.00106446 -0.00104146 -0.00101797 -0.000993994 -0.000969523 -0.00094456 -0.000919101 -0.000893146 -0.000866694 -0.000839744 -0.000812293 -0.000784341 -0.000755886 -0.000726928 -0.000697464 -0.000667494 -0.000637016 -0.00060603 -0.000574533 -0.000542524 -0.000510003 -0.000476968 -0.000443418 -0.000409351 -0.000374766 -0.000339662 -0.000304038 -0.000267893 -0.000231225 -0.000194033 -0.000156315 -0.000118071 -7.92997E-05 -3.99989E-05 -1.67844E-07 3.98517E-05 7.97178E-05 0.00011943 0.000158989 0.000198393 0.000237644 0.00027674 0.000315682 0.00035447 0.000393105 +-0.00187604 -0.00187409 -0.00187213 -0.00187017 -0.00186821 -0.00186624 -0.00186427 -0.00186229 -0.00186031 -0.00185832 -0.00185633 -0.00185433 -0.00185233 -0.00185032 -0.00184831 -0.00184628 -0.00184426 -0.00184223 -0.00184019 -0.00183814 -0.00183609 -0.00183404 -0.00183197 -0.0018299 -0.00182782 -0.00182574 -0.00182365 -0.00182155 -0.00181944 -0.00181733 -0.00181521 -0.00181308 -0.00181094 -0.0018088 -0.00180664 -0.00180448 -0.00180231 -0.00180013 -0.00179795 -0.00179575 -0.00179354 -0.00179133 -0.0017891 -0.00178687 -0.00178463 -0.00178237 -0.00178011 -0.00177783 -0.00177555 -0.00177325 -0.00177094 -0.00176862 -0.00176629 -0.00176394 -0.00176159 -0.00175922 -0.00175684 -0.00175444 -0.00175203 -0.00174961 -0.00174717 -0.00174472 -0.00174225 -0.00173977 -0.00173727 -0.00173475 -0.00173222 -0.00172967 -0.0017271 -0.00172452 -0.00172191 -0.00171928 -0.00171663 -0.00171397 -0.00171127 -0.00170856 -0.00170582 -0.00170306 -0.00170027 -0.00169745 -0.0016946 -0.00169173 -0.00168882 -0.00168588 -0.0016829 -0.00167988 -0.00167683 -0.00167373 -0.00167059 -0.00166739 -0.00166414 -0.00166083 -0.00165746 -0.00165401 -0.00165049 -0.00164688 -0.00164318 -0.00163937 -0.00163544 -0.00163138 -0.00162718 -0.00162281 -0.00161828 -0.00161355 -0.00160861 -0.00160345 -0.00159804 -0.00159237 -0.00158642 -0.00158017 -0.00157362 -0.00156674 -0.00155952 -0.00155195 -0.00154402 -0.00153571 -0.00152702 -0.00151793 -0.00150845 -0.00149855 -0.00148824 -0.00147751 -0.00146636 -0.00145477 -0.00144274 -0.00143027 -0.00141736 -0.001404 -0.00139019 -0.00137592 -0.00136119 -0.001346 -0.00133035 -0.00131424 -0.00129765 -0.0012806 -0.00126307 -0.00124506 -0.00122659 -0.00120763 -0.00118819 -0.00116827 -0.00114787 -0.00112698 -0.00110561 -0.00108374 -0.00106139 -0.00103855 -0.00101521 -0.000991377 -0.00096705 -0.000942226 -0.000916903 -0.000891081 -0.000864758 -0.000837932 -0.000810602 -0.000782767 -0.000754425 -0.000725576 -0.000696217 -0.000666348 -0.000635968 -0.000605074 -0.000573666 -0.000541743 -0.000509302 -0.000476344 -0.000442866 -0.000408868 -0.000374347 -0.000339304 -0.000303736 -0.000267642 -0.000231021 -0.000193872 -0.000156193 -0.000117983 -7.92416E-05 -3.99665E-05 -1.56553E-07 3.98452E-05 7.96959E-05 0.000119395 0.000158942 0.000198338 0.000237581 0.000276672 0.00031561 0.000354396 0.00039303 +-0.00186093 -0.001859 -0.00185706 -0.00185511 -0.00185316 -0.00185121 -0.00184925 -0.00184729 -0.00184532 -0.00184334 -0.00184137 -0.00183938 -0.0018374 -0.0018354 -0.0018334 -0.0018314 -0.00182939 -0.00182737 -0.00182535 -0.00182332 -0.00182129 -0.00181924 -0.0018172 -0.00181514 -0.00181308 -0.00181102 -0.00180894 -0.00180686 -0.00180477 -0.00180267 -0.00180057 -0.00179846 -0.00179634 -0.00179422 -0.00179208 -0.00178994 -0.00178779 -0.00178563 -0.00178346 -0.00178128 -0.0017791 -0.0017769 -0.0017747 -0.00177248 -0.00177026 -0.00176803 -0.00176578 -0.00176353 -0.00176126 -0.00175899 -0.0017567 -0.0017544 -0.00175209 -0.00174977 -0.00174744 -0.00174509 -0.00174274 -0.00174036 -0.00173798 -0.00173558 -0.00173317 -0.00173074 -0.0017283 -0.00172584 -0.00172337 -0.00172088 -0.00171838 -0.00171585 -0.00171331 -0.00171076 -0.00170818 -0.00170558 -0.00170297 -0.00170033 -0.00169767 -0.00169499 -0.00169228 -0.00168955 -0.0016868 -0.00168401 -0.0016812 -0.00167837 -0.0016755 -0.00167259 -0.00166966 -0.00166669 -0.00166367 -0.00166062 -0.00165752 -0.00165438 -0.00165118 -0.00164793 -0.00164462 -0.00164124 -0.00163778 -0.00163425 -0.00163062 -0.0016269 -0.00162307 -0.00161911 -0.00161501 -0.00161077 -0.00160636 -0.00160177 -0.00159698 -0.00159197 -0.00158672 -0.00158123 -0.00157546 -0.00156941 -0.00156305 -0.00155637 -0.00154936 -0.00154201 -0.00153429 -0.0015262 -0.00151773 -0.00150888 -0.00149962 -0.00148995 -0.00147987 -0.00146936 -0.00145843 -0.00144707 -0.00143527 -0.00142302 -0.00141033 -0.00139719 -0.00138359 -0.00136954 -0.00135503 -0.00134005 -0.0013246 -0.00130869 -0.00129231 -0.00127545 -0.00125812 -0.00124031 -0.00122202 -0.00120325 -0.00118399 -0.00116425 -0.00114402 -0.00112331 -0.0011021 -0.0010804 -0.00105821 -0.00103553 -0.00101235 -0.000988665 -0.000964485 -0.000939804 -0.000914622 -0.000888935 -0.000862744 -0.000836046 -0.00080884 -0.000781125 -0.0007529 -0.000724163 -0.000694913 -0.000665148 -0.000634868 -0.000604071 -0.000572755 -0.00054092 -0.000508563 -0.000475685 -0.000442283 -0.000408356 -0.000373902 -0.000338922 -0.000303412 -0.000267373 -0.000230802 -0.000193698 -0.000156061 -0.000117888 -7.91793E-05 -3.99322E-05 -1.4601E-07 3.98356E-05 7.96684E-05 0.000119352 0.000158886 0.00019827 0.000237504 0.000276587 0.000315521 0.000354303 0.000392935 +-0.00184571 -0.00184379 -0.00184186 -0.00183993 -0.00183799 -0.00183605 -0.00183411 -0.00183216 -0.00183021 -0.00182825 -0.00182629 -0.00182432 -0.00182235 -0.00182037 -0.00181838 -0.00181639 -0.0018144 -0.0018124 -0.00181039 -0.00180838 -0.00180636 -0.00180434 -0.00180231 -0.00180027 -0.00179823 -0.00179617 -0.00179412 -0.00179205 -0.00178998 -0.0017879 -0.00178582 -0.00178373 -0.00178163 -0.00177952 -0.0017774 -0.00177528 -0.00177314 -0.001771 -0.00176886 -0.0017667 -0.00176453 -0.00176236 -0.00176017 -0.00175798 -0.00175577 -0.00175356 -0.00175134 -0.00174911 -0.00174686 -0.00174461 -0.00174234 -0.00174007 -0.00173778 -0.00173548 -0.00173317 -0.00173085 -0.00172852 -0.00172617 -0.00172381 -0.00172143 -0.00171905 -0.00171665 -0.00171423 -0.0017118 -0.00170935 -0.00170689 -0.00170441 -0.00170192 -0.00169941 -0.00169688 -0.00169433 -0.00169176 -0.00168917 -0.00168657 -0.00168394 -0.00168129 -0.00167862 -0.00167592 -0.0016732 -0.00167045 -0.00166768 -0.00166488 -0.00166205 -0.00165918 -0.00165629 -0.00165336 -0.00165039 -0.00164738 -0.00164434 -0.00164124 -0.0016381 -0.0016349 -0.00163164 -0.00162833 -0.00162494 -0.00162147 -0.00161793 -0.00161428 -0.00161054 -0.00160668 -0.00160269 -0.00159856 -0.00159427 -0.00158981 -0.00158516 -0.0015803 -0.00157522 -0.00156989 -0.0015643 -0.00155844 -0.00155228 -0.0015458 -0.001539 -0.00153186 -0.00152436 -0.00151649 -0.00150825 -0.00149961 -0.00149058 -0.00148114 -0.00147129 -0.00146102 -0.00145032 -0.00143918 -0.00142761 -0.00141559 -0.00140312 -0.0013902 -0.00137683 -0.00136299 -0.00134869 -0.00133393 -0.00131869 -0.00130299 -0.00128681 -0.00127016 -0.00125302 -0.00123541 -0.00121731 -0.00119873 -0.00117966 -0.00116011 -0.00114006 -0.00111952 -0.00109849 -0.00107696 -0.00105493 -0.00103241 -0.00100938 -0.000985857 -0.000961828 -0.000937294 -0.000912255 -0.000886707 -0.000860651 -0.000834085 -0.000807007 -0.000779416 -0.000751311 -0.000722689 -0.000693551 -0.000663894 -0.000633717 -0.00060302 -0.000571799 -0.000540055 -0.000507786 -0.00047499 -0.000441666 -0.000407814 -0.000373431 -0.000338516 -0.000303068 -0.000267086 -0.000230568 -0.000193513 -0.000155919 -0.000117786 -7.91125E-05 -3.98962E-05 -1.36167E-07 3.98227E-05 7.96353E-05 0.000119301 0.000158819 0.00019819 0.000237413 0.000276487 0.000315413 0.000354189 0.000392817 +-0.00183037 -0.00182846 -0.00182655 -0.00182463 -0.00182271 -0.00182079 -0.00181886 -0.00181692 -0.00181498 -0.00181304 -0.00181109 -0.00180914 -0.00180718 -0.00180522 -0.00180325 -0.00180128 -0.0017993 -0.00179731 -0.00179532 -0.00179332 -0.00179132 -0.00178931 -0.0017873 -0.00178528 -0.00178325 -0.00178122 -0.00177918 -0.00177713 -0.00177508 -0.00177302 -0.00177095 -0.00176888 -0.00176679 -0.0017647 -0.00176261 -0.0017605 -0.00175839 -0.00175627 -0.00175414 -0.001752 -0.00174985 -0.00174769 -0.00174553 -0.00174336 -0.00174117 -0.00173898 -0.00173678 -0.00173457 -0.00173235 -0.00173011 -0.00172787 -0.00172562 -0.00172335 -0.00172108 -0.00171879 -0.00171649 -0.00171418 -0.00171186 -0.00170952 -0.00170717 -0.00170481 -0.00170243 -0.00170004 -0.00169764 -0.00169522 -0.00169278 -0.00169033 -0.00168786 -0.00168538 -0.00168288 -0.00168036 -0.00167782 -0.00167526 -0.00167269 -0.00167009 -0.00166747 -0.00166483 -0.00166217 -0.00165948 -0.00165677 -0.00165403 -0.00165127 -0.00164848 -0.00164565 -0.0016428 -0.00163991 -0.00163698 -0.00163402 -0.00163102 -0.00162797 -0.00162488 -0.00162173 -0.00161854 -0.00161528 -0.00161195 -0.00160856 -0.00160508 -0.00160152 -0.00159786 -0.00159409 -0.0015902 -0.00158618 -0.00158201 -0.00157768 -0.00157316 -0.00156845 -0.00156353 -0.00155837 -0.00155295 -0.00154727 -0.0015413 -0.00153502 -0.00152843 -0.0015215 -0.00151422 -0.00150657 -0.00149855 -0.00149014 -0.00148134 -0.00147214 -0.00146251 -0.00145247 -0.001442 -0.0014311 -0.00141975 -0.00140796 -0.00139573 -0.00138303 -0.00136988 -0.00135627 -0.00134219 -0.00132764 -0.00131262 -0.00129713 -0.00128116 -0.00126471 -0.00124778 -0.00123037 -0.00121247 -0.00119408 -0.0011752 -0.00115583 -0.00113597 -0.00111561 -0.00109475 -0.0010734 -0.00105154 -0.00102918 -0.00100632 -0.000982951 -0.000959077 -0.000934694 -0.000909801 -0.000884396 -0.000858479 -0.000832048 -0.000805101 -0.000777637 -0.000749655 -0.000721153 -0.00069213 -0.000662584 -0.000632514 -0.000601919 -0.000570797 -0.000539148 -0.000506969 -0.000474259 -0.000441017 -0.000407242 -0.000372932 -0.000338086 -0.000302702 -0.00026678 -0.000230318 -0.000193314 -0.000155768 -0.000117677 -7.90411E-05 -3.98581E-05 -1.26978E-07 3.98067E-05 7.95966E-05 0.000119242 0.000158743 0.000198098 0.000237307 0.00027637 0.000315286 0.000354056 0.000392678 +-0.00181492 -0.00181302 -0.00181112 -0.00180922 -0.00180731 -0.0018054 -0.00180349 -0.00180157 -0.00179964 -0.00179771 -0.00179578 -0.00179384 -0.0017919 -0.00178995 -0.001788 -0.00178604 -0.00178408 -0.00178211 -0.00178013 -0.00177815 -0.00177617 -0.00177418 -0.00177218 -0.00177017 -0.00176816 -0.00176615 -0.00176413 -0.0017621 -0.00176006 -0.00175802 -0.00175597 -0.00175391 -0.00175185 -0.00174977 -0.00174769 -0.00174561 -0.00174351 -0.00174141 -0.0017393 -0.00173718 -0.00173505 -0.00173292 -0.00173077 -0.00172862 -0.00172646 -0.00172429 -0.0017221 -0.00171991 -0.00171771 -0.0017155 -0.00171328 -0.00171105 -0.00170881 -0.00170655 -0.00170429 -0.00170201 -0.00169973 -0.00169743 -0.00169511 -0.00169279 -0.00169045 -0.0016881 -0.00168574 -0.00168336 -0.00168096 -0.00167855 -0.00167613 -0.00167369 -0.00167123 -0.00166876 -0.00166627 -0.00166376 -0.00166124 -0.00165869 -0.00165612 -0.00165354 -0.00165093 -0.0016483 -0.00164565 -0.00164297 -0.00164027 -0.00163754 -0.00163478 -0.00163199 -0.00162918 -0.00162633 -0.00162345 -0.00162053 -0.00161757 -0.00161457 -0.00161153 -0.00160844 -0.00160529 -0.00160209 -0.00159883 -0.0015955 -0.0015921 -0.00158861 -0.00158503 -0.00158135 -0.00157756 -0.00157364 -0.00156959 -0.00156537 -0.00156099 -0.00155642 -0.00155165 -0.00154665 -0.00154141 -0.0015359 -0.00153012 -0.00152404 -0.00151765 -0.00151093 -0.00150387 -0.00149644 -0.00148865 -0.00148047 -0.0014719 -0.00146292 -0.00145353 -0.00144373 -0.00143349 -0.00142282 -0.00141171 -0.00140015 -0.00138814 -0.00137568 -0.00136276 -0.00134937 -0.00133551 -0.00132119 -0.00130639 -0.00129111 -0.00127536 -0.00125912 -0.00124239 -0.00122518 -0.00120748 -0.00118929 -0.00117061 -0.00115143 -0.00113175 -0.00111158 -0.0010909 -0.00106972 -0.00104804 -0.00102585 -0.00100315 -0.000979946 -0.000956229 -0.000932 -0.000907258 -0.000882 -0.000856226 -0.000829933 -0.000803121 -0.000775788 -0.000747932 -0.000719553 -0.000690648 -0.000661217 -0.000631257 -0.000600768 -0.000569748 -0.000538196 -0.000506111 -0.00047349 -0.000440333 -0.000406639 -0.000372405 -0.000337631 -0.000302315 -0.000266456 -0.000230052 -0.000193103 -0.000155606 -0.00011756 -7.89648E-05 -3.9818E-05 -1.18401E-07 3.97874E-05 7.95521E-05 0.000119175 0.000158655 0.000197992 0.000237186 0.000276235 0.00031514 0.000353901 0.000392515 +-0.00179935 -0.00179747 -0.00179558 -0.00179369 -0.0017918 -0.0017899 -0.001788 -0.0017861 -0.00178419 -0.00178227 -0.00178036 -0.00177843 -0.0017765 -0.00177457 -0.00177263 -0.00177069 -0.00176874 -0.00176679 -0.00176483 -0.00176287 -0.0017609 -0.00175892 -0.00175694 -0.00175495 -0.00175296 -0.00175096 -0.00174896 -0.00174694 -0.00174493 -0.0017429 -0.00174087 -0.00173883 -0.00173678 -0.00173473 -0.00173267 -0.0017306 -0.00172852 -0.00172644 -0.00172435 -0.00172225 -0.00172014 -0.00171802 -0.0017159 -0.00171377 -0.00171162 -0.00170947 -0.00170731 -0.00170514 -0.00170296 -0.00170077 -0.00169858 -0.00169637 -0.00169415 -0.00169192 -0.00168967 -0.00168742 -0.00168516 -0.00168288 -0.00168059 -0.00167829 -0.00167598 -0.00167365 -0.00167131 -0.00166896 -0.00166659 -0.00166421 -0.00166181 -0.0016594 -0.00165697 -0.00165452 -0.00165206 -0.00164958 -0.00164709 -0.00164457 -0.00164204 -0.00163948 -0.0016369 -0.00163431 -0.00163169 -0.00162904 -0.00162638 -0.00162368 -0.00162096 -0.00161821 -0.00161544 -0.00161263 -0.00160979 -0.00160691 -0.001604 -0.00160105 -0.00159805 -0.00159501 -0.00159192 -0.00158878 -0.00158557 -0.00158231 -0.00157897 -0.00157556 -0.00157206 -0.00156846 -0.00156476 -0.00156094 -0.00155699 -0.0015529 -0.00154864 -0.00154421 -0.00153958 -0.00153474 -0.00152966 -0.00152434 -0.00151874 -0.00151286 -0.00150667 -0.00150016 -0.00149331 -0.0014861 -0.00147853 -0.00147058 -0.00146224 -0.0014535 -0.00144435 -0.00143478 -0.00142478 -0.00141434 -0.00140347 -0.00139215 -0.00138037 -0.00136814 -0.00135545 -0.00134229 -0.00132866 -0.00131456 -0.00129998 -0.00128493 -0.00126939 -0.00125336 -0.00123685 -0.00121985 -0.00120235 -0.00118436 -0.00116588 -0.00114689 -0.00112741 -0.00110742 -0.00108693 -0.00106593 -0.00104442 -0.00102241 -0.000999878 -0.000976838 -0.000953283 -0.000929213 -0.000904624 -0.000879517 -0.000853889 -0.000827739 -0.000801065 -0.000773866 -0.000746141 -0.000717887 -0.000689104 -0.000659791 -0.000629945 -0.000599566 -0.000568651 -0.0005372 -0.000505211 -0.000472683 -0.000439614 -0.000406003 -0.000371849 -0.00033715 -0.000301905 -0.000266112 -0.00022977 -0.000192877 -0.000155433 -0.000117436 -7.88837E-05 -3.97757E-05 -1.10395E-07 3.97649E-05 7.95017E-05 0.000119099 0.000158557 0.000197874 0.00023705 0.000276084 0.000314975 0.000353724 0.00039233 +-0.00178367 -0.0017818 -0.00177993 -0.00177805 -0.00177617 -0.00177429 -0.0017724 -0.00177051 -0.00176862 -0.00176672 -0.00176481 -0.00176291 -0.00176099 -0.00175908 -0.00175715 -0.00175523 -0.00175329 -0.00175136 -0.00174941 -0.00174747 -0.00174551 -0.00174355 -0.00174159 -0.00173962 -0.00173764 -0.00173566 -0.00173367 -0.00173168 -0.00172967 -0.00172767 -0.00172565 -0.00172363 -0.0017216 -0.00171957 -0.00171752 -0.00171548 -0.00171342 -0.00171135 -0.00170928 -0.0017072 -0.00170511 -0.00170302 -0.00170091 -0.0016988 -0.00169668 -0.00169455 -0.00169241 -0.00169026 -0.0016881 -0.00168593 -0.00168375 -0.00168157 -0.00167937 -0.00167716 -0.00167494 -0.00167271 -0.00167047 -0.00166822 -0.00166595 -0.00166367 -0.00166139 -0.00165908 -0.00165677 -0.00165444 -0.0016521 -0.00164974 -0.00164737 -0.00164499 -0.00164259 -0.00164017 -0.00163774 -0.00163529 -0.00163282 -0.00163033 -0.00162783 -0.0016253 -0.00162276 -0.00162019 -0.00161761 -0.001615 -0.00161236 -0.00160971 -0.00160702 -0.00160431 -0.00160157 -0.0015988 -0.001596 -0.00159317 -0.0015903 -0.00158739 -0.00158444 -0.00158145 -0.00157841 -0.00157533 -0.00157218 -0.00156898 -0.00156571 -0.00156236 -0.00155894 -0.00155542 -0.00155181 -0.00154809 -0.00154424 -0.00154026 -0.00153612 -0.00153182 -0.00152733 -0.00152264 -0.00151773 -0.00151258 -0.00150716 -0.00150147 -0.00149548 -0.00148917 -0.00148253 -0.00147555 -0.0014682 -0.00146048 -0.00145238 -0.00144387 -0.00143495 -0.00142562 -0.00141586 -0.00140567 -0.00139503 -0.00138395 -0.00137241 -0.00136042 -0.00134796 -0.00133503 -0.00132163 -0.00130776 -0.00129341 -0.00127858 -0.00126326 -0.00124745 -0.00123115 -0.00121436 -0.00119708 -0.00117929 -0.00116101 -0.00114222 -0.00112293 -0.00110313 -0.00108283 -0.00106202 -0.00104069 -0.00101885 -0.000996497 -0.000973626 -0.000950237 -0.000926328 -0.000901898 -0.000876945 -0.000851467 -0.000825462 -0.000798931 -0.00077187 -0.000744278 -0.000716155 -0.000687497 -0.000658305 -0.000628577 -0.00059831 -0.000567504 -0.000536158 -0.000504269 -0.000471837 -0.000438859 -0.000405335 -0.000371264 -0.000336643 -0.000301471 -0.000265747 -0.00022947 -0.000192638 -0.000155249 -0.000117303 -7.87973E-05 -3.97312E-05 -1.02923E-07 3.97391E-05 7.94455E-05 0.000119015 0.000158448 0.000197742 0.000236898 0.000275914 0.00031479 0.000353526 0.00039212 +-0.00176787 -0.00176601 -0.00176415 -0.00176229 -0.00176043 -0.00175856 -0.00175669 -0.00175481 -0.00175293 -0.00175105 -0.00174916 -0.00174726 -0.00174537 -0.00174346 -0.00174156 -0.00173965 -0.00173773 -0.00173581 -0.00173388 -0.00173195 -0.00173001 -0.00172807 -0.00172612 -0.00172417 -0.00172221 -0.00172024 -0.00171827 -0.00171629 -0.00171431 -0.00171232 -0.00171032 -0.00170832 -0.00170631 -0.00170429 -0.00170227 -0.00170024 -0.0016982 -0.00169615 -0.0016941 -0.00169204 -0.00168997 -0.00168789 -0.00168581 -0.00168371 -0.00168161 -0.0016795 -0.00167738 -0.00167525 -0.00167312 -0.00167097 -0.00166881 -0.00166665 -0.00166447 -0.00166229 -0.00166009 -0.00165788 -0.00165566 -0.00165343 -0.00165119 -0.00164894 -0.00164668 -0.0016444 -0.00164211 -0.00163981 -0.00163749 -0.00163516 -0.00163282 -0.00163046 -0.00162808 -0.00162569 -0.00162329 -0.00162087 -0.00161843 -0.00161597 -0.0016135 -0.001611 -0.00160849 -0.00160596 -0.0016034 -0.00160083 -0.00159823 -0.00159561 -0.00159296 -0.00159028 -0.00158758 -0.00158485 -0.00158209 -0.0015793 -0.00157647 -0.00157361 -0.00157071 -0.00156777 -0.00156478 -0.00156174 -0.00155865 -0.00155551 -0.0015523 -0.00154903 -0.00154567 -0.00154224 -0.00153871 -0.00153508 -0.00153133 -0.00152745 -0.00152344 -0.00151926 -0.00151491 -0.00151036 -0.00150561 -0.00150062 -0.00149538 -0.00148987 -0.00148408 -0.00147798 -0.00147155 -0.00146479 -0.00145766 -0.00145017 -0.0014423 -0.00143403 -0.00142535 -0.00141626 -0.00140674 -0.00139678 -0.00138639 -0.00137555 -0.00136425 -0.0013525 -0.00134028 -0.00132759 -0.00131442 -0.00130078 -0.00128666 -0.00127205 -0.00125696 -0.00124137 -0.0012253 -0.00120872 -0.00119165 -0.00117407 -0.00115599 -0.00113741 -0.00111832 -0.00109872 -0.00107861 -0.00105798 -0.00103684 -0.00101518 -0.000993005 -0.000970308 -0.000947089 -0.000923345 -0.000899077 -0.000874281 -0.000848957 -0.000823103 -0.000796717 -0.000769798 -0.000742344 -0.000714353 -0.000685826 -0.000656758 -0.000627151 -0.000597001 -0.000566307 -0.000535068 -0.000503283 -0.00047095 -0.000438067 -0.000404634 -0.000370648 -0.000336109 -0.000301014 -0.000265363 -0.000229153 -0.000192384 -0.000155054 -0.000117162 -7.87057E-05 -3.96842E-05 -9.59492E-08 3.97099E-05 7.93832E-05 0.000118923 0.000158328 0.000197597 0.00023673 0.000275727 0.000314585 0.000353305 0.000391886 +-0.00175195 -0.00175011 -0.00174827 -0.00174642 -0.00174457 -0.00174271 -0.00174086 -0.00173899 -0.00173713 -0.00173526 -0.00173338 -0.00173151 -0.00172962 -0.00172774 -0.00172585 -0.00172395 -0.00172205 -0.00172014 -0.00171823 -0.00171632 -0.0017144 -0.00171247 -0.00171054 -0.0017086 -0.00170666 -0.00170471 -0.00170275 -0.00170079 -0.00169883 -0.00169685 -0.00169488 -0.00169289 -0.0016909 -0.0016889 -0.00168689 -0.00168488 -0.00168286 -0.00168083 -0.0016788 -0.00167676 -0.00167471 -0.00167265 -0.00167059 -0.00166851 -0.00166643 -0.00166434 -0.00166224 -0.00166014 -0.00165802 -0.00165589 -0.00165376 -0.00165161 -0.00164946 -0.0016473 -0.00164512 -0.00164294 -0.00164074 -0.00163854 -0.00163632 -0.00163409 -0.00163185 -0.0016296 -0.00162733 -0.00162506 -0.00162276 -0.00162046 -0.00161814 -0.00161581 -0.00161346 -0.0016111 -0.00160872 -0.00160633 -0.00160392 -0.00160149 -0.00159905 -0.00159659 -0.00159411 -0.0015916 -0.00158908 -0.00158654 -0.00158397 -0.00158139 -0.00157877 -0.00157613 -0.00157347 -0.00157078 -0.00156806 -0.00156531 -0.00156252 -0.0015597 -0.00155685 -0.00155395 -0.00155101 -0.00154803 -0.00154499 -0.00154191 -0.00153876 -0.00153555 -0.00153227 -0.00152891 -0.00152546 -0.00152191 -0.00151826 -0.00151449 -0.00151058 -0.00150652 -0.0015023 -0.0014979 -0.00149329 -0.00148847 -0.0014834 -0.00147808 -0.00147248 -0.00146658 -0.00146036 -0.00145381 -0.00144691 -0.00143965 -0.001432 -0.00142397 -0.00141553 -0.00140668 -0.0013974 -0.00138769 -0.00137755 -0.00136695 -0.0013559 -0.00134438 -0.0013324 -0.00131995 -0.00130703 -0.00129362 -0.00127973 -0.00126536 -0.00125049 -0.00123513 -0.00121928 -0.00120292 -0.00118607 -0.0011687 -0.00115084 -0.00113246 -0.00111357 -0.00109417 -0.00107425 -0.00105382 -0.00103287 -0.0010114 -0.000989401 -0.000966881 -0.000943835 -0.000920262 -0.000896159 -0.000871525 -0.000846359 -0.000820658 -0.000794422 -0.000767648 -0.000740335 -0.000712482 -0.000684087 -0.000655149 -0.000625666 -0.000595636 -0.000565058 -0.000533931 -0.000502253 -0.000470022 -0.000437238 -0.000403898 -0.000370002 -0.000335547 -0.000300532 -0.000264957 -0.000228818 -0.000192116 -0.000154848 -0.000117012 -7.86085E-05 -3.96347E-05 -8.94413E-08 3.96775E-05 7.93148E-05 0.000118821 0.000158196 0.000197438 0.000236546 0.00027552 0.000314358 0.000353061 0.000391626 +-0.00173592 -0.00173409 -0.00173226 -0.00173043 -0.00172859 -0.00172675 -0.00172491 -0.00172306 -0.00172121 -0.00171936 -0.0017175 -0.00171563 -0.00171377 -0.0017119 -0.00171002 -0.00170814 -0.00170625 -0.00170436 -0.00170247 -0.00170057 -0.00169866 -0.00169675 -0.00169484 -0.00169292 -0.00169099 -0.00168906 -0.00168712 -0.00168518 -0.00168323 -0.00168128 -0.00167931 -0.00167735 -0.00167537 -0.00167339 -0.0016714 -0.00166941 -0.00166741 -0.0016654 -0.00166338 -0.00166136 -0.00165933 -0.00165729 -0.00165525 -0.0016532 -0.00165113 -0.00164906 -0.00164699 -0.0016449 -0.0016428 -0.0016407 -0.00163859 -0.00163646 -0.00163433 -0.00163219 -0.00163004 -0.00162788 -0.00162571 -0.00162352 -0.00162133 -0.00161912 -0.00161691 -0.00161468 -0.00161244 -0.00161019 -0.00160792 -0.00160564 -0.00160335 -0.00160105 -0.00159873 -0.00159639 -0.00159404 -0.00159168 -0.0015893 -0.0015869 -0.00158448 -0.00158205 -0.0015796 -0.00157713 -0.00157464 -0.00157213 -0.0015696 -0.00156704 -0.00156446 -0.00156186 -0.00155924 -0.00155658 -0.0015539 -0.00155119 -0.00154844 -0.00154567 -0.00154286 -0.00154001 -0.00153712 -0.00153418 -0.0015312 -0.00152817 -0.00152508 -0.00152193 -0.00151872 -0.00151543 -0.00151206 -0.0015086 -0.00150503 -0.00150136 -0.00149756 -0.00149362 -0.00148952 -0.00148525 -0.0014808 -0.00147613 -0.00147123 -0.00146608 -0.00146067 -0.00145497 -0.00144896 -0.00144262 -0.00143594 -0.00142891 -0.00142149 -0.0014137 -0.0014055 -0.00139689 -0.00138786 -0.0013784 -0.00136849 -0.00135814 -0.00134734 -0.00133607 -0.00132434 -0.00131213 -0.00129944 -0.00128628 -0.00127263 -0.00125849 -0.00124385 -0.00122872 -0.0012131 -0.00119696 -0.00118033 -0.00116318 -0.00114553 -0.00112736 -0.00110868 -0.00108949 -0.00106977 -0.00104953 -0.00102877 -0.00100749 -0.000985681 -0.000963343 -0.000940475 -0.000917075 -0.000893142 -0.000868674 -0.000843669 -0.000818126 -0.000792044 -0.000765419 -0.000738252 -0.00071054 -0.000682281 -0.000653475 -0.00062412 -0.000594214 -0.000563756 -0.000532744 -0.000501176 -0.000469052 -0.000436369 -0.000403127 -0.000369323 -0.000334957 -0.000300026 -0.000264529 -0.000228465 -0.000191832 -0.000154629 -0.000116854 -7.85057E-05 -3.95827E-05 -8.33686E-08 3.96416E-05 7.92401E-05 0.000118711 0.000158053 0.000197265 0.000236346 0.000275294 0.000314111 0.000352793 0.000391341 +-0.00171977 -0.00171796 -0.00171614 -0.00171432 -0.0017125 -0.00171068 -0.00170885 -0.00170701 -0.00170518 -0.00170334 -0.00170149 -0.00169965 -0.00169779 -0.00169594 -0.00169408 -0.00169221 -0.00169034 -0.00168847 -0.00168659 -0.00168471 -0.00168282 -0.00168092 -0.00167903 -0.00167712 -0.00167521 -0.0016733 -0.00167138 -0.00166945 -0.00166752 -0.00166558 -0.00166364 -0.00166169 -0.00165973 -0.00165777 -0.0016558 -0.00165382 -0.00165184 -0.00164985 -0.00164785 -0.00164585 -0.00164384 -0.00164182 -0.0016398 -0.00163776 -0.00163572 -0.00163367 -0.00163162 -0.00162955 -0.00162747 -0.00162539 -0.0016233 -0.0016212 -0.00161909 -0.00161697 -0.00161484 -0.0016127 -0.00161055 -0.00160839 -0.00160622 -0.00160404 -0.00160185 -0.00159964 -0.00159743 -0.0015952 -0.00159296 -0.00159071 -0.00158844 -0.00158616 -0.00158387 -0.00158156 -0.00157924 -0.0015769 -0.00157455 -0.00157218 -0.0015698 -0.00156739 -0.00156497 -0.00156253 -0.00156008 -0.0015576 -0.0015551 -0.00155258 -0.00155004 -0.00154747 -0.00154488 -0.00154226 -0.00153962 -0.00153694 -0.00153424 -0.00153151 -0.00152874 -0.00152593 -0.00152309 -0.00152021 -0.00151728 -0.0015143 -0.00151127 -0.00150818 -0.00150503 -0.00150181 -0.00149851 -0.00149513 -0.00149166 -0.00148808 -0.00148438 -0.00148055 -0.00147657 -0.00147243 -0.00146811 -0.0014636 -0.00145886 -0.00145389 -0.00144866 -0.00144315 -0.00143734 -0.00143122 -0.00142476 -0.00141795 -0.00141077 -0.00140321 -0.00139525 -0.00138688 -0.0013781 -0.00136888 -0.00135923 -0.00134913 -0.00133857 -0.00132755 -0.00131607 -0.00130411 -0.00129167 -0.00127875 -0.00126534 -0.00125144 -0.00123704 -0.00122214 -0.00120675 -0.00119084 -0.00117443 -0.00115751 -0.00114007 -0.00112212 -0.00110365 -0.00108466 -0.00106515 -0.00104512 -0.00102456 -0.00100346 -0.000981844 -0.000959692 -0.000937006 -0.000913784 -0.000890024 -0.000865726 -0.000840887 -0.000815506 -0.00078958 -0.000763109 -0.000736091 -0.000708524 -0.000680406 -0.000651736 -0.000622513 -0.000592735 -0.0005624 -0.000531506 -0.000500053 -0.000468039 -0.000435461 -0.00040232 -0.000368612 -0.000334337 -0.000299493 -0.000264079 -0.000228093 -0.000191533 -0.000154398 -0.000116686 -7.8397E-05 -3.95279E-05 -7.77023E-08 3.96023E-05 7.9159E-05 0.000118591 0.000157897 0.000197077 0.000236128 0.000275049 0.000313841 0.000352501 0.00039103 +-0.00170351 -0.00170171 -0.00169991 -0.0016981 -0.0016963 -0.00169448 -0.00169267 -0.00169085 -0.00168903 -0.0016872 -0.00168538 -0.00168354 -0.00168171 -0.00167986 -0.00167802 -0.00167617 -0.00167432 -0.00167246 -0.0016706 -0.00166873 -0.00166686 -0.00166498 -0.0016631 -0.00166121 -0.00165932 -0.00165742 -0.00165551 -0.00165361 -0.00165169 -0.00164977 -0.00164784 -0.00164591 -0.00164397 -0.00164203 -0.00164008 -0.00163812 -0.00163616 -0.00163419 -0.00163221 -0.00163023 -0.00162823 -0.00162623 -0.00162423 -0.00162222 -0.00162019 -0.00161816 -0.00161613 -0.00161408 -0.00161203 -0.00160997 -0.0016079 -0.00160582 -0.00160373 -0.00160163 -0.00159952 -0.00159741 -0.00159528 -0.00159314 -0.001591 -0.00158884 -0.00158667 -0.00158449 -0.0015823 -0.0015801 -0.00157788 -0.00157565 -0.00157341 -0.00157116 -0.00156889 -0.00156661 -0.00156432 -0.00156201 -0.00155969 -0.00155735 -0.00155499 -0.00155262 -0.00155023 -0.00154782 -0.00154539 -0.00154295 -0.00154048 -0.00153799 -0.00153548 -0.00153295 -0.0015304 -0.00152782 -0.00152521 -0.00152258 -0.00151991 -0.00151722 -0.0015145 -0.00151174 -0.00150894 -0.0015061 -0.00150322 -0.0015003 -0.00149732 -0.00149429 -0.00149121 -0.00148805 -0.00148483 -0.00148152 -0.00147813 -0.00147464 -0.00147104 -0.00146731 -0.00146345 -0.00145944 -0.00145525 -0.00145088 -0.0014463 -0.0014415 -0.00143644 -0.00143112 -0.00142552 -0.0014196 -0.00141336 -0.00140677 -0.00139982 -0.0013925 -0.00138478 -0.00137666 -0.00136812 -0.00135916 -0.00134976 -0.00133991 -0.0013296 -0.00131884 -0.0013076 -0.00129589 -0.0012837 -0.00127103 -0.00125786 -0.0012442 -0.00123005 -0.00121539 -0.00120022 -0.00118455 -0.00116837 -0.00115167 -0.00113446 -0.00111673 -0.00109848 -0.0010797 -0.0010604 -0.00104057 -0.00102021 -0.000999314 -0.000977888 -0.000955925 -0.000933425 -0.000910385 -0.000886804 -0.000862679 -0.00083801 -0.000812794 -0.00078703 -0.000760717 -0.000733851 -0.000706433 -0.00067846 -0.00064993 -0.000620843 -0.000591196 -0.000560988 -0.000530217 -0.000498882 -0.000466981 -0.000434513 -0.000401475 -0.000367868 -0.000333688 -0.000298935 -0.000263606 -0.000227701 -0.000191218 -0.000154154 -0.00011651 -7.82823E-05 -3.94703E-05 -7.24156E-08 3.95595E-05 7.90715E-05 0.000118462 0.00015773 0.000196874 0.000235892 0.000274784 0.000313549 0.000352185 0.000390691 +-0.00168713 -0.00168535 -0.00168356 -0.00168177 -0.00167997 -0.00167818 -0.00167638 -0.00167457 -0.00167277 -0.00167096 -0.00166914 -0.00166732 -0.0016655 -0.00166368 -0.00166185 -0.00166001 -0.00165818 -0.00165633 -0.00165449 -0.00165263 -0.00165078 -0.00164892 -0.00164705 -0.00164518 -0.00164331 -0.00164142 -0.00163954 -0.00163765 -0.00163575 -0.00163385 -0.00163194 -0.00163002 -0.0016281 -0.00162618 -0.00162424 -0.00162231 -0.00162036 -0.00161841 -0.00161645 -0.00161448 -0.00161251 -0.00161053 -0.00160855 -0.00160655 -0.00160455 -0.00160254 -0.00160053 -0.0015985 -0.00159647 -0.00159443 -0.00159238 -0.00159032 -0.00158825 -0.00158618 -0.00158409 -0.001582 -0.00157989 -0.00157778 -0.00157566 -0.00157352 -0.00157138 -0.00156922 -0.00156705 -0.00156488 -0.00156269 -0.00156048 -0.00155827 -0.00155604 -0.0015538 -0.00155155 -0.00154928 -0.001547 -0.0015447 -0.00154239 -0.00154007 -0.00153772 -0.00153536 -0.00153298 -0.00153059 -0.00152817 -0.00152574 -0.00152329 -0.00152081 -0.00151832 -0.0015158 -0.00151325 -0.00151068 -0.00150809 -0.00150546 -0.00150281 -0.00150013 -0.00149741 -0.00149466 -0.00149187 -0.00148904 -0.00148617 -0.00148324 -0.00148027 -0.00147724 -0.00147416 -0.001471 -0.00146777 -0.00146445 -0.00146105 -0.00145754 -0.00145391 -0.00145016 -0.00144627 -0.00144221 -0.00143798 -0.00143355 -0.00142891 -0.00142403 -0.0014189 -0.00141348 -0.00140777 -0.00140174 -0.00139538 -0.00138866 -0.00138157 -0.0013741 -0.00136622 -0.00135793 -0.00134922 -0.00134007 -0.00133047 -0.00132042 -0.00130991 -0.00129893 -0.00128747 -0.00127554 -0.00126311 -0.0012502 -0.00123678 -0.00122287 -0.00120845 -0.00119353 -0.0011781 -0.00116215 -0.00114568 -0.00112869 -0.00111119 -0.00109315 -0.00107459 -0.0010555 -0.00103588 -0.00101573 -0.000995037 -0.000973809 -0.00095204 -0.00092973 -0.000906876 -0.000883477 -0.000859531 -0.000835036 -0.00080999 -0.000784392 -0.00075824 -0.000731531 -0.000704266 -0.000676441 -0.000648056 -0.000619108 -0.000589596 -0.000559519 -0.000528875 -0.000497662 -0.000465878 -0.000433522 -0.000400593 -0.000367089 -0.000333008 -0.000298349 -0.00026311 -0.000227289 -0.000190886 -0.000153898 -0.000116323 -7.81613E-05 -3.94099E-05 -6.74835E-08 3.95131E-05 7.89773E-05 0.000118324 0.00015755 0.000196656 0.000235639 0.000274499 0.000313234 0.000351843 0.000390325 +-0.00167064 -0.00166887 -0.0016671 -0.00166532 -0.00166354 -0.00166176 -0.00165997 -0.00165818 -0.00165639 -0.00165459 -0.00165279 -0.00165099 -0.00164918 -0.00164737 -0.00164556 -0.00164374 -0.00164192 -0.00164009 -0.00163826 -0.00163643 -0.00163459 -0.00163274 -0.00163089 -0.00162904 -0.00162718 -0.00162532 -0.00162345 -0.00162157 -0.00161969 -0.00161781 -0.00161592 -0.00161402 -0.00161212 -0.00161021 -0.00160829 -0.00160637 -0.00160445 -0.00160251 -0.00160057 -0.00159863 -0.00159667 -0.00159471 -0.00159275 -0.00159077 -0.00158879 -0.0015868 -0.00158481 -0.0015828 -0.00158079 -0.00157877 -0.00157674 -0.00157471 -0.00157266 -0.00157061 -0.00156854 -0.00156647 -0.00156439 -0.0015623 -0.0015602 -0.00155809 -0.00155597 -0.00155384 -0.00155169 -0.00154954 -0.00154737 -0.0015452 -0.00154301 -0.00154081 -0.00153859 -0.00153637 -0.00153413 -0.00153187 -0.0015296 -0.00152732 -0.00152502 -0.00152271 -0.00152038 -0.00151803 -0.00151567 -0.00151328 -0.00151088 -0.00150846 -0.00150602 -0.00150356 -0.00150107 -0.00149856 -0.00149603 -0.00149347 -0.00149089 -0.00148828 -0.00148563 -0.00148296 -0.00148025 -0.00147751 -0.00147473 -0.0014719 -0.00146903 -0.00146612 -0.00146315 -0.00146012 -0.00145703 -0.00145387 -0.00145063 -0.00144731 -0.00144389 -0.00144036 -0.00143671 -0.00143293 -0.001429 -0.0014249 -0.00142062 -0.00141613 -0.00141142 -0.00140647 -0.00140124 -0.00139573 -0.00138992 -0.00138377 -0.00137728 -0.00137042 -0.00136319 -0.00135556 -0.00134752 -0.00133905 -0.00133016 -0.00132082 -0.00131103 -0.00130077 -0.00129005 -0.00127885 -0.00126717 -0.001255 -0.00124234 -0.00122917 -0.00121551 -0.00120134 -0.00118666 -0.00117146 -0.00115575 -0.00113952 -0.00112277 -0.00110549 -0.00108768 -0.00106934 -0.00105047 -0.00103106 -0.00101112 -0.000990631 -0.000969605 -0.000948035 -0.000925919 -0.000903256 -0.000880044 -0.00085628 -0.000831963 -0.000807091 -0.000781663 -0.000755676 -0.000729129 -0.00070202 -0.000674348 -0.000646111 -0.000617307 -0.000587935 -0.000557993 -0.000527478 -0.000496391 -0.000464729 -0.00043249 -0.000399672 -0.000366276 -0.000332297 -0.000297736 -0.00026259 -0.000226857 -0.000190537 -0.000153628 -0.000116127 -7.80339E-05 -3.93463E-05 -6.28823E-08 3.94631E-05 7.88764E-05 0.000118175 0.000157358 0.000196422 0.000235368 0.000274193 0.000312896 0.000351475 0.000389931 +-0.00165403 -0.00165228 -0.00165052 -0.00164875 -0.00164699 -0.00164522 -0.00164345 -0.00164167 -0.0016399 -0.00163812 -0.00163633 -0.00163454 -0.00163275 -0.00163096 -0.00162916 -0.00162736 -0.00162555 -0.00162374 -0.00162192 -0.0016201 -0.00161828 -0.00161645 -0.00161462 -0.00161278 -0.00161094 -0.00160909 -0.00160724 -0.00160538 -0.00160352 -0.00160165 -0.00159978 -0.0015979 -0.00159602 -0.00159413 -0.00159223 -0.00159033 -0.00158842 -0.00158651 -0.00158458 -0.00158266 -0.00158072 -0.00157878 -0.00157684 -0.00157488 -0.00157292 -0.00157095 -0.00156898 -0.00156699 -0.001565 -0.001563 -0.00156099 -0.00155898 -0.00155695 -0.00155492 -0.00155288 -0.00155083 -0.00154877 -0.0015467 -0.00154463 -0.00154254 -0.00154044 -0.00153833 -0.00153622 -0.00153409 -0.00153195 -0.00152979 -0.00152763 -0.00152546 -0.00152327 -0.00152107 -0.00151885 -0.00151663 -0.00151439 -0.00151213 -0.00150986 -0.00150758 -0.00150528 -0.00150296 -0.00150063 -0.00149827 -0.0014959 -0.00149352 -0.00149111 -0.00148868 -0.00148623 -0.00148376 -0.00148126 -0.00147874 -0.00147619 -0.00147362 -0.00147102 -0.00146839 -0.00146572 -0.00146302 -0.00146029 -0.00145751 -0.00145469 -0.00145183 -0.00144892 -0.00144595 -0.00144292 -0.00143983 -0.00143667 -0.00143342 -0.00143008 -0.00142665 -0.0014231 -0.00141943 -0.00141562 -0.00141165 -0.00140751 -0.00140317 -0.00139862 -0.00139384 -0.0013888 -0.00138349 -0.00137787 -0.00137194 -0.00136568 -0.00135905 -0.00135206 -0.00134467 -0.00133688 -0.00132867 -0.00132003 -0.00131095 -0.00130142 -0.00129142 -0.00128096 -0.00127002 -0.0012586 -0.00124669 -0.00123428 -0.00122137 -0.00120796 -0.00119404 -0.00117961 -0.00116466 -0.00114919 -0.0011332 -0.00111668 -0.00109963 -0.00108205 -0.00106394 -0.00104529 -0.0010261 -0.00100637 -0.000986093 -0.000965274 -0.000943907 -0.00092199 -0.000899522 -0.0008765 -0.000852923 -0.000828789 -0.000804095 -0.000778841 -0.000753024 -0.000726643 -0.000699695 -0.00067218 -0.000644095 -0.000615439 -0.00058621 -0.000556407 -0.000526027 -0.000495069 -0.000463532 -0.000431413 -0.000398712 -0.000365426 -0.000331554 -0.000297094 -0.000262045 -0.000226405 -0.000190172 -0.000153344 -0.000115921 -7.78999E-05 -3.92797E-05 -5.85904E-08 3.94095E-05 7.87686E-05 0.000118017 0.000157152 0.000196173 0.000235078 0.000273865 0.000312533 0.000351081 0.000389508 +-0.00163731 -0.00163557 -0.00163382 -0.00163207 -0.00163032 -0.00162857 -0.00162681 -0.00162505 -0.00162329 -0.00162152 -0.00161976 -0.00161798 -0.00161621 -0.00161443 -0.00161264 -0.00161086 -0.00160907 -0.00160727 -0.00160547 -0.00160367 -0.00160186 -0.00160005 -0.00159823 -0.00159641 -0.00159459 -0.00159276 -0.00159092 -0.00158908 -0.00158724 -0.00158539 -0.00158353 -0.00158167 -0.0015798 -0.00157793 -0.00157605 -0.00157417 -0.00157228 -0.00157038 -0.00156848 -0.00156657 -0.00156466 -0.00156274 -0.00156081 -0.00155887 -0.00155693 -0.00155498 -0.00155303 -0.00155107 -0.00154909 -0.00154712 -0.00154513 -0.00154314 -0.00154113 -0.00153912 -0.0015371 -0.00153508 -0.00153304 -0.00153099 -0.00152894 -0.00152688 -0.0015248 -0.00152272 -0.00152062 -0.00151852 -0.0015164 -0.00151428 -0.00151214 -0.00150999 -0.00150783 -0.00150565 -0.00150347 -0.00150127 -0.00149905 -0.00149683 -0.00149458 -0.00149233 -0.00149006 -0.00148777 -0.00148547 -0.00148314 -0.00148081 -0.00147845 -0.00147607 -0.00147368 -0.00147126 -0.00146883 -0.00146637 -0.00146388 -0.00146137 -0.00145884 -0.00145628 -0.00145369 -0.00145106 -0.00144841 -0.00144572 -0.00144299 -0.00144022 -0.00143741 -0.00143456 -0.00143165 -0.00142868 -0.00142565 -0.00142256 -0.00141939 -0.00141613 -0.00141279 -0.00140933 -0.00140577 -0.00140207 -0.00139822 -0.00139421 -0.00139002 -0.00138563 -0.00138101 -0.00137615 -0.00137103 -0.00136562 -0.0013599 -0.00135386 -0.00134746 -0.00134071 -0.00133356 -0.00132602 -0.00131807 -0.00130968 -0.00130086 -0.00129159 -0.00128186 -0.00127166 -0.00126098 -0.00124982 -0.00123817 -0.00122603 -0.00121338 -0.00120022 -0.00118656 -0.00117237 -0.00115767 -0.00114245 -0.0011267 -0.00111042 -0.00109361 -0.00107627 -0.00105838 -0.00103996 -0.00102099 -0.00100148 -0.000981421 -0.000960813 -0.000939654 -0.00091794 -0.000895671 -0.000872845 -0.000849459 -0.000825511 -0.000801001 -0.000775925 -0.000750282 -0.00072407 -0.000697288 -0.000669934 -0.000642006 -0.000613502 -0.00058442 -0.00055476 -0.000524518 -0.000493695 -0.000462286 -0.000430292 -0.000397711 -0.00036454 -0.000330778 -0.000296424 -0.000261475 -0.00022593 -0.000189788 -0.000153047 -0.000115704 -7.77591E-05 -3.92098E-05 -5.4587E-08 3.93522E-05 7.86538E-05 0.000117848 0.000156933 0.000195907 0.000234769 0.000273516 0.000312147 0.00035066 0.000389055 +-0.00162048 -0.00161875 -0.00161702 -0.00161528 -0.00161355 -0.00161181 -0.00161006 -0.00160832 -0.00160657 -0.00160482 -0.00160307 -0.00160131 -0.00159955 -0.00159778 -0.00159601 -0.00159424 -0.00159247 -0.00159069 -0.00158891 -0.00158712 -0.00158533 -0.00158353 -0.00158173 -0.00157993 -0.00157812 -0.00157631 -0.00157449 -0.00157267 -0.00157084 -0.001569 -0.00156717 -0.00156532 -0.00156347 -0.00156162 -0.00155976 -0.0015579 -0.00155602 -0.00155415 -0.00155226 -0.00155037 -0.00154848 -0.00154658 -0.00154467 -0.00154275 -0.00154083 -0.0015389 -0.00153697 -0.00153503 -0.00153307 -0.00153112 -0.00152915 -0.00152718 -0.0015252 -0.00152321 -0.00152121 -0.00151921 -0.00151719 -0.00151517 -0.00151314 -0.0015111 -0.00150905 -0.00150699 -0.00150491 -0.00150283 -0.00150074 -0.00149864 -0.00149653 -0.0014944 -0.00149227 -0.00149012 -0.00148796 -0.00148579 -0.0014836 -0.0014814 -0.00147919 -0.00147696 -0.00147472 -0.00147246 -0.00147019 -0.0014679 -0.00146559 -0.00146327 -0.00146092 -0.00145856 -0.00145618 -0.00145378 -0.00145135 -0.0014489 -0.00144643 -0.00144394 -0.00144141 -0.00143886 -0.00143628 -0.00143367 -0.00143103 -0.00142835 -0.00142563 -0.00142287 -0.00142006 -0.00141721 -0.0014143 -0.00141134 -0.00140831 -0.00140521 -0.00140204 -0.00139877 -0.00139541 -0.00139194 -0.00138835 -0.00138462 -0.00138074 -0.00137669 -0.00137244 -0.00136799 -0.00136331 -0.00135837 -0.00135316 -0.00134765 -0.00134182 -0.00133565 -0.00132913 -0.00132223 -0.00131494 -0.00130724 -0.00129911 -0.00129055 -0.00128154 -0.00127208 -0.00126214 -0.00125173 -0.00124084 -0.00122945 -0.00121757 -0.00120518 -0.00119229 -0.00117888 -0.00116495 -0.00115051 -0.00113553 -0.00112003 -0.001104 -0.00108743 -0.00107032 -0.00105267 -0.00103448 -0.00101574 -0.000996451 -0.000976612 -0.00095622 -0.000935272 -0.000913767 -0.000891702 -0.000869075 -0.000845885 -0.000822128 -0.000797805 -0.000772912 -0.000747448 -0.00072141 -0.000694798 -0.000667609 -0.000639842 -0.000611494 -0.000582564 -0.000553051 -0.000522952 -0.000492266 -0.000460991 -0.000429126 -0.000396668 -0.000363616 -0.000329968 -0.000295723 -0.000260879 -0.000225434 -0.000189386 -0.000152735 -0.000115477 -7.76114E-05 -3.91366E-05 -5.08531E-08 3.92911E-05 7.85318E-05 0.000117669 0.000156701 0.000195625 0.00023444 0.000273144 0.000311735 0.000350211 0.000388572 +-0.00160353 -0.00160181 -0.0016001 -0.00159838 -0.00159665 -0.00159493 -0.0015932 -0.00159147 -0.00158974 -0.001588 -0.00158626 -0.00158452 -0.00158277 -0.00158102 -0.00157927 -0.00157752 -0.00157576 -0.00157399 -0.00157223 -0.00157046 -0.00156868 -0.0015669 -0.00156512 -0.00156333 -0.00156154 -0.00155974 -0.00155794 -0.00155614 -0.00155433 -0.00155251 -0.00155069 -0.00154886 -0.00154703 -0.0015452 -0.00154336 -0.00154151 -0.00153966 -0.0015378 -0.00153593 -0.00153406 -0.00153219 -0.0015303 -0.00152841 -0.00152652 -0.00152462 -0.00152271 -0.00152079 -0.00151887 -0.00151694 -0.00151501 -0.00151306 -0.00151111 -0.00150915 -0.00150718 -0.00150521 -0.00150322 -0.00150123 -0.00149923 -0.00149722 -0.0014952 -0.00149318 -0.00149114 -0.00148909 -0.00148704 -0.00148497 -0.00148289 -0.0014808 -0.00147871 -0.0014766 -0.00147447 -0.00147234 -0.00147019 -0.00146804 -0.00146586 -0.00146368 -0.00146148 -0.00145927 -0.00145704 -0.00145479 -0.00145253 -0.00145026 -0.00144796 -0.00144565 -0.00144332 -0.00144098 -0.00143861 -0.00143622 -0.00143381 -0.00143137 -0.00142891 -0.00142643 -0.00142392 -0.00142138 -0.00141881 -0.00141621 -0.00141357 -0.0014109 -0.00140819 -0.00140544 -0.00140264 -0.00139979 -0.00139689 -0.00139393 -0.0013909 -0.0013878 -0.00138461 -0.00138134 -0.00137796 -0.00137447 -0.00137086 -0.00136709 -0.00136317 -0.00135908 -0.00135478 -0.00135026 -0.0013455 -0.00134048 -0.00133518 -0.00132956 -0.00132362 -0.00131733 -0.00131067 -0.00130363 -0.00129618 -0.00128831 -0.00128001 -0.00127127 -0.00126207 -0.00125241 -0.00124226 -0.00123164 -0.00122052 -0.00120891 -0.00119679 -0.00118415 -0.00117101 -0.00115734 -0.00114315 -0.00112844 -0.00111319 -0.0010974 -0.00108108 -0.00106421 -0.0010468 -0.00102885 -0.00101034 -0.000991278 -0.000971663 -0.000951492 -0.00093076 -0.000909468 -0.000887611 -0.000865188 -0.000842198 -0.000818638 -0.000794506 -0.0007698 -0.000744519 -0.000718661 -0.000692222 -0.000665203 -0.000637601 -0.000609414 -0.000580641 -0.000551279 -0.000521327 -0.000490783 -0.000459645 -0.000427912 -0.000395583 -0.000362654 -0.000329124 -0.000294993 -0.000260257 -0.000224915 -0.000188966 -0.000152408 -0.000115238 -7.74565E-05 -3.906E-05 -4.73709E-08 3.92261E-05 7.84024E-05 0.000117479 0.000156454 0.000195326 0.000234091 0.000272749 0.000311297 0.000349734 0.000388058 +-0.00158647 -0.00158477 -0.00158306 -0.00158136 -0.00157965 -0.00157794 -0.00157622 -0.00157451 -0.00157279 -0.00157107 -0.00156935 -0.00156762 -0.00156589 -0.00156415 -0.00156242 -0.00156068 -0.00155893 -0.00155719 -0.00155544 -0.00155368 -0.00155192 -0.00155016 -0.00154839 -0.00154662 -0.00154485 -0.00154307 -0.00154128 -0.00153949 -0.0015377 -0.0015359 -0.0015341 -0.00153229 -0.00153048 -0.00152866 -0.00152684 -0.00152501 -0.00152318 -0.00152134 -0.00151949 -0.00151764 -0.00151578 -0.00151392 -0.00151205 -0.00151017 -0.00150829 -0.0015064 -0.00150451 -0.0015026 -0.0015007 -0.00149878 -0.00149686 -0.00149493 -0.00149299 -0.00149104 -0.00148909 -0.00148713 -0.00148516 -0.00148318 -0.00148119 -0.0014792 -0.00147719 -0.00147518 -0.00147316 -0.00147112 -0.00146908 -0.00146703 -0.00146497 -0.00146289 -0.00146081 -0.00145871 -0.0014566 -0.00145448 -0.00145235 -0.00145021 -0.00144805 -0.00144588 -0.0014437 -0.0014415 -0.00143928 -0.00143705 -0.00143481 -0.00143255 -0.00143027 -0.00142797 -0.00142565 -0.00142332 -0.00142096 -0.00141859 -0.00141619 -0.00141377 -0.00141132 -0.00140885 -0.00140635 -0.00140382 -0.00140127 -0.00139868 -0.00139605 -0.00139339 -0.00139069 -0.00138794 -0.00138515 -0.00138231 -0.00137941 -0.00137644 -0.00137341 -0.00137031 -0.00136712 -0.00136383 -0.00136044 -0.00135693 -0.00135328 -0.00134949 -0.00134553 -0.00134138 -0.00133702 -0.00133244 -0.00132761 -0.0013225 -0.00131709 -0.00131137 -0.00130531 -0.00129889 -0.00129209 -0.0012849 -0.00127729 -0.00126925 -0.00126077 -0.00125184 -0.00124245 -0.00123258 -0.00122222 -0.00121138 -0.00120003 -0.00118818 -0.00117582 -0.00116294 -0.00114954 -0.00113561 -0.00112116 -0.00110616 -0.00109063 -0.00107456 -0.00105794 -0.00104077 -0.00102306 -0.00100478 -0.000985958 -0.000966572 -0.000946626 -0.000926116 -0.00090504 -0.000883396 -0.000861183 -0.000838397 -0.000815038 -0.000791102 -0.000766588 -0.000741495 -0.000715819 -0.00068956 -0.000662715 -0.000635282 -0.00060726 -0.000578647 -0.000549441 -0.000519641 -0.000489243 -0.000458247 -0.000426651 -0.000394454 -0.000361652 -0.000328245 -0.000294231 -0.000259607 -0.000224373 -0.000188527 -0.000152066 -0.000114989 -7.72942E-05 -3.89798E-05 -4.41235E-08 3.91572E-05 7.82656E-05 0.000117279 0.000156194 0.000195009 0.000233722 0.000272331 0.000310833 0.000349228 0.000387513 +-0.00156929 -0.00156761 -0.00156592 -0.00156423 -0.00156253 -0.00156084 -0.00155914 -0.00155744 -0.00155573 -0.00155403 -0.00155232 -0.00155061 -0.00154889 -0.00154717 -0.00154545 -0.00154373 -0.001542 -0.00154027 -0.00153853 -0.00153679 -0.00153505 -0.00153331 -0.00153156 -0.0015298 -0.00152804 -0.00152628 -0.00152451 -0.00152274 -0.00152097 -0.00151918 -0.0015174 -0.00151561 -0.00151381 -0.00151201 -0.00151021 -0.0015084 -0.00150658 -0.00150476 -0.00150293 -0.0015011 -0.00149926 -0.00149742 -0.00149557 -0.00149371 -0.00149185 -0.00148998 -0.00148811 -0.00148623 -0.00148434 -0.00148244 -0.00148054 -0.00147863 -0.00147671 -0.00147479 -0.00147286 -0.00147092 -0.00146897 -0.00146701 -0.00146505 -0.00146308 -0.0014611 -0.00145911 -0.00145711 -0.0014551 -0.00145308 -0.00145105 -0.00144901 -0.00144697 -0.00144491 -0.00144284 -0.00144075 -0.00143866 -0.00143656 -0.00143444 -0.00143231 -0.00143017 -0.00142801 -0.00142584 -0.00142366 -0.00142146 -0.00141924 -0.00141701 -0.00141476 -0.0014125 -0.00141022 -0.00140791 -0.00140559 -0.00140325 -0.00140089 -0.0013985 -0.0013961 -0.00139366 -0.0013912 -0.00138872 -0.0013862 -0.00138366 -0.00138108 -0.00137846 -0.00137581 -0.00137311 -0.00137038 -0.00136759 -0.00136475 -0.00136185 -0.00135889 -0.00135586 -0.00135275 -0.00134955 -0.00134625 -0.00134284 -0.0013393 -0.00133563 -0.0013318 -0.0013278 -0.0013236 -0.00131918 -0.00131453 -0.00130961 -0.00130441 -0.0012989 -0.00129307 -0.00128689 -0.00128033 -0.00127339 -0.00126604 -0.00125826 -0.00125005 -0.00124139 -0.00123227 -0.00122267 -0.00121259 -0.00120202 -0.00119095 -0.00117937 -0.00116728 -0.00115468 -0.00114154 -0.00112788 -0.00111369 -0.00109896 -0.00108368 -0.00106786 -0.0010515 -0.00103458 -0.00101711 -0.000999077 -0.000980488 -0.000961336 -0.000941619 -0.000921335 -0.000900481 -0.000879056 -0.000857056 -0.00083448 -0.000811325 -0.000787591 -0.000763274 -0.000738372 -0.000712884 -0.000686808 -0.000660142 -0.000632884 -0.000605032 -0.000576584 -0.000547538 -0.000517893 -0.000487646 -0.000456796 -0.000425342 -0.00039328 -0.00036061 -0.00032733 -0.000293437 -0.00025893 -0.000223808 -0.000188068 -0.000151708 -0.000114728 -7.71243E-05 -3.8896E-05 -4.10953E-08 3.90843E-05 7.81211E-05 0.000117067 0.000155919 0.000194674 0.000233332 0.000271888 0.000310343 0.000348692 0.000386935 +-0.00155201 -0.00155033 -0.00154866 -0.00154698 -0.0015453 -0.00154362 -0.00154194 -0.00154025 -0.00153856 -0.00153687 -0.00153518 -0.00153348 -0.00153178 -0.00153008 -0.00152837 -0.00152666 -0.00152495 -0.00152324 -0.00152152 -0.0015198 -0.00151807 -0.00151634 -0.00151461 -0.00151287 -0.00151113 -0.00150938 -0.00150763 -0.00150588 -0.00150412 -0.00150235 -0.00150059 -0.00149881 -0.00149704 -0.00149526 -0.00149347 -0.00149168 -0.00148988 -0.00148808 -0.00148627 -0.00148445 -0.00148264 -0.00148081 -0.00147898 -0.00147714 -0.0014753 -0.00147345 -0.0014716 -0.00146974 -0.00146787 -0.00146599 -0.00146411 -0.00146222 -0.00146033 -0.00145842 -0.00145651 -0.0014546 -0.00145267 -0.00145074 -0.0014488 -0.00144685 -0.00144489 -0.00144292 -0.00144094 -0.00143896 -0.00143697 -0.00143496 -0.00143295 -0.00143093 -0.00142889 -0.00142685 -0.00142479 -0.00142272 -0.00142065 -0.00141856 -0.00141645 -0.00141434 -0.00141221 -0.00141007 -0.00140791 -0.00140574 -0.00140356 -0.00140136 -0.00139914 -0.00139691 -0.00139466 -0.00139239 -0.0013901 -0.0013878 -0.00138547 -0.00138312 -0.00138075 -0.00137836 -0.00137594 -0.00137349 -0.00137102 -0.00136851 -0.00136598 -0.00136341 -0.0013608 -0.00135816 -0.00135547 -0.00135274 -0.00134996 -0.00134713 -0.00134423 -0.00134127 -0.00133823 -0.00133512 -0.00133191 -0.00132859 -0.00132517 -0.00132161 -0.0013179 -0.00131403 -0.00130998 -0.00130573 -0.00130125 -0.00129652 -0.00129152 -0.00128622 -0.00128061 -0.00127466 -0.00126834 -0.00126165 -0.00125455 -0.00124704 -0.0012391 -0.00123071 -0.00122186 -0.00121254 -0.00120274 -0.00119245 -0.00118165 -0.00117035 -0.00115854 -0.00114621 -0.00113335 -0.00111996 -0.00110603 -0.00109156 -0.00107655 -0.00106099 -0.00104488 -0.00102822 -0.001011 -0.000993212 -0.000974865 -0.000955951 -0.000936469 -0.000916416 -0.000895789 -0.000874586 -0.000852805 -0.000830443 -0.000807499 -0.00078397 -0.000759854 -0.00073515 -0.000709854 -0.000683966 -0.000657483 -0.000630404 -0.000602726 -0.000574447 -0.000545566 -0.000516081 -0.00048599 -0.000455291 -0.000423982 -0.000392061 -0.000359527 -0.000326377 -0.00029261 -0.000258225 -0.000223218 -0.000187589 -0.000151335 -0.000114455 -7.69467E-05 -3.88084E-05 -3.82718E-08 3.90073E-05 7.79688E-05 0.000116844 0.000155629 0.000194322 0.00023292 0.000271422 0.000309824 0.000348126 0.000386324 +-0.00153461 -0.00153295 -0.00153129 -0.00152963 -0.00152796 -0.0015263 -0.00152463 -0.00152295 -0.00152128 -0.0015196 -0.00151793 -0.00151624 -0.00151456 -0.00151287 -0.00151118 -0.00150949 -0.00150779 -0.00150609 -0.00150439 -0.00150269 -0.00150098 -0.00149926 -0.00149755 -0.00149582 -0.0014941 -0.00149237 -0.00149064 -0.0014889 -0.00148716 -0.00148541 -0.00148366 -0.00148191 -0.00148015 -0.00147839 -0.00147662 -0.00147484 -0.00147306 -0.00147128 -0.00146949 -0.0014677 -0.0014659 -0.00146409 -0.00146228 -0.00146046 -0.00145864 -0.00145681 -0.00145498 -0.00145313 -0.00145129 -0.00144943 -0.00144757 -0.0014457 -0.00144383 -0.00144195 -0.00144006 -0.00143816 -0.00143626 -0.00143435 -0.00143243 -0.0014305 -0.00142857 -0.00142662 -0.00142467 -0.00142271 -0.00142074 -0.00141876 -0.00141677 -0.00141477 -0.00141276 -0.00141074 -0.00140872 -0.00140667 -0.00140462 -0.00140256 -0.00140048 -0.0013984 -0.0013963 -0.00139418 -0.00139206 -0.00138992 -0.00138776 -0.00138559 -0.00138341 -0.00138121 -0.00137899 -0.00137675 -0.0013745 -0.00137223 -0.00136993 -0.00136762 -0.00136529 -0.00136293 -0.00136055 -0.00135814 -0.00135571 -0.00135325 -0.00135076 -0.00134823 -0.00134568 -0.00134308 -0.00134045 -0.00133777 -0.00133504 -0.00133227 -0.00132944 -0.00132654 -0.00132358 -0.00132054 -0.00131742 -0.0013142 -0.00131087 -0.00130742 -0.00130383 -0.0013001 -0.00129619 -0.00129208 -0.00128777 -0.00128322 -0.00127841 -0.00127332 -0.00126793 -0.0012622 -0.00125613 -0.00124968 -0.00124284 -0.00123559 -0.00122792 -0.0012198 -0.00121123 -0.00120218 -0.00119266 -0.00118265 -0.00117214 -0.00116112 -0.00114958 -0.00113753 -0.00112495 -0.00111183 -0.00109818 -0.00108398 -0.00106924 -0.00105394 -0.00103809 -0.00102169 -0.00100472 -0.000987186 -0.000969086 -0.000950416 -0.000931174 -0.000911356 -0.000890961 -0.000869985 -0.000848427 -0.000826285 -0.000803555 -0.000780237 -0.000756327 -0.000731825 -0.000706726 -0.000681031 -0.000654736 -0.000627841 -0.000600341 -0.000572237 -0.000543526 -0.000514205 -0.000484274 -0.00045373 -0.000422571 -0.000390795 -0.000358401 -0.000325387 -0.000291751 -0.00025749 -0.000222604 -0.000187089 -0.000150945 -0.00011417 -7.6761E-05 -3.87169E-05 -3.56393E-08 3.89261E-05 7.78085E-05 0.000116609 0.000155323 0.00019395 0.000232487 0.00027093 0.000309278 0.000347528 0.000385679 +-0.0015171 -0.00151546 -0.00151381 -0.00151216 -0.00151051 -0.00150886 -0.00150721 -0.00150555 -0.00150389 -0.00150223 -0.00150057 -0.0014989 -0.00149723 -0.00149556 -0.00149388 -0.00149221 -0.00149053 -0.00148884 -0.00148716 -0.00148547 -0.00148377 -0.00148208 -0.00148038 -0.00147867 -0.00147696 -0.00147525 -0.00147354 -0.00147182 -0.00147009 -0.00146836 -0.00146663 -0.00146489 -0.00146315 -0.00146141 -0.00145966 -0.0014579 -0.00145614 -0.00145437 -0.0014526 -0.00145083 -0.00144905 -0.00144726 -0.00144547 -0.00144367 -0.00144187 -0.00144006 -0.00143824 -0.00143642 -0.0014346 -0.00143276 -0.00143092 -0.00142908 -0.00142722 -0.00142536 -0.00142349 -0.00142162 -0.00141974 -0.00141785 -0.00141595 -0.00141405 -0.00141214 -0.00141022 -0.00140829 -0.00140635 -0.0014044 -0.00140245 -0.00140048 -0.00139851 -0.00139653 -0.00139453 -0.00139253 -0.00139051 -0.00138849 -0.00138645 -0.0013844 -0.00138234 -0.00138027 -0.00137819 -0.00137609 -0.00137398 -0.00137185 -0.00136971 -0.00136756 -0.00136539 -0.0013632 -0.001361 -0.00135878 -0.00135654 -0.00135428 -0.001352 -0.00134971 -0.00134739 -0.00134504 -0.00134268 -0.00134028 -0.00133786 -0.00133541 -0.00133293 -0.00133042 -0.00132788 -0.00132529 -0.00132267 -0.00132 -0.00131728 -0.00131451 -0.00131168 -0.00130879 -0.00130582 -0.00130278 -0.00129965 -0.00129642 -0.00129307 -0.0012896 -0.00128598 -0.00128221 -0.00127826 -0.0012741 -0.00126973 -0.00126511 -0.00126022 -0.00125503 -0.00124953 -0.00124369 -0.00123749 -0.0012309 -0.00122391 -0.00121651 -0.00120866 -0.00120036 -0.0011916 -0.00118236 -0.00117263 -0.0011624 -0.00115167 -0.00114042 -0.00112864 -0.00111634 -0.0011035 -0.00109013 -0.00107621 -0.00106173 -0.00104671 -0.00103113 -0.00101498 -0.000998273 -0.000980996 -0.000963148 -0.000944727 -0.000925729 -0.000906152 -0.000885993 -0.00086525 -0.000843921 -0.000822002 -0.000799493 -0.00077639 -0.000752691 -0.000728395 -0.000703499 -0.000678001 -0.0006519 -0.000625192 -0.000597877 -0.000569951 -0.000541414 -0.000512263 -0.000482496 -0.000452112 -0.000421107 -0.000389482 -0.000357233 -0.000324358 -0.000290857 -0.000256726 -0.000221964 -0.000186569 -0.000150539 -0.000113872 -7.65672E-05 -3.86214E-05 -3.3185E-08 3.88407E-05 7.76401E-05 0.000116362 0.000155003 0.00019356 0.000232031 0.000270412 0.000308703 0.000346899 0.000384999 +-0.00149949 -0.00149785 -0.00149622 -0.00149459 -0.00149295 -0.00149131 -0.00148967 -0.00148803 -0.00148639 -0.00148474 -0.00148309 -0.00148144 -0.00147979 -0.00147813 -0.00147648 -0.00147481 -0.00147315 -0.00147148 -0.00146981 -0.00146814 -0.00146646 -0.00146478 -0.0014631 -0.00146141 -0.00145972 -0.00145802 -0.00145632 -0.00145462 -0.00145292 -0.0014512 -0.00144949 -0.00144777 -0.00144605 -0.00144432 -0.00144259 -0.00144085 -0.00143911 -0.00143736 -0.00143561 -0.00143385 -0.00143209 -0.00143032 -0.00142855 -0.00142677 -0.00142499 -0.0014232 -0.0014214 -0.0014196 -0.0014178 -0.00141598 -0.00141416 -0.00141234 -0.00141051 -0.00140867 -0.00140682 -0.00140497 -0.00140311 -0.00140124 -0.00139937 -0.00139749 -0.0013956 -0.0013937 -0.00139179 -0.00138988 -0.00138796 -0.00138602 -0.00138408 -0.00138213 -0.00138018 -0.00137821 -0.00137623 -0.00137424 -0.00137224 -0.00137023 -0.00136821 -0.00136618 -0.00136413 -0.00136208 -0.00136001 -0.00135792 -0.00135583 -0.00135372 -0.00135159 -0.00134946 -0.0013473 -0.00134513 -0.00134294 -0.00134074 -0.00133851 -0.00133627 -0.00133401 -0.00133172 -0.00132942 -0.00132709 -0.00132474 -0.00132236 -0.00131995 -0.00131752 -0.00131505 -0.00131255 -0.00131001 -0.00130744 -0.00130482 -0.00130216 -0.00129945 -0.00129669 -0.00129386 -0.00129097 -0.001288 -0.00128495 -0.00128181 -0.00127857 -0.0012752 -0.00127171 -0.00126806 -0.00126425 -0.00126025 -0.00125604 -0.0012516 -0.0012469 -0.00124192 -0.00123664 -0.00123103 -0.00122507 -0.00121873 -0.001212 -0.00120486 -0.00119729 -0.00118927 -0.00118079 -0.00117183 -0.00116238 -0.00115244 -0.00114199 -0.00113103 -0.00111954 -0.00110753 -0.00109497 -0.00108188 -0.00106824 -0.00105404 -0.00103929 -0.00102398 -0.0010081 -0.000991656 -0.00097464 -0.000957049 -0.000938881 -0.000920133 -0.000900802 -0.000880884 -0.000860379 -0.000839283 -0.000817594 -0.000795309 -0.000772426 -0.000748944 -0.000724859 -0.00070017 -0.000674875 -0.000648971 -0.000622457 -0.00059533 -0.000567588 -0.00053923 -0.000510253 -0.000480656 -0.000450435 -0.000419591 -0.00038812 -0.00035602 -0.00032329 -0.000289927 -0.000255931 -0.000221298 -0.000186027 -0.000150115 -0.000113562 -7.6365E-05 -3.85219E-05 -3.08971E-08 3.8751E-05 7.74633E-05 0.000116103 0.000154666 0.00019315 0.000231552 0.000269868 0.000308098 0.000346237 0.000384284 +-0.00148176 -0.00148014 -0.00147852 -0.0014769 -0.00147528 -0.00147366 -0.00147204 -0.00147041 -0.00146878 -0.00146715 -0.00146552 -0.00146388 -0.00146224 -0.0014606 -0.00145896 -0.00145731 -0.00145566 -0.00145401 -0.00145236 -0.0014507 -0.00144904 -0.00144738 -0.00144571 -0.00144404 -0.00144236 -0.00144069 -0.001439 -0.00143732 -0.00143563 -0.00143394 -0.00143224 -0.00143054 -0.00142883 -0.00142712 -0.00142541 -0.00142369 -0.00142197 -0.00142024 -0.0014185 -0.00141677 -0.00141502 -0.00141328 -0.00141152 -0.00140976 -0.001408 -0.00140623 -0.00140446 -0.00140267 -0.00140089 -0.0013991 -0.0013973 -0.00139549 -0.00139368 -0.00139186 -0.00139004 -0.00138821 -0.00138637 -0.00138452 -0.00138267 -0.00138081 -0.00137895 -0.00137707 -0.00137519 -0.0013733 -0.0013714 -0.00136949 -0.00136758 -0.00136565 -0.00136372 -0.00136177 -0.00135982 -0.00135786 -0.00135588 -0.0013539 -0.00135191 -0.0013499 -0.00134788 -0.00134585 -0.00134381 -0.00134176 -0.00133969 -0.00133761 -0.00133552 -0.00133341 -0.00133129 -0.00132915 -0.00132699 -0.00132482 -0.00132263 -0.00132042 -0.0013182 -0.00131595 -0.00131368 -0.00131139 -0.00130908 -0.00130674 -0.00130437 -0.00130198 -0.00129956 -0.0012971 -0.00129461 -0.00129209 -0.00128952 -0.00128692 -0.00128427 -0.00128156 -0.0012788 -0.00127598 -0.00127309 -0.00127012 -0.00126706 -0.00126391 -0.00126065 -0.00125727 -0.00125374 -0.00125006 -0.00124621 -0.00124216 -0.00123789 -0.00123338 -0.0012286 -0.00122353 -0.00121815 -0.00121242 -0.00120633 -0.00119986 -0.00119298 -0.00118568 -0.00117794 -0.00116974 -0.00116107 -0.00115191 -0.00114226 -0.0011321 -0.00112143 -0.00111023 -0.0010985 -0.00108624 -0.00107343 -0.00106007 -0.00104615 -0.00103168 -0.00101664 -0.00100104 -0.000984864 -0.000968114 -0.000950786 -0.000932876 -0.000914382 -0.000895302 -0.000875631 -0.000855369 -0.000834511 -0.000813056 -0.000791001 -0.000768344 -0.000745083 -0.000721215 -0.000696738 -0.00067165 -0.000645949 -0.000619633 -0.000592699 -0.000565146 -0.000536972 -0.000508174 -0.000478751 -0.0004487 -0.000418019 -0.000386707 -0.000354762 -0.000322181 -0.000288963 -0.000255105 -0.000220605 -0.000185463 -0.000149674 -0.000113239 -7.61542E-05 -3.84181E-05 -2.87644E-08 3.86569E-05 7.7278E-05 0.000115831 0.000154313 0.00019272 0.000231049 0.000269298 0.000307463 0.000345542 0.000383532 +-0.00146392 -0.00146232 -0.00146072 -0.00145911 -0.00145751 -0.0014559 -0.00145429 -0.00145268 -0.00145106 -0.00144945 -0.00144783 -0.00144621 -0.00144459 -0.00144296 -0.00144133 -0.0014397 -0.00143807 -0.00143644 -0.0014348 -0.00143316 -0.00143151 -0.00142987 -0.00142821 -0.00142656 -0.0014249 -0.00142324 -0.00142158 -0.00141991 -0.00141824 -0.00141656 -0.00141488 -0.0014132 -0.00141151 -0.00140982 -0.00140812 -0.00140642 -0.00140472 -0.00140301 -0.00140129 -0.00139957 -0.00139785 -0.00139612 -0.00139439 -0.00139265 -0.0013909 -0.00138915 -0.0013874 -0.00138564 -0.00138387 -0.0013821 -0.00138032 -0.00137854 -0.00137675 -0.00137495 -0.00137315 -0.00137134 -0.00136952 -0.0013677 -0.00136587 -0.00136403 -0.00136219 -0.00136034 -0.00135848 -0.00135661 -0.00135473 -0.00135285 -0.00135096 -0.00134906 -0.00134715 -0.00134523 -0.0013433 -0.00134137 -0.00133942 -0.00133746 -0.00133549 -0.00133351 -0.00133152 -0.00132952 -0.00132751 -0.00132549 -0.00132345 -0.0013214 -0.00131933 -0.00131726 -0.00131516 -0.00131306 -0.00131093 -0.00130879 -0.00130664 -0.00130446 -0.00130227 -0.00130006 -0.00129783 -0.00129557 -0.0012933 -0.001291 -0.00128867 -0.00128632 -0.00128394 -0.00128153 -0.00127909 -0.00127662 -0.0012741 -0.00127155 -0.00126895 -0.00126631 -0.00126361 -0.00126085 -0.00125803 -0.00125514 -0.00125217 -0.0012491 -0.00124594 -0.00124266 -0.00123926 -0.00123571 -0.00123199 -0.0012281 -0.00122399 -0.00121966 -0.00121507 -0.00121021 -0.00120505 -0.00119955 -0.00119371 -0.00118749 -0.00118088 -0.00117384 -0.00116638 -0.00115846 -0.00115007 -0.00114121 -0.00113185 -0.00112198 -0.0011116 -0.0011007 -0.00108926 -0.00107729 -0.00106477 -0.0010517 -0.00103807 -0.00102388 -0.00100912 -0.000993796 -0.000977895 -0.000961415 -0.000944354 -0.000926708 -0.000908474 -0.00088965 -0.000870231 -0.000850216 -0.000829602 -0.000808386 -0.000786567 -0.00076414 -0.000741105 -0.000717459 -0.000693199 -0.000668324 -0.000642831 -0.000616718 -0.000589983 -0.000562624 -0.000534639 -0.000506025 -0.00047678 -0.000446904 -0.000416392 -0.000385244 -0.000353458 -0.000321031 -0.000287961 -0.000254247 -0.000219886 -0.000184876 -0.000149216 -0.000112902 -7.59346E-05 -3.831E-05 -2.67765E-08 3.85582E-05 7.7084E-05 0.000115547 0.000153943 0.00019227 0.000230523 0.000268699 0.000306797 0.000344812 0.000382743 +-0.00144598 -0.0014444 -0.00144281 -0.00144122 -0.00143962 -0.00143803 -0.00143644 -0.00143484 -0.00143324 -0.00143164 -0.00143004 -0.00142843 -0.00142683 -0.00142522 -0.0014236 -0.00142199 -0.00142037 -0.00141875 -0.00141713 -0.00141551 -0.00141388 -0.00141225 -0.00141061 -0.00140898 -0.00140734 -0.00140569 -0.00140405 -0.00140239 -0.00140074 -0.00139908 -0.00139742 -0.00139575 -0.00139408 -0.00139241 -0.00139073 -0.00138905 -0.00138736 -0.00138567 -0.00138398 -0.00138228 -0.00138057 -0.00137886 -0.00137715 -0.00137543 -0.0013737 -0.00137197 -0.00137024 -0.0013685 -0.00136675 -0.001365 -0.00136324 -0.00136148 -0.00135971 -0.00135793 -0.00135615 -0.00135436 -0.00135257 -0.00135077 -0.00134896 -0.00134715 -0.00134532 -0.0013435 -0.00134166 -0.00133981 -0.00133796 -0.0013361 -0.00133424 -0.00133236 -0.00133047 -0.00132858 -0.00132668 -0.00132477 -0.00132284 -0.00132091 -0.00131897 -0.00131702 -0.00131506 -0.00131308 -0.0013111 -0.0013091 -0.00130709 -0.00130507 -0.00130304 -0.00130099 -0.00129893 -0.00129685 -0.00129476 -0.00129265 -0.00129053 -0.00128839 -0.00128623 -0.00128406 -0.00128186 -0.00127964 -0.0012774 -0.00127514 -0.00127286 -0.00127055 -0.00126821 -0.00126585 -0.00126345 -0.00126102 -0.00125856 -0.00125606 -0.00125351 -0.00125092 -0.00124829 -0.0012456 -0.00124284 -0.00124002 -0.00123713 -0.00123415 -0.00123108 -0.00122791 -0.00122461 -0.00122118 -0.0012176 -0.00121385 -0.0012099 -0.00120574 -0.00120134 -0.00119668 -0.00119173 -0.00118646 -0.00118086 -0.00117489 -0.00116853 -0.00116177 -0.00115458 -0.00114694 -0.00113885 -0.00113027 -0.0011212 -0.00111163 -0.00110155 -0.00109094 -0.0010798 -0.00106812 -0.0010559 -0.00104312 -0.00102978 -0.00101588 -0.00100141 -0.000986366 -0.000970744 -0.000954541 -0.000937752 -0.000920375 -0.000902406 -0.000883843 -0.000864681 -0.000844919 -0.000824554 -0.000803583 -0.000782003 -0.000759813 -0.000737009 -0.00071359 -0.000689553 -0.000664896 -0.000639616 -0.000613711 -0.00058718 -0.000560019 -0.000532228 -0.000503803 -0.000474743 -0.000445045 -0.000414708 -0.000383729 -0.000352107 -0.000319838 -0.000286922 -0.000253356 -0.000219138 -0.000184266 -0.000148738 -0.000112552 -7.57059E-05 -3.81975E-05 -2.49238E-08 3.84549E-05 7.68811E-05 0.00011525 0.000153557 0.000191798 0.000229972 0.000268073 0.000306099 0.000344048 0.000381916 +-0.00142794 -0.00142636 -0.00142479 -0.00142321 -0.00142164 -0.00142006 -0.00141848 -0.00141689 -0.00141531 -0.00141373 -0.00141214 -0.00141055 -0.00140896 -0.00140736 -0.00140577 -0.00140417 -0.00140257 -0.00140097 -0.00139936 -0.00139775 -0.00139614 -0.00139453 -0.00139291 -0.00139129 -0.00138967 -0.00138804 -0.00138641 -0.00138477 -0.00138314 -0.0013815 -0.00137985 -0.0013782 -0.00137655 -0.0013749 -0.00137324 -0.00137157 -0.0013699 -0.00136823 -0.00136655 -0.00136487 -0.00136319 -0.0013615 -0.0013598 -0.0013581 -0.0013564 -0.00135469 -0.00135297 -0.00135125 -0.00134952 -0.00134779 -0.00134606 -0.00134431 -0.00134257 -0.00134081 -0.00133905 -0.00133728 -0.00133551 -0.00133373 -0.00133195 -0.00133015 -0.00132835 -0.00132655 -0.00132473 -0.00132291 -0.00132109 -0.00131925 -0.00131741 -0.00131555 -0.00131369 -0.00131182 -0.00130995 -0.00130806 -0.00130616 -0.00130426 -0.00130234 -0.00130042 -0.00129848 -0.00129654 -0.00129458 -0.00129261 -0.00129063 -0.00128864 -0.00128663 -0.00128462 -0.00128258 -0.00128054 -0.00127848 -0.0012764 -0.00127431 -0.00127221 -0.00127008 -0.00126794 -0.00126578 -0.0012636 -0.0012614 -0.00125918 -0.00125693 -0.00125466 -0.00125237 -0.00125004 -0.00124769 -0.00124531 -0.0012429 -0.00124044 -0.00123795 -0.00123542 -0.00123284 -0.00123021 -0.00122752 -0.00122478 -0.00122196 -0.00121906 -0.00121608 -0.001213 -0.00120981 -0.0012065 -0.00120304 -0.00119943 -0.00119563 -0.00119164 -0.00118742 -0.00118295 -0.0011782 -0.00117316 -0.00116778 -0.00116206 -0.00115596 -0.00114946 -0.00114255 -0.00113519 -0.00112738 -0.0011191 -0.00111033 -0.00110105 -0.00109127 -0.00108096 -0.00107013 -0.00105875 -0.00104682 -0.00103434 -0.00102129 -0.00100769 -0.000993505 -0.000978748 -0.00096341 -0.000947488 -0.000930976 -0.000913873 -0.000896175 -0.000877877 -0.000858978 -0.000839475 -0.000819364 -0.000798643 -0.000777309 -0.00075536 -0.000732793 -0.000709606 -0.000685797 -0.000661362 -0.000636301 -0.00061061 -0.000584287 -0.000557331 -0.000529738 -0.000501508 -0.000472637 -0.000443123 -0.000412965 -0.000382161 -0.000350707 -0.000318602 -0.000285845 -0.000252432 -0.000218362 -0.000183633 -0.000148242 -0.000112188 -7.54679E-05 -3.80805E-05 -2.31972E-08 3.8347E-05 7.66691E-05 0.000114939 0.000153152 0.000191306 0.000229395 0.000267418 0.000305369 0.000343248 0.000381049 +-0.00140978 -0.00140823 -0.00140667 -0.0014051 -0.00140354 -0.00140198 -0.00140041 -0.00139885 -0.00139728 -0.00139571 -0.00139414 -0.00139256 -0.00139099 -0.00138941 -0.00138783 -0.00138625 -0.00138466 -0.00138308 -0.00138149 -0.00137989 -0.0013783 -0.0013767 -0.0013751 -0.0013735 -0.00137189 -0.00137028 -0.00136867 -0.00136705 -0.00136543 -0.00136381 -0.00136218 -0.00136055 -0.00135892 -0.00135728 -0.00135564 -0.00135399 -0.00135234 -0.00135069 -0.00134903 -0.00134737 -0.0013457 -0.00134403 -0.00134235 -0.00134067 -0.00133899 -0.0013373 -0.0013356 -0.0013339 -0.00133219 -0.00133048 -0.00132877 -0.00132704 -0.00132532 -0.00132358 -0.00132185 -0.0013201 -0.00131835 -0.00131659 -0.00131483 -0.00131306 -0.00131128 -0.0013095 -0.00130771 -0.00130591 -0.0013041 -0.00130229 -0.00130047 -0.00129864 -0.00129681 -0.00129496 -0.00129311 -0.00129125 -0.00128938 -0.0012875 -0.00128561 -0.00128371 -0.0012818 -0.00127988 -0.00127795 -0.00127601 -0.00127406 -0.0012721 -0.00127012 -0.00126813 -0.00126613 -0.00126412 -0.00126209 -0.00126005 -0.00125799 -0.00125591 -0.00125382 -0.00125172 -0.00124959 -0.00124745 -0.00124528 -0.0012431 -0.00124089 -0.00123866 -0.00123641 -0.00123413 -0.00123182 -0.00122948 -0.00122711 -0.00122471 -0.00122227 -0.00121979 -0.00121727 -0.0012147 -0.00121208 -0.00120939 -0.00120665 -0.00120383 -0.00120094 -0.00119795 -0.00119486 -0.00119165 -0.00118832 -0.00118483 -0.00118118 -0.00117734 -0.00117329 -0.00116901 -0.00116446 -0.00115963 -0.00115449 -0.00114901 -0.00114316 -0.00113693 -0.00113028 -0.00112321 -0.00111568 -0.00110769 -0.00109922 -0.00109024 -0.00108076 -0.00107076 -0.00106022 -0.00104915 -0.00103752 -0.00102534 -0.0010126 -0.000999287 -0.000985402 -0.000970937 -0.000955889 -0.000940252 -0.000924024 -0.0009072 -0.000889777 -0.000871751 -0.00085312 -0.00083388 -0.000814029 -0.000793563 -0.00077248 -0.000750778 -0.000728453 -0.000705504 -0.000681928 -0.000657722 -0.000632884 -0.000607412 -0.000581304 -0.000554557 -0.000527169 -0.000499137 -0.000470461 -0.000441137 -0.000411163 -0.000380538 -0.000349258 -0.000317322 -0.000284728 -0.000251474 -0.000217557 -0.000182975 -0.000147727 -0.000111809 -7.52205E-05 -3.79587E-05 -2.15882E-08 3.82342E-05 7.64478E-05 0.000114615 0.00015273 0.000190791 0.000228793 0.000266733 0.000304607 0.000342411 0.000380143 +-0.00139153 -0.00138999 -0.00138844 -0.00138689 -0.00138535 -0.0013838 -0.00138225 -0.0013807 -0.00137914 -0.00137759 -0.00137603 -0.00137447 -0.00137291 -0.00137135 -0.00136979 -0.00136822 -0.00136665 -0.00136508 -0.00136351 -0.00136193 -0.00136035 -0.00135877 -0.00135719 -0.0013556 -0.00135401 -0.00135242 -0.00135082 -0.00134922 -0.00134762 -0.00134602 -0.00134441 -0.0013428 -0.00134118 -0.00133956 -0.00133794 -0.00133631 -0.00133468 -0.00133304 -0.0013314 -0.00132976 -0.00132811 -0.00132646 -0.0013248 -0.00132314 -0.00132147 -0.0013198 -0.00131813 -0.00131645 -0.00131476 -0.00131307 -0.00131138 -0.00130967 -0.00130797 -0.00130626 -0.00130454 -0.00130281 -0.00130108 -0.00129935 -0.00129761 -0.00129586 -0.0012941 -0.00129234 -0.00129058 -0.0012888 -0.00128702 -0.00128523 -0.00128343 -0.00128163 -0.00127982 -0.001278 -0.00127617 -0.00127433 -0.00127249 -0.00127063 -0.00126877 -0.0012669 -0.00126502 -0.00126313 -0.00126122 -0.00125931 -0.00125739 -0.00125545 -0.0012535 -0.00125155 -0.00124957 -0.00124759 -0.00124559 -0.00124358 -0.00124155 -0.00123951 -0.00123746 -0.00123538 -0.00123329 -0.00123118 -0.00122906 -0.00122691 -0.00122474 -0.00122255 -0.00122034 -0.0012181 -0.00121583 -0.00121354 -0.00121122 -0.00120886 -0.00120647 -0.00120404 -0.00120158 -0.00119906 -0.0011965 -0.00119389 -0.00119121 -0.00118847 -0.00118565 -0.00118275 -0.00117976 -0.00117665 -0.00117343 -0.00117007 -0.00116656 -0.00116287 -0.00115898 -0.00115487 -0.00115052 -0.0011459 -0.00114097 -0.00113573 -0.00113013 -0.00112416 -0.00111778 -0.00111099 -0.00110375 -0.00109605 -0.00108787 -0.0010792 -0.00107002 -0.00106032 -0.00105009 -0.00103933 -0.00102801 -0.00101613 -0.00100369 -0.000990684 -0.000977098 -0.000962931 -0.000948177 -0.000932832 -0.000916891 -0.000900352 -0.00088321 -0.000865461 -0.000847103 -0.000828133 -0.000808546 -0.000788341 -0.000767515 -0.000746065 -0.000723988 -0.000701282 -0.000677944 -0.000653972 -0.000629363 -0.000604116 -0.000578227 -0.000551695 -0.000524517 -0.00049669 -0.000468213 -0.000439084 -0.0004093 -0.000378859 -0.000347759 -0.000315997 -0.000283572 -0.000250481 -0.000216722 -0.000182293 -0.000147191 -0.000111416 -7.49633E-05 -3.78322E-05 -2.00889E-08 3.81166E-05 7.62169E-05 0.000114276 0.00015229 0.000190254 0.000228165 0.000266018 0.00030381 0.000341537 0.000379196 +-0.00137317 -0.00137164 -0.00137011 -0.00136858 -0.00136705 -0.00136551 -0.00136398 -0.00136244 -0.00136091 -0.00135937 -0.00135783 -0.00135628 -0.00135474 -0.00135319 -0.00135164 -0.00135009 -0.00134854 -0.00134699 -0.00134543 -0.00134387 -0.00134231 -0.00134074 -0.00133918 -0.00133761 -0.00133603 -0.00133446 -0.00133288 -0.0013313 -0.00132971 -0.00132812 -0.00132653 -0.00132494 -0.00132334 -0.00132174 -0.00132013 -0.00131852 -0.00131691 -0.00131529 -0.00131367 -0.00131205 -0.00131042 -0.00130879 -0.00130715 -0.00130551 -0.00130386 -0.00130221 -0.00130055 -0.00129889 -0.00129723 -0.00129556 -0.00129388 -0.0012922 -0.00129052 -0.00128883 -0.00128713 -0.00128543 -0.00128372 -0.001282 -0.00128028 -0.00127856 -0.00127683 -0.00127509 -0.00127334 -0.00127159 -0.00126983 -0.00126807 -0.00126629 -0.00126451 -0.00126273 -0.00126093 -0.00125913 -0.00125732 -0.0012555 -0.00125367 -0.00125183 -0.00124998 -0.00124813 -0.00124626 -0.00124439 -0.0012425 -0.00124061 -0.0012387 -0.00123678 -0.00123485 -0.00123291 -0.00123096 -0.00122899 -0.00122701 -0.00122502 -0.00122301 -0.00122098 -0.00121894 -0.00121689 -0.00121481 -0.00121272 -0.00121061 -0.00120848 -0.00120633 -0.00120415 -0.00120195 -0.00119973 -0.00119748 -0.00119521 -0.0011929 -0.00119056 -0.00118818 -0.00118576 -0.00118331 -0.0011808 -0.00117825 -0.00117564 -0.00117297 -0.00117023 -0.00116741 -0.00116451 -0.00116151 -0.00115839 -0.00115515 -0.00115176 -0.00114822 -0.00114449 -0.00114055 -0.00113638 -0.00113196 -0.00112725 -0.00112223 -0.00111687 -0.00111115 -0.00110505 -0.00109853 -0.00109157 -0.00108417 -0.00107629 -0.00106792 -0.00105905 -0.00104966 -0.00103974 -0.00102928 -0.00101827 -0.00100671 -0.000994575 -0.000981872 -0.000968591 -0.000954726 -0.000940271 -0.000925223 -0.000909576 -0.000893326 -0.00087647 -0.000859005 -0.000840925 -0.000822229 -0.000802914 -0.000782975 -0.000762411 -0.000741218 -0.000719395 -0.000696937 -0.000673843 -0.000650111 -0.000625737 -0.000600719 -0.000575056 -0.000548744 -0.000521781 -0.000494164 -0.000465893 -0.000436964 -0.000407375 -0.000377124 -0.000346208 -0.000314625 -0.000282374 -0.000249452 -0.000215856 -0.000181585 -0.000146636 -0.000111007 -7.46961E-05 -3.77007E-05 -1.8692E-08 3.79939E-05 7.59763E-05 0.000113924 0.000151831 0.000189694 0.000227509 0.000265272 0.000302978 0.000340625 0.000378208 +-0.00135471 -0.0013532 -0.00135168 -0.00135017 -0.00134865 -0.00134713 -0.00134561 -0.00134409 -0.00134257 -0.00134104 -0.00133952 -0.00133799 -0.00133646 -0.00133493 -0.0013334 -0.00133187 -0.00133033 -0.00132879 -0.00132725 -0.00132571 -0.00132416 -0.00132261 -0.00132106 -0.00131951 -0.00131796 -0.0013164 -0.00131484 -0.00131327 -0.0013117 -0.00131013 -0.00130856 -0.00130698 -0.0013054 -0.00130382 -0.00130223 -0.00130064 -0.00129905 -0.00129745 -0.00129585 -0.00129424 -0.00129263 -0.00129102 -0.0012894 -0.00128778 -0.00128615 -0.00128452 -0.00128288 -0.00128124 -0.0012796 -0.00127795 -0.00127629 -0.00127463 -0.00127297 -0.0012713 -0.00126962 -0.00126794 -0.00126625 -0.00126456 -0.00126286 -0.00126116 -0.00125945 -0.00125773 -0.00125601 -0.00125428 -0.00125255 -0.0012508 -0.00124905 -0.0012473 -0.00124553 -0.00124376 -0.00124198 -0.0012402 -0.0012384 -0.0012366 -0.00123479 -0.00123297 -0.00123114 -0.0012293 -0.00122745 -0.0012256 -0.00122373 -0.00122185 -0.00121996 -0.00121806 -0.00121615 -0.00121422 -0.00121229 -0.00121034 -0.00120837 -0.0012064 -0.0012044 -0.0012024 -0.00120037 -0.00119834 -0.00119628 -0.0011942 -0.00119211 -0.00119 -0.00118786 -0.0011857 -0.00118352 -0.00118132 -0.00117908 -0.00117682 -0.00117453 -0.0011722 -0.00116984 -0.00116743 -0.00116499 -0.00116249 -0.00115995 -0.00115735 -0.00115468 -0.00115194 -0.00114912 -0.00114621 -0.0011432 -0.00114007 -0.00113681 -0.0011334 -0.00112981 -0.00112604 -0.00112205 -0.00111781 -0.00111331 -0.00110851 -0.0011034 -0.00109793 -0.00109208 -0.00108583 -0.00107916 -0.00107205 -0.00106447 -0.0010564 -0.00104784 -0.00103876 -0.00102915 -0.001019 -0.00100831 -0.000997059 -0.000985241 -0.000972849 -0.000959877 -0.000946319 -0.000932169 -0.000917423 -0.000902074 -0.00088612 -0.000869556 -0.000852378 -0.000834583 -0.000816167 -0.000797128 -0.000777461 -0.000757165 -0.000736236 -0.000714671 -0.000692468 -0.000669624 -0.000646136 -0.000622003 -0.00059722 -0.000571787 -0.000545701 -0.000518959 -0.000491559 -0.000463498 -0.000434774 -0.000405386 -0.00037533 -0.000344604 -0.000313207 -0.000281135 -0.000248386 -0.000214959 -0.000180851 -0.00014606 -0.000110583 -7.44188E-05 -3.75642E-05 -1.73905E-08 3.78661E-05 7.57258E-05 0.000113556 0.000151353 0.000189111 0.000226826 0.000264494 0.000302111 0.000339673 0.000377176 +-0.00133616 -0.00133466 -0.00133316 -0.00133166 -0.00133015 -0.00132865 -0.00132714 -0.00132564 -0.00132413 -0.00132262 -0.00132111 -0.0013196 -0.00131809 -0.00131657 -0.00131506 -0.00131354 -0.00131202 -0.0013105 -0.00130897 -0.00130745 -0.00130592 -0.00130439 -0.00130285 -0.00130132 -0.00129978 -0.00129824 -0.00129669 -0.00129515 -0.0012936 -0.00129204 -0.00129049 -0.00128893 -0.00128737 -0.0012858 -0.00128423 -0.00128266 -0.00128108 -0.0012795 -0.00127792 -0.00127633 -0.00127474 -0.00127315 -0.00127155 -0.00126995 -0.00126834 -0.00126673 -0.00126511 -0.00126349 -0.00126187 -0.00126024 -0.0012586 -0.00125696 -0.00125532 -0.00125367 -0.00125201 -0.00125035 -0.00124869 -0.00124702 -0.00124534 -0.00124366 -0.00124197 -0.00124028 -0.00123858 -0.00123687 -0.00123516 -0.00123344 -0.00123172 -0.00122998 -0.00122824 -0.0012265 -0.00122474 -0.00122298 -0.00122121 -0.00121943 -0.00121765 -0.00121585 -0.00121405 -0.00121224 -0.00121042 -0.00120859 -0.00120675 -0.0012049 -0.00120303 -0.00120116 -0.00119928 -0.00119739 -0.00119548 -0.00119356 -0.00119163 -0.00118968 -0.00118772 -0.00118575 -0.00118376 -0.00118176 -0.00117973 -0.00117769 -0.00117564 -0.00117356 -0.00117146 -0.00116935 -0.0011672 -0.00116504 -0.00116285 -0.00116063 -0.00115838 -0.0011561 -0.00115379 -0.00115144 -0.00114905 -0.00114662 -0.00114413 -0.0011416 -0.001139 -0.00113634 -0.0011336 -0.00113078 -0.00112786 -0.00112484 -0.00112169 -0.00111841 -0.00111497 -0.00111134 -0.00110752 -0.00110347 -0.00109917 -0.00109459 -0.0010897 -0.00108447 -0.00107889 -0.00107291 -0.00106652 -0.00105969 -0.00105241 -0.00104464 -0.00103639 -0.00102762 -0.00101833 -0.0010085 -0.000998123 -0.000987189 -0.000975687 -0.000963612 -0.000950954 -0.000937708 -0.000923868 -0.000909428 -0.000894383 -0.00087873 -0.000862463 -0.000845579 -0.000828074 -0.000809944 -0.000791186 -0.000771797 -0.000751774 -0.000731114 -0.000709814 -0.000687871 -0.000665282 -0.000642046 -0.000618158 -0.000593617 -0.000568421 -0.000542566 -0.00051605 -0.000488871 -0.000461027 -0.000432515 -0.000403332 -0.000373477 -0.000342947 -0.000311739 -0.000279853 -0.000247284 -0.000214031 -0.000180091 -0.000145463 -0.000110144 -7.4131E-05 -3.74226E-05 -1.61781E-08 3.77331E-05 7.5465E-05 0.000113174 0.000150856 0.000188504 0.000226115 0.000263685 0.000301208 0.000338681 0.000376101 +-0.0013175 -0.00131602 -0.00131453 -0.00131305 -0.00131156 -0.00131007 -0.00130858 -0.00130709 -0.0013056 -0.00130411 -0.00130261 -0.00130112 -0.00129962 -0.00129812 -0.00129662 -0.00129512 -0.00129361 -0.00129211 -0.0012906 -0.00128909 -0.00128758 -0.00128606 -0.00128455 -0.00128303 -0.00128151 -0.00127998 -0.00127846 -0.00127693 -0.00127539 -0.00127386 -0.00127232 -0.00127078 -0.00126924 -0.00126769 -0.00126614 -0.00126458 -0.00126303 -0.00126146 -0.0012599 -0.00125833 -0.00125676 -0.00125518 -0.0012536 -0.00125202 -0.00125043 -0.00124884 -0.00124724 -0.00124564 -0.00124404 -0.00124243 -0.00124082 -0.0012392 -0.00123757 -0.00123595 -0.00123431 -0.00123267 -0.00123103 -0.00122938 -0.00122773 -0.00122607 -0.0012244 -0.00122273 -0.00122105 -0.00121937 -0.00121768 -0.00121598 -0.00121428 -0.00121257 -0.00121086 -0.00120913 -0.0012074 -0.00120567 -0.00120392 -0.00120217 -0.00120041 -0.00119864 -0.00119686 -0.00119508 -0.00119328 -0.00119148 -0.00118967 -0.00118784 -0.00118601 -0.00118417 -0.00118231 -0.00118045 -0.00117857 -0.00117668 -0.00117478 -0.00117287 -0.00117094 -0.001169 -0.00116704 -0.00116507 -0.00116308 -0.00116108 -0.00115906 -0.00115702 -0.00115496 -0.00115288 -0.00115078 -0.00114866 -0.00114651 -0.00114433 -0.00114213 -0.0011399 -0.00113764 -0.00113534 -0.001133 -0.00113062 -0.0011282 -0.00112573 -0.0011232 -0.00112061 -0.00111795 -0.00111521 -0.00111239 -0.00110946 -0.00110643 -0.00110326 -0.00109995 -0.00109648 -0.00109282 -0.00108894 -0.00108483 -0.00108045 -0.00107579 -0.0010708 -0.00106546 -0.00105975 -0.00105364 -0.0010471 -0.00104011 -0.00103265 -0.0010247 -0.00101625 -0.00100727 -0.000997762 -0.000987706 -0.000977092 -0.000965912 -0.000954157 -0.000941818 -0.000928888 -0.000915363 -0.000901235 -0.0008865 -0.000871153 -0.000855189 -0.000838604 -0.000821394 -0.000803556 -0.000785086 -0.00076598 -0.000746237 -0.000725851 -0.000704821 -0.000683144 -0.000660817 -0.000637837 -0.000614201 -0.000589907 -0.000564953 -0.000539335 -0.000513052 -0.0004861 -0.000458478 -0.000430183 -0.000401212 -0.000371563 -0.000341234 -0.000310223 -0.000278527 -0.000246143 -0.000213069 -0.000179304 -0.000144844 -0.000109688 -7.38325E-05 -3.72756E-05 -1.50487E-08 3.75948E-05 7.51939E-05 0.000112777 0.000150338 0.000187872 0.000225375 0.000262842 0.000300268 0.000337649 0.000374981 +-0.00129875 -0.00129728 -0.00129581 -0.00129434 -0.00129287 -0.0012914 -0.00128992 -0.00128845 -0.00128697 -0.00128549 -0.00128401 -0.00128253 -0.00128105 -0.00127957 -0.00127809 -0.0012766 -0.00127511 -0.00127362 -0.00127213 -0.00127064 -0.00126914 -0.00126765 -0.00126615 -0.00126464 -0.00126314 -0.00126163 -0.00126012 -0.00125861 -0.0012571 -0.00125558 -0.00125406 -0.00125254 -0.00125101 -0.00124948 -0.00124795 -0.00124641 -0.00124487 -0.00124333 -0.00124179 -0.00124024 -0.00123868 -0.00123713 -0.00123557 -0.001234 -0.00123243 -0.00123086 -0.00122928 -0.0012277 -0.00122612 -0.00122453 -0.00122294 -0.00122134 -0.00121973 -0.00121813 -0.00121652 -0.0012149 -0.00121328 -0.00121165 -0.00121002 -0.00120838 -0.00120673 -0.00120508 -0.00120343 -0.00120177 -0.0012001 -0.00119843 -0.00119675 -0.00119507 -0.00119337 -0.00119167 -0.00118997 -0.00118826 -0.00118654 -0.00118481 -0.00118307 -0.00118133 -0.00117958 -0.00117782 -0.00117605 -0.00117428 -0.00117249 -0.0011707 -0.00116889 -0.00116708 -0.00116525 -0.00116341 -0.00116157 -0.00115971 -0.00115784 -0.00115596 -0.00115406 -0.00115215 -0.00115023 -0.00114829 -0.00114634 -0.00114437 -0.00114238 -0.00114038 -0.00113836 -0.00113631 -0.00113425 -0.00113217 -0.00113006 -0.00112793 -0.00112577 -0.00112359 -0.00112137 -0.00111912 -0.00111684 -0.00111452 -0.00111215 -0.00110974 -0.00110727 -0.00110475 -0.00110217 -0.00109951 -0.00109678 -0.00109395 -0.00109101 -0.00108796 -0.00108478 -0.00108144 -0.00107793 -0.00107422 -0.0010703 -0.00106612 -0.00106166 -0.00105691 -0.00105182 -0.00104636 -0.00104052 -0.00103426 -0.00102757 -0.00102041 -0.00101277 -0.00100463 -0.000995977 -0.000986789 -0.000977056 -0.000966768 -0.000955912 -0.000944481 -0.000932465 -0.000919858 -0.000906652 -0.000892842 -0.000878421 -0.000863385 -0.00084773 -0.00083145 -0.000814541 -0.000797 -0.000778824 -0.000760008 -0.000740549 -0.000720444 -0.000699691 -0.000678285 -0.000656225 -0.000633508 -0.00061013 -0.000586089 -0.000561382 -0.000536008 -0.000509963 -0.000483244 -0.00045585 -0.000427777 -0.000399024 -0.000369588 -0.000339466 -0.000308656 -0.000277156 -0.000244963 -0.000212075 -0.000178489 -0.000144204 -0.000109216 -7.3523E-05 -3.71232E-05 -1.39968E-08 3.74509E-05 7.49122E-05 0.000112364 0.0001498 0.000187216 0.000224606 0.000261965 0.00029929 0.000336574 0.000373815 +-0.00127991 -0.00127845 -0.001277 -0.00127554 -0.00127409 -0.00127263 -0.00127117 -0.00126971 -0.00126825 -0.00126679 -0.00126532 -0.00126386 -0.0012624 -0.00126093 -0.00125946 -0.00125799 -0.00125652 -0.00125505 -0.00125357 -0.0012521 -0.00125062 -0.00124914 -0.00124765 -0.00124617 -0.00124468 -0.00124319 -0.0012417 -0.0012402 -0.00123871 -0.00123721 -0.00123571 -0.0012342 -0.00123269 -0.00123118 -0.00122967 -0.00122815 -0.00122663 -0.0012251 -0.00122358 -0.00122205 -0.00122051 -0.00121898 -0.00121743 -0.00121589 -0.00121434 -0.00121279 -0.00121123 -0.00120967 -0.00120811 -0.00120654 -0.00120496 -0.00120339 -0.0012018 -0.00120022 -0.00119863 -0.00119703 -0.00119543 -0.00119382 -0.00119221 -0.0011906 -0.00118897 -0.00118735 -0.00118572 -0.00118408 -0.00118243 -0.00118078 -0.00117913 -0.00117747 -0.0011758 -0.00117412 -0.00117244 -0.00117075 -0.00116906 -0.00116736 -0.00116565 -0.00116393 -0.0011622 -0.00116047 -0.00115873 -0.00115698 -0.00115522 -0.00115345 -0.00115167 -0.00114989 -0.00114809 -0.00114628 -0.00114447 -0.00114264 -0.0011408 -0.00113895 -0.00113708 -0.0011352 -0.00113331 -0.00113141 -0.00112949 -0.00112755 -0.0011256 -0.00112364 -0.00112165 -0.00111965 -0.00111762 -0.00111558 -0.00111351 -0.00111142 -0.00110931 -0.00110717 -0.001105 -0.0011028 -0.00110057 -0.0010983 -0.00109599 -0.00109363 -0.00109123 -0.00108878 -0.00108626 -0.00108369 -0.00108103 -0.00107829 -0.00107546 -0.00107252 -0.00106945 -0.00106625 -0.00106288 -0.00105933 -0.00105557 -0.00105159 -0.00104734 -0.0010428 -0.00103795 -0.00103275 -0.00102718 -0.0010212 -0.00101479 -0.00100794 -0.0010006 -0.00099278 -0.000984444 -0.000975579 -0.000966173 -0.000956212 -0.000945685 -0.000934582 -0.000922895 -0.000910614 -0.000897732 -0.000884244 -0.000870144 -0.000855425 -0.000840083 -0.000824114 -0.000807512 -0.000790275 -0.000772397 -0.000753876 -0.000734709 -0.000714891 -0.000694419 -0.000673292 -0.000651505 -0.000629056 -0.000605942 -0.00058216 -0.000557707 -0.000532582 -0.000506781 -0.000480301 -0.000453141 -0.000425297 -0.000396767 -0.000367549 -0.00033764 -0.000307038 -0.00027574 -0.000243743 -0.000211046 -0.000177646 -0.00014354 -0.000108726 -7.32023E-05 -3.69653E-05 -1.3017E-08 3.73016E-05 7.46195E-05 0.000111935 0.000149241 0.000186533 0.000223806 0.000261054 0.000298273 0.000335457 0.000372603 +-0.00126097 -0.00125953 -0.00125809 -0.00125665 -0.00125521 -0.00125377 -0.00125232 -0.00125088 -0.00124944 -0.00124799 -0.00124654 -0.0012451 -0.00124365 -0.0012422 -0.00124074 -0.00123929 -0.00123784 -0.00123638 -0.00123492 -0.00123346 -0.001232 -0.00123053 -0.00122907 -0.0012276 -0.00122613 -0.00122466 -0.00122318 -0.00122171 -0.00122023 -0.00121875 -0.00121726 -0.00121577 -0.00121428 -0.00121279 -0.00121129 -0.0012098 -0.00120829 -0.00120679 -0.00120528 -0.00120377 -0.00120225 -0.00120073 -0.00119921 -0.00119769 -0.00119616 -0.00119463 -0.00119309 -0.00119155 -0.00119 -0.00118845 -0.0011869 -0.00118534 -0.00118378 -0.00118222 -0.00118065 -0.00117907 -0.00117749 -0.00117591 -0.00117432 -0.00117272 -0.00117112 -0.00116952 -0.00116791 -0.00116629 -0.00116467 -0.00116305 -0.00116141 -0.00115978 -0.00115813 -0.00115648 -0.00115482 -0.00115316 -0.00115149 -0.00114981 -0.00114813 -0.00114643 -0.00114473 -0.00114303 -0.00114131 -0.00113959 -0.00113786 -0.00113612 -0.00113437 -0.00113261 -0.00113084 -0.00112906 -0.00112727 -0.00112547 -0.00112366 -0.00112184 -0.00112001 -0.00111816 -0.0011163 -0.00111443 -0.00111254 -0.00111064 -0.00110873 -0.0011068 -0.00110485 -0.00110288 -0.0011009 -0.00109889 -0.00109686 -0.00109482 -0.00109275 -0.00109065 -0.00108852 -0.00108637 -0.00108419 -0.00108197 -0.00107971 -0.00107742 -0.00107508 -0.00107269 -0.00107024 -0.00106773 -0.00106516 -0.00106251 -0.00105977 -0.00105693 -0.00105397 -0.00105089 -0.00104766 -0.00104426 -0.00104067 -0.00103686 -0.00103281 -0.00102849 -0.00102387 -0.00101891 -0.0010136 -0.0010079 -0.00100178 -0.000995221 -0.000988197 -0.000980687 -0.000972671 -0.000964132 -0.000955054 -0.000945424 -0.000935229 -0.000924458 -0.000913102 -0.000901152 -0.000888601 -0.00087544 -0.000861665 -0.000847269 -0.000832246 -0.000816593 -0.000800304 -0.000783376 -0.000765804 -0.000747584 -0.000728713 -0.000709188 -0.000689005 -0.000668161 -0.000646653 -0.000624479 -0.000601634 -0.000578117 -0.000553925 -0.000529055 -0.000503504 -0.000477269 -0.000450349 -0.00042274 -0.00039444 -0.000365446 -0.000335755 -0.000305367 -0.000274277 -0.000242483 -0.000209983 -0.000176774 -0.000142854 -0.00010822 -7.28702E-05 -3.68017E-05 -1.21046E-08 3.71465E-05 7.43158E-05 0.000111489 0.000148661 0.000185825 0.000222976 0.000260108 0.000297216 0.000334296 0.000371342 +-0.00124195 -0.00124052 -0.0012391 -0.00123767 -0.00123625 -0.00123482 -0.00123339 -0.00123196 -0.00123053 -0.0012291 -0.00122767 -0.00122624 -0.00122481 -0.00122337 -0.00122194 -0.0012205 -0.00121906 -0.00121762 -0.00121618 -0.00121474 -0.00121329 -0.00121185 -0.0012104 -0.00120895 -0.00120749 -0.00120604 -0.00120458 -0.00120312 -0.00120166 -0.00120019 -0.00119873 -0.00119726 -0.00119579 -0.00119431 -0.00119283 -0.00119135 -0.00118987 -0.00118838 -0.00118689 -0.0011854 -0.00118391 -0.00118241 -0.0011809 -0.0011794 -0.00117789 -0.00117637 -0.00117486 -0.00117334 -0.00117181 -0.00117028 -0.00116875 -0.00116721 -0.00116567 -0.00116413 -0.00116258 -0.00116103 -0.00115947 -0.0011579 -0.00115634 -0.00115476 -0.00115319 -0.0011516 -0.00115002 -0.00114842 -0.00114683 -0.00114522 -0.00114361 -0.001142 -0.00114038 -0.00113875 -0.00113712 -0.00113548 -0.00113383 -0.00113218 -0.00113052 -0.00112885 -0.00112718 -0.00112549 -0.00112381 -0.00112211 -0.0011204 -0.00111869 -0.00111697 -0.00111524 -0.0011135 -0.00111175 -0.00110999 -0.00110822 -0.00110644 -0.00110464 -0.00110284 -0.00110103 -0.0010992 -0.00109736 -0.00109551 -0.00109364 -0.00109176 -0.00108986 -0.00108795 -0.00108602 -0.00108407 -0.0010821 -0.00108012 -0.00107811 -0.00107608 -0.00107403 -0.00107195 -0.00106984 -0.0010677 -0.00106554 -0.00106333 -0.00106109 -0.00105881 -0.00105648 -0.0010541 -0.00105167 -0.00104917 -0.0010466 -0.00104394 -0.0010412 -0.00103835 -0.00103539 -0.00103228 -0.00102903 -0.00102559 -0.00102196 -0.0010181 -0.00101398 -0.00100958 -0.00100486 -0.000999803 -0.00099437 -0.000988534 -0.000982269 -0.00097555 -0.000968353 -0.000960658 -0.000952444 -0.000943697 -0.0009344 -0.00092454 -0.000914105 -0.000903085 -0.000891471 -0.000879254 -0.000866426 -0.000852981 -0.000838913 -0.000824216 -0.000808885 -0.000792914 -0.000776301 -0.00075904 -0.000741127 -0.000722559 -0.000703333 -0.000683444 -0.00066289 -0.000641668 -0.000619774 -0.000597206 -0.00057396 -0.000550034 -0.000525425 -0.00050013 -0.000474147 -0.000447473 -0.000420105 -0.00039204 -0.000363276 -0.000333811 -0.000303642 -0.000272766 -0.000241181 -0.000208883 -0.000175872 -0.000142144 -0.000107696 -7.25264E-05 -3.66323E-05 -1.12549E-08 3.69856E-05 7.40007E-05 0.000111027 0.000148059 0.00018509 0.000222114 0.000259125 0.000296119 0.00033309 0.000370033 +-0.00122284 -0.00122143 -0.00122002 -0.0012186 -0.00121719 -0.00121578 -0.00121437 -0.00121296 -0.00121154 -0.00121013 -0.00120872 -0.0012073 -0.00120588 -0.00120446 -0.00120304 -0.00120162 -0.0012002 -0.00119878 -0.00119735 -0.00119593 -0.0011945 -0.00119307 -0.00119164 -0.0011902 -0.00118877 -0.00118733 -0.00118589 -0.00118445 -0.001183 -0.00118156 -0.00118011 -0.00117866 -0.0011772 -0.00117575 -0.00117429 -0.00117283 -0.00117136 -0.00116989 -0.00116842 -0.00116695 -0.00116547 -0.00116399 -0.00116251 -0.00116102 -0.00115953 -0.00115804 -0.00115654 -0.00115504 -0.00115354 -0.00115203 -0.00115052 -0.001149 -0.00114748 -0.00114595 -0.00114443 -0.00114289 -0.00114136 -0.00113982 -0.00113827 -0.00113672 -0.00113516 -0.0011336 -0.00113204 -0.00113047 -0.00112889 -0.00112731 -0.00112572 -0.00112413 -0.00112253 -0.00112093 -0.00111932 -0.00111771 -0.00111608 -0.00111446 -0.00111282 -0.00111118 -0.00110953 -0.00110787 -0.00110621 -0.00110454 -0.00110286 -0.00110117 -0.00109948 -0.00109778 -0.00109606 -0.00109434 -0.00109261 -0.00109087 -0.00108912 -0.00108736 -0.00108559 -0.0010838 -0.00108201 -0.0010802 -0.00107838 -0.00107654 -0.0010747 -0.00107283 -0.00107096 -0.00106906 -0.00106715 -0.00106522 -0.00106328 -0.00106131 -0.00105932 -0.00105731 -0.00105527 -0.00105321 -0.00105112 -0.001049 -0.00104685 -0.00104466 -0.00104244 -0.00104017 -0.00103785 -0.00103548 -0.00103305 -0.00103056 -0.00102799 -0.00102534 -0.00102259 -0.00101974 -0.00101676 -0.00101363 -0.00101035 -0.00100687 -0.00100319 -0.00099927 -0.000995082 -0.000990597 -0.000985785 -0.000980614 -0.000975056 -0.000969082 -0.000962664 -0.000955779 -0.000948403 -0.000940517 -0.0009321 -0.000923139 -0.000913617 -0.000903522 -0.000892842 -0.000881568 -0.000869689 -0.000857199 -0.00084409 -0.000830355 -0.000815989 -0.000800985 -0.000785339 -0.000769047 -0.000752103 -0.000734503 -0.000716245 -0.000697323 -0.000677735 -0.000657478 -0.000636547 -0.00061494 -0.000592654 -0.000569686 -0.000546032 -0.000521691 -0.000496659 -0.000470933 -0.000444511 -0.00041739 -0.000389567 -0.00036104 -0.000331806 -0.000301862 -0.000271206 -0.000239836 -0.000207748 -0.00017494 -0.000141409 -0.000107154 -7.21705E-05 -3.64569E-05 -1.04638E-08 3.68187E-05 7.36739E-05 0.000110548 0.000147435 0.000184327 0.000221219 0.000258105 0.00029498 0.000331838 0.000368674 +-0.00120364 -0.00120224 -0.00120085 -0.00119945 -0.00119806 -0.00119666 -0.00119526 -0.00119387 -0.00119247 -0.00119107 -0.00118967 -0.00118827 -0.00118687 -0.00118547 -0.00118407 -0.00118266 -0.00118126 -0.00117985 -0.00117844 -0.00117703 -0.00117562 -0.00117421 -0.00117279 -0.00117138 -0.00116996 -0.00116854 -0.00116712 -0.00116569 -0.00116427 -0.00116284 -0.00116141 -0.00115997 -0.00115854 -0.0011571 -0.00115566 -0.00115422 -0.00115277 -0.00115132 -0.00114987 -0.00114841 -0.00114696 -0.00114549 -0.00114403 -0.00114256 -0.00114109 -0.00113962 -0.00113814 -0.00113666 -0.00113518 -0.00113369 -0.0011322 -0.0011307 -0.0011292 -0.0011277 -0.00112619 -0.00112468 -0.00112316 -0.00112164 -0.00112012 -0.00111859 -0.00111705 -0.00111552 -0.00111397 -0.00111243 -0.00111087 -0.00110931 -0.00110775 -0.00110618 -0.00110461 -0.00110303 -0.00110144 -0.00109985 -0.00109825 -0.00109665 -0.00109504 -0.00109342 -0.0010918 -0.00109017 -0.00108853 -0.00108689 -0.00108523 -0.00108357 -0.00108191 -0.00108023 -0.00107855 -0.00107685 -0.00107515 -0.00107344 -0.00107172 -0.00106998 -0.00106824 -0.00106649 -0.00106473 -0.00106295 -0.00106116 -0.00105936 -0.00105755 -0.00105572 -0.00105387 -0.00105202 -0.00105014 -0.00104825 -0.00104634 -0.00104441 -0.00104246 -0.00104049 -0.0010385 -0.00103648 -0.00103444 -0.00103237 -0.00103026 -0.00102813 -0.00102596 -0.00102375 -0.00102149 -0.00101919 -0.00101683 -0.00101441 -0.00101192 -0.00100936 -0.0010067 -0.00100395 -0.00100109 -0.000998088 -0.000994941 -0.000991622 -0.000988109 -0.000984374 -0.00098039 -0.000976126 -0.000971552 -0.000966637 -0.00096135 -0.000955661 -0.000949541 -0.000942965 -0.000935908 -0.000928348 -0.000920264 -0.000911639 -0.000902458 -0.000892705 -0.000882369 -0.000871439 -0.000859904 -0.000847757 -0.000834989 -0.000821593 -0.000807562 -0.000792892 -0.000777576 -0.00076161 -0.00074499 -0.000727709 -0.000709766 -0.000691156 -0.000671875 -0.00065192 -0.000631287 -0.000609973 -0.000587976 -0.000565291 -0.000541917 -0.000517849 -0.000493086 -0.000467624 -0.000441461 -0.000414593 -0.000387019 -0.000358735 -0.000329738 -0.000300027 -0.000269597 -0.000238448 -0.000206575 -0.000173977 -0.000140651 -0.000106593 -7.18024E-05 -3.62755E-05 -9.72722E-09 3.66458E-05 7.33354E-05 0.000110052 0.000146787 0.000183536 0.000220292 0.000257048 0.000293799 0.000330539 0.000367263 +-0.00118435 -0.00118298 -0.0011816 -0.00118022 -0.00117884 -0.00117746 -0.00117608 -0.0011747 -0.00117331 -0.00117193 -0.00117055 -0.00116917 -0.00116778 -0.0011664 -0.00116501 -0.00116362 -0.00116223 -0.00116084 -0.00115945 -0.00115806 -0.00115666 -0.00115527 -0.00115387 -0.00115247 -0.00115107 -0.00114967 -0.00114826 -0.00114686 -0.00114545 -0.00114404 -0.00114262 -0.00114121 -0.00113979 -0.00113837 -0.00113695 -0.00113552 -0.0011341 -0.00113267 -0.00113123 -0.0011298 -0.00112836 -0.00112692 -0.00112547 -0.00112402 -0.00112257 -0.00112112 -0.00111966 -0.0011182 -0.00111674 -0.00111527 -0.0011138 -0.00111232 -0.00111084 -0.00110936 -0.00110787 -0.00110638 -0.00110489 -0.00110339 -0.00110189 -0.00110038 -0.00109887 -0.00109735 -0.00109583 -0.0010943 -0.00109277 -0.00109124 -0.0010897 -0.00108815 -0.0010866 -0.00108504 -0.00108348 -0.00108191 -0.00108034 -0.00107876 -0.00107718 -0.00107558 -0.00107399 -0.00107238 -0.00107077 -0.00106915 -0.00106753 -0.00106589 -0.00106425 -0.0010626 -0.00106094 -0.00105928 -0.00105761 -0.00105592 -0.00105423 -0.00105253 -0.00105081 -0.00104909 -0.00104736 -0.00104561 -0.00104386 -0.00104209 -0.00104031 -0.00103851 -0.0010367 -0.00103488 -0.00103304 -0.00103119 -0.00102932 -0.00102743 -0.00102552 -0.00102359 -0.00102164 -0.00101966 -0.00101766 -0.00101564 -0.00101358 -0.0010115 -0.00100938 -0.00100722 -0.00100503 -0.00100278 -0.00100049 -0.000998143 -0.000995732 -0.00099325 -0.000990688 -0.000988034 -0.000985275 -0.000982397 -0.000979381 -0.000976208 -0.000972855 -0.000969297 -0.000965507 -0.000961455 -0.000957111 -0.000952443 -0.00094742 -0.00094201 -0.000936184 -0.000929914 -0.000923173 -0.000915938 -0.000908187 -0.0008999 -0.000891061 -0.000881654 -0.000871665 -0.000861083 -0.000849896 -0.000838096 -0.000825674 -0.000812622 -0.000798933 -0.000784602 -0.000769622 -0.000753989 -0.000737698 -0.000720743 -0.000703121 -0.000684829 -0.000665861 -0.000646214 -0.000625886 -0.000604872 -0.00058317 -0.000560776 -0.000537686 -0.000513899 -0.000489412 -0.00046422 -0.000438322 -0.000411714 -0.000384394 -0.000356359 -0.000327607 -0.000298134 -0.000267938 -0.000237015 -0.000205365 -0.000172983 -0.000139867 -0.000106014 -7.14218E-05 -3.60878E-05 -9.04148E-09 3.64667E-05 7.29846E-05 0.000109537 0.000146117 0.000182717 0.000219331 0.000255952 0.000292574 0.000329192 0.0003658 +-0.00116499 -0.00116363 -0.00116227 -0.0011609 -0.00115954 -0.00115817 -0.00115681 -0.00115544 -0.00115408 -0.00115271 -0.00115135 -0.00114998 -0.00114861 -0.00114724 -0.00114587 -0.0011445 -0.00114313 -0.00114175 -0.00114038 -0.001139 -0.00113763 -0.00113625 -0.00113487 -0.00113349 -0.0011321 -0.00113072 -0.00112933 -0.00112794 -0.00112655 -0.00112516 -0.00112376 -0.00112236 -0.00112097 -0.00111956 -0.00111816 -0.00111675 -0.00111534 -0.00111393 -0.00111252 -0.0011111 -0.00110968 -0.00110826 -0.00110683 -0.00110541 -0.00110397 -0.00110254 -0.0011011 -0.00109966 -0.00109822 -0.00109677 -0.00109532 -0.00109386 -0.0010924 -0.00109094 -0.00108948 -0.00108801 -0.00108653 -0.00108506 -0.00108357 -0.00108209 -0.0010806 -0.0010791 -0.00107761 -0.0010761 -0.00107459 -0.00107308 -0.00107156 -0.00107004 -0.00106851 -0.00106698 -0.00106544 -0.0010639 -0.00106235 -0.00106079 -0.00105923 -0.00105767 -0.00105609 -0.00105451 -0.00105293 -0.00105134 -0.00104974 -0.00104813 -0.00104651 -0.00104489 -0.00104326 -0.00104162 -0.00103998 -0.00103832 -0.00103666 -0.00103499 -0.0010333 -0.00103161 -0.00102991 -0.0010282 -0.00102647 -0.00102473 -0.00102299 -0.00102122 -0.00101945 -0.00101766 -0.00101586 -0.00101404 -0.0010122 -0.00101035 -0.00100848 -0.00100659 -0.00100468 -0.00100275 -0.0010008 -0.000998815 -0.000996808 -0.000994772 -0.000992704 -0.000990601 -0.000988461 -0.000986279 -0.00098405 -0.000981769 -0.000979431 -0.000977028 -0.000974551 -0.00097199 -0.000969333 -0.000966567 -0.000963675 -0.000960639 -0.000957437 -0.000954046 -0.000950441 -0.000946591 -0.000942467 -0.000938037 -0.00093327 -0.000928133 -0.000922595 -0.000916626 -0.000910199 -0.000903287 -0.000895868 -0.000887921 -0.000879425 -0.000870366 -0.000860727 -0.000850496 -0.000839662 -0.000828214 -0.000816142 -0.00080344 -0.000790098 -0.000776112 -0.000761474 -0.00074618 -0.000730224 -0.000713601 -0.000696307 -0.000678338 -0.00065969 -0.000640359 -0.000620341 -0.000599634 -0.000578233 -0.000556136 -0.000533338 -0.000509838 -0.000485633 -0.000460718 -0.000435091 -0.00040875 -0.000381692 -0.000353913 -0.000325411 -0.000296183 -0.000266226 -0.000235538 -0.000204115 -0.000171956 -0.000139057 -0.000105415 -7.10284E-05 -3.58937E-05 -8.40313E-09 3.62812E-05 7.26215E-05 0.000109005 0.000145423 0.000181868 0.000218335 0.000254816 0.000291306 0.000327797 0.000364284 +-0.00114555 -0.0011442 -0.00114286 -0.00114151 -0.00114016 -0.00113881 -0.00113746 -0.00113611 -0.00113476 -0.00113341 -0.00113206 -0.00113071 -0.00112936 -0.00112801 -0.00112666 -0.0011253 -0.00112395 -0.00112259 -0.00112123 -0.00111987 -0.00111851 -0.00111715 -0.00111579 -0.00111442 -0.00111306 -0.00111169 -0.00111032 -0.00110895 -0.00110758 -0.0011062 -0.00110482 -0.00110344 -0.00110206 -0.00110068 -0.00109929 -0.00109791 -0.00109652 -0.00109512 -0.00109373 -0.00109233 -0.00109093 -0.00108953 -0.00108812 -0.00108671 -0.0010853 -0.00108388 -0.00108247 -0.00108105 -0.00107962 -0.00107819 -0.00107676 -0.00107533 -0.00107389 -0.00107245 -0.00107101 -0.00106956 -0.00106811 -0.00106665 -0.00106519 -0.00106372 -0.00106226 -0.00106078 -0.00105931 -0.00105783 -0.00105634 -0.00105485 -0.00105336 -0.00105186 -0.00105035 -0.00104884 -0.00104733 -0.00104581 -0.00104428 -0.00104275 -0.00104122 -0.00103967 -0.00103812 -0.00103657 -0.00103501 -0.00103344 -0.00103187 -0.00103029 -0.0010287 -0.00102711 -0.0010255 -0.00102389 -0.00102227 -0.00102065 -0.00101901 -0.00101737 -0.00101572 -0.00101405 -0.00101238 -0.0010107 -0.001009 -0.0010073 -0.00100558 -0.00100385 -0.00100211 -0.00100036 -0.00099859 -0.000996807 -0.000995008 -0.000993193 -0.000991361 -0.000989511 -0.000987642 -0.000985752 -0.000983839 -0.000981904 -0.000979943 -0.000977954 -0.000975936 -0.000973886 -0.0009718 -0.000969675 -0.000967507 -0.000965292 -0.000963023 -0.000960695 -0.000958298 -0.000955825 -0.000953265 -0.000950604 -0.000947829 -0.000944922 -0.000941863 -0.00093863 -0.000935199 -0.000931541 -0.000927628 -0.000923427 -0.000918907 -0.000914035 -0.000908778 -0.000903105 -0.000896988 -0.000890398 -0.000883309 -0.0008757 -0.00086755 -0.00085884 -0.000849554 -0.000839678 -0.0008292 -0.000818108 -0.000806392 -0.000794044 -0.000781056 -0.00076742 -0.00075313 -0.00073818 -0.000722566 -0.000706281 -0.000689321 -0.000671682 -0.00065336 -0.000634351 -0.000614651 -0.000594256 -0.000573163 -0.000551369 -0.000528871 -0.000505664 -0.000481747 -0.000457116 -0.000431768 -0.0004057 -0.00037891 -0.000351393 -0.000323148 -0.000294172 -0.000264461 -0.000234014 -0.000202826 -0.000170896 -0.000138221 -0.000104797 -7.06218E-05 -3.56931E-05 -7.80896E-09 3.60893E-05 7.22457E-05 0.000108453 0.000144704 0.00018099 0.000217305 0.000253641 0.000289992 0.000326351 0.000362713 +-0.00112604 -0.00112471 -0.00112337 -0.00112204 -0.00112071 -0.00111938 -0.00111804 -0.00111671 -0.00111538 -0.00111404 -0.00111271 -0.00111137 -0.00111004 -0.0011087 -0.00110737 -0.00110603 -0.00110469 -0.00110335 -0.00110201 -0.00110067 -0.00109933 -0.00109798 -0.00109664 -0.00109529 -0.00109394 -0.00109259 -0.00109124 -0.00108988 -0.00108853 -0.00108717 -0.00108581 -0.00108445 -0.00108309 -0.00108172 -0.00108036 -0.00107899 -0.00107762 -0.00107624 -0.00107487 -0.00107349 -0.00107211 -0.00107072 -0.00106934 -0.00106795 -0.00106655 -0.00106516 -0.00106376 -0.00106236 -0.00106096 -0.00105955 -0.00105814 -0.00105672 -0.00105531 -0.00105389 -0.00105246 -0.00105103 -0.0010496 -0.00104817 -0.00104673 -0.00104529 -0.00104384 -0.00104239 -0.00104094 -0.00103948 -0.00103801 -0.00103655 -0.00103507 -0.0010336 -0.00103212 -0.00103063 -0.00102914 -0.00102764 -0.00102614 -0.00102464 -0.00102312 -0.00102161 -0.00102008 -0.00101855 -0.00101702 -0.00101548 -0.00101393 -0.00101237 -0.00101081 -0.00100924 -0.00100767 -0.00100609 -0.00100449 -0.0010029 -0.00100129 -0.000999674 -0.00099805 -0.000996417 -0.000994775 -0.000993122 -0.000991459 -0.000989786 -0.000988102 -0.000986406 -0.000984698 -0.000982977 -0.000981243 -0.000979495 -0.000977732 -0.000975954 -0.00097416 -0.000972348 -0.000970519 -0.000968669 -0.000966799 -0.000964907 -0.00096299 -0.000961049 -0.000959079 -0.000957079 -0.000955046 -0.000952977 -0.000950868 -0.000948715 -0.000946513 -0.000944256 -0.000941936 -0.000939547 -0.000937077 -0.000934516 -0.000931851 -0.000929065 -0.00092614 -0.000923056 -0.00091979 -0.000916314 -0.000912601 -0.000908619 -0.000904337 -0.000899721 -0.000894738 -0.000889355 -0.000883543 -0.00087727 -0.00087051 -0.000863239 -0.000855434 -0.000847075 -0.000838144 -0.000828626 -0.000818508 -0.000807776 -0.000796421 -0.000784432 -0.000771802 -0.000758522 -0.000744586 -0.000729987 -0.00071472 -0.000698779 -0.00068216 -0.000664858 -0.000646868 -0.000628187 -0.000608811 -0.000588736 -0.000567958 -0.000546474 -0.000524281 -0.000501375 -0.000477753 -0.000453413 -0.00042835 -0.000402562 -0.000376046 -0.000348799 -0.000320818 -0.000292101 -0.000262643 -0.000232443 -0.000201497 -0.000169803 -0.000137358 -0.000104158 -7.02019E-05 -3.54858E-05 -7.25595E-09 3.58907E-05 7.1857E-05 0.000107883 0.00014396 0.000180081 0.000216238 0.000252424 0.000288631 0.000324855 0.000361087 +-0.00110645 -0.00110513 -0.00110382 -0.0011025 -0.00110119 -0.00109987 -0.00109855 -0.00109724 -0.00109592 -0.0010946 -0.00109328 -0.00109197 -0.00109065 -0.00108933 -0.00108801 -0.00108669 -0.00108536 -0.00108404 -0.00108272 -0.00108139 -0.00108007 -0.00107874 -0.00107741 -0.00107608 -0.00107475 -0.00107342 -0.00107209 -0.00107075 -0.00106941 -0.00106807 -0.00106673 -0.00106539 -0.00106405 -0.0010627 -0.00106135 -0.00106 -0.00105865 -0.00105729 -0.00105593 -0.00105457 -0.00105321 -0.00105185 -0.00105048 -0.00104911 -0.00104774 -0.00104636 -0.00104498 -0.0010436 -0.00104222 -0.00104083 -0.00103944 -0.00103805 -0.00103665 -0.00103525 -0.00103385 -0.00103244 -0.00103103 -0.00102962 -0.0010282 -0.00102678 -0.00102536 -0.00102393 -0.0010225 -0.00102106 -0.00101962 -0.00101817 -0.00101672 -0.00101527 -0.00101381 -0.00101235 -0.00101088 -0.00100941 -0.00100793 -0.00100645 -0.00100496 -0.00100347 -0.00100197 -0.00100046 -0.000998954 -0.000997438 -0.000995916 -0.000994387 -0.000992852 -0.000991311 -0.000989762 -0.000988206 -0.000986643 -0.000985073 -0.000983494 -0.000981907 -0.000980312 -0.000978709 -0.000977096 -0.000975473 -0.000973841 -0.000972199 -0.000970547 -0.000968883 -0.000967207 -0.00096552 -0.00096382 -0.000962107 -0.00096038 -0.000958638 -0.00095688 -0.000955107 -0.000953316 -0.000951506 -0.000949677 -0.000947828 -0.000945955 -0.000944059 -0.000942136 -0.000940185 -0.000938204 -0.000936189 -0.000934137 -0.000932044 -0.000929905 -0.000927716 -0.00092547 -0.00092316 -0.000920776 -0.00091831 -0.000915747 -0.000913075 -0.000910277 -0.000907333 -0.000904221 -0.000900918 -0.000897394 -0.000893621 -0.000889566 -0.000885197 -0.00088048 -0.00087538 -0.000869867 -0.000863907 -0.000857473 -0.000850538 -0.000843078 -0.00083507 -0.000826496 -0.000817339 -0.000807584 -0.000797216 -0.000786226 -0.000774601 -0.000762334 -0.000749416 -0.000735839 -0.000721597 -0.000706684 -0.000691093 -0.000674821 -0.000657862 -0.000640212 -0.000621866 -0.00060282 -0.000583072 -0.000562615 -0.000541449 -0.000519567 -0.000496969 -0.000473649 -0.000449606 -0.000424835 -0.000399334 -0.0003731 -0.00034613 -0.000318419 -0.000289967 -0.000260769 -0.000230823 -0.000200126 -0.000168675 -0.000136467 -0.000103499 -6.97682E-05 -3.52718E-05 -6.74131E-09 3.56854E-05 7.14551E-05 0.000107293 0.000143191 0.000179141 0.000215134 0.000251164 0.000287224 0.000323306 0.000359403 +-0.0010868 -0.00108549 -0.00108419 -0.00108289 -0.00108159 -0.00108029 -0.00107899 -0.00107769 -0.00107639 -0.00107509 -0.00107379 -0.00107249 -0.00107119 -0.00106988 -0.00106858 -0.00106728 -0.00106597 -0.00106467 -0.00106336 -0.00106205 -0.00106074 -0.00105943 -0.00105812 -0.00105681 -0.0010555 -0.00105418 -0.00105287 -0.00105155 -0.00105023 -0.00104891 -0.00104759 -0.00104626 -0.00104494 -0.00104361 -0.00104228 -0.00104095 -0.00103961 -0.00103827 -0.00103694 -0.0010356 -0.00103425 -0.00103291 -0.00103156 -0.00103021 -0.00102886 -0.0010275 -0.00102614 -0.00102478 -0.00102342 -0.00102205 -0.00102068 -0.00101931 -0.00101793 -0.00101655 -0.00101517 -0.00101378 -0.0010124 -0.001011 -0.00100961 -0.00100821 -0.00100681 -0.0010054 -0.00100399 -0.00100257 -0.00100116 -0.000999733 -0.000998306 -0.000996875 -0.00099544 -0.000994 -0.000992556 -0.000991107 -0.000989653 -0.000988195 -0.000986731 -0.000985262 -0.000983788 -0.000982309 -0.000980824 -0.000979333 -0.000977836 -0.000976334 -0.000974825 -0.00097331 -0.000971788 -0.000970259 -0.000968723 -0.00096718 -0.00096563 -0.000964071 -0.000962505 -0.00096093 -0.000959347 -0.000957755 -0.000956153 -0.000954542 -0.00095292 -0.000951288 -0.000949645 -0.000947991 -0.000946324 -0.000944645 -0.000942953 -0.000941247 -0.000939526 -0.00093779 -0.000936037 -0.000934267 -0.000932478 -0.00093067 -0.000928841 -0.000926989 -0.000925112 -0.000923209 -0.000921277 -0.000919315 -0.000917317 -0.000915282 -0.000913205 -0.000911081 -0.000908905 -0.00090667 -0.000904368 -0.000901991 -0.000899526 -0.000896961 -0.000894281 -0.000891468 -0.000888503 -0.000885361 -0.000882017 -0.000878441 -0.000874604 -0.000870472 -0.00086601 -0.000861186 -0.000855964 -0.000850312 -0.0008442 -0.000837598 -0.000830482 -0.000822826 -0.00081461 -0.000805815 -0.000796425 -0.000786426 -0.000775805 -0.000764549 -0.00075265 -0.000740099 -0.000726887 -0.000713008 -0.000698454 -0.000683221 -0.000667302 -0.000650693 -0.000633388 -0.000615384 -0.000596676 -0.00057726 -0.000557133 -0.00053629 -0.000514728 -0.000492443 -0.000469433 -0.000445694 -0.000421222 -0.000396015 -0.00037007 -0.000343382 -0.00031595 -0.00028777 -0.00025884 -0.000229155 -0.000198714 -0.000167513 -0.000135549 -0.000102819 -6.93206E-05 -3.50507E-05 -6.26241E-09 3.54732E-05 7.10396E-05 0.000106684 0.000142396 0.000178169 0.000213993 0.000249862 0.000285768 0.000321703 0.000357661 +-0.00106707 -0.00106579 -0.00106451 -0.00106322 -0.00106194 -0.00106065 -0.00105937 -0.00105808 -0.0010568 -0.00105552 -0.00105423 -0.00105295 -0.00105166 -0.00105038 -0.00104909 -0.0010478 -0.00104651 -0.00104523 -0.00104394 -0.00104265 -0.00104135 -0.00104006 -0.00103877 -0.00103747 -0.00103618 -0.00103488 -0.00103358 -0.00103228 -0.00103098 -0.00102968 -0.00102838 -0.00102707 -0.00102576 -0.00102445 -0.00102314 -0.00102183 -0.00102051 -0.00101919 -0.00101788 -0.00101655 -0.00101523 -0.0010139 -0.00101258 -0.00101124 -0.00100991 -0.00100858 -0.00100724 -0.0010059 -0.00100455 -0.00100321 -0.00100186 -0.0010005 -0.000999148 -0.00099779 -0.000996428 -0.000995064 -0.000993696 -0.000992325 -0.000990951 -0.000989573 -0.000988192 -0.000986807 -0.000985418 -0.000984026 -0.00098263 -0.00098123 -0.000979826 -0.000978417 -0.000977005 -0.000975589 -0.000974168 -0.000972742 -0.000971312 -0.000969878 -0.000968438 -0.000966994 -0.000965544 -0.000964089 -0.000962629 -0.000961164 -0.000959693 -0.000958216 -0.000956733 -0.000955244 -0.000953748 -0.000952247 -0.000950738 -0.000949222 -0.0009477 -0.000946169 -0.000944631 -0.000943086 -0.000941532 -0.000939969 -0.000938397 -0.000936817 -0.000935226 -0.000933626 -0.000932015 -0.000930393 -0.00092876 -0.000927115 -0.000925457 -0.000923786 -0.000922101 -0.000920401 -0.000918686 -0.000916955 -0.000915206 -0.000913438 -0.000911651 -0.000909842 -0.000908011 -0.000906154 -0.000904271 -0.000902359 -0.000900414 -0.000898435 -0.000896417 -0.000894356 -0.000892247 -0.000890083 -0.000887859 -0.000885565 -0.000883192 -0.000880728 -0.00087816 -0.000875471 -0.000872642 -0.000869652 -0.000866477 -0.000863089 -0.000859458 -0.000855552 -0.000851336 -0.000846777 -0.00084184 -0.000836489 -0.000830694 -0.000824422 -0.000817647 -0.000810342 -0.000802484 -0.000794054 -0.000785032 -0.000775404 -0.000765155 -0.000754274 -0.000742748 -0.000730569 -0.000717728 -0.000704217 -0.000690029 -0.000675159 -0.0006596 -0.000643347 -0.000626395 -0.000608739 -0.000590375 -0.000571299 -0.000551507 -0.000530995 -0.000509759 -0.000487796 -0.000465102 -0.000441674 -0.000417509 -0.000392603 -0.000366954 -0.000340557 -0.00031341 -0.000285509 -0.000256853 -0.000227437 -0.000197258 -0.000166314 -0.000134602 -0.000102117 -6.88588E-05 -3.48226E-05 -5.81681E-09 3.52539E-05 7.06104E-05 0.000106054 0.000141575 0.000177164 0.000212814 0.000248516 0.000284263 0.000320046 0.00035586 +-0.00104729 -0.00104602 -0.00104475 -0.00104349 -0.00104222 -0.00104095 -0.00103968 -0.00103842 -0.00103715 -0.00103588 -0.00103461 -0.00103334 -0.00103208 -0.00103081 -0.00102954 -0.00102827 -0.001027 -0.00102572 -0.00102445 -0.00102318 -0.00102191 -0.00102063 -0.00101936 -0.00101808 -0.0010168 -0.00101552 -0.00101424 -0.00101296 -0.00101168 -0.00101039 -0.00100911 -0.00100782 -0.00100653 -0.00100524 -0.00100394 -0.00100265 -0.00100135 -0.00100006 -0.000998755 -0.000997452 -0.000996148 -0.000994841 -0.000993532 -0.00099222 -0.000990907 -0.000989591 -0.000988272 -0.000986951 -0.000985627 -0.000984301 -0.000982972 -0.00098164 -0.000980305 -0.000978968 -0.000977627 -0.000976284 -0.000974937 -0.000973587 -0.000972234 -0.000970878 -0.000969518 -0.000968155 -0.000966789 -0.000965418 -0.000964045 -0.000962667 -0.000961286 -0.0009599 -0.000958511 -0.000957117 -0.00095572 -0.000954318 -0.000952911 -0.0009515 -0.000950085 -0.000948665 -0.00094724 -0.00094581 -0.000944375 -0.000942934 -0.000941488 -0.000940037 -0.00093858 -0.000937117 -0.000935648 -0.000934173 -0.000932691 -0.000931203 -0.000929708 -0.000928205 -0.000926696 -0.000925179 -0.000923654 -0.00092212 -0.000920579 -0.000919028 -0.000917468 -0.000915899 -0.00091432 -0.00091273 -0.00091113 -0.000909518 -0.000907894 -0.000906258 -0.000904609 -0.000902945 -0.000901267 -0.000899574 -0.000897864 -0.000896136 -0.00089439 -0.000892623 -0.000890836 -0.000889025 -0.000887189 -0.000885326 -0.000883433 -0.000881507 -0.000879546 -0.000877545 -0.0008755 -0.000873405 -0.000871255 -0.000869041 -0.000866754 -0.000864385 -0.000861922 -0.000859348 -0.000856648 -0.000853801 -0.000850784 -0.000847572 -0.000844137 -0.000840446 -0.000836466 -0.000832163 -0.0008275 -0.000822443 -0.000816958 -0.000811012 -0.000804575 -0.000797619 -0.00079012 -0.000782054 -0.000773403 -0.000764149 -0.000754276 -0.000743772 -0.000732625 -0.000720823 -0.000708358 -0.000695221 -0.000681406 -0.000666905 -0.000651712 -0.000635822 -0.000619229 -0.000601928 -0.000583916 -0.000565187 -0.000545737 -0.000525563 -0.00050466 -0.000483025 -0.000460655 -0.000437546 -0.000413694 -0.000389096 -0.00036375 -0.000337651 -0.000310796 -0.000283183 -0.000254807 -0.000225667 -0.000195759 -0.000165079 -0.000133625 -0.000101394 -6.83823E-05 -3.45872E-05 -5.40225E-09 3.50275E-05 7.0167E-05 0.000105403 0.000140726 0.000176126 0.000211595 0.000247125 0.000282707 0.000318334 0.000353998 +-0.00102745 -0.0010262 -0.00102494 -0.00102369 -0.00102244 -0.00102119 -0.00101994 -0.00101869 -0.00101744 -0.00101619 -0.00101494 -0.00101368 -0.00101243 -0.00101118 -0.00100993 -0.00100867 -0.00100742 -0.00100617 -0.00100491 -0.00100366 -0.0010024 -0.00100114 -0.000999885 -0.000998626 -0.000997366 -0.000996105 -0.000994842 -0.000993579 -0.000992314 -0.000991047 -0.000989779 -0.00098851 -0.000987239 -0.000985967 -0.000984693 -0.000983417 -0.000982139 -0.00098086 -0.000979578 -0.000978295 -0.00097701 -0.000975722 -0.000974433 -0.000973141 -0.000971847 -0.000970551 -0.000969252 -0.000967951 -0.000966648 -0.000965341 -0.000964033 -0.000962721 -0.000961407 -0.000960091 -0.000958771 -0.000957448 -0.000956123 -0.000954794 -0.000953463 -0.000952128 -0.00095079 -0.000949448 -0.000948104 -0.000946756 -0.000945404 -0.000944049 -0.00094269 -0.000941327 -0.000939961 -0.00093859 -0.000937216 -0.000935837 -0.000934454 -0.000933067 -0.000931676 -0.00093028 -0.000928879 -0.000927473 -0.000926063 -0.000924648 -0.000923227 -0.000921801 -0.00092037 -0.000918933 -0.00091749 -0.000916042 -0.000914587 -0.000913126 -0.000911658 -0.000910183 -0.000908702 -0.000907213 -0.000905717 -0.000904213 -0.000902701 -0.00090118 -0.000899651 -0.000898112 -0.000896565 -0.000895007 -0.000893439 -0.00089186 -0.00089027 -0.000888668 -0.000887053 -0.000885425 -0.000883784 -0.000882128 -0.000880456 -0.000878768 -0.000877062 -0.000875337 -0.000873592 -0.000871825 -0.000870035 -0.00086822 -0.000866377 -0.000864504 -0.000862598 -0.000860655 -0.000858671 -0.000856641 -0.000854561 -0.000852423 -0.000850218 -0.000847939 -0.000845574 -0.000843109 -0.000840529 -0.000837815 -0.000834948 -0.000831902 -0.00082865 -0.000825163 -0.000821408 -0.000817349 -0.000812952 -0.00080818 -0.000802998 -0.000797372 -0.000791269 -0.00078466 -0.000777517 -0.000769817 -0.000761537 -0.000752659 -0.000743166 -0.000733044 -0.000722278 -0.000710859 -0.000698775 -0.000686019 -0.000672582 -0.000658456 -0.000643636 -0.000628115 -0.000611888 -0.000594949 -0.000577295 -0.00055892 -0.000539819 -0.00051999 -0.000499428 -0.000478129 -0.000456089 -0.000433306 -0.000409775 -0.000385493 -0.000360457 -0.000334663 -0.000308108 -0.000280789 -0.000252702 -0.000223845 -0.000194215 -0.000163807 -0.000132619 -0.000100648 -6.7891E-05 -3.43443E-05 -5.01659E-09 3.47937E-05 6.97093E-05 0.000104731 0.000139849 0.000175054 0.000210337 0.000245688 0.0002811 0.000316564 0.000352074 +-0.00100755 -0.00100632 -0.00100508 -0.00100385 -0.00100261 -0.00100138 -0.00100014 -0.000998907 -0.000997673 -0.000996439 -0.000995204 -0.00099397 -0.000992735 -0.0009915 -0.000990265 -0.000989029 -0.000987793 -0.000986556 -0.000985319 -0.000984081 -0.000982842 -0.000981602 -0.000980362 -0.000979121 -0.000977878 -0.000976635 -0.000975391 -0.000974145 -0.000972898 -0.00097165 -0.000970401 -0.00096915 -0.000967898 -0.000966644 -0.000965389 -0.000964132 -0.000962873 -0.000961612 -0.00096035 -0.000959086 -0.00095782 -0.000956552 -0.000955282 -0.00095401 -0.000952736 -0.000951459 -0.00095018 -0.000948899 -0.000947616 -0.00094633 -0.000945042 -0.000943751 -0.000942458 -0.000941162 -0.000939863 -0.000938561 -0.000937257 -0.000935949 -0.000934639 -0.000933326 -0.000932009 -0.00093069 -0.000929367 -0.000928041 -0.000926711 -0.000925379 -0.000924042 -0.000922702 -0.000921358 -0.000920011 -0.00091866 -0.000917304 -0.000915945 -0.000914582 -0.000913214 -0.000911842 -0.000910466 -0.000909085 -0.000907699 -0.000906309 -0.000904913 -0.000903513 -0.000902107 -0.000900696 -0.000899279 -0.000897857 -0.000896429 -0.000894994 -0.000893554 -0.000892107 -0.000890653 -0.000889193 -0.000887725 -0.00088625 -0.000884767 -0.000883276 -0.000881777 -0.000880269 -0.000878752 -0.000877226 -0.00087569 -0.000874144 -0.000872587 -0.000871019 -0.000869439 -0.000867846 -0.00086624 -0.000864621 -0.000862987 -0.000861337 -0.000859671 -0.000857987 -0.000856284 -0.00085456 -0.000852815 -0.000851046 -0.000849252 -0.000847429 -0.000845576 -0.000843689 -0.000841764 -0.000839797 -0.000837784 -0.000835718 -0.000833591 -0.000831397 -0.000829124 -0.000826761 -0.000824293 -0.000821705 -0.000818977 -0.000816087 -0.000813008 -0.000809713 -0.00080617 -0.000802346 -0.000798203 -0.000793707 -0.00078882 -0.000783506 -0.000777732 -0.000771466 -0.000764678 -0.000757342 -0.000749434 -0.000740934 -0.000731824 -0.000722086 -0.000711707 -0.000700675 -0.000688978 -0.000676607 -0.000663554 -0.00064981 -0.000635369 -0.000620224 -0.000604369 -0.0005878 -0.00057051 -0.000552496 -0.000533752 -0.000514275 -0.000494061 -0.000473105 -0.000451403 -0.000428953 -0.00040575 -0.000381791 -0.000357073 -0.000331592 -0.000305344 -0.000278327 -0.000250537 -0.000221971 -0.000192625 -0.000162497 -0.000131583 -9.98797E-05 -6.73845E-05 -3.40939E-05 -4.65785E-09 3.45524E-05 6.92369E-05 0.000104038 0.000138945 0.000173948 0.000209037 0.000244204 0.00027944 0.000314737 0.000350086 +-0.000987605 -0.000986386 -0.000985166 -0.000983948 -0.000982729 -0.000981511 -0.000980294 -0.000979076 -0.000977859 -0.000976641 -0.000975424 -0.000974206 -0.000972989 -0.000971771 -0.000970553 -0.000969334 -0.000968115 -0.000966896 -0.000965676 -0.000964456 -0.000963235 -0.000962013 -0.00096079 -0.000959567 -0.000958342 -0.000957117 -0.000955891 -0.000954663 -0.000953435 -0.000952205 -0.000950974 -0.000949742 -0.000948508 -0.000947273 -0.000946036 -0.000944798 -0.000943559 -0.000942317 -0.000941074 -0.000939829 -0.000938583 -0.000937334 -0.000936083 -0.000934831 -0.000933576 -0.00093232 -0.000931061 -0.0009298 -0.000928537 -0.000927271 -0.000926003 -0.000924733 -0.00092346 -0.000922185 -0.000920907 -0.000919626 -0.000918343 -0.000917057 -0.000915768 -0.000914476 -0.000913181 -0.000911884 -0.000910583 -0.000909279 -0.000907971 -0.000906661 -0.000905347 -0.000904029 -0.000902708 -0.000901384 -0.000900056 -0.000898724 -0.000897388 -0.000896048 -0.000894704 -0.000893356 -0.000892004 -0.000890647 -0.000889286 -0.000887921 -0.00088655 -0.000885175 -0.000883795 -0.000882409 -0.000881019 -0.000879623 -0.000878221 -0.000876814 -0.0008754 -0.000873981 -0.000872555 -0.000871122 -0.000869683 -0.000868236 -0.000866782 -0.000865321 -0.000863852 -0.000862374 -0.000860888 -0.000859393 -0.000857889 -0.000856375 -0.000854851 -0.000853316 -0.00085177 -0.000850212 -0.000848641 -0.000847058 -0.000845461 -0.000843849 -0.000842221 -0.000840577 -0.000838915 -0.000837235 -0.000835533 -0.00083381 -0.000832062 -0.000830289 -0.000828487 -0.000826653 -0.000824785 -0.000822879 -0.00082093 -0.000818932 -0.000816879 -0.000814765 -0.000812579 -0.000810312 -0.000807951 -0.00080548 -0.000802882 -0.000800137 -0.000797221 -0.000794107 -0.000790765 -0.000787162 -0.000783262 -0.000779031 -0.000774429 -0.00076942 -0.000763969 -0.00075804 -0.000751604 -0.000744631 -0.000737095 -0.000728974 -0.000720248 -0.000710898 -0.000700909 -0.000690268 -0.000678964 -0.000666984 -0.00065432 -0.000640964 -0.000626908 -0.000612146 -0.00059667 -0.000580477 -0.000563559 -0.000545913 -0.000527533 -0.000508416 -0.000488556 -0.00046795 -0.000446595 -0.000424485 -0.000401618 -0.00037799 -0.000353597 -0.000328436 -0.000302503 -0.000275795 -0.000248309 -0.000220041 -0.000190989 -0.000161148 -0.000130515 -9.90879E-05 -6.68624E-05 -3.38357E-05 -4.3242E-09 3.43035E-05 6.87495E-05 0.000103322 0.000138011 0.000172806 0.000207696 0.000242673 0.000277727 0.00031285 0.000348033 +-0.000967611 -0.000966408 -0.000965205 -0.000964003 -0.000962802 -0.000961601 -0.0009604 -0.000959199 -0.000957999 -0.000956798 -0.000955598 -0.000954397 -0.000953197 -0.000951996 -0.000950795 -0.000949594 -0.000948393 -0.000947191 -0.000945989 -0.000944786 -0.000943583 -0.000942379 -0.000941174 -0.000939968 -0.000938762 -0.000937555 -0.000936347 -0.000935137 -0.000933927 -0.000932716 -0.000931503 -0.00093029 -0.000929075 -0.000927858 -0.00092664 -0.000925421 -0.0009242 -0.000922978 -0.000921754 -0.000920529 -0.000919301 -0.000918072 -0.000916841 -0.000915609 -0.000914374 -0.000913137 -0.000911898 -0.000910657 -0.000909414 -0.000908169 -0.000906922 -0.000905672 -0.00090442 -0.000903165 -0.000901908 -0.000900648 -0.000899386 -0.000898121 -0.000896854 -0.000895583 -0.00089431 -0.000893034 -0.000891755 -0.000890473 -0.000889188 -0.000887899 -0.000886608 -0.000885313 -0.000884015 -0.000882713 -0.000881408 -0.000880099 -0.000878787 -0.000877471 -0.000876151 -0.000874827 -0.000873498 -0.000872166 -0.00087083 -0.000869489 -0.000868143 -0.000866793 -0.000865438 -0.000864078 -0.000862714 -0.000861344 -0.000859968 -0.000858587 -0.000857201 -0.000855808 -0.00085441 -0.000853005 -0.000851594 -0.000850176 -0.000848751 -0.000847319 -0.000845879 -0.000844432 -0.000842976 -0.000841512 -0.000840039 -0.000838557 -0.000837065 -0.000835563 -0.00083405 -0.000832527 -0.000830991 -0.000829443 -0.000827883 -0.000826308 -0.000824719 -0.000823114 -0.000821492 -0.000819853 -0.000818194 -0.000816515 -0.000814813 -0.000813087 -0.000811335 -0.000809554 -0.000807741 -0.000805892 -0.000804004 -0.000802072 -0.00080009 -0.000798051 -0.000795948 -0.000793771 -0.000791508 -0.000789147 -0.000786672 -0.000784062 -0.000781298 -0.000778353 -0.0007752 -0.000771807 -0.000768139 -0.000764161 -0.000759834 -0.000755121 -0.000749984 -0.000744388 -0.000738299 -0.000731686 -0.000724521 -0.000716779 -0.000708438 -0.000699479 -0.000689884 -0.000679639 -0.00066873 -0.000657147 -0.000644878 -0.000631916 -0.000618252 -0.000603878 -0.000588789 -0.000572978 -0.000556439 -0.000539168 -0.00052116 -0.000502409 -0.000482912 -0.000462664 -0.000441661 -0.0004199 -0.000397376 -0.000374086 -0.000350026 -0.000325193 -0.000299583 -0.000273193 -0.000246019 -0.000218057 -0.000189305 -0.000159759 -0.000129416 -9.82723E-05 -6.63246E-05 -3.35696E-05 -4.0139E-09 3.40467E-05 6.82468E-05 0.000102584 0.000137048 0.000171628 0.000206312 0.000241093 0.000275959 0.000310903 0.000345915 +-0.000947575 -0.000946388 -0.000945202 -0.000944017 -0.000942832 -0.000941648 -0.000940464 -0.00093928 -0.000938097 -0.000936914 -0.00093573 -0.000934547 -0.000933364 -0.000932181 -0.000930997 -0.000929814 -0.00092863 -0.000927446 -0.000926261 -0.000925076 -0.00092389 -0.000922704 -0.000921517 -0.00092033 -0.000919141 -0.000917952 -0.000916762 -0.000915572 -0.00091438 -0.000913187 -0.000911993 -0.000910798 -0.000909601 -0.000908404 -0.000907205 -0.000906005 -0.000904803 -0.0009036 -0.000902395 -0.000901189 -0.000899981 -0.000898772 -0.00089756 -0.000896347 -0.000895132 -0.000893915 -0.000892697 -0.000891476 -0.000890253 -0.000889028 -0.000887801 -0.000886572 -0.00088534 -0.000884106 -0.00088287 -0.000881631 -0.00088039 -0.000879147 -0.0008779 -0.000876652 -0.0008754 -0.000874146 -0.000872888 -0.000871628 -0.000870365 -0.000869099 -0.00086783 -0.000866558 -0.000865282 -0.000864004 -0.000862721 -0.000861436 -0.000860147 -0.000858854 -0.000857558 -0.000856257 -0.000854953 -0.000853645 -0.000852333 -0.000851017 -0.000849696 -0.000848371 -0.000847041 -0.000845707 -0.000844368 -0.000843024 -0.000841675 -0.00084032 -0.00083896 -0.000837595 -0.000836224 -0.000834847 -0.000833463 -0.000832074 -0.000830677 -0.000829274 -0.000827864 -0.000826446 -0.00082502 -0.000823587 -0.000822145 -0.000820694 -0.000819234 -0.000817765 -0.000816286 -0.000814796 -0.000813295 -0.000811782 -0.000810257 -0.000808719 -0.000807167 -0.000805601 -0.000804018 -0.000802419 -0.000800803 -0.000799167 -0.00079751 -0.00079583 -0.000794126 -0.000792395 -0.000790635 -0.000788842 -0.000787013 -0.000785143 -0.000783228 -0.000781262 -0.000779237 -0.000777144 -0.000774975 -0.000772717 -0.000770355 -0.000767873 -0.00076525 -0.000762464 -0.000759488 -0.000756292 -0.000752843 -0.000749106 -0.000745043 -0.000740615 -0.000735784 -0.000730513 -0.000724766 -0.000718509 -0.000711712 -0.000704349 -0.000696395 -0.000687828 -0.000678629 -0.000668784 -0.000658276 -0.000647094 -0.000635226 -0.000622663 -0.000609397 -0.000595419 -0.000580723 -0.000565301 -0.000549149 -0.00053226 -0.00051463 -0.000496253 -0.000477126 -0.000457243 -0.000436601 -0.000415196 -0.000393023 -0.000370079 -0.00034636 -0.000321863 -0.000296584 -0.000270518 -0.000243664 -0.000216017 -0.000187574 -0.000158331 -0.000128285 -9.74326E-05 -6.57706E-05 -3.32954E-05 -3.72536E-09 3.3782E-05 6.77285E-05 0.000101824 0.000136055 0.000170413 0.000204885 0.000239462 0.000274135 0.000308893 0.000343729 +-0.0009275 -0.000926331 -0.000925162 -0.000923993 -0.000922826 -0.000921658 -0.000920491 -0.000919325 -0.000918158 -0.000916992 -0.000915826 -0.00091466 -0.000913495 -0.000912329 -0.000911163 -0.000909997 -0.00090883 -0.000907664 -0.000906497 -0.00090533 -0.000904162 -0.000902994 -0.000901825 -0.000900655 -0.000899485 -0.000898315 -0.000897143 -0.00089597 -0.000894797 -0.000893623 -0.000892447 -0.000891271 -0.000890093 -0.000888915 -0.000887735 -0.000886553 -0.000885371 -0.000884187 -0.000883002 -0.000881815 -0.000880626 -0.000879436 -0.000878245 -0.000877051 -0.000875856 -0.000874659 -0.000873461 -0.00087226 -0.000871057 -0.000869853 -0.000868646 -0.000867437 -0.000866226 -0.000865013 -0.000863798 -0.00086258 -0.00086136 -0.000860138 -0.000858913 -0.000857685 -0.000856455 -0.000855223 -0.000853987 -0.000852749 -0.000851508 -0.000850265 -0.000849018 -0.000847768 -0.000846515 -0.000845259 -0.000844 -0.000842738 -0.000841472 -0.000840203 -0.00083893 -0.000837653 -0.000836373 -0.000835089 -0.000833801 -0.000832509 -0.000831214 -0.000829913 -0.000828609 -0.0008273 -0.000825986 -0.000824668 -0.000823345 -0.000822017 -0.000820684 -0.000819345 -0.000818001 -0.000816652 -0.000815296 -0.000813934 -0.000812566 -0.000811192 -0.00080981 -0.000808422 -0.000807026 -0.000805623 -0.000804212 -0.000802792 -0.000801364 -0.000799927 -0.00079848 -0.000797024 -0.000795557 -0.000794078 -0.000792589 -0.000791087 -0.000789572 -0.000788043 -0.000786499 -0.00078494 -0.000783364 -0.00078177 -0.000780157 -0.000778523 -0.000776866 -0.000775184 -0.000773475 -0.000771735 -0.000769963 -0.000768153 -0.000766302 -0.000764404 -0.000762453 -0.000760441 -0.00075836 -0.000756198 -0.000753942 -0.000751579 -0.000749088 -0.00074645 -0.00074364 -0.000740629 -0.000737386 -0.000733878 -0.000730066 -0.000725912 -0.000721377 -0.000716422 -0.00071101 -0.000705104 -0.000698673 -0.000691687 -0.000684119 -0.000675945 -0.000667146 -0.000657702 -0.0006476 -0.000636823 -0.000625362 -0.000613205 -0.000600342 -0.000586766 -0.000572469 -0.000557444 -0.000541684 -0.000525185 -0.00050794 -0.000489946 -0.000471196 -0.000451686 -0.000431412 -0.000410371 -0.000388557 -0.000365967 -0.000342597 -0.000318443 -0.000293502 -0.00026777 -0.000241244 -0.000213919 -0.000185793 -0.000156861 -0.000127121 -9.65682E-05 -6.52001E-05 -3.3013E-05 -3.45708E-09 3.35092E-05 6.71943E-05 0.000101039 0.000135032 0.00016916 0.000203414 0.000237782 0.000272254 0.000306821 0.000341474 +-0.000907393 -0.00090624 -0.000905088 -0.000903937 -0.000902786 -0.000901636 -0.000900486 -0.000899337 -0.000898188 -0.000897039 -0.00089589 -0.000894742 -0.000893594 -0.000892445 -0.000891297 -0.000890148 -0.000889 -0.000887851 -0.000886702 -0.000885552 -0.000884403 -0.000883252 -0.000882102 -0.00088095 -0.000879799 -0.000878646 -0.000877493 -0.000876339 -0.000875184 -0.000874028 -0.000872871 -0.000871714 -0.000870555 -0.000869395 -0.000868234 -0.000867072 -0.000865909 -0.000864744 -0.000863578 -0.000862411 -0.000861242 -0.000860071 -0.000858899 -0.000857726 -0.00085655 -0.000855374 -0.000854195 -0.000853014 -0.000851832 -0.000850648 -0.000849462 -0.000848273 -0.000847083 -0.000845891 -0.000844696 -0.0008435 -0.000842301 -0.0008411 -0.000839896 -0.00083869 -0.000837482 -0.000836271 -0.000835057 -0.000833841 -0.000832622 -0.000831401 -0.000830176 -0.000828949 -0.000827719 -0.000826485 -0.000825249 -0.00082401 -0.000822767 -0.000821521 -0.000820272 -0.000819019 -0.000817763 -0.000816503 -0.00081524 -0.000813972 -0.000812701 -0.000811425 -0.000810146 -0.000808862 -0.000807574 -0.000806282 -0.000804985 -0.000803683 -0.000802376 -0.000801064 -0.000799747 -0.000798424 -0.000797096 -0.000795763 -0.000794423 -0.000793077 -0.000791724 -0.000790365 -0.000788999 -0.000787626 -0.000786245 -0.000784856 -0.000783459 -0.000782054 -0.000780639 -0.000779216 -0.000777782 -0.000776338 -0.000774883 -0.000773416 -0.000771938 -0.000770446 -0.000768941 -0.00076742 -0.000765885 -0.000764332 -0.000762761 -0.000761171 -0.000759559 -0.000757925 -0.000756265 -0.000754578 -0.00075286 -0.000751108 -0.000749318 -0.000747485 -0.000745604 -0.000743668 -0.000741669 -0.000739598 -0.000737442 -0.000735189 -0.000732822 -0.000730322 -0.000727666 -0.000724828 -0.000721779 -0.000718486 -0.000714913 -0.000711021 -0.00070677 -0.000702122 -0.000697037 -0.000691476 -0.000685406 -0.000678794 -0.000671611 -0.000663831 -0.000655432 -0.000646394 -0.0006367 -0.000626334 -0.000615284 -0.000603537 -0.000591085 -0.000577917 -0.000564025 -0.000549404 -0.000534044 -0.000517942 -0.00050109 -0.000483485 -0.000465119 -0.00044599 -0.000426093 -0.000405423 -0.000383976 -0.000361748 -0.000338735 -0.000314933 -0.000290338 -0.000264948 -0.000238757 -0.000211763 -0.000183962 -0.000155349 -0.000125923 -9.56786E-05 -6.46129E-05 -3.27222E-05 -3.20765E-09 3.32281E-05 6.66438E-05 0.000100231 0.000133977 0.000167869 0.000201897 0.000236049 0.000270315 0.000304685 0.000339149 +-0.000887257 -0.000886121 -0.000884987 -0.000883852 -0.000882719 -0.000881586 -0.000880453 -0.000879321 -0.00087819 -0.000877058 -0.000875927 -0.000874796 -0.000873666 -0.000872535 -0.000871404 -0.000870273 -0.000869143 -0.000868012 -0.000866881 -0.000865749 -0.000864617 -0.000863485 -0.000862353 -0.00086122 -0.000860086 -0.000858952 -0.000857817 -0.000856682 -0.000855545 -0.000854408 -0.00085327 -0.000852132 -0.000850992 -0.000849851 -0.000848709 -0.000847566 -0.000846422 -0.000845276 -0.00084413 -0.000842982 -0.000841832 -0.000840682 -0.000839529 -0.000838376 -0.00083722 -0.000836063 -0.000834905 -0.000833744 -0.000832582 -0.000831418 -0.000830253 -0.000829085 -0.000827916 -0.000826744 -0.000825571 -0.000824395 -0.000823217 -0.000822037 -0.000820855 -0.00081967 -0.000818483 -0.000817294 -0.000816102 -0.000814908 -0.000813711 -0.000812512 -0.00081131 -0.000810105 -0.000808898 -0.000807687 -0.000806474 -0.000805257 -0.000804038 -0.000802815 -0.000801589 -0.00080036 -0.000799128 -0.000797892 -0.000796653 -0.00079541 -0.000794163 -0.000792912 -0.000791658 -0.000790399 -0.000789136 -0.00078787 -0.000786598 -0.000785322 -0.000784042 -0.000782756 -0.000781466 -0.000780171 -0.00077887 -0.000777564 -0.000776252 -0.000774934 -0.00077361 -0.00077228 -0.000770943 -0.0007696 -0.000768249 -0.000766891 -0.000765525 -0.000764151 -0.000762768 -0.000761377 -0.000759976 -0.000758566 -0.000757145 -0.000755714 -0.000754271 -0.000752815 -0.000751347 -0.000749865 -0.000748369 -0.000746856 -0.000745327 -0.00074378 -0.000742213 -0.000740624 -0.000739013 -0.000737375 -0.00073571 -0.000734013 -0.000732282 -0.000730512 -0.000728698 -0.000726834 -0.000724913 -0.000722926 -0.000720864 -0.000718715 -0.000716463 -0.000714091 -0.000711579 -0.000708902 -0.000706034 -0.000702944 -0.000699595 -0.000695952 -0.000691974 -0.000687622 -0.000682854 -0.000677631 -0.000671916 -0.000665674 -0.000658874 -0.000651488 -0.00064349 -0.000634859 -0.000625576 -0.000615625 -0.00060499 -0.00059366 -0.000581623 -0.000568869 -0.00055539 -0.000541179 -0.000526227 -0.000510528 -0.000494077 -0.000476868 -0.000458895 -0.000440154 -0.000420641 -0.00040035 -0.000379278 -0.00035742 -0.000334771 -0.00031133 -0.00028709 -0.000262049 -0.000236203 -0.000209547 -0.000182079 -0.000153795 -0.000124691 -9.47633E-05 -6.40085E-05 -3.24229E-05 -2.97579E-09 3.29385E-05 6.60768E-05 9.93983E-05 0.00013289 0.000166539 0.000200334 0.000234263 0.000268316 0.000302483 0.000336753 +-0.000867098 -0.00086598 -0.000864862 -0.000863745 -0.000862629 -0.000861514 -0.000860399 -0.000859284 -0.00085817 -0.000857056 -0.000855942 -0.000854829 -0.000853716 -0.000852603 -0.00085149 -0.000850377 -0.000849264 -0.000848151 -0.000847038 -0.000845925 -0.000844811 -0.000843697 -0.000842583 -0.000841468 -0.000840353 -0.000839237 -0.000838121 -0.000837004 -0.000835887 -0.000834768 -0.000833649 -0.000832529 -0.000831408 -0.000830287 -0.000829164 -0.00082804 -0.000826915 -0.000825789 -0.000824662 -0.000823533 -0.000822403 -0.000821272 -0.00082014 -0.000819006 -0.000817871 -0.000816734 -0.000815595 -0.000814455 -0.000813313 -0.00081217 -0.000811025 -0.000809878 -0.000808729 -0.000807578 -0.000806426 -0.000805271 -0.000804114 -0.000802955 -0.000801795 -0.000800631 -0.000799466 -0.000798299 -0.000797129 -0.000795956 -0.000794782 -0.000793604 -0.000792425 -0.000791242 -0.000790057 -0.000788869 -0.000787679 -0.000786485 -0.000785289 -0.00078409 -0.000782887 -0.000781682 -0.000780473 -0.000779261 -0.000778046 -0.000776827 -0.000775605 -0.000774379 -0.000773149 -0.000771916 -0.000770678 -0.000769437 -0.000768191 -0.000766941 -0.000765687 -0.000764428 -0.000763164 -0.000761895 -0.000760622 -0.000759343 -0.000758059 -0.000756769 -0.000755474 -0.000754172 -0.000752865 -0.00075155 -0.000750229 -0.000748902 -0.000747566 -0.000746223 -0.000744872 -0.000743513 -0.000742145 -0.000740768 -0.000739381 -0.000737984 -0.000736576 -0.000735156 -0.000733725 -0.000732281 -0.000730822 -0.00072935 -0.000727861 -0.000726356 -0.000724832 -0.000723288 -0.000721723 -0.000720135 -0.00071852 -0.000716877 -0.000715202 -0.000713491 -0.000711741 -0.000709945 -0.000708098 -0.000706192 -0.000704217 -0.000702164 -0.000700019 -0.000697767 -0.000695389 -0.000692863 -0.000690164 -0.000687262 -0.000684126 -0.000680717 -0.000676999 -0.00067293 -0.000668469 -0.000663574 -0.000658207 -0.000652331 -0.00064591 -0.000638916 -0.000631319 -0.000623097 -0.000614229 -0.000604695 -0.00059448 -0.000583571 -0.000571955 -0.000559622 -0.000546562 -0.000532767 -0.000518229 -0.000502941 -0.000486898 -0.000470093 -0.000452521 -0.000434176 -0.000415054 -0.000395151 -0.000374461 -0.000352981 -0.000330706 -0.000307632 -0.000283756 -0.000259073 -0.000233579 -0.000207271 -0.000180146 -0.000152198 -0.000123424 -9.3822E-05 -6.33867E-05 -3.21148E-05 -2.76028E-09 3.26403E-05 6.54929E-05 9.85408E-05 0.00013177 0.000165169 0.000198724 0.000232424 0.000266257 0.000300214 0.000334283 +-0.000846922 -0.000845821 -0.000844721 -0.000843621 -0.000842522 -0.000841424 -0.000840327 -0.00083923 -0.000838133 -0.000837037 -0.000835941 -0.000834846 -0.00083375 -0.000832655 -0.00083156 -0.000830465 -0.00082937 -0.000828275 -0.00082718 -0.000826085 -0.00082499 -0.000823894 -0.000822798 -0.000821702 -0.000820605 -0.000819508 -0.00081841 -0.000817312 -0.000816213 -0.000815114 -0.000814013 -0.000812912 -0.00081181 -0.000810708 -0.000809604 -0.0008085 -0.000807394 -0.000806287 -0.000805179 -0.000804071 -0.00080296 -0.000801849 -0.000800736 -0.000799622 -0.000798507 -0.00079739 -0.000796272 -0.000795152 -0.000794031 -0.000792908 -0.000791783 -0.000790657 -0.000789529 -0.000788399 -0.000787267 -0.000786133 -0.000784998 -0.00078386 -0.000782721 -0.000781579 -0.000780435 -0.000779289 -0.000778141 -0.000776991 -0.000775838 -0.000774683 -0.000773526 -0.000772366 -0.000771203 -0.000770038 -0.00076887 -0.0007677 -0.000766527 -0.00076535 -0.000764172 -0.00076299 -0.000761805 -0.000760616 -0.000759425 -0.000758231 -0.000757033 -0.000755831 -0.000754626 -0.000753418 -0.000752205 -0.000750989 -0.000749769 -0.000748545 -0.000747316 -0.000746084 -0.000744846 -0.000743605 -0.000742358 -0.000741106 -0.00073985 -0.000738588 -0.000737321 -0.000736048 -0.000734769 -0.000733484 -0.000732192 -0.000730894 -0.000729589 -0.000728277 -0.000726957 -0.00072563 -0.000724294 -0.00072295 -0.000721596 -0.000720233 -0.000718859 -0.000717475 -0.00071608 -0.000714672 -0.000713252 -0.000711818 -0.000710369 -0.000708904 -0.000707423 -0.000705923 -0.000704403 -0.000702862 -0.000701296 -0.000699705 -0.000698084 -0.00069643 -0.000694741 -0.00069301 -0.000691233 -0.000689402 -0.000687511 -0.000685548 -0.000683503 -0.000681362 -0.000679108 -0.000676722 -0.00067418 -0.000671455 -0.000668516 -0.000665329 -0.000661857 -0.000658058 -0.000653892 -0.000649315 -0.000644287 -0.000638769 -0.000632724 -0.000626118 -0.000618922 -0.000611109 -0.000602657 -0.000593544 -0.000583753 -0.00057327 -0.00056208 -0.000550173 -0.000537538 -0.000524166 -0.000510049 -0.00049518 -0.000479551 -0.000463158 -0.000445994 -0.000428053 -0.000409331 -0.000389823 -0.000369524 -0.00034843 -0.000326537 -0.00030384 -0.000280335 -0.000256018 -0.000230886 -0.000204934 -0.000178159 -0.000150556 -0.000122122 -9.2854E-05 -6.2747E-05 -3.17978E-05 -2.55998E-09 3.23333E-05 6.48917E-05 9.76579E-05 0.000130618 0.000163758 0.000197066 0.000230529 0.000264136 0.000297877 0.000331739 +-0.000826733 -0.00082565 -0.000824567 -0.000823485 -0.000822404 -0.000821323 -0.000820244 -0.000819164 -0.000818085 -0.000817007 -0.000815929 -0.000814851 -0.000813774 -0.000812697 -0.00081162 -0.000810543 -0.000809466 -0.000808389 -0.000807312 -0.000806235 -0.000805158 -0.000804081 -0.000803004 -0.000801926 -0.000800848 -0.000799769 -0.00079869 -0.000797611 -0.00079653 -0.00079545 -0.000794368 -0.000793286 -0.000792204 -0.00079112 -0.000790036 -0.00078895 -0.000787864 -0.000786777 -0.000785689 -0.0007846 -0.000783509 -0.000782417 -0.000781325 -0.000780231 -0.000779135 -0.000778039 -0.00077694 -0.000775841 -0.00077474 -0.000773637 -0.000772533 -0.000771428 -0.00077032 -0.000769211 -0.0007681 -0.000766988 -0.000765873 -0.000764757 -0.000763639 -0.000762519 -0.000761397 -0.000760272 -0.000759146 -0.000758017 -0.000756887 -0.000755754 -0.000754619 -0.000753481 -0.000752341 -0.000751199 -0.000750054 -0.000748906 -0.000747756 -0.000746603 -0.000745447 -0.000744289 -0.000743128 -0.000741963 -0.000740796 -0.000739625 -0.000738452 -0.000737275 -0.000736094 -0.000734911 -0.000733723 -0.000732532 -0.000731338 -0.000730139 -0.000728937 -0.00072773 -0.000726519 -0.000725304 -0.000724084 -0.000722859 -0.00072163 -0.000720396 -0.000719156 -0.000717912 -0.000716661 -0.000715405 -0.000714143 -0.000712875 -0.0007116 -0.000710318 -0.000709029 -0.000707733 -0.000706429 -0.000705117 -0.000703796 -0.000702466 -0.000701127 -0.000699777 -0.000698417 -0.000697046 -0.000695663 -0.000694267 -0.000692857 -0.000691432 -0.000689992 -0.000688535 -0.000687059 -0.000685563 -0.000684046 -0.000682504 -0.000680935 -0.000679337 -0.000677705 -0.000676036 -0.000674326 -0.000672567 -0.000670753 -0.000668875 -0.000666924 -0.000664886 -0.000662748 -0.000660491 -0.000658095 -0.000655534 -0.00065278 -0.000649801 -0.000646559 -0.000643017 -0.000639132 -0.000634862 -0.000630164 -0.000624996 -0.00061932 -0.000613099 -0.000606301 -0.000598897 -0.000590861 -0.000582171 -0.000572808 -0.000562754 -0.000551996 -0.000540521 -0.000528317 -0.000515374 -0.000501685 -0.000487241 -0.000472036 -0.000456061 -0.000439312 -0.000421784 -0.000403469 -0.000384365 -0.000364465 -0.000343766 -0.000322262 -0.00029995 -0.000276825 -0.000252884 -0.000228121 -0.000202534 -0.000176118 -0.00014887 -0.000120784 -9.1859E-05 -6.20893E-05 -3.14717E-05 -2.37385E-09 3.20174E-05 6.4273E-05 9.67492E-05 0.000129431 0.000162306 0.000195359 0.000228579 0.000261953 0.00029547 0.000329119 +-0.000806539 -0.000805473 -0.000804408 -0.000803343 -0.00080228 -0.000801217 -0.000800155 -0.000799093 -0.000798032 -0.000796972 -0.000795912 -0.000794852 -0.000793793 -0.000792734 -0.000791675 -0.000790616 -0.000789557 -0.000788499 -0.00078744 -0.000786382 -0.000785323 -0.000784264 -0.000783205 -0.000782146 -0.000781087 -0.000780027 -0.000778966 -0.000777906 -0.000776845 -0.000775783 -0.000774721 -0.000773658 -0.000772594 -0.00077153 -0.000770465 -0.000769399 -0.000768332 -0.000767264 -0.000766196 -0.000765126 -0.000764055 -0.000762984 -0.000761911 -0.000760837 -0.000759761 -0.000758685 -0.000757607 -0.000756528 -0.000755447 -0.000754365 -0.000753281 -0.000752196 -0.00075111 -0.000750022 -0.000748932 -0.00074784 -0.000746747 -0.000745652 -0.000744555 -0.000743456 -0.000742356 -0.000741253 -0.000740149 -0.000739042 -0.000737933 -0.000736823 -0.00073571 -0.000734594 -0.000733477 -0.000732357 -0.000731235 -0.00073011 -0.000728983 -0.000727853 -0.000726721 -0.000725586 -0.000724448 -0.000723307 -0.000722164 -0.000721018 -0.000719868 -0.000718716 -0.00071756 -0.000716401 -0.000715238 -0.000714073 -0.000712903 -0.00071173 -0.000710553 -0.000709372 -0.000708188 -0.000706999 -0.000705806 -0.000704608 -0.000703406 -0.000702199 -0.000700988 -0.000699771 -0.000698549 -0.000697321 -0.000696088 -0.000694849 -0.000693604 -0.000692352 -0.000691094 -0.000689829 -0.000688556 -0.000687276 -0.000685987 -0.000684691 -0.000683385 -0.00068207 -0.000680745 -0.000679409 -0.000678062 -0.000676703 -0.000675331 -0.000673946 -0.000672546 -0.000671131 -0.000669698 -0.000668246 -0.000666775 -0.000665281 -0.000663763 -0.000662217 -0.000660642 -0.000659032 -0.000657384 -0.000655693 -0.000653953 -0.000652155 -0.000650291 -0.00064835 -0.00064632 -0.000644183 -0.000641921 -0.000639513 -0.000636931 -0.000634145 -0.00063112 -0.00062782 -0.000624203 -0.000620226 -0.000615846 -0.000611019 -0.000605704 -0.000599863 -0.000593459 -0.000586462 -0.000578843 -0.000570578 -0.000561644 -0.000552025 -0.000541702 -0.000530664 -0.000518897 -0.000506391 -0.000493136 -0.000479124 -0.000464348 -0.000448801 -0.000432475 -0.000415366 -0.000397468 -0.000378775 -0.000359282 -0.000338986 -0.00031788 -0.000295962 -0.000273226 -0.000249668 -0.000225284 -0.000200071 -0.000174023 -0.000147137 -0.00011941 -9.08363E-05 -6.14132E-05 -3.11364E-05 -2.20091E-09 3.16923E-05 6.36364E-05 9.58142E-05 0.00012821 0.000160811 0.000193602 0.000226571 0.000259705 0.000292992 0.000326422 +-0.000786344 -0.000785296 -0.000784248 -0.000783202 -0.000782156 -0.000781111 -0.000780067 -0.000779024 -0.00077798 -0.000776938 -0.000775896 -0.000774854 -0.000773813 -0.000772772 -0.000771731 -0.000770691 -0.000769651 -0.00076861 -0.00076757 -0.00076653 -0.00076549 -0.00076445 -0.00076341 -0.000762369 -0.000761328 -0.000760287 -0.000759246 -0.000758204 -0.000757162 -0.000756119 -0.000755076 -0.000754032 -0.000752988 -0.000751943 -0.000750897 -0.00074985 -0.000748803 -0.000747755 -0.000746706 -0.000745656 -0.000744605 -0.000743553 -0.0007425 -0.000741446 -0.000740391 -0.000739335 -0.000738277 -0.000737218 -0.000736158 -0.000735097 -0.000734034 -0.000732969 -0.000731904 -0.000730836 -0.000729767 -0.000728697 -0.000727625 -0.000726551 -0.000725476 -0.000724398 -0.000723319 -0.000722239 -0.000721156 -0.000720071 -0.000718984 -0.000717896 -0.000716805 -0.000715712 -0.000714617 -0.00071352 -0.00071242 -0.000711318 -0.000710214 -0.000709108 -0.000707998 -0.000706887 -0.000705773 -0.000704656 -0.000703536 -0.000702414 -0.000701288 -0.00070016 -0.000699029 -0.000697894 -0.000696757 -0.000695616 -0.000694472 -0.000693324 -0.000692173 -0.000691018 -0.000689859 -0.000688696 -0.00068753 -0.000686359 -0.000685184 -0.000684004 -0.00068282 -0.000681631 -0.000680437 -0.000679238 -0.000678034 -0.000676824 -0.000675608 -0.000674386 -0.000673158 -0.000671923 -0.000670682 -0.000669433 -0.000668177 -0.000666912 -0.00066564 -0.000664358 -0.000663067 -0.000661767 -0.000660456 -0.000659133 -0.000657799 -0.000656452 -0.000655092 -0.000653717 -0.000652326 -0.000650918 -0.000649491 -0.000648044 -0.000646574 -0.00064508 -0.000643558 -0.000642005 -0.000640417 -0.000638791 -0.000637119 -0.000635397 -0.000633615 -0.000631765 -0.000629834 -0.000627809 -0.000625673 -0.000623405 -0.000620982 -0.000618376 -0.000615554 -0.000612481 -0.000609116 -0.000605419 -0.000601343 -0.000596846 -0.000591884 -0.000586415 -0.000580401 -0.000573808 -0.000566605 -0.000558765 -0.000550264 -0.000541081 -0.000531198 -0.000520602 -0.000509277 -0.000497213 -0.0004844 -0.000470827 -0.000456488 -0.000441374 -0.00042548 -0.000408798 -0.000391324 -0.000373051 -0.000353974 -0.000334089 -0.00031339 -0.000291874 -0.000269535 -0.00024637 -0.000222374 -0.000197542 -0.000171872 -0.000145359 -0.000117998 -8.97856E-05 -6.07182E-05 -3.07917E-05 -2.04023E-09 3.1358E-05 6.29816E-05 9.48524E-05 0.000126955 0.000159273 0.000191795 0.000224505 0.000257392 0.000290442 0.000323645 +-0.000766155 -0.000765125 -0.000764096 -0.000763067 -0.00076204 -0.000761013 -0.000759986 -0.000758961 -0.000757936 -0.000756911 -0.000755888 -0.000754864 -0.000753841 -0.000752819 -0.000751796 -0.000750774 -0.000749752 -0.00074873 -0.000747709 -0.000746687 -0.000745666 -0.000744644 -0.000743623 -0.000742601 -0.000741579 -0.000740557 -0.000739534 -0.000738511 -0.000737488 -0.000736465 -0.000735441 -0.000734416 -0.000733391 -0.000732365 -0.000731339 -0.000730312 -0.000729284 -0.000728256 -0.000727227 -0.000726196 -0.000725165 -0.000724133 -0.0007231 -0.000722066 -0.000721031 -0.000719995 -0.000718958 -0.00071792 -0.00071688 -0.000715839 -0.000714797 -0.000713753 -0.000712708 -0.000711662 -0.000710614 -0.000709565 -0.000708514 -0.000707461 -0.000706407 -0.000705351 -0.000704294 -0.000703235 -0.000702174 -0.000701111 -0.000700046 -0.00069898 -0.000697911 -0.00069684 -0.000695768 -0.000694693 -0.000693616 -0.000692537 -0.000691456 -0.000690372 -0.000689286 -0.000688198 -0.000687107 -0.000686014 -0.000684918 -0.00068382 -0.000682718 -0.000681614 -0.000680507 -0.000679398 -0.000678285 -0.000677169 -0.00067605 -0.000674927 -0.000673801 -0.000672672 -0.000671539 -0.000670403 -0.000669262 -0.000668118 -0.00066697 -0.000665817 -0.000664661 -0.000663499 -0.000662333 -0.000661162 -0.000659986 -0.000658805 -0.000657619 -0.000656426 -0.000655228 -0.000654024 -0.000652813 -0.000651595 -0.00065037 -0.000649138 -0.000647898 -0.00064665 -0.000645393 -0.000644127 -0.000642851 -0.000641565 -0.000640267 -0.000638958 -0.000637636 -0.0006363 -0.00063495 -0.000633584 -0.000632201 -0.000630799 -0.000629377 -0.000627931 -0.000626461 -0.000624963 -0.000623433 -0.000621867 -0.000620262 -0.00061861 -0.000616906 -0.00061514 -0.000613303 -0.000611381 -0.000609361 -0.000607223 -0.000604947 -0.000602508 -0.000599874 -0.000597013 -0.000593886 -0.000590453 -0.000586668 -0.000582488 -0.000577867 -0.000572763 -0.000567132 -0.00056094 -0.00055415 -0.000546735 -0.000538666 -0.000529923 -0.000520484 -0.000510334 -0.000499457 -0.000487841 -0.000475475 -0.000462348 -0.000448453 -0.000433781 -0.000418325 -0.000402079 -0.000385036 -0.000367191 -0.000348538 -0.000329073 -0.00030879 -0.000287684 -0.000265752 -0.000242988 -0.000219388 -0.000194949 -0.000169665 -0.000143532 -0.000116548 -8.87063E-05 -6.00042E-05 -3.04374E-05 -1.89097E-09 3.10142E-05 6.23083E-05 9.38632E-05 0.000125663 0.000157692 0.000189935 0.00022238 0.000255012 0.000287819 0.000320788 +-0.00074598 -0.000744968 -0.000743956 -0.000742946 -0.000741936 -0.000740927 -0.000739919 -0.000738912 -0.000737905 -0.000736899 -0.000735893 -0.000734888 -0.000733884 -0.00073288 -0.000731876 -0.000730872 -0.000729869 -0.000728865 -0.000727862 -0.00072686 -0.000725857 -0.000724854 -0.000723851 -0.000722848 -0.000721845 -0.000720842 -0.000719838 -0.000718835 -0.000717831 -0.000716826 -0.000715822 -0.000714816 -0.000713811 -0.000712804 -0.000711798 -0.00071079 -0.000709782 -0.000708773 -0.000707764 -0.000706753 -0.000705742 -0.00070473 -0.000703717 -0.000702704 -0.000701689 -0.000700673 -0.000699656 -0.000698638 -0.000697619 -0.000696598 -0.000695577 -0.000694554 -0.00069353 -0.000692504 -0.000691478 -0.000690449 -0.00068942 -0.000688389 -0.000687356 -0.000686322 -0.000685286 -0.000684248 -0.000683209 -0.000682168 -0.000681125 -0.000680081 -0.000679034 -0.000677986 -0.000676936 -0.000675884 -0.00067483 -0.000673773 -0.000672715 -0.000671655 -0.000670592 -0.000669527 -0.000668459 -0.00066739 -0.000666317 -0.000665243 -0.000664165 -0.000663086 -0.000662003 -0.000660918 -0.000659829 -0.000658738 -0.000657644 -0.000656547 -0.000655446 -0.000654343 -0.000653236 -0.000652125 -0.000651011 -0.000649893 -0.000648771 -0.000647646 -0.000646516 -0.000645382 -0.000644244 -0.000643101 -0.000641953 -0.0006408 -0.000639643 -0.00063848 -0.000637311 -0.000636136 -0.000634956 -0.000633769 -0.000632576 -0.000631375 -0.000630167 -0.000628952 -0.000627728 -0.000626496 -0.000625255 -0.000624004 -0.000622742 -0.00062147 -0.000620186 -0.000618889 -0.000617579 -0.000616254 -0.000614913 -0.000613555 -0.000612178 -0.00061078 -0.00060936 -0.000607914 -0.000606439 -0.000604932 -0.000603389 -0.000601805 -0.000600173 -0.000598487 -0.000596736 -0.000594911 -0.000592998 -0.000590981 -0.000588841 -0.000586555 -0.000584096 -0.000581432 -0.000578527 -0.000575342 -0.000571834 -0.000567957 -0.000563666 -0.000558914 -0.00055366 -0.000547861 -0.000541482 -0.000534489 -0.000526854 -0.000518552 -0.00050956 -0.00049986 -0.000489435 -0.000478273 -0.00046636 -0.000453686 -0.000440242 -0.000426019 -0.000411009 -0.000395206 -0.000378603 -0.000361194 -0.000342974 -0.000323937 -0.000304077 -0.000283392 -0.000261874 -0.000239521 -0.000216327 -0.000192288 -0.0001674 -0.000141658 -0.000115059 -8.7598E-05 -5.92707E-05 -3.00734E-05 -1.75234E-09 3.06608E-05 6.1616E-05 9.28463E-05 0.000124335 0.000156066 0.000188024 0.000220194 0.000252564 0.00028512 0.00031785 +-0.000725824 -0.00072483 -0.000723837 -0.000722845 -0.000721853 -0.000720863 -0.000719873 -0.000718884 -0.000717895 -0.000716908 -0.000715921 -0.000714934 -0.000713948 -0.000712962 -0.000711977 -0.000710992 -0.000710007 -0.000709022 -0.000708038 -0.000707054 -0.00070607 -0.000705086 -0.000704102 -0.000703118 -0.000702134 -0.00070115 -0.000700166 -0.000699181 -0.000698196 -0.000697211 -0.000696226 -0.00069524 -0.000694254 -0.000693267 -0.00069228 -0.000691292 -0.000690303 -0.000689314 -0.000688325 -0.000687334 -0.000686343 -0.000685351 -0.000684358 -0.000683365 -0.00068237 -0.000681375 -0.000680378 -0.000679381 -0.000678382 -0.000677382 -0.000676381 -0.000675379 -0.000674376 -0.000673372 -0.000672366 -0.000671359 -0.00067035 -0.00066934 -0.000668329 -0.000667316 -0.000666302 -0.000665286 -0.000664269 -0.00066325 -0.000662229 -0.000661207 -0.000660182 -0.000659157 -0.000658129 -0.000657099 -0.000656068 -0.000655034 -0.000653999 -0.000652961 -0.000651921 -0.00065088 -0.000649836 -0.000648789 -0.000647741 -0.00064669 -0.000645636 -0.000644581 -0.000643522 -0.000642461 -0.000641398 -0.000640331 -0.000639262 -0.00063819 -0.000637114 -0.000636036 -0.000634955 -0.00063387 -0.000632782 -0.00063169 -0.000630595 -0.000629496 -0.000628393 -0.000627286 -0.000626175 -0.00062506 -0.000623941 -0.000622816 -0.000621687 -0.000620553 -0.000619414 -0.000618269 -0.000617119 -0.000615962 -0.0006148 -0.00061363 -0.000612454 -0.000611271 -0.00061008 -0.000608882 -0.000607674 -0.000606458 -0.000605232 -0.000603996 -0.000602749 -0.00060149 -0.000600219 -0.000598934 -0.000597634 -0.000596319 -0.000594986 -0.000593635 -0.000592262 -0.000590866 -0.000589444 -0.000587994 -0.00058651 -0.00058499 -0.000583426 -0.000581814 -0.000580145 -0.00057841 -0.000576597 -0.000574691 -0.000572677 -0.000570533 -0.000568234 -0.000565753 -0.000563055 -0.000560102 -0.000556854 -0.000553265 -0.000549289 -0.00054488 -0.000539991 -0.000534579 -0.000528605 -0.000522033 -0.00051483 -0.000506969 -0.000498426 -0.000489179 -0.000479212 -0.000468508 -0.000457055 -0.00044484 -0.000431853 -0.000418086 -0.00040353 -0.000388178 -0.000372023 -0.000355059 -0.000337279 -0.000318679 -0.000299252 -0.000278995 -0.000257902 -0.000235968 -0.000213189 -0.00018956 -0.000165077 -0.000139736 -0.000113531 -8.64601E-05 -5.85175E-05 -2.96994E-05 -1.62358E-09 3.02976E-05 6.09046E-05 9.1801E-05 0.00012297 0.000154394 0.000186058 0.000217947 0.000250048 0.000282346 0.000314828 +-0.000705695 -0.000704719 -0.000703745 -0.000702771 -0.000701798 -0.000700826 -0.000699854 -0.000698884 -0.000697914 -0.000696945 -0.000695976 -0.000695008 -0.00069404 -0.000693073 -0.000692107 -0.00069114 -0.000690174 -0.000689209 -0.000688243 -0.000687278 -0.000686313 -0.000685348 -0.000684383 -0.000683418 -0.000682453 -0.000681488 -0.000680523 -0.000679557 -0.000678592 -0.000677626 -0.00067666 -0.000675694 -0.000674727 -0.00067376 -0.000672792 -0.000671824 -0.000670856 -0.000669886 -0.000668917 -0.000667946 -0.000666975 -0.000666003 -0.000665031 -0.000664057 -0.000663083 -0.000662108 -0.000661132 -0.000660155 -0.000659177 -0.000658197 -0.000657217 -0.000656236 -0.000655254 -0.00065427 -0.000653286 -0.0006523 -0.000651313 -0.000650324 -0.000649334 -0.000648343 -0.00064735 -0.000646356 -0.00064536 -0.000644363 -0.000643364 -0.000642364 -0.000641362 -0.000640359 -0.000639353 -0.000638346 -0.000637337 -0.000636326 -0.000635314 -0.000634299 -0.000633282 -0.000632264 -0.000631243 -0.00063022 -0.000629195 -0.000628168 -0.000627139 -0.000626107 -0.000625073 -0.000624036 -0.000622997 -0.000621955 -0.00062091 -0.000619863 -0.000618813 -0.00061776 -0.000616704 -0.000615645 -0.000614583 -0.000613517 -0.000612448 -0.000611376 -0.0006103 -0.00060922 -0.000608136 -0.000607049 -0.000605957 -0.000604861 -0.00060376 -0.000602654 -0.000601544 -0.000600429 -0.000599308 -0.000598182 -0.00059705 -0.000595911 -0.000594767 -0.000593615 -0.000592457 -0.000591291 -0.000590117 -0.000588935 -0.000587744 -0.000586543 -0.000585332 -0.000584111 -0.000582878 -0.000581632 -0.000580373 -0.000579099 -0.000577809 -0.000576502 -0.000575176 -0.000573829 -0.000572458 -0.000571061 -0.000569634 -0.000568174 -0.000566676 -0.000565134 -0.000563541 -0.00056189 -0.000560169 -0.000558367 -0.000556468 -0.000554455 -0.000552305 -0.000549991 -0.000547485 -0.000544749 -0.000541744 -0.000538427 -0.000534752 -0.00053067 -0.000526136 -0.000521102 -0.000515527 -0.00050937 -0.000502597 -0.000495178 -0.000487084 -0.000478294 -0.000468787 -0.000458547 -0.000447558 -0.000435808 -0.000423286 -0.000409982 -0.000395888 -0.000380994 -0.000365295 -0.000348783 -0.000331453 -0.000313298 -0.000294313 -0.000274493 -0.000253833 -0.000232328 -0.000209973 -0.000186763 -0.000162695 -0.000137763 -0.000111964 -8.52922E-05 -5.77442E-05 -2.93153E-05 -1.50403E-09 2.99244E-05 6.01736E-05 9.0727E-05 0.000121567 0.000152676 0.000184038 0.000215638 0.000247461 0.000279493 0.000311721 +-0.000685601 -0.000684644 -0.000683687 -0.000682732 -0.000681778 -0.000680824 -0.000679871 -0.000678919 -0.000677968 -0.000677017 -0.000676067 -0.000675118 -0.000674169 -0.000673221 -0.000672273 -0.000671325 -0.000670378 -0.000669432 -0.000668485 -0.000667539 -0.000666593 -0.000665647 -0.000664701 -0.000663755 -0.000662809 -0.000661864 -0.000660918 -0.000659972 -0.000659026 -0.000658079 -0.000657133 -0.000656186 -0.000655239 -0.000654291 -0.000653343 -0.000652395 -0.000651446 -0.000650497 -0.000649547 -0.000648597 -0.000647646 -0.000646694 -0.000645741 -0.000644788 -0.000643834 -0.00064288 -0.000641924 -0.000640968 -0.00064001 -0.000639052 -0.000638093 -0.000637132 -0.000636171 -0.000635208 -0.000634245 -0.00063328 -0.000632314 -0.000631347 -0.000630378 -0.000629409 -0.000628438 -0.000627465 -0.000626491 -0.000625516 -0.000624539 -0.000623561 -0.000622581 -0.0006216 -0.000620617 -0.000619632 -0.000618646 -0.000617658 -0.000616668 -0.000615676 -0.000614683 -0.000613687 -0.00061269 -0.00061169 -0.000610689 -0.000609685 -0.00060868 -0.000607672 -0.000606662 -0.000605649 -0.000604634 -0.000603617 -0.000602597 -0.000601575 -0.00060055 -0.000599522 -0.000598491 -0.000597458 -0.000596421 -0.000595382 -0.000594339 -0.000593293 -0.000592244 -0.000591191 -0.000590134 -0.000589074 -0.000588009 -0.000586941 -0.000585868 -0.000584791 -0.00058371 -0.000582623 -0.000581532 -0.000580436 -0.000579334 -0.000578226 -0.000577112 -0.000575992 -0.000574866 -0.000573732 -0.000572591 -0.000571443 -0.000570286 -0.00056912 -0.000567945 -0.00056676 -0.000565564 -0.000564357 -0.000563137 -0.000561904 -0.000560656 -0.000559392 -0.000558111 -0.00055681 -0.000555488 -0.000554143 -0.00055277 -0.000551368 -0.000549931 -0.000548455 -0.000546935 -0.000545361 -0.000543727 -0.000542021 -0.000540229 -0.000538336 -0.000536322 -0.000534164 -0.000531833 -0.000529298 -0.00052652 -0.000523458 -0.000520067 -0.000516299 -0.000512106 -0.000507439 -0.000502253 -0.000496506 -0.00049016 -0.00048318 -0.000475537 -0.000467205 -0.000458162 -0.000448389 -0.00043787 -0.000426591 -0.00041454 -0.000401706 -0.00038808 -0.000373653 -0.000358417 -0.000342366 -0.000325493 -0.000307793 -0.000289258 -0.000269884 -0.000249666 -0.000228599 -0.000206678 -0.000183897 -0.000160253 -0.000135741 -0.000110356 -8.40939E-05 -5.69504E-05 -2.8921E-05 -1.39302E-09 2.95411E-05 5.94227E-05 8.96237E-05 0.000120126 0.000150911 0.000181962 0.000213265 0.000244803 0.000276562 0.000308528 +-0.000665549 -0.00066461 -0.000663673 -0.000662736 -0.0006618 -0.000660865 -0.000659931 -0.000658998 -0.000658065 -0.000657134 -0.000656202 -0.000655272 -0.000654342 -0.000653412 -0.000652484 -0.000651555 -0.000650627 -0.000649699 -0.000648772 -0.000647844 -0.000646917 -0.000645991 -0.000645064 -0.000644137 -0.000643211 -0.000642285 -0.000641358 -0.000640432 -0.000639505 -0.000638578 -0.000637651 -0.000636724 -0.000635796 -0.000634869 -0.000633941 -0.000633012 -0.000632083 -0.000631154 -0.000630224 -0.000629294 -0.000628363 -0.000627431 -0.000626499 -0.000625566 -0.000624633 -0.000623699 -0.000622763 -0.000621828 -0.000620891 -0.000619953 -0.000619015 -0.000618075 -0.000617135 -0.000616194 -0.000615251 -0.000614308 -0.000613363 -0.000612417 -0.00061147 -0.000610522 -0.000609572 -0.000608622 -0.00060767 -0.000606716 -0.000605761 -0.000604805 -0.000603848 -0.000602889 -0.000601928 -0.000600966 -0.000600002 -0.000599037 -0.000598069 -0.000597101 -0.00059613 -0.000595158 -0.000594184 -0.000593208 -0.00059223 -0.00059125 -0.000590268 -0.000589284 -0.000588298 -0.000587309 -0.000586319 -0.000585326 -0.00058433 -0.000583333 -0.000582333 -0.00058133 -0.000580325 -0.000579317 -0.000578306 -0.000577292 -0.000576275 -0.000575255 -0.000574232 -0.000573206 -0.000572176 -0.000571143 -0.000570106 -0.000569065 -0.00056802 -0.000566972 -0.000565918 -0.000564861 -0.000563799 -0.000562732 -0.00056166 -0.000560582 -0.000559499 -0.00055841 -0.000557315 -0.000556214 -0.000555105 -0.000553989 -0.000552866 -0.000551735 -0.000550595 -0.000549445 -0.000548286 -0.000547116 -0.000545935 -0.000544741 -0.000543534 -0.000542312 -0.000541074 -0.000539819 -0.000538544 -0.000537248 -0.000535928 -0.000534581 -0.000533203 -0.00053179 -0.000530336 -0.000528837 -0.000527283 -0.000525665 -0.000523972 -0.00052219 -0.000520302 -0.000518286 -0.000516118 -0.000513767 -0.000511199 -0.000508376 -0.000505252 -0.00050178 -0.000497913 -0.0004936 -0.000488794 -0.000483449 -0.000477524 -0.000470981 -0.000463787 -0.000455914 -0.000447337 -0.000438035 -0.000427991 -0.000417188 -0.000405614 -0.000393257 -0.000380106 -0.000366153 -0.000351389 -0.000335807 -0.0003194 -0.000302162 -0.000284086 -0.000265168 -0.000245401 -0.000224781 -0.000203302 -0.00018096 -0.00015775 -0.000133667 -0.000108707 -8.28647E-05 -5.61359E-05 -2.85163E-05 -1.28997E-09 2.91475E-05 5.86516E-05 8.84906E-05 0.000118645 0.000149098 0.00017983 0.000210827 0.000242072 0.00027355 0.000305247 +-0.000645548 -0.000644628 -0.000643709 -0.000642791 -0.000641874 -0.000640958 -0.000640043 -0.000639128 -0.000638215 -0.000637302 -0.00063639 -0.000635478 -0.000634567 -0.000633656 -0.000632747 -0.000631837 -0.000630928 -0.000630019 -0.000629111 -0.000628203 -0.000627295 -0.000626388 -0.00062548 -0.000624573 -0.000623666 -0.000622759 -0.000621852 -0.000620945 -0.000620038 -0.000619131 -0.000618224 -0.000617316 -0.000616408 -0.0006155 -0.000614592 -0.000613684 -0.000612775 -0.000611865 -0.000610956 -0.000610045 -0.000609135 -0.000608224 -0.000607312 -0.000606399 -0.000605486 -0.000604572 -0.000603658 -0.000602743 -0.000601827 -0.00060091 -0.000599992 -0.000599074 -0.000598154 -0.000597234 -0.000596313 -0.00059539 -0.000594467 -0.000593543 -0.000592617 -0.000591691 -0.000590763 -0.000589834 -0.000588903 -0.000587972 -0.000587039 -0.000586105 -0.00058517 -0.000584233 -0.000583294 -0.000582355 -0.000581413 -0.000580471 -0.000579526 -0.00057858 -0.000577633 -0.000576684 -0.000575733 -0.00057478 -0.000573825 -0.000572869 -0.000571911 -0.00057095 -0.000569988 -0.000569024 -0.000568058 -0.000567089 -0.000566118 -0.000565145 -0.00056417 -0.000563192 -0.000562212 -0.000561229 -0.000560244 -0.000559256 -0.000558265 -0.000557271 -0.000556274 -0.000555274 -0.000554271 -0.000553265 -0.000552255 -0.000551242 -0.000550225 -0.000549204 -0.000548179 -0.00054715 -0.000546116 -0.000545078 -0.000544036 -0.000542988 -0.000541935 -0.000540877 -0.000539813 -0.000538743 -0.000537667 -0.000536584 -0.000535493 -0.000534396 -0.00053329 -0.000532176 -0.000531052 -0.000529919 -0.000528775 -0.00052762 -0.000526452 -0.000525272 -0.000524076 -0.000522865 -0.000521636 -0.000520387 -0.000519117 -0.000517822 -0.0005165 -0.000515146 -0.000513757 -0.000512326 -0.000510848 -0.000509313 -0.000507712 -0.000506032 -0.000504259 -0.000502374 -0.000500354 -0.000498173 -0.000495799 -0.000493196 -0.000490321 -0.00048713 -0.000483573 -0.0004796 -0.000475161 -0.000470208 -0.000464696 -0.000458585 -0.000451838 -0.000444424 -0.000436314 -0.000427487 -0.000417921 -0.000407599 -0.000396508 -0.000384634 -0.000371965 -0.000358493 -0.000344209 -0.000329104 -0.000313171 -0.000296404 -0.000278796 -0.000260342 -0.000241036 -0.000220872 -0.000199846 -0.000177952 -0.000155186 -0.000131542 -0.000107016 -8.1604E-05 -5.53004E-05 -2.8101E-05 -1.19432E-09 2.87435E-05 5.786E-05 8.73273E-05 0.000117126 0.000147236 0.000177641 0.000208323 0.000239267 0.000270456 0.000301876 +-0.000625605 -0.000624704 -0.000623804 -0.000622906 -0.000622007 -0.00062111 -0.000620214 -0.000619319 -0.000618424 -0.00061753 -0.000616637 -0.000615745 -0.000614853 -0.000613961 -0.000613071 -0.00061218 -0.00061129 -0.000610401 -0.000609512 -0.000608623 -0.000607735 -0.000606847 -0.000605959 -0.000605071 -0.000604183 -0.000603296 -0.000602409 -0.000601521 -0.000600634 -0.000599746 -0.000598859 -0.000597971 -0.000597083 -0.000596195 -0.000595307 -0.000594418 -0.000593529 -0.00059264 -0.00059175 -0.00059086 -0.00058997 -0.000589079 -0.000588188 -0.000587296 -0.000586403 -0.00058551 -0.000584616 -0.000583722 -0.000582826 -0.00058193 -0.000581034 -0.000580136 -0.000579238 -0.000578339 -0.000577438 -0.000576537 -0.000575635 -0.000574732 -0.000573828 -0.000572923 -0.000572017 -0.00057111 -0.000570201 -0.000569292 -0.000568381 -0.000567469 -0.000566556 -0.000565641 -0.000564725 -0.000563808 -0.000562889 -0.000561969 -0.000561047 -0.000560124 -0.0005592 -0.000558273 -0.000557346 -0.000556416 -0.000555485 -0.000554552 -0.000553617 -0.000552681 -0.000551742 -0.000550802 -0.00054986 -0.000548916 -0.000547969 -0.000547021 -0.00054607 -0.000545117 -0.000544162 -0.000543205 -0.000542244 -0.000541282 -0.000540317 -0.000539349 -0.000538378 -0.000537404 -0.000536428 -0.000535448 -0.000534465 -0.000533479 -0.00053249 -0.000531496 -0.000530499 -0.000529499 -0.000528494 -0.000527485 -0.000526471 -0.000525453 -0.00052443 -0.000523402 -0.000522369 -0.00052133 -0.000520285 -0.000519234 -0.000518177 -0.000517112 -0.00051604 -0.00051496 -0.000513872 -0.000512774 -0.000511667 -0.00051055 -0.000509421 -0.00050828 -0.000507126 -0.000505957 -0.000504772 -0.000503569 -0.000502347 -0.000501103 -0.000499834 -0.000498537 -0.000497208 -0.000495842 -0.000494434 -0.000492976 -0.00049146 -0.000489875 -0.000488208 -0.000486443 -0.000484559 -0.000482534 -0.000480338 -0.000477938 -0.000475295 -0.000472365 -0.0004691 -0.00046545 -0.000461364 -0.000456792 -0.000451685 -0.000446 -0.000439696 -0.000432739 -0.000425097 -0.000416745 -0.000407661 -0.000397825 -0.000387222 -0.000375837 -0.000363657 -0.000350674 -0.000336876 -0.000322256 -0.000306806 -0.000290519 -0.000273387 -0.000255407 -0.00023657 -0.000216872 -0.000196308 -0.000174872 -0.000152559 -0.000129365 -0.000105284 -8.03116E-05 -5.44436E-05 -2.76749E-05 -1.10554E-09 2.83288E-05 5.70475E-05 8.61332E-05 0.000115566 0.000145325 0.000175393 0.000205753 0.000236386 0.000267279 0.000298415 +-0.000605731 -0.000604849 -0.000603968 -0.000603088 -0.00060221 -0.000601332 -0.000600454 -0.000599578 -0.000598703 -0.000597828 -0.000596954 -0.000596081 -0.000595208 -0.000594336 -0.000593464 -0.000592593 -0.000591723 -0.000590853 -0.000589983 -0.000589114 -0.000588245 -0.000587376 -0.000586508 -0.00058564 -0.000584772 -0.000583904 -0.000583036 -0.000582168 -0.000581301 -0.000580433 -0.000579565 -0.000578697 -0.000577829 -0.000576961 -0.000576093 -0.000575225 -0.000574356 -0.000573487 -0.000572617 -0.000571748 -0.000570878 -0.000570007 -0.000569136 -0.000568265 -0.000567393 -0.00056652 -0.000565647 -0.000564773 -0.000563899 -0.000563024 -0.000562148 -0.000561271 -0.000560394 -0.000559516 -0.000558637 -0.000557757 -0.000556876 -0.000555995 -0.000555112 -0.000554229 -0.000553344 -0.000552459 -0.000551572 -0.000550685 -0.000549796 -0.000548906 -0.000548015 -0.000547122 -0.000546229 -0.000545334 -0.000544438 -0.00054354 -0.000542641 -0.000541741 -0.000540839 -0.000539936 -0.000539031 -0.000538125 -0.000537217 -0.000536308 -0.000535397 -0.000534484 -0.000533569 -0.000532653 -0.000531735 -0.000530815 -0.000529893 -0.000528969 -0.000528042 -0.000527114 -0.000526184 -0.000525251 -0.000524317 -0.000523379 -0.00052244 -0.000521498 -0.000520553 -0.000519605 -0.000518655 -0.000517702 -0.000516746 -0.000515787 -0.000514824 -0.000513859 -0.000512889 -0.000511916 -0.00051094 -0.000509959 -0.000508975 -0.000507986 -0.000506992 -0.000505994 -0.000504991 -0.000503983 -0.00050297 -0.00050195 -0.000500925 -0.000499893 -0.000498854 -0.000497808 -0.000496754 -0.000495691 -0.00049462 -0.00049354 -0.000492449 -0.000491347 -0.000490232 -0.000489105 -0.000487962 -0.000486804 -0.000485628 -0.000484432 -0.000483214 -0.000481971 -0.0004807 -0.000479396 -0.000478054 -0.000476668 -0.000475231 -0.000473734 -0.000472164 -0.000470509 -0.00046875 -0.000466867 -0.000464834 -0.000462621 -0.000460191 -0.000457504 -0.000454513 -0.000451169 -0.00044742 -0.000443214 -0.000438501 -0.000433233 -0.000427367 -0.000420863 -0.000413688 -0.000405813 -0.000397213 -0.000387867 -0.000377756 -0.000366866 -0.000355182 -0.000342694 -0.000329391 -0.000315263 -0.000300304 -0.000284504 -0.000267859 -0.00025036 -0.000232002 -0.00021278 -0.000192687 -0.000171718 -0.000149869 -0.000127134 -0.000103508 -7.89869E-05 -5.35651E-05 -2.7238E-05 -1.02316E-09 2.79033E-05 5.62138E-05 8.4908E-05 0.000113965 0.000143364 0.000173086 0.000203114 0.00023343 0.000264018 0.000294861 +-0.000585934 -0.000585071 -0.00058421 -0.000583349 -0.000582489 -0.000581631 -0.000580773 -0.000579916 -0.00057906 -0.000578204 -0.000577349 -0.000576495 -0.000575642 -0.000574789 -0.000573937 -0.000573086 -0.000572235 -0.000571384 -0.000570534 -0.000569684 -0.000568835 -0.000567986 -0.000567137 -0.000566288 -0.00056544 -0.000564592 -0.000563744 -0.000562896 -0.000562048 -0.0005612 -0.000560353 -0.000559505 -0.000558657 -0.000557809 -0.000556961 -0.000556112 -0.000555264 -0.000554415 -0.000553566 -0.000552716 -0.000551867 -0.000551017 -0.000550166 -0.000549315 -0.000548464 -0.000547612 -0.000546759 -0.000545906 -0.000545053 -0.000544199 -0.000543344 -0.000542488 -0.000541632 -0.000540775 -0.000539918 -0.000539059 -0.0005382 -0.00053734 -0.000536479 -0.000535617 -0.000534754 -0.00053389 -0.000533025 -0.00053216 -0.000531293 -0.000530425 -0.000529556 -0.000528686 -0.000527814 -0.000526942 -0.000526068 -0.000525193 -0.000524317 -0.00052344 -0.000522561 -0.000521681 -0.000520799 -0.000519916 -0.000519031 -0.000518145 -0.000517258 -0.000516368 -0.000515478 -0.000514585 -0.000513691 -0.000512795 -0.000511897 -0.000510998 -0.000510096 -0.000509192 -0.000508287 -0.000507379 -0.00050647 -0.000505558 -0.000504643 -0.000503727 -0.000502808 -0.000501886 -0.000500962 -0.000500035 -0.000499106 -0.000498173 -0.000497238 -0.0004963 -0.000495358 -0.000494413 -0.000493464 -0.000492512 -0.000491556 -0.000490596 -0.000489632 -0.000488663 -0.00048769 -0.000486712 -0.000485729 -0.000484741 -0.000483747 -0.000482747 -0.000481741 -0.000480728 -0.000479708 -0.00047868 -0.000477644 -0.0004766 -0.000475545 -0.000474481 -0.000473406 -0.000472318 -0.000471217 -0.000470102 -0.000468971 -0.000467822 -0.000466653 -0.000465461 -0.000464244 -0.000462998 -0.000461719 -0.0004604 -0.000459037 -0.000457621 -0.000456142 -0.000454588 -0.000452943 -0.00045119 -0.000449306 -0.000447263 -0.000445029 -0.000442566 -0.00043983 -0.000436773 -0.000433343 -0.000429489 -0.000425156 -0.000420295 -0.000414858 -0.000408804 -0.000402093 -0.000394695 -0.000386581 -0.000377727 -0.000368113 -0.000357722 -0.00034654 -0.000334554 -0.000321752 -0.000308125 -0.000293664 -0.000278361 -0.000262209 -0.000245202 -0.000227332 -0.000208594 -0.000188982 -0.000168491 -0.000147116 -0.00012485 -0.00010169 -7.76297E-05 -5.26646E-05 -2.679E-05 -9.46731E-10 2.74669E-05 5.53586E-05 8.3651E-05 0.000112322 0.000141351 0.000170719 0.000200407 0.000230396 0.00026067 0.000291214 +-0.000566224 -0.000565381 -0.000564538 -0.000563697 -0.000562857 -0.000562017 -0.000561179 -0.000560341 -0.000559504 -0.000558669 -0.000557833 -0.000556999 -0.000556165 -0.000555332 -0.000554499 -0.000553667 -0.000552836 -0.000552005 -0.000551174 -0.000550344 -0.000549514 -0.000548685 -0.000547856 -0.000547027 -0.000546198 -0.00054537 -0.000544542 -0.000543714 -0.000542886 -0.000542058 -0.00054123 -0.000540402 -0.000539575 -0.000538747 -0.000537919 -0.000537091 -0.000536262 -0.000535434 -0.000534605 -0.000533776 -0.000532947 -0.000532117 -0.000531287 -0.000530457 -0.000529626 -0.000528795 -0.000527963 -0.000527131 -0.000526299 -0.000525465 -0.000524632 -0.000523797 -0.000522962 -0.000522126 -0.00052129 -0.000520453 -0.000519615 -0.000518776 -0.000517937 -0.000517097 -0.000516256 -0.000515413 -0.000514571 -0.000513727 -0.000512882 -0.000512036 -0.000511189 -0.000510341 -0.000509492 -0.000508642 -0.000507791 -0.000506939 -0.000506085 -0.00050523 -0.000504374 -0.000503517 -0.000502658 -0.000501798 -0.000500937 -0.000500074 -0.00049921 -0.000498345 -0.000497478 -0.000496609 -0.000495738 -0.000494867 -0.000493993 -0.000493118 -0.00049224 -0.000491361 -0.000490481 -0.000489598 -0.000488713 -0.000487826 -0.000486937 -0.000486046 -0.000485153 -0.000484257 -0.000483359 -0.000482458 -0.000481555 -0.000480649 -0.000479741 -0.000478829 -0.000477915 -0.000476997 -0.000476076 -0.000475152 -0.000474224 -0.000473293 -0.000472358 -0.000471418 -0.000470475 -0.000469527 -0.000468574 -0.000467616 -0.000466654 -0.000465685 -0.000464711 -0.000463731 -0.000462744 -0.00046175 -0.000460749 -0.00045974 -0.000458721 -0.000457694 -0.000456657 -0.000455608 -0.000454548 -0.000453474 -0.000452386 -0.000451281 -0.000450159 -0.000449017 -0.000447852 -0.000446661 -0.000445441 -0.000444186 -0.000442892 -0.000441551 -0.000440156 -0.000438694 -0.000437155 -0.00043552 -0.000433772 -0.000431885 -0.00042983 -0.000427572 -0.000425071 -0.000422281 -0.000419152 -0.000415631 -0.000411664 -0.000407197 -0.00040218 -0.000396568 -0.000390318 -0.000383394 -0.000375766 -0.000367406 -0.000358293 -0.000348407 -0.000337731 -0.000326253 -0.00031396 -0.00030084 -0.000286886 -0.000272088 -0.000256439 -0.000239931 -0.000222559 -0.000204315 -0.000185194 -0.00016519 -0.000144298 -0.000122512 -9.98278E-05 -7.62394E-05 -5.1742E-05 -2.63309E-05 -8.75826E-10 2.70194E-05 5.44817E-05 8.2362E-05 0.000110638 0.000139287 0.000168291 0.000197629 0.000227283 0.000257236 0.000287471 +-0.000546611 -0.000545787 -0.000544964 -0.000544142 -0.000543322 -0.000542502 -0.000541683 -0.000540865 -0.000540048 -0.000539231 -0.000538415 -0.000537601 -0.000536786 -0.000535973 -0.00053516 -0.000534347 -0.000533536 -0.000532724 -0.000531914 -0.000531103 -0.000530293 -0.000529484 -0.000528674 -0.000527865 -0.000527057 -0.000526248 -0.00052544 -0.000524632 -0.000523824 -0.000523016 -0.000522209 -0.000521401 -0.000520593 -0.000519786 -0.000518978 -0.00051817 -0.000517362 -0.000516554 -0.000515746 -0.000514937 -0.000514128 -0.000513319 -0.00051251 -0.0005117 -0.00051089 -0.00051008 -0.000509269 -0.000508458 -0.000507646 -0.000506834 -0.000506021 -0.000505208 -0.000504394 -0.00050358 -0.000502764 -0.000501949 -0.000501132 -0.000500315 -0.000499497 -0.000498679 -0.000497859 -0.000497039 -0.000496218 -0.000495396 -0.000494573 -0.000493749 -0.000492924 -0.000492099 -0.000491272 -0.000490444 -0.000489616 -0.000488786 -0.000487955 -0.000487123 -0.00048629 -0.000485455 -0.00048462 -0.000483783 -0.000482945 -0.000482105 -0.000481265 -0.000480422 -0.000479579 -0.000478734 -0.000477887 -0.000477039 -0.00047619 -0.000475339 -0.000474486 -0.000473631 -0.000472775 -0.000471917 -0.000471057 -0.000470195 -0.000469332 -0.000468466 -0.000467598 -0.000466728 -0.000465855 -0.000464981 -0.000464104 -0.000463224 -0.000462342 -0.000461458 -0.00046057 -0.00045968 -0.000458786 -0.00045789 -0.00045699 -0.000456087 -0.00045518 -0.00045427 -0.000453356 -0.000452437 -0.000451514 -0.000450587 -0.000449655 -0.000448718 -0.000447775 -0.000446827 -0.000445873 -0.000444912 -0.000443945 -0.00044297 -0.000441987 -0.000440996 -0.000439995 -0.000438985 -0.000437963 -0.00043693 -0.000435884 -0.000434823 -0.000433746 -0.000432651 -0.000431535 -0.000430397 -0.000429233 -0.000428038 -0.000426808 -0.000425538 -0.00042422 -0.000422844 -0.000421401 -0.000419875 -0.00041825 -0.000416504 -0.000414612 -0.000412542 -0.000410257 -0.000407714 -0.000404866 -0.000401659 -0.000398039 -0.000393952 -0.000389344 -0.000384164 -0.000378369 -0.000371916 -0.000364773 -0.000356909 -0.000348299 -0.000338921 -0.000328757 -0.000317793 -0.000306015 -0.00029341 -0.00027997 -0.000265685 -0.000250547 -0.000234548 -0.000217681 -0.000199941 -0.00018132 -0.000161814 -0.000141415 -0.00012012 -9.79216E-05 -7.48157E-05 -5.0797E-05 -2.58604E-05 -8.10059E-10 2.65607E-05 5.35827E-05 8.10405E-05 0.000108911 0.000137171 0.000165801 0.00019478 0.00022409 0.000253713 0.000283631 +-0.000527105 -0.000526301 -0.000525498 -0.000524696 -0.000523895 -0.000523094 -0.000522295 -0.000521497 -0.000520699 -0.000519903 -0.000519107 -0.000518311 -0.000517517 -0.000516723 -0.00051593 -0.000515137 -0.000514345 -0.000513554 -0.000512763 -0.000511972 -0.000511182 -0.000510393 -0.000509603 -0.000508814 -0.000508026 -0.000507237 -0.000506449 -0.000505661 -0.000504873 -0.000504086 -0.000503298 -0.000502511 -0.000501723 -0.000500936 -0.000500148 -0.000499361 -0.000498573 -0.000497786 -0.000496998 -0.00049621 -0.000495422 -0.000494633 -0.000493845 -0.000493056 -0.000492266 -0.000491477 -0.000490687 -0.000489897 -0.000489106 -0.000488315 -0.000487523 -0.000486731 -0.000485938 -0.000485145 -0.000484351 -0.000483557 -0.000482762 -0.000481966 -0.00048117 -0.000480373 -0.000479575 -0.000478777 -0.000477977 -0.000477177 -0.000476377 -0.000475575 -0.000474772 -0.000473969 -0.000473164 -0.000472359 -0.000471553 -0.000470746 -0.000469937 -0.000469128 -0.000468318 -0.000467506 -0.000466693 -0.00046588 -0.000465065 -0.000464248 -0.000463431 -0.000462612 -0.000461792 -0.000460971 -0.000460148 -0.000459324 -0.000458499 -0.000457671 -0.000456843 -0.000456013 -0.000455181 -0.000454347 -0.000453512 -0.000452675 -0.000451837 -0.000450996 -0.000450153 -0.000449309 -0.000448462 -0.000447613 -0.000446762 -0.000445909 -0.000445053 -0.000444195 -0.000443335 -0.000442471 -0.000441605 -0.000440736 -0.000439864 -0.000438989 -0.000438111 -0.000437229 -0.000436343 -0.000435454 -0.000434561 -0.000433663 -0.000432761 -0.000431855 -0.000430944 -0.000430027 -0.000429105 -0.000428177 -0.000427243 -0.000426302 -0.000425353 -0.000424397 -0.000423433 -0.000422459 -0.000421476 -0.000420482 -0.000419476 -0.000418457 -0.000417423 -0.000416374 -0.000415306 -0.000414218 -0.000413107 -0.000411969 -0.0004108 -0.000409595 -0.000408349 -0.000407053 -0.000405697 -0.000404271 -0.000402758 -0.000401141 -0.000399397 -0.000397498 -0.00039541 -0.000393094 -0.000390505 -0.000387592 -0.000384301 -0.000380577 -0.000376362 -0.000371605 -0.000366255 -0.000360269 -0.000353608 -0.000346239 -0.000338133 -0.000329267 -0.00031962 -0.000309175 -0.000297917 -0.000285835 -0.000272916 -0.000259152 -0.000244533 -0.000229051 -0.0002127 -0.000195472 -0.000177362 -0.000158362 -0.000138467 -0.000117672 -9.59709E-05 -7.33584E-05 -4.98293E-05 -2.53785E-05 -7.49067E-10 2.60907E-05 5.26614E-05 7.96859E-05 0.00010714 0.000135001 0.000163248 0.00019186 0.000220817 0.000250101 0.000279694 +-0.000507718 -0.000506933 -0.00050615 -0.000505368 -0.000504587 -0.000503806 -0.000503027 -0.000502248 -0.000501471 -0.000500694 -0.000499918 -0.000499142 -0.000498368 -0.000497594 -0.00049682 -0.000496048 -0.000495276 -0.000494504 -0.000493733 -0.000492963 -0.000492192 -0.000491423 -0.000490654 -0.000489885 -0.000489116 -0.000488348 -0.00048758 -0.000486812 -0.000486044 -0.000485277 -0.000484509 -0.000483742 -0.000482975 -0.000482208 -0.000481441 -0.000480674 -0.000479907 -0.00047914 -0.000478373 -0.000477605 -0.000476838 -0.00047607 -0.000475302 -0.000474534 -0.000473765 -0.000472997 -0.000472228 -0.000471458 -0.000470689 -0.000469919 -0.000469148 -0.000468377 -0.000467606 -0.000466834 -0.000466061 -0.000465288 -0.000464515 -0.000463741 -0.000462966 -0.000462191 -0.000461415 -0.000460638 -0.000459861 -0.000459083 -0.000458304 -0.000457524 -0.000456744 -0.000455962 -0.00045518 -0.000454397 -0.000453613 -0.000452829 -0.000452043 -0.000451256 -0.000450469 -0.00044968 -0.00044889 -0.0004481 -0.000447308 -0.000446515 -0.000445721 -0.000444925 -0.000444129 -0.000443331 -0.000442532 -0.000441732 -0.00044093 -0.000440127 -0.000439322 -0.000438516 -0.000437709 -0.0004369 -0.00043609 -0.000435277 -0.000434464 -0.000433648 -0.000432831 -0.000432011 -0.00043119 -0.000430367 -0.000429542 -0.000428715 -0.000427885 -0.000427053 -0.000426219 -0.000425383 -0.000424544 -0.000423702 -0.000422857 -0.00042201 -0.000421159 -0.000420306 -0.000419449 -0.000418588 -0.000417724 -0.000416856 -0.000415984 -0.000415108 -0.000414227 -0.000413342 -0.000412451 -0.000411555 -0.000410654 -0.000409746 -0.000408831 -0.00040791 -0.000406981 -0.000406043 -0.000405097 -0.000404141 -0.000403174 -0.000402196 -0.000401204 -0.000400198 -0.000399176 -0.000398136 -0.000397075 -0.000395991 -0.000394879 -0.000393737 -0.000392557 -0.000391335 -0.000390061 -0.000388725 -0.000387315 -0.000385815 -0.000384205 -0.00038246 -0.000380552 -0.000378443 -0.000376093 -0.000373452 -0.000370469 -0.000367088 -0.000363251 -0.000358902 -0.000353988 -0.000348461 -0.000342278 -0.000335402 -0.000327801 -0.000319448 -0.000310321 -0.0003004 -0.000289669 -0.000278115 -0.000265725 -0.000252489 -0.000238397 -0.000223442 -0.000207615 -0.000190909 -0.000173317 -0.000154834 -0.000135454 -0.000115169 -9.39755E-05 -7.18672E-05 -4.88388E-05 -2.4885E-05 -6.92511E-10 2.56091E-05 5.17175E-05 7.82981E-05 0.000105326 0.000132778 0.000160632 0.000188866 0.000217461 0.000246397 0.000275657 +-0.000488461 -0.000487696 -0.000486933 -0.000486171 -0.000485409 -0.000484649 -0.000483889 -0.000483131 -0.000482373 -0.000481616 -0.00048086 -0.000480105 -0.00047935 -0.000478596 -0.000477843 -0.00047709 -0.000476338 -0.000475587 -0.000474836 -0.000474085 -0.000473335 -0.000472586 -0.000471836 -0.000471088 -0.000470339 -0.000469591 -0.000468843 -0.000468096 -0.000467348 -0.000466601 -0.000465854 -0.000465108 -0.000464361 -0.000463614 -0.000462868 -0.000462121 -0.000461375 -0.000460628 -0.000459881 -0.000459135 -0.000458388 -0.000457641 -0.000456894 -0.000456146 -0.000455399 -0.000454651 -0.000453903 -0.000453155 -0.000452406 -0.000451657 -0.000450908 -0.000450158 -0.000449408 -0.000448657 -0.000447906 -0.000447155 -0.000446403 -0.00044565 -0.000444897 -0.000444144 -0.000443389 -0.000442634 -0.000441879 -0.000441123 -0.000440366 -0.000439608 -0.00043885 -0.000438091 -0.000437331 -0.00043657 -0.000435809 -0.000435047 -0.000434284 -0.00043352 -0.000432755 -0.000431989 -0.000431222 -0.000430454 -0.000429685 -0.000428915 -0.000428145 -0.000427373 -0.000426599 -0.000425825 -0.00042505 -0.000424273 -0.000423495 -0.000422716 -0.000421936 -0.000421154 -0.000420371 -0.000419586 -0.0004188 -0.000418013 -0.000417224 -0.000416433 -0.000415641 -0.000414847 -0.000414051 -0.000413253 -0.000412454 -0.000411652 -0.000410849 -0.000410043 -0.000409235 -0.000408425 -0.000407613 -0.000406798 -0.000405981 -0.000405161 -0.000404338 -0.000403512 -0.000402684 -0.000401852 -0.000401016 -0.000400178 -0.000399335 -0.000398489 -0.000397638 -0.000396783 -0.000395924 -0.000395059 -0.00039419 -0.000393314 -0.000392433 -0.000391545 -0.000390651 -0.000389748 -0.000388838 -0.000387919 -0.000386991 -0.000386051 -0.0003851 -0.000384137 -0.000383158 -0.000382164 -0.000381151 -0.000380118 -0.000379061 -0.000377976 -0.000376859 -0.000375705 -0.000374506 -0.000373254 -0.000371938 -0.000370544 -0.000369056 -0.000367451 -0.000365705 -0.000363784 -0.000361652 -0.000359262 -0.000356565 -0.000353506 -0.000350028 -0.000346071 -0.00034158 -0.000336503 -0.000330791 -0.000324405 -0.000317307 -0.000309469 -0.000300864 -0.000291471 -0.000281272 -0.000270252 -0.000258397 -0.000245697 -0.00023214 -0.000217719 -0.000202425 -0.00018625 -0.000169187 -0.000151231 -0.000132374 -0.000112611 -9.1935E-05 -7.03418E-05 -4.78252E-05 -2.43799E-05 -6.40079E-10 2.5116E-05 5.07507E-05 7.68765E-05 0.000103468 0.0001305 0.000157951 0.000185799 0.000214022 0.000242602 0.000271519 +-0.000469346 -0.000468601 -0.000467858 -0.000467116 -0.000466375 -0.000465634 -0.000464895 -0.000464157 -0.000463419 -0.000462682 -0.000461946 -0.000461211 -0.000460476 -0.000459742 -0.000459009 -0.000458277 -0.000457545 -0.000456813 -0.000456083 -0.000455352 -0.000454622 -0.000453893 -0.000453164 -0.000452436 -0.000451708 -0.00045098 -0.000450252 -0.000449525 -0.000448798 -0.000448071 -0.000447345 -0.000446618 -0.000445892 -0.000445166 -0.00044444 -0.000443714 -0.000442988 -0.000442262 -0.000441536 -0.00044081 -0.000440084 -0.000439358 -0.000438632 -0.000437905 -0.000437179 -0.000436452 -0.000435725 -0.000434998 -0.00043427 -0.000433542 -0.000432814 -0.000432086 -0.000431357 -0.000430628 -0.000429898 -0.000429168 -0.000428438 -0.000427707 -0.000426975 -0.000426243 -0.000425511 -0.000424778 -0.000424044 -0.00042331 -0.000422575 -0.000421839 -0.000421103 -0.000420366 -0.000419629 -0.00041889 -0.000418151 -0.000417411 -0.000416671 -0.000415929 -0.000415187 -0.000414444 -0.0004137 -0.000412955 -0.000412209 -0.000411463 -0.000410715 -0.000409966 -0.000409217 -0.000408466 -0.000407714 -0.000406961 -0.000406207 -0.000405452 -0.000404695 -0.000403937 -0.000403178 -0.000402418 -0.000401656 -0.000400893 -0.000400129 -0.000399363 -0.000398596 -0.000397827 -0.000397056 -0.000396284 -0.00039551 -0.000394734 -0.000393956 -0.000393177 -0.000392395 -0.000391611 -0.000390826 -0.000390037 -0.000389247 -0.000388454 -0.000387659 -0.000386861 -0.00038606 -0.000385256 -0.000384449 -0.000383639 -0.000382826 -0.000382009 -0.000381188 -0.000380363 -0.000379534 -0.000378701 -0.000377862 -0.000377019 -0.00037617 -0.000375316 -0.000374455 -0.000373587 -0.000372712 -0.000371829 -0.000370937 -0.000370036 -0.000369125 -0.000368202 -0.000367266 -0.000366315 -0.000365349 -0.000364364 -0.000363358 -0.000362328 -0.00036127 -0.00036018 -0.00035905 -0.000357875 -0.000356645 -0.000355348 -0.00035397 -0.000352492 -0.000350892 -0.000349141 -0.000347206 -0.000345045 -0.000342612 -0.000339854 -0.000336713 -0.00033313 -0.000329046 -0.000324406 -0.000319158 -0.000313255 -0.000306658 -0.000299334 -0.000291252 -0.00028239 -0.000272728 -0.000262247 -0.000250934 -0.000238776 -0.000225763 -0.000211884 -0.000197131 -0.000181496 -0.000164972 -0.000147551 -0.000129228 -0.000109996 -8.98493E-05 -6.8782E-05 -4.67884E-05 -2.38631E-05 -5.91477E-10 2.46111E-05 4.97609E-05 7.54209E-05 0.000101565 0.000128167 0.000155205 0.000182656 0.000210499 0.000238713 0.000267279 +-0.000450385 -0.000449661 -0.000448938 -0.000448216 -0.000447495 -0.000446775 -0.000446056 -0.000445338 -0.00044462 -0.000443904 -0.000443188 -0.000442473 -0.000441758 -0.000441045 -0.000440332 -0.00043962 -0.000438908 -0.000438197 -0.000437486 -0.000436776 -0.000436067 -0.000435358 -0.000434649 -0.000433941 -0.000433233 -0.000432526 -0.000431819 -0.000431112 -0.000430405 -0.000429699 -0.000428993 -0.000428287 -0.000427582 -0.000426876 -0.000426171 -0.000425465 -0.00042476 -0.000424055 -0.00042335 -0.000422645 -0.000421939 -0.000421234 -0.000420529 -0.000419823 -0.000419118 -0.000418412 -0.000417706 -0.000417 -0.000416293 -0.000415587 -0.00041488 -0.000414173 -0.000413465 -0.000412757 -0.000412049 -0.00041134 -0.000410631 -0.000409922 -0.000409212 -0.000408502 -0.000407791 -0.00040708 -0.000406368 -0.000405656 -0.000404943 -0.000404229 -0.000403515 -0.000402801 -0.000402085 -0.000401369 -0.000400653 -0.000399935 -0.000399217 -0.000398498 -0.000397779 -0.000397058 -0.000396337 -0.000395615 -0.000394893 -0.000394169 -0.000393444 -0.000392719 -0.000391992 -0.000391265 -0.000390536 -0.000389807 -0.000389077 -0.000388345 -0.000387612 -0.000386879 -0.000386144 -0.000385408 -0.00038467 -0.000383932 -0.000383192 -0.00038245 -0.000381708 -0.000380964 -0.000380218 -0.000379471 -0.000378722 -0.000377972 -0.00037722 -0.000376466 -0.00037571 -0.000374953 -0.000374193 -0.000373432 -0.000372668 -0.000371902 -0.000371134 -0.000370363 -0.00036959 -0.000368814 -0.000368035 -0.000367254 -0.000366469 -0.000365681 -0.000364889 -0.000364094 -0.000363295 -0.000362492 -0.000361685 -0.000360873 -0.000360056 -0.000359234 -0.000358406 -0.000357572 -0.000356731 -0.000355883 -0.000355028 -0.000354164 -0.00035329 -0.000352406 -0.000351511 -0.000350603 -0.000349681 -0.000348742 -0.000347785 -0.000346807 -0.000345804 -0.000344773 -0.000343709 -0.000342605 -0.000341453 -0.000340245 -0.000338966 -0.000337603 -0.000336134 -0.000334537 -0.00033278 -0.000330828 -0.000328635 -0.000326154 -0.000323328 -0.000320098 -0.000316404 -0.000312186 -0.000307389 -0.000301963 -0.000295862 -0.000289049 -0.000281492 -0.000273163 -0.00026404 -0.000254103 -0.000243338 -0.000231729 -0.000219266 -0.000205937 -0.000191733 -0.000176647 -0.00016067 -0.000143795 -0.000126016 -0.000107326 -8.77183E-05 -6.71877E-05 -4.57284E-05 -2.33345E-05 -5.46432E-10 2.40945E-05 4.87479E-05 7.39309E-05 9.96165E-05 0.000125779 0.000152394 0.000179438 0.000206891 0.00023473 0.000262936 +-0.000431593 -0.000430889 -0.000430186 -0.000429485 -0.000428784 -0.000428084 -0.000427386 -0.000426688 -0.000425991 -0.000425294 -0.000424599 -0.000423904 -0.00042321 -0.000422517 -0.000421824 -0.000421132 -0.000420441 -0.00041975 -0.00041906 -0.000418371 -0.000417681 -0.000416993 -0.000416305 -0.000415617 -0.00041493 -0.000414243 -0.000413556 -0.00041287 -0.000412184 -0.000411498 -0.000410813 -0.000410127 -0.000409442 -0.000408758 -0.000408073 -0.000407388 -0.000406704 -0.000406019 -0.000405335 -0.000404651 -0.000403966 -0.000403282 -0.000402597 -0.000401913 -0.000401228 -0.000400544 -0.000399859 -0.000399174 -0.000398488 -0.000397803 -0.000397117 -0.000396432 -0.000395745 -0.000395059 -0.000394372 -0.000393685 -0.000392998 -0.00039231 -0.000391622 -0.000390933 -0.000390244 -0.000389555 -0.000388865 -0.000388174 -0.000387483 -0.000386792 -0.0003861 -0.000385408 -0.000384714 -0.000384021 -0.000383326 -0.000382631 -0.000381936 -0.00038124 -0.000380543 -0.000379845 -0.000379147 -0.000378447 -0.000377747 -0.000377047 -0.000376345 -0.000375643 -0.00037494 -0.000374236 -0.000373531 -0.000372825 -0.000372118 -0.00037141 -0.000370701 -0.000369991 -0.00036928 -0.000368568 -0.000367855 -0.000367141 -0.000366425 -0.000365708 -0.00036499 -0.000364271 -0.00036355 -0.000362828 -0.000362104 -0.000361379 -0.000360653 -0.000359925 -0.000359195 -0.000358463 -0.00035773 -0.000356994 -0.000356257 -0.000355518 -0.000354776 -0.000354033 -0.000353287 -0.000352538 -0.000351787 -0.000351034 -0.000350277 -0.000349518 -0.000348755 -0.000347989 -0.00034722 -0.000346447 -0.00034567 -0.000344889 -0.000344103 -0.000343313 -0.000342517 -0.000341716 -0.000340909 -0.000340095 -0.000339275 -0.000338447 -0.00033761 -0.000336765 -0.000335909 -0.000335041 -0.000334161 -0.000333267 -0.000332356 -0.000331427 -0.000330477 -0.000329502 -0.000328498 -0.00032746 -0.000326381 -0.000325253 -0.000324065 -0.000322805 -0.000321456 -0.000319996 -0.000318399 -0.000316634 -0.00031466 -0.000312433 -0.000309898 -0.000306998 -0.000303672 -0.00029986 -0.0002955 -0.000290539 -0.000284928 -0.000278623 -0.000271588 -0.000263793 -0.000255212 -0.000245824 -0.000235611 -0.000224557 -0.000212651 -0.000199879 -0.000186234 -0.000171704 -0.000156284 -0.000139964 -0.000122738 -0.0001046 -8.55418E-05 -6.5559E-05 -4.4645E-05 -2.2794E-05 -5.04693E-10 2.3566E-05 4.77115E-05 7.24063E-05 9.76227E-05 0.000123334 0.000149516 0.000176144 0.000203196 0.000230651 0.000258488 +-0.000412982 -0.000412299 -0.000411617 -0.000410935 -0.000410255 -0.000409576 -0.000408898 -0.00040822 -0.000407544 -0.000406868 -0.000406193 -0.000405518 -0.000404845 -0.000404172 -0.0004035 -0.000402828 -0.000402158 -0.000401487 -0.000400818 -0.000400149 -0.00039948 -0.000398812 -0.000398144 -0.000397477 -0.00039681 -0.000396144 -0.000395478 -0.000394812 -0.000394147 -0.000393482 -0.000392817 -0.000392152 -0.000391488 -0.000390824 -0.00039016 -0.000389496 -0.000388832 -0.000388169 -0.000387505 -0.000386842 -0.000386178 -0.000385515 -0.000384851 -0.000384188 -0.000383524 -0.000382861 -0.000382197 -0.000381533 -0.000380869 -0.000380205 -0.000379541 -0.000378876 -0.000378211 -0.000377546 -0.000376881 -0.000376216 -0.00037555 -0.000374884 -0.000374217 -0.00037355 -0.000372883 -0.000372215 -0.000371547 -0.000370879 -0.00037021 -0.00036954 -0.000368871 -0.0003682 -0.000367529 -0.000366858 -0.000366186 -0.000365513 -0.00036484 -0.000364166 -0.000363492 -0.000362817 -0.000362141 -0.000361465 -0.000360788 -0.00036011 -0.000359431 -0.000358752 -0.000358072 -0.000357391 -0.00035671 -0.000356027 -0.000355344 -0.000354659 -0.000353974 -0.000353288 -0.000352601 -0.000351913 -0.000351224 -0.000350534 -0.000349842 -0.00034915 -0.000348456 -0.000347762 -0.000347066 -0.000346368 -0.00034567 -0.00034497 -0.000344268 -0.000343566 -0.000342861 -0.000342155 -0.000341448 -0.000340738 -0.000340027 -0.000339314 -0.0003386 -0.000337883 -0.000337164 -0.000336443 -0.000335719 -0.000334993 -0.000334265 -0.000333533 -0.000332799 -0.000332062 -0.000331322 -0.000330579 -0.000329831 -0.00032908 -0.000328326 -0.000327566 -0.000326802 -0.000326033 -0.000325259 -0.000324479 -0.000323693 -0.0003229 -0.000322099 -0.00032129 -0.000320472 -0.000319644 -0.000318805 -0.000317953 -0.000317087 -0.000316205 -0.000315304 -0.000314381 -0.000313434 -0.000312457 -0.000311445 -0.000310391 -0.000309286 -0.000308119 -0.000306877 -0.000305541 -0.000304088 -0.000302491 -0.000300714 -0.000298716 -0.000296448 -0.000293855 -0.000290875 -0.000287447 -0.000283508 -0.000279 -0.000273868 -0.000268065 -0.000261549 -0.000254287 -0.00024625 -0.000237413 -0.000227756 -0.000217263 -0.00020592 -0.000193713 -0.000180632 -0.000166669 -0.000151813 -0.000136057 -0.000119395 -0.000101818 -8.33202E-05 -6.38957E-05 -4.35382E-05 -2.22417E-05 -4.66022E-10 2.30256E-05 4.66515E-05 7.08469E-05 9.55832E-05 0.000120833 0.000146571 0.000172773 0.000199415 0.000226476 0.000253935 +-0.000394567 -0.000393904 -0.000393243 -0.000392582 -0.000391923 -0.000391264 -0.000390607 -0.00038995 -0.000389294 -0.000388638 -0.000387984 -0.00038733 -0.000386677 -0.000386025 -0.000385373 -0.000384722 -0.000384072 -0.000383422 -0.000382773 -0.000382125 -0.000381477 -0.000380829 -0.000380182 -0.000379536 -0.000378889 -0.000378244 -0.000377598 -0.000376953 -0.000376309 -0.000375664 -0.00037502 -0.000374376 -0.000373733 -0.00037309 -0.000372446 -0.000371803 -0.000371161 -0.000370518 -0.000369875 -0.000369233 -0.00036859 -0.000367948 -0.000367305 -0.000366663 -0.00036602 -0.000365378 -0.000364735 -0.000364093 -0.00036345 -0.000362807 -0.000362164 -0.000361521 -0.000360878 -0.000360234 -0.00035959 -0.000358946 -0.000358302 -0.000357657 -0.000357012 -0.000356367 -0.000355722 -0.000355076 -0.00035443 -0.000353783 -0.000353136 -0.000352489 -0.000351841 -0.000351193 -0.000350544 -0.000349895 -0.000349245 -0.000348595 -0.000347944 -0.000347293 -0.000346641 -0.000345989 -0.000345336 -0.000344682 -0.000344028 -0.000343373 -0.000342717 -0.000342061 -0.000341404 -0.000340746 -0.000340088 -0.000339429 -0.000338769 -0.000338108 -0.000337446 -0.000336784 -0.00033612 -0.000335456 -0.000334791 -0.000334125 -0.000333458 -0.000332789 -0.00033212 -0.00033145 -0.000330779 -0.000330106 -0.000329432 -0.000328757 -0.000328081 -0.000327403 -0.000326724 -0.000326044 -0.000325362 -0.000324678 -0.000323993 -0.000323306 -0.000322618 -0.000321927 -0.000321235 -0.000320541 -0.000319844 -0.000319146 -0.000318445 -0.000317742 -0.000317036 -0.000316327 -0.000315616 -0.000314901 -0.000314183 -0.000313462 -0.000312737 -0.000312009 -0.000311276 -0.000310538 -0.000309796 -0.000309049 -0.000308296 -0.000307537 -0.000306771 -0.000305998 -0.000305217 -0.000304427 -0.000303627 -0.000302816 -0.000301992 -0.000301154 -0.0003003 -0.000299427 -0.000298533 -0.000297613 -0.000296663 -0.000295677 -0.000294648 -0.000293566 -0.00029242 -0.000291195 -0.000289871 -0.000288424 -0.000286824 -0.000285033 -0.000283008 -0.000280695 -0.000278036 -0.00027497 -0.000271432 -0.00026736 -0.000262695 -0.000257385 -0.000251384 -0.000244653 -0.000237159 -0.000228875 -0.000219778 -0.000209851 -0.000199075 -0.00018744 -0.000174932 -0.000161541 -0.000147259 -0.000132076 -0.000115986 -9.89806E-05 -8.10535E-05 -6.21981E-05 -4.24082E-05 -2.16776E-05 -4.30202E-10 2.24733E-05 4.5568E-05 6.92526E-05 9.34975E-05 0.000118275 0.000143559 0.000169324 0.000195546 0.000222204 0.000249275 +-0.000376363 -0.000375722 -0.000375081 -0.000374441 -0.000373802 -0.000373164 -0.000372527 -0.000371891 -0.000371256 -0.000370621 -0.000369987 -0.000369354 -0.000368722 -0.00036809 -0.000367459 -0.000366829 -0.0003662 -0.000365571 -0.000364942 -0.000364314 -0.000363687 -0.00036306 -0.000362434 -0.000361808 -0.000361182 -0.000360557 -0.000359933 -0.000359308 -0.000358685 -0.000358061 -0.000357438 -0.000356815 -0.000356192 -0.000355569 -0.000354947 -0.000354325 -0.000353703 -0.000353081 -0.00035246 -0.000351838 -0.000351217 -0.000350595 -0.000349974 -0.000349353 -0.000348731 -0.00034811 -0.000347489 -0.000346867 -0.000346246 -0.000345624 -0.000345002 -0.000344381 -0.000343759 -0.000343136 -0.000342514 -0.000341892 -0.000341269 -0.000340646 -0.000340023 -0.000339399 -0.000338776 -0.000338152 -0.000337527 -0.000336903 -0.000336277 -0.000335652 -0.000335026 -0.0003344 -0.000333774 -0.000333147 -0.000332519 -0.000331891 -0.000331263 -0.000330634 -0.000330005 -0.000329375 -0.000328744 -0.000328113 -0.000327482 -0.00032685 -0.000326217 -0.000325584 -0.00032495 -0.000324315 -0.00032368 -0.000323044 -0.000322407 -0.00032177 -0.000321132 -0.000320493 -0.000319853 -0.000319212 -0.000318571 -0.000317929 -0.000317286 -0.000316642 -0.000315997 -0.000315351 -0.000314704 -0.000314056 -0.000313406 -0.000312756 -0.000312105 -0.000311452 -0.000310798 -0.000310143 -0.000309486 -0.000308829 -0.000308169 -0.000307508 -0.000306846 -0.000306182 -0.000305516 -0.000304848 -0.000304178 -0.000303507 -0.000302833 -0.000302157 -0.000301479 -0.000300798 -0.000300115 -0.000299429 -0.000298741 -0.000298049 -0.000297353 -0.000296655 -0.000295952 -0.000295246 -0.000294535 -0.00029382 -0.000293099 -0.000292373 -0.000291641 -0.000290903 -0.000290158 -0.000289404 -0.000288642 -0.00028787 -0.000287087 -0.000286292 -0.000285482 -0.000284656 -0.000283812 -0.000282945 -0.000282053 -0.00028113 -0.00028017 -0.000279166 -0.000278108 -0.000276982 -0.000275773 -0.00027446 -0.000273018 -0.000271412 -0.000269604 -0.000267546 -0.000265183 -0.000262454 -0.000259295 -0.00025564 -0.000251427 -0.000246599 -0.000241104 -0.000234899 -0.000227947 -0.000220216 -0.000211682 -0.000202323 -0.000192121 -0.000181063 -0.000169134 -0.000156324 -0.000142623 -0.000128022 -0.000112513 -9.60889E-05 -7.87423E-05 -6.04665E-05 -4.1255E-05 -2.11017E-05 -3.97027E-10 2.19091E-05 4.44609E-05 6.76231E-05 9.13656E-05 0.00011566 0.000140479 0.000165797 0.000191589 0.000217834 0.000244508 +-0.000358387 -0.000357766 -0.000357146 -0.000356527 -0.000355909 -0.000355292 -0.000354676 -0.000354061 -0.000353446 -0.000352832 -0.000352219 -0.000351607 -0.000350995 -0.000350384 -0.000349774 -0.000349165 -0.000348556 -0.000347948 -0.00034734 -0.000346733 -0.000346126 -0.00034552 -0.000344914 -0.000344309 -0.000343705 -0.0003431 -0.000342497 -0.000341893 -0.00034129 -0.000340687 -0.000340085 -0.000339483 -0.000338881 -0.000338279 -0.000337678 -0.000337077 -0.000336476 -0.000335875 -0.000335274 -0.000334674 -0.000334073 -0.000333473 -0.000332873 -0.000332272 -0.000331672 -0.000331072 -0.000330472 -0.000329872 -0.000329272 -0.000328671 -0.000328071 -0.000327471 -0.00032687 -0.000326269 -0.000325669 -0.000325068 -0.000324466 -0.000323865 -0.000323264 -0.000322662 -0.00032206 -0.000321458 -0.000320855 -0.000320252 -0.000319649 -0.000319046 -0.000318442 -0.000317838 -0.000317233 -0.000316629 -0.000316023 -0.000315418 -0.000314812 -0.000314205 -0.000313598 -0.000312991 -0.000312383 -0.000311775 -0.000311166 -0.000310556 -0.000309947 -0.000309336 -0.000308725 -0.000308113 -0.000307501 -0.000306888 -0.000306275 -0.000305661 -0.000305046 -0.00030443 -0.000303814 -0.000303197 -0.00030258 -0.000301961 -0.000301342 -0.000300722 -0.000300101 -0.000299479 -0.000298856 -0.000298232 -0.000297608 -0.000296982 -0.000296355 -0.000295728 -0.000295099 -0.000294468 -0.000293837 -0.000293204 -0.000292571 -0.000291935 -0.000291299 -0.00029066 -0.000290021 -0.000289379 -0.000288736 -0.000288091 -0.000287444 -0.000286796 -0.000286145 -0.000285492 -0.000284837 -0.000284179 -0.000283518 -0.000282855 -0.000282189 -0.00028152 -0.000280847 -0.000280171 -0.000279491 -0.000278807 -0.000278118 -0.000277425 -0.000276726 -0.000276021 -0.00027531 -0.000274592 -0.000273867 -0.000273133 -0.000272389 -0.000271634 -0.000270867 -0.000270086 -0.000269288 -0.000268472 -0.000267633 -0.000266769 -0.000265873 -0.000264939 -0.00026396 -0.000262924 -0.000261818 -0.000260625 -0.000259322 -0.000257882 -0.000256269 -0.000254441 -0.000252346 -0.000249927 -0.000247121 -0.000243861 -0.000240082 -0.000235721 -0.000230722 -0.000225037 -0.000218622 -0.000211444 -0.000203473 -0.000194686 -0.000185062 -0.000174585 -0.000163241 -0.000151019 -0.000137906 -0.000123896 -0.000108977 -9.31434E-05 -7.6387E-05 -5.87011E-05 -4.00789E-05 -2.05141E-05 -3.66309E-10 2.1333E-05 4.33302E-05 6.59586E-05 8.91874E-05 0.000112987 0.000137331 0.000162191 0.000187544 0.000213365 0.000239632 +-0.000340654 -0.000340054 -0.000339456 -0.000338858 -0.00033826 -0.000337664 -0.000337069 -0.000336474 -0.000335881 -0.000335288 -0.000334696 -0.000334104 -0.000333513 -0.000332923 -0.000332334 -0.000331745 -0.000331157 -0.00033057 -0.000329983 -0.000329397 -0.000328811 -0.000328226 -0.000327641 -0.000327057 -0.000326473 -0.000325889 -0.000325306 -0.000324724 -0.000324142 -0.00032356 -0.000322978 -0.000322397 -0.000321816 -0.000321235 -0.000320655 -0.000320075 -0.000319495 -0.000318915 -0.000318335 -0.000317756 -0.000317176 -0.000316597 -0.000316018 -0.000315439 -0.00031486 -0.000314281 -0.000313702 -0.000313123 -0.000312544 -0.000311965 -0.000311386 -0.000310807 -0.000310228 -0.000309649 -0.00030907 -0.00030849 -0.000307911 -0.000307331 -0.000306751 -0.000306171 -0.000305591 -0.00030501 -0.000304429 -0.000303849 -0.000303267 -0.000302686 -0.000302104 -0.000301522 -0.00030094 -0.000300357 -0.000299774 -0.00029919 -0.000298607 -0.000298022 -0.000297438 -0.000296853 -0.000296268 -0.000295682 -0.000295096 -0.000294509 -0.000293922 -0.000293334 -0.000292746 -0.000292157 -0.000291568 -0.000290978 -0.000290388 -0.000289797 -0.000289205 -0.000288613 -0.00028802 -0.000287427 -0.000286833 -0.000286238 -0.000285642 -0.000285046 -0.000284449 -0.000283851 -0.000283252 -0.000282653 -0.000282052 -0.000281451 -0.000280849 -0.000280246 -0.000279641 -0.000279036 -0.00027843 -0.000277822 -0.000277213 -0.000276604 -0.000275992 -0.00027538 -0.000274766 -0.000274151 -0.000273534 -0.000272915 -0.000272295 -0.000271673 -0.000271049 -0.000270423 -0.000269795 -0.000269165 -0.000268533 -0.000267898 -0.00026726 -0.00026662 -0.000265977 -0.00026533 -0.00026468 -0.000264027 -0.000263369 -0.000262707 -0.000262041 -0.000261369 -0.000260691 -0.000260008 -0.000259318 -0.00025862 -0.000257913 -0.000257197 -0.000256471 -0.000255732 -0.000254979 -0.00025421 -0.000253422 -0.000252612 -0.000251775 -0.000250906 -0.000249999 -0.000249044 -0.00024803 -0.000246943 -0.000245765 -0.000244471 -0.000243031 -0.000241408 -0.000239556 -0.00023742 -0.00023494 -0.00023205 -0.000228682 -0.000224771 -0.000220255 -0.000215079 -0.000209197 -0.000202568 -0.000195159 -0.000186945 -0.000177901 -0.000168011 -0.000157258 -0.000145629 -0.000133113 -0.000119699 -0.00010538 -9.01452E-05 -7.39886E-05 -5.69025E-05 -3.88802E-05 -1.99149E-05 -3.37871E-10 2.07452E-05 4.21761E-05 6.42591E-05 8.69628E-05 0.000110257 0.000134114 0.000158506 0.000183409 0.000208797 0.000234647 +-0.000323183 -0.000322604 -0.000322026 -0.000321449 -0.000320873 -0.000320298 -0.000319724 -0.00031915 -0.000318577 -0.000318005 -0.000317434 -0.000316864 -0.000316294 -0.000315725 -0.000315156 -0.000314589 -0.000314021 -0.000313455 -0.000312889 -0.000312323 -0.000311759 -0.000311194 -0.00031063 -0.000310067 -0.000309504 -0.000308941 -0.000308379 -0.000307818 -0.000307256 -0.000306695 -0.000306135 -0.000305575 -0.000305015 -0.000304455 -0.000303895 -0.000303336 -0.000302777 -0.000302219 -0.00030166 -0.000301102 -0.000300543 -0.000299985 -0.000299427 -0.000298869 -0.000298312 -0.000297754 -0.000297196 -0.000296639 -0.000296081 -0.000295523 -0.000294966 -0.000294408 -0.00029385 -0.000293292 -0.000292735 -0.000292177 -0.000291619 -0.000291061 -0.000290502 -0.000289944 -0.000289385 -0.000288826 -0.000288267 -0.000287708 -0.000287149 -0.000286589 -0.000286029 -0.000285469 -0.000284909 -0.000284348 -0.000283787 -0.000283226 -0.000282665 -0.000282103 -0.00028154 -0.000280978 -0.000280415 -0.000279852 -0.000279288 -0.000278724 -0.000278159 -0.000277594 -0.000277029 -0.000276463 -0.000275896 -0.00027533 -0.000274762 -0.000274194 -0.000273626 -0.000273057 -0.000272487 -0.000271917 -0.000271347 -0.000270775 -0.000270203 -0.000269631 -0.000269057 -0.000268483 -0.000267908 -0.000267333 -0.000266757 -0.00026618 -0.000265602 -0.000265023 -0.000264443 -0.000263862 -0.000263281 -0.000262698 -0.000262114 -0.00026153 -0.000260944 -0.000260357 -0.000259768 -0.000259179 -0.000258588 -0.000257995 -0.000257401 -0.000256805 -0.000256208 -0.000255609 -0.000255008 -0.000254406 -0.000253801 -0.000253194 -0.000252584 -0.000251972 -0.000251358 -0.00025074 -0.00025012 -0.000249496 -0.000248869 -0.000248238 -0.000247602 -0.000246962 -0.000246318 -0.000245668 -0.000245011 -0.000244349 -0.000243678 -0.000243 -0.000242312 -0.000241614 -0.000240903 -0.000240179 -0.000239438 -0.000238679 -0.000237896 -0.000237087 -0.000236245 -0.000235364 -0.000234433 -0.000233442 -0.000232373 -0.000231209 -0.000229922 -0.000228481 -0.000226845 -0.000224964 -0.000222782 -0.000220234 -0.000217253 -0.00021377 -0.00020972 -0.000205042 -0.000199682 -0.000193598 -0.00018675 -0.000179108 -0.000170647 -0.000161346 -0.000151188 -0.000140158 -0.000128244 -0.000115435 -0.000101722 -8.70957E-05 -7.1548E-05 -5.50716E-05 -3.76593E-05 -1.93044E-05 -3.11549E-10 2.01457E-05 4.09986E-05 6.25248E-05 8.46921E-05 0.00010747 0.000130829 0.000154743 0.000179184 0.000204129 0.000229553 +-0.000305991 -0.000305433 -0.000304877 -0.000304321 -0.000303766 -0.000303212 -0.000302659 -0.000302106 -0.000301554 -0.000301003 -0.000300453 -0.000299904 -0.000299355 -0.000298807 -0.000298259 -0.000297712 -0.000297166 -0.000296621 -0.000296076 -0.000295531 -0.000294987 -0.000294444 -0.000293901 -0.000293358 -0.000292816 -0.000292275 -0.000291734 -0.000291193 -0.000290652 -0.000290112 -0.000289573 -0.000289034 -0.000288495 -0.000287956 -0.000287417 -0.000286879 -0.000286341 -0.000285804 -0.000285266 -0.000284729 -0.000284192 -0.000283655 -0.000283118 -0.000282581 -0.000282045 -0.000281508 -0.000280972 -0.000280435 -0.000279899 -0.000279363 -0.000278826 -0.00027829 -0.000277754 -0.000277217 -0.000276681 -0.000276145 -0.000275608 -0.000275071 -0.000274535 -0.000273998 -0.000273461 -0.000272924 -0.000272387 -0.000271849 -0.000271312 -0.000270774 -0.000270236 -0.000269698 -0.000269159 -0.000268621 -0.000268082 -0.000267543 -0.000267003 -0.000266464 -0.000265924 -0.000265383 -0.000264843 -0.000264302 -0.00026376 -0.000263219 -0.000262677 -0.000262134 -0.000261591 -0.000261048 -0.000260505 -0.000259961 -0.000259416 -0.000258871 -0.000258326 -0.00025778 -0.000257233 -0.000256687 -0.000256139 -0.000255591 -0.000255043 -0.000254493 -0.000253944 -0.000253393 -0.000252842 -0.000252291 -0.000251738 -0.000251185 -0.000250631 -0.000250077 -0.000249521 -0.000248965 -0.000248408 -0.00024785 -0.000247291 -0.000246731 -0.00024617 -0.000245608 -0.000245045 -0.000244481 -0.000243915 -0.000243348 -0.00024278 -0.000242211 -0.00024164 -0.000241067 -0.000240493 -0.000239917 -0.000239339 -0.000238759 -0.000238178 -0.000237594 -0.000237007 -0.000236418 -0.000235827 -0.000235232 -0.000234634 -0.000234033 -0.000233429 -0.00023282 -0.000232207 -0.000231589 -0.000230966 -0.000230337 -0.000229702 -0.00022906 -0.000228409 -0.000227749 -0.000227079 -0.000226397 -0.000225701 -0.000224988 -0.000224257 -0.000223503 -0.000222721 -0.000221906 -0.00022105 -0.000220144 -0.000219174 -0.000218124 -0.000216972 -0.000215691 -0.000214246 -0.000212593 -0.000210679 -0.000208445 -0.000205824 -0.000202745 -0.00019914 -0.000194943 -0.000190095 -0.000184547 -0.000178254 -0.000171183 -0.000163305 -0.000154596 -0.000145036 -0.00013461 -0.000123304 -0.000111107 -9.80074E-05 -8.39968E-05 -6.90666E-05 -5.3209E-05 -3.64167E-05 -1.86827E-05 -2.8719E-10 1.95347E-05 3.97982E-05 6.0756E-05 8.23754E-05 0.000104625 0.000127476 0.0001509 0.00017487 0.000199361 0.000224348 +-0.000289098 -0.000288561 -0.000288026 -0.000287491 -0.000286958 -0.000286425 -0.000285892 -0.000285361 -0.00028483 -0.000284301 -0.000283771 -0.000283243 -0.000282715 -0.000282188 -0.000281662 -0.000281136 -0.000280611 -0.000280086 -0.000279562 -0.000279038 -0.000278515 -0.000277993 -0.000277471 -0.00027695 -0.000276428 -0.000275908 -0.000275388 -0.000274868 -0.000274349 -0.00027383 -0.000273311 -0.000272793 -0.000272275 -0.000271757 -0.00027124 -0.000270723 -0.000270206 -0.000269689 -0.000269173 -0.000268656 -0.00026814 -0.000267625 -0.000267109 -0.000266593 -0.000266078 -0.000265563 -0.000265047 -0.000264532 -0.000264017 -0.000263502 -0.000262987 -0.000262472 -0.000261957 -0.000261442 -0.000260927 -0.000260412 -0.000259897 -0.000259382 -0.000258867 -0.000258352 -0.000257836 -0.000257321 -0.000256805 -0.00025629 -0.000255774 -0.000255258 -0.000254742 -0.000254225 -0.000253709 -0.000253192 -0.000252675 -0.000252158 -0.000251641 -0.000251123 -0.000250605 -0.000250087 -0.000249569 -0.00024905 -0.000248531 -0.000248012 -0.000247492 -0.000246972 -0.000246452 -0.000245932 -0.000245411 -0.000244889 -0.000244368 -0.000243845 -0.000243323 -0.0002428 -0.000242276 -0.000241753 -0.000241228 -0.000240703 -0.000240178 -0.000239652 -0.000239126 -0.000238599 -0.000238072 -0.000237543 -0.000237015 -0.000236486 -0.000235956 -0.000235425 -0.000234894 -0.000234361 -0.000233829 -0.000233295 -0.000232761 -0.000232225 -0.000231689 -0.000231152 -0.000230614 -0.000230074 -0.000229534 -0.000228993 -0.00022845 -0.000227906 -0.000227361 -0.000226815 -0.000226267 -0.000225717 -0.000225166 -0.000224613 -0.000224059 -0.000223502 -0.000222943 -0.000222382 -0.000221819 -0.000221253 -0.000220684 -0.000220113 -0.000219538 -0.000218959 -0.000218377 -0.000217791 -0.0002172 -0.000216604 -0.000216002 -0.000215394 -0.00021478 -0.000214157 -0.000213525 -0.000212883 -0.000212229 -0.000211561 -0.000210877 -0.000210174 -0.000209448 -0.000208694 -0.000207905 -0.000207075 -0.000206192 -0.000205243 -0.000204211 -0.000203071 -0.000201794 -0.000200342 -0.000198668 -0.000196717 -0.000194425 -0.000191723 -0.000188539 -0.000184804 -0.000180453 -0.00017543 -0.000169686 -0.000163182 -0.000155885 -0.000147768 -0.000138809 -0.000128991 -0.000118298 -0.000106717 -9.4238E-05 -8.08506E-05 -6.65461E-05 -5.13162E-05 -3.51533E-05 -1.80503E-05 -2.64653E-10 1.89125E-05 3.85752E-05 5.89532E-05 8.00134E-05 0.000101724 0.000124056 0.000146979 0.000170467 0.000194493 0.000219034 +-0.000272523 -0.000272008 -0.000271494 -0.000270981 -0.000270468 -0.000269956 -0.000269445 -0.000268935 -0.000268426 -0.000267917 -0.000267409 -0.000266902 -0.000266395 -0.000265889 -0.000265383 -0.000264879 -0.000264374 -0.000263871 -0.000263368 -0.000262865 -0.000262363 -0.000261862 -0.000261361 -0.00026086 -0.00026036 -0.000259861 -0.000259362 -0.000258863 -0.000258364 -0.000257866 -0.000257369 -0.000256872 -0.000256375 -0.000255878 -0.000255382 -0.000254885 -0.00025439 -0.000253894 -0.000253399 -0.000252904 -0.000252409 -0.000251914 -0.000251419 -0.000250925 -0.000250431 -0.000249937 -0.000249443 -0.000248949 -0.000248455 -0.000247961 -0.000247467 -0.000246974 -0.00024648 -0.000245986 -0.000245493 -0.000244999 -0.000244506 -0.000244012 -0.000243518 -0.000243025 -0.000242531 -0.000242037 -0.000241543 -0.000241049 -0.000240555 -0.00024006 -0.000239566 -0.000239072 -0.000238577 -0.000238082 -0.000237587 -0.000237092 -0.000236596 -0.000236101 -0.000235605 -0.000235109 -0.000234613 -0.000234116 -0.000233619 -0.000233122 -0.000232625 -0.000232128 -0.00023163 -0.000231132 -0.000230633 -0.000230134 -0.000229635 -0.000229136 -0.000228636 -0.000228136 -0.000227635 -0.000227134 -0.000226633 -0.000226131 -0.000225629 -0.000225126 -0.000224623 -0.000224119 -0.000223615 -0.000223111 -0.000222605 -0.0002221 -0.000221593 -0.000221086 -0.000220579 -0.000220071 -0.000219562 -0.000219052 -0.000218542 -0.000218031 -0.000217519 -0.000217007 -0.000216493 -0.000215979 -0.000215464 -0.000214947 -0.00021443 -0.000213911 -0.000213392 -0.000212871 -0.000212349 -0.000211825 -0.0002113 -0.000210774 -0.000210246 -0.000209716 -0.000209185 -0.000208651 -0.000208115 -0.000207577 -0.000207037 -0.000206494 -0.000205948 -0.0002054 -0.000204847 -0.000204292 -0.000203732 -0.000203168 -0.000202598 -0.000202024 -0.000201443 -0.000200856 -0.000200261 -0.000199657 -0.000199043 -0.000198417 -0.000197777 -0.000197122 -0.000196446 -0.000195748 -0.000195021 -0.00019426 -0.000193455 -0.000192596 -0.000191667 -0.000190651 -0.000189521 -0.000188246 -0.000186784 -0.000185086 -0.000183093 -0.000180737 -0.000177947 -0.00017465 -0.000170777 -0.000166265 -0.00016106 -0.000155117 -0.000148398 -0.000140872 -0.000132515 -0.000123306 -0.000113229 -0.00010227 -9.04175E-05 -7.76599E-05 -6.39885E-05 -4.93944E-05 -3.38699E-05 -1.74076E-05 -2.43806E-10 1.82794E-05 3.73301E-05 5.7117E-05 7.76066E-05 9.8767E-05 0.000120568 0.000142979 0.000165974 0.000189526 0.00021361 +-0.000256288 -0.000255794 -0.000255302 -0.000254809 -0.000254318 -0.000253828 -0.000253338 -0.000252849 -0.000252361 -0.000251873 -0.000251386 -0.0002509 -0.000250414 -0.000249929 -0.000249445 -0.000248961 -0.000248478 -0.000247996 -0.000247514 -0.000247032 -0.000246551 -0.000246071 -0.000245591 -0.000245111 -0.000244632 -0.000244154 -0.000243676 -0.000243198 -0.00024272 -0.000242243 -0.000241767 -0.00024129 -0.000240814 -0.000240339 -0.000239863 -0.000239388 -0.000238914 -0.000238439 -0.000237965 -0.000237491 -0.000237017 -0.000236543 -0.00023607 -0.000235596 -0.000235123 -0.00023465 -0.000234177 -0.000233705 -0.000233232 -0.000232759 -0.000232287 -0.000231815 -0.000231342 -0.00023087 -0.000230398 -0.000229925 -0.000229453 -0.000228981 -0.000228509 -0.000228036 -0.000227564 -0.000227092 -0.000226619 -0.000226147 -0.000225674 -0.000225201 -0.000224729 -0.000224256 -0.000223783 -0.00022331 -0.000222837 -0.000222363 -0.00022189 -0.000221416 -0.000220942 -0.000220468 -0.000219994 -0.000219519 -0.000219045 -0.00021857 -0.000218095 -0.000217619 -0.000217144 -0.000216668 -0.000216192 -0.000215715 -0.000215239 -0.000214762 -0.000214285 -0.000213807 -0.000213329 -0.000212851 -0.000212372 -0.000211893 -0.000211414 -0.000210934 -0.000210454 -0.000209974 -0.000209493 -0.000209011 -0.000208529 -0.000208047 -0.000207564 -0.000207081 -0.000206597 -0.000206112 -0.000205627 -0.000205142 -0.000204655 -0.000204168 -0.000203681 -0.000203192 -0.000202703 -0.000202213 -0.000201723 -0.000201231 -0.000200738 -0.000200245 -0.00019975 -0.000199255 -0.000198758 -0.00019826 -0.000197761 -0.000197261 -0.000196759 -0.000196255 -0.00019575 -0.000195244 -0.000194735 -0.000194225 -0.000193712 -0.000193197 -0.00019268 -0.00019216 -0.000191637 -0.000191111 -0.000190581 -0.000190048 -0.00018951 -0.000188968 -0.00018842 -0.000187867 -0.000187307 -0.000186739 -0.000186163 -0.000185576 -0.000184979 -0.000184367 -0.000183739 -0.000183092 -0.000182422 -0.000181722 -0.000180987 -0.000180207 -0.000179371 -0.000178463 -0.000177461 -0.00017634 -0.000175064 -0.00017359 -0.000171863 -0.000169822 -0.000167395 -0.000164509 -0.000161091 -0.000157073 -0.000152394 -0.000147003 -0.000140855 -0.000133918 -0.000126161 -0.000117563 -0.000108105 -9.7772E-05 -8.65499E-05 -7.4428E-05 -6.13962E-05 -4.74455E-05 -3.25677E-05 -1.6755E-05 -2.24526E-10 1.76358E-05 3.60636E-05 5.52481E-05 7.51559E-05 9.57545E-05 0.000117013 0.000138902 0.000161393 0.00018446 0.000208076 +-0.000240414 -0.000239942 -0.00023947 -0.000239 -0.00023853 -0.00023806 -0.000237592 -0.000237124 -0.000236657 -0.000236191 -0.000235725 -0.00023526 -0.000234795 -0.000234331 -0.000233868 -0.000233406 -0.000232943 -0.000232482 -0.000232021 -0.000231561 -0.000231101 -0.000230641 -0.000230182 -0.000229724 -0.000229266 -0.000228808 -0.000228351 -0.000227894 -0.000227437 -0.000226981 -0.000226526 -0.00022607 -0.000225615 -0.000225161 -0.000224706 -0.000224252 -0.000223799 -0.000223345 -0.000222892 -0.000222439 -0.000221986 -0.000221533 -0.000221081 -0.000220628 -0.000220176 -0.000219724 -0.000219273 -0.000218821 -0.00021837 -0.000217918 -0.000217467 -0.000217016 -0.000216564 -0.000216113 -0.000215662 -0.000215211 -0.00021476 -0.000214309 -0.000213858 -0.000213408 -0.000212957 -0.000212506 -0.000212055 -0.000211604 -0.000211153 -0.000210701 -0.00021025 -0.000209799 -0.000209348 -0.000208896 -0.000208445 -0.000207993 -0.000207541 -0.000207089 -0.000206637 -0.000206185 -0.000205732 -0.00020528 -0.000204827 -0.000204374 -0.000203921 -0.000203468 -0.000203015 -0.000202561 -0.000202107 -0.000201653 -0.000201198 -0.000200744 -0.000200289 -0.000199834 -0.000199378 -0.000198923 -0.000198467 -0.00019801 -0.000197554 -0.000197097 -0.000196639 -0.000196182 -0.000195724 -0.000195265 -0.000194806 -0.000194347 -0.000193888 -0.000193427 -0.000192967 -0.000192506 -0.000192044 -0.000191582 -0.00019112 -0.000190656 -0.000190193 -0.000189728 -0.000189263 -0.000188797 -0.000188331 -0.000187864 -0.000187395 -0.000186927 -0.000186457 -0.000185986 -0.000185515 -0.000185042 -0.000184568 -0.000184093 -0.000183617 -0.000183139 -0.000182661 -0.00018218 -0.000181698 -0.000181214 -0.000180729 -0.000180241 -0.000179752 -0.00017926 -0.000178765 -0.000178268 -0.000177768 -0.000177264 -0.000176757 -0.000176246 -0.00017573 -0.000175209 -0.000174683 -0.00017415 -0.000173609 -0.000173061 -0.000172502 -0.000171932 -0.000171349 -0.000170749 -0.00017013 -0.000169487 -0.000168814 -0.000168105 -0.00016735 -0.000166536 -0.000165647 -0.00016466 -0.000163545 -0.000162266 -0.000160776 -0.000159015 -0.000156919 -0.000154414 -0.000151425 -0.000147879 -0.000143709 -0.000138856 -0.000133272 -0.000126918 -0.000119759 -0.000111772 -0.000102933 -9.32278E-05 -8.26403E-05 -7.11587E-05 -5.87722E-05 -4.54715E-05 -3.12479E-05 -1.60933E-05 -2.067E-10 1.69822E-05 3.47765E-05 5.33478E-05 7.26624E-05 9.2688E-05 0.000113393 0.000134749 0.000156725 0.000179295 0.000202432 +-0.000224924 -0.000224473 -0.000224023 -0.000223574 -0.000223125 -0.000222677 -0.00022223 -0.000221783 -0.000221337 -0.000220892 -0.000220447 -0.000220003 -0.00021956 -0.000219117 -0.000218675 -0.000218233 -0.000217792 -0.000217352 -0.000216912 -0.000216472 -0.000216033 -0.000215595 -0.000215157 -0.000214719 -0.000214282 -0.000213845 -0.000213409 -0.000212973 -0.000212538 -0.000212103 -0.000211668 -0.000211233 -0.000210799 -0.000210366 -0.000209932 -0.000209499 -0.000209066 -0.000208634 -0.000208201 -0.000207769 -0.000207337 -0.000206906 -0.000206474 -0.000206043 -0.000205612 -0.000205181 -0.00020475 -0.000204319 -0.000203889 -0.000203459 -0.000203028 -0.000202598 -0.000202168 -0.000201738 -0.000201308 -0.000200879 -0.000200449 -0.000200019 -0.000199589 -0.00019916 -0.00019873 -0.0001983 -0.000197871 -0.000197441 -0.000197011 -0.000196581 -0.000196152 -0.000195722 -0.000195292 -0.000194862 -0.000194432 -0.000194002 -0.000193572 -0.000193141 -0.000192711 -0.00019228 -0.00019185 -0.000191419 -0.000190988 -0.000190557 -0.000190126 -0.000189694 -0.000189263 -0.000188831 -0.000188399 -0.000187967 -0.000187535 -0.000187103 -0.00018667 -0.000186237 -0.000185804 -0.00018537 -0.000184937 -0.000184503 -0.000184069 -0.000183634 -0.0001832 -0.000182765 -0.000182329 -0.000181893 -0.000181457 -0.000181021 -0.000180584 -0.000180147 -0.00017971 -0.000179272 -0.000178833 -0.000178395 -0.000177955 -0.000177516 -0.000177075 -0.000176635 -0.000176193 -0.000175751 -0.000175309 -0.000174865 -0.000174421 -0.000173977 -0.000173531 -0.000173085 -0.000172638 -0.00017219 -0.000171741 -0.000171292 -0.000170841 -0.000170388 -0.000169935 -0.000169481 -0.000169025 -0.000168567 -0.000168108 -0.000167647 -0.000167185 -0.00016672 -0.000166253 -0.000165784 -0.000165312 -0.000164837 -0.00016436 -0.000163878 -0.000163393 -0.000162904 -0.00016241 -0.00016191 -0.000161404 -0.000160891 -0.000160369 -0.000159838 -0.000159296 -0.00015874 -0.000158168 -0.000157577 -0.000156961 -0.000156315 -0.000155632 -0.000154902 -0.00015411 -0.000153238 -0.000152264 -0.000151154 -0.000149869 -0.000148357 -0.000146558 -0.000144401 -0.00014181 -0.000138709 -0.000135027 -0.000130698 -0.000125666 -0.000119886 -0.000113321 -0.000105941 -9.77219E-05 -8.8645E-05 -7.86944E-05 -6.78566E-05 -5.61201E-05 -4.3475E-05 -2.99121E-05 -1.54231E-05 -1.90222E-10 1.63193E-05 3.34698E-05 5.14171E-05 7.01276E-05 8.95689E-05 0.00010971 0.00013052 0.00015197 0.000174033 0.000196681 +-0.000209841 -0.000209411 -0.000208982 -0.000208554 -0.000208127 -0.0002077 -0.000207274 -0.000206849 -0.000206424 -0.000206 -0.000205576 -0.000205153 -0.000204731 -0.000204309 -0.000203888 -0.000203467 -0.000203047 -0.000202628 -0.000202209 -0.00020179 -0.000201372 -0.000200955 -0.000200537 -0.000200121 -0.000199705 -0.000199289 -0.000198873 -0.000198458 -0.000198044 -0.000197629 -0.000197216 -0.000196802 -0.000196389 -0.000195976 -0.000195563 -0.000195151 -0.000194739 -0.000194327 -0.000193916 -0.000193504 -0.000193093 -0.000192683 -0.000192272 -0.000191862 -0.000191451 -0.000191041 -0.000190632 -0.000190222 -0.000189812 -0.000189403 -0.000188994 -0.000188585 -0.000188176 -0.000187767 -0.000187358 -0.000186949 -0.00018654 -0.000186132 -0.000185723 -0.000185314 -0.000184906 -0.000184497 -0.000184089 -0.00018368 -0.000183272 -0.000182863 -0.000182455 -0.000182046 -0.000181638 -0.000181229 -0.00018082 -0.000180412 -0.000180003 -0.000179594 -0.000179185 -0.000178776 -0.000178367 -0.000177958 -0.000177549 -0.000177139 -0.00017673 -0.00017632 -0.00017591 -0.0001755 -0.00017509 -0.00017468 -0.00017427 -0.000173859 -0.000173448 -0.000173038 -0.000172626 -0.000172215 -0.000171804 -0.000171392 -0.00017098 -0.000170568 -0.000170155 -0.000169743 -0.00016933 -0.000168917 -0.000168503 -0.000168089 -0.000167675 -0.000167261 -0.000166846 -0.000166431 -0.000166016 -0.0001656 -0.000165184 -0.000164767 -0.00016435 -0.000163932 -0.000163514 -0.000163096 -0.000162677 -0.000162257 -0.000161837 -0.000161416 -0.000160995 -0.000160573 -0.00016015 -0.000159726 -0.000159302 -0.000158877 -0.00015845 -0.000158023 -0.000157595 -0.000157165 -0.000156735 -0.000156303 -0.00015587 -0.000155435 -0.000154999 -0.000154561 -0.000154121 -0.000153679 -0.000153235 -0.000152788 -0.000152339 -0.000151887 -0.000151431 -0.000150972 -0.000150509 -0.000150041 -0.000149567 -0.000149088 -0.000148602 -0.000148107 -0.000147604 -0.000147089 -0.00014656 -0.000146016 -0.000145452 -0.000144863 -0.000144244 -0.000143587 -0.00014288 -0.000142109 -0.000141255 -0.000140291 -0.000139184 -0.000137889 -0.000136352 -0.000134507 -0.000132281 -0.000129597 -0.000126377 -0.000122551 -0.000118056 -0.00011284 -0.00010686 -0.000100083 -9.24806E-05 -8.40319E-05 -7.47189E-05 -6.45271E-05 -5.3444E-05 -4.14589E-05 -2.85623E-05 -1.47454E-05 -1.74993E-10 1.56477E-05 3.21449E-05 4.94577E-05 6.75532E-05 8.6399E-05 0.000105964 0.000126217 0.000147131 0.000168675 0.000190824 +-0.000195189 -0.00019478 -0.000194373 -0.000193966 -0.000193559 -0.000193154 -0.000192749 -0.000192344 -0.000191941 -0.000191538 -0.000191135 -0.000190733 -0.000190332 -0.000189931 -0.000189531 -0.000189131 -0.000188732 -0.000188333 -0.000187935 -0.000187538 -0.00018714 -0.000186744 -0.000186347 -0.000185951 -0.000185556 -0.000185161 -0.000184766 -0.000184372 -0.000183978 -0.000183585 -0.000183192 -0.000182799 -0.000182406 -0.000182014 -0.000181622 -0.000181231 -0.000180839 -0.000180448 -0.000180058 -0.000179667 -0.000179277 -0.000178887 -0.000178497 -0.000178107 -0.000177718 -0.000177329 -0.00017694 -0.000176551 -0.000176162 -0.000175774 -0.000175385 -0.000174997 -0.000174609 -0.000174221 -0.000173833 -0.000173445 -0.000173057 -0.000172669 -0.000172282 -0.000171894 -0.000171506 -0.000171119 -0.000170731 -0.000170344 -0.000169957 -0.000169569 -0.000169182 -0.000168794 -0.000168407 -0.000168019 -0.000167632 -0.000167244 -0.000166857 -0.000166469 -0.000166082 -0.000165694 -0.000165306 -0.000164918 -0.000164531 -0.000164143 -0.000163755 -0.000163366 -0.000162978 -0.00016259 -0.000162201 -0.000161813 -0.000161424 -0.000161035 -0.000160646 -0.000160257 -0.000159868 -0.000159478 -0.000159089 -0.000158699 -0.000158309 -0.000157919 -0.000157529 -0.000157138 -0.000156747 -0.000156356 -0.000155965 -0.000155574 -0.000155182 -0.00015479 -0.000154398 -0.000154005 -0.000153612 -0.000153219 -0.000152826 -0.000152432 -0.000152038 -0.000151643 -0.000151248 -0.000150852 -0.000150457 -0.00015006 -0.000149663 -0.000149266 -0.000148868 -0.00014847 -0.00014807 -0.000147671 -0.00014727 -0.000146869 -0.000146467 -0.000146064 -0.000145661 -0.000145256 -0.00014485 -0.000144443 -0.000144035 -0.000143626 -0.000143216 -0.000142804 -0.00014239 -0.000141974 -0.000141557 -0.000141138 -0.000140716 -0.000140292 -0.000139865 -0.000139435 -0.000139001 -0.000138563 -0.000138121 -0.000137674 -0.000137221 -0.000136761 -0.000136294 -0.000135817 -0.000135329 -0.000134828 -0.000134311 -0.000133774 -0.000133212 -0.000132619 -0.000131987 -0.000131303 -0.000130552 -0.000129714 -0.000128759 -0.000127652 -0.000126343 -0.000124775 -0.000122879 -0.000120577 -0.00011779 -0.000114442 -0.000110465 -0.000105798 -0.000100394 -9.42117E-05 -8.72214E-05 -7.9398E-05 -7.07217E-05 -6.11764E-05 -5.07486E-05 -3.94267E-05 -2.72006E-05 -1.40612E-05 -1.60922E-10 1.49684E-05 3.08031E-05 4.74716E-05 6.49413E-05 8.31807E-05 0.000102158 0.000121844 0.000142209 0.000163223 0.000184861 +-0.000180991 -0.000180604 -0.000180217 -0.000179832 -0.000179446 -0.000179062 -0.000178678 -0.000178295 -0.000177912 -0.00017753 -0.000177148 -0.000176767 -0.000176387 -0.000176007 -0.000175627 -0.000175248 -0.00017487 -0.000174492 -0.000174115 -0.000173738 -0.000173361 -0.000172985 -0.00017261 -0.000172235 -0.00017186 -0.000171486 -0.000171112 -0.000170738 -0.000170365 -0.000169992 -0.000169619 -0.000169247 -0.000168875 -0.000168504 -0.000168133 -0.000167762 -0.000167391 -0.000167021 -0.00016665 -0.000166281 -0.000165911 -0.000165541 -0.000165172 -0.000164803 -0.000164435 -0.000164066 -0.000163698 -0.000163329 -0.000162961 -0.000162593 -0.000162226 -0.000161858 -0.00016149 -0.000161123 -0.000160756 -0.000160389 -0.000160022 -0.000159655 -0.000159288 -0.000158921 -0.000158554 -0.000158187 -0.000157821 -0.000157454 -0.000157088 -0.000156721 -0.000156354 -0.000155988 -0.000155622 -0.000155255 -0.000154889 -0.000154522 -0.000154156 -0.000153789 -0.000153422 -0.000153056 -0.000152689 -0.000152323 -0.000151956 -0.000151589 -0.000151222 -0.000150855 -0.000150488 -0.000150121 -0.000149754 -0.000149387 -0.00014902 -0.000148652 -0.000148285 -0.000147917 -0.00014755 -0.000147182 -0.000146814 -0.000146446 -0.000146077 -0.000145709 -0.00014534 -0.000144972 -0.000144603 -0.000144234 -0.000143864 -0.000143495 -0.000143125 -0.000142755 -0.000142385 -0.000142015 -0.000141644 -0.000141273 -0.000140902 -0.000140531 -0.000140159 -0.000139787 -0.000139415 -0.000139042 -0.000138669 -0.000138295 -0.000137921 -0.000137547 -0.000137172 -0.000136797 -0.000136421 -0.000136044 -0.000135668 -0.00013529 -0.000134912 -0.000134533 -0.000134153 -0.000133772 -0.000133391 -0.000133009 -0.000132625 -0.000132241 -0.000131855 -0.000131469 -0.00013108 -0.000130691 -0.000130299 -0.000129906 -0.000129511 -0.000129114 -0.000128715 -0.000128312 -0.000127907 -0.000127499 -0.000127087 -0.00012667 -0.000126249 -0.000125822 -0.000125388 -0.000124947 -0.000124497 -0.000124036 -0.000123562 -0.000123071 -0.000122561 -0.000122026 -0.000121458 -0.00012085 -0.000120189 -0.000119458 -0.000118634 -0.000117686 -0.000116575 -0.000115248 -0.000113643 -0.000111687 -0.0001093 -0.000106403 -0.000102919 -9.87835E-05 -9.39398E-05 -8.8343E-05 -8.19573E-05 -7.47544E-05 -6.67119E-05 -5.78119E-05 -4.80396E-05 -3.73824E-05 -2.58297E-05 -1.33718E-05 -1.47924E-10 1.42823E-05 2.94463E-05 4.54609E-05 6.22947E-05 7.99166E-05 9.82959E-05 0.000117402 0.000137207 0.00015768 0.000178796 +-0.000167273 -0.000166907 -0.000166541 -0.000166176 -0.000165812 -0.000165449 -0.000165085 -0.000164723 -0.000164361 -0.000164 -0.000163639 -0.000163279 -0.000162919 -0.00016256 -0.000162201 -0.000161843 -0.000161485 -0.000161128 -0.000160771 -0.000160415 -0.000160059 -0.000159704 -0.000159349 -0.000158994 -0.00015864 -0.000158286 -0.000157933 -0.00015758 -0.000157227 -0.000156874 -0.000156522 -0.000156171 -0.000155819 -0.000155468 -0.000155117 -0.000154767 -0.000154417 -0.000154067 -0.000153717 -0.000153368 -0.000153018 -0.000152669 -0.000152321 -0.000151972 -0.000151624 -0.000151276 -0.000150928 -0.00015058 -0.000150232 -0.000149885 -0.000149537 -0.00014919 -0.000148843 -0.000148496 -0.00014815 -0.000147803 -0.000147456 -0.00014711 -0.000146764 -0.000146417 -0.000146071 -0.000145725 -0.000145379 -0.000145033 -0.000144687 -0.000144341 -0.000143995 -0.00014365 -0.000143304 -0.000142958 -0.000142612 -0.000142267 -0.000141921 -0.000141575 -0.000141229 -0.000140884 -0.000140538 -0.000140192 -0.000139846 -0.000139501 -0.000139155 -0.000138809 -0.000138463 -0.000138117 -0.000137771 -0.000137425 -0.000137079 -0.000136732 -0.000136386 -0.00013604 -0.000135693 -0.000135347 -0.000135 -0.000134653 -0.000134306 -0.000133959 -0.000133612 -0.000133265 -0.000132917 -0.00013257 -0.000132222 -0.000131874 -0.000131526 -0.000131178 -0.00013083 -0.000130481 -0.000130133 -0.000129784 -0.000129434 -0.000129085 -0.000128735 -0.000128385 -0.000128035 -0.000127685 -0.000127334 -0.000126983 -0.000126631 -0.00012628 -0.000125927 -0.000125575 -0.000125222 -0.000124868 -0.000124514 -0.00012416 -0.000123805 -0.000123449 -0.000123093 -0.000122736 -0.000122378 -0.00012202 -0.00012166 -0.0001213 -0.000120939 -0.000120577 -0.000120213 -0.000119848 -0.000119482 -0.000119115 -0.000118746 -0.000118375 -0.000118002 -0.000117626 -0.000117249 -0.000116868 -0.000116485 -0.000116097 -0.000115706 -0.00011531 -0.000114909 -0.000114501 -0.000114086 -0.000113662 -0.000113227 -0.000112779 -0.000112315 -0.000111831 -0.000111322 -0.00011078 -0.000110196 -0.000109556 -0.000108843 -0.000108031 -0.000107088 -0.000105969 -0.000104619 -0.00010297 -0.000100946 -9.84656E-05 -9.54481E-05 -9.18206E-05 -8.75202E-05 -8.24949E-05 -7.67036E-05 -7.01137E-05 -6.26999E-05 -5.44418E-05 -4.53233E-05 -3.53307E-05 -2.44525E-05 -1.26787E-05 -1.35921E-10 1.35907E-05 2.80766E-05 4.34285E-05 5.96164E-05 7.66102E-05 9.43798E-05 0.000112896 0.000132128 0.00015205 0.000172631 +-0.000154058 -0.000153713 -0.000153368 -0.000153024 -0.000152681 -0.000152338 -0.000151996 -0.000151654 -0.000151313 -0.000150972 -0.000150632 -0.000150292 -0.000149953 -0.000149615 -0.000149276 -0.000148939 -0.000148602 -0.000148265 -0.000147928 -0.000147593 -0.000147257 -0.000146922 -0.000146587 -0.000146253 -0.000145919 -0.000145586 -0.000145253 -0.00014492 -0.000144587 -0.000144255 -0.000143924 -0.000143592 -0.000143261 -0.00014293 -0.0001426 -0.000142269 -0.000141939 -0.00014161 -0.00014128 -0.000140951 -0.000140622 -0.000140293 -0.000139965 -0.000139636 -0.000139308 -0.00013898 -0.000138652 -0.000138325 -0.000137998 -0.00013767 -0.000137343 -0.000137016 -0.00013669 -0.000136363 -0.000136037 -0.00013571 -0.000135384 -0.000135058 -0.000134732 -0.000134406 -0.00013408 -0.000133754 -0.000133429 -0.000133103 -0.000132777 -0.000132452 -0.000132126 -0.000131801 -0.000131476 -0.00013115 -0.000130825 -0.0001305 -0.000130175 -0.000129849 -0.000129524 -0.000129199 -0.000128874 -0.000128549 -0.000128224 -0.000127898 -0.000127573 -0.000127248 -0.000126923 -0.000126598 -0.000126272 -0.000125947 -0.000125622 -0.000125296 -0.000124971 -0.000124645 -0.00012432 -0.000123994 -0.000123668 -0.000123342 -0.000123017 -0.000122691 -0.000122365 -0.000122038 -0.000121712 -0.000121386 -0.000121059 -0.000120733 -0.000120406 -0.000120079 -0.000119752 -0.000119425 -0.000119098 -0.000118771 -0.000118443 -0.000118115 -0.000117787 -0.000117459 -0.000117131 -0.000116802 -0.000116473 -0.000116144 -0.000115814 -0.000115485 -0.000115155 -0.000114824 -0.000114493 -0.000114162 -0.000113831 -0.000113499 -0.000113166 -0.000112834 -0.0001125 -0.000112166 -0.000111831 -0.000111496 -0.00011116 -0.000110824 -0.000110486 -0.000110148 -0.000109808 -0.000109468 -0.000109126 -0.000108783 -0.000108439 -0.000108093 -0.000107746 -0.000107397 -0.000107045 -0.000106691 -0.000106335 -0.000105976 -0.000105613 -0.000105247 -0.000104876 -0.000104499 -0.000104117 -0.000103727 -0.000103329 -0.00010292 -0.000102498 -0.00010206 -0.000101602 -0.000101118 -0.000100601 -0.000100039 -9.94203E-05 -9.87234E-05 -9.7922E-05 -9.69798E-05 -9.5849E-05 -9.44695E-05 -9.27694E-05 -9.06686E-05 -8.80845E-05 -8.4938E-05 -8.11588E-05 -7.66878E-05 -7.14774E-05 -6.54902E-05 -5.86973E-05 -5.10756E-05 -4.2607E-05 -3.32768E-05 -2.30725E-05 -1.19834E-05 -1.2484E-10 1.2895E-05 2.66965E-05 4.13774E-05 5.691E-05 7.32653E-05 9.04143E-05 0.000108328 0.000126978 0.000146334 0.000166371 +-0.000141371 -0.000141047 -0.000140723 -0.000140399 -0.000140076 -0.000139754 -0.000139432 -0.000139111 -0.00013879 -0.00013847 -0.00013815 -0.000137831 -0.000137512 -0.000137194 -0.000136876 -0.000136559 -0.000136242 -0.000135925 -0.000135609 -0.000135293 -0.000134978 -0.000134663 -0.000134349 -0.000134035 -0.000133721 -0.000133407 -0.000133094 -0.000132782 -0.000132469 -0.000132157 -0.000131846 -0.000131534 -0.000131223 -0.000130912 -0.000130602 -0.000130291 -0.000129981 -0.000129672 -0.000129362 -0.000129053 -0.000128744 -0.000128435 -0.000128126 -0.000127818 -0.00012751 -0.000127202 -0.000126894 -0.000126587 -0.000126279 -0.000125972 -0.000125665 -0.000125358 -0.000125051 -0.000124745 -0.000124438 -0.000124132 -0.000123826 -0.000123519 -0.000123213 -0.000122907 -0.000122602 -0.000122296 -0.00012199 -0.000121685 -0.000121379 -0.000121074 -0.000120769 -0.000120463 -0.000120158 -0.000119853 -0.000119548 -0.000119243 -0.000118938 -0.000118633 -0.000118328 -0.000118023 -0.000117718 -0.000117413 -0.000117108 -0.000116803 -0.000116498 -0.000116194 -0.000115889 -0.000115584 -0.000115279 -0.000114974 -0.000114669 -0.000114364 -0.000114059 -0.000113754 -0.000113449 -0.000113144 -0.000112839 -0.000112534 -0.000112229 -0.000111923 -0.000111618 -0.000111313 -0.000111007 -0.000110702 -0.000110396 -0.00011009 -0.000109784 -0.000109478 -0.000109172 -0.000108866 -0.00010856 -0.000108254 -0.000107947 -0.000107641 -0.000107334 -0.000107027 -0.00010672 -0.000106412 -0.000106105 -0.000105797 -0.000105489 -0.000105181 -0.000104873 -0.000104564 -0.000104255 -0.000103946 -0.000103636 -0.000103326 -0.000103016 -0.000102705 -0.000102394 -0.000102082 -0.00010177 -0.000101458 -0.000101144 -0.00010083 -0.000100516 -0.0001002 -9.98844E-05 -9.95674E-05 -9.92495E-05 -9.89305E-05 -9.86103E-05 -9.82889E-05 -9.79661E-05 -9.76418E-05 -9.73157E-05 -9.69877E-05 -9.66575E-05 -9.63249E-05 -9.59894E-05 -9.56508E-05 -9.53085E-05 -9.49619E-05 -9.46103E-05 -9.42528E-05 -9.38881E-05 -9.3515E-05 -9.31314E-05 -9.2735E-05 -9.23224E-05 -9.18894E-05 -9.14301E-05 -9.09364E-05 -9.03973E-05 -8.97973E-05 -8.91152E-05 -8.83215E-05 -8.73766E-05 -8.62284E-05 -8.48122E-05 -8.30519E-05 -8.08645E-05 -7.81672E-05 -7.48827E-05 -7.09444E-05 -6.6298E-05 -6.09001E-05 -5.47173E-05 -4.77238E-05 -3.9899E-05 -3.12267E-05 -2.16935E-05 -1.12879E-05 -1.14611E-10 1.21968E-05 2.53086E-05 3.93115E-05 5.41798E-05 6.98866E-05 8.64042E-05 0.000103704 0.000121759 0.00014054 0.000160019 +-0.000129235 -0.00012893 -0.000128627 -0.000128324 -0.000128021 -0.000127719 -0.000127418 -0.000127117 -0.000126816 -0.000126516 -0.000126216 -0.000125917 -0.000125619 -0.00012532 -0.000125022 -0.000124725 -0.000124428 -0.000124132 -0.000123835 -0.00012354 -0.000123244 -0.000122949 -0.000122655 -0.00012236 -0.000122066 -0.000121773 -0.00012148 -0.000121187 -0.000120894 -0.000120602 -0.00012031 -0.000120018 -0.000119727 -0.000119436 -0.000119145 -0.000118854 -0.000118564 -0.000118274 -0.000117984 -0.000117695 -0.000117405 -0.000117116 -0.000116827 -0.000116539 -0.00011625 -0.000115962 -0.000115674 -0.000115386 -0.000115098 -0.00011481 -0.000114523 -0.000114236 -0.000113949 -0.000113662 -0.000113375 -0.000113088 -0.000112802 -0.000112515 -0.000112229 -0.000111943 -0.000111657 -0.000111371 -0.000111085 -0.000110799 -0.000110513 -0.000110227 -0.000109942 -0.000109656 -0.000109371 -0.000109086 -0.0001088 -0.000108515 -0.00010823 -0.000107945 -0.00010766 -0.000107375 -0.00010709 -0.000106805 -0.00010652 -0.000106235 -0.00010595 -0.000105665 -0.00010538 -0.000105095 -0.00010481 -0.000104525 -0.00010424 -0.000103956 -0.000103671 -0.000103386 -0.000103101 -0.000102816 -0.000102531 -0.000102246 -0.000101961 -0.000101676 -0.000101391 -0.000101106 -0.000100821 -0.000100536 -0.00010025 -9.9965E-05 -9.96796E-05 -9.93942E-05 -9.91087E-05 -9.88231E-05 -9.85375E-05 -9.82517E-05 -9.79658E-05 -9.76799E-05 -9.73938E-05 -9.71076E-05 -9.68213E-05 -9.65348E-05 -9.62482E-05 -9.59614E-05 -9.56745E-05 -9.53874E-05 -9.51E-05 -9.48125E-05 -9.45247E-05 -9.42367E-05 -9.39484E-05 -9.36599E-05 -9.3371E-05 -9.30818E-05 -9.27923E-05 -9.25024E-05 -9.22121E-05 -9.19213E-05 -9.16301E-05 -9.13383E-05 -9.1046E-05 -9.07531E-05 -9.04595E-05 -9.01652E-05 -8.98702E-05 -8.95742E-05 -8.92773E-05 -8.89794E-05 -8.86803E-05 -8.83799E-05 -8.80781E-05 -8.77747E-05 -8.74695E-05 -8.71622E-05 -8.68527E-05 -8.65405E-05 -8.62254E-05 -8.59067E-05 -8.55839E-05 -8.52563E-05 -8.4923E-05 -8.45828E-05 -8.42343E-05 -8.38755E-05 -8.35038E-05 -8.31161E-05 -8.27076E-05 -8.22722E-05 -8.18014E-05 -8.12832E-05 -8.0701E-05 -8.00314E-05 -7.92423E-05 -7.82901E-05 -7.71183E-05 -7.56572E-05 -7.38268E-05 -7.15423E-05 -6.87215E-05 -6.52903E-05 -6.11867E-05 -5.6361E-05 -5.07748E-05 -4.43982E-05 -3.72083E-05 -2.9187E-05 -2.03198E-05 -1.05943E-05 -1.05173E-10 1.14979E-05 2.39164E-05 3.7235E-05 5.1431E-05 6.64797E-05 8.23551E-05 9.90305E-05 0.000116478 0.000134671 0.000153582 +-0.00011767 -0.000117386 -0.000117102 -0.000116819 -0.000116537 -0.000116255 -0.000115973 -0.000115692 -0.000115411 -0.000115131 -0.000114851 -0.000114572 -0.000114293 -0.000114015 -0.000113736 -0.000113459 -0.000113181 -0.000112905 -0.000112628 -0.000112352 -0.000112076 -0.000111801 -0.000111526 -0.000111251 -0.000110976 -0.000110702 -0.000110429 -0.000110155 -0.000109882 -0.000109609 -0.000109337 -0.000109064 -0.000108792 -0.000108521 -0.000108249 -0.000107978 -0.000107707 -0.000107436 -0.000107166 -0.000106896 -0.000106626 -0.000106356 -0.000106086 -0.000105817 -0.000105548 -0.000105279 -0.00010501 -0.000104741 -0.000104473 -0.000104205 -0.000103937 -0.000103669 -0.000103401 -0.000103133 -0.000102866 -0.000102598 -0.000102331 -0.000102064 -0.000101797 -0.00010153 -0.000101263 -0.000100997 -0.00010073 -0.000100464 -0.000100197 -9.9931E-05 -9.96648E-05 -9.93987E-05 -9.91326E-05 -9.88667E-05 -9.86008E-05 -9.8335E-05 -9.80692E-05 -9.78035E-05 -9.75378E-05 -9.72722E-05 -9.70067E-05 -9.67411E-05 -9.64757E-05 -9.62102E-05 -9.59448E-05 -9.56795E-05 -9.54141E-05 -9.51488E-05 -9.48835E-05 -9.46183E-05 -9.4353E-05 -9.40878E-05 -9.38225E-05 -9.35573E-05 -9.32921E-05 -9.30269E-05 -9.27617E-05 -9.24964E-05 -9.22312E-05 -9.1966E-05 -9.17007E-05 -9.14355E-05 -9.11702E-05 -9.09048E-05 -9.06395E-05 -9.03741E-05 -9.01087E-05 -8.98433E-05 -8.95778E-05 -8.93122E-05 -8.90466E-05 -8.87809E-05 -8.85152E-05 -8.82494E-05 -8.79835E-05 -8.77175E-05 -8.74515E-05 -8.71853E-05 -8.6919E-05 -8.66526E-05 -8.63861E-05 -8.61194E-05 -8.58526E-05 -8.55856E-05 -8.53185E-05 -8.50511E-05 -8.47836E-05 -8.45158E-05 -8.42478E-05 -8.39795E-05 -8.3711E-05 -8.34422E-05 -8.3173E-05 -8.29035E-05 -8.26336E-05 -8.23632E-05 -8.20925E-05 -8.18212E-05 -8.15494E-05 -8.1277E-05 -8.10039E-05 -8.07302E-05 -8.04557E-05 -8.01803E-05 -7.99039E-05 -7.96266E-05 -7.9348E-05 -7.90681E-05 -7.87868E-05 -7.85038E-05 -7.82189E-05 -7.79318E-05 -7.76423E-05 -7.735E-05 -7.70543E-05 -7.67547E-05 -7.64505E-05 -7.61408E-05 -7.58244E-05 -7.54997E-05 -7.5165E-05 -7.48175E-05 -7.44537E-05 -7.4069E-05 -7.36567E-05 -7.32077E-05 -7.27091E-05 -7.21428E-05 -7.14831E-05 -7.06947E-05 -6.97298E-05 -6.85269E-05 -6.70115E-05 -6.51001E-05 -6.27074E-05 -5.97529E-05 -5.61669E-05 -5.18927E-05 -4.68857E-05 -4.11118E-05 -3.45451E-05 -2.71652E-05 -1.89561E-05 -9.90479E-06 -9.64667E-11 1.08004E-05 2.25235E-05 3.51528E-05 4.86692E-05 6.30508E-05 7.82738E-05 9.43131E-05 0.000111143 0.000128735 0.000147065 +-0.000106697 -0.000106433 -0.000106169 -0.000105906 -0.000105643 -0.00010538 -0.000105118 -0.000104856 -0.000104595 -0.000104335 -0.000104074 -0.000103814 -0.000103555 -0.000103296 -0.000103037 -0.000102778 -0.00010252 -0.000102263 -0.000102006 -0.000101749 -0.000101492 -0.000101236 -0.00010098 -0.000100724 -0.000100469 -0.000100214 -9.99595E-05 -9.97051E-05 -9.94511E-05 -9.91973E-05 -9.89438E-05 -9.86906E-05 -9.84376E-05 -9.81849E-05 -9.79324E-05 -9.76802E-05 -9.74283E-05 -9.71765E-05 -9.6925E-05 -9.66737E-05 -9.64227E-05 -9.61718E-05 -9.59212E-05 -9.56707E-05 -9.54205E-05 -9.51704E-05 -9.49205E-05 -9.46708E-05 -9.44213E-05 -9.41719E-05 -9.39227E-05 -9.36736E-05 -9.34247E-05 -9.3176E-05 -9.29274E-05 -9.26789E-05 -9.24305E-05 -9.21823E-05 -9.19342E-05 -9.16862E-05 -9.14384E-05 -9.11906E-05 -9.0943E-05 -9.06954E-05 -9.0448E-05 -9.02006E-05 -8.99534E-05 -8.97062E-05 -8.94591E-05 -8.92121E-05 -8.89652E-05 -8.87183E-05 -8.84715E-05 -8.82248E-05 -8.79781E-05 -8.77315E-05 -8.7485E-05 -8.72385E-05 -8.69921E-05 -8.67457E-05 -8.64993E-05 -8.6253E-05 -8.60068E-05 -8.57606E-05 -8.55144E-05 -8.52682E-05 -8.50221E-05 -8.4776E-05 -8.45299E-05 -8.42839E-05 -8.40379E-05 -8.37919E-05 -8.35459E-05 -8.32999E-05 -8.30539E-05 -8.2808E-05 -8.2562E-05 -8.2316E-05 -8.20701E-05 -8.18241E-05 -8.15781E-05 -8.13322E-05 -8.10862E-05 -8.08401E-05 -8.05941E-05 -8.0348E-05 -8.01019E-05 -7.98558E-05 -7.96096E-05 -7.93634E-05 -7.91171E-05 -7.88708E-05 -7.86244E-05 -7.8378E-05 -7.81314E-05 -7.78848E-05 -7.76381E-05 -7.73913E-05 -7.71444E-05 -7.68973E-05 -7.66502E-05 -7.64029E-05 -7.61554E-05 -7.59077E-05 -7.56599E-05 -7.54119E-05 -7.51637E-05 -7.49152E-05 -7.46665E-05 -7.44175E-05 -7.41682E-05 -7.39185E-05 -7.36685E-05 -7.34181E-05 -7.31673E-05 -7.2916E-05 -7.26641E-05 -7.24117E-05 -7.21587E-05 -7.1905E-05 -7.16505E-05 -7.13951E-05 -7.11388E-05 -7.08814E-05 -7.06228E-05 -7.03629E-05 -7.01014E-05 -6.98382E-05 -6.9573E-05 -6.93054E-05 -6.90352E-05 -6.87618E-05 -6.84847E-05 -6.82032E-05 -6.79163E-05 -6.76229E-05 -6.73215E-05 -6.70101E-05 -6.66859E-05 -6.63454E-05 -6.59835E-05 -6.55932E-05 -6.51648E-05 -6.46842E-05 -6.41315E-05 -6.34785E-05 -6.26861E-05 -6.17019E-05 -6.04591E-05 -5.88786E-05 -5.68745E-05 -5.4362E-05 -5.1264E-05 -4.75163E-05 -4.30676E-05 -3.78789E-05 -3.19203E-05 -2.51692E-05 -1.76078E-05 -9.22204E-06 -8.84375E-11 1.01066E-05 2.1134E-05 3.30706E-05 4.59011E-05 5.96073E-05 7.4168E-05 8.95603E-05 0.00010576 0.00012274 0.000140476 +-9.63328E-05 -9.60877E-05 -9.58431E-05 -9.5599E-05 -9.53552E-05 -9.51119E-05 -9.4869E-05 -9.46265E-05 -9.43844E-05 -9.41427E-05 -9.39014E-05 -9.36604E-05 -9.34199E-05 -9.31797E-05 -9.29398E-05 -9.27004E-05 -9.24612E-05 -9.22224E-05 -9.1984E-05 -9.17459E-05 -9.15081E-05 -9.12706E-05 -9.10334E-05 -9.07966E-05 -9.056E-05 -9.03237E-05 -9.00877E-05 -8.9852E-05 -8.96166E-05 -8.93814E-05 -8.91466E-05 -8.89119E-05 -8.86775E-05 -8.84434E-05 -8.82095E-05 -8.79758E-05 -8.77424E-05 -8.75092E-05 -8.72762E-05 -8.70434E-05 -8.68108E-05 -8.65785E-05 -8.63463E-05 -8.61143E-05 -8.58825E-05 -8.56509E-05 -8.54195E-05 -8.51882E-05 -8.49571E-05 -8.47262E-05 -8.44954E-05 -8.42648E-05 -8.40343E-05 -8.3804E-05 -8.35738E-05 -8.33437E-05 -8.31138E-05 -8.2884E-05 -8.26544E-05 -8.24248E-05 -8.21954E-05 -8.19661E-05 -8.17368E-05 -8.15077E-05 -8.12787E-05 -8.10498E-05 -8.0821E-05 -8.05923E-05 -8.03637E-05 -8.01351E-05 -7.99066E-05 -7.96783E-05 -7.94499E-05 -7.92217E-05 -7.89935E-05 -7.87654E-05 -7.85374E-05 -7.83094E-05 -7.80815E-05 -7.78537E-05 -7.76259E-05 -7.73981E-05 -7.71704E-05 -7.69428E-05 -7.67152E-05 -7.64876E-05 -7.62601E-05 -7.60326E-05 -7.58052E-05 -7.55777E-05 -7.53504E-05 -7.5123E-05 -7.48957E-05 -7.46684E-05 -7.44411E-05 -7.42139E-05 -7.39867E-05 -7.37595E-05 -7.35323E-05 -7.33051E-05 -7.30779E-05 -7.28507E-05 -7.26236E-05 -7.23964E-05 -7.21692E-05 -7.19421E-05 -7.17149E-05 -7.14877E-05 -7.12605E-05 -7.10332E-05 -7.0806E-05 -7.05787E-05 -7.03513E-05 -7.0124E-05 -6.98966E-05 -6.96691E-05 -6.94415E-05 -6.92139E-05 -6.89863E-05 -6.87585E-05 -6.85307E-05 -6.83027E-05 -6.80746E-05 -6.78464E-05 -6.76181E-05 -6.73896E-05 -6.7161E-05 -6.69322E-05 -6.67031E-05 -6.64739E-05 -6.62444E-05 -6.60147E-05 -6.57847E-05 -6.55544E-05 -6.53237E-05 -6.50926E-05 -6.48612E-05 -6.46293E-05 -6.43968E-05 -6.41638E-05 -6.39302E-05 -6.36959E-05 -6.34609E-05 -6.32249E-05 -6.2988E-05 -6.275E-05 -6.25107E-05 -6.22701E-05 -6.20278E-05 -6.17836E-05 -6.15373E-05 -6.12885E-05 -6.10366E-05 -6.07812E-05 -6.05216E-05 -6.02568E-05 -5.99857E-05 -5.97066E-05 -5.94177E-05 -5.9116E-05 -5.87977E-05 -5.84577E-05 -5.80883E-05 -5.76789E-05 -5.72143E-05 -5.66725E-05 -5.60223E-05 -5.52202E-05 -5.42087E-05 -5.29157E-05 -5.1258E-05 -4.91486E-05 -4.65047E-05 -4.32544E-05 -3.93393E-05 -3.47144E-05 -2.93457E-05 -2.32076E-05 -1.62804E-05 -8.54878E-06 -8.10352E-11 9.41902E-06 1.97526E-05 3.09945E-05 4.31342E-05 5.61575E-05 7.00466E-05 8.47811E-05 0.000100339 0.000116695 0.000133825 +-8.65908E-05 -8.63646E-05 -8.61388E-05 -8.59133E-05 -8.56883E-05 -8.54636E-05 -8.52394E-05 -8.50155E-05 -8.47919E-05 -8.45688E-05 -8.4346E-05 -8.41236E-05 -8.39015E-05 -8.36797E-05 -8.34583E-05 -8.32372E-05 -8.30165E-05 -8.2796E-05 -8.25759E-05 -8.23561E-05 -8.21366E-05 -8.19174E-05 -8.16984E-05 -8.14798E-05 -8.12614E-05 -8.10434E-05 -8.08256E-05 -8.0608E-05 -8.03907E-05 -8.01737E-05 -7.99569E-05 -7.97403E-05 -7.9524E-05 -7.9308E-05 -7.90921E-05 -7.88765E-05 -7.86611E-05 -7.84459E-05 -7.82309E-05 -7.80161E-05 -7.78015E-05 -7.75872E-05 -7.73729E-05 -7.71589E-05 -7.69451E-05 -7.67314E-05 -7.65179E-05 -7.63046E-05 -7.60914E-05 -7.58784E-05 -7.56656E-05 -7.54529E-05 -7.52403E-05 -7.50279E-05 -7.48156E-05 -7.46035E-05 -7.43914E-05 -7.41796E-05 -7.39678E-05 -7.37561E-05 -7.35446E-05 -7.33332E-05 -7.31219E-05 -7.29107E-05 -7.26996E-05 -7.24886E-05 -7.22777E-05 -7.20668E-05 -7.18561E-05 -7.16455E-05 -7.14349E-05 -7.12245E-05 -7.10141E-05 -7.08038E-05 -7.05936E-05 -7.03834E-05 -7.01733E-05 -6.99633E-05 -6.97533E-05 -6.95434E-05 -6.93336E-05 -6.91239E-05 -6.89141E-05 -6.87045E-05 -6.84949E-05 -6.82853E-05 -6.80758E-05 -6.78664E-05 -6.7657E-05 -6.74476E-05 -6.72383E-05 -6.7029E-05 -6.68198E-05 -6.66106E-05 -6.64014E-05 -6.61923E-05 -6.59832E-05 -6.57741E-05 -6.55651E-05 -6.53561E-05 -6.51471E-05 -6.49381E-05 -6.47291E-05 -6.45202E-05 -6.43113E-05 -6.41024E-05 -6.38934E-05 -6.36845E-05 -6.34756E-05 -6.32667E-05 -6.30578E-05 -6.28489E-05 -6.26399E-05 -6.2431E-05 -6.2222E-05 -6.2013E-05 -6.1804E-05 -6.15949E-05 -6.13857E-05 -6.11766E-05 -6.09673E-05 -6.0758E-05 -6.05486E-05 -6.03391E-05 -6.01296E-05 -5.99199E-05 -5.97101E-05 -5.95002E-05 -5.92901E-05 -5.90798E-05 -5.88694E-05 -5.86588E-05 -5.8448E-05 -5.82369E-05 -5.80255E-05 -5.78139E-05 -5.76019E-05 -5.73896E-05 -5.71768E-05 -5.69637E-05 -5.675E-05 -5.65358E-05 -5.63209E-05 -5.61054E-05 -5.58891E-05 -5.56719E-05 -5.54537E-05 -5.52343E-05 -5.50137E-05 -5.47915E-05 -5.45677E-05 -5.43418E-05 -5.41135E-05 -5.38824E-05 -5.36479E-05 -5.34093E-05 -5.31657E-05 -5.2916E-05 -5.26584E-05 -5.2391E-05 -5.21108E-05 -5.18138E-05 -5.14944E-05 -5.11445E-05 -5.07526E-05 -5.03016E-05 -4.97673E-05 -4.91149E-05 -4.82962E-05 -4.72479E-05 -4.58927E-05 -4.41445E-05 -4.19167E-05 -3.91305E-05 -3.57202E-05 -3.16343E-05 -2.68338E-05 -2.12896E-05 -1.498E-05 -7.88794E-06 -7.42128E-11 8.74033E-06 1.83843E-05 2.89316E-05 4.0377E-05 5.2711E-05 6.59198E-05 7.99863E-05 9.48905E-05 0.00011061 0.000127122 +-7.74811E-05 -7.72731E-05 -7.70654E-05 -7.68582E-05 -7.66513E-05 -7.64447E-05 -7.62385E-05 -7.60327E-05 -7.58272E-05 -7.56221E-05 -7.54172E-05 -7.52127E-05 -7.50086E-05 -7.48047E-05 -7.46012E-05 -7.43979E-05 -7.4195E-05 -7.39924E-05 -7.379E-05 -7.3588E-05 -7.33862E-05 -7.31847E-05 -7.29834E-05 -7.27825E-05 -7.25818E-05 -7.23813E-05 -7.21811E-05 -7.19812E-05 -7.17815E-05 -7.1582E-05 -7.13828E-05 -7.11838E-05 -7.0985E-05 -7.07864E-05 -7.05881E-05 -7.03899E-05 -7.0192E-05 -6.99943E-05 -6.97967E-05 -6.95994E-05 -6.94022E-05 -6.92052E-05 -6.90084E-05 -6.88118E-05 -6.86154E-05 -6.84191E-05 -6.8223E-05 -6.8027E-05 -6.78312E-05 -6.76355E-05 -6.744E-05 -6.72447E-05 -6.70494E-05 -6.68544E-05 -6.66594E-05 -6.64646E-05 -6.62699E-05 -6.60753E-05 -6.58809E-05 -6.56865E-05 -6.54923E-05 -6.52982E-05 -6.51042E-05 -6.49103E-05 -6.47165E-05 -6.45228E-05 -6.43293E-05 -6.41358E-05 -6.39424E-05 -6.3749E-05 -6.35558E-05 -6.33627E-05 -6.31696E-05 -6.29766E-05 -6.27837E-05 -6.25909E-05 -6.23981E-05 -6.22055E-05 -6.20129E-05 -6.18203E-05 -6.16278E-05 -6.14354E-05 -6.12431E-05 -6.10508E-05 -6.08586E-05 -6.06664E-05 -6.04743E-05 -6.02823E-05 -6.00903E-05 -5.98983E-05 -5.97064E-05 -5.95146E-05 -5.93228E-05 -5.9131E-05 -5.89393E-05 -5.87476E-05 -5.8556E-05 -5.83644E-05 -5.81728E-05 -5.79813E-05 -5.77898E-05 -5.75984E-05 -5.7407E-05 -5.72156E-05 -5.70242E-05 -5.68329E-05 -5.66415E-05 -5.64502E-05 -5.62589E-05 -5.60677E-05 -5.58764E-05 -5.56851E-05 -5.54939E-05 -5.53026E-05 -5.51114E-05 -5.49201E-05 -5.47288E-05 -5.45375E-05 -5.43462E-05 -5.41549E-05 -5.39635E-05 -5.37721E-05 -5.35806E-05 -5.33891E-05 -5.31975E-05 -5.30058E-05 -5.28141E-05 -5.26222E-05 -5.24303E-05 -5.22382E-05 -5.2046E-05 -5.18537E-05 -5.16612E-05 -5.14685E-05 -5.12756E-05 -5.10825E-05 -5.08891E-05 -5.06955E-05 -5.05015E-05 -5.03072E-05 -5.01125E-05 -4.99174E-05 -4.97217E-05 -4.95256E-05 -4.93287E-05 -4.91312E-05 -4.89329E-05 -4.87337E-05 -4.85335E-05 -4.8332E-05 -4.81292E-05 -4.79248E-05 -4.77184E-05 -4.75098E-05 -4.72986E-05 -4.70841E-05 -4.68657E-05 -4.66424E-05 -4.64131E-05 -4.61761E-05 -4.59292E-05 -4.56695E-05 -4.53926E-05 -4.50925E-05 -4.47605E-05 -4.43838E-05 -4.39437E-05 -4.34128E-05 -4.27522E-05 -4.19082E-05 -4.08118E-05 -3.93808E-05 -3.75279E-05 -3.51688E-05 -3.22307E-05 -2.8655E-05 -2.43974E-05 -1.94248E-05 -1.37127E-05 -7.24259E-06 -6.79269E-11 8.07345E-06 1.70347E-05 2.68895E-05 3.76389E-05 4.92785E-05 6.17993E-05 7.5188E-05 8.94278E-05 0.000104499 0.00012038 +-6.90088E-05 -6.88184E-05 -6.86283E-05 -6.84386E-05 -6.82493E-05 -6.80602E-05 -6.78715E-05 -6.76831E-05 -6.7495E-05 -6.73072E-05 -6.71198E-05 -6.69326E-05 -6.67457E-05 -6.65591E-05 -6.63728E-05 -6.61868E-05 -6.60011E-05 -6.58157E-05 -6.56305E-05 -6.54456E-05 -6.52609E-05 -6.50765E-05 -6.48923E-05 -6.47084E-05 -6.45248E-05 -6.43413E-05 -6.41581E-05 -6.39752E-05 -6.37924E-05 -6.36099E-05 -6.34276E-05 -6.32455E-05 -6.30637E-05 -6.2882E-05 -6.27005E-05 -6.25192E-05 -6.23382E-05 -6.21573E-05 -6.19766E-05 -6.1796E-05 -6.16157E-05 -6.14355E-05 -6.12555E-05 -6.10756E-05 -6.08959E-05 -6.07164E-05 -6.0537E-05 -6.03578E-05 -6.01788E-05 -5.99998E-05 -5.9821E-05 -5.96424E-05 -5.94639E-05 -5.92855E-05 -5.91072E-05 -5.89291E-05 -5.87511E-05 -5.85732E-05 -5.83955E-05 -5.82178E-05 -5.80403E-05 -5.78628E-05 -5.76855E-05 -5.75083E-05 -5.73312E-05 -5.71541E-05 -5.69772E-05 -5.68004E-05 -5.66236E-05 -5.6447E-05 -5.62704E-05 -5.60939E-05 -5.59176E-05 -5.57412E-05 -5.5565E-05 -5.53889E-05 -5.52128E-05 -5.50368E-05 -5.48608E-05 -5.4685E-05 -5.45092E-05 -5.43335E-05 -5.41578E-05 -5.39822E-05 -5.38067E-05 -5.36313E-05 -5.34558E-05 -5.32805E-05 -5.31052E-05 -5.293E-05 -5.27548E-05 -5.25797E-05 -5.24046E-05 -5.22296E-05 -5.20547E-05 -5.18798E-05 -5.17049E-05 -5.15301E-05 -5.13553E-05 -5.11806E-05 -5.10059E-05 -5.08313E-05 -5.06566E-05 -5.04821E-05 -5.03075E-05 -5.0133E-05 -4.99586E-05 -4.97841E-05 -4.96097E-05 -4.94354E-05 -4.9261E-05 -4.90867E-05 -4.89123E-05 -4.8738E-05 -4.85637E-05 -4.83894E-05 -4.82152E-05 -4.80409E-05 -4.78666E-05 -4.76923E-05 -4.7518E-05 -4.73437E-05 -4.71693E-05 -4.6995E-05 -4.68205E-05 -4.66461E-05 -4.64716E-05 -4.6297E-05 -4.61224E-05 -4.59476E-05 -4.57728E-05 -4.55979E-05 -4.54229E-05 -4.52477E-05 -4.50724E-05 -4.48969E-05 -4.47212E-05 -4.45453E-05 -4.43691E-05 -4.41927E-05 -4.4016E-05 -4.38389E-05 -4.36615E-05 -4.34836E-05 -4.33053E-05 -4.31264E-05 -4.29468E-05 -4.27666E-05 -4.25855E-05 -4.24034E-05 -4.22203E-05 -4.20359E-05 -4.18499E-05 -4.16623E-05 -4.14724E-05 -4.12801E-05 -4.10847E-05 -4.08854E-05 -4.06815E-05 -4.04716E-05 -4.02541E-05 -4.00268E-05 -3.97863E-05 -3.95283E-05 -3.9246E-05 -3.893E-05 -3.85661E-05 -3.81332E-05 -3.76006E-05 -3.69242E-05 -3.60446E-05 -3.48867E-05 -3.33651E-05 -3.13928E-05 -2.88906E-05 -2.5793E-05 -2.20495E-05 -1.76226E-05 -1.24848E-05 -6.61586E-06 -6.21371E-11 7.42145E-06 1.57095E-05 2.48766E-05 3.49301E-05 4.58718E-05 5.7698E-05 7.04E-05 8.39646E-05 9.83753E-05 0.000113612 +-6.11742E-05 -6.10007E-05 -6.08276E-05 -6.06547E-05 -6.04822E-05 -6.031E-05 -6.0138E-05 -5.99664E-05 -5.9795E-05 -5.96239E-05 -5.94532E-05 -5.92826E-05 -5.91124E-05 -5.89424E-05 -5.87727E-05 -5.86032E-05 -5.8434E-05 -5.82651E-05 -5.80964E-05 -5.79279E-05 -5.77597E-05 -5.75918E-05 -5.7424E-05 -5.72565E-05 -5.70892E-05 -5.69221E-05 -5.67552E-05 -5.65886E-05 -5.64222E-05 -5.62559E-05 -5.60899E-05 -5.5924E-05 -5.57584E-05 -5.5593E-05 -5.54277E-05 -5.52626E-05 -5.50977E-05 -5.4933E-05 -5.47684E-05 -5.4604E-05 -5.44398E-05 -5.42757E-05 -5.41118E-05 -5.39481E-05 -5.37845E-05 -5.3621E-05 -5.34577E-05 -5.32946E-05 -5.31315E-05 -5.29687E-05 -5.28059E-05 -5.26433E-05 -5.24808E-05 -5.23184E-05 -5.21562E-05 -5.19941E-05 -5.18321E-05 -5.16702E-05 -5.15084E-05 -5.13467E-05 -5.11852E-05 -5.10237E-05 -5.08624E-05 -5.07011E-05 -5.054E-05 -5.03789E-05 -5.0218E-05 -5.00571E-05 -4.98963E-05 -4.97356E-05 -4.9575E-05 -4.94145E-05 -4.92541E-05 -4.90937E-05 -4.89335E-05 -4.87733E-05 -4.86131E-05 -4.84531E-05 -4.82931E-05 -4.81332E-05 -4.79734E-05 -4.78137E-05 -4.7654E-05 -4.74944E-05 -4.73348E-05 -4.71753E-05 -4.70159E-05 -4.68565E-05 -4.66972E-05 -4.6538E-05 -4.63788E-05 -4.62197E-05 -4.60606E-05 -4.59016E-05 -4.57427E-05 -4.55838E-05 -4.54249E-05 -4.52661E-05 -4.51074E-05 -4.49487E-05 -4.479E-05 -4.46314E-05 -4.44729E-05 -4.43144E-05 -4.41559E-05 -4.39975E-05 -4.38391E-05 -4.36808E-05 -4.35224E-05 -4.33642E-05 -4.32059E-05 -4.30477E-05 -4.28895E-05 -4.27314E-05 -4.25733E-05 -4.24151E-05 -4.22571E-05 -4.2099E-05 -4.19409E-05 -4.17829E-05 -4.16248E-05 -4.14667E-05 -4.13087E-05 -4.11506E-05 -4.09925E-05 -4.08344E-05 -4.06763E-05 -4.05181E-05 -4.03599E-05 -4.02016E-05 -4.00433E-05 -3.98849E-05 -3.97265E-05 -3.95679E-05 -3.94092E-05 -3.92504E-05 -3.90915E-05 -3.89324E-05 -3.87731E-05 -3.86136E-05 -3.84539E-05 -3.82939E-05 -3.81336E-05 -3.7973E-05 -3.7812E-05 -3.76506E-05 -3.74887E-05 -3.73262E-05 -3.7163E-05 -3.69991E-05 -3.68344E-05 -3.66686E-05 -3.65017E-05 -3.63333E-05 -3.61633E-05 -3.59913E-05 -3.58169E-05 -3.56396E-05 -3.54585E-05 -3.52729E-05 -3.50814E-05 -3.48823E-05 -3.46732E-05 -3.44508E-05 -3.42101E-05 -3.3944E-05 -3.36418E-05 -3.32877E-05 -3.28577E-05 -3.23168E-05 -3.16154E-05 -3.06876E-05 -2.94531E-05 -2.7825E-05 -2.57194E-05 -2.30643E-05 -1.98028E-05 -1.58926E-05 -1.13028E-05 -6.01088E-06 -5.68062E-11 6.78745E-06 1.4415E-05 2.29018E-05 3.22621E-05 4.25042E-05 5.36306E-05 6.56378E-05 7.85172E-05 9.22557E-05 0.000106837 +-5.39721E-05 -5.38148E-05 -5.36578E-05 -5.35011E-05 -5.33447E-05 -5.31885E-05 -5.30326E-05 -5.2877E-05 -5.27216E-05 -5.25665E-05 -5.24116E-05 -5.2257E-05 -5.21027E-05 -5.19485E-05 -5.17947E-05 -5.1641E-05 -5.14876E-05 -5.13345E-05 -5.11815E-05 -5.10288E-05 -5.08763E-05 -5.0724E-05 -5.0572E-05 -5.04201E-05 -5.02684E-05 -5.0117E-05 -4.99657E-05 -4.98146E-05 -4.96638E-05 -4.95131E-05 -4.93626E-05 -4.92123E-05 -4.90621E-05 -4.89122E-05 -4.87624E-05 -4.86128E-05 -4.84633E-05 -4.8314E-05 -4.81649E-05 -4.80159E-05 -4.78671E-05 -4.77184E-05 -4.75699E-05 -4.74215E-05 -4.72732E-05 -4.71251E-05 -4.69772E-05 -4.68293E-05 -4.66816E-05 -4.65341E-05 -4.63866E-05 -4.62393E-05 -4.60921E-05 -4.5945E-05 -4.57981E-05 -4.56512E-05 -4.55045E-05 -4.53578E-05 -4.52113E-05 -4.50649E-05 -4.49186E-05 -4.47724E-05 -4.46262E-05 -4.44802E-05 -4.43343E-05 -4.41885E-05 -4.40427E-05 -4.38971E-05 -4.37515E-05 -4.3606E-05 -4.34606E-05 -4.33153E-05 -4.31701E-05 -4.30249E-05 -4.28799E-05 -4.27349E-05 -4.259E-05 -4.24451E-05 -4.23003E-05 -4.21557E-05 -4.2011E-05 -4.18665E-05 -4.1722E-05 -4.15776E-05 -4.14332E-05 -4.12889E-05 -4.11447E-05 -4.10005E-05 -4.08564E-05 -4.07124E-05 -4.05684E-05 -4.04245E-05 -4.02807E-05 -4.01369E-05 -3.99931E-05 -3.98495E-05 -3.97058E-05 -3.95623E-05 -3.94188E-05 -3.92753E-05 -3.91319E-05 -3.89885E-05 -3.88452E-05 -3.8702E-05 -3.85588E-05 -3.84156E-05 -3.82725E-05 -3.81294E-05 -3.79864E-05 -3.78434E-05 -3.77004E-05 -3.75575E-05 -3.74147E-05 -3.72718E-05 -3.7129E-05 -3.69862E-05 -3.68435E-05 -3.67008E-05 -3.65581E-05 -3.64154E-05 -3.62727E-05 -3.61301E-05 -3.59875E-05 -3.58448E-05 -3.57022E-05 -3.55596E-05 -3.54169E-05 -3.52743E-05 -3.51316E-05 -3.49889E-05 -3.48461E-05 -3.47034E-05 -3.45605E-05 -3.44176E-05 -3.42746E-05 -3.41316E-05 -3.39884E-05 -3.38452E-05 -3.37017E-05 -3.35582E-05 -3.34145E-05 -3.32705E-05 -3.31264E-05 -3.2982E-05 -3.28373E-05 -3.26922E-05 -3.25468E-05 -3.24009E-05 -3.22546E-05 -3.21076E-05 -3.196E-05 -3.18116E-05 -3.16622E-05 -3.15118E-05 -3.136E-05 -3.12067E-05 -3.10515E-05 -3.0894E-05 -3.07336E-05 -3.05697E-05 -3.04013E-05 -3.02271E-05 -3.00452E-05 -2.98532E-05 -2.96474E-05 -2.94225E-05 -2.91705E-05 -2.88796E-05 -2.85314E-05 -2.80988E-05 -2.75416E-05 -2.68038E-05 -2.5813E-05 -2.44853E-05 -2.27349E-05 -2.0484E-05 -1.76695E-05 -1.42439E-05 -1.01726E-05 -5.43068E-06 -5.18994E-11 6.17461E-06 1.31575E-05 2.09744E-05 2.96467E-05 3.91899E-05 4.9613E-05 6.09188E-05 7.31038E-05 8.61591E-05 0.000100071 +-4.73916E-05 -4.72497E-05 -4.71081E-05 -4.69667E-05 -4.68255E-05 -4.66846E-05 -4.6544E-05 -4.64036E-05 -4.62634E-05 -4.61235E-05 -4.59838E-05 -4.58443E-05 -4.5705E-05 -4.5566E-05 -4.54272E-05 -4.52886E-05 -4.51502E-05 -4.5012E-05 -4.4874E-05 -4.47363E-05 -4.45987E-05 -4.44613E-05 -4.43241E-05 -4.41872E-05 -4.40504E-05 -4.39137E-05 -4.37773E-05 -4.3641E-05 -4.3505E-05 -4.3369E-05 -4.32333E-05 -4.30977E-05 -4.29623E-05 -4.28271E-05 -4.2692E-05 -4.2557E-05 -4.24222E-05 -4.22876E-05 -4.21531E-05 -4.20188E-05 -4.18846E-05 -4.17505E-05 -4.16166E-05 -4.14828E-05 -4.13491E-05 -4.12156E-05 -4.10822E-05 -4.09489E-05 -4.08157E-05 -4.06827E-05 -4.05498E-05 -4.0417E-05 -4.02843E-05 -4.01517E-05 -4.00192E-05 -3.98869E-05 -3.97546E-05 -3.96224E-05 -3.94904E-05 -3.93584E-05 -3.92265E-05 -3.90948E-05 -3.89631E-05 -3.88315E-05 -3.87E-05 -3.85686E-05 -3.84373E-05 -3.83061E-05 -3.81749E-05 -3.80439E-05 -3.79129E-05 -3.7782E-05 -3.76512E-05 -3.75204E-05 -3.73897E-05 -3.72592E-05 -3.71286E-05 -3.69982E-05 -3.68678E-05 -3.67375E-05 -3.66073E-05 -3.64771E-05 -3.6347E-05 -3.6217E-05 -3.6087E-05 -3.59571E-05 -3.58273E-05 -3.56975E-05 -3.55678E-05 -3.54381E-05 -3.53086E-05 -3.5179E-05 -3.50496E-05 -3.49202E-05 -3.47908E-05 -3.46615E-05 -3.45323E-05 -3.44031E-05 -3.4274E-05 -3.41449E-05 -3.40159E-05 -3.3887E-05 -3.37581E-05 -3.36292E-05 -3.35004E-05 -3.33717E-05 -3.3243E-05 -3.31143E-05 -3.29857E-05 -3.28572E-05 -3.27287E-05 -3.26002E-05 -3.24718E-05 -3.23434E-05 -3.2215E-05 -3.20867E-05 -3.19584E-05 -3.18302E-05 -3.1702E-05 -3.15738E-05 -3.14457E-05 -3.13175E-05 -3.11894E-05 -3.10613E-05 -3.09332E-05 -3.08052E-05 -3.06771E-05 -3.0549E-05 -3.0421E-05 -3.02929E-05 -3.01648E-05 -3.00367E-05 -2.99086E-05 -2.97804E-05 -2.96521E-05 -2.95239E-05 -2.93955E-05 -2.92671E-05 -2.91386E-05 -2.90099E-05 -2.88812E-05 -2.87523E-05 -2.86232E-05 -2.84939E-05 -2.83644E-05 -2.82347E-05 -2.81047E-05 -2.79743E-05 -2.78435E-05 -2.77123E-05 -2.75805E-05 -2.74482E-05 -2.73151E-05 -2.71811E-05 -2.70462E-05 -2.691E-05 -2.67723E-05 -2.66329E-05 -2.64912E-05 -2.63468E-05 -2.61989E-05 -2.60466E-05 -2.58884E-05 -2.57226E-05 -2.55463E-05 -2.53556E-05 -2.51447E-05 -2.49046E-05 -2.46216E-05 -2.42749E-05 -2.38327E-05 -2.32491E-05 -2.2461E-05 -2.13905E-05 -1.99524E-05 -1.80654E-05 -1.56605E-05 -1.26848E-05 -9.09978E-06 -4.87811E-06 -4.73846E-11 5.58598E-06 1.19433E-05 1.91041E-05 2.70966E-05 3.59441E-05 4.56627E-05 5.62621E-05 6.77447E-05 8.01067E-05 9.3339E-05 +-4.14163E-05 -4.12889E-05 -4.11617E-05 -4.10348E-05 -4.09081E-05 -4.07817E-05 -4.06554E-05 -4.05294E-05 -4.04036E-05 -4.0278E-05 -4.01526E-05 -4.00274E-05 -3.99024E-05 -3.97776E-05 -3.9653E-05 -3.95286E-05 -3.94044E-05 -3.92804E-05 -3.91566E-05 -3.90329E-05 -3.89095E-05 -3.87862E-05 -3.86631E-05 -3.85401E-05 -3.84174E-05 -3.82948E-05 -3.81723E-05 -3.805E-05 -3.79279E-05 -3.7806E-05 -3.76841E-05 -3.75625E-05 -3.7441E-05 -3.73196E-05 -3.71984E-05 -3.70773E-05 -3.69564E-05 -3.68356E-05 -3.67149E-05 -3.65944E-05 -3.6474E-05 -3.63537E-05 -3.62336E-05 -3.61135E-05 -3.59936E-05 -3.58739E-05 -3.57542E-05 -3.56346E-05 -3.55152E-05 -3.53959E-05 -3.52766E-05 -3.51575E-05 -3.50385E-05 -3.49196E-05 -3.48008E-05 -3.46821E-05 -3.45635E-05 -3.4445E-05 -3.43265E-05 -3.42082E-05 -3.409E-05 -3.39718E-05 -3.38538E-05 -3.37358E-05 -3.36179E-05 -3.35001E-05 -3.33824E-05 -3.32648E-05 -3.31472E-05 -3.30297E-05 -3.29123E-05 -3.2795E-05 -3.26777E-05 -3.25606E-05 -3.24435E-05 -3.23264E-05 -3.22095E-05 -3.20926E-05 -3.19757E-05 -3.1859E-05 -3.17423E-05 -3.16257E-05 -3.15091E-05 -3.13926E-05 -3.12762E-05 -3.11598E-05 -3.10436E-05 -3.09273E-05 -3.08111E-05 -3.0695E-05 -3.0579E-05 -3.0463E-05 -3.03471E-05 -3.02312E-05 -3.01154E-05 -2.99996E-05 -2.98839E-05 -2.97683E-05 -2.96527E-05 -2.95371E-05 -2.94217E-05 -2.93062E-05 -2.91909E-05 -2.90756E-05 -2.89603E-05 -2.88451E-05 -2.87299E-05 -2.86148E-05 -2.84997E-05 -2.83847E-05 -2.82698E-05 -2.81548E-05 -2.804E-05 -2.79251E-05 -2.78104E-05 -2.76956E-05 -2.75809E-05 -2.74662E-05 -2.73516E-05 -2.7237E-05 -2.71225E-05 -2.70079E-05 -2.68934E-05 -2.67789E-05 -2.66645E-05 -2.65501E-05 -2.64356E-05 -2.63212E-05 -2.62068E-05 -2.60925E-05 -2.59781E-05 -2.58637E-05 -2.57493E-05 -2.56348E-05 -2.55204E-05 -2.54059E-05 -2.52914E-05 -2.51768E-05 -2.50622E-05 -2.49474E-05 -2.48326E-05 -2.47177E-05 -2.46027E-05 -2.44875E-05 -2.43722E-05 -2.42566E-05 -2.41409E-05 -2.40249E-05 -2.39086E-05 -2.37919E-05 -2.36748E-05 -2.35573E-05 -2.34391E-05 -2.33204E-05 -2.32008E-05 -2.30803E-05 -2.29586E-05 -2.28356E-05 -2.27108E-05 -2.25839E-05 -2.24543E-05 -2.23214E-05 -2.21839E-05 -2.20406E-05 -2.18895E-05 -2.17275E-05 -2.15503E-05 -2.13513E-05 -2.11202E-05 -2.08413E-05 -2.04902E-05 -2.00297E-05 -1.94071E-05 -1.85524E-05 -1.73842E-05 -1.58196E-05 -1.37851E-05 -1.12226E-05 -8.08947E-06 -4.35571E-06 -4.32319E-11 5.02448E-06 1.07788E-05 1.73005E-05 2.4625E-05 3.27829E-05 4.17985E-05 5.16886E-05 6.24625E-05 7.41223E-05 8.66636E-05 +-3.60241E-05 -3.59104E-05 -3.57969E-05 -3.56835E-05 -3.55704E-05 -3.54575E-05 -3.53448E-05 -3.52323E-05 -3.51199E-05 -3.50078E-05 -3.48958E-05 -3.47841E-05 -3.46725E-05 -3.4561E-05 -3.44498E-05 -3.43387E-05 -3.42279E-05 -3.41171E-05 -3.40066E-05 -3.38962E-05 -3.3786E-05 -3.36759E-05 -3.3566E-05 -3.34562E-05 -3.33466E-05 -3.32372E-05 -3.31279E-05 -3.30187E-05 -3.29097E-05 -3.28009E-05 -3.26921E-05 -3.25835E-05 -3.24751E-05 -3.23667E-05 -3.22586E-05 -3.21505E-05 -3.20425E-05 -3.19347E-05 -3.1827E-05 -3.17195E-05 -3.1612E-05 -3.15047E-05 -3.13974E-05 -3.12903E-05 -3.11833E-05 -3.10764E-05 -3.09696E-05 -3.0863E-05 -3.07564E-05 -3.06499E-05 -3.05435E-05 -3.04372E-05 -3.03311E-05 -3.0225E-05 -3.0119E-05 -3.00131E-05 -2.99073E-05 -2.98015E-05 -2.96959E-05 -2.95904E-05 -2.94849E-05 -2.93795E-05 -2.92742E-05 -2.9169E-05 -2.90638E-05 -2.89588E-05 -2.88538E-05 -2.87489E-05 -2.86441E-05 -2.85393E-05 -2.84346E-05 -2.833E-05 -2.82254E-05 -2.8121E-05 -2.80166E-05 -2.79122E-05 -2.7808E-05 -2.77037E-05 -2.75996E-05 -2.74955E-05 -2.73915E-05 -2.72876E-05 -2.71837E-05 -2.70799E-05 -2.69761E-05 -2.68724E-05 -2.67688E-05 -2.66652E-05 -2.65617E-05 -2.64582E-05 -2.63548E-05 -2.62515E-05 -2.61482E-05 -2.6045E-05 -2.59418E-05 -2.58387E-05 -2.57356E-05 -2.56326E-05 -2.55297E-05 -2.54268E-05 -2.5324E-05 -2.52212E-05 -2.51185E-05 -2.50158E-05 -2.49131E-05 -2.48106E-05 -2.47081E-05 -2.46056E-05 -2.45032E-05 -2.44008E-05 -2.42985E-05 -2.41962E-05 -2.4094E-05 -2.39918E-05 -2.38896E-05 -2.37875E-05 -2.36855E-05 -2.35835E-05 -2.34815E-05 -2.33796E-05 -2.32777E-05 -2.31758E-05 -2.3074E-05 -2.29722E-05 -2.28704E-05 -2.27687E-05 -2.2667E-05 -2.25653E-05 -2.24636E-05 -2.23619E-05 -2.22603E-05 -2.21587E-05 -2.2057E-05 -2.19554E-05 -2.18537E-05 -2.1752E-05 -2.16504E-05 -2.15486E-05 -2.14469E-05 -2.13451E-05 -2.12432E-05 -2.11412E-05 -2.10392E-05 -2.09371E-05 -2.08348E-05 -2.07324E-05 -2.06299E-05 -2.05271E-05 -2.04241E-05 -2.03209E-05 -2.02173E-05 -2.01134E-05 -2.0009E-05 -1.99041E-05 -1.97986E-05 -1.96924E-05 -1.95852E-05 -1.9477E-05 -1.93675E-05 -1.92564E-05 -1.91431E-05 -1.90273E-05 -1.89081E-05 -1.87844E-05 -1.86547E-05 -1.85168E-05 -1.83676E-05 -1.8202E-05 -1.80125E-05 -1.77872E-05 -1.75076E-05 -1.71445E-05 -1.66546E-05 -1.59777E-05 -1.50383E-05 -1.37548E-05 -1.20506E-05 -9.86309E-06 -7.14573E-06 -3.86567E-06 -3.94137E-11 4.49274E-06 9.66971E-06 1.55731E-05 2.22448E-05 2.9723E-05 3.80399E-05 4.72206E-05 5.72818E-05 6.82321E-05 8.00727E-05 +-3.11885E-05 -3.10875E-05 -3.09867E-05 -3.0886E-05 -3.07856E-05 -3.06853E-05 -3.05852E-05 -3.04853E-05 -3.03855E-05 -3.02859E-05 -3.01865E-05 -3.00872E-05 -2.99881E-05 -2.98892E-05 -2.97904E-05 -2.96918E-05 -2.95933E-05 -2.9495E-05 -2.93968E-05 -2.92988E-05 -2.92009E-05 -2.91032E-05 -2.90056E-05 -2.89081E-05 -2.88108E-05 -2.87136E-05 -2.86166E-05 -2.85197E-05 -2.84229E-05 -2.83262E-05 -2.82297E-05 -2.81333E-05 -2.8037E-05 -2.79408E-05 -2.78447E-05 -2.77488E-05 -2.7653E-05 -2.75572E-05 -2.74616E-05 -2.73661E-05 -2.72708E-05 -2.71755E-05 -2.70803E-05 -2.69852E-05 -2.68902E-05 -2.67954E-05 -2.67006E-05 -2.66059E-05 -2.65113E-05 -2.64168E-05 -2.63224E-05 -2.62281E-05 -2.61338E-05 -2.60397E-05 -2.59456E-05 -2.58516E-05 -2.57577E-05 -2.56639E-05 -2.55702E-05 -2.54765E-05 -2.5383E-05 -2.52895E-05 -2.5196E-05 -2.51027E-05 -2.50094E-05 -2.49162E-05 -2.48231E-05 -2.473E-05 -2.4637E-05 -2.45441E-05 -2.44513E-05 -2.43585E-05 -2.42657E-05 -2.41731E-05 -2.40805E-05 -2.3988E-05 -2.38955E-05 -2.38031E-05 -2.37108E-05 -2.36185E-05 -2.35263E-05 -2.34341E-05 -2.3342E-05 -2.32499E-05 -2.3158E-05 -2.3066E-05 -2.29742E-05 -2.28824E-05 -2.27906E-05 -2.26989E-05 -2.26073E-05 -2.25157E-05 -2.24241E-05 -2.23327E-05 -2.22412E-05 -2.21499E-05 -2.20586E-05 -2.19673E-05 -2.18761E-05 -2.17849E-05 -2.16938E-05 -2.16028E-05 -2.15118E-05 -2.14208E-05 -2.13299E-05 -2.12391E-05 -2.11483E-05 -2.10575E-05 -2.09668E-05 -2.08762E-05 -2.07856E-05 -2.0695E-05 -2.06045E-05 -2.05141E-05 -2.04237E-05 -2.03333E-05 -2.0243E-05 -2.01527E-05 -2.00624E-05 -1.99722E-05 -1.98821E-05 -1.97919E-05 -1.97019E-05 -1.96118E-05 -1.95218E-05 -1.94318E-05 -1.93418E-05 -1.92519E-05 -1.9162E-05 -1.90721E-05 -1.89822E-05 -1.88924E-05 -1.88025E-05 -1.87127E-05 -1.86229E-05 -1.8533E-05 -1.84432E-05 -1.83533E-05 -1.82634E-05 -1.81735E-05 -1.80836E-05 -1.79936E-05 -1.79035E-05 -1.78134E-05 -1.77232E-05 -1.76329E-05 -1.75424E-05 -1.74519E-05 -1.73611E-05 -1.72701E-05 -1.71789E-05 -1.70875E-05 -1.69956E-05 -1.69034E-05 -1.68108E-05 -1.67175E-05 -1.66236E-05 -1.65288E-05 -1.6433E-05 -1.63359E-05 -1.62373E-05 -1.61366E-05 -1.60334E-05 -1.59267E-05 -1.58155E-05 -1.56981E-05 -1.55722E-05 -1.5434E-05 -1.52779E-05 -1.50951E-05 -1.48715E-05 -1.45848E-05 -1.42002E-05 -1.36671E-05 -1.29182E-05 -1.18756E-05 -1.04618E-05 -8.61053E-06 -6.27166E-06 -3.40964E-06 -3.59046E-11 3.99302E-06 8.62143E-06 1.3931E-05 1.9969E-05 2.6781E-05 3.44075E-05 4.28818E-05 5.22288E-05 6.24646E-05 7.35965E-05 +-2.68785E-05 -2.67893E-05 -2.67002E-05 -2.66113E-05 -2.65226E-05 -2.6434E-05 -2.63456E-05 -2.62574E-05 -2.61693E-05 -2.60813E-05 -2.59935E-05 -2.59058E-05 -2.58183E-05 -2.57309E-05 -2.56437E-05 -2.55566E-05 -2.54696E-05 -2.53828E-05 -2.52961E-05 -2.52095E-05 -2.51231E-05 -2.50367E-05 -2.49506E-05 -2.48645E-05 -2.47786E-05 -2.46927E-05 -2.4607E-05 -2.45214E-05 -2.4436E-05 -2.43506E-05 -2.42654E-05 -2.41802E-05 -2.40952E-05 -2.40103E-05 -2.39255E-05 -2.38408E-05 -2.37562E-05 -2.36716E-05 -2.35872E-05 -2.35029E-05 -2.34187E-05 -2.33346E-05 -2.32505E-05 -2.31666E-05 -2.30828E-05 -2.2999E-05 -2.29153E-05 -2.28317E-05 -2.27482E-05 -2.26648E-05 -2.25815E-05 -2.24982E-05 -2.24151E-05 -2.2332E-05 -2.2249E-05 -2.2166E-05 -2.20831E-05 -2.20004E-05 -2.19176E-05 -2.1835E-05 -2.17524E-05 -2.16699E-05 -2.15875E-05 -2.15051E-05 -2.14228E-05 -2.13406E-05 -2.12584E-05 -2.11763E-05 -2.10942E-05 -2.10123E-05 -2.09303E-05 -2.08485E-05 -2.07667E-05 -2.0685E-05 -2.06033E-05 -2.05217E-05 -2.04401E-05 -2.03586E-05 -2.02772E-05 -2.01958E-05 -2.01145E-05 -2.00332E-05 -1.9952E-05 -1.98708E-05 -1.97897E-05 -1.97086E-05 -1.96276E-05 -1.95467E-05 -1.94658E-05 -1.9385E-05 -1.93042E-05 -1.92234E-05 -1.91428E-05 -1.90621E-05 -1.89815E-05 -1.8901E-05 -1.88205E-05 -1.87401E-05 -1.86597E-05 -1.85794E-05 -1.84991E-05 -1.84189E-05 -1.83387E-05 -1.82586E-05 -1.81785E-05 -1.80985E-05 -1.80185E-05 -1.79385E-05 -1.78586E-05 -1.77788E-05 -1.7699E-05 -1.76193E-05 -1.75395E-05 -1.74599E-05 -1.73803E-05 -1.73007E-05 -1.72212E-05 -1.71417E-05 -1.70622E-05 -1.69828E-05 -1.69035E-05 -1.68241E-05 -1.67449E-05 -1.66656E-05 -1.65864E-05 -1.65072E-05 -1.64281E-05 -1.63489E-05 -1.62698E-05 -1.61908E-05 -1.61117E-05 -1.60327E-05 -1.59537E-05 -1.58747E-05 -1.57957E-05 -1.57167E-05 -1.56378E-05 -1.55588E-05 -1.54798E-05 -1.54008E-05 -1.53218E-05 -1.52428E-05 -1.51637E-05 -1.50845E-05 -1.50053E-05 -1.49261E-05 -1.48467E-05 -1.47672E-05 -1.46877E-05 -1.46079E-05 -1.4528E-05 -1.44479E-05 -1.43675E-05 -1.42868E-05 -1.42057E-05 -1.41242E-05 -1.40422E-05 -1.39595E-05 -1.38761E-05 -1.37916E-05 -1.3706E-05 -1.36188E-05 -1.35295E-05 -1.34377E-05 -1.33425E-05 -1.32425E-05 -1.31361E-05 -1.30205E-05 -1.28915E-05 -1.27425E-05 -1.2563E-05 -1.23358E-05 -1.20339E-05 -1.16156E-05 -1.10227E-05 -1.01831E-05 -9.02069E-06 -7.46717E-06 -5.46918E-06 -2.98878E-06 -3.26807E-11 3.52712E-06 7.6385E-06 1.2382E-05 1.78096E-05 2.39733E-05 3.09216E-05 3.86965E-05 4.73314E-05 5.68503E-05 6.7268E-05 +-2.30599E-05 -2.29815E-05 -2.29033E-05 -2.28252E-05 -2.27473E-05 -2.26695E-05 -2.25919E-05 -2.25144E-05 -2.2437E-05 -2.23597E-05 -2.22826E-05 -2.22056E-05 -2.21287E-05 -2.2052E-05 -2.19753E-05 -2.18988E-05 -2.18225E-05 -2.17462E-05 -2.16701E-05 -2.1594E-05 -2.15181E-05 -2.14423E-05 -2.13666E-05 -2.1291E-05 -2.12156E-05 -2.11402E-05 -2.10649E-05 -2.09898E-05 -2.09147E-05 -2.08398E-05 -2.07649E-05 -2.06901E-05 -2.06155E-05 -2.05409E-05 -2.04664E-05 -2.03921E-05 -2.03178E-05 -2.02436E-05 -2.01694E-05 -2.00954E-05 -2.00215E-05 -1.99476E-05 -1.98738E-05 -1.98001E-05 -1.97265E-05 -1.9653E-05 -1.95795E-05 -1.95062E-05 -1.94329E-05 -1.93596E-05 -1.92865E-05 -1.92134E-05 -1.91404E-05 -1.90675E-05 -1.89946E-05 -1.89218E-05 -1.88491E-05 -1.87764E-05 -1.87038E-05 -1.86313E-05 -1.85588E-05 -1.84864E-05 -1.8414E-05 -1.83417E-05 -1.82695E-05 -1.81974E-05 -1.81253E-05 -1.80532E-05 -1.79812E-05 -1.79093E-05 -1.78374E-05 -1.77656E-05 -1.76939E-05 -1.76222E-05 -1.75505E-05 -1.74789E-05 -1.74074E-05 -1.73359E-05 -1.72644E-05 -1.71931E-05 -1.71217E-05 -1.70504E-05 -1.69792E-05 -1.6908E-05 -1.68369E-05 -1.67658E-05 -1.66948E-05 -1.66238E-05 -1.65529E-05 -1.6482E-05 -1.64112E-05 -1.63404E-05 -1.62697E-05 -1.6199E-05 -1.61283E-05 -1.60577E-05 -1.59872E-05 -1.59167E-05 -1.58462E-05 -1.57758E-05 -1.57055E-05 -1.56352E-05 -1.55649E-05 -1.54947E-05 -1.54245E-05 -1.53544E-05 -1.52843E-05 -1.52142E-05 -1.51443E-05 -1.50743E-05 -1.50044E-05 -1.49345E-05 -1.48647E-05 -1.47949E-05 -1.47252E-05 -1.46555E-05 -1.45859E-05 -1.45163E-05 -1.44467E-05 -1.43772E-05 -1.43077E-05 -1.42382E-05 -1.41688E-05 -1.40995E-05 -1.40301E-05 -1.39608E-05 -1.38915E-05 -1.38223E-05 -1.37531E-05 -1.36839E-05 -1.36147E-05 -1.35456E-05 -1.34765E-05 -1.34074E-05 -1.33383E-05 -1.32693E-05 -1.32002E-05 -1.31312E-05 -1.30621E-05 -1.29931E-05 -1.2924E-05 -1.28549E-05 -1.27858E-05 -1.27167E-05 -1.26475E-05 -1.25783E-05 -1.2509E-05 -1.24397E-05 -1.23702E-05 -1.23006E-05 -1.22309E-05 -1.21611E-05 -1.2091E-05 -1.20207E-05 -1.19502E-05 -1.18793E-05 -1.1808E-05 -1.17361E-05 -1.16637E-05 -1.15906E-05 -1.15164E-05 -1.14411E-05 -1.13643E-05 -1.12855E-05 -1.1204E-05 -1.1119E-05 -1.1029E-05 -1.09322E-05 -1.08252E-05 -1.07033E-05 -1.05585E-05 -1.03779E-05 -1.01404E-05 -9.81266E-06 -9.34556E-06 -8.67443E-06 -7.72659E-06 -6.43329E-06 -4.73898E-06 -2.60363E-06 -2.97202E-11 3.09632E-06 6.72452E-06 1.09332E-05 1.57776E-05 2.13153E-05 2.76023E-05 3.46891E-05 4.26179E-05 5.14213E-05 6.11218E-05 +-1.96963E-05 -1.96278E-05 -1.95595E-05 -1.94914E-05 -1.94233E-05 -1.93553E-05 -1.92875E-05 -1.92198E-05 -1.91522E-05 -1.90848E-05 -1.90174E-05 -1.89501E-05 -1.8883E-05 -1.8816E-05 -1.87491E-05 -1.86823E-05 -1.86155E-05 -1.85489E-05 -1.84824E-05 -1.84161E-05 -1.83498E-05 -1.82836E-05 -1.82175E-05 -1.81514E-05 -1.80855E-05 -1.80197E-05 -1.7954E-05 -1.78884E-05 -1.78228E-05 -1.77574E-05 -1.7692E-05 -1.76267E-05 -1.75615E-05 -1.74964E-05 -1.74314E-05 -1.73664E-05 -1.73016E-05 -1.72368E-05 -1.71721E-05 -1.71074E-05 -1.70429E-05 -1.69784E-05 -1.6914E-05 -1.68496E-05 -1.67854E-05 -1.67212E-05 -1.6657E-05 -1.6593E-05 -1.6529E-05 -1.64651E-05 -1.64012E-05 -1.63374E-05 -1.62737E-05 -1.621E-05 -1.61464E-05 -1.60829E-05 -1.60194E-05 -1.5956E-05 -1.58926E-05 -1.58293E-05 -1.57661E-05 -1.57029E-05 -1.56397E-05 -1.55767E-05 -1.55136E-05 -1.54507E-05 -1.53877E-05 -1.53249E-05 -1.52621E-05 -1.51993E-05 -1.51366E-05 -1.50739E-05 -1.50113E-05 -1.49488E-05 -1.48863E-05 -1.48238E-05 -1.47614E-05 -1.4699E-05 -1.46367E-05 -1.45745E-05 -1.45122E-05 -1.44501E-05 -1.43879E-05 -1.43259E-05 -1.42638E-05 -1.42018E-05 -1.41399E-05 -1.4078E-05 -1.40161E-05 -1.39543E-05 -1.38926E-05 -1.38309E-05 -1.37692E-05 -1.37076E-05 -1.3646E-05 -1.35844E-05 -1.35229E-05 -1.34615E-05 -1.34001E-05 -1.33387E-05 -1.32774E-05 -1.32161E-05 -1.31548E-05 -1.30936E-05 -1.30325E-05 -1.29714E-05 -1.29103E-05 -1.28493E-05 -1.27883E-05 -1.27273E-05 -1.26664E-05 -1.26056E-05 -1.25447E-05 -1.24839E-05 -1.24232E-05 -1.23625E-05 -1.23018E-05 -1.22412E-05 -1.21806E-05 -1.21201E-05 -1.20596E-05 -1.19991E-05 -1.19386E-05 -1.18782E-05 -1.18179E-05 -1.17575E-05 -1.16972E-05 -1.1637E-05 -1.15767E-05 -1.15165E-05 -1.14563E-05 -1.13962E-05 -1.1336E-05 -1.12759E-05 -1.12158E-05 -1.11557E-05 -1.10957E-05 -1.10356E-05 -1.09756E-05 -1.09155E-05 -1.08555E-05 -1.07954E-05 -1.07354E-05 -1.06753E-05 -1.06152E-05 -1.05551E-05 -1.04949E-05 -1.04346E-05 -1.03743E-05 -1.0314E-05 -1.02535E-05 -1.01929E-05 -1.01321E-05 -1.00712E-05 -1.00101E-05 -9.94866E-06 -9.88695E-06 -9.82486E-06 -9.76229E-06 -9.69914E-06 -9.63527E-06 -9.57047E-06 -9.5045E-06 -9.437E-06 -9.36748E-06 -9.29524E-06 -9.21926E-06 -9.13804E-06 -9.04923E-06 -8.94916E-06 -8.83189E-06 -8.68767E-06 -8.50029E-06 -8.24345E-06 -7.87656E-06 -7.3432E-06 -6.57589E-06 -5.50718E-06 -4.08045E-06 -2.25414E-06 -2.70028E-11 2.70129E-06 5.88198E-06 9.58995E-06 1.38822E-05 1.88208E-05 2.44683E-05 3.08833E-05 3.81168E-05 4.62101E-05 5.51941E-05 +-1.67499E-05 -1.66905E-05 -1.66312E-05 -1.6572E-05 -1.65129E-05 -1.64539E-05 -1.6395E-05 -1.63362E-05 -1.62775E-05 -1.62189E-05 -1.61604E-05 -1.6102E-05 -1.60437E-05 -1.59855E-05 -1.59274E-05 -1.58693E-05 -1.58114E-05 -1.57536E-05 -1.56958E-05 -1.56382E-05 -1.55806E-05 -1.55231E-05 -1.54657E-05 -1.54084E-05 -1.53512E-05 -1.5294E-05 -1.52369E-05 -1.518E-05 -1.5123E-05 -1.50662E-05 -1.50094E-05 -1.49528E-05 -1.48962E-05 -1.48396E-05 -1.47832E-05 -1.47268E-05 -1.46705E-05 -1.46142E-05 -1.4558E-05 -1.45019E-05 -1.44459E-05 -1.43899E-05 -1.4334E-05 -1.42781E-05 -1.42223E-05 -1.41666E-05 -1.41109E-05 -1.40553E-05 -1.39998E-05 -1.39443E-05 -1.38888E-05 -1.38335E-05 -1.37782E-05 -1.37229E-05 -1.36677E-05 -1.36125E-05 -1.35574E-05 -1.35024E-05 -1.34474E-05 -1.33925E-05 -1.33376E-05 -1.32827E-05 -1.3228E-05 -1.31732E-05 -1.31185E-05 -1.30639E-05 -1.30093E-05 -1.29548E-05 -1.29003E-05 -1.28458E-05 -1.27914E-05 -1.2737E-05 -1.26827E-05 -1.26284E-05 -1.25742E-05 -1.252E-05 -1.24659E-05 -1.24118E-05 -1.23577E-05 -1.23037E-05 -1.22498E-05 -1.21958E-05 -1.2142E-05 -1.20881E-05 -1.20343E-05 -1.19806E-05 -1.19268E-05 -1.18732E-05 -1.18195E-05 -1.17659E-05 -1.17124E-05 -1.16589E-05 -1.16054E-05 -1.15519E-05 -1.14985E-05 -1.14452E-05 -1.13919E-05 -1.13386E-05 -1.12854E-05 -1.12322E-05 -1.1179E-05 -1.11259E-05 -1.10728E-05 -1.10198E-05 -1.09667E-05 -1.09138E-05 -1.08609E-05 -1.0808E-05 -1.07551E-05 -1.07023E-05 -1.06495E-05 -1.05968E-05 -1.05441E-05 -1.04914E-05 -1.04388E-05 -1.03862E-05 -1.03337E-05 -1.02812E-05 -1.02287E-05 -1.01762E-05 -1.01238E-05 -1.00715E-05 -1.00191E-05 -9.96681E-06 -9.91454E-06 -9.8623E-06 -9.81008E-06 -9.7579E-06 -9.70575E-06 -9.65363E-06 -9.60154E-06 -9.54947E-06 -9.49742E-06 -9.4454E-06 -9.3934E-06 -9.34142E-06 -9.28945E-06 -9.2375E-06 -9.18556E-06 -9.13363E-06 -9.0817E-06 -9.02978E-06 -8.97785E-06 -8.92591E-06 -8.87396E-06 -8.82199E-06 -8.76999E-06 -8.71795E-06 -8.66587E-06 -8.61372E-06 -8.5615E-06 -8.50919E-06 -8.45678E-06 -8.40422E-06 -8.35151E-06 -8.2986E-06 -8.24544E-06 -8.192E-06 -8.13819E-06 -8.08392E-06 -8.0291E-06 -7.97357E-06 -7.91712E-06 -7.8595E-06 -7.80033E-06 -7.73908E-06 -7.67498E-06 -7.60688E-06 -7.53304E-06 -7.45069E-06 -7.35538E-06 -7.23974E-06 -7.09141E-06 -6.88979E-06 -6.60199E-06 -6.17989E-06 -5.56248E-06 -4.68528E-06 -3.4918E-06 -1.93966E-06 -2.45097E-11 2.34212E-06 5.11211E-06 8.35582E-06 1.21305E-05 1.65013E-05 2.15363E-05 2.73011E-05 3.38552E-05 4.12487E-05 4.95209E-05 +-1.41829E-05 -1.41316E-05 -1.40803E-05 -1.40292E-05 -1.39782E-05 -1.39272E-05 -1.38763E-05 -1.38256E-05 -1.37749E-05 -1.37243E-05 -1.36738E-05 -1.36234E-05 -1.3573E-05 -1.35228E-05 -1.34726E-05 -1.34225E-05 -1.33725E-05 -1.33225E-05 -1.32727E-05 -1.32229E-05 -1.31732E-05 -1.31235E-05 -1.3074E-05 -1.30245E-05 -1.29751E-05 -1.29257E-05 -1.28765E-05 -1.28273E-05 -1.27781E-05 -1.27291E-05 -1.26801E-05 -1.26311E-05 -1.25823E-05 -1.25335E-05 -1.24847E-05 -1.2436E-05 -1.23874E-05 -1.23389E-05 -1.22904E-05 -1.22419E-05 -1.21935E-05 -1.21452E-05 -1.20969E-05 -1.20487E-05 -1.20006E-05 -1.19525E-05 -1.19044E-05 -1.18564E-05 -1.18085E-05 -1.17606E-05 -1.17128E-05 -1.1665E-05 -1.16172E-05 -1.15695E-05 -1.15219E-05 -1.14743E-05 -1.14267E-05 -1.13792E-05 -1.13318E-05 -1.12844E-05 -1.1237E-05 -1.11897E-05 -1.11424E-05 -1.10952E-05 -1.1048E-05 -1.10009E-05 -1.09538E-05 -1.09067E-05 -1.08597E-05 -1.08127E-05 -1.07658E-05 -1.07189E-05 -1.0672E-05 -1.06252E-05 -1.05784E-05 -1.05317E-05 -1.0485E-05 -1.04383E-05 -1.03917E-05 -1.03451E-05 -1.02986E-05 -1.0252E-05 -1.02056E-05 -1.01591E-05 -1.01127E-05 -1.00664E-05 -1.002E-05 -9.97376E-06 -9.92751E-06 -9.88129E-06 -9.83511E-06 -9.78897E-06 -9.74286E-06 -9.69679E-06 -9.65076E-06 -9.60476E-06 -9.55879E-06 -9.51286E-06 -9.46697E-06 -9.42111E-06 -9.37529E-06 -9.3295E-06 -9.28375E-06 -9.23803E-06 -9.19235E-06 -9.1467E-06 -9.10109E-06 -9.05551E-06 -9.00997E-06 -8.96446E-06 -8.91899E-06 -8.87355E-06 -8.82814E-06 -8.78277E-06 -8.73743E-06 -8.69213E-06 -8.64686E-06 -8.60162E-06 -8.55641E-06 -8.51124E-06 -8.4661E-06 -8.42099E-06 -8.37591E-06 -8.33087E-06 -8.28585E-06 -8.24087E-06 -8.19591E-06 -8.15098E-06 -8.10608E-06 -8.06121E-06 -8.01637E-06 -7.97154E-06 -7.92675E-06 -7.88197E-06 -7.83722E-06 -7.79248E-06 -7.74777E-06 -7.70307E-06 -7.65838E-06 -7.61371E-06 -7.56904E-06 -7.52438E-06 -7.47972E-06 -7.43506E-06 -7.3904E-06 -7.34572E-06 -7.30102E-06 -7.2563E-06 -7.21154E-06 -7.16675E-06 -7.12189E-06 -7.07698E-06 -7.03198E-06 -6.98688E-06 -6.94165E-06 -6.89628E-06 -6.85072E-06 -6.80493E-06 -6.75887E-06 -6.71245E-06 -6.6656E-06 -6.6182E-06 -6.5701E-06 -6.52109E-06 -6.47088E-06 -6.41907E-06 -6.36508E-06 -6.30804E-06 -6.24662E-06 -6.17876E-06 -6.10108E-06 -6.00802E-06 -5.89015E-06 -5.73148E-06 -5.5057E-06 -5.17255E-06 -4.67817E-06 -3.9624E-06 -2.97015E-06 -1.65903E-06 -2.22236E-11 2.0183E-06 4.41491E-06 7.23248E-06 1.05272E-05 1.43656E-05 1.88197E-05 2.39614E-05 2.98576E-05 3.65668E-05 4.41367E-05 +-1.19576E-05 -1.19136E-05 -1.18696E-05 -1.18257E-05 -1.17819E-05 -1.17381E-05 -1.16945E-05 -1.16509E-05 -1.16074E-05 -1.15639E-05 -1.15206E-05 -1.14773E-05 -1.14341E-05 -1.13909E-05 -1.13478E-05 -1.13048E-05 -1.12619E-05 -1.1219E-05 -1.11762E-05 -1.11335E-05 -1.10908E-05 -1.10482E-05 -1.10057E-05 -1.09632E-05 -1.09208E-05 -1.08784E-05 -1.08361E-05 -1.07939E-05 -1.07517E-05 -1.07096E-05 -1.06675E-05 -1.06255E-05 -1.05836E-05 -1.05417E-05 -1.04999E-05 -1.04581E-05 -1.04163E-05 -1.03747E-05 -1.0333E-05 -1.02915E-05 -1.02499E-05 -1.02085E-05 -1.0167E-05 -1.01257E-05 -1.00843E-05 -1.0043E-05 -1.00018E-05 -9.96062E-06 -9.91948E-06 -9.87838E-06 -9.83733E-06 -9.79632E-06 -9.75535E-06 -9.71442E-06 -9.67354E-06 -9.6327E-06 -9.59191E-06 -9.55115E-06 -9.51043E-06 -9.46975E-06 -9.42912E-06 -9.38852E-06 -9.34796E-06 -9.30744E-06 -9.26695E-06 -9.22651E-06 -9.1861E-06 -9.14573E-06 -9.10539E-06 -9.06509E-06 -9.02483E-06 -8.9846E-06 -8.94441E-06 -8.90425E-06 -8.86413E-06 -8.82404E-06 -8.78398E-06 -8.74396E-06 -8.70398E-06 -8.66402E-06 -8.6241E-06 -8.58422E-06 -8.54436E-06 -8.50454E-06 -8.46476E-06 -8.425E-06 -8.38528E-06 -8.34559E-06 -8.30593E-06 -8.26631E-06 -8.22671E-06 -8.18715E-06 -8.14762E-06 -8.10812E-06 -8.06866E-06 -8.02922E-06 -7.98982E-06 -7.95045E-06 -7.91111E-06 -7.8718E-06 -7.83253E-06 -7.79328E-06 -7.75407E-06 -7.71489E-06 -7.67574E-06 -7.63662E-06 -7.59753E-06 -7.55847E-06 -7.51944E-06 -7.48045E-06 -7.44148E-06 -7.40255E-06 -7.36364E-06 -7.32477E-06 -7.28593E-06 -7.24712E-06 -7.20833E-06 -7.16958E-06 -7.13086E-06 -7.09217E-06 -7.0535E-06 -7.01487E-06 -6.97626E-06 -6.93768E-06 -6.89913E-06 -6.86061E-06 -6.82211E-06 -6.78364E-06 -6.7452E-06 -6.70678E-06 -6.66839E-06 -6.63002E-06 -6.59167E-06 -6.55335E-06 -6.51504E-06 -6.47676E-06 -6.43849E-06 -6.40024E-06 -6.362E-06 -6.32378E-06 -6.28556E-06 -6.24736E-06 -6.20916E-06 -6.17096E-06 -6.13277E-06 -6.09456E-06 -6.05635E-06 -6.01812E-06 -5.97987E-06 -5.94158E-06 -5.90326E-06 -5.86489E-06 -5.82646E-06 -5.78796E-06 -5.74936E-06 -5.71064E-06 -5.67178E-06 -5.63275E-06 -5.5935E-06 -5.55399E-06 -5.51413E-06 -5.47385E-06 -5.43302E-06 -5.39149E-06 -5.34904E-06 -5.30535E-06 -5.25998E-06 -5.21227E-06 -5.16122E-06 -5.10524E-06 -5.04181E-06 -4.96669E-06 -4.8727E-06 -4.74747E-06 -4.57013E-06 -4.30755E-06 -3.91314E-06 -3.33205E-06 -2.51174E-06 -1.41064E-06 -2.01285E-11 1.72878E-06 3.78911E-06 6.21957E-06 9.07393E-06 1.24187E-05 1.63283E-05 2.08793E-05 2.61447E-05 3.21905E-05 3.90727E-05 +-1.00381E-05 -1.00005E-05 -9.96301E-06 -9.92554E-06 -9.88813E-06 -9.8508E-06 -9.81353E-06 -9.77633E-06 -9.73919E-06 -9.70212E-06 -9.6651E-06 -9.62816E-06 -9.59127E-06 -9.55444E-06 -9.51768E-06 -9.48097E-06 -9.44432E-06 -9.40774E-06 -9.3712E-06 -9.33473E-06 -9.29831E-06 -9.26195E-06 -9.22564E-06 -9.18938E-06 -9.15318E-06 -9.11703E-06 -9.08094E-06 -9.04489E-06 -9.0089E-06 -8.97295E-06 -8.93706E-06 -8.90121E-06 -8.86542E-06 -8.82967E-06 -8.79396E-06 -8.75831E-06 -8.7227E-06 -8.68713E-06 -8.65161E-06 -8.61613E-06 -8.5807E-06 -8.54531E-06 -8.50996E-06 -8.47466E-06 -8.43939E-06 -8.40417E-06 -8.36898E-06 -8.33384E-06 -8.29874E-06 -8.26367E-06 -8.22865E-06 -8.19366E-06 -8.15871E-06 -8.12379E-06 -8.08891E-06 -8.05407E-06 -8.01927E-06 -7.9845E-06 -7.94976E-06 -7.91506E-06 -7.8804E-06 -7.84577E-06 -7.81117E-06 -7.7766E-06 -7.74207E-06 -7.70757E-06 -7.6731E-06 -7.63867E-06 -7.60427E-06 -7.5699E-06 -7.53556E-06 -7.50125E-06 -7.46697E-06 -7.43272E-06 -7.3985E-06 -7.36431E-06 -7.33016E-06 -7.29603E-06 -7.26193E-06 -7.22786E-06 -7.19382E-06 -7.15981E-06 -7.12583E-06 -7.09188E-06 -7.05796E-06 -7.02406E-06 -6.99019E-06 -6.95636E-06 -6.92255E-06 -6.88876E-06 -6.85501E-06 -6.82129E-06 -6.78759E-06 -6.75392E-06 -6.72028E-06 -6.68667E-06 -6.65308E-06 -6.61952E-06 -6.58599E-06 -6.55249E-06 -6.51902E-06 -6.48557E-06 -6.45215E-06 -6.41876E-06 -6.3854E-06 -6.35206E-06 -6.31875E-06 -6.28547E-06 -6.25222E-06 -6.21899E-06 -6.18579E-06 -6.15262E-06 -6.11948E-06 -6.08636E-06 -6.05327E-06 -6.02021E-06 -5.98717E-06 -5.95416E-06 -5.92118E-06 -5.88822E-06 -5.85529E-06 -5.82238E-06 -5.7895E-06 -5.75665E-06 -5.72382E-06 -5.69102E-06 -5.65824E-06 -5.62548E-06 -5.59275E-06 -5.56004E-06 -5.52735E-06 -5.49469E-06 -5.46204E-06 -5.42942E-06 -5.39682E-06 -5.36423E-06 -5.33166E-06 -5.29911E-06 -5.26657E-06 -5.23405E-06 -5.20154E-06 -5.16903E-06 -5.13654E-06 -5.10405E-06 -5.07156E-06 -5.03907E-06 -5.00657E-06 -4.97407E-06 -4.94155E-06 -4.90901E-06 -4.87644E-06 -4.84384E-06 -4.81119E-06 -4.77849E-06 -4.74571E-06 -4.71285E-06 -4.67988E-06 -4.64677E-06 -4.61349E-06 -4.58001E-06 -4.54627E-06 -4.51219E-06 -4.47769E-06 -4.44264E-06 -4.40688E-06 -4.37017E-06 -4.33215E-06 -4.29233E-06 -4.24994E-06 -4.20378E-06 -4.15192E-06 -4.09115E-06 -4.01596E-06 -3.91683E-06 -3.77729E-06 -3.57041E-06 -3.25658E-06 -2.78683E-06 -2.11213E-06 -1.1925E-06 -1.82097E-11 1.47202E-06 3.23228E-06 5.31477E-06 7.76976E-06 1.06623E-05 1.40675E-05 1.80646E-05 2.27316E-05 2.81407E-05 3.43551E-05 +-8.39023E-06 -8.35832E-06 -8.32646E-06 -8.29467E-06 -8.26293E-06 -8.23125E-06 -8.19963E-06 -8.16806E-06 -8.13654E-06 -8.10508E-06 -8.07368E-06 -8.04233E-06 -8.01103E-06 -7.97978E-06 -7.94858E-06 -7.91744E-06 -7.88634E-06 -7.85529E-06 -7.8243E-06 -7.79335E-06 -7.76245E-06 -7.73159E-06 -7.70079E-06 -7.67003E-06 -7.63931E-06 -7.60864E-06 -7.57801E-06 -7.54743E-06 -7.51689E-06 -7.4864E-06 -7.45594E-06 -7.42553E-06 -7.39516E-06 -7.36483E-06 -7.33454E-06 -7.30429E-06 -7.27408E-06 -7.2439E-06 -7.21377E-06 -7.18367E-06 -7.15361E-06 -7.12359E-06 -7.0936E-06 -7.06365E-06 -7.03374E-06 -7.00386E-06 -6.97401E-06 -6.9442E-06 -6.91443E-06 -6.88468E-06 -6.85497E-06 -6.82529E-06 -6.79565E-06 -6.76603E-06 -6.73645E-06 -6.7069E-06 -6.67738E-06 -6.64789E-06 -6.61843E-06 -6.589E-06 -6.5596E-06 -6.53023E-06 -6.50089E-06 -6.47158E-06 -6.44229E-06 -6.41304E-06 -6.38381E-06 -6.35461E-06 -6.32543E-06 -6.29629E-06 -6.26717E-06 -6.23808E-06 -6.20901E-06 -6.17997E-06 -6.15096E-06 -6.12197E-06 -6.09301E-06 -6.06408E-06 -6.03517E-06 -6.00629E-06 -5.97743E-06 -5.9486E-06 -5.91979E-06 -5.891E-06 -5.86225E-06 -5.83351E-06 -5.80481E-06 -5.77612E-06 -5.74747E-06 -5.71883E-06 -5.69022E-06 -5.66164E-06 -5.63308E-06 -5.60454E-06 -5.57603E-06 -5.54754E-06 -5.51908E-06 -5.49064E-06 -5.46223E-06 -5.43384E-06 -5.40547E-06 -5.37713E-06 -5.34881E-06 -5.32052E-06 -5.29225E-06 -5.264E-06 -5.23578E-06 -5.20759E-06 -5.17941E-06 -5.15126E-06 -5.12314E-06 -5.09504E-06 -5.06696E-06 -5.03891E-06 -5.01088E-06 -4.98287E-06 -4.95489E-06 -4.92693E-06 -4.89899E-06 -4.87108E-06 -4.84319E-06 -4.81533E-06 -4.78748E-06 -4.75966E-06 -4.73186E-06 -4.70409E-06 -4.67633E-06 -4.6486E-06 -4.62088E-06 -4.59319E-06 -4.56552E-06 -4.53787E-06 -4.51023E-06 -4.48262E-06 -4.45502E-06 -4.42744E-06 -4.39988E-06 -4.37233E-06 -4.3448E-06 -4.31728E-06 -4.28977E-06 -4.26227E-06 -4.23478E-06 -4.2073E-06 -4.17981E-06 -4.15234E-06 -4.12485E-06 -4.09737E-06 -4.06987E-06 -4.04237E-06 -4.01484E-06 -3.98728E-06 -3.9597E-06 -3.93207E-06 -3.90439E-06 -3.87664E-06 -3.8488E-06 -3.82086E-06 -3.7928E-06 -3.76457E-06 -3.73614E-06 -3.70745E-06 -3.67843E-06 -3.64898E-06 -3.61898E-06 -3.58823E-06 -3.55648E-06 -3.52334E-06 -3.48821E-06 -3.45017E-06 -3.40777E-06 -3.35853E-06 -3.29824E-06 -3.21955E-06 -3.10953E-06 -2.94647E-06 -2.6972E-06 -2.31879E-06 -1.7664E-06 -1.00237E-06 -1.64534E-11 1.24612E-06 2.74103E-06 4.51392E-06 6.61081E-06 9.09394E-06 1.20375E-05 1.55217E-05 1.96274E-05 2.44313E-05 3.00033E-05 +-6.98197E-06 -6.95505E-06 -6.92818E-06 -6.90136E-06 -6.87459E-06 -6.84786E-06 -6.82118E-06 -6.79455E-06 -6.76797E-06 -6.74143E-06 -6.71494E-06 -6.68849E-06 -6.66209E-06 -6.63573E-06 -6.60942E-06 -6.58314E-06 -6.55691E-06 -6.53073E-06 -6.50458E-06 -6.47847E-06 -6.45241E-06 -6.42638E-06 -6.4004E-06 -6.37445E-06 -6.34854E-06 -6.32267E-06 -6.29684E-06 -6.27105E-06 -6.24529E-06 -6.21956E-06 -6.19388E-06 -6.16823E-06 -6.14261E-06 -6.11703E-06 -6.09148E-06 -6.06597E-06 -6.04049E-06 -6.01504E-06 -5.98963E-06 -5.96424E-06 -5.93889E-06 -5.91357E-06 -5.88829E-06 -5.86303E-06 -5.8378E-06 -5.8126E-06 -5.78743E-06 -5.76229E-06 -5.73718E-06 -5.7121E-06 -5.68705E-06 -5.66202E-06 -5.63702E-06 -5.61205E-06 -5.58711E-06 -5.56219E-06 -5.5373E-06 -5.51243E-06 -5.48759E-06 -5.46278E-06 -5.43799E-06 -5.41323E-06 -5.38849E-06 -5.36378E-06 -5.33909E-06 -5.31442E-06 -5.28978E-06 -5.26516E-06 -5.24057E-06 -5.216E-06 -5.19145E-06 -5.16693E-06 -5.14242E-06 -5.11795E-06 -5.09349E-06 -5.06906E-06 -5.04464E-06 -5.02025E-06 -4.99589E-06 -4.97154E-06 -4.94722E-06 -4.92292E-06 -4.89864E-06 -4.87438E-06 -4.85014E-06 -4.82593E-06 -4.80173E-06 -4.77756E-06 -4.75341E-06 -4.72928E-06 -4.70517E-06 -4.68109E-06 -4.65702E-06 -4.63297E-06 -4.60895E-06 -4.58495E-06 -4.56096E-06 -4.537E-06 -4.51306E-06 -4.48914E-06 -4.46524E-06 -4.44137E-06 -4.41751E-06 -4.39368E-06 -4.36986E-06 -4.34607E-06 -4.32229E-06 -4.29854E-06 -4.27481E-06 -4.2511E-06 -4.22741E-06 -4.20374E-06 -4.18009E-06 -4.15647E-06 -4.13286E-06 -4.10927E-06 -4.08571E-06 -4.06216E-06 -4.03864E-06 -4.01513E-06 -3.99165E-06 -3.96818E-06 -3.94474E-06 -3.92131E-06 -3.89791E-06 -3.87452E-06 -3.85115E-06 -3.82781E-06 -3.80448E-06 -3.78116E-06 -3.75787E-06 -3.7346E-06 -3.71134E-06 -3.68809E-06 -3.66487E-06 -3.64166E-06 -3.61846E-06 -3.59528E-06 -3.57211E-06 -3.54896E-06 -3.52581E-06 -3.50268E-06 -3.47955E-06 -3.45643E-06 -3.43331E-06 -3.4102E-06 -3.38709E-06 -3.36398E-06 -3.34086E-06 -3.31773E-06 -3.29459E-06 -3.27143E-06 -3.24825E-06 -3.22503E-06 -3.20178E-06 -3.17847E-06 -3.1551E-06 -3.13165E-06 -3.1081E-06 -3.08442E-06 -3.06058E-06 -3.03654E-06 -3.01225E-06 -2.98762E-06 -2.96256E-06 -2.93693E-06 -2.9105E-06 -2.883E-06 -2.85396E-06 -2.82267E-06 -2.78801E-06 -2.74809E-06 -2.69967E-06 -2.63706E-06 -2.55014E-06 -2.42152E-06 -2.22374E-06 -1.91979E-06 -1.46944E-06 -8.37851E-07 -1.4847E-11 1.04887E-06 2.31117E-06 3.81134E-06 5.5907E-06 7.70766E-06 1.02339E-05 1.32487E-05 1.68339E-05 2.10691E-05 2.6029E-05 +-5.78401E-06 -5.76144E-06 -5.7389E-06 -5.71641E-06 -5.69396E-06 -5.67155E-06 -5.64918E-06 -5.62685E-06 -5.60456E-06 -5.5823E-06 -5.56009E-06 -5.53791E-06 -5.51577E-06 -5.49367E-06 -5.4716E-06 -5.44957E-06 -5.42757E-06 -5.40561E-06 -5.38369E-06 -5.3618E-06 -5.33994E-06 -5.31812E-06 -5.29633E-06 -5.27458E-06 -5.25285E-06 -5.23116E-06 -5.2095E-06 -5.18787E-06 -5.16627E-06 -5.14471E-06 -5.12317E-06 -5.10166E-06 -5.08019E-06 -5.05874E-06 -5.03732E-06 -5.01593E-06 -4.99456E-06 -4.97323E-06 -4.95192E-06 -4.93064E-06 -4.90939E-06 -4.88816E-06 -4.86696E-06 -4.84578E-06 -4.82463E-06 -4.80351E-06 -4.78241E-06 -4.76133E-06 -4.74028E-06 -4.71926E-06 -4.69826E-06 -4.67728E-06 -4.65632E-06 -4.63539E-06 -4.61448E-06 -4.59359E-06 -4.57273E-06 -4.55189E-06 -4.53107E-06 -4.51027E-06 -4.48949E-06 -4.46873E-06 -4.448E-06 -4.42729E-06 -4.40659E-06 -4.38592E-06 -4.36527E-06 -4.34464E-06 -4.32402E-06 -4.30343E-06 -4.28286E-06 -4.26231E-06 -4.24177E-06 -4.22126E-06 -4.20077E-06 -4.18029E-06 -4.15983E-06 -4.1394E-06 -4.11898E-06 -4.09858E-06 -4.0782E-06 -4.05784E-06 -4.03749E-06 -4.01717E-06 -3.99686E-06 -3.97657E-06 -3.9563E-06 -3.93605E-06 -3.91582E-06 -3.8956E-06 -3.8754E-06 -3.85522E-06 -3.83506E-06 -3.81492E-06 -3.79479E-06 -3.77469E-06 -3.7546E-06 -3.73453E-06 -3.71447E-06 -3.69444E-06 -3.67442E-06 -3.65442E-06 -3.63444E-06 -3.61448E-06 -3.59453E-06 -3.5746E-06 -3.55469E-06 -3.5348E-06 -3.51493E-06 -3.49507E-06 -3.47523E-06 -3.45541E-06 -3.43561E-06 -3.41583E-06 -3.39606E-06 -3.37631E-06 -3.35658E-06 -3.33686E-06 -3.31717E-06 -3.29749E-06 -3.27783E-06 -3.25818E-06 -3.23856E-06 -3.21895E-06 -3.19935E-06 -3.17978E-06 -3.16022E-06 -3.14068E-06 -3.12115E-06 -3.10164E-06 -3.08214E-06 -3.06266E-06 -3.0432E-06 -3.02375E-06 -3.00431E-06 -2.98489E-06 -2.96548E-06 -2.94608E-06 -2.9267E-06 -2.90733E-06 -2.88796E-06 -2.86861E-06 -2.84926E-06 -2.82993E-06 -2.81059E-06 -2.79126E-06 -2.77194E-06 -2.75261E-06 -2.73328E-06 -2.71394E-06 -2.6946E-06 -2.67524E-06 -2.65587E-06 -2.63647E-06 -2.61704E-06 -2.59757E-06 -2.57805E-06 -2.55847E-06 -2.53881E-06 -2.51905E-06 -2.49917E-06 -2.47914E-06 -2.4589E-06 -2.4384E-06 -2.41757E-06 -2.39628E-06 -2.37438E-06 -2.35163E-06 -2.32769E-06 -2.30202E-06 -2.27372E-06 -2.24137E-06 -2.20244E-06 -2.15254E-06 -2.08375E-06 -1.98221E-06 -1.82539E-06 -1.58185E-06 -1.21608E-06 -6.96479E-07 -1.33789E-11 8.77904E-07 1.93795E-06 3.20016E-06 4.70096E-06 6.49418E-06 8.64767E-06 1.12381E-05 1.43462E-05 1.80528E-05 2.24357E-05 +-4.76961E-06 -4.75079E-06 -4.73201E-06 -4.71326E-06 -4.69454E-06 -4.67586E-06 -4.65721E-06 -4.6386E-06 -4.62002E-06 -4.60147E-06 -4.58295E-06 -4.56446E-06 -4.54601E-06 -4.52758E-06 -4.50919E-06 -4.49083E-06 -4.47249E-06 -4.45419E-06 -4.43591E-06 -4.41767E-06 -4.39945E-06 -4.38126E-06 -4.3631E-06 -4.34496E-06 -4.32686E-06 -4.30878E-06 -4.29072E-06 -4.2727E-06 -4.25469E-06 -4.23672E-06 -4.21877E-06 -4.20084E-06 -4.18294E-06 -4.16507E-06 -4.14721E-06 -4.12939E-06 -4.11158E-06 -4.0938E-06 -4.07604E-06 -4.05831E-06 -4.04059E-06 -4.0229E-06 -4.00524E-06 -3.98759E-06 -3.96996E-06 -3.95236E-06 -3.93478E-06 -3.91721E-06 -3.89967E-06 -3.88215E-06 -3.86465E-06 -3.84717E-06 -3.8297E-06 -3.81226E-06 -3.79484E-06 -3.77743E-06 -3.76005E-06 -3.74268E-06 -3.72533E-06 -3.708E-06 -3.69069E-06 -3.6734E-06 -3.65612E-06 -3.63886E-06 -3.62162E-06 -3.6044E-06 -3.58719E-06 -3.57E-06 -3.55283E-06 -3.53568E-06 -3.51854E-06 -3.50142E-06 -3.48431E-06 -3.46722E-06 -3.45015E-06 -3.43309E-06 -3.41605E-06 -3.39903E-06 -3.38202E-06 -3.36503E-06 -3.34805E-06 -3.33109E-06 -3.31414E-06 -3.29721E-06 -3.2803E-06 -3.2634E-06 -3.24652E-06 -3.22965E-06 -3.2128E-06 -3.19596E-06 -3.17914E-06 -3.16233E-06 -3.14554E-06 -3.12877E-06 -3.11201E-06 -3.09526E-06 -3.07853E-06 -3.06182E-06 -3.04512E-06 -3.02844E-06 -3.01177E-06 -2.99512E-06 -2.97848E-06 -2.96186E-06 -2.94525E-06 -2.92866E-06 -2.91208E-06 -2.89552E-06 -2.87897E-06 -2.86244E-06 -2.84593E-06 -2.82943E-06 -2.81294E-06 -2.79647E-06 -2.78002E-06 -2.76358E-06 -2.74715E-06 -2.73074E-06 -2.71435E-06 -2.69797E-06 -2.6816E-06 -2.66525E-06 -2.64892E-06 -2.6326E-06 -2.61629E-06 -2.6E-06 -2.58372E-06 -2.56746E-06 -2.55121E-06 -2.53497E-06 -2.51875E-06 -2.50254E-06 -2.48634E-06 -2.47016E-06 -2.45399E-06 -2.43783E-06 -2.42169E-06 -2.40555E-06 -2.38942E-06 -2.37331E-06 -2.3572E-06 -2.34111E-06 -2.32502E-06 -2.30893E-06 -2.29285E-06 -2.27678E-06 -2.26071E-06 -2.24464E-06 -2.22857E-06 -2.2125E-06 -2.19642E-06 -2.18033E-06 -2.16422E-06 -2.1481E-06 -2.13196E-06 -2.11579E-06 -2.09957E-06 -2.08332E-06 -2.067E-06 -2.0506E-06 -2.03411E-06 -2.01749E-06 -2.00072E-06 -1.98374E-06 -1.9665E-06 -1.94891E-06 -1.93083E-06 -1.9121E-06 -1.89244E-06 -1.87142E-06 -1.84837E-06 -1.82216E-06 -1.79087E-06 -1.75107E-06 -1.69655E-06 -1.61632E-06 -1.49204E-06 -1.29731E-06 -1.00129E-06 -5.75809E-07 -1.2038E-11 7.30751E-07 1.61629E-06 2.67268E-06 3.93156E-06 5.44169E-06 7.26607E-06 9.47726E-06 1.21532E-05 1.53739E-05 1.92185E-05 +-3.91463E-06 -3.89904E-06 -3.88347E-06 -3.86794E-06 -3.85243E-06 -3.83695E-06 -3.8215E-06 -3.80608E-06 -3.79068E-06 -3.77531E-06 -3.75996E-06 -3.74465E-06 -3.72935E-06 -3.71409E-06 -3.69885E-06 -3.68363E-06 -3.66844E-06 -3.65328E-06 -3.63813E-06 -3.62302E-06 -3.60792E-06 -3.59285E-06 -3.5778E-06 -3.56278E-06 -3.54778E-06 -3.5328E-06 -3.51784E-06 -3.50291E-06 -3.48799E-06 -3.4731E-06 -3.45823E-06 -3.44338E-06 -3.42855E-06 -3.41374E-06 -3.39895E-06 -3.38418E-06 -3.36943E-06 -3.3547E-06 -3.33998E-06 -3.32529E-06 -3.31062E-06 -3.29596E-06 -3.28133E-06 -3.26671E-06 -3.25211E-06 -3.23752E-06 -3.22296E-06 -3.20841E-06 -3.19388E-06 -3.17937E-06 -3.16487E-06 -3.15039E-06 -3.13592E-06 -3.12148E-06 -3.10704E-06 -3.09263E-06 -3.07823E-06 -3.06384E-06 -3.04947E-06 -3.03512E-06 -3.02078E-06 -3.00646E-06 -2.99215E-06 -2.97786E-06 -2.96358E-06 -2.94931E-06 -2.93506E-06 -2.92083E-06 -2.90661E-06 -2.8924E-06 -2.8782E-06 -2.86403E-06 -2.84986E-06 -2.83571E-06 -2.82157E-06 -2.80745E-06 -2.79333E-06 -2.77924E-06 -2.76515E-06 -2.75108E-06 -2.73703E-06 -2.72298E-06 -2.70895E-06 -2.69493E-06 -2.68093E-06 -2.66694E-06 -2.65296E-06 -2.63899E-06 -2.62504E-06 -2.6111E-06 -2.59717E-06 -2.58326E-06 -2.56936E-06 -2.55547E-06 -2.5416E-06 -2.52774E-06 -2.51389E-06 -2.50005E-06 -2.48623E-06 -2.47242E-06 -2.45862E-06 -2.44484E-06 -2.43106E-06 -2.4173E-06 -2.40356E-06 -2.38983E-06 -2.37611E-06 -2.3624E-06 -2.3487E-06 -2.33502E-06 -2.32135E-06 -2.3077E-06 -2.29405E-06 -2.28042E-06 -2.26681E-06 -2.2532E-06 -2.23961E-06 -2.22603E-06 -2.21246E-06 -2.19891E-06 -2.18537E-06 -2.17184E-06 -2.15832E-06 -2.14482E-06 -2.13133E-06 -2.11785E-06 -2.10438E-06 -2.09093E-06 -2.07748E-06 -2.06405E-06 -2.05063E-06 -2.03722E-06 -2.02382E-06 -2.01044E-06 -1.99706E-06 -1.9837E-06 -1.97034E-06 -1.957E-06 -1.94366E-06 -1.93033E-06 -1.91701E-06 -1.9037E-06 -1.8904E-06 -1.8771E-06 -1.8638E-06 -1.85051E-06 -1.83723E-06 -1.82394E-06 -1.81066E-06 -1.79737E-06 -1.78408E-06 -1.77078E-06 -1.75748E-06 -1.74416E-06 -1.73082E-06 -1.71746E-06 -1.70407E-06 -1.69064E-06 -1.67717E-06 -1.66364E-06 -1.65003E-06 -1.63632E-06 -1.6225E-06 -1.60851E-06 -1.59431E-06 -1.57984E-06 -1.56499E-06 -1.54963E-06 -1.53354E-06 -1.51639E-06 -1.49765E-06 -1.47647E-06 -1.45133E-06 -1.41956E-06 -1.37633E-06 -1.3129E-06 -1.21447E-06 -1.05906E-06 -8.20309E-07 -4.73474E-07 -1.08143E-11 6.04947E-07 1.34098E-06 2.2208E-06 3.27149E-06 4.53654E-06 6.07341E-06 7.94942E-06 1.02382E-05 1.30173E-05 1.63657E-05 +-3.19746E-06 -3.18462E-06 -3.1718E-06 -3.15901E-06 -3.14623E-06 -3.13348E-06 -3.12076E-06 -3.10805E-06 -3.09537E-06 -3.08271E-06 -3.07008E-06 -3.05746E-06 -3.04487E-06 -3.03229E-06 -3.01974E-06 -3.00721E-06 -2.9947E-06 -2.98221E-06 -2.96974E-06 -2.95729E-06 -2.94486E-06 -2.93244E-06 -2.92005E-06 -2.90768E-06 -2.89532E-06 -2.88299E-06 -2.87067E-06 -2.85837E-06 -2.84609E-06 -2.83382E-06 -2.82158E-06 -2.80935E-06 -2.79713E-06 -2.78494E-06 -2.77276E-06 -2.76059E-06 -2.74845E-06 -2.73632E-06 -2.7242E-06 -2.7121E-06 -2.70002E-06 -2.68795E-06 -2.6759E-06 -2.66386E-06 -2.65184E-06 -2.63983E-06 -2.62784E-06 -2.61586E-06 -2.6039E-06 -2.59195E-06 -2.58001E-06 -2.56809E-06 -2.55618E-06 -2.54428E-06 -2.5324E-06 -2.52053E-06 -2.50867E-06 -2.49683E-06 -2.485E-06 -2.47318E-06 -2.46138E-06 -2.44958E-06 -2.4378E-06 -2.42604E-06 -2.41428E-06 -2.40254E-06 -2.39081E-06 -2.37909E-06 -2.36738E-06 -2.35568E-06 -2.344E-06 -2.33233E-06 -2.32067E-06 -2.30902E-06 -2.29738E-06 -2.28575E-06 -2.27414E-06 -2.26253E-06 -2.25094E-06 -2.23936E-06 -2.22779E-06 -2.21623E-06 -2.20468E-06 -2.19314E-06 -2.18162E-06 -2.1701E-06 -2.15859E-06 -2.1471E-06 -2.13562E-06 -2.12415E-06 -2.11268E-06 -2.10123E-06 -2.08979E-06 -2.07836E-06 -2.06695E-06 -2.05554E-06 -2.04414E-06 -2.03276E-06 -2.02138E-06 -2.01002E-06 -1.99866E-06 -1.98732E-06 -1.97599E-06 -1.96467E-06 -1.95336E-06 -1.94206E-06 -1.93077E-06 -1.91949E-06 -1.90822E-06 -1.89697E-06 -1.88572E-06 -1.87449E-06 -1.86326E-06 -1.85205E-06 -1.84084E-06 -1.82965E-06 -1.81847E-06 -1.8073E-06 -1.79614E-06 -1.78499E-06 -1.77385E-06 -1.76272E-06 -1.7516E-06 -1.7405E-06 -1.7294E-06 -1.71831E-06 -1.70724E-06 -1.69617E-06 -1.68511E-06 -1.67407E-06 -1.66303E-06 -1.652E-06 -1.64099E-06 -1.62998E-06 -1.61898E-06 -1.60799E-06 -1.59701E-06 -1.58603E-06 -1.57507E-06 -1.56411E-06 -1.55316E-06 -1.54221E-06 -1.53128E-06 -1.52034E-06 -1.50941E-06 -1.49849E-06 -1.48757E-06 -1.47665E-06 -1.46573E-06 -1.45481E-06 -1.44389E-06 -1.43296E-06 -1.42203E-06 -1.41109E-06 -1.40013E-06 -1.38916E-06 -1.37816E-06 -1.36714E-06 -1.35607E-06 -1.34497E-06 -1.3338E-06 -1.32256E-06 -1.31122E-06 -1.29975E-06 -1.28812E-06 -1.27628E-06 -1.26414E-06 -1.25159E-06 -1.23848E-06 -1.22454E-06 -1.20936E-06 -1.19227E-06 -1.1721E-06 -1.14676E-06 -1.11248E-06 -1.06233E-06 -9.84401E-07 -8.60622E-07 -6.68693E-07 -3.87234E-07 -9.69825E-12 4.98095E-07 1.10689E-06 1.8363E-06 2.70928E-06 3.76408E-06 5.05223E-06 6.63505E-06 8.58084E-06 1.09631E-05 1.38588E-05 +-2.59887E-06 -2.58836E-06 -2.57786E-06 -2.56738E-06 -2.55693E-06 -2.54649E-06 -2.53607E-06 -2.52567E-06 -2.51529E-06 -2.50492E-06 -2.49458E-06 -2.48425E-06 -2.47394E-06 -2.46365E-06 -2.45337E-06 -2.44311E-06 -2.43287E-06 -2.42265E-06 -2.41244E-06 -2.40224E-06 -2.39207E-06 -2.38191E-06 -2.37176E-06 -2.36163E-06 -2.35152E-06 -2.34142E-06 -2.33134E-06 -2.32127E-06 -2.31121E-06 -2.30117E-06 -2.29115E-06 -2.28114E-06 -2.27114E-06 -2.26116E-06 -2.25119E-06 -2.24123E-06 -2.23129E-06 -2.22136E-06 -2.21144E-06 -2.20154E-06 -2.19165E-06 -2.18177E-06 -2.17191E-06 -2.16206E-06 -2.15221E-06 -2.14239E-06 -2.13257E-06 -2.12277E-06 -2.11297E-06 -2.10319E-06 -2.09342E-06 -2.08366E-06 -2.07392E-06 -2.06418E-06 -2.05445E-06 -2.04474E-06 -2.03504E-06 -2.02534E-06 -2.01566E-06 -2.00599E-06 -1.99633E-06 -1.98668E-06 -1.97704E-06 -1.96741E-06 -1.95779E-06 -1.94818E-06 -1.93858E-06 -1.92899E-06 -1.91941E-06 -1.90984E-06 -1.90028E-06 -1.89073E-06 -1.88118E-06 -1.87165E-06 -1.86213E-06 -1.85262E-06 -1.84311E-06 -1.83362E-06 -1.82413E-06 -1.81465E-06 -1.80519E-06 -1.79573E-06 -1.78628E-06 -1.77684E-06 -1.76741E-06 -1.75799E-06 -1.74858E-06 -1.73917E-06 -1.72978E-06 -1.72039E-06 -1.71102E-06 -1.70165E-06 -1.69229E-06 -1.68294E-06 -1.6736E-06 -1.66427E-06 -1.65494E-06 -1.64563E-06 -1.63633E-06 -1.62703E-06 -1.61774E-06 -1.60846E-06 -1.59919E-06 -1.58993E-06 -1.58068E-06 -1.57144E-06 -1.56221E-06 -1.55298E-06 -1.54377E-06 -1.53456E-06 -1.52536E-06 -1.51617E-06 -1.50699E-06 -1.49782E-06 -1.48866E-06 -1.47951E-06 -1.47036E-06 -1.46123E-06 -1.4521E-06 -1.44298E-06 -1.43388E-06 -1.42478E-06 -1.41568E-06 -1.4066E-06 -1.39753E-06 -1.38846E-06 -1.37941E-06 -1.37036E-06 -1.36132E-06 -1.35229E-06 -1.34326E-06 -1.33425E-06 -1.32524E-06 -1.31624E-06 -1.30725E-06 -1.29826E-06 -1.28929E-06 -1.28032E-06 -1.27135E-06 -1.26239E-06 -1.25344E-06 -1.2445E-06 -1.23556E-06 -1.22662E-06 -1.21769E-06 -1.20876E-06 -1.19984E-06 -1.19092E-06 -1.182E-06 -1.17307E-06 -1.16415E-06 -1.15522E-06 -1.14629E-06 -1.13735E-06 -1.1284E-06 -1.11944E-06 -1.11046E-06 -1.10146E-06 -1.09243E-06 -1.08336E-06 -1.07425E-06 -1.06507E-06 -1.05583E-06 -1.04648E-06 -1.037E-06 -1.02736E-06 -1.01748E-06 -1.00729E-06 -9.96647E-07 -9.85358E-07 -9.73103E-07 -9.59354E-07 -9.43199E-07 -9.23018E-07 -8.95836E-07 -8.56199E-07 -7.94568E-07 -6.96176E-07 -5.42395E-07 -3.15008E-07 -8.68105E-12 4.07913E-07 9.09064E-07 1.51119E-06 2.23355E-06 3.10939E-06 4.18425E-06 5.51302E-06 7.15795E-06 9.18743E-06 1.16749E-05 +-2.10181E-06 -2.09325E-06 -2.08471E-06 -2.07619E-06 -2.06768E-06 -2.05918E-06 -2.0507E-06 -2.04224E-06 -2.03379E-06 -2.02536E-06 -2.01694E-06 -2.00853E-06 -2.00014E-06 -1.99177E-06 -1.98341E-06 -1.97506E-06 -1.96672E-06 -1.9584E-06 -1.95009E-06 -1.9418E-06 -1.93352E-06 -1.92525E-06 -1.917E-06 -1.90875E-06 -1.90052E-06 -1.89231E-06 -1.8841E-06 -1.87591E-06 -1.86773E-06 -1.85956E-06 -1.8514E-06 -1.84325E-06 -1.83512E-06 -1.827E-06 -1.81888E-06 -1.81078E-06 -1.80269E-06 -1.79461E-06 -1.78655E-06 -1.77849E-06 -1.77044E-06 -1.7624E-06 -1.75438E-06 -1.74636E-06 -1.73835E-06 -1.73036E-06 -1.72237E-06 -1.71439E-06 -1.70643E-06 -1.69847E-06 -1.69052E-06 -1.68258E-06 -1.67465E-06 -1.66673E-06 -1.65882E-06 -1.65091E-06 -1.64302E-06 -1.63514E-06 -1.62726E-06 -1.61939E-06 -1.61153E-06 -1.60368E-06 -1.59584E-06 -1.58801E-06 -1.58018E-06 -1.57236E-06 -1.56455E-06 -1.55675E-06 -1.54896E-06 -1.54117E-06 -1.5334E-06 -1.52563E-06 -1.51786E-06 -1.51011E-06 -1.50237E-06 -1.49463E-06 -1.4869E-06 -1.47917E-06 -1.47146E-06 -1.46375E-06 -1.45605E-06 -1.44836E-06 -1.44067E-06 -1.433E-06 -1.42533E-06 -1.41766E-06 -1.41001E-06 -1.40236E-06 -1.39472E-06 -1.38709E-06 -1.37946E-06 -1.37184E-06 -1.36423E-06 -1.35663E-06 -1.34903E-06 -1.34144E-06 -1.33386E-06 -1.32629E-06 -1.31872E-06 -1.31116E-06 -1.30361E-06 -1.29607E-06 -1.28853E-06 -1.281E-06 -1.27348E-06 -1.26596E-06 -1.25845E-06 -1.25095E-06 -1.24346E-06 -1.23597E-06 -1.2285E-06 -1.22103E-06 -1.21356E-06 -1.20611E-06 -1.19866E-06 -1.19122E-06 -1.18378E-06 -1.17636E-06 -1.16894E-06 -1.16152E-06 -1.15412E-06 -1.14672E-06 -1.13933E-06 -1.13195E-06 -1.12457E-06 -1.1172E-06 -1.10984E-06 -1.10249E-06 -1.09514E-06 -1.0878E-06 -1.08046E-06 -1.07313E-06 -1.06581E-06 -1.0585E-06 -1.05119E-06 -1.04389E-06 -1.03659E-06 -1.0293E-06 -1.02202E-06 -1.01474E-06 -1.00747E-06 -1.0002E-06 -9.92933E-07 -9.85673E-07 -9.78416E-07 -9.71162E-07 -9.63911E-07 -9.56662E-07 -9.49414E-07 -9.42166E-07 -9.34917E-07 -9.27666E-07 -9.20411E-07 -9.13151E-07 -9.05883E-07 -8.98605E-07 -8.91314E-07 -8.84005E-07 -8.76674E-07 -8.69314E-07 -8.61919E-07 -8.54477E-07 -8.46975E-07 -8.39397E-07 -8.31717E-07 -8.23904E-07 -8.15909E-07 -8.07665E-07 -7.99071E-07 -7.89969E-07 -7.80112E-07 -7.69085E-07 -7.5618E-07 -7.40129E-07 -7.18604E-07 -6.87303E-07 -6.38618E-07 -5.60576E-07 -4.37775E-07 -2.54888E-07 -7.75454E-12 3.32273E-07 7.42881E-07 1.23789E-06 1.83338E-06 2.55792E-06 3.45123E-06 4.56175E-06 5.94526E-06 7.66431E-06 9.78763E-06 +-1.69126E-06 -1.68434E-06 -1.67743E-06 -1.67053E-06 -1.66365E-06 -1.65678E-06 -1.64992E-06 -1.64307E-06 -1.63624E-06 -1.62941E-06 -1.6226E-06 -1.6158E-06 -1.60902E-06 -1.60224E-06 -1.59548E-06 -1.58872E-06 -1.58198E-06 -1.57525E-06 -1.56853E-06 -1.56182E-06 -1.55512E-06 -1.54843E-06 -1.54175E-06 -1.53509E-06 -1.52843E-06 -1.52178E-06 -1.51514E-06 -1.50852E-06 -1.5019E-06 -1.49529E-06 -1.48869E-06 -1.4821E-06 -1.47552E-06 -1.46895E-06 -1.46239E-06 -1.45584E-06 -1.4493E-06 -1.44276E-06 -1.43623E-06 -1.42972E-06 -1.42321E-06 -1.41671E-06 -1.41022E-06 -1.40373E-06 -1.39726E-06 -1.39079E-06 -1.38433E-06 -1.37788E-06 -1.37143E-06 -1.365E-06 -1.35857E-06 -1.35215E-06 -1.34573E-06 -1.33933E-06 -1.33293E-06 -1.32654E-06 -1.32015E-06 -1.31378E-06 -1.30741E-06 -1.30104E-06 -1.29469E-06 -1.28834E-06 -1.282E-06 -1.27566E-06 -1.26933E-06 -1.26301E-06 -1.2567E-06 -1.25039E-06 -1.24409E-06 -1.23779E-06 -1.2315E-06 -1.22522E-06 -1.21894E-06 -1.21267E-06 -1.20641E-06 -1.20015E-06 -1.1939E-06 -1.18766E-06 -1.18142E-06 -1.17519E-06 -1.16896E-06 -1.16274E-06 -1.15653E-06 -1.15032E-06 -1.14412E-06 -1.13792E-06 -1.13173E-06 -1.12555E-06 -1.11937E-06 -1.1132E-06 -1.10704E-06 -1.10088E-06 -1.09472E-06 -1.08858E-06 -1.08244E-06 -1.0763E-06 -1.07017E-06 -1.06405E-06 -1.05793E-06 -1.05182E-06 -1.04572E-06 -1.03962E-06 -1.03352E-06 -1.02744E-06 -1.02136E-06 -1.01528E-06 -1.00921E-06 -1.00315E-06 -9.97093E-07 -9.91042E-07 -9.84997E-07 -9.78959E-07 -9.72926E-07 -9.669E-07 -9.60879E-07 -9.54864E-07 -9.48856E-07 -9.42853E-07 -9.36857E-07 -9.30866E-07 -9.24882E-07 -9.18903E-07 -9.1293E-07 -9.06964E-07 -9.01003E-07 -8.95048E-07 -8.89098E-07 -8.83155E-07 -8.77217E-07 -8.71285E-07 -8.65358E-07 -8.59437E-07 -8.53521E-07 -8.47611E-07 -8.41706E-07 -8.35806E-07 -8.29911E-07 -8.24021E-07 -8.18135E-07 -8.12254E-07 -8.06378E-07 -8.00505E-07 -7.94636E-07 -7.88771E-07 -7.82909E-07 -7.77049E-07 -7.71192E-07 -7.65336E-07 -7.59482E-07 -7.53628E-07 -7.47773E-07 -7.41917E-07 -7.36058E-07 -7.30195E-07 -7.24326E-07 -7.18449E-07 -7.12562E-07 -7.06662E-07 -7.00744E-07 -6.94804E-07 -6.88836E-07 -6.82831E-07 -6.7678E-07 -6.70669E-07 -6.64478E-07 -6.58182E-07 -6.51743E-07 -6.4511E-07 -6.38201E-07 -6.30896E-07 -6.22998E-07 -6.14187E-07 -6.03908E-07 -5.91171E-07 -5.74152E-07 -5.49467E-07 -5.1107E-07 -4.49315E-07 -3.51589E-07 -2.0515E-07 -6.9112E-12 2.69218E-07 6.04074E-07 1.0094E-06 1.49856E-06 2.09591E-06 2.8357E-06 3.76012E-06 4.91844E-06 6.36695E-06 8.16884E-06 +-1.35404E-06 -1.34847E-06 -1.34291E-06 -1.33737E-06 -1.33183E-06 -1.3263E-06 -1.32079E-06 -1.31528E-06 -1.30978E-06 -1.30429E-06 -1.29882E-06 -1.29335E-06 -1.28789E-06 -1.28244E-06 -1.277E-06 -1.27157E-06 -1.26615E-06 -1.26073E-06 -1.25533E-06 -1.24993E-06 -1.24454E-06 -1.23917E-06 -1.23379E-06 -1.22843E-06 -1.22308E-06 -1.21773E-06 -1.2124E-06 -1.20707E-06 -1.20174E-06 -1.19643E-06 -1.19112E-06 -1.18582E-06 -1.18053E-06 -1.17525E-06 -1.16997E-06 -1.1647E-06 -1.15944E-06 -1.15419E-06 -1.14894E-06 -1.1437E-06 -1.13846E-06 -1.13324E-06 -1.12802E-06 -1.1228E-06 -1.1176E-06 -1.1124E-06 -1.1072E-06 -1.10201E-06 -1.09683E-06 -1.09166E-06 -1.08649E-06 -1.08132E-06 -1.07617E-06 -1.07102E-06 -1.06587E-06 -1.06073E-06 -1.0556E-06 -1.05047E-06 -1.04535E-06 -1.04024E-06 -1.03513E-06 -1.03002E-06 -1.02492E-06 -1.01983E-06 -1.01474E-06 -1.00966E-06 -1.00458E-06 -9.99508E-07 -9.94442E-07 -9.89381E-07 -9.84325E-07 -9.79274E-07 -9.74228E-07 -9.69188E-07 -9.64152E-07 -9.59122E-07 -9.54097E-07 -9.49077E-07 -9.44062E-07 -9.39052E-07 -9.34047E-07 -9.29047E-07 -9.24052E-07 -9.19062E-07 -9.14077E-07 -9.09097E-07 -9.04122E-07 -8.99152E-07 -8.94186E-07 -8.89226E-07 -8.8427E-07 -8.7932E-07 -8.74374E-07 -8.69433E-07 -8.64497E-07 -8.59566E-07 -8.5464E-07 -8.49718E-07 -8.44802E-07 -8.3989E-07 -8.34984E-07 -8.30082E-07 -8.25185E-07 -8.20293E-07 -8.15406E-07 -8.10524E-07 -8.05646E-07 -8.00774E-07 -7.95906E-07 -7.91044E-07 -7.86186E-07 -7.81333E-07 -7.76485E-07 -7.71642E-07 -7.66804E-07 -7.61971E-07 -7.57142E-07 -7.52319E-07 -7.475E-07 -7.42687E-07 -7.37878E-07 -7.33074E-07 -7.28274E-07 -7.2348E-07 -7.1869E-07 -7.13905E-07 -7.09125E-07 -7.0435E-07 -6.99579E-07 -6.94813E-07 -6.90051E-07 -6.85294E-07 -6.80541E-07 -6.75793E-07 -6.71049E-07 -6.66309E-07 -6.61573E-07 -6.56841E-07 -6.52113E-07 -6.47389E-07 -6.42668E-07 -6.37951E-07 -6.33236E-07 -6.28525E-07 -6.23816E-07 -6.1911E-07 -6.14405E-07 -6.09702E-07 -6.05E-07 -6.00298E-07 -5.95596E-07 -5.90894E-07 -5.86189E-07 -5.81481E-07 -5.76768E-07 -5.7205E-07 -5.67324E-07 -5.62587E-07 -5.57836E-07 -5.53069E-07 -5.48279E-07 -5.43461E-07 -5.38607E-07 -5.33705E-07 -5.2874E-07 -5.23694E-07 -5.18536E-07 -5.13225E-07 -5.07698E-07 -5.01861E-07 -4.95561E-07 -4.88547E-07 -4.80385E-07 -4.70305E-07 -4.56877E-07 -4.37445E-07 -4.07221E-07 -3.58481E-07 -2.80984E-07 -1.64254E-07 -6.1441E-12 2.16975E-07 4.8878E-07 8.19347E-07 1.2198E-06 1.71074E-06 2.32141E-06 3.08816E-06 4.05398E-06 5.26877E-06 6.78971E-06 +-1.07861E-06 -1.07415E-06 -1.06971E-06 -1.06527E-06 -1.06085E-06 -1.05643E-06 -1.05202E-06 -1.04761E-06 -1.04322E-06 -1.03883E-06 -1.03445E-06 -1.03007E-06 -1.02571E-06 -1.02135E-06 -1.017E-06 -1.01266E-06 -1.00832E-06 -1.00399E-06 -9.99672E-07 -9.95357E-07 -9.91049E-07 -9.86748E-07 -9.82454E-07 -9.78166E-07 -9.73885E-07 -9.69611E-07 -9.65343E-07 -9.61081E-07 -9.56826E-07 -9.52577E-07 -9.48334E-07 -9.44097E-07 -9.39866E-07 -9.35641E-07 -9.31423E-07 -9.2721E-07 -9.23002E-07 -9.18801E-07 -9.14605E-07 -9.10415E-07 -9.0623E-07 -9.0205E-07 -8.97877E-07 -8.93708E-07 -8.89545E-07 -8.85387E-07 -8.81234E-07 -8.77086E-07 -8.72944E-07 -8.68806E-07 -8.64673E-07 -8.60546E-07 -8.56423E-07 -8.52305E-07 -8.48192E-07 -8.44084E-07 -8.3998E-07 -8.35881E-07 -8.31786E-07 -8.27697E-07 -8.23611E-07 -8.19531E-07 -8.15454E-07 -8.11382E-07 -8.07315E-07 -8.03252E-07 -7.99193E-07 -7.95139E-07 -7.91089E-07 -7.87043E-07 -7.83001E-07 -7.78963E-07 -7.7493E-07 -7.70901E-07 -7.66876E-07 -7.62855E-07 -7.58839E-07 -7.54826E-07 -7.50817E-07 -7.46813E-07 -7.42812E-07 -7.38816E-07 -7.34823E-07 -7.30835E-07 -7.2685E-07 -7.2287E-07 -7.18893E-07 -7.14921E-07 -7.10952E-07 -7.06987E-07 -7.03027E-07 -6.9907E-07 -6.95117E-07 -6.91168E-07 -6.87223E-07 -6.83282E-07 -6.79345E-07 -6.75412E-07 -6.71483E-07 -6.67558E-07 -6.63636E-07 -6.59719E-07 -6.55806E-07 -6.51896E-07 -6.47991E-07 -6.44089E-07 -6.40191E-07 -6.36298E-07 -6.32408E-07 -6.28522E-07 -6.24641E-07 -6.20763E-07 -6.16889E-07 -6.13019E-07 -6.09153E-07 -6.05291E-07 -6.01433E-07 -5.97579E-07 -5.93728E-07 -5.89882E-07 -5.8604E-07 -5.82201E-07 -5.78367E-07 -5.74536E-07 -5.70709E-07 -5.66886E-07 -5.63067E-07 -5.59251E-07 -5.5544E-07 -5.51632E-07 -5.47828E-07 -5.44027E-07 -5.4023E-07 -5.36437E-07 -5.32647E-07 -5.2886E-07 -5.25077E-07 -5.21297E-07 -5.1752E-07 -5.13746E-07 -5.09975E-07 -5.06207E-07 -5.02441E-07 -4.98678E-07 -4.94917E-07 -4.91158E-07 -4.874E-07 -4.83644E-07 -4.79888E-07 -4.76133E-07 -4.72378E-07 -4.68623E-07 -4.64866E-07 -4.61106E-07 -4.57343E-07 -4.53576E-07 -4.49802E-07 -4.4602E-07 -4.42228E-07 -4.38422E-07 -4.34599E-07 -4.30754E-07 -4.26881E-07 -4.2297E-07 -4.1901E-07 -4.14986E-07 -4.10875E-07 -4.06644E-07 -4.02245E-07 -3.97603E-07 -3.92599E-07 -3.87037E-07 -3.80581E-07 -3.72626E-07 -3.62059E-07 -3.46794E-07 -3.23057E-07 -2.84697E-07 -2.23464E-07 -1.30831E-07 -5.44689E-12 1.73954E-07 3.93546E-07 6.62069E-07 9.88784E-07 1.39103E-06 1.8936E-06 2.52751E-06 3.32985E-06 4.34433E-06 5.6219E-06 +-8.54943E-07 -8.51402E-07 -8.47868E-07 -8.4434E-07 -8.40819E-07 -8.37305E-07 -8.33796E-07 -8.30295E-07 -8.26799E-07 -8.23309E-07 -8.19826E-07 -8.16349E-07 -8.12877E-07 -8.09412E-07 -8.05953E-07 -8.02499E-07 -7.99051E-07 -7.95609E-07 -7.92172E-07 -7.88741E-07 -7.85315E-07 -7.81895E-07 -7.78481E-07 -7.75071E-07 -7.71667E-07 -7.68268E-07 -7.64874E-07 -7.61486E-07 -7.58102E-07 -7.54723E-07 -7.5135E-07 -7.47981E-07 -7.44617E-07 -7.41258E-07 -7.37903E-07 -7.34553E-07 -7.31208E-07 -7.27867E-07 -7.24531E-07 -7.21199E-07 -7.17872E-07 -7.14549E-07 -7.1123E-07 -7.07916E-07 -7.04606E-07 -7.013E-07 -6.97998E-07 -6.947E-07 -6.91406E-07 -6.88117E-07 -6.84831E-07 -6.81549E-07 -6.78272E-07 -6.74998E-07 -6.71728E-07 -6.68461E-07 -6.65199E-07 -6.6194E-07 -6.58685E-07 -6.55433E-07 -6.52185E-07 -6.48941E-07 -6.45701E-07 -6.42463E-07 -6.3923E-07 -6.36E-07 -6.32773E-07 -6.2955E-07 -6.2633E-07 -6.23114E-07 -6.19901E-07 -6.16691E-07 -6.13485E-07 -6.10282E-07 -6.07083E-07 -6.03886E-07 -6.00693E-07 -5.97504E-07 -5.94317E-07 -5.91134E-07 -5.87954E-07 -5.84777E-07 -5.81604E-07 -5.78433E-07 -5.75266E-07 -5.72102E-07 -5.68941E-07 -5.65784E-07 -5.62629E-07 -5.59478E-07 -5.5633E-07 -5.53185E-07 -5.50043E-07 -5.46904E-07 -5.43769E-07 -5.40637E-07 -5.37508E-07 -5.34382E-07 -5.31259E-07 -5.28139E-07 -5.25022E-07 -5.21909E-07 -5.18799E-07 -5.15692E-07 -5.12588E-07 -5.09487E-07 -5.0639E-07 -5.03295E-07 -5.00204E-07 -4.97116E-07 -4.94031E-07 -4.90949E-07 -4.87871E-07 -4.84795E-07 -4.81723E-07 -4.78654E-07 -4.75588E-07 -4.72525E-07 -4.69466E-07 -4.66409E-07 -4.63356E-07 -4.60306E-07 -4.57259E-07 -4.54215E-07 -4.51174E-07 -4.48136E-07 -4.45102E-07 -4.4207E-07 -4.39042E-07 -4.36016E-07 -4.32993E-07 -4.29974E-07 -4.26957E-07 -4.23943E-07 -4.20932E-07 -4.17923E-07 -4.14917E-07 -4.11914E-07 -4.08914E-07 -4.05916E-07 -4.0292E-07 -3.99926E-07 -3.96935E-07 -3.93945E-07 -3.90957E-07 -3.87971E-07 -3.84986E-07 -3.82002E-07 -3.79019E-07 -3.76036E-07 -3.73054E-07 -3.70071E-07 -3.67087E-07 -3.64101E-07 -3.61112E-07 -3.5812E-07 -3.55123E-07 -3.5212E-07 -3.49109E-07 -3.46088E-07 -3.43052E-07 -3.4E-07 -3.36925E-07 -3.33822E-07 -3.3068E-07 -3.27488E-07 -3.24228E-07 -3.20874E-07 -3.17389E-07 -3.13715E-07 -3.09758E-07 -3.05366E-07 -3.00277E-07 -2.9402E-07 -2.85727E-07 -2.73767E-07 -2.55172E-07 -2.25071E-07 -1.76868E-07 -1.03683E-07 -4.81375E-12 1.38743E-07 3.15316E-07 5.32552E-07 7.98187E-07 1.12676E-06 1.53915E-06 2.06164E-06 2.72595E-06 3.56994E-06 4.63841E-06 +-6.74373E-07 -6.71572E-07 -6.68777E-07 -6.65986E-07 -6.63201E-07 -6.60421E-07 -6.57646E-07 -6.54877E-07 -6.52112E-07 -6.49352E-07 -6.46596E-07 -6.43846E-07 -6.411E-07 -6.38359E-07 -6.35623E-07 -6.32891E-07 -6.30164E-07 -6.27442E-07 -6.24724E-07 -6.2201E-07 -6.19301E-07 -6.16596E-07 -6.13895E-07 -6.11198E-07 -6.08506E-07 -6.05818E-07 -6.03134E-07 -6.00453E-07 -5.97777E-07 -5.95105E-07 -5.92437E-07 -5.89773E-07 -5.87112E-07 -5.84455E-07 -5.81802E-07 -5.79153E-07 -5.76507E-07 -5.73865E-07 -5.71227E-07 -5.68592E-07 -5.6596E-07 -5.63332E-07 -5.60708E-07 -5.58087E-07 -5.55469E-07 -5.52855E-07 -5.50243E-07 -5.47636E-07 -5.45031E-07 -5.42429E-07 -5.39831E-07 -5.37236E-07 -5.34644E-07 -5.32055E-07 -5.29469E-07 -5.26886E-07 -5.24306E-07 -5.21729E-07 -5.19155E-07 -5.16584E-07 -5.14015E-07 -5.1145E-07 -5.08887E-07 -5.06328E-07 -5.03771E-07 -5.01217E-07 -4.98665E-07 -4.96117E-07 -4.93571E-07 -4.91028E-07 -4.88487E-07 -4.85949E-07 -4.83414E-07 -4.80882E-07 -4.78352E-07 -4.75824E-07 -4.733E-07 -4.70778E-07 -4.68258E-07 -4.65741E-07 -4.63227E-07 -4.60715E-07 -4.58206E-07 -4.557E-07 -4.53196E-07 -4.50694E-07 -4.48195E-07 -4.45699E-07 -4.43205E-07 -4.40713E-07 -4.38224E-07 -4.35738E-07 -4.33254E-07 -4.30773E-07 -4.28294E-07 -4.25817E-07 -4.23344E-07 -4.20872E-07 -4.18404E-07 -4.15937E-07 -4.13473E-07 -4.11012E-07 -4.08554E-07 -4.06097E-07 -4.03644E-07 -4.01192E-07 -3.98744E-07 -3.96298E-07 -3.93854E-07 -3.91413E-07 -3.88974E-07 -3.86538E-07 -3.84105E-07 -3.81674E-07 -3.79245E-07 -3.76819E-07 -3.74396E-07 -3.71975E-07 -3.69557E-07 -3.67141E-07 -3.64727E-07 -3.62317E-07 -3.59908E-07 -3.57502E-07 -3.55099E-07 -3.52698E-07 -3.50299E-07 -3.47903E-07 -3.45509E-07 -3.43118E-07 -3.40729E-07 -3.38343E-07 -3.35958E-07 -3.33576E-07 -3.31197E-07 -3.28819E-07 -3.26444E-07 -3.2407E-07 -3.21699E-07 -3.19329E-07 -3.16962E-07 -3.14596E-07 -3.12232E-07 -3.0987E-07 -3.07509E-07 -3.05149E-07 -3.0279E-07 -3.00433E-07 -2.98075E-07 -2.95719E-07 -2.93362E-07 -2.91005E-07 -2.88647E-07 -2.86288E-07 -2.83927E-07 -2.81564E-07 -2.79196E-07 -2.76824E-07 -2.74445E-07 -2.72058E-07 -2.69661E-07 -2.67251E-07 -2.64823E-07 -2.62372E-07 -2.59892E-07 -2.57373E-07 -2.548E-07 -2.52155E-07 -2.49407E-07 -2.46512E-07 -2.43397E-07 -2.39943E-07 -2.35947E-07 -2.31043E-07 -2.24554E-07 -2.15209E-07 -2.00683E-07 -1.77137E-07 -1.39332E-07 -8.1765E-08 -4.23932E-12 1.10099E-07 2.51409E-07 4.26422E-07 6.41624E-07 9.09174E-07 1.24657E-06 1.67597E-06 2.2243E-06 2.92404E-06 3.81415E-06 +-5.29439E-07 -5.27236E-07 -5.25036E-07 -5.2284E-07 -5.20648E-07 -5.18461E-07 -5.16277E-07 -5.14098E-07 -5.11922E-07 -5.0975E-07 -5.07582E-07 -5.05418E-07 -5.03257E-07 -5.011E-07 -4.98947E-07 -4.96798E-07 -4.94652E-07 -4.9251E-07 -4.90371E-07 -4.88236E-07 -4.86104E-07 -4.83975E-07 -4.8185E-07 -4.79728E-07 -4.7761E-07 -4.75495E-07 -4.73383E-07 -4.71274E-07 -4.69168E-07 -4.67066E-07 -4.64966E-07 -4.6287E-07 -4.60777E-07 -4.58686E-07 -4.56599E-07 -4.54514E-07 -4.52433E-07 -4.50354E-07 -4.48278E-07 -4.46205E-07 -4.44134E-07 -4.42067E-07 -4.40002E-07 -4.3794E-07 -4.3588E-07 -4.33823E-07 -4.31769E-07 -4.29717E-07 -4.27668E-07 -4.25621E-07 -4.23577E-07 -4.21535E-07 -4.19496E-07 -4.17459E-07 -4.15424E-07 -4.13392E-07 -4.11362E-07 -4.09335E-07 -4.0731E-07 -4.05287E-07 -4.03267E-07 -4.01249E-07 -3.99233E-07 -3.97219E-07 -3.95207E-07 -3.93198E-07 -3.91191E-07 -3.89186E-07 -3.87183E-07 -3.85183E-07 -3.83184E-07 -3.81188E-07 -3.79193E-07 -3.77201E-07 -3.75211E-07 -3.73223E-07 -3.71237E-07 -3.69253E-07 -3.67271E-07 -3.65292E-07 -3.63314E-07 -3.61338E-07 -3.59364E-07 -3.57393E-07 -3.55423E-07 -3.53455E-07 -3.51489E-07 -3.49526E-07 -3.47564E-07 -3.45604E-07 -3.43647E-07 -3.41691E-07 -3.39737E-07 -3.37786E-07 -3.35836E-07 -3.33888E-07 -3.31942E-07 -3.29999E-07 -3.28057E-07 -3.26117E-07 -3.24179E-07 -3.22244E-07 -3.2031E-07 -3.18378E-07 -3.16448E-07 -3.1452E-07 -3.12594E-07 -3.10671E-07 -3.08749E-07 -3.06829E-07 -3.04911E-07 -3.02995E-07 -3.01081E-07 -2.9917E-07 -2.9726E-07 -2.95352E-07 -2.93446E-07 -2.91542E-07 -2.8964E-07 -2.87741E-07 -2.85843E-07 -2.83947E-07 -2.82053E-07 -2.80161E-07 -2.78271E-07 -2.76383E-07 -2.74497E-07 -2.72612E-07 -2.7073E-07 -2.6885E-07 -2.66971E-07 -2.65095E-07 -2.6322E-07 -2.61347E-07 -2.59475E-07 -2.57606E-07 -2.55738E-07 -2.53872E-07 -2.52008E-07 -2.50145E-07 -2.48283E-07 -2.46423E-07 -2.44564E-07 -2.42707E-07 -2.40851E-07 -2.38995E-07 -2.37141E-07 -2.35287E-07 -2.33434E-07 -2.31581E-07 -2.29729E-07 -2.27876E-07 -2.26022E-07 -2.24168E-07 -2.22312E-07 -2.20454E-07 -2.18593E-07 -2.16728E-07 -2.14859E-07 -2.12983E-07 -2.11099E-07 -2.09205E-07 -2.07297E-07 -2.05371E-07 -2.03423E-07 -2.01444E-07 -1.99424E-07 -1.97347E-07 -1.95191E-07 -1.9292E-07 -1.90478E-07 -1.87773E-07 -1.84648E-07 -1.80817E-07 -1.75756E-07 -1.68476E-07 -1.57162E-07 -1.38803E-07 -1.09264E-07 -6.41747E-08 -3.71868E-12 8.69379E-08 1.99493E-07 3.39888E-07 5.1358E-07 7.30721E-07 1.00593E-06 1.3578E-06 1.80906E-06 2.38736E-06 3.12627E-06 +-4.13776E-07 -4.12051E-07 -4.10328E-07 -4.08609E-07 -4.06892E-07 -4.05179E-07 -4.0347E-07 -4.01763E-07 -4.00059E-07 -3.98358E-07 -3.96661E-07 -3.94966E-07 -3.93274E-07 -3.91586E-07 -3.899E-07 -3.88216E-07 -3.86536E-07 -3.84859E-07 -3.83184E-07 -3.81512E-07 -3.79843E-07 -3.78176E-07 -3.76512E-07 -3.74851E-07 -3.73192E-07 -3.71536E-07 -3.69882E-07 -3.68231E-07 -3.66582E-07 -3.64936E-07 -3.63292E-07 -3.61651E-07 -3.60012E-07 -3.58375E-07 -3.56741E-07 -3.55109E-07 -3.53479E-07 -3.51851E-07 -3.50226E-07 -3.48603E-07 -3.46982E-07 -3.45363E-07 -3.43746E-07 -3.42132E-07 -3.40519E-07 -3.38909E-07 -3.373E-07 -3.35694E-07 -3.34089E-07 -3.32487E-07 -3.30886E-07 -3.29288E-07 -3.27691E-07 -3.26097E-07 -3.24504E-07 -3.22913E-07 -3.21324E-07 -3.19737E-07 -3.18151E-07 -3.16568E-07 -3.14986E-07 -3.13406E-07 -3.11828E-07 -3.10251E-07 -3.08677E-07 -3.07104E-07 -3.05533E-07 -3.03963E-07 -3.02395E-07 -3.00829E-07 -2.99264E-07 -2.97702E-07 -2.9614E-07 -2.94581E-07 -2.93023E-07 -2.91467E-07 -2.89912E-07 -2.88359E-07 -2.86808E-07 -2.85258E-07 -2.8371E-07 -2.82163E-07 -2.80618E-07 -2.79075E-07 -2.77533E-07 -2.75993E-07 -2.74454E-07 -2.72917E-07 -2.71381E-07 -2.69847E-07 -2.68315E-07 -2.66784E-07 -2.65255E-07 -2.63727E-07 -2.62201E-07 -2.60677E-07 -2.59154E-07 -2.57632E-07 -2.56113E-07 -2.54594E-07 -2.53078E-07 -2.51562E-07 -2.50049E-07 -2.48537E-07 -2.47026E-07 -2.45518E-07 -2.4401E-07 -2.42505E-07 -2.41E-07 -2.39498E-07 -2.37997E-07 -2.36497E-07 -2.35E-07 -2.33503E-07 -2.32009E-07 -2.30516E-07 -2.29024E-07 -2.27534E-07 -2.26046E-07 -2.24559E-07 -2.23073E-07 -2.2159E-07 -2.20108E-07 -2.18627E-07 -2.17148E-07 -2.1567E-07 -2.14194E-07 -2.1272E-07 -2.11247E-07 -2.09775E-07 -2.08305E-07 -2.06837E-07 -2.0537E-07 -2.03904E-07 -2.0244E-07 -2.00977E-07 -1.99515E-07 -1.98055E-07 -1.96596E-07 -1.95138E-07 -1.93682E-07 -1.92226E-07 -1.90772E-07 -1.89319E-07 -1.87866E-07 -1.86414E-07 -1.84963E-07 -1.83513E-07 -1.82063E-07 -1.80614E-07 -1.79164E-07 -1.77714E-07 -1.76264E-07 -1.74814E-07 -1.73362E-07 -1.71908E-07 -1.70452E-07 -1.68994E-07 -1.67531E-07 -1.66064E-07 -1.6459E-07 -1.63109E-07 -1.61617E-07 -1.60111E-07 -1.58587E-07 -1.5704E-07 -1.55461E-07 -1.53838E-07 -1.52153E-07 -1.5038E-07 -1.48474E-07 -1.46364E-07 -1.43929E-07 -1.40947E-07 -1.37013E-07 -1.31359E-07 -1.22573E-07 -1.08305E-07 -8.53092E-08 -5.01401E-08 -3.24733E-12 6.8322E-08 1.57553E-07 2.69687E-07 4.09329E-07 5.84941E-07 8.08711E-07 1.09618E-06 1.46646E-06 1.94298E-06 2.55438E-06 +-3.21989E-07 -3.20644E-07 -3.19301E-07 -3.17961E-07 -3.16624E-07 -3.15288E-07 -3.13956E-07 -3.12625E-07 -3.11298E-07 -3.09972E-07 -3.08649E-07 -3.07328E-07 -3.06009E-07 -3.04693E-07 -3.03379E-07 -3.02067E-07 -3.00758E-07 -2.9945E-07 -2.98145E-07 -2.96842E-07 -2.95541E-07 -2.94242E-07 -2.92945E-07 -2.9165E-07 -2.90357E-07 -2.89066E-07 -2.87778E-07 -2.86491E-07 -2.85206E-07 -2.83923E-07 -2.82642E-07 -2.81362E-07 -2.80085E-07 -2.78809E-07 -2.77536E-07 -2.76264E-07 -2.74993E-07 -2.73725E-07 -2.72458E-07 -2.71193E-07 -2.6993E-07 -2.68668E-07 -2.67408E-07 -2.6615E-07 -2.64893E-07 -2.63638E-07 -2.62385E-07 -2.61133E-07 -2.59883E-07 -2.58634E-07 -2.57387E-07 -2.56141E-07 -2.54897E-07 -2.53654E-07 -2.52413E-07 -2.51173E-07 -2.49935E-07 -2.48698E-07 -2.47462E-07 -2.46228E-07 -2.44996E-07 -2.43765E-07 -2.42535E-07 -2.41306E-07 -2.40079E-07 -2.38853E-07 -2.37629E-07 -2.36406E-07 -2.35184E-07 -2.33964E-07 -2.32745E-07 -2.31527E-07 -2.3031E-07 -2.29095E-07 -2.27881E-07 -2.26669E-07 -2.25457E-07 -2.24247E-07 -2.23038E-07 -2.21831E-07 -2.20624E-07 -2.19419E-07 -2.18215E-07 -2.17013E-07 -2.15811E-07 -2.14611E-07 -2.13412E-07 -2.12215E-07 -2.11018E-07 -2.09823E-07 -2.08629E-07 -2.07437E-07 -2.06245E-07 -2.05055E-07 -2.03866E-07 -2.02678E-07 -2.01491E-07 -2.00306E-07 -1.99122E-07 -1.97939E-07 -1.96757E-07 -1.95577E-07 -1.94398E-07 -1.9322E-07 -1.92043E-07 -1.90867E-07 -1.89693E-07 -1.8852E-07 -1.87348E-07 -1.86177E-07 -1.85008E-07 -1.8384E-07 -1.82673E-07 -1.81507E-07 -1.80343E-07 -1.7918E-07 -1.78018E-07 -1.76857E-07 -1.75697E-07 -1.74539E-07 -1.73382E-07 -1.72226E-07 -1.71072E-07 -1.69918E-07 -1.68766E-07 -1.67615E-07 -1.66465E-07 -1.65316E-07 -1.64169E-07 -1.63023E-07 -1.61878E-07 -1.60734E-07 -1.59591E-07 -1.58449E-07 -1.57309E-07 -1.56169E-07 -1.55031E-07 -1.53893E-07 -1.52757E-07 -1.51621E-07 -1.50487E-07 -1.49353E-07 -1.4822E-07 -1.47088E-07 -1.45957E-07 -1.44826E-07 -1.43696E-07 -1.42567E-07 -1.41437E-07 -1.40308E-07 -1.39179E-07 -1.3805E-07 -1.36921E-07 -1.35791E-07 -1.3466E-07 -1.33528E-07 -1.32395E-07 -1.31259E-07 -1.3012E-07 -1.28977E-07 -1.2783E-07 -1.26676E-07 -1.25514E-07 -1.24342E-07 -1.23156E-07 -1.21952E-07 -1.20723E-07 -1.1946E-07 -1.18149E-07 -1.1677E-07 -1.15288E-07 -1.1365E-07 -1.11759E-07 -1.09446E-07 -1.06398E-07 -1.0202E-07 -9.52187E-08 -8.41659E-08 -6.63284E-08 -3.90059E-08 -2.82111E-12 5.3447E-08 1.23861E-07 2.13028E-07 3.24838E-07 4.66337E-07 6.47663E-07 8.81782E-07 1.18472E-06 1.5762E-06 2.08056E-06 +-2.49544E-07 -2.485E-07 -2.47458E-07 -2.46418E-07 -2.4538E-07 -2.44344E-07 -2.43309E-07 -2.42277E-07 -2.41247E-07 -2.40218E-07 -2.39191E-07 -2.38166E-07 -2.37143E-07 -2.36121E-07 -2.35101E-07 -2.34083E-07 -2.33067E-07 -2.32053E-07 -2.3104E-07 -2.30028E-07 -2.29019E-07 -2.28011E-07 -2.27004E-07 -2.25999E-07 -2.24996E-07 -2.23995E-07 -2.22994E-07 -2.21996E-07 -2.20999E-07 -2.20003E-07 -2.19009E-07 -2.18016E-07 -2.17025E-07 -2.16035E-07 -2.15047E-07 -2.1406E-07 -2.13074E-07 -2.1209E-07 -2.11107E-07 -2.10125E-07 -2.09145E-07 -2.08166E-07 -2.07188E-07 -2.06212E-07 -2.05237E-07 -2.04263E-07 -2.0329E-07 -2.02319E-07 -2.01349E-07 -2.0038E-07 -1.99412E-07 -1.98445E-07 -1.9748E-07 -1.96516E-07 -1.95553E-07 -1.94591E-07 -1.9363E-07 -1.9267E-07 -1.91712E-07 -1.90754E-07 -1.89798E-07 -1.88842E-07 -1.87888E-07 -1.86935E-07 -1.85983E-07 -1.85032E-07 -1.84082E-07 -1.83133E-07 -1.82185E-07 -1.81238E-07 -1.80292E-07 -1.79347E-07 -1.78403E-07 -1.77461E-07 -1.76519E-07 -1.75578E-07 -1.74638E-07 -1.73699E-07 -1.72761E-07 -1.71824E-07 -1.70889E-07 -1.69954E-07 -1.6902E-07 -1.68087E-07 -1.67155E-07 -1.66224E-07 -1.65293E-07 -1.64364E-07 -1.63436E-07 -1.62509E-07 -1.61583E-07 -1.60657E-07 -1.59733E-07 -1.5881E-07 -1.57887E-07 -1.56966E-07 -1.56045E-07 -1.55125E-07 -1.54207E-07 -1.53289E-07 -1.52372E-07 -1.51457E-07 -1.50542E-07 -1.49628E-07 -1.48715E-07 -1.47803E-07 -1.46892E-07 -1.45982E-07 -1.45073E-07 -1.44165E-07 -1.43258E-07 -1.42352E-07 -1.41447E-07 -1.40543E-07 -1.39639E-07 -1.38737E-07 -1.37836E-07 -1.36935E-07 -1.36036E-07 -1.35137E-07 -1.3424E-07 -1.33343E-07 -1.32448E-07 -1.31553E-07 -1.30659E-07 -1.29766E-07 -1.28875E-07 -1.27984E-07 -1.27094E-07 -1.26205E-07 -1.25316E-07 -1.24429E-07 -1.23543E-07 -1.22657E-07 -1.21772E-07 -1.20889E-07 -1.20006E-07 -1.19123E-07 -1.18242E-07 -1.17361E-07 -1.16481E-07 -1.15602E-07 -1.14723E-07 -1.13845E-07 -1.12968E-07 -1.12091E-07 -1.11215E-07 -1.10339E-07 -1.09463E-07 -1.08587E-07 -1.07712E-07 -1.06836E-07 -1.0596E-07 -1.05084E-07 -1.04207E-07 -1.03329E-07 -1.0245E-07 -1.01569E-07 -1.00686E-07 -9.98003E-08 -9.89107E-08 -9.80162E-08 -9.71155E-08 -9.62067E-08 -9.52872E-08 -9.43537E-08 -9.34011E-08 -9.24223E-08 -9.14068E-08 -9.03383E-08 -8.91911E-08 -8.79227E-08 -8.64602E-08 -8.46728E-08 -8.23184E-08 -7.89389E-08 -7.36899E-08 -6.51552E-08 -5.1367E-08 -3.02209E-08 -2.43619E-12 4.16288E-08 9.69428E-08 1.67534E-07 2.56683E-07 3.70249E-07 5.16648E-07 7.06679E-07 9.53738E-07 1.2744E-06 1.68923E-06 +-1.92661E-07 -1.91854E-07 -1.91049E-07 -1.90245E-07 -1.89443E-07 -1.88642E-07 -1.87842E-07 -1.87044E-07 -1.86248E-07 -1.85453E-07 -1.84659E-07 -1.83867E-07 -1.83076E-07 -1.82286E-07 -1.81498E-07 -1.80711E-07 -1.79926E-07 -1.79142E-07 -1.78359E-07 -1.77577E-07 -1.76797E-07 -1.76018E-07 -1.7524E-07 -1.74463E-07 -1.73688E-07 -1.72914E-07 -1.72141E-07 -1.71369E-07 -1.70598E-07 -1.69829E-07 -1.6906E-07 -1.68293E-07 -1.67527E-07 -1.66762E-07 -1.65998E-07 -1.65235E-07 -1.64474E-07 -1.63713E-07 -1.62953E-07 -1.62195E-07 -1.61437E-07 -1.6068E-07 -1.59925E-07 -1.5917E-07 -1.58417E-07 -1.57664E-07 -1.56912E-07 -1.56162E-07 -1.55412E-07 -1.54663E-07 -1.53915E-07 -1.53168E-07 -1.52422E-07 -1.51677E-07 -1.50933E-07 -1.50189E-07 -1.49447E-07 -1.48705E-07 -1.47964E-07 -1.47224E-07 -1.46485E-07 -1.45747E-07 -1.45009E-07 -1.44273E-07 -1.43537E-07 -1.42802E-07 -1.42068E-07 -1.41335E-07 -1.40602E-07 -1.39871E-07 -1.3914E-07 -1.38409E-07 -1.3768E-07 -1.36952E-07 -1.36224E-07 -1.35497E-07 -1.3477E-07 -1.34045E-07 -1.3332E-07 -1.32596E-07 -1.31873E-07 -1.31151E-07 -1.30429E-07 -1.29708E-07 -1.28988E-07 -1.28268E-07 -1.2755E-07 -1.26832E-07 -1.26114E-07 -1.25398E-07 -1.24682E-07 -1.23967E-07 -1.23253E-07 -1.2254E-07 -1.21827E-07 -1.21115E-07 -1.20403E-07 -1.19693E-07 -1.18983E-07 -1.18274E-07 -1.17566E-07 -1.16858E-07 -1.16151E-07 -1.15445E-07 -1.1474E-07 -1.14035E-07 -1.13332E-07 -1.12629E-07 -1.11926E-07 -1.11225E-07 -1.10524E-07 -1.09824E-07 -1.09124E-07 -1.08426E-07 -1.07728E-07 -1.07031E-07 -1.06334E-07 -1.05639E-07 -1.04944E-07 -1.04249E-07 -1.03556E-07 -1.02863E-07 -1.02171E-07 -1.0148E-07 -1.0079E-07 -1.001E-07 -9.9411E-08 -9.87227E-08 -9.80351E-08 -9.73482E-08 -9.6662E-08 -9.59766E-08 -9.52918E-08 -9.46076E-08 -9.39242E-08 -9.32414E-08 -9.25592E-08 -9.18777E-08 -9.11968E-08 -9.05165E-08 -8.98367E-08 -8.91575E-08 -8.84788E-08 -8.78005E-08 -8.71228E-08 -8.64454E-08 -8.57683E-08 -8.50916E-08 -8.44151E-08 -8.37387E-08 -8.30624E-08 -8.23861E-08 -8.17095E-08 -8.10327E-08 -8.03553E-08 -7.96773E-08 -7.89982E-08 -7.83179E-08 -7.76358E-08 -7.69516E-08 -7.62644E-08 -7.55736E-08 -7.4878E-08 -7.41762E-08 -7.34662E-08 -7.27453E-08 -7.20098E-08 -7.12542E-08 -7.04704E-08 -6.96458E-08 -6.87607E-08 -6.77824E-08 -6.6655E-08 -6.5278E-08 -6.34652E-08 -6.08645E-08 -5.68255E-08 -5.02556E-08 -3.96328E-08 -2.33255E-08 -2.08905E-12 3.22906E-08 7.55536E-08 1.31192E-07 2.0197E-07 2.92743E-07 4.10488E-07 5.64181E-07 7.65003E-07 1.02685E-06 1.36702E-06 +-1.48217E-07 -1.47596E-07 -1.46976E-07 -1.46357E-07 -1.45739E-07 -1.45122E-07 -1.44506E-07 -1.43892E-07 -1.43279E-07 -1.42666E-07 -1.42055E-07 -1.41445E-07 -1.40836E-07 -1.40228E-07 -1.39621E-07 -1.39015E-07 -1.3841E-07 -1.37807E-07 -1.37204E-07 -1.36602E-07 -1.36001E-07 -1.35401E-07 -1.34802E-07 -1.34204E-07 -1.33607E-07 -1.33011E-07 -1.32416E-07 -1.31822E-07 -1.31228E-07 -1.30636E-07 -1.30044E-07 -1.29453E-07 -1.28863E-07 -1.28274E-07 -1.27686E-07 -1.27099E-07 -1.26512E-07 -1.25927E-07 -1.25342E-07 -1.24757E-07 -1.24174E-07 -1.23592E-07 -1.2301E-07 -1.22429E-07 -1.21849E-07 -1.21269E-07 -1.2069E-07 -1.20112E-07 -1.19535E-07 -1.18959E-07 -1.18383E-07 -1.17808E-07 -1.17233E-07 -1.16659E-07 -1.16086E-07 -1.15514E-07 -1.14942E-07 -1.14371E-07 -1.13801E-07 -1.13231E-07 -1.12662E-07 -1.12094E-07 -1.11526E-07 -1.10959E-07 -1.10392E-07 -1.09827E-07 -1.09261E-07 -1.08697E-07 -1.08133E-07 -1.0757E-07 -1.07007E-07 -1.06445E-07 -1.05883E-07 -1.05322E-07 -1.04762E-07 -1.04202E-07 -1.03643E-07 -1.03085E-07 -1.02527E-07 -1.01969E-07 -1.01412E-07 -1.00856E-07 -1.00301E-07 -9.97457E-08 -9.91912E-08 -9.86373E-08 -9.80841E-08 -9.75313E-08 -9.69792E-08 -9.64277E-08 -9.58767E-08 -9.53263E-08 -9.47764E-08 -9.42271E-08 -9.36785E-08 -9.31303E-08 -9.25828E-08 -9.20358E-08 -9.14894E-08 -9.09436E-08 -9.03983E-08 -8.98537E-08 -8.93095E-08 -8.8766E-08 -8.82231E-08 -8.76807E-08 -8.71389E-08 -8.65976E-08 -8.6057E-08 -8.55169E-08 -8.49774E-08 -8.44385E-08 -8.39001E-08 -8.33623E-08 -8.28251E-08 -8.22885E-08 -8.17525E-08 -8.1217E-08 -8.06821E-08 -8.01478E-08 -7.9614E-08 -7.90808E-08 -7.85482E-08 -7.80162E-08 -7.74847E-08 -7.69538E-08 -7.64234E-08 -7.58936E-08 -7.53644E-08 -7.48357E-08 -7.43075E-08 -7.37799E-08 -7.32528E-08 -7.27263E-08 -7.22002E-08 -7.16747E-08 -7.11496E-08 -7.06251E-08 -7.0101E-08 -6.95773E-08 -6.90541E-08 -6.85314E-08 -6.8009E-08 -6.7487E-08 -6.69653E-08 -6.6444E-08 -6.59229E-08 -6.54021E-08 -6.48814E-08 -6.43608E-08 -6.38403E-08 -6.33198E-08 -6.27991E-08 -6.22782E-08 -6.1757E-08 -6.12351E-08 -6.07126E-08 -6.0189E-08 -5.96641E-08 -5.91375E-08 -5.86088E-08 -5.80772E-08 -5.75419E-08 -5.70019E-08 -5.64556E-08 -5.5901E-08 -5.53351E-08 -5.47539E-08 -5.41509E-08 -5.35168E-08 -5.28363E-08 -5.20843E-08 -5.12181E-08 -5.01605E-08 -4.87689E-08 -4.67733E-08 -4.36742E-08 -3.86318E-08 -3.04734E-08 -1.79398E-08 -1.77647E-12 2.49508E-08 5.86468E-08 1.02311E-07 1.58259E-07 2.30509E-07 3.24824E-07 4.48654E-07 6.11315E-07 8.24429E-07 1.10252E-06 +-1.13652E-07 -1.13175E-07 -1.12699E-07 -1.12224E-07 -1.1175E-07 -1.11277E-07 -1.10804E-07 -1.10333E-07 -1.09862E-07 -1.09392E-07 -1.08923E-07 -1.08455E-07 -1.07988E-07 -1.07521E-07 -1.07056E-07 -1.06591E-07 -1.06127E-07 -1.05663E-07 -1.05201E-07 -1.04739E-07 -1.04278E-07 -1.03817E-07 -1.03358E-07 -1.02899E-07 -1.02441E-07 -1.01983E-07 -1.01526E-07 -1.0107E-07 -1.00615E-07 -1.0016E-07 -9.97065E-08 -9.92532E-08 -9.88005E-08 -9.83485E-08 -9.78971E-08 -9.74464E-08 -9.69964E-08 -9.65469E-08 -9.60981E-08 -9.56499E-08 -9.52023E-08 -9.47553E-08 -9.43089E-08 -9.3863E-08 -9.34178E-08 -9.29731E-08 -9.25291E-08 -9.20855E-08 -9.16426E-08 -9.12002E-08 -9.07583E-08 -9.0317E-08 -8.98763E-08 -8.9436E-08 -8.89963E-08 -8.85571E-08 -8.81185E-08 -8.76803E-08 -8.72427E-08 -8.68056E-08 -8.6369E-08 -8.59329E-08 -8.54973E-08 -8.50621E-08 -8.46275E-08 -8.41933E-08 -8.37597E-08 -8.33265E-08 -8.28938E-08 -8.24615E-08 -8.20298E-08 -8.15985E-08 -8.11677E-08 -8.07373E-08 -8.03074E-08 -7.98779E-08 -7.9449E-08 -7.90204E-08 -7.85923E-08 -7.81647E-08 -7.77375E-08 -7.73108E-08 -7.68845E-08 -7.64587E-08 -7.60333E-08 -7.56084E-08 -7.51839E-08 -7.47598E-08 -7.43362E-08 -7.39131E-08 -7.34903E-08 -7.30681E-08 -7.26462E-08 -7.22248E-08 -7.18039E-08 -7.13833E-08 -7.09633E-08 -7.05436E-08 -7.01244E-08 -6.97057E-08 -6.92874E-08 -6.88695E-08 -6.84521E-08 -6.80351E-08 -6.76185E-08 -6.72024E-08 -6.67868E-08 -6.63716E-08 -6.59568E-08 -6.55425E-08 -6.51286E-08 -6.47151E-08 -6.43021E-08 -6.38896E-08 -6.34775E-08 -6.30658E-08 -6.26546E-08 -6.22438E-08 -6.18335E-08 -6.14236E-08 -6.10141E-08 -6.06051E-08 -6.01965E-08 -5.97883E-08 -5.93806E-08 -5.89734E-08 -5.85665E-08 -5.81601E-08 -5.77541E-08 -5.73485E-08 -5.69434E-08 -5.65387E-08 -5.61343E-08 -5.57304E-08 -5.53269E-08 -5.49238E-08 -5.4521E-08 -5.41186E-08 -5.37166E-08 -5.33149E-08 -5.29136E-08 -5.25126E-08 -5.21119E-08 -5.17115E-08 -5.13114E-08 -5.09115E-08 -5.05118E-08 -5.01123E-08 -4.97129E-08 -4.93136E-08 -4.89144E-08 -4.85151E-08 -4.81157E-08 -4.77162E-08 -4.73164E-08 -4.69161E-08 -4.65153E-08 -4.61138E-08 -4.57112E-08 -4.53073E-08 -4.49018E-08 -4.44941E-08 -4.40836E-08 -4.36694E-08 -4.32505E-08 -4.28252E-08 -4.23913E-08 -4.19456E-08 -4.14834E-08 -4.09973E-08 -4.04757E-08 -3.98995E-08 -3.92359E-08 -3.84261E-08 -3.73609E-08 -3.58337E-08 -3.34624E-08 -2.96031E-08 -2.33559E-08 -1.37526E-08 -1.49545E-12 1.92104E-08 4.53508E-08 7.94733E-08 1.2351E-07 1.80768E-07 2.55999E-07 3.55367E-07 4.86622E-07 6.59466E-07 8.86069E-07 +-8.6886E-08 -8.65212E-08 -8.61571E-08 -8.57937E-08 -8.5431E-08 -8.50689E-08 -8.47075E-08 -8.43468E-08 -8.39867E-08 -8.36273E-08 -8.32685E-08 -8.29104E-08 -8.25529E-08 -8.2196E-08 -8.18397E-08 -8.1484E-08 -8.1129E-08 -8.07745E-08 -8.04206E-08 -8.00673E-08 -7.97146E-08 -7.93625E-08 -7.90109E-08 -7.86598E-08 -7.83094E-08 -7.79594E-08 -7.76101E-08 -7.72612E-08 -7.69129E-08 -7.65651E-08 -7.62178E-08 -7.58711E-08 -7.55248E-08 -7.5179E-08 -7.48338E-08 -7.4489E-08 -7.41447E-08 -7.38009E-08 -7.34576E-08 -7.31147E-08 -7.27724E-08 -7.24304E-08 -7.2089E-08 -7.17479E-08 -7.14074E-08 -7.10672E-08 -7.07276E-08 -7.03883E-08 -7.00495E-08 -6.97111E-08 -6.93731E-08 -6.90355E-08 -6.86984E-08 -6.83616E-08 -6.80253E-08 -6.76894E-08 -6.73539E-08 -6.70187E-08 -6.6684E-08 -6.63496E-08 -6.60157E-08 -6.56821E-08 -6.53489E-08 -6.50161E-08 -6.46836E-08 -6.43516E-08 -6.40198E-08 -6.36885E-08 -6.33575E-08 -6.30269E-08 -6.26967E-08 -6.23668E-08 -6.20373E-08 -6.17081E-08 -6.13793E-08 -6.10508E-08 -6.07227E-08 -6.03949E-08 -6.00675E-08 -5.97405E-08 -5.94137E-08 -5.90873E-08 -5.87613E-08 -5.84356E-08 -5.81103E-08 -5.77853E-08 -5.74606E-08 -5.71363E-08 -5.68123E-08 -5.64886E-08 -5.61653E-08 -5.58423E-08 -5.55197E-08 -5.51974E-08 -5.48755E-08 -5.45538E-08 -5.42326E-08 -5.39116E-08 -5.3591E-08 -5.32707E-08 -5.29508E-08 -5.26312E-08 -5.2312E-08 -5.19931E-08 -5.16745E-08 -5.13563E-08 -5.10384E-08 -5.07208E-08 -5.04036E-08 -5.00867E-08 -4.97702E-08 -4.9454E-08 -4.91382E-08 -4.88227E-08 -4.85075E-08 -4.81927E-08 -4.78782E-08 -4.7564E-08 -4.72502E-08 -4.69367E-08 -4.66236E-08 -4.63108E-08 -4.59983E-08 -4.56862E-08 -4.53744E-08 -4.50629E-08 -4.47518E-08 -4.4441E-08 -4.41305E-08 -4.38204E-08 -4.35106E-08 -4.3201E-08 -4.28919E-08 -4.2583E-08 -4.22744E-08 -4.19661E-08 -4.16581E-08 -4.13504E-08 -4.1043E-08 -4.07358E-08 -4.04289E-08 -4.01223E-08 -3.98159E-08 -3.95097E-08 -3.92037E-08 -3.88979E-08 -3.85923E-08 -3.82868E-08 -3.79814E-08 -3.76761E-08 -3.73708E-08 -3.70655E-08 -3.67601E-08 -3.64546E-08 -3.61489E-08 -3.58428E-08 -3.55363E-08 -3.52293E-08 -3.49215E-08 -3.46127E-08 -3.43026E-08 -3.39909E-08 -3.3677E-08 -3.33604E-08 -3.30401E-08 -3.27149E-08 -3.23832E-08 -3.20425E-08 -3.16892E-08 -3.13177E-08 -3.09191E-08 -3.04788E-08 -2.99719E-08 -2.93535E-08 -2.85402E-08 -2.73746E-08 -2.55648E-08 -2.26188E-08 -1.78482E-08 -1.05113E-08 -1.24327E-12 1.47418E-08 3.49448E-08 6.15031E-08 9.60169E-08 1.41199E-07 2.00949E-07 2.80355E-07 3.85845E-07 5.25508E-07 7.09518E-07 +-6.62414E-08 -6.59631E-08 -6.56854E-08 -6.54082E-08 -6.51315E-08 -6.48553E-08 -6.45796E-08 -6.43044E-08 -6.40298E-08 -6.37556E-08 -6.34819E-08 -6.32087E-08 -6.2936E-08 -6.26638E-08 -6.2392E-08 -6.21207E-08 -6.18499E-08 -6.15795E-08 -6.13095E-08 -6.104E-08 -6.0771E-08 -6.05024E-08 -6.02342E-08 -5.99664E-08 -5.96991E-08 -5.94322E-08 -5.91657E-08 -5.88996E-08 -5.86339E-08 -5.83686E-08 -5.81037E-08 -5.78392E-08 -5.75751E-08 -5.73113E-08 -5.7048E-08 -5.6785E-08 -5.65224E-08 -5.62602E-08 -5.59983E-08 -5.57368E-08 -5.54756E-08 -5.52148E-08 -5.49543E-08 -5.46942E-08 -5.44344E-08 -5.4175E-08 -5.39159E-08 -5.36571E-08 -5.33987E-08 -5.31406E-08 -5.28828E-08 -5.26253E-08 -5.23682E-08 -5.21113E-08 -5.18548E-08 -5.15986E-08 -5.13427E-08 -5.1087E-08 -5.08317E-08 -5.05767E-08 -5.0322E-08 -5.00676E-08 -4.98134E-08 -4.95596E-08 -4.9306E-08 -4.90527E-08 -4.87997E-08 -4.8547E-08 -4.82946E-08 -4.80424E-08 -4.77906E-08 -4.75389E-08 -4.72876E-08 -4.70366E-08 -4.67858E-08 -4.65352E-08 -4.6285E-08 -4.6035E-08 -4.57853E-08 -4.55358E-08 -4.52866E-08 -4.50377E-08 -4.47891E-08 -4.45407E-08 -4.42925E-08 -4.40446E-08 -4.3797E-08 -4.35497E-08 -4.33026E-08 -4.30557E-08 -4.28092E-08 -4.25628E-08 -4.23168E-08 -4.2071E-08 -4.18254E-08 -4.15802E-08 -4.13351E-08 -4.10904E-08 -4.08459E-08 -4.06016E-08 -4.03576E-08 -4.01139E-08 -3.98704E-08 -3.96272E-08 -3.93842E-08 -3.91415E-08 -3.88991E-08 -3.86569E-08 -3.8415E-08 -3.81734E-08 -3.7932E-08 -3.76908E-08 -3.745E-08 -3.72093E-08 -3.6969E-08 -3.67289E-08 -3.64891E-08 -3.62495E-08 -3.60102E-08 -3.57711E-08 -3.55323E-08 -3.52938E-08 -3.50555E-08 -3.48175E-08 -3.45797E-08 -3.43422E-08 -3.41049E-08 -3.38679E-08 -3.36311E-08 -3.33946E-08 -3.31583E-08 -3.29223E-08 -3.26865E-08 -3.2451E-08 -3.22157E-08 -3.19806E-08 -3.17457E-08 -3.15111E-08 -3.12766E-08 -3.10424E-08 -3.08084E-08 -3.05746E-08 -3.03409E-08 -3.01074E-08 -2.98741E-08 -2.96409E-08 -2.94078E-08 -2.91749E-08 -2.8942E-08 -2.87092E-08 -2.84764E-08 -2.82436E-08 -2.80108E-08 -2.77778E-08 -2.75447E-08 -2.73113E-08 -2.70777E-08 -2.68435E-08 -2.66088E-08 -2.63734E-08 -2.61369E-08 -2.58993E-08 -2.56599E-08 -2.54185E-08 -2.51743E-08 -2.49264E-08 -2.46736E-08 -2.44138E-08 -2.41445E-08 -2.38613E-08 -2.35575E-08 -2.3222E-08 -2.28358E-08 -2.23647E-08 -2.17454E-08 -2.08578E-08 -1.94799E-08 -1.72365E-08 -1.36026E-08 -8.01203E-09 -1.0174E-12 1.12782E-08 2.6838E-08 4.74293E-08 7.43687E-08 1.09869E-07 1.57118E-07 2.20299E-07 3.0473E-07 4.17136E-07 5.66012E-07 +-5.03765E-08 -5.01647E-08 -4.99534E-08 -4.97425E-08 -4.9532E-08 -4.93218E-08 -4.91121E-08 -4.89027E-08 -4.86938E-08 -4.84852E-08 -4.82769E-08 -4.80691E-08 -4.78616E-08 -4.76544E-08 -4.74477E-08 -4.72413E-08 -4.70352E-08 -4.68295E-08 -4.66241E-08 -4.6419E-08 -4.62143E-08 -4.601E-08 -4.58059E-08 -4.56022E-08 -4.53988E-08 -4.51957E-08 -4.4993E-08 -4.47905E-08 -4.45884E-08 -4.43865E-08 -4.4185E-08 -4.39837E-08 -4.37828E-08 -4.35822E-08 -4.33818E-08 -4.31817E-08 -4.29819E-08 -4.27824E-08 -4.25832E-08 -4.23842E-08 -4.21855E-08 -4.19871E-08 -4.17889E-08 -4.1591E-08 -4.13934E-08 -4.1196E-08 -4.09989E-08 -4.0802E-08 -4.06054E-08 -4.0409E-08 -4.02129E-08 -4.0017E-08 -3.98214E-08 -3.9626E-08 -3.94308E-08 -3.92359E-08 -3.90412E-08 -3.88467E-08 -3.86525E-08 -3.84585E-08 -3.82647E-08 -3.80711E-08 -3.78778E-08 -3.76847E-08 -3.74918E-08 -3.72991E-08 -3.71066E-08 -3.69144E-08 -3.67223E-08 -3.65305E-08 -3.63389E-08 -3.61475E-08 -3.59563E-08 -3.57653E-08 -3.55745E-08 -3.53839E-08 -3.51935E-08 -3.50034E-08 -3.48134E-08 -3.46236E-08 -3.44341E-08 -3.42447E-08 -3.40555E-08 -3.38666E-08 -3.36778E-08 -3.34892E-08 -3.33009E-08 -3.31127E-08 -3.29247E-08 -3.2737E-08 -3.25494E-08 -3.2362E-08 -3.21748E-08 -3.19878E-08 -3.1801E-08 -3.16145E-08 -3.14281E-08 -3.12419E-08 -3.10559E-08 -3.08701E-08 -3.06845E-08 -3.04991E-08 -3.03138E-08 -3.01288E-08 -2.9944E-08 -2.97594E-08 -2.9575E-08 -2.93908E-08 -2.92067E-08 -2.90229E-08 -2.88393E-08 -2.86559E-08 -2.84726E-08 -2.82896E-08 -2.81068E-08 -2.79241E-08 -2.77417E-08 -2.75595E-08 -2.73774E-08 -2.71956E-08 -2.70139E-08 -2.68325E-08 -2.66512E-08 -2.64702E-08 -2.62893E-08 -2.61087E-08 -2.59282E-08 -2.57479E-08 -2.55678E-08 -2.53879E-08 -2.52082E-08 -2.50287E-08 -2.48493E-08 -2.46701E-08 -2.44911E-08 -2.43123E-08 -2.41337E-08 -2.39552E-08 -2.37769E-08 -2.35987E-08 -2.34207E-08 -2.32429E-08 -2.30652E-08 -2.28876E-08 -2.27101E-08 -2.25327E-08 -2.23555E-08 -2.21783E-08 -2.20012E-08 -2.18241E-08 -2.1647E-08 -2.147E-08 -2.12929E-08 -2.11157E-08 -2.09384E-08 -2.07609E-08 -2.05831E-08 -2.04051E-08 -2.02266E-08 -2.00475E-08 -1.98677E-08 -1.96869E-08 -1.95049E-08 -1.93213E-08 -1.91356E-08 -1.89471E-08 -1.87547E-08 -1.85572E-08 -1.83524E-08 -1.81371E-08 -1.79061E-08 -1.76511E-08 -1.73575E-08 -1.69995E-08 -1.65289E-08 -1.58546E-08 -1.48077E-08 -1.31033E-08 -1.03417E-08 -6.09193E-09 -8.15511E-13 8.60457E-09 2.05494E-08 3.64564E-08 5.74007E-08 8.51775E-08 1.2238E-07 1.72432E-07 2.39718E-07 3.29815E-07 4.49795E-07 +-3.82252E-08 -3.80645E-08 -3.79041E-08 -3.7744E-08 -3.75842E-08 -3.74247E-08 -3.72655E-08 -3.71065E-08 -3.69479E-08 -3.67896E-08 -3.66315E-08 -3.64737E-08 -3.63162E-08 -3.6159E-08 -3.6002E-08 -3.58453E-08 -3.56889E-08 -3.55327E-08 -3.53768E-08 -3.52212E-08 -3.50658E-08 -3.49107E-08 -3.47558E-08 -3.46012E-08 -3.44468E-08 -3.42926E-08 -3.41387E-08 -3.3985E-08 -3.38316E-08 -3.36784E-08 -3.35254E-08 -3.33727E-08 -3.32201E-08 -3.30678E-08 -3.29157E-08 -3.27639E-08 -3.26122E-08 -3.24608E-08 -3.23095E-08 -3.21585E-08 -3.20077E-08 -3.18571E-08 -3.17067E-08 -3.15565E-08 -3.14065E-08 -3.12566E-08 -3.1107E-08 -3.09576E-08 -3.08084E-08 -3.06593E-08 -3.05104E-08 -3.03618E-08 -3.02133E-08 -3.00649E-08 -2.99168E-08 -2.97689E-08 -2.96211E-08 -2.94735E-08 -2.9326E-08 -2.91788E-08 -2.90317E-08 -2.88848E-08 -2.8738E-08 -2.85915E-08 -2.8445E-08 -2.82988E-08 -2.81527E-08 -2.80068E-08 -2.7861E-08 -2.77154E-08 -2.757E-08 -2.74247E-08 -2.72796E-08 -2.71346E-08 -2.69898E-08 -2.68452E-08 -2.67007E-08 -2.65563E-08 -2.64121E-08 -2.62681E-08 -2.61242E-08 -2.59805E-08 -2.58369E-08 -2.56935E-08 -2.55502E-08 -2.54071E-08 -2.52642E-08 -2.51213E-08 -2.49787E-08 -2.48362E-08 -2.46938E-08 -2.45516E-08 -2.44095E-08 -2.42676E-08 -2.41258E-08 -2.39842E-08 -2.38428E-08 -2.37015E-08 -2.35603E-08 -2.34193E-08 -2.32784E-08 -2.31377E-08 -2.29971E-08 -2.28567E-08 -2.27164E-08 -2.25763E-08 -2.24364E-08 -2.22966E-08 -2.21569E-08 -2.20174E-08 -2.1878E-08 -2.17388E-08 -2.15998E-08 -2.14609E-08 -2.13221E-08 -2.11835E-08 -2.1045E-08 -2.09067E-08 -2.07686E-08 -2.06306E-08 -2.04927E-08 -2.0355E-08 -2.02175E-08 -2.00801E-08 -1.99428E-08 -1.98057E-08 -1.96687E-08 -1.95319E-08 -1.93952E-08 -1.92587E-08 -1.91223E-08 -1.89861E-08 -1.885E-08 -1.8714E-08 -1.85781E-08 -1.84424E-08 -1.83069E-08 -1.81714E-08 -1.80361E-08 -1.79009E-08 -1.77658E-08 -1.76308E-08 -1.7496E-08 -1.73612E-08 -1.72265E-08 -1.70919E-08 -1.69574E-08 -1.68229E-08 -1.66885E-08 -1.65542E-08 -1.64198E-08 -1.62854E-08 -1.6151E-08 -1.60166E-08 -1.5882E-08 -1.57473E-08 -1.56125E-08 -1.54773E-08 -1.53419E-08 -1.5206E-08 -1.50695E-08 -1.49324E-08 -1.47943E-08 -1.46549E-08 -1.4514E-08 -1.4371E-08 -1.42251E-08 -1.40752E-08 -1.39198E-08 -1.37564E-08 -1.35812E-08 -1.33877E-08 -1.31651E-08 -1.28935E-08 -1.25367E-08 -1.20254E-08 -1.12318E-08 -9.93944E-09 -7.84517E-09 -4.62166E-09 -6.35484E-13 6.54824E-09 1.56906E-08 2.79373E-08 4.41596E-08 6.58055E-08 9.49733E-08 1.34453E-07 1.87843E-07 2.5975E-07 3.56049E-07 +-2.89465E-08 -2.88247E-08 -2.87032E-08 -2.85819E-08 -2.84609E-08 -2.834E-08 -2.82194E-08 -2.8099E-08 -2.79789E-08 -2.78589E-08 -2.77392E-08 -2.76197E-08 -2.75004E-08 -2.73813E-08 -2.72624E-08 -2.71437E-08 -2.70252E-08 -2.69069E-08 -2.67888E-08 -2.66709E-08 -2.65532E-08 -2.64357E-08 -2.63184E-08 -2.62012E-08 -2.60843E-08 -2.59675E-08 -2.58509E-08 -2.57345E-08 -2.56183E-08 -2.55022E-08 -2.53863E-08 -2.52706E-08 -2.51551E-08 -2.50397E-08 -2.49245E-08 -2.48095E-08 -2.46946E-08 -2.45799E-08 -2.44654E-08 -2.4351E-08 -2.42367E-08 -2.41226E-08 -2.40087E-08 -2.38949E-08 -2.37813E-08 -2.36678E-08 -2.35545E-08 -2.34413E-08 -2.33282E-08 -2.32153E-08 -2.31026E-08 -2.299E-08 -2.28775E-08 -2.27651E-08 -2.26529E-08 -2.25409E-08 -2.24289E-08 -2.23171E-08 -2.22055E-08 -2.20939E-08 -2.19825E-08 -2.18712E-08 -2.17601E-08 -2.16491E-08 -2.15382E-08 -2.14274E-08 -2.13167E-08 -2.12062E-08 -2.10958E-08 -2.09855E-08 -2.08754E-08 -2.07653E-08 -2.06554E-08 -2.05456E-08 -2.04359E-08 -2.03264E-08 -2.02169E-08 -2.01076E-08 -1.99984E-08 -1.98893E-08 -1.97803E-08 -1.96714E-08 -1.95627E-08 -1.94541E-08 -1.93456E-08 -1.92372E-08 -1.91289E-08 -1.90207E-08 -1.89126E-08 -1.88047E-08 -1.86969E-08 -1.85892E-08 -1.84816E-08 -1.83741E-08 -1.82667E-08 -1.81594E-08 -1.80523E-08 -1.79453E-08 -1.78383E-08 -1.77315E-08 -1.76249E-08 -1.75183E-08 -1.74118E-08 -1.73055E-08 -1.71992E-08 -1.70931E-08 -1.69871E-08 -1.68812E-08 -1.67754E-08 -1.66698E-08 -1.65642E-08 -1.64588E-08 -1.63535E-08 -1.62483E-08 -1.61432E-08 -1.60382E-08 -1.59333E-08 -1.58286E-08 -1.5724E-08 -1.56194E-08 -1.5515E-08 -1.54107E-08 -1.53066E-08 -1.52025E-08 -1.50985E-08 -1.49947E-08 -1.4891E-08 -1.47874E-08 -1.46838E-08 -1.45804E-08 -1.44771E-08 -1.4374E-08 -1.42709E-08 -1.41679E-08 -1.4065E-08 -1.39623E-08 -1.38596E-08 -1.3757E-08 -1.36545E-08 -1.35521E-08 -1.34498E-08 -1.33476E-08 -1.32455E-08 -1.31434E-08 -1.30414E-08 -1.29395E-08 -1.28376E-08 -1.27358E-08 -1.2634E-08 -1.25322E-08 -1.24305E-08 -1.23287E-08 -1.22269E-08 -1.21251E-08 -1.20232E-08 -1.19212E-08 -1.18191E-08 -1.17167E-08 -1.16141E-08 -1.15112E-08 -1.14079E-08 -1.1304E-08 -1.11994E-08 -1.10939E-08 -1.09872E-08 -1.08789E-08 -1.07684E-08 -1.06549E-08 -1.05373E-08 -1.04136E-08 -1.02809E-08 -1.01344E-08 -9.96586E-09 -9.76034E-09 -9.49026E-09 -9.10335E-09 -8.50273E-09 -7.52468E-09 -5.93951E-09 -3.49922E-09 -4.75358E-13 4.97203E-09 1.19504E-08 2.13493E-08 3.38699E-08 5.06733E-08 7.34479E-08 1.04455E-07 1.46634E-07 2.03775E-07 2.8074E-07 +-2.18804E-08 -2.17884E-08 -2.16965E-08 -2.16048E-08 -2.15133E-08 -2.14219E-08 -2.13307E-08 -2.12397E-08 -2.11488E-08 -2.10581E-08 -2.09676E-08 -2.08772E-08 -2.0787E-08 -2.0697E-08 -2.06071E-08 -2.05173E-08 -2.04278E-08 -2.03383E-08 -2.0249E-08 -2.01599E-08 -2.00709E-08 -1.9982E-08 -1.98933E-08 -1.98048E-08 -1.97163E-08 -1.96281E-08 -1.95399E-08 -1.94519E-08 -1.9364E-08 -1.92763E-08 -1.91887E-08 -1.91012E-08 -1.90138E-08 -1.89266E-08 -1.88395E-08 -1.87525E-08 -1.86657E-08 -1.85789E-08 -1.84923E-08 -1.84058E-08 -1.83194E-08 -1.82332E-08 -1.8147E-08 -1.8061E-08 -1.79751E-08 -1.78893E-08 -1.78036E-08 -1.7718E-08 -1.76326E-08 -1.75472E-08 -1.7462E-08 -1.73768E-08 -1.72918E-08 -1.72068E-08 -1.7122E-08 -1.70373E-08 -1.69527E-08 -1.68681E-08 -1.67837E-08 -1.66994E-08 -1.66151E-08 -1.6531E-08 -1.6447E-08 -1.6363E-08 -1.62792E-08 -1.61954E-08 -1.61118E-08 -1.60282E-08 -1.59447E-08 -1.58614E-08 -1.57781E-08 -1.56949E-08 -1.56118E-08 -1.55288E-08 -1.54458E-08 -1.5363E-08 -1.52803E-08 -1.51976E-08 -1.5115E-08 -1.50326E-08 -1.49502E-08 -1.48679E-08 -1.47857E-08 -1.47035E-08 -1.46215E-08 -1.45395E-08 -1.44577E-08 -1.43759E-08 -1.42942E-08 -1.42126E-08 -1.41311E-08 -1.40497E-08 -1.39683E-08 -1.3887E-08 -1.38059E-08 -1.37248E-08 -1.36438E-08 -1.35629E-08 -1.3482E-08 -1.34013E-08 -1.33206E-08 -1.32401E-08 -1.31596E-08 -1.30792E-08 -1.29989E-08 -1.29186E-08 -1.28385E-08 -1.27584E-08 -1.26785E-08 -1.25986E-08 -1.25188E-08 -1.24391E-08 -1.23595E-08 -1.22799E-08 -1.22005E-08 -1.21211E-08 -1.20419E-08 -1.19627E-08 -1.18836E-08 -1.18046E-08 -1.17256E-08 -1.16468E-08 -1.1568E-08 -1.14894E-08 -1.14108E-08 -1.13323E-08 -1.12539E-08 -1.11755E-08 -1.10973E-08 -1.10191E-08 -1.0941E-08 -1.0863E-08 -1.07851E-08 -1.07073E-08 -1.06295E-08 -1.05518E-08 -1.04742E-08 -1.03966E-08 -1.03192E-08 -1.02418E-08 -1.01644E-08 -1.00871E-08 -1.00099E-08 -9.93278E-09 -9.85568E-09 -9.77862E-09 -9.70161E-09 -9.62463E-09 -9.54768E-09 -9.47075E-09 -9.39383E-09 -9.31691E-09 -9.23997E-09 -9.163E-09 -9.08598E-09 -9.00887E-09 -8.93166E-09 -8.85431E-09 -8.77677E-09 -8.69898E-09 -8.62087E-09 -8.54235E-09 -8.46329E-09 -8.38354E-09 -8.30288E-09 -8.221E-09 -8.13748E-09 -8.05171E-09 -7.96277E-09 -7.86928E-09 -7.76901E-09 -7.65831E-09 -7.53093E-09 -7.37563E-09 -7.17156E-09 -6.87925E-09 -6.42548E-09 -5.68653E-09 -4.48875E-09 -2.64462E-09 -3.33331E-13 3.76754E-09 9.0809E-09 1.62734E-08 2.59053E-08 3.8902E-08 5.66147E-08 8.08664E-08 1.14046E-07 1.59255E-07 2.20501E-07 +-1.65127E-08 -1.64432E-08 -1.63738E-08 -1.63046E-08 -1.62355E-08 -1.61665E-08 -1.60977E-08 -1.6029E-08 -1.59604E-08 -1.58919E-08 -1.58236E-08 -1.57554E-08 -1.56873E-08 -1.56193E-08 -1.55515E-08 -1.54837E-08 -1.54161E-08 -1.53486E-08 -1.52812E-08 -1.52139E-08 -1.51467E-08 -1.50796E-08 -1.50127E-08 -1.49458E-08 -1.48791E-08 -1.48124E-08 -1.47459E-08 -1.46795E-08 -1.46131E-08 -1.45469E-08 -1.44808E-08 -1.44147E-08 -1.43488E-08 -1.42829E-08 -1.42172E-08 -1.41515E-08 -1.4086E-08 -1.40205E-08 -1.39551E-08 -1.38899E-08 -1.38247E-08 -1.37595E-08 -1.36945E-08 -1.36296E-08 -1.35647E-08 -1.35E-08 -1.34353E-08 -1.33707E-08 -1.33062E-08 -1.32418E-08 -1.31774E-08 -1.31131E-08 -1.3049E-08 -1.29848E-08 -1.29208E-08 -1.28569E-08 -1.2793E-08 -1.27292E-08 -1.26654E-08 -1.26018E-08 -1.25382E-08 -1.24747E-08 -1.24113E-08 -1.23479E-08 -1.22846E-08 -1.22214E-08 -1.21583E-08 -1.20952E-08 -1.20322E-08 -1.19693E-08 -1.19064E-08 -1.18436E-08 -1.17809E-08 -1.17182E-08 -1.16556E-08 -1.15931E-08 -1.15307E-08 -1.14683E-08 -1.1406E-08 -1.13437E-08 -1.12815E-08 -1.12194E-08 -1.11573E-08 -1.10954E-08 -1.10334E-08 -1.09716E-08 -1.09098E-08 -1.08481E-08 -1.07864E-08 -1.07248E-08 -1.06633E-08 -1.06018E-08 -1.05404E-08 -1.04791E-08 -1.04178E-08 -1.03566E-08 -1.02955E-08 -1.02344E-08 -1.01734E-08 -1.01124E-08 -1.00516E-08 -9.99076E-09 -9.93001E-09 -9.86933E-09 -9.80871E-09 -9.74816E-09 -9.68768E-09 -9.62726E-09 -9.5669E-09 -9.50661E-09 -9.44639E-09 -9.38623E-09 -9.32613E-09 -9.26611E-09 -9.20614E-09 -9.14625E-09 -9.08642E-09 -9.02665E-09 -8.96695E-09 -8.90731E-09 -8.84774E-09 -8.78824E-09 -8.7288E-09 -8.66942E-09 -8.61011E-09 -8.55086E-09 -8.49168E-09 -8.43256E-09 -8.3735E-09 -8.3145E-09 -8.25557E-09 -8.1967E-09 -8.13788E-09 -8.07913E-09 -8.02044E-09 -7.9618E-09 -7.90322E-09 -7.8447E-09 -7.78623E-09 -7.72781E-09 -7.66944E-09 -7.61112E-09 -7.55285E-09 -7.49462E-09 -7.43643E-09 -7.37828E-09 -7.32015E-09 -7.26206E-09 -7.20398E-09 -7.14592E-09 -7.08787E-09 -7.02982E-09 -6.97175E-09 -6.91366E-09 -6.85553E-09 -6.79734E-09 -6.73907E-09 -6.6807E-09 -6.62217E-09 -6.56347E-09 -6.50452E-09 -6.44526E-09 -6.3856E-09 -6.32542E-09 -6.26454E-09 -6.20275E-09 -6.13972E-09 -6.075E-09 -6.00788E-09 -5.93733E-09 -5.86167E-09 -5.77814E-09 -5.68203E-09 -5.56486E-09 -5.4109E-09 -5.19039E-09 -4.84808E-09 -4.29062E-09 -3.38696E-09 -1.99553E-09 -2.07753E-13 2.84965E-09 6.8862E-09 1.23756E-08 1.97627E-08 2.9781E-08 4.35056E-08 6.23979E-08 8.83881E-08 1.24003E-07 1.72529E-07 +-1.24439E-08 -1.23915E-08 -1.23392E-08 -1.22871E-08 -1.2235E-08 -1.2183E-08 -1.21311E-08 -1.20793E-08 -1.20276E-08 -1.1976E-08 -1.19245E-08 -1.18731E-08 -1.18218E-08 -1.17705E-08 -1.17194E-08 -1.16683E-08 -1.16173E-08 -1.15665E-08 -1.15157E-08 -1.14649E-08 -1.14143E-08 -1.13637E-08 -1.13133E-08 -1.12629E-08 -1.12126E-08 -1.11623E-08 -1.11122E-08 -1.10621E-08 -1.10121E-08 -1.09622E-08 -1.09124E-08 -1.08626E-08 -1.08129E-08 -1.07632E-08 -1.07137E-08 -1.06642E-08 -1.06148E-08 -1.05654E-08 -1.05162E-08 -1.0467E-08 -1.04178E-08 -1.03688E-08 -1.03197E-08 -1.02708E-08 -1.02219E-08 -1.01731E-08 -1.01244E-08 -1.00757E-08 -1.0027E-08 -9.97849E-09 -9.92999E-09 -9.88154E-09 -9.83316E-09 -9.78484E-09 -9.73658E-09 -9.68837E-09 -9.64023E-09 -9.59214E-09 -9.54411E-09 -9.49613E-09 -9.44821E-09 -9.40035E-09 -9.35254E-09 -9.30478E-09 -9.25708E-09 -9.20944E-09 -9.16185E-09 -9.11431E-09 -9.06682E-09 -9.01939E-09 -8.97201E-09 -8.92468E-09 -8.87741E-09 -8.83018E-09 -8.78301E-09 -8.73589E-09 -8.68882E-09 -8.6418E-09 -8.59483E-09 -8.54791E-09 -8.50104E-09 -8.45422E-09 -8.40745E-09 -8.36073E-09 -8.31406E-09 -8.26744E-09 -8.22087E-09 -8.17435E-09 -8.12788E-09 -8.08146E-09 -8.03508E-09 -7.98876E-09 -7.94248E-09 -7.89626E-09 -7.85008E-09 -7.80396E-09 -7.75788E-09 -7.71185E-09 -7.66587E-09 -7.61994E-09 -7.57406E-09 -7.52822E-09 -7.48244E-09 -7.43671E-09 -7.39102E-09 -7.34539E-09 -7.2998E-09 -7.25426E-09 -7.20878E-09 -7.16334E-09 -7.11795E-09 -7.07261E-09 -7.02732E-09 -6.98208E-09 -6.93689E-09 -6.89175E-09 -6.84666E-09 -6.80161E-09 -6.75662E-09 -6.71167E-09 -6.66678E-09 -6.62193E-09 -6.57713E-09 -6.53239E-09 -6.48769E-09 -6.44303E-09 -6.39843E-09 -6.35387E-09 -6.30936E-09 -6.2649E-09 -6.22049E-09 -6.17612E-09 -6.1318E-09 -6.08752E-09 -6.04328E-09 -5.99909E-09 -5.95495E-09 -5.91084E-09 -5.86678E-09 -5.82275E-09 -5.77876E-09 -5.73481E-09 -5.6909E-09 -5.64701E-09 -5.60316E-09 -5.55933E-09 -5.51553E-09 -5.47175E-09 -5.42798E-09 -5.38423E-09 -5.34048E-09 -5.29673E-09 -5.25297E-09 -5.20919E-09 -5.16538E-09 -5.12153E-09 -5.07762E-09 -5.03362E-09 -4.98952E-09 -4.94528E-09 -4.90086E-09 -4.8562E-09 -4.81124E-09 -4.76589E-09 -4.72001E-09 -4.67345E-09 -4.62595E-09 -4.57718E-09 -4.5266E-09 -4.47344E-09 -4.41642E-09 -4.35348E-09 -4.28107E-09 -4.19279E-09 -4.0768E-09 -3.91067E-09 -3.65279E-09 -3.23282E-09 -2.55199E-09 -1.50359E-09 -9.71062E-14 2.1519E-09 5.21227E-09 9.39183E-09 1.50415E-08 2.27395E-08 3.33368E-08 4.79982E-08 6.82748E-08 9.62131E-08 1.34495E-07 +-9.36577E-09 -9.32634E-09 -9.28698E-09 -9.2477E-09 -9.2085E-09 -9.16937E-09 -9.13031E-09 -9.09133E-09 -9.05241E-09 -9.01357E-09 -8.97479E-09 -8.93608E-09 -8.89745E-09 -8.85888E-09 -8.82037E-09 -8.78194E-09 -8.74357E-09 -8.70526E-09 -8.66702E-09 -8.62884E-09 -8.59072E-09 -8.55267E-09 -8.51468E-09 -8.47674E-09 -8.43887E-09 -8.40106E-09 -8.36331E-09 -8.32561E-09 -8.28798E-09 -8.2504E-09 -8.21287E-09 -8.17541E-09 -8.13799E-09 -8.10064E-09 -8.06333E-09 -8.02608E-09 -7.98889E-09 -7.95174E-09 -7.91465E-09 -7.87761E-09 -7.84062E-09 -7.80368E-09 -7.76679E-09 -7.72994E-09 -7.69315E-09 -7.65641E-09 -7.61971E-09 -7.58306E-09 -7.54646E-09 -7.50991E-09 -7.4734E-09 -7.43693E-09 -7.40051E-09 -7.36414E-09 -7.32781E-09 -7.29152E-09 -7.25528E-09 -7.21908E-09 -7.18293E-09 -7.14682E-09 -7.11075E-09 -7.07472E-09 -7.03873E-09 -7.00278E-09 -6.96688E-09 -6.93101E-09 -6.89519E-09 -6.85941E-09 -6.82366E-09 -6.78796E-09 -6.75229E-09 -6.71667E-09 -6.68108E-09 -6.64554E-09 -6.61003E-09 -6.57456E-09 -6.53913E-09 -6.50373E-09 -6.46838E-09 -6.43306E-09 -6.39778E-09 -6.36254E-09 -6.32734E-09 -6.29217E-09 -6.25704E-09 -6.22195E-09 -6.1869E-09 -6.15188E-09 -6.1169E-09 -6.08196E-09 -6.04705E-09 -6.01218E-09 -5.97735E-09 -5.94256E-09 -5.9078E-09 -5.87308E-09 -5.8384E-09 -5.80375E-09 -5.76914E-09 -5.73457E-09 -5.70003E-09 -5.66553E-09 -5.63107E-09 -5.59665E-09 -5.56226E-09 -5.52791E-09 -5.4936E-09 -5.45932E-09 -5.42509E-09 -5.39089E-09 -5.35672E-09 -5.32259E-09 -5.28851E-09 -5.25445E-09 -5.22044E-09 -5.18646E-09 -5.15252E-09 -5.11862E-09 -5.08475E-09 -5.05092E-09 -5.01713E-09 -4.98337E-09 -4.94966E-09 -4.91597E-09 -4.88233E-09 -4.84872E-09 -4.81515E-09 -4.78161E-09 -4.74811E-09 -4.71465E-09 -4.68122E-09 -4.64782E-09 -4.61446E-09 -4.58113E-09 -4.54784E-09 -4.51458E-09 -4.48135E-09 -4.44815E-09 -4.41499E-09 -4.38185E-09 -4.34874E-09 -4.31566E-09 -4.28261E-09 -4.24958E-09 -4.21657E-09 -4.18358E-09 -4.15061E-09 -4.11766E-09 -4.08472E-09 -4.05179E-09 -4.01886E-09 -3.98593E-09 -3.953E-09 -3.92005E-09 -3.88708E-09 -3.85407E-09 -3.82102E-09 -3.78791E-09 -3.75471E-09 -3.72141E-09 -3.68798E-09 -3.65437E-09 -3.62053E-09 -3.5864E-09 -3.55187E-09 -3.51682E-09 -3.48108E-09 -3.44437E-09 -3.4063E-09 -3.36629E-09 -3.32338E-09 -3.27602E-09 -3.22152E-09 -3.15509E-09 -3.06781E-09 -2.94281E-09 -2.74876E-09 -2.43275E-09 -1.92043E-09 -1.13148E-09 1.87589E-22 1.62267E-09 3.93874E-09 7.11408E-09 1.1424E-08 1.73219E-08 2.54779E-08 3.68153E-08 5.25736E-08 7.44005E-08 1.04473E-07 +-7.04113E-09 -7.01148E-09 -6.98189E-09 -6.95236E-09 -6.92288E-09 -6.89346E-09 -6.86409E-09 -6.83477E-09 -6.80551E-09 -6.77631E-09 -6.74715E-09 -6.71805E-09 -6.689E-09 -6.65999E-09 -6.63104E-09 -6.60214E-09 -6.57329E-09 -6.54449E-09 -6.51573E-09 -6.48703E-09 -6.45837E-09 -6.42975E-09 -6.40119E-09 -6.37267E-09 -6.34419E-09 -6.31576E-09 -6.28737E-09 -6.25903E-09 -6.23073E-09 -6.20247E-09 -6.17426E-09 -6.14609E-09 -6.11796E-09 -6.08987E-09 -6.06182E-09 -6.03381E-09 -6.00584E-09 -5.97792E-09 -5.95003E-09 -5.92218E-09 -5.89436E-09 -5.86659E-09 -5.83885E-09 -5.81115E-09 -5.78349E-09 -5.75586E-09 -5.72827E-09 -5.70071E-09 -5.67319E-09 -5.6457E-09 -5.61825E-09 -5.59084E-09 -5.56345E-09 -5.53611E-09 -5.50879E-09 -5.48151E-09 -5.45426E-09 -5.42704E-09 -5.39986E-09 -5.3727E-09 -5.34558E-09 -5.31849E-09 -5.29144E-09 -5.26441E-09 -5.23741E-09 -5.21045E-09 -5.18351E-09 -5.15661E-09 -5.12973E-09 -5.10289E-09 -5.07607E-09 -5.04929E-09 -5.02253E-09 -4.9958E-09 -4.96911E-09 -4.94244E-09 -4.9158E-09 -4.88919E-09 -4.8626E-09 -4.83605E-09 -4.80953E-09 -4.78303E-09 -4.75656E-09 -4.73012E-09 -4.70371E-09 -4.67732E-09 -4.65097E-09 -4.62464E-09 -4.59834E-09 -4.57207E-09 -4.54582E-09 -4.51961E-09 -4.49342E-09 -4.46726E-09 -4.44113E-09 -4.41502E-09 -4.38895E-09 -4.3629E-09 -4.33688E-09 -4.31088E-09 -4.28492E-09 -4.25898E-09 -4.23307E-09 -4.20719E-09 -4.18133E-09 -4.15551E-09 -4.12971E-09 -4.10394E-09 -4.0782E-09 -4.05249E-09 -4.0268E-09 -4.00114E-09 -3.97551E-09 -3.94991E-09 -3.92434E-09 -3.89879E-09 -3.87327E-09 -3.84778E-09 -3.82232E-09 -3.79689E-09 -3.77148E-09 -3.7461E-09 -3.72075E-09 -3.69543E-09 -3.67013E-09 -3.64487E-09 -3.61963E-09 -3.59441E-09 -3.56922E-09 -3.54406E-09 -3.51893E-09 -3.49382E-09 -3.46874E-09 -3.44369E-09 -3.41865E-09 -3.39365E-09 -3.36867E-09 -3.34371E-09 -3.31877E-09 -3.29386E-09 -3.26897E-09 -3.2441E-09 -3.21925E-09 -3.19442E-09 -3.1696E-09 -3.1448E-09 -3.12001E-09 -3.09524E-09 -3.07047E-09 -3.04572E-09 -3.02096E-09 -2.9962E-09 -2.97144E-09 -2.94667E-09 -2.92188E-09 -2.89707E-09 -2.87222E-09 -2.84733E-09 -2.82237E-09 -2.79734E-09 -2.7722E-09 -2.74693E-09 -2.72149E-09 -2.69583E-09 -2.66987E-09 -2.64353E-09 -2.61665E-09 -2.58906E-09 -2.56044E-09 -2.53036E-09 -2.49811E-09 -2.4625E-09 -2.42153E-09 -2.3716E-09 -2.30599E-09 -2.21203E-09 -2.06618E-09 -1.82865E-09 -1.44355E-09 -8.50486E-10 8.48411E-14 1.22206E-09 2.97202E-09 5.3797E-09 8.65999E-09 1.31667E-08 1.94249E-08 2.81629E-08 4.03652E-08 5.73514E-08 8.08777E-08 +-5.28823E-09 -5.26596E-09 -5.24373E-09 -5.22155E-09 -5.1994E-09 -5.1773E-09 -5.15524E-09 -5.13322E-09 -5.11124E-09 -5.0893E-09 -5.0674E-09 -5.04554E-09 -5.02372E-09 -5.00194E-09 -4.98019E-09 -4.95848E-09 -4.93681E-09 -4.91517E-09 -4.89357E-09 -4.87201E-09 -4.85048E-09 -4.82899E-09 -4.80753E-09 -4.78611E-09 -4.76472E-09 -4.74336E-09 -4.72204E-09 -4.70075E-09 -4.6795E-09 -4.65827E-09 -4.63708E-09 -4.61592E-09 -4.59479E-09 -4.57369E-09 -4.55262E-09 -4.53158E-09 -4.51057E-09 -4.4896E-09 -4.46865E-09 -4.44773E-09 -4.42684E-09 -4.40597E-09 -4.38514E-09 -4.36433E-09 -4.34355E-09 -4.3228E-09 -4.30207E-09 -4.28138E-09 -4.26071E-09 -4.24006E-09 -4.21944E-09 -4.19885E-09 -4.17828E-09 -4.15774E-09 -4.13722E-09 -4.11673E-09 -4.09626E-09 -4.07582E-09 -4.0554E-09 -4.035E-09 -4.01463E-09 -3.99428E-09 -3.97396E-09 -3.95366E-09 -3.93338E-09 -3.91313E-09 -3.89289E-09 -3.87269E-09 -3.8525E-09 -3.83234E-09 -3.81219E-09 -3.79208E-09 -3.77198E-09 -3.7519E-09 -3.73185E-09 -3.71182E-09 -3.69181E-09 -3.67182E-09 -3.65186E-09 -3.63191E-09 -3.61199E-09 -3.59208E-09 -3.5722E-09 -3.55234E-09 -3.53251E-09 -3.51269E-09 -3.49289E-09 -3.47312E-09 -3.45336E-09 -3.43363E-09 -3.41392E-09 -3.39423E-09 -3.37456E-09 -3.35491E-09 -3.33528E-09 -3.31567E-09 -3.29609E-09 -3.27652E-09 -3.25698E-09 -3.23745E-09 -3.21795E-09 -3.19847E-09 -3.17901E-09 -3.15957E-09 -3.14015E-09 -3.12075E-09 -3.10137E-09 -3.08202E-09 -3.06268E-09 -3.04337E-09 -3.02408E-09 -3.00481E-09 -2.98556E-09 -2.96633E-09 -2.94712E-09 -2.92793E-09 -2.90877E-09 -2.88962E-09 -2.8705E-09 -2.85139E-09 -2.83231E-09 -2.81325E-09 -2.79421E-09 -2.77519E-09 -2.75619E-09 -2.73721E-09 -2.71825E-09 -2.69932E-09 -2.6804E-09 -2.6615E-09 -2.64262E-09 -2.62377E-09 -2.60493E-09 -2.58611E-09 -2.56731E-09 -2.54853E-09 -2.52976E-09 -2.51102E-09 -2.49229E-09 -2.47358E-09 -2.45488E-09 -2.4362E-09 -2.41754E-09 -2.39889E-09 -2.38025E-09 -2.36162E-09 -2.34301E-09 -2.3244E-09 -2.3058E-09 -2.2872E-09 -2.26861E-09 -2.25002E-09 -2.23142E-09 -2.21282E-09 -2.1942E-09 -2.17556E-09 -2.1569E-09 -2.1382E-09 -2.11946E-09 -2.10066E-09 -2.08178E-09 -2.0628E-09 -2.04369E-09 -2.02442E-09 -2.00493E-09 -1.98514E-09 -1.96495E-09 -1.94423E-09 -1.92274E-09 -1.90015E-09 -1.87592E-09 -1.84918E-09 -1.81842E-09 -1.78091E-09 -1.73165E-09 -1.66109E-09 -1.55157E-09 -1.37319E-09 -1.084E-09 -6.3862E-10 1.58586E-13 9.19334E-10 2.23966E-09 4.06207E-09 6.55351E-09 9.98888E-09 1.47778E-08 2.14916E-08 3.09084E-08 4.40788E-08 6.24118E-08 +-3.96823E-09 -3.95152E-09 -3.93484E-09 -3.91819E-09 -3.90157E-09 -3.88499E-09 -3.86843E-09 -3.8519E-09 -3.83541E-09 -3.81894E-09 -3.80251E-09 -3.7861E-09 -3.76972E-09 -3.75337E-09 -3.73705E-09 -3.72076E-09 -3.7045E-09 -3.68826E-09 -3.67205E-09 -3.65587E-09 -3.63971E-09 -3.62358E-09 -3.60748E-09 -3.5914E-09 -3.57535E-09 -3.55932E-09 -3.54332E-09 -3.52734E-09 -3.51139E-09 -3.49546E-09 -3.47955E-09 -3.46367E-09 -3.44782E-09 -3.43198E-09 -3.41617E-09 -3.40038E-09 -3.38462E-09 -3.36887E-09 -3.35315E-09 -3.33745E-09 -3.32177E-09 -3.30612E-09 -3.29048E-09 -3.27486E-09 -3.25927E-09 -3.2437E-09 -3.22814E-09 -3.21261E-09 -3.1971E-09 -3.1816E-09 -3.16613E-09 -3.15067E-09 -3.13524E-09 -3.11982E-09 -3.10442E-09 -3.08905E-09 -3.07368E-09 -3.05834E-09 -3.04302E-09 -3.02771E-09 -3.01242E-09 -2.99715E-09 -2.9819E-09 -2.96667E-09 -2.95145E-09 -2.93625E-09 -2.92107E-09 -2.9059E-09 -2.89075E-09 -2.87562E-09 -2.86051E-09 -2.84541E-09 -2.83032E-09 -2.81526E-09 -2.80021E-09 -2.78518E-09 -2.77016E-09 -2.75516E-09 -2.74018E-09 -2.72521E-09 -2.71026E-09 -2.69532E-09 -2.6804E-09 -2.6655E-09 -2.65061E-09 -2.63574E-09 -2.62088E-09 -2.60604E-09 -2.59122E-09 -2.57641E-09 -2.56162E-09 -2.54684E-09 -2.53208E-09 -2.51733E-09 -2.5026E-09 -2.48789E-09 -2.47319E-09 -2.45851E-09 -2.44384E-09 -2.42919E-09 -2.41455E-09 -2.39993E-09 -2.38533E-09 -2.37074E-09 -2.35617E-09 -2.34161E-09 -2.32707E-09 -2.31255E-09 -2.29804E-09 -2.28354E-09 -2.26907E-09 -2.2546E-09 -2.24016E-09 -2.22573E-09 -2.21131E-09 -2.19691E-09 -2.18253E-09 -2.16816E-09 -2.15381E-09 -2.13948E-09 -2.12516E-09 -2.11085E-09 -2.09656E-09 -2.08229E-09 -2.06803E-09 -2.05379E-09 -2.03957E-09 -2.02535E-09 -2.01116E-09 -1.99698E-09 -1.98281E-09 -1.96866E-09 -1.95452E-09 -1.9404E-09 -1.92629E-09 -1.9122E-09 -1.89812E-09 -1.88405E-09 -1.87E-09 -1.85596E-09 -1.84193E-09 -1.82791E-09 -1.8139E-09 -1.79991E-09 -1.78592E-09 -1.77194E-09 -1.75797E-09 -1.74401E-09 -1.73005E-09 -1.7161E-09 -1.70215E-09 -1.68819E-09 -1.67424E-09 -1.66028E-09 -1.6463E-09 -1.63232E-09 -1.61832E-09 -1.60428E-09 -1.59022E-09 -1.57611E-09 -1.56194E-09 -1.5477E-09 -1.53337E-09 -1.5189E-09 -1.50427E-09 -1.48943E-09 -1.47428E-09 -1.45873E-09 -1.4426E-09 -1.42565E-09 -1.40747E-09 -1.38741E-09 -1.36432E-09 -1.33618E-09 -1.29922E-09 -1.24628E-09 -1.1641E-09 -1.03026E-09 -8.13273E-10 -4.79089E-10 2.22305E-13 6.90939E-10 1.68584E-09 3.0631E-09 4.95187E-09 7.56487E-09 1.12202E-08 1.63642E-08 2.36086E-08 3.37852E-08 4.80182E-08 +-2.97542E-09 -2.96289E-09 -2.95038E-09 -2.93789E-09 -2.92543E-09 -2.91299E-09 -2.90058E-09 -2.88818E-09 -2.87581E-09 -2.86347E-09 -2.85114E-09 -2.83884E-09 -2.82655E-09 -2.81429E-09 -2.80206E-09 -2.78984E-09 -2.77764E-09 -2.76547E-09 -2.75331E-09 -2.74117E-09 -2.72906E-09 -2.71696E-09 -2.70489E-09 -2.69283E-09 -2.68079E-09 -2.66877E-09 -2.65677E-09 -2.64479E-09 -2.63283E-09 -2.62088E-09 -2.60896E-09 -2.59705E-09 -2.58516E-09 -2.57328E-09 -2.56143E-09 -2.54959E-09 -2.53776E-09 -2.52596E-09 -2.51417E-09 -2.50239E-09 -2.49064E-09 -2.4789E-09 -2.46717E-09 -2.45546E-09 -2.44377E-09 -2.43209E-09 -2.42043E-09 -2.40878E-09 -2.39714E-09 -2.38553E-09 -2.37392E-09 -2.36233E-09 -2.35076E-09 -2.3392E-09 -2.32765E-09 -2.31612E-09 -2.3046E-09 -2.29309E-09 -2.2816E-09 -2.27013E-09 -2.25866E-09 -2.24721E-09 -2.23577E-09 -2.22435E-09 -2.21294E-09 -2.20154E-09 -2.19015E-09 -2.17878E-09 -2.16742E-09 -2.15607E-09 -2.14474E-09 -2.13342E-09 -2.12211E-09 -2.11081E-09 -2.09953E-09 -2.08825E-09 -2.07699E-09 -2.06575E-09 -2.05451E-09 -2.04329E-09 -2.03207E-09 -2.02087E-09 -2.00969E-09 -1.99851E-09 -1.98735E-09 -1.97619E-09 -1.96505E-09 -1.95393E-09 -1.94281E-09 -1.9317E-09 -1.92061E-09 -1.90953E-09 -1.89846E-09 -1.8874E-09 -1.87636E-09 -1.86533E-09 -1.8543E-09 -1.84329E-09 -1.8323E-09 -1.82131E-09 -1.81033E-09 -1.79937E-09 -1.78842E-09 -1.77748E-09 -1.76655E-09 -1.75564E-09 -1.74473E-09 -1.73384E-09 -1.72296E-09 -1.71209E-09 -1.70124E-09 -1.69039E-09 -1.67956E-09 -1.66874E-09 -1.65793E-09 -1.64713E-09 -1.63635E-09 -1.62558E-09 -1.61482E-09 -1.60407E-09 -1.59333E-09 -1.5826E-09 -1.57189E-09 -1.56118E-09 -1.55049E-09 -1.53981E-09 -1.52915E-09 -1.51849E-09 -1.50785E-09 -1.49721E-09 -1.48659E-09 -1.47598E-09 -1.46538E-09 -1.45479E-09 -1.44421E-09 -1.43364E-09 -1.42308E-09 -1.41253E-09 -1.402E-09 -1.39147E-09 -1.38095E-09 -1.37044E-09 -1.35993E-09 -1.34944E-09 -1.33895E-09 -1.32847E-09 -1.318E-09 -1.30753E-09 -1.29706E-09 -1.2866E-09 -1.27613E-09 -1.26567E-09 -1.25521E-09 -1.24474E-09 -1.23426E-09 -1.22378E-09 -1.21327E-09 -1.20275E-09 -1.19221E-09 -1.18163E-09 -1.17101E-09 -1.16033E-09 -1.14958E-09 -1.13873E-09 -1.12776E-09 -1.11663E-09 -1.10527E-09 -1.09361E-09 -1.08152E-09 -1.06881E-09 -1.05518E-09 -1.04013E-09 -1.02282E-09 -1.00173E-09 -9.74012E-10 -9.34318E-10 -8.72706E-10 -7.72362E-10 -6.0967E-10 -3.59106E-10 2.76978E-13 5.1886E-10 1.2677E-09 2.3071E-09 3.73659E-09 5.72018E-09 8.50399E-09 1.24351E-08 1.79921E-08 2.58305E-08 3.68417E-08 +-2.22947E-09 -2.22008E-09 -2.21071E-09 -2.20135E-09 -2.19201E-09 -2.18269E-09 -2.17338E-09 -2.1641E-09 -2.15483E-09 -2.14557E-09 -2.13634E-09 -2.12712E-09 -2.11791E-09 -2.10873E-09 -2.09955E-09 -2.0904E-09 -2.08126E-09 -2.07213E-09 -2.06302E-09 -2.05393E-09 -2.04485E-09 -2.03579E-09 -2.02674E-09 -2.0177E-09 -2.00868E-09 -1.99967E-09 -1.99068E-09 -1.9817E-09 -1.97274E-09 -1.96379E-09 -1.95485E-09 -1.94592E-09 -1.93701E-09 -1.92811E-09 -1.91923E-09 -1.91036E-09 -1.9015E-09 -1.89265E-09 -1.88381E-09 -1.87499E-09 -1.86618E-09 -1.85738E-09 -1.8486E-09 -1.83982E-09 -1.83106E-09 -1.82231E-09 -1.81357E-09 -1.80484E-09 -1.79612E-09 -1.78741E-09 -1.77872E-09 -1.77003E-09 -1.76136E-09 -1.75269E-09 -1.74404E-09 -1.7354E-09 -1.72677E-09 -1.71815E-09 -1.70954E-09 -1.70093E-09 -1.69234E-09 -1.68376E-09 -1.67519E-09 -1.66663E-09 -1.65808E-09 -1.64954E-09 -1.64101E-09 -1.63248E-09 -1.62397E-09 -1.61547E-09 -1.60697E-09 -1.59849E-09 -1.59001E-09 -1.58155E-09 -1.57309E-09 -1.56464E-09 -1.55621E-09 -1.54778E-09 -1.53936E-09 -1.53095E-09 -1.52255E-09 -1.51415E-09 -1.50577E-09 -1.49739E-09 -1.48903E-09 -1.48067E-09 -1.47232E-09 -1.46398E-09 -1.45565E-09 -1.44733E-09 -1.43902E-09 -1.43072E-09 -1.42242E-09 -1.41414E-09 -1.40586E-09 -1.39759E-09 -1.38933E-09 -1.38108E-09 -1.37284E-09 -1.36461E-09 -1.35638E-09 -1.34817E-09 -1.33996E-09 -1.33176E-09 -1.32358E-09 -1.3154E-09 -1.30722E-09 -1.29906E-09 -1.29091E-09 -1.28277E-09 -1.27463E-09 -1.2665E-09 -1.25839E-09 -1.25028E-09 -1.24218E-09 -1.23409E-09 -1.22601E-09 -1.21793E-09 -1.20987E-09 -1.20181E-09 -1.19377E-09 -1.18573E-09 -1.1777E-09 -1.16968E-09 -1.16167E-09 -1.15367E-09 -1.14567E-09 -1.13769E-09 -1.12971E-09 -1.12174E-09 -1.11378E-09 -1.10583E-09 -1.09789E-09 -1.08995E-09 -1.08203E-09 -1.07411E-09 -1.06619E-09 -1.05829E-09 -1.05039E-09 -1.0425E-09 -1.03462E-09 -1.02675E-09 -1.01888E-09 -1.01101E-09 -1.00315E-09 -9.95299E-10 -9.87449E-10 -9.79603E-10 -9.71761E-10 -9.6392E-10 -9.5608E-10 -9.48241E-10 -9.40399E-10 -9.32555E-10 -9.24705E-10 -9.16847E-10 -9.08978E-10 -9.01095E-10 -8.93192E-10 -8.85265E-10 -8.77305E-10 -8.69304E-10 -8.61248E-10 -8.53121E-10 -8.44902E-10 -8.36559E-10 -8.28049E-10 -8.19311E-10 -8.1025E-10 -8.00726E-10 -7.90513E-10 -7.7924E-10 -7.6627E-10 -7.50462E-10 -7.29695E-10 -6.99954E-10 -6.5379E-10 -5.78606E-10 -4.56704E-10 -2.6896E-10 3.23501E-13 3.89369E-10 9.52447E-10 1.7359E-09 2.81618E-09 4.31934E-09 6.43508E-09 9.43224E-09 1.36838E-08 1.97033E-08 2.81945E-08 +-1.66952E-09 -1.66249E-09 -1.65547E-09 -1.64846E-09 -1.64147E-09 -1.63449E-09 -1.62752E-09 -1.62056E-09 -1.61362E-09 -1.60669E-09 -1.59977E-09 -1.59287E-09 -1.58597E-09 -1.57909E-09 -1.57222E-09 -1.56537E-09 -1.55852E-09 -1.55169E-09 -1.54486E-09 -1.53805E-09 -1.53125E-09 -1.52446E-09 -1.51769E-09 -1.51092E-09 -1.50416E-09 -1.49742E-09 -1.49068E-09 -1.48396E-09 -1.47724E-09 -1.47054E-09 -1.46385E-09 -1.45716E-09 -1.45049E-09 -1.44382E-09 -1.43717E-09 -1.43052E-09 -1.42389E-09 -1.41726E-09 -1.41065E-09 -1.40404E-09 -1.39744E-09 -1.39085E-09 -1.38427E-09 -1.3777E-09 -1.37114E-09 -1.36458E-09 -1.35803E-09 -1.3515E-09 -1.34497E-09 -1.33845E-09 -1.33193E-09 -1.32543E-09 -1.31893E-09 -1.31245E-09 -1.30597E-09 -1.29949E-09 -1.29303E-09 -1.28657E-09 -1.28012E-09 -1.27368E-09 -1.26725E-09 -1.26082E-09 -1.2544E-09 -1.24799E-09 -1.24159E-09 -1.23519E-09 -1.2288E-09 -1.22242E-09 -1.21604E-09 -1.20967E-09 -1.20331E-09 -1.19696E-09 -1.19061E-09 -1.18427E-09 -1.17794E-09 -1.17161E-09 -1.16529E-09 -1.15898E-09 -1.15267E-09 -1.14637E-09 -1.14008E-09 -1.1338E-09 -1.12752E-09 -1.12124E-09 -1.11498E-09 -1.10872E-09 -1.10247E-09 -1.09622E-09 -1.08998E-09 -1.08375E-09 -1.07753E-09 -1.07131E-09 -1.0651E-09 -1.05889E-09 -1.05269E-09 -1.0465E-09 -1.04031E-09 -1.03414E-09 -1.02796E-09 -1.0218E-09 -1.01564E-09 -1.00949E-09 -1.00334E-09 -9.97201E-10 -9.91068E-10 -9.84942E-10 -9.78823E-10 -9.72711E-10 -9.66605E-10 -9.60505E-10 -9.54413E-10 -9.48327E-10 -9.42248E-10 -9.36175E-10 -9.30109E-10 -9.2405E-10 -9.17998E-10 -9.11952E-10 -9.05912E-10 -8.9988E-10 -8.93854E-10 -8.87834E-10 -8.81822E-10 -8.75815E-10 -8.69816E-10 -8.63823E-10 -8.57836E-10 -8.51856E-10 -8.45882E-10 -8.39914E-10 -8.33953E-10 -8.27998E-10 -8.22049E-10 -8.16107E-10 -8.1017E-10 -8.04239E-10 -7.98314E-10 -7.92395E-10 -7.86481E-10 -7.80572E-10 -7.74669E-10 -7.6877E-10 -7.62876E-10 -7.56987E-10 -7.51102E-10 -7.4522E-10 -7.39341E-10 -7.33466E-10 -7.27592E-10 -7.21721E-10 -7.15849E-10 -7.09978E-10 -7.04106E-10 -6.98231E-10 -6.92352E-10 -6.86468E-10 -6.80575E-10 -6.74671E-10 -6.68753E-10 -6.62816E-10 -6.56855E-10 -6.50863E-10 -6.4483E-10 -6.38744E-10 -6.32589E-10 -6.26341E-10 -6.19968E-10 -6.13424E-10 -6.06639E-10 -5.99506E-10 -5.91858E-10 -5.83416E-10 -5.73703E-10 -5.61865E-10 -5.46314E-10 -5.24043E-10 -4.89473E-10 -4.33172E-10 -3.41886E-10 -2.01293E-10 3.62694E-13 2.92029E-10 7.15055E-10 1.30495E-09 2.12025E-09 3.25755E-09 4.86261E-09 7.14293E-09 1.03878E-08 1.49982E-08 2.15265E-08 +-1.24954E-09 -1.24427E-09 -1.23902E-09 -1.23377E-09 -1.22853E-09 -1.22331E-09 -1.21809E-09 -1.21289E-09 -1.20769E-09 -1.2025E-09 -1.19732E-09 -1.19215E-09 -1.18699E-09 -1.18184E-09 -1.1767E-09 -1.17157E-09 -1.16644E-09 -1.16133E-09 -1.15622E-09 -1.15112E-09 -1.14603E-09 -1.14095E-09 -1.13588E-09 -1.13081E-09 -1.12576E-09 -1.12071E-09 -1.11566E-09 -1.11063E-09 -1.10561E-09 -1.10059E-09 -1.09558E-09 -1.09057E-09 -1.08558E-09 -1.08059E-09 -1.07561E-09 -1.07063E-09 -1.06567E-09 -1.06071E-09 -1.05575E-09 -1.05081E-09 -1.04587E-09 -1.04094E-09 -1.03601E-09 -1.03109E-09 -1.02618E-09 -1.02127E-09 -1.01637E-09 -1.01148E-09 -1.00659E-09 -1.00171E-09 -9.96834E-10 -9.91965E-10 -9.87102E-10 -9.82246E-10 -9.77395E-10 -9.7255E-10 -9.67711E-10 -9.62878E-10 -9.5805E-10 -9.53229E-10 -9.48412E-10 -9.43602E-10 -9.38797E-10 -9.33998E-10 -9.29204E-10 -9.24415E-10 -9.19632E-10 -9.14855E-10 -9.10082E-10 -9.05316E-10 -9.00554E-10 -8.95798E-10 -8.91046E-10 -8.86301E-10 -8.8156E-10 -8.76824E-10 -8.72094E-10 -8.67369E-10 -8.62648E-10 -8.57933E-10 -8.53223E-10 -8.48518E-10 -8.43819E-10 -8.39124E-10 -8.34434E-10 -8.29749E-10 -8.25069E-10 -8.20394E-10 -8.15724E-10 -8.1106E-10 -8.064E-10 -8.01745E-10 -7.97095E-10 -7.9245E-10 -7.8781E-10 -7.83175E-10 -7.78545E-10 -7.7392E-10 -7.69299E-10 -7.64684E-10 -7.60074E-10 -7.55469E-10 -7.50868E-10 -7.46273E-10 -7.41683E-10 -7.37097E-10 -7.32517E-10 -7.27942E-10 -7.23371E-10 -7.18806E-10 -7.14245E-10 -7.0969E-10 -7.0514E-10 -7.00594E-10 -6.96054E-10 -6.91518E-10 -6.86988E-10 -6.82462E-10 -6.77942E-10 -6.73426E-10 -6.68915E-10 -6.6441E-10 -6.59909E-10 -6.55413E-10 -6.50922E-10 -6.46436E-10 -6.41955E-10 -6.37479E-10 -6.33007E-10 -6.28541E-10 -6.24079E-10 -6.19621E-10 -6.15168E-10 -6.1072E-10 -6.06276E-10 -6.01837E-10 -5.97402E-10 -5.92971E-10 -5.88545E-10 -5.84122E-10 -5.79703E-10 -5.75288E-10 -5.70876E-10 -5.66468E-10 -5.62063E-10 -5.5766E-10 -5.5326E-10 -5.48862E-10 -5.44466E-10 -5.40071E-10 -5.35676E-10 -5.31282E-10 -5.26886E-10 -5.22489E-10 -5.18088E-10 -5.13684E-10 -5.09273E-10 -5.04854E-10 -5.00424E-10 -4.9598E-10 -4.91518E-10 -4.87033E-10 -4.82517E-10 -4.77962E-10 -4.73355E-10 -4.68678E-10 -4.63908E-10 -4.5901E-10 -4.53931E-10 -4.48593E-10 -4.42868E-10 -4.36549E-10 -4.29279E-10 -4.20419E-10 -4.08779E-10 -3.9211E-10 -3.66235E-10 -3.24096E-10 -2.55771E-10 -1.5054E-10 3.95305E-13 2.18927E-10 5.36491E-10 9.80216E-10 1.59482E-09 2.45411E-09 3.66977E-09 5.40142E-09 7.87272E-09 1.13951E-08 1.64005E-08 +-9.3475E-10 -9.3081E-10 -9.26878E-10 -9.22953E-10 -9.19036E-10 -9.15125E-10 -9.11223E-10 -9.07327E-10 -9.03439E-10 -8.99557E-10 -8.95683E-10 -8.91815E-10 -8.87954E-10 -8.84101E-10 -8.80253E-10 -8.76413E-10 -8.72579E-10 -8.68751E-10 -8.6493E-10 -8.61115E-10 -8.57307E-10 -8.53505E-10 -8.49709E-10 -8.45919E-10 -8.42135E-10 -8.38357E-10 -8.34585E-10 -8.30818E-10 -8.27058E-10 -8.23303E-10 -8.19554E-10 -8.15811E-10 -8.12073E-10 -8.0834E-10 -8.04613E-10 -8.00892E-10 -7.97175E-10 -7.93464E-10 -7.89758E-10 -7.86058E-10 -7.82362E-10 -7.78671E-10 -7.74986E-10 -7.71305E-10 -7.67629E-10 -7.63958E-10 -7.60292E-10 -7.56631E-10 -7.52974E-10 -7.49322E-10 -7.45675E-10 -7.42032E-10 -7.38393E-10 -7.3476E-10 -7.3113E-10 -7.27505E-10 -7.23885E-10 -7.20268E-10 -7.16657E-10 -7.13049E-10 -7.09445E-10 -7.05846E-10 -7.02251E-10 -6.9866E-10 -6.95073E-10 -6.91491E-10 -6.87912E-10 -6.84338E-10 -6.80767E-10 -6.772E-10 -6.73638E-10 -6.70079E-10 -6.66524E-10 -6.62973E-10 -6.59426E-10 -6.55883E-10 -6.52344E-10 -6.48808E-10 -6.45277E-10 -6.41749E-10 -6.38225E-10 -6.34705E-10 -6.31188E-10 -6.27676E-10 -6.24167E-10 -6.20662E-10 -6.1716E-10 -6.13662E-10 -6.10169E-10 -6.06678E-10 -6.03192E-10 -5.99709E-10 -5.9623E-10 -5.92755E-10 -5.89283E-10 -5.85815E-10 -5.82351E-10 -5.7889E-10 -5.75434E-10 -5.71981E-10 -5.68531E-10 -5.65086E-10 -5.61644E-10 -5.58206E-10 -5.54771E-10 -5.5134E-10 -5.47913E-10 -5.4449E-10 -5.41071E-10 -5.37655E-10 -5.34243E-10 -5.30834E-10 -5.2743E-10 -5.24029E-10 -5.20632E-10 -5.17238E-10 -5.13849E-10 -5.10463E-10 -5.07081E-10 -5.03702E-10 -5.00327E-10 -4.96956E-10 -4.93589E-10 -4.90225E-10 -4.86865E-10 -4.83509E-10 -4.80156E-10 -4.76807E-10 -4.73462E-10 -4.7012E-10 -4.66781E-10 -4.63446E-10 -4.60115E-10 -4.56787E-10 -4.53462E-10 -4.50141E-10 -4.46822E-10 -4.43507E-10 -4.40195E-10 -4.36886E-10 -4.3358E-10 -4.30277E-10 -4.26976E-10 -4.23678E-10 -4.20382E-10 -4.17088E-10 -4.13796E-10 -4.10506E-10 -4.07217E-10 -4.03928E-10 -4.0064E-10 -3.97352E-10 -3.94064E-10 -3.90774E-10 -3.87482E-10 -3.84186E-10 -3.80886E-10 -3.7758E-10 -3.74266E-10 -3.70941E-10 -3.67603E-10 -3.64247E-10 -3.60868E-10 -3.5746E-10 -3.54013E-10 -3.50514E-10 -3.46946E-10 -3.43281E-10 -3.39481E-10 -3.35487E-10 -3.31204E-10 -3.26477E-10 -3.21038E-10 -3.14409E-10 -3.057E-10 -2.93229E-10 -2.73872E-10 -2.42345E-10 -1.91228E-10 -1.125E-10 4.22018E-13 1.64072E-10 4.02305E-10 7.358E-10 1.19863E-09 1.84706E-09 2.76646E-09 4.07925E-09 5.95771E-09 8.64298E-09 1.24711E-08 +-6.98958E-10 -6.96012E-10 -6.93071E-10 -6.90135E-10 -6.87205E-10 -6.84281E-10 -6.81362E-10 -6.78448E-10 -6.7554E-10 -6.72637E-10 -6.69739E-10 -6.66846E-10 -6.63959E-10 -6.61077E-10 -6.58199E-10 -6.55327E-10 -6.52459E-10 -6.49597E-10 -6.46739E-10 -6.43886E-10 -6.41037E-10 -6.38193E-10 -6.35354E-10 -6.3252E-10 -6.2969E-10 -6.26864E-10 -6.24043E-10 -6.21226E-10 -6.18414E-10 -6.15605E-10 -6.12801E-10 -6.10002E-10 -6.07206E-10 -6.04414E-10 -6.01627E-10 -5.98844E-10 -5.96064E-10 -5.93288E-10 -5.90517E-10 -5.87749E-10 -5.84985E-10 -5.82225E-10 -5.79468E-10 -5.76715E-10 -5.73966E-10 -5.71221E-10 -5.68479E-10 -5.6574E-10 -5.63005E-10 -5.60274E-10 -5.57546E-10 -5.54822E-10 -5.521E-10 -5.49383E-10 -5.46668E-10 -5.43957E-10 -5.41249E-10 -5.38545E-10 -5.35843E-10 -5.33145E-10 -5.3045E-10 -5.27758E-10 -5.25069E-10 -5.22384E-10 -5.19701E-10 -5.17022E-10 -5.14345E-10 -5.11672E-10 -5.09001E-10 -5.06334E-10 -5.03669E-10 -5.01008E-10 -4.98349E-10 -4.95693E-10 -4.9304E-10 -4.90391E-10 -4.87743E-10 -4.85099E-10 -4.82458E-10 -4.7982E-10 -4.77184E-10 -4.74551E-10 -4.71921E-10 -4.69294E-10 -4.6667E-10 -4.64048E-10 -4.6143E-10 -4.58814E-10 -4.562E-10 -4.5359E-10 -4.50983E-10 -4.48378E-10 -4.45776E-10 -4.43177E-10 -4.4058E-10 -4.37987E-10 -4.35396E-10 -4.32808E-10 -4.30222E-10 -4.2764E-10 -4.2506E-10 -4.22483E-10 -4.19909E-10 -4.17337E-10 -4.14769E-10 -4.12203E-10 -4.0964E-10 -4.0708E-10 -4.04522E-10 -4.01968E-10 -3.99416E-10 -3.96867E-10 -3.9432E-10 -3.91777E-10 -3.89236E-10 -3.86698E-10 -3.84163E-10 -3.81631E-10 -3.79102E-10 -3.76575E-10 -3.74051E-10 -3.7153E-10 -3.69011E-10 -3.66496E-10 -3.63983E-10 -3.61472E-10 -3.58965E-10 -3.5646E-10 -3.53958E-10 -3.51459E-10 -3.48962E-10 -3.46468E-10 -3.43976E-10 -3.41487E-10 -3.39001E-10 -3.36517E-10 -3.34035E-10 -3.31556E-10 -3.29079E-10 -3.26604E-10 -3.24131E-10 -3.21661E-10 -3.19192E-10 -3.16726E-10 -3.14261E-10 -3.11797E-10 -3.09335E-10 -3.06874E-10 -3.04414E-10 -3.01955E-10 -2.99496E-10 -2.97037E-10 -2.94577E-10 -2.92117E-10 -2.89655E-10 -2.8719E-10 -2.84722E-10 -2.82249E-10 -2.79771E-10 -2.77284E-10 -2.74788E-10 -2.72278E-10 -2.69751E-10 -2.67202E-10 -2.64624E-10 -2.62008E-10 -2.59339E-10 -2.56598E-10 -2.53756E-10 -2.50769E-10 -2.47566E-10 -2.4403E-10 -2.39963E-10 -2.35005E-10 -2.28493E-10 -2.19166E-10 -2.0469E-10 -1.81112E-10 -1.42884E-10 -8.40068E-11 4.43456E-13 1.22939E-10 3.01553E-10 5.52015E-10 9.00234E-10 1.38902E-09 2.08346E-09 3.0772E-09 4.50257E-09 6.54558E-09 9.46677E-09 +-5.22434E-10 -5.20231E-10 -5.18032E-10 -5.15837E-10 -5.13647E-10 -5.1146E-10 -5.09278E-10 -5.07099E-10 -5.04925E-10 -5.02755E-10 -5.00588E-10 -4.98425E-10 -4.96266E-10 -4.94111E-10 -4.9196E-10 -4.89812E-10 -4.87669E-10 -4.85528E-10 -4.83392E-10 -4.81258E-10 -4.79129E-10 -4.77003E-10 -4.7488E-10 -4.72761E-10 -4.70645E-10 -4.68532E-10 -4.66423E-10 -4.64317E-10 -4.62214E-10 -4.60115E-10 -4.58018E-10 -4.55925E-10 -4.53835E-10 -4.51748E-10 -4.49664E-10 -4.47582E-10 -4.45504E-10 -4.43429E-10 -4.41357E-10 -4.39288E-10 -4.37221E-10 -4.35157E-10 -4.33096E-10 -4.31038E-10 -4.28983E-10 -4.2693E-10 -4.2488E-10 -4.22833E-10 -4.20788E-10 -4.18746E-10 -4.16706E-10 -4.14669E-10 -4.12635E-10 -4.10603E-10 -4.08574E-10 -4.06547E-10 -4.04522E-10 -4.025E-10 -4.0048E-10 -3.98463E-10 -3.96448E-10 -3.94435E-10 -3.92425E-10 -3.90417E-10 -3.88412E-10 -3.86408E-10 -3.84407E-10 -3.82408E-10 -3.80412E-10 -3.78418E-10 -3.76425E-10 -3.74435E-10 -3.72448E-10 -3.70462E-10 -3.68479E-10 -3.66498E-10 -3.64519E-10 -3.62542E-10 -3.60567E-10 -3.58594E-10 -3.56624E-10 -3.54655E-10 -3.52689E-10 -3.50725E-10 -3.48763E-10 -3.46803E-10 -3.44845E-10 -3.42889E-10 -3.40936E-10 -3.38984E-10 -3.37035E-10 -3.35087E-10 -3.33142E-10 -3.31199E-10 -3.29257E-10 -3.27318E-10 -3.25381E-10 -3.23446E-10 -3.21513E-10 -3.19583E-10 -3.17654E-10 -3.15727E-10 -3.13803E-10 -3.1188E-10 -3.0996E-10 -3.08041E-10 -3.06125E-10 -3.04211E-10 -3.02299E-10 -3.00389E-10 -2.98481E-10 -2.96575E-10 -2.94672E-10 -2.9277E-10 -2.90871E-10 -2.88973E-10 -2.87078E-10 -2.85185E-10 -2.83293E-10 -2.81404E-10 -2.79517E-10 -2.77632E-10 -2.7575E-10 -2.73869E-10 -2.7199E-10 -2.70113E-10 -2.68239E-10 -2.66366E-10 -2.64495E-10 -2.62627E-10 -2.6076E-10 -2.58895E-10 -2.57033E-10 -2.55172E-10 -2.53313E-10 -2.51455E-10 -2.496E-10 -2.47747E-10 -2.45895E-10 -2.44045E-10 -2.42196E-10 -2.40349E-10 -2.38503E-10 -2.36659E-10 -2.34816E-10 -2.32975E-10 -2.31134E-10 -2.29294E-10 -2.27455E-10 -2.25616E-10 -2.23778E-10 -2.21939E-10 -2.20101E-10 -2.18261E-10 -2.1642E-10 -2.14578E-10 -2.12732E-10 -2.10884E-10 -2.09031E-10 -2.07172E-10 -2.05305E-10 -2.03429E-10 -2.0154E-10 -1.99634E-10 -1.97707E-10 -1.95751E-10 -1.93755E-10 -1.91706E-10 -1.89581E-10 -1.87348E-10 -1.84954E-10 -1.8231E-10 -1.79269E-10 -1.75563E-10 -1.70694E-10 -1.63722E-10 -1.52899E-10 -1.35272E-10 -1.06693E-10 -6.26756E-11 4.60188E-13 9.2114E-11 2.2596E-10 4.13939E-10 6.7572E-10 1.04381E-09 1.56774E-09 2.31896E-09 3.39885E-09 4.95045E-09 7.17501E-09 diff --git a/paranoia_parallel/examples/xspice/table/bsim4p-3d-1.table b/paranoia_parallel/examples/xspice/table/bsim4p-3d-1.table new file mode 100644 index 000000000..26a2aa14f --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/bsim4p-3d-1.table @@ -0,0 +1,493 @@ +* 3D table for pmos bsim 4 +*x +39 +*y +39 +*z +12 +*x row +-1.8 -1.75 -1.7 -1.65 -1.6 -1.55 -1.5 -1.45 -1.4 -1.35 -1.3 -1.25 -1.2 -1.15 -1.1 -1.05 -1 -0.95 -0.9 -0.85 -0.8 -0.75 -0.7 -0.65 -0.6 -0.55 -0.5 -0.45 -0.4 -0.35 -0.3 -0.25 -0.2 -0.15 -0.1 -0.05 9.85323E-16 0.05 0.1 +*y column +-1.8 -1.75 -1.7 -1.65 -1.6 -1.55 -1.5 -1.45 -1.4 -1.35 -1.3 -1.25 -1.2 -1.15 -1.1 -1.05 -1 -0.95 -0.9 -0.85 -0.8 -0.75 -0.7 -0.65 -0.6 -0.55 -0.5 -0.45 -0.4 -0.35 -0.3 -0.25 -0.2 -0.15 -0.1 -0.05 9.85323E-16 0.05 0.1 +*z tables +-0.4 -0.2 0 0.2 0.4 0.6 0.8 1 1.2 1.4 1.6 1.8 +*table -0.4 +-0.00272146 -0.00270734 -0.00269291 -0.00267817 -0.00266308 -0.0026476 -0.00263171 -0.00261535 -0.00259848 -0.00258103 -0.00256293 -0.00254409 -0.00252439 -0.00250365 -0.00248156 -0.00245757 -0.00243069 -0.00239949 -0.00236235 -0.00231784 -0.00226491 -0.00220284 -0.00213114 -0.00204945 -0.00195754 -0.00185519 -0.00174224 -0.00161855 -0.00148399 -0.00133843 -0.00118175 -0.00101384 -0.000834594 -0.000643884 -0.000441593 -0.000227587 -1.71424E-06 0.000227421 0.000451337 +-0.00266895 -0.00265517 -0.00264112 -0.00262677 -0.00261209 -0.00259705 -0.00258163 -0.00256577 -0.00254944 -0.00253258 -0.00251511 -0.00249696 -0.00247802 -0.00245814 -0.0024371 -0.00241449 -0.00238956 -0.00236108 -0.00232741 -0.0022869 -0.00223819 -0.00218032 -0.00211267 -0.00203479 -0.00194638 -0.00184719 -0.00173704 -0.00161576 -0.0014832 -0.00133923 -0.00118372 -0.00101654 -0.000837574 -0.00064669 -0.000443764 -0.000228661 -1.2306E-06 0.000229677 0.000455303 +-0.00261367 -0.00260023 -0.00258655 -0.00257258 -0.00255831 -0.00254372 -0.00252876 -0.0025134 -0.0024976 -0.00248131 -0.00246447 -0.002447 -0.0024288 -0.00240976 -0.00238969 -0.00236829 -0.00234502 -0.0023189 -0.00228844 -0.00225185 -0.00220746 -0.00215404 -0.00209075 -0.00201701 -0.00193245 -0.00183677 -0.00172974 -0.00161119 -0.00148094 -0.00133885 -0.00118476 -0.00101855 -0.000840084 -0.000649221 -0.000445829 -0.000229766 -8.80867E-07 0.000231729 0.00045903 +-0.00255543 -0.00254234 -0.00252902 -0.00251544 -0.00250159 -0.00248742 -0.00247293 -0.00245806 -0.00244279 -0.00242707 -0.00241084 -0.00239403 -0.00237656 -0.00235833 -0.00233917 -0.00231887 -0.00229703 -0.00227293 -0.00224532 -0.00221244 -0.0021724 -0.00212362 -0.00206498 -0.00199573 -0.00191538 -0.00182357 -0.00172003 -0.00160455 -0.00147694 -0.00133704 -0.00118467 -0.00101971 -0.000841983 -0.000651363 -0.000447697 -0.000230838 -6.29221E-07 0.000233588 0.000462499 +-0.00249408 -0.00248134 -0.00246838 -0.00245519 -0.00244174 -0.00242801 -0.00241397 -0.0023996 -0.00238485 -0.00236968 -0.00235405 -0.0023379 -0.00232115 -0.00230369 -0.00228542 -0.00226614 -0.00224557 -0.00222318 -0.00219801 -0.00216851 -0.00213271 -0.00208868 -0.00203495 -0.00197053 -0.00189478 -0.00180723 -0.00170757 -0.00159555 -0.00147095 -0.00133357 -0.00118326 -0.00101983 -0.000843131 -0.000653003 -0.000449288 -0.000231825 -4.48856E-07 0.000235252 0.000465684 +-0.00242946 -0.00241706 -0.00240447 -0.00239166 -0.00237862 -0.00236532 -0.00235174 -0.00233785 -0.00232362 -0.002309 -0.00229397 -0.00227845 -0.00226239 -0.00224571 -0.00222828 -0.00220997 -0.00219055 -0.00216964 -0.00214653 -0.00212 -0.00208816 -0.00204887 -0.00200026 -0.00194101 -0.00187024 -0.00178738 -0.00169202 -0.00158387 -0.00146267 -0.00132821 -0.0011803 -0.00101875 -0.000843381 -0.000654029 -0.000450517 -0.000232673 -3.19989E-07 0.000236712 0.000468549 +-0.00236141 -0.00234936 -0.00233713 -0.00232471 -0.00231208 -0.00229921 -0.00228608 -0.00227267 -0.00225895 -0.00224488 -0.00223043 -0.00221554 -0.00220017 -0.00218423 -0.00216762 -0.00215024 -0.00213189 -0.00211229 -0.00209094 -0.00206691 -0.00203863 -0.0020039 -0.00196051 -0.00190672 -0.00184133 -0.00176359 -0.00167299 -0.00156915 -0.00145179 -0.00132067 -0.00117556 -0.00101626 -0.000842577 -0.000654321 -0.000451303 -0.000233336 -2.28154E-07 0.000237952 0.00047105 +-0.00228979 -0.00227809 -0.00226623 -0.0022542 -0.00224197 -0.00222953 -0.00221686 -0.00220393 -0.00219071 -0.00217718 -0.00216331 -0.00214904 -0.00213433 -0.00211911 -0.00210331 -0.00208681 -0.00206947 -0.00205107 -0.00203125 -0.00200933 -0.0019841 -0.00195358 -0.00191536 -0.00186723 -0.0018076 -0.00173543 -0.00165006 -0.00155103 -0.00143799 -0.00131066 -0.00116879 -0.00101216 -0.000840551 -0.000653751 -0.000451558 -0.000233764 -1.62856E-07 0.000238947 0.000473131 +-0.00221453 -0.00220318 -0.00219169 -0.00218005 -0.00216823 -0.00215622 -0.002144 -0.00213154 -0.00211883 -0.00210584 -0.00209253 -0.00207887 -0.00206481 -0.00205031 -0.00203528 -0.00201963 -0.00200326 -0.00198597 -0.0019675 -0.00194737 -0.0019247 -0.00189788 -0.00186457 -0.00182218 -0.00176861 -0.00170246 -0.00162282 -0.00152911 -0.00142091 -0.00129787 -0.00115973 -0.00100623 -0.000837121 -0.000652182 -0.000451186 -0.000233906 -1.16521E-07 0.000239665 0.000474729 +-0.00213562 -0.00212462 -0.0021135 -0.00210225 -0.00209084 -0.00207926 -0.00206749 -0.00205551 -0.0020433 -0.00203084 -0.00201809 -0.00200503 -0.00199162 -0.0019778 -0.00196352 -0.0019487 -0.00193324 -0.001917 -0.00189977 -0.00188119 -0.00186065 -0.00183695 -0.00180807 -0.00177128 -0.00172399 -0.00166425 -0.00159085 -0.001503 -0.00140018 -0.00128198 -0.00114809 -0.000998216 -0.000832094 -0.000649467 -0.000450088 -0.00023371 -8.37048E-08 0.000240069 0.000475769 +-0.00205297 -0.00204233 -0.00203158 -0.00202072 -0.00200973 -0.00199858 -0.00198726 -0.00197576 -0.00196405 -0.00195211 -0.00193992 -0.00192745 -0.00191467 -0.00190153 -0.00188798 -0.00187396 -0.00185938 -0.00184412 -0.00182803 -0.00181084 -0.0017921 -0.00177098 -0.0017459 -0.00171435 -0.00167334 -0.00162035 -0.00155367 -0.00147225 -0.00137539 -0.00126262 -0.00113355 -0.000987866 -0.000825257 -0.000645445 -0.000448157 -0.000233119 -6.05037E-08 0.000240113 0.000476164 +-0.00196653 -0.00195625 -0.00194588 -0.00193542 -0.00192483 -0.00191412 -0.00190326 -0.00189223 -0.00188101 -0.0018696 -0.00185796 -0.00184608 -0.00183391 -0.00182144 -0.0018086 -0.00179535 -0.00178162 -0.00176731 -0.00175228 -0.00173635 -0.00171918 -0.0017002 -0.00167827 -0.00165132 -0.00161637 -0.00157031 -0.00151081 -0.00143638 -0.00134611 -0.0012394 -0.00111578 -0.000974885 -0.000816376 -0.00063994 -0.000445272 -0.000232073 -4.41291E-08 0.000239748 0.000475818 +-0.00187625 -0.00186634 -0.00185636 -0.0018463 -0.00183613 -0.00182585 -0.00181545 -0.00180489 -0.00179418 -0.00178329 -0.0017722 -0.00176089 -0.00174934 -0.00173752 -0.00172538 -0.00171288 -0.00169996 -0.00168655 -0.00167253 -0.00165776 -0.00164199 -0.00162481 -0.00160545 -0.00158237 -0.00155295 -0.00151377 -0.00146178 -0.0013949 -0.00131187 -0.00121188 -0.00109439 -0.000958956 -0.000805194 -0.000632755 -0.000441302 -0.000230504 -3.25928E-08 0.000238915 0.000474624 +-0.00178215 -0.00177261 -0.00176302 -0.00175336 -0.00174362 -0.00173379 -0.00172384 -0.00171377 -0.00170355 -0.00169318 -0.00168264 -0.00167191 -0.00166096 -0.00164978 -0.00163832 -0.00162655 -0.00161443 -0.00160188 -0.00158882 -0.00157513 -0.00156063 -0.00154502 -0.00152777 -0.00150783 -0.00148315 -0.00145048 -0.00140616 -0.00134732 -0.00127216 -0.00117962 -0.00106899 -0.000939736 -0.000791431 -0.000623678 -0.000436102 -0.000228339 -2.44801E-08 0.00023755 0.000472462 +-0.00168426 -0.0016751 -0.00166591 -0.00165667 -0.00164736 -0.00163797 -0.00162849 -0.00161889 -0.00160918 -0.00159934 -0.00158934 -0.00157918 -0.00156883 -0.00155828 -0.00154749 -0.00153644 -0.00152509 -0.00151337 -0.00150122 -0.00148855 -0.00147521 -0.001461 -0.00144554 -0.00142813 -0.00140732 -0.00138043 -0.00134361 -0.00129315 -0.0012265 -0.00114213 -0.00103913 -0.000916852 -0.000774781 -0.000612474 -0.000429514 -0.000225496 -1.87858E-08 0.000235579 0.000469198 +-0.00158267 -0.00157391 -0.00156513 -0.00155631 -0.00154744 -0.0015385 -0.00152949 -0.00152038 -0.00151118 -0.00150186 -0.00149241 -0.00148282 -0.00147307 -0.00146314 -0.00145301 -0.00144266 -0.00143205 -0.00142114 -0.00140987 -0.00139816 -0.00138591 -0.00137296 -0.00135905 -0.00134371 -0.00132598 -0.00130389 -0.00127399 -0.001232 -0.00117438 -0.00109893 -0.00100438 -0.000889909 -0.000754918 -0.000598892 -0.000421364 -0.000221886 -1.4797E-08 0.000232922 0.000464682 +-0.00147755 -0.0014692 -0.00146084 -0.00145246 -0.00144403 -0.00143556 -0.00142702 -0.00141841 -0.00140971 -0.00140092 -0.00139202 -0.001383 -0.00137384 -0.00136454 -0.00135506 -0.0013454 -0.00133552 -0.00132539 -0.00131496 -0.00130417 -0.00129294 -0.00128115 -0.00126862 -0.00125502 -0.00123973 -0.00122145 -0.0011975 -0.00116362 -0.00111535 -0.00104951 -0.000964247 -0.000858489 -0.000731491 -0.000582659 -0.000411466 -0.000217414 -1.20089E-08 0.000229489 0.00045875 +-0.00136914 -0.00136122 -0.00135329 -0.00134535 -0.00133739 -0.00132938 -0.00132133 -0.00131322 -0.00130504 -0.00129678 -0.00128843 -0.00127998 -0.00127142 -0.00126273 -0.00125391 -0.00124492 -0.00123575 -0.00122638 -0.00121676 -0.00120685 -0.00119659 -0.00118588 -0.00117459 -0.0011625 -0.0011492 -0.00113387 -0.00111468 -0.00108807 -0.00104911 -0.000993415 -0.000918273 -0.000822162 -0.000704134 -0.000563485 -0.000399618 -0.000211973 -1.00646E-08 0.000225181 0.000451221 +-0.00125777 -0.00125029 -0.00124282 -0.00123534 -0.00122784 -0.00122032 -0.00121277 -0.00120517 -0.00119751 -0.00118979 -0.001182 -0.00117412 -0.00116616 -0.00115809 -0.0011499 -0.00114158 -0.00113312 -0.00112448 -0.00111565 -0.00110659 -0.00109724 -0.00108754 -0.00107739 -0.00106664 -0.00105501 -0.00104199 -0.00102644 -0.00100582 -0.000975558 -0.000930281 -0.000866009 -0.000780496 -0.00067247 -0.000541071 -0.000385607 -0.000205453 -8.71213E-09 0.000219891 0.000441899 +-0.0011439 -0.00113688 -0.00112988 -0.00112287 -0.00111587 -0.00110884 -0.00110179 -0.00109471 -0.00108759 -0.00108042 -0.00107319 -0.00106589 -0.00105852 -0.00105107 -0.00104352 -0.00103587 -0.0010281 -0.00102019 -0.00101212 -0.00100387 -0.000995395 -0.000986647 -0.000977554 -0.000968005 -0.000957823 -0.000946678 -0.00093388 -0.000917833 -0.000895042 -0.000859927 -0.000807073 -0.000733081 -0.000636126 -0.000515109 -0.000369215 -0.000197737 -7.77382E-09 0.000213507 0.000430572 +-0.00102812 -0.00102159 -0.00101507 -0.00100856 -0.00100205 -0.000995538 -0.000989011 -0.000982463 -0.000975884 -0.000969269 -0.000962609 -0.000955898 -0.000949128 -0.000942292 -0.000935382 -0.000928388 -0.0009213 -0.000914104 -0.000906785 -0.000899321 -0.000891684 -0.000883838 -0.000875731 -0.000867284 -0.000858377 -0.0008488 -0.000838139 -0.000825458 -0.000808494 -0.000782541 -0.000741236 -0.00067956 -0.000594746 -0.000485296 -0.000350219 -0.000188703 -7.12479E-09 0.000205907 0.000417017 +-0.000911185 -0.00090515 -0.000899139 -0.000893144 -0.000887158 -0.000881172 -0.000875182 -0.000869178 -0.000863155 -0.000857106 -0.000851024 -0.000844905 -0.00083874 -0.000832525 -0.000826252 -0.000819915 -0.000813505 -0.000807012 -0.000800425 -0.000793726 -0.000786898 -0.000779911 -0.00077273 -0.0007653 -0.00075754 -0.000749314 -0.000740371 -0.00073018 -0.000717437 -0.000698918 -0.000668561 -0.000619697 -0.000548026 -0.000451352 -0.000328402 -0.000178231 -6.67729E-09 0.000196968 0.000401001 +-0.000794035 -0.000788527 -0.000783045 -0.000777584 -0.000772136 -0.000766696 -0.000761257 -0.000755812 -0.000750357 -0.000744885 -0.000739391 -0.00073387 -0.000728317 -0.000722726 -0.000717093 -0.000711411 -0.000705675 -0.000699876 -0.000694007 -0.000688056 -0.000682008 -0.000675845 -0.000669541 -0.000663058 -0.000656342 -0.000649305 -0.000641796 -0.000633512 -0.000623748 -0.000610644 -0.00058966 -0.000553486 -0.000495762 -0.000413043 -0.000303572 -0.000166207 -6.36985E-09 0.000186565 0.000382289 +-0.000677847 -0.00067289 -0.00066796 -0.000663054 -0.000658164 -0.000653286 -0.000648414 -0.000643544 -0.000638669 -0.000633786 -0.000628889 -0.000623975 -0.000619039 -0.000614077 -0.000609084 -0.000604057 -0.000598991 -0.00059388 -0.000588718 -0.000583497 -0.000578208 -0.000572836 -0.000567366 -0.000561771 -0.000556015 -0.000550045 -0.000543766 -0.000537007 -0.000529396 -0.000519969 -0.000506027 -0.000481378 -0.000437942 -0.000370226 -0.000275576 -0.000152532 -6.15946E-09 0.000174581 0.00036065 +-0.000564075 -0.000559692 -0.000555337 -0.000551005 -0.000546692 -0.000542393 -0.000538105 -0.000533822 -0.00052954 -0.000525256 -0.000520966 -0.000516666 -0.000512353 -0.000508023 -0.000503673 -0.000499299 -0.000494899 -0.000490469 -0.000486004 -0.000481499 -0.000476946 -0.000472339 -0.000467664 -0.000462907 -0.000458043 -0.000453039 -0.00044784 -0.000442348 -0.000436366 -0.000429425 -0.000420174 -0.000404664 -0.000374924 -0.000322929 -0.000244348 -0.000137138 -6.01611E-09 0.00016091 0.000335873 +-0.000454517 -0.000450728 -0.000446967 -0.000443228 -0.000439508 -0.000435805 -0.000432113 -0.00042843 -0.000424752 -0.000421077 -0.0004174 -0.00041372 -0.000410033 -0.000406337 -0.000402629 -0.000398907 -0.000395169 -0.000391411 -0.000387631 -0.000383826 -0.000379991 -0.00037612 -0.000372208 -0.000368242 -0.000364211 -0.000360092 -0.000355854 -0.000351444 -0.000346758 -0.000341571 -0.000335276 -0.000325916 -0.000307797 -0.0002715 -0.000209973 -0.000120022 -5.91893E-09 0.00014548 0.000307782 +-0.000351402 -0.000348224 -0.000345071 -0.000341938 -0.000338825 -0.000335726 -0.000332641 -0.000329566 -0.000326498 -0.000323435 -0.000320376 -0.000317316 -0.000314255 -0.000311191 -0.000308121 -0.000305044 -0.000301959 -0.000298862 -0.000295754 -0.00029263 -0.00028949 -0.000286329 -0.000283143 -0.000279927 -0.000276673 -0.000273368 -0.000269996 -0.000266526 -0.000262908 -0.000259036 -0.000254648 -0.000248933 -0.000238986 -0.000216912 -0.000172831 -0.000101299 -5.85341E-09 0.000128271 0.000276276 +-0.000257474 -0.000254913 -0.000252374 -0.000249852 -0.000247347 -0.000244857 -0.000242378 -0.00023991 -0.00023745 -0.000234997 -0.000232549 -0.000230104 -0.00022766 -0.000225217 -0.000222773 -0.000220327 -0.000217877 -0.000215424 -0.000212964 -0.000210498 -0.000208023 -0.000205539 -0.000203042 -0.000200529 -0.000197997 -0.000195439 -0.000192846 -0.000190203 -0.000187485 -0.000184645 -0.000181573 -0.000177964 -0.000172691 -0.000161354 -0.00013385 -8.13088E-05 -5.80953E-09 0.000109372 0.000241382 +-0.000175956 -0.000174003 -0.000172065 -0.000170143 -0.000168234 -0.000166336 -0.00016445 -0.000162573 -0.000160703 -0.000158841 -0.000156984 -0.000155131 -0.000153282 -0.000151435 -0.00014959 -0.000147746 -0.000145902 -0.000144057 -0.000142212 -0.000140364 -0.000138514 -0.00013666 -0.000134802 -0.000132938 -0.000131066 -0.000129182 -0.000127283 -0.000125362 -0.000123407 -0.000121398 -0.000119292 -0.000116979 -0.000114087 -0.000108959 -9.49526E-05 -6.07951E-05 -5.78034E-09 8.90732E-05 0.000203357 +-0.000110118 -0.000108732 -0.000107358 -0.000105996 -0.000104643 -0.000103299 -0.000101964 -0.000100636 -9.93143E-05 -9.79988E-05 -9.66883E-05 -9.53822E-05 -9.40799E-05 -9.27809E-05 -9.14845E-05 -9.01904E-05 -8.8898E-05 -8.76072E-05 -8.63175E-05 -8.50286E-05 -8.37401E-05 -8.24517E-05 -8.11629E-05 -7.98731E-05 -7.85814E-05 -7.72865E-05 -7.59866E-05 -7.46789E-05 -7.33587E-05 -7.20179E-05 -7.06404E-05 -6.91882E-05 -6.75475E-05 -6.52363E-05 -5.95611E-05 -4.11166E-05 -5.76111E-09 6.80181E-05 0.000162888 +-6.20998E-05 -6.12064E-05 -6.03207E-05 -5.94423E-05 -5.85706E-05 -5.77051E-05 -5.68453E-05 -5.59907E-05 -5.51408E-05 -5.42953E-05 -5.34537E-05 -5.26156E-05 -5.17807E-05 -5.09486E-05 -5.01192E-05 -4.92921E-05 -4.84671E-05 -4.76441E-05 -4.68229E-05 -4.60033E-05 -4.51853E-05 -4.43687E-05 -4.35533E-05 -4.27388E-05 -4.19251E-05 -4.11116E-05 -4.02976E-05 -3.94822E-05 -3.86635E-05 -3.78387E-05 -3.7002E-05 -3.61412E-05 -3.52223E-05 -3.41173E-05 -3.2072E-05 -2.42648E-05 -5.74855E-09 4.74209E-05 0.000121436 +-3.1342E-05 -3.08291E-05 -3.03207E-05 -2.98165E-05 -2.93162E-05 -2.88197E-05 -2.83266E-05 -2.78366E-05 -2.73496E-05 -2.68654E-05 -2.63837E-05 -2.59043E-05 -2.54271E-05 -2.49519E-05 -2.44786E-05 -2.4007E-05 -2.35371E-05 -2.30688E-05 -2.2602E-05 -2.21367E-05 -2.16728E-05 -2.12104E-05 -2.07492E-05 -2.02893E-05 -1.98307E-05 -1.9373E-05 -1.89162E-05 -1.84598E-05 -1.80034E-05 -1.75459E-05 -1.70854E-05 -1.66181E-05 -1.61339E-05 -1.55985E-05 -1.48263E-05 -1.21623E-05 -5.74047E-09 2.91629E-05 8.17469E-05 +-1.4211E-05 -1.39526E-05 -1.36964E-05 -1.34425E-05 -1.31905E-05 -1.29405E-05 -1.26923E-05 -1.24457E-05 -1.22007E-05 -1.19572E-05 -1.17151E-05 -1.14742E-05 -1.12346E-05 -1.09961E-05 -1.07587E-05 -1.05224E-05 -1.0287E-05 -1.00527E-05 -9.81924E-06 -9.58674E-06 -9.35516E-06 -9.12449E-06 -8.89472E-06 -8.66583E-06 -8.4378E-06 -8.2106E-06 -7.98416E-06 -7.75837E-06 -7.53305E-06 -7.3079E-06 -7.08231E-06 -6.85507E-06 -6.62311E-06 -6.37671E-06 -6.06774E-06 -5.22644E-06 -5.73535E-09 1.53265E-05 4.80414E-05 +-5.81525E-06 -5.70179E-06 -5.58935E-06 -5.47786E-06 -5.36729E-06 -5.25757E-06 -5.14865E-06 -5.0405E-06 -4.93306E-06 -4.8263E-06 -4.72017E-06 -4.61465E-06 -4.5097E-06 -4.40529E-06 -4.3014E-06 -4.19801E-06 -4.09511E-06 -3.99269E-06 -3.89073E-06 -3.78924E-06 -3.6882E-06 -3.58762E-06 -3.4875E-06 -3.38784E-06 -3.28862E-06 -3.18984E-06 -3.09148E-06 -2.99352E-06 -2.89589E-06 -2.79849E-06 -2.70113E-06 -2.60343E-06 -2.50443E-06 -2.40116E-06 -2.27985E-06 -2.00683E-06 -5.73216E-09 6.86292E-06 2.42302E-05 +-2.14499E-06 -2.10155E-06 -2.05849E-06 -2.01582E-06 -1.97349E-06 -1.9315E-06 -1.88982E-06 -1.84844E-06 -1.80734E-06 -1.7665E-06 -1.72592E-06 -1.68558E-06 -1.64547E-06 -1.60557E-06 -1.56589E-06 -1.5264E-06 -1.48712E-06 -1.44803E-06 -1.40913E-06 -1.37041E-06 -1.33189E-06 -1.29356E-06 -1.25541E-06 -1.21745E-06 -1.17968E-06 -1.1421E-06 -1.10469E-06 -1.06746E-06 -1.03037E-06 -9.9341E-07 -9.56508E-07 -9.19539E-07 -8.82199E-07 -8.43559E-07 -7.99407E-07 -7.09673E-07 -5.73021E-09 2.7122E-06 1.064E-05 +-7.15759E-07 -7.01075E-07 -6.86526E-07 -6.72103E-07 -6.57801E-07 -6.43613E-07 -6.29533E-07 -6.15555E-07 -6.01674E-07 -5.87885E-07 -5.74183E-07 -5.60563E-07 -5.47023E-07 -5.33558E-07 -5.20167E-07 -5.06846E-07 -4.93594E-07 -4.8041E-07 -4.67293E-07 -4.54242E-07 -4.41258E-07 -4.28339E-07 -4.15487E-07 -4.02701E-07 -3.89982E-07 -3.77328E-07 -3.64738E-07 -3.52209E-07 -3.39735E-07 -3.27307E-07 -3.14906E-07 -3.02492E-07 -2.89971E-07 -2.77054E-07 -2.62454E-07 -2.34035E-07 -5.72907E-09 9.79055E-07 4.21281E-06 +-2.2123E-07 -2.16739E-07 -2.1229E-07 -2.0788E-07 -2.03506E-07 -1.99169E-07 -1.94864E-07 -1.90591E-07 -1.86348E-07 -1.82133E-07 -1.77946E-07 -1.73784E-07 -1.69646E-07 -1.65532E-07 -1.61441E-07 -1.57372E-07 -1.53325E-07 -1.49298E-07 -1.45293E-07 -1.41308E-07 -1.37343E-07 -1.334E-07 -1.29477E-07 -1.25575E-07 -1.21694E-07 -1.17833E-07 -1.13992E-07 -1.1017E-07 -1.06366E-07 -1.02577E-07 -9.87961E-08 -9.5013E-08 -9.11991E-08 -8.72694E-08 -8.28443E-08 -7.4365E-08 -5.72844E-09 3.24477E-07 1.54824E-06 +-6.69966E-08 -6.57159E-08 -6.4447E-08 -6.31894E-08 -6.19424E-08 -6.07054E-08 -5.94781E-08 -5.82598E-08 -5.70501E-08 -5.58486E-08 -5.46549E-08 -5.34685E-08 -5.22892E-08 -5.11166E-08 -4.99507E-08 -4.8791E-08 -4.76376E-08 -4.64902E-08 -4.53489E-08 -4.42136E-08 -4.30842E-08 -4.19607E-08 -4.08432E-08 -3.97318E-08 -3.86262E-08 -3.75266E-08 -3.64328E-08 -3.53446E-08 -3.42614E-08 -3.31825E-08 -3.21063E-08 -3.10295E-08 -2.9944E-08 -2.88261E-08 -2.75689E-08 -2.5172E-08 -5.72811E-09 9.70822E-08 5.30397E-07 +-2.24334E-08 -2.20837E-08 -2.17373E-08 -2.1394E-08 -2.10535E-08 -2.07159E-08 -2.03808E-08 -2.00483E-08 -1.97181E-08 -1.93901E-08 -1.90643E-08 -1.87405E-08 -1.84186E-08 -1.80986E-08 -1.77804E-08 -1.74639E-08 -1.71491E-08 -1.6836E-08 -1.65246E-08 -1.62148E-08 -1.59066E-08 -1.56001E-08 -1.52952E-08 -1.4992E-08 -1.46904E-08 -1.43904E-08 -1.4092E-08 -1.37951E-08 -1.34997E-08 -1.32054E-08 -1.29118E-08 -1.26181E-08 -1.23221E-08 -1.20173E-08 -1.16746E-08 -1.10223E-08 -5.72798E-09 2.43755E-08 1.67155E-07 +*table -0.2 +-0.00252439 -0.00251117 -0.00249768 -0.00248389 -0.00246978 -0.00245532 -0.00244048 -0.00242522 -0.00240948 -0.00239322 -0.00237637 -0.00235885 -0.00234054 -0.00232127 -0.00230075 -0.00227839 -0.00225323 -0.00222389 -0.00218889 -0.00214698 -0.00209724 -0.00203905 -0.00197198 -0.00189574 -0.00181011 -0.0017149 -0.00160999 -0.00149523 -0.00137051 -0.00123572 -0.00109077 -0.00093554 -0.00076994 -0.000593868 -0.000407216 -0.000209872 -1.70513E-06 0.000209345 0.000415466 +-0.00246895 -0.00245609 -0.00244297 -0.00242958 -0.0024159 -0.00240189 -0.00238752 -0.00237277 -0.00235758 -0.0023419 -0.00232569 -0.00230885 -0.0022913 -0.0022729 -0.00225342 -0.00223248 -0.00220932 -0.00218274 -0.00215122 -0.00211324 -0.00206763 -0.00201356 -0.00195047 -0.00187798 -0.00179583 -0.00170381 -0.00160174 -0.00148948 -0.00136691 -0.0012339 -0.00109034 -0.000936117 -0.000771124 -0.000595253 -0.000408392 -0.000210424 -1.22247E-06 0.000211071 0.000418413 +-0.00241086 -0.00239835 -0.00238561 -0.00237262 -0.00235936 -0.00234579 -0.0023319 -0.00231764 -0.00230299 -0.00228789 -0.0022723 -0.00225613 -0.00223932 -0.00222175 -0.00220324 -0.00218351 -0.00216203 -0.00213785 -0.00210954 -0.00207544 -0.00203408 -0.00198436 -0.00192554 -0.00185713 -0.00177879 -0.00169027 -0.00159137 -0.00148193 -0.0013618 -0.00123084 -0.00108893 -0.000935955 -0.00077179 -0.00059632 -0.000409427 -0.000210988 -8.73442E-07 0.000212572 0.000421074 +-0.00234998 -0.00233782 -0.00232546 -0.00231286 -0.00230001 -0.00228688 -0.00227345 -0.0022597 -0.00224557 -0.00223104 -0.00221606 -0.00220055 -0.00218446 -0.00216769 -0.00215008 -0.00213145 -0.0021114 -0.00208924 -0.00206378 -0.00203337 -0.00199627 -0.00195108 -0.00189681 -0.00183281 -0.00175863 -0.00167397 -0.00157859 -0.00147229 -0.00135492 -0.00122632 -0.00108635 -0.00093489 -0.000771801 -0.000596958 -0.000410235 -0.000211502 -6.22297E-07 0.000213858 0.000423436 +-0.00228616 -0.00227436 -0.00226237 -0.00225016 -0.00223772 -0.00222503 -0.00221207 -0.0021988 -0.00218519 -0.00217122 -0.00215683 -0.00214198 -0.00212659 -0.00211058 -0.00209385 -0.00207622 -0.00205742 -0.00203696 -0.00201393 -0.00198686 -0.00195393 -0.00191338 -0.00186391 -0.00180464 -0.00173499 -0.00165456 -0.00156306 -0.00146028 -0.00134602 -0.00122011 -0.00108241 -0.000932756 -0.00077102 -0.000597059 -0.000410736 -0.000211912 -4.4229E-07 0.00021493 0.000425474 +-0.00221929 -0.00220784 -0.00219621 -0.0021844 -0.00217237 -0.00216012 -0.00214761 -0.00213482 -0.00212173 -0.00210831 -0.00209451 -0.00208029 -0.00206558 -0.00205033 -0.00203442 -0.00201773 -0.00200006 -0.00198105 -0.00196005 -0.0019359 -0.00190685 -0.00187094 -0.00182646 -0.00177223 -0.00170748 -0.00163167 -0.00154447 -0.0014456 -0.00133483 -0.00121199 -0.00107689 -0.000929383 -0.000769307 -0.000596513 -0.000410851 -0.000212168 -3.13675E-07 0.00021578 0.000427155 +-0.00214924 -0.00213814 -0.00212689 -0.00211546 -0.00210385 -0.00209202 -0.00207997 -0.00206766 -0.00205508 -0.0020422 -0.00202898 -0.00201537 -0.00200134 -0.00198681 -0.0019717 -0.00195591 -0.00193928 -0.00192154 -0.00190225 -0.00188055 -0.00185496 -0.00182349 -0.00178409 -0.00173518 -0.00167569 -0.00160493 -0.00152245 -0.00142791 -0.00132106 -0.00120168 -0.00106958 -0.000924583 -0.000766513 -0.000595206 -0.000410497 -0.000212225 -2.22019E-07 0.000216392 0.000428437 +-0.00207591 -0.00206517 -0.00205428 -0.00204325 -0.00203204 -0.00202065 -0.00200905 -0.00199722 -0.00198514 -0.00197279 -0.00196014 -0.00194714 -0.00193376 -0.00191993 -0.0019056 -0.00189067 -0.00187501 -0.00185842 -0.00184059 -0.00182092 -0.00179829 -0.00177089 -0.00173649 -0.00169309 -0.00163921 -0.00157391 -0.00149661 -0.00140687 -0.00130439 -0.00118892 -0.00106024 -0.000918159 -0.000762476 -0.000593014 -0.000409593 -0.000212033 -1.56846E-07 0.000216744 0.000429269 +-0.00199927 -0.00198888 -0.00197837 -0.00196773 -0.00195693 -0.00194597 -0.00193481 -0.00192346 -0.00191188 -0.00190006 -0.00188796 -0.00187556 -0.00186282 -0.00184968 -0.0018361 -0.00182199 -0.00180725 -0.00179173 -0.00177519 -0.00175722 -0.00173702 -0.00171316 -0.00168348 -0.00164562 -0.00159763 -0.00153822 -0.00146656 -0.00138211 -0.00128449 -0.00117341 -0.00104862 -0.000909898 -0.000757027 -0.000589809 -0.000408047 -0.000211547 -1.10599E-07 0.000216807 0.00042959 +-0.00191936 -0.00190933 -0.00189919 -0.00188894 -0.00187855 -0.00186802 -0.00185731 -0.00184643 -0.00183535 -0.00182405 -0.0018125 -0.00180068 -0.00178856 -0.0017761 -0.00176324 -0.00174992 -0.00173605 -0.00172152 -0.00170615 -0.00168964 -0.00167145 -0.00165053 -0.00162506 -0.00159257 -0.00155064 -0.00149747 -0.00143192 -0.00135327 -0.00126103 -0.00115486 -0.00103446 -0.000899581 -0.000749986 -0.000585454 -0.000405769 -0.000210715 -7.78441E-08 0.000216543 0.00042933 +-0.00183615 -0.00182647 -0.00181672 -0.00180685 -0.00179688 -0.00178677 -0.00177652 -0.0017661 -0.00175551 -0.00174472 -0.00173372 -0.00172248 -0.00171097 -0.00169916 -0.001687 -0.00167445 -0.00166142 -0.00164783 -0.00163353 -0.00161831 -0.0016018 -0.00158327 -0.00156136 -0.00153381 -0.00149789 -0.00145125 -0.00139226 -0.00131993 -0.00123363 -0.00113292 -0.00101746 -0.000886961 -0.000741155 -0.0005798 -0.000402655 -0.000209485 -5.46855E-08 0.000215913 0.000428408 +-0.00174962 -0.00174031 -0.00173093 -0.00172147 -0.0017119 -0.00170222 -0.00169242 -0.00168247 -0.00167237 -0.0016621 -0.00165163 -0.00164096 -0.00163005 -0.00161888 -0.0016074 -0.00159558 -0.00158336 -0.00157065 -0.00155736 -0.00154331 -0.00152824 -0.00151167 -0.00149265 -0.00146938 -0.00143919 -0.00139918 -0.00134715 -0.00128167 -0.00120189 -0.00110724 -0.000997309 -0.000871767 -0.000730316 -0.00057268 -0.000398594 -0.0002078 -3.83403E-08 0.000214869 0.000426737 +-0.0016598 -0.00165086 -0.00164186 -0.0016328 -0.00162365 -0.0016144 -0.00160505 -0.00159557 -0.00158595 -0.00157619 -0.00156626 -0.00155615 -0.00154583 -0.00153528 -0.00152448 -0.00151337 -0.00150192 -0.00149006 -0.00147771 -0.00146473 -0.00145095 -0.00143602 -0.00141931 -0.00139956 -0.00137448 -0.00134098 -0.00129617 -0.00123803 -0.00116536 -0.00107741 -0.000973655 -0.000853708 -0.00071723 -0.000563913 -0.000393464 -0.000205597 -2.68244E-08 0.000213358 0.000424216 +-0.00156675 -0.00155818 -0.00154958 -0.00154091 -0.00153218 -0.00152337 -0.00151447 -0.00150546 -0.00149633 -0.00148708 -0.00147768 -0.00146812 -0.00145839 -0.00144845 -0.0014383 -0.00142789 -0.00141719 -0.00140614 -0.00139467 -0.0013827 -0.00137008 -0.00135657 -0.00134175 -0.00132479 -0.00130398 -0.0012765 -0.00123896 -0.00118859 -0.00112362 -0.00104302 -0.000946129 -0.000832465 -0.000701639 -0.000553303 -0.000387131 -0.000202808 -1.87256E-08 0.00021132 0.000420736 +-0.00147057 -0.00146239 -0.00145418 -0.00144592 -0.00143762 -0.00142925 -0.0014208 -0.00141226 -0.00140362 -0.00139488 -0.00138601 -0.001377 -0.00136784 -0.00135852 -0.001349 -0.00133927 -0.00132929 -0.00131902 -0.0013084 -0.00129737 -0.00128581 -0.00127356 -0.00126033 -0.00124558 -0.00122818 -0.00120589 -0.00117531 -0.00113293 -0.00107621 -0.00100364 -0.00091434 -0.000807699 -0.000683262 -0.000540633 -0.000379448 -0.000199357 -1.30409E-08 0.000208688 0.000416171 +-0.00137143 -0.00136364 -0.00135583 -0.001348 -0.00134012 -0.00133219 -0.0013242 -0.00131614 -0.001308 -0.00129976 -0.00129142 -0.00128296 -0.00127438 -0.00126565 -0.00125676 -0.00124769 -0.00123841 -0.00122889 -0.00121909 -0.00120894 -0.00119838 -0.00118726 -0.00117541 -0.00116246 -0.0011477 -0.00112958 -0.00110524 -0.00107077 -0.00102271 -0.000958837 -0.000877876 -0.000779049 -0.0006618 -0.000525673 -0.000370257 -0.000195163 -9.05868E-09 0.000205386 0.000410386 +-0.00126955 -0.00126216 -0.00125477 -0.00124737 -0.00123993 -0.00123245 -0.00122493 -0.00121735 -0.0012097 -0.00120197 -0.00119416 -0.00118625 -0.00117823 -0.0011701 -0.00116183 -0.00115341 -0.00114481 -0.00113602 -0.001127 -0.0011177 -0.00110806 -0.00109799 -0.00108736 -0.00107593 -0.00106324 -0.00104833 -0.00102913 -0.00100202 -0.000962778 -0.000908173 -0.000836318 -0.00074614 -0.000636937 -0.000508174 -0.000359385 -0.000190136 -6.27508E-09 0.000201333 0.00040323 +-0.00116525 -0.00115828 -0.00115132 -0.00114435 -0.00113736 -0.00113035 -0.0011233 -0.0011162 -0.00110905 -0.00110184 -0.00109456 -0.0010872 -0.00107975 -0.0010722 -0.00106454 -0.00105676 -0.00104884 -0.00104075 -0.00103248 -0.00102399 -0.00101523 -0.00100613 -0.000996599 -0.000986476 -0.000975474 -0.000963005 -0.000947754 -0.000926946 -0.000896229 -0.000851283 -0.000789259 -0.000708586 -0.000608341 -0.000487874 -0.00034665 -0.000184182 -4.33381E-09 0.000196438 0.000394537 +-0.00105894 -0.00105241 -0.00104589 -0.00103937 -0.00103284 -0.0010263 -0.00101973 -0.00101312 -0.00100648 -0.000999787 -0.000993039 -0.000986227 -0.000979344 -0.000972382 -0.00096533 -0.000958178 -0.000950913 -0.00094352 -0.000935977 -0.000928258 -0.000920328 -0.000912139 -0.00090362 -0.000894663 -0.000885081 -0.000874519 -0.000862198 -0.000846309 -0.000823208 -0.000787925 -0.000736328 -0.000666014 -0.000575679 -0.000464503 -0.00033186 -0.000177199 -2.98334E-09 0.000190606 0.00038413 +-0.000951146 -0.000945068 -0.000939006 -0.000932952 -0.000926897 -0.000920834 -0.000914756 -0.000908655 -0.000902524 -0.000896358 -0.000890148 -0.000883889 -0.000877573 -0.000871195 -0.000864746 -0.000858218 -0.000851601 -0.000844882 -0.000838046 -0.000831074 -0.000823939 -0.000816606 -0.000809024 -0.000801119 -0.00079277 -0.000783757 -0.000773631 -0.000761335 -0.000744377 -0.000718125 -0.000677258 -0.00061808 -0.000538624 -0.000437789 -0.000314817 -0.000169081 -2.0464E-09 0.000183731 0.000371818 +-0.000842543 -0.000836937 -0.00083135 -0.000825776 -0.000820209 -0.00081464 -0.000809065 -0.000803476 -0.000797867 -0.000792233 -0.000786567 -0.000780864 -0.000775119 -0.000769325 -0.000763477 -0.000757567 -0.000751589 -0.000745533 -0.000739387 -0.000733137 -0.000726764 -0.000720243 -0.000713537 -0.000706597 -0.000699341 -0.000691634 -0.000683214 -0.000673498 -0.000661031 -0.000642399 -0.000611993 -0.000564525 -0.000496882 -0.000407469 -0.000295325 -0.000159719 -1.39828E-09 0.000175706 0.000357399 +-0.000733964 -0.000728848 -0.000723755 -0.000718679 -0.000713614 -0.000708555 -0.000703495 -0.000698429 -0.000693351 -0.000688258 -0.000683142 -0.000678001 -0.000672828 -0.00066762 -0.000662371 -0.000657077 -0.000651731 -0.000646326 -0.000640855 -0.000635307 -0.000629669 -0.000623922 -0.000618042 -0.000611994 -0.000605726 -0.000599152 -0.00059212 -0.00058431 -0.000574951 -0.000562008 -0.000540899 -0.000505256 -0.000450227 -0.000373312 -0.000273199 -0.000149007 -9.51384E-10 0.000166421 0.000340665 +-0.000626442 -0.000621836 -0.000617256 -0.000612696 -0.00060815 -0.000603614 -0.000599083 -0.000594552 -0.000590016 -0.000585472 -0.000580914 -0.000576339 -0.000571743 -0.000567122 -0.000562473 -0.000557791 -0.000553072 -0.000548311 -0.000543502 -0.000538638 -0.000533709 -0.000528704 -0.000523606 -0.000518392 -0.000513027 -0.000507459 -0.000501597 -0.000495267 -0.000488076 -0.000478978 -0.000465101 -0.000440527 -0.000398579 -0.000335152 -0.000248282 -0.000136847 -6.44335E-10 0.000155764 0.000321408 +-0.000521253 -0.00051718 -0.000513132 -0.000509105 -0.000505095 -0.000501098 -0.000497109 -0.000493124 -0.00048914 -0.000485154 -0.00048116 -0.000477158 -0.000473142 -0.000469111 -0.00046506 -0.000460988 -0.000456891 -0.000452765 -0.000448607 -0.000444411 -0.000440171 -0.00043588 -0.000431526 -0.000427095 -0.000422565 -0.000417903 -0.000413058 -0.000407933 -0.000402329 -0.000395751 -0.000386749 -0.000371285 -0.000342145 -0.000292955 -0.000220481 -0.000123166 -4.342E-10 0.000143634 0.000299427 +-0.000419986 -0.000416464 -0.000412966 -0.000409489 -0.000406029 -0.000402584 -0.000399149 -0.000395722 -0.000392299 -0.000388878 -0.000385456 -0.000382029 -0.000378597 -0.000375156 -0.000371703 -0.000368238 -0.000364757 -0.000361258 -0.000357738 -0.000354195 -0.000350624 -0.00034702 -0.000343377 -0.000339685 -0.000335931 -0.000332097 -0.000328152 -0.000324044 -0.000319673 -0.000314811 -0.000308819 -0.000299646 -0.000281725 -0.000246943 -0.000189823 -0.000107936 -2.91021E-10 0.000129951 0.000274546 +-0.000324622 -0.000321667 -0.000318733 -0.000315819 -0.000312921 -0.000310038 -0.000307167 -0.000304304 -0.000301449 -0.000298598 -0.000295749 -0.0002929 -0.00029005 -0.000287197 -0.000284339 -0.000281474 -0.000278601 -0.000275718 -0.000272823 -0.000269915 -0.000266991 -0.000264049 -0.000261083 -0.00025809 -0.000255061 -0.000251985 -0.000248847 -0.00024562 -0.000242252 -0.000238643 -0.000234526 -0.000229062 -0.000219291 -0.000197864 -0.000156582 -9.12288E-05 -1.93946E-10 0.000114676 0.00024664 +-0.000237638 -0.000235256 -0.000232894 -0.000230548 -0.000228217 -0.000225899 -0.000223593 -0.000221295 -0.000219006 -0.000216723 -0.000214444 -0.000212168 -0.000209893 -0.000207619 -0.000205344 -0.000203067 -0.000200787 -0.000198503 -0.000196214 -0.000193919 -0.000191616 -0.000189304 -0.00018698 -0.000184643 -0.000182288 -0.000179909 -0.000177498 -0.000175041 -0.000172515 -0.000169875 -0.000167015 -0.000163627 -0.00015857 -0.000147529 -0.000121509 -7.33103E-05 -1.28495E-10 9.78563E-05 0.000215685 +-0.000162012 -0.000160197 -0.000158396 -0.000156609 -0.000154835 -0.000153072 -0.000151318 -0.000149573 -0.000147835 -0.000146104 -0.000144377 -0.000142655 -0.000140936 -0.000139219 -0.000137504 -0.00013579 -0.000134076 -0.000132362 -0.000130647 -0.00012893 -0.000127211 -0.000125489 -0.000123762 -0.000122031 -0.000120292 -0.000118543 -0.00011678 -0.000114998 -0.000113184 -0.000111322 -0.000109369 -0.00010722 -0.00010451 -9.95995E-05 -8.62668E-05 -5.48149E-05 -8.46489E-11 7.97138E-05 0.000181847 +-0.000100868 -9.95851E-05 -9.83131E-05 -9.70511E-05 -9.57983E-05 -9.4554E-05 -9.33173E-05 -9.20874E-05 -9.08636E-05 -8.96453E-05 -8.84316E-05 -8.7222E-05 -8.6016E-05 -8.4813E-05 -8.36125E-05 -8.24142E-05 -8.12177E-05 -8.00226E-05 -7.88286E-05 -7.76355E-05 -7.6443E-05 -7.52507E-05 -7.40581E-05 -7.28648E-05 -7.16699E-05 -7.04723E-05 -6.92705E-05 -6.80618E-05 -6.68421E-05 -6.5604E-05 -6.43327E-05 -6.2993E-05 -6.14774E-05 -5.93222E-05 -5.39654E-05 -3.69717E-05 -5.549E-11 6.07957E-05 0.000145666 +-5.63667E-05 -5.55459E-05 -5.47322E-05 -5.39251E-05 -5.31242E-05 -5.2329E-05 -5.15389E-05 -5.07537E-05 -4.99728E-05 -4.9196E-05 -4.84227E-05 -4.76527E-05 -4.68856E-05 -4.61212E-05 -4.53592E-05 -4.45994E-05 -4.38417E-05 -4.30858E-05 -4.23316E-05 -4.1579E-05 -4.08279E-05 -4.00782E-05 -3.93296E-05 -3.85821E-05 -3.78354E-05 -3.7089E-05 -3.63423E-05 -3.55945E-05 -3.48441E-05 -3.40883E-05 -3.33222E-05 -3.25347E-05 -3.16947E-05 -3.0684E-05 -2.87983E-05 -2.1657E-05 -3.6263E-11 4.21988E-05 0.000108393 +-2.80778E-05 -2.76127E-05 -2.71517E-05 -2.66946E-05 -2.6241E-05 -2.57908E-05 -2.53436E-05 -2.48994E-05 -2.44578E-05 -2.40187E-05 -2.3582E-05 -2.31473E-05 -2.27147E-05 -2.22838E-05 -2.18547E-05 -2.14272E-05 -2.10013E-05 -2.05768E-05 -2.01538E-05 -1.97321E-05 -1.93117E-05 -1.88927E-05 -1.84749E-05 -1.80583E-05 -1.76428E-05 -1.72284E-05 -1.68147E-05 -1.64016E-05 -1.59886E-05 -1.55747E-05 -1.51583E-05 -1.47361E-05 -1.42991E-05 -1.38165E-05 -1.31199E-05 -1.07176E-05 -2.37128E-11 2.5698E-05 7.25181E-05 +-1.25246E-05 -1.22946E-05 -1.20666E-05 -1.18405E-05 -1.16162E-05 -1.13936E-05 -1.11727E-05 -1.09532E-05 -1.07351E-05 -1.05183E-05 -1.03027E-05 -1.00883E-05 -9.87503E-06 -9.66274E-06 -9.45144E-06 -9.24106E-06 -9.03159E-06 -8.823E-06 -8.61525E-06 -8.40835E-06 -8.20228E-06 -7.99703E-06 -7.7926E-06 -7.58897E-06 -7.38613E-06 -7.18404E-06 -6.98266E-06 -6.78188E-06 -6.58157E-06 -6.38145E-06 -6.18101E-06 -5.97919E-06 -5.77333E-06 -5.55487E-06 -5.28101E-06 -4.53286E-06 -1.56275E-11 1.32903E-05 4.20392E-05 +-5.01887E-06 -4.92023E-06 -4.82247E-06 -4.72554E-06 -4.62941E-06 -4.53401E-06 -4.43932E-06 -4.34529E-06 -4.25187E-06 -4.15905E-06 -4.06678E-06 -3.97503E-06 -3.88378E-06 -3.79301E-06 -3.70269E-06 -3.61281E-06 -3.52335E-06 -3.43431E-06 -3.34568E-06 -3.25745E-06 -3.16963E-06 -3.08221E-06 -2.99518E-06 -2.90856E-06 -2.82234E-06 -2.7365E-06 -2.65103E-06 -2.56592E-06 -2.4811E-06 -2.3965E-06 -2.31195E-06 -2.22712E-06 -2.14119E-06 -2.0516E-06 -1.94625E-06 -1.70704E-06 -1.05032E-11 5.83725E-06 2.07501E-05 +-1.79554E-06 -1.75894E-06 -1.72268E-06 -1.68672E-06 -1.65107E-06 -1.61569E-06 -1.58058E-06 -1.54572E-06 -1.51109E-06 -1.47669E-06 -1.4425E-06 -1.40852E-06 -1.37472E-06 -1.34111E-06 -1.30768E-06 -1.27442E-06 -1.24132E-06 -1.20839E-06 -1.17562E-06 -1.14301E-06 -1.11056E-06 -1.07827E-06 -1.04614E-06 -1.01417E-06 -9.8236E-07 -9.50706E-07 -9.19205E-07 -8.87849E-07 -8.56623E-07 -8.25502E-07 -7.94435E-07 -7.63316E-07 -7.31889E-07 -6.99366E-07 -6.62126E-07 -5.85362E-07 -7.31114E-12 2.2612E-06 8.88921E-06 +-5.72E-07 -5.60146E-07 -5.48399E-07 -5.36756E-07 -5.25209E-07 -5.13754E-07 -5.02387E-07 -4.91102E-07 -4.79895E-07 -4.68763E-07 -4.577E-07 -4.46705E-07 -4.35773E-07 -4.24902E-07 -4.14091E-07 -4.03337E-07 -3.92639E-07 -3.81995E-07 -3.71406E-07 -3.6087E-07 -3.50388E-07 -3.3996E-07 -3.29586E-07 -3.19265E-07 -3.08998E-07 -2.98785E-07 -2.88623E-07 -2.78511E-07 -2.68445E-07 -2.58416E-07 -2.48409E-07 -2.38393E-07 -2.2829E-07 -2.17865E-07 -2.06048E-07 -1.82641E-07 -5.36898E-12 7.9668E-07 3.43496E-06 +-1.64693E-07 -1.61256E-07 -1.57851E-07 -1.54475E-07 -1.51129E-07 -1.47809E-07 -1.44514E-07 -1.41244E-07 -1.37997E-07 -1.34771E-07 -1.31566E-07 -1.28381E-07 -1.25214E-07 -1.22066E-07 -1.18935E-07 -1.15821E-07 -1.12724E-07 -1.09642E-07 -1.06577E-07 -1.03528E-07 -1.00494E-07 -9.74764E-08 -9.44747E-08 -9.14889E-08 -8.8519E-08 -8.5565E-08 -8.26263E-08 -7.97025E-08 -7.67922E-08 -7.38934E-08 -7.10015E-08 -6.81078E-08 -6.51904E-08 -6.21832E-08 -5.87862E-08 -5.21503E-08 -4.228E-12 2.56223E-07 1.2273E-06 +-4.40664E-08 -4.31442E-08 -4.22306E-08 -4.1325E-08 -4.04271E-08 -3.95365E-08 -3.86528E-08 -3.77756E-08 -3.69046E-08 -3.60395E-08 -3.518E-08 -3.43258E-08 -3.34767E-08 -3.26325E-08 -3.1793E-08 -3.09581E-08 -3.01276E-08 -2.93016E-08 -2.84799E-08 -2.76625E-08 -2.68494E-08 -2.60407E-08 -2.52362E-08 -2.44361E-08 -2.36403E-08 -2.28488E-08 -2.20615E-08 -2.12782E-08 -2.04986E-08 -1.97221E-08 -1.89476E-08 -1.81727E-08 -1.73915E-08 -1.65866E-08 -1.56784E-08 -1.39119E-08 -3.59252E-12 7.54052E-08 4.04961E-07 +-1.12629E-08 -1.1027E-08 -1.07932E-08 -1.05616E-08 -1.03319E-08 -1.0104E-08 -9.87796E-09 -9.65357E-09 -9.43078E-09 -9.20949E-09 -8.98964E-09 -8.77116E-09 -8.55399E-09 -8.33808E-09 -8.12338E-09 -7.90986E-09 -7.69749E-09 -7.48625E-09 -7.27614E-09 -7.06713E-09 -6.85923E-09 -6.65244E-09 -6.44676E-09 -6.2422E-09 -6.03875E-09 -5.8364E-09 -5.63513E-09 -5.43489E-09 -5.23561E-09 -5.03714E-09 -4.83917E-09 -4.64111E-09 -4.44148E-09 -4.23579E-09 -4.00379E-09 -3.55311E-09 -3.26902E-12 2.06529E-08 1.2282E-07 +-2.80621E-09 -2.74745E-09 -2.68923E-09 -2.63152E-09 -2.57431E-09 -2.51756E-09 -2.46126E-09 -2.40537E-09 -2.34988E-09 -2.29477E-09 -2.24001E-09 -2.1856E-09 -2.13152E-09 -2.07775E-09 -2.02428E-09 -1.97111E-09 -1.91822E-09 -1.86562E-09 -1.8133E-09 -1.76125E-09 -1.70948E-09 -1.65799E-09 -1.60678E-09 -1.55584E-09 -1.50518E-09 -1.4548E-09 -1.40469E-09 -1.35484E-09 -1.30522E-09 -1.25581E-09 -1.20652E-09 -1.15721E-09 -1.10752E-09 -1.05631E-09 -9.98566E-10 -8.86431E-10 -3.13233E-12 5.3879E-09 3.46111E-08 +*table 0 +-0.00233258 -0.00232034 -0.00230786 -0.00229511 -0.00228208 -0.00226874 -0.00225506 -0.002241 -0.00222653 -0.00221159 -0.00219614 -0.00218009 -0.00216336 -0.00214578 -0.0021271 -0.00210681 -0.002084 -0.00205742 -0.00202566 -0.0019875 -0.00194206 -0.00188874 -0.00182714 -0.00175696 -0.00167801 -0.00159012 -0.00149315 -0.00138699 -0.00127152 -0.00114666 -0.00101231 -0.000868375 -0.000714765 -0.00055139 -0.000378157 -0.000194965 -1.70168E-06 0.000194256 0.000385643 +-0.00227538 -0.00226349 -0.00225138 -0.00223902 -0.00222641 -0.0022135 -0.00220029 -0.00218672 -0.00217278 -0.00215841 -0.00214357 -0.00212818 -0.00211218 -0.00209543 -0.00207774 -0.00205877 -0.00203785 -0.0020139 -0.00198547 -0.00195113 -0.00190974 -0.00186048 -0.00180282 -0.00173639 -0.00166094 -0.00157628 -0.00148224 -0.0013787 -0.00126552 -0.00114262 -0.00100987 -0.000867184 -0.000714462 -0.000551606 -0.000378517 -0.000195092 -1.22001E-06 0.000195554 0.000387768 +-0.00221568 -0.00220415 -0.00219241 -0.00218044 -0.00216824 -0.00215577 -0.00214301 -0.00212993 -0.00211651 -0.0021027 -0.00208845 -0.00207371 -0.00205841 -0.00204244 -0.00202567 -0.00200784 -0.0019885 -0.0019668 -0.00194142 -0.00191081 -0.00187355 -0.00182855 -0.00177511 -0.00171274 -0.00164111 -0.00155999 -0.00146919 -0.00136857 -0.00125797 -0.00113729 -0.00100641 -0.000865212 -0.000713602 -0.00055147 -0.000378711 -0.000195216 -8.71702E-07 0.00019661 0.000389573 +-0.00215338 -0.00214219 -0.00213082 -0.00211924 -0.00210744 -0.0020954 -0.0020831 -0.00207051 -0.00205759 -0.00204433 -0.00203067 -0.00201656 -0.00200194 -0.00198673 -0.00197081 -0.00195401 -0.00193599 -0.00191616 -0.00189346 -0.00186635 -0.0018332 -0.00179263 -0.00174366 -0.00168565 -0.00161818 -0.00154094 -0.00145372 -0.00135633 -0.00124863 -0.00113047 -0.00100173 -0.000862301 -0.000712052 -0.000550875 -0.000378654 -0.000195276 -6.2107E-07 0.000197436 0.000391045 +-0.00208835 -0.00207752 -0.00206651 -0.00205532 -0.00204392 -0.00203231 -0.00202045 -0.00200833 -0.00199592 -0.00198319 -0.00197011 -0.00195661 -0.00194267 -0.00192819 -0.00191308 -0.00189722 -0.00188036 -0.00186209 -0.00184163 -0.00181766 -0.00178847 -0.00175239 -0.00170812 -0.00165478 -0.0015918 -0.0015188 -0.00143551 -0.00134172 -0.00123725 -0.00112194 -0.000995669 -0.00085829 -0.000709679 -0.000549713 -0.000378268 -0.000195219 -4.41428E-07 0.000198032 0.000392162 +-0.00202051 -0.00201002 -0.00199938 -0.00198857 -0.00197757 -0.00196638 -0.00195497 -0.00194332 -0.00193141 -0.00191921 -0.00190668 -0.00189379 -0.00188049 -0.00186672 -0.0018524 -0.00183742 -0.0018216 -0.00180466 -0.00178605 -0.00176476 -0.00173922 -0.00170756 -0.00166813 -0.00161974 -0.0015616 -0.00149322 -0.00141425 -0.00132444 -0.00122357 -0.00111148 -0.00098801 -0.000853012 -0.000706347 -0.000547879 -0.000377474 -0.000194997 -3.13072E-07 0.000198392 0.000392893 +-0.00194976 -0.00193962 -0.00192934 -0.00191891 -0.00190832 -0.00189755 -0.00188658 -0.00187539 -0.00186397 -0.00185229 -0.00184031 -0.00182801 -0.00181535 -0.00180226 -0.00178869 -0.00177455 -0.00175969 -0.00174392 -0.00172685 -0.00170777 -0.00168541 -0.00165794 -0.00162338 -0.00158016 -0.00152721 -0.00146384 -0.0013896 -0.00130417 -0.00120732 -0.00109884 -0.000978546 -0.000846289 -0.000701911 -0.000545261 -0.000376194 -0.000194563 -2.21597E-07 0.000198501 0.000393199 +-0.00187604 -0.00186624 -0.00185633 -0.00184628 -0.00183609 -0.00182574 -0.00181521 -0.00180448 -0.00179354 -0.00178237 -0.00177094 -0.00175922 -0.00174717 -0.00173475 -0.00172191 -0.00170856 -0.0016946 -0.00167988 -0.00166414 -0.00164688 -0.00162718 -0.00160345 -0.00157362 -0.00153571 -0.00148824 -0.00143027 -0.00136119 -0.0012806 -0.00118819 -0.00108374 -0.00096705 -0.000837932 -0.000696217 -0.000541743 -0.000374347 -0.000193872 -1.56553E-07 0.000198338 0.00039303 +-0.00179935 -0.0017899 -0.00178036 -0.00177069 -0.0017609 -0.00175096 -0.00174087 -0.0017306 -0.00172014 -0.00170947 -0.00169858 -0.00168742 -0.00167598 -0.00166421 -0.00165206 -0.00163948 -0.00162638 -0.00161263 -0.00159805 -0.00158231 -0.00156476 -0.00154421 -0.00151874 -0.0014861 -0.00144435 -0.00139215 -0.00132866 -0.00125336 -0.00116588 -0.00106593 -0.000953283 -0.000827739 -0.000689104 -0.0005372 -0.000371849 -0.000192877 -1.10395E-07 0.000197874 0.00039233 +-0.00171977 -0.00171068 -0.00170149 -0.00169221 -0.00168282 -0.0016733 -0.00166364 -0.00165382 -0.00164384 -0.00163367 -0.0016233 -0.0016127 -0.00160185 -0.00159071 -0.00157924 -0.00156739 -0.0015551 -0.00154226 -0.00152874 -0.0015143 -0.00149851 -0.00148055 -0.00145886 -0.00143122 -0.00139525 -0.00134913 -0.00129167 -0.00122214 -0.00114007 -0.00104512 -0.000937006 -0.000815506 -0.000680406 -0.000531506 -0.000368612 -0.000191533 -7.77023E-08 0.000197077 0.00039103 +-0.00163731 -0.00162857 -0.00161976 -0.00161086 -0.00160186 -0.00159276 -0.00158353 -0.00157417 -0.00156466 -0.00155498 -0.00154513 -0.00153508 -0.0015248 -0.00151428 -0.00150347 -0.00149233 -0.00148081 -0.00146883 -0.00145628 -0.00144299 -0.00142868 -0.00141279 -0.00139421 -0.00137103 -0.00134071 -0.00130086 -0.00124982 -0.00118656 -0.00111042 -0.00102099 -0.00091794 -0.000801001 -0.000669934 -0.000524518 -0.00036454 -0.000189788 -5.4587E-08 0.000195907 0.000389055 +-0.00155201 -0.00154362 -0.00153518 -0.00152666 -0.00151807 -0.00150938 -0.00150059 -0.00149168 -0.00148264 -0.00147345 -0.00146411 -0.0014546 -0.00144489 -0.00143496 -0.00142479 -0.00141434 -0.00140356 -0.00139239 -0.00138075 -0.00136851 -0.00135547 -0.00134127 -0.00132517 -0.00130573 -0.00128061 -0.00124704 -0.00120274 -0.00114621 -0.00107655 -0.000993212 -0.000895789 -0.00078397 -0.000657483 -0.000516081 -0.000359527 -0.000187589 -3.82718E-08 0.000194322 0.000386324 +-0.00146392 -0.0014559 -0.00144783 -0.0014397 -0.00143151 -0.00142324 -0.00141488 -0.00140642 -0.00139785 -0.00138915 -0.00138032 -0.00137134 -0.00136219 -0.00135285 -0.0013433 -0.00133351 -0.00132345 -0.00131306 -0.00130227 -0.001291 -0.00127909 -0.00126631 -0.00125217 -0.00123571 -0.00121507 -0.00118749 -0.00115007 -0.0011007 -0.00103807 -0.000961415 -0.000870231 -0.00076414 -0.000642831 -0.000506025 -0.000353458 -0.000184876 -2.67765E-08 0.00019227 0.000382743 +-0.00137317 -0.00136551 -0.00135783 -0.00135009 -0.00134231 -0.00133446 -0.00132653 -0.00131852 -0.00131042 -0.00130221 -0.00129388 -0.00128543 -0.00127683 -0.00126807 -0.00125913 -0.00124998 -0.00124061 -0.00123096 -0.00122098 -0.00121061 -0.00119973 -0.00118818 -0.00117564 -0.00116151 -0.00114449 -0.00112223 -0.00109157 -0.00104966 -0.000994575 -0.000925223 -0.000840925 -0.000741218 -0.000625737 -0.000494164 -0.000346208 -0.000181585 -1.8692E-08 0.000189694 0.000378208 +-0.00127991 -0.00127263 -0.00126532 -0.00125799 -0.00125062 -0.00124319 -0.00123571 -0.00122815 -0.00122051 -0.00121279 -0.00120496 -0.00119703 -0.00118897 -0.00118078 -0.00117244 -0.00116393 -0.00115522 -0.00114628 -0.00113708 -0.00112755 -0.00111762 -0.00110717 -0.00109599 -0.00108369 -0.00106945 -0.00105159 -0.00102718 -0.00099278 -0.000945685 -0.000884244 -0.000807512 -0.000714891 -0.000605942 -0.000480301 -0.00033764 -0.000177646 -1.3017E-08 0.000186533 0.000372603 +-0.00118435 -0.00117746 -0.00117055 -0.00116362 -0.00115666 -0.00114967 -0.00114262 -0.00113552 -0.00112836 -0.00112112 -0.0011138 -0.00110638 -0.00109887 -0.00109124 -0.00108348 -0.00107558 -0.00106753 -0.00105928 -0.00105081 -0.00104209 -0.00103304 -0.00102359 -0.00101358 -0.00100278 -0.000990688 -0.000976208 -0.000957111 -0.000929914 -0.000891061 -0.000838096 -0.000769622 -0.000684829 -0.00058317 -0.00046422 -0.000327607 -0.000172983 -9.04148E-09 0.000182717 0.0003658 +-0.0010868 -0.00108029 -0.00107379 -0.00106728 -0.00106074 -0.00105418 -0.00104759 -0.00104095 -0.00103425 -0.0010275 -0.00102068 -0.00101378 -0.00100681 -0.000999733 -0.000992556 -0.000985262 -0.000977836 -0.000970259 -0.000962505 -0.000954542 -0.000946324 -0.00093779 -0.000928841 -0.000919315 -0.000908905 -0.000896961 -0.000882017 -0.000861186 -0.000830482 -0.000786426 -0.000726887 -0.000650693 -0.000557133 -0.000445694 -0.00031595 -0.000167513 -6.26241E-09 0.000178169 0.000357661 +-0.000987605 -0.000981511 -0.000975424 -0.000969334 -0.000963235 -0.000957117 -0.000950974 -0.000944798 -0.000938583 -0.00093232 -0.000926003 -0.000919626 -0.000913181 -0.000906661 -0.000900056 -0.000893356 -0.00088655 -0.000879623 -0.000872555 -0.000865321 -0.000857889 -0.000850212 -0.000842221 -0.00083381 -0.000824785 -0.000814765 -0.000802882 -0.000787162 -0.000763969 -0.000728974 -0.000678964 -0.000612146 -0.000527533 -0.000424485 -0.000302503 -0.000161148 -4.3242E-09 0.000172806 0.000348033 +-0.000887257 -0.000881586 -0.000875927 -0.000870273 -0.000864617 -0.000858952 -0.00085327 -0.000847566 -0.000841832 -0.000836063 -0.000830253 -0.000824395 -0.000818483 -0.000812512 -0.000806474 -0.00080036 -0.000794163 -0.00078787 -0.000781466 -0.000774934 -0.000768249 -0.000761377 -0.000754271 -0.000746856 -0.000739013 -0.000730512 -0.000720864 -0.000708902 -0.000691974 -0.000665674 -0.000625576 -0.000568869 -0.000494077 -0.00040035 -0.00028709 -0.000153795 -2.97579E-09 0.000166539 0.000336753 +-0.000786344 -0.000781111 -0.000775896 -0.000770691 -0.00076549 -0.000760287 -0.000755076 -0.00074985 -0.000744605 -0.000739335 -0.000734034 -0.000728697 -0.000723319 -0.000717896 -0.00071242 -0.000706887 -0.000701288 -0.000695616 -0.000689859 -0.000684004 -0.000678034 -0.000671923 -0.00066564 -0.000659133 -0.000652326 -0.00064508 -0.000637119 -0.000627809 -0.000615554 -0.000596846 -0.000566605 -0.000520602 -0.000456488 -0.000373051 -0.000269535 -0.000145359 -2.04023E-09 0.000159273 0.000323645 +-0.000685601 -0.000680824 -0.000676067 -0.000671325 -0.000666593 -0.000661864 -0.000657133 -0.000652395 -0.000647646 -0.00064288 -0.000638093 -0.00063328 -0.000628438 -0.000623561 -0.000618646 -0.000613687 -0.00060868 -0.000603617 -0.000598491 -0.000593293 -0.000588009 -0.000582623 -0.000577112 -0.000571443 -0.000565564 -0.000559392 -0.00055277 -0.000545361 -0.000536322 -0.000523458 -0.000502253 -0.000467205 -0.00041454 -0.000342366 -0.000249666 -0.000135741 -1.39302E-09 0.000150911 0.000308528 +-0.000585934 -0.000581631 -0.000577349 -0.000573086 -0.000568835 -0.000564592 -0.000560353 -0.000556112 -0.000551867 -0.000547612 -0.000543344 -0.000539059 -0.000534754 -0.000530425 -0.000526068 -0.000521681 -0.000517258 -0.000512795 -0.000508287 -0.000503727 -0.000499106 -0.000494413 -0.000489632 -0.000484741 -0.000479708 -0.000474481 -0.000468971 -0.000462998 -0.000456142 -0.000447263 -0.000433343 -0.000408804 -0.000368113 -0.000308125 -0.000227332 -0.00012485 -9.46731E-10 0.000141351 0.000291214 +-0.000488461 -0.000484649 -0.00048086 -0.00047709 -0.000473335 -0.000469591 -0.000465854 -0.000462121 -0.000458388 -0.000454651 -0.000450908 -0.000447155 -0.000443389 -0.000439608 -0.000435809 -0.000431989 -0.000428145 -0.000424273 -0.000420371 -0.000416433 -0.000412454 -0.000408425 -0.000404338 -0.000400178 -0.000395924 -0.000391545 -0.000386991 -0.000382164 -0.000376859 -0.000370544 -0.000361652 -0.000346071 -0.000317307 -0.000270252 -0.000202425 -0.000112611 -6.40079E-10 0.0001305 0.000271519 +-0.000394567 -0.000391264 -0.000387984 -0.000384722 -0.000381477 -0.000378244 -0.00037502 -0.000371803 -0.00036859 -0.000365378 -0.000362164 -0.000358946 -0.000355722 -0.000352489 -0.000349245 -0.000345989 -0.000342717 -0.000339429 -0.00033612 -0.000332789 -0.000329432 -0.000326044 -0.000322618 -0.000319146 -0.000315616 -0.000312009 -0.000308296 -0.000304427 -0.0003003 -0.000295677 -0.000289871 -0.000280695 -0.000262695 -0.000228875 -0.000174932 -9.89806E-05 -4.30202E-10 0.000118275 0.000249275 +-0.000305991 -0.000303212 -0.000300453 -0.000297712 -0.000294987 -0.000292275 -0.000289573 -0.000286879 -0.000284192 -0.000281508 -0.000278826 -0.000276145 -0.000273461 -0.000270774 -0.000268082 -0.000265383 -0.000262677 -0.000259961 -0.000257233 -0.000254493 -0.000251738 -0.000248965 -0.00024617 -0.000243348 -0.000240493 -0.000237594 -0.000234634 -0.000231589 -0.000228409 -0.000224988 -0.00022105 -0.000215691 -0.000205824 -0.000184547 -0.000145036 -8.39968E-05 -2.8719E-10 0.000104625 0.000224348 +-0.000224924 -0.000222677 -0.000220447 -0.000218233 -0.000216033 -0.000213845 -0.000211668 -0.000209499 -0.000207337 -0.000205181 -0.000203028 -0.000200879 -0.00019873 -0.000196581 -0.000194432 -0.00019228 -0.000190126 -0.000187967 -0.000185804 -0.000183634 -0.000181457 -0.000179272 -0.000177075 -0.000174865 -0.000172638 -0.000170388 -0.000168108 -0.000165784 -0.000163393 -0.000160891 -0.000158168 -0.000154902 -0.000149869 -0.000138709 -0.000113321 -6.78566E-05 -1.90222E-10 8.95689E-05 0.000196681 +-0.000154058 -0.000152338 -0.000150632 -0.000148939 -0.000147257 -0.000145586 -0.000143924 -0.000142269 -0.000140622 -0.00013898 -0.000137343 -0.00013571 -0.00013408 -0.000132452 -0.000130825 -0.000129199 -0.000127573 -0.000125947 -0.00012432 -0.000122691 -0.000121059 -0.000119425 -0.000117787 -0.000116144 -0.000114493 -0.000112834 -0.00011116 -0.000109468 -0.000107746 -0.000105976 -0.000104117 -0.00010206 -9.94203E-05 -9.44695E-05 -8.11588E-05 -5.10756E-05 -1.2484E-10 7.32653E-05 0.000166371 +-9.63328E-05 -9.51119E-05 -9.39014E-05 -9.27004E-05 -9.15081E-05 -9.03237E-05 -8.91466E-05 -8.79758E-05 -8.68108E-05 -8.56509E-05 -8.44954E-05 -8.33437E-05 -8.21954E-05 -8.10498E-05 -7.99066E-05 -7.87654E-05 -7.76259E-05 -7.64876E-05 -7.53504E-05 -7.42139E-05 -7.30779E-05 -7.19421E-05 -7.0806E-05 -6.96691E-05 -6.85307E-05 -6.73896E-05 -6.62444E-05 -6.50926E-05 -6.39302E-05 -6.275E-05 -6.15373E-05 -6.02568E-05 -5.87977E-05 -5.66725E-05 -5.1258E-05 -3.47144E-05 -8.10352E-11 5.61575E-05 0.000133825 +-5.39721E-05 -5.31885E-05 -5.24116E-05 -5.1641E-05 -5.08763E-05 -5.0117E-05 -4.93626E-05 -4.86128E-05 -4.78671E-05 -4.71251E-05 -4.63866E-05 -4.56512E-05 -4.49186E-05 -4.41885E-05 -4.34606E-05 -4.27349E-05 -4.2011E-05 -4.12889E-05 -4.05684E-05 -3.98495E-05 -3.91319E-05 -3.84156E-05 -3.77004E-05 -3.69862E-05 -3.62727E-05 -3.55596E-05 -3.48461E-05 -3.41316E-05 -3.34145E-05 -3.26922E-05 -3.196E-05 -3.12067E-05 -3.04013E-05 -2.94225E-05 -2.75416E-05 -2.0484E-05 -5.18994E-11 3.91899E-05 0.000100071 +-2.68785E-05 -2.6434E-05 -2.59935E-05 -2.55566E-05 -2.51231E-05 -2.46927E-05 -2.42654E-05 -2.38408E-05 -2.34187E-05 -2.2999E-05 -2.25815E-05 -2.2166E-05 -2.17524E-05 -2.13406E-05 -2.09303E-05 -2.05217E-05 -2.01145E-05 -1.97086E-05 -1.93042E-05 -1.8901E-05 -1.84991E-05 -1.80985E-05 -1.7699E-05 -1.73007E-05 -1.69035E-05 -1.65072E-05 -1.61117E-05 -1.57167E-05 -1.53218E-05 -1.49261E-05 -1.4528E-05 -1.41242E-05 -1.3706E-05 -1.32425E-05 -1.2563E-05 -1.01831E-05 -3.26807E-11 2.39733E-05 6.7268E-05 +-1.19576E-05 -1.17381E-05 -1.15206E-05 -1.13048E-05 -1.10908E-05 -1.08784E-05 -1.06675E-05 -1.04581E-05 -1.02499E-05 -1.0043E-05 -9.83733E-06 -9.6327E-06 -9.42912E-06 -9.22651E-06 -9.02483E-06 -8.82404E-06 -8.6241E-06 -8.425E-06 -8.22671E-06 -8.02922E-06 -7.83253E-06 -7.63662E-06 -7.44148E-06 -7.24712E-06 -7.0535E-06 -6.86061E-06 -6.66839E-06 -6.47676E-06 -6.28556E-06 -6.09456E-06 -5.90326E-06 -5.71064E-06 -5.51413E-06 -5.30535E-06 -5.04181E-06 -4.30755E-06 -2.01285E-11 1.24187E-05 3.90727E-05 +-4.76961E-06 -4.67586E-06 -4.58295E-06 -4.49083E-06 -4.39945E-06 -4.30878E-06 -4.21877E-06 -4.12939E-06 -4.04059E-06 -3.95236E-06 -3.86465E-06 -3.77743E-06 -3.69069E-06 -3.6044E-06 -3.51854E-06 -3.43309E-06 -3.34805E-06 -3.2634E-06 -3.17914E-06 -3.09526E-06 -3.01177E-06 -2.92866E-06 -2.84593E-06 -2.76358E-06 -2.6816E-06 -2.6E-06 -2.51875E-06 -2.43783E-06 -2.3572E-06 -2.27678E-06 -2.19642E-06 -2.11579E-06 -2.03411E-06 -1.94891E-06 -1.84837E-06 -1.61632E-06 -1.2038E-11 5.44169E-06 1.92185E-05 +-1.69126E-06 -1.65678E-06 -1.6226E-06 -1.58872E-06 -1.55512E-06 -1.52178E-06 -1.48869E-06 -1.45584E-06 -1.42321E-06 -1.39079E-06 -1.35857E-06 -1.32654E-06 -1.29469E-06 -1.26301E-06 -1.2315E-06 -1.20015E-06 -1.16896E-06 -1.13792E-06 -1.10704E-06 -1.0763E-06 -1.04572E-06 -1.01528E-06 -9.84997E-07 -9.54864E-07 -9.24882E-07 -8.95048E-07 -8.65358E-07 -8.35806E-07 -8.06378E-07 -7.77049E-07 -7.47773E-07 -7.18449E-07 -6.88836E-07 -6.58182E-07 -6.22998E-07 -5.49467E-07 -6.9112E-12 2.09591E-06 8.16884E-06 +-5.29439E-07 -5.18461E-07 -5.07582E-07 -4.96798E-07 -4.86104E-07 -4.75495E-07 -4.64966E-07 -4.54514E-07 -4.44134E-07 -4.33823E-07 -4.23577E-07 -4.13392E-07 -4.03267E-07 -3.93198E-07 -3.83184E-07 -3.73223E-07 -3.63314E-07 -3.53455E-07 -3.43647E-07 -3.33888E-07 -3.24179E-07 -3.1452E-07 -3.04911E-07 -2.95352E-07 -2.85843E-07 -2.76383E-07 -2.66971E-07 -2.57606E-07 -2.48283E-07 -2.38995E-07 -2.29729E-07 -2.20454E-07 -2.11099E-07 -2.01444E-07 -1.90478E-07 -1.68476E-07 -3.71868E-12 7.30721E-07 3.12627E-06 +-1.48217E-07 -1.45122E-07 -1.42055E-07 -1.39015E-07 -1.36001E-07 -1.33011E-07 -1.30044E-07 -1.27099E-07 -1.24174E-07 -1.21269E-07 -1.18383E-07 -1.15514E-07 -1.12662E-07 -1.09827E-07 -1.07007E-07 -1.04202E-07 -1.01412E-07 -9.86373E-08 -9.58767E-08 -9.31303E-08 -9.03983E-08 -8.76807E-08 -8.49774E-08 -8.22885E-08 -7.9614E-08 -7.69538E-08 -7.43075E-08 -7.16747E-08 -6.90541E-08 -6.6444E-08 -6.38403E-08 -6.12351E-08 -5.86088E-08 -5.5901E-08 -5.28363E-08 -4.67733E-08 -1.77647E-12 2.30509E-07 1.10252E-06 +-3.82252E-08 -3.74247E-08 -3.66315E-08 -3.58453E-08 -3.50658E-08 -3.42926E-08 -3.35254E-08 -3.27639E-08 -3.20077E-08 -3.12566E-08 -3.05104E-08 -2.97689E-08 -2.90317E-08 -2.82988E-08 -2.757E-08 -2.68452E-08 -2.61242E-08 -2.54071E-08 -2.46938E-08 -2.39842E-08 -2.32784E-08 -2.25763E-08 -2.1878E-08 -2.11835E-08 -2.04927E-08 -1.98057E-08 -1.91223E-08 -1.84424E-08 -1.77658E-08 -1.70919E-08 -1.64198E-08 -1.57473E-08 -1.50695E-08 -1.4371E-08 -1.35812E-08 -1.20254E-08 -6.35484E-13 6.58055E-08 3.56049E-07 +-9.36577E-09 -9.16937E-09 -8.97479E-09 -8.78194E-09 -8.59072E-09 -8.40106E-09 -8.21287E-09 -8.02608E-09 -7.84062E-09 -7.65641E-09 -7.4734E-09 -7.29152E-09 -7.11075E-09 -6.93101E-09 -6.75229E-09 -6.57456E-09 -6.39778E-09 -6.22195E-09 -6.04705E-09 -5.87308E-09 -5.70003E-09 -5.52791E-09 -5.35672E-09 -5.18646E-09 -5.01713E-09 -4.84872E-09 -4.68122E-09 -4.51458E-09 -4.34874E-09 -4.18358E-09 -4.01886E-09 -3.85407E-09 -3.68798E-09 -3.51682E-09 -3.32338E-09 -2.94281E-09 1.30849E-22 1.73219E-08 1.04473E-07 +-2.22947E-09 -2.18269E-09 -2.13634E-09 -2.0904E-09 -2.04485E-09 -1.99967E-09 -1.95485E-09 -1.91036E-09 -1.86618E-09 -1.82231E-09 -1.77872E-09 -1.7354E-09 -1.69234E-09 -1.64954E-09 -1.60697E-09 -1.56464E-09 -1.52255E-09 -1.48067E-09 -1.43902E-09 -1.39759E-09 -1.35638E-09 -1.3154E-09 -1.27463E-09 -1.23409E-09 -1.19377E-09 -1.15367E-09 -1.11378E-09 -1.07411E-09 -1.03462E-09 -9.95299E-10 -9.5608E-10 -9.16847E-10 -8.77305E-10 -8.36559E-10 -7.90513E-10 -6.99954E-10 3.23501E-13 4.31934E-09 2.81945E-08 +-5.22434E-10 -5.1146E-10 -5.00588E-10 -4.89812E-10 -4.79129E-10 -4.68532E-10 -4.58018E-10 -4.47582E-10 -4.37221E-10 -4.2693E-10 -4.16706E-10 -4.06547E-10 -3.96448E-10 -3.86408E-10 -3.76425E-10 -3.66498E-10 -3.56624E-10 -3.46803E-10 -3.37035E-10 -3.27318E-10 -3.17654E-10 -3.08041E-10 -2.98481E-10 -2.88973E-10 -2.79517E-10 -2.70113E-10 -2.6076E-10 -2.51455E-10 -2.42196E-10 -2.32975E-10 -2.23778E-10 -2.14578E-10 -2.05305E-10 -1.95751E-10 -1.84954E-10 -1.63722E-10 4.60188E-13 1.04381E-09 7.17501E-09 +*table 0.2 +-0.00215364 -0.00214235 -0.00213085 -0.00211912 -0.00210713 -0.00209488 -0.00208232 -0.00206944 -0.0020562 -0.00204256 -0.00202847 -0.00201386 -0.00199866 -0.00198274 -0.00196589 -0.00194767 -0.00192732 -0.00190368 -0.0018754 -0.00184127 -0.00180038 -0.0017521 -0.00169602 -0.00163186 -0.00155941 -0.00147852 -0.00138905 -0.00129089 -0.00118395 -0.00106813 -0.00094335 -0.000809518 -0.000666555 -0.000514378 -0.000352905 -0.000182044 -1.69826E-06 0.000181249 0.000360002 +-0.00209544 -0.00208449 -0.00207335 -0.002062 -0.00205041 -0.00203858 -0.00202647 -0.00201406 -0.00200133 -0.00198822 -0.0019747 -0.00196072 -0.0019462 -0.00193105 -0.00191511 -0.00189809 -0.00187943 -0.0018582 -0.00183306 -0.0018026 -0.00176564 -0.00172137 -0.00166921 -0.00160881 -0.0015399 -0.00146229 -0.00137583 -0.0012804 -0.00117589 -0.00106218 -0.000939191 -0.000806825 -0.000664993 -0.000513608 -0.00035258 -0.000181816 -1.21758E-06 0.00018219 0.000361443 +-0.00203492 -0.00202432 -0.00201354 -0.00200256 -0.00199137 -0.00197995 -0.00196829 -0.00195634 -0.0019441 -0.00193152 -0.00191857 -0.0019052 -0.00189134 -0.00187692 -0.00186182 -0.00184583 -0.00182858 -0.00180937 -0.00178703 -0.00176009 -0.00172713 -0.00168703 -0.00163905 -0.00158269 -0.00151762 -0.0014436 -0.00136046 -0.00126805 -0.00116624 -0.00105492 -0.000933977 -0.000803319 -0.000662845 -0.00051246 -0.000352068 -0.000181572 -8.69982E-07 0.000182875 0.000362536 +-0.00197199 -0.00196173 -0.0019513 -0.0019407 -0.0019299 -0.0019189 -0.00190766 -0.00189618 -0.00188442 -0.00187236 -0.00185996 -0.00184718 -0.00183397 -0.00182025 -0.00180594 -0.00179088 -0.00177482 -0.00175727 -0.00173733 -0.00171363 -0.00168459 -0.00164878 -0.0016052 -0.00155317 -0.00149226 -0.00142216 -0.00134266 -0.00125358 -0.00115478 -0.00104614 -0.000927529 -0.000798845 -0.000659979 -0.000510827 -0.000351287 -0.000181253 -6.19857E-07 0.000183317 0.000363269 +-0.00190656 -0.00189663 -0.00188656 -0.00187633 -0.00186592 -0.00185533 -0.00184452 -0.00183349 -0.00182221 -0.00181066 -0.0017988 -0.0017866 -0.00177401 -0.00176098 -0.00174742 -0.00173322 -0.0017182 -0.00170203 -0.00168407 -0.0016632 -0.00163784 -0.00160634 -0.00156733 -0.00151991 -0.00146348 -0.00139764 -0.00132213 -0.00123673 -0.00114128 -0.00103563 -0.000919663 -0.000793246 -0.000656265 -0.000508606 -0.000350157 -0.000180807 -4.40576E-07 0.000183518 0.000363623 +-0.00183855 -0.00182896 -0.00181924 -0.00180938 -0.00179936 -0.00178917 -0.00177879 -0.00176821 -0.0017574 -0.00174635 -0.00173502 -0.00172339 -0.00171141 -0.00169903 -0.00168619 -0.0016728 -0.00165873 -0.00164373 -0.00162739 -0.00160888 -0.00158683 -0.00155948 -0.00152515 -0.00148258 -0.00143094 -0.00136972 -0.00129856 -0.00121721 -0.00112547 -0.00102318 -0.000910189 -0.000786361 -0.00065157 -0.000505692 -0.000348604 -0.000180185 -3.12474E-07 0.000183471 0.000363567 +-0.00176791 -0.00175866 -0.00174929 -0.0017398 -0.00173017 -0.00172038 -0.00171042 -0.00170029 -0.00168994 -0.00167938 -0.00166857 -0.00165749 -0.0016461 -0.00163437 -0.00162222 -0.0016096 -0.0015964 -0.00158245 -0.00156746 -0.00155086 -0.00153162 -0.0015081 -0.00147838 -0.00144083 -0.0013943 -0.00133806 -0.00127165 -0.00119474 -0.0011071 -0.00100855 -0.000898901 -0.000778018 -0.000645756 -0.000501978 -0.000346552 -0.000179343 -2.2118E-07 0.000183164 0.000363066 +-0.0016946 -0.00168568 -0.00167667 -0.00166755 -0.0016583 -0.00164891 -0.00163938 -0.00162968 -0.0016198 -0.00160972 -0.00159942 -0.00158889 -0.00157808 -0.00156696 -0.00155548 -0.00154359 -0.00153121 -0.00151821 -0.00150438 -0.00148936 -0.0014724 -0.0014522 -0.00142685 -0.00139437 -0.00135319 -0.00130229 -0.00124103 -0.00116899 -0.00108588 -0.000991473 -0.000885581 -0.000768034 -0.000638674 -0.000497351 -0.000343921 -0.000178237 -1.56262E-07 0.000182574 0.000362071 +-0.00161865 -0.00161008 -0.00160142 -0.00159267 -0.0015838 -0.00157482 -0.0015657 -0.00155644 -0.00154701 -0.00153741 -0.00152762 -0.00151761 -0.00150737 -0.00149685 -0.00148602 -0.00147484 -0.00146323 -0.0014511 -0.00143831 -0.0014246 -0.00140949 -0.00139202 -0.00137057 -0.00134301 -0.00130732 -0.00126208 -0.00120638 -0.00113964 -0.00106151 -0.000971707 -0.000870006 -0.000756218 -0.00063017 -0.000491694 -0.00034063 -0.000176821 -1.10192E-07 0.000181677 0.000360527 +-0.00154019 -0.00153196 -0.00152365 -0.00151526 -0.00150678 -0.0014982 -0.0014895 -0.00148067 -0.00147169 -0.00146257 -0.00145327 -0.00144379 -0.00143409 -0.00142416 -0.00141396 -0.00140346 -0.00139259 -0.00138128 -0.00136943 -0.00135685 -0.00134324 -0.00132795 -0.00130977 -0.00128672 -0.0012565 -0.00121715 -0.00116738 -0.0011064 -0.00103372 -0.000948988 -0.000851949 -0.00074238 -0.000620087 -0.000484885 -0.000336598 -0.000175053 -7.75612E-08 0.000180439 0.000358371 +-0.00145925 -0.00145136 -0.00144341 -0.00143539 -0.00142729 -0.00141911 -0.00141082 -0.00140242 -0.0013939 -0.00138524 -0.00137643 -0.00136746 -0.00135831 -0.00134895 -0.00133936 -0.0013295 -0.00131934 -0.00130881 -0.00129783 -0.00128627 -0.00127392 -0.00126037 -0.00124479 -0.00122562 -0.00120056 -0.0011672 -0.00112369 -0.00106891 -0.00100217 -0.000923021 -0.00083115 -0.0007263 -0.000608248 -0.000476791 -0.000331732 -0.000172883 -5.44885E-08 0.000178826 0.00035553 +-0.0013759 -0.00136835 -0.00136076 -0.00135312 -0.00134541 -0.00133762 -0.00132975 -0.00132178 -0.0013137 -0.00130551 -0.00129719 -0.00128872 -0.0012801 -0.0012713 -0.0012623 -0.00125308 -0.00124359 -0.0012338 -0.00122363 -0.001213 -0.00120175 -0.00118962 -0.00117608 -0.00116004 -0.00113956 -0.00111202 -0.00107499 -0.00102682 -0.000966515 -0.000893487 -0.000807329 -0.000707738 -0.000594459 -0.000467262 -0.000325933 -0.00017026 -3.82029E-08 0.000176795 0.000351929 +-0.00129026 -0.00128306 -0.00127583 -0.00126856 -0.00126124 -0.00125386 -0.0012464 -0.00123886 -0.00123123 -0.0012235 -0.00121565 -0.00120769 -0.00119959 -0.00119134 -0.00118292 -0.0011743 -0.00116547 -0.00115638 -0.00114698 -0.00113721 -0.00112695 -0.00111602 -0.0011041 -0.00109049 -0.00107378 -0.00105157 -0.00102101 -0.000979774 -0.000926406 -0.000860053 -0.000780189 -0.00068644 -0.00057851 -0.00045614 -0.00031909 -0.000167128 -2.6728E-08 0.000174299 0.000347478 +-0.00120247 -0.00119563 -0.00118877 -0.00118188 -0.00117495 -0.00116796 -0.00116092 -0.00115381 -0.00114663 -0.00113936 -0.00113199 -0.00112452 -0.00111694 -0.00110923 -0.00110137 -0.00109335 -0.00108515 -0.00107674 -0.00106807 -0.0010591 -0.00104974 -0.00103988 -0.00102929 -0.00101755 -0.00100375 -0.000986061 -0.000961631 -0.000927489 -0.00088149 -0.000822374 -0.000749413 -0.000662132 -0.000560178 -0.000443252 -0.000311087 -0.000163426 -1.86575E-08 0.000171285 0.000342079 +-0.00111274 -0.00110627 -0.00109978 -0.00109327 -0.00108674 -0.00108016 -0.00107354 -0.00106686 -0.00106012 -0.00105331 -0.00104642 -0.00103944 -0.00103237 -0.00102519 -0.00101788 -0.00101045 -0.00100286 -0.000995099 -0.00098713 -0.000978914 -0.000970393 -0.000961481 -0.000952036 -0.000941791 -0.000930194 -0.000916038 -0.000896984 -0.000869773 -0.000831448 -0.000780105 -0.000714677 -0.000634527 -0.00053922 -0.000428411 -0.000301795 -0.000159087 -1.29921E-08 0.000167692 0.000335623 +-0.00102134 -0.00101524 -0.00100913 -0.00100301 -0.000996878 -0.000990714 -0.000984513 -0.00097827 -0.000971976 -0.000965625 -0.000959209 -0.000952721 -0.000946153 -0.000939496 -0.000932741 -0.000925876 -0.000918885 -0.000911752 -0.000904452 -0.000896955 -0.000889217 -0.000881177 -0.000872738 -0.000863733 -0.000853829 -0.000842304 -0.000827553 -0.000806657 -0.000776046 -0.000732922 -0.000675649 -0.000603325 -0.000515386 -0.000411419 -0.000291077 -0.000154042 -9.02311E-09 0.000163456 0.000327992 +-0.000928593 -0.000922876 -0.000917163 -0.000911445 -0.000905716 -0.000899969 -0.000894196 -0.00088839 -0.000882545 -0.000876655 -0.000870713 -0.000864713 -0.000858648 -0.000852511 -0.000846294 -0.000839988 -0.000833581 -0.000827059 -0.000820404 -0.000813593 -0.000806594 -0.000799362 -0.000791832 -0.000783893 -0.000775346 -0.000765772 -0.00075421 -0.000738539 -0.000715228 -0.00068056 -0.000632016 -0.000568223 -0.000488411 -0.000392067 -0.000278786 -0.000148212 -6.24849E-09 0.000158506 0.000319053 +-0.000834935 -0.000829613 -0.000824301 -0.000818992 -0.000813679 -0.000808356 -0.000803016 -0.000797653 -0.000792261 -0.000786834 -0.000781367 -0.000775855 -0.000770291 -0.00076467 -0.000758985 -0.000753229 -0.000747393 -0.000741466 -0.000735436 -0.000729283 -0.000722985 -0.000716511 -0.000709813 -0.00070282 -0.000695407 -0.000687334 -0.000678062 -0.000666301 -0.000649282 -0.000622903 -0.000583509 -0.000528931 -0.000458031 -0.000370139 -0.00026477 -0.000141517 -4.31329E-09 0.000152765 0.000308667 +-0.000740888 -0.000735975 -0.000731077 -0.000726187 -0.000721299 -0.000716408 -0.000711508 -0.000706593 -0.000701659 -0.000696699 -0.000691709 -0.000686685 -0.000681622 -0.000676514 -0.000671356 -0.000666143 -0.000660869 -0.000655524 -0.000650099 -0.000644581 -0.000638953 -0.000633192 -0.000627267 -0.000621129 -0.0006147 -0.000607838 -0.000600249 -0.000591228 -0.000579035 -0.000560125 -0.000529974 -0.000485197 -0.000423995 -0.00034542 -0.00024887 -0.000133872 -2.96691E-09 0.000146149 0.000296681 +-0.0006471 -0.00064261 -0.000638139 -0.00063368 -0.000629229 -0.000624779 -0.000620327 -0.000615868 -0.000611396 -0.000606907 -0.000602398 -0.000597863 -0.0005933 -0.000588703 -0.00058407 -0.000579394 -0.000574672 -0.000569898 -0.000565063 -0.000560159 -0.000555173 -0.000550091 -0.00054489 -0.000539537 -0.000533983 -0.000528143 -0.000521855 -0.000514752 -0.0005059 -0.000492944 -0.000471497 -0.000436858 -0.000386081 -0.000317706 -0.00023093 -0.000125188 -2.0327E-09 0.000138573 0.000282936 +-0.000554365 -0.000550315 -0.000546284 -0.00054227 -0.000538266 -0.000534268 -0.000530273 -0.000526276 -0.000522274 -0.000518261 -0.000514236 -0.000510193 -0.000506131 -0.000502045 -0.000497932 -0.00049379 -0.000489613 -0.000485398 -0.00048114 -0.000476832 -0.000472466 -0.000468031 -0.000463512 -0.000458888 -0.000454127 -0.000449179 -0.000443952 -0.000438257 -0.000431633 -0.000422822 -0.000408658 -0.00038395 -0.000344149 -0.000286826 -0.000210807 -0.000115382 -1.38639E-09 0.000129946 0.000267266 +-0.000463659 -0.000460064 -0.000456489 -0.000452932 -0.000449387 -0.000445853 -0.000442324 -0.000438798 -0.000435271 -0.00043174 -0.000428203 -0.000424655 -0.000421094 -0.000417519 -0.000413925 -0.000410311 -0.000406674 -0.00040301 -0.000399317 -0.000395589 -0.000391821 -0.000388006 -0.000384135 -0.000380193 -0.000376162 -0.00037201 -0.000367685 -0.00036309 -0.000358004 -0.000351838 -0.000342872 -0.00032693 -0.000298224 -0.000252682 -0.000188387 -0.000104379 -9.40698E-10 0.000120182 0.000249505 +-0.000376187 -0.000373062 -0.000369958 -0.000366871 -0.000363798 -0.000360737 -0.000357684 -0.000354636 -0.000351592 -0.000348548 -0.000345502 -0.000342451 -0.000339393 -0.000336327 -0.00033325 -0.000330161 -0.000327056 -0.000323935 -0.000320795 -0.000317632 -0.000314444 -0.000311226 -0.000307972 -0.000304672 -0.000301317 -0.000297887 -0.000294354 -0.000290666 -0.000286718 -0.00028225 -0.0002765 -0.000267094 -0.000248697 -0.00021533 -0.000163631 -9.21286E-05 -6.34435E-10 0.000109202 0.000229495 +-0.00029346 -0.000290819 -0.000288197 -0.000285591 -0.000283 -0.000280421 -0.000277851 -0.000275289 -0.000272732 -0.000270178 -0.000267626 -0.000265073 -0.000262518 -0.000259959 -0.000257395 -0.000254824 -0.000252245 -0.000249657 -0.000247058 -0.000244446 -0.000241818 -0.000239174 -0.000236508 -0.000233815 -0.00023109 -0.000228322 -0.000225495 -0.000222583 -0.000219536 -0.000216241 -0.000212395 -0.000206987 -0.000196733 -0.00017516 -0.000136649 -7.86418E-05 -4.24813E-10 9.69476E-05 0.000207103 +-0.00021739 -0.000215241 -0.00021311 -0.000210992 -0.000208888 -0.000206796 -0.000204713 -0.000202637 -0.000200569 -0.000198505 -0.000196444 -0.000194386 -0.000192329 -0.000190271 -0.000188212 -0.000186151 -0.000184086 -0.000182017 -0.000179944 -0.000177864 -0.000175776 -0.00017368 -0.000171573 -0.000169452 -0.000167315 -0.000165155 -0.000162964 -0.00016073 -0.000158429 -0.000156014 -0.000153368 -0.000150131 -0.000144934 -0.000133272 -0.000107873 -6.40553E-05 -2.81968E-10 8.34149E-05 0.000182251 +-0.000150367 -0.000148709 -0.000147065 -0.000145433 -0.000143812 -0.0001422 -0.000140598 -0.000139003 -0.000137414 -0.00013583 -0.000134251 -0.000132675 -0.000131102 -0.000129531 -0.00012796 -0.000126391 -0.000124821 -0.00012325 -0.000121678 -0.000120104 -0.000118528 -0.000116949 -0.000115365 -0.000113777 -0.00011218 -0.000110575 -0.000108955 -0.000107316 -0.000105648 -0.00010393 -0.00010212 -0.000100097 -9.74277E-05 -9.21928E-05 -7.83868E-05 -4.87688E-05 -1.85107E-10 6.87111E-05 0.000154984 +-9.51122E-05 -9.39236E-05 -9.27449E-05 -9.15755E-05 -9.04144E-05 -8.9261E-05 -8.81145E-05 -8.69742E-05 -8.58393E-05 -8.47093E-05 -8.35834E-05 -8.24611E-05 -8.13419E-05 -8.02253E-05 -7.91109E-05 -7.79982E-05 -7.6887E-05 -7.57769E-05 -7.46676E-05 -7.35589E-05 -7.24505E-05 -7.1342E-05 -7.02331E-05 -6.91232E-05 -6.80116E-05 -6.68971E-05 -6.57782E-05 -6.46525E-05 -6.35157E-05 -6.23605E-05 -6.11714E-05 -5.99102E-05 -5.84538E-05 -5.62478E-05 -5.04523E-05 -3.36581E-05 -1.19795E-10 5.31771E-05 0.000125592 +-5.39109E-05 -5.31389E-05 -5.23736E-05 -5.16145E-05 -5.08611E-05 -5.01129E-05 -4.93696E-05 -4.86307E-05 -4.78959E-05 -4.71647E-05 -4.64368E-05 -4.57118E-05 -4.49896E-05 -4.42698E-05 -4.35521E-05 -4.28364E-05 -4.21225E-05 -4.14102E-05 -4.06995E-05 -3.99901E-05 -3.92821E-05 -3.85752E-05 -3.78693E-05 -3.71643E-05 -3.64598E-05 -3.57555E-05 -3.50508E-05 -3.43448E-05 -3.36361E-05 -3.29219E-05 -3.21971E-05 -3.145E-05 -3.06466E-05 -2.96511E-05 -2.76422E-05 -2.02324E-05 -7.60324E-11 3.75895E-05 9.48828E-05 +-2.71054E-05 -2.66624E-05 -2.62233E-05 -2.57878E-05 -2.53556E-05 -2.49267E-05 -2.45006E-05 -2.40773E-05 -2.36565E-05 -2.3238E-05 -2.28217E-05 -2.24074E-05 -2.19949E-05 -2.15841E-05 -2.1175E-05 -2.07673E-05 -2.03611E-05 -1.99562E-05 -1.95526E-05 -1.91503E-05 -1.87493E-05 -1.83494E-05 -1.79507E-05 -1.75531E-05 -1.71565E-05 -1.67608E-05 -1.63659E-05 -1.59714E-05 -1.55768E-05 -1.51814E-05 -1.47834E-05 -1.43793E-05 -1.39598E-05 -1.34914E-05 -1.27831E-05 -1.024E-05 -4.69168E-11 2.33571E-05 6.46453E-05 +-1.21437E-05 -1.19226E-05 -1.17034E-05 -1.1486E-05 -1.12704E-05 -1.10563E-05 -1.08438E-05 -1.06328E-05 -1.0423E-05 -1.02145E-05 -1.00072E-05 -9.80096E-06 -9.59576E-06 -9.39154E-06 -9.18824E-06 -8.98583E-06 -8.78427E-06 -8.58354E-06 -8.38361E-06 -8.18448E-06 -7.98614E-06 -7.78858E-06 -7.59179E-06 -7.39576E-06 -7.20047E-06 -7.0059E-06 -6.81199E-06 -6.61866E-06 -6.42575E-06 -6.23301E-06 -6.03993E-06 -5.84544E-06 -5.64684E-06 -5.43519E-06 -5.1643E-06 -4.38403E-06 -2.77009E-11 1.22901E-05 3.81079E-05 +-4.87425E-06 -4.77886E-06 -4.68432E-06 -4.59058E-06 -4.4976E-06 -4.40533E-06 -4.31374E-06 -4.22278E-06 -4.13241E-06 -4.04262E-06 -3.95335E-06 -3.86458E-06 -3.7763E-06 -3.68846E-06 -3.60107E-06 -3.51409E-06 -3.42752E-06 -3.34134E-06 -3.25556E-06 -3.17017E-06 -3.08516E-06 -3.00054E-06 -2.91631E-06 -2.83245E-06 -2.74898E-06 -2.66588E-06 -2.58315E-06 -2.50074E-06 -2.41862E-06 -2.33672E-06 -2.25486E-06 -2.17273E-06 -2.08949E-06 -2.00256E-06 -1.89936E-06 -1.65548E-06 -1.51413E-11 5.44416E-06 1.8951E-05 +-1.73728E-06 -1.70192E-06 -1.66688E-06 -1.63214E-06 -1.59769E-06 -1.5635E-06 -1.52957E-06 -1.49589E-06 -1.46242E-06 -1.42918E-06 -1.39614E-06 -1.36329E-06 -1.33062E-06 -1.29814E-06 -1.26582E-06 -1.23367E-06 -1.20167E-06 -1.16984E-06 -1.13816E-06 -1.10663E-06 -1.07526E-06 -1.04404E-06 -1.01297E-06 -9.82062E-07 -9.51305E-07 -9.20699E-07 -8.90242E-07 -8.59925E-07 -8.29735E-07 -7.99647E-07 -7.69613E-07 -7.3953E-07 -7.09147E-07 -6.77681E-07 -6.4146E-07 -5.64624E-07 -7.04261E-12 2.10765E-06 8.09237E-06 +-5.43544E-07 -5.32278E-07 -5.21115E-07 -5.10049E-07 -4.99074E-07 -4.88187E-07 -4.77383E-07 -4.66656E-07 -4.56004E-07 -4.45421E-07 -4.34905E-07 -4.24453E-07 -4.14061E-07 -4.03727E-07 -3.93449E-07 -3.83225E-07 -3.73054E-07 -3.62935E-07 -3.52867E-07 -3.42851E-07 -3.32885E-07 -3.22971E-07 -3.13107E-07 -3.03295E-07 -2.93534E-07 -2.83824E-07 -2.74163E-07 -2.6455E-07 -2.54981E-07 -2.45448E-07 -2.35937E-07 -2.26418E-07 -2.16817E-07 -2.06906E-07 -1.9563E-07 -1.72767E-07 -1.91255E-12 7.35982E-07 3.09828E-06 +-1.50554E-07 -1.47409E-07 -1.44293E-07 -1.41205E-07 -1.38143E-07 -1.35105E-07 -1.3209E-07 -1.29098E-07 -1.26126E-07 -1.23175E-07 -1.20242E-07 -1.17327E-07 -1.1443E-07 -1.11548E-07 -1.08683E-07 -1.05834E-07 -1.02999E-07 -1.00179E-07 -9.73742E-08 -9.45837E-08 -9.18078E-08 -8.90464E-08 -8.62997E-08 -8.35676E-08 -8.08501E-08 -7.81472E-08 -7.54585E-08 -7.27835E-08 -7.01211E-08 -6.74693E-08 -6.48243E-08 -6.21779E-08 -5.95102E-08 -5.67596E-08 -5.36424E-08 -4.74201E-08 1.28053E-12 2.31346E-07 1.09088E-06 +-3.80299E-08 -3.7233E-08 -3.64434E-08 -3.56608E-08 -3.48849E-08 -3.41152E-08 -3.33515E-08 -3.25934E-08 -3.18407E-08 -3.1093E-08 -3.03502E-08 -2.96119E-08 -2.88781E-08 -2.81485E-08 -2.7423E-08 -2.67015E-08 -2.59838E-08 -2.527E-08 -2.45599E-08 -2.38535E-08 -2.31509E-08 -2.2452E-08 -2.17569E-08 -2.10656E-08 -2.0378E-08 -1.96941E-08 -1.90139E-08 -1.83372E-08 -1.76638E-08 -1.69931E-08 -1.63242E-08 -1.56551E-08 -1.49806E-08 -1.42856E-08 -1.34988E-08 -1.19357E-08 3.22281E-12 6.52218E-08 3.50269E-07 +-9.06026E-09 -8.87007E-09 -8.68164E-09 -8.49488E-09 -8.30971E-09 -8.12604E-09 -7.9438E-09 -7.76291E-09 -7.5833E-09 -7.40491E-09 -7.22769E-09 -7.05156E-09 -6.87649E-09 -6.70244E-09 -6.52937E-09 -6.35725E-09 -6.18607E-09 -6.0158E-09 -5.84643E-09 -5.67796E-09 -5.5104E-09 -5.34373E-09 -5.17796E-09 -5.0131E-09 -4.84914E-09 -4.68607E-09 -4.52389E-09 -4.36255E-09 -4.202E-09 -4.04211E-09 -3.88265E-09 -3.72314E-09 -3.56239E-09 -3.39673E-09 -3.20929E-09 -2.83741E-09 4.3638E-12 1.67918E-08 1.01331E-07 +-2.08612E-09 -2.04221E-09 -1.99872E-09 -1.95561E-09 -1.91287E-09 -1.87048E-09 -1.82841E-09 -1.78666E-09 -1.74521E-09 -1.70404E-09 -1.66313E-09 -1.62249E-09 -1.58208E-09 -1.54191E-09 -1.50197E-09 -1.46225E-09 -1.42275E-09 -1.38346E-09 -1.34438E-09 -1.3055E-09 -1.26684E-09 -1.22838E-09 -1.19013E-09 -1.15209E-09 -1.11426E-09 -1.07664E-09 -1.03922E-09 -1.002E-09 -9.64956E-10 -9.28069E-10 -8.91283E-10 -8.54485E-10 -8.17403E-10 -7.7919E-10 -7.35958E-10 -6.5022E-10 4.99929E-12 4.06879E-09 2.67001E-08 +-4.68938E-10 -4.58978E-10 -4.49111E-10 -4.39331E-10 -4.29635E-10 -4.20018E-10 -4.10476E-10 -4.01005E-10 -3.91601E-10 -3.82261E-10 -3.72982E-10 -3.63762E-10 -3.54597E-10 -3.45485E-10 -3.36425E-10 -3.27416E-10 -3.18455E-10 -3.09542E-10 -3.00678E-10 -2.9186E-10 -2.8309E-10 -2.74367E-10 -2.65691E-10 -2.57064E-10 -2.48483E-10 -2.3995E-10 -2.31463E-10 -2.23021E-10 -2.1462E-10 -2.06254E-10 -1.97911E-10 -1.89566E-10 -1.81156E-10 -1.7249E-10 -1.62686E-10 -1.43245E-10 5.32279E-12 9.54494E-10 6.58676E-09 +-1.01186E-10 -9.89465E-11 -9.67274E-11 -9.4528E-11 -9.23474E-11 -9.01845E-11 -8.80386E-11 -8.59086E-11 -8.37938E-11 -8.16934E-11 -7.96067E-11 -7.75331E-11 -7.5472E-11 -7.34229E-11 -7.13855E-11 -6.93594E-11 -6.73443E-11 -6.534E-11 -6.33464E-11 -6.13636E-11 -5.93913E-11 -5.74297E-11 -5.54789E-11 -5.35387E-11 -5.16092E-11 -4.96903E-11 -4.77819E-11 -4.58835E-11 -4.39944E-11 -4.21132E-11 -4.02371E-11 -3.83605E-11 -3.64694E-11 -3.45207E-11 -3.23163E-11 -2.7945E-11 5.45947E-12 2.22964E-10 1.56455E-09 +*table 0.4 +-0.00198878 -0.00197838 -0.0019678 -0.00195701 -0.00194601 -0.00193476 -0.00192326 -0.00191148 -0.00189938 -0.00188694 -0.00187411 -0.00186084 -0.00184707 -0.00183268 -0.00181751 -0.00180123 -0.00178319 -0.00176239 -0.00173753 -0.00170736 -0.00167093 -0.00162757 -0.00157684 -0.00151844 -0.00145215 -0.00137784 -0.00129535 -0.0012046 -0.00110549 -0.000997919 -0.000881819 -0.000757107 -0.000623707 -0.000481545 -0.000330544 -0.000170623 -1.69492E-06 0.000169791 0.000337456 +-0.00193013 -0.00192006 -0.00190982 -0.0018994 -0.00188878 -0.00187794 -0.00186686 -0.00185553 -0.0018439 -0.00183197 -0.00181968 -0.00180699 -0.00179385 -0.00178017 -0.00176583 -0.0017506 -0.00173405 -0.00171537 -0.00169339 -0.0016667 -0.00163409 -0.00159467 -0.00154784 -0.0014932 -0.00143049 -0.00135952 -0.00128013 -0.0011922 -0.00109563 -0.00099032 -0.000876178 -0.000753121 -0.000621065 -0.00047993 -0.000329632 -0.00017009 -1.21521E-06 0.000170427 0.000338315 +-0.00186934 -0.00185961 -0.00184971 -0.00183965 -0.00182941 -0.00181896 -0.00180831 -0.00179741 -0.00178626 -0.00177481 -0.00176305 -0.00175094 -0.00173841 -0.0017254 -0.00171183 -0.00169752 -0.00168219 -0.00166528 -0.0016458 -0.00162238 -0.00159358 -0.00155823 -0.00151553 -0.00146492 -0.00140607 -0.00133874 -0.00126273 -0.00117792 -0.00108417 -0.000981385 -0.000869458 -0.000748296 -0.000617812 -0.000477914 -0.000328518 -0.000169533 -8.68294E-07 0.000170797 0.000338802 +-0.00180634 -0.00179693 -0.00178738 -0.00177768 -0.00176781 -0.00175776 -0.00174751 -0.00173705 -0.00172636 -0.0017154 -0.00170416 -0.00169259 -0.00168066 -0.00166831 -0.00165546 -0.00164199 -0.00162771 -0.00161223 -0.00159483 -0.00157433 -0.0015492 -0.00151798 -0.00147959 -0.00143328 -0.0013786 -0.00131521 -0.00124291 -0.00116151 -0.00107089 -0.000970917 -0.000861481 -0.000742481 -0.000613818 -0.000475395 -0.000327117 -0.000168891 -6.18663E-07 0.000170913 0.000338907 +-0.00174106 -0.00173197 -0.00172276 -0.00171341 -0.00170392 -0.00169426 -0.00168442 -0.00167439 -0.00166415 -0.00165367 -0.00164293 -0.00163191 -0.00162056 -0.00160883 -0.00159667 -0.00158398 -0.00157062 -0.00155634 -0.00154064 -0.00152261 -0.00150084 -0.00147369 -0.00143973 -0.00139797 -0.00134774 -0.00128863 -0.00122036 -0.00114273 -0.00105555 -0.00095871 -0.000852071 -0.000735523 -0.000608957 -0.000472269 -0.000325355 -0.000168113 -4.39732E-07 0.000170778 0.000338613 +-0.00167344 -0.00166468 -0.00165581 -0.00164682 -0.00163769 -0.00162842 -0.00161898 -0.00160938 -0.00159958 -0.00158957 -0.00157933 -0.00156884 -0.00155805 -0.00154694 -0.00153544 -0.00152348 -0.00151097 -0.00149772 -0.0014834 -0.00146739 -0.00144853 -0.0014252 -0.0013957 -0.00135866 -0.00131319 -0.00125869 -0.00119481 -0.00112129 -0.00103792 -0.00094455 -0.000841041 -0.000727264 -0.000603101 -0.000468435 -0.000323156 -0.000167152 -3.11879E-07 0.000170387 0.000337892 +-0.00160345 -0.00159502 -0.00158649 -0.00157785 -0.00156909 -0.00156021 -0.00155117 -0.00154199 -0.00153263 -0.00152309 -0.00151334 -0.00150336 -0.00149312 -0.00148259 -0.00147173 -0.00146048 -0.00144875 -0.00143642 -0.00142327 -0.00140888 -0.00139242 -0.0013725 -0.00134729 -0.00131509 -0.00127461 -0.00122507 -0.00116595 -0.00109691 -0.00101773 -0.000928212 -0.000828195 -0.000717539 -0.000596113 -0.00046379 -0.000320448 -0.000165965 -2.20759E-07 0.000169727 0.000336708 +-0.00153109 -0.00152298 -0.00151479 -0.00150651 -0.00149812 -0.00148961 -0.00148098 -0.00147221 -0.00146329 -0.0014542 -0.00144493 -0.00143546 -0.00142576 -0.00141581 -0.00140557 -0.00139498 -0.00138399 -0.00137251 -0.00136037 -0.00134731 -0.00133276 -0.00131569 -0.00129443 -0.00126699 -0.00123171 -0.00118743 -0.00113344 -0.00106931 -0.000994718 -0.000909451 -0.000813322 -0.000706171 -0.000587851 -0.000458223 -0.000317153 -0.000164507 -1.55964E-07 0.000168779 0.000335016 +-0.00145642 -0.00144864 -0.00144079 -0.00143285 -0.00142483 -0.00141671 -0.00140848 -0.00140012 -0.00139163 -0.001383 -0.0013742 -0.00136523 -0.00135605 -0.00134666 -0.00133701 -0.00132707 -0.00131678 -0.00130608 -0.00129486 -0.00128292 -0.00126991 -0.00125512 -0.00123723 -0.00121428 -0.00118423 -0.00114547 -0.00109699 -0.00103817 -0.000968604 -0.000888025 -0.000796211 -0.00069298 -0.000578169 -0.000451622 -0.000313193 -0.000162737 -1.09981E-07 0.000167516 0.000332763 +-0.00137958 -0.00137212 -0.00136461 -0.00135703 -0.00134938 -0.00134164 -0.0013338 -0.00132586 -0.0013178 -0.00130961 -0.00130128 -0.00129279 -0.00128413 -0.00127528 -0.00126621 -0.00125689 -0.00124727 -0.00123731 -0.00122692 -0.00121597 -0.00120422 -0.00119122 -0.00117605 -0.00115707 -0.00113207 -0.00109897 -0.00105632 -0.00100322 -0.000939129 -0.000863693 -0.000776649 -0.000677786 -0.000566918 -0.000443874 -0.000308491 -0.000160611 -7.74094E-08 0.000165908 0.000329887 +-0.00130063 -0.00129351 -0.00128634 -0.00127912 -0.00127184 -0.00126448 -0.00125703 -0.0012495 -0.00124186 -0.00123412 -0.00122624 -0.00121824 -0.00121008 -0.00120176 -0.00119325 -0.00118453 -0.00117556 -0.0011663 -0.00115668 -0.00114662 -0.00113595 -0.00112438 -0.00111133 -0.0010956 -0.00107519 -0.00104771 -0.00101113 -0.000964143 -0.000905985 -0.000836176 -0.000754391 -0.000660379 -0.000553929 -0.000434849 -0.000302959 -0.000158085 -5.43783E-08 0.000163923 0.00032632 +-0.0012197 -0.00121291 -0.00120609 -0.00119923 -0.00119231 -0.00118533 -0.00117828 -0.00117116 -0.00116394 -0.00115664 -0.00114922 -0.00114169 -0.00113403 -0.00112623 -0.00111827 -0.00111012 -0.00110177 -0.00109318 -0.00108429 -0.00107504 -0.00106533 -0.00105495 -0.00104355 -0.00103034 -0.00101381 -0.000991591 -0.000961158 -0.000920627 -0.000868857 -0.000805181 -0.000729176 -0.000640537 -0.000539019 -0.000424407 -0.0002965 -0.000155107 -3.81213E-08 0.000161519 0.000321991 +-0.00113692 -0.00113047 -0.001124 -0.0011175 -0.00111095 -0.00110435 -0.0010977 -0.00109098 -0.00108419 -0.00107732 -0.00107036 -0.0010633 -0.00105612 -0.00104883 -0.00104141 -0.00103383 -0.00102607 -0.00101812 -0.00100992 -0.00100143 -0.000992579 -0.000983228 -0.000973151 -0.000961873 -0.000948382 -0.000930745 -0.00090626 -0.000872388 -0.000827429 -0.0007704 -0.000700725 -0.000618019 -0.000521992 -0.000412397 -0.000289013 -0.000151625 -2.66663E-08 0.000158653 0.000316813 +-0.00105249 -0.00104638 -0.00104026 -0.00103412 -0.00102795 -0.00102174 -0.00101548 -0.00100917 -0.00100281 -0.000996367 -0.000989854 -0.000983257 -0.000976569 -0.000969779 -0.000962876 -0.000955845 -0.00094867 -0.000941329 -0.000933792 -0.000926021 -0.000917959 -0.000909519 -0.000900553 -0.000890773 -0.000879563 -0.000865594 -0.000846474 -0.000819225 -0.000781405 -0.000731525 -0.000668749 -0.000592572 -0.000502636 -0.000398658 -0.000280385 -0.000147581 -1.86093E-08 0.000155272 0.000310696 +-0.000966635 -0.000960881 -0.000955122 -0.00094935 -0.000943557 -0.000937736 -0.000931879 -0.00092598 -0.000920032 -0.000914028 -0.000907963 -0.000901828 -0.000895617 -0.000889322 -0.000882933 -0.000876439 -0.000869827 -0.000863079 -0.000856174 -0.00084908 -0.000841758 -0.000834146 -0.000826146 -0.00081758 -0.000808086 -0.000796857 -0.000782155 -0.000761098 -0.000730548 -0.000688258 -0.000632956 -0.000563931 -0.00048073 -0.000383014 -0.000270496 -0.000142913 -1.29533E-08 0.000151322 0.000303535 +-0.000879671 -0.000874278 -0.000868887 -0.00086349 -0.000858081 -0.000852653 -0.000847198 -0.000841712 -0.000836187 -0.000830618 -0.000824999 -0.000819324 -0.000813587 -0.000807782 -0.000801899 -0.000795932 -0.000789868 -0.000783696 -0.000777397 -0.00077095 -0.000764324 -0.000757476 -0.000750339 -0.0007428 -0.000734648 -0.000725418 -0.000714039 -0.00069827 -0.000674753 -0.000640344 -0.000593057 -0.000531827 -0.000456042 -0.000365283 -0.000259219 -0.000137554 -8.99066E-09 0.000146741 0.000295218 +-0.000791976 -0.000786954 -0.000781939 -0.000776926 -0.000771907 -0.000766877 -0.00076183 -0.000756759 -0.00075166 -0.000746527 -0.000741355 -0.000736138 -0.000730872 -0.000725551 -0.000720169 -0.000714719 -0.000709192 -0.000703579 -0.000697867 -0.000692038 -0.000686072 -0.000679937 -0.000673586 -0.000666949 -0.000659895 -0.000652163 -0.000643155 -0.000631445 -0.000614185 -0.000587634 -0.0005488 -0.000495997 -0.000428334 -0.000345273 -0.000246418 -0.000131432 -6.22036E-09 0.000141461 0.000285622 +-0.000704018 -0.000699377 -0.00069475 -0.000690128 -0.000685508 -0.000680883 -0.000676248 -0.000671597 -0.000666927 -0.000662232 -0.000657507 -0.000652749 -0.000647952 -0.000643112 -0.000638225 -0.000633284 -0.000628284 -0.000623217 -0.000618073 -0.000612841 -0.000607503 -0.000602038 -0.000596416 -0.000590587 -0.000584472 -0.000577922 -0.000570615 -0.000561762 -0.000549462 -0.0005302 -0.00050001 -0.000456202 -0.000397378 -0.000322792 -0.000231953 -0.000124472 -4.28808E-09 0.000135412 0.000274617 +-0.000616368 -0.000612122 -0.000607892 -0.000603673 -0.00059946 -0.000595247 -0.000591031 -0.000586806 -0.000582568 -0.000578314 -0.000574038 -0.000569738 -0.00056541 -0.000561049 -0.000556653 -0.000552216 -0.000547733 -0.0005432 -0.000538609 -0.000533952 -0.000529217 -0.000524388 -0.000519445 -0.000514355 -0.00050907 -0.0005035 -0.000497473 -0.000490582 -0.000481781 -0.000468548 -0.000446695 -0.000412268 -0.000362965 -0.000297651 -0.000215683 -0.000116597 -2.94367E-09 0.000128517 0.000262062 +-0.000529725 -0.000525887 -0.000522067 -0.000518261 -0.000514464 -0.000510672 -0.000506882 -0.000503088 -0.000499289 -0.000495478 -0.000491655 -0.000487814 -0.000483954 -0.000480071 -0.000476161 -0.000472222 -0.00046825 -0.000464241 -0.00046019 -0.00045609 -0.000451935 -0.000447712 -0.000443409 -0.000439004 -0.000434465 -0.000429742 -0.000424738 -0.000419249 -0.000412757 -0.000403853 -0.000389241 -0.00036417 -0.000324945 -0.000269688 -0.000197474 -0.000107729 -2.01077E-09 0.000120696 0.000247811 +-0.000444939 -0.000441523 -0.000438126 -0.000434744 -0.000431374 -0.000428012 -0.000424656 -0.0004213 -0.000417944 -0.000414582 -0.000411213 -0.000407834 -0.000404442 -0.000401034 -0.000397609 -0.000394163 -0.000390695 -0.000387201 -0.000383677 -0.00038012 -0.000376524 -0.000372882 -0.000369185 -0.00036542 -0.000361566 -0.000357594 -0.00035345 -0.000349029 -0.000344088 -0.00033796 -0.000328732 -0.0003122 -0.000283292 -0.00023879 -0.000177216 -9.77973E-05 -1.36534E-09 0.00011187 0.000231714 +-0.000363058 -0.000360077 -0.000357115 -0.000354169 -0.000351236 -0.000348314 -0.000345399 -0.000342488 -0.00033958 -0.000336671 -0.000333759 -0.000330843 -0.000327919 -0.000324986 -0.000322043 -0.000319086 -0.000316115 -0.000313127 -0.00031012 -0.000307091 -0.000304036 -0.000300952 -0.000297832 -0.000294669 -0.000291449 -0.000288156 -0.00028476 -0.000281206 -0.000277382 -0.000272995 -0.000267173 -0.000257313 -0.000238251 -0.000204964 -0.000154847 -8.67483E-05 -9.20221E-10 0.000101965 0.000213628 +-0.000285386 -0.000282853 -0.000280338 -0.000277839 -0.000275352 -0.000272877 -0.00027041 -0.00026795 -0.000265494 -0.000263041 -0.000260589 -0.000258135 -0.000255679 -0.000253219 -0.000250753 -0.00024828 -0.000245799 -0.000243308 -0.000240806 -0.000238291 -0.00023576 -0.000233212 -0.000230643 -0.000228047 -0.000225419 -0.000222747 -0.000220016 -0.000217199 -0.000214242 -0.000211021 -0.000207188 -0.000201578 -0.00019067 -0.000168466 -0.000130425 -7.45723E-05 -6.1434E-10 9.09217E-05 0.000193423 +-0.000213579 -0.000211502 -0.000209442 -0.000207395 -0.000205361 -0.000203337 -0.000201323 -0.000199315 -0.000197314 -0.000195317 -0.000193322 -0.000191329 -0.000189337 -0.000187344 -0.000185349 -0.000183352 -0.000181351 -0.000179345 -0.000177334 -0.000175316 -0.000173291 -0.000171257 -0.000169211 -0.000167151 -0.000165074 -0.000162974 -0.000160843 -0.000158667 -0.000156422 -0.000154055 -0.000151436 -0.000148142 -0.000142593 -0.000130105 -0.000104252 -6.13572E-05 -4.04969E-10 7.87189E-05 0.000171012 +-0.000149727 -0.000148107 -0.000146501 -0.000144907 -0.000143323 -0.000141748 -0.000140182 -0.000138622 -0.000137069 -0.000135521 -0.000133976 -0.000132435 -0.000130896 -0.000129358 -0.000127821 -0.000126284 -0.000124746 -0.000123208 -0.000121668 -0.000120126 -0.000118581 -0.000117032 -0.000115479 -0.00011392 -0.000112353 -0.000110776 -0.000109185 -0.000107573 -0.00010593 -0.000104234 -0.000102437 -0.000100401 -9.76063E-05 -9.18486E-05 -7.71498E-05 -4.73983E-05 -2.62288E-10 6.54218E-05 0.000146398 +-9.63022E-05 -9.51245E-05 -9.39566E-05 -9.27978E-05 -9.16472E-05 -9.0504E-05 -8.93676E-05 -8.82371E-05 -8.71119E-05 -8.59912E-05 -8.48746E-05 -8.37613E-05 -8.26509E-05 -8.15428E-05 -8.04366E-05 -7.9332E-05 -7.82286E-05 -7.7126E-05 -7.60241E-05 -7.49224E-05 -7.38207E-05 -7.27187E-05 -7.1616E-05 -7.05119E-05 -6.94056E-05 -6.82961E-05 -6.71817E-05 -6.60597E-05 -6.49256E-05 -6.37714E-05 -6.25798E-05 -6.13072E-05 -5.98072E-05 -5.7409E-05 -5.09333E-05 -3.33891E-05 -1.65537E-10 5.12796E-05 0.000119776 +-5.5609E-05 -5.48304E-05 -5.40584E-05 -5.32926E-05 -5.25325E-05 -5.17777E-05 -5.10277E-05 -5.0282E-05 -4.95404E-05 -4.88024E-05 -4.80676E-05 -4.73357E-05 -4.66064E-05 -4.58794E-05 -4.51545E-05 -4.44315E-05 -4.37101E-05 -4.29903E-05 -4.22718E-05 -4.15546E-05 -4.08386E-05 -4.01236E-05 -3.94094E-05 -3.86959E-05 -3.79828E-05 -3.72696E-05 -3.65558E-05 -3.58403E-05 -3.51215E-05 -3.43965E-05 -3.36596E-05 -3.28974E-05 -3.20703E-05 -3.1014E-05 -2.87399E-05 -2.0614E-05 -1.00295E-10 3.69042E-05 9.17535E-05 +-2.84508E-05 -2.7995E-05 -2.75431E-05 -2.70949E-05 -2.66501E-05 -2.62086E-05 -2.57701E-05 -2.53344E-05 -2.49012E-05 -2.44704E-05 -2.40417E-05 -2.36151E-05 -2.31903E-05 -2.27672E-05 -2.23458E-05 -2.19258E-05 -2.15072E-05 -2.109E-05 -2.0674E-05 -2.02593E-05 -1.98458E-05 -1.94335E-05 -1.90223E-05 -1.86121E-05 -1.8203E-05 -1.77946E-05 -1.73869E-05 -1.69796E-05 -1.6572E-05 -1.61633E-05 -1.57516E-05 -1.5333E-05 -1.48966E-05 -1.44029E-05 -1.36213E-05 -1.07371E-05 -5.65724E-11 2.34819E-05 6.37519E-05 +-1.29336E-05 -1.27015E-05 -1.24713E-05 -1.22431E-05 -1.20167E-05 -1.17919E-05 -1.15688E-05 -1.13471E-05 -1.11268E-05 -1.09079E-05 -1.06901E-05 -1.04735E-05 -1.02579E-05 -1.00434E-05 -9.82977E-06 -9.61709E-06 -9.40528E-06 -9.19432E-06 -8.98419E-06 -8.77487E-06 -8.56635E-06 -8.35864E-06 -8.15171E-06 -7.94555E-06 -7.74015E-06 -7.53548E-06 -7.33147E-06 -7.12802E-06 -6.92499E-06 -6.72207E-06 -6.5187E-06 -6.3137E-06 -6.10402E-06 -5.87937E-06 -5.5856E-06 -4.70036E-06 -2.74701E-11 1.26891E-05 3.85136E-05 +-5.26432E-06 -5.16215E-06 -5.06089E-06 -4.96049E-06 -4.86089E-06 -4.76205E-06 -4.66394E-06 -4.5665E-06 -4.46969E-06 -4.37348E-06 -4.27784E-06 -4.18274E-06 -4.08813E-06 -3.99401E-06 -3.90036E-06 -3.80714E-06 -3.71436E-06 -3.622E-06 -3.53005E-06 -3.43851E-06 -3.34738E-06 -3.25666E-06 -3.16634E-06 -3.07643E-06 -2.98692E-06 -2.8978E-06 -2.80906E-06 -2.72068E-06 -2.63259E-06 -2.54471E-06 -2.45688E-06 -2.36872E-06 -2.27932E-06 -2.18576E-06 -2.07365E-06 -1.80022E-06 -8.24887E-12 5.74559E-06 1.95967E-05 +-1.90505E-06 -1.86643E-06 -1.82816E-06 -1.79021E-06 -1.75258E-06 -1.71524E-06 -1.67817E-06 -1.64137E-06 -1.60481E-06 -1.56849E-06 -1.53239E-06 -1.4965E-06 -1.46081E-06 -1.42531E-06 -1.39E-06 -1.35486E-06 -1.3199E-06 -1.28511E-06 -1.25049E-06 -1.21603E-06 -1.18174E-06 -1.14762E-06 -1.11366E-06 -1.07987E-06 -1.04625E-06 -1.01279E-06 -9.79494E-07 -9.46349E-07 -9.13342E-07 -8.80445E-07 -8.47605E-07 -8.14709E-07 -7.81478E-07 -7.47036E-07 -7.07236E-07 -6.21316E-07 4.32393E-12 2.25509E-06 8.49386E-06 +-6.03538E-07 -5.91047E-07 -5.78669E-07 -5.66399E-07 -5.5423E-07 -5.42158E-07 -5.30177E-07 -5.18282E-07 -5.06469E-07 -4.94733E-07 -4.83071E-07 -4.71479E-07 -4.59954E-07 -4.48492E-07 -4.37093E-07 -4.25753E-07 -4.14472E-07 -4.03248E-07 -3.92081E-07 -3.8097E-07 -3.69916E-07 -3.58917E-07 -3.47976E-07 -3.37091E-07 -3.26263E-07 -3.1549E-07 -3.04773E-07 -2.94109E-07 -2.83492E-07 -2.72917E-07 -2.62365E-07 -2.51805E-07 -2.41155E-07 -2.30158E-07 -2.17625E-07 -1.91959E-07 1.24335E-11 7.95624E-07 3.2779E-06 +-1.6772E-07 -1.64218E-07 -1.60748E-07 -1.57308E-07 -1.53897E-07 -1.50513E-07 -1.47155E-07 -1.43822E-07 -1.40512E-07 -1.37224E-07 -1.33957E-07 -1.3071E-07 -1.27483E-07 -1.24273E-07 -1.21081E-07 -1.17907E-07 -1.14749E-07 -1.11608E-07 -1.08483E-07 -1.05374E-07 -1.02281E-07 -9.9205E-08 -9.61449E-08 -9.31012E-08 -9.00737E-08 -8.70624E-08 -8.40671E-08 -8.1087E-08 -7.8121E-08 -7.51669E-08 -7.22205E-08 -6.92727E-08 -6.63014E-08 -6.32378E-08 -5.97627E-08 -5.27781E-08 1.75674E-11 2.52178E-07 1.16135E-06 +-4.20119E-08 -4.11311E-08 -4.02583E-08 -3.93933E-08 -3.85355E-08 -3.76847E-08 -3.68405E-08 -3.60025E-08 -3.51704E-08 -3.43439E-08 -3.35228E-08 -3.27067E-08 -3.18955E-08 -3.10889E-08 -3.02869E-08 -2.94893E-08 -2.86959E-08 -2.79068E-08 -2.71218E-08 -2.63409E-08 -2.55642E-08 -2.47916E-08 -2.40232E-08 -2.3259E-08 -2.24989E-08 -2.17429E-08 -2.0991E-08 -2.0243E-08 -1.94986E-08 -1.87573E-08 -1.80181E-08 -1.72786E-08 -1.65333E-08 -1.57653E-08 -1.48953E-08 -1.31568E-08 2.07611E-11 7.12002E-08 3.75026E-07 +-9.82592E-09 -9.6192E-09 -9.41439E-09 -9.2114E-09 -9.01013E-09 -8.81049E-09 -8.6124E-09 -8.41579E-09 -8.22057E-09 -8.02667E-09 -7.83403E-09 -7.64259E-09 -7.4523E-09 -7.26312E-09 -7.075E-09 -6.88791E-09 -6.70184E-09 -6.51677E-09 -6.33268E-09 -6.14957E-09 -5.96744E-09 -5.78628E-09 -5.60611E-09 -5.42693E-09 -5.24873E-09 -5.0715E-09 -4.89524E-09 -4.7199E-09 -4.54542E-09 -4.37167E-09 -4.1984E-09 -4.0251E-09 -3.85046E-09 -3.6705E-09 -3.46677E-09 -3.06027E-09 2.27035E-11 1.81798E-08 1.08514E-07 +-2.19779E-09 -2.15113E-09 -2.1049E-09 -2.05908E-09 -2.01364E-09 -1.96858E-09 -1.92387E-09 -1.87949E-09 -1.83543E-09 -1.79167E-09 -1.74819E-09 -1.70498E-09 -1.66204E-09 -1.61934E-09 -1.57689E-09 -1.53467E-09 -1.49268E-09 -1.45092E-09 -1.40938E-09 -1.36806E-09 -1.32696E-09 -1.28608E-09 -1.24543E-09 -1.205E-09 -1.1648E-09 -1.12481E-09 -1.08505E-09 -1.04549E-09 -1.00613E-09 -9.6693E-10 -9.27843E-10 -8.88748E-10 -8.49355E-10 -8.08765E-10 -7.62817E-10 -6.71183E-10 2.38445E-11 4.34101E-09 2.8331E-08 +-4.66859E-10 -4.56535E-10 -4.46307E-10 -4.3617E-10 -4.2612E-10 -4.16151E-10 -4.0626E-10 -3.96443E-10 -3.86695E-10 -3.77014E-10 -3.67396E-10 -3.57839E-10 -3.48339E-10 -3.38894E-10 -3.29504E-10 -3.20165E-10 -3.10877E-10 -3.01639E-10 -2.9245E-10 -2.83311E-10 -2.74221E-10 -2.6518E-10 -2.56189E-10 -2.47247E-10 -2.38354E-10 -2.29511E-10 -2.20715E-10 -2.11967E-10 -2.03261E-10 -1.94592E-10 -1.85948E-10 -1.77302E-10 -1.6859E-10 -1.59613E-10 -1.49453E-10 -1.29192E-10 2.448E-11 1.00934E-09 6.87332E-09 +-8.27954E-11 -8.05343E-11 -7.82941E-11 -7.60739E-11 -7.38726E-11 -7.16892E-11 -6.95229E-11 -6.73727E-11 -6.52379E-11 -6.31176E-11 -6.10111E-11 -5.89179E-11 -5.68373E-11 -5.47689E-11 -5.27122E-11 -5.06669E-11 -4.86328E-11 -4.66096E-11 -4.45973E-11 -4.25958E-11 -4.0605E-11 -3.86251E-11 -3.66559E-11 -3.46976E-11 -3.27502E-11 -3.08135E-11 -2.88874E-11 -2.69715E-11 -2.5065E-11 -2.31666E-11 -2.12736E-11 -1.93802E-11 -1.74724E-11 -1.55067E-11 -1.32817E-11 -8.8452E-12 2.48035E-11 2.44574E-10 1.60749E-09 +1.48987E-12 1.9827E-12 2.47096E-12 2.95488E-12 3.43467E-12 3.91054E-12 4.3827E-12 4.85134E-12 5.31664E-12 5.77877E-12 6.23787E-12 6.6941E-12 7.14757E-12 7.59838E-12 8.04664E-12 8.49241E-12 8.93574E-12 9.37669E-12 9.81527E-12 1.02515E-11 1.06854E-11 1.11169E-11 1.15461E-11 1.19729E-11 1.23973E-11 1.28194E-11 1.32392E-11 1.36567E-11 1.40722E-11 1.4486E-11 1.48985E-11 1.53112E-11 1.5727E-11 1.61554E-11 1.66403E-11 1.76071E-11 2.49402E-11 7.34387E-11 3.81664E-10 +*table 0.6 +-0.00183742 -0.00182784 -0.0018181 -0.00180819 -0.00179808 -0.00178777 -0.00177723 -0.00176645 -0.0017554 -0.00174405 -0.00173237 -0.00172032 -0.00170783 -0.00169483 -0.00168119 -0.00166663 -0.00165068 -0.00163246 -0.00161078 -0.00158438 -0.00155221 -0.00151353 -0.00146787 -0.00141491 -0.00135442 -0.00128625 -0.00121027 -0.00112636 -0.00103445 -0.000934452 -0.000826281 -0.000709868 -0.000585141 -0.000452032 -0.00031047 -0.000160382 -1.69166E-06 0.000159543 0.000317313 +-0.00177873 -0.00176947 -0.00176007 -0.0017505 -0.00174075 -0.00173082 -0.00172069 -0.00171033 -0.00169973 -0.00168885 -0.00167768 -0.00166616 -0.00165426 -0.00164191 -0.00162901 -0.00161538 -0.0016007 -0.00158432 -0.00156522 -0.00154205 -0.00151356 -0.00147874 -0.00143696 -0.00138776 -0.00133088 -0.0012661 -0.00119328 -0.00111229 -0.00102303 -0.000925414 -0.000819349 -0.000704756 -0.000581559 -0.000449682 -0.00030905 -0.000159586 -1.21287E-06 0.000159915 0.000317668 +-0.00171809 -0.00170915 -0.00170007 -0.00169085 -0.00168146 -0.00167191 -0.00166217 -0.00165223 -0.00164206 -0.00163165 -0.00162097 -0.00160999 -0.00159866 -0.00158692 -0.00157472 -0.00156191 -0.00154828 -0.00153341 -0.00151648 -0.00149627 -0.00147136 -0.0014405 -0.00140277 -0.0013576 -0.00130459 -0.00124349 -0.00117412 -0.00109633 -0.00101 -0.000915024 -0.000811317 -0.000698786 -0.000577346 -0.000446915 -0.000307412 -0.000158757 -8.66622E-07 0.000160012 0.000317631 +-0.00165543 -0.0016468 -0.00163805 -0.00162917 -0.00162014 -0.00161096 -0.00160161 -0.00159208 -0.00158235 -0.00157239 -0.0015622 -0.00155173 -0.00154095 -0.00152982 -0.00151827 -0.00150621 -0.0014935 -0.00147985 -0.00146469 -0.00144704 -0.00142549 -0.00139856 -0.00136505 -0.00132412 -0.00127527 -0.00121815 -0.00115253 -0.00107823 -0.000995125 -0.000903087 -0.000802014 -0.000691807 -0.000572375 -0.000443627 -0.000305477 -0.000157836 -6.17467E-07 0.000159847 0.000317195 +-0.0015907 -0.00158238 -0.00157395 -0.00156541 -0.00155674 -0.00154793 -0.00153897 -0.00152985 -0.00152054 -0.00151103 -0.00150131 -0.00149134 -0.0014811 -0.00147055 -0.00145963 -0.00144828 -0.00143639 -0.00142376 -0.00141003 -0.00139449 -0.00137592 -0.00135276 -0.00132351 -0.00128704 -0.00124262 -0.00118979 -0.00112824 -0.00105777 -0.000978199 -0.000889405 -0.000791266 -0.000683672 -0.000566523 -0.00043972 -0.000303168 -0.000156772 -4.38875E-07 0.000159423 0.000316344 +-0.00152387 -0.00151586 -0.00150776 -0.00149956 -0.00149124 -0.0014828 -0.00147422 -0.0014655 -0.00145661 -0.00144755 -0.00143829 -0.00142881 -0.0014191 -0.0014091 -0.00139879 -0.00138811 -0.00137697 -0.00136525 -0.00135269 -0.00133883 -0.00132276 -0.00130303 -0.00127796 -0.00124607 -0.00120634 -0.0011581 -0.00110097 -0.00103466 -0.000958983 -0.000873771 -0.000778893 -0.000674228 -0.000559664 -0.000435094 -0.000300414 -0.00015552 -3.11262E-07 0.000158736 0.00031505 +-0.00145493 -0.00144723 -0.00143946 -0.0014316 -0.00142363 -0.00141556 -0.00140736 -0.00139904 -0.00139056 -0.00138194 -0.00137313 -0.00136414 -0.00135493 -0.00134548 -0.00133576 -0.00132571 -0.00131528 -0.00130437 -0.00129281 -0.00128031 -0.00126623 -0.00124944 -0.00122829 -0.00120099 -0.00116613 -0.0011228 -0.00107043 -0.00100866 -0.000937232 -0.000855966 -0.000764705 -0.000663314 -0.000551668 -0.000429648 -0.000297142 -0.000154036 -2.20311E-07 0.000157773 0.000313281 +-0.0013839 -0.00137651 -0.00136907 -0.00136154 -0.00135393 -0.00134622 -0.0013384 -0.00133047 -0.00132241 -0.00131421 -0.00130586 -0.00129734 -0.00128863 -0.00127971 -0.00127055 -0.00126112 -0.00125136 -0.0012412 -0.00123052 -0.00121913 -0.00120663 -0.00119223 -0.00117452 -0.00115162 -0.00112175 -0.00108358 -0.00103632 -0.000979461 -0.000912684 -0.000835758 -0.000748501 -0.00065076 -0.000542395 -0.000423276 -0.000293277 -0.000152278 -1.55634E-07 0.000156517 0.000310992 +-0.00131086 -0.00130379 -0.00129667 -0.00128948 -0.00128222 -0.00127488 -0.00126744 -0.0012599 -0.00125224 -0.00124447 -0.00123656 -0.0012285 -0.00122029 -0.00121188 -0.00120327 -0.00119443 -0.0011853 -0.00117585 -0.00116598 -0.00115555 -0.00114432 -0.00113177 -0.00111689 -0.00109799 -0.00107301 -0.00104019 -0.000998358 -0.000946801 -0.000885084 -0.000812916 -0.000730078 -0.000636394 -0.000531705 -0.000415869 -0.000288746 -0.000150204 -1.09734E-07 0.000154941 0.000308133 +-0.00123598 -0.00122923 -0.00122244 -0.00121559 -0.00120868 -0.00120169 -0.00119463 -0.00118748 -0.00118023 -0.00117288 -0.00116541 -0.00115781 -0.00115007 -0.00114217 -0.00113409 -0.00112581 -0.0011173 -0.00110851 -0.00109938 -0.00108981 -0.00107964 -0.00106855 -0.00105588 -0.00104033 -0.0010199 -0.000992454 -0.000956308 -0.000910425 -0.00085419 -0.000787217 -0.000709239 -0.000620046 -0.00051946 -0.00040732 -0.000283474 -0.000147774 -7.72201E-08 0.000153018 0.000304643 +-0.00115937 -0.00115293 -0.00114647 -0.00113996 -0.0011334 -0.00112678 -0.00112009 -0.00111333 -0.00110648 -0.00109955 -0.00109251 -0.00108536 -0.00107809 -0.00107068 -0.00106312 -0.00105539 -0.00104747 -0.00103931 -0.00103087 -0.00102209 -0.00101284 -0.00100293 -0.00099195 -0.000979032 -0.000962559 -0.000940254 -0.000909927 -0.00087005 -0.000819719 -0.000758401 -0.000685752 -0.00060152 -0.000505498 -0.000397506 -0.000277375 -0.000144944 -5.4229E-08 0.000150717 0.000300459 +-0.00108115 -0.00107504 -0.0010689 -0.00106273 -0.00105653 -0.00105027 -0.00104396 -0.00103758 -0.00103114 -0.00102462 -0.00101801 -0.0010113 -0.00100449 -0.00099757 -0.000990518 -0.000983321 -0.000975959 -0.000968405 -0.000960622 -0.00095256 -0.000944141 -0.000935231 -0.00092558 -0.000914658 -0.000901343 -0.000883642 -0.000859043 -0.00082541 -0.000781386 -0.000726195 -0.000659372 -0.000580603 -0.000489646 -0.000386294 -0.000270361 -0.000141666 -3.79998E-08 0.000147998 0.000295512 +-0.0010015 -0.000995714 -0.000989914 -0.000984092 -0.00097824 -0.000972349 -0.000966414 -0.000960426 -0.00095438 -0.000948268 -0.000942083 -0.000935819 -0.000929467 -0.000923019 -0.000916462 -0.000909784 -0.000902969 -0.000895996 -0.000888836 -0.000881452 -0.000873788 -0.000865754 -0.000857194 -0.000847791 -0.000836853 -0.000822933 -0.000803637 -0.000776299 -0.000738919 -0.000690321 -0.000629842 -0.000557072 -0.000471718 -0.000373542 -0.000262331 -0.00013789 -2.65638E-08 0.000144819 0.000289721 +-0.000920642 -0.00091519 -0.000909731 -0.000904258 -0.000898764 -0.00089324 -0.000887682 -0.000882082 -0.000876435 -0.000870734 -0.000864972 -0.000859145 -0.000853244 -0.000847262 -0.000841191 -0.00083502 -0.000828736 -0.000822323 -0.000815759 -0.000809016 -0.000802052 -0.000794808 -0.000787181 -0.00077898 -0.000769803 -0.000758744 -0.000743949 -0.000722633 -0.000692086 -0.000650508 -0.0005969 -0.000530694 -0.000451519 -0.000359095 -0.000253182 -0.00013356 -1.852E-08 0.000141131 0.000282999 +-0.000838854 -0.000833742 -0.00082863 -0.000823511 -0.000818378 -0.000813226 -0.000808047 -0.000802837 -0.000797588 -0.000792297 -0.000786957 -0.000781563 -0.000776109 -0.000770589 -0.000764996 -0.000759321 -0.000753555 -0.000747683 -0.000741692 -0.000735558 -0.000729252 -0.000722732 -0.00071593 -0.000708728 -0.000700893 -0.000691906 -0.000680575 -0.000664565 -0.000640753 -0.000606515 -0.000560286 -0.000501226 -0.000428843 -0.000342794 -0.000242801 -0.000128618 -1.2873E-08 0.000136882 0.000275247 +-0.000756475 -0.000751711 -0.000746953 -0.000742194 -0.000737429 -0.000732651 -0.000727855 -0.000723036 -0.000718189 -0.000713308 -0.000708389 -0.000703427 -0.000698416 -0.000693353 -0.000688231 -0.000683043 -0.000677781 -0.000672437 -0.000666998 -0.000661447 -0.000655763 -0.000649916 -0.000643861 -0.000637522 -0.000630762 -0.000623294 -0.00061444 -0.00060263 -0.00058499 -0.000558175 -0.000519762 -0.000468432 -0.00040348 -0.000324468 -0.000231068 -0.000123001 -8.91645E-09 0.000132014 0.00026636 +-0.000673922 -0.000669516 -0.00066512 -0.000660728 -0.000656336 -0.000651939 -0.00064753 -0.000643106 -0.000638661 -0.000634192 -0.000629693 -0.000625162 -0.000620592 -0.000615982 -0.000611325 -0.000606616 -0.00060185 -0.000597019 -0.000592114 -0.000587123 -0.000582032 -0.000576817 -0.000571449 -0.000565879 -0.000560024 -0.000553723 -0.000546614 -0.000537805 -0.000525238 -0.000505488 -0.000475149 -0.000432089 -0.000375221 -0.000303944 -0.000217859 -0.000116642 -6.15032E-09 0.000126464 0.000256223 +-0.000591701 -0.000587662 -0.000583638 -0.000579623 -0.000575611 -0.0005716 -0.000567583 -0.000563558 -0.000559519 -0.000555463 -0.000551386 -0.000547284 -0.000543155 -0.000538993 -0.000534797 -0.000530561 -0.000526281 -0.000521951 -0.000517566 -0.000513116 -0.000508591 -0.000503975 -0.000499247 -0.000494376 -0.000489311 -0.000483959 -0.000478129 -0.000471362 -0.000462471 -0.000448789 -0.000426398 -0.000392023 -0.000343872 -0.000281054 -0.000203048 -0.000109473 -4.22086E-09 0.000120165 0.000244712 +-0.000510425 -0.000506766 -0.000503124 -0.000499493 -0.000495871 -0.000492252 -0.000488634 -0.000485012 -0.000481382 -0.000477742 -0.000474088 -0.000470417 -0.000466725 -0.000463011 -0.000459271 -0.000455502 -0.000451701 -0.000447863 -0.000443984 -0.000440057 -0.000436076 -0.00043203 -0.000427904 -0.000423679 -0.000419322 -0.000414779 -0.000409948 -0.000404599 -0.000398142 -0.000388987 -0.000373747 -0.000348165 -0.000309281 -0.000255641 -0.000186511 -0.000101423 -2.87833E-09 0.000113046 0.0002317 +-0.000430838 -0.000427571 -0.000424322 -0.000421087 -0.000417862 -0.000414644 -0.00041143 -0.000408216 -0.000405 -0.000401779 -0.000398549 -0.000395309 -0.000392056 -0.000388787 -0.0003855 -0.000382193 -0.000378863 -0.000375507 -0.000372123 -0.000368705 -0.000365249 -0.000361748 -0.000358192 -0.000354568 -0.000350857 -0.000347027 -0.000343022 -0.000338727 -0.000333865 -0.000327665 -0.000317993 -0.000300684 -0.000271386 -0.000227589 -0.000168142 -9.24263E-05 -1.94671E-09 0.000105038 0.000217053 +-0.00035385 -0.000350988 -0.000348142 -0.000345312 -0.000342493 -0.000339684 -0.000336881 -0.000334081 -0.000331283 -0.000328484 -0.000325681 -0.000322872 -0.000320057 -0.000317231 -0.000314394 -0.000311544 -0.00030868 -0.000305798 -0.000302897 -0.000299974 -0.000297025 -0.000294047 -0.000291033 -0.000287975 -0.000284861 -0.000281673 -0.00027838 -0.000274924 -0.000271177 -0.000266802 -0.000260779 -0.000250255 -0.000230328 -0.000196867 -0.000147869 -8.24283E-05 -1.30212E-09 9.60699E-05 0.00020064 +-0.000280588 -0.00027814 -0.000275709 -0.000273293 -0.000270889 -0.000268495 -0.000266109 -0.000263728 -0.000261352 -0.000258977 -0.000256602 -0.000254226 -0.000251846 -0.000249462 -0.000247071 -0.000244673 -0.000242267 -0.00023985 -0.000237422 -0.00023498 -0.000232523 -0.000230047 -0.00022755 -0.000225026 -0.000222468 -0.000219867 -0.000217205 -0.000214452 -0.000211551 -0.000208359 -0.000204464 -0.000198495 -0.000186696 -0.000163632 -0.000125708 -7.14063E-05 -8.5756E-10 8.60839E-05 0.00018234 +-0.000212472 -0.000210448 -0.000208439 -0.000206444 -0.00020446 -0.000202486 -0.000200521 -0.000198562 -0.000196609 -0.000194659 -0.000192711 -0.000190765 -0.000188819 -0.000186871 -0.000184921 -0.000182968 -0.00018101 -0.000179048 -0.00017708 -0.000175104 -0.000173121 -0.000171128 -0.000169122 -0.000167103 -0.000165065 -0.000163003 -0.000160908 -0.000158767 -0.000156551 -0.000154202 -0.000151565 -0.00014813 -0.000142031 -0.000128454 -0.000101858 -5.94093E-05 -5.52049E-10 7.50486E-05 0.00016206 +-0.000151311 -0.000149714 -0.000148129 -0.000146555 -0.000144992 -0.000143438 -0.000141891 -0.000140351 -0.000138817 -0.000137287 -0.000135761 -0.000134237 -0.000132716 -0.000131195 -0.000129674 -0.000128154 -0.000126632 -0.000125109 -0.000123583 -0.000122056 -0.000120524 -0.000118989 -0.000117449 -0.000115902 -0.000114346 -0.00011278 -0.000111197 -0.000109593 -0.000107954 -0.000106258 -0.000104446 -0.000102352 -9.93308E-05 -9.28076E-05 -7.6919E-05 -4.66449E-05 -3.42925E-10 6.29961E-05 0.000139775 +-9.93131E-05 -9.81314E-05 -9.69594E-05 -9.57964E-05 -9.46415E-05 -9.34939E-05 -9.2353E-05 -9.12178E-05 -9.00877E-05 -8.8962E-05 -8.78401E-05 -8.67213E-05 -8.56052E-05 -8.44911E-05 -8.33787E-05 -8.22675E-05 -8.11572E-05 -8.00475E-05 -7.89381E-05 -7.78286E-05 -7.67188E-05 -7.56082E-05 -7.44965E-05 -7.33829E-05 -7.22667E-05 -7.11465E-05 -7.00206E-05 -6.8886E-05 -6.77378E-05 -6.65666E-05 -6.53526E-05 -6.40429E-05 -6.24542E-05 -5.97364E-05 -5.22911E-05 -3.36405E-05 -2.00412E-10 5.00992E-05 0.000115605 +-5.87301E-05 -5.79313E-05 -5.71393E-05 -5.63536E-05 -5.55736E-05 -5.4799E-05 -5.40293E-05 -5.3264E-05 -5.25027E-05 -5.17449E-05 -5.09904E-05 -5.02386E-05 -4.94894E-05 -4.87425E-05 -4.79974E-05 -4.72542E-05 -4.65125E-05 -4.57721E-05 -4.50331E-05 -4.42951E-05 -4.3558E-05 -4.28219E-05 -4.20863E-05 -4.13512E-05 -4.06162E-05 -3.98807E-05 -3.91442E-05 -3.84055E-05 -3.76627E-05 -3.69126E-05 -3.61483E-05 -3.53538E-05 -3.448E-05 -3.33154E-05 -3.06146E-05 -2.14478E-05 -1.03772E-10 3.68201E-05 8.9986E-05 +-3.0777E-05 -3.02969E-05 -2.9821E-05 -2.9349E-05 -2.88806E-05 -2.84156E-05 -2.79537E-05 -2.74946E-05 -2.70383E-05 -2.65843E-05 -2.61326E-05 -2.56829E-05 -2.52352E-05 -2.47891E-05 -2.43447E-05 -2.39018E-05 -2.34602E-05 -2.302E-05 -2.25811E-05 -2.21434E-05 -2.17068E-05 -2.12714E-05 -2.08371E-05 -2.04037E-05 -1.99713E-05 -1.95396E-05 -1.91084E-05 -1.86774E-05 -1.82459E-05 -1.78129E-05 -1.73761E-05 -1.69309E-05 -1.6464E-05 -1.59256E-05 -1.50177E-05 -1.15961E-05 -3.8599E-11 2.41197E-05 6.4005E-05 +-1.42869E-05 -1.40356E-05 -1.37865E-05 -1.35395E-05 -1.32944E-05 -1.30511E-05 -1.28095E-05 -1.25696E-05 -1.23311E-05 -1.2094E-05 -1.18582E-05 -1.16236E-05 -1.13901E-05 -1.11577E-05 -1.09263E-05 -1.06959E-05 -1.04664E-05 -1.02377E-05 -1.001E-05 -9.78306E-06 -9.55699E-06 -9.33174E-06 -9.1073E-06 -8.88367E-06 -8.66082E-06 -8.4387E-06 -8.21726E-06 -7.99637E-06 -7.77584E-06 -7.55535E-06 -7.33423E-06 -7.11107E-06 -6.88222E-06 -6.63511E-06 -6.30173E-06 -5.2406E-06 5.09171E-12 1.34991E-05 3.98996E-05 +-5.9303E-06 -5.81663E-06 -5.70397E-06 -5.59226E-06 -5.48144E-06 -5.37146E-06 -5.26228E-06 -5.15385E-06 -5.04612E-06 -4.93905E-06 -4.8326E-06 -4.72674E-06 -4.62143E-06 -4.51665E-06 -4.41238E-06 -4.3086E-06 -4.20528E-06 -4.10243E-06 -4.00003E-06 -3.89807E-06 -3.79656E-06 -3.69549E-06 -3.59487E-06 -3.49468E-06 -3.39494E-06 -3.29562E-06 -3.1967E-06 -3.09817E-06 -2.99995E-06 -2.90195E-06 -2.80397E-06 -2.70557E-06 -2.60568E-06 -2.50081E-06 -2.37351E-06 -2.0499E-06 3.41915E-11 6.31053E-06 2.09816E-05 +-2.19425E-06 -2.15004E-06 -2.10623E-06 -2.06279E-06 -2.01971E-06 -1.97696E-06 -1.93452E-06 -1.89239E-06 -1.85053E-06 -1.80894E-06 -1.76761E-06 -1.72651E-06 -1.68564E-06 -1.64498E-06 -1.60454E-06 -1.5643E-06 -1.52425E-06 -1.4844E-06 -1.44474E-06 -1.40526E-06 -1.36598E-06 -1.32688E-06 -1.28797E-06 -1.24926E-06 -1.21073E-06 -1.17238E-06 -1.13422E-06 -1.09623E-06 -1.0584E-06 -1.02069E-06 -9.83038E-07 -9.45317E-07 -9.07197E-07 -8.67642E-07 -8.21694E-07 -7.203E-07 5.34274E-11 2.53056E-06 9.31938E-06 +-7.11092E-07 -6.96412E-07 -6.81865E-07 -6.67443E-07 -6.53141E-07 -6.38951E-07 -6.24869E-07 -6.10887E-07 -5.97001E-07 -5.83205E-07 -5.69496E-07 -5.55868E-07 -5.42318E-07 -5.28843E-07 -5.1544E-07 -5.02108E-07 -4.88843E-07 -4.75645E-07 -4.62514E-07 -4.49448E-07 -4.36448E-07 -4.23514E-07 -4.10646E-07 -3.97844E-07 -3.85109E-07 -3.72439E-07 -3.59833E-07 -3.4729E-07 -3.34802E-07 -3.22362E-07 -3.09951E-07 -2.97529E-07 -2.84999E-07 -2.72058E-07 -2.5728E-07 -2.26694E-07 6.60189E-11 9.07829E-07 3.64888E-06 +-2.00634E-07 -1.96447E-07 -1.92298E-07 -1.88185E-07 -1.84107E-07 -1.80061E-07 -1.76046E-07 -1.72061E-07 -1.68103E-07 -1.64171E-07 -1.60265E-07 -1.56382E-07 -1.52522E-07 -1.48684E-07 -1.44867E-07 -1.41071E-07 -1.37294E-07 -1.33537E-07 -1.298E-07 -1.26082E-07 -1.22383E-07 -1.18703E-07 -1.15043E-07 -1.11403E-07 -1.07782E-07 -1.0418E-07 -1.00597E-07 -9.70327E-08 -9.34852E-08 -8.99519E-08 -8.64279E-08 -8.29025E-08 -7.93491E-08 -7.56853E-08 -7.15261E-08 -6.3118E-08 7.41417E-11 2.92722E-07 1.30799E-06 +-5.03681E-08 -4.9311E-08 -4.82636E-08 -4.72254E-08 -4.6196E-08 -4.51749E-08 -4.41617E-08 -4.31559E-08 -4.21573E-08 -4.11653E-08 -4.01797E-08 -3.92003E-08 -3.82266E-08 -3.72586E-08 -3.62959E-08 -3.53385E-08 -3.43863E-08 -3.3439E-08 -3.24968E-08 -3.15595E-08 -3.06272E-08 -2.96999E-08 -2.87775E-08 -2.78602E-08 -2.69478E-08 -2.60405E-08 -2.5138E-08 -2.42402E-08 -2.33467E-08 -2.2457E-08 -2.15698E-08 -2.06824E-08 -1.97881E-08 -1.88666E-08 -1.78225E-08 -1.57271E-08 7.92801E-11 8.37476E-08 4.28275E-07 +-1.16431E-08 -1.13969E-08 -1.1153E-08 -1.09113E-08 -1.06716E-08 -1.04338E-08 -1.01979E-08 -9.96379E-09 -9.7313E-09 -9.50039E-09 -9.27097E-09 -9.04298E-09 -8.81636E-09 -8.59105E-09 -8.36702E-09 -8.14422E-09 -7.92262E-09 -7.70221E-09 -7.48297E-09 -7.2649E-09 -7.048E-09 -6.83226E-09 -6.61769E-09 -6.4043E-09 -6.19209E-09 -5.98104E-09 -5.77114E-09 -5.56235E-09 -5.35458E-09 -5.14769E-09 -4.9414E-09 -4.73507E-09 -4.52718E-09 -4.313E-09 -4.07045E-09 -3.58469E-09 8.24745E-11 2.14766E-08 1.25392E-07 +-2.52074E-09 -2.466E-09 -2.41176E-09 -2.35801E-09 -2.30472E-09 -2.25186E-09 -2.19941E-09 -2.14735E-09 -2.09566E-09 -2.04432E-09 -1.99332E-09 -1.94263E-09 -1.89225E-09 -1.84217E-09 -1.79237E-09 -1.74284E-09 -1.69359E-09 -1.64459E-09 -1.59587E-09 -1.5474E-09 -1.49919E-09 -1.45124E-09 -1.40356E-09 -1.35613E-09 -1.30897E-09 -1.26207E-09 -1.21543E-09 -1.16903E-09 -1.12287E-09 -1.0769E-09 -1.03106E-09 -9.8522E-10 -9.39034E-10 -8.91452E-10 -8.37578E-10 -7.29745E-10 8.44169E-11 5.12917E-09 3.2855E-08 +-4.79731E-10 -4.67848E-10 -4.56076E-10 -4.44408E-10 -4.32839E-10 -4.21365E-10 -4.09981E-10 -3.98681E-10 -3.87462E-10 -3.76319E-10 -3.65249E-10 -3.54248E-10 -3.43314E-10 -3.32443E-10 -3.21634E-10 -3.10886E-10 -3.00195E-10 -2.89563E-10 -2.78988E-10 -2.68469E-10 -2.58007E-10 -2.47601E-10 -2.37253E-10 -2.26962E-10 -2.16728E-10 -2.0655E-10 -1.96429E-10 -1.86361E-10 -1.76343E-10 -1.66368E-10 -1.56422E-10 -1.46475E-10 -1.36454E-10 -1.2613E-10 -1.14441E-10 -9.10499E-11 8.55579E-11 1.21847E-09 7.94836E-09 +-3.50357E-11 -3.24869E-11 -2.99618E-11 -2.74592E-11 -2.49779E-11 -2.25168E-11 -2.0075E-11 -1.76513E-11 -1.52449E-11 -1.2855E-11 -1.04806E-11 -8.12118E-12 -5.776E-12 -3.44453E-12 -1.12631E-12 1.17903E-12 3.47179E-12 5.75217E-12 8.0203E-12 1.02762E-11 1.252E-11 1.47516E-11 1.6971E-11 1.91781E-11 2.13729E-11 2.35556E-11 2.57262E-11 2.78853E-11 3.00337E-11 3.21729E-11 3.43058E-11 3.6439E-11 3.8588E-11 4.0802E-11 4.33085E-11 4.83243E-11 8.61934E-11 3.34038E-10 1.87408E-09 +6.0666E-11 6.12096E-11 6.17481E-11 6.22818E-11 6.28109E-11 6.33357E-11 6.38565E-11 6.43733E-11 6.48865E-11 6.53962E-11 6.59025E-11 6.64057E-11 6.69058E-11 6.7403E-11 6.78973E-11 6.83889E-11 6.88779E-11 6.93642E-11 6.98478E-11 7.03289E-11 7.08074E-11 7.12833E-11 7.17565E-11 7.22272E-11 7.26952E-11 7.31606E-11 7.36235E-11 7.40839E-11 7.45421E-11 7.49982E-11 7.5453E-11 7.59079E-11 7.63662E-11 7.68383E-11 7.73727E-11 7.84423E-11 8.65169E-11 1.40027E-10 4.81263E-10 +8.11561E-11 8.12717E-11 8.13862E-11 8.14997E-11 8.16123E-11 8.17239E-11 8.18346E-11 8.19445E-11 8.20537E-11 8.21621E-11 8.22697E-11 8.23768E-11 8.24831E-11 8.25888E-11 8.2694E-11 8.27985E-11 8.29025E-11 8.30059E-11 8.31088E-11 8.32111E-11 8.33128E-11 8.34141E-11 8.35147E-11 8.36148E-11 8.37143E-11 8.38133E-11 8.39117E-11 8.40097E-11 8.41071E-11 8.42041E-11 8.43008E-11 8.43975E-11 8.4495E-11 8.45954E-11 8.47091E-11 8.49365E-11 8.66536E-11 9.81325E-11 1.7251E-10 +*table 0.8 +-0.00169849 -0.00168966 -0.00168069 -0.00167157 -0.00166228 -0.00165282 -0.00164316 -0.00163329 -0.00162318 -0.00161282 -0.00160218 -0.00159122 -0.00157989 -0.00156813 -0.00155584 -0.00154282 -0.00152869 -0.00151276 -0.00149395 -0.00147101 -0.00144283 -0.00140857 -0.00136769 -0.00131984 -0.00126479 -0.00120235 -0.00113241 -0.00105486 -0.000969611 -0.00087658 -0.000775695 -0.000666887 -0.000550088 -0.000425234 -0.000292261 -0.000151102 -1.68842E-06 0.000150271 0.000299103 +-0.00164008 -0.00163156 -0.00162291 -0.00161412 -0.00160518 -0.00159607 -0.00158679 -0.00157732 -0.00156764 -0.00155772 -0.00154755 -0.00153709 -0.0015263 -0.00151514 -0.00150351 -0.0014913 -0.00147825 -0.00146388 -0.00144732 -0.00142735 -0.00140265 -0.00137215 -0.0013351 -0.00129101 -0.00123958 -0.00118059 -0.00111387 -0.00103931 -0.000956813 -0.000866278 -0.000767628 -0.000660787 -0.000545681 -0.00042224 -0.000290394 -0.000150075 -1.21052E-06 0.000150413 0.000299016 +-0.0015799 -0.00157168 -0.00156334 -0.00155488 -0.00154628 -0.00153754 -0.00152863 -0.00151955 -0.00151028 -0.0015008 -0.00149109 -0.00148112 -0.00147086 -0.00146026 -0.00144927 -0.00143778 -0.00142564 -0.00141253 -0.00139782 -0.00138046 -0.00135909 -0.00133237 -0.0012993 -0.00125921 -0.00121166 -0.00115638 -0.00109316 -0.00102187 -0.000942391 -0.000854612 -0.000758447 -0.000653812 -0.000540626 -0.000418814 -0.000288299 -0.000149008 -8.64912E-07 0.000150271 0.000298522 +-0.00151789 -0.00150997 -0.00150194 -0.00149381 -0.00148555 -0.00147716 -0.00146862 -0.00145993 -0.00145106 -0.00144201 -0.00143275 -0.00142326 -0.00141351 -0.00140346 -0.00139307 -0.00138227 -0.00137093 -0.00135885 -0.00134561 -0.00133044 -0.00131208 -0.00128905 -0.00126005 -0.00122414 -0.00118074 -0.00112945 -0.00107003 -0.00100231 -0.000926132 -0.000841391 -0.000747984 -0.000645817 -0.000534802 -0.000414856 -0.000285897 -0.000147844 -6.16214E-07 0.00014986 0.000297613 +-0.00145401 -0.00144639 -0.00143868 -0.00143087 -0.00142295 -0.00141491 -0.00140674 -0.00139843 -0.00138996 -0.00138133 -0.00137252 -0.00136349 -0.00135424 -0.00134473 -0.00133491 -0.00132474 -0.00131413 -0.00130294 -0.0012909 -0.00127747 -0.00126168 -0.00124208 -0.00121712 -0.00118556 -0.00114654 -0.00109954 -0.00104423 -0.000980376 -0.00090782 -0.000826423 -0.00073607 -0.000636656 -0.000528086 -0.000410268 -0.000283112 -0.000146531 -4.37948E-07 0.000149184 0.000296276 +-0.00138827 -0.00138095 -0.00137355 -0.00136606 -0.00135848 -0.00135079 -0.00134298 -0.00133505 -0.00132698 -0.00131876 -0.00131038 -0.00130182 -0.00129305 -0.00128405 -0.0012748 -0.00126523 -0.0012553 -0.00124489 -0.00123385 -0.00122181 -0.00120809 -0.00119149 -0.00117039 -0.00114321 -0.00110879 -0.00106636 -0.00101547 -0.000955834 -0.000887232 -0.000809508 -0.00072253 -0.000626182 -0.000520356 -0.000404953 -0.000279875 -0.000145025 -3.10564E-07 0.00014824 0.000294485 +-0.00132067 -0.00131364 -0.00130656 -0.00129939 -0.00129214 -0.0012848 -0.00127736 -0.0012698 -0.00126212 -0.00125431 -0.00124636 -0.00123824 -0.00122995 -0.00122146 -0.00121274 -0.00120376 -0.00119446 -0.00118478 -0.00117459 -0.00116368 -0.00115159 -0.00113746 -0.00111983 -0.00109694 -0.00106723 -0.00102964 -0.000983502 -0.000928422 -0.00086413 -0.000790435 -0.000707181 -0.000614238 -0.000511486 -0.000398813 -0.000276114 -0.000143284 -2.19776E-07 0.000147014 0.000292207 +-0.00125124 -0.00124452 -0.00123774 -0.0012309 -0.00122398 -0.00121699 -0.0012099 -0.00120272 -0.00119543 -0.00118803 -0.00118049 -0.00117282 -0.00116499 -0.00115699 -0.00114879 -0.00114037 -0.00113168 -0.00112267 -0.00111325 -0.00110329 -0.00109249 -0.00108029 -0.00106558 -0.00104666 -0.00102166 -0.000989104 -0.000948029 -0.000897869 -0.000838267 -0.000768981 -0.00068983 -0.00060066 -0.000501339 -0.000391744 -0.000271758 -0.000141265 -1.55213E-07 0.000145491 0.000289402 +-0.0011801 -0.00117368 -0.00116721 -0.00116069 -0.00115411 -0.00114746 -0.00114074 -0.00113393 -0.00112702 -0.00112002 -0.0011129 -0.00110566 -0.00109829 -0.00109076 -0.00108307 -0.00107518 -0.00106707 -0.0010587 -0.00104999 -0.00104086 -0.00103112 -0.00102042 -0.00100801 -0.000992519 -0.000972004 -0.000944559 -0.000908811 -0.000863924 -0.000809403 -0.00074493 -0.000670284 -0.000585285 -0.000489784 -0.000383644 -0.000266734 -0.00013893 -1.09392E-07 0.000143646 0.000286019 +-0.00110743 -0.00110131 -0.00109516 -0.00108896 -0.00108272 -0.00107641 -0.00107005 -0.00106361 -0.00105708 -0.00105047 -0.00104377 -0.00103696 -0.00103003 -0.00102297 -0.00101577 -0.0010084 -0.00100085 -0.000993075 -0.000985032 -0.00097665 -0.000967812 -0.000958297 -0.000947643 -0.000934893 -0.000918363 -0.00089591 -0.000865657 -0.000826366 -0.000777316 -0.000718075 -0.000648358 -0.000567954 -0.000476689 -0.000374409 -0.000260972 -0.000136239 -7.69336E-08 0.000141452 0.000282001 +-0.00103336 -0.00102754 -0.00102171 -0.00101584 -0.00100993 -0.00100397 -0.000997959 -0.000991886 -0.000985744 -0.000979528 -0.000973228 -0.000966838 -0.000960349 -0.000953749 -0.000947027 -0.000940167 -0.000933149 -0.000925947 -0.000918525 -0.000910834 -0.000902792 -0.00089426 -0.000884957 -0.000874288 -0.000861024 -0.000843153 -0.000818388 -0.000784949 -0.00074175 -0.000688171 -0.000623835 -0.000548479 -0.0004619 -0.000363924 -0.000254391 -0.00013315 -5.39809E-08 0.00013888 0.000277287 +-0.000958044 -0.000952542 -0.000947023 -0.00094148 -0.000935907 -0.000930297 -0.000924641 -0.000918935 -0.000913172 -0.000907346 -0.00090145 -0.000895477 -0.00088942 -0.00088327 -0.000877016 -0.000870647 -0.000864147 -0.000857494 -0.000850664 -0.000843617 -0.000836297 -0.000828612 -0.000820392 -0.000811283 -0.000800507 -0.000786506 -0.00076694 -0.000739466 -0.000702454 -0.000654971 -0.000596486 -0.000526662 -0.000445253 -0.00035206 -0.000246903 -0.000129616 -3.77783E-08 0.000135891 0.000271812 +-0.000881692 -0.000876504 -0.000871308 -0.000866096 -0.000860861 -0.000855599 -0.000850301 -0.000844962 -0.000839577 -0.000834139 -0.000828643 -0.000823083 -0.000817453 -0.000811745 -0.000805951 -0.000800061 -0.000794062 -0.00078794 -0.000781673 -0.000775233 -0.00076858 -0.000761652 -0.00075434 -0.000746437 -0.000737488 -0.000726479 -0.000711461 -0.000689804 -0.000659207 -0.000618228 -0.000566077 -0.000502295 -0.000426576 -0.000338684 -0.000238417 -0.000125591 -2.63606E-08 0.000132446 0.0002655 +-0.000804551 -0.000799683 -0.000794814 -0.000789936 -0.000785044 -0.000780131 -0.000775192 -0.000770221 -0.000765214 -0.000760163 -0.000755066 -0.000749916 -0.000744707 -0.000739435 -0.000734093 -0.000728671 -0.000723162 -0.000717552 -0.000711826 -0.000705962 -0.000699933 -0.000693694 -0.000687176 -0.000680253 -0.000672666 -0.000663826 -0.00065241 -0.000636033 -0.000611857 -0.000577715 -0.000532372 -0.000475163 -0.000405684 -0.000323652 -0.000228833 -0.000121021 -1.83294E-08 0.000128499 0.000258265 +-0.000726926 -0.000722385 -0.000717849 -0.000713311 -0.000708765 -0.000704205 -0.000699627 -0.000695026 -0.000690396 -0.000685733 -0.000681032 -0.00067629 -0.0006715 -0.000666659 -0.00066176 -0.000656799 -0.000651766 -0.000646653 -0.000641448 -0.000636136 -0.000630694 -0.000625094 -0.000619288 -0.000613199 -0.000606677 -0.000599398 -0.000590592 -0.00057854 -0.000560405 -0.000533258 -0.000495152 -0.000445051 -0.000382392 -0.000306814 -0.000218046 -0.000115851 -1.2691E-08 0.000123999 0.000250016 +-0.000649188 -0.000644984 -0.000640787 -0.000636594 -0.000632399 -0.000628197 -0.000623984 -0.000619754 -0.000615503 -0.000611228 -0.000606923 -0.000602586 -0.000598212 -0.000593797 -0.000589337 -0.000584827 -0.000580261 -0.000575632 -0.000570932 -0.000566148 -0.000561265 -0.000556263 -0.00055111 -0.000545756 -0.000540114 -0.000534004 -0.000527016 -0.000518132 -0.000505148 -0.000484807 -0.000454235 -0.000411755 -0.000356509 -0.000288017 -0.000205944 -0.000110022 -8.74039E-09 0.000118892 0.000240653 +-0.000571788 -0.000567928 -0.000564079 -0.000560238 -0.0005564 -0.000552561 -0.000548715 -0.00054486 -0.00054099 -0.000537104 -0.000533195 -0.000529263 -0.000525302 -0.000521311 -0.000517284 -0.000513219 -0.00050911 -0.000504954 -0.000500742 -0.000496468 -0.00049212 -0.000487683 -0.000483136 -0.000478447 -0.000473563 -0.000468383 -0.000462693 -0.000455963 -0.000446847 -0.000432565 -0.000409539 -0.000375102 -0.000327859 -0.000267105 -0.000192415 -0.000103473 -5.97825E-09 0.00011312 0.000230068 +-0.000495265 -0.000491759 -0.000488268 -0.000484787 -0.000481313 -0.000477841 -0.000474368 -0.000470891 -0.000467405 -0.000463908 -0.000460397 -0.000456869 -0.00045332 -0.000449748 -0.000446151 -0.000442524 -0.000438866 -0.000435172 -0.000431437 -0.000427655 -0.00042382 -0.00041992 -0.000415941 -0.000411864 -0.000407654 -0.000403255 -0.000398553 -0.000393287 -0.000386766 -0.000377205 -0.000361191 -0.000335 -0.00029629 -0.000243935 -0.000177347 -9.6141E-05 -4.05149E-09 0.000106619 0.000218147 +-0.000420272 -0.000417131 -0.000414006 -0.000410893 -0.00040779 -0.000404693 -0.000401598 -0.000398503 -0.000395404 -0.0003923 -0.000389186 -0.000386062 -0.000382924 -0.00037977 -0.000376597 -0.000373405 -0.000370189 -0.000366948 -0.000363678 -0.000360375 -0.000357033 -0.000353647 -0.000350205 -0.000346697 -0.0003431 -0.000339382 -0.000335482 -0.000331271 -0.000326426 -0.00032004 -0.000309751 -0.000291525 -0.00026172 -0.00021839 -0.000160639 -8.79645E-05 -2.71078E-09 9.93269E-05 0.000204772 +-0.0003476 -0.000344834 -0.000342085 -0.00033935 -0.000336625 -0.000333908 -0.000331197 -0.000328489 -0.00032578 -0.00032307 -0.000320356 -0.000317636 -0.000314907 -0.000312169 -0.000309418 -0.000306655 -0.000303875 -0.000301079 -0.000298263 -0.000295424 -0.00029256 -0.000289666 -0.000286735 -0.00028376 -0.000280729 -0.000277621 -0.000274404 -0.000271014 -0.000267304 -0.000262873 -0.000256511 -0.000245136 -0.00022421 -0.000190414 -0.000142213 -7.88906E-05 -1.78037E-09 9.11802E-05 0.000189826 +-0.00027822 -0.00027584 -0.000273476 -0.000271126 -0.000268787 -0.000266457 -0.000264135 -0.000261817 -0.000259503 -0.000257189 -0.000254875 -0.000252559 -0.000250238 -0.000247913 -0.00024558 -0.00024324 -0.00024089 -0.00023853 -0.000236158 -0.000233771 -0.000231369 -0.000228948 -0.000226504 -0.000224033 -0.000221527 -0.000218975 -0.00021636 -0.000213649 -0.000210776 -0.000207572 -0.000203537 -0.000197042 -0.000184154 -0.00016009 -0.000122056 -6.88878E-05 -1.13659E-09 8.21225E-05 0.000173194 +-0.000213351 -0.000211365 -0.000209394 -0.000207435 -0.000205488 -0.00020355 -0.00020162 -0.000199696 -0.000197776 -0.00019586 -0.000193945 -0.000192031 -0.000190116 -0.000188199 -0.000186279 -0.000184356 -0.000182428 -0.000180495 -0.000178554 -0.000176607 -0.00017465 -0.000172683 -0.000170703 -0.000168708 -0.000166693 -0.000164653 -0.000162578 -0.000160452 -0.000158245 -0.000155888 -0.000153193 -0.000149521 -0.00014267 -0.000127803 -0.000100289 -5.79767E-05 -6.92578E-10 7.21161E-05 0.000154785 +-0.000154543 -0.000152955 -0.00015138 -0.000149815 -0.000148261 -0.000146715 -0.000145177 -0.000143645 -0.000142118 -0.000140595 -0.000139076 -0.000137558 -0.000136042 -0.000134526 -0.000133011 -0.000131494 -0.000129976 -0.000128456 -0.000126934 -0.000125408 -0.000123878 -0.000122344 -0.000120804 -0.000119256 -0.000117699 -0.000116129 -0.000114542 -0.000112931 -0.000111282 -0.000109566 -0.000107716 -0.000105519 -0.00010215 -9.46186E-05 -7.73332E-05 -4.62953E-05 -3.87432E-10 6.11693E-05 0.000134554 +-0.000103734 -0.000102537 -0.000101351 -0.000100174 -9.90043E-05 -9.78423E-05 -9.66867E-05 -9.55367E-05 -9.43917E-05 -9.32509E-05 -9.21136E-05 -9.09792E-05 -8.98471E-05 -8.87168E-05 -8.75879E-05 -8.64599E-05 -8.53324E-05 -8.42052E-05 -8.30778E-05 -8.195E-05 -8.08214E-05 -7.96916E-05 -7.856E-05 -7.7426E-05 -7.62887E-05 -7.51466E-05 -7.39976E-05 -7.28385E-05 -7.16635E-05 -7.04618E-05 -6.92091E-05 -6.7839E-05 -6.61109E-05 -6.2918E-05 -5.42292E-05 -3.42287E-05 -1.78555E-10 4.93944E-05 0.000112565 +-6.3055E-05 -6.22263E-05 -6.14045E-05 -6.05892E-05 -5.97799E-05 -5.8976E-05 -5.8177E-05 -5.73825E-05 -5.6592E-05 -5.58051E-05 -5.50213E-05 -5.42403E-05 -5.34617E-05 -5.26853E-05 -5.19107E-05 -5.11377E-05 -5.0366E-05 -4.95956E-05 -4.88262E-05 -4.80578E-05 -4.729E-05 -4.65229E-05 -4.57561E-05 -4.49894E-05 -4.42224E-05 -4.34546E-05 -4.26851E-05 -4.19127E-05 -4.11351E-05 -4.03484E-05 -3.95444E-05 -3.87029E-05 -3.77596E-05 -3.64278E-05 -3.31015E-05 -2.2604E-05 -3.62099E-11 3.71262E-05 8.91157E-05 +-3.40287E-05 -3.35152E-05 -3.30061E-05 -3.25012E-05 -3.20001E-05 -3.15026E-05 -3.10083E-05 -3.05171E-05 -3.00287E-05 -2.95427E-05 -2.90591E-05 -2.85777E-05 -2.80981E-05 -2.76203E-05 -2.71441E-05 -2.66695E-05 -2.61962E-05 -2.57242E-05 -2.52535E-05 -2.47839E-05 -2.43155E-05 -2.38481E-05 -2.33818E-05 -2.29163E-05 -2.24517E-05 -2.19876E-05 -2.15239E-05 -2.10601E-05 -2.05954E-05 -2.01285E-05 -1.96568E-05 -1.91742E-05 -1.86639E-05 -1.80591E-05 -1.6953E-05 -1.27664E-05 6.03177E-11 2.5113E-05 6.5007E-05 +-1.62228E-05 -1.5945E-05 -1.56695E-05 -1.53963E-05 -1.51253E-05 -1.48562E-05 -1.45891E-05 -1.43236E-05 -1.40598E-05 -1.37975E-05 -1.35366E-05 -1.3277E-05 -1.30186E-05 -1.27613E-05 -1.25052E-05 -1.225E-05 -1.19958E-05 -1.17426E-05 -1.14903E-05 -1.12388E-05 -1.09883E-05 -1.07386E-05 -1.04897E-05 -1.02417E-05 -9.99451E-06 -9.74804E-06 -9.50224E-06 -9.25696E-06 -9.01198E-06 -8.76688E-06 -8.52086E-06 -8.27216E-06 -8.01616E-06 -7.73658E-06 -7.34255E-06 -6.01061E-06 1.25428E-10 1.46443E-05 4.19929E-05 +-6.89812E-06 -6.76814E-06 -6.6393E-06 -6.51154E-06 -6.38481E-06 -6.25903E-06 -6.13415E-06 -6.01012E-06 -5.88688E-06 -5.76439E-06 -5.64261E-06 -5.52148E-06 -5.40098E-06 -5.28108E-06 -5.16174E-06 -5.04294E-06 -4.92468E-06 -4.80692E-06 -4.68967E-06 -4.57291E-06 -4.45665E-06 -4.34089E-06 -4.22561E-06 -4.11082E-06 -3.99652E-06 -3.88268E-06 -3.7693E-06 -3.65632E-06 -3.54368E-06 -3.43125E-06 -3.31879E-06 -3.20578E-06 -3.09087E-06 -2.96968E-06 -2.8198E-06 -2.41827E-06 1.691E-10 7.13218E-06 2.30069E-05 +-2.62169E-06 -2.56934E-06 -2.51745E-06 -2.46601E-06 -2.41498E-06 -2.36435E-06 -2.31409E-06 -2.26418E-06 -2.2146E-06 -2.16533E-06 -2.11636E-06 -2.06767E-06 -2.01925E-06 -1.97108E-06 -1.92315E-06 -1.87546E-06 -1.828E-06 -1.78077E-06 -1.73376E-06 -1.68696E-06 -1.64039E-06 -1.59404E-06 -1.54791E-06 -1.502E-06 -1.45631E-06 -1.41083E-06 -1.36557E-06 -1.32051E-06 -1.27562E-06 -1.23088E-06 -1.18619E-06 -1.14142E-06 -1.09614E-06 -1.04907E-06 -9.94E-07 -8.68956E-07 1.98211E-10 2.94522E-06 1.05708E-05 +-8.75647E-07 -8.57638E-07 -8.39792E-07 -8.22099E-07 -8.04552E-07 -7.87143E-07 -7.69864E-07 -7.52708E-07 -7.3567E-07 -7.18741E-07 -7.01917E-07 -6.85193E-07 -6.68564E-07 -6.52026E-07 -6.35576E-07 -6.19211E-07 -6.02929E-07 -5.86728E-07 -5.70608E-07 -5.54568E-07 -5.38607E-07 -5.22727E-07 -5.06927E-07 -4.91208E-07 -4.7557E-07 -4.60011E-07 -4.44531E-07 -4.29125E-07 -4.13789E-07 -3.9851E-07 -3.83265E-07 -3.68006E-07 -3.52613E-07 -3.36705E-07 -3.1849E-07 -2.80308E-07 2.17471E-10 1.07972E-06 4.2271E-06 +-2.53452E-07 -2.48168E-07 -2.42931E-07 -2.3774E-07 -2.32593E-07 -2.27486E-07 -2.22419E-07 -2.17388E-07 -2.12392E-07 -2.07429E-07 -2.02497E-07 -1.97596E-07 -1.92723E-07 -1.87877E-07 -1.83058E-07 -1.78265E-07 -1.73496E-07 -1.68753E-07 -1.64034E-07 -1.59339E-07 -1.54668E-07 -1.50022E-07 -1.454E-07 -1.40802E-07 -1.3623E-07 -1.31681E-07 -1.27156E-07 -1.22655E-07 -1.18174E-07 -1.13712E-07 -1.09261E-07 -1.04809E-07 -1.00322E-07 -9.56946E-08 -9.04375E-08 -7.97495E-08 2.30086E-10 3.56401E-07 1.53913E-06 +-6.43971E-08 -6.30432E-08 -6.17017E-08 -6.0372E-08 -5.90535E-08 -5.77457E-08 -5.64479E-08 -5.51597E-08 -5.38805E-08 -5.26098E-08 -5.13474E-08 -5.00927E-08 -4.88455E-08 -4.76054E-08 -4.63723E-08 -4.51458E-08 -4.39259E-08 -4.27125E-08 -4.15054E-08 -4.03047E-08 -3.91103E-08 -3.79223E-08 -3.67406E-08 -3.55654E-08 -3.43965E-08 -3.3234E-08 -3.20778E-08 -3.09276E-08 -2.9783E-08 -2.86432E-08 -2.75067E-08 -2.63699E-08 -2.52246E-08 -2.40444E-08 -2.2707E-08 -2.00144E-08 2.38224E-10 1.04356E-07 5.13766E-07 +-1.47869E-08 -1.44714E-08 -1.41587E-08 -1.38488E-08 -1.35415E-08 -1.32368E-08 -1.29343E-08 -1.26342E-08 -1.23361E-08 -1.20401E-08 -1.17459E-08 -1.14537E-08 -1.11631E-08 -1.08743E-08 -1.0587E-08 -1.03014E-08 -1.00173E-08 -9.73471E-09 -9.45364E-09 -9.17405E-09 -8.89597E-09 -8.61937E-09 -8.34429E-09 -8.07071E-09 -7.79864E-09 -7.52807E-09 -7.25897E-09 -6.9913E-09 -6.72495E-09 -6.45975E-09 -6.19531E-09 -5.93085E-09 -5.66443E-09 -5.38999E-09 -5.0792E-09 -4.45526E-09 2.43367E-10 2.72114E-08 1.53636E-07 +-3.06364E-09 -2.99407E-09 -2.92514E-09 -2.85682E-09 -2.78909E-09 -2.7219E-09 -2.65524E-09 -2.58907E-09 -2.52337E-09 -2.45812E-09 -2.3933E-09 -2.32888E-09 -2.26485E-09 -2.20119E-09 -2.13789E-09 -2.07494E-09 -2.01234E-09 -1.95007E-09 -1.88813E-09 -1.82653E-09 -1.76526E-09 -1.70432E-09 -1.64371E-09 -1.58344E-09 -1.5235E-09 -1.4639E-09 -1.40462E-09 -1.34566E-09 -1.28699E-09 -1.22857E-09 -1.17033E-09 -1.11208E-09 -1.05341E-09 -9.92976E-10 -9.24551E-10 -7.87288E-10 2.46562E-10 6.60964E-09 4.08859E-08 +-4.59787E-10 -4.44893E-10 -4.30137E-10 -4.15513E-10 -4.01013E-10 -3.86631E-10 -3.72361E-10 -3.58198E-10 -3.44135E-10 -3.30169E-10 -3.16293E-10 -3.02505E-10 -2.88799E-10 -2.75174E-10 -2.61627E-10 -2.48154E-10 -2.34755E-10 -2.21429E-10 -2.08173E-10 -1.9499E-10 -1.81877E-10 -1.68835E-10 -1.55865E-10 -1.42967E-10 -1.30141E-10 -1.17386E-10 -1.04701E-10 -9.20843E-11 -7.95305E-11 -6.70311E-11 -5.45686E-11 -4.21062E-11 -2.95524E-11 -1.66221E-11 -1.98318E-12 2.7376E-11 2.48505E-10 1.66495E-09 1.00106E-08 +1.00253E-10 1.03395E-10 1.06508E-10 1.09593E-10 1.12652E-10 1.15686E-10 1.18696E-10 1.21684E-10 1.24651E-10 1.27597E-10 1.30524E-10 1.33433E-10 1.36324E-10 1.39198E-10 1.42056E-10 1.44898E-10 1.47724E-10 1.50536E-10 1.53332E-10 1.56113E-10 1.58879E-10 1.61629E-10 1.64365E-10 1.67086E-10 1.69791E-10 1.72482E-10 1.75157E-10 1.77818E-10 1.80466E-10 1.83103E-10 1.85731E-10 1.8836E-10 1.91007E-10 1.93735E-10 1.96822E-10 2.03013E-10 2.49646E-10 5.55104E-10 2.45029E-09 +2.18989E-10 2.19647E-10 2.20299E-10 2.20946E-10 2.21586E-10 2.22222E-10 2.22852E-10 2.23478E-10 2.241E-10 2.24717E-10 2.2533E-10 2.25939E-10 2.26545E-10 2.27147E-10 2.27746E-10 2.28341E-10 2.28933E-10 2.29522E-10 2.30108E-10 2.3069E-10 2.3127E-10 2.31846E-10 2.32419E-10 2.32989E-10 2.33556E-10 2.34119E-10 2.3468E-10 2.35237E-10 2.35792E-10 2.36344E-10 2.36894E-10 2.37445E-10 2.38E-10 2.38571E-10 2.39217E-10 2.40514E-10 2.50281E-10 3.15106E-10 7.29091E-10 +2.44072E-10 2.44209E-10 2.44345E-10 2.4448E-10 2.44614E-10 2.44747E-10 2.44878E-10 2.45009E-10 2.45139E-10 2.45268E-10 2.45396E-10 2.45523E-10 2.45649E-10 2.45775E-10 2.459E-10 2.46024E-10 2.46148E-10 2.46271E-10 2.46393E-10 2.46515E-10 2.46636E-10 2.46756E-10 2.46876E-10 2.46995E-10 2.47113E-10 2.47231E-10 2.47348E-10 2.47464E-10 2.4758E-10 2.47695E-10 2.4781E-10 2.47925E-10 2.48041E-10 2.4816E-10 2.48295E-10 2.48566E-10 2.50605E-10 2.64255E-10 3.52909E-10 +2.4938E-10 2.49408E-10 2.49437E-10 2.49465E-10 2.49493E-10 2.4952E-10 2.49548E-10 2.49575E-10 2.49602E-10 2.49629E-10 2.49656E-10 2.49682E-10 2.49709E-10 2.49735E-10 2.49761E-10 2.49787E-10 2.49813E-10 2.49838E-10 2.49864E-10 2.49889E-10 2.49914E-10 2.49939E-10 2.49964E-10 2.49989E-10 2.50014E-10 2.50038E-10 2.50063E-10 2.50087E-10 2.50111E-10 2.50135E-10 2.50159E-10 2.50183E-10 2.50207E-10 2.50232E-10 2.5026E-10 2.50317E-10 2.50742E-10 2.53605E-10 2.72407E-10 +*table 1 +-0.00157083 -0.00156269 -0.00155442 -0.00154602 -0.00153748 -0.00152879 -0.00151992 -0.00151087 -0.00150163 -0.00149216 -0.00148245 -0.00147247 -0.00146217 -0.00145152 -0.00144042 -0.00142874 -0.00141619 -0.00140223 -0.00138596 -0.00136616 -0.00134165 -0.00131152 -0.00127512 -0.00123207 -0.0011821 -0.00112503 -0.00106073 -0.000989087 -0.000910015 -0.000823438 -0.000729283 -0.000627485 -0.00051798 -0.000400707 -0.000275607 -0.000142621 -1.68509E-06 0.000141809 0.000282489 +-0.00151296 -0.00150511 -0.00149715 -0.00148907 -0.00148085 -0.0014725 -0.00146399 -0.00145532 -0.00144646 -0.00143741 -0.00142814 -0.00141862 -0.00140883 -0.00139872 -0.00138823 -0.00137725 -0.00136562 -0.00135297 -0.00133861 -0.00132145 -0.00130021 -0.0012737 -0.00124107 -0.00120177 -0.00115544 -0.00110184 -0.00104082 -0.000972237 -0.000896 -0.000812018 -0.000720213 -0.000620511 -0.000512843 -0.000397143 -0.000273347 -0.00014139 -1.20805E-06 0.000141746 0.000282012 +-0.00145349 -0.00144592 -0.00143826 -0.00143049 -0.0014226 -0.00141459 -0.00140643 -0.00139813 -0.00138966 -0.00138102 -0.00137218 -0.00136312 -0.00135381 -0.00134422 -0.00133431 -0.00132399 -0.00131314 -0.00130154 -0.00128871 -0.00127381 -0.00125558 -0.00123265 -0.0012039 -0.00116854 -0.00112608 -0.00107622 -0.00101875 -0.000953496 -0.000880356 -0.000799227 -0.000710018 -0.00061265 -0.000507047 -0.000393137 -0.000270849 -0.000140114 -8.63053E-07 0.000141394 0.000281113 +-0.00139237 -0.00138509 -0.00137772 -0.00137027 -0.0013627 -0.00135502 -0.00134722 -0.00133928 -0.0013312 -0.00132295 -0.00131453 -0.00130592 -0.00129709 -0.001288 -0.00127864 -0.00126893 -0.00125879 -0.00124806 -0.00123646 -0.00122338 -0.00120777 -0.00118823 -0.00116337 -0.00113211 -0.00109377 -0.00104792 -0.000994268 -0.000932636 -0.000862878 -0.000784877 -0.000698535 -0.000603761 -0.000500472 -0.000388589 -0.000268035 -0.000138735 -6.14794E-07 0.000140767 0.000279789 +-0.00132959 -0.00132259 -0.00131553 -0.00130838 -0.00130114 -0.00129379 -0.00128634 -0.00127876 -0.00127105 -0.0012632 -0.0012552 -0.00124702 -0.00123865 -0.00123006 -0.00122122 -0.00121209 -0.0012026 -0.00119264 -0.00118204 -0.00117039 -0.00115693 -0.00114043 -0.00111934 -0.00109227 -0.00105824 -0.00101666 -0.000967139 -0.000909429 -0.000843355 -0.000768783 -0.000685598 -0.000593701 -0.000492998 -0.000383403 -0.000264832 -0.000137203 -4.36838E-07 0.000139869 0.000278025 +-0.00126515 -0.00125845 -0.00125168 -0.00124484 -0.00123792 -0.0012309 -0.00122379 -0.00121658 -0.00120924 -0.00120178 -0.00119418 -0.00118643 -0.00117851 -0.0011704 -0.00116207 -0.00115349 -0.00114461 -0.00113535 -0.00112559 -0.00111508 -0.00110333 -0.00108937 -0.00107174 -0.00104881 -0.00101926 -0.000982202 -0.000937105 -0.000883636 -0.000821572 -0.000750751 -0.00067104 -0.000582326 -0.000484506 -0.000377486 -0.000261172 -0.000135476 -3.09675E-07 0.000138699 0.000275797 +-0.0011991 -0.00119268 -0.00118621 -0.00117968 -0.00117308 -0.00116639 -0.00115963 -0.00115276 -0.0011458 -0.00113872 -0.00113152 -0.00112419 -0.00111671 -0.00110907 -0.00110123 -0.00109318 -0.00108488 -0.00107627 -0.00106725 -0.00105769 -0.00104726 -0.00103531 -0.00102066 -0.00100166 -0.000976611 -0.000944287 -0.000903909 -0.000855012 -0.000797303 -0.000730579 -0.000654683 -0.000569486 -0.000474874 -0.00037074 -0.000256985 -0.000133509 -2.19042E-07 0.000137244 0.000273075 +-0.00113148 -0.00112535 -0.00111918 -0.00111295 -0.00110667 -0.00110031 -0.00109389 -0.00108738 -0.00108078 -0.00107408 -0.00106728 -0.00106036 -0.00105331 -0.00104612 -0.00103877 -0.00103123 -0.00102348 -0.00101547 -0.00100714 -0.000998386 -0.000989013 -0.000978615 -0.000966368 -0.00095083 -0.000930156 -0.000902688 -0.000867296 -0.000823305 -0.000770311 -0.000708052 -0.000636339 -0.000555022 -0.00046397 -0.000363067 -0.0002522 -0.000131264 -1.54588E-07 0.000135489 0.000269819 +-0.00106242 -0.00105658 -0.0010507 -0.00104479 -0.00103882 -0.0010328 -0.00102671 -0.00102056 -0.00101432 -0.001008 -0.00100159 -0.000995079 -0.000988454 -0.000981706 -0.00097482 -0.000967777 -0.000960553 -0.000953115 -0.000945418 -0.000937389 -0.000928903 -0.000919712 -0.000909296 -0.000896603 -0.000879918 -0.000857265 -0.000827055 -0.000788286 -0.000740375 -0.000682969 -0.00061583 -0.000538779 -0.000451668 -0.000354366 -0.00024675 -0.000128702 -1.08843E-07 0.00013341 0.000265981 +-0.000992127 -0.000986578 -0.000981004 -0.000975397 -0.00096975 -0.000964056 -0.000958309 -0.000952503 -0.000946629 -0.000940684 -0.000934658 -0.000928546 -0.000922338 -0.000916024 -0.000909593 -0.000903029 -0.000896314 -0.000889421 -0.000882317 -0.00087495 -0.000867235 -0.000859021 -0.000849994 -0.000839481 -0.000826154 -0.000808024 -0.000783052 -0.000749766 -0.000707295 -0.000655136 -0.00059298 -0.000520607 -0.000437844 -0.000344542 -0.000240566 -0.000125785 -7.64378E-08 0.000130981 0.000261505 +-0.000920749 -0.000915494 -0.000910222 -0.000904926 -0.000899599 -0.000894235 -0.000888826 -0.000883368 -0.000877855 -0.00087228 -0.000866637 -0.00086092 -0.000855122 -0.000849235 -0.000843248 -0.00083715 -0.000830926 -0.000824555 -0.000818012 -0.000811259 -0.000804239 -0.000796852 -0.000788913 -0.00078002 -0.000769299 -0.000755102 -0.000735193 -0.000707546 -0.000670841 -0.000624331 -0.000567587 -0.000500329 -0.000422351 -0.000333482 -0.00023357 -0.000122473 -5.35219E-08 0.000128174 0.000256333 +-0.000848469 -0.000843512 -0.000838546 -0.000833563 -0.000828557 -0.000823523 -0.000818453 -0.000813344 -0.000808188 -0.000802981 -0.000797718 -0.000792393 -0.000787 -0.000781531 -0.00077598 -0.000770336 -0.000764587 -0.000758719 -0.000752711 -0.000746535 -0.000740151 -0.000733494 -0.000726448 -0.000718781 -0.000709975 -0.0006989 -0.000683548 -0.000661492 -0.000630803 -0.00059033 -0.00053944 -0.000477761 -0.000405036 -0.000321067 -0.000225681 -0.000118722 -3.73447E-08 0.000124954 0.000250404 +-0.000775513 -0.000770859 -0.000766202 -0.000761535 -0.000756853 -0.00075215 -0.000747421 -0.000742659 -0.000737861 -0.000733022 -0.000728136 -0.000723198 -0.000718205 -0.000713149 -0.000708025 -0.000702824 -0.000697539 -0.000692156 -0.00068666 -0.000681031 -0.00067524 -0.000669243 -0.000662966 -0.000656272 -0.000648868 -0.000640081 -0.000628456 -0.000611612 -0.000587022 -0.00055292 -0.000508327 -0.000452709 -0.000385736 -0.000307168 -0.00021681 -0.000114485 -2.59446E-08 0.000121282 0.000243644 +-0.000702155 -0.00069781 -0.000693468 -0.000689121 -0.000684766 -0.000680397 -0.000676009 -0.000671596 -0.000667156 -0.000662682 -0.000658171 -0.000653619 -0.000649021 -0.000644373 -0.000639669 -0.000634903 -0.000630068 -0.000625156 -0.000620154 -0.000615047 -0.000609814 -0.000604425 -0.000598831 -0.00059295 -0.000586616 -0.000579457 -0.000570592 -0.00055817 -0.000539453 -0.000511929 -0.000474044 -0.00042498 -0.000364283 -0.000291654 -0.000206863 -0.000109713 -1.79255E-08 0.000117115 0.000235974 +-0.000628729 -0.0006247 -0.000620677 -0.000616656 -0.000612631 -0.000608599 -0.000604554 -0.000600492 -0.00059641 -0.000592302 -0.000588165 -0.000583996 -0.000579791 -0.000575545 -0.000571255 -0.000566916 -0.000562522 -0.000558067 -0.000553542 -0.000548935 -0.000544232 -0.00053941 -0.00053444 -0.000529267 -0.000523796 -0.000517827 -0.000510882 -0.000501804 -0.000488274 -0.000467271 -0.000436415 -0.000394386 -0.000340507 -0.000274385 -0.000195743 -0.000104354 -1.22953E-08 0.000112404 0.000227306 +-0.000555633 -0.000551926 -0.00054823 -0.00054454 -0.000540851 -0.00053716 -0.000533461 -0.000529752 -0.000526028 -0.000522287 -0.000518524 -0.000514736 -0.00051092 -0.000507074 -0.000503193 -0.000499273 -0.000495312 -0.000491302 -0.000487239 -0.000483114 -0.000478916 -0.00047463 -0.000470235 -0.000465698 -0.000460961 -0.000455915 -0.000450312 -0.000443533 -0.000434058 -0.000419053 -0.000395335 -0.000360762 -0.000314245 -0.000255223 -0.000183348 -9.83527E-05 -8.35033E-09 0.000107099 0.000217545 +-0.000483344 -0.000479969 -0.000476607 -0.000473254 -0.000469907 -0.000466561 -0.000463212 -0.000459858 -0.000456496 -0.000453121 -0.000449731 -0.000446324 -0.000442896 -0.000439445 -0.000435968 -0.000432463 -0.000428925 -0.000425352 -0.000421738 -0.000418079 -0.000414365 -0.000410588 -0.000406732 -0.000402776 -0.000398686 -0.0003944 -0.000389789 -0.000384548 -0.000377865 -0.000367749 -0.000350853 -0.000323998 -0.000285351 -0.000234035 -0.000169576 -9.16533E-05 -5.59202E-09 0.000101144 0.000206592 +-0.000412436 -0.000409402 -0.000406382 -0.000403374 -0.000400373 -0.000397378 -0.000394384 -0.000391388 -0.000388389 -0.000385382 -0.000382367 -0.000379339 -0.000376297 -0.000373239 -0.000370163 -0.000367065 -0.000363945 -0.000360799 -0.000357623 -0.000354414 -0.000351167 -0.000347875 -0.000344528 -0.000341112 -0.000337607 -0.000333976 -0.000330153 -0.000325988 -0.000321097 -0.000314406 -0.000303341 -0.00028411 -0.000253731 -0.000210706 -0.000154332 -8.41997E-05 -3.66785E-09 9.4484E-05 0.000194341 +-0.000343599 -0.000340914 -0.000338245 -0.000335589 -0.000332942 -0.000330302 -0.000327667 -0.000325034 -0.0003224 -0.000319764 -0.000317122 -0.000314474 -0.000311817 -0.000309149 -0.000306469 -0.000303775 -0.000301065 -0.000298337 -0.000295589 -0.000292819 -0.000290022 -0.000287195 -0.00028433 -0.00028142 -0.000278452 -0.000275405 -0.000272243 -0.000268892 -0.00026518 -0.00026062 -0.000253777 -0.00024139 -0.000219392 -0.000185167 -0.00013754 -7.59409E-05 -2.32888E-09 8.70605E-05 0.000180687 +-0.000277671 -0.000275346 -0.000273036 -0.000270739 -0.000268452 -0.000266174 -0.000263902 -0.000261634 -0.000259368 -0.000257103 -0.000254836 -0.000252567 -0.000250293 -0.000248013 -0.000245725 -0.000243429 -0.000241123 -0.000238806 -0.000236476 -0.000234131 -0.00023177 -0.000229389 -0.000226985 -0.000224551 -0.000222082 -0.000219565 -0.00021698 -0.000214291 -0.000211421 -0.000208165 -0.000203902 -0.000196709 -0.000182582 -0.000157446 -0.000119164 -6.68408E-05 -1.39964E-09 7.88206E-05 0.000165525 +-0.000215697 -0.000213739 -0.000211795 -0.000209863 -0.000207942 -0.00020603 -0.000204124 -0.000202224 -0.000200328 -0.000198435 -0.000196543 -0.00019465 -0.000192756 -0.00019086 -0.000188961 -0.000187057 -0.000185147 -0.000183232 -0.000181309 -0.000179378 -0.000177437 -0.000175485 -0.000173519 -0.000171536 -0.000169533 -0.000167502 -0.000165434 -0.00016331 -0.000161095 -0.000158707 -0.000155908 -0.000151889 -0.000144081 -0.000127792 -9.92704E-05 -5.69E-05 -7.56644E-10 6.97239E-05 0.000148765 +-0.000159 -0.000157414 -0.00015584 -0.000154276 -0.000152723 -0.000151177 -0.000149639 -0.000148107 -0.000146579 -0.000145055 -0.000143534 -0.000142015 -0.000140496 -0.000138977 -0.000137458 -0.000135937 -0.000134415 -0.00013289 -0.000131361 -0.000129829 -0.000128292 -0.000126749 -0.0001252 -0.000123643 -0.000122074 -0.000120492 -0.000118891 -0.000117262 -0.000115589 -0.00011384 -0.000111928 -0.000109577 -0.000105717 -9.69474E-05 -7.81401E-05 -4.62036E-05 -3.13156E-10 5.97619E-05 0.000130353 +-0.000109254 -0.000108037 -0.000106829 -0.000105631 -0.00010444 -0.000103257 -0.00010208 -0.000100908 -9.97414E-05 -9.85786E-05 -9.74191E-05 -9.62622E-05 -9.51073E-05 -9.39539E-05 -9.28015E-05 -9.16496E-05 -9.04978E-05 -8.93458E-05 -8.81933E-05 -8.70398E-05 -8.5885E-05 -8.47284E-05 -8.35695E-05 -8.24074E-05 -8.1241E-05 -8.00689E-05 -7.88885E-05 -7.76961E-05 -7.64849E-05 -7.52419E-05 -7.39366E-05 -7.24822E-05 -7.0552E-05 -6.6694E-05 -5.65215E-05 -3.50214E-05 -8.36872E-12 4.90015E-05 0.000110308 +-6.84163E-05 -6.75507E-05 -6.66924E-05 -6.58408E-05 -6.49953E-05 -6.41553E-05 -6.33204E-05 -6.249E-05 -6.16636E-05 -6.08408E-05 -6.00211E-05 -5.9204E-05 -5.83893E-05 -5.75765E-05 -5.67655E-05 -5.59558E-05 -5.51473E-05 -5.43398E-05 -5.35332E-05 -5.27271E-05 -5.19215E-05 -5.11161E-05 -5.03108E-05 -4.95052E-05 -4.86987E-05 -4.78909E-05 -4.70807E-05 -4.62664E-05 -4.54456E-05 -4.46133E-05 -4.37592E-05 -4.28568E-05 -4.18186E-05 -4.02404E-05 -3.60498E-05 -2.39784E-05 2.00259E-10 3.76746E-05 8.88259E-05 +-3.81829E-05 -3.76284E-05 -3.70788E-05 -3.65335E-05 -3.59924E-05 -3.5455E-05 -3.49211E-05 -3.43905E-05 -3.38627E-05 -3.33376E-05 -3.28149E-05 -3.22943E-05 -3.17758E-05 -3.1259E-05 -3.07438E-05 -3.02302E-05 -2.97178E-05 -2.92068E-05 -2.86969E-05 -2.81881E-05 -2.76804E-05 -2.71737E-05 -2.66678E-05 -2.61627E-05 -2.56583E-05 -2.51542E-05 -2.46502E-05 -2.41457E-05 -2.36398E-05 -2.31307E-05 -2.26152E-05 -2.20854E-05 -2.15185E-05 -2.08202E-05 -1.94128E-05 -1.42018E-05 3.42431E-10 2.63415E-05 6.64746E-05 +-1.87945E-05 -1.84829E-05 -1.8174E-05 -1.78677E-05 -1.75637E-05 -1.7262E-05 -1.69623E-05 -1.66646E-05 -1.63686E-05 -1.60743E-05 -1.57815E-05 -1.54901E-05 -1.52001E-05 -1.49113E-05 -1.46236E-05 -1.43371E-05 -1.40515E-05 -1.3767E-05 -1.34834E-05 -1.32007E-05 -1.2919E-05 -1.26382E-05 -1.23582E-05 -1.20791E-05 -1.18008E-05 -1.15232E-05 -1.12463E-05 -1.09698E-05 -1.06935E-05 -1.04169E-05 -1.01388E-05 -9.85707E-06 -9.56555E-06 -9.24197E-06 -8.75783E-06 -7.02349E-06 4.38851E-10 1.60614E-05 4.45767E-05 +-8.22E-06 -8.06851E-06 -7.91835E-06 -7.76945E-06 -7.62174E-06 -7.47513E-06 -7.32956E-06 -7.18497E-06 -7.0413E-06 -6.89849E-06 -6.75648E-06 -6.61523E-06 -6.47469E-06 -6.33483E-06 -6.19561E-06 -6.05701E-06 -5.919E-06 -5.78158E-06 -5.64472E-06 -5.50841E-06 -5.37267E-06 -5.23747E-06 -5.10283E-06 -4.96873E-06 -4.83517E-06 -4.70213E-06 -4.56958E-06 -4.43747E-06 -4.30571E-06 -4.17415E-06 -4.04246E-06 -3.90998E-06 -3.77498E-06 -3.63166E-06 -3.44971E-06 -2.92982E-06 5.03914E-10 8.21277E-06 2.55936E-05 +-3.21824E-06 -3.15476E-06 -3.09184E-06 -3.02945E-06 -2.96757E-06 -2.90616E-06 -2.8452E-06 -2.78466E-06 -2.72452E-06 -2.66475E-06 -2.60534E-06 -2.54627E-06 -2.48751E-06 -2.42906E-06 -2.3709E-06 -2.31302E-06 -2.25542E-06 -2.19808E-06 -2.14101E-06 -2.0842E-06 -2.02765E-06 -1.97136E-06 -1.91533E-06 -1.85957E-06 -1.80407E-06 -1.74882E-06 -1.69382E-06 -1.63906E-06 -1.5845E-06 -1.53011E-06 -1.47578E-06 -1.4213E-06 -1.36617E-06 -1.30872E-06 -1.24078E-06 -1.08064E-06 5.47586E-10 3.52251E-06 1.22758E-05 +-1.11334E-06 -1.09057E-06 -1.068E-06 -1.04562E-06 -1.02343E-06 -1.00141E-06 -9.79558E-07 -9.57859E-07 -9.36307E-07 -9.14893E-07 -8.9361E-07 -8.72453E-07 -8.51414E-07 -8.3049E-07 -8.09675E-07 -7.88967E-07 -7.68363E-07 -7.47861E-07 -7.27459E-07 -7.07157E-07 -6.86955E-07 -6.66854E-07 -6.46853E-07 -6.26952E-07 -6.07153E-07 -5.87453E-07 -5.67851E-07 -5.48343E-07 -5.2892E-07 -5.09569E-07 -4.90259E-07 -4.70928E-07 -4.51422E-07 -4.31247E-07 -4.08058E-07 -3.58632E-07 5.76722E-10 1.32584E-06 5.0512E-06 +-3.33463E-07 -3.2652E-07 -3.1964E-07 -3.1282E-07 -3.06056E-07 -2.99346E-07 -2.92687E-07 -2.86076E-07 -2.79511E-07 -2.72989E-07 -2.66508E-07 -2.60066E-07 -2.53661E-07 -2.47292E-07 -2.40958E-07 -2.34657E-07 -2.28389E-07 -2.22154E-07 -2.1595E-07 -2.09778E-07 -2.03637E-07 -1.97528E-07 -1.91451E-07 -1.85406E-07 -1.79393E-07 -1.73412E-07 -1.67462E-07 -1.61543E-07 -1.55651E-07 -1.49782E-07 -1.4393E-07 -1.38074E-07 -1.32173E-07 -1.26087E-07 -1.19164E-07 -1.04999E-07 5.96013E-10 4.49828E-07 1.87476E-06 +-8.65666E-08 -8.4742E-08 -8.29341E-08 -8.1142E-08 -7.9365E-08 -7.76023E-08 -7.58531E-08 -7.41167E-08 -7.23925E-08 -7.06798E-08 -6.89781E-08 -6.72868E-08 -6.56055E-08 -6.39339E-08 -6.22715E-08 -6.06181E-08 -5.89735E-08 -5.73376E-08 -5.57103E-08 -5.40914E-08 -5.24811E-08 -5.08793E-08 -4.92861E-08 -4.77016E-08 -4.61256E-08 -4.45582E-08 -4.29992E-08 -4.14483E-08 -3.9905E-08 -3.83683E-08 -3.68358E-08 -3.53033E-08 -3.37592E-08 -3.21685E-08 -3.03654E-08 -2.67256E-08 6.08656E-10 1.35874E-07 6.39924E-07 +-1.98418E-08 -1.94123E-08 -1.89868E-08 -1.8565E-08 -1.81468E-08 -1.7732E-08 -1.73204E-08 -1.69118E-08 -1.65061E-08 -1.61032E-08 -1.57028E-08 -1.5305E-08 -1.49095E-08 -1.45164E-08 -1.41254E-08 -1.37366E-08 -1.33498E-08 -1.29652E-08 -1.25826E-08 -1.2202E-08 -1.18235E-08 -1.14469E-08 -1.10725E-08 -1.07001E-08 -1.03297E-08 -9.9614E-09 -9.5951E-09 -9.23074E-09 -8.8682E-09 -8.50721E-09 -8.14729E-09 -7.78737E-09 -7.42482E-09 -7.05143E-09 -6.62864E-09 -5.77857E-09 6.16811E-10 3.64558E-08 1.96828E-07 +-3.87274E-09 -3.77826E-09 -3.68465E-09 -3.59187E-09 -3.49988E-09 -3.40864E-09 -3.31811E-09 -3.22825E-09 -3.13902E-09 -3.05041E-09 -2.96237E-09 -2.87488E-09 -2.78792E-09 -2.70146E-09 -2.6155E-09 -2.53001E-09 -2.44498E-09 -2.36041E-09 -2.2763E-09 -2.19263E-09 -2.10942E-09 -2.02666E-09 -1.94435E-09 -1.86249E-09 -1.78109E-09 -1.70015E-09 -1.61964E-09 -1.53957E-09 -1.4599E-09 -1.38058E-09 -1.3015E-09 -1.22242E-09 -1.14277E-09 -1.06074E-09 -9.67893E-10 -7.81414E-10 6.2196E-10 9.15926E-09 5.37954E-08 +-3.27594E-10 -3.07555E-10 -2.87701E-10 -2.68023E-10 -2.48513E-10 -2.29162E-10 -2.09962E-10 -1.90905E-10 -1.71984E-10 -1.53191E-10 -1.34521E-10 -1.15969E-10 -9.75281E-11 -7.91953E-11 -6.09667E-11 -4.28392E-11 -2.48108E-11 -6.87978E-12 1.09549E-11 2.86937E-11 4.63366E-11 6.38835E-11 8.1334E-11 9.86877E-11 1.15945E-10 1.33105E-10 1.50171E-10 1.67145E-10 1.84033E-10 2.00848E-10 2.17612E-10 2.34374E-10 2.51257E-10 2.68642E-10 2.8832E-10 3.27828E-10 6.25156E-10 2.52168E-09 1.35325E-08 +4.28737E-10 4.32911E-10 4.37045E-10 4.41143E-10 4.45206E-10 4.49236E-10 4.53234E-10 4.57203E-10 4.61143E-10 4.65057E-10 4.68944E-10 4.72808E-10 4.76648E-10 4.80465E-10 4.84261E-10 4.88036E-10 4.9179E-10 4.95523E-10 4.99237E-10 5.0293E-10 5.06604E-10 5.10258E-10 5.13891E-10 5.17504E-10 5.21097E-10 5.2467E-10 5.28223E-10 5.31757E-10 5.35274E-10 5.38774E-10 5.42265E-10 5.45754E-10 5.49269E-10 5.52889E-10 5.56985E-10 5.65209E-10 6.27099E-10 1.03226E-09 3.53265E-09 +5.87297E-10 5.88159E-10 5.89012E-10 5.89858E-10 5.90697E-10 5.91529E-10 5.92354E-10 5.93173E-10 5.93987E-10 5.94795E-10 5.95597E-10 5.96395E-10 5.97187E-10 5.97975E-10 5.98759E-10 5.99538E-10 6.00313E-10 6.01083E-10 6.0185E-10 6.02612E-10 6.03371E-10 6.04125E-10 6.04875E-10 6.05621E-10 6.06362E-10 6.071E-10 6.07833E-10 6.08563E-10 6.09288E-10 6.10011E-10 6.10731E-10 6.11452E-10 6.12177E-10 6.12924E-10 6.1377E-10 6.15467E-10 6.2824E-10 7.13089E-10 1.25459E-09 +6.20459E-10 6.20636E-10 6.20812E-10 6.20986E-10 6.21158E-10 6.21329E-10 6.21499E-10 6.21667E-10 6.21834E-10 6.22001E-10 6.22165E-10 6.22329E-10 6.22492E-10 6.22654E-10 6.22815E-10 6.22976E-10 6.23135E-10 6.23293E-10 6.23451E-10 6.23608E-10 6.23764E-10 6.23919E-10 6.24073E-10 6.24226E-10 6.24378E-10 6.2453E-10 6.24681E-10 6.24831E-10 6.2498E-10 6.25129E-10 6.25277E-10 6.25425E-10 6.25574E-10 6.25727E-10 6.25901E-10 6.2625E-10 6.28876E-10 6.46473E-10 7.60903E-10 +6.27472E-10 6.27509E-10 6.27545E-10 6.2758E-10 6.27616E-10 6.27651E-10 6.27686E-10 6.2772E-10 6.27754E-10 6.27789E-10 6.27822E-10 6.27856E-10 6.27889E-10 6.27923E-10 6.27956E-10 6.27989E-10 6.28021E-10 6.28054E-10 6.28086E-10 6.28118E-10 6.2815E-10 6.28182E-10 6.28214E-10 6.28245E-10 6.28276E-10 6.28308E-10 6.28338E-10 6.28369E-10 6.284E-10 6.2843E-10 6.28461E-10 6.28491E-10 6.28522E-10 6.28553E-10 6.28589E-10 6.2866E-10 6.29199E-10 6.32832E-10 6.56725E-10 +6.28982E-10 6.28989E-10 6.28997E-10 6.29004E-10 6.29011E-10 6.29018E-10 6.29026E-10 6.29033E-10 6.2904E-10 6.29047E-10 6.29054E-10 6.29061E-10 6.29067E-10 6.29074E-10 6.29081E-10 6.29088E-10 6.29094E-10 6.29101E-10 6.29108E-10 6.29114E-10 6.29121E-10 6.29127E-10 6.29134E-10 6.2914E-10 6.29147E-10 6.29153E-10 6.29159E-10 6.29166E-10 6.29172E-10 6.29178E-10 6.29184E-10 6.29191E-10 6.29197E-10 6.29203E-10 6.29211E-10 6.29225E-10 6.29336E-10 6.30084E-10 6.35044E-10 +*table 1.2 +-0.00145337 -0.00144585 -0.00143822 -0.00143049 -0.00142262 -0.00141462 -0.00140648 -0.00139817 -0.0013897 -0.00138103 -0.00137216 -0.00136306 -0.00135369 -0.00134401 -0.00133397 -0.00132346 -0.00131227 -0.0013 -0.0012859 -0.00126889 -0.00124774 -0.00122142 -0.00118922 -0.00115066 -0.00110546 -0.00105341 -0.000994379 -0.000928248 -0.000854931 -0.000774353 -0.000686444 -0.00059114 -0.000488383 -0.000378113 -0.000260276 -0.000134817 -1.6815E-06 0.00013403 0.000267221 +-0.00139624 -0.00138899 -0.00138166 -0.00137422 -0.00136666 -0.00135899 -0.00135118 -0.00134323 -0.00133513 -0.00132685 -0.00131839 -0.00130972 -0.00130081 -0.00129164 -0.00128215 -0.00127226 -0.00126186 -0.00125066 -0.00123816 -0.00122345 -0.00120529 -0.00118244 -0.00115392 -0.00111908 -0.00107751 -0.00102897 -0.000973254 -0.000910245 -0.000839836 -0.000761941 -0.000676482 -0.00058339 -0.000482597 -0.000374042 -0.000257665 -0.000133405 -1.20527E-06 0.000133786 0.000266396 +-0.00133766 -0.00133069 -0.00132364 -0.0013165 -0.00130926 -0.0013019 -0.00129443 -0.00128683 -0.00127909 -0.0012712 -0.00126314 -0.00125489 -0.00124643 -0.00123774 -0.00122878 -0.00121948 -0.00120976 -0.00119945 -0.00118821 -0.00117539 -0.00115989 -0.00114036 -0.00111557 -0.00108461 -0.00104691 -0.00100211 -0.000949979 -0.000890354 -0.000823112 -0.000748153 -0.00066539 -0.000574744 -0.000476144 -0.000369521 -0.000254809 -0.000131943 -8.60861E-07 0.000133246 0.000265139 +-0.00127762 -0.00127093 -0.00126416 -0.00125732 -0.00125038 -0.00124335 -0.00123621 -0.00122895 -0.00122157 -0.00121405 -0.00120638 -0.00119855 -0.00119054 -0.00118231 -0.00117385 -0.00116511 -0.00115601 -0.00114646 -0.00113623 -0.00112489 -0.00111162 -0.00109514 -0.00107401 -0.00104703 -0.0010134 -0.000972597 -0.00092432 -0.000868358 -0.00080456 -0.000732809 -0.000653006 -0.000565065 -0.000468905 -0.000364451 -0.000251631 -0.000130374 -6.1302E-07 0.000132427 0.000263445 +-0.00121611 -0.0012097 -0.00120322 -0.00119667 -0.00119003 -0.00118332 -0.00117651 -0.00116959 -0.00116257 -0.00115542 -0.00114814 -0.00114071 -0.00113313 -0.00112536 -0.00111738 -0.00110916 -0.00110065 -0.00109177 -0.00108239 -0.00107222 -0.00106071 -0.00104683 -0.00102914 -0.00100615 -0.000976743 -0.000940186 -0.000896041 -0.000844034 -0.000783976 -0.000715726 -0.000639171 -0.000554213 -0.000460763 -0.000358738 -0.00024806 -0.00012865 -4.35361E-07 0.000131335 0.000261303 +-0.00115317 -0.00114702 -0.00114083 -0.00113457 -0.00112825 -0.00112184 -0.00111536 -0.00110878 -0.00110211 -0.00109533 -0.00108843 -0.00108141 -0.00107424 -0.00106691 -0.0010594 -0.00105169 -0.00104373 -0.00103547 -0.00102682 -0.00101759 -0.00100745 -0.000995666 -0.000981002 -0.000961854 -0.000936745 -0.000904639 -0.000864904 -0.000817157 -0.000761152 -0.000696718 -0.00062372 -0.000542048 -0.000451602 -0.000352291 -0.000244027 -0.000126727 -3.08409E-07 0.000129965 0.000258691 +-0.00108883 -0.00108296 -0.00107705 -0.00107108 -0.00106506 -0.00105897 -0.00105281 -0.00104658 -0.00104025 -0.00103383 -0.00102731 -0.00102068 -0.00101392 -0.00100702 -0.000999973 -0.000992745 -0.000985311 -0.000977628 -0.00096963 -0.000961207 -0.000952139 -0.00094197 -0.000929789 -0.000914122 -0.000893247 -0.000865739 -0.000830672 -0.000787494 -0.000735873 -0.00067559 -0.000606484 -0.000528426 -0.000441303 -0.000345015 -0.000239466 -0.000124563 -2.17924E-07 0.000128309 0.000255577 +-0.00102316 -0.00101757 -0.00101194 -0.00100627 -0.00100055 -0.00099478 -0.000988945 -0.000983041 -0.000977062 -0.000971002 -0.000964852 -0.000958604 -0.000952249 -0.000945776 -0.00093917 -0.000932412 -0.000925481 -0.000918343 -0.000910951 -0.000903231 -0.000895044 -0.000886114 -0.000875851 -0.000863114 -0.000846194 -0.000823305 -0.000793116 -0.000754811 -0.000707916 -0.00065214 -0.000587283 -0.000513193 -0.000429741 -0.000336814 -0.000234308 -0.00012212 -1.53574E-07 0.000126349 0.000251925 +-0.000956317 -0.000951002 -0.000945661 -0.000940287 -0.000934874 -0.000929414 -0.000923902 -0.000918332 -0.000912697 -0.000906992 -0.00090121 -0.000895343 -0.000889385 -0.000883324 -0.000877151 -0.00087085 -0.000864402 -0.000857783 -0.000850958 -0.000843874 -0.000836443 -0.000828494 -0.000819675 -0.000809224 -0.000795732 -0.000777276 -0.000752071 -0.000718906 -0.000677077 -0.000626177 -0.000565947 -0.000496201 -0.000416793 -0.000327593 -0.000228486 -0.00011936 -1.07902E-07 0.000124065 0.000247688 +-0.000888519 -0.000883484 -0.000878431 -0.000873353 -0.000868244 -0.000863097 -0.000857908 -0.000852669 -0.000847376 -0.000842023 -0.000836605 -0.000831114 -0.000825545 -0.00081989 -0.000814139 -0.00080828 -0.000802299 -0.000796177 -0.000789887 -0.000783392 -0.00077663 -0.000769498 -0.000761784 -0.000753033 -0.000742266 -0.000727776 -0.00070747 -0.000679628 -0.00064318 -0.000597526 -0.000542315 -0.000477312 -0.000402343 -0.000317261 -0.000221937 -0.000116247 -7.55473E-08 0.000121431 0.000242813 +-0.000819932 -0.00081518 -0.000810417 -0.000805637 -0.000800833 -0.000796 -0.000791132 -0.000786224 -0.000781272 -0.000776269 -0.000771211 -0.000766092 -0.000760907 -0.00075565 -0.000750312 -0.000744884 -0.000739356 -0.000733711 -0.000727929 -0.000721984 -0.000715834 -0.00070941 -0.000702585 -0.000695096 -0.000686351 -0.000675102 -0.000659326 -0.000636833 -0.000606026 -0.000565984 -0.000516197 -0.000456358 -0.000386252 -0.000305711 -0.000214586 -0.000112743 -5.26665E-08 0.000118422 0.000237243 +-0.000750762 -0.000746296 -0.000741826 -0.000737346 -0.000732849 -0.00072833 -0.000723785 -0.000719208 -0.000714594 -0.000709939 -0.000705239 -0.000700488 -0.000695683 -0.000690817 -0.000685884 -0.000680877 -0.000675787 -0.000670603 -0.000665309 -0.000659884 -0.0006543 -0.000648511 -0.000642437 -0.000635927 -0.000628644 -0.000619818 -0.000607873 -0.000590485 -0.000565456 -0.000531353 -0.000487401 -0.000433167 -0.000368376 -0.000292828 -0.000206354 -0.000108804 -3.65136E-08 0.000115002 0.000230922 +-0.000681254 -0.00067708 -0.000672907 -0.000668729 -0.000664542 -0.000660339 -0.000656117 -0.00065187 -0.000647595 -0.000643287 -0.000638942 -0.000634557 -0.000630126 -0.000625646 -0.000621112 -0.000616517 -0.000611855 -0.000607116 -0.000602291 -0.000597362 -0.000592309 -0.000587102 -0.000581689 -0.000575979 -0.000569786 -0.000562679 -0.000553652 -0.000540747 -0.00052139 -0.000493467 -0.000455741 -0.000407564 -0.000348564 -0.000278494 -0.000197159 -0.000104388 -2.51303E-08 0.000111136 0.000223779 +-0.000611706 -0.000607829 -0.000603958 -0.000600087 -0.000596212 -0.000592328 -0.00058843 -0.000584515 -0.000580578 -0.000576616 -0.000572626 -0.000568603 -0.000564544 -0.000560445 -0.000556302 -0.000552112 -0.000547867 -0.000543562 -0.000539188 -0.000534734 -0.000530185 -0.000525519 -0.000520702 -0.00051568 -0.000510346 -0.000504469 -0.000497491 -0.000488103 -0.000473922 -0.000452217 -0.000421048 -0.000379376 -0.000326664 -0.000262586 -0.000186912 -9.94467E-05 -1.71227E-08 0.000106782 0.000215738 +-0.000542473 -0.0005389 -0.000535336 -0.000531777 -0.000528218 -0.000524655 -0.000521084 -0.000517502 -0.000513904 -0.000510288 -0.000506651 -0.000502988 -0.000499297 -0.000495576 -0.00049182 -0.000488027 -0.000484191 -0.000480308 -0.000476372 -0.000472374 -0.000468304 -0.000464147 -0.000459881 -0.00045547 -0.000450852 -0.000445904 -0.000440336 -0.00043342 -0.000423458 -0.00040764 -0.000383204 -0.000348449 -0.000302524 -0.000244978 -0.000175522 -9.39319E-05 -1.15004E-08 0.000101894 0.000206716 +-0.000473979 -0.000470717 -0.000467467 -0.000464224 -0.000460986 -0.000457748 -0.000454507 -0.000451259 -0.000448002 -0.000444732 -0.000441446 -0.000438143 -0.000434818 -0.000431471 -0.000428097 -0.000424694 -0.000421259 -0.000417789 -0.000414278 -0.000410721 -0.000407111 -0.000403436 -0.000399682 -0.000395828 -0.000391835 -0.000387635 -0.00038308 -0.000377807 -0.000370856 -0.000360051 -0.000342202 -0.000314664 -0.000276008 -0.000225548 -0.000162899 -8.77927E-05 -7.56079E-09 9.64251E-05 0.000196625 +-0.000406727 -0.000403785 -0.000400855 -0.000397936 -0.000395023 -0.000392114 -0.000389206 -0.000386295 -0.00038338 -0.000380457 -0.000377523 -0.000374577 -0.000371617 -0.00036864 -0.000365643 -0.000362626 -0.000359585 -0.000356518 -0.000353422 -0.000350292 -0.000347123 -0.000343908 -0.000340638 -0.000337298 -0.000333865 -0.000330301 -0.000326529 -0.000322374 -0.000317371 -0.000310251 -0.000298276 -0.000277994 -0.000247014 -0.000204186 -0.000148953 -8.09782E-05 -4.80613E-09 9.03245E-05 0.000185372 +-0.000341322 -0.000338706 -0.000336105 -0.000333515 -0.000330934 -0.000328359 -0.000325787 -0.000323216 -0.000320644 -0.000318069 -0.000315487 -0.000312899 -0.0003103 -0.000307691 -0.000305068 -0.000302431 -0.000299778 -0.000297106 -0.000294413 -0.000291697 -0.000288955 -0.00028618 -0.000283368 -0.000280509 -0.000277589 -0.000274586 -0.00027146 -0.000268126 -0.000264373 -0.000259604 -0.000252132 -0.000238611 -0.000215515 -0.000180815 -0.000133609 -7.34406E-05 -2.88442E-09 8.35406E-05 0.000172862 +-0.000278491 -0.000276211 -0.000273945 -0.000271691 -0.000269446 -0.000267209 -0.000264978 -0.00026275 -0.000260523 -0.000258296 -0.000256067 -0.000253834 -0.000251596 -0.000249352 -0.000247099 -0.000244837 -0.000242564 -0.00024028 -0.000237982 -0.000235668 -0.000233337 -0.000230986 -0.00022861 -0.000226203 -0.000223759 -0.000221263 -0.000218695 -0.000216013 -0.000213123 -0.000209772 -0.000205181 -0.000197117 -0.000181653 -0.000155426 -0.000116821 -6.51418E-05 -1.54712E-09 7.6024E-05 0.000158999 +-0.00021913 -0.000217192 -0.000215268 -0.000213355 -0.000211453 -0.000209558 -0.00020767 -0.000205787 -0.000203907 -0.000202029 -0.000200151 -0.000198273 -0.000196393 -0.000194509 -0.000192622 -0.000190729 -0.000188831 -0.000186925 -0.000185012 -0.000183089 -0.000181156 -0.000179211 -0.00017725 -0.000175272 -0.000173271 -0.000171241 -0.000169169 -0.000167036 -0.000164799 -0.000162356 -0.000159402 -0.000154907 -0.000145952 -0.000128169 -9.86121E-05 -5.60689E-05 -6.19005E-10 6.77336E-05 0.0001437 +-0.000164365 -0.000162775 -0.000161196 -0.000159629 -0.00015807 -0.00015652 -0.000154976 -0.000153438 -0.000151905 -0.000150374 -0.000148846 -0.000147319 -0.000145792 -0.000144264 -0.000142736 -0.000141205 -0.000139672 -0.000138135 -0.000136595 -0.00013505 -0.0001335 -0.000131943 -0.000130379 -0.000128805 -0.000127219 -0.000125617 -0.000123994 -0.000122339 -0.000120634 -0.000118837 -0.000116839 -0.00011427 -0.00010975 -9.95458E-05 -7.91628E-05 -4.62687E-05 2.32326E-11 5.86502E-05 0.0001269 +-0.000115628 -0.000114385 -0.000113152 -0.000111928 -0.000110712 -0.000109503 -0.0001083 -0.000107103 -0.00010591 -0.000104721 -0.000103535 -0.000102351 -0.000101169 -9.99876E-05 -9.88071E-05 -9.76267E-05 -9.64459E-05 -9.52645E-05 -9.40819E-05 -9.28979E-05 -9.17119E-05 -9.05235E-05 -8.9332E-05 -8.81365E-05 -8.69358E-05 -8.5728E-05 -8.45103E-05 -8.32782E-05 -8.20237E-05 -8.07305E-05 -7.93595E-05 -7.77937E-05 -7.55791E-05 -7.08346E-05 -5.89924E-05 -3.5922E-05 4.66203E-10 4.88077E-05 0.000108594 +-7.46647E-05 -7.37579E-05 -7.28586E-05 -7.19662E-05 -7.10801E-05 -7.01997E-05 -6.93244E-05 -6.84536E-05 -6.75869E-05 -6.67237E-05 -6.58635E-05 -6.50059E-05 -6.41504E-05 -6.32967E-05 -6.24445E-05 -6.15935E-05 -6.07434E-05 -5.98941E-05 -5.90452E-05 -5.81966E-05 -5.73481E-05 -5.64994E-05 -5.56503E-05 -5.48004E-05 -5.39492E-05 -5.30957E-05 -5.22389E-05 -5.13769E-05 -5.05063E-05 -4.96211E-05 -4.87079E-05 -4.7731E-05 -4.65663E-05 -4.46311E-05 -3.93098E-05 -2.54827E-05 7.7063E-10 3.83596E-05 8.88985E-05 +-4.32168E-05 -4.26155E-05 -4.20194E-05 -4.14281E-05 -4.08411E-05 -4.02582E-05 -3.9679E-05 -3.91032E-05 -3.85304E-05 -3.79604E-05 -3.73929E-05 -3.68276E-05 -3.62643E-05 -3.57027E-05 -3.51428E-05 -3.45843E-05 -3.4027E-05 -3.3471E-05 -3.29161E-05 -3.23621E-05 -3.18091E-05 -3.12569E-05 -3.07054E-05 -3.01545E-05 -2.96039E-05 -2.90535E-05 -2.85027E-05 -2.79509E-05 -2.73968E-05 -2.68383E-05 -2.6271E-05 -2.56844E-05 -2.50462E-05 -2.42176E-05 -2.2361E-05 -1.585E-05 9.79002E-10 2.77087E-05 6.82021E-05 +-2.20689E-05 -2.17169E-05 -2.13679E-05 -2.10218E-05 -2.06784E-05 -2.03374E-05 -1.99987E-05 -1.96622E-05 -1.93276E-05 -1.89949E-05 -1.86638E-05 -1.83343E-05 -1.80062E-05 -1.76794E-05 -1.73538E-05 -1.70294E-05 -1.67061E-05 -1.63839E-05 -1.60626E-05 -1.57423E-05 -1.54229E-05 -1.51044E-05 -1.47869E-05 -1.44701E-05 -1.41542E-05 -1.3839E-05 -1.35243E-05 -1.32099E-05 -1.28955E-05 -1.25803E-05 -1.22631E-05 -1.19406E-05 -1.16045E-05 -1.12227E-05 -1.06041E-05 -8.28759E-06 1.121E-09 1.76865E-05 4.74671E-05 +-9.96994E-06 -9.79129E-06 -9.61421E-06 -9.4386E-06 -9.26438E-06 -9.09146E-06 -8.91975E-06 -8.74919E-06 -8.57969E-06 -8.41118E-06 -8.24361E-06 -8.07691E-06 -7.91102E-06 -7.74592E-06 -7.58154E-06 -7.41787E-06 -7.25487E-06 -7.09252E-06 -6.93082E-06 -6.76974E-06 -6.60929E-06 -6.44945E-06 -6.29023E-06 -6.13162E-06 -5.9736E-06 -5.81615E-06 -5.65923E-06 -5.50278E-06 -5.34667E-06 -5.1907E-06 -5.03445E-06 -4.87704E-06 -4.71611E-06 -4.54367E-06 -4.31646E-06 -3.61681E-06 1.21733E-09 9.54975E-06 2.86508E-05 +-4.02915E-06 -3.95096E-06 -3.87346E-06 -3.79661E-06 -3.72038E-06 -3.64473E-06 -3.56963E-06 -3.49504E-06 -3.42094E-06 -3.3473E-06 -3.27408E-06 -3.20128E-06 -3.12886E-06 -3.05681E-06 -2.98511E-06 -2.91375E-06 -2.84273E-06 -2.77202E-06 -2.70163E-06 -2.63156E-06 -2.5618E-06 -2.49235E-06 -2.42322E-06 -2.3544E-06 -2.28589E-06 -2.21769E-06 -2.14979E-06 -2.08216E-06 -2.01477E-06 -1.94756E-06 -1.8804E-06 -1.81302E-06 -1.74474E-06 -1.67332E-06 -1.5876E-06 -1.37537E-06 1.28237E-09 4.29337E-06 1.44648E-05 +-1.44748E-06 -1.4181E-06 -1.38898E-06 -1.36011E-06 -1.33148E-06 -1.30306E-06 -1.27486E-06 -1.24686E-06 -1.21904E-06 -1.1914E-06 -1.16393E-06 -1.13662E-06 -1.10946E-06 -1.08244E-06 -1.05557E-06 -1.02883E-06 -1.00222E-06 -9.75746E-07 -9.49398E-07 -9.23176E-07 -8.97081E-07 -8.71114E-07 -8.45274E-07 -8.19563E-07 -7.93979E-07 -7.68522E-07 -7.43189E-07 -7.17975E-07 -6.92869E-07 -6.67852E-07 -6.42885E-07 -6.17884E-07 -5.92644E-07 -5.66505E-07 -5.36295E-07 -4.70427E-07 1.32606E-09 1.66834E-06 6.17768E-06 +-4.51607E-07 -4.42225E-07 -4.32928E-07 -4.23711E-07 -4.1457E-07 -4.05501E-07 -3.96501E-07 -3.87566E-07 -3.78691E-07 -3.69875E-07 -3.61114E-07 -3.52405E-07 -3.43747E-07 -3.35136E-07 -3.26572E-07 -3.18052E-07 -3.09577E-07 -3.01145E-07 -2.92755E-07 -2.84408E-07 -2.76103E-07 -2.67841E-07 -2.59621E-07 -2.51445E-07 -2.43311E-07 -2.3522E-07 -2.2717E-07 -2.19161E-07 -2.1119E-07 -2.0325E-07 -1.95331E-07 -1.87408E-07 -1.79421E-07 -1.71182E-07 -1.61795E-07 -1.42423E-07 1.35523E-09 5.83211E-07 2.34701E-06 +-1.209E-07 -1.18344E-07 -1.15811E-07 -1.13301E-07 -1.10811E-07 -1.08342E-07 -1.05891E-07 -1.03458E-07 -1.01042E-07 -9.86425E-08 -9.62581E-08 -9.38882E-08 -9.15323E-08 -8.91898E-08 -8.68602E-08 -8.45431E-08 -8.22384E-08 -7.99457E-08 -7.76649E-08 -7.5396E-08 -7.3139E-08 -7.08939E-08 -6.86608E-08 -6.64397E-08 -6.42306E-08 -6.20334E-08 -5.9848E-08 -5.7674E-08 -5.55106E-08 -5.33563E-08 -5.12082E-08 -4.90598E-08 -4.68955E-08 -4.46659E-08 -4.2138E-08 -3.70211E-08 1.37456E-09 1.82736E-07 8.20337E-07 +-2.78428E-08 -2.72294E-08 -2.66216E-08 -2.60192E-08 -2.54219E-08 -2.48294E-08 -2.42414E-08 -2.36579E-08 -2.30784E-08 -2.25028E-08 -2.1931E-08 -2.13627E-08 -2.07978E-08 -2.02361E-08 -1.96776E-08 -1.91222E-08 -1.85698E-08 -1.80203E-08 -1.74737E-08 -1.693E-08 -1.63892E-08 -1.58513E-08 -1.53163E-08 -1.47843E-08 -1.42551E-08 -1.37289E-08 -1.32056E-08 -1.26851E-08 -1.21671E-08 -1.16514E-08 -1.11372E-08 -1.06231E-08 -1.01053E-08 -9.57207E-09 -8.96843E-09 -7.75364E-09 1.38724E-09 5.09788E-08 2.60662E-07 +-5.05424E-09 -4.91866E-09 -4.78433E-09 -4.65119E-09 -4.51918E-09 -4.38825E-09 -4.25833E-09 -4.12937E-09 -4.00134E-09 -3.87417E-09 -3.74782E-09 -3.62227E-09 -3.49747E-09 -3.3734E-09 -3.25003E-09 -3.12734E-09 -3.00532E-09 -2.88396E-09 -2.76324E-09 -2.64317E-09 -2.52375E-09 -2.40497E-09 -2.28685E-09 -2.16938E-09 -2.05256E-09 -1.93639E-09 -1.82086E-09 -1.70596E-09 -1.59163E-09 -1.4778E-09 -1.36432E-09 -1.25086E-09 -1.13659E-09 -1.01894E-09 -8.85819E-10 -6.18341E-10 1.39541E-09 1.34324E-08 7.38697E-08 +3.99063E-11 6.85312E-11 9.6891E-11 1.24999E-10 1.52867E-10 1.80509E-10 2.07935E-10 2.35157E-10 2.62185E-10 2.89029E-10 3.15698E-10 3.422E-10 3.68541E-10 3.94729E-10 4.20768E-10 4.46662E-10 4.72415E-10 4.98028E-10 5.23504E-10 5.48843E-10 5.74044E-10 5.99109E-10 6.24035E-10 6.48823E-10 6.73473E-10 6.97985E-10 7.2236E-10 7.46604E-10 7.70726E-10 7.94741E-10 8.18682E-10 8.42618E-10 8.66724E-10 8.9154E-10 9.19618E-10 9.76008E-10 1.40057E-09 4.08802E-09 1.93455E-08 +1.12319E-09 1.1291E-09 1.13495E-09 1.14074E-09 1.14649E-09 1.15219E-09 1.15785E-09 1.16347E-09 1.16904E-09 1.17458E-09 1.18008E-09 1.18554E-09 1.19098E-09 1.19638E-09 1.20175E-09 1.20709E-09 1.2124E-09 1.21768E-09 1.22294E-09 1.22816E-09 1.23336E-09 1.23853E-09 1.24367E-09 1.24878E-09 1.25386E-09 1.25892E-09 1.26395E-09 1.26894E-09 1.27392E-09 1.27887E-09 1.28381E-09 1.28874E-09 1.29371E-09 1.29883E-09 1.30462E-09 1.31624E-09 1.40377E-09 1.97536E-09 5.46812E-09 +1.34849E-09 1.34969E-09 1.35089E-09 1.35207E-09 1.35324E-09 1.3544E-09 1.35556E-09 1.3567E-09 1.35784E-09 1.35897E-09 1.36009E-09 1.36121E-09 1.36231E-09 1.36342E-09 1.36451E-09 1.3656E-09 1.36668E-09 1.36776E-09 1.36883E-09 1.3699E-09 1.37096E-09 1.37201E-09 1.37306E-09 1.3741E-09 1.37514E-09 1.37617E-09 1.3772E-09 1.37822E-09 1.37923E-09 1.38024E-09 1.38125E-09 1.38225E-09 1.38327E-09 1.38431E-09 1.38549E-09 1.38786E-09 1.40571E-09 1.52426E-09 2.27844E-09 +1.39524E-09 1.39549E-09 1.39573E-09 1.39597E-09 1.39621E-09 1.39644E-09 1.39668E-09 1.39691E-09 1.39714E-09 1.39737E-09 1.39759E-09 1.39782E-09 1.39805E-09 1.39827E-09 1.39849E-09 1.39871E-09 1.39893E-09 1.39915E-09 1.39937E-09 1.39958E-09 1.3998E-09 1.40001E-09 1.40023E-09 1.40044E-09 1.40065E-09 1.40086E-09 1.40107E-09 1.40127E-09 1.40148E-09 1.40168E-09 1.40189E-09 1.40209E-09 1.4023E-09 1.40251E-09 1.40275E-09 1.40323E-09 1.40685E-09 1.43114E-09 1.58905E-09 +1.40514E-09 1.40519E-09 1.40523E-09 1.40528E-09 1.40533E-09 1.40538E-09 1.40543E-09 1.40547E-09 1.40552E-09 1.40557E-09 1.40561E-09 1.40566E-09 1.4057E-09 1.40575E-09 1.40579E-09 1.40584E-09 1.40588E-09 1.40593E-09 1.40597E-09 1.40601E-09 1.40606E-09 1.4061E-09 1.40614E-09 1.40619E-09 1.40623E-09 1.40627E-09 1.40631E-09 1.40636E-09 1.4064E-09 1.40644E-09 1.40648E-09 1.40652E-09 1.40656E-09 1.40661E-09 1.40666E-09 1.40675E-09 1.40749E-09 1.41243E-09 1.445E-09 +1.40733E-09 1.40734E-09 1.40735E-09 1.40736E-09 1.40737E-09 1.40738E-09 1.40739E-09 1.4074E-09 1.40741E-09 1.40742E-09 1.40743E-09 1.40744E-09 1.40745E-09 1.40746E-09 1.40747E-09 1.40748E-09 1.40748E-09 1.40749E-09 1.4075E-09 1.40751E-09 1.40752E-09 1.40753E-09 1.40754E-09 1.40755E-09 1.40755E-09 1.40756E-09 1.40757E-09 1.40758E-09 1.40759E-09 1.4076E-09 1.40761E-09 1.40761E-09 1.40762E-09 1.40763E-09 1.40764E-09 1.40766E-09 1.40781E-09 1.40881E-09 1.41548E-09 +1.40785E-09 1.40785E-09 1.40785E-09 1.40786E-09 1.40786E-09 1.40786E-09 1.40786E-09 1.40786E-09 1.40787E-09 1.40787E-09 1.40787E-09 1.40787E-09 1.40787E-09 1.40787E-09 1.40788E-09 1.40788E-09 1.40788E-09 1.40788E-09 1.40788E-09 1.40789E-09 1.40789E-09 1.40789E-09 1.40789E-09 1.40789E-09 1.40789E-09 1.4079E-09 1.4079E-09 1.4079E-09 1.4079E-09 1.4079E-09 1.4079E-09 1.40791E-09 1.40791E-09 1.40791E-09 1.40791E-09 1.40792E-09 1.40795E-09 1.40815E-09 1.40951E-09 +*table 1.4 +-0.00134511 -0.00133817 -0.00133113 -0.00132398 -0.00131674 -0.00130937 -0.00130188 -0.00129425 -0.00128647 -0.00127853 -0.00127041 -0.00126209 -0.00125355 -0.00124475 -0.00123564 -0.00122615 -0.00121613 -0.00120529 -0.00119304 -0.00117845 -0.00116031 -0.00113751 -0.00110921 -0.00107486 -0.00103413 -0.000986791 -0.00093269 -0.000871715 -0.000803775 -0.000728794 -0.000646704 -0.000557444 -0.000460957 -0.000357187 -0.000246084 -0.000127597 -1.67736E-06 0.000126839 0.000253106 +-0.00128888 -0.00128219 -0.00127543 -0.00126857 -0.00126162 -0.00125456 -0.00124739 -0.00124009 -0.00123266 -0.00122509 -0.00121735 -0.00120944 -0.00120132 -0.00119299 -0.00118438 -0.00117546 -0.00116611 -0.00115616 -0.00114522 -0.00113258 -0.00111712 -0.00109757 -0.00107283 -0.00104215 -0.00100505 -0.00096123 -0.000910488 -0.000852686 -0.000787719 -0.000715498 -0.000635948 -0.000549001 -0.000454593 -0.000352665 -0.00024316 -0.000126023 -1.20191E-06 0.000126432 0.00025197 +-0.00123136 -0.00122494 -0.00121845 -0.00121187 -0.00120522 -0.00119846 -0.00119161 -0.00118464 -0.00117755 -0.00117034 -0.00116298 -0.00115546 -0.00114776 -0.00113987 -0.00113175 -0.00112335 -0.00111461 -0.00110541 -0.00109551 -0.00108441 -0.00107123 -0.00105471 -0.00103352 -0.00100663 -0.000973358 -0.000933286 -0.000886153 -0.000831779 -0.000770038 -0.000700826 -0.000624057 -0.000539657 -0.000447555 -0.000347685 -0.000239985 -0.000124395 -8.58055E-07 0.000125725 0.000250392 +-0.00117255 -0.00116639 -0.00116017 -0.00115388 -0.00114751 -0.00114106 -0.00113452 -0.00112788 -0.00112113 -0.00111427 -0.00110728 -0.00110015 -0.00109286 -0.0010854 -0.00107774 -0.00106985 -0.00106167 -0.00105313 -0.00104407 -0.00103418 -0.00102284 -0.00100897 -0.000991158 -0.000968094 -0.000938816 -0.000902726 -0.000859459 -0.000808783 -0.000750537 -0.000684601 -0.000610876 -0.000529277 -0.000439726 -0.000342151 -0.000236483 -0.000122658 -6.10613E-07 0.000124736 0.00024837 +-0.00111246 -0.00110656 -0.00110061 -0.0010946 -0.00108853 -0.00108238 -0.00107615 -0.00106983 -0.00106342 -0.00105691 -0.00105028 -0.00104353 -0.00103664 -0.0010296 -0.00102239 -0.00101498 -0.00100733 -0.000999381 -0.00099104 -0.00098211 -0.000972191 -0.000960492 -0.000945735 -0.000926408 -0.000901225 -0.000869324 -0.000830183 -0.000783484 -0.000729021 -0.000666648 -0.000596248 -0.000517725 -0.000430993 -0.000335971 -0.000232585 -0.000120762 -4.33238E-07 0.000123469 0.000245891 +-0.00105113 -0.00104549 -0.00103982 -0.00103409 -0.00102831 -0.00102246 -0.00101654 -0.00101054 -0.00100446 -0.000998291 -0.000992022 -0.000985645 -0.000979148 -0.000972519 -0.000965741 -0.000958791 -0.000951642 -0.000944249 -0.000936546 -0.000928409 -0.000919592 -0.00090958 -0.000897384 -0.000881522 -0.000860422 -0.000832869 -0.000798102 -0.000755668 -0.000705292 -0.000646787 -0.000580016 -0.000504867 -0.000421243 -0.000329056 -0.000228223 -0.000118666 -3.06486E-07 0.000121923 0.000242937 +-0.000988619 -0.000983248 -0.000977843 -0.000972396 -0.000966901 -0.000961352 -0.000955742 -0.000950065 -0.000944315 -0.000938485 -0.00093257 -0.00092656 -0.000920447 -0.000914219 -0.000907863 -0.000901362 -0.000894691 -0.00088782 -0.000880699 -0.000873248 -0.000865316 -0.000856588 -0.000846399 -0.000833532 -0.000816321 -0.000793182 -0.000763002 -0.000725118 -0.000679143 -0.000624831 -0.000562014 -0.00049056 -0.00041036 -0.000321315 -0.000223333 -0.000116328 -2.16143E-07 0.000120088 0.000239477 +-0.000925016 -0.000919911 -0.000914778 -0.000909612 -0.000904407 -0.000899156 -0.000893854 -0.000888494 -0.000883072 -0.000877581 -0.000872016 -0.000866369 -0.000860632 -0.000854798 -0.000848853 -0.000842786 -0.000836576 -0.000830199 -0.000823621 -0.000816786 -0.000809598 -0.000801868 -0.00079319 -0.000782714 -0.00076897 -0.000750142 -0.00072469 -0.000691621 -0.000650365 -0.000600588 -0.000542071 -0.000474659 -0.000398223 -0.000312653 -0.000217847 -0.000113711 -1.51892E-07 0.000117949 0.000235476 +-0.000860487 -0.000855647 -0.000850789 -0.000845905 -0.00084099 -0.000836038 -0.000831042 -0.000825999 -0.000820902 -0.000815747 -0.000810528 -0.000805239 -0.000799874 -0.000794424 -0.000788882 -0.000783236 -0.000777471 -0.000771568 -0.000765501 -0.000759232 -0.000752696 -0.000745778 -0.000738239 -0.000729556 -0.00071865 -0.000703785 -0.000683052 -0.000655003 -0.000618774 -0.000573879 -0.000520028 -0.000457023 -0.000384716 -0.00030298 -0.000211702 -0.000110778 -1.0629E-07 0.000115485 0.000230889 +-0.000795263 -0.000790692 -0.00078611 -0.000781509 -0.000776884 -0.00077223 -0.000767541 -0.000762813 -0.00075804 -0.000753217 -0.000748341 -0.000743406 -0.000738406 -0.000733335 -0.000728186 -0.00072295 -0.000717615 -0.000712167 -0.000706585 -0.000700843 -0.000694896 -0.000688671 -0.000682027 -0.000674662 -0.000665896 -0.000654374 -0.000638107 -0.00061516 -0.00058422 -0.00054455 -0.000495736 -0.000437523 -0.000369729 -0.000292209 -0.000204837 -0.000107495 -7.39832E-08 0.000112672 0.000225664 +-0.000729529 -0.000725231 -0.000720926 -0.00071661 -0.000712277 -0.000707921 -0.000703539 -0.000699124 -0.000694674 -0.000690182 -0.000685646 -0.00068106 -0.000676421 -0.000671722 -0.000666958 -0.000662122 -0.000657205 -0.000652195 -0.000647077 -0.000641832 -0.000636428 -0.000630817 -0.000624915 -0.000618547 -0.000611324 -0.000602368 -0.000590003 -0.000572022 -0.000546544 -0.000512418 -0.000469021 -0.000416003 -0.000353133 -0.00028024 -0.00019718 -0.000103825 -5.11359E-08 0.000109486 0.000219748 +-0.000663508 -0.000659486 -0.000655463 -0.000651434 -0.000647394 -0.000643338 -0.000639262 -0.000635161 -0.000631032 -0.00062687 -0.000622671 -0.000618432 -0.000614149 -0.000609817 -0.000605431 -0.000600986 -0.000596475 -0.000591889 -0.000587217 -0.000582444 -0.000577548 -0.000572497 -0.000567236 -0.000561665 -0.00055557 -0.000548446 -0.000539157 -0.000525676 -0.000505648 -0.00047732 -0.000439711 -0.000392303 -0.00033479 -0.000266964 -0.000188658 -9.97264E-05 -3.50062E-08 0.000105895 0.000213087 +-0.000597466 -0.000593724 -0.000589986 -0.000586248 -0.000582503 -0.000578749 -0.000574981 -0.000571194 -0.000567386 -0.000563552 -0.000559689 -0.000555793 -0.000551862 -0.000547892 -0.000543878 -0.000539817 -0.000535702 -0.000531528 -0.000527286 -0.000522964 -0.000518548 -0.000514015 -0.00050933 -0.000504432 -0.000499201 -0.000493369 -0.00048628 -0.000476471 -0.000461559 -0.00043914 -0.000407648 -0.000366267 -0.000314565 -0.000252271 -0.000179191 -9.51579E-05 -2.36389E-08 0.000101862 0.000205615 +-0.00053172 -0.000528264 -0.000524816 -0.000521372 -0.000517926 -0.000514475 -0.000511016 -0.000507544 -0.000504057 -0.00050055 -0.000497021 -0.000493467 -0.000489886 -0.000486273 -0.000482626 -0.000478941 -0.000475214 -0.000471441 -0.000467614 -0.000463726 -0.000459766 -0.000455719 -0.000451561 -0.000447255 -0.000442731 -0.000437848 -0.000432262 -0.000425117 -0.000414551 -0.000397861 -0.000372707 -0.000337749 -0.000292318 -0.000236048 -0.000168697 -9.00756E-05 -1.56422E-08 9.73494E-05 0.000197258 +-0.000466645 -0.000463482 -0.000460329 -0.000457183 -0.00045404 -0.000450896 -0.000447747 -0.000444592 -0.000441426 -0.000438246 -0.000435051 -0.000431836 -0.000428601 -0.000425342 -0.000422056 -0.000418742 -0.000415395 -0.000412013 -0.00040859 -0.00040512 -0.000401597 -0.000398009 -0.000394341 -0.00039057 -0.000386654 -0.000382516 -0.000377983 -0.000372617 -0.000365289 -0.00035368 -0.000334846 -0.000306629 -0.000267922 -0.000218183 -0.000157095 -8.44339E-05 -1.00275E-08 9.2314E-05 0.000187939 +-0.000402687 -0.000399824 -0.000396972 -0.00039413 -0.000391293 -0.000388458 -0.000385624 -0.000382786 -0.000379942 -0.00037709 -0.000374227 -0.000371351 -0.000368459 -0.000365551 -0.000362622 -0.000359673 -0.000356699 -0.000353699 -0.000350668 -0.000347604 -0.0003445 -0.00034135 -0.000338143 -0.000334863 -0.000331488 -0.000327973 -0.00032423 -0.000320048 -0.00031486 -0.000307182 -0.000294193 -0.000272851 -0.000241273 -0.000198572 -0.000144303 -7.81865E-05 -6.09297E-09 8.67113E-05 0.000177576 +-0.000340376 -0.000337819 -0.000335275 -0.000332741 -0.000330216 -0.000327695 -0.000325177 -0.000322659 -0.000320139 -0.000317614 -0.000315083 -0.000312544 -0.000309994 -0.000307433 -0.000304858 -0.000302268 -0.00029966 -0.000297034 -0.000294387 -0.000291715 -0.000289016 -0.000286283 -0.000283512 -0.000280692 -0.000277809 -0.000274837 -0.000271731 -0.00026839 -0.000264556 -0.000259487 -0.000251239 -0.000236504 -0.000212321 -0.000177133 -0.000130246 -7.12888E-05 -3.3418E-09 8.04953E-05 0.000166083 +-0.000280345 -0.000278101 -0.000275871 -0.000273652 -0.000271442 -0.000269239 -0.000267041 -0.000264845 -0.00026265 -0.000260453 -0.000258254 -0.00025605 -0.000253841 -0.000251623 -0.000249398 -0.000247162 -0.000244915 -0.000242655 -0.000240381 -0.00023809 -0.000235781 -0.000233451 -0.000231094 -0.000228706 -0.000226277 -0.000223794 -0.000221231 -0.00021854 -0.000215607 -0.000212113 -0.000207077 -0.000197984 -0.000181134 -0.000153837 -0.000114874 -6.37025E-05 -1.42245E-09 7.36204E-05 0.000153375 +-0.000223364 -0.000221441 -0.000219531 -0.000217632 -0.000215742 -0.00021386 -0.000211984 -0.000210112 -0.000208243 -0.000206375 -0.000204506 -0.000202637 -0.000200764 -0.000198888 -0.000197007 -0.00019512 -0.000193226 -0.000191325 -0.000189415 -0.000187495 -0.000185563 -0.000183618 -0.000181657 -0.000179677 -0.000177672 -0.000175634 -0.000173551 -0.000171399 -0.000169127 -0.000166605 -0.000163436 -0.000158314 -0.000148052 -0.000128761 -9.8183E-05 -5.54064E-05 -8.67481E-11 6.60464E-05 0.00013937 +-0.000170393 -0.000168796 -0.00016721 -0.000165634 -0.000164068 -0.000162509 -0.000160956 -0.000159409 -0.000157865 -0.000156324 -0.000154785 -0.000153247 -0.000151708 -0.000150168 -0.000148626 -0.000147081 -0.000145534 -0.000143982 -0.000142426 -0.000140864 -0.000139296 -0.000137721 -0.000136137 -0.000134542 -0.000132934 -0.000131307 -0.000129656 -0.000127969 -0.000126224 -0.000124367 -0.000122255 -0.000119388 -0.000114013 -0.000102233 -8.02782E-05 -4.64208E-05 8.40289E-10 5.77478E-05 0.000124007 +-0.000122649 -0.000121379 -0.000120118 -0.000118866 -0.000117622 -0.000116385 -0.000115155 -0.000113929 -0.000112708 -0.00011149 -0.000110274 -0.000109061 -0.000107849 -0.000106637 -0.000105426 -0.000104214 -0.000103002 -0.000101788 -0.000100572 -9.93548E-05 -9.81346E-05 -9.69112E-05 -9.56838E-05 -9.44515E-05 -9.32127E-05 -9.19654E-05 -9.07063E-05 -8.94299E-05 -8.81265E-05 -8.67755E-05 -8.53254E-05 -8.36144E-05 -8.10051E-05 -7.51378E-05 -6.15087E-05 -3.68604E-05 1.48179E-09 4.87358E-05 0.000107257 +-8.16552E-05 -8.07046E-05 -7.97619E-05 -7.88262E-05 -7.78971E-05 -7.69737E-05 -7.60555E-05 -7.51419E-05 -7.42323E-05 -7.33261E-05 -7.24228E-05 -7.15219E-05 -7.06229E-05 -6.97256E-05 -6.88294E-05 -6.79341E-05 -6.70394E-05 -6.61451E-05 -6.52509E-05 -6.43566E-05 -6.3462E-05 -6.25667E-05 -6.16705E-05 -6.07728E-05 -5.9873E-05 -5.89701E-05 -5.80627E-05 -5.71485E-05 -5.62233E-05 -5.52793E-05 -5.42987E-05 -5.32321E-05 -5.18987E-05 -4.94543E-05 -4.27361E-05 -2.70419E-05 1.92424E-09 3.91058E-05 8.91829E-05 +-4.90884E-05 -4.84362E-05 -4.77896E-05 -4.7148E-05 -4.65111E-05 -4.58785E-05 -4.52499E-05 -4.46248E-05 -4.40029E-05 -4.33838E-05 -4.27673E-05 -4.2153E-05 -4.15407E-05 -4.09301E-05 -4.0321E-05 -3.97133E-05 -3.91068E-05 -3.85013E-05 -3.78968E-05 -3.72931E-05 -3.66901E-05 -3.60877E-05 -3.54859E-05 -3.48843E-05 -3.42827E-05 -3.36809E-05 -3.30781E-05 -3.24735E-05 -3.18656E-05 -3.12514E-05 -3.06252E-05 -2.99722E-05 -2.92454E-05 -2.82329E-05 -2.57239E-05 -1.76498E-05 2.2283E-09 2.91366E-05 7.00409E-05 +-2.61092E-05 -2.57107E-05 -2.53156E-05 -2.49237E-05 -2.45347E-05 -2.41486E-05 -2.3765E-05 -2.33838E-05 -2.30048E-05 -2.26277E-05 -2.22525E-05 -2.18789E-05 -2.15069E-05 -2.11363E-05 -2.07669E-05 -2.03988E-05 -2.00318E-05 -1.96658E-05 -1.93009E-05 -1.89369E-05 -1.85739E-05 -1.82118E-05 -1.78505E-05 -1.749E-05 -1.71303E-05 -1.67711E-05 -1.64124E-05 -1.60538E-05 -1.56947E-05 -1.53343E-05 -1.49707E-05 -1.45996E-05 -1.42088E-05 -1.37502E-05 -1.2928E-05 -9.79613E-06 2.43642E-09 1.94522E-05 5.05073E-05 +-1.22391E-05 -1.20272E-05 -1.18172E-05 -1.16089E-05 -1.14022E-05 -1.11971E-05 -1.09934E-05 -1.0791E-05 -1.05899E-05 -1.03899E-05 -1.0191E-05 -9.99309E-06 -9.79614E-06 -9.60006E-06 -9.40483E-06 -9.21038E-06 -9.0167E-06 -8.82375E-06 -8.63151E-06 -8.43998E-06 -8.24914E-06 -8.05898E-06 -7.8695E-06 -7.68068E-06 -7.49251E-06 -7.30496E-06 -7.11796E-06 -6.93142E-06 -6.7452E-06 -6.55898E-06 -6.37223E-06 -6.1837E-06 -5.9901E-06 -5.77984E-06 -5.48801E-06 -4.51451E-06 2.57826E-09 1.11256E-05 3.20644E-05 +-5.11588E-06 -5.0187E-06 -4.92237E-06 -4.82685E-06 -4.73209E-06 -4.63806E-06 -4.54469E-06 -4.45197E-06 -4.35984E-06 -4.26827E-06 -4.17722E-06 -4.08668E-06 -3.9966E-06 -3.90698E-06 -3.81778E-06 -3.72899E-06 -3.6406E-06 -3.5526E-06 -3.46498E-06 -3.37774E-06 -3.29088E-06 -3.20439E-06 -3.11828E-06 -3.03254E-06 -2.94718E-06 -2.86218E-06 -2.77752E-06 -2.69319E-06 -2.60914E-06 -2.52527E-06 -2.44142E-06 -2.35723E-06 -2.27174E-06 -2.18184E-06 -2.0716E-06 -1.78087E-06 2.67452E-09 5.28965E-06 1.71495E-05 +-1.91012E-06 -1.87176E-06 -1.83374E-06 -1.79603E-06 -1.75864E-06 -1.72153E-06 -1.6847E-06 -1.64812E-06 -1.61179E-06 -1.57569E-06 -1.5398E-06 -1.50412E-06 -1.46863E-06 -1.43334E-06 -1.39822E-06 -1.36328E-06 -1.3285E-06 -1.29389E-06 -1.25945E-06 -1.22517E-06 -1.19105E-06 -1.1571E-06 -1.12331E-06 -1.08968E-06 -1.05622E-06 -1.02292E-06 -9.89773E-07 -9.56781E-07 -9.23925E-07 -8.91179E-07 -8.58491E-07 -8.25747E-07 -7.92666E-07 -7.58338E-07 -7.18339E-07 -6.28347E-07 2.73956E-09 2.13767E-06 7.67479E-06 +-6.23374E-07 -6.10469E-07 -5.97679E-07 -5.84999E-07 -5.72424E-07 -5.59948E-07 -5.47565E-07 -5.35271E-07 -5.2306E-07 -5.10928E-07 -4.98872E-07 -4.86887E-07 -4.7497E-07 -4.63119E-07 -4.51331E-07 -4.39604E-07 -4.27937E-07 -4.16329E-07 -4.04778E-07 -3.93285E-07 -3.8185E-07 -3.70473E-07 -3.59154E-07 -3.47893E-07 -3.3669E-07 -3.25546E-07 -3.14458E-07 -3.03425E-07 -2.92443E-07 -2.81504E-07 -2.70592E-07 -2.59674E-07 -2.48666E-07 -2.37303E-07 -2.24323E-07 -1.97211E-07 2.78329E-09 7.71413E-07 3.00222E-06 +-1.73607E-07 -1.69926E-07 -1.66279E-07 -1.62663E-07 -1.59078E-07 -1.55522E-07 -1.51992E-07 -1.48488E-07 -1.45009E-07 -1.41552E-07 -1.38118E-07 -1.34704E-07 -1.3131E-07 -1.27936E-07 -1.2458E-07 -1.21241E-07 -1.17921E-07 -1.14618E-07 -1.11331E-07 -1.08062E-07 -1.0481E-07 -1.01574E-07 -9.83563E-08 -9.51554E-08 -9.19716E-08 -8.8805E-08 -8.56553E-08 -8.25218E-08 -7.94036E-08 -7.62984E-08 -7.3202E-08 -7.01053E-08 -6.69857E-08 -6.37718E-08 -6.01262E-08 -5.27203E-08 2.81252E-09 2.51426E-07 1.07534E-06 +-4.0553E-08 -3.96431E-08 -3.87416E-08 -3.78481E-08 -3.6962E-08 -3.60831E-08 -3.5211E-08 -3.43453E-08 -3.34857E-08 -3.26319E-08 -3.17835E-08 -3.09404E-08 -3.01023E-08 -2.92691E-08 -2.84404E-08 -2.76163E-08 -2.67967E-08 -2.59813E-08 -2.51703E-08 -2.43636E-08 -2.35611E-08 -2.2763E-08 -2.19691E-08 -2.11796E-08 -2.03945E-08 -1.96136E-08 -1.8837E-08 -1.80646E-08 -1.72959E-08 -1.65306E-08 -1.57676E-08 -1.50048E-08 -1.42364E-08 -1.34454E-08 -1.25502E-08 -1.07473E-08 2.83189E-09 7.35052E-08 3.53557E-07 +-6.84363E-09 -6.64E-09 -6.43824E-09 -6.23827E-09 -6.04E-09 -5.84334E-09 -5.6482E-09 -5.4545E-09 -5.26219E-09 -5.07117E-09 -4.88139E-09 -4.6928E-09 -4.50534E-09 -4.31897E-09 -4.13365E-09 -3.94936E-09 -3.76606E-09 -3.58375E-09 -3.40242E-09 -3.22205E-09 -3.04266E-09 -2.86423E-09 -2.68678E-09 -2.51031E-09 -2.33483E-09 -2.16032E-09 -1.98677E-09 -1.81416E-09 -1.64242E-09 -1.47143E-09 -1.30098E-09 -1.13056E-09 -9.58958E-10 -7.82322E-10 -5.82531E-10 -1.81173E-10 2.8446E-09 2.0489E-08 1.04615E-07 +8.0823E-10 8.51247E-10 8.93866E-10 9.36106E-10 9.77987E-10 1.01953E-09 1.06074E-09 1.10165E-09 1.14227E-09 1.18261E-09 1.22269E-09 1.26252E-09 1.30211E-09 1.34146E-09 1.3806E-09 1.41951E-09 1.45822E-09 1.49671E-09 1.535E-09 1.57308E-09 1.61095E-09 1.64862E-09 1.68608E-09 1.72333E-09 1.76038E-09 1.79721E-09 1.83384E-09 1.87028E-09 1.90653E-09 1.94261E-09 1.97859E-09 2.01455E-09 2.05076E-09 2.08804E-09 2.13019E-09 2.2148E-09 2.8528E-09 6.84322E-09 2.87966E-08 +2.43898E-09 2.4478E-09 2.45654E-09 2.4652E-09 2.47378E-09 2.4823E-09 2.49075E-09 2.49914E-09 2.50746E-09 2.51573E-09 2.52395E-09 2.53211E-09 2.54023E-09 2.54829E-09 2.55632E-09 2.56429E-09 2.57222E-09 2.58011E-09 2.58796E-09 2.59577E-09 2.60353E-09 2.61125E-09 2.61893E-09 2.62656E-09 2.63415E-09 2.6417E-09 2.64921E-09 2.65668E-09 2.6641E-09 2.6715E-09 2.67887E-09 2.68624E-09 2.69366E-09 2.7013E-09 2.70993E-09 2.72727E-09 2.85796E-09 3.70749E-09 8.81872E-09 +2.77652E-09 2.7783E-09 2.78007E-09 2.78182E-09 2.78355E-09 2.78527E-09 2.78698E-09 2.78867E-09 2.79036E-09 2.79203E-09 2.79369E-09 2.79534E-09 2.79698E-09 2.79861E-09 2.80023E-09 2.80184E-09 2.80344E-09 2.80503E-09 2.80662E-09 2.8082E-09 2.80977E-09 2.81132E-09 2.81288E-09 2.81442E-09 2.81595E-09 2.81748E-09 2.81899E-09 2.8205E-09 2.822E-09 2.8235E-09 2.82499E-09 2.82647E-09 2.82797E-09 2.82952E-09 2.83126E-09 2.83476E-09 2.86116E-09 3.03629E-09 4.14349E-09 +2.84612E-09 2.84648E-09 2.84683E-09 2.84718E-09 2.84753E-09 2.84787E-09 2.84822E-09 2.84856E-09 2.84889E-09 2.84923E-09 2.84956E-09 2.84989E-09 2.85022E-09 2.85055E-09 2.85087E-09 2.8512E-09 2.85152E-09 2.85184E-09 2.85216E-09 2.85247E-09 2.85279E-09 2.8531E-09 2.85341E-09 2.85372E-09 2.85403E-09 2.85434E-09 2.85464E-09 2.85494E-09 2.85524E-09 2.85554E-09 2.85584E-09 2.85614E-09 2.85644E-09 2.85675E-09 2.8571E-09 2.8578E-09 2.8631E-09 2.89864E-09 3.12929E-09 +2.86084E-09 2.86092E-09 2.86099E-09 2.86106E-09 2.86113E-09 2.8612E-09 2.86126E-09 2.86133E-09 2.8614E-09 2.86147E-09 2.86153E-09 2.8616E-09 2.86167E-09 2.86173E-09 2.8618E-09 2.86186E-09 2.86192E-09 2.86199E-09 2.86205E-09 2.86212E-09 2.86218E-09 2.86224E-09 2.8623E-09 2.86237E-09 2.86243E-09 2.86249E-09 2.86255E-09 2.86261E-09 2.86267E-09 2.86273E-09 2.86279E-09 2.86285E-09 2.86291E-09 2.86297E-09 2.86304E-09 2.86318E-09 2.86424E-09 2.8714E-09 2.91852E-09 +2.8642E-09 2.86421E-09 2.86423E-09 2.86424E-09 2.86425E-09 2.86427E-09 2.86428E-09 2.8643E-09 2.86431E-09 2.86432E-09 2.86434E-09 2.86435E-09 2.86436E-09 2.86437E-09 2.86439E-09 2.8644E-09 2.86441E-09 2.86443E-09 2.86444E-09 2.86445E-09 2.86446E-09 2.86448E-09 2.86449E-09 2.8645E-09 2.86451E-09 2.86453E-09 2.86454E-09 2.86455E-09 2.86456E-09 2.86457E-09 2.86459E-09 2.8646E-09 2.86461E-09 2.86462E-09 2.86464E-09 2.86466E-09 2.86488E-09 2.86631E-09 2.87585E-09 +2.86506E-09 2.86507E-09 2.86507E-09 2.86507E-09 2.86508E-09 2.86508E-09 2.86508E-09 2.86508E-09 2.86509E-09 2.86509E-09 2.86509E-09 2.86509E-09 2.8651E-09 2.8651E-09 2.8651E-09 2.8651E-09 2.86511E-09 2.86511E-09 2.86511E-09 2.86512E-09 2.86512E-09 2.86512E-09 2.86512E-09 2.86513E-09 2.86513E-09 2.86513E-09 2.86513E-09 2.86513E-09 2.86514E-09 2.86514E-09 2.86514E-09 2.86514E-09 2.86515E-09 2.86515E-09 2.86515E-09 2.86516E-09 2.8652E-09 2.86549E-09 2.86741E-09 +2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86531E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86532E-09 2.86533E-09 2.86533E-09 2.86533E-09 2.86533E-09 2.86533E-09 2.86534E-09 2.86539E-09 2.86578E-09 +*table 1.6 +-0.0012452 -0.00123877 -0.00123226 -0.00122567 -0.00121898 -0.00121219 -0.00120529 -0.00119827 -0.00119112 -0.00118384 -0.00117639 -0.00116878 -0.00116098 -0.00115296 -0.00114469 -0.0011361 -0.00112708 -0.00111744 -0.00110674 -0.00109421 -0.00107874 -0.00105913 -0.00103445 -0.00100404 -0.000967501 -0.000924582 -0.000875114 -0.000818976 -0.000756074 -0.000686332 -0.000609683 -0.000526068 -0.00043543 -0.000337719 -0.000232887 -0.000120885 -1.67229E-06 0.000120159 0.000239993 +-0.00118999 -0.00118381 -0.00117757 -0.00117124 -0.00116484 -0.00115834 -0.00115174 -0.00114504 -0.00113822 -0.00113127 -0.00112419 -0.00111696 -0.00110955 -0.00110196 -0.00109414 -0.00108606 -0.00107764 -0.00106875 -0.00105912 -0.0010482 -0.00103505 -0.00101844 -0.000997174 -0.000970361 -0.000937432 -0.000898038 -0.000851956 -0.000799034 -0.00073916 -0.000672246 -0.000598216 -0.000517004 -0.000428548 -0.000332791 -0.000229681 -0.000119166 -1.19757E-06 0.000119605 0.000238577 +-0.00113365 -0.00112772 -0.00112174 -0.00111569 -0.00110956 -0.00110335 -0.00109705 -0.00109066 -0.00108417 -0.00107756 -0.00107083 -0.00106397 -0.00105695 -0.00104977 -0.0010424 -0.0010348 -0.00102692 -0.00101867 -0.00100989 -0.00100023 -0.000988987 -0.000975056 -0.0009571 -0.000933949 -0.000904796 -0.000869143 -0.000826686 -0.000777227 -0.000720629 -0.000656787 -0.000585615 -0.000507037 -0.000420987 -0.000327401 -0.000226221 -0.00011739 -8.54248E-07 0.000118749 0.000236711 +-0.00107618 -0.00107051 -0.00106478 -0.001059 -0.00105315 -0.00104723 -0.00104123 -0.00103515 -0.00102898 -0.0010227 -0.00101632 -0.00100982 -0.00100318 -0.000996403 -0.000989456 -0.000982315 -0.000974943 -0.000967278 -0.000959211 -0.000950526 -0.000940771 -0.000929084 -0.000914175 -0.000894646 -0.000869387 -0.000837678 -0.000799088 -0.000753351 -0.000700291 -0.000639783 -0.000571726 -0.000496034 -0.000412633 -0.000321454 -0.00022243 -0.000115501 -6.07185E-07 0.000117607 0.000234394 +-0.00101762 -0.0010122 -0.00100673 -0.00100122 -0.000995645 -0.000990011 -0.000984309 -0.000978532 -0.000972674 -0.000966728 -0.000960687 -0.000954541 -0.00094828 -0.000941891 -0.000935358 -0.000928659 -0.000921766 -0.000914633 -0.00090719 -0.0008993 -0.000890685 -0.000880763 -0.000868477 -0.000852373 -0.000831035 -0.000803437 -0.000768951 -0.000727202 -0.000677959 -0.000621064 -0.000556398 -0.000483864 -0.000403377 -0.00031486 -0.000218241 -0.000113453 -4.30081E-07 0.000116185 0.000231616 +-0.000958005 -0.000952834 -0.000947629 -0.000942382 -0.000937087 -0.000931739 -0.000926332 -0.000920859 -0.000915315 -0.000909695 -0.00090399 -0.000898195 -0.000892299 -0.000886293 -0.000880162 -0.00087389 -0.000867454 -0.000860821 -0.000853941 -0.000846727 -0.000839009 -0.000830427 -0.00082024 -0.000807171 -0.000789634 -0.000766242 -0.000736071 -0.000698578 -0.000653442 -0.000600457 -0.000539479 -0.000470394 -0.000393107 -0.000307531 -0.000213588 -0.000111203 -3.0352E-07 0.000114481 0.000228357 +-0.000897418 -0.0008925 -0.000887554 -0.000882576 -0.000877558 -0.000872494 -0.00086738 -0.00086221 -0.000856978 -0.00085168 -0.000846309 -0.000840859 -0.000835322 -0.00082969 -0.000823951 -0.000818092 -0.000812095 -0.000805935 -0.000799577 -0.000792961 -0.000785982 -0.000778426 -0.000769827 -0.000759247 -0.000745183 -0.00072596 -0.000700262 -0.000667279 -0.000626546 -0.000577784 -0.00052081 -0.000455489 -0.000381711 -0.00029938 -0.000208408 -0.000108712 -2.13311E-07 0.000112488 0.00022459 +-0.000835958 -0.000831294 -0.00082661 -0.0008219 -0.000817158 -0.000812379 -0.000807558 -0.000802689 -0.000797768 -0.000792789 -0.000787748 -0.000782639 -0.000777455 -0.00077219 -0.000766835 -0.000761377 -0.000755804 -0.000750096 -0.000744227 -0.000738157 -0.000731816 -0.000725076 -0.000717664 -0.000708979 -0.000697847 -0.000682547 -0.000661371 -0.000633115 -0.000597077 -0.000552862 -0.000500228 -0.000439008 -0.000369073 -0.000290314 -0.000202634 -0.000105941 -1.49155E-07 0.00011019 0.000220279 +-0.000773805 -0.000769397 -0.000764976 -0.000760536 -0.000756071 -0.000751576 -0.000747047 -0.000742478 -0.000737865 -0.000733204 -0.00072849 -0.000723718 -0.000718882 -0.000713978 -0.000708997 -0.00070393 -0.000698768 -0.000693494 -0.000688089 -0.000682525 -0.000676755 -0.0006707 -0.0006642 -0.000656904 -0.000648038 -0.000636158 -0.000619353 -0.000595948 -0.000564872 -0.00052553 -0.000477584 -0.00042082 -0.000355083 -0.000280249 -0.000196207 -0.000102857 -1.03618E-07 0.000107568 0.000215383 +-0.000711204 -0.000707055 -0.000702898 -0.000698729 -0.000694541 -0.000690331 -0.000686093 -0.000681823 -0.000677517 -0.000673171 -0.000668781 -0.000664341 -0.000659849 -0.000655299 -0.000650685 -0.000646 -0.000641235 -0.000636379 -0.000631417 -0.000626329 -0.000621082 -0.000615626 -0.000609864 -0.000603599 -0.000596377 -0.000587202 -0.000574335 -0.000555733 -0.000529812 -0.000495648 -0.000452742 -0.000400803 -0.000339638 -0.000269101 -0.000189068 -9.94264E-05 -7.1358E-08 0.000104599 0.000209852 +-0.000648355 -0.000644468 -0.000640578 -0.000636681 -0.000632772 -0.000628847 -0.000624901 -0.000620929 -0.000616929 -0.000612896 -0.000608827 -0.000604717 -0.000600564 -0.000596362 -0.000592108 -0.000587795 -0.000583417 -0.000578966 -0.000574429 -0.000569792 -0.000565032 -0.000560116 -0.000554984 -0.000549523 -0.000543481 -0.000536272 -0.000526623 -0.000512495 -0.000491787 -0.000463063 -0.000425545 -0.000378813 -0.000322616 -0.000256775 -0.000181149 -9.56125E-05 -4.85427E-08 0.00010126 0.000203634 +-0.000585497 -0.000581875 -0.000578256 -0.000574634 -0.000571006 -0.000567366 -0.000563712 -0.000560039 -0.000556343 -0.000552622 -0.000548872 -0.000545089 -0.00054127 -0.000537413 -0.000533512 -0.000529564 -0.000525564 -0.000521504 -0.000517377 -0.00051317 -0.00050887 -0.000504451 -0.000499877 -0.00049508 -0.000489924 -0.000484088 -0.000476806 -0.000466475 -0.000450779 -0.000427652 -0.000395844 -0.000354707 -0.000303891 -0.000243171 -0.000172381 -9.13773E-05 -3.2435E-08 9.75198E-05 0.000196679 +-0.000522913 -0.000519562 -0.000516216 -0.000512872 -0.000509527 -0.000506175 -0.000502813 -0.000499439 -0.000496048 -0.000492637 -0.000489204 -0.000485745 -0.000482258 -0.00047874 -0.000475188 -0.000471598 -0.000467966 -0.000464288 -0.000460556 -0.000456763 -0.000452898 -0.000448945 -0.000444878 -0.000440658 -0.000436207 -0.000431357 -0.000425698 -0.000418227 -0.000406958 -0.000389366 -0.000363514 -0.000328348 -0.000283338 -0.000228186 -0.000162688 -8.66809E-05 -2.10829E-08 9.33449E-05 0.000188924 +-0.000460937 -0.000457861 -0.000454794 -0.000451733 -0.000448672 -0.00044561 -0.000442543 -0.000439468 -0.000436381 -0.00043328 -0.000430163 -0.000427026 -0.000423868 -0.000420686 -0.000417477 -0.000414238 -0.000410968 -0.000407661 -0.000404313 -0.000400919 -0.00039747 -0.000393955 -0.000390359 -0.000386656 -0.0003828 -0.000378703 -0.000374157 -0.000368631 -0.000360816 -0.000348312 -0.000328488 -0.000299617 -0.000260838 -0.000211718 -0.000151997 -8.14822E-05 -1.30967E-08 8.86983E-05 0.000180299 +-0.000399964 -0.00039717 -0.000394386 -0.00039161 -0.000388839 -0.00038607 -0.000383299 -0.000380524 -0.000377742 -0.000374951 -0.000372148 -0.000369332 -0.000366499 -0.000363649 -0.000360779 -0.000357887 -0.00035497 -0.000352026 -0.000349052 -0.000346042 -0.000342993 -0.000339896 -0.00033674 -0.00033351 -0.000330179 -0.000326697 -0.000322961 -0.000318712 -0.000313257 -0.000304896 -0.000290824 -0.000268444 -0.000236288 -0.00019367 -0.000140232 -7.57392E-05 -7.48911E-09 8.35406E-05 0.000170733 +-0.00034046 -0.000337953 -0.000335458 -0.000332973 -0.000330495 -0.000328021 -0.000325548 -0.000323075 -0.000320599 -0.000318117 -0.000315629 -0.000313131 -0.000310622 -0.000308101 -0.000305565 -0.000303014 -0.000300444 -0.000297856 -0.000295245 -0.000292609 -0.000289944 -0.000287246 -0.000284507 -0.000281716 -0.000278859 -0.000275908 -0.000272808 -0.000269437 -0.000265474 -0.000260002 -0.000250843 -0.000234855 -0.000209623 -0.00017396 -0.000127324 -6.94107E-05 -3.55951E-09 7.78305E-05 0.000160148 +-0.000282977 -0.000280764 -0.000278564 -0.000276375 -0.000274193 -0.000272018 -0.000269847 -0.000267677 -0.000265507 -0.000263335 -0.00026116 -0.000258979 -0.000256791 -0.000254596 -0.000252391 -0.000250175 -0.000247947 -0.000245706 -0.000243449 -0.000241176 -0.000238882 -0.000236566 -0.000234223 -0.000231845 -0.000229425 -0.000226945 -0.000224378 -0.000221666 -0.000218665 -0.000214967 -0.000209358 -0.000199102 -0.000180864 -0.000152543 -0.000113218 -6.24592E-05 -8.11658E-10 7.15268E-05 0.000148468 +-0.000228182 -0.00022627 -0.00022437 -0.000222481 -0.0002206 -0.000218727 -0.000216858 -0.000214993 -0.000213131 -0.000211269 -0.000209405 -0.00020754 -0.000205671 -0.000203798 -0.000201919 -0.000200034 -0.000198141 -0.00019624 -0.000194329 -0.000192407 -0.000190473 -0.000188524 -0.000186557 -0.00018457 -0.000182555 -0.000180505 -0.000178405 -0.000176225 -0.000173904 -0.000171274 -0.000167812 -0.000161902 -0.000150218 -0.000129448 -9.78925E-05 -5.4859E-05 1.10543E-09 6.45909E-05 0.000135618 +-0.000176895 -0.000175288 -0.000173692 -0.000172107 -0.00017053 -0.00016896 -0.000167397 -0.000165838 -0.000164282 -0.000162728 -0.000161176 -0.000159624 -0.00015807 -0.000156515 -0.000154958 -0.000153397 -0.000151832 -0.000150263 -0.000148688 -0.000147107 -0.000145518 -0.000143922 -0.000142315 -0.000140696 -0.000139062 -0.000137407 -0.000135725 -0.000134001 -0.000132207 -0.000130277 -0.000128015 -0.000124745 -0.000118321 -0.000104881 -8.14026E-05 -4.66123E-05 2.43961E-09 5.69942E-05 0.000121534 +-0.000130147 -0.000128848 -0.000127558 -0.000126278 -0.000125005 -0.000123739 -0.000122479 -0.000121224 -0.000119973 -0.000118726 -0.00011748 -0.000116236 -0.000114992 -0.000113749 -0.000112506 -0.000111261 -0.000110015 -0.000108768 -0.000107517 -0.000106265 -0.000105008 -0.000103748 -0.000102483 -0.000101212 -9.99328E-05 -9.86435E-05 -9.73402E-05 -9.60163E-05 -9.46596E-05 -9.32435E-05 -9.16989E-05 -8.97977E-05 -8.66503E-05 -7.94362E-05 -6.39729E-05 -3.77868E-05 3.3656E-09 4.87329E-05 0.000106179 +-8.92444E-05 -8.82493E-05 -8.72622E-05 -8.62825E-05 -8.53093E-05 -8.43421E-05 -8.33801E-05 -8.24226E-05 -8.1469E-05 -8.05187E-05 -7.95711E-05 -7.86257E-05 -7.76821E-05 -7.67397E-05 -7.57982E-05 -7.48572E-05 -7.39164E-05 -7.29756E-05 -7.20345E-05 -7.10928E-05 -7.01503E-05 -6.92065E-05 -6.82612E-05 -6.73136E-05 -6.63631E-05 -6.54084E-05 -6.44477E-05 -6.34783E-05 -6.24948E-05 -6.1487E-05 -6.0431E-05 -5.92563E-05 -5.76945E-05 -5.45437E-05 -4.61979E-05 -2.85951E-05 4.00637E-09 3.98612E-05 8.95762E-05 +-5.57279E-05 -5.50223E-05 -5.43225E-05 -5.36282E-05 -5.29389E-05 -5.22541E-05 -5.15735E-05 -5.08965E-05 -5.02229E-05 -4.95521E-05 -4.88839E-05 -4.8218E-05 -4.75539E-05 -4.68915E-05 -4.62305E-05 -4.55707E-05 -4.49119E-05 -4.4254E-05 -4.35968E-05 -4.29402E-05 -4.22841E-05 -4.16283E-05 -4.09727E-05 -4.03169E-05 -3.96608E-05 -3.90037E-05 -3.8345E-05 -3.76835E-05 -3.70172E-05 -3.63423E-05 -3.56507E-05 -3.49214E-05 -3.40836E-05 -3.2807E-05 -2.93903E-05 -1.9535E-05 4.44831E-09 3.05643E-05 7.18864E-05 +-3.09562E-05 -3.0506E-05 -3.00596E-05 -2.96169E-05 -2.91775E-05 -2.87412E-05 -2.83077E-05 -2.78769E-05 -2.74484E-05 -2.7022E-05 -2.65976E-05 -2.6175E-05 -2.57541E-05 -2.53345E-05 -2.49164E-05 -2.44994E-05 -2.40835E-05 -2.36688E-05 -2.3255E-05 -2.28421E-05 -2.24301E-05 -2.2019E-05 -2.16086E-05 -2.1199E-05 -2.07899E-05 -2.03813E-05 -1.99728E-05 -1.9564E-05 -1.91543E-05 -1.87424E-05 -1.83256E-05 -1.78979E-05 -1.7441E-05 -1.68794E-05 -1.5745E-05 -1.15208E-05 4.75199E-09 2.12911E-05 5.35699E-05 +-1.51273E-05 -1.48759E-05 -1.46267E-05 -1.43796E-05 -1.41343E-05 -1.38909E-05 -1.36491E-05 -1.34089E-05 -1.31701E-05 -1.29327E-05 -1.26965E-05 -1.24614E-05 -1.22275E-05 -1.19945E-05 -1.17624E-05 -1.15313E-05 -1.1301E-05 -1.10715E-05 -1.08428E-05 -1.06148E-05 -1.03876E-05 -1.01612E-05 -9.93544E-06 -9.71042E-06 -9.48608E-06 -9.26237E-06 -9.03921E-06 -8.81648E-06 -8.59395E-06 -8.37121E-06 -8.14749E-06 -7.92101E-06 -7.68698E-06 -7.42784E-06 -7.04131E-06 -5.65276E-06 4.95985E-09 1.29033E-05 3.57024E-05 +-6.55799E-06 -6.43678E-06 -6.31663E-06 -6.19748E-06 -6.07929E-06 -5.96198E-06 -5.8455E-06 -5.72981E-06 -5.61486E-06 -5.50059E-06 -5.38696E-06 -5.27395E-06 -5.1615E-06 -5.0496E-06 -4.93822E-06 -4.82733E-06 -4.71692E-06 -4.60698E-06 -4.49749E-06 -4.38846E-06 -4.27988E-06 -4.17174E-06 -4.06405E-06 -3.9568E-06 -3.84999E-06 -3.74361E-06 -3.63763E-06 -3.53202E-06 -3.42671E-06 -3.32158E-06 -3.2164E-06 -3.11064E-06 -3.00297E-06 -2.88887E-06 -2.74452E-06 -2.33305E-06 5.10156E-09 6.5347E-06 2.03024E-05 +-2.54452E-06 -2.49415E-06 -2.44423E-06 -2.39472E-06 -2.34562E-06 -2.29689E-06 -2.24852E-06 -2.20048E-06 -2.15276E-06 -2.10534E-06 -2.0582E-06 -2.01132E-06 -1.9647E-06 -1.91832E-06 -1.87217E-06 -1.82625E-06 -1.78054E-06 -1.73505E-06 -1.68977E-06 -1.6447E-06 -1.59983E-06 -1.55518E-06 -1.51073E-06 -1.4665E-06 -1.42247E-06 -1.37865E-06 -1.33503E-06 -1.2916E-06 -1.24834E-06 -1.20522E-06 -1.16215E-06 -1.11899E-06 -1.07534E-06 -1.02991E-06 -9.76327E-07 -8.50453E-07 5.19779E-09 2.77199E-06 9.61138E-06 +-8.7005E-07 -8.52136E-07 -8.34381E-07 -8.16779E-07 -7.99321E-07 -7.82E-07 -7.64807E-07 -7.47736E-07 -7.3078E-07 -7.13934E-07 -6.97191E-07 -6.80546E-07 -6.63994E-07 -6.47533E-07 -6.31158E-07 -6.14867E-07 -5.98658E-07 -5.82529E-07 -5.66479E-07 -5.50509E-07 -5.34617E-07 -5.18804E-07 -5.03071E-07 -4.87418E-07 -4.71844E-07 -4.5635E-07 -4.40933E-07 -4.25592E-07 -4.10319E-07 -3.95104E-07 -3.79925E-07 -3.64735E-07 -3.49413E-07 -3.33582E-07 -3.15424E-07 -2.76817E-07 5.26287E-09 1.03555E-06 3.90247E-06 +-2.53933E-07 -2.48541E-07 -2.43197E-07 -2.379E-07 -2.32646E-07 -2.27434E-07 -2.22262E-07 -2.17127E-07 -2.12028E-07 -2.06962E-07 -2.01928E-07 -1.96924E-07 -1.9195E-07 -1.87003E-07 -1.82083E-07 -1.77189E-07 -1.72321E-07 -1.67477E-07 -1.62659E-07 -1.57865E-07 -1.53096E-07 -1.48352E-07 -1.43632E-07 -1.38937E-07 -1.34268E-07 -1.29623E-07 -1.25003E-07 -1.20407E-07 -1.15832E-07 -1.11277E-07 -1.06734E-07 -1.02191E-07 -9.76136E-08 -9.28971E-08 -8.75419E-08 -7.66039E-08 5.30665E-09 3.51223E-07 1.43463E-06 +-6.09153E-08 -5.95275E-08 -5.81523E-08 -5.67893E-08 -5.54376E-08 -5.40969E-08 -5.27664E-08 -5.14457E-08 -5.01342E-08 -4.88315E-08 -4.75372E-08 -4.62508E-08 -4.4972E-08 -4.37006E-08 -4.24362E-08 -4.11787E-08 -3.99278E-08 -3.86836E-08 -3.74459E-08 -3.62148E-08 -3.49901E-08 -3.37719E-08 -3.25603E-08 -3.13553E-08 -3.01569E-08 -2.8965E-08 -2.77796E-08 -2.66005E-08 -2.54272E-08 -2.42591E-08 -2.30944E-08 -2.19299E-08 -2.07573E-08 -1.95501E-08 -1.8184E-08 -1.54306E-08 5.33594E-09 1.08071E-07 4.87699E-07 +-9.74891E-09 -9.43155E-09 -9.11711E-09 -8.80545E-09 -8.49642E-09 -8.1899E-09 -7.88576E-09 -7.58386E-09 -7.2841E-09 -6.98636E-09 -6.69056E-09 -6.39659E-09 -6.10439E-09 -5.81388E-09 -5.52501E-09 -5.23772E-09 -4.952E-09 -4.6678E-09 -4.38512E-09 -4.10394E-09 -3.82428E-09 -3.54612E-09 -3.26949E-09 -2.99438E-09 -2.7208E-09 -2.44874E-09 -2.17818E-09 -1.90908E-09 -1.64134E-09 -1.37478E-09 -1.10906E-09 -8.4341E-10 -5.75942E-10 -3.00692E-10 1.04924E-11 6.35299E-10 5.35536E-09 3.19805E-08 1.51199E-07 +2.16063E-09 2.22811E-09 2.29497E-09 2.36124E-09 2.42694E-09 2.49211E-09 2.55677E-09 2.62095E-09 2.68468E-09 2.74797E-09 2.81085E-09 2.87333E-09 2.93544E-09 2.99719E-09 3.05858E-09 3.11964E-09 3.18036E-09 3.24075E-09 3.30082E-09 3.36057E-09 3.41999E-09 3.47909E-09 3.53786E-09 3.59631E-09 3.65443E-09 3.71223E-09 3.7697E-09 3.82686E-09 3.88373E-09 3.94034E-09 3.99678E-09 4.05319E-09 4.10999E-09 4.16843E-09 4.23449E-09 4.36698E-09 5.36811E-09 1.15214E-08 4.39791E-08 +4.72069E-09 4.73449E-09 4.74817E-09 4.76172E-09 4.77516E-09 4.78849E-09 4.80171E-09 4.81484E-09 4.82787E-09 4.84081E-09 4.85367E-09 4.86645E-09 4.87915E-09 4.89177E-09 4.90433E-09 4.91681E-09 4.92923E-09 4.94158E-09 4.95386E-09 4.96607E-09 4.97822E-09 4.99031E-09 5.00232E-09 5.01427E-09 5.02615E-09 5.03797E-09 5.04972E-09 5.0614E-09 5.07303E-09 5.0846E-09 5.09614E-09 5.10767E-09 5.11928E-09 5.13122E-09 5.14472E-09 5.17179E-09 5.37633E-09 6.69565E-09 1.44566E-08 +5.24998E-09 5.25275E-09 5.25549E-09 5.25821E-09 5.26091E-09 5.26358E-09 5.26624E-09 5.26887E-09 5.27149E-09 5.27408E-09 5.27666E-09 5.27923E-09 5.28177E-09 5.28431E-09 5.28683E-09 5.28933E-09 5.29182E-09 5.2943E-09 5.29676E-09 5.29921E-09 5.30165E-09 5.30407E-09 5.30649E-09 5.30888E-09 5.31127E-09 5.31364E-09 5.31599E-09 5.31834E-09 5.32067E-09 5.32299E-09 5.3253E-09 5.32762E-09 5.32995E-09 5.33234E-09 5.33505E-09 5.34048E-09 5.3815E-09 5.6529E-09 7.35147E-09 +5.35855E-09 5.3591E-09 5.35965E-09 5.36019E-09 5.36072E-09 5.36126E-09 5.36178E-09 5.36231E-09 5.36283E-09 5.36334E-09 5.36386E-09 5.36437E-09 5.36487E-09 5.36538E-09 5.36588E-09 5.36637E-09 5.36687E-09 5.36736E-09 5.36785E-09 5.36834E-09 5.36882E-09 5.36931E-09 5.36979E-09 5.37026E-09 5.37074E-09 5.37121E-09 5.37168E-09 5.37214E-09 5.3726E-09 5.37307E-09 5.37353E-09 5.37399E-09 5.37445E-09 5.37493E-09 5.37546E-09 5.37654E-09 5.3847E-09 5.43939E-09 5.79303E-09 +5.38146E-09 5.38157E-09 5.38168E-09 5.38179E-09 5.38189E-09 5.382E-09 5.3821E-09 5.38221E-09 5.38231E-09 5.38241E-09 5.38251E-09 5.38261E-09 5.38272E-09 5.38282E-09 5.38291E-09 5.38301E-09 5.38311E-09 5.38321E-09 5.38331E-09 5.3834E-09 5.3835E-09 5.38359E-09 5.38369E-09 5.38378E-09 5.38388E-09 5.38397E-09 5.38406E-09 5.38415E-09 5.38425E-09 5.38434E-09 5.38443E-09 5.38452E-09 5.38461E-09 5.38471E-09 5.38481E-09 5.38503E-09 5.38664E-09 5.39755E-09 5.46934E-09 +5.38676E-09 5.38678E-09 5.3868E-09 5.38682E-09 5.38684E-09 5.38686E-09 5.38689E-09 5.38691E-09 5.38693E-09 5.38695E-09 5.38697E-09 5.38699E-09 5.38701E-09 5.38703E-09 5.38705E-09 5.38706E-09 5.38708E-09 5.3871E-09 5.38712E-09 5.38714E-09 5.38716E-09 5.38718E-09 5.3872E-09 5.38722E-09 5.38724E-09 5.38725E-09 5.38727E-09 5.38729E-09 5.38731E-09 5.38733E-09 5.38734E-09 5.38736E-09 5.38738E-09 5.3874E-09 5.38742E-09 5.38746E-09 5.38778E-09 5.38995E-09 5.40435E-09 +5.38822E-09 5.38822E-09 5.38822E-09 5.38823E-09 5.38823E-09 5.38824E-09 5.38824E-09 5.38824E-09 5.38825E-09 5.38825E-09 5.38826E-09 5.38826E-09 5.38826E-09 5.38827E-09 5.38827E-09 5.38828E-09 5.38828E-09 5.38828E-09 5.38829E-09 5.38829E-09 5.38829E-09 5.3883E-09 5.3883E-09 5.38831E-09 5.38831E-09 5.38831E-09 5.38832E-09 5.38832E-09 5.38832E-09 5.38833E-09 5.38833E-09 5.38833E-09 5.38834E-09 5.38834E-09 5.38835E-09 5.38835E-09 5.38842E-09 5.38885E-09 5.39172E-09 +5.3887E-09 5.3887E-09 5.3887E-09 5.3887E-09 5.3887E-09 5.3887E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38871E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38872E-09 5.38873E-09 5.38873E-09 5.38873E-09 5.38874E-09 5.38883E-09 5.3894E-09 +5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38887E-09 5.38888E-09 5.38889E-09 5.38901E-09 +*table 1.8 +-0.00115285 -0.00114689 -0.00114087 -0.00113478 -0.0011286 -0.00112233 -0.00111597 -0.00110951 -0.00110293 -0.00109624 -0.00108941 -0.00108243 -0.0010753 -0.00106797 -0.00106044 -0.00105264 -0.00104451 -0.00103589 -0.00102647 -0.00101567 -0.0010025 -0.000985767 -0.000964413 -0.000937674 -0.000905071 -0.000866309 -0.000821198 -0.000769607 -0.000711438 -0.000646614 -0.000575068 -0.000496742 -0.000411581 -0.000319537 -0.000220564 -0.00011462 -1.66576E-06 0.000113929 0.000227759 +-0.00109876 -0.00109305 -0.00108728 -0.00108145 -0.00107554 -0.00106955 -0.00106347 -0.00105731 -0.00105104 -0.00104467 -0.00103818 -0.00103155 -0.00102479 -0.00101786 -0.00101075 -0.00100341 -0.000995803 -0.000987824 -0.000979284 -0.000969787 -0.000958583 -0.000944542 -0.000926412 -0.000903172 -0.00087414 -0.000838899 -0.000797192 -0.000748852 -0.000693759 -0.000631822 -0.000562964 -0.000487121 -0.000404233 -0.000314245 -0.000217106 -0.00011277 -1.19174E-06 0.000113243 0.000226091 +-0.0010437 -0.00103823 -0.00103271 -0.00102713 -0.00102149 -0.00101578 -0.00100999 -0.00100412 -0.000998157 -0.000992101 -0.00098594 -0.000979664 -0.000973261 -0.000966717 -0.00096001 -0.000953116 -0.000945994 -0.00093858 -0.000930755 -0.000922271 -0.00091262 -0.000900881 -0.000885776 -0.000866033 -0.0008407 -0.000809175 -0.000771099 -0.000726249 -0.000674473 -0.000615662 -0.000549728 -0.000476598 -0.000396204 -0.000308487 -0.00021339 -0.00011086 -8.48931E-07 0.000112252 0.000223966 +-0.000987675 -0.000982445 -0.000977173 -0.000971851 -0.000966473 -0.000961035 -0.000955529 -0.000949951 -0.000944294 -0.000938552 -0.000932717 -0.000926781 -0.000920733 -0.000914562 -0.000908251 -0.000901779 -0.000895116 -0.000888218 -0.000881005 -0.000873326 -0.000864864 -0.00085497 -0.000842532 -0.000826152 -0.000804574 -0.000776936 -0.000742714 -0.0007016 -0.000653397 -0.000597968 -0.000535211 -0.00046504 -0.000387382 -0.00030217 -0.000209341 -0.000108837 -6.0223E-07 0.000110972 0.000221384 +-0.00093072 -0.00092573 -0.000920706 -0.00091564 -0.000910527 -0.000905361 -0.000900137 -0.00089485 -0.000889493 -0.000884061 -0.000878548 -0.000872946 -0.000867247 -0.00086144 -0.000855513 -0.000849449 -0.000843223 -0.000836805 -0.000830139 -0.000823132 -0.00081559 -0.000807102 -0.000796848 -0.000783522 -0.000765639 -0.000742001 -0.000711842 -0.000674714 -0.000630349 -0.000578575 -0.000519265 -0.000452321 -0.00037766 -0.000295207 -0.000204893 -0.000106653 -4.25383E-07 0.000109411 0.000218337 +-0.000872898 -0.00086815 -0.000863374 -0.000858564 -0.000853715 -0.000848821 -0.000843877 -0.000838878 -0.000833819 -0.000828695 -0.0008235 -0.000818227 -0.00081287 -0.000807421 -0.000801868 -0.000796197 -0.000790392 -0.000784426 -0.000778264 -0.000771841 -0.000765041 -0.000757617 -0.000749039 -0.000738284 -0.000723853 -0.000704228 -0.000678299 -0.000645401 -0.000605151 -0.000557317 -0.000501743 -0.000438313 -0.000366931 -0.000287512 -0.000199981 -0.000104266 -2.99004E-07 0.000107568 0.000214806 +-0.000814299 -0.000809793 -0.000805266 -0.000800713 -0.000796127 -0.000791505 -0.00078684 -0.000782128 -0.000777365 -0.000772545 -0.000767664 -0.000762717 -0.000757697 -0.000752597 -0.000747409 -0.000742122 -0.000736721 -0.000731188 -0.000725495 -0.0007196 -0.000713429 -0.000706835 -0.000699503 -0.000690749 -0.000679318 -0.000663546 -0.000641932 -0.000613479 -0.000577619 -0.000534025 -0.000482495 -0.000422885 -0.000355085 -0.000279 -0.000194544 -0.000101639 -2.08923E-07 0.000105434 0.000210765 +-0.000755036 -0.000750774 -0.000746497 -0.000742201 -0.000737879 -0.000733528 -0.000729142 -0.000724716 -0.000720247 -0.00071573 -0.00071116 -0.000706534 -0.000701846 -0.00069709 -0.000692259 -0.000687345 -0.000682336 -0.000677217 -0.000671969 -0.000666562 -0.000660947 -0.000655035 -0.000648643 -0.000641363 -0.000632319 -0.000620008 -0.00060264 -0.000578787 -0.000547577 -0.000508529 -0.000461365 -0.000405903 -0.000342011 -0.000269581 -0.000188518 -9.87331E-05 -1.44857E-07 0.000102996 0.000206181 +-0.0006953 -0.000691285 -0.00068726 -0.000683222 -0.000679165 -0.000675084 -0.000670976 -0.000666836 -0.000662659 -0.000658443 -0.000654182 -0.000649874 -0.000645513 -0.000641095 -0.000636614 -0.000632063 -0.000627434 -0.000622715 -0.000617892 -0.000612942 -0.000607832 -0.000602508 -0.00059686 -0.000590659 -0.000583375 -0.000573898 -0.000560466 -0.000541234 -0.000514886 -0.000480681 -0.000438213 -0.000387242 -0.000327605 -0.000259175 -0.000181844 -9.55162E-05 -9.93836E-08 0.000100234 0.000201012 +-0.000635349 -0.000631581 -0.000627811 -0.000624032 -0.00062024 -0.000616431 -0.0006126 -0.000608744 -0.000604859 -0.000600941 -0.000596986 -0.000592992 -0.000588954 -0.000584869 -0.000580731 -0.000576536 -0.000572276 -0.000567943 -0.000563526 -0.000559008 -0.000554368 -0.000549567 -0.000544543 -0.000539163 -0.000533133 -0.000525765 -0.000515668 -0.000500846 -0.000479466 -0.000450365 -0.00041292 -0.000366793 -0.000311771 -0.000247704 -0.000174469 -9.19566E-05 -6.71669E-08 9.71279E-05 0.000195211 +-0.000575395 -0.00057188 -0.000568366 -0.000564848 -0.000561323 -0.000557785 -0.000554232 -0.00055066 -0.000547065 -0.000543443 -0.000539793 -0.000536109 -0.00053239 -0.000528633 -0.000524832 -0.000520984 -0.000517084 -0.000513125 -0.000509099 -0.000504994 -0.000500793 -0.000496473 -0.000491993 -0.000487277 -0.000482164 -0.000476275 -0.000468716 -0.000457775 -0.000441269 -0.000417458 -0.000385347 -0.000344422 -0.000294395 -0.000235078 -0.000166327 -8.80193E-05 -4.43819E-08 9.36552E-05 0.00018873 +-0.000515692 -0.000512433 -0.000509178 -0.000505924 -0.000502667 -0.000499403 -0.000496128 -0.000492839 -0.000489533 -0.000486207 -0.000482858 -0.000479483 -0.00047608 -0.000472645 -0.000469176 -0.000465669 -0.000462121 -0.000458525 -0.000454877 -0.000451167 -0.000447383 -0.00044351 -0.000439522 -0.000435372 -0.000430971 -0.000426121 -0.000420329 -0.000412436 -0.000400384 -0.000381889 -0.000355371 -0.000320003 -0.000275362 -0.000221203 -0.000157351 -8.36677E-05 -2.82953E-08 8.97868E-05 0.00018152 +-0.000456539 -0.00045354 -0.000450548 -0.000447561 -0.000444574 -0.000441585 -0.000438589 -0.000435584 -0.000432567 -0.000429535 -0.000426486 -0.000423417 -0.000420326 -0.000417211 -0.000414068 -0.000410896 -0.000407691 -0.00040445 -0.000401167 -0.000397837 -0.000394452 -0.000391 -0.000387464 -0.000383816 -0.000380006 -0.000375927 -0.00037133 -0.000365572 -0.000357161 -0.0003437 -0.00032291 -0.000293421 -0.000254562 -0.000205986 -0.000147475 -7.88646E-05 -1.69576E-08 8.54907E-05 0.000173523 +-0.000398284 -0.000395551 -0.000392827 -0.00039011 -0.000387396 -0.000384683 -0.000381968 -0.000379247 -0.000376519 -0.000373781 -0.000371031 -0.000368266 -0.000365484 -0.000362684 -0.000359864 -0.000357021 -0.000354153 -0.000351257 -0.00034833 -0.000345367 -0.000342364 -0.000339311 -0.000336198 -0.000333007 -0.000329708 -0.000326245 -0.000322493 -0.000318133 -0.00031232 -0.000303162 -0.000287972 -0.000264595 -0.000231895 -0.000189337 -0.000136628 -7.35714E-05 -8.98143E-09 8.07323E-05 0.000164673 +-0.00034134 -0.000338877 -0.000336426 -0.000333983 -0.000331545 -0.000329111 -0.000326678 -0.000324243 -0.000321804 -0.00031936 -0.000316907 -0.000314444 -0.000311969 -0.000309482 -0.000306979 -0.00030446 -0.000301922 -0.000299364 -0.000296783 -0.000294176 -0.000291539 -0.000288868 -0.000286153 -0.000283386 -0.000280546 -0.000277604 -0.000274496 -0.000271071 -0.000266924 -0.000260936 -0.000250755 -0.000233513 -0.000207289 -0.000171175 -0.000124746 -6.77503E-05 -3.38064E-09 7.54748E-05 0.000154902 +-0.000286192 -0.000284006 -0.000281831 -0.000279666 -0.000277509 -0.000275357 -0.000273207 -0.000271059 -0.00026891 -0.000266758 -0.000264602 -0.000262439 -0.000260269 -0.00025809 -0.000255901 -0.000253701 -0.000251487 -0.00024926 -0.000247016 -0.000244754 -0.000242472 -0.000240165 -0.000237829 -0.000235457 -0.000233039 -0.000230556 -0.000227977 -0.000225228 -0.000222131 -0.000218159 -0.000211837 -0.000200323 -0.00018073 -0.000151447 -0.000111774 -6.13655E-05 5.44304E-10 6.9681E-05 0.000144141 +-0.000233418 -0.000231514 -0.000229621 -0.000227739 -0.000225864 -0.000223996 -0.000222133 -0.000220273 -0.000218413 -0.000216554 -0.000214693 -0.000212829 -0.000210961 -0.000209088 -0.000207209 -0.000205322 -0.000203427 -0.000201522 -0.000199607 -0.00019768 -0.000195739 -0.000193783 -0.000191808 -0.000189809 -0.000187782 -0.000185715 -0.000183591 -0.000181377 -0.000178992 -0.000176219 -0.000172369 -0.000165507 -0.000152338 -0.000130151 -9.76785E-05 -5.43889E-05 3.28899E-09 6.33149E-05 0.000132321 +-0.000183721 -0.000182104 -0.000180497 -0.0001789 -0.000177312 -0.00017573 -0.000174154 -0.000172582 -0.000171013 -0.000169446 -0.000167879 -0.000166311 -0.000164742 -0.00016317 -0.000161596 -0.000160017 -0.000158433 -0.000156844 -0.000155249 -0.000153647 -0.000152037 -0.000150417 -0.000148785 -0.00014714 -0.000145478 -0.000143793 -0.000142075 -0.00014031 -0.00013846 -0.00013644 -0.000133984 -0.000130183 -0.000122527 -0.000107406 -8.24807E-05 -4.68113E-05 5.20392E-09 5.63468E-05 0.000119382 +-0.000137977 -0.000136649 -0.000135331 -0.000134022 -0.00013272 -0.000131426 -0.000130137 -0.000128852 -0.000127572 -0.000126294 -0.000125017 -0.000123742 -0.000122467 -0.000121192 -0.000119916 -0.000118638 -0.000117358 -0.000116076 -0.000114791 -0.000113502 -0.000112209 -0.000110911 -0.000109607 -0.000108296 -0.000106976 -0.000105643 -0.000104294 -0.00010292 -0.000101506 -0.000100017 -9.83589E-05 -9.62062E-05 -9.23453E-05 -8.36013E-05 -6.63181E-05 -3.8668E-05 6.53662E-09 4.87633E-05 0.000105278 +-9.7294E-05 -9.62547E-05 -9.52237E-05 -9.42002E-05 -9.31834E-05 -9.21726E-05 -9.11669E-05 -9.01657E-05 -8.91683E-05 -8.8174E-05 -8.71822E-05 -8.61923E-05 -8.52038E-05 -8.42162E-05 -8.32292E-05 -8.22423E-05 -8.12551E-05 -8.02674E-05 -7.9279E-05 -7.82894E-05 -7.72983E-05 -7.63054E-05 -7.53101E-05 -7.43118E-05 -7.33094E-05 -7.23017E-05 -7.12863E-05 -7.02596E-05 -6.92151E-05 -6.81392E-05 -6.69988E-05 -6.56919E-05 -6.38167E-05 -5.97264E-05 -4.95881E-05 -3.00953E-05 7.46159E-09 4.05909E-05 9.00091E-05 +-6.30383E-05 -6.22781E-05 -6.15243E-05 -6.07763E-05 -6.00335E-05 -5.92955E-05 -5.85618E-05 -5.7832E-05 -5.71054E-05 -5.63818E-05 -5.56607E-05 -5.49418E-05 -5.42247E-05 -5.35091E-05 -5.27947E-05 -5.20813E-05 -5.13687E-05 -5.06567E-05 -4.99451E-05 -4.92339E-05 -4.85227E-05 -4.78115E-05 -4.71001E-05 -4.6388E-05 -4.5675E-05 -4.49603E-05 -4.42431E-05 -4.35217E-05 -4.27936E-05 -4.20537E-05 -4.12907E-05 -4.04739E-05 -3.94944E-05 -3.78343E-05 -3.32258E-05 -2.14408E-05 8.10164E-09 3.19466E-05 7.36676E-05 +-3.66137E-05 -3.61081E-05 -3.56067E-05 -3.51094E-05 -3.46158E-05 -3.41255E-05 -3.36384E-05 -3.31541E-05 -3.26724E-05 -3.2193E-05 -3.17156E-05 -3.12402E-05 -3.07663E-05 -3.0294E-05 -2.9823E-05 -2.93532E-05 -2.88845E-05 -2.84168E-05 -2.795E-05 -2.74841E-05 -2.70189E-05 -2.65545E-05 -2.60907E-05 -2.56274E-05 -2.51645E-05 -2.47017E-05 -2.42386E-05 -2.37748E-05 -2.33093E-05 -2.28402E-05 -2.23639E-05 -2.18714E-05 -2.13347E-05 -2.06314E-05 -1.90207E-05 -1.34116E-05 8.54305E-09 2.31407E-05 5.65572E-05 +-1.87294E-05 -1.84324E-05 -1.8138E-05 -1.7846E-05 -1.75562E-05 -1.72686E-05 -1.69829E-05 -1.6699E-05 -1.64167E-05 -1.6136E-05 -1.58567E-05 -1.55786E-05 -1.53018E-05 -1.50261E-05 -1.47514E-05 -1.44777E-05 -1.42049E-05 -1.3933E-05 -1.36619E-05 -1.33916E-05 -1.31222E-05 -1.28535E-05 -1.25855E-05 -1.23183E-05 -1.20517E-05 -1.17858E-05 -1.15204E-05 -1.12552E-05 -1.09901E-05 -1.07243E-05 -1.04569E-05 -1.01851E-05 -9.90183E-06 -9.57921E-06 -9.04929E-06 -7.04491E-06 8.84635E-09 1.48279E-05 3.94304E-05 +-8.45287E-06 -8.30189E-06 -8.15223E-06 -8.00382E-06 -7.85658E-06 -7.71044E-06 -7.56532E-06 -7.42116E-06 -7.27791E-06 -7.13549E-06 -6.99386E-06 -6.85297E-06 -6.71276E-06 -6.57321E-06 -6.43428E-06 -6.29594E-06 -6.15817E-06 -6.02095E-06 -5.88426E-06 -5.74812E-06 -5.61249E-06 -5.47739E-06 -5.34282E-06 -5.20875E-06 -5.07519E-06 -4.94212E-06 -4.80951E-06 -4.6773E-06 -4.54539E-06 -4.41362E-06 -4.28163E-06 -4.1487E-06 -4.01283E-06 -3.86721E-06 -3.67456E-06 -3.07382E-06 9.05398E-09 8.0326E-06 2.38471E-05 +-3.40853E-06 -3.34236E-06 -3.27678E-06 -3.21174E-06 -3.14723E-06 -3.08321E-06 -3.01965E-06 -2.95653E-06 -2.89382E-06 -2.8315E-06 -2.76954E-06 -2.70792E-06 -2.64663E-06 -2.58565E-06 -2.52497E-06 -2.46458E-06 -2.40447E-06 -2.34462E-06 -2.28505E-06 -2.22574E-06 -2.1667E-06 -2.10793E-06 -2.04942E-06 -1.99117E-06 -1.93319E-06 -1.87547E-06 -1.81801E-06 -1.76078E-06 -1.70376E-06 -1.64689E-06 -1.59008E-06 -1.5331E-06 -1.47537E-06 -1.41502E-06 -1.34257E-06 -1.16214E-06 9.1956E-09 3.6136E-06 1.20388E-05 +-1.2205E-06 -1.19558E-06 -1.17088E-06 -1.14639E-06 -1.1221E-06 -1.098E-06 -1.07408E-06 -1.05032E-06 -1.02673E-06 -1.00328E-06 -9.79978E-07 -9.56809E-07 -9.3377E-07 -9.10854E-07 -8.88056E-07 -8.65374E-07 -8.42803E-07 -8.20342E-07 -7.97989E-07 -7.75744E-07 -7.53607E-07 -7.31579E-07 -7.09658E-07 -6.87847E-07 -6.66144E-07 -6.44549E-07 -6.23061E-07 -6.01674E-07 -5.8038E-07 -5.59163E-07 -5.37992E-07 -5.16798E-07 -4.95409E-07 -4.73273E-07 -4.47718E-07 -3.91957E-07 9.29184E-09 1.40481E-06 5.12448E-06 +-3.7521E-07 -3.67245E-07 -3.59352E-07 -3.51526E-07 -3.43766E-07 -3.36066E-07 -3.28425E-07 -3.20838E-07 -3.13304E-07 -3.05818E-07 -2.9838E-07 -2.90985E-07 -2.83633E-07 -2.76322E-07 -2.6905E-07 -2.61817E-07 -2.5462E-07 -2.47461E-07 -2.40337E-07 -2.33249E-07 -2.26198E-07 -2.19182E-07 -2.12203E-07 -2.0526E-07 -1.98354E-07 -1.91485E-07 -1.84651E-07 -1.77851E-07 -1.71084E-07 -1.64345E-07 -1.57623E-07 -1.50901E-07 -1.44127E-07 -1.37144E-07 -1.29201E-07 -1.12836E-07 9.35697E-09 4.95347E-07 1.94069E-06 +-9.37166E-08 -9.15602E-08 -8.94234E-08 -8.73054E-08 -8.52051E-08 -8.31216E-08 -8.1054E-08 -7.90015E-08 -7.69633E-08 -7.49387E-08 -7.29269E-08 -7.09275E-08 -6.89398E-08 -6.69634E-08 -6.49979E-08 -6.3043E-08 -6.10985E-08 -5.91641E-08 -5.72399E-08 -5.53256E-08 -5.34214E-08 -5.15273E-08 -4.96433E-08 -4.77694E-08 -4.59058E-08 -4.40523E-08 -4.22087E-08 -4.03749E-08 -3.85502E-08 -3.67333E-08 -3.49218E-08 -3.31107E-08 -3.12869E-08 -2.94095E-08 -2.72846E-08 -2.29951E-08 9.40083E-09 1.60505E-07 6.80769E-07 +-1.48094E-08 -1.43004E-08 -1.37961E-08 -1.32962E-08 -1.28006E-08 -1.23089E-08 -1.18211E-08 -1.13369E-08 -1.0856E-08 -1.03784E-08 -9.90392E-09 -9.43236E-09 -8.96361E-09 -8.49757E-09 -8.03414E-09 -7.57326E-09 -7.11486E-09 -6.65891E-09 -6.20538E-09 -5.75426E-09 -5.30555E-09 -4.85926E-09 -4.4154E-09 -3.97398E-09 -3.535E-09 -3.09846E-09 -2.66432E-09 -2.23252E-09 -1.8029E-09 -1.37518E-09 -9.48812E-10 -5.22578E-10 -9.34668E-11 3.4804E-10 8.46959E-10 1.84805E-09 9.43018E-09 5.04057E-08 2.21079E-07 +4.23318E-09 4.34292E-09 4.45164E-09 4.5594E-09 4.66625E-09 4.77222E-09 4.87738E-09 4.98175E-09 5.08538E-09 5.18831E-09 5.29057E-09 5.39218E-09 5.49319E-09 5.59361E-09 5.69346E-09 5.79275E-09 5.89151E-09 5.98973E-09 6.08742E-09 6.1846E-09 6.28124E-09 6.37736E-09 6.47295E-09 6.56801E-09 6.66254E-09 6.75654E-09 6.85001E-09 6.94298E-09 7.03547E-09 7.12755E-09 7.21933E-09 7.31107E-09 7.40342E-09 7.49843E-09 7.60574E-09 7.8207E-09 9.44967E-09 1.92198E-08 6.80497E-08 +8.39414E-09 8.41663E-09 8.43892E-09 8.461E-09 8.4829E-09 8.50462E-09 8.52617E-09 8.54756E-09 8.5688E-09 8.58989E-09 8.61084E-09 8.63167E-09 8.65236E-09 8.67294E-09 8.6934E-09 8.71374E-09 8.73397E-09 8.7541E-09 8.77411E-09 8.79402E-09 8.81382E-09 8.83351E-09 8.85309E-09 8.87256E-09 8.89193E-09 8.91118E-09 8.93033E-09 8.94937E-09 8.96831E-09 8.98717E-09 9.00596E-09 9.02475E-09 9.04367E-09 9.06312E-09 9.08509E-09 9.12908E-09 9.46246E-09 1.15878E-08 2.37035E-08 +9.25732E-09 9.26182E-09 9.26627E-09 9.27068E-09 9.27506E-09 9.2794E-09 9.2837E-09 9.28797E-09 9.29222E-09 9.29643E-09 9.30062E-09 9.30478E-09 9.30891E-09 9.31302E-09 9.31711E-09 9.32118E-09 9.32522E-09 9.32924E-09 9.33324E-09 9.33721E-09 9.34117E-09 9.3451E-09 9.34901E-09 9.3529E-09 9.35677E-09 9.36062E-09 9.36444E-09 9.36824E-09 9.37203E-09 9.37579E-09 9.37955E-09 9.3833E-09 9.38708E-09 9.39096E-09 9.39535E-09 9.40413E-09 9.4707E-09 9.90897E-09 1.26106E-08 +9.43376E-09 9.43465E-09 9.43553E-09 9.4364E-09 9.43727E-09 9.43812E-09 9.43897E-09 9.43982E-09 9.44065E-09 9.44148E-09 9.44231E-09 9.44313E-09 9.44395E-09 9.44476E-09 9.44557E-09 9.44637E-09 9.44717E-09 9.44796E-09 9.44875E-09 9.44953E-09 9.45031E-09 9.45109E-09 9.45186E-09 9.45263E-09 9.45339E-09 9.45415E-09 9.45491E-09 9.45566E-09 9.4564E-09 9.45715E-09 9.45789E-09 9.45863E-09 9.45938E-09 9.46014E-09 9.46101E-09 9.46274E-09 9.47588E-09 9.56381E-09 1.01289E-08 +9.47081E-09 9.47099E-09 9.47116E-09 9.47133E-09 9.4715E-09 9.47167E-09 9.47183E-09 9.472E-09 9.47216E-09 9.47233E-09 9.47249E-09 9.47265E-09 9.47281E-09 9.47297E-09 9.47313E-09 9.47329E-09 9.47344E-09 9.4736E-09 9.47375E-09 9.47391E-09 9.47406E-09 9.47421E-09 9.47436E-09 9.47452E-09 9.47467E-09 9.47481E-09 9.47496E-09 9.47511E-09 9.47526E-09 9.4754E-09 9.47555E-09 9.47569E-09 9.47584E-09 9.47599E-09 9.47616E-09 9.4765E-09 9.47908E-09 9.4965E-09 9.61085E-09 +9.4794E-09 9.47944E-09 9.47947E-09 9.4795E-09 9.47954E-09 9.47957E-09 9.4796E-09 9.47964E-09 9.47967E-09 9.4797E-09 9.47973E-09 9.47976E-09 9.47979E-09 9.47983E-09 9.47986E-09 9.47989E-09 9.47992E-09 9.47995E-09 9.47998E-09 9.48001E-09 9.48004E-09 9.48007E-09 9.4801E-09 9.48013E-09 9.48016E-09 9.48019E-09 9.48022E-09 9.48024E-09 9.48027E-09 9.4803E-09 9.48033E-09 9.48036E-09 9.48039E-09 9.48042E-09 9.48045E-09 9.48052E-09 9.48102E-09 9.48445E-09 9.50722E-09 +9.48185E-09 9.48185E-09 9.48186E-09 9.48187E-09 9.48187E-09 9.48188E-09 9.48189E-09 9.48189E-09 9.4819E-09 9.4819E-09 9.48191E-09 9.48192E-09 9.48192E-09 9.48193E-09 9.48193E-09 9.48194E-09 9.48195E-09 9.48195E-09 9.48196E-09 9.48196E-09 9.48197E-09 9.48198E-09 9.48198E-09 9.48199E-09 9.48199E-09 9.482E-09 9.482E-09 9.48201E-09 9.48202E-09 9.48202E-09 9.48203E-09 9.48203E-09 9.48204E-09 9.48204E-09 9.48205E-09 9.48206E-09 9.48216E-09 9.48284E-09 9.48734E-09 +9.48274E-09 9.48274E-09 9.48274E-09 9.48274E-09 9.48274E-09 9.48274E-09 9.48274E-09 9.48274E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48275E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48276E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48277E-09 9.48278E-09 9.48278E-09 9.4828E-09 9.48293E-09 9.48382E-09 +9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48311E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48312E-09 9.48315E-09 9.48332E-09 +9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.48326E-09 9.4833E-09 diff --git a/paranoia_parallel/examples/xspice/table/clc409.sub b/paranoia_parallel/examples/xspice/table/clc409.sub new file mode 100644 index 000000000..0e603e7b3 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/clc409.sub @@ -0,0 +1,166 @@ +* +* This is a Very Wide band, Low Distortion Monolithic +* Current Feedback Op Amp. +* +* Version 1, Rev. A, Date 04-09-92, By RRS +* +* Connections: Non-Inverting Input +* | Inverting Input +* | | Output +* | | | +Vcc +* | | | | -Vcc +* | | | | | +.SUBCKT CLC409 3 2 6 7 4 +* +* DC BIAS MIRROR +* +R1 7 4 28K +R2 7 9 271 +R3 10 4 335 +* +G1 7 11 POLY(2) 7 9 7 4 0 3.15M 21.5U +C3 11 0 128F +* +G2 14 4 POLY(1) 10 4 0 2.95M +C4 14 0 104F +* +* INPUT VOLTAGE BUFFER +* +E1 3 17 POLY(1) 35 0 1.0M 1.673 +C6 17 0 1.00P +* +Q1 10 17 12 QINP +D3 11 12 DY +Q2 9 17 13 QINN +D4 13 14 DY +* +G3 2 0 POLY(1) 36 0 0 9.282M +C10 2 0 2.9P +* +D5 22 2 DY +Q3 21 11 22 QINN +D6 2 23 DY +Q4 24 14 23 QINP +* +* CURRENT MIRROR GAIN BLOCKS +* +R10 7 20 640 +V1 20 21 1.9 +C8 21 28 294F +G4 7 28 POLY(1) 7 20 0 4.3M +R15 7 28 102K +C13 28 0 641F +D1 28 26 DX +V3 7 26 1.65 +G6 7 30 POLY(1) 7 20 0 2.74M +C15 30 0 676F +* +R13 25 4 640 +V2 24 25 1.85 +C12 24 29 294F +G5 29 4 POLY(1) 25 4 0 4.5M +R16 29 4 761K +C14 29 0 312F +D2 27 29 DX +V4 27 4 1.55 +G7 31 4 POLY(1) 25 4 0 6.74M +C16 31 0 330F +* +* OUTPUT STAGE AND COMPENSATION CAPACITORS +* +R14 28 29 45.0 +Q5 4 29 30 QOUTP1 +Q6 7 28 31 QOUTN1 +* +C9 21 33 .935P +C11 24 33 .935P +C17 33 0 4.00P +R19 33 6 10 +* +Q7 7 30 33 QOUTN2 +Q8 4 31 33 QOUTP2 +* +* NOISE BLOCKS +* +R20 35 0 122 +R21 35 0 122 +* +R22 36 0 122 +R23 36 0 122 +* +* MODELS +* +.MODEL DX D TT=200N +.MODEL DY D IS=0.166F +* +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* +.MODEL QOUTN1 NPN ++ IS =3.954E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=4.590E-02 ISE=5.512E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=3.087E-19 ++ NC =1.700E+00 RB =3.645E+01 IRB=0.000E+00 RBM=8.077E+00 ++ RE =3.010E-01 RC =2.702E+01 CJE=2.962E-13 ++ MJE=4.950E-01 TF =1.904E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=1.110E-01 PTF=0.000E+00 CJC=2.846E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=1.562E-01 TR =5.832E-10 CJS=5.015E-13 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QOUTN2 NPN ++ IS =9.386E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=1.089E-01 ISE=1.308E-16 NE =1.197E+00 BR =3.956E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=1.378E-18 ++ NC =1.700E+00 RB =65.4 IRB=0.000E+00 RBM=1.683E+00 ++ RC =1.857E+01 CJE=7.030E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.875E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=2.635E-01 PTF=0.000E+00 CJC=6.172E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=860m TR =1.069E-09 CJS=1.028E-12 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QINP PNP ++ IS =0.166f BF =7.165E+01 NF =1.000E+00 VAF=2.000E+01 ++ IKF=1.882E-02 ISE=6.380E-16 NE =1.366E+00 BR =1.833E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=1.321E-01 ISC=3.666E-18 ++ NC =1.634E+00 RB =78.8 IRB=0.000E+00 RBM=57.6 ++ RC =3.739E+01 CJE=1.588E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.156E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=5.084E-02 PTF=0.000E+00 CJC=2.725E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=741m TR =7.500E-11 CJS=515f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =8.803E-01 +* +.MODEL QOUTP1 PNP ++ IS =2.399E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=3.509E-02 ISE=1.190E-15 NE =1.366E+00 BR =1.900E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=2.464E-01 ISC=6.745E-18 ++ NC =1.634E+00 RB =1.542E+01 IRB=0.000E+00 RBM=4.059E+00 ++ RC =4.174E+01 CJE=2.962E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.107E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=9.481E-02 PTF=0.000E+00 CJC=4.508E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=1.562E-01 TR =9.500E-11 CJS=1.045E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.MODEL QOUTP2 PNP ++ IS =5.693E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=8.328E-02 ISE=5.742E-15 NE =1.366E+00 BR =1.923E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=5.848E-01 ISC=1.586E-17 ++ NC =1.634E+00 RB =56.5 IRB=0.000E+00 RBM=51.7 ++ RC =1.767E+00 CJE=7.030E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.073E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=2.250E-01 PTF=0.000E+00 CJC=9.776E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=923m TR =1.450E-10 CJS=1.637E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.ENDS CLC409 diff --git a/paranoia_parallel/examples/xspice/table/clc409mod.sub b/paranoia_parallel/examples/xspice/table/clc409mod.sub new file mode 100644 index 000000000..fa1702da2 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/clc409mod.sub @@ -0,0 +1,189 @@ +* please run the table generator table-generator-q-2d.sp in ngspice to +* create the table data file qinn-clc409-2d-1.table as is required here +* +* This is a Very Wide band, Low Distortion Monolithic +* Current Feedback Op Amp. +* +* Version 1, Rev. A, Date 04-09-92, By RRS +* +* Connections: Non-Inverting Input +* | Inverting Input +* | | Output +* | | | +Vcc +* | | | | -Vcc +* | | | | | +.SUBCKT CLC409 3 2 6 7 4 +* +* DC BIAS MIRROR +* +R1 7 4 28K +R2 7 9 271 +R3 10 4 335 +* +G1 7 11 POLY(2) 7 9 7 4 0 3.15M 21.5U +C3 11 0 128F +* +G2 14 4 POLY(1) 10 4 0 2.95M +C4 14 0 104F +* +* INPUT VOLTAGE BUFFER +* +E1 3 17 POLY(1) 35 0 1.0M 1.673 +C6 17 0 1.00P +* +Q1 10 17 12 QINP +D3 11 12 DY +*Q2 9 17 13 QINN +xq2 9 17 13 tbqnpn +D4 13 14 DY +* +G3 2 0 POLY(1) 36 0 0 9.282M +C10 2 0 2.9P +* +D5 22 2 DY +*Q3 21 11 22 QINN +xq3 21 11 22 tbqnpn +D6 2 23 DY +Q4 24 14 23 QINP +* +* CURRENT MIRROR GAIN BLOCKS +* +R10 7 20 640 +V1 20 21 1.9 +C8 21 28 294F +G4 7 28 POLY(1) 7 20 0 4.3M +R15 7 28 102K +C13 28 0 641F +D1 28 26 DX +V3 7 26 1.65 +G6 7 30 POLY(1) 7 20 0 2.74M +C15 30 0 676F +* +R13 25 4 640 +V2 24 25 1.85 +C12 24 29 294F +G5 29 4 POLY(1) 25 4 0 4.5M +R16 29 4 761K +C14 29 0 312F +D2 27 29 DX +V4 27 4 1.55 +G7 31 4 POLY(1) 25 4 0 6.74M +C16 31 0 330F +* +* OUTPUT STAGE AND COMPENSATION CAPACITORS +* +R14 28 29 45.0 +Q5 4 29 30 QOUTP1 +Q6 7 28 31 QOUTN1 +* +C9 21 33 .935P +C11 24 33 .935P +C17 33 0 4.00P +R19 33 6 10 +* +Q7 7 30 33 QOUTN2 +Q8 4 31 33 QOUTP2 +* +* NOISE BLOCKS +* +R20 35 0 122 +R21 35 0 122 +* +R22 36 0 122 +R23 36 0 122 +* +* MODELS +* +.MODEL DX D TT=200N +.MODEL DY D IS=0.166F +* +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* +.MODEL QOUTN1 NPN ++ IS =3.954E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=4.590E-02 ISE=5.512E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=3.087E-19 ++ NC =1.700E+00 RB =3.645E+01 IRB=0.000E+00 RBM=8.077E+00 ++ RE =3.010E-01 RC =2.702E+01 CJE=2.962E-13 ++ MJE=4.950E-01 TF =1.904E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=1.110E-01 PTF=0.000E+00 CJC=2.846E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=1.562E-01 TR =5.832E-10 CJS=5.015E-13 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QOUTN2 NPN ++ IS =9.386E-16 BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=1.089E-01 ISE=1.308E-16 NE =1.197E+00 BR =3.956E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=7.392E-02 ISC=1.378E-18 ++ NC =1.700E+00 RB =65.4 IRB=0.000E+00 RBM=1.683E+00 ++ RC =1.857E+01 CJE=7.030E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.875E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=2.635E-01 PTF=0.000E+00 CJC=6.172E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=860m TR =1.069E-09 CJS=1.028E-12 ++ VJS=5.723E-01 MJS=4.105E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =9.765E-01 +* +.MODEL QINP PNP ++ IS =0.166f BF =7.165E+01 NF =1.000E+00 VAF=2.000E+01 ++ IKF=1.882E-02 ISE=6.380E-16 NE =1.366E+00 BR =1.833E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=1.321E-01 ISC=3.666E-18 ++ NC =1.634E+00 RB =78.8 IRB=0.000E+00 RBM=57.6 ++ RC =3.739E+01 CJE=1.588E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.156E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=5.084E-02 PTF=0.000E+00 CJC=2.725E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=741m TR =7.500E-11 CJS=515f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =8.803E-01 +* +.MODEL QOUTP1 PNP ++ IS =2.399E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=3.509E-02 ISE=1.190E-15 NE =1.366E+00 BR =1.900E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=2.464E-01 ISC=6.745E-18 ++ NC =1.634E+00 RB =1.542E+01 IRB=0.000E+00 RBM=4.059E+00 ++ RC =4.174E+01 CJE=2.962E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.107E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=9.481E-02 PTF=0.000E+00 CJC=4.508E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=1.562E-01 TR =9.500E-11 CJS=1.045E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.MODEL QOUTP2 PNP ++ IS =5.693E-16 BF =7.165E+01 NF =1.000E+00 VAF=3.439E+01 ++ IKF=8.328E-02 ISE=5.742E-15 NE =1.366E+00 BR =1.923E+01 ++ NR =1.000E+00 VAR=1.805E+00 IKR=5.848E-01 ISC=1.586E-17 ++ NC =1.634E+00 RB =56.5 IRB=0.000E+00 RBM=51.7 ++ RC =1.767E+00 CJE=7.030E-13 VJE=7.975E-01 ++ MJE=5.000E-01 TF =3.073E-11 XTF=5.386E+00 VTF=2.713E+00 ++ ITF=2.250E-01 PTF=0.000E+00 CJC=9.776E-13 VJC=7.130E-01 ++ MJC=4.200E-01 XCJC=923m TR =1.450E-10 CJS=1.637E-12 ++ VJS=6.691E-01 MJS=3.950E-01 KF =2.000E-12 AF =1.000E+00 ++ FC =8.803E-01 +* +.ENDS CLC409 + + +.subckt tbqnpn c b e +*** table model of npn bipolar transistor *** +* simple behavioral temperature model +.param fact = 0.05 +.param tgain = 1. + (TEMPER / 27. - 1.) * {fact} +abip1 %vd(c e) %id(bint e) %id(c e) biptable1 +.model biptable1 table2d (offset=0.0 gain={tgain} order=2 file="qinn-clc409-2d-1.table") +* CJE=1.632E-13 +Cje b e 1.632E-13 +* CJC=1.720E-13 +Cjc b c 1.720E-13 +* input diode (parameters extracted manually, see table-model-bip-2d-1.sp) +Dbe b bint DMOD +.model DMOD D (is=1e-17 n=1.1) +* bip qinn from national op-amp CLC409 +.ends + diff --git a/paranoia_parallel/examples/xspice/table/combi_script.cir b/paranoia_parallel/examples/xspice/table/combi_script.cir new file mode 100644 index 000000000..81fd846bb --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/combi_script.cir @@ -0,0 +1,43 @@ +*ng_script +* A somewhat complex example: +* This script loads two circuits, then selects circuit 1, +* does three dc simulations, selects circuit 2, does +* two dc simulations on the bipolar table device. +* Always do a 'reset' in between to avoid memory leaks. + +* you have to create the bipolar device table first by running +* the table generator table-generator-q-2d.sp + +.control + +source $inputdir/table-model-bip-2d-1-oc.sp ; circuit 2 +source $inputdir/table-model-mos-2d-2-oc.sp ; circuit 1 + +*** analysis type *** +setcirc 1 +dc V1 -0.1 1.7 0.06 V2 0.3 1.7 0.3 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc v2 0 1.7 0.04 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc V1 -0.1 1.7 0.06 +plot i(Vs2) + +setcirc 2 +* bipolar model qinn +dc vce 0 5 0.05 ib 0.2u 1.8u 0.4u +*plot i(vee) +*plot v(1) ylimit 0 1 +reset +* bipolar from table +dc vce2 0 5 0.05 ib2 0.2u 1.8u 0.4u + +plot dc4.i(vee) i(vee2) title 'table q3, q4 output current (i(vee2)) compared to bjt model (dc1.i(vee))' +plot dc4.v(1) v(bb) ylimit 0.6 0.8 title 'table q3, q4 input diode (v(bb)) compared to bjt model (dc1.v(1))' + +quit + +.endc diff --git a/paranoia_parallel/examples/xspice/table/modelcards/modelcard.nmos b/paranoia_parallel/examples/xspice/table/modelcards/modelcard.nmos new file mode 100644 index 000000000..9723bb968 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/modelcards/modelcard.nmos @@ -0,0 +1,112 @@ + ******** BSIM4.6.1 Model Card for NMOS ******** + +** The BSIM4 model card below was not extracted/obtained from/based on +** any real technologies. It should not be used for any other purposes +** except for benchmarking the implementation of BSIM4.6.0 against BSIM +** Team's standard results using SPICE3f5. +**** Mohan Dunga, Wenwei Yang, Ali Niknejad, and Chenming Hu 05/18/2007. + + +** Model: BSIM4.6.1 +** Berkeley SPICE3f5 Compatible +** Lmin=0.02 Lmax=10 Wmin=0.6 Wmax=20 +** By Mohan Dunga, Wenwei Yang 05/18/2007 + +.MODEL N1 NMOS LEVEL = 14 + ++VERSION = 4.7 BINUNIT = 1 PARAMCHK= 0 MOBMOD = 0 ++CAPMOD = 1 IGCMOD = 1 IGBMOD = 1 GEOMOD = 1 ++DIOMOD = 1 RDSMOD = 0 RBODYMOD= 0 RGATEMOD= 1 ++PERMOD = 1 ACNQSMOD= 0 TRNQSMOD= 0 TEMPMOD = 0 ++MTRLMOD = 1 CVCHARGEMOD = 0 + ++EOT = 1.8E-009 VDDEOT = 1.5 ADOS = 1.1 BDOS = 1.0 ++TNOM = 27 TOXE = 1.8E-009 TOXP = 10E-010 TOXM = 1.8E-009 ++DTOX = 8E-10 EPSROX = 3.9 WINT = 5E-009 LINT = 1E-009 ++LL = 0 WL = 0 LLN = 1 WLN = 1 ++LW = 0 WW = 0 LWN = 1 WWN = 1 ++LWL = 0 WWL = 0 XPART = 1 TOXREF = 1.4E-009 + ++PHIG = 4.05 EPSRGATE = 11.7 + ++SAREF = 5E-6 SBREF = 5E-6 WLOD = 2E-6 KU0 = -4E-6 ++KVSAT = 0.2 KVTH0 = -2E-8 TKU0 = 0.0 LLODKU0 = 1.1 ++WLODKU0 = 1.1 LLODVTH = 1.0 WLODVTH = 1.0 LKU0 = 1E-6 ++WKU0 = 1E-6 PKU0 = 0.0 LKVTH0 = 1.1E-6 WKVTH0 = 1.1E-6 ++PKVTH0 = 0.0 STK2 = 0.0 LODK2 = 1.0 STETA0 = 0.0 ++LODETA0 = 1.0 ++LAMBDA = 4E-10 ++VSAT = 1.1E+005 ++VTL = 2.0E5 XN = 6.0 LC = 5E-9 ++RNOIA = 0.577 RNOIB = 0.37 ++LINTNOI = 1E-009 ++TVOFF = 0.0 TVFBSDOFF = 0.0 ++VTH0 = 0.25 ++K1 = 0.35 K2 = 0.05 K3 = 0 ++K3B = 0 W0 = 2.5E-006 DVT0 = 1.8 DVT1 = 0.52 ++DVT2 = -0.032 DVT0W = 0 DVT1W = 0 DVT2W = 0 ++DSUB = 2 MINV = 0.05 VOFFL = 0 DVTP0 = 1E-007 ++MINVCV = 2 VOFFCVL = 0 ++DVTP1 = 0.05 LPE0 = 5.75E-008 LPEB = 2.3E-010 XJ = 2E-008 ++NGATE = 5E+020 NDEP = 2.8E+018 NSD = 1E+020 PHIN = 0 ++CDSC = 0.0002 CDSCB = 0 CDSCD = 0 CIT = 0 ++VOFF = -0.15 NFACTOR = 1.2 ETA0 = 0.05 ETAB = 0 ++UC = -3E-011 ++VFB = -0.55 U0 = 0.032 UA = 5.0E-011 UB = 3.5E-018 ++A0 = 2 AGS = 1E-020 ++A1 = 0 A2 = 1 B0 = -1E-020 B1 = 0 ++KETA = 0.04 DWG = 0 DWB = 0 PCLM = 0.08 ++PDIBLC1 = 0.028 PDIBLC2 = 0.022 PDIBLCB = -0.005 DROUT = 0.45 ++PVAG = 1E-020 DELTA = 0.01 PSCBE1 = 8.14E+008 PSCBE2 = 5E-008 ++FPROUT = 0.2 PDITS = 0.2 PDITSD = 0.23 PDITSL = 2.3E+006 ++RSH = 0 RDSW = 50 RSW = 50 RDW = 50 ++RDSWMIN = 0 RDWMIN = 0 RSWMIN = 0 PRWG = 0 ++PRWB = 6.8E-011 WR = 1 ALPHA0 = 0.074 ALPHA1 = 0.005 ++BETA0 = 30 AGIDL = 0.0001 BGIDL = 2.1E+009 CGIDL = 0.0001 ++EGIDL = 0.8 AGISL = 0.0002 BGISL = 2.1E+009 CGISL = 0.0002 ++EGISL = 0.8 + ++AIGBACC = 0.012 BIGBACC = 0.0028 CIGBACC = 0.002 ++NIGBACC = 1 AIGBINV = 0.014 BIGBINV = 0.004 CIGBINV = 0.004 ++EIGBINV = 1.1 NIGBINV = 3 AIGC = 0.012 BIGC = 0.0028 ++CIGC = 0.002 AIGS = 0.012 BIGS = 0.0028 CIGS = 0.002 ++NIGC = 1 POXEDGE = 1 PIGCD = 1 NTOX = 1 ++AIGD = 0.01 BIGD = 0.003 CIGD = 0.0015 + ++XRCRG1 = 12 XRCRG2 = 5 ++CGSO = 6.238E-010 CGDO = 6.238E-010 CGBO = 2.56E-011 CGDL = 2.495E-10 ++CGSL = 2.495E-10 CKAPPAS = 0.03 CKAPPAD = 0.03 ACDE = 1 ++MOIN = 15 NOFF = 0.9 VOFFCV = -0.02 + ++KT1 = -0.37 KT1L = 0.0 KT2 = -0.042 UTE = -1.5 ++UA1 = 1E-009 UB1 = -3.5E-019 UC1 = 0 PRT = 0 ++AT = 53000 + ++FNOIMOD = 1 TNOIMOD = 0 + ++JSS = 0.0001 JSWS = 1E-011 JSWGS = 1E-010 NJS = 1 ++IJTHSFWD= 0.01 IJTHSREV= 0.001 BVS = 10 XJBVS = 1 ++JSD = 0.0001 JSWD = 1E-011 JSWGD = 1E-010 NJD = 1 ++IJTHDFWD= 0.01 IJTHDREV= 0.001 BVD = 10 XJBVD = 1 ++PBS = 1 CJS = 0.0005 MJS = 0.5 PBSWS = 1 ++CJSWS = 5E-010 MJSWS = 0.33 PBSWGS = 1 CJSWGS = 3E-010 ++MJSWGS = 0.33 PBD = 1 CJD = 0.0005 MJD = 0.5 ++PBSWD = 1 CJSWD = 5E-010 MJSWD = 0.33 PBSWGD = 1 ++CJSWGD = 5E-010 MJSWGD = 0.33 TPB = 0.005 TCJ = 0.001 ++TPBSW = 0.005 TCJSW = 0.001 TPBSWG = 0.005 TCJSWG = 0.001 ++XTIS = 3 XTID = 3 + ++DMCG = 0E-006 DMCI = 0E-006 DMDG = 0E-006 DMCGT = 0E-007 ++DWJ = 0.0E-008 XGW = 0E-007 XGL = 0E-008 + ++RSHG = 0.4 GBMIN = 1E-010 RBPB = 5 RBPD = 15 ++RBPS = 15 RBDB = 15 RBSB = 15 NGCON = 1 + ++JTSS = 1E-4 JTSD = 1E-4 JTSSWS = 1E-10 JTSSWD = 1E-10 ++JTSSWGS = 1E-7 JTSSWGD = 1E-7 ++NJTS = 20.0 NJTSSW = 15 NJTSSWG = 6 VTSS = 10 ++VTSD = 10 VTSSWS = 10 VTSSWD = 10 ++NJTSD = 15.0 NJTSSWD = 20 NJTSSWGD = 6 ++TNJTS = 0.1 TNJTSD = 0.05 ++VTSSWGS=2 VTSSWGD=2 ++XTSS = 0.02 XTSD = 0.02 XTSSWS = 0.02 XTSSWD = 0.02 XTSSWGS = 0.02 XTSSWGD = 0.02 diff --git a/paranoia_parallel/examples/xspice/table/modelcards/modelcard.pmos b/paranoia_parallel/examples/xspice/table/modelcards/modelcard.pmos new file mode 100644 index 000000000..19a3309d0 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/modelcards/modelcard.pmos @@ -0,0 +1,112 @@ + ******** BSIM4.6.1 Model Card for PMOS ******** + +** The BSIM4 model card below was not extracted/obtained from/based on +** any real technologies. It should not be used for any other purposes +** except for benchmarking the implementation of BSIM4.6.0 against BSIM +** Team's standard results using SPICE3f5. +**** Mohan Dunga, Wenwei Yang, Ali Niknejad, and Chenming Hu 05/18/2007. + + +** Model: BSIM4.6.1 +** Berkeley SPICE3f5 Compatible +** Lmin=0.02 Lmax=10 Wmin=0.6 Wmax=20 +** By Mohan Dunga, Wenwei Yang 05/18/2007 + +.MODEL P1 PMOS LEVEL = 14 + ++VERSION = 4.6.5 BINUNIT = 1 PARAMCHK= 0 MOBMOD = 0 ++CAPMOD = 2 IGCMOD = 1 IGBMOD = 1 GEOMOD = 1 ++DIOMOD = 1 RDSMOD = 0 RBODYMOD= 0 RGATEMOD= 1 ++PERMOD = 1 ACNQSMOD= 0 TRNQSMOD= 0 TEMPMOD = 0 ++MTRLMOD = 1 CVCHARGEMOD = 0 + ++EOT = 1.8E-009 VDDEOT = -1.5 ADOS = 1.1 BDOS = 1.0 ++TNOM = 27 TOXE = 1.8E-009 TOXP = 10E-010 TOXM = 1.8E-009 ++DTOX = 8E-10 EPSROX = 3.9 WINT = 5E-009 LINT = 1E-009 ++LL = 0 WL = 0 LLN = 1 WLN = 1 ++LW = 0 WW = 0 LWN = 1 WWN = 1 ++LWL = 0 WWL = 0 XPART = 0 TOXREF = 1.8E-9 + ++PHIG = 4.05 EPSRGATE = 11.7 + ++SAREF = 5E-6 SBREF = 5E-6 WLOD = 2E-6 KU0 = 4E-6 ++KVSAT = 0.2 KVTH0 = -2E-8 TKU0 = 0.0 LLODKU0 = 1.1 ++WLODKU0 = 1.1 LLODVTH = 1.0 WLODVTH = 1.0 LKU0 = 1E-6 ++WKU0 = 1E-6 PKU0 = 0.0 LKVTH0 = 1.1E-6 WKVTH0 = 1.1E-6 ++PKVTH0 = 0.0 STK2 = 0.0 LODK2 = 1.0 STETA0 = 0.0 ++LODETA0 = 1.0 ++LAMBDA = 4E-10 ++VSAT = 1.1E+005 ++VTL = 2.0E5 XN = 6.0 LC = 5E-9 ++RNOIA = 0.577 RNOIB = 0.37 ++LINTNOI = 1E-009 ++TVOFF = 0.0 TVFBSDOFF = 0.0 ++VTH0 = -0.25 ++K1 = 0.35 K2 = 0.05 K3 = 0 ++K3B = 0 W0 = 2.5E-006 DVT0 = 1.8 DVT1 = 0.52 ++DVT2 = -0.032 DVT0W = 0 DVT1W = 0 DVT2W = 0 ++DSUB = 2 MINV = 0.05 VOFFL = 0 DVTP0 = 1E-007 ++MINVCV = 2 VOFFCVL = 0 ++DVTP1 = 0.05 LPE0 = 5.75E-008 LPEB = 2.3E-010 XJ = 2E-008 ++NGATE = 5E+020 NDEP = 2.8E+018 NSD = 1E+020 PHIN = 0 ++CDSC = 0.0002 CDSCB = 0 CDSCD = 0 CIT = 0 ++VOFF = -0.15 NFACTOR = 1.2 ETA0 = 0.05 ETAB = 0 ++VFB = 0.55 U0 = 0.0095 UA = 5.0E-011 UB = 3.5E-018 ++UC = -3E-011 ++A0 = 2 AGS = 1E-020 ++A1 = 0 A2 = 1 B0 = -1E-020 B1 = 0 ++KETA = 0.04 DWG = 0 DWB = 0 PCLM = 0.08 ++PDIBLC1 = 0.028 PDIBLC2 = 0.022 PDIBLCB = -0.005 DROUT = 0.45 ++PVAG = 1E-020 DELTA = 0.01 PSCBE1 = 8.14E+008 PSCBE2 = 5E-008 ++FPROUT = 0.2 PDITS = 0.2 PDITSD = 0.23 PDITSL = 2.3E+006 ++RSH = 0 RDSW = 50 RSW = 50 RDW = 50 ++RDSWMIN = 0 RDWMIN = 0 RSWMIN = 0 PRWG = 0 ++PRWB = 6.8E-011 WR = 1 ALPHA0 = 0.074 ALPHA1 = 0.005 ++BETA0 = 30 AGIDL = 0.0002 BGIDL = 2.1E+009 CGIDL = 0.0002 ++EGIDL = 0.8 AGISL = 0.0003 BGISL = 2.5E+009 CGISL = 0.0003 ++EGISL = 0.8 + ++AIGBACC = 0.012 BIGBACC = 0.0028 CIGBACC = 0.002 ++NIGBACC = 1 AIGBINV = 0.014 BIGBINV = 0.004 CIGBINV = 0.004 ++EIGBINV = 1.1 NIGBINV = 3 AIGC = 0.012 BIGC = 0.0028 ++CIGC = 0.002 AIGS = 0.012 BIGS = 0.0028 CIGS = 0.002 ++NIGC = 1 POXEDGE = 1 PIGCD = 1 NTOX = 1 ++AIGD = 0.01 BIGD = 0.003 CIGD = 0.0015 + ++XRCRG1 = 12 XRCRG2 = 5 ++CGSO = 6.238E-010 CGDO = 6.238E-010 CGBO = 2.56E-011 CGDL = 2.495E-10 ++CGSL = 2.495E-10 CKAPPAS = 0.03 CKAPPAD = 0.03 ACDE = 1 ++MOIN = 15 NOFF = 0.9 VOFFCV = 0.02 + ++KT1 = -0.37 KT1L = 0.0 KT2 = -0.042 UTE = -1.5 ++UA1 = 1E-009 UB1 = -3.5E-019 UC1 = 0 PRT = 0 ++AT = 53000 + ++FNOIMOD = 1 TNOIMOD = 0 + ++JSS = 0.0001 JSWS = 1E-011 JSWGS = 1E-010 NJS = 1 ++IJTHSFWD= 0.01 IJTHSREV= 0.001 BVS = 10 XJBVS = 1 ++JSD = 0.0001 JSWD = 1E-011 JSWGD = 1E-010 NJD = 1 ++IJTHDFWD= 0.01 IJTHDREV= 0.001 BVD = 10 XJBVD = 1 ++PBS = 1 CJS = 0.0005 MJS = 0.5 PBSWS = 1 ++CJSWS = 5E-010 MJSWS = 0.33 PBSWGS = 1 CJSWGS = 3E-010 ++MJSWGS = 0.33 PBD = 1 CJD = 0.0005 MJD = 0.5 ++PBSWD = 1 CJSWD = 5E-010 MJSWD = 0.33 PBSWGD = 1 ++CJSWGD = 5E-010 MJSWGD = 0.33 TPB = 0.005 TCJ = 0.001 ++TPBSW = 0.005 TCJSW = 0.001 TPBSWG = 0.005 TCJSWG = 0.001 ++XTIS = 3 XTID = 3 + ++DMCG = 0E-006 DMCI = 0E-006 DMDG = 0E-006 DMCGT = 0E-007 ++DWJ = 0.0E-008 XGW = 0E-007 XGL = 0E-008 + ++RSHG = 0.4 GBMIN = 1E-010 RBPB = 5 RBPD = 15 ++RBPS = 15 RBDB = 15 RBSB = 15 NGCON = 1 + ++JTSS = 1E-4 JTSD = 1E-4 JTSSWS = 1E-10 JTSSWD = 1E-10 ++JTSSWGS = 1E-7 JTSSWGD = 1E-7 ++NJTS = 20.0 NJTSSW = 15 NJTSSWG = 4 VTSS = 10 ++VTSD = 10 VTSSWS = 10 VTSSWD = 10 ++NJTSD = 15.0 NJTSSWD = 20 NJTSSWGD = 6 ++TNJTS = 0.1 TNJTSD = 0.05 ++VTSSWGS=2 VTSSWGD=2 ++XTSS = 0.02 XTSD = 0.02 XTSSWS = 0.02 XTSSWD = 0.02 XTSSWGS = 0.02 XTSSWGD = 0.02 diff --git a/paranoia_parallel/examples/xspice/table/qinn-clc409-2d-1.table b/paranoia_parallel/examples/xspice/table/qinn-clc409-2d-1.table new file mode 100644 index 000000000..1bda5c67f --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/qinn-clc409-2d-1.table @@ -0,0 +1,2011 @@ +*table for bipolar qinn CLC409 +*x +133 +*y +2002 +*x row +-0.2 -0.15 -0.1 -0.05 -1.38778E-17 0.05 0.1 0.15 0.2 0.25 0.3 0.35 0.4 0.45 0.5 0.55 0.6 0.65 0.7 0.75 0.8 0.85 0.9 0.95 1 1.05 1.1 1.15 1.2 1.25 1.3 1.35 1.4 1.45 1.5 1.55 1.6 1.65 1.7 1.75 1.8 1.85 1.9 1.95 2 2.05 2.1 2.15 2.2 2.25 2.3 2.35 2.4 2.45 2.5 2.55 2.6 2.65 2.7 2.75 2.8 2.85 2.9 2.95 3 3.05 3.1 3.15 3.2 3.25 3.3 3.35 3.4 3.45 3.5 3.55 3.6 3.65 3.7 3.75 3.8 3.85 3.9 3.95 4 4.05 4.1 4.15 4.2 4.25 4.3 4.35 4.4 4.45 4.5 4.55 4.6 4.65 4.7 4.75 4.8 4.85 4.9 4.95 5 5.05 5.1 5.15 5.2 5.25 5.3 5.35 5.4 5.45 5.5 5.55 5.6 5.65 5.7 5.75 5.8 5.85 5.9 5.95 6 6.05 6.1 6.15 6.2 6.25 6.3 6.35 6.4 +*y column +-1E-07 0 1E-07 2E-07 3E-07 4E-07 5E-07 6E-07 7E-07 8E-07 9E-07 1E-06 1.1E-06 1.2E-06 1.3E-06 1.4E-06 1.5E-06 1.6E-06 1.7E-06 1.8E-06 1.9E-06 2E-06 2.1E-06 2.2E-06 2.3E-06 2.4E-06 2.5E-06 2.6E-06 2.7E-06 2.8E-06 2.9E-06 3E-06 3.1E-06 3.2E-06 3.3E-06 3.4E-06 3.5E-06 3.6E-06 3.7E-06 3.8E-06 3.9E-06 4E-06 4.1E-06 4.2E-06 4.3E-06 4.4E-06 4.5E-06 4.6E-06 4.7E-06 4.8E-06 4.9E-06 5E-06 5.1E-06 5.2E-06 5.3E-06 5.4E-06 5.5E-06 5.6E-06 5.7E-06 5.8E-06 5.9E-06 6E-06 6.1E-06 6.2E-06 6.3E-06 6.4E-06 6.5E-06 6.6E-06 6.7E-06 6.8E-06 6.9E-06 7E-06 7.1E-06 7.2E-06 7.3E-06 7.4E-06 7.5E-06 7.6E-06 7.7E-06 7.8E-06 7.9E-06 8E-06 8.1E-06 8.2E-06 8.3E-06 8.4E-06 8.5E-06 8.6E-06 8.7E-06 8.8E-06 8.9E-06 9E-06 9.1E-06 9.2E-06 9.3E-06 9.4E-06 9.5E-06 9.6E-06 9.7E-06 9.8E-06 9.9E-06 1E-05 1.01E-05 1.02E-05 1.03E-05 1.04E-05 1.05E-05 1.06E-05 1.07E-05 1.08E-05 1.09E-05 1.1E-05 1.11E-05 1.12E-05 1.13E-05 1.14E-05 1.15E-05 1.16E-05 1.17E-05 1.18E-05 1.19E-05 1.2E-05 1.21E-05 1.22E-05 1.23E-05 1.24E-05 1.25E-05 1.26E-05 1.27E-05 1.28E-05 1.29E-05 1.3E-05 1.31E-05 1.32E-05 1.33E-05 1.34E-05 1.35E-05 1.36E-05 1.37E-05 1.38E-05 1.39E-05 1.4E-05 1.41E-05 1.42E-05 1.43E-05 1.44E-05 1.45E-05 1.46E-05 1.47E-05 1.48E-05 1.49E-05 1.5E-05 1.51E-05 1.52E-05 1.53E-05 1.54E-05 1.55E-05 1.56E-05 1.57E-05 1.58E-05 1.59E-05 1.6E-05 1.61E-05 1.62E-05 1.63E-05 1.64E-05 1.65E-05 1.66E-05 1.67E-05 1.68E-05 1.69E-05 1.7E-05 1.71E-05 1.72E-05 1.73E-05 1.74E-05 1.75E-05 1.76E-05 1.77E-05 1.78E-05 1.79E-05 1.8E-05 1.81E-05 1.82E-05 1.83E-05 1.84E-05 1.85E-05 1.86E-05 1.87E-05 1.88E-05 1.89E-05 1.9E-05 1.91E-05 1.92E-05 1.93E-05 1.94E-05 1.95E-05 1.96E-05 1.97E-05 1.98E-05 1.99E-05 2E-05 2.01E-05 2.02E-05 2.03E-05 2.04E-05 2.05E-05 2.06E-05 2.07E-05 2.08E-05 2.09E-05 2.1E-05 2.11E-05 2.12E-05 2.13E-05 2.14E-05 2.15E-05 2.16E-05 2.17E-05 2.18E-05 2.19E-05 2.2E-05 2.21E-05 2.22E-05 2.23E-05 2.24E-05 2.25E-05 2.26E-05 2.27E-05 2.28E-05 2.29E-05 2.3E-05 2.31E-05 2.32E-05 2.33E-05 2.34E-05 2.35E-05 2.36E-05 2.37E-05 2.38E-05 2.39E-05 2.4E-05 2.41E-05 2.42E-05 2.43E-05 2.44E-05 2.45E-05 2.46E-05 2.47E-05 2.48E-05 2.49E-05 2.5E-05 2.51E-05 2.52E-05 2.53E-05 2.54E-05 2.55E-05 2.56E-05 2.57E-05 2.58E-05 2.59E-05 2.6E-05 2.61E-05 2.62E-05 2.63E-05 2.64E-05 2.65E-05 2.66E-05 2.67E-05 2.68E-05 2.69E-05 2.7E-05 2.71E-05 2.72E-05 2.73E-05 2.74E-05 2.75E-05 2.76E-05 2.77E-05 2.78E-05 2.79E-05 2.8E-05 2.81E-05 2.82E-05 2.83E-05 2.84E-05 2.85E-05 2.86E-05 2.87E-05 2.88E-05 2.89E-05 2.9E-05 2.91E-05 2.92E-05 2.93E-05 2.94E-05 2.95E-05 2.96E-05 2.97E-05 2.98E-05 2.99E-05 3E-05 3.01E-05 3.02E-05 3.03E-05 3.04E-05 3.05E-05 3.06E-05 3.07E-05 3.08E-05 3.09E-05 3.1E-05 3.11E-05 3.12E-05 3.13E-05 3.14E-05 3.15E-05 3.16E-05 3.17E-05 3.18E-05 3.19E-05 3.2E-05 3.21E-05 3.22E-05 3.23E-05 3.24E-05 3.25E-05 3.26E-05 3.27E-05 3.28E-05 3.29E-05 3.3E-05 3.31E-05 3.32E-05 3.33E-05 3.34E-05 3.35E-05 3.36E-05 3.37E-05 3.38E-05 3.39E-05 3.4E-05 3.41E-05 3.42E-05 3.43E-05 3.44E-05 3.45E-05 3.46E-05 3.47E-05 3.48E-05 3.49E-05 3.5E-05 3.51E-05 3.52E-05 3.53E-05 3.54E-05 3.55E-05 3.56E-05 3.57E-05 3.58E-05 3.59E-05 3.6E-05 3.61E-05 3.62E-05 3.63E-05 3.64E-05 3.65E-05 3.66E-05 3.67E-05 3.68E-05 3.69E-05 3.7E-05 3.71E-05 3.72E-05 3.73E-05 3.74E-05 3.75E-05 3.76E-05 3.77E-05 3.78E-05 3.79E-05 3.8E-05 3.81E-05 3.82E-05 3.83E-05 3.84E-05 3.85E-05 3.86E-05 3.87E-05 3.88E-05 3.89E-05 3.9E-05 3.91E-05 3.92E-05 3.93E-05 3.94E-05 3.95E-05 3.96E-05 3.97E-05 3.98E-05 3.99E-05 4E-05 4.01E-05 4.02E-05 4.03E-05 4.04E-05 4.05E-05 4.06E-05 4.07E-05 4.08E-05 4.09E-05 4.1E-05 4.11E-05 4.12E-05 4.13E-05 4.14E-05 4.15E-05 4.16E-05 4.17E-05 4.18E-05 4.19E-05 4.2E-05 4.21E-05 4.22E-05 4.23E-05 4.24E-05 4.25E-05 4.26E-05 4.27E-05 4.28E-05 4.29E-05 4.3E-05 4.31E-05 4.32E-05 4.33E-05 4.34E-05 4.35E-05 4.36E-05 4.37E-05 4.38E-05 4.39E-05 4.4E-05 4.41E-05 4.42E-05 4.43E-05 4.44E-05 4.45E-05 4.46E-05 4.47E-05 4.48E-05 4.49E-05 4.5E-05 4.51E-05 4.52E-05 4.53E-05 4.54E-05 4.55E-05 4.56E-05 4.57E-05 4.58E-05 4.59E-05 4.6E-05 4.61E-05 4.62E-05 4.63E-05 4.64E-05 4.65E-05 4.66E-05 4.67E-05 4.68E-05 4.69E-05 4.7E-05 4.71E-05 4.72E-05 4.73E-05 4.74E-05 4.75E-05 4.76E-05 4.77E-05 4.78E-05 4.79E-05 4.8E-05 4.81E-05 4.82E-05 4.83E-05 4.84E-05 4.85E-05 4.86E-05 4.87E-05 4.88E-05 4.89E-05 4.9E-05 4.91E-05 4.92E-05 4.93E-05 4.94E-05 4.95E-05 4.96E-05 4.97E-05 4.98E-05 4.99E-05 5E-05 5.01E-05 5.02E-05 5.03E-05 5.04E-05 5.05E-05 5.06E-05 5.07E-05 5.08E-05 5.09E-05 5.1E-05 5.11E-05 5.12E-05 5.13E-05 5.14E-05 5.15E-05 5.16E-05 5.17E-05 5.18E-05 5.19E-05 5.2E-05 5.21E-05 5.22E-05 5.23E-05 5.24E-05 5.25E-05 5.26E-05 5.27E-05 5.28E-05 5.29E-05 5.3E-05 5.31E-05 5.32E-05 5.33E-05 5.34E-05 5.35E-05 5.36E-05 5.37E-05 5.38E-05 5.39E-05 5.4E-05 5.41E-05 5.42E-05 5.43E-05 5.44E-05 5.45E-05 5.46E-05 5.47E-05 5.48E-05 5.49E-05 5.5E-05 5.51E-05 5.52E-05 5.53E-05 5.54E-05 5.55E-05 5.56E-05 5.57E-05 5.58E-05 5.59E-05 5.6E-05 5.61E-05 5.62E-05 5.63E-05 5.64E-05 5.65E-05 5.66E-05 5.67E-05 5.68E-05 5.69E-05 5.7E-05 5.71E-05 5.72E-05 5.73E-05 5.74E-05 5.75E-05 5.76E-05 5.77E-05 5.78E-05 5.79E-05 5.8E-05 5.81E-05 5.82E-05 5.83E-05 5.84E-05 5.85E-05 5.86E-05 5.87E-05 5.88E-05 5.89E-05 5.9E-05 5.91E-05 5.92E-05 5.93E-05 5.94E-05 5.95E-05 5.96E-05 5.97E-05 5.98E-05 5.99E-05 6E-05 6.01E-05 6.02E-05 6.03E-05 6.04E-05 6.05E-05 6.06E-05 6.07E-05 6.08E-05 6.09E-05 6.1E-05 6.11E-05 6.12E-05 6.13E-05 6.14E-05 6.15E-05 6.16E-05 6.17E-05 6.18E-05 6.19E-05 6.2E-05 6.21E-05 6.22E-05 6.23E-05 6.24E-05 6.25E-05 6.26E-05 6.27E-05 6.28E-05 6.29E-05 6.3E-05 6.31E-05 6.32E-05 6.33E-05 6.34E-05 6.35E-05 6.36E-05 6.37E-05 6.38E-05 6.39E-05 6.4E-05 6.41E-05 6.42E-05 6.43E-05 6.44E-05 6.45E-05 6.46E-05 6.47E-05 6.48E-05 6.49E-05 6.5E-05 6.51E-05 6.52E-05 6.53E-05 6.54E-05 6.55E-05 6.56E-05 6.57E-05 6.58E-05 6.59E-05 6.6E-05 6.61E-05 6.62E-05 6.63E-05 6.64E-05 6.65E-05 6.66E-05 6.67E-05 6.68E-05 6.69E-05 6.7E-05 6.71E-05 6.72E-05 6.73E-05 6.74E-05 6.75E-05 6.76E-05 6.77E-05 6.78E-05 6.79E-05 6.8E-05 6.81E-05 6.82E-05 6.83E-05 6.84E-05 6.85E-05 6.86E-05 6.87E-05 6.88E-05 6.89E-05 6.9E-05 6.91E-05 6.92E-05 6.93E-05 6.94E-05 6.95E-05 6.96E-05 6.97E-05 6.98E-05 6.99E-05 7E-05 7.01E-05 7.02E-05 7.03E-05 7.04E-05 7.05E-05 7.06E-05 7.07E-05 7.08E-05 7.09E-05 7.1E-05 7.11E-05 7.12E-05 7.13E-05 7.14E-05 7.15E-05 7.16E-05 7.17E-05 7.18E-05 7.19E-05 7.2E-05 7.21E-05 7.22E-05 7.23E-05 7.24E-05 7.25E-05 7.26E-05 7.27E-05 7.28E-05 7.29E-05 7.3E-05 7.31E-05 7.32E-05 7.33E-05 7.34E-05 7.35E-05 7.36E-05 7.37E-05 7.38E-05 7.39E-05 7.4E-05 7.41E-05 7.42E-05 7.43E-05 7.44E-05 7.45E-05 7.46E-05 7.47E-05 7.48E-05 7.49E-05 7.5E-05 7.51E-05 7.52E-05 7.53E-05 7.54E-05 7.55E-05 7.56E-05 7.57E-05 7.58E-05 7.59E-05 7.6E-05 7.61E-05 7.62E-05 7.63E-05 7.64E-05 7.65E-05 7.66E-05 7.67E-05 7.68E-05 7.69E-05 7.7E-05 7.71E-05 7.72E-05 7.73E-05 7.74E-05 7.75E-05 7.76E-05 7.77E-05 7.78E-05 7.79E-05 7.8E-05 7.81E-05 7.82E-05 7.83E-05 7.84E-05 7.85E-05 7.86E-05 7.87E-05 7.88E-05 7.89E-05 7.9E-05 7.91E-05 7.92E-05 7.93E-05 7.94E-05 7.95E-05 7.96E-05 7.97E-05 7.98E-05 7.99E-05 8E-05 8.01E-05 8.02E-05 8.03E-05 8.04E-05 8.05E-05 8.06E-05 8.07E-05 8.08E-05 8.09E-05 8.1E-05 8.11E-05 8.12E-05 8.13E-05 8.14E-05 8.15E-05 8.16E-05 8.17E-05 8.18E-05 8.19E-05 8.2E-05 8.21E-05 8.22E-05 8.23E-05 8.24E-05 8.25E-05 8.26E-05 8.27E-05 8.28E-05 8.29E-05 8.3E-05 8.31E-05 8.32E-05 8.33E-05 8.34E-05 8.35E-05 8.36E-05 8.37E-05 8.38E-05 8.39E-05 8.4E-05 8.41E-05 8.42E-05 8.43E-05 8.44E-05 8.45E-05 8.46E-05 8.47E-05 8.48E-05 8.49E-05 8.5E-05 8.51E-05 8.52E-05 8.53E-05 8.54E-05 8.55E-05 8.56E-05 8.57E-05 8.58E-05 8.59E-05 8.6E-05 8.61E-05 8.62E-05 8.63E-05 8.64E-05 8.65E-05 8.66E-05 8.67E-05 8.68E-05 8.69E-05 8.7E-05 8.71E-05 8.72E-05 8.73E-05 8.74E-05 8.75E-05 8.76E-05 8.77E-05 8.78E-05 8.79E-05 8.8E-05 8.81E-05 8.82E-05 8.83E-05 8.84E-05 8.85E-05 8.86E-05 8.87E-05 8.88E-05 8.89E-05 8.9E-05 8.91E-05 8.92E-05 8.93E-05 8.94E-05 8.95E-05 8.96E-05 8.97E-05 8.98E-05 8.99E-05 9E-05 9.01E-05 9.02E-05 9.03E-05 9.04E-05 9.05E-05 9.06E-05 9.07E-05 9.08E-05 9.09E-05 9.1E-05 9.11E-05 9.12E-05 9.13E-05 9.14E-05 9.15E-05 9.16E-05 9.17E-05 9.18E-05 9.19E-05 9.2E-05 9.21E-05 9.22E-05 9.23E-05 9.24E-05 9.25E-05 9.26E-05 9.27E-05 9.28E-05 9.29E-05 9.3E-05 9.31E-05 9.32E-05 9.33E-05 9.34E-05 9.35E-05 9.36E-05 9.37E-05 9.38E-05 9.39E-05 9.4E-05 9.41E-05 9.42E-05 9.43E-05 9.44E-05 9.45E-05 9.46E-05 9.47E-05 9.48E-05 9.49E-05 9.5E-05 9.51E-05 9.52E-05 9.53E-05 9.54E-05 9.55E-05 9.56E-05 9.57E-05 9.58E-05 9.59E-05 9.6E-05 9.61E-05 9.62E-05 9.63E-05 9.64E-05 9.65E-05 9.66E-05 9.67E-05 9.68E-05 9.69E-05 9.7E-05 9.71E-05 9.72E-05 9.73E-05 9.74E-05 9.75E-05 9.76E-05 9.77E-05 9.78E-05 9.79E-05 9.8E-05 9.81E-05 9.82E-05 9.83E-05 9.84E-05 9.85E-05 9.86E-05 9.87E-05 9.88E-05 9.89E-05 9.9E-05 9.91E-05 9.92E-05 9.93E-05 9.94E-05 9.95E-05 9.96E-05 9.97E-05 9.98E-05 9.99E-05 0.0001 0.0001001 0.0001002 0.0001003 0.0001004 0.0001005 0.0001006 0.0001007 0.0001008 0.0001009 0.000101 0.0001011 0.0001012 0.0001013 0.0001014 0.0001015 0.0001016 0.0001017 0.0001018 0.0001019 0.000102 0.0001021 0.0001022 0.0001023 0.0001024 0.0001025 0.0001026 0.0001027 0.0001028 0.0001029 0.000103 0.0001031 0.0001032 0.0001033 0.0001034 0.0001035 0.0001036 0.0001037 0.0001038 0.0001039 0.000104 0.0001041 0.0001042 0.0001043 0.0001044 0.0001045 0.0001046 0.0001047 0.0001048 0.0001049 0.000105 0.0001051 0.0001052 0.0001053 0.0001054 0.0001055 0.0001056 0.0001057 0.0001058 0.0001059 0.000106 0.0001061 0.0001062 0.0001063 0.0001064 0.0001065 0.0001066 0.0001067 0.0001068 0.0001069 0.000107 0.0001071 0.0001072 0.0001073 0.0001074 0.0001075 0.0001076 0.0001077 0.0001078 0.0001079 0.000108 0.0001081 0.0001082 0.0001083 0.0001084 0.0001085 0.0001086 0.0001087 0.0001088 0.0001089 0.000109 0.0001091 0.0001092 0.0001093 0.0001094 0.0001095 0.0001096 0.0001097 0.0001098 0.0001099 0.00011 0.0001101 0.0001102 0.0001103 0.0001104 0.0001105 0.0001106 0.0001107 0.0001108 0.0001109 0.000111 0.0001111 0.0001112 0.0001113 0.0001114 0.0001115 0.0001116 0.0001117 0.0001118 0.0001119 0.000112 0.0001121 0.0001122 0.0001123 0.0001124 0.0001125 0.0001126 0.0001127 0.0001128 0.0001129 0.000113 0.0001131 0.0001132 0.0001133 0.0001134 0.0001135 0.0001136 0.0001137 0.0001138 0.0001139 0.000114 0.0001141 0.0001142 0.0001143 0.0001144 0.0001145 0.0001146 0.0001147 0.0001148 0.0001149 0.000115 0.0001151 0.0001152 0.0001153 0.0001154 0.0001155 0.0001156 0.0001157 0.0001158 0.0001159 0.000116 0.0001161 0.0001162 0.0001163 0.0001164 0.0001165 0.0001166 0.0001167 0.0001168 0.0001169 0.000117 0.0001171 0.0001172 0.0001173 0.0001174 0.0001175 0.0001176 0.0001177 0.0001178 0.0001179 0.000118 0.0001181 0.0001182 0.0001183 0.0001184 0.0001185 0.0001186 0.0001187 0.0001188 0.0001189 0.000119 0.0001191 0.0001192 0.0001193 0.0001194 0.0001195 0.0001196 0.0001197 0.0001198 0.0001199 0.00012 0.0001201 0.0001202 0.0001203 0.0001204 0.0001205 0.0001206 0.0001207 0.0001208 0.0001209 0.000121 0.0001211 0.0001212 0.0001213 0.0001214 0.0001215 0.0001216 0.0001217 0.0001218 0.0001219 0.000122 0.0001221 0.0001222 0.0001223 0.0001224 0.0001225 0.0001226 0.0001227 0.0001228 0.0001229 0.000123 0.0001231 0.0001232 0.0001233 0.0001234 0.0001235 0.0001236 0.0001237 0.0001238 0.0001239 0.000124 0.0001241 0.0001242 0.0001243 0.0001244 0.0001245 0.0001246 0.0001247 0.0001248 0.0001249 0.000125 0.0001251 0.0001252 0.0001253 0.0001254 0.0001255 0.0001256 0.0001257 0.0001258 0.0001259 0.000126 0.0001261 0.0001262 0.0001263 0.0001264 0.0001265 0.0001266 0.0001267 0.0001268 0.0001269 0.000127 0.0001271 0.0001272 0.0001273 0.0001274 0.0001275 0.0001276 0.0001277 0.0001278 0.0001279 0.000128 0.0001281 0.0001282 0.0001283 0.0001284 0.0001285 0.0001286 0.0001287 0.0001288 0.0001289 0.000129 0.0001291 0.0001292 0.0001293 0.0001294 0.0001295 0.0001296 0.0001297 0.0001298 0.0001299 0.00013 0.0001301 0.0001302 0.0001303 0.0001304 0.0001305 0.0001306 0.0001307 0.0001308 0.0001309 0.000131 0.0001311 0.0001312 0.0001313 0.0001314 0.0001315 0.0001316 0.0001317 0.0001318 0.0001319 0.000132 0.0001321 0.0001322 0.0001323 0.0001324 0.0001325 0.0001326 0.0001327 0.0001328 0.0001329 0.000133 0.0001331 0.0001332 0.0001333 0.0001334 0.0001335 0.0001336 0.0001337 0.0001338 0.0001339 0.000134 0.0001341 0.0001342 0.0001343 0.0001344 0.0001345 0.0001346 0.0001347 0.0001348 0.0001349 0.000135 0.0001351 0.0001352 0.0001353 0.0001354 0.0001355 0.0001356 0.0001357 0.0001358 0.0001359 0.000136 0.0001361 0.0001362 0.0001363 0.0001364 0.0001365 0.0001366 0.0001367 0.0001368 0.0001369 0.000137 0.0001371 0.0001372 0.0001373 0.0001374 0.0001375 0.0001376 0.0001377 0.0001378 0.0001379 0.000138 0.0001381 0.0001382 0.0001383 0.0001384 0.0001385 0.0001386 0.0001387 0.0001388 0.0001389 0.000139 0.0001391 0.0001392 0.0001393 0.0001394 0.0001395 0.0001396 0.0001397 0.0001398 0.0001399 0.00014 0.0001401 0.0001402 0.0001403 0.0001404 0.0001405 0.0001406 0.0001407 0.0001408 0.0001409 0.000141 0.0001411 0.0001412 0.0001413 0.0001414 0.0001415 0.0001416 0.0001417 0.0001418 0.0001419 0.000142 0.0001421 0.0001422 0.0001423 0.0001424 0.0001425 0.0001426 0.0001427 0.0001428 0.0001429 0.000143 0.0001431 0.0001432 0.0001433 0.0001434 0.0001435 0.0001436 0.0001437 0.0001438 0.0001439 0.000144 0.0001441 0.0001442 0.0001443 0.0001444 0.0001445 0.0001446 0.0001447 0.0001448 0.0001449 0.000145 0.0001451 0.0001452 0.0001453 0.0001454 0.0001455 0.0001456 0.0001457 0.0001458 0.0001459 0.000146 0.0001461 0.0001462 0.0001463 0.0001464 0.0001465 0.0001466 0.0001467 0.0001468 0.0001469 0.000147 0.0001471 0.0001472 0.0001473 0.0001474 0.0001475 0.0001476 0.0001477 0.0001478 0.0001479 0.000148 0.0001481 0.0001482 0.0001483 0.0001484 0.0001485 0.0001486 0.0001487 0.0001488 0.0001489 0.000149 0.0001491 0.0001492 0.0001493 0.0001494 0.0001495 0.0001496 0.0001497 0.0001498 0.0001499 0.00015 0.0001501 0.0001502 0.0001503 0.0001504 0.0001505 0.0001506 0.0001507 0.0001508 0.0001509 0.000151 0.0001511 0.0001512 0.0001513 0.0001514 0.0001515 0.0001516 0.0001517 0.0001518 0.0001519 0.000152 0.0001521 0.0001522 0.0001523 0.0001524 0.0001525 0.0001526 0.0001527 0.0001528 0.0001529 0.000153 0.0001531 0.0001532 0.0001533 0.0001534 0.0001535 0.0001536 0.0001537 0.0001538 0.0001539 0.000154 0.0001541 0.0001542 0.0001543 0.0001544 0.0001545 0.0001546 0.0001547 0.0001548 0.0001549 0.000155 0.0001551 0.0001552 0.0001553 0.0001554 0.0001555 0.0001556 0.0001557 0.0001558 0.0001559 0.000156 0.0001561 0.0001562 0.0001563 0.0001564 0.0001565 0.0001566 0.0001567 0.0001568 0.0001569 0.000157 0.0001571 0.0001572 0.0001573 0.0001574 0.0001575 0.0001576 0.0001577 0.0001578 0.0001579 0.000158 0.0001581 0.0001582 0.0001583 0.0001584 0.0001585 0.0001586 0.0001587 0.0001588 0.0001589 0.000159 0.0001591 0.0001592 0.0001593 0.0001594 0.0001595 0.0001596 0.0001597 0.0001598 0.0001599 0.00016 0.0001601 0.0001602 0.0001603 0.0001604 0.0001605 0.0001606 0.0001607 0.0001608 0.0001609 0.000161 0.0001611 0.0001612 0.0001613 0.0001614 0.0001615 0.0001616 0.0001617 0.0001618 0.0001619 0.000162 0.0001621 0.0001622 0.0001623 0.0001624 0.0001625 0.0001626 0.0001627 0.0001628 0.0001629 0.000163 0.0001631 0.0001632 0.0001633 0.0001634 0.0001635 0.0001636 0.0001637 0.0001638 0.0001639 0.000164 0.0001641 0.0001642 0.0001643 0.0001644 0.0001645 0.0001646 0.0001647 0.0001648 0.0001649 0.000165 0.0001651 0.0001652 0.0001653 0.0001654 0.0001655 0.0001656 0.0001657 0.0001658 0.0001659 0.000166 0.0001661 0.0001662 0.0001663 0.0001664 0.0001665 0.0001666 0.0001667 0.0001668 0.0001669 0.000167 0.0001671 0.0001672 0.0001673 0.0001674 0.0001675 0.0001676 0.0001677 0.0001678 0.0001679 0.000168 0.0001681 0.0001682 0.0001683 0.0001684 0.0001685 0.0001686 0.0001687 0.0001688 0.0001689 0.000169 0.0001691 0.0001692 0.0001693 0.0001694 0.0001695 0.0001696 0.0001697 0.0001698 0.0001699 0.00017 0.0001701 0.0001702 0.0001703 0.0001704 0.0001705 0.0001706 0.0001707 0.0001708 0.0001709 0.000171 0.0001711 0.0001712 0.0001713 0.0001714 0.0001715 0.0001716 0.0001717 0.0001718 0.0001719 0.000172 0.0001721 0.0001722 0.0001723 0.0001724 0.0001725 0.0001726 0.0001727 0.0001728 0.0001729 0.000173 0.0001731 0.0001732 0.0001733 0.0001734 0.0001735 0.0001736 0.0001737 0.0001738 0.0001739 0.000174 0.0001741 0.0001742 0.0001743 0.0001744 0.0001745 0.0001746 0.0001747 0.0001748 0.0001749 0.000175 0.0001751 0.0001752 0.0001753 0.0001754 0.0001755 0.0001756 0.0001757 0.0001758 0.0001759 0.000176 0.0001761 0.0001762 0.0001763 0.0001764 0.0001765 0.0001766 0.0001767 0.0001768 0.0001769 0.000177 0.0001771 0.0001772 0.0001773 0.0001774 0.0001775 0.0001776 0.0001777 0.0001778 0.0001779 0.000178 0.0001781 0.0001782 0.0001783 0.0001784 0.0001785 0.0001786 0.0001787 0.0001788 0.0001789 0.000179 0.0001791 0.0001792 0.0001793 0.0001794 0.0001795 0.0001796 0.0001797 0.0001798 0.0001799 0.00018 0.0001801 0.0001802 0.0001803 0.0001804 0.0001805 0.0001806 0.0001807 0.0001808 0.0001809 0.000181 0.0001811 0.0001812 0.0001813 0.0001814 0.0001815 0.0001816 0.0001817 0.0001818 0.0001819 0.000182 0.0001821 0.0001822 0.0001823 0.0001824 0.0001825 0.0001826 0.0001827 0.0001828 0.0001829 0.000183 0.0001831 0.0001832 0.0001833 0.0001834 0.0001835 0.0001836 0.0001837 0.0001838 0.0001839 0.000184 0.0001841 0.0001842 0.0001843 0.0001844 0.0001845 0.0001846 0.0001847 0.0001848 0.0001849 0.000185 0.0001851 0.0001852 0.0001853 0.0001854 0.0001855 0.0001856 0.0001857 0.0001858 0.0001859 0.000186 0.0001861 0.0001862 0.0001863 0.0001864 0.0001865 0.0001866 0.0001867 0.0001868 0.0001869 0.000187 0.0001871 0.0001872 0.0001873 0.0001874 0.0001875 0.0001876 0.0001877 0.0001878 0.0001879 0.000188 0.0001881 0.0001882 0.0001883 0.0001884 0.0001885 0.0001886 0.0001887 0.0001888 0.0001889 0.000189 0.0001891 0.0001892 0.0001893 0.0001894 0.0001895 0.0001896 0.0001897 0.0001898 0.0001899 0.00019 0.0001901 0.0001902 0.0001903 0.0001904 0.0001905 0.0001906 0.0001907 0.0001908 0.0001909 0.000191 0.0001911 0.0001912 0.0001913 0.0001914 0.0001915 0.0001916 0.0001917 0.0001918 0.0001919 0.000192 0.0001921 0.0001922 0.0001923 0.0001924 0.0001925 0.0001926 0.0001927 0.0001928 0.0001929 0.000193 0.0001931 0.0001932 0.0001933 0.0001934 0.0001935 0.0001936 0.0001937 0.0001938 0.0001939 0.000194 0.0001941 0.0001942 0.0001943 0.0001944 0.0001945 0.0001946 0.0001947 0.0001948 0.0001949 0.000195 0.0001951 0.0001952 0.0001953 0.0001954 0.0001955 0.0001956 0.0001957 0.0001958 0.0001959 0.000196 0.0001961 0.0001962 0.0001963 0.0001964 0.0001965 0.0001966 0.0001967 0.0001968 0.0001969 0.000197 0.0001971 0.0001972 0.0001973 0.0001974 0.0001975 0.0001976 0.0001977 0.0001978 0.0001979 0.000198 0.0001981 0.0001982 0.0001983 0.0001984 0.0001985 0.0001986 0.0001987 0.0001988 0.0001989 0.000199 0.0001991 0.0001992 0.0001993 0.0001994 0.0001995 0.0001996 0.0001997 0.0001998 0.0001999 0.0002 +-5.00012E-08 -4.99975E-08 -5.00019E-08 -5.00005E-08 -4.99991E-08 -5.00018E-08 -4.99983E-08 -5.00018E-08 -4.99997E-08 -5.00015E-08 -5.00003E-08 -4.99971E-08 -5.00003E-08 -5.00013E-08 -5.00022E-08 -5.00021E-08 -5.00008E-08 -5.00013E-08 -4.99978E-08 -4.99969E-08 -4.99984E-08 -4.99988E-08 -5.00019E-08 -5.00001E-08 -5.00002E-08 -5.00015E-08 -4.99972E-08 -4.9997E-08 -4.9997E-08 -5.00002E-08 -4.99984E-08 -5.00016E-08 -4.99999E-08 -5.00004E-08 -4.99987E-08 -5.00015E-08 -4.99982E-08 -4.99979E-08 -5.00013E-08 -4.99997E-08 -4.99983E-08 -5.00011E-08 -4.99974E-08 -5.00006E-08 -4.99982E-08 -4.99993E-08 -4.99994E-08 -5.00006E-08 -5.00006E-08 -5.00003E-08 -5.00008E-08 -5.00014E-08 -4.99997E-08 -4.99984E-08 -5.00009E-08 -4.99992E-08 -5E-08 -5.00003E-08 -4.99967E-08 -4.99968E-08 -4.99968E-08 -5.00013E-08 -4.99971E-08 -4.99998E-08 -5.00002E-08 -4.99967E-08 -4.99987E-08 -4.99974E-08 -5.0001E-08 -4.99979E-08 -4.99994E-08 -4.99992E-08 -4.99962E-08 -4.99963E-08 -4.99962E-08 -5.00002E-08 -4.99994E-08 -4.99965E-08 -4.99987E-08 -5.00004E-08 -4.9996E-08 -5.00008E-08 -4.99974E-08 -4.99986E-08 -4.99987E-08 -4.99993E-08 -4.99971E-08 -4.99959E-08 -4.99989E-08 -4.99954E-08 -4.99961E-08 -4.99993E-08 -4.99974E-08 -4.99971E-08 -4.99998E-08 -4.99991E-08 -4.99973E-08 -4.99993E-08 -4.99951E-08 -4.99999E-08 -4.9997E-08 -4.99953E-08 -5.00002E-08 -4.99986E-08 -4.99963E-08 -4.99983E-08 -4.99977E-08 -4.99956E-08 -4.99955E-08 -4.99966E-08 -4.99989E-08 -5E-08 -4.9995E-08 -4.99973E-08 -4.99958E-08 -4.99968E-08 -4.99989E-08 -4.99976E-08 -4.99969E-08 -4.9996E-08 -4.99958E-08 -4.9995E-08 -4.99997E-08 -4.99976E-08 -4.99947E-08 -4.99984E-08 -4.99989E-08 -4.99978E-08 -4.99962E-08 -4.99954E-08 -4.99993E-08 -4.99949E-08 -4.99947E-08 +-1.08474E-13 -7.8185E-14 -5.11789E-14 -2.53906E-14 -7.01741E-30 2.53885E-14 5.11501E-14 7.80174E-14 1.07731E-13 1.44573E-13 1.98494E-13 2.90573E-13 4.57212E-13 7.43685E-13 1.18444E-12 1.78925E-12 2.54506E-12 3.43315E-12 4.43127E-12 5.52299E-12 6.69479E-12 7.93306E-12 9.23169E-12 1.05825E-11 1.19795E-11 1.34185E-11 1.48965E-11 1.64098E-11 1.79535E-11 1.95281E-11 2.11291E-11 2.27573E-11 2.44099E-11 2.60854E-11 2.77822E-11 2.95008E-11 3.12413E-11 3.29996E-11 3.47743E-11 3.65683E-11 3.8381E-11 4.02085E-11 4.20508E-11 4.39097E-11 4.57846E-11 4.76732E-11 4.95767E-11 5.14929E-11 5.34223E-11 5.53656E-11 5.73222E-11 5.92911E-11 6.12709E-11 6.32653E-11 6.52687E-11 6.72846E-11 6.93142E-11 7.13504E-11 7.34012E-11 7.54629E-11 7.75341E-11 7.9616E-11 8.17093E-11 8.38092E-11 8.59234E-11 8.80459E-11 9.01783E-11 9.23193E-11 9.44717E-11 9.66313E-11 9.88026E-11 1.00981E-10 1.03169E-10 1.05369E-10 1.07575E-10 1.0979E-10 1.12016E-10 1.14249E-10 1.1649E-10 1.18739E-10 1.20999E-10 1.23265E-10 1.25539E-10 1.27825E-10 1.30115E-10 1.32418E-10 1.34725E-10 1.37041E-10 1.39363E-10 1.41695E-10 1.44035E-10 1.46385E-10 1.4874E-10 1.51102E-10 1.53472E-10 1.55851E-10 1.58238E-10 1.60632E-10 1.63032E-10 1.6544E-10 1.67854E-10 1.70278E-10 1.72709E-10 1.75145E-10 1.77593E-10 1.80043E-10 1.82505E-10 1.84969E-10 1.87445E-10 1.89925E-10 1.92414E-10 1.94907E-10 1.9741E-10 1.99919E-10 2.02435E-10 2.04957E-10 2.07486E-10 2.10023E-10 2.12565E-10 2.15114E-10 2.17674E-10 2.20236E-10 2.22804E-10 2.25382E-10 2.27968E-10 2.30557E-10 2.33154E-10 2.35755E-10 2.38366E-10 2.40986E-10 2.43607E-10 2.46239E-10 2.48874E-10 +-2.77635E-06 -2.65683E-06 -2.48606E-06 -2.00585E-06 2.02083E-08 5.3122E-06 9.32682E-06 1.0326E-05 1.04946E-05 1.0528E-05 1.05415E-05 1.05521E-05 1.05624E-05 1.05725E-05 1.05827E-05 1.05928E-05 1.06029E-05 1.06131E-05 1.06232E-05 1.06334E-05 1.06435E-05 1.06537E-05 1.06638E-05 1.06739E-05 1.06841E-05 1.06942E-05 1.07044E-05 1.07145E-05 1.07247E-05 1.07348E-05 1.07449E-05 1.07551E-05 1.07652E-05 1.07754E-05 1.07855E-05 1.07957E-05 1.08058E-05 1.08159E-05 1.08261E-05 1.08362E-05 1.08464E-05 1.08565E-05 1.08667E-05 1.08768E-05 1.08869E-05 1.08971E-05 1.09072E-05 1.09174E-05 1.09275E-05 1.09377E-05 1.09478E-05 1.09579E-05 1.09681E-05 1.09782E-05 1.09884E-05 1.09985E-05 1.10087E-05 1.10188E-05 1.10289E-05 1.10391E-05 1.10492E-05 1.10594E-05 1.10695E-05 1.10797E-05 1.10898E-05 1.11E-05 1.11101E-05 1.11202E-05 1.11304E-05 1.11405E-05 1.11507E-05 1.11608E-05 1.1171E-05 1.11811E-05 1.11912E-05 1.12014E-05 1.12115E-05 1.12217E-05 1.12318E-05 1.1242E-05 1.12521E-05 1.12622E-05 1.12724E-05 1.12825E-05 1.12927E-05 1.13028E-05 1.1313E-05 1.13231E-05 1.13332E-05 1.13434E-05 1.13535E-05 1.13637E-05 1.13738E-05 1.1384E-05 1.13941E-05 1.14043E-05 1.14144E-05 1.14245E-05 1.14347E-05 1.14448E-05 1.1455E-05 1.14651E-05 1.14753E-05 1.14854E-05 1.14955E-05 1.15057E-05 1.15158E-05 1.1526E-05 1.15361E-05 1.15463E-05 1.15564E-05 1.15666E-05 1.15767E-05 1.15868E-05 1.1597E-05 1.16071E-05 1.16173E-05 1.16274E-05 1.16376E-05 1.16477E-05 1.16578E-05 1.1668E-05 1.16781E-05 1.16883E-05 1.16984E-05 1.17086E-05 1.17187E-05 1.17289E-05 1.1739E-05 1.17491E-05 1.17593E-05 1.17694E-05 1.17796E-05 +-5.47186E-06 -5.23357E-06 -4.8959E-06 -3.95472E-06 3.88005E-08 1.07499E-05 1.92159E-05 2.13803E-05 2.17473E-05 2.18196E-05 2.18485E-05 2.1871E-05 2.18926E-05 2.1914E-05 2.19354E-05 2.19569E-05 2.19783E-05 2.19997E-05 2.20212E-05 2.20426E-05 2.2064E-05 2.20855E-05 2.21069E-05 2.21283E-05 2.21498E-05 2.21712E-05 2.21926E-05 2.22141E-05 2.22355E-05 2.22569E-05 2.22784E-05 2.22998E-05 2.23212E-05 2.23427E-05 2.23641E-05 2.23855E-05 2.2407E-05 2.24284E-05 2.24498E-05 2.24713E-05 2.24927E-05 2.25141E-05 2.25356E-05 2.2557E-05 2.25784E-05 2.25999E-05 2.26213E-05 2.26427E-05 2.26642E-05 2.26856E-05 2.2707E-05 2.27285E-05 2.27499E-05 2.27713E-05 2.27928E-05 2.28142E-05 2.28357E-05 2.28571E-05 2.28785E-05 2.29E-05 2.29214E-05 2.29428E-05 2.29643E-05 2.29857E-05 2.30071E-05 2.30286E-05 2.305E-05 2.30714E-05 2.30929E-05 2.31143E-05 2.31357E-05 2.31572E-05 2.31786E-05 2.32E-05 2.32215E-05 2.32429E-05 2.32643E-05 2.32858E-05 2.33072E-05 2.33286E-05 2.33501E-05 2.33715E-05 2.33929E-05 2.34144E-05 2.34358E-05 2.34572E-05 2.34787E-05 2.35001E-05 2.35215E-05 2.3543E-05 2.35644E-05 2.35858E-05 2.36073E-05 2.36287E-05 2.36501E-05 2.36716E-05 2.3693E-05 2.37144E-05 2.37359E-05 2.37573E-05 2.37787E-05 2.38002E-05 2.38216E-05 2.3843E-05 2.38645E-05 2.38859E-05 2.39074E-05 2.39288E-05 2.39502E-05 2.39717E-05 2.39931E-05 2.40145E-05 2.4036E-05 2.40574E-05 2.40788E-05 2.41003E-05 2.41217E-05 2.41431E-05 2.41646E-05 2.4186E-05 2.42074E-05 2.42289E-05 2.42503E-05 2.42717E-05 2.42932E-05 2.43146E-05 2.4336E-05 2.43575E-05 2.43789E-05 2.44003E-05 2.44218E-05 2.44432E-05 2.44646E-05 +-8.13634E-06 -7.77951E-06 -7.27607E-06 -5.8797E-06 5.70977E-08 1.61856E-05 2.92474E-05 3.26486E-05 3.32276E-05 3.33411E-05 3.33859E-05 3.34208E-05 3.34541E-05 3.34873E-05 3.35204E-05 3.35536E-05 3.35867E-05 3.36198E-05 3.3653E-05 3.36861E-05 3.37192E-05 3.37524E-05 3.37855E-05 3.38186E-05 3.38517E-05 3.38849E-05 3.3918E-05 3.39511E-05 3.39843E-05 3.40174E-05 3.40505E-05 3.40837E-05 3.41168E-05 3.41499E-05 3.41831E-05 3.42162E-05 3.42493E-05 3.42824E-05 3.43156E-05 3.43487E-05 3.43818E-05 3.4415E-05 3.44481E-05 3.44812E-05 3.45144E-05 3.45475E-05 3.45806E-05 3.46138E-05 3.46469E-05 3.468E-05 3.47132E-05 3.47463E-05 3.47794E-05 3.48125E-05 3.48457E-05 3.48788E-05 3.49119E-05 3.49451E-05 3.49782E-05 3.50113E-05 3.50445E-05 3.50776E-05 3.51107E-05 3.51439E-05 3.5177E-05 3.52101E-05 3.52432E-05 3.52764E-05 3.53095E-05 3.53426E-05 3.53758E-05 3.54089E-05 3.5442E-05 3.54752E-05 3.55083E-05 3.55414E-05 3.55746E-05 3.56077E-05 3.56408E-05 3.5674E-05 3.57071E-05 3.57402E-05 3.57733E-05 3.58065E-05 3.58396E-05 3.58727E-05 3.59059E-05 3.5939E-05 3.59721E-05 3.60053E-05 3.60384E-05 3.60715E-05 3.61047E-05 3.61378E-05 3.61709E-05 3.62041E-05 3.62372E-05 3.62703E-05 3.63035E-05 3.63366E-05 3.63697E-05 3.64028E-05 3.6436E-05 3.64691E-05 3.65022E-05 3.65354E-05 3.65685E-05 3.66016E-05 3.66348E-05 3.66679E-05 3.6701E-05 3.67342E-05 3.67673E-05 3.68004E-05 3.68336E-05 3.68667E-05 3.68998E-05 3.6933E-05 3.69661E-05 3.69992E-05 3.70323E-05 3.70655E-05 3.70986E-05 3.71317E-05 3.71649E-05 3.7198E-05 3.72311E-05 3.72643E-05 3.72974E-05 3.73305E-05 3.73637E-05 3.73968E-05 3.74299E-05 +-1.07804E-05 -1.03052E-05 -9.63652E-06 -7.78817E-06 7.53348E-08 2.16001E-05 3.93446E-05 4.40344E-05 4.48356E-05 4.49922E-05 4.50535E-05 4.51009E-05 4.51463E-05 4.51915E-05 4.52366E-05 4.52816E-05 4.53267E-05 4.53718E-05 4.54169E-05 4.5462E-05 4.5507E-05 4.55521E-05 4.55972E-05 4.56423E-05 4.56873E-05 4.57324E-05 4.57775E-05 4.58226E-05 4.58677E-05 4.59127E-05 4.59578E-05 4.60029E-05 4.6048E-05 4.60931E-05 4.61381E-05 4.61832E-05 4.62283E-05 4.62734E-05 4.63184E-05 4.63635E-05 4.64086E-05 4.64537E-05 4.64988E-05 4.65438E-05 4.65889E-05 4.6634E-05 4.66791E-05 4.67242E-05 4.67692E-05 4.68143E-05 4.68594E-05 4.69045E-05 4.69495E-05 4.69946E-05 4.70397E-05 4.70848E-05 4.71299E-05 4.71749E-05 4.722E-05 4.72651E-05 4.73102E-05 4.73553E-05 4.74003E-05 4.74454E-05 4.74905E-05 4.75356E-05 4.75807E-05 4.76257E-05 4.76708E-05 4.77159E-05 4.7761E-05 4.7806E-05 4.78511E-05 4.78962E-05 4.79413E-05 4.79864E-05 4.80314E-05 4.80765E-05 4.81216E-05 4.81667E-05 4.82118E-05 4.82568E-05 4.83019E-05 4.8347E-05 4.83921E-05 4.84372E-05 4.84822E-05 4.85273E-05 4.85724E-05 4.86175E-05 4.86626E-05 4.87076E-05 4.87527E-05 4.87978E-05 4.88429E-05 4.88879E-05 4.8933E-05 4.89781E-05 4.90232E-05 4.90683E-05 4.91133E-05 4.91584E-05 4.92035E-05 4.92486E-05 4.92937E-05 4.93387E-05 4.93838E-05 4.94289E-05 4.9474E-05 4.95191E-05 4.95641E-05 4.96092E-05 4.96543E-05 4.96994E-05 4.97445E-05 4.97895E-05 4.98346E-05 4.98797E-05 4.99248E-05 4.99699E-05 5.00149E-05 5.006E-05 5.01051E-05 5.01502E-05 5.01953E-05 5.02403E-05 5.02854E-05 5.03305E-05 5.03756E-05 5.04207E-05 5.04657E-05 5.05108E-05 5.05559E-05 +-1.3409E-05 -1.28155E-05 -1.19821E-05 -9.6838E-06 9.36156E-08 2.69856E-05 4.94728E-05 5.5495E-05 5.65271E-05 5.67282E-05 5.68063E-05 5.68666E-05 5.69242E-05 5.69815E-05 5.70387E-05 5.70959E-05 5.71531E-05 5.72103E-05 5.72675E-05 5.73247E-05 5.73819E-05 5.74391E-05 5.74963E-05 5.75535E-05 5.76107E-05 5.76679E-05 5.77251E-05 5.77823E-05 5.78395E-05 5.78967E-05 5.79539E-05 5.80111E-05 5.80683E-05 5.81256E-05 5.81828E-05 5.824E-05 5.82972E-05 5.83544E-05 5.84116E-05 5.84688E-05 5.8526E-05 5.85832E-05 5.86404E-05 5.86976E-05 5.87548E-05 5.8812E-05 5.88692E-05 5.89264E-05 5.89836E-05 5.90408E-05 5.9098E-05 5.91552E-05 5.92124E-05 5.92696E-05 5.93268E-05 5.9384E-05 5.94412E-05 5.94985E-05 5.95557E-05 5.96129E-05 5.96701E-05 5.97273E-05 5.97845E-05 5.98417E-05 5.98989E-05 5.99561E-05 6.00133E-05 6.00705E-05 6.01277E-05 6.01849E-05 6.02421E-05 6.02993E-05 6.03565E-05 6.04137E-05 6.04709E-05 6.05281E-05 6.05853E-05 6.06425E-05 6.06997E-05 6.0757E-05 6.08142E-05 6.08714E-05 6.09286E-05 6.09858E-05 6.1043E-05 6.11002E-05 6.11574E-05 6.12146E-05 6.12718E-05 6.1329E-05 6.13862E-05 6.14434E-05 6.15006E-05 6.15578E-05 6.1615E-05 6.16722E-05 6.17294E-05 6.17866E-05 6.18438E-05 6.1901E-05 6.19583E-05 6.20155E-05 6.20727E-05 6.21299E-05 6.21871E-05 6.22443E-05 6.23015E-05 6.23587E-05 6.24159E-05 6.24731E-05 6.25303E-05 6.25875E-05 6.26447E-05 6.27019E-05 6.27591E-05 6.28163E-05 6.28735E-05 6.29307E-05 6.29879E-05 6.30452E-05 6.31024E-05 6.31596E-05 6.32168E-05 6.3274E-05 6.33312E-05 6.33884E-05 6.34456E-05 6.35028E-05 6.356E-05 6.36172E-05 6.36744E-05 6.37316E-05 6.37888E-05 +-1.60252E-05 -1.53135E-05 -1.43155E-05 -1.15687E-05 1.11998E-07 3.23383E-05 5.96125E-05 6.70055E-05 6.82765E-05 6.85233E-05 6.86186E-05 6.86918E-05 6.87618E-05 6.88313E-05 6.89008E-05 6.89703E-05 6.90397E-05 6.91092E-05 6.91787E-05 6.92481E-05 6.93176E-05 6.93871E-05 6.94565E-05 6.9526E-05 6.95954E-05 6.96649E-05 6.97344E-05 6.98038E-05 6.98733E-05 6.99428E-05 7.00122E-05 7.00817E-05 7.01512E-05 7.02206E-05 7.02901E-05 7.03595E-05 7.0429E-05 7.04985E-05 7.05679E-05 7.06374E-05 7.07069E-05 7.07763E-05 7.08458E-05 7.09153E-05 7.09847E-05 7.10542E-05 7.11237E-05 7.11931E-05 7.12626E-05 7.1332E-05 7.14015E-05 7.1471E-05 7.15404E-05 7.16099E-05 7.16794E-05 7.17488E-05 7.18183E-05 7.18878E-05 7.19572E-05 7.20267E-05 7.20962E-05 7.21656E-05 7.22351E-05 7.23045E-05 7.2374E-05 7.24435E-05 7.25129E-05 7.25824E-05 7.26519E-05 7.27213E-05 7.27908E-05 7.28603E-05 7.29297E-05 7.29992E-05 7.30687E-05 7.31381E-05 7.32076E-05 7.32771E-05 7.33465E-05 7.3416E-05 7.34854E-05 7.35549E-05 7.36244E-05 7.36938E-05 7.37633E-05 7.38328E-05 7.39022E-05 7.39717E-05 7.40412E-05 7.41106E-05 7.41801E-05 7.42496E-05 7.4319E-05 7.43885E-05 7.4458E-05 7.45274E-05 7.45969E-05 7.46663E-05 7.47358E-05 7.48053E-05 7.48747E-05 7.49442E-05 7.50137E-05 7.50831E-05 7.51526E-05 7.52221E-05 7.52915E-05 7.5361E-05 7.54305E-05 7.54999E-05 7.55694E-05 7.56389E-05 7.57083E-05 7.57778E-05 7.58473E-05 7.59167E-05 7.59862E-05 7.60556E-05 7.61251E-05 7.61946E-05 7.6264E-05 7.63335E-05 7.6403E-05 7.64724E-05 7.65419E-05 7.66114E-05 7.66808E-05 7.67503E-05 7.68198E-05 7.68892E-05 7.69587E-05 7.70282E-05 7.70976E-05 +-1.86309E-05 -1.7801E-05 -1.66387E-05 -1.34443E-05 1.30519E-07 3.76558E-05 6.97518E-05 7.85504E-05 8.00675E-05 8.03614E-05 8.0474E-05 8.05603E-05 8.06428E-05 8.07247E-05 8.08066E-05 8.08884E-05 8.09702E-05 8.10521E-05 8.11339E-05 8.12157E-05 8.12976E-05 8.13794E-05 8.14612E-05 8.1543E-05 8.16249E-05 8.17067E-05 8.17885E-05 8.18704E-05 8.19522E-05 8.2034E-05 8.21159E-05 8.21977E-05 8.22795E-05 8.23614E-05 8.24432E-05 8.2525E-05 8.26068E-05 8.26887E-05 8.27705E-05 8.28523E-05 8.29342E-05 8.3016E-05 8.30978E-05 8.31797E-05 8.32615E-05 8.33433E-05 8.34252E-05 8.3507E-05 8.35888E-05 8.36706E-05 8.37525E-05 8.38343E-05 8.39161E-05 8.3998E-05 8.40798E-05 8.41616E-05 8.42435E-05 8.43253E-05 8.44071E-05 8.4489E-05 8.45708E-05 8.46526E-05 8.47344E-05 8.48163E-05 8.48981E-05 8.49799E-05 8.50618E-05 8.51436E-05 8.52254E-05 8.53073E-05 8.53891E-05 8.54709E-05 8.55528E-05 8.56346E-05 8.57164E-05 8.57982E-05 8.58801E-05 8.59619E-05 8.60437E-05 8.61256E-05 8.62074E-05 8.62892E-05 8.63711E-05 8.64529E-05 8.65347E-05 8.66166E-05 8.66984E-05 8.67802E-05 8.6862E-05 8.69439E-05 8.70257E-05 8.71075E-05 8.71894E-05 8.72712E-05 8.7353E-05 8.74349E-05 8.75167E-05 8.75985E-05 8.76804E-05 8.77622E-05 8.7844E-05 8.79259E-05 8.80077E-05 8.80895E-05 8.81713E-05 8.82532E-05 8.8335E-05 8.84168E-05 8.84987E-05 8.85805E-05 8.86623E-05 8.87442E-05 8.8826E-05 8.89078E-05 8.89897E-05 8.90715E-05 8.91533E-05 8.92352E-05 8.9317E-05 8.93988E-05 8.94807E-05 8.95625E-05 8.96443E-05 8.97261E-05 8.9808E-05 8.98898E-05 8.99716E-05 9.00535E-05 9.01353E-05 9.02171E-05 9.0299E-05 9.03808E-05 9.04626E-05 +-2.12275E-05 -2.02796E-05 -1.8953E-05 -1.53117E-05 1.49202E-07 4.29368E-05 7.98816E-05 9.01186E-05 9.1889E-05 9.22311E-05 9.23614E-05 9.24609E-05 9.2556E-05 9.26503E-05 9.27446E-05 9.28389E-05 9.29332E-05 9.30275E-05 9.31218E-05 9.32161E-05 9.33104E-05 9.34046E-05 9.34989E-05 9.35932E-05 9.36875E-05 9.37818E-05 9.38761E-05 9.39703E-05 9.40646E-05 9.41589E-05 9.42532E-05 9.43475E-05 9.44418E-05 9.4536E-05 9.46303E-05 9.47246E-05 9.48189E-05 9.49132E-05 9.50075E-05 9.51017E-05 9.5196E-05 9.52903E-05 9.53846E-05 9.54789E-05 9.55732E-05 9.56674E-05 9.57617E-05 9.5856E-05 9.59503E-05 9.60446E-05 9.61389E-05 9.62331E-05 9.63274E-05 9.64217E-05 9.6516E-05 9.66103E-05 9.67046E-05 9.67988E-05 9.68931E-05 9.69874E-05 9.70817E-05 9.7176E-05 9.72703E-05 9.73645E-05 9.74588E-05 9.75531E-05 9.76474E-05 9.77417E-05 9.7836E-05 9.79303E-05 9.80245E-05 9.81188E-05 9.82131E-05 9.83074E-05 9.84017E-05 9.8496E-05 9.85902E-05 9.86845E-05 9.87788E-05 9.88731E-05 9.89674E-05 9.90617E-05 9.91559E-05 9.92502E-05 9.93445E-05 9.94388E-05 9.95331E-05 9.96274E-05 9.97217E-05 9.98159E-05 9.99102E-05 0.000100005 0.000100099 0.000100193 0.000100287 0.000100382 0.000100476 0.00010057 0.000100664 0.000100759 0.000100853 0.000100947 0.000101042 0.000101136 0.00010123 0.000101324 0.000101419 0.000101513 0.000101607 0.000101702 0.000101796 0.00010189 0.000101984 0.000102079 0.000102173 0.000102267 0.000102362 0.000102456 0.00010255 0.000102644 0.000102739 0.000102833 0.000102927 0.000103022 0.000103116 0.00010321 0.000103304 0.000103399 0.000103493 0.000103587 0.000103682 0.000103776 0.00010387 +-2.38162E-05 -2.27501E-05 -2.12594E-05 -1.71716E-05 1.68066E-07 4.81807E-05 8.99956E-05 0.000101702 0.000103733 0.000104124 0.000104272 0.000104385 0.000104493 0.0001046 0.000104706 0.000104813 0.00010492 0.000105027 0.000105134 0.00010524 0.000105347 0.000105454 0.000105561 0.000105668 0.000105774 0.000105881 0.000105988 0.000106095 0.000106202 0.000106308 0.000106415 0.000106522 0.000106629 0.000106736 0.000106843 0.000106949 0.000107056 0.000107163 0.00010727 0.000107377 0.000107483 0.00010759 0.000107697 0.000107804 0.000107911 0.000108017 0.000108124 0.000108231 0.000108338 0.000108445 0.000108551 0.000108658 0.000108765 0.000108872 0.000108979 0.000109085 0.000109192 0.000109299 0.000109406 0.000109513 0.00010962 0.000109726 0.000109833 0.00010994 0.000110047 0.000110154 0.00011026 0.000110367 0.000110474 0.000110581 0.000110688 0.000110794 0.000110901 0.000111008 0.000111115 0.000111222 0.000111328 0.000111435 0.000111542 0.000111649 0.000111756 0.000111862 0.000111969 0.000112076 0.000112183 0.00011229 0.000112397 0.000112503 0.00011261 0.000112717 0.000112824 0.000112931 0.000113037 0.000113144 0.000113251 0.000113358 0.000113465 0.000113571 0.000113678 0.000113785 0.000113892 0.000113999 0.000114105 0.000114212 0.000114319 0.000114426 0.000114533 0.000114639 0.000114746 0.000114853 0.00011496 0.000115067 0.000115174 0.00011528 0.000115387 0.000115494 0.000115601 0.000115708 0.000115814 0.000115921 0.000116028 0.000116135 0.000116242 0.000116348 0.000116455 0.000116562 0.000116669 0.000116776 0.000116882 0.000116989 0.000117096 0.000117203 0.00011731 +-2.63976E-05 -2.52134E-05 -2.35586E-05 -1.90246E-05 1.87122E-07 5.33869E-05 0.000100089 0.000113295 0.000115593 0.000116035 0.000116201 0.000116327 0.000116448 0.000116567 0.000116686 0.000116806 0.000116925 0.000117045 0.000117164 0.000117283 0.000117403 0.000117522 0.000117642 0.000117761 0.00011788 0.000118 0.000118119 0.000118239 0.000118358 0.000118477 0.000118597 0.000118716 0.000118836 0.000118955 0.000119074 0.000119194 0.000119313 0.000119433 0.000119552 0.000119671 0.000119791 0.00011991 0.000120029 0.000120149 0.000120268 0.000120388 0.000120507 0.000120626 0.000120746 0.000120865 0.000120985 0.000121104 0.000121223 0.000121343 0.000121462 0.000121582 0.000121701 0.00012182 0.00012194 0.000122059 0.000122179 0.000122298 0.000122417 0.000122537 0.000122656 0.000122776 0.000122895 0.000123014 0.000123134 0.000123253 0.000123373 0.000123492 0.000123611 0.000123731 0.00012385 0.000123969 0.000124089 0.000124208 0.000124328 0.000124447 0.000124566 0.000124686 0.000124805 0.000124925 0.000125044 0.000125163 0.000125283 0.000125402 0.000125522 0.000125641 0.00012576 0.00012588 0.000125999 0.000126119 0.000126238 0.000126357 0.000126477 0.000126596 0.000126716 0.000126835 0.000126954 0.000127074 0.000127193 0.000127313 0.000127432 0.000127551 0.000127671 0.00012779 0.000127909 0.000128029 0.000128148 0.000128268 0.000128387 0.000128506 0.000128626 0.000128745 0.000128865 0.000128984 0.000129103 0.000129223 0.000129342 0.000129462 0.000129581 0.0001297 0.00012982 0.000129939 0.000130059 0.000130178 0.000130297 0.000130417 0.000130536 0.000130656 0.000130775 +-2.89724E-05 -2.76702E-05 -2.58513E-05 -2.08712E-05 2.06382E-07 5.85552E-05 0.000110158 0.000124894 0.000127464 0.000127958 0.000128142 0.000128282 0.000128415 0.000128547 0.000128679 0.000128811 0.000128943 0.000129075 0.000129207 0.00012934 0.000129472 0.000129604 0.000129736 0.000129868 0.00013 0.000130132 0.000130264 0.000130396 0.000130528 0.00013066 0.000130792 0.000130924 0.000131056 0.000131188 0.00013132 0.000131452 0.000131584 0.000131716 0.000131848 0.00013198 0.000132112 0.000132244 0.000132376 0.000132508 0.00013264 0.000132772 0.000132904 0.000133036 0.000133168 0.0001333 0.000133432 0.000133564 0.000133697 0.000133829 0.000133961 0.000134093 0.000134225 0.000134357 0.000134489 0.000134621 0.000134753 0.000134885 0.000135017 0.000135149 0.000135281 0.000135413 0.000135545 0.000135677 0.000135809 0.000135941 0.000136073 0.000136205 0.000136337 0.000136469 0.000136601 0.000136733 0.000136865 0.000136997 0.000137129 0.000137261 0.000137393 0.000137525 0.000137657 0.000137789 0.000137922 0.000138054 0.000138186 0.000138318 0.00013845 0.000138582 0.000138714 0.000138846 0.000138978 0.00013911 0.000139242 0.000139374 0.000139506 0.000139638 0.00013977 0.000139902 0.000140034 0.000140166 0.000140298 0.00014043 0.000140562 0.000140694 0.000140826 0.000140958 0.00014109 0.000141222 0.000141354 0.000141486 0.000141618 0.00014175 0.000141882 0.000142015 0.000142147 0.000142279 0.000142411 0.000142543 0.000142675 0.000142807 0.000142939 0.000143071 0.000143203 0.000143335 0.000143467 0.000143599 0.000143731 0.000143863 0.000143995 0.000144127 0.000144259 +-3.15411E-05 -3.0121E-05 -2.8138E-05 -2.27117E-05 2.25852E-07 6.36857E-05 0.000120201 0.000136493 0.000139344 0.000139889 0.000140092 0.000140246 0.000140392 0.000140536 0.000140681 0.000140826 0.000140971 0.000141115 0.00014126 0.000141405 0.000141549 0.000141694 0.000141839 0.000141984 0.000142128 0.000142273 0.000142418 0.000142562 0.000142707 0.000142852 0.000142997 0.000143141 0.000143286 0.000143431 0.000143575 0.00014372 0.000143865 0.00014401 0.000144154 0.000144299 0.000144444 0.000144588 0.000144733 0.000144878 0.000145022 0.000145167 0.000145312 0.000145457 0.000145601 0.000145746 0.000145891 0.000146035 0.00014618 0.000146325 0.00014647 0.000146614 0.000146759 0.000146904 0.000147048 0.000147193 0.000147338 0.000147483 0.000147627 0.000147772 0.000147917 0.000148061 0.000148206 0.000148351 0.000148496 0.00014864 0.000148785 0.00014893 0.000149074 0.000149219 0.000149364 0.000149509 0.000149653 0.000149798 0.000149943 0.000150087 0.000150232 0.000150377 0.000150522 0.000150666 0.000150811 0.000150956 0.0001511 0.000151245 0.00015139 0.000151535 0.000151679 0.000151824 0.000151969 0.000152113 0.000152258 0.000152403 0.000152548 0.000152692 0.000152837 0.000152982 0.000153126 0.000153271 0.000153416 0.000153561 0.000153705 0.00015385 0.000153995 0.000154139 0.000154284 0.000154429 0.000154574 0.000154718 0.000154863 0.000155008 0.000155152 0.000155297 0.000155442 0.000155587 0.000155731 0.000155876 0.000156021 0.000156165 0.00015631 0.000156455 0.0001566 0.000156744 0.000156889 0.000157034 0.000157178 0.000157323 0.000157468 0.000157613 0.000157757 +-3.41042E-05 -3.25662E-05 -3.0419E-05 -2.45465E-05 2.45538E-07 6.87782E-05 0.000130213 0.00014809 0.000151227 0.000151826 0.000152048 0.000152215 0.000152374 0.000152531 0.000152689 0.000152846 0.000153004 0.000153161 0.000153318 0.000153476 0.000153633 0.000153791 0.000153948 0.000154106 0.000154263 0.00015442 0.000154578 0.000154735 0.000154893 0.00015505 0.000155208 0.000155365 0.000155522 0.00015568 0.000155837 0.000155995 0.000156152 0.00015631 0.000156467 0.000156624 0.000156782 0.000156939 0.000157097 0.000157254 0.000157412 0.000157569 0.000157726 0.000157884 0.000158041 0.000158199 0.000158356 0.000158514 0.000158671 0.000158829 0.000158986 0.000159143 0.000159301 0.000159458 0.000159616 0.000159773 0.000159931 0.000160088 0.000160245 0.000160403 0.00016056 0.000160718 0.000160875 0.000161033 0.00016119 0.000161347 0.000161505 0.000161662 0.00016182 0.000161977 0.000162135 0.000162292 0.000162449 0.000162607 0.000162764 0.000162922 0.000163079 0.000163237 0.000163394 0.000163551 0.000163709 0.000163866 0.000164024 0.000164181 0.000164339 0.000164496 0.000164653 0.000164811 0.000164968 0.000165126 0.000165283 0.000165441 0.000165598 0.000165756 0.000165913 0.00016607 0.000166228 0.000166385 0.000166543 0.0001667 0.000166858 0.000167015 0.000167172 0.00016733 0.000167487 0.000167645 0.000167802 0.00016796 0.000168117 0.000168274 0.000168432 0.000168589 0.000168747 0.000168904 0.000169062 0.000169219 0.000169376 0.000169534 0.000169691 0.000169849 0.000170006 0.000170164 0.000170321 0.000170479 0.000170636 0.000170793 0.000170951 0.000171108 0.000171266 +-3.66621E-05 -3.50062E-05 -3.26948E-05 -2.6376E-05 2.65445E-07 7.38331E-05 0.000140194 0.000159682 0.000163112 0.000163766 0.000164007 0.000164187 0.000164359 0.000164529 0.000164699 0.00016487 0.00016504 0.00016521 0.00016538 0.00016555 0.00016572 0.000165891 0.000166061 0.000166231 0.000166401 0.000166571 0.000166742 0.000166912 0.000167082 0.000167252 0.000167422 0.000167592 0.000167763 0.000167933 0.000168103 0.000168273 0.000168443 0.000168614 0.000168784 0.000168954 0.000169124 0.000169294 0.000169464 0.000169635 0.000169805 0.000169975 0.000170145 0.000170315 0.000170486 0.000170656 0.000170826 0.000170996 0.000171166 0.000171336 0.000171507 0.000171677 0.000171847 0.000172017 0.000172187 0.000172358 0.000172528 0.000172698 0.000172868 0.000173038 0.000173209 0.000173379 0.000173549 0.000173719 0.000173889 0.000174059 0.00017423 0.0001744 0.00017457 0.00017474 0.00017491 0.000175081 0.000175251 0.000175421 0.000175591 0.000175761 0.000175931 0.000176102 0.000176272 0.000176442 0.000176612 0.000176782 0.000176953 0.000177123 0.000177293 0.000177463 0.000177633 0.000177804 0.000177974 0.000178144 0.000178314 0.000178484 0.000178654 0.000178825 0.000178995 0.000179165 0.000179335 0.000179505 0.000179676 0.000179846 0.000180016 0.000180186 0.000180356 0.000180526 0.000180697 0.000180867 0.000181037 0.000181207 0.000181377 0.000181548 0.000181718 0.000181888 0.000182058 0.000182228 0.000182399 0.000182569 0.000182739 0.000182909 0.000183079 0.000183249 0.00018342 0.00018359 0.00018376 0.00018393 0.0001841 0.000184271 0.000184441 0.000184611 0.000184781 +-3.92151E-05 -3.74413E-05 -3.49659E-05 -2.82003E-05 2.85576E-07 7.88504E-05 0.000150141 0.000171267 0.000174997 0.000175706 0.000175966 0.00017616 0.000176345 0.000176528 0.000176711 0.000176894 0.000177077 0.00017726 0.000177443 0.000177626 0.000177809 0.000177992 0.000178175 0.000178358 0.000178541 0.000178723 0.000178906 0.000179089 0.000179272 0.000179455 0.000179638 0.000179821 0.000180004 0.000180187 0.00018037 0.000180553 0.000180736 0.000180919 0.000181102 0.000181285 0.000181468 0.000181651 0.000181834 0.000182017 0.0001822 0.000182383 0.000182566 0.000182749 0.000182932 0.000183115 0.000183298 0.000183481 0.000183664 0.000183847 0.000184029 0.000184212 0.000184395 0.000184578 0.000184761 0.000184944 0.000185127 0.00018531 0.000185493 0.000185676 0.000185859 0.000186042 0.000186225 0.000186408 0.000186591 0.000186774 0.000186957 0.00018714 0.000187323 0.000187506 0.000187689 0.000187872 0.000188055 0.000188238 0.000188421 0.000188604 0.000188787 0.00018897 0.000189153 0.000189335 0.000189518 0.000189701 0.000189884 0.000190067 0.00019025 0.000190433 0.000190616 0.000190799 0.000190982 0.000191165 0.000191348 0.000191531 0.000191714 0.000191897 0.00019208 0.000192263 0.000192446 0.000192629 0.000192812 0.000192995 0.000193178 0.000193361 0.000193544 0.000193727 0.00019391 0.000194093 0.000194276 0.000194459 0.000194641 0.000194824 0.000195007 0.00019519 0.000195373 0.000195556 0.000195739 0.000195922 0.000196105 0.000196288 0.000196471 0.000196654 0.000196837 0.00019702 0.000197203 0.000197386 0.000197569 0.000197752 0.000197935 0.000198118 0.000198301 +-4.17635E-05 -3.98718E-05 -3.72321E-05 -3.00196E-05 3.05935E-07 8.38303E-05 0.000160054 0.000182844 0.000186879 0.000187646 0.000187924 0.000188132 0.00018833 0.000188526 0.000188721 0.000188917 0.000189113 0.000189309 0.000189505 0.0001897 0.000189896 0.000190092 0.000190288 0.000190483 0.000190679 0.000190875 0.000191071 0.000191266 0.000191462 0.000191658 0.000191854 0.00019205 0.000192245 0.000192441 0.000192637 0.000192833 0.000193028 0.000193224 0.00019342 0.000193616 0.000193811 0.000194007 0.000194203 0.000194399 0.000194595 0.00019479 0.000194986 0.000195182 0.000195378 0.000195573 0.000195769 0.000195965 0.000196161 0.000196357 0.000196552 0.000196748 0.000196944 0.00019714 0.000197335 0.000197531 0.000197727 0.000197923 0.000198118 0.000198314 0.00019851 0.000198706 0.000198902 0.000199097 0.000199293 0.000199489 0.000199685 0.00019988 0.000200076 0.000200272 0.000200468 0.000200663 0.000200859 0.000201055 0.000201251 0.000201447 0.000201642 0.000201838 0.000202034 0.00020223 0.000202425 0.000202621 0.000202817 0.000203013 0.000203209 0.000203404 0.0002036 0.000203796 0.000203992 0.000204187 0.000204383 0.000204579 0.000204775 0.00020497 0.000205166 0.000205362 0.000205558 0.000205754 0.000205949 0.000206145 0.000206341 0.000206537 0.000206732 0.000206928 0.000207124 0.00020732 0.000207516 0.000207711 0.000207907 0.000208103 0.000208299 0.000208494 0.00020869 0.000208886 0.000209082 0.000209277 0.000209473 0.000209669 0.000209865 0.000210061 0.000210256 0.000210452 0.000210648 0.000210844 0.000211039 0.000211235 0.000211431 0.000211627 0.000211822 +-4.43075E-05 -4.22979E-05 -3.94939E-05 -3.18342E-05 3.26523E-07 8.87732E-05 0.000169931 0.00019441 0.000198758 0.000199582 0.00019988 0.000200101 0.000200312 0.000200521 0.000200729 0.000200938 0.000201147 0.000201355 0.000201564 0.000201772 0.000201981 0.00020219 0.000202398 0.000202607 0.000202815 0.000203024 0.000203233 0.000203441 0.00020365 0.000203858 0.000204067 0.000204276 0.000204484 0.000204693 0.000204901 0.00020511 0.000205319 0.000205527 0.000205736 0.000205944 0.000206153 0.000206362 0.00020657 0.000206779 0.000206987 0.000207196 0.000207405 0.000207613 0.000207822 0.00020803 0.000208239 0.000208448 0.000208656 0.000208865 0.000209073 0.000209282 0.000209491 0.000209699 0.000209908 0.000210116 0.000210325 0.000210534 0.000210742 0.000210951 0.000211159 0.000211368 0.000211577 0.000211785 0.000211994 0.000212202 0.000212411 0.00021262 0.000212828 0.000213037 0.000213245 0.000213454 0.000213663 0.000213871 0.00021408 0.000214288 0.000214497 0.000214706 0.000214914 0.000215123 0.000215331 0.00021554 0.000215749 0.000215957 0.000216166 0.000216374 0.000216583 0.000216792 0.000217 0.000217209 0.000217417 0.000217626 0.000217835 0.000218043 0.000218252 0.00021846 0.000218669 0.000218878 0.000219086 0.000219295 0.000219503 0.000219712 0.000219921 0.000220129 0.000220338 0.000220546 0.000220755 0.000220964 0.000221172 0.000221381 0.000221589 0.000221798 0.000222007 0.000222215 0.000222424 0.000222632 0.000222841 0.00022305 0.000223258 0.000223467 0.000223675 0.000223884 0.000224093 0.000224301 0.00022451 0.000224718 0.000224927 0.000225136 0.000225344 +-4.68472E-05 -4.47198E-05 -4.17515E-05 -3.36442E-05 3.47342E-07 9.36794E-05 0.00017977 0.000205964 0.000210631 0.000211514 0.000211831 0.000212067 0.00021229 0.000212512 0.000212733 0.000212955 0.000213176 0.000213398 0.000213619 0.000213841 0.000214062 0.000214284 0.000214505 0.000214726 0.000214948 0.000215169 0.000215391 0.000215612 0.000215834 0.000216055 0.000216277 0.000216498 0.000216719 0.000216941 0.000217162 0.000217384 0.000217605 0.000217827 0.000218048 0.00021827 0.000218491 0.000218712 0.000218934 0.000219155 0.000219377 0.000219598 0.00021982 0.000220041 0.000220263 0.000220484 0.000220705 0.000220927 0.000221148 0.00022137 0.000221591 0.000221813 0.000222034 0.000222256 0.000222477 0.000222698 0.00022292 0.000223141 0.000223363 0.000223584 0.000223806 0.000224027 0.000224249 0.00022447 0.000224691 0.000224913 0.000225134 0.000225356 0.000225577 0.000225799 0.00022602 0.000226242 0.000226463 0.000226684 0.000226906 0.000227127 0.000227349 0.00022757 0.000227792 0.000228013 0.000228235 0.000228456 0.000228677 0.000228899 0.00022912 0.000229342 0.000229563 0.000229785 0.000230006 0.000230228 0.000230449 0.00023067 0.000230892 0.000231113 0.000231335 0.000231556 0.000231778 0.000231999 0.000232221 0.000232442 0.000232663 0.000232885 0.000233106 0.000233328 0.000233549 0.000233771 0.000233992 0.000234214 0.000234435 0.000234656 0.000234878 0.000235099 0.000235321 0.000235542 0.000235764 0.000235985 0.000236207 0.000236428 0.00023665 0.000236871 0.000237092 0.000237314 0.000237535 0.000237757 0.000237978 0.0002382 0.000238421 0.000238643 0.000238864 +-4.9383E-05 -4.71378E-05 -4.40046E-05 -3.54497E-05 3.68394E-07 9.85491E-05 0.000189571 0.000217506 0.000222497 0.00022344 0.000223778 0.000224027 0.000224263 0.000224498 0.000224732 0.000224967 0.000225201 0.000225435 0.000225669 0.000225904 0.000226138 0.000226372 0.000226607 0.000226841 0.000227075 0.00022731 0.000227544 0.000227778 0.000228013 0.000228247 0.000228481 0.000228715 0.00022895 0.000229184 0.000229418 0.000229653 0.000229887 0.000230121 0.000230356 0.00023059 0.000230824 0.000231058 0.000231293 0.000231527 0.000231761 0.000231996 0.00023223 0.000232464 0.000232699 0.000232933 0.000233167 0.000233402 0.000233636 0.00023387 0.000234104 0.000234339 0.000234573 0.000234807 0.000235042 0.000235276 0.00023551 0.000235745 0.000235979 0.000236213 0.000236448 0.000236682 0.000236916 0.00023715 0.000237385 0.000237619 0.000237853 0.000238088 0.000238322 0.000238556 0.000238791 0.000239025 0.000239259 0.000239494 0.000239728 0.000239962 0.000240196 0.000240431 0.000240665 0.000240899 0.000241134 0.000241368 0.000241602 0.000241837 0.000242071 0.000242305 0.00024254 0.000242774 0.000243008 0.000243242 0.000243477 0.000243711 0.000243945 0.00024418 0.000244414 0.000244648 0.000244883 0.000245117 0.000245351 0.000245586 0.00024582 0.000246054 0.000246288 0.000246523 0.000246757 0.000246991 0.000247226 0.00024746 0.000247694 0.000247929 0.000248163 0.000248397 0.000248632 0.000248866 0.0002491 0.000249335 0.000249569 0.000249803 0.000250037 0.000250272 0.000250506 0.00025074 0.000250975 0.000251209 0.000251443 0.000251678 0.000251912 0.000252146 0.000252381 +-5.1915E-05 -4.95519E-05 -4.62542E-05 -3.72509E-05 3.89679E-07 0.000103383 0.000199334 0.000229033 0.000234356 0.00023536 0.000235717 0.00023598 0.00023623 0.000236477 0.000236725 0.000236972 0.000237219 0.000237466 0.000237713 0.000237961 0.000238208 0.000238455 0.000238702 0.000238949 0.000239197 0.000239444 0.000239691 0.000239938 0.000240185 0.000240432 0.00024068 0.000240927 0.000241174 0.000241421 0.000241668 0.000241916 0.000242163 0.00024241 0.000242657 0.000242904 0.000243151 0.000243399 0.000243646 0.000243893 0.00024414 0.000244387 0.000244635 0.000244882 0.000245129 0.000245376 0.000245623 0.00024587 0.000246118 0.000246365 0.000246612 0.000246859 0.000247106 0.000247354 0.000247601 0.000247848 0.000248095 0.000248342 0.00024859 0.000248837 0.000249084 0.000249331 0.000249578 0.000249825 0.000250073 0.00025032 0.000250567 0.000250814 0.000251061 0.000251309 0.000251556 0.000251803 0.00025205 0.000252297 0.000252544 0.000252792 0.000253039 0.000253286 0.000253533 0.00025378 0.000254028 0.000254275 0.000254522 0.000254769 0.000255016 0.000255263 0.000255511 0.000255758 0.000256005 0.000256252 0.000256499 0.000256747 0.000256994 0.000257241 0.000257488 0.000257735 0.000257983 0.00025823 0.000258477 0.000258724 0.000258971 0.000259218 0.000259466 0.000259713 0.00025996 0.000260207 0.000260454 0.000260702 0.000260949 0.000261196 0.000261443 0.00026169 0.000261937 0.000262185 0.000262432 0.000262679 0.000262926 0.000263173 0.000263421 0.000263668 0.000263915 0.000264162 0.000264409 0.000264657 0.000264904 0.000265151 0.000265398 0.000265645 0.000265892 +-5.44433E-05 -5.19624E-05 -4.85E-05 -3.90478E-05 4.11199E-07 0.00010818 0.000209056 0.000240545 0.000246207 0.000247273 0.00024765 0.000247927 0.000248189 0.00024845 0.00024871 0.00024897 0.00024923 0.00024949 0.00024975 0.00025001 0.00025027 0.00025053 0.000250791 0.000251051 0.000251311 0.000251571 0.000251831 0.000252091 0.000252351 0.000252611 0.000252871 0.000253131 0.000253391 0.000253651 0.000253911 0.000254171 0.000254432 0.000254692 0.000254952 0.000255212 0.000255472 0.000255732 0.000255992 0.000256252 0.000256512 0.000256772 0.000257032 0.000257292 0.000257552 0.000257813 0.000258073 0.000258333 0.000258593 0.000258853 0.000259113 0.000259373 0.000259633 0.000259893 0.000260153 0.000260413 0.000260673 0.000260933 0.000261193 0.000261454 0.000261714 0.000261974 0.000262234 0.000262494 0.000262754 0.000263014 0.000263274 0.000263534 0.000263794 0.000264054 0.000264314 0.000264574 0.000264834 0.000265095 0.000265355 0.000265615 0.000265875 0.000266135 0.000266395 0.000266655 0.000266915 0.000267175 0.000267435 0.000267695 0.000267955 0.000268215 0.000268475 0.000268736 0.000268996 0.000269256 0.000269516 0.000269776 0.000270036 0.000270296 0.000270556 0.000270816 0.000271076 0.000271336 0.000271596 0.000271856 0.000272116 0.000272377 0.000272637 0.000272897 0.000273157 0.000273417 0.000273677 0.000273937 0.000274197 0.000274457 0.000274717 0.000274977 0.000275237 0.000275497 0.000275758 0.000276018 0.000276278 0.000276538 0.000276798 0.000277058 0.000277318 0.000277578 0.000277838 0.000278098 0.000278358 0.000278618 0.000278878 0.000279138 0.000279399 +-5.69681E-05 -5.43694E-05 -5.07422E-05 -4.08407E-05 4.32953E-07 0.000112943 0.000218739 0.000252041 0.000258048 0.000259177 0.000259574 0.000259865 0.000260141 0.000260414 0.000260687 0.00026096 0.000261233 0.000261506 0.000261779 0.000262052 0.000262325 0.000262598 0.000262871 0.000263144 0.000263417 0.00026369 0.000263963 0.000264236 0.000264509 0.000264782 0.000265055 0.000265328 0.000265601 0.000265874 0.000266147 0.00026642 0.000266693 0.000266966 0.000267238 0.000267511 0.000267784 0.000268057 0.00026833 0.000268603 0.000268876 0.000269149 0.000269422 0.000269695 0.000269968 0.000270241 0.000270514 0.000270787 0.00027106 0.000271333 0.000271606 0.000271879 0.000272152 0.000272425 0.000272698 0.000272971 0.000273244 0.000273517 0.00027379 0.000274063 0.000274336 0.000274609 0.000274882 0.000275155 0.000275428 0.000275701 0.000275974 0.000276247 0.00027652 0.000276792 0.000277065 0.000277338 0.000277611 0.000277884 0.000278157 0.00027843 0.000278703 0.000278976 0.000279249 0.000279522 0.000279795 0.000280068 0.000280341 0.000280614 0.000280887 0.00028116 0.000281433 0.000281706 0.000281979 0.000282252 0.000282525 0.000282798 0.000283071 0.000283344 0.000283617 0.00028389 0.000284163 0.000284436 0.000284709 0.000284982 0.000285255 0.000285528 0.000285801 0.000286074 0.000286346 0.000286619 0.000286892 0.000287165 0.000287438 0.000287711 0.000287984 0.000288257 0.00028853 0.000288803 0.000289076 0.000289349 0.000289622 0.000289895 0.000290168 0.000290441 0.000290714 0.000290987 0.00029126 0.000291533 0.000291806 0.000292079 0.000292352 0.000292625 0.000292898 +-5.94895E-05 -5.6773E-05 -5.29809E-05 -4.26296E-05 4.54944E-07 0.00011767 0.000228381 0.000263521 0.000269879 0.000271074 0.000271492 0.000271797 0.000272085 0.000272372 0.000272657 0.000272943 0.000273229 0.000273515 0.000273801 0.000274087 0.000274373 0.000274659 0.000274944 0.00027523 0.000275516 0.000275802 0.000276088 0.000276374 0.00027666 0.000276946 0.000277231 0.000277517 0.000277803 0.000278089 0.000278375 0.000278661 0.000278947 0.000279233 0.000279518 0.000279804 0.00028009 0.000280376 0.000280662 0.000280948 0.000281234 0.00028152 0.000281806 0.000282091 0.000282377 0.000282663 0.000282949 0.000283235 0.000283521 0.000283807 0.000284093 0.000284378 0.000284664 0.00028495 0.000285236 0.000285522 0.000285808 0.000286094 0.00028638 0.000286665 0.000286951 0.000287237 0.000287523 0.000287809 0.000288095 0.000288381 0.000288667 0.000288952 0.000289238 0.000289524 0.00028981 0.000290096 0.000290382 0.000290668 0.000290954 0.000291239 0.000291525 0.000291811 0.000292097 0.000292383 0.000292669 0.000292955 0.000293241 0.000293526 0.000293812 0.000294098 0.000294384 0.00029467 0.000294956 0.000295242 0.000295528 0.000295813 0.000296099 0.000296385 0.000296671 0.000296957 0.000297243 0.000297529 0.000297815 0.0002981 0.000298386 0.000298672 0.000298958 0.000299244 0.00029953 0.000299816 0.000300102 0.000300388 0.000300673 0.000300959 0.000301245 0.000301531 0.000301817 0.000302103 0.000302389 0.000302675 0.00030296 0.000303246 0.000303532 0.000303818 0.000304104 0.00030439 0.000304676 0.000304962 0.000305247 0.000305533 0.000305819 0.000306105 0.000306391 +-6.20076E-05 -5.91733E-05 -5.52162E-05 -4.44145E-05 4.77169E-07 0.000122362 0.000237982 0.000274983 0.000281701 0.000282959 0.000283397 0.000283716 0.000284018 0.000284317 0.000284616 0.000284915 0.000285214 0.000285513 0.000285811 0.00028611 0.000286409 0.000286708 0.000287007 0.000287305 0.000287604 0.000287903 0.000288202 0.0002885 0.000288799 0.000289098 0.000289397 0.000289696 0.000289994 0.000290293 0.000290592 0.000290891 0.00029119 0.000291488 0.000291787 0.000292086 0.000292385 0.000292684 0.000292982 0.000293281 0.00029358 0.000293879 0.000294178 0.000294476 0.000294775 0.000295074 0.000295373 0.000295671 0.00029597 0.000296269 0.000296568 0.000296867 0.000297165 0.000297464 0.000297763 0.000298062 0.000298361 0.000298659 0.000298958 0.000299257 0.000299556 0.000299855 0.000300153 0.000300452 0.000300751 0.00030105 0.000301349 0.000301647 0.000301946 0.000302245 0.000302544 0.000302842 0.000303141 0.00030344 0.000303739 0.000304038 0.000304336 0.000304635 0.000304934 0.000305233 0.000305532 0.00030583 0.000306129 0.000306428 0.000306727 0.000307026 0.000307324 0.000307623 0.000307922 0.000308221 0.00030852 0.000308818 0.000309117 0.000309416 0.000309715 0.000310013 0.000310312 0.000310611 0.00031091 0.000311209 0.000311507 0.000311806 0.000312105 0.000312404 0.000312703 0.000313001 0.0003133 0.000313599 0.000313898 0.000314197 0.000314495 0.000314794 0.000315093 0.000315392 0.000315691 0.000315989 0.000316288 0.000316587 0.000316886 0.000317184 0.000317483 0.000317782 0.000318081 0.00031838 0.000318678 0.000318977 0.000319276 0.000319575 0.000319874 +-6.45226E-05 -6.15705E-05 -5.74482E-05 -4.61956E-05 4.99629E-07 0.00012702 0.000247541 0.000286427 0.00029351 0.000294834 0.000295293 0.000295626 0.000295941 0.000296253 0.000296565 0.000296877 0.000297188 0.0002975 0.000297812 0.000298123 0.000298435 0.000298747 0.000299059 0.00029937 0.000299682 0.000299994 0.000300305 0.000300617 0.000300929 0.000301241 0.000301552 0.000301864 0.000302176 0.000302487 0.000302799 0.000303111 0.000303423 0.000303734 0.000304046 0.000304358 0.000304669 0.000304981 0.000305293 0.000305605 0.000305916 0.000306228 0.00030654 0.000306851 0.000307163 0.000307475 0.000307787 0.000308098 0.00030841 0.000308722 0.000309033 0.000309345 0.000309657 0.000309969 0.00031028 0.000310592 0.000310904 0.000311215 0.000311527 0.000311839 0.00031215 0.000312462 0.000312774 0.000313086 0.000313397 0.000313709 0.000314021 0.000314332 0.000314644 0.000314956 0.000315268 0.000315579 0.000315891 0.000316203 0.000316514 0.000316826 0.000317138 0.00031745 0.000317761 0.000318073 0.000318385 0.000318696 0.000319008 0.00031932 0.000319632 0.000319943 0.000320255 0.000320567 0.000320878 0.00032119 0.000321502 0.000321814 0.000322125 0.000322437 0.000322749 0.00032306 0.000323372 0.000323684 0.000323996 0.000324307 0.000324619 0.000324931 0.000325242 0.000325554 0.000325866 0.000326178 0.000326489 0.000326801 0.000327113 0.000327424 0.000327736 0.000328048 0.000328359 0.000328671 0.000328983 0.000329295 0.000329606 0.000329918 0.00033023 0.000330541 0.000330853 0.000331165 0.000331477 0.000331788 0.0003321 0.000332412 0.000332723 0.000333035 0.000333347 +-6.70344E-05 -6.39646E-05 -5.9677E-05 -4.7973E-05 5.22325E-07 0.000131645 0.000257058 0.000297852 0.000305307 0.000306698 0.000307178 0.000307525 0.000307853 0.000308178 0.000308503 0.000308828 0.000309152 0.000309477 0.000309802 0.000310126 0.000310451 0.000310776 0.0003111 0.000311425 0.000311749 0.000312074 0.000312399 0.000312723 0.000313048 0.000313373 0.000313697 0.000314022 0.000314347 0.000314671 0.000314996 0.00031532 0.000315645 0.00031597 0.000316294 0.000316619 0.000316944 0.000317268 0.000317593 0.000317918 0.000318242 0.000318567 0.000318891 0.000319216 0.000319541 0.000319865 0.00032019 0.000320515 0.000320839 0.000321164 0.000321488 0.000321813 0.000322138 0.000322462 0.000322787 0.000323112 0.000323436 0.000323761 0.000324086 0.00032441 0.000324735 0.000325059 0.000325384 0.000325709 0.000326033 0.000326358 0.000326683 0.000327007 0.000327332 0.000327657 0.000327981 0.000328306 0.00032863 0.000328955 0.00032928 0.000329604 0.000329929 0.000330254 0.000330578 0.000330903 0.000331228 0.000331552 0.000331877 0.000332201 0.000332526 0.000332851 0.000333175 0.0003335 0.000333825 0.000334149 0.000334474 0.000334799 0.000335123 0.000335448 0.000335772 0.000336097 0.000336422 0.000336746 0.000337071 0.000337396 0.00033772 0.000338045 0.00033837 0.000338694 0.000339019 0.000339343 0.000339668 0.000339993 0.000340317 0.000340642 0.000340967 0.000341291 0.000341616 0.000341941 0.000342265 0.00034259 0.000342914 0.000343239 0.000343564 0.000343888 0.000344213 0.000344538 0.000344862 0.000345187 0.000345512 0.000345836 0.000346161 0.000346486 0.00034681 +-6.95433E-05 -6.63557E-05 -6.19028E-05 -4.97467E-05 5.45255E-07 0.000136235 0.000266533 0.000309258 0.000317091 0.000318551 0.000319052 0.000319413 0.000319754 0.000320093 0.00032043 0.000320768 0.000321105 0.000321443 0.00032178 0.000322118 0.000322456 0.000322793 0.000323131 0.000323468 0.000323806 0.000324143 0.000324481 0.000324818 0.000325156 0.000325494 0.000325831 0.000326169 0.000326506 0.000326844 0.000327181 0.000327519 0.000327857 0.000328194 0.000328532 0.000328869 0.000329207 0.000329544 0.000329882 0.00033022 0.000330557 0.000330895 0.000331232 0.00033157 0.000331907 0.000332245 0.000332582 0.00033292 0.000333258 0.000333595 0.000333933 0.00033427 0.000334608 0.000334945 0.000335283 0.000335621 0.000335958 0.000336296 0.000336633 0.000336971 0.000337308 0.000337646 0.000337983 0.000338321 0.000338659 0.000338996 0.000339334 0.000339671 0.000340009 0.000340346 0.000340684 0.000341022 0.000341359 0.000341697 0.000342034 0.000342372 0.000342709 0.000343047 0.000343385 0.000343722 0.00034406 0.000344397 0.000344735 0.000345072 0.00034541 0.000345747 0.000346085 0.000346423 0.00034676 0.000347098 0.000347435 0.000347773 0.00034811 0.000348448 0.000348786 0.000349123 0.000349461 0.000349798 0.000350136 0.000350473 0.000350811 0.000351148 0.000351486 0.000351824 0.000352161 0.000352499 0.000352836 0.000353174 0.000353511 0.000353849 0.000354187 0.000354524 0.000354862 0.000355199 0.000355537 0.000355874 0.000356212 0.00035655 0.000356887 0.000357225 0.000357562 0.0003579 0.000358237 0.000358575 0.000358912 0.00035925 0.000359588 0.000359925 0.000360263 +-7.20492E-05 -6.87439E-05 -6.41255E-05 -5.15167E-05 5.68421E-07 0.000140792 0.000275965 0.000320646 0.000328863 0.000330392 0.000330915 0.00033129 0.000331644 0.000331995 0.000332346 0.000332696 0.000333047 0.000333397 0.000333748 0.000334098 0.000334449 0.000334799 0.00033515 0.0003355 0.000335851 0.000336201 0.000336552 0.000336902 0.000337253 0.000337603 0.000337954 0.000338304 0.000338655 0.000339005 0.000339356 0.000339706 0.000340057 0.000340407 0.000340758 0.000341108 0.000341459 0.000341809 0.00034216 0.00034251 0.000342861 0.000343211 0.000343562 0.000343912 0.000344263 0.000344613 0.000344964 0.000345314 0.000345665 0.000346015 0.000346366 0.000346716 0.000347067 0.000347417 0.000347768 0.000348118 0.000348468 0.000348819 0.000349169 0.00034952 0.00034987 0.000350221 0.000350571 0.000350922 0.000351272 0.000351623 0.000351973 0.000352324 0.000352674 0.000353025 0.000353375 0.000353726 0.000354076 0.000354427 0.000354777 0.000355128 0.000355478 0.000355829 0.000356179 0.00035653 0.00035688 0.000357231 0.000357581 0.000357932 0.000358282 0.000358633 0.000358983 0.000359334 0.000359684 0.000360035 0.000360385 0.000360736 0.000361086 0.000361437 0.000361787 0.000362138 0.000362488 0.000362839 0.000363189 0.00036354 0.00036389 0.000364241 0.000364591 0.000364942 0.000365292 0.000365643 0.000365993 0.000366344 0.000366694 0.000367045 0.000367395 0.000367746 0.000368096 0.000368447 0.000368797 0.000369148 0.000369498 0.000369849 0.000370199 0.00037055 0.0003709 0.000371251 0.000371601 0.000371952 0.000372302 0.000372653 0.000373003 0.000373354 0.000373704 +-7.45524E-05 -7.11292E-05 -6.63452E-05 -5.32832E-05 5.9182E-07 0.000145316 0.000285354 0.000332012 0.000340621 0.000342222 0.000342765 0.000343155 0.000343522 0.000343886 0.00034425 0.000344613 0.000344976 0.00034534 0.000345703 0.000346067 0.00034643 0.000346794 0.000347157 0.00034752 0.000347884 0.000348247 0.000348611 0.000348974 0.000349337 0.000349701 0.000350064 0.000350428 0.000350791 0.000351155 0.000351518 0.000351881 0.000352245 0.000352608 0.000352972 0.000353335 0.000353699 0.000354062 0.000354425 0.000354789 0.000355152 0.000355516 0.000355879 0.000356243 0.000356606 0.000356969 0.000357333 0.000357696 0.00035806 0.000358423 0.000358787 0.00035915 0.000359513 0.000359877 0.00036024 0.000360604 0.000360967 0.000361331 0.000361694 0.000362057 0.000362421 0.000362784 0.000363148 0.000363511 0.000363874 0.000364238 0.000364601 0.000364965 0.000365328 0.000365692 0.000366055 0.000366418 0.000366782 0.000367145 0.000367509 0.000367872 0.000368236 0.000368599 0.000368962 0.000369326 0.000369689 0.000370053 0.000370416 0.00037078 0.000371143 0.000371506 0.00037187 0.000372233 0.000372597 0.00037296 0.000373324 0.000373687 0.00037405 0.000374414 0.000374777 0.000375141 0.000375504 0.000375868 0.000376231 0.000376594 0.000376958 0.000377321 0.000377685 0.000378048 0.000378412 0.000378775 0.000379138 0.000379502 0.000379865 0.000380229 0.000380592 0.000380956 0.000381319 0.000381682 0.000382046 0.000382409 0.000382773 0.000383136 0.000383499 0.000383863 0.000384226 0.00038459 0.000384953 0.000385317 0.00038568 0.000386043 0.000386407 0.00038677 0.000387134 +-7.70527E-05 -7.35119E-05 -6.85621E-05 -5.50461E-05 6.15453E-07 0.000149807 0.0002947 0.000343357 0.000352366 0.000354038 0.000354604 0.000355007 0.000355388 0.000355765 0.000356141 0.000356517 0.000356894 0.00035727 0.000357646 0.000358023 0.000358399 0.000358776 0.000359152 0.000359528 0.000359905 0.000360281 0.000360657 0.000361034 0.00036141 0.000361786 0.000362163 0.000362539 0.000362915 0.000363292 0.000363668 0.000364045 0.000364421 0.000364797 0.000365174 0.00036555 0.000365926 0.000366303 0.000366679 0.000367055 0.000367432 0.000367808 0.000368184 0.000368561 0.000368937 0.000369314 0.00036969 0.000370066 0.000370443 0.000370819 0.000371195 0.000371572 0.000371948 0.000372324 0.000372701 0.000373077 0.000373453 0.00037383 0.000374206 0.000374583 0.000374959 0.000375335 0.000375712 0.000376088 0.000376464 0.000376841 0.000377217 0.000377593 0.00037797 0.000378346 0.000378722 0.000379099 0.000379475 0.000379852 0.000380228 0.000380604 0.000380981 0.000381357 0.000381733 0.00038211 0.000382486 0.000382862 0.000383239 0.000383615 0.000383991 0.000384368 0.000384744 0.000385121 0.000385497 0.000385873 0.00038625 0.000386626 0.000387002 0.000387379 0.000387755 0.000388131 0.000388508 0.000388884 0.00038926 0.000389637 0.000390013 0.00039039 0.000390766 0.000391142 0.000391519 0.000391895 0.000392271 0.000392648 0.000393024 0.0003934 0.000393777 0.000394153 0.000394529 0.000394906 0.000395282 0.000395659 0.000396035 0.000396411 0.000396788 0.000397164 0.00039754 0.000397917 0.000398293 0.000398669 0.000399046 0.000399422 0.000399799 0.000400175 0.000400551 +-7.95504E-05 -7.58918E-05 -7.07762E-05 -5.68056E-05 6.39319E-07 0.000154267 0.000304003 0.000354682 0.000364097 0.000365842 0.000366429 0.000366847 0.000367241 0.000367631 0.00036802 0.000368409 0.000368799 0.000369188 0.000369577 0.000369966 0.000370356 0.000370745 0.000371134 0.000371524 0.000371913 0.000372302 0.000372691 0.000373081 0.00037347 0.000373859 0.000374249 0.000374638 0.000375027 0.000375416 0.000375806 0.000376195 0.000376584 0.000376974 0.000377363 0.000377752 0.000378142 0.000378531 0.00037892 0.000379309 0.000379699 0.000380088 0.000380477 0.000380867 0.000381256 0.000381645 0.000382034 0.000382424 0.000382813 0.000383202 0.000383592 0.000383981 0.00038437 0.000384759 0.000385149 0.000385538 0.000385927 0.000386317 0.000386706 0.000387095 0.000387484 0.000387874 0.000388263 0.000388652 0.000389042 0.000389431 0.00038982 0.000390209 0.000390599 0.000390988 0.000391377 0.000391767 0.000392156 0.000392545 0.000392934 0.000393324 0.000393713 0.000394102 0.000394492 0.000394881 0.00039527 0.00039566 0.000396049 0.000396438 0.000396827 0.000397217 0.000397606 0.000397995 0.000398385 0.000398774 0.000399163 0.000399552 0.000399942 0.000400331 0.00040072 0.00040111 0.000401499 0.000401888 0.000402277 0.000402667 0.000403056 0.000403445 0.000403835 0.000404224 0.000404613 0.000405002 0.000405392 0.000405781 0.00040617 0.00040656 0.000406949 0.000407338 0.000407727 0.000408117 0.000408506 0.000408895 0.000409285 0.000409674 0.000410063 0.000410453 0.000410842 0.000411231 0.00041162 0.00041201 0.000412399 0.000412788 0.000413178 0.000413567 0.000413956 +-8.20455E-05 -7.82691E-05 -7.29875E-05 -5.85618E-05 6.63418E-07 0.000158694 0.000313262 0.000365985 0.000375814 0.000377633 0.000378242 0.000378674 0.000379081 0.000379484 0.000379886 0.000380288 0.000380691 0.000381093 0.000381495 0.000381897 0.000382299 0.000382702 0.000383104 0.000383506 0.000383908 0.000384311 0.000384713 0.000385115 0.000385517 0.000385919 0.000386322 0.000386724 0.000387126 0.000387528 0.00038793 0.000388333 0.000388735 0.000389137 0.000389539 0.000389942 0.000390344 0.000390746 0.000391148 0.00039155 0.000391953 0.000392355 0.000392757 0.000393159 0.000393562 0.000393964 0.000394366 0.000394768 0.00039517 0.000395573 0.000395975 0.000396377 0.000396779 0.000397182 0.000397584 0.000397986 0.000398388 0.00039879 0.000399193 0.000399595 0.000399997 0.000400399 0.000400802 0.000401204 0.000401606 0.000402008 0.00040241 0.000402813 0.000403215 0.000403617 0.000404019 0.000404421 0.000404824 0.000405226 0.000405628 0.00040603 0.000406433 0.000406835 0.000407237 0.000407639 0.000408041 0.000408444 0.000408846 0.000409248 0.00040965 0.000410053 0.000410455 0.000410857 0.000411259 0.000411661 0.000412064 0.000412466 0.000412868 0.00041327 0.000413673 0.000414075 0.000414477 0.000414879 0.000415281 0.000415684 0.000416086 0.000416488 0.00041689 0.000417293 0.000417695 0.000418097 0.000418499 0.000418901 0.000419304 0.000419706 0.000420108 0.00042051 0.000420912 0.000421315 0.000421717 0.000422119 0.000422521 0.000422924 0.000423326 0.000423728 0.00042413 0.000424532 0.000424935 0.000425337 0.000425739 0.000426141 0.000426544 0.000426946 0.000427348 +-8.4538E-05 -8.06439E-05 -7.51961E-05 -6.03145E-05 6.87749E-07 0.00016309 0.000322478 0.000377266 0.000387516 0.000389411 0.000390042 0.000390488 0.000390908 0.000391324 0.000391739 0.000392154 0.000392569 0.000392985 0.0003934 0.000393815 0.00039423 0.000394645 0.00039506 0.000395475 0.000395891 0.000396306 0.000396721 0.000397136 0.000397551 0.000397966 0.000398381 0.000398797 0.000399212 0.000399627 0.000400042 0.000400457 0.000400872 0.000401287 0.000401703 0.000402118 0.000402533 0.000402948 0.000403363 0.000403778 0.000404194 0.000404609 0.000405024 0.000405439 0.000405854 0.000406269 0.000406684 0.0004071 0.000407515 0.00040793 0.000408345 0.00040876 0.000409175 0.00040959 0.000410006 0.000410421 0.000410836 0.000411251 0.000411666 0.000412081 0.000412496 0.000412912 0.000413327 0.000413742 0.000414157 0.000414572 0.000414987 0.000415403 0.000415818 0.000416233 0.000416648 0.000417063 0.000417478 0.000417893 0.000418309 0.000418724 0.000419139 0.000419554 0.000419969 0.000420384 0.000420799 0.000421215 0.00042163 0.000422045 0.00042246 0.000422875 0.00042329 0.000423705 0.000424121 0.000424536 0.000424951 0.000425366 0.000425781 0.000426196 0.000426612 0.000427027 0.000427442 0.000427857 0.000428272 0.000428687 0.000429102 0.000429518 0.000429933 0.000430348 0.000430763 0.000431178 0.000431593 0.000432008 0.000432424 0.000432839 0.000433254 0.000433669 0.000434084 0.000434499 0.000434914 0.00043533 0.000435745 0.00043616 0.000436575 0.00043699 0.000437405 0.000437821 0.000438236 0.000438651 0.000439066 0.000439481 0.000439896 0.000440311 0.000440727 +-8.7028E-05 -8.30162E-05 -7.74021E-05 -6.20639E-05 7.12311E-07 0.000167454 0.00033165 0.000388525 0.000399204 0.000401175 0.000401828 0.000402289 0.000402722 0.000403151 0.000403579 0.000404007 0.000404435 0.000404863 0.000405291 0.000405719 0.000406147 0.000406575 0.000407003 0.000407431 0.000407859 0.000408288 0.000408716 0.000409144 0.000409572 0.00041 0.000410428 0.000410856 0.000411284 0.000411712 0.00041214 0.000412568 0.000412996 0.000413424 0.000413852 0.000414281 0.000414709 0.000415137 0.000415565 0.000415993 0.000416421 0.000416849 0.000417277 0.000417705 0.000418133 0.000418561 0.000418989 0.000419417 0.000419846 0.000420274 0.000420702 0.00042113 0.000421558 0.000421986 0.000422414 0.000422842 0.00042327 0.000423698 0.000424126 0.000424554 0.000424982 0.00042541 0.000425839 0.000426267 0.000426695 0.000427123 0.000427551 0.000427979 0.000428407 0.000428835 0.000429263 0.000429691 0.000430119 0.000430547 0.000430975 0.000431404 0.000431832 0.00043226 0.000432688 0.000433116 0.000433544 0.000433972 0.0004344 0.000434828 0.000435256 0.000435684 0.000436112 0.00043654 0.000436968 0.000437397 0.000437825 0.000438253 0.000438681 0.000439109 0.000439537 0.000439965 0.000440393 0.000440821 0.000441249 0.000441677 0.000442105 0.000442533 0.000442962 0.00044339 0.000443818 0.000444246 0.000444674 0.000445102 0.00044553 0.000445958 0.000446386 0.000446814 0.000447242 0.00044767 0.000448098 0.000448527 0.000448955 0.000449383 0.000449811 0.000450239 0.000450667 0.000451095 0.000451523 0.000451951 0.000452379 0.000452807 0.000453235 0.000453663 0.000454091 +-8.95155E-05 -8.5386E-05 -7.96054E-05 -6.38101E-05 7.37104E-07 0.000171788 0.000340779 0.000399763 0.000410876 0.000412925 0.000413601 0.000414076 0.000414522 0.000414964 0.000415405 0.000415846 0.000416287 0.000416728 0.000417169 0.00041761 0.000418051 0.000418492 0.000418933 0.000419374 0.000419815 0.000420256 0.000420697 0.000421138 0.000421579 0.00042202 0.000422461 0.000422902 0.000423343 0.000423784 0.000424225 0.000424666 0.000425107 0.000425548 0.000425989 0.00042643 0.000426871 0.000427312 0.000427753 0.000428194 0.000428635 0.000429076 0.000429517 0.000429958 0.000430399 0.00043084 0.000431281 0.000431722 0.000432163 0.000432604 0.000433045 0.000433486 0.000433927 0.000434368 0.000434809 0.00043525 0.000435691 0.000436132 0.000436573 0.000437014 0.000437455 0.000437896 0.000438337 0.000438778 0.000439219 0.00043966 0.000440101 0.000440542 0.000440983 0.000441424 0.000441865 0.000442306 0.000442747 0.000443188 0.000443629 0.00044407 0.000444511 0.000444952 0.000445393 0.000445834 0.000446275 0.000446716 0.000447157 0.000447598 0.000448039 0.00044848 0.000448921 0.000449362 0.000449803 0.000450244 0.000450685 0.000451126 0.000451567 0.000452008 0.000452449 0.00045289 0.000453331 0.000453772 0.000454213 0.000454654 0.000455095 0.000455536 0.000455977 0.000456418 0.000456859 0.000457299 0.00045774 0.000458181 0.000458622 0.000459063 0.000459504 0.000459945 0.000460386 0.000460827 0.000461268 0.000461709 0.00046215 0.000462591 0.000463032 0.000463473 0.000463914 0.000464355 0.000464796 0.000465237 0.000465678 0.000466119 0.00046656 0.000467001 0.000467442 +-9.20006E-05 -8.77534E-05 -8.18062E-05 -6.5553E-05 7.62126E-07 0.000176091 0.000349863 0.000410977 0.000422533 0.000424662 0.00042536 0.000425849 0.000426308 0.000426763 0.000427217 0.000427671 0.000428125 0.000428579 0.000429033 0.000429487 0.00042994 0.000430394 0.000430848 0.000431302 0.000431756 0.00043221 0.000432664 0.000433118 0.000433572 0.000434026 0.00043448 0.000434934 0.000435387 0.000435841 0.000436295 0.000436749 0.000437203 0.000437657 0.000438111 0.000438565 0.000439019 0.000439473 0.000439927 0.000440381 0.000440834 0.000441288 0.000441742 0.000442196 0.00044265 0.000443104 0.000443558 0.000444012 0.000444466 0.00044492 0.000445374 0.000445828 0.000446281 0.000446735 0.000447189 0.000447643 0.000448097 0.000448551 0.000449005 0.000449459 0.000449913 0.000450367 0.000450821 0.000451275 0.000451728 0.000452182 0.000452636 0.00045309 0.000453544 0.000453998 0.000454452 0.000454906 0.00045536 0.000455814 0.000456268 0.000456722 0.000457175 0.000457629 0.000458083 0.000458537 0.000458991 0.000459445 0.000459899 0.000460353 0.000460807 0.000461261 0.000461715 0.000462169 0.000462622 0.000463076 0.00046353 0.000463984 0.000464438 0.000464892 0.000465346 0.0004658 0.000466254 0.000466708 0.000467162 0.000467616 0.00046807 0.000468523 0.000468977 0.000469431 0.000469885 0.000470339 0.000470793 0.000471247 0.000471701 0.000472155 0.000472609 0.000473063 0.000473517 0.00047397 0.000474424 0.000474878 0.000475332 0.000475786 0.00047624 0.000476694 0.000477148 0.000477602 0.000478056 0.00047851 0.000478964 0.000479417 0.000479871 0.000480325 0.000480779 +-9.44834E-05 -9.01184E-05 -8.40046E-05 -6.72927E-05 7.87378E-07 0.000180364 0.000358903 0.000422169 0.000434175 0.000436384 0.000437105 0.000437608 0.000438081 0.000438548 0.000439015 0.000439482 0.000439949 0.000440416 0.000440883 0.000441349 0.000441816 0.000442283 0.00044275 0.000443217 0.000443684 0.00044415 0.000444617 0.000445084 0.000445551 0.000446018 0.000446485 0.000446951 0.000447418 0.000447885 0.000448352 0.000448819 0.000449286 0.000449752 0.000450219 0.000450686 0.000451153 0.00045162 0.000452087 0.000452553 0.00045302 0.000453487 0.000453954 0.000454421 0.000454888 0.000455354 0.000455821 0.000456288 0.000456755 0.000457222 0.000457688 0.000458155 0.000458622 0.000459089 0.000459556 0.000460023 0.000460489 0.000460956 0.000461423 0.00046189 0.000462357 0.000462824 0.00046329 0.000463757 0.000464224 0.000464691 0.000465158 0.000465625 0.000466091 0.000466558 0.000467025 0.000467492 0.000467959 0.000468426 0.000468892 0.000469359 0.000469826 0.000470293 0.00047076 0.000471227 0.000471693 0.00047216 0.000472627 0.000473094 0.000473561 0.000474028 0.000474494 0.000474961 0.000475428 0.000475895 0.000476362 0.000476829 0.000477295 0.000477762 0.000478229 0.000478696 0.000479163 0.00047963 0.000480096 0.000480563 0.00048103 0.000481497 0.000481964 0.000482431 0.000482897 0.000483364 0.000483831 0.000484298 0.000484765 0.000485232 0.000485698 0.000486165 0.000486632 0.000487099 0.000487566 0.000488033 0.000488499 0.000488966 0.000489433 0.0004899 0.000490367 0.000490834 0.0004913 0.000491767 0.000492234 0.000492701 0.000493168 0.000493635 0.000494101 +-9.69638E-05 -9.24811E-05 -8.62004E-05 -6.90293E-05 8.12857E-07 0.000184607 0.0003679 0.000433338 0.000445801 0.000448092 0.000448836 0.000449354 0.000449839 0.000450319 0.000450799 0.000451279 0.000451759 0.000452239 0.000452718 0.000453198 0.000453678 0.000454157 0.000454637 0.000455117 0.000455597 0.000456076 0.000456556 0.000457036 0.000457516 0.000457995 0.000458475 0.000458955 0.000459435 0.000459914 0.000460394 0.000460874 0.000461354 0.000461833 0.000462313 0.000462793 0.000463273 0.000463752 0.000464232 0.000464712 0.000465192 0.000465671 0.000466151 0.000466631 0.000467111 0.00046759 0.00046807 0.00046855 0.00046903 0.000469509 0.000469989 0.000470469 0.000470949 0.000471428 0.000471908 0.000472388 0.000472867 0.000473347 0.000473827 0.000474307 0.000474786 0.000475266 0.000475746 0.000476226 0.000476705 0.000477185 0.000477665 0.000478145 0.000478624 0.000479104 0.000479584 0.000480064 0.000480543 0.000481023 0.000481503 0.000481983 0.000482462 0.000482942 0.000483422 0.000483902 0.000484381 0.000484861 0.000485341 0.000485821 0.0004863 0.00048678 0.00048726 0.00048774 0.000488219 0.000488699 0.000489179 0.000489659 0.000490138 0.000490618 0.000491098 0.000491578 0.000492057 0.000492537 0.000493017 0.000493496 0.000493976 0.000494456 0.000494936 0.000495415 0.000495895 0.000496375 0.000496855 0.000497334 0.000497814 0.000498294 0.000498774 0.000499253 0.000499733 0.000500213 0.000500693 0.000501172 0.000501652 0.000502132 0.000502612 0.000503091 0.000503571 0.000504051 0.000504531 0.00050501 0.00050549 0.00050597 0.00050645 0.000506929 0.000507409 +-9.9442E-05 -9.48416E-05 -8.83938E-05 -7.07627E-05 8.38564E-07 0.000188821 0.000376852 0.000444483 0.000457412 0.000459785 0.000460552 0.000461084 0.000461583 0.000462076 0.000462569 0.000463062 0.000463554 0.000464047 0.00046454 0.000465032 0.000465525 0.000466018 0.00046651 0.000467003 0.000467496 0.000467988 0.000468481 0.000468974 0.000469466 0.000469959 0.000470451 0.000470944 0.000471437 0.000471929 0.000472422 0.000472915 0.000473407 0.0004739 0.000474393 0.000474885 0.000475378 0.000475871 0.000476363 0.000476856 0.000477349 0.000477841 0.000478334 0.000478827 0.000479319 0.000479812 0.000480304 0.000480797 0.00048129 0.000481782 0.000482275 0.000482768 0.00048326 0.000483753 0.000484246 0.000484738 0.000485231 0.000485724 0.000486216 0.000486709 0.000487202 0.000487694 0.000488187 0.000488679 0.000489172 0.000489665 0.000490157 0.00049065 0.000491143 0.000491635 0.000492128 0.000492621 0.000493113 0.000493606 0.000494099 0.000494591 0.000495084 0.000495577 0.000496069 0.000496562 0.000497055 0.000497547 0.00049804 0.000498532 0.000499025 0.000499518 0.00050001 0.000500503 0.000500996 0.000501488 0.000501981 0.000502474 0.000502966 0.000503459 0.000503952 0.000504444 0.000504937 0.00050543 0.000505922 0.000506415 0.000506908 0.0005074 0.000507893 0.000508385 0.000508878 0.000509371 0.000509863 0.000510356 0.000510849 0.000511341 0.000511834 0.000512327 0.000512819 0.000513312 0.000513805 0.000514297 0.00051479 0.000515283 0.000515775 0.000516268 0.000516761 0.000517253 0.000517746 0.000518238 0.000518731 0.000519224 0.000519716 0.000520209 0.000520702 +-0.000101918 -9.71998E-05 -9.05849E-05 -7.2493E-05 8.64497E-07 0.000193005 0.000385761 0.000455605 0.000469006 0.000471464 0.000472254 0.000472801 0.000473312 0.000473819 0.000474324 0.00047483 0.000475336 0.000475841 0.000476347 0.000476852 0.000477358 0.000477863 0.000478369 0.000478874 0.00047938 0.000479885 0.000480391 0.000480897 0.000481402 0.000481908 0.000482413 0.000482919 0.000483424 0.00048393 0.000484435 0.000484941 0.000485447 0.000485952 0.000486458 0.000486963 0.000487469 0.000487974 0.00048848 0.000488985 0.000489491 0.000489996 0.000490502 0.000491008 0.000491513 0.000492019 0.000492524 0.00049303 0.000493535 0.000494041 0.000494546 0.000495052 0.000495557 0.000496063 0.000496569 0.000497074 0.00049758 0.000498085 0.000498591 0.000499096 0.000499602 0.000500107 0.000500613 0.000501119 0.000501624 0.00050213 0.000502635 0.000503141 0.000503646 0.000504152 0.000504657 0.000505163 0.000505668 0.000506174 0.00050668 0.000507185 0.000507691 0.000508196 0.000508702 0.000509207 0.000509713 0.000510218 0.000510724 0.00051123 0.000511735 0.000512241 0.000512746 0.000513252 0.000513757 0.000514263 0.000514768 0.000515274 0.000515779 0.000516285 0.000516791 0.000517296 0.000517802 0.000518307 0.000518813 0.000519318 0.000519824 0.000520329 0.000520835 0.000521341 0.000521846 0.000522352 0.000522857 0.000523363 0.000523868 0.000524374 0.000524879 0.000525385 0.000525891 0.000526396 0.000526902 0.000527407 0.000527913 0.000528418 0.000528924 0.000529429 0.000529935 0.00053044 0.000530946 0.000531452 0.000531957 0.000532463 0.000532968 0.000533474 0.000533979 +-0.000104392 -9.95558E-05 -9.27736E-05 -7.42203E-05 8.90656E-07 0.000197161 0.000394625 0.000466704 0.000480585 0.000483127 0.000483941 0.000484503 0.000485027 0.000485547 0.000486065 0.000486584 0.000487102 0.000487621 0.000488139 0.000488657 0.000489176 0.000489694 0.000490213 0.000490731 0.00049125 0.000491768 0.000492287 0.000492805 0.000493323 0.000493842 0.00049436 0.000494879 0.000495397 0.000495916 0.000496434 0.000496953 0.000497471 0.000497989 0.000498508 0.000499026 0.000499545 0.000500063 0.000500582 0.0005011 0.000501618 0.000502137 0.000502655 0.000503174 0.000503692 0.000504211 0.000504729 0.000505248 0.000505766 0.000506284 0.000506803 0.000507321 0.00050784 0.000508358 0.000508877 0.000509395 0.000509914 0.000510432 0.00051095 0.000511469 0.000511987 0.000512506 0.000513024 0.000513543 0.000514061 0.00051458 0.000515098 0.000515616 0.000516135 0.000516653 0.000517172 0.00051769 0.000518209 0.000518727 0.000519246 0.000519764 0.000520282 0.000520801 0.000521319 0.000521838 0.000522356 0.000522875 0.000523393 0.000523912 0.00052443 0.000524948 0.000525467 0.000525985 0.000526504 0.000527022 0.000527541 0.000528059 0.000528578 0.000529096 0.000529614 0.000530133 0.000530651 0.00053117 0.000531688 0.000532207 0.000532725 0.000533244 0.000533762 0.00053428 0.000534799 0.000535317 0.000535836 0.000536354 0.000536873 0.000537391 0.00053791 0.000538428 0.000538946 0.000539465 0.000539983 0.000540502 0.00054102 0.000541539 0.000542057 0.000542576 0.000543094 0.000543613 0.000544131 0.000544649 0.000545168 0.000545686 0.000546205 0.000546723 0.000547242 +-0.000106863 -0.00010191 -9.496E-05 -7.59445E-05 9.17039E-07 0.000201288 0.000403445 0.000477778 0.000492147 0.000494776 0.000495614 0.00049619 0.000496727 0.00049726 0.000497791 0.000498323 0.000498854 0.000499385 0.000499917 0.000500448 0.000500979 0.000501511 0.000502042 0.000502573 0.000503105 0.000503636 0.000504167 0.000504699 0.00050523 0.000505761 0.000506293 0.000506824 0.000507355 0.000507887 0.000508418 0.000508949 0.000509481 0.000510012 0.000510543 0.000511075 0.000511606 0.000512137 0.000512669 0.0005132 0.000513731 0.000514263 0.000514794 0.000515325 0.000515857 0.000516388 0.000516919 0.000517451 0.000517982 0.000518513 0.000519045 0.000519576 0.000520107 0.000520639 0.00052117 0.000521701 0.000522233 0.000522764 0.000523295 0.000523827 0.000524358 0.000524889 0.000525421 0.000525952 0.000526483 0.000527015 0.000527546 0.000528077 0.000528609 0.00052914 0.000529671 0.000530203 0.000530734 0.000531265 0.000531797 0.000532328 0.000532859 0.000533391 0.000533922 0.000534453 0.000534985 0.000535516 0.000536047 0.000536578 0.00053711 0.000537641 0.000538172 0.000538704 0.000539235 0.000539766 0.000540298 0.000540829 0.00054136 0.000541892 0.000542423 0.000542954 0.000543486 0.000544017 0.000544548 0.00054508 0.000545611 0.000546142 0.000546674 0.000547205 0.000547736 0.000548268 0.000548799 0.00054933 0.000549862 0.000550393 0.000550924 0.000551456 0.000551987 0.000552518 0.00055305 0.000553581 0.000554112 0.000554644 0.000555175 0.000555706 0.000556238 0.000556769 0.0005573 0.000557832 0.000558363 0.000558894 0.000559426 0.000559957 0.000560488 +-0.000109333 -0.000104261 -9.71441E-05 -7.76657E-05 9.43646E-07 0.000205387 0.000412222 0.000488828 0.000503693 0.00050641 0.000507272 0.000507862 0.000508413 0.000508958 0.000509502 0.000510047 0.000510591 0.000511135 0.000511679 0.000512224 0.000512768 0.000513312 0.000513856 0.0005144 0.000514945 0.000515489 0.000516033 0.000516577 0.000517122 0.000517666 0.00051821 0.000518754 0.000519298 0.000519843 0.000520387 0.000520931 0.000521475 0.000522019 0.000522564 0.000523108 0.000523652 0.000524196 0.00052474 0.000525285 0.000525829 0.000526373 0.000526917 0.000527462 0.000528006 0.00052855 0.000529094 0.000529638 0.000530183 0.000530727 0.000531271 0.000531815 0.000532359 0.000532904 0.000533448 0.000533992 0.000534536 0.000535081 0.000535625 0.000536169 0.000536713 0.000537257 0.000537802 0.000538346 0.00053889 0.000539434 0.000539978 0.000540523 0.000541067 0.000541611 0.000542155 0.0005427 0.000543244 0.000543788 0.000544332 0.000544876 0.000545421 0.000545965 0.000546509 0.000547053 0.000547597 0.000548142 0.000548686 0.00054923 0.000549774 0.000550319 0.000550863 0.000551407 0.000551951 0.000552495 0.00055304 0.000553584 0.000554128 0.000554672 0.000555216 0.000555761 0.000556305 0.000556849 0.000557393 0.000557938 0.000558482 0.000559026 0.00055957 0.000560114 0.000560659 0.000561203 0.000561747 0.000562291 0.000562835 0.00056338 0.000563924 0.000564468 0.000565012 0.000565557 0.000566101 0.000566645 0.000567189 0.000567733 0.000568278 0.000568822 0.000569366 0.00056991 0.000570454 0.000570999 0.000571543 0.000572087 0.000572631 0.000573176 0.00057372 +-0.0001118 -0.000106611 -9.93259E-05 -7.93839E-05 9.70476E-07 0.000209458 0.000420954 0.000499855 0.000515222 0.000518029 0.000518915 0.00051952 0.000520084 0.000520642 0.000521199 0.000521756 0.000522313 0.00052287 0.000523427 0.000523984 0.000524541 0.000525099 0.000525656 0.000526213 0.00052677 0.000527327 0.000527884 0.000528441 0.000528998 0.000529555 0.000530112 0.000530669 0.000531226 0.000531784 0.000532341 0.000532898 0.000533455 0.000534012 0.000534569 0.000535126 0.000535683 0.00053624 0.000536797 0.000537354 0.000537912 0.000538469 0.000539026 0.000539583 0.00054014 0.000540697 0.000541254 0.000541811 0.000542368 0.000542925 0.000543482 0.000544039 0.000544597 0.000545154 0.000545711 0.000546268 0.000546825 0.000547382 0.000547939 0.000548496 0.000549053 0.00054961 0.000550167 0.000550725 0.000551282 0.000551839 0.000552396 0.000552953 0.00055351 0.000554067 0.000554624 0.000555181 0.000555738 0.000556295 0.000556853 0.00055741 0.000557967 0.000558524 0.000559081 0.000559638 0.000560195 0.000560752 0.000561309 0.000561866 0.000562423 0.00056298 0.000563538 0.000564095 0.000564652 0.000565209 0.000565766 0.000566323 0.00056688 0.000567437 0.000567994 0.000568551 0.000569108 0.000569666 0.000570223 0.00057078 0.000571337 0.000571894 0.000572451 0.000573008 0.000573565 0.000574122 0.000574679 0.000575236 0.000575794 0.000576351 0.000576908 0.000577465 0.000578022 0.000578579 0.000579136 0.000579693 0.00058025 0.000580807 0.000581364 0.000581922 0.000582479 0.000583036 0.000583593 0.00058415 0.000584707 0.000585264 0.000585821 0.000586378 0.000586935 +-0.000114265 -0.000108959 -0.000101506 -8.10991E-05 9.97528E-07 0.000213501 0.000429642 0.000510856 0.000526735 0.000529633 0.000530543 0.000531162 0.000531739 0.00053231 0.00053288 0.00053345 0.00053402 0.00053459 0.00053516 0.00053573 0.0005363 0.00053687 0.00053744 0.00053801 0.00053858 0.00053915 0.00053972 0.00054029 0.00054086 0.00054143 0.000542 0.00054257 0.000543139 0.000543709 0.000544279 0.000544849 0.000545419 0.000545989 0.000546559 0.000547129 0.000547699 0.000548269 0.000548839 0.000549409 0.000549979 0.000550549 0.000551119 0.000551689 0.000552259 0.000552829 0.000553399 0.000553969 0.000554539 0.000555109 0.000555678 0.000556248 0.000556818 0.000557388 0.000557958 0.000558528 0.000559098 0.000559668 0.000560238 0.000560808 0.000561378 0.000561948 0.000562518 0.000563088 0.000563658 0.000564228 0.000564798 0.000565368 0.000565938 0.000566508 0.000567078 0.000567648 0.000568217 0.000568787 0.000569357 0.000569927 0.000570497 0.000571067 0.000571637 0.000572207 0.000572777 0.000573347 0.000573917 0.000574487 0.000575057 0.000575627 0.000576197 0.000576767 0.000577337 0.000577907 0.000578477 0.000579047 0.000579617 0.000580187 0.000580757 0.000581326 0.000581896 0.000582466 0.000583036 0.000583606 0.000584176 0.000584746 0.000585316 0.000585886 0.000586456 0.000587026 0.000587596 0.000588166 0.000588736 0.000589306 0.000589876 0.000590446 0.000591016 0.000591586 0.000592156 0.000592726 0.000593296 0.000593865 0.000594435 0.000595005 0.000595575 0.000596145 0.000596715 0.000597285 0.000597855 0.000598425 0.000598995 0.000599565 0.000600135 +-0.000116729 -0.000111304 -0.000103683 -8.2812E-05 1.0248E-06 0.000217517 0.000438287 0.000521834 0.000538232 0.000541221 0.000542156 0.00054279 0.00054338 0.000543964 0.000544547 0.000545129 0.000545712 0.000546295 0.000546878 0.000547461 0.000548043 0.000548626 0.000549209 0.000549792 0.000550375 0.000550958 0.00055154 0.000552123 0.000552706 0.000553289 0.000553872 0.000554454 0.000555037 0.00055562 0.000556203 0.000556786 0.000557369 0.000557951 0.000558534 0.000559117 0.0005597 0.000560283 0.000560865 0.000561448 0.000562031 0.000562614 0.000563197 0.000563779 0.000564362 0.000564945 0.000565528 0.000566111 0.000566694 0.000567276 0.000567859 0.000568442 0.000569025 0.000569608 0.00057019 0.000570773 0.000571356 0.000571939 0.000572522 0.000573105 0.000573687 0.00057427 0.000574853 0.000575436 0.000576019 0.000576601 0.000577184 0.000577767 0.00057835 0.000578933 0.000579515 0.000580098 0.000580681 0.000581264 0.000581847 0.00058243 0.000583012 0.000583595 0.000584178 0.000584761 0.000585344 0.000585926 0.000586509 0.000587092 0.000587675 0.000588258 0.000588841 0.000589423 0.000590006 0.000590589 0.000591172 0.000591755 0.000592337 0.00059292 0.000593503 0.000594086 0.000594669 0.000595251 0.000595834 0.000596417 0.000597 0.000597583 0.000598166 0.000598748 0.000599331 0.000599914 0.000600497 0.00060108 0.000601662 0.000602245 0.000602828 0.000603411 0.000603994 0.000604577 0.000605159 0.000605742 0.000606325 0.000606908 0.000607491 0.000608073 0.000608656 0.000609239 0.000609822 0.000610405 0.000610987 0.00061157 0.000612153 0.000612736 0.000613319 +-0.00011919 -0.000113648 -0.000105858 -8.45214E-05 1.05229E-06 0.000221506 0.000446887 0.000532786 0.000549711 0.000552795 0.000553753 0.000554402 0.000555005 0.000555602 0.000556198 0.000556793 0.000557389 0.000557985 0.00055858 0.000559176 0.000559772 0.000560367 0.000560963 0.000561559 0.000562154 0.00056275 0.000563346 0.000563941 0.000564537 0.000565133 0.000565728 0.000566324 0.00056692 0.000567515 0.000568111 0.000568707 0.000569302 0.000569898 0.000570494 0.000571089 0.000571685 0.000572281 0.000572876 0.000573472 0.000574068 0.000574663 0.000575259 0.000575855 0.00057645 0.000577046 0.000577642 0.000578237 0.000578833 0.000579429 0.000580024 0.00058062 0.000581216 0.000581811 0.000582407 0.000583003 0.000583598 0.000584194 0.00058479 0.000585385 0.000585981 0.000586577 0.000587172 0.000587768 0.000588364 0.000588959 0.000589555 0.000590151 0.000590746 0.000591342 0.000591938 0.000592533 0.000593129 0.000593725 0.00059432 0.000594916 0.000595512 0.000596107 0.000596703 0.000597299 0.000597894 0.00059849 0.000599086 0.000599681 0.000600277 0.000600873 0.000601468 0.000602064 0.00060266 0.000603255 0.000603851 0.000604447 0.000605042 0.000605638 0.000606234 0.000606829 0.000607425 0.000608021 0.000608616 0.000609212 0.000609808 0.000610403 0.000610999 0.000611595 0.00061219 0.000612786 0.000613382 0.000613977 0.000614573 0.000615169 0.000615764 0.00061636 0.000616956 0.000617551 0.000618147 0.000618743 0.000619338 0.000619934 0.00062053 0.000621125 0.000621721 0.000622317 0.000622912 0.000623508 0.000624104 0.000624699 0.000625295 0.000625891 0.000626486 +-0.000121649 -0.000115989 -0.000108031 -8.6228E-05 1.08E-06 0.000225468 0.000455444 0.000543714 0.000561174 0.000564352 0.000565336 0.000565999 0.000566615 0.000567225 0.000567834 0.000568442 0.000569051 0.000569659 0.000570268 0.000570876 0.000571485 0.000572093 0.000572702 0.00057331 0.000573919 0.000574527 0.000575136 0.000575744 0.000576353 0.000576961 0.00057757 0.000578178 0.000578787 0.000579395 0.000580004 0.000580612 0.000581221 0.000581829 0.000582438 0.000583046 0.000583655 0.000584264 0.000584872 0.000585481 0.000586089 0.000586698 0.000587306 0.000587915 0.000588523 0.000589132 0.00058974 0.000590349 0.000590957 0.000591566 0.000592174 0.000592783 0.000593391 0.000594 0.000594608 0.000595217 0.000595825 0.000596434 0.000597042 0.000597651 0.000598259 0.000598868 0.000599476 0.000600085 0.000600693 0.000601302 0.00060191 0.000602519 0.000603127 0.000603736 0.000604344 0.000604953 0.000605561 0.00060617 0.000606778 0.000607387 0.000607995 0.000608604 0.000609212 0.000609821 0.000610429 0.000611038 0.000611646 0.000612255 0.000612863 0.000613472 0.000614081 0.000614689 0.000615298 0.000615906 0.000616515 0.000617123 0.000617732 0.00061834 0.000618949 0.000619557 0.000620166 0.000620774 0.000621383 0.000621991 0.0006226 0.000623208 0.000623817 0.000624425 0.000625034 0.000625642 0.000626251 0.000626859 0.000627468 0.000628076 0.000628685 0.000629293 0.000629902 0.00063051 0.000631119 0.000631727 0.000632336 0.000632944 0.000633553 0.000634161 0.00063477 0.000635378 0.000635987 0.000636595 0.000637204 0.000637812 0.000638421 0.000639029 0.000639638 +-0.000124106 -0.000118329 -0.000110202 -8.79317E-05 1.10793E-06 0.000229404 0.000463957 0.000554616 0.00057262 0.000575894 0.000576903 0.000577581 0.00057821 0.000578833 0.000579454 0.000580076 0.000580697 0.000581319 0.00058194 0.000582561 0.000583183 0.000583804 0.000584425 0.000585047 0.000585668 0.000586289 0.000586911 0.000587532 0.000588153 0.000588775 0.000589396 0.000590017 0.000590639 0.00059126 0.000591881 0.000592503 0.000593124 0.000593745 0.000594367 0.000594988 0.000595609 0.000596231 0.000596852 0.000597473 0.000598095 0.000598716 0.000599338 0.000599959 0.00060058 0.000601202 0.000601823 0.000602444 0.000603066 0.000603687 0.000604308 0.00060493 0.000605551 0.000606172 0.000606794 0.000607415 0.000608036 0.000608658 0.000609279 0.0006099 0.000610522 0.000611143 0.000611764 0.000612386 0.000613007 0.000613628 0.00061425 0.000614871 0.000615492 0.000616114 0.000616735 0.000617357 0.000617978 0.000618599 0.000619221 0.000619842 0.000620463 0.000621085 0.000621706 0.000622327 0.000622949 0.00062357 0.000624191 0.000624813 0.000625434 0.000626055 0.000626677 0.000627298 0.000627919 0.000628541 0.000629162 0.000629783 0.000630405 0.000631026 0.000631647 0.000632269 0.00063289 0.000633511 0.000634133 0.000634754 0.000635376 0.000635997 0.000636618 0.00063724 0.000637861 0.000638482 0.000639104 0.000639725 0.000640346 0.000640968 0.000641589 0.00064221 0.000642832 0.000643453 0.000644074 0.000644696 0.000645317 0.000645938 0.00064656 0.000647181 0.000647802 0.000648424 0.000649045 0.000649666 0.000650288 0.000650909 0.000651531 0.000652152 0.000652773 +-0.000126562 -0.000120667 -0.000112371 -8.96317E-05 1.13608E-06 0.000233314 0.000472427 0.000565494 0.000584049 0.000587421 0.000588455 0.000589148 0.00058979 0.000590426 0.00059106 0.000591694 0.000592328 0.000592962 0.000593597 0.000594231 0.000594865 0.000595499 0.000596133 0.000596767 0.000597402 0.000598036 0.00059867 0.000599304 0.000599938 0.000600572 0.000601207 0.000601841 0.000602475 0.000603109 0.000603743 0.000604377 0.000605012 0.000605646 0.00060628 0.000606914 0.000607548 0.000608183 0.000608817 0.000609451 0.000610085 0.000610719 0.000611353 0.000611988 0.000612622 0.000613256 0.00061389 0.000614524 0.000615158 0.000615793 0.000616427 0.000617061 0.000617695 0.000618329 0.000618963 0.000619598 0.000620232 0.000620866 0.0006215 0.000622134 0.000622768 0.000623403 0.000624037 0.000624671 0.000625305 0.000625939 0.000626573 0.000627208 0.000627842 0.000628476 0.00062911 0.000629744 0.000630379 0.000631013 0.000631647 0.000632281 0.000632915 0.000633549 0.000634184 0.000634818 0.000635452 0.000636086 0.00063672 0.000637354 0.000637989 0.000638623 0.000639257 0.000639891 0.000640525 0.000641159 0.000641794 0.000642428 0.000643062 0.000643696 0.00064433 0.000644964 0.000645599 0.000646233 0.000646867 0.000647501 0.000648135 0.000648769 0.000649404 0.000650038 0.000650672 0.000651306 0.00065194 0.000652575 0.000653209 0.000653843 0.000654477 0.000655111 0.000655745 0.00065638 0.000657014 0.000657648 0.000658282 0.000658916 0.00065955 0.000660185 0.000660819 0.000661453 0.000662087 0.000662721 0.000663355 0.00066399 0.000664624 0.000665258 0.000665892 +-0.000129015 -0.000123002 -0.000114538 -9.13296E-05 1.16444E-06 0.000237198 0.000480853 0.000576346 0.000595461 0.000598932 0.000599992 0.000600699 0.000601355 0.000602003 0.00060265 0.000603297 0.000603944 0.000604591 0.000605238 0.000605885 0.000606532 0.000607179 0.000607826 0.000608473 0.00060912 0.000609767 0.000610414 0.000611061 0.000611708 0.000612355 0.000613002 0.000613649 0.000614296 0.000614943 0.00061559 0.000616237 0.000616884 0.000617531 0.000618178 0.000618825 0.000619472 0.000620119 0.000620766 0.000621413 0.00062206 0.000622707 0.000623354 0.000624001 0.000624648 0.000625295 0.000625942 0.000626589 0.000627236 0.000627883 0.00062853 0.000629176 0.000629823 0.00063047 0.000631117 0.000631764 0.000632411 0.000633058 0.000633705 0.000634352 0.000634999 0.000635646 0.000636293 0.00063694 0.000637587 0.000638234 0.000638881 0.000639528 0.000640175 0.000640822 0.000641469 0.000642116 0.000642763 0.00064341 0.000644057 0.000644704 0.000645351 0.000645998 0.000646645 0.000647292 0.000647939 0.000648586 0.000649233 0.00064988 0.000650527 0.000651174 0.000651821 0.000652468 0.000653115 0.000653762 0.000654409 0.000655056 0.000655703 0.00065635 0.000656997 0.000657644 0.000658291 0.000658938 0.000659585 0.000660232 0.000660879 0.000661526 0.000662173 0.00066282 0.000663467 0.000664114 0.000664761 0.000665408 0.000666055 0.000666702 0.000667349 0.000667996 0.000668643 0.00066929 0.000669937 0.000670584 0.000671231 0.000671878 0.000672525 0.000673172 0.000673819 0.000674466 0.000675113 0.00067576 0.000676407 0.000677054 0.000677701 0.000678348 0.000678995 +-0.000131467 -0.000125336 -0.000116702 -9.30248E-05 1.19302E-06 0.000241056 0.000489236 0.000587173 0.000606855 0.000610428 0.000611513 0.000612235 0.000612904 0.000613565 0.000614225 0.000614884 0.000615544 0.000616204 0.000616864 0.000617524 0.000618183 0.000618843 0.000619503 0.000620163 0.000620823 0.000621482 0.000622142 0.000622802 0.000623462 0.000624122 0.000624781 0.000625441 0.000626101 0.000626761 0.000627421 0.00062808 0.00062874 0.0006294 0.00063006 0.00063072 0.000631379 0.000632039 0.000632699 0.000633359 0.000634019 0.000634678 0.000635338 0.000635998 0.000636658 0.000637318 0.000637977 0.000638637 0.000639297 0.000639957 0.000640617 0.000641276 0.000641936 0.000642596 0.000643256 0.000643915 0.000644575 0.000645235 0.000645895 0.000646555 0.000647214 0.000647874 0.000648534 0.000649194 0.000649854 0.000650513 0.000651173 0.000651833 0.000652493 0.000653153 0.000653812 0.000654472 0.000655132 0.000655792 0.000656452 0.000657111 0.000657771 0.000658431 0.000659091 0.000659751 0.00066041 0.00066107 0.00066173 0.00066239 0.00066305 0.000663709 0.000664369 0.000665029 0.000665689 0.000666349 0.000667008 0.000667668 0.000668328 0.000668988 0.000669648 0.000670307 0.000670967 0.000671627 0.000672287 0.000672947 0.000673606 0.000674266 0.000674926 0.000675586 0.000676246 0.000676905 0.000677565 0.000678225 0.000678885 0.000679545 0.000680204 0.000680864 0.000681524 0.000682184 0.000682844 0.000683503 0.000684163 0.000684823 0.000685483 0.000686143 0.000686802 0.000687462 0.000688122 0.000688782 0.000689442 0.000690101 0.000690761 0.000691421 0.000692081 +-0.000133917 -0.000127668 -0.000118865 -9.47171E-05 1.22181E-06 0.000244889 0.000497575 0.000597974 0.000618233 0.000621908 0.000623019 0.000623755 0.000624437 0.000625111 0.000625784 0.000626456 0.000627129 0.000627802 0.000628474 0.000629147 0.000629819 0.000630492 0.000631165 0.000631837 0.00063251 0.000633182 0.000633855 0.000634528 0.0006352 0.000635873 0.000636545 0.000637218 0.000637891 0.000638563 0.000639236 0.000639908 0.000640581 0.000641254 0.000641926 0.000642599 0.000643271 0.000643944 0.000644617 0.000645289 0.000645962 0.000646634 0.000647307 0.00064798 0.000648652 0.000649325 0.000649997 0.00065067 0.000651343 0.000652015 0.000652688 0.00065336 0.000654033 0.000654705 0.000655378 0.000656051 0.000656723 0.000657396 0.000658068 0.000658741 0.000659414 0.000660086 0.000660759 0.000661431 0.000662104 0.000662777 0.000663449 0.000664122 0.000664794 0.000665467 0.00066614 0.000666812 0.000667485 0.000668157 0.00066883 0.000669503 0.000670175 0.000670848 0.00067152 0.000672193 0.000672866 0.000673538 0.000674211 0.000674883 0.000675556 0.000676229 0.000676901 0.000677574 0.000678246 0.000678919 0.000679592 0.000680264 0.000680937 0.000681609 0.000682282 0.000682955 0.000683627 0.0006843 0.000684972 0.000685645 0.000686318 0.00068699 0.000687663 0.000688335 0.000689008 0.000689681 0.000690353 0.000691026 0.000691698 0.000692371 0.000693043 0.000693716 0.000694389 0.000695061 0.000695734 0.000696406 0.000697079 0.000697752 0.000698424 0.000699097 0.000699769 0.000700442 0.000701115 0.000701787 0.00070246 0.000703132 0.000703805 0.000704478 0.00070515 +-0.000136365 -0.000129999 -0.000121025 -9.64066E-05 1.25082E-06 0.000248698 0.000505872 0.00060875 0.000629594 0.000633372 0.000634509 0.00063526 0.000635955 0.000636642 0.000637328 0.000638013 0.000638698 0.000639384 0.000640069 0.000640755 0.00064144 0.000642125 0.000642811 0.000643496 0.000644182 0.000644867 0.000645552 0.000646238 0.000646923 0.000647608 0.000648294 0.000648979 0.000649665 0.00065035 0.000651035 0.000651721 0.000652406 0.000653092 0.000653777 0.000654462 0.000655148 0.000655833 0.000656518 0.000657204 0.000657889 0.000658575 0.00065926 0.000659945 0.000660631 0.000661316 0.000662002 0.000662687 0.000663372 0.000664058 0.000664743 0.000665428 0.000666114 0.000666799 0.000667485 0.00066817 0.000668855 0.000669541 0.000670226 0.000670912 0.000671597 0.000672282 0.000672968 0.000673653 0.000674338 0.000675024 0.000675709 0.000676395 0.00067708 0.000677765 0.000678451 0.000679136 0.000679822 0.000680507 0.000681192 0.000681878 0.000682563 0.000683248 0.000683934 0.000684619 0.000685305 0.00068599 0.000686675 0.000687361 0.000688046 0.000688732 0.000689417 0.000690102 0.000690788 0.000691473 0.000692158 0.000692844 0.000693529 0.000694215 0.0006949 0.000695585 0.000696271 0.000696956 0.000697642 0.000698327 0.000699012 0.000699698 0.000700383 0.000701069 0.000701754 0.000702439 0.000703125 0.00070381 0.000704495 0.000705181 0.000705866 0.000706552 0.000707237 0.000707922 0.000708608 0.000709293 0.000709979 0.000710664 0.000711349 0.000712035 0.00071272 0.000713405 0.000714091 0.000714776 0.000715462 0.000716147 0.000716832 0.000717518 0.000718203 +-0.000138811 -0.000132327 -0.000123184 -9.80934E-05 1.28004E-06 0.000252481 0.000514125 0.0006195 0.000640937 0.00064482 0.000645984 0.00064675 0.000647458 0.000648158 0.000648856 0.000649554 0.000650252 0.00065095 0.000651649 0.000652347 0.000653045 0.000653743 0.000654441 0.000655139 0.000655838 0.000656536 0.000657234 0.000657932 0.00065863 0.000659328 0.000660027 0.000660725 0.000661423 0.000662121 0.000662819 0.000663517 0.000664216 0.000664914 0.000665612 0.00066631 0.000667008 0.000667706 0.000668405 0.000669103 0.000669801 0.000670499 0.000671197 0.000671895 0.000672594 0.000673292 0.00067399 0.000674688 0.000675386 0.000676084 0.000676783 0.000677481 0.000678179 0.000678877 0.000679575 0.000680273 0.000680972 0.00068167 0.000682368 0.000683066 0.000683764 0.000684462 0.000685161 0.000685859 0.000686557 0.000687255 0.000687953 0.000688651 0.00068935 0.000690048 0.000690746 0.000691444 0.000692142 0.00069284 0.000693539 0.000694237 0.000694935 0.000695633 0.000696331 0.000697029 0.000697728 0.000698426 0.000699124 0.000699822 0.00070052 0.000701218 0.000701917 0.000702615 0.000703313 0.000704011 0.000704709 0.000705407 0.000706106 0.000706804 0.000707502 0.0007082 0.000708898 0.000709596 0.000710294 0.000710993 0.000711691 0.000712389 0.000713087 0.000713785 0.000714483 0.000715182 0.00071588 0.000716578 0.000717276 0.000717974 0.000718672 0.000719371 0.000720069 0.000720767 0.000721465 0.000722163 0.000722861 0.00072356 0.000724258 0.000724956 0.000725654 0.000726352 0.00072705 0.000727749 0.000728447 0.000729145 0.000729843 0.000730541 0.000731239 +-0.000141255 -0.000134654 -0.000125341 -9.97775E-05 1.30947E-06 0.00025624 0.000522335 0.000630225 0.000652263 0.000656253 0.000657444 0.000658224 0.000658945 0.000659658 0.000660369 0.00066108 0.000661791 0.000662502 0.000663212 0.000663923 0.000664634 0.000665345 0.000666056 0.000666767 0.000667478 0.000668189 0.0006689 0.000669611 0.000670322 0.000671033 0.000671744 0.000672455 0.000673166 0.000673876 0.000674587 0.000675298 0.000676009 0.00067672 0.000677431 0.000678142 0.000678853 0.000679564 0.000680275 0.000680986 0.000681697 0.000682408 0.000683119 0.00068383 0.000684541 0.000685251 0.000685962 0.000686673 0.000687384 0.000688095 0.000688806 0.000689517 0.000690228 0.000690939 0.00069165 0.000692361 0.000693072 0.000693783 0.000694494 0.000695205 0.000695915 0.000696626 0.000697337 0.000698048 0.000698759 0.00069947 0.000700181 0.000700892 0.000701603 0.000702314 0.000703025 0.000703736 0.000704447 0.000705158 0.000705869 0.00070658 0.00070729 0.000708001 0.000708712 0.000709423 0.000710134 0.000710845 0.000711556 0.000712267 0.000712978 0.000713689 0.0007144 0.000715111 0.000715822 0.000716533 0.000717244 0.000717954 0.000718665 0.000719376 0.000720087 0.000720798 0.000721509 0.00072222 0.000722931 0.000723642 0.000724353 0.000725064 0.000725775 0.000726486 0.000727197 0.000727908 0.000728619 0.000729329 0.00073004 0.000730751 0.000731462 0.000732173 0.000732884 0.000733595 0.000734306 0.000735017 0.000735728 0.000736439 0.00073715 0.000737861 0.000738572 0.000739283 0.000739994 0.000740704 0.000741415 0.000742126 0.000742837 0.000743548 0.000744259 +-0.000143698 -0.000136978 -0.000127496 -0.000101459 1.33911E-06 0.000259974 0.000530502 0.000640923 0.000663572 0.00066767 0.000668887 0.000669683 0.000670417 0.000671142 0.000671866 0.00067259 0.000673313 0.000674037 0.000674761 0.000675484 0.000676208 0.000676932 0.000677656 0.000678379 0.000679103 0.000679827 0.00068055 0.000681274 0.000681998 0.000682721 0.000683445 0.000684169 0.000684892 0.000685616 0.00068634 0.000687064 0.000687787 0.000688511 0.000689235 0.000689958 0.000690682 0.000691406 0.000692129 0.000692853 0.000693577 0.000694301 0.000695024 0.000695748 0.000696472 0.000697195 0.000697919 0.000698643 0.000699366 0.00070009 0.000700814 0.000701537 0.000702261 0.000702985 0.000703709 0.000704432 0.000705156 0.00070588 0.000706603 0.000707327 0.000708051 0.000708774 0.000709498 0.000710222 0.000710946 0.000711669 0.000712393 0.000713117 0.00071384 0.000714564 0.000715288 0.000716011 0.000716735 0.000717459 0.000718182 0.000718906 0.00071963 0.000720354 0.000721077 0.000721801 0.000722525 0.000723248 0.000723972 0.000724696 0.000725419 0.000726143 0.000726867 0.000727591 0.000728314 0.000729038 0.000729762 0.000730485 0.000731209 0.000731933 0.000732656 0.00073338 0.000734104 0.000734827 0.000735551 0.000736275 0.000736999 0.000737722 0.000738446 0.00073917 0.000739893 0.000740617 0.000741341 0.000742064 0.000742788 0.000743512 0.000744236 0.000744959 0.000745683 0.000746407 0.00074713 0.000747854 0.000748578 0.000749301 0.000750025 0.000750749 0.000751472 0.000752196 0.00075292 0.000753644 0.000754367 0.000755091 0.000755815 0.000756538 0.000757262 +-0.000146138 -0.000139302 -0.000129649 -0.000103137 1.36895E-06 0.000263685 0.000538627 0.000651595 0.000674863 0.000679071 0.000680316 0.000681126 0.000681873 0.000682611 0.000683348 0.000684084 0.000684821 0.000685557 0.000686293 0.00068703 0.000687766 0.000688503 0.000689239 0.000689976 0.000690712 0.000691449 0.000692185 0.000692921 0.000693658 0.000694394 0.000695131 0.000695867 0.000696604 0.00069734 0.000698077 0.000698813 0.000699549 0.000700286 0.000701022 0.000701759 0.000702495 0.000703232 0.000703968 0.000704705 0.000705441 0.000706177 0.000706914 0.00070765 0.000708387 0.000709123 0.00070986 0.000710596 0.000711333 0.000712069 0.000712805 0.000713542 0.000714278 0.000715015 0.000715751 0.000716488 0.000717224 0.000717961 0.000718697 0.000719433 0.00072017 0.000720906 0.000721643 0.000722379 0.000723116 0.000723852 0.000724589 0.000725325 0.000726061 0.000726798 0.000727534 0.000728271 0.000729007 0.000729744 0.00073048 0.000731217 0.000731953 0.00073269 0.000733426 0.000734162 0.000734899 0.000735635 0.000736372 0.000737108 0.000737845 0.000738581 0.000739318 0.000740054 0.00074079 0.000741527 0.000742263 0.000743 0.000743736 0.000744473 0.000745209 0.000745946 0.000746682 0.000747418 0.000748155 0.000748891 0.000749628 0.000750364 0.000751101 0.000751837 0.000752574 0.00075331 0.000754046 0.000754783 0.000755519 0.000756256 0.000756992 0.000757729 0.000758465 0.000759202 0.000759938 0.000760674 0.000761411 0.000762147 0.000762884 0.00076362 0.000764357 0.000765093 0.00076583 0.000766566 0.000767302 0.000768039 0.000768775 0.000769512 0.000770248 +-0.000148578 -0.000141623 -0.0001318 -0.000104814 1.39901E-06 0.000267372 0.000546709 0.000662242 0.000686137 0.000690457 0.000691728 0.000692553 0.000693314 0.000694064 0.000694814 0.000695563 0.000696312 0.000697061 0.000697811 0.00069856 0.000699309 0.000700058 0.000700807 0.000701556 0.000702306 0.000703055 0.000703804 0.000704553 0.000705302 0.000706052 0.000706801 0.00070755 0.000708299 0.000709048 0.000709798 0.000710547 0.000711296 0.000712045 0.000712794 0.000713543 0.000714293 0.000715042 0.000715791 0.00071654 0.000717289 0.000718039 0.000718788 0.000719537 0.000720286 0.000721035 0.000721784 0.000722534 0.000723283 0.000724032 0.000724781 0.00072553 0.00072628 0.000727029 0.000727778 0.000728527 0.000729276 0.000730026 0.000730775 0.000731524 0.000732273 0.000733022 0.000733771 0.000734521 0.00073527 0.000736019 0.000736768 0.000737517 0.000738267 0.000739016 0.000739765 0.000740514 0.000741263 0.000742012 0.000742762 0.000743511 0.00074426 0.000745009 0.000745758 0.000746508 0.000747257 0.000748006 0.000748755 0.000749504 0.000750254 0.000751003 0.000751752 0.000752501 0.00075325 0.000753999 0.000754749 0.000755498 0.000756247 0.000756996 0.000757745 0.000758495 0.000759244 0.000759993 0.000760742 0.000761491 0.00076224 0.00076299 0.000763739 0.000764488 0.000765237 0.000765986 0.000766736 0.000767485 0.000768234 0.000768983 0.000769732 0.000770482 0.000771231 0.00077198 0.000772729 0.000773478 0.000774227 0.000774977 0.000775726 0.000776475 0.000777224 0.000777973 0.000778723 0.000779472 0.000780221 0.00078097 0.000781719 0.000782468 0.000783218 +-0.000151015 -0.000143943 -0.000133949 -0.000106487 1.42928E-06 0.000271036 0.000554749 0.000672862 0.000697394 0.000701826 0.000703126 0.000703965 0.000704739 0.000705502 0.000706264 0.000707026 0.000707788 0.00070855 0.000709312 0.000710074 0.000710836 0.000711598 0.00071236 0.000713122 0.000713884 0.000714645 0.000715407 0.000716169 0.000716931 0.000717693 0.000718455 0.000719217 0.000719979 0.000720741 0.000721503 0.000722265 0.000723027 0.000723788 0.00072455 0.000725312 0.000726074 0.000726836 0.000727598 0.00072836 0.000729122 0.000729884 0.000730646 0.000731408 0.000732169 0.000732931 0.000733693 0.000734455 0.000735217 0.000735979 0.000736741 0.000737503 0.000738265 0.000739027 0.000739789 0.000740551 0.000741312 0.000742074 0.000742836 0.000743598 0.00074436 0.000745122 0.000745884 0.000746646 0.000747408 0.00074817 0.000748932 0.000749694 0.000750455 0.000751217 0.000751979 0.000752741 0.000753503 0.000754265 0.000755027 0.000755789 0.000756551 0.000757313 0.000758075 0.000758836 0.000759598 0.00076036 0.000761122 0.000761884 0.000762646 0.000763408 0.00076417 0.000764932 0.000765694 0.000766456 0.000767218 0.000767979 0.000768741 0.000769503 0.000770265 0.000771027 0.000771789 0.000772551 0.000773313 0.000774075 0.000774837 0.000775599 0.000776361 0.000777122 0.000777884 0.000778646 0.000779408 0.00078017 0.000780932 0.000781694 0.000782456 0.000783218 0.00078398 0.000784742 0.000785503 0.000786265 0.000787027 0.000787789 0.000788551 0.000789313 0.000790075 0.000790837 0.000791599 0.000792361 0.000793123 0.000793885 0.000794646 0.000795408 0.00079617 +-0.000153451 -0.00014626 -0.000136096 -0.000108158 1.45975E-06 0.000274676 0.000562747 0.000683456 0.000708633 0.00071318 0.000714507 0.000715362 0.000716148 0.000716925 0.000717699 0.000718474 0.000719249 0.000720023 0.000720798 0.000721573 0.000722347 0.000723122 0.000723897 0.000724671 0.000725446 0.00072622 0.000726995 0.00072777 0.000728544 0.000729319 0.000730094 0.000730868 0.000731643 0.000732417 0.000733192 0.000733967 0.000734741 0.000735516 0.000736291 0.000737065 0.00073784 0.000738615 0.000739389 0.000740164 0.000740938 0.000741713 0.000742488 0.000743262 0.000744037 0.000744812 0.000745586 0.000746361 0.000747135 0.00074791 0.000748685 0.000749459 0.000750234 0.000751009 0.000751783 0.000752558 0.000753333 0.000754107 0.000754882 0.000755656 0.000756431 0.000757206 0.00075798 0.000758755 0.00075953 0.000760304 0.000761079 0.000761853 0.000762628 0.000763403 0.000764177 0.000764952 0.000765727 0.000766501 0.000767276 0.000768051 0.000768825 0.0007696 0.000770374 0.000771149 0.000771924 0.000772698 0.000773473 0.000774248 0.000775022 0.000775797 0.000776572 0.000777346 0.000778121 0.000778895 0.00077967 0.000780445 0.000781219 0.000781994 0.000782769 0.000783543 0.000784318 0.000785092 0.000785867 0.000786642 0.000787416 0.000788191 0.000788966 0.00078974 0.000790515 0.00079129 0.000792064 0.000792839 0.000793613 0.000794388 0.000795163 0.000795937 0.000796712 0.000797487 0.000798261 0.000799036 0.000799811 0.000800585 0.00080136 0.000802134 0.000802909 0.000803684 0.000804458 0.000805233 0.000806008 0.000806782 0.000807557 0.000808331 0.000809106 +-0.000155885 -0.000148577 -0.000138241 -0.000109826 1.49042E-06 0.000278294 0.000570702 0.000694024 0.000719855 0.000724518 0.000725873 0.000726743 0.000727542 0.000728331 0.000729119 0.000729906 0.000730694 0.000731481 0.000732268 0.000733056 0.000733843 0.00073463 0.000735418 0.000736205 0.000736992 0.00073778 0.000738567 0.000739354 0.000740142 0.000740929 0.000741716 0.000742504 0.000743291 0.000744078 0.000744866 0.000745653 0.00074644 0.000747228 0.000748015 0.000748802 0.00074959 0.000750377 0.000751164 0.000751952 0.000752739 0.000753526 0.000754314 0.000755101 0.000755888 0.000756676 0.000757463 0.00075825 0.000759038 0.000759825 0.000760613 0.0007614 0.000762187 0.000762975 0.000763762 0.000764549 0.000765337 0.000766124 0.000766911 0.000767699 0.000768486 0.000769273 0.000770061 0.000770848 0.000771635 0.000772423 0.00077321 0.000773997 0.000774785 0.000775572 0.000776359 0.000777147 0.000777934 0.000778721 0.000779509 0.000780296 0.000781083 0.000781871 0.000782658 0.000783445 0.000784233 0.00078502 0.000785807 0.000786595 0.000787382 0.000788169 0.000788957 0.000789744 0.000790531 0.000791319 0.000792106 0.000792893 0.000793681 0.000794468 0.000795255 0.000796043 0.00079683 0.000797618 0.000798405 0.000799192 0.00079998 0.000800767 0.000801554 0.000802342 0.000803129 0.000803916 0.000804704 0.000805491 0.000806278 0.000807066 0.000807853 0.00080864 0.000809428 0.000810215 0.000811002 0.00081179 0.000812577 0.000813364 0.000814152 0.000814939 0.000815726 0.000816514 0.000817301 0.000818088 0.000818876 0.000819663 0.00082045 0.000821238 0.000822025 +-0.000158317 -0.000150891 -0.000140385 -0.000111491 1.5213E-06 0.000281888 0.000578616 0.000704565 0.000731059 0.00073584 0.000737224 0.000738108 0.000738921 0.000739722 0.000740523 0.000741323 0.000742123 0.000742923 0.000743723 0.000744523 0.000745323 0.000746123 0.000746923 0.000747723 0.000748523 0.000749323 0.000750123 0.000750923 0.000751723 0.000752523 0.000753323 0.000754123 0.000754923 0.000755723 0.000756524 0.000757324 0.000758124 0.000758924 0.000759724 0.000760524 0.000761324 0.000762124 0.000762924 0.000763724 0.000764524 0.000765324 0.000766124 0.000766924 0.000767724 0.000768524 0.000769324 0.000770124 0.000770924 0.000771724 0.000772524 0.000773324 0.000774124 0.000774924 0.000775724 0.000776524 0.000777325 0.000778125 0.000778925 0.000779725 0.000780525 0.000781325 0.000782125 0.000782925 0.000783725 0.000784525 0.000785325 0.000786125 0.000786925 0.000787725 0.000788525 0.000789325 0.000790125 0.000790925 0.000791725 0.000792525 0.000793325 0.000794125 0.000794925 0.000795725 0.000796525 0.000797325 0.000798125 0.000798926 0.000799726 0.000800526 0.000801326 0.000802126 0.000802926 0.000803726 0.000804526 0.000805326 0.000806126 0.000806926 0.000807726 0.000808526 0.000809326 0.000810126 0.000810926 0.000811726 0.000812526 0.000813326 0.000814126 0.000814926 0.000815726 0.000816526 0.000817326 0.000818126 0.000818926 0.000819726 0.000820527 0.000821327 0.000822127 0.000822927 0.000823727 0.000824527 0.000825327 0.000826127 0.000826927 0.000827727 0.000828527 0.000829327 0.000830127 0.000830927 0.000831727 0.000832527 0.000833327 0.000834127 0.000834927 +-0.000160748 -0.000153204 -0.000142526 -0.000113154 1.55239E-06 0.000285461 0.000586488 0.00071508 0.000742246 0.000747147 0.000748559 0.000749458 0.000750284 0.000751098 0.000751911 0.000752724 0.000753537 0.000754349 0.000755162 0.000755975 0.000756787 0.0007576 0.000758413 0.000759226 0.000760038 0.000760851 0.000761664 0.000762477 0.000763289 0.000764102 0.000764915 0.000765727 0.00076654 0.000767353 0.000768166 0.000768978 0.000769791 0.000770604 0.000771416 0.000772229 0.000773042 0.000773855 0.000774667 0.00077548 0.000776293 0.000777106 0.000777918 0.000778731 0.000779544 0.000780356 0.000781169 0.000781982 0.000782795 0.000783607 0.00078442 0.000785233 0.000786045 0.000786858 0.000787671 0.000788484 0.000789296 0.000790109 0.000790922 0.000791735 0.000792547 0.00079336 0.000794173 0.000794985 0.000795798 0.000796611 0.000797424 0.000798236 0.000799049 0.000799862 0.000800675 0.000801487 0.0008023 0.000803113 0.000803925 0.000804738 0.000805551 0.000806364 0.000807176 0.000807989 0.000808802 0.000809614 0.000810427 0.00081124 0.000812053 0.000812865 0.000813678 0.000814491 0.000815304 0.000816116 0.000816929 0.000817742 0.000818554 0.000819367 0.00082018 0.000820993 0.000821805 0.000822618 0.000823431 0.000824244 0.000825056 0.000825869 0.000826682 0.000827494 0.000828307 0.00082912 0.000829933 0.000830745 0.000831558 0.000832371 0.000833183 0.000833996 0.000834809 0.000835622 0.000836434 0.000837247 0.00083806 0.000838873 0.000839685 0.000840498 0.000841311 0.000842123 0.000842936 0.000843749 0.000844562 0.000845374 0.000846187 0.000847 0.000847813 +-0.000163177 -0.000155515 -0.000144666 -0.000114813 1.58367E-06 0.000289011 0.000594318 0.000725568 0.000753415 0.000758438 0.000759878 0.000760793 0.000761631 0.000762458 0.000763284 0.000764109 0.000764935 0.00076576 0.000766585 0.000767411 0.000768236 0.000769062 0.000769887 0.000770712 0.000771538 0.000772363 0.000773189 0.000774014 0.000774839 0.000775665 0.00077649 0.000777316 0.000778141 0.000778966 0.000779792 0.000780617 0.000781443 0.000782268 0.000783093 0.000783919 0.000784744 0.00078557 0.000786395 0.00078722 0.000788046 0.000788871 0.000789697 0.000790522 0.000791347 0.000792173 0.000792998 0.000793824 0.000794649 0.000795474 0.0007963 0.000797125 0.000797951 0.000798776 0.000799601 0.000800427 0.000801252 0.000802078 0.000802903 0.000803728 0.000804554 0.000805379 0.000806205 0.00080703 0.000807855 0.000808681 0.000809506 0.000810332 0.000811157 0.000811982 0.000812808 0.000813633 0.000814459 0.000815284 0.000816109 0.000816935 0.00081776 0.000818586 0.000819411 0.000820236 0.000821062 0.000821887 0.000822713 0.000823538 0.000824363 0.000825189 0.000826014 0.00082684 0.000827665 0.00082849 0.000829316 0.000830141 0.000830967 0.000831792 0.000832617 0.000833443 0.000834268 0.000835094 0.000835919 0.000836744 0.00083757 0.000838395 0.000839221 0.000840046 0.000840871 0.000841697 0.000842522 0.000843348 0.000844173 0.000844998 0.000845824 0.000846649 0.000847475 0.0008483 0.000849125 0.000849951 0.000850776 0.000851602 0.000852427 0.000853252 0.000854078 0.000854903 0.000855729 0.000856554 0.000857379 0.000858205 0.00085903 0.000859856 0.000860681 +-0.000165604 -0.000157825 -0.000146804 -0.00011647 1.61516E-06 0.000292539 0.000602107 0.000736029 0.000764567 0.000769712 0.000771182 0.000772111 0.000772963 0.000773803 0.000774641 0.000775479 0.000776317 0.000777155 0.000777993 0.000778831 0.000779669 0.000780508 0.000781346 0.000782184 0.000783022 0.00078386 0.000784698 0.000785536 0.000786374 0.000787212 0.00078805 0.000788888 0.000789726 0.000790564 0.000791402 0.00079224 0.000793078 0.000793917 0.000794755 0.000795593 0.000796431 0.000797269 0.000798107 0.000798945 0.000799783 0.000800621 0.000801459 0.000802297 0.000803135 0.000803973 0.000804811 0.000805649 0.000806487 0.000807326 0.000808164 0.000809002 0.00080984 0.000810678 0.000811516 0.000812354 0.000813192 0.00081403 0.000814868 0.000815706 0.000816544 0.000817382 0.00081822 0.000819058 0.000819896 0.000820734 0.000821573 0.000822411 0.000823249 0.000824087 0.000824925 0.000825763 0.000826601 0.000827439 0.000828277 0.000829115 0.000829953 0.000830791 0.000831629 0.000832467 0.000833305 0.000834144 0.000834982 0.00083582 0.000836658 0.000837496 0.000838334 0.000839172 0.00084001 0.000840848 0.000841686 0.000842524 0.000843362 0.0008442 0.000845038 0.000845876 0.000846714 0.000847553 0.000848391 0.000849229 0.000850067 0.000850905 0.000851743 0.000852581 0.000853419 0.000854257 0.000855095 0.000855933 0.000856771 0.000857609 0.000858447 0.000859285 0.000860123 0.000860962 0.0008618 0.000862638 0.000863476 0.000864314 0.000865152 0.00086599 0.000866828 0.000867666 0.000868504 0.000869342 0.00087018 0.000871018 0.000871856 0.000872694 0.000873532 +-0.00016803 -0.000160133 -0.00014894 -0.000118125 1.64685E-06 0.000296045 0.000609854 0.000746464 0.000775701 0.000780971 0.00078247 0.000783415 0.000784279 0.000785132 0.000785983 0.000786833 0.000787684 0.000788535 0.000789386 0.000790236 0.000791087 0.000791938 0.000792788 0.000793639 0.00079449 0.000795341 0.000796191 0.000797042 0.000797893 0.000798743 0.000799594 0.000800445 0.000801296 0.000802146 0.000802997 0.000803848 0.000804698 0.000805549 0.0008064 0.000807251 0.000808101 0.000808952 0.000809803 0.000810653 0.000811504 0.000812355 0.000813206 0.000814056 0.000814907 0.000815758 0.000816608 0.000817459 0.00081831 0.000819161 0.000820011 0.000820862 0.000821713 0.000822563 0.000823414 0.000824265 0.000825116 0.000825966 0.000826817 0.000827668 0.000828518 0.000829369 0.00083022 0.000831071 0.000831921 0.000832772 0.000833623 0.000834473 0.000835324 0.000836175 0.000837026 0.000837876 0.000838727 0.000839578 0.000840428 0.000841279 0.00084213 0.000842981 0.000843831 0.000844682 0.000845533 0.000846384 0.000847234 0.000848085 0.000848936 0.000849786 0.000850637 0.000851488 0.000852339 0.000853189 0.00085404 0.000854891 0.000855741 0.000856592 0.000857443 0.000858294 0.000859144 0.000859995 0.000860846 0.000861696 0.000862547 0.000863398 0.000864249 0.000865099 0.00086595 0.000866801 0.000867651 0.000868502 0.000869353 0.000870204 0.000871054 0.000871905 0.000872756 0.000873606 0.000874457 0.000875308 0.000876159 0.000877009 0.00087786 0.000878711 0.000879561 0.000880412 0.000881263 0.000882114 0.000882964 0.000883815 0.000884666 0.000885516 0.000886367 +-0.000170454 -0.000162438 -0.000151075 -0.000119777 1.67873E-06 0.00029953 0.00061756 0.000756872 0.000786818 0.000792215 0.000793743 0.000794702 0.00079558 0.000796445 0.000797309 0.000798172 0.000799036 0.000799899 0.000800762 0.000801626 0.000802489 0.000803352 0.000804216 0.000805079 0.000805942 0.000806806 0.000807669 0.000808532 0.000809396 0.000810259 0.000811123 0.000811986 0.000812849 0.000813713 0.000814576 0.000815439 0.000816303 0.000817166 0.000818029 0.000818893 0.000819756 0.000820619 0.000821483 0.000822346 0.00082321 0.000824073 0.000824936 0.0008258 0.000826663 0.000827526 0.00082839 0.000829253 0.000830116 0.00083098 0.000831843 0.000832706 0.00083357 0.000834433 0.000835297 0.00083616 0.000837023 0.000837887 0.00083875 0.000839613 0.000840477 0.00084134 0.000842203 0.000843067 0.00084393 0.000844793 0.000845657 0.00084652 0.000847384 0.000848247 0.00084911 0.000849974 0.000850837 0.0008517 0.000852564 0.000853427 0.00085429 0.000855154 0.000856017 0.00085688 0.000857744 0.000858607 0.000859471 0.000860334 0.000861197 0.000862061 0.000862924 0.000863787 0.000864651 0.000865514 0.000866377 0.000867241 0.000868104 0.000868967 0.000869831 0.000870694 0.000871558 0.000872421 0.000873284 0.000874148 0.000875011 0.000875874 0.000876738 0.000877601 0.000878464 0.000879328 0.000880191 0.000881054 0.000881918 0.000882781 0.000883645 0.000884508 0.000885371 0.000886235 0.000887098 0.000887961 0.000888825 0.000889688 0.000890551 0.000891415 0.000892278 0.000893141 0.000894005 0.000894868 0.000895732 0.000896595 0.000897458 0.000898322 0.000899185 +-0.000172877 -0.000164743 -0.000153208 -0.000121427 1.71082E-06 0.000302993 0.000625226 0.000767253 0.000797917 0.000803442 0.000805 0.000805975 0.000806865 0.000807743 0.000808619 0.000809495 0.000810371 0.000811247 0.000812123 0.000812999 0.000813875 0.000814751 0.000815627 0.000816503 0.000817379 0.000818255 0.000819131 0.000820007 0.000820883 0.000821759 0.000822635 0.000823511 0.000824387 0.000825263 0.000826139 0.000827015 0.000827891 0.000828767 0.000829643 0.000830519 0.000831395 0.000832271 0.000833147 0.000834023 0.000834899 0.000835775 0.000836651 0.000837527 0.000838403 0.000839279 0.000840155 0.000841031 0.000841907 0.000842783 0.000843659 0.000844535 0.000845411 0.000846287 0.000847163 0.000848039 0.000848915 0.000849791 0.000850667 0.000851543 0.000852419 0.000853295 0.000854171 0.000855047 0.000855923 0.000856799 0.000857675 0.000858551 0.000859427 0.000860303 0.000861179 0.000862055 0.000862931 0.000863807 0.000864683 0.000865559 0.000866435 0.000867311 0.000868187 0.000869063 0.000869939 0.000870815 0.00087169 0.000872566 0.000873442 0.000874318 0.000875194 0.00087607 0.000876946 0.000877822 0.000878698 0.000879574 0.00088045 0.000881326 0.000882202 0.000883078 0.000883954 0.00088483 0.000885706 0.000886582 0.000887458 0.000888334 0.00088921 0.000890086 0.000890962 0.000891838 0.000892714 0.00089359 0.000894466 0.000895342 0.000896218 0.000897094 0.00089797 0.000898846 0.000899722 0.000900598 0.000901474 0.00090235 0.000903226 0.000904102 0.000904978 0.000905854 0.00090673 0.000907606 0.000908482 0.000909358 0.000910234 0.00091111 0.000911986 +-0.000175298 -0.000167046 -0.000155338 -0.000123074 1.7431E-06 0.000306435 0.00063285 0.000777608 0.000808998 0.000814654 0.000816241 0.000817232 0.000818135 0.000819026 0.000819915 0.000820803 0.000821692 0.00082258 0.000823469 0.000824358 0.000825246 0.000826135 0.000827023 0.000827912 0.000828801 0.000829689 0.000830578 0.000831466 0.000832355 0.000833244 0.000834132 0.000835021 0.000835909 0.000836798 0.000837687 0.000838575 0.000839464 0.000840352 0.000841241 0.00084213 0.000843018 0.000843907 0.000844795 0.000845684 0.000846573 0.000847461 0.00084835 0.000849239 0.000850127 0.000851016 0.000851904 0.000852793 0.000853682 0.00085457 0.000855459 0.000856347 0.000857236 0.000858125 0.000859013 0.000859902 0.00086079 0.000861679 0.000862568 0.000863456 0.000864345 0.000865233 0.000866122 0.000867011 0.000867899 0.000868788 0.000869676 0.000870565 0.000871454 0.000872342 0.000873231 0.000874119 0.000875008 0.000875897 0.000876785 0.000877674 0.000878562 0.000879451 0.00088034 0.000881228 0.000882117 0.000883006 0.000883894 0.000884783 0.000885671 0.00088656 0.000887449 0.000888337 0.000889226 0.000890114 0.000891003 0.000891892 0.00089278 0.000893669 0.000894557 0.000895446 0.000896335 0.000897223 0.000898112 0.000899 0.000899889 0.000900778 0.000901666 0.000902555 0.000903443 0.000904332 0.000905221 0.000906109 0.000906998 0.000907886 0.000908775 0.000909664 0.000910552 0.000911441 0.000912329 0.000913218 0.000914107 0.000914995 0.000915884 0.000916773 0.000917661 0.00091855 0.000919438 0.000920327 0.000921216 0.000922104 0.000922993 0.000923881 0.00092477 +-0.000177717 -0.000169348 -0.000157468 -0.000124718 1.77558E-06 0.000309857 0.000640434 0.000787935 0.000820062 0.00082585 0.000827468 0.000828473 0.000829389 0.000830293 0.000831194 0.000832095 0.000832997 0.000833898 0.000834799 0.0008357 0.000836601 0.000837503 0.000838404 0.000839305 0.000840206 0.000841108 0.000842009 0.00084291 0.000843811 0.000844712 0.000845614 0.000846515 0.000847416 0.000848317 0.000849218 0.00085012 0.000851021 0.000851922 0.000852823 0.000853724 0.000854626 0.000855527 0.000856428 0.000857329 0.000858231 0.000859132 0.000860033 0.000860934 0.000861835 0.000862737 0.000863638 0.000864539 0.00086544 0.000866341 0.000867243 0.000868144 0.000869045 0.000869946 0.000870847 0.000871749 0.00087265 0.000873551 0.000874452 0.000875354 0.000876255 0.000877156 0.000878057 0.000878958 0.00087986 0.000880761 0.000881662 0.000882563 0.000883464 0.000884366 0.000885267 0.000886168 0.000887069 0.000887971 0.000888872 0.000889773 0.000890674 0.000891575 0.000892477 0.000893378 0.000894279 0.00089518 0.000896081 0.000896983 0.000897884 0.000898785 0.000899686 0.000900587 0.000901489 0.00090239 0.000903291 0.000904192 0.000905094 0.000905995 0.000906896 0.000907797 0.000908698 0.0009096 0.000910501 0.000911402 0.000912303 0.000913204 0.000914106 0.000915007 0.000915908 0.000916809 0.000917711 0.000918612 0.000919513 0.000920414 0.000921315 0.000922217 0.000923118 0.000924019 0.00092492 0.000925821 0.000926723 0.000927624 0.000928525 0.000929426 0.000930328 0.000931229 0.00093213 0.000933031 0.000933932 0.000934834 0.000935735 0.000936636 0.000937537 +-0.000180135 -0.000171648 -0.000159595 -0.00012636 1.80826E-06 0.000313258 0.000647978 0.000798235 0.000831109 0.00083703 0.000838678 0.000839699 0.000840628 0.000841544 0.000842458 0.000843372 0.000844286 0.0008452 0.000846114 0.000847027 0.000847941 0.000848855 0.000849769 0.000850683 0.000851596 0.00085251 0.000853424 0.000854338 0.000855252 0.000856165 0.000857079 0.000857993 0.000858907 0.000859821 0.000860734 0.000861648 0.000862562 0.000863476 0.00086439 0.000865303 0.000866217 0.000867131 0.000868045 0.000868959 0.000869873 0.000870786 0.0008717 0.000872614 0.000873528 0.000874442 0.000875355 0.000876269 0.000877183 0.000878097 0.000879011 0.000879924 0.000880838 0.000881752 0.000882666 0.00088358 0.000884493 0.000885407 0.000886321 0.000887235 0.000888149 0.000889062 0.000889976 0.00089089 0.000891804 0.000892718 0.000893632 0.000894545 0.000895459 0.000896373 0.000897287 0.000898201 0.000899114 0.000900028 0.000900942 0.000901856 0.00090277 0.000903683 0.000904597 0.000905511 0.000906425 0.000907339 0.000908252 0.000909166 0.00091008 0.000910994 0.000911908 0.000912821 0.000913735 0.000914649 0.000915563 0.000916477 0.000917391 0.000918304 0.000919218 0.000920132 0.000921046 0.00092196 0.000922873 0.000923787 0.000924701 0.000925615 0.000926529 0.000927442 0.000928356 0.00092927 0.000930184 0.000931098 0.000932011 0.000932925 0.000933839 0.000934753 0.000935667 0.00093658 0.000937494 0.000938408 0.000939322 0.000940236 0.00094115 0.000942063 0.000942977 0.000943891 0.000944805 0.000945719 0.000946632 0.000947546 0.00094846 0.000949374 0.000950288 +-0.000182551 -0.000173946 -0.000161721 -0.000128 1.84113E-06 0.000316638 0.000655482 0.000808509 0.000842138 0.000848194 0.000849874 0.000850909 0.000851852 0.00085278 0.000853707 0.000854633 0.00085556 0.000856486 0.000857413 0.000858339 0.000859265 0.000860192 0.000861118 0.000862045 0.000862971 0.000863897 0.000864824 0.00086575 0.000866676 0.000867603 0.000868529 0.000869456 0.000870382 0.000871308 0.000872235 0.000873161 0.000874088 0.000875014 0.00087594 0.000876867 0.000877793 0.00087872 0.000879646 0.000880572 0.000881499 0.000882425 0.000883352 0.000884278 0.000885204 0.000886131 0.000887057 0.000887983 0.00088891 0.000889836 0.000890763 0.000891689 0.000892615 0.000893542 0.000894468 0.000895395 0.000896321 0.000897247 0.000898174 0.0008991 0.000900027 0.000900953 0.000901879 0.000902806 0.000903732 0.000904658 0.000905585 0.000906511 0.000907438 0.000908364 0.00090929 0.000910217 0.000911143 0.00091207 0.000912996 0.000913922 0.000914849 0.000915775 0.000916702 0.000917628 0.000918554 0.000919481 0.000920407 0.000921334 0.00092226 0.000923186 0.000924113 0.000925039 0.000925965 0.000926892 0.000927818 0.000928745 0.000929671 0.000930597 0.000931524 0.00093245 0.000933377 0.000934303 0.000935229 0.000936156 0.000937082 0.000938009 0.000938935 0.000939861 0.000940788 0.000941714 0.000942641 0.000943567 0.000944493 0.00094542 0.000946346 0.000947272 0.000948199 0.000949125 0.000950052 0.000950978 0.000951904 0.000952831 0.000953757 0.000954684 0.00095561 0.000956536 0.000957463 0.000958389 0.000959316 0.000960242 0.000961168 0.000962095 0.000963021 +-0.000184966 -0.000176243 -0.000163845 -0.000129636 1.8742E-06 0.000319998 0.000662945 0.000818755 0.000853149 0.000859343 0.000861053 0.000862104 0.00086306 0.000864001 0.00086494 0.000865879 0.000866818 0.000867757 0.000868696 0.000869635 0.000870574 0.000871513 0.000872452 0.000873391 0.00087433 0.000875269 0.000876208 0.000877147 0.000878086 0.000879025 0.000879964 0.000880903 0.000881842 0.000882781 0.00088372 0.000884658 0.000885597 0.000886536 0.000887475 0.000888414 0.000889353 0.000890292 0.000891231 0.00089217 0.000893109 0.000894048 0.000894987 0.000895926 0.000896865 0.000897804 0.000898743 0.000899682 0.000900621 0.00090156 0.000902499 0.000903438 0.000904377 0.000905316 0.000906255 0.000907194 0.000908133 0.000909071 0.00091001 0.000910949 0.000911888 0.000912827 0.000913766 0.000914705 0.000915644 0.000916583 0.000917522 0.000918461 0.0009194 0.000920339 0.000921278 0.000922217 0.000923156 0.000924095 0.000925034 0.000925973 0.000926912 0.000927851 0.00092879 0.000929729 0.000930668 0.000931607 0.000932546 0.000933485 0.000934423 0.000935362 0.000936301 0.00093724 0.000938179 0.000939118 0.000940057 0.000940996 0.000941935 0.000942874 0.000943813 0.000944752 0.000945691 0.00094663 0.000947569 0.000948508 0.000949447 0.000950386 0.000951325 0.000952264 0.000953203 0.000954142 0.000955081 0.00095602 0.000956959 0.000957898 0.000958837 0.000959776 0.000960714 0.000961653 0.000962592 0.000963531 0.00096447 0.000965409 0.000966348 0.000967287 0.000968226 0.000969165 0.000970104 0.000971043 0.000971982 0.000972921 0.00097386 0.000974799 0.000975738 +-0.00018738 -0.000178539 -0.000165967 -0.000131271 1.90745E-06 0.000323338 0.000670369 0.000828974 0.000864143 0.000870476 0.000872218 0.000873284 0.000874252 0.000875206 0.000876158 0.00087711 0.000878061 0.000879013 0.000879964 0.000880916 0.000881867 0.000882819 0.00088377 0.000884722 0.000885673 0.000886625 0.000887576 0.000888528 0.000889479 0.000890431 0.000891382 0.000892334 0.000893286 0.000894237 0.000895189 0.00089614 0.000897092 0.000898043 0.000898995 0.000899946 0.000900898 0.000901849 0.000902801 0.000903752 0.000904704 0.000905655 0.000906607 0.000907558 0.00090851 0.000909461 0.000910413 0.000911364 0.000912316 0.000913267 0.000914219 0.000915171 0.000916122 0.000917074 0.000918025 0.000918977 0.000919928 0.00092088 0.000921831 0.000922783 0.000923734 0.000924686 0.000925637 0.000926589 0.00092754 0.000928492 0.000929443 0.000930395 0.000931346 0.000932298 0.000933249 0.000934201 0.000935153 0.000936104 0.000937056 0.000938007 0.000938959 0.00093991 0.000940862 0.000941813 0.000942765 0.000943716 0.000944668 0.000945619 0.000946571 0.000947522 0.000948474 0.000949425 0.000950377 0.000951328 0.00095228 0.000953231 0.000954183 0.000955134 0.000956086 0.000957038 0.000957989 0.000958941 0.000959892 0.000960844 0.000961795 0.000962747 0.000963698 0.00096465 0.000965601 0.000966553 0.000967504 0.000968456 0.000969407 0.000970359 0.00097131 0.000972262 0.000973213 0.000974165 0.000975116 0.000976068 0.00097702 0.000977971 0.000978923 0.000979874 0.000980826 0.000981777 0.000982729 0.00098368 0.000984632 0.000985583 0.000986535 0.000987486 0.000988438 +-0.000189792 -0.000180833 -0.000168088 -0.000132903 1.9409E-06 0.000326658 0.000677753 0.000839166 0.000875119 0.000881593 0.000883367 0.000884448 0.00088543 0.000886396 0.000887361 0.000888325 0.000889289 0.000890253 0.000891217 0.000892181 0.000893145 0.000894109 0.000895073 0.000896037 0.000897001 0.000897965 0.000898929 0.000899893 0.000900858 0.000901822 0.000902786 0.00090375 0.000904714 0.000905678 0.000906642 0.000907606 0.00090857 0.000909534 0.000910498 0.000911462 0.000912426 0.00091339 0.000914355 0.000915319 0.000916283 0.000917247 0.000918211 0.000919175 0.000920139 0.000921103 0.000922067 0.000923031 0.000923995 0.000924959 0.000925923 0.000926887 0.000927852 0.000928816 0.00092978 0.000930744 0.000931708 0.000932672 0.000933636 0.0009346 0.000935564 0.000936528 0.000937492 0.000938456 0.00093942 0.000940384 0.000941349 0.000942313 0.000943277 0.000944241 0.000945205 0.000946169 0.000947133 0.000948097 0.000949061 0.000950025 0.000950989 0.000951953 0.000952917 0.000953881 0.000954846 0.00095581 0.000956774 0.000957738 0.000958702 0.000959666 0.00096063 0.000961594 0.000962558 0.000963522 0.000964486 0.00096545 0.000966414 0.000967378 0.000968343 0.000969307 0.000970271 0.000971235 0.000972199 0.000973163 0.000974127 0.000975091 0.000976055 0.000977019 0.000977983 0.000978947 0.000979911 0.000980875 0.00098184 0.000982804 0.000983768 0.000984732 0.000985696 0.00098666 0.000987624 0.000988588 0.000989552 0.000990516 0.00099148 0.000992444 0.000993408 0.000994372 0.000995337 0.000996301 0.000997265 0.000998229 0.000999193 0.00100016 0.00100112 +-0.000192202 -0.000183125 -0.000170206 -0.000134532 1.97455E-06 0.000329959 0.000685097 0.00084933 0.000886077 0.000892695 0.0008945 0.000895597 0.000896591 0.000897571 0.000898548 0.000899524 0.000900501 0.000901477 0.000902454 0.000903431 0.000904407 0.000905384 0.000906361 0.000907337 0.000908314 0.00090929 0.000910267 0.000911244 0.00091222 0.000913197 0.000914173 0.00091515 0.000916127 0.000917103 0.00091808 0.000919056 0.000920033 0.00092101 0.000921986 0.000922963 0.000923939 0.000924916 0.000925893 0.000926869 0.000927846 0.000928822 0.000929799 0.000930776 0.000931752 0.000932729 0.000933706 0.000934682 0.000935659 0.000936635 0.000937612 0.000938589 0.000939565 0.000940542 0.000941518 0.000942495 0.000943472 0.000944448 0.000945425 0.000946401 0.000947378 0.000948355 0.000949331 0.000950308 0.000951284 0.000952261 0.000953238 0.000954214 0.000955191 0.000956167 0.000957144 0.000958121 0.000959097 0.000960074 0.000961051 0.000962027 0.000963004 0.00096398 0.000964957 0.000965934 0.00096691 0.000967887 0.000968863 0.00096984 0.000970817 0.000971793 0.00097277 0.000973746 0.000974723 0.0009757 0.000976676 0.000977653 0.000978629 0.000979606 0.000980583 0.000981559 0.000982536 0.000983512 0.000984489 0.000985466 0.000986442 0.000987419 0.000988396 0.000989372 0.000990349 0.000991325 0.000992302 0.000993279 0.000994255 0.000995232 0.000996208 0.000997185 0.000998162 0.000999138 0.00100011 0.00100109 0.00100207 0.00100304 0.00100402 0.001005 0.00100597 0.00100695 0.00100793 0.0010089 0.00100988 0.00101086 0.00101183 0.00101281 0.00101379 +-0.000194611 -0.000185416 -0.000172324 -0.000136159 2.00838E-06 0.00033324 0.000692403 0.000859467 0.000897018 0.000903781 0.000905619 0.000906731 0.000907738 0.00090873 0.000909719 0.000910709 0.000911698 0.000912687 0.000913676 0.000914665 0.000915654 0.000916643 0.000917632 0.000918622 0.000919611 0.0009206 0.000921589 0.000922578 0.000923567 0.000924556 0.000925546 0.000926535 0.000927524 0.000928513 0.000929502 0.000930491 0.00093148 0.000932469 0.000933459 0.000934448 0.000935437 0.000936426 0.000937415 0.000938404 0.000939393 0.000940382 0.000941372 0.000942361 0.00094335 0.000944339 0.000945328 0.000946317 0.000947306 0.000948296 0.000949285 0.000950274 0.000951263 0.000952252 0.000953241 0.00095423 0.000955219 0.000956209 0.000957198 0.000958187 0.000959176 0.000960165 0.000961154 0.000962143 0.000963133 0.000964122 0.000965111 0.0009661 0.000967089 0.000968078 0.000969067 0.000970056 0.000971046 0.000972035 0.000973024 0.000974013 0.000975002 0.000975991 0.00097698 0.000977969 0.000978959 0.000979948 0.000980937 0.000981926 0.000982915 0.000983904 0.000984893 0.000985883 0.000986872 0.000987861 0.00098885 0.000989839 0.000990828 0.000991817 0.000992806 0.000993796 0.000994785 0.000995774 0.000996763 0.000997752 0.000998741 0.00099973 0.00100072 0.00100171 0.0010027 0.00100369 0.00100468 0.00100567 0.00100665 0.00100764 0.00100863 0.00100962 0.00101061 0.0010116 0.00101259 0.00101358 0.00101457 0.00101556 0.00101655 0.00101753 0.00101852 0.00101951 0.0010205 0.00102149 0.00102248 0.00102347 0.00102446 0.00102545 0.00102644 +-0.000197018 -0.000187706 -0.000174439 -0.000137783 2.0424E-06 0.000336502 0.000699669 0.000869577 0.000907941 0.000914852 0.000916722 0.00091785 0.000918869 0.000919874 0.000920876 0.000921878 0.000922879 0.000923881 0.000924882 0.000925884 0.000926886 0.000927887 0.000928889 0.000929891 0.000930892 0.000931894 0.000932896 0.000933897 0.000934899 0.000935901 0.000936902 0.000937904 0.000938905 0.000939907 0.000940909 0.00094191 0.000942912 0.000943914 0.000944915 0.000945917 0.000946919 0.00094792 0.000948922 0.000949924 0.000950925 0.000951927 0.000952928 0.00095393 0.000954932 0.000955933 0.000956935 0.000957937 0.000958938 0.00095994 0.000960942 0.000961943 0.000962945 0.000963947 0.000964948 0.00096595 0.000966951 0.000967953 0.000968955 0.000969956 0.000970958 0.00097196 0.000972961 0.000973963 0.000974965 0.000975966 0.000976968 0.00097797 0.000978971 0.000979973 0.000980974 0.000981976 0.000982978 0.000983979 0.000984981 0.000985983 0.000986984 0.000987986 0.000988988 0.000989989 0.000990991 0.000991993 0.000992994 0.000993996 0.000994998 0.000995999 0.000997001 0.000998002 0.000999004 0.00100001 0.00100101 0.00100201 0.00100301 0.00100401 0.00100501 0.00100602 0.00100702 0.00100802 0.00100902 0.00101002 0.00101102 0.00101203 0.00101303 0.00101403 0.00101503 0.00101603 0.00101703 0.00101804 0.00101904 0.00102004 0.00102104 0.00102204 0.00102304 0.00102405 0.00102505 0.00102605 0.00102705 0.00102805 0.00102905 0.00103006 0.00103106 0.00103206 0.00103306 0.00103406 0.00103506 0.00103606 0.00103707 0.00103807 0.00103907 +-0.000199424 -0.000189994 -0.000176553 -0.000139405 2.0766E-06 0.000339745 0.000706896 0.000879659 0.000918847 0.000925907 0.000927809 0.000928953 0.000929986 0.000931002 0.000932017 0.000933031 0.000934045 0.000935059 0.000936074 0.000937088 0.000938102 0.000939116 0.00094013 0.000941144 0.000942158 0.000943173 0.000944187 0.000945201 0.000946215 0.000947229 0.000948243 0.000949257 0.000950272 0.000951286 0.0009523 0.000953314 0.000954328 0.000955342 0.000956356 0.000957371 0.000958385 0.000959399 0.000960413 0.000961427 0.000962441 0.000963455 0.00096447 0.000965484 0.000966498 0.000967512 0.000968526 0.00096954 0.000970555 0.000971569 0.000972583 0.000973597 0.000974611 0.000975625 0.000976639 0.000977654 0.000978668 0.000979682 0.000980696 0.00098171 0.000982724 0.000983738 0.000984753 0.000985767 0.000986781 0.000987795 0.000988809 0.000989823 0.000990837 0.000991852 0.000992866 0.00099388 0.000994894 0.000995908 0.000996922 0.000997936 0.000998951 0.000999965 0.00100098 0.00100199 0.00100301 0.00100402 0.00100504 0.00100605 0.00100706 0.00100808 0.00100909 0.00101011 0.00101112 0.00101213 0.00101315 0.00101416 0.00101518 0.00101619 0.00101721 0.00101822 0.00101923 0.00102025 0.00102126 0.00102228 0.00102329 0.0010243 0.00102532 0.00102633 0.00102735 0.00102836 0.00102937 0.00103039 0.0010314 0.00103242 0.00103343 0.00103445 0.00103546 0.00103647 0.00103749 0.0010385 0.00103952 0.00104053 0.00104154 0.00104256 0.00104357 0.00104459 0.0010456 0.00104662 0.00104763 0.00104864 0.00104966 0.00105067 0.00105169 +-0.000201829 -0.000192281 -0.000178665 -0.000141025 2.111E-06 0.000342969 0.000714085 0.000889714 0.000929735 0.000936946 0.000938882 0.000940041 0.000941086 0.000942116 0.000943143 0.00094417 0.000945196 0.000946223 0.000947249 0.000948276 0.000949303 0.000950329 0.000951356 0.000952383 0.000953409 0.000954436 0.000955463 0.000956489 0.000957516 0.000958542 0.000959569 0.000960596 0.000961622 0.000962649 0.000963676 0.000964702 0.000965729 0.000966755 0.000967782 0.000968809 0.000969835 0.000970862 0.000971889 0.000972915 0.000973942 0.000974969 0.000975995 0.000977022 0.000978048 0.000979075 0.000980102 0.000981128 0.000982155 0.000983182 0.000984208 0.000985235 0.000986261 0.000987288 0.000988315 0.000989341 0.000990368 0.000991395 0.000992421 0.000993448 0.000994475 0.000995501 0.000996528 0.000997554 0.000998581 0.000999608 0.00100063 0.00100166 0.00100269 0.00100371 0.00100474 0.00100577 0.00100679 0.00100782 0.00100885 0.00100987 0.0010109 0.00101193 0.00101295 0.00101398 0.00101501 0.00101603 0.00101706 0.00101809 0.00101911 0.00102014 0.00102117 0.00102219 0.00102322 0.00102425 0.00102527 0.0010263 0.00102733 0.00102835 0.00102938 0.00103041 0.00103143 0.00103246 0.00103349 0.00103451 0.00103554 0.00103657 0.00103759 0.00103862 0.00103965 0.00104067 0.0010417 0.00104273 0.00104375 0.00104478 0.00104581 0.00104683 0.00104786 0.00104889 0.00104991 0.00105094 0.00105197 0.00105299 0.00105402 0.00105505 0.00105607 0.0010571 0.00105813 0.00105915 0.00106018 0.00106121 0.00106223 0.00106326 0.00106429 +-0.000204232 -0.000194566 -0.000180776 -0.000142642 2.14558E-06 0.000346174 0.000721235 0.000899742 0.000940606 0.00094797 0.000949939 0.000951113 0.000952172 0.000953214 0.000954254 0.000955293 0.000956332 0.000957371 0.00095841 0.000959449 0.000960488 0.000961527 0.000962567 0.000963606 0.000964645 0.000965684 0.000966723 0.000967762 0.000968801 0.00096984 0.000970879 0.000971918 0.000972958 0.000973997 0.000975036 0.000976075 0.000977114 0.000978153 0.000979192 0.000980231 0.00098127 0.00098231 0.000983349 0.000984388 0.000985427 0.000986466 0.000987505 0.000988544 0.000989583 0.000990622 0.000991662 0.000992701 0.00099374 0.000994779 0.000995818 0.000996857 0.000997896 0.000998935 0.000999974 0.00100101 0.00100205 0.00100309 0.00100413 0.00100517 0.00100621 0.00100725 0.00100829 0.00100933 0.00101037 0.0010114 0.00101244 0.00101348 0.00101452 0.00101556 0.0010166 0.00101764 0.00101868 0.00101972 0.00102076 0.0010218 0.00102283 0.00102387 0.00102491 0.00102595 0.00102699 0.00102803 0.00102907 0.00103011 0.00103115 0.00103219 0.00103323 0.00103426 0.0010353 0.00103634 0.00103738 0.00103842 0.00103946 0.0010405 0.00104154 0.00104258 0.00104362 0.00104466 0.0010457 0.00104673 0.00104777 0.00104881 0.00104985 0.00105089 0.00105193 0.00105297 0.00105401 0.00105505 0.00105609 0.00105713 0.00105816 0.0010592 0.00106024 0.00106128 0.00106232 0.00106336 0.0010644 0.00106544 0.00106648 0.00106752 0.00106856 0.00106959 0.00107063 0.00107167 0.00107271 0.00107375 0.00107479 0.00107583 0.00107687 +-0.000206634 -0.00019685 -0.000182885 -0.000144256 2.18035E-06 0.000349361 0.000728347 0.000909741 0.000951459 0.000958978 0.000960981 0.000962171 0.000963243 0.000964297 0.000965349 0.000966401 0.000967452 0.000968504 0.000969555 0.000970607 0.000971659 0.00097271 0.000973762 0.000974813 0.000975865 0.000976916 0.000977968 0.00097902 0.000980071 0.000981123 0.000982174 0.000983226 0.000984277 0.000985329 0.000986381 0.000987432 0.000988484 0.000989535 0.000990587 0.000991638 0.00099269 0.000993742 0.000994793 0.000995845 0.000996896 0.000997948 0.000998999 0.00100005 0.0010011 0.00100215 0.00100321 0.00100426 0.00100531 0.00100636 0.00100741 0.00100846 0.00100952 0.00101057 0.00101162 0.00101267 0.00101372 0.00101477 0.00101582 0.00101688 0.00101793 0.00101898 0.00102003 0.00102108 0.00102213 0.00102319 0.00102424 0.00102529 0.00102634 0.00102739 0.00102844 0.0010295 0.00103055 0.0010316 0.00103265 0.0010337 0.00103475 0.0010358 0.00103686 0.00103791 0.00103896 0.00104001 0.00104106 0.00104211 0.00104317 0.00104422 0.00104527 0.00104632 0.00104737 0.00104842 0.00104947 0.00105053 0.00105158 0.00105263 0.00105368 0.00105473 0.00105578 0.00105684 0.00105789 0.00105894 0.00105999 0.00106104 0.00106209 0.00106315 0.0010642 0.00106525 0.0010663 0.00106735 0.0010684 0.00106945 0.00107051 0.00107156 0.00107261 0.00107366 0.00107471 0.00107576 0.00107682 0.00107787 0.00107892 0.00107997 0.00108102 0.00108207 0.00108313 0.00108418 0.00108523 0.00108628 0.00108733 0.00108838 0.00108943 +-0.000209034 -0.000199132 -0.000184992 -0.000145868 2.2153E-06 0.000352529 0.000735421 0.000919714 0.000962294 0.000969971 0.000972008 0.000973213 0.000974298 0.000975365 0.000976429 0.000977493 0.000978558 0.000979622 0.000980686 0.00098175 0.000982814 0.000983878 0.000984942 0.000986006 0.00098707 0.000988134 0.000989198 0.000990262 0.000991326 0.00099239 0.000993454 0.000994518 0.000995582 0.000996646 0.00099771 0.000998774 0.000999838 0.0010009 0.00100197 0.00100303 0.00100409 0.00100516 0.00100622 0.00100729 0.00100835 0.00100941 0.00101048 0.00101154 0.00101261 0.00101367 0.00101473 0.0010158 0.00101686 0.00101793 0.00101899 0.00102005 0.00102112 0.00102218 0.00102325 0.00102431 0.00102537 0.00102644 0.0010275 0.00102857 0.00102963 0.00103069 0.00103176 0.00103282 0.00103389 0.00103495 0.00103601 0.00103708 0.00103814 0.00103921 0.00104027 0.00104134 0.0010424 0.00104347 0.00104453 0.00104559 0.00104666 0.00104772 0.00104879 0.00104985 0.00105091 0.00105198 0.00105304 0.00105411 0.00105517 0.00105623 0.0010573 0.00105836 0.00105943 0.00106049 0.00106155 0.00106262 0.00106368 0.00106475 0.00106581 0.00106688 0.00106794 0.001069 0.00107007 0.00107113 0.0010722 0.00107326 0.00107432 0.00107539 0.00107645 0.00107752 0.00107858 0.00107964 0.00108071 0.00108177 0.00108284 0.0010839 0.00108496 0.00108603 0.00108709 0.00108816 0.00108922 0.00109028 0.00109135 0.00109241 0.00109348 0.00109454 0.0010956 0.00109667 0.00109773 0.0010988 0.00109986 0.00110092 0.00110199 +-0.000211433 -0.000201413 -0.000187098 -0.000147478 2.25044E-06 0.000355679 0.000742457 0.000929658 0.000973112 0.000980952 0.000983023 0.000984244 0.000985341 0.000986421 0.000987498 0.000988574 0.000989651 0.000990727 0.000991804 0.00099288 0.000993957 0.000995033 0.00099611 0.000997186 0.000998262 0.000999339 0.00100042 0.00100149 0.00100257 0.00100364 0.00100472 0.0010058 0.00100687 0.00100795 0.00100903 0.0010101 0.00101118 0.00101226 0.00101333 0.00101441 0.00101549 0.00101656 0.00101764 0.00101872 0.00101979 0.00102087 0.00102194 0.00102302 0.0010241 0.00102517 0.00102625 0.00102733 0.0010284 0.00102948 0.00103056 0.00103163 0.00103271 0.00103379 0.00103486 0.00103594 0.00103702 0.00103809 0.00103917 0.00104024 0.00104132 0.0010424 0.00104347 0.00104455 0.00104563 0.0010467 0.00104778 0.00104886 0.00104993 0.00105101 0.00105209 0.00105316 0.00105424 0.00105532 0.00105639 0.00105747 0.00105854 0.00105962 0.0010607 0.00106177 0.00106285 0.00106393 0.001065 0.00106608 0.00106716 0.00106823 0.00106931 0.00107039 0.00107146 0.00107254 0.00107362 0.00107469 0.00107577 0.00107684 0.00107792 0.001079 0.00108007 0.00108115 0.00108223 0.0010833 0.00108438 0.00108546 0.00108653 0.00108761 0.00108869 0.00108976 0.00109084 0.00109191 0.00109299 0.00109407 0.00109514 0.00109622 0.0010973 0.00109837 0.00109945 0.00110053 0.0011016 0.00110268 0.00110376 0.00110483 0.00110591 0.00110699 0.00110806 0.00110914 0.00111021 0.00111129 0.00111237 0.00111344 0.00111452 +-0.00021383 -0.000203692 -0.000189202 -0.000149085 2.28576E-06 0.000358812 0.000749456 0.000939575 0.000983913 0.000991913 0.000994019 0.000995256 0.000996366 0.000997458 0.000998548 0.000999637 0.00100073 0.00100181 0.0010029 0.00100399 0.00100508 0.00100617 0.00100726 0.00100835 0.00100944 0.00101053 0.00101161 0.0010127 0.00101379 0.00101488 0.00101597 0.00101706 0.00101815 0.00101924 0.00102033 0.00102141 0.0010225 0.00102359 0.00102468 0.00102577 0.00102686 0.00102795 0.00102904 0.00103013 0.00103121 0.0010323 0.00103339 0.00103448 0.00103557 0.00103666 0.00103775 0.00103884 0.00103993 0.00104101 0.0010421 0.00104319 0.00104428 0.00104537 0.00104646 0.00104755 0.00104864 0.00104973 0.00105081 0.0010519 0.00105299 0.00105408 0.00105517 0.00105626 0.00105735 0.00105844 0.00105953 0.00106061 0.0010617 0.00106279 0.00106388 0.00106497 0.00106606 0.00106715 0.00106824 0.00106933 0.00107041 0.0010715 0.00107259 0.00107368 0.00107477 0.00107586 0.00107695 0.00107804 0.00107913 0.00108021 0.0010813 0.00108239 0.00108348 0.00108457 0.00108566 0.00108675 0.00108784 0.00108893 0.00109001 0.0010911 0.00109219 0.00109328 0.00109437 0.00109546 0.00109655 0.00109764 0.00109873 0.00109981 0.0011009 0.00110199 0.00110308 0.00110417 0.00110526 0.00110635 0.00110744 0.00110853 0.00110961 0.0011107 0.00111179 0.00111288 0.00111397 0.00111506 0.00111615 0.00111724 0.00111833 0.00111941 0.0011205 0.00112159 0.00112268 0.00112377 0.00112486 0.00112595 0.00112704 +-0.000216226 -0.000205971 -0.000191305 -0.00015069 2.32126E-06 0.000361927 0.000756417 0.000949464 0.000994696 0.00100286 0.001005 0.00100625 0.00100738 0.00100848 0.00100958 0.00101068 0.00101179 0.00101289 0.00101399 0.00101509 0.00101619 0.00101729 0.00101839 0.00101949 0.0010206 0.0010217 0.0010228 0.0010239 0.001025 0.0010261 0.0010272 0.0010283 0.00102941 0.00103051 0.00103161 0.00103271 0.00103381 0.00103491 0.00103601 0.00103712 0.00103822 0.00103932 0.00104042 0.00104152 0.00104262 0.00104372 0.00104482 0.00104593 0.00104703 0.00104813 0.00104923 0.00105033 0.00105143 0.00105253 0.00105363 0.00105474 0.00105584 0.00105694 0.00105804 0.00105914 0.00106024 0.00106134 0.00106245 0.00106355 0.00106465 0.00106575 0.00106685 0.00106795 0.00106905 0.00107015 0.00107126 0.00107236 0.00107346 0.00107456 0.00107566 0.00107676 0.00107786 0.00107896 0.00108007 0.00108117 0.00108227 0.00108337 0.00108447 0.00108557 0.00108667 0.00108778 0.00108888 0.00108998 0.00109108 0.00109218 0.00109328 0.00109438 0.00109548 0.00109659 0.00109769 0.00109879 0.00109989 0.00110099 0.00110209 0.00110319 0.00110429 0.0011054 0.0011065 0.0011076 0.0011087 0.0011098 0.0011109 0.001112 0.00111311 0.00111421 0.00111531 0.00111641 0.00111751 0.00111861 0.00111971 0.00112081 0.00112192 0.00112302 0.00112412 0.00112522 0.00112632 0.00112742 0.00112852 0.00112962 0.00113073 0.00113183 0.00113293 0.00113403 0.00113513 0.00113623 0.00113733 0.00113844 0.00113954 +-0.000218621 -0.000208247 -0.000193406 -0.000152293 2.35694E-06 0.000365024 0.000763341 0.000959326 0.00100546 0.00101379 0.00101597 0.00101723 0.00101837 0.00101949 0.0010206 0.00102172 0.00102283 0.00102394 0.00102506 0.00102617 0.00102728 0.0010284 0.00102951 0.00103063 0.00103174 0.00103285 0.00103397 0.00103508 0.00103619 0.00103731 0.00103842 0.00103954 0.00104065 0.00104176 0.00104288 0.00104399 0.0010451 0.00104622 0.00104733 0.00104845 0.00104956 0.00105067 0.00105179 0.0010529 0.00105401 0.00105513 0.00105624 0.00105735 0.00105847 0.00105958 0.0010607 0.00106181 0.00106292 0.00106404 0.00106515 0.00106626 0.00106738 0.00106849 0.00106961 0.00107072 0.00107183 0.00107295 0.00107406 0.00107517 0.00107629 0.0010774 0.00107852 0.00107963 0.00108074 0.00108186 0.00108297 0.00108408 0.0010852 0.00108631 0.00108742 0.00108854 0.00108965 0.00109077 0.00109188 0.00109299 0.00109411 0.00109522 0.00109633 0.00109745 0.00109856 0.00109968 0.00110079 0.0011019 0.00110302 0.00110413 0.00110524 0.00110636 0.00110747 0.00110859 0.0011097 0.00111081 0.00111193 0.00111304 0.00111415 0.00111527 0.00111638 0.00111749 0.00111861 0.00111972 0.00112084 0.00112195 0.00112306 0.00112418 0.00112529 0.0011264 0.00112752 0.00112863 0.00112975 0.00113086 0.00113197 0.00113309 0.0011342 0.00113531 0.00113643 0.00113754 0.00113866 0.00113977 0.00114088 0.001142 0.00114311 0.00114422 0.00114534 0.00114645 0.00114757 0.00114868 0.00114979 0.00115091 0.00115202 +-0.000221014 -0.000210523 -0.000195505 -0.000153893 2.39281E-06 0.000368103 0.000770228 0.000969159 0.00101621 0.00102471 0.00102692 0.0010282 0.00102935 0.00103048 0.00103161 0.00103273 0.00103386 0.00103499 0.00103611 0.00103724 0.00103836 0.00103949 0.00104062 0.00104174 0.00104287 0.00104399 0.00104512 0.00104625 0.00104737 0.0010485 0.00104962 0.00105075 0.00105188 0.001053 0.00105413 0.00105526 0.00105638 0.00105751 0.00105863 0.00105976 0.00106089 0.00106201 0.00106314 0.00106426 0.00106539 0.00106652 0.00106764 0.00106877 0.00106989 0.00107102 0.00107215 0.00107327 0.0010744 0.00107552 0.00107665 0.00107778 0.0010789 0.00108003 0.00108116 0.00108228 0.00108341 0.00108453 0.00108566 0.00108679 0.00108791 0.00108904 0.00109016 0.00109129 0.00109242 0.00109354 0.00109467 0.00109579 0.00109692 0.00109805 0.00109917 0.0011003 0.00110143 0.00110255 0.00110368 0.0011048 0.00110593 0.00110706 0.00110818 0.00110931 0.00111043 0.00111156 0.00111269 0.00111381 0.00111494 0.00111606 0.00111719 0.00111832 0.00111944 0.00112057 0.0011217 0.00112282 0.00112395 0.00112507 0.0011262 0.00112733 0.00112845 0.00112958 0.0011307 0.00113183 0.00113296 0.00113408 0.00113521 0.00113633 0.00113746 0.00113859 0.00113971 0.00114084 0.00114196 0.00114309 0.00114422 0.00114534 0.00114647 0.0011476 0.00114872 0.00114985 0.00115097 0.0011521 0.00115323 0.00115435 0.00115548 0.0011566 0.00115773 0.00115886 0.00115998 0.00116111 0.00116223 0.00116336 0.00116449 +-0.000223406 -0.000212797 -0.000197603 -0.00015549 2.42885E-06 0.000371165 0.000777078 0.000978965 0.00102694 0.00103561 0.00103785 0.00103915 0.00104032 0.00104146 0.0010426 0.00104374 0.00104487 0.00104601 0.00104715 0.00104829 0.00104943 0.00105057 0.0010517 0.00105284 0.00105398 0.00105512 0.00105626 0.0010574 0.00105854 0.00105967 0.00106081 0.00106195 0.00106309 0.00106423 0.00106537 0.0010665 0.00106764 0.00106878 0.00106992 0.00107106 0.0010722 0.00107334 0.00107447 0.00107561 0.00107675 0.00107789 0.00107903 0.00108017 0.00108131 0.00108244 0.00108358 0.00108472 0.00108586 0.001087 0.00108814 0.00108927 0.00109041 0.00109155 0.00109269 0.00109383 0.00109497 0.00109611 0.00109724 0.00109838 0.00109952 0.00110066 0.0011018 0.00110294 0.00110407 0.00110521 0.00110635 0.00110749 0.00110863 0.00110977 0.00111091 0.00111204 0.00111318 0.00111432 0.00111546 0.0011166 0.00111774 0.00111887 0.00112001 0.00112115 0.00112229 0.00112343 0.00112457 0.00112571 0.00112684 0.00112798 0.00112912 0.00113026 0.0011314 0.00113254 0.00113368 0.00113481 0.00113595 0.00113709 0.00113823 0.00113937 0.00114051 0.00114164 0.00114278 0.00114392 0.00114506 0.0011462 0.00114734 0.00114848 0.00114961 0.00115075 0.00115189 0.00115303 0.00115417 0.00115531 0.00115644 0.00115758 0.00115872 0.00115986 0.001161 0.00116214 0.00116328 0.00116441 0.00116555 0.00116669 0.00116783 0.00116897 0.00117011 0.00117124 0.00117238 0.00117352 0.00117466 0.0011758 0.00117694 +-0.000225797 -0.000215069 -0.000199699 -0.000157086 2.46507E-06 0.000374211 0.000783891 0.000988743 0.00103765 0.00104649 0.00104878 0.00105009 0.00105127 0.00105242 0.00105357 0.00105472 0.00105587 0.00105702 0.00105818 0.00105933 0.00106048 0.00106163 0.00106278 0.00106393 0.00106508 0.00106623 0.00106738 0.00106853 0.00106968 0.00107083 0.00107199 0.00107314 0.00107429 0.00107544 0.00107659 0.00107774 0.00107889 0.00108004 0.00108119 0.00108234 0.00108349 0.00108464 0.0010858 0.00108695 0.0010881 0.00108925 0.0010904 0.00109155 0.0010927 0.00109385 0.001095 0.00109615 0.0010973 0.00109845 0.00109961 0.00110076 0.00110191 0.00110306 0.00110421 0.00110536 0.00110651 0.00110766 0.00110881 0.00110996 0.00111111 0.00111226 0.00111342 0.00111457 0.00111572 0.00111687 0.00111802 0.00111917 0.00112032 0.00112147 0.00112262 0.00112377 0.00112492 0.00112607 0.00112723 0.00112838 0.00112953 0.00113068 0.00113183 0.00113298 0.00113413 0.00113528 0.00113643 0.00113758 0.00113873 0.00113989 0.00114104 0.00114219 0.00114334 0.00114449 0.00114564 0.00114679 0.00114794 0.00114909 0.00115024 0.00115139 0.00115254 0.0011537 0.00115485 0.001156 0.00115715 0.0011583 0.00115945 0.0011606 0.00116175 0.0011629 0.00116405 0.0011652 0.00116635 0.00116751 0.00116866 0.00116981 0.00117096 0.00117211 0.00117326 0.00117441 0.00117556 0.00117671 0.00117786 0.00117901 0.00118016 0.00118132 0.00118247 0.00118362 0.00118477 0.00118592 0.00118707 0.00118822 0.00118937 +-0.000228186 -0.00021734 -0.000201794 -0.000158678 2.50147E-06 0.000377239 0.000790668 0.000998493 0.00104835 0.00105736 0.00105968 0.00106101 0.0010622 0.00106337 0.00106453 0.0010657 0.00106686 0.00106802 0.00106918 0.00107035 0.00107151 0.00107267 0.00107384 0.001075 0.00107616 0.00107733 0.00107849 0.00107965 0.00108082 0.00108198 0.00108314 0.00108431 0.00108547 0.00108663 0.0010878 0.00108896 0.00109012 0.00109129 0.00109245 0.00109361 0.00109477 0.00109594 0.0010971 0.00109826 0.00109943 0.00110059 0.00110175 0.00110292 0.00110408 0.00110524 0.00110641 0.00110757 0.00110873 0.0011099 0.00111106 0.00111222 0.00111339 0.00111455 0.00111571 0.00111688 0.00111804 0.0011192 0.00112037 0.00112153 0.00112269 0.00112385 0.00112502 0.00112618 0.00112734 0.00112851 0.00112967 0.00113083 0.001132 0.00113316 0.00113432 0.00113549 0.00113665 0.00113781 0.00113898 0.00114014 0.0011413 0.00114247 0.00114363 0.00114479 0.00114596 0.00114712 0.00114828 0.00114945 0.00115061 0.00115177 0.00115293 0.0011541 0.00115526 0.00115642 0.00115759 0.00115875 0.00115991 0.00116108 0.00116224 0.0011634 0.00116457 0.00116573 0.00116689 0.00116806 0.00116922 0.00117038 0.00117155 0.00117271 0.00117387 0.00117504 0.0011762 0.00117736 0.00117853 0.00117969 0.00118085 0.00118201 0.00118318 0.00118434 0.0011855 0.00118667 0.00118783 0.00118899 0.00119016 0.00119132 0.00119248 0.00119365 0.00119481 0.00119597 0.00119714 0.0011983 0.00119946 0.00120063 0.00120179 +-0.000230574 -0.00021961 -0.000203887 -0.000160269 2.53804E-06 0.000380251 0.000797409 0.00100822 0.00105903 0.00106822 0.00107057 0.00107192 0.00107312 0.0010743 0.00107548 0.00107665 0.00107783 0.001079 0.00108018 0.00108135 0.00108253 0.00108371 0.00108488 0.00108606 0.00108723 0.00108841 0.00108958 0.00109076 0.00109193 0.00109311 0.00109429 0.00109546 0.00109664 0.00109781 0.00109899 0.00110016 0.00110134 0.00110251 0.00110369 0.00110487 0.00110604 0.00110722 0.00110839 0.00110957 0.00111074 0.00111192 0.00111309 0.00111427 0.00111545 0.00111662 0.0011178 0.00111897 0.00112015 0.00112132 0.0011225 0.00112367 0.00112485 0.00112603 0.0011272 0.00112838 0.00112955 0.00113073 0.0011319 0.00113308 0.00113425 0.00113543 0.0011366 0.00113778 0.00113896 0.00114013 0.00114131 0.00114248 0.00114366 0.00114483 0.00114601 0.00114718 0.00114836 0.00114954 0.00115071 0.00115189 0.00115306 0.00115424 0.00115541 0.00115659 0.00115776 0.00115894 0.00116012 0.00116129 0.00116247 0.00116364 0.00116482 0.00116599 0.00116717 0.00116834 0.00116952 0.0011707 0.00117187 0.00117305 0.00117422 0.0011754 0.00117657 0.00117775 0.00117892 0.0011801 0.00118128 0.00118245 0.00118363 0.0011848 0.00118598 0.00118715 0.00118833 0.0011895 0.00119068 0.00119186 0.00119303 0.00119421 0.00119538 0.00119656 0.00119773 0.00119891 0.00120008 0.00120126 0.00120243 0.00120361 0.00120479 0.00120596 0.00120714 0.00120831 0.00120949 0.00121066 0.00121184 0.00121301 0.00121419 +-0.000232961 -0.000221879 -0.000205979 -0.000161857 2.5748E-06 0.000383245 0.000804114 0.00101791 0.00106969 0.00107906 0.00108145 0.00108281 0.00108403 0.00108522 0.00108641 0.0010876 0.00108878 0.00108997 0.00109116 0.00109235 0.00109353 0.00109472 0.00109591 0.0010971 0.00109829 0.00109947 0.00110066 0.00110185 0.00110304 0.00110423 0.00110541 0.0011066 0.00110779 0.00110898 0.00111016 0.00111135 0.00111254 0.00111373 0.00111492 0.0011161 0.00111729 0.00111848 0.00111967 0.00112086 0.00112204 0.00112323 0.00112442 0.00112561 0.00112679 0.00112798 0.00112917 0.00113036 0.00113155 0.00113273 0.00113392 0.00113511 0.0011363 0.00113749 0.00113867 0.00113986 0.00114105 0.00114224 0.00114342 0.00114461 0.0011458 0.00114699 0.00114818 0.00114936 0.00115055 0.00115174 0.00115293 0.00115412 0.0011553 0.00115649 0.00115768 0.00115887 0.00116006 0.00116124 0.00116243 0.00116362 0.00116481 0.00116599 0.00116718 0.00116837 0.00116956 0.00117075 0.00117193 0.00117312 0.00117431 0.0011755 0.00117669 0.00117787 0.00117906 0.00118025 0.00118144 0.00118262 0.00118381 0.001185 0.00118619 0.00118738 0.00118856 0.00118975 0.00119094 0.00119213 0.00119332 0.0011945 0.00119569 0.00119688 0.00119807 0.00119925 0.00120044 0.00120163 0.00120282 0.00120401 0.00120519 0.00120638 0.00120757 0.00120876 0.00120995 0.00121113 0.00121232 0.00121351 0.0012147 0.00121588 0.00121707 0.00121826 0.00121945 0.00122064 0.00122182 0.00122301 0.0012242 0.00122539 0.00122658 +-0.000235346 -0.000224146 -0.000208069 -0.000163443 2.61172E-06 0.000386224 0.000810783 0.00102758 0.00108033 0.00108988 0.00109231 0.00109369 0.00109492 0.00109612 0.00109732 0.00109852 0.00109972 0.00110092 0.00110212 0.00110332 0.00110452 0.00110572 0.00110692 0.00110812 0.00110932 0.00111053 0.00111173 0.00111293 0.00111413 0.00111533 0.00111653 0.00111773 0.00111893 0.00112013 0.00112133 0.00112253 0.00112373 0.00112493 0.00112613 0.00112733 0.00112853 0.00112973 0.00113093 0.00113213 0.00113333 0.00113453 0.00113573 0.00113693 0.00113813 0.00113933 0.00114053 0.00114173 0.00114293 0.00114413 0.00114533 0.00114653 0.00114773 0.00114893 0.00115013 0.00115133 0.00115253 0.00115373 0.00115493 0.00115613 0.00115733 0.00115853 0.00115973 0.00116093 0.00116213 0.00116333 0.00116453 0.00116573 0.00116693 0.00116813 0.00116933 0.00117053 0.00117173 0.00117293 0.00117413 0.00117533 0.00117653 0.00117774 0.00117894 0.00118014 0.00118134 0.00118254 0.00118374 0.00118494 0.00118614 0.00118734 0.00118854 0.00118974 0.00119094 0.00119214 0.00119334 0.00119454 0.00119574 0.00119694 0.00119814 0.00119934 0.00120054 0.00120174 0.00120294 0.00120414 0.00120534 0.00120654 0.00120774 0.00120894 0.00121014 0.00121134 0.00121254 0.00121374 0.00121494 0.00121614 0.00121734 0.00121854 0.00121974 0.00122094 0.00122214 0.00122334 0.00122454 0.00122574 0.00122694 0.00122814 0.00122934 0.00123054 0.00123174 0.00123294 0.00123414 0.00123534 0.00123654 0.00123774 0.00123894 +-0.00023773 -0.000226412 -0.000210157 -0.000165026 2.64882E-06 0.000389186 0.000817417 0.00103721 0.00109095 0.00110069 0.00110316 0.00110456 0.00110579 0.00110701 0.00110822 0.00110944 0.00111065 0.00111186 0.00111307 0.00111429 0.0011155 0.00111671 0.00111792 0.00111914 0.00112035 0.00112156 0.00112277 0.00112399 0.0011252 0.00112641 0.00112762 0.00112884 0.00113005 0.00113126 0.00113247 0.00113369 0.0011349 0.00113611 0.00113732 0.00113854 0.00113975 0.00114096 0.00114217 0.00114339 0.0011446 0.00114581 0.00114702 0.00114824 0.00114945 0.00115066 0.00115187 0.00115309 0.0011543 0.00115551 0.00115672 0.00115794 0.00115915 0.00116036 0.00116157 0.00116279 0.001164 0.00116521 0.00116642 0.00116764 0.00116885 0.00117006 0.00117127 0.00117249 0.0011737 0.00117491 0.00117612 0.00117734 0.00117855 0.00117976 0.00118097 0.00118219 0.0011834 0.00118461 0.00118582 0.00118704 0.00118825 0.00118946 0.00119067 0.00119189 0.0011931 0.00119431 0.00119552 0.00119674 0.00119795 0.00119916 0.00120037 0.00120159 0.0012028 0.00120401 0.00120522 0.00120644 0.00120765 0.00120886 0.00121007 0.00121128 0.0012125 0.00121371 0.00121492 0.00121613 0.00121735 0.00121856 0.00121977 0.00122098 0.0012222 0.00122341 0.00122462 0.00122583 0.00122705 0.00122826 0.00122947 0.00123068 0.0012319 0.00123311 0.00123432 0.00123553 0.00123675 0.00123796 0.00123917 0.00124038 0.0012416 0.00124281 0.00124402 0.00124523 0.00124645 0.00124766 0.00124887 0.00125008 0.0012513 +-0.000240112 -0.000228676 -0.000212244 -0.000166607 2.6861E-06 0.000392132 0.000824015 0.00104683 0.00110156 0.00111148 0.00111399 0.0011154 0.00111666 0.00111788 0.00111911 0.00112033 0.00112156 0.00112278 0.00112401 0.00112523 0.00112646 0.00112768 0.00112891 0.00113013 0.00113136 0.00113258 0.00113381 0.00113503 0.00113626 0.00113748 0.00113871 0.00113993 0.00114116 0.00114238 0.00114361 0.00114483 0.00114606 0.00114728 0.0011485 0.00114973 0.00115095 0.00115218 0.0011534 0.00115463 0.00115585 0.00115708 0.0011583 0.00115953 0.00116075 0.00116198 0.0011632 0.00116443 0.00116565 0.00116688 0.0011681 0.00116933 0.00117055 0.00117178 0.001173 0.00117422 0.00117545 0.00117667 0.0011779 0.00117912 0.00118035 0.00118157 0.0011828 0.00118402 0.00118525 0.00118647 0.0011877 0.00118892 0.00119015 0.00119137 0.0011926 0.00119382 0.00119505 0.00119627 0.0011975 0.00119872 0.00119995 0.00120117 0.00120239 0.00120362 0.00120484 0.00120607 0.00120729 0.00120852 0.00120974 0.00121097 0.00121219 0.00121342 0.00121464 0.00121587 0.00121709 0.00121832 0.00121954 0.00122077 0.00122199 0.00122322 0.00122444 0.00122567 0.00122689 0.00122811 0.00122934 0.00123056 0.00123179 0.00123301 0.00123424 0.00123546 0.00123669 0.00123791 0.00123914 0.00124036 0.00124159 0.00124281 0.00124404 0.00124526 0.00124649 0.00124771 0.00124894 0.00125016 0.00125139 0.00125261 0.00125384 0.00125506 0.00125628 0.00125751 0.00125873 0.00125996 0.00126118 0.00126241 0.00126363 +-0.000242494 -0.00023094 -0.00021433 -0.000168186 2.72354E-06 0.000395062 0.000830578 0.00105641 0.00111215 0.00112226 0.00112481 0.00112624 0.0011275 0.00112874 0.00112998 0.00113122 0.00113246 0.00113369 0.00113493 0.00113617 0.0011374 0.00113864 0.00113988 0.00114112 0.00114235 0.00114359 0.00114483 0.00114606 0.0011473 0.00114854 0.00114977 0.00115101 0.00115225 0.00115349 0.00115472 0.00115596 0.0011572 0.00115843 0.00115967 0.00116091 0.00116214 0.00116338 0.00116462 0.00116586 0.00116709 0.00116833 0.00116957 0.0011708 0.00117204 0.00117328 0.00117452 0.00117575 0.00117699 0.00117823 0.00117946 0.0011807 0.00118194 0.00118317 0.00118441 0.00118565 0.00118689 0.00118812 0.00118936 0.0011906 0.00119183 0.00119307 0.00119431 0.00119555 0.00119678 0.00119802 0.00119926 0.00120049 0.00120173 0.00120297 0.0012042 0.00120544 0.00120668 0.00120792 0.00120915 0.00121039 0.00121163 0.00121286 0.0012141 0.00121534 0.00121658 0.00121781 0.00121905 0.00122029 0.00122152 0.00122276 0.001224 0.00122523 0.00122647 0.00122771 0.00122895 0.00123018 0.00123142 0.00123266 0.00123389 0.00123513 0.00123637 0.00123761 0.00123884 0.00124008 0.00124132 0.00124255 0.00124379 0.00124503 0.00124626 0.0012475 0.00124874 0.00124998 0.00125121 0.00125245 0.00125369 0.00125492 0.00125616 0.0012574 0.00125863 0.00125987 0.00126111 0.00126235 0.00126358 0.00126482 0.00126606 0.00126729 0.00126853 0.00126977 0.00127101 0.00127224 0.00127348 0.00127472 0.00127595 +-0.000244874 -0.000233201 -0.000216414 -0.000169762 2.76116E-06 0.000397976 0.000837106 0.00106596 0.00112273 0.00113303 0.00113561 0.00113706 0.00113834 0.00113959 0.00114084 0.00114209 0.00114334 0.00114459 0.00114584 0.00114709 0.00114833 0.00114958 0.00115083 0.00115208 0.00115333 0.00115458 0.00115583 0.00115708 0.00115833 0.00115958 0.00116083 0.00116208 0.00116333 0.00116458 0.00116582 0.00116707 0.00116832 0.00116957 0.00117082 0.00117207 0.00117332 0.00117457 0.00117582 0.00117707 0.00117832 0.00117957 0.00118082 0.00118207 0.00118332 0.00118456 0.00118581 0.00118706 0.00118831 0.00118956 0.00119081 0.00119206 0.00119331 0.00119456 0.00119581 0.00119706 0.00119831 0.00119956 0.00120081 0.00120205 0.0012033 0.00120455 0.0012058 0.00120705 0.0012083 0.00120955 0.0012108 0.00121205 0.0012133 0.00121455 0.0012158 0.00121705 0.0012183 0.00121955 0.00122079 0.00122204 0.00122329 0.00122454 0.00122579 0.00122704 0.00122829 0.00122954 0.00123079 0.00123204 0.00123329 0.00123454 0.00123579 0.00123704 0.00123829 0.00123953 0.00124078 0.00124203 0.00124328 0.00124453 0.00124578 0.00124703 0.00124828 0.00124953 0.00125078 0.00125203 0.00125328 0.00125453 0.00125578 0.00125702 0.00125827 0.00125952 0.00126077 0.00126202 0.00126327 0.00126452 0.00126577 0.00126702 0.00126827 0.00126952 0.00127077 0.00127202 0.00127327 0.00127452 0.00127576 0.00127701 0.00127826 0.00127951 0.00128076 0.00128201 0.00128326 0.00128451 0.00128576 0.00128701 0.00128826 +-0.000247252 -0.000235462 -0.000218496 -0.000171336 2.79895E-06 0.000400875 0.0008436 0.00107549 0.00113328 0.00114378 0.0011464 0.00114786 0.00114915 0.00115042 0.00115168 0.00115294 0.0011542 0.00115547 0.00115673 0.00115799 0.00115925 0.00116051 0.00116177 0.00116303 0.0011643 0.00116556 0.00116682 0.00116808 0.00116934 0.0011706 0.00117187 0.00117313 0.00117439 0.00117565 0.00117691 0.00117817 0.00117944 0.0011807 0.00118196 0.00118322 0.00118448 0.00118574 0.001187 0.00118827 0.00118953 0.00119079 0.00119205 0.00119331 0.00119457 0.00119584 0.0011971 0.00119836 0.00119962 0.00120088 0.00120214 0.00120341 0.00120467 0.00120593 0.00120719 0.00120845 0.00120971 0.00121097 0.00121224 0.0012135 0.00121476 0.00121602 0.00121728 0.00121854 0.00121981 0.00122107 0.00122233 0.00122359 0.00122485 0.00122611 0.00122737 0.00122864 0.0012299 0.00123116 0.00123242 0.00123368 0.00123494 0.00123621 0.00123747 0.00123873 0.00123999 0.00124125 0.00124251 0.00124378 0.00124504 0.0012463 0.00124756 0.00124882 0.00125008 0.00125134 0.00125261 0.00125387 0.00125513 0.00125639 0.00125765 0.00125891 0.00126018 0.00126144 0.0012627 0.00126396 0.00126522 0.00126648 0.00126775 0.00126901 0.00127027 0.00127153 0.00127279 0.00127405 0.00127531 0.00127658 0.00127784 0.0012791 0.00128036 0.00128162 0.00128288 0.00128415 0.00128541 0.00128667 0.00128793 0.00128919 0.00129045 0.00129172 0.00129298 0.00129424 0.0012955 0.00129676 0.00129802 0.00129928 0.00130055 +-0.00024963 -0.000237721 -0.000220577 -0.000172908 2.83691E-06 0.000403758 0.000850059 0.00108499 0.00114382 0.00115451 0.00115718 0.00115865 0.00115996 0.00116123 0.00116251 0.00116378 0.00116506 0.00116633 0.0011676 0.00116888 0.00117015 0.00117143 0.0011727 0.00117397 0.00117525 0.00117652 0.00117779 0.00117907 0.00118034 0.00118162 0.00118289 0.00118416 0.00118544 0.00118671 0.00118798 0.00118926 0.00119053 0.00119181 0.00119308 0.00119435 0.00119563 0.0011969 0.00119818 0.00119945 0.00120072 0.001202 0.00120327 0.00120454 0.00120582 0.00120709 0.00120837 0.00120964 0.00121091 0.00121219 0.00121346 0.00121473 0.00121601 0.00121728 0.00121856 0.00121983 0.0012211 0.00122238 0.00122365 0.00122493 0.0012262 0.00122747 0.00122875 0.00123002 0.00123129 0.00123257 0.00123384 0.00123512 0.00123639 0.00123766 0.00123894 0.00124021 0.00124148 0.00124276 0.00124403 0.00124531 0.00124658 0.00124785 0.00124913 0.0012504 0.00125168 0.00125295 0.00125422 0.0012555 0.00125677 0.00125804 0.00125932 0.00126059 0.00126187 0.00126314 0.00126441 0.00126569 0.00126696 0.00126823 0.00126951 0.00127078 0.00127206 0.00127333 0.0012746 0.00127588 0.00127715 0.00127843 0.0012797 0.00128097 0.00128225 0.00128352 0.00128479 0.00128607 0.00128734 0.00128862 0.00128989 0.00129116 0.00129244 0.00129371 0.00129498 0.00129626 0.00129753 0.00129881 0.00130008 0.00130135 0.00130263 0.0013039 0.00130518 0.00130645 0.00130772 0.001309 0.00131027 0.00131154 0.00131282 +-0.000252006 -0.000239979 -0.000222656 -0.000174477 2.87504E-06 0.000406625 0.000856483 0.00109446 0.00115434 0.00116523 0.00116794 0.00116943 0.00117074 0.00117203 0.00117332 0.00117461 0.00117589 0.00117718 0.00117847 0.00117975 0.00118104 0.00118232 0.00118361 0.0011849 0.00118618 0.00118747 0.00118875 0.00119004 0.00119133 0.00119261 0.0011939 0.00119518 0.00119647 0.00119776 0.00119904 0.00120033 0.00120161 0.0012029 0.00120419 0.00120547 0.00120676 0.00120804 0.00120933 0.00121062 0.0012119 0.00121319 0.00121447 0.00121576 0.00121705 0.00121833 0.00121962 0.00122091 0.00122219 0.00122348 0.00122476 0.00122605 0.00122734 0.00122862 0.00122991 0.00123119 0.00123248 0.00123377 0.00123505 0.00123634 0.00123762 0.00123891 0.0012402 0.00124148 0.00124277 0.00124405 0.00124534 0.00124663 0.00124791 0.0012492 0.00125048 0.00125177 0.00125306 0.00125434 0.00125563 0.00125691 0.0012582 0.00125949 0.00126077 0.00126206 0.00126334 0.00126463 0.00126592 0.0012672 0.00126849 0.00126977 0.00127106 0.00127235 0.00127363 0.00127492 0.0012762 0.00127749 0.00127878 0.00128006 0.00128135 0.00128263 0.00128392 0.00128521 0.00128649 0.00128778 0.00128907 0.00129035 0.00129164 0.00129292 0.00129421 0.0012955 0.00129678 0.00129807 0.00129935 0.00130064 0.00130193 0.00130321 0.0013045 0.00130578 0.00130707 0.00130836 0.00130964 0.00131093 0.00131221 0.0013135 0.00131479 0.00131607 0.00131736 0.00131864 0.00131993 0.00132122 0.0013225 0.00132379 0.00132507 +-0.000254381 -0.000242236 -0.000224734 -0.000176044 2.91334E-06 0.000409477 0.000862874 0.0011039 0.00116484 0.00117593 0.00117868 0.00118019 0.00118152 0.00118282 0.00118412 0.00118542 0.00118672 0.00118802 0.00118931 0.00119061 0.00119191 0.00119321 0.00119451 0.0011958 0.0011971 0.0011984 0.0011997 0.001201 0.0012023 0.00120359 0.00120489 0.00120619 0.00120749 0.00120879 0.00121009 0.00121138 0.00121268 0.00121398 0.00121528 0.00121658 0.00121787 0.00121917 0.00122047 0.00122177 0.00122307 0.00122437 0.00122566 0.00122696 0.00122826 0.00122956 0.00123086 0.00123216 0.00123345 0.00123475 0.00123605 0.00123735 0.00123865 0.00123995 0.00124124 0.00124254 0.00124384 0.00124514 0.00124644 0.00124773 0.00124903 0.00125033 0.00125163 0.00125293 0.00125423 0.00125552 0.00125682 0.00125812 0.00125942 0.00126072 0.00126202 0.00126331 0.00126461 0.00126591 0.00126721 0.00126851 0.00126981 0.0012711 0.0012724 0.0012737 0.001275 0.0012763 0.00127759 0.00127889 0.00128019 0.00128149 0.00128279 0.00128409 0.00128538 0.00128668 0.00128798 0.00128928 0.00129058 0.00129188 0.00129317 0.00129447 0.00129577 0.00129707 0.00129837 0.00129967 0.00130096 0.00130226 0.00130356 0.00130486 0.00130616 0.00130745 0.00130875 0.00131005 0.00131135 0.00131265 0.00131395 0.00131524 0.00131654 0.00131784 0.00131914 0.00132044 0.00132174 0.00132303 0.00132433 0.00132563 0.00132693 0.00132823 0.00132952 0.00133082 0.00133212 0.00133342 0.00133472 0.00133602 0.00133731 +-0.000256754 -0.000244491 -0.000226811 -0.000177609 2.95181E-06 0.000412315 0.000869231 0.00111331 0.00117533 0.00118662 0.00118941 0.00119094 0.00119228 0.00119359 0.0011949 0.00119622 0.00119753 0.00119884 0.00120015 0.00120146 0.00120277 0.00120408 0.00120539 0.0012067 0.00120801 0.00120932 0.00121063 0.00121194 0.00121325 0.00121456 0.00121587 0.00121718 0.00121849 0.0012198 0.00122111 0.00122242 0.00122373 0.00122505 0.00122636 0.00122767 0.00122898 0.00123029 0.0012316 0.00123291 0.00123422 0.00123553 0.00123684 0.00123815 0.00123946 0.00124077 0.00124208 0.00124339 0.0012447 0.00124601 0.00124732 0.00124863 0.00124994 0.00125125 0.00125256 0.00125388 0.00125519 0.0012565 0.00125781 0.00125912 0.00126043 0.00126174 0.00126305 0.00126436 0.00126567 0.00126698 0.00126829 0.0012696 0.00127091 0.00127222 0.00127353 0.00127484 0.00127615 0.00127746 0.00127877 0.00128008 0.00128139 0.00128271 0.00128402 0.00128533 0.00128664 0.00128795 0.00128926 0.00129057 0.00129188 0.00129319 0.0012945 0.00129581 0.00129712 0.00129843 0.00129974 0.00130105 0.00130236 0.00130367 0.00130498 0.00130629 0.0013076 0.00130891 0.00131022 0.00131154 0.00131285 0.00131416 0.00131547 0.00131678 0.00131809 0.0013194 0.00132071 0.00132202 0.00132333 0.00132464 0.00132595 0.00132726 0.00132857 0.00132988 0.00133119 0.0013325 0.00133381 0.00133512 0.00133643 0.00133774 0.00133906 0.00134037 0.00134168 0.00134299 0.0013443 0.00134561 0.00134692 0.00134823 0.00134954 +-0.000259126 -0.000246745 -0.000228886 -0.000179171 2.99044E-06 0.000415137 0.000875554 0.0011227 0.0011858 0.0011973 0.00120013 0.00120167 0.00120302 0.00120435 0.00120567 0.001207 0.00120832 0.00120964 0.00121097 0.00121229 0.00121361 0.00121493 0.00121626 0.00121758 0.0012189 0.00122022 0.00122155 0.00122287 0.00122419 0.00122551 0.00122684 0.00122816 0.00122948 0.0012308 0.00123213 0.00123345 0.00123477 0.0012361 0.00123742 0.00123874 0.00124006 0.00124139 0.00124271 0.00124403 0.00124535 0.00124668 0.001248 0.00124932 0.00125064 0.00125197 0.00125329 0.00125461 0.00125594 0.00125726 0.00125858 0.0012599 0.00126123 0.00126255 0.00126387 0.00126519 0.00126652 0.00126784 0.00126916 0.00127048 0.00127181 0.00127313 0.00127445 0.00127577 0.0012771 0.00127842 0.00127974 0.00128107 0.00128239 0.00128371 0.00128503 0.00128636 0.00128768 0.001289 0.00129032 0.00129165 0.00129297 0.00129429 0.00129561 0.00129694 0.00129826 0.00129958 0.00130091 0.00130223 0.00130355 0.00130487 0.0013062 0.00130752 0.00130884 0.00131016 0.00131149 0.00131281 0.00131413 0.00131545 0.00131678 0.0013181 0.00131942 0.00132074 0.00132207 0.00132339 0.00132471 0.00132604 0.00132736 0.00132868 0.00133 0.00133133 0.00133265 0.00133397 0.00133529 0.00133662 0.00133794 0.00133926 0.00134058 0.00134191 0.00134323 0.00134455 0.00134588 0.0013472 0.00134852 0.00134984 0.00135117 0.00135249 0.00135381 0.00135513 0.00135646 0.00135778 0.0013591 0.00136042 0.00136175 +-0.000261497 -0.000248998 -0.000230959 -0.000180731 3.02924E-06 0.000417944 0.000881844 0.00113206 0.00119625 0.00120796 0.00121083 0.00121239 0.00121375 0.00121509 0.00121643 0.00121776 0.0012191 0.00122043 0.00122177 0.0012231 0.00122444 0.00122577 0.00122711 0.00122844 0.00122978 0.00123111 0.00123245 0.00123378 0.00123512 0.00123645 0.00123779 0.00123912 0.00124046 0.00124179 0.00124313 0.00124446 0.0012458 0.00124713 0.00124847 0.0012498 0.00125114 0.00125247 0.00125381 0.00125514 0.00125647 0.00125781 0.00125914 0.00126048 0.00126181 0.00126315 0.00126448 0.00126582 0.00126715 0.00126849 0.00126982 0.00127116 0.00127249 0.00127383 0.00127516 0.0012765 0.00127783 0.00127917 0.0012805 0.00128184 0.00128317 0.00128451 0.00128584 0.00128718 0.00128851 0.00128985 0.00129118 0.00129252 0.00129385 0.00129518 0.00129652 0.00129785 0.00129919 0.00130052 0.00130186 0.00130319 0.00130453 0.00130586 0.0013072 0.00130853 0.00130987 0.0013112 0.00131254 0.00131387 0.00131521 0.00131654 0.00131788 0.00131921 0.00132055 0.00132188 0.00132322 0.00132455 0.00132589 0.00132722 0.00132856 0.00132989 0.00133123 0.00133256 0.00133389 0.00133523 0.00133656 0.0013379 0.00133923 0.00134057 0.0013419 0.00134324 0.00134457 0.00134591 0.00134724 0.00134858 0.00134991 0.00135125 0.00135258 0.00135392 0.00135525 0.00135659 0.00135792 0.00135926 0.00136059 0.00136193 0.00136326 0.0013646 0.00136593 0.00136727 0.0013686 0.00136994 0.00137127 0.0013726 0.00137394 +-0.000263867 -0.00025125 -0.000233031 -0.000182289 3.0682E-06 0.000420737 0.0008881 0.00114138 0.00120668 0.0012186 0.00122152 0.00122309 0.00122447 0.00122582 0.00122717 0.00122852 0.00122987 0.00123121 0.00123256 0.00123391 0.00123525 0.0012366 0.00123795 0.00123929 0.00124064 0.00124199 0.00124334 0.00124468 0.00124603 0.00124738 0.00124872 0.00125007 0.00125142 0.00125276 0.00125411 0.00125546 0.00125681 0.00125815 0.0012595 0.00126085 0.00126219 0.00126354 0.00126489 0.00126623 0.00126758 0.00126893 0.00127028 0.00127162 0.00127297 0.00127432 0.00127566 0.00127701 0.00127836 0.0012797 0.00128105 0.0012824 0.00128374 0.00128509 0.00128644 0.00128779 0.00128913 0.00129048 0.00129183 0.00129317 0.00129452 0.00129587 0.00129721 0.00129856 0.00129991 0.00130126 0.0013026 0.00130395 0.0013053 0.00130664 0.00130799 0.00130934 0.00131068 0.00131203 0.00131338 0.00131473 0.00131607 0.00131742 0.00131877 0.00132011 0.00132146 0.00132281 0.00132415 0.0013255 0.00132685 0.0013282 0.00132954 0.00133089 0.00133224 0.00133358 0.00133493 0.00133628 0.00133762 0.00133897 0.00134032 0.00134167 0.00134301 0.00134436 0.00134571 0.00134705 0.0013484 0.00134975 0.00135109 0.00135244 0.00135379 0.00135514 0.00135648 0.00135783 0.00135918 0.00136052 0.00136187 0.00136322 0.00136456 0.00136591 0.00136726 0.00136861 0.00136995 0.0013713 0.00137265 0.00137399 0.00137534 0.00137669 0.00137803 0.00137938 0.00138073 0.00138208 0.00138342 0.00138477 0.00138612 +-0.000266236 -0.0002535 -0.000235102 -0.000183845 3.10733E-06 0.000423515 0.000894323 0.00115069 0.0012171 0.00122923 0.00123219 0.00123378 0.00123517 0.00123654 0.0012379 0.00123926 0.00124062 0.00124198 0.00124333 0.00124469 0.00124605 0.00124741 0.00124877 0.00125013 0.00125149 0.00125285 0.00125421 0.00125557 0.00125693 0.00125829 0.00125964 0.001261 0.00126236 0.00126372 0.00126508 0.00126644 0.0012678 0.00126916 0.00127052 0.00127188 0.00127324 0.0012746 0.00127595 0.00127731 0.00127867 0.00128003 0.00128139 0.00128275 0.00128411 0.00128547 0.00128683 0.00128819 0.00128955 0.0012909 0.00129226 0.00129362 0.00129498 0.00129634 0.0012977 0.00129906 0.00130042 0.00130178 0.00130314 0.0013045 0.00130586 0.00130721 0.00130857 0.00130993 0.00131129 0.00131265 0.00131401 0.00131537 0.00131673 0.00131809 0.00131945 0.00132081 0.00132217 0.00132352 0.00132488 0.00132624 0.0013276 0.00132896 0.00133032 0.00133168 0.00133304 0.0013344 0.00133576 0.00133712 0.00133847 0.00133983 0.00134119 0.00134255 0.00134391 0.00134527 0.00134663 0.00134799 0.00134935 0.00135071 0.00135207 0.00135343 0.00135478 0.00135614 0.0013575 0.00135886 0.00136022 0.00136158 0.00136294 0.0013643 0.00136566 0.00136702 0.00136838 0.00136974 0.00137109 0.00137245 0.00137381 0.00137517 0.00137653 0.00137789 0.00137925 0.00138061 0.00138197 0.00138333 0.00138469 0.00138605 0.0013874 0.00138876 0.00139012 0.00139148 0.00139284 0.0013942 0.00139556 0.00139692 0.00139828 +-0.000268603 -0.000255749 -0.000237171 -0.000185398 3.14662E-06 0.000426278 0.000900514 0.00115996 0.0012275 0.00123985 0.00124285 0.00124446 0.00124586 0.00124724 0.00124861 0.00124998 0.00125135 0.00125272 0.0012541 0.00125547 0.00125684 0.00125821 0.00125958 0.00126095 0.00126232 0.00126369 0.00126507 0.00126644 0.00126781 0.00126918 0.00127055 0.00127192 0.00127329 0.00127467 0.00127604 0.00127741 0.00127878 0.00128015 0.00128152 0.00128289 0.00128426 0.00128564 0.00128701 0.00128838 0.00128975 0.00129112 0.00129249 0.00129386 0.00129523 0.00129661 0.00129798 0.00129935 0.00130072 0.00130209 0.00130346 0.00130483 0.0013062 0.00130758 0.00130895 0.00131032 0.00131169 0.00131306 0.00131443 0.0013158 0.00131718 0.00131855 0.00131992 0.00132129 0.00132266 0.00132403 0.0013254 0.00132677 0.00132815 0.00132952 0.00133089 0.00133226 0.00133363 0.001335 0.00133637 0.00133774 0.00133912 0.00134049 0.00134186 0.00134323 0.0013446 0.00134597 0.00134734 0.00134871 0.00135009 0.00135146 0.00135283 0.0013542 0.00135557 0.00135694 0.00135831 0.00135969 0.00136106 0.00136243 0.0013638 0.00136517 0.00136654 0.00136791 0.00136928 0.00137066 0.00137203 0.0013734 0.00137477 0.00137614 0.00137751 0.00137888 0.00138025 0.00138163 0.001383 0.00138437 0.00138574 0.00138711 0.00138848 0.00138985 0.00139122 0.0013926 0.00139397 0.00139534 0.00139671 0.00139808 0.00139945 0.00140082 0.00140219 0.00140357 0.00140494 0.00140631 0.00140768 0.00140905 0.00141042 +-0.000270969 -0.000257997 -0.000239238 -0.000186949 3.18608E-06 0.000429027 0.000906672 0.0011692 0.00123788 0.00125045 0.00125349 0.00125512 0.00125654 0.00125793 0.00125931 0.00126069 0.00126208 0.00126346 0.00126484 0.00126623 0.00126761 0.00126899 0.00127038 0.00127176 0.00127314 0.00127453 0.00127591 0.00127729 0.00127868 0.00128006 0.00128144 0.00128283 0.00128421 0.00128559 0.00128698 0.00128836 0.00128974 0.00129113 0.00129251 0.00129389 0.00129528 0.00129666 0.00129804 0.00129943 0.00130081 0.0013022 0.00130358 0.00130496 0.00130635 0.00130773 0.00130911 0.0013105 0.00131188 0.00131326 0.00131465 0.00131603 0.00131741 0.0013188 0.00132018 0.00132156 0.00132295 0.00132433 0.00132571 0.0013271 0.00132848 0.00132986 0.00133125 0.00133263 0.00133401 0.0013354 0.00133678 0.00133816 0.00133955 0.00134093 0.00134231 0.0013437 0.00134508 0.00134646 0.00134785 0.00134923 0.00135061 0.001352 0.00135338 0.00135476 0.00135615 0.00135753 0.00135892 0.0013603 0.00136168 0.00136307 0.00136445 0.00136583 0.00136722 0.0013686 0.00136998 0.00137137 0.00137275 0.00137413 0.00137552 0.0013769 0.00137828 0.00137967 0.00138105 0.00138243 0.00138382 0.0013852 0.00138658 0.00138797 0.00138935 0.00139073 0.00139212 0.0013935 0.00139488 0.00139627 0.00139765 0.00139903 0.00140042 0.0014018 0.00140318 0.00140457 0.00140595 0.00140733 0.00140872 0.0014101 0.00141149 0.00141287 0.00141425 0.00141564 0.00141702 0.0014184 0.00141979 0.00142117 0.00142255 +-0.000273334 -0.000260244 -0.000241304 -0.000188498 3.2257E-06 0.000431762 0.000912797 0.00117842 0.00124824 0.00126104 0.00126412 0.00126577 0.0012672 0.0012686 0.00126999 0.00127139 0.00127278 0.00127418 0.00127558 0.00127697 0.00127837 0.00127976 0.00128116 0.00128255 0.00128395 0.00128534 0.00128674 0.00128814 0.00128953 0.00129093 0.00129232 0.00129372 0.00129511 0.00129651 0.0012979 0.0012993 0.0013007 0.00130209 0.00130349 0.00130488 0.00130628 0.00130767 0.00130907 0.00131046 0.00131186 0.00131326 0.00131465 0.00131605 0.00131744 0.00131884 0.00132023 0.00132163 0.00132302 0.00132442 0.00132581 0.00132721 0.00132861 0.00133 0.0013314 0.00133279 0.00133419 0.00133558 0.00133698 0.00133837 0.00133977 0.00134117 0.00134256 0.00134396 0.00134535 0.00134675 0.00134814 0.00134954 0.00135093 0.00135233 0.00135373 0.00135512 0.00135652 0.00135791 0.00135931 0.0013607 0.0013621 0.00136349 0.00136489 0.00136629 0.00136768 0.00136908 0.00137047 0.00137187 0.00137326 0.00137466 0.00137605 0.00137745 0.00137885 0.00138024 0.00138164 0.00138303 0.00138443 0.00138582 0.00138722 0.00138861 0.00139001 0.0013914 0.0013928 0.0013942 0.00139559 0.00139699 0.00139838 0.00139978 0.00140117 0.00140257 0.00140396 0.00140536 0.00140676 0.00140815 0.00140955 0.00141094 0.00141234 0.00141373 0.00141513 0.00141652 0.00141792 0.00141932 0.00142071 0.00142211 0.0014235 0.0014249 0.00142629 0.00142769 0.00142908 0.00143048 0.00143188 0.00143327 0.00143467 +-0.000275697 -0.000262489 -0.000243369 -0.000190044 3.26548E-06 0.000434483 0.000918891 0.00118761 0.00125859 0.00127161 0.00127474 0.0012764 0.00127784 0.00127926 0.00128066 0.00128207 0.00128348 0.00128489 0.00128629 0.0012877 0.00128911 0.00129052 0.00129192 0.00129333 0.00129474 0.00129615 0.00129756 0.00129896 0.00130037 0.00130178 0.00130319 0.00130459 0.001306 0.00130741 0.00130882 0.00131022 0.00131163 0.00131304 0.00131445 0.00131585 0.00131726 0.00131867 0.00132008 0.00132149 0.00132289 0.0013243 0.00132571 0.00132712 0.00132852 0.00132993 0.00133134 0.00133275 0.00133415 0.00133556 0.00133697 0.00133838 0.00133978 0.00134119 0.0013426 0.00134401 0.00134541 0.00134682 0.00134823 0.00134964 0.00135105 0.00135245 0.00135386 0.00135527 0.00135668 0.00135808 0.00135949 0.0013609 0.00136231 0.00136371 0.00136512 0.00136653 0.00136794 0.00136934 0.00137075 0.00137216 0.00137357 0.00137498 0.00137638 0.00137779 0.0013792 0.00138061 0.00138201 0.00138342 0.00138483 0.00138624 0.00138764 0.00138905 0.00139046 0.00139187 0.00139327 0.00139468 0.00139609 0.0013975 0.00139891 0.00140031 0.00140172 0.00140313 0.00140454 0.00140594 0.00140735 0.00140876 0.00141017 0.00141157 0.00141298 0.00141439 0.0014158 0.0014172 0.00141861 0.00142002 0.00142143 0.00142283 0.00142424 0.00142565 0.00142706 0.00142847 0.00142987 0.00143128 0.00143269 0.0014341 0.0014355 0.00143691 0.00143832 0.00143973 0.00144113 0.00144254 0.00144395 0.00144536 0.00144676 +-0.00027806 -0.000264733 -0.000245432 -0.000191588 3.30542E-06 0.000437191 0.000924952 0.00119677 0.00126892 0.00128217 0.00128534 0.00128702 0.00128847 0.0012899 0.00129132 0.00129274 0.00129416 0.00129558 0.001297 0.00129842 0.00129984 0.00130126 0.00130268 0.0013041 0.00130552 0.00130694 0.00130836 0.00130978 0.0013112 0.00131262 0.00131404 0.00131546 0.00131687 0.00131829 0.00131971 0.00132113 0.00132255 0.00132397 0.00132539 0.00132681 0.00132823 0.00132965 0.00133107 0.00133249 0.00133391 0.00133533 0.00133675 0.00133817 0.00133959 0.00134101 0.00134243 0.00134385 0.00134527 0.00134669 0.00134811 0.00134953 0.00135095 0.00135237 0.00135379 0.00135521 0.00135663 0.00135805 0.00135947 0.00136089 0.00136231 0.00136373 0.00136515 0.00136657 0.00136799 0.0013694 0.00137082 0.00137224 0.00137366 0.00137508 0.0013765 0.00137792 0.00137934 0.00138076 0.00138218 0.0013836 0.00138502 0.00138644 0.00138786 0.00138928 0.0013907 0.00139212 0.00139354 0.00139496 0.00139638 0.0013978 0.00139922 0.00140064 0.00140206 0.00140348 0.0014049 0.00140632 0.00140774 0.00140916 0.00141058 0.001412 0.00141342 0.00141484 0.00141626 0.00141768 0.0014191 0.00142051 0.00142193 0.00142335 0.00142477 0.00142619 0.00142761 0.00142903 0.00143045 0.00143187 0.00143329 0.00143471 0.00143613 0.00143755 0.00143897 0.00144039 0.00144181 0.00144323 0.00144465 0.00144607 0.00144749 0.00144891 0.00145033 0.00145175 0.00145317 0.00145459 0.00145601 0.00145743 0.00145885 +-0.000280421 -0.000266976 -0.000247494 -0.00019313 3.34552E-06 0.000439884 0.000930982 0.0012059 0.00127923 0.00129271 0.00129593 0.00129762 0.00129909 0.00130053 0.00130196 0.00130339 0.00130483 0.00130626 0.00130769 0.00130912 0.00131055 0.00131198 0.00131342 0.00131485 0.00131628 0.00131771 0.00131914 0.00132058 0.00132201 0.00132344 0.00132487 0.0013263 0.00132773 0.00132917 0.0013306 0.00133203 0.00133346 0.00133489 0.00133633 0.00133776 0.00133919 0.00134062 0.00134205 0.00134348 0.00134492 0.00134635 0.00134778 0.00134921 0.00135064 0.00135208 0.00135351 0.00135494 0.00135637 0.0013578 0.00135923 0.00136067 0.0013621 0.00136353 0.00136496 0.00136639 0.00136782 0.00136926 0.00137069 0.00137212 0.00137355 0.00137498 0.00137642 0.00137785 0.00137928 0.00138071 0.00138214 0.00138357 0.00138501 0.00138644 0.00138787 0.0013893 0.00139073 0.00139217 0.0013936 0.00139503 0.00139646 0.00139789 0.00139932 0.00140076 0.00140219 0.00140362 0.00140505 0.00140648 0.00140792 0.00140935 0.00141078 0.00141221 0.00141364 0.00141507 0.00141651 0.00141794 0.00141937 0.0014208 0.00142223 0.00142367 0.0014251 0.00142653 0.00142796 0.00142939 0.00143082 0.00143226 0.00143369 0.00143512 0.00143655 0.00143798 0.00143942 0.00144085 0.00144228 0.00144371 0.00144514 0.00144657 0.00144801 0.00144944 0.00145087 0.0014523 0.00145373 0.00145517 0.0014566 0.00145803 0.00145946 0.00146089 0.00146232 0.00146376 0.00146519 0.00146662 0.00146805 0.00146948 0.00147091 +-0.000282781 -0.000269218 -0.000249554 -0.000194669 3.38578E-06 0.000442563 0.00093698 0.001215 0.00128953 0.00130324 0.0013065 0.00130821 0.0013097 0.00131115 0.00131259 0.00131403 0.00131548 0.00131692 0.00131837 0.00131981 0.00132125 0.0013227 0.00132414 0.00132558 0.00132703 0.00132847 0.00132992 0.00133136 0.0013328 0.00133425 0.00133569 0.00133714 0.00133858 0.00134002 0.00134147 0.00134291 0.00134436 0.0013458 0.00134724 0.00134869 0.00135013 0.00135157 0.00135302 0.00135446 0.00135591 0.00135735 0.00135879 0.00136024 0.00136168 0.00136313 0.00136457 0.00136601 0.00136746 0.0013689 0.00137034 0.00137179 0.00137323 0.00137468 0.00137612 0.00137756 0.00137901 0.00138045 0.0013819 0.00138334 0.00138478 0.00138623 0.00138767 0.00138912 0.00139056 0.001392 0.00139345 0.00139489 0.00139633 0.00139778 0.00139922 0.00140067 0.00140211 0.00140355 0.001405 0.00140644 0.00140789 0.00140933 0.00141077 0.00141222 0.00141366 0.0014151 0.00141655 0.00141799 0.00141944 0.00142088 0.00142232 0.00142377 0.00142521 0.00142666 0.0014281 0.00142954 0.00143099 0.00143243 0.00143388 0.00143532 0.00143676 0.00143821 0.00143965 0.00144109 0.00144254 0.00144398 0.00144543 0.00144687 0.00144831 0.00144976 0.0014512 0.00145265 0.00145409 0.00145553 0.00145698 0.00145842 0.00145986 0.00146131 0.00146275 0.0014642 0.00146564 0.00146708 0.00146853 0.00146997 0.00147142 0.00147286 0.0014743 0.00147575 0.00147719 0.00147864 0.00148008 0.00148152 0.00148297 +-0.00028514 -0.000271458 -0.000251613 -0.000196207 3.42619E-06 0.000445229 0.000942947 0.00122408 0.00129981 0.00131375 0.00131706 0.00131879 0.00132029 0.00132175 0.0013232 0.00132466 0.00132612 0.00132757 0.00132903 0.00133048 0.00133194 0.0013334 0.00133485 0.00133631 0.00133776 0.00133922 0.00134068 0.00134213 0.00134359 0.00134504 0.0013465 0.00134795 0.00134941 0.00135087 0.00135232 0.00135378 0.00135523 0.00135669 0.00135815 0.0013596 0.00136106 0.00136251 0.00136397 0.00136543 0.00136688 0.00136834 0.00136979 0.00137125 0.00137271 0.00137416 0.00137562 0.00137707 0.00137853 0.00137999 0.00138144 0.0013829 0.00138435 0.00138581 0.00138726 0.00138872 0.00139018 0.00139163 0.00139309 0.00139454 0.001396 0.00139746 0.00139891 0.00140037 0.00140182 0.00140328 0.00140474 0.00140619 0.00140765 0.0014091 0.00141056 0.00141202 0.00141347 0.00141493 0.00141638 0.00141784 0.0014193 0.00142075 0.00142221 0.00142366 0.00142512 0.00142657 0.00142803 0.00142949 0.00143094 0.0014324 0.00143385 0.00143531 0.00143677 0.00143822 0.00143968 0.00144113 0.00144259 0.00144405 0.0014455 0.00144696 0.00144841 0.00144987 0.00145133 0.00145278 0.00145424 0.00145569 0.00145715 0.00145861 0.00146006 0.00146152 0.00146297 0.00146443 0.00146588 0.00146734 0.0014688 0.00147025 0.00147171 0.00147316 0.00147462 0.00147608 0.00147753 0.00147899 0.00148044 0.0014819 0.00148336 0.00148481 0.00148627 0.00148772 0.00148918 0.00149064 0.00149209 0.00149355 0.001495 +-0.000287497 -0.000273698 -0.000253671 -0.000197742 3.46677E-06 0.000447882 0.000948882 0.00123312 0.00131007 0.00132425 0.00132761 0.00132935 0.00133086 0.00133234 0.0013338 0.00133527 0.00133674 0.00133821 0.00133968 0.00134114 0.00134261 0.00134408 0.00134555 0.00134702 0.00134848 0.00134995 0.00135142 0.00135289 0.00135436 0.00135582 0.00135729 0.00135876 0.00136023 0.0013617 0.00136316 0.00136463 0.0013661 0.00136757 0.00136904 0.0013705 0.00137197 0.00137344 0.00137491 0.00137638 0.00137784 0.00137931 0.00138078 0.00138225 0.00138372 0.00138518 0.00138665 0.00138812 0.00138959 0.00139105 0.00139252 0.00139399 0.00139546 0.00139693 0.00139839 0.00139986 0.00140133 0.0014028 0.00140427 0.00140573 0.0014072 0.00140867 0.00141014 0.00141161 0.00141307 0.00141454 0.00141601 0.00141748 0.00141895 0.00142041 0.00142188 0.00142335 0.00142482 0.00142629 0.00142775 0.00142922 0.00143069 0.00143216 0.00143363 0.00143509 0.00143656 0.00143803 0.0014395 0.00144097 0.00144243 0.0014439 0.00144537 0.00144684 0.00144831 0.00144977 0.00145124 0.00145271 0.00145418 0.00145565 0.00145711 0.00145858 0.00146005 0.00146152 0.00146299 0.00146445 0.00146592 0.00146739 0.00146886 0.00147033 0.00147179 0.00147326 0.00147473 0.0014762 0.00147766 0.00147913 0.0014806 0.00148207 0.00148354 0.001485 0.00148647 0.00148794 0.00148941 0.00149088 0.00149234 0.00149381 0.00149528 0.00149675 0.00149822 0.00149968 0.00150115 0.00150262 0.00150409 0.00150556 0.00150702 +-0.000289854 -0.000275936 -0.000255727 -0.000199275 3.5075E-06 0.000450521 0.000954787 0.00124214 0.00132031 0.00133474 0.00133814 0.0013399 0.00134142 0.00134291 0.00134439 0.00134587 0.00134735 0.00134883 0.00135031 0.00135179 0.00135327 0.00135475 0.00135623 0.00135771 0.00135919 0.00136067 0.00136215 0.00136363 0.00136511 0.00136659 0.00136807 0.00136955 0.00137103 0.00137251 0.00137399 0.00137547 0.00137695 0.00137843 0.00137991 0.00138139 0.00138287 0.00138435 0.00138583 0.00138731 0.00138879 0.00139027 0.00139175 0.00139323 0.00139471 0.00139619 0.00139767 0.00139915 0.00140063 0.00140211 0.00140359 0.00140507 0.00140655 0.00140803 0.00140951 0.00141099 0.00141247 0.00141395 0.00141543 0.00141691 0.00141839 0.00141987 0.00142135 0.00142283 0.00142431 0.00142579 0.00142727 0.00142875 0.00143023 0.00143171 0.00143319 0.00143467 0.00143615 0.00143763 0.00143911 0.00144059 0.00144207 0.00144355 0.00144503 0.00144651 0.00144799 0.00144947 0.00145095 0.00145243 0.00145391 0.00145539 0.00145687 0.00145835 0.00145983 0.00146131 0.00146279 0.00146427 0.00146575 0.00146723 0.00146871 0.00147019 0.00147167 0.00147315 0.00147463 0.00147611 0.00147759 0.00147907 0.00148055 0.00148203 0.00148351 0.00148499 0.00148647 0.00148795 0.00148943 0.00149091 0.00149239 0.00149387 0.00149535 0.00149683 0.00149831 0.00149979 0.00150127 0.00150275 0.00150423 0.00150571 0.00150719 0.00150867 0.00151015 0.00151163 0.00151311 0.00151459 0.00151607 0.00151755 0.00151903 +-0.000292209 -0.000278172 -0.000257782 -0.000200805 3.54839E-06 0.000453147 0.00096066 0.00125113 0.00133054 0.00134521 0.00134866 0.00135044 0.00135197 0.00135347 0.00135496 0.00135646 0.00135795 0.00135944 0.00136093 0.00136242 0.00136392 0.00136541 0.0013669 0.00136839 0.00136988 0.00137138 0.00137287 0.00137436 0.00137585 0.00137734 0.00137884 0.00138033 0.00138182 0.00138331 0.0013848 0.0013863 0.00138779 0.00138928 0.00139077 0.00139226 0.00139376 0.00139525 0.00139674 0.00139823 0.00139972 0.00140122 0.00140271 0.0014042 0.00140569 0.00140718 0.00140868 0.00141017 0.00141166 0.00141315 0.00141464 0.00141614 0.00141763 0.00141912 0.00142061 0.0014221 0.0014236 0.00142509 0.00142658 0.00142807 0.00142956 0.00143106 0.00143255 0.00143404 0.00143553 0.00143702 0.00143852 0.00144001 0.0014415 0.00144299 0.00144448 0.00144598 0.00144747 0.00144896 0.00145045 0.00145194 0.00145344 0.00145493 0.00145642 0.00145791 0.0014594 0.0014609 0.00146239 0.00146388 0.00146537 0.00146686 0.00146836 0.00146985 0.00147134 0.00147283 0.00147432 0.00147582 0.00147731 0.0014788 0.00148029 0.00148178 0.00148328 0.00148477 0.00148626 0.00148775 0.00148924 0.00149074 0.00149223 0.00149372 0.00149521 0.0014967 0.0014982 0.00149969 0.00150118 0.00150267 0.00150416 0.00150566 0.00150715 0.00150864 0.00151013 0.00151162 0.00151312 0.00151461 0.0015161 0.00151759 0.00151908 0.00152058 0.00152207 0.00152356 0.00152505 0.00152654 0.00152804 0.00152953 0.00153102 +-0.000294563 -0.000280408 -0.000259835 -0.000202334 3.58944E-06 0.00045576 0.000966504 0.00126009 0.00134074 0.00135566 0.00135917 0.00136096 0.00136251 0.00136402 0.00136552 0.00136703 0.00136853 0.00137003 0.00137154 0.00137304 0.00137455 0.00137605 0.00137755 0.00137906 0.00138056 0.00138207 0.00138357 0.00138507 0.00138658 0.00138808 0.00138959 0.00139109 0.00139259 0.0013941 0.0013956 0.00139711 0.00139861 0.00140011 0.00140162 0.00140312 0.00140463 0.00140613 0.00140763 0.00140914 0.00141064 0.00141215 0.00141365 0.00141515 0.00141666 0.00141816 0.00141967 0.00142117 0.00142267 0.00142418 0.00142568 0.00142719 0.00142869 0.00143019 0.0014317 0.0014332 0.00143471 0.00143621 0.00143771 0.00143922 0.00144072 0.00144223 0.00144373 0.00144523 0.00144674 0.00144824 0.00144975 0.00145125 0.00145275 0.00145426 0.00145576 0.00145727 0.00145877 0.00146027 0.00146178 0.00146328 0.00146479 0.00146629 0.00146779 0.0014693 0.0014708 0.00147231 0.00147381 0.00147531 0.00147682 0.00147832 0.00147983 0.00148133 0.00148283 0.00148434 0.00148584 0.00148735 0.00148885 0.00149035 0.00149186 0.00149336 0.00149487 0.00149637 0.00149787 0.00149938 0.00150088 0.00150239 0.00150389 0.0015054 0.0015069 0.0015084 0.00150991 0.00151141 0.00151292 0.00151442 0.00151592 0.00151743 0.00151893 0.00152044 0.00152194 0.00152344 0.00152495 0.00152645 0.00152796 0.00152946 0.00153096 0.00153247 0.00153397 0.00153548 0.00153698 0.00153848 0.00153999 0.00154149 0.001543 +-0.000296915 -0.000282642 -0.000261887 -0.00020386 3.63064E-06 0.00045836 0.000972317 0.00126903 0.00135094 0.00136611 0.00136966 0.00137147 0.00137303 0.00137455 0.00137607 0.00137758 0.0013791 0.00138061 0.00138213 0.00138365 0.00138516 0.00138668 0.00138819 0.00138971 0.00139123 0.00139274 0.00139426 0.00139577 0.00139729 0.00139881 0.00140032 0.00140184 0.00140335 0.00140487 0.00140639 0.0014079 0.00140942 0.00141093 0.00141245 0.00141397 0.00141548 0.001417 0.00141851 0.00142003 0.00142155 0.00142306 0.00142458 0.00142609 0.00142761 0.00142913 0.00143064 0.00143216 0.00143367 0.00143519 0.00143671 0.00143822 0.00143974 0.00144125 0.00144277 0.00144429 0.0014458 0.00144732 0.00144883 0.00145035 0.00145187 0.00145338 0.0014549 0.00145641 0.00145793 0.00145945 0.00146096 0.00146248 0.00146399 0.00146551 0.00146703 0.00146854 0.00147006 0.00147157 0.00147309 0.00147461 0.00147612 0.00147764 0.00147915 0.00148067 0.00148219 0.0014837 0.00148522 0.00148673 0.00148825 0.00148977 0.00149128 0.0014928 0.00149432 0.00149583 0.00149735 0.00149886 0.00150038 0.0015019 0.00150341 0.00150493 0.00150644 0.00150796 0.00150948 0.00151099 0.00151251 0.00151402 0.00151554 0.00151706 0.00151857 0.00152009 0.0015216 0.00152312 0.00152464 0.00152615 0.00152767 0.00152918 0.0015307 0.00153222 0.00153373 0.00153525 0.00153676 0.00153828 0.0015398 0.00154131 0.00154283 0.00154434 0.00154586 0.00154738 0.00154889 0.00155041 0.00155192 0.00155344 0.00155496 +-0.000299267 -0.000284876 -0.000263937 -0.000205384 3.67199E-06 0.000460947 0.000978099 0.00127793 0.00136111 0.00137653 0.00138013 0.00138196 0.00138353 0.00138507 0.0013866 0.00138813 0.00138965 0.00139118 0.00139271 0.00139424 0.00139577 0.00139729 0.00139882 0.00140035 0.00140188 0.00140341 0.00140493 0.00140646 0.00140799 0.00140952 0.00141105 0.00141257 0.0014141 0.00141563 0.00141716 0.00141869 0.00142021 0.00142174 0.00142327 0.0014248 0.00142633 0.00142785 0.00142938 0.00143091 0.00143244 0.00143397 0.00143549 0.00143702 0.00143855 0.00144008 0.00144161 0.00144313 0.00144466 0.00144619 0.00144772 0.00144925 0.00145077 0.0014523 0.00145383 0.00145536 0.00145689 0.00145841 0.00145994 0.00146147 0.001463 0.00146452 0.00146605 0.00146758 0.00146911 0.00147064 0.00147216 0.00147369 0.00147522 0.00147675 0.00147828 0.0014798 0.00148133 0.00148286 0.00148439 0.00148592 0.00148744 0.00148897 0.0014905 0.00149203 0.00149356 0.00149508 0.00149661 0.00149814 0.00149967 0.0015012 0.00150272 0.00150425 0.00150578 0.00150731 0.00150884 0.00151036 0.00151189 0.00151342 0.00151495 0.00151648 0.001518 0.00151953 0.00152106 0.00152259 0.00152412 0.00152564 0.00152717 0.0015287 0.00153023 0.00153176 0.00153328 0.00153481 0.00153634 0.00153787 0.0015394 0.00154092 0.00154245 0.00154398 0.00154551 0.00154704 0.00154856 0.00155009 0.00155162 0.00155315 0.00155468 0.0015562 0.00155773 0.00155926 0.00156079 0.00156232 0.00156384 0.00156537 0.0015669 +-0.000301617 -0.000287108 -0.000265986 -0.000206905 3.7135E-06 0.000463521 0.000983852 0.00128681 0.00137127 0.00138695 0.0013906 0.00139244 0.00139403 0.00139557 0.00139712 0.00139866 0.0014002 0.00140174 0.00140328 0.00140482 0.00140635 0.00140789 0.00140943 0.00141097 0.00141251 0.00141405 0.00141559 0.00141713 0.00141867 0.00142021 0.00142175 0.00142329 0.00142483 0.00142637 0.00142791 0.00142945 0.00143099 0.00143253 0.00143407 0.00143561 0.00143715 0.00143869 0.00144023 0.00144177 0.00144331 0.00144485 0.00144639 0.00144793 0.00144947 0.00145101 0.00145255 0.00145409 0.00145563 0.00145717 0.00145871 0.00146025 0.00146179 0.00146333 0.00146487 0.00146641 0.00146795 0.00146949 0.00147103 0.00147257 0.00147411 0.00147565 0.00147719 0.00147873 0.00148027 0.00148181 0.00148335 0.00148489 0.00148643 0.00148797 0.00148951 0.00149105 0.00149259 0.00149413 0.00149567 0.00149721 0.00149875 0.00150029 0.00150183 0.00150337 0.00150491 0.00150645 0.00150799 0.00150953 0.00151107 0.00151261 0.00151415 0.00151569 0.00151723 0.00151877 0.00152031 0.00152185 0.00152339 0.00152493 0.00152647 0.00152801 0.00152955 0.00153109 0.00153263 0.00153417 0.00153571 0.00153725 0.00153879 0.00154033 0.00154187 0.00154341 0.00154495 0.00154649 0.00154803 0.00154957 0.00155111 0.00155265 0.00155419 0.00155573 0.00155727 0.00155881 0.00156035 0.00156189 0.00156343 0.00156497 0.00156651 0.00156805 0.00156959 0.00157113 0.00157267 0.00157421 0.00157575 0.00157729 0.00157883 +-0.000303967 -0.000289339 -0.000268034 -0.000208425 3.75516E-06 0.000466083 0.000989575 0.00129566 0.00138141 0.00139735 0.00140105 0.00140291 0.00140451 0.00140607 0.00140762 0.00140917 0.00141072 0.00141227 0.00141383 0.00141538 0.00141693 0.00141848 0.00142003 0.00142159 0.00142314 0.00142469 0.00142624 0.00142779 0.00142935 0.0014309 0.00143245 0.001434 0.00143555 0.00143711 0.00143866 0.00144021 0.00144176 0.00144331 0.00144486 0.00144642 0.00144797 0.00144952 0.00145107 0.00145262 0.00145418 0.00145573 0.00145728 0.00145883 0.00146038 0.00146194 0.00146349 0.00146504 0.00146659 0.00146814 0.0014697 0.00147125 0.0014728 0.00147435 0.0014759 0.00147745 0.00147901 0.00148056 0.00148211 0.00148366 0.00148521 0.00148677 0.00148832 0.00148987 0.00149142 0.00149297 0.00149453 0.00149608 0.00149763 0.00149918 0.00150073 0.00150229 0.00150384 0.00150539 0.00150694 0.00150849 0.00151004 0.0015116 0.00151315 0.0015147 0.00151625 0.0015178 0.00151936 0.00152091 0.00152246 0.00152401 0.00152556 0.00152712 0.00152867 0.00153022 0.00153177 0.00153332 0.00153488 0.00153643 0.00153798 0.00153953 0.00154108 0.00154263 0.00154419 0.00154574 0.00154729 0.00154884 0.00155039 0.00155195 0.0015535 0.00155505 0.0015566 0.00155815 0.00155971 0.00156126 0.00156281 0.00156436 0.00156591 0.00156747 0.00156902 0.00157057 0.00157212 0.00157367 0.00157523 0.00157678 0.00157833 0.00157988 0.00158143 0.00158298 0.00158454 0.00158609 0.00158764 0.00158919 0.00159074 +-0.000306315 -0.000291568 -0.00027008 -0.000209942 3.79697E-06 0.000468632 0.000995269 0.00130448 0.00139153 0.00140773 0.00141148 0.00141336 0.00141497 0.00141654 0.00141811 0.00141967 0.00142124 0.0014228 0.00142436 0.00142593 0.00142749 0.00142906 0.00143062 0.00143218 0.00143375 0.00143531 0.00143688 0.00143844 0.00144 0.00144157 0.00144313 0.00144469 0.00144626 0.00144782 0.00144939 0.00145095 0.00145251 0.00145408 0.00145564 0.00145721 0.00145877 0.00146033 0.0014619 0.00146346 0.00146502 0.00146659 0.00146815 0.00146972 0.00147128 0.00147284 0.00147441 0.00147597 0.00147754 0.0014791 0.00148066 0.00148223 0.00148379 0.00148535 0.00148692 0.00148848 0.00149005 0.00149161 0.00149317 0.00149474 0.0014963 0.00149787 0.00149943 0.00150099 0.00150256 0.00150412 0.00150568 0.00150725 0.00150881 0.00151038 0.00151194 0.0015135 0.00151507 0.00151663 0.0015182 0.00151976 0.00152132 0.00152289 0.00152445 0.00152601 0.00152758 0.00152914 0.00153071 0.00153227 0.00153383 0.0015354 0.00153696 0.00153853 0.00154009 0.00154165 0.00154322 0.00154478 0.00154634 0.00154791 0.00154947 0.00155104 0.0015526 0.00155416 0.00155573 0.00155729 0.00155886 0.00156042 0.00156198 0.00156355 0.00156511 0.00156668 0.00156824 0.0015698 0.00157137 0.00157293 0.00157449 0.00157606 0.00157762 0.00157919 0.00158075 0.00158231 0.00158388 0.00158544 0.00158701 0.00158857 0.00159013 0.0015917 0.00159326 0.00159482 0.00159639 0.00159795 0.00159952 0.00160108 0.00160264 +-0.000308662 -0.000293797 -0.000272125 -0.000211457 3.83893E-06 0.000471169 0.00100093 0.00131327 0.00140164 0.00141811 0.0014219 0.0014238 0.00142543 0.00142701 0.00142859 0.00143016 0.00143174 0.00143331 0.00143489 0.00143647 0.00143804 0.00143962 0.00144119 0.00144277 0.00144434 0.00144592 0.0014475 0.00144907 0.00145065 0.00145222 0.0014538 0.00145537 0.00145695 0.00145853 0.0014601 0.00146168 0.00146325 0.00146483 0.0014664 0.00146798 0.00146956 0.00147113 0.00147271 0.00147428 0.00147586 0.00147744 0.00147901 0.00148059 0.00148216 0.00148374 0.00148531 0.00148689 0.00148847 0.00149004 0.00149162 0.00149319 0.00149477 0.00149634 0.00149792 0.0014995 0.00150107 0.00150265 0.00150422 0.0015058 0.00150738 0.00150895 0.00151053 0.0015121 0.00151368 0.00151525 0.00151683 0.00151841 0.00151998 0.00152156 0.00152313 0.00152471 0.00152628 0.00152786 0.00152944 0.00153101 0.00153259 0.00153416 0.00153574 0.00153731 0.00153889 0.00154047 0.00154204 0.00154362 0.00154519 0.00154677 0.00154835 0.00154992 0.0015515 0.00155307 0.00155465 0.00155622 0.0015578 0.00155938 0.00156095 0.00156253 0.0015641 0.00156568 0.00156725 0.00156883 0.00157041 0.00157198 0.00157356 0.00157513 0.00157671 0.00157829 0.00157986 0.00158144 0.00158301 0.00158459 0.00158616 0.00158774 0.00158932 0.00159089 0.00159247 0.00159404 0.00159562 0.00159719 0.00159877 0.00160035 0.00160192 0.0016035 0.00160507 0.00160665 0.00160822 0.0016098 0.00161138 0.00161295 0.00161453 +-0.000311007 -0.000296024 -0.000274168 -0.00021297 3.88105E-06 0.000473693 0.00100657 0.00132203 0.00141172 0.00142846 0.00143231 0.00143423 0.00143587 0.00143746 0.00143905 0.00144064 0.00144222 0.00144381 0.0014454 0.00144699 0.00144858 0.00145016 0.00145175 0.00145334 0.00145493 0.00145651 0.0014581 0.00145969 0.00146128 0.00146286 0.00146445 0.00146604 0.00146763 0.00146922 0.0014708 0.00147239 0.00147398 0.00147557 0.00147715 0.00147874 0.00148033 0.00148192 0.0014835 0.00148509 0.00148668 0.00148827 0.00148986 0.00149144 0.00149303 0.00149462 0.00149621 0.00149779 0.00149938 0.00150097 0.00150256 0.00150414 0.00150573 0.00150732 0.00150891 0.0015105 0.00151208 0.00151367 0.00151526 0.00151685 0.00151843 0.00152002 0.00152161 0.0015232 0.00152478 0.00152637 0.00152796 0.00152955 0.00153114 0.00153272 0.00153431 0.0015359 0.00153749 0.00153907 0.00154066 0.00154225 0.00154384 0.00154542 0.00154701 0.0015486 0.00155019 0.00155178 0.00155336 0.00155495 0.00155654 0.00155813 0.00155971 0.0015613 0.00156289 0.00156448 0.00156606 0.00156765 0.00156924 0.00157083 0.00157242 0.001574 0.00157559 0.00157718 0.00157877 0.00158035 0.00158194 0.00158353 0.00158512 0.00158671 0.00158829 0.00158988 0.00159147 0.00159306 0.00159464 0.00159623 0.00159782 0.00159941 0.00160099 0.00160258 0.00160417 0.00160576 0.00160735 0.00160893 0.00161052 0.00161211 0.0016137 0.00161528 0.00161687 0.00161846 0.00162005 0.00162163 0.00162322 0.00162481 0.0016264 +-0.000313352 -0.00029825 -0.00027621 -0.00021448 3.92331E-06 0.000476205 0.00101217 0.00133077 0.0014218 0.00143881 0.00144271 0.00144464 0.00144629 0.0014479 0.0014495 0.0014511 0.0014527 0.0014543 0.0014559 0.0014575 0.0014591 0.0014607 0.0014623 0.0014639 0.0014655 0.00146709 0.00146869 0.00147029 0.00147189 0.00147349 0.00147509 0.00147669 0.00147829 0.00147989 0.00148149 0.00148309 0.00148469 0.00148629 0.00148789 0.00148949 0.00149109 0.00149269 0.00149429 0.00149589 0.00149749 0.00149909 0.00150069 0.00150229 0.00150389 0.00150549 0.00150708 0.00150868 0.00151028 0.00151188 0.00151348 0.00151508 0.00151668 0.00151828 0.00151988 0.00152148 0.00152308 0.00152468 0.00152628 0.00152788 0.00152948 0.00153108 0.00153268 0.00153428 0.00153588 0.00153748 0.00153908 0.00154068 0.00154228 0.00154388 0.00154548 0.00154707 0.00154867 0.00155027 0.00155187 0.00155347 0.00155507 0.00155667 0.00155827 0.00155987 0.00156147 0.00156307 0.00156467 0.00156627 0.00156787 0.00156947 0.00157107 0.00157267 0.00157427 0.00157587 0.00157747 0.00157907 0.00158067 0.00158227 0.00158387 0.00158547 0.00158706 0.00158866 0.00159026 0.00159186 0.00159346 0.00159506 0.00159666 0.00159826 0.00159986 0.00160146 0.00160306 0.00160466 0.00160626 0.00160786 0.00160946 0.00161106 0.00161266 0.00161426 0.00161586 0.00161746 0.00161906 0.00162066 0.00162226 0.00162386 0.00162546 0.00162705 0.00162865 0.00163025 0.00163185 0.00163345 0.00163505 0.00163665 0.00163825 +-0.000315696 -0.000300475 -0.000278251 -0.000215989 3.96572E-06 0.000478705 0.00101775 0.00133948 0.00143185 0.00144914 0.00145309 0.00145504 0.0014567 0.00145832 0.00145994 0.00146155 0.00146316 0.00146477 0.00146638 0.00146799 0.0014696 0.00147122 0.00147283 0.00147444 0.00147605 0.00147766 0.00147927 0.00148088 0.0014825 0.00148411 0.00148572 0.00148733 0.00148894 0.00149055 0.00149217 0.00149378 0.00149539 0.001497 0.00149861 0.00150022 0.00150183 0.00150345 0.00150506 0.00150667 0.00150828 0.00150989 0.0015115 0.00151311 0.00151473 0.00151634 0.00151795 0.00151956 0.00152117 0.00152278 0.0015244 0.00152601 0.00152762 0.00152923 0.00153084 0.00153245 0.00153406 0.00153568 0.00153729 0.0015389 0.00154051 0.00154212 0.00154373 0.00154534 0.00154696 0.00154857 0.00155018 0.00155179 0.0015534 0.00155501 0.00155662 0.00155824 0.00155985 0.00156146 0.00156307 0.00156468 0.00156629 0.00156791 0.00156952 0.00157113 0.00157274 0.00157435 0.00157596 0.00157757 0.00157919 0.0015808 0.00158241 0.00158402 0.00158563 0.00158724 0.00158885 0.00159047 0.00159208 0.00159369 0.0015953 0.00159691 0.00159852 0.00160014 0.00160175 0.00160336 0.00160497 0.00160658 0.00160819 0.0016098 0.00161142 0.00161303 0.00161464 0.00161625 0.00161786 0.00161947 0.00162108 0.0016227 0.00162431 0.00162592 0.00162753 0.00162914 0.00163075 0.00163237 0.00163398 0.00163559 0.0016372 0.00163881 0.00164042 0.00164203 0.00164365 0.00164526 0.00164687 0.00164848 0.00165009 +-0.000318038 -0.000302699 -0.00028029 -0.000217495 4.00828E-06 0.000481193 0.0010233 0.00134816 0.00144189 0.00145945 0.00146346 0.00146543 0.0014671 0.00146873 0.00147036 0.00147198 0.0014736 0.00147523 0.00147685 0.00147848 0.0014801 0.00148172 0.00148335 0.00148497 0.00148659 0.00148822 0.00148984 0.00149146 0.00149309 0.00149471 0.00149633 0.00149796 0.00149958 0.0015012 0.00150283 0.00150445 0.00150607 0.0015077 0.00150932 0.00151094 0.00151257 0.00151419 0.00151581 0.00151744 0.00151906 0.00152068 0.00152231 0.00152393 0.00152555 0.00152718 0.0015288 0.00153042 0.00153205 0.00153367 0.00153529 0.00153692 0.00153854 0.00154016 0.00154179 0.00154341 0.00154503 0.00154666 0.00154828 0.0015499 0.00155153 0.00155315 0.00155477 0.0015564 0.00155802 0.00155964 0.00156127 0.00156289 0.00156451 0.00156614 0.00156776 0.00156938 0.00157101 0.00157263 0.00157425 0.00157588 0.0015775 0.00157912 0.00158075 0.00158237 0.00158399 0.00158562 0.00158724 0.00158886 0.00159049 0.00159211 0.00159373 0.00159536 0.00159698 0.0015986 0.00160023 0.00160185 0.00160347 0.0016051 0.00160672 0.00160835 0.00160997 0.00161159 0.00161322 0.00161484 0.00161646 0.00161809 0.00161971 0.00162133 0.00162296 0.00162458 0.0016262 0.00162783 0.00162945 0.00163107 0.0016327 0.00163432 0.00163594 0.00163757 0.00163919 0.00164081 0.00164244 0.00164406 0.00164568 0.00164731 0.00164893 0.00165055 0.00165218 0.0016538 0.00165542 0.00165705 0.00165867 0.00166029 0.00166192 +-0.000320379 -0.000304922 -0.000282328 -0.000218999 4.05099E-06 0.000483669 0.00102882 0.00135681 0.00145191 0.00146975 0.00147381 0.0014758 0.00147749 0.00147913 0.00148077 0.0014824 0.00148404 0.00148567 0.00148731 0.00148894 0.00149058 0.00149221 0.00149385 0.00149548 0.00149712 0.00149876 0.00150039 0.00150203 0.00150366 0.0015053 0.00150693 0.00150857 0.0015102 0.00151184 0.00151347 0.00151511 0.00151674 0.00151838 0.00152001 0.00152165 0.00152328 0.00152492 0.00152655 0.00152819 0.00152983 0.00153146 0.0015331 0.00153473 0.00153637 0.001538 0.00153964 0.00154127 0.00154291 0.00154454 0.00154618 0.00154781 0.00154945 0.00155108 0.00155272 0.00155435 0.00155599 0.00155762 0.00155926 0.00156089 0.00156253 0.00156417 0.0015658 0.00156744 0.00156907 0.00157071 0.00157234 0.00157398 0.00157561 0.00157725 0.00157888 0.00158052 0.00158215 0.00158379 0.00158542 0.00158706 0.00158869 0.00159033 0.00159196 0.0015936 0.00159523 0.00159687 0.00159851 0.00160014 0.00160178 0.00160341 0.00160505 0.00160668 0.00160832 0.00160995 0.00161159 0.00161322 0.00161486 0.00161649 0.00161813 0.00161976 0.0016214 0.00162303 0.00162467 0.0016263 0.00162794 0.00162957 0.00163121 0.00163285 0.00163448 0.00163612 0.00163775 0.00163939 0.00164102 0.00164266 0.00164429 0.00164593 0.00164756 0.0016492 0.00165083 0.00165247 0.0016541 0.00165574 0.00165737 0.00165901 0.00166064 0.00166228 0.00166392 0.00166555 0.00166719 0.00166882 0.00167046 0.00167209 0.00167373 +-0.000322719 -0.000307143 -0.000284364 -0.000220501 4.09385E-06 0.000486133 0.00103431 0.00136543 0.00146191 0.00148004 0.00148415 0.00148616 0.00148786 0.00148952 0.00149116 0.00149281 0.00149446 0.00149611 0.00149775 0.0014994 0.00150105 0.00150269 0.00150434 0.00150599 0.00150763 0.00150928 0.00151093 0.00151258 0.00151422 0.00151587 0.00151752 0.00151916 0.00152081 0.00152246 0.00152411 0.00152575 0.0015274 0.00152905 0.00153069 0.00153234 0.00153399 0.00153564 0.00153728 0.00153893 0.00154058 0.00154222 0.00154387 0.00154552 0.00154717 0.00154881 0.00155046 0.00155211 0.00155375 0.0015554 0.00155705 0.0015587 0.00156034 0.00156199 0.00156364 0.00156528 0.00156693 0.00156858 0.00157022 0.00157187 0.00157352 0.00157517 0.00157681 0.00157846 0.00158011 0.00158175 0.0015834 0.00158505 0.0015867 0.00158834 0.00158999 0.00159164 0.00159328 0.00159493 0.00159658 0.00159823 0.00159987 0.00160152 0.00160317 0.00160481 0.00160646 0.00160811 0.00160976 0.0016114 0.00161305 0.0016147 0.00161634 0.00161799 0.00161964 0.00162128 0.00162293 0.00162458 0.00162623 0.00162787 0.00162952 0.00163117 0.00163281 0.00163446 0.00163611 0.00163776 0.0016394 0.00164105 0.0016427 0.00164434 0.00164599 0.00164764 0.00164929 0.00165093 0.00165258 0.00165423 0.00165587 0.00165752 0.00165917 0.00166082 0.00166246 0.00166411 0.00166576 0.0016674 0.00166905 0.0016707 0.00167234 0.00167399 0.00167564 0.00167729 0.00167893 0.00168058 0.00168223 0.00168387 0.00168552 +-0.000325058 -0.000309364 -0.000286399 -0.000222 4.13685E-06 0.000488586 0.00103978 0.00137403 0.00147189 0.00149031 0.00149448 0.00149651 0.00149822 0.00149989 0.00150155 0.00150321 0.00150486 0.00150652 0.00150818 0.00150984 0.0015115 0.00151316 0.00151482 0.00151648 0.00151814 0.0015198 0.00152145 0.00152311 0.00152477 0.00152643 0.00152809 0.00152975 0.00153141 0.00153307 0.00153473 0.00153638 0.00153804 0.0015397 0.00154136 0.00154302 0.00154468 0.00154634 0.001548 0.00154966 0.00155132 0.00155297 0.00155463 0.00155629 0.00155795 0.00155961 0.00156127 0.00156293 0.00156459 0.00156625 0.0015679 0.00156956 0.00157122 0.00157288 0.00157454 0.0015762 0.00157786 0.00157952 0.00158118 0.00158284 0.00158449 0.00158615 0.00158781 0.00158947 0.00159113 0.00159279 0.00159445 0.00159611 0.00159777 0.00159942 0.00160108 0.00160274 0.0016044 0.00160606 0.00160772 0.00160938 0.00161104 0.0016127 0.00161436 0.00161601 0.00161767 0.00161933 0.00162099 0.00162265 0.00162431 0.00162597 0.00162763 0.00162929 0.00163094 0.0016326 0.00163426 0.00163592 0.00163758 0.00163924 0.0016409 0.00164256 0.00164422 0.00164588 0.00164753 0.00164919 0.00165085 0.00165251 0.00165417 0.00165583 0.00165749 0.00165915 0.00166081 0.00166246 0.00166412 0.00166578 0.00166744 0.0016691 0.00167076 0.00167242 0.00167408 0.00167574 0.00167739 0.00167905 0.00168071 0.00168237 0.00168403 0.00168569 0.00168735 0.00168901 0.00169067 0.00169233 0.00169398 0.00169564 0.0016973 +-0.000327396 -0.000311583 -0.000288433 -0.000223498 4.18E-06 0.000491026 0.00104521 0.00138259 0.00148186 0.00150058 0.0015048 0.00150684 0.00150857 0.00151024 0.00151192 0.00151359 0.00151526 0.00151693 0.0015186 0.00152027 0.00152194 0.00152361 0.00152528 0.00152695 0.00152862 0.0015303 0.00153197 0.00153364 0.00153531 0.00153698 0.00153865 0.00154032 0.00154199 0.00154366 0.00154533 0.001547 0.00154867 0.00155034 0.00155202 0.00155369 0.00155536 0.00155703 0.0015587 0.00156037 0.00156204 0.00156371 0.00156538 0.00156705 0.00156872 0.00157039 0.00157206 0.00157374 0.00157541 0.00157708 0.00157875 0.00158042 0.00158209 0.00158376 0.00158543 0.0015871 0.00158877 0.00159044 0.00159211 0.00159378 0.00159546 0.00159713 0.0015988 0.00160047 0.00160214 0.00160381 0.00160548 0.00160715 0.00160882 0.00161049 0.00161216 0.00161383 0.0016155 0.00161718 0.00161885 0.00162052 0.00162219 0.00162386 0.00162553 0.0016272 0.00162887 0.00163054 0.00163221 0.00163388 0.00163555 0.00163722 0.0016389 0.00164057 0.00164224 0.00164391 0.00164558 0.00164725 0.00164892 0.00165059 0.00165226 0.00165393 0.0016556 0.00165727 0.00165894 0.00166062 0.00166229 0.00166396 0.00166563 0.0016673 0.00166897 0.00167064 0.00167231 0.00167398 0.00167565 0.00167732 0.00167899 0.00168067 0.00168234 0.00168401 0.00168568 0.00168735 0.00168902 0.00169069 0.00169236 0.00169403 0.0016957 0.00169737 0.00169904 0.00170071 0.00170239 0.00170406 0.00170573 0.0017074 0.00170907 +-0.000329732 -0.000313801 -0.000290466 -0.000224993 4.22329E-06 0.000493456 0.00105062 0.00139113 0.00149181 0.00151082 0.0015151 0.00151716 0.0015189 0.00152059 0.00152227 0.00152396 0.00152564 0.00152732 0.001529 0.00153069 0.00153237 0.00153405 0.00153573 0.00153742 0.0015391 0.00154078 0.00154246 0.00154415 0.00154583 0.00154751 0.00154919 0.00155088 0.00155256 0.00155424 0.00155593 0.00155761 0.00155929 0.00156097 0.00156266 0.00156434 0.00156602 0.0015677 0.00156939 0.00157107 0.00157275 0.00157443 0.00157612 0.0015778 0.00157948 0.00158116 0.00158285 0.00158453 0.00158621 0.00158789 0.00158958 0.00159126 0.00159294 0.00159462 0.00159631 0.00159799 0.00159967 0.00160136 0.00160304 0.00160472 0.0016064 0.00160809 0.00160977 0.00161145 0.00161313 0.00161482 0.0016165 0.00161818 0.00161986 0.00162155 0.00162323 0.00162491 0.00162659 0.00162828 0.00162996 0.00163164 0.00163332 0.00163501 0.00163669 0.00163837 0.00164005 0.00164174 0.00164342 0.0016451 0.00164679 0.00164847 0.00165015 0.00165183 0.00165352 0.0016552 0.00165688 0.00165856 0.00166025 0.00166193 0.00166361 0.00166529 0.00166698 0.00166866 0.00167034 0.00167202 0.00167371 0.00167539 0.00167707 0.00167875 0.00168044 0.00168212 0.0016838 0.00168548 0.00168717 0.00168885 0.00169053 0.00169222 0.0016939 0.00169558 0.00169726 0.00169895 0.00170063 0.00170231 0.00170399 0.00170568 0.00170736 0.00170904 0.00171072 0.00171241 0.00171409 0.00171577 0.00171745 0.00171914 0.00172082 +-0.000332068 -0.000316018 -0.000292497 -0.000226486 4.26673E-06 0.000495874 0.001056 0.00139964 0.00150175 0.00152105 0.00152539 0.00152747 0.00152922 0.00153092 0.00153262 0.00153431 0.00153601 0.0015377 0.00153939 0.00154109 0.00154278 0.00154448 0.00154617 0.00154787 0.00154956 0.00155125 0.00155295 0.00155464 0.00155634 0.00155803 0.00155973 0.00156142 0.00156312 0.00156481 0.0015665 0.0015682 0.00156989 0.00157159 0.00157328 0.00157498 0.00157667 0.00157837 0.00158006 0.00158175 0.00158345 0.00158514 0.00158684 0.00158853 0.00159023 0.00159192 0.00159362 0.00159531 0.001597 0.0015987 0.00160039 0.00160209 0.00160378 0.00160548 0.00160717 0.00160886 0.00161056 0.00161225 0.00161395 0.00161564 0.00161734 0.00161903 0.00162073 0.00162242 0.00162411 0.00162581 0.0016275 0.0016292 0.00163089 0.00163259 0.00163428 0.00163598 0.00163767 0.00163936 0.00164106 0.00164275 0.00164445 0.00164614 0.00164784 0.00164953 0.00165122 0.00165292 0.00165461 0.00165631 0.001658 0.0016597 0.00166139 0.00166309 0.00166478 0.00166647 0.00166817 0.00166986 0.00167156 0.00167325 0.00167495 0.00167664 0.00167834 0.00168003 0.00168172 0.00168342 0.00168511 0.00168681 0.0016885 0.0016902 0.00169189 0.00169358 0.00169528 0.00169697 0.00169867 0.00170036 0.00170206 0.00170375 0.00170545 0.00170714 0.00170883 0.00171053 0.00171222 0.00171392 0.00171561 0.00171731 0.001719 0.0017207 0.00172239 0.00172408 0.00172578 0.00172747 0.00172917 0.00173086 0.00173256 +-0.000334402 -0.000318234 -0.000294526 -0.000227977 4.31031E-06 0.00049828 0.00106136 0.00140812 0.00151166 0.00153127 0.00153566 0.00153776 0.00153952 0.00154124 0.00154295 0.00154465 0.00154636 0.00154807 0.00154977 0.00155148 0.00155318 0.00155489 0.0015566 0.0015583 0.00156001 0.00156171 0.00156342 0.00156513 0.00156683 0.00156854 0.00157025 0.00157195 0.00157366 0.00157536 0.00157707 0.00157878 0.00158048 0.00158219 0.0015839 0.0015856 0.00158731 0.00158901 0.00159072 0.00159243 0.00159413 0.00159584 0.00159755 0.00159925 0.00160096 0.00160266 0.00160437 0.00160608 0.00160778 0.00160949 0.00161119 0.0016129 0.00161461 0.00161631 0.00161802 0.00161973 0.00162143 0.00162314 0.00162484 0.00162655 0.00162826 0.00162996 0.00163167 0.00163338 0.00163508 0.00163679 0.00163849 0.0016402 0.00164191 0.00164361 0.00164532 0.00164702 0.00164873 0.00165044 0.00165214 0.00165385 0.00165556 0.00165726 0.00165897 0.00166067 0.00166238 0.00166409 0.00166579 0.0016675 0.00166921 0.00167091 0.00167262 0.00167432 0.00167603 0.00167774 0.00167944 0.00168115 0.00168286 0.00168456 0.00168627 0.00168797 0.00168968 0.00169139 0.00169309 0.0016948 0.0016965 0.00169821 0.00169992 0.00170162 0.00170333 0.00170504 0.00170674 0.00170845 0.00171015 0.00171186 0.00171357 0.00171527 0.00171698 0.00171869 0.00172039 0.0017221 0.0017238 0.00172551 0.00172722 0.00172892 0.00173063 0.00173233 0.00173404 0.00173575 0.00173745 0.00173916 0.00174087 0.00174257 0.00174428 +-0.000336736 -0.000320449 -0.000296554 -0.000229466 4.35404E-06 0.000500676 0.00106668 0.00141658 0.00152156 0.00154148 0.00154593 0.00154804 0.00154982 0.00155154 0.00155326 0.00155498 0.0015567 0.00155842 0.00156014 0.00156185 0.00156357 0.00156529 0.00156701 0.00156873 0.00157044 0.00157216 0.00157388 0.0015756 0.00157732 0.00157903 0.00158075 0.00158247 0.00158419 0.00158591 0.00158762 0.00158934 0.00159106 0.00159278 0.0015945 0.00159621 0.00159793 0.00159965 0.00160137 0.00160309 0.0016048 0.00160652 0.00160824 0.00160996 0.00161168 0.00161339 0.00161511 0.00161683 0.00161855 0.00162027 0.00162198 0.0016237 0.00162542 0.00162714 0.00162886 0.00163057 0.00163229 0.00163401 0.00163573 0.00163745 0.00163916 0.00164088 0.0016426 0.00164432 0.00164604 0.00164775 0.00164947 0.00165119 0.00165291 0.00165462 0.00165634 0.00165806 0.00165978 0.0016615 0.00166321 0.00166493 0.00166665 0.00166837 0.00167009 0.0016718 0.00167352 0.00167524 0.00167696 0.00167868 0.00168039 0.00168211 0.00168383 0.00168555 0.00168727 0.00168898 0.0016907 0.00169242 0.00169414 0.00169586 0.00169757 0.00169929 0.00170101 0.00170273 0.00170445 0.00170616 0.00170788 0.0017096 0.00171132 0.00171304 0.00171475 0.00171647 0.00171819 0.00171991 0.00172163 0.00172334 0.00172506 0.00172678 0.0017285 0.00173022 0.00173193 0.00173365 0.00173537 0.00173709 0.00173881 0.00174052 0.00174224 0.00174396 0.00174568 0.0017474 0.00174911 0.00175083 0.00175255 0.00175427 0.00175599 +-0.000339068 -0.000322662 -0.000298581 -0.000230952 4.39791E-06 0.00050306 0.00107198 0.001425 0.00153145 0.00155167 0.00155618 0.00155831 0.0015601 0.00156184 0.00156357 0.0015653 0.00156703 0.00156876 0.00157049 0.00157222 0.00157395 0.00157568 0.00157741 0.00157914 0.00158087 0.0015826 0.00158433 0.00158605 0.00158778 0.00158951 0.00159124 0.00159297 0.0015947 0.00159643 0.00159816 0.00159989 0.00160162 0.00160335 0.00160508 0.00160681 0.00160854 0.00161027 0.001612 0.00161373 0.00161546 0.00161719 0.00161892 0.00162065 0.00162238 0.00162411 0.00162584 0.00162757 0.0016293 0.00163103 0.00163276 0.00163449 0.00163622 0.00163795 0.00163968 0.00164141 0.00164314 0.00164487 0.0016466 0.00164833 0.00165006 0.00165179 0.00165352 0.00165525 0.00165697 0.0016587 0.00166043 0.00166216 0.00166389 0.00166562 0.00166735 0.00166908 0.00167081 0.00167254 0.00167427 0.001676 0.00167773 0.00167946 0.00168119 0.00168292 0.00168465 0.00168638 0.00168811 0.00168984 0.00169157 0.0016933 0.00169503 0.00169676 0.00169849 0.00170022 0.00170195 0.00170368 0.00170541 0.00170714 0.00170887 0.0017106 0.00171233 0.00171406 0.00171579 0.00171752 0.00171925 0.00172098 0.00172271 0.00172444 0.00172616 0.00172789 0.00172962 0.00173135 0.00173308 0.00173481 0.00173654 0.00173827 0.00174 0.00174173 0.00174346 0.00174519 0.00174692 0.00174865 0.00175038 0.00175211 0.00175384 0.00175557 0.0017573 0.00175903 0.00176076 0.00176249 0.00176422 0.00176595 0.00176768 +-0.000341399 -0.000324875 -0.000300607 -0.000232437 4.44191E-06 0.000505433 0.00107726 0.0014334 0.00154131 0.00156185 0.00156641 0.00156856 0.00157037 0.00157212 0.00157386 0.0015756 0.00157734 0.00157908 0.00158083 0.00158257 0.00158431 0.00158605 0.00158779 0.00158953 0.00159127 0.00159302 0.00159476 0.0015965 0.00159824 0.00159998 0.00160172 0.00160347 0.00160521 0.00160695 0.00160869 0.00161043 0.00161217 0.00161391 0.00161566 0.0016174 0.00161914 0.00162088 0.00162262 0.00162436 0.0016261 0.00162785 0.00162959 0.00163133 0.00163307 0.00163481 0.00163655 0.0016383 0.00164004 0.00164178 0.00164352 0.00164526 0.001647 0.00164874 0.00165049 0.00165223 0.00165397 0.00165571 0.00165745 0.00165919 0.00166093 0.00166268 0.00166442 0.00166616 0.0016679 0.00166964 0.00167138 0.00167313 0.00167487 0.00167661 0.00167835 0.00168009 0.00168183 0.00168357 0.00168532 0.00168706 0.0016888 0.00169054 0.00169228 0.00169402 0.00169577 0.00169751 0.00169925 0.00170099 0.00170273 0.00170447 0.00170621 0.00170796 0.0017097 0.00171144 0.00171318 0.00171492 0.00171666 0.0017184 0.00172015 0.00172189 0.00172363 0.00172537 0.00172711 0.00172885 0.0017306 0.00173234 0.00173408 0.00173582 0.00173756 0.0017393 0.00174104 0.00174279 0.00174453 0.00174627 0.00174801 0.00174975 0.00175149 0.00175324 0.00175498 0.00175672 0.00175846 0.0017602 0.00176194 0.00176368 0.00176543 0.00176717 0.00176891 0.00177065 0.00177239 0.00177413 0.00177587 0.00177762 0.00177936 +-0.000343729 -0.000327086 -0.000302631 -0.000233919 4.48606E-06 0.000507795 0.0010825 0.00144177 0.00155116 0.00157201 0.00157663 0.00157881 0.00158062 0.00158238 0.00158414 0.00158589 0.00158764 0.0015894 0.00159115 0.0015929 0.00159466 0.00159641 0.00159816 0.00159992 0.00160167 0.00160342 0.00160518 0.00160693 0.00160868 0.00161044 0.00161219 0.00161394 0.0016157 0.00161745 0.0016192 0.00162096 0.00162271 0.00162446 0.00162622 0.00162797 0.00162972 0.00163148 0.00163323 0.00163498 0.00163674 0.00163849 0.00164024 0.001642 0.00164375 0.0016455 0.00164725 0.00164901 0.00165076 0.00165251 0.00165427 0.00165602 0.00165777 0.00165953 0.00166128 0.00166303 0.00166479 0.00166654 0.00166829 0.00167005 0.0016718 0.00167355 0.00167531 0.00167706 0.00167881 0.00168057 0.00168232 0.00168407 0.00168583 0.00168758 0.00168933 0.00169109 0.00169284 0.00169459 0.00169635 0.0016981 0.00169985 0.00170161 0.00170336 0.00170511 0.00170687 0.00170862 0.00171037 0.00171213 0.00171388 0.00171563 0.00171739 0.00171914 0.00172089 0.00172265 0.0017244 0.00172615 0.0017279 0.00172966 0.00173141 0.00173316 0.00173492 0.00173667 0.00173842 0.00174018 0.00174193 0.00174368 0.00174544 0.00174719 0.00174894 0.0017507 0.00175245 0.0017542 0.00175596 0.00175771 0.00175946 0.00176122 0.00176297 0.00176472 0.00176648 0.00176823 0.00176998 0.00177174 0.00177349 0.00177524 0.001777 0.00177875 0.0017805 0.00178226 0.00178401 0.00178576 0.00178752 0.00178927 0.00179102 +-0.000346058 -0.000329296 -0.000304654 -0.000235399 4.53036E-06 0.000510146 0.00108772 0.00145011 0.00156099 0.00158216 0.00158684 0.00158904 0.00159086 0.00159264 0.0015944 0.00159617 0.00159793 0.0015997 0.00160146 0.00160323 0.00160499 0.00160676 0.00160852 0.00161029 0.00161205 0.00161382 0.00161558 0.00161735 0.00161911 0.00162088 0.00162264 0.00162441 0.00162617 0.00162794 0.0016297 0.00163147 0.00163323 0.001635 0.00163676 0.00163853 0.00164029 0.00164206 0.00164382 0.00164559 0.00164735 0.00164912 0.00165088 0.00165265 0.00165441 0.00165618 0.00165794 0.00165971 0.00166147 0.00166324 0.001665 0.00166677 0.00166853 0.0016703 0.00167206 0.00167383 0.00167559 0.00167736 0.00167912 0.00168089 0.00168265 0.00168442 0.00168618 0.00168795 0.00168971 0.00169148 0.00169324 0.00169501 0.00169677 0.00169854 0.0017003 0.00170207 0.00170383 0.0017056 0.00170736 0.00170913 0.00171089 0.00171266 0.00171442 0.00171619 0.00171795 0.00171972 0.00172148 0.00172325 0.00172501 0.00172678 0.00172854 0.00173031 0.00173207 0.00173384 0.0017356 0.00173737 0.00173913 0.0017409 0.00174266 0.00174443 0.00174619 0.00174796 0.00174972 0.00175149 0.00175325 0.00175502 0.00175678 0.00175855 0.00176031 0.00176208 0.00176384 0.00176561 0.00176737 0.00176914 0.0017709 0.00177267 0.00177443 0.0017762 0.00177796 0.00177973 0.00178149 0.00178326 0.00178502 0.00178679 0.00178855 0.00179032 0.00179208 0.00179385 0.00179561 0.00179738 0.00179914 0.00180091 0.00180267 +-0.000348386 -0.000331505 -0.000306676 -0.000236877 4.57479E-06 0.000512487 0.00109292 0.00145843 0.00157081 0.0015923 0.00159704 0.00159925 0.00160109 0.00160288 0.00160465 0.00160643 0.00160821 0.00160999 0.00161176 0.00161354 0.00161532 0.00161709 0.00161887 0.00162065 0.00162242 0.0016242 0.00162598 0.00162775 0.00162953 0.00163131 0.00163308 0.00163486 0.00163664 0.00163841 0.00164019 0.00164197 0.00164374 0.00164552 0.0016473 0.00164907 0.00165085 0.00165263 0.0016544 0.00165618 0.00165796 0.00165973 0.00166151 0.00166329 0.00166506 0.00166684 0.00166862 0.00167039 0.00167217 0.00167395 0.00167572 0.0016775 0.00167928 0.00168105 0.00168283 0.00168461 0.00168638 0.00168816 0.00168994 0.00169171 0.00169349 0.00169527 0.00169704 0.00169882 0.0017006 0.00170237 0.00170415 0.00170593 0.0017077 0.00170948 0.00171126 0.00171304 0.00171481 0.00171659 0.00171837 0.00172014 0.00172192 0.0017237 0.00172547 0.00172725 0.00172903 0.0017308 0.00173258 0.00173436 0.00173613 0.00173791 0.00173969 0.00174146 0.00174324 0.00174502 0.00174679 0.00174857 0.00175035 0.00175212 0.0017539 0.00175568 0.00175745 0.00175923 0.00176101 0.00176278 0.00176456 0.00176634 0.00176811 0.00176989 0.00177167 0.00177344 0.00177522 0.001777 0.00177877 0.00178055 0.00178233 0.0017841 0.00178588 0.00178766 0.00178943 0.00179121 0.00179299 0.00179476 0.00179654 0.00179832 0.00180009 0.00180187 0.00180365 0.00180542 0.0018072 0.00180898 0.00181075 0.00181253 0.00181431 +-0.000350712 -0.000333713 -0.000308696 -0.000238353 4.61936E-06 0.000514817 0.00109809 0.00146671 0.0015806 0.00160242 0.00160723 0.00160945 0.00161131 0.0016131 0.00161489 0.00161668 0.00161847 0.00162026 0.00162205 0.00162384 0.00162563 0.00162741 0.0016292 0.00163099 0.00163278 0.00163457 0.00163636 0.00163814 0.00163993 0.00164172 0.00164351 0.0016453 0.00164709 0.00164887 0.00165066 0.00165245 0.00165424 0.00165603 0.00165782 0.00165961 0.00166139 0.00166318 0.00166497 0.00166676 0.00166855 0.00167034 0.00167212 0.00167391 0.0016757 0.00167749 0.00167928 0.00168107 0.00168286 0.00168464 0.00168643 0.00168822 0.00169001 0.0016918 0.00169359 0.00169537 0.00169716 0.00169895 0.00170074 0.00170253 0.00170432 0.0017061 0.00170789 0.00170968 0.00171147 0.00171326 0.00171505 0.00171684 0.00171862 0.00172041 0.0017222 0.00172399 0.00172578 0.00172757 0.00172935 0.00173114 0.00173293 0.00173472 0.00173651 0.0017383 0.00174008 0.00174187 0.00174366 0.00174545 0.00174724 0.00174903 0.00175082 0.0017526 0.00175439 0.00175618 0.00175797 0.00175976 0.00176155 0.00176333 0.00176512 0.00176691 0.0017687 0.00177049 0.00177228 0.00177407 0.00177585 0.00177764 0.00177943 0.00178122 0.00178301 0.0017848 0.00178658 0.00178837 0.00179016 0.00179195 0.00179374 0.00179553 0.00179731 0.0017991 0.00180089 0.00180268 0.00180447 0.00180626 0.00180805 0.00180983 0.00181162 0.00181341 0.0018152 0.00181699 0.00181878 0.00182056 0.00182235 0.00182414 0.00182593 +-0.000353038 -0.00033592 -0.000310715 -0.000239826 4.66407E-06 0.000517136 0.00110323 0.00147497 0.00159038 0.00161253 0.0016174 0.00161965 0.00162151 0.00162332 0.00162512 0.00162692 0.00162872 0.00163052 0.00163232 0.00163412 0.00163592 0.00163772 0.00163952 0.00164132 0.00164312 0.00164492 0.00164672 0.00164852 0.00165032 0.00165212 0.00165392 0.00165572 0.00165752 0.00165932 0.00166112 0.00166292 0.00166472 0.00166652 0.00166832 0.00167012 0.00167192 0.00167373 0.00167553 0.00167733 0.00167913 0.00168093 0.00168273 0.00168453 0.00168633 0.00168813 0.00168993 0.00169173 0.00169353 0.00169533 0.00169713 0.00169893 0.00170073 0.00170253 0.00170433 0.00170613 0.00170793 0.00170973 0.00171153 0.00171333 0.00171513 0.00171693 0.00171873 0.00172053 0.00172233 0.00172413 0.00172593 0.00172773 0.00172953 0.00173133 0.00173313 0.00173493 0.00173673 0.00173853 0.00174033 0.00174213 0.00174393 0.00174573 0.00174753 0.00174933 0.00175113 0.00175293 0.00175473 0.00175653 0.00175833 0.00176013 0.00176193 0.00176373 0.00176553 0.00176733 0.00176913 0.00177093 0.00177273 0.00177453 0.00177633 0.00177813 0.00177993 0.00178173 0.00178353 0.00178533 0.00178713 0.00178893 0.00179073 0.00179253 0.00179433 0.00179613 0.00179793 0.00179973 0.00180153 0.00180333 0.00180513 0.00180693 0.00180873 0.00181053 0.00181234 0.00181414 0.00181594 0.00181774 0.00181954 0.00182134 0.00182314 0.00182494 0.00182674 0.00182854 0.00183034 0.00183214 0.00183394 0.00183574 0.00183754 +-0.000355363 -0.000338126 -0.000312732 -0.000241298 4.70891E-06 0.000519444 0.00110835 0.0014832 0.00160015 0.00162263 0.00162756 0.00162982 0.0016317 0.00163352 0.00163534 0.00163715 0.00163896 0.00164077 0.00164258 0.00164439 0.00164621 0.00164802 0.00164983 0.00165164 0.00165345 0.00165527 0.00165708 0.00165889 0.0016607 0.00166251 0.00166432 0.00166614 0.00166795 0.00166976 0.00167157 0.00167338 0.0016752 0.00167701 0.00167882 0.00168063 0.00168244 0.00168425 0.00168607 0.00168788 0.00168969 0.0016915 0.00169331 0.00169513 0.00169694 0.00169875 0.00170056 0.00170237 0.00170418 0.001706 0.00170781 0.00170962 0.00171143 0.00171324 0.00171506 0.00171687 0.00171868 0.00172049 0.0017223 0.00172411 0.00172593 0.00172774 0.00172955 0.00173136 0.00173317 0.00173499 0.0017368 0.00173861 0.00174042 0.00174223 0.00174404 0.00174586 0.00174767 0.00174948 0.00175129 0.0017531 0.00175492 0.00175673 0.00175854 0.00176035 0.00176216 0.00176397 0.00176579 0.0017676 0.00176941 0.00177122 0.00177303 0.00177485 0.00177666 0.00177847 0.00178028 0.00178209 0.0017839 0.00178572 0.00178753 0.00178934 0.00179115 0.00179296 0.00179478 0.00179659 0.0017984 0.00180021 0.00180202 0.00180383 0.00180565 0.00180746 0.00180927 0.00181108 0.00181289 0.00181471 0.00181652 0.00181833 0.00182014 0.00182195 0.00182376 0.00182558 0.00182739 0.0018292 0.00183101 0.00183282 0.00183464 0.00183645 0.00183826 0.00184007 0.00184188 0.00184369 0.00184551 0.00184732 0.00184913 +-0.000357686 -0.000340331 -0.000314749 -0.000242767 4.7539E-06 0.000521742 0.00111344 0.0014914 0.00160989 0.00163271 0.0016377 0.00163999 0.00164188 0.00164371 0.00164554 0.00164736 0.00164918 0.00165101 0.00165283 0.00165465 0.00165648 0.0016583 0.00166012 0.00166195 0.00166377 0.0016656 0.00166742 0.00166924 0.00167107 0.00167289 0.00167471 0.00167654 0.00167836 0.00168018 0.00168201 0.00168383 0.00168565 0.00168748 0.0016893 0.00169112 0.00169295 0.00169477 0.00169659 0.00169842 0.00170024 0.00170207 0.00170389 0.00170571 0.00170754 0.00170936 0.00171118 0.00171301 0.00171483 0.00171665 0.00171848 0.0017203 0.00172212 0.00172395 0.00172577 0.00172759 0.00172942 0.00173124 0.00173306 0.00173489 0.00173671 0.00173853 0.00174036 0.00174218 0.00174401 0.00174583 0.00174765 0.00174948 0.0017513 0.00175312 0.00175495 0.00175677 0.00175859 0.00176042 0.00176224 0.00176406 0.00176589 0.00176771 0.00176953 0.00177136 0.00177318 0.001775 0.00177683 0.00177865 0.00178048 0.0017823 0.00178412 0.00178595 0.00178777 0.00178959 0.00179142 0.00179324 0.00179506 0.00179689 0.00179871 0.00180053 0.00180236 0.00180418 0.001806 0.00180783 0.00180965 0.00181147 0.0018133 0.00181512 0.00181695 0.00181877 0.00182059 0.00182242 0.00182424 0.00182606 0.00182789 0.00182971 0.00183153 0.00183336 0.00183518 0.001837 0.00183883 0.00184065 0.00184247 0.0018443 0.00184612 0.00184794 0.00184977 0.00185159 0.00185341 0.00185524 0.00185706 0.00185889 0.00186071 +-0.000360008 -0.000342534 -0.000316763 -0.000244234 4.79902E-06 0.00052403 0.00111851 0.00149957 0.00161962 0.00164278 0.00164784 0.00165014 0.00165204 0.00165389 0.00165573 0.00165756 0.0016594 0.00166123 0.00166307 0.0016649 0.00166674 0.00166857 0.00167041 0.00167224 0.00167408 0.00167591 0.00167775 0.00167958 0.00168142 0.00168325 0.00168509 0.00168692 0.00168876 0.00169059 0.00169243 0.00169426 0.0016961 0.00169793 0.00169977 0.0017016 0.00170344 0.00170527 0.00170711 0.00170895 0.00171078 0.00171262 0.00171445 0.00171629 0.00171812 0.00171996 0.00172179 0.00172363 0.00172546 0.0017273 0.00172913 0.00173097 0.0017328 0.00173464 0.00173647 0.00173831 0.00174014 0.00174198 0.00174381 0.00174565 0.00174748 0.00174932 0.00175115 0.00175299 0.00175482 0.00175666 0.00175849 0.00176033 0.00176216 0.001764 0.00176583 0.00176767 0.00176951 0.00177134 0.00177318 0.00177501 0.00177685 0.00177868 0.00178052 0.00178235 0.00178419 0.00178602 0.00178786 0.00178969 0.00179153 0.00179336 0.0017952 0.00179703 0.00179887 0.0018007 0.00180254 0.00180437 0.00180621 0.00180804 0.00180988 0.00181171 0.00181355 0.00181538 0.00181722 0.00181905 0.00182089 0.00182272 0.00182456 0.00182639 0.00182823 0.00183007 0.0018319 0.00183374 0.00183557 0.00183741 0.00183924 0.00184108 0.00184291 0.00184475 0.00184658 0.00184842 0.00185025 0.00185209 0.00185392 0.00185576 0.00185759 0.00185943 0.00186126 0.0018631 0.00186493 0.00186677 0.0018686 0.00187044 0.00187227 +-0.00036233 -0.000344737 -0.000318777 -0.000245699 4.84428E-06 0.000526308 0.00112355 0.00150772 0.00162933 0.00165284 0.00165796 0.00166028 0.0016622 0.00166405 0.0016659 0.00166775 0.0016696 0.00167144 0.00167329 0.00167514 0.00167698 0.00167883 0.00168068 0.00168252 0.00168437 0.00168622 0.00168806 0.00168991 0.00169176 0.0016936 0.00169545 0.0016973 0.00169914 0.00170099 0.00170284 0.00170468 0.00170653 0.00170838 0.00171022 0.00171207 0.00171392 0.00171577 0.00171761 0.00171946 0.00172131 0.00172315 0.001725 0.00172685 0.00172869 0.00173054 0.00173239 0.00173423 0.00173608 0.00173793 0.00173977 0.00174162 0.00174347 0.00174531 0.00174716 0.00174901 0.00175085 0.0017527 0.00175455 0.0017564 0.00175824 0.00176009 0.00176194 0.00176378 0.00176563 0.00176748 0.00176932 0.00177117 0.00177302 0.00177486 0.00177671 0.00177856 0.0017804 0.00178225 0.0017841 0.00178594 0.00178779 0.00178964 0.00179148 0.00179333 0.00179518 0.00179702 0.00179887 0.00180072 0.00180257 0.00180441 0.00180626 0.00180811 0.00180995 0.0018118 0.00181365 0.00181549 0.00181734 0.00181919 0.00182103 0.00182288 0.00182473 0.00182657 0.00182842 0.00183027 0.00183211 0.00183396 0.00183581 0.00183765 0.0018395 0.00184135 0.0018432 0.00184504 0.00184689 0.00184874 0.00185058 0.00185243 0.00185428 0.00185612 0.00185797 0.00185982 0.00186166 0.00186351 0.00186536 0.0018672 0.00186905 0.0018709 0.00187274 0.00187459 0.00187644 0.00187828 0.00188013 0.00188198 0.00188382 +-0.000364647 -0.000346938 -0.000320789 -0.000247162 4.88967E-06 0.000528575 0.00112856 0.00151584 0.00163903 0.00166288 0.00166806 0.00167041 0.00167234 0.0016742 0.00167606 0.00167792 0.00167978 0.00168164 0.0016835 0.00168536 0.00168722 0.00168907 0.00169093 0.00169279 0.00169465 0.00169651 0.00169837 0.00170022 0.00170208 0.00170394 0.0017058 0.00170766 0.00170952 0.00171138 0.00171323 0.00171509 0.00171695 0.00171881 0.00172067 0.00172253 0.00172438 0.00172624 0.0017281 0.00172996 0.00173182 0.00173368 0.00173554 0.00173739 0.00173925 0.00174111 0.00174297 0.00174483 0.00174669 0.00174854 0.0017504 0.00175226 0.00175412 0.00175598 0.00175784 0.0017597 0.00176155 0.00176341 0.00176527 0.00176713 0.00176899 0.00177085 0.0017727 0.00177456 0.00177642 0.00177828 0.00178014 0.001782 0.00178385 0.00178571 0.00178757 0.00178943 0.00179129 0.00179315 0.00179501 0.00179686 0.00179872 0.00180058 0.00180244 0.0018043 0.00180616 0.00180801 0.00180987 0.00181173 0.00181359 0.00181545 0.00181731 0.00181917 0.00182102 0.00182288 0.00182474 0.0018266 0.00182846 0.00183032 0.00183217 0.00183403 0.00183589 0.00183775 0.00183961 0.00184147 0.00184333 0.00184518 0.00184704 0.0018489 0.00185076 0.00185262 0.00185448 0.00185633 0.00185819 0.00186005 0.00186191 0.00186377 0.00186563 0.00186748 0.00186934 0.0018712 0.00187306 0.00187492 0.00187678 0.00187864 0.00188049 0.00188235 0.00188421 0.00188607 0.00188793 0.00188979 0.00189164 0.0018935 0.00189536 +-0.000366967 -0.000349138 -0.0003228 -0.000248623 4.9352E-06 0.000530832 0.00113355 0.00152393 0.0016487 0.00167291 0.00167816 0.00168052 0.00168246 0.00168434 0.00168622 0.00168809 0.00168996 0.00169183 0.0016937 0.00169557 0.00169744 0.00169931 0.00170118 0.00170305 0.00170492 0.00170679 0.00170866 0.00171053 0.0017124 0.00171427 0.00171614 0.00171801 0.00171988 0.00172175 0.00172362 0.00172549 0.00172736 0.00172923 0.0017311 0.00173297 0.00173484 0.00173671 0.00173858 0.00174045 0.00174232 0.00174419 0.00174606 0.00174793 0.0017498 0.00175167 0.00175354 0.00175541 0.00175728 0.00175915 0.00176102 0.00176289 0.00176476 0.00176663 0.0017685 0.00177037 0.00177224 0.00177411 0.00177598 0.00177785 0.00177972 0.00178159 0.00178346 0.00178533 0.0017872 0.00178907 0.00179094 0.00179281 0.00179468 0.00179655 0.00179842 0.00180029 0.00180216 0.00180403 0.0018059 0.00180777 0.00180964 0.00181151 0.00181338 0.00181525 0.00181712 0.00181899 0.00182086 0.00182273 0.0018246 0.00182647 0.00182834 0.00183021 0.00183208 0.00183395 0.00183582 0.00183769 0.00183956 0.00184143 0.0018433 0.00184517 0.00184704 0.00184891 0.00185078 0.00185265 0.00185452 0.00185639 0.00185826 0.00186013 0.001862 0.00186387 0.00186574 0.00186761 0.00186948 0.00187135 0.00187322 0.00187509 0.00187696 0.00187883 0.0018807 0.00188257 0.00188444 0.00188631 0.00188818 0.00189005 0.00189192 0.00189379 0.00189566 0.00189753 0.0018994 0.00190127 0.00190314 0.00190501 0.00190688 +-0.000369285 -0.000351338 -0.00032481 -0.000250082 4.98086E-06 0.000533079 0.00113852 0.00153199 0.00165836 0.00168293 0.00168824 0.00169062 0.00169258 0.00169447 0.00169635 0.00169824 0.00170012 0.001702 0.00170388 0.00170576 0.00170764 0.00170953 0.00171141 0.00171329 0.00171517 0.00171705 0.00171893 0.00172082 0.0017227 0.00172458 0.00172646 0.00172834 0.00173022 0.00173211 0.00173399 0.00173587 0.00173775 0.00173963 0.00174151 0.0017434 0.00174528 0.00174716 0.00174904 0.00175092 0.0017528 0.00175469 0.00175657 0.00175845 0.00176033 0.00176221 0.00176409 0.00176598 0.00176786 0.00176974 0.00177162 0.0017735 0.00177539 0.00177727 0.00177915 0.00178103 0.00178291 0.00178479 0.00178668 0.00178856 0.00179044 0.00179232 0.0017942 0.00179608 0.00179797 0.00179985 0.00180173 0.00180361 0.00180549 0.00180737 0.00180926 0.00181114 0.00181302 0.0018149 0.00181678 0.00181866 0.00182055 0.00182243 0.00182431 0.00182619 0.00182807 0.00182995 0.00183184 0.00183372 0.0018356 0.00183748 0.00183936 0.00184124 0.00184313 0.00184501 0.00184689 0.00184877 0.00185065 0.00185253 0.00185442 0.0018563 0.00185818 0.00186006 0.00186194 0.00186382 0.00186571 0.00186759 0.00186947 0.00187135 0.00187323 0.00187511 0.001877 0.00187888 0.00188076 0.00188264 0.00188452 0.0018864 0.00188829 0.00189017 0.00189205 0.00189393 0.00189581 0.00189769 0.00189958 0.00190146 0.00190334 0.00190522 0.0019071 0.00190899 0.00191087 0.00191275 0.00191463 0.00191651 0.00191839 +-0.000371602 -0.000353536 -0.000326818 -0.000251538 5.02666E-06 0.000535316 0.00114346 0.00154003 0.00166801 0.00169294 0.00169831 0.00170071 0.00170268 0.00170458 0.00170648 0.00170837 0.00171027 0.00171216 0.00171405 0.00171595 0.00171784 0.00171973 0.00172163 0.00172352 0.00172541 0.00172731 0.0017292 0.00173109 0.00173299 0.00173488 0.00173677 0.00173867 0.00174056 0.00174245 0.00174435 0.00174624 0.00174813 0.00175003 0.00175192 0.00175381 0.00175571 0.0017576 0.00175949 0.00176139 0.00176328 0.00176517 0.00176707 0.00176896 0.00177085 0.00177275 0.00177464 0.00177653 0.00177843 0.00178032 0.00178221 0.00178411 0.001786 0.00178789 0.00178978 0.00179168 0.00179357 0.00179546 0.00179736 0.00179925 0.00180114 0.00180304 0.00180493 0.00180682 0.00180872 0.00181061 0.0018125 0.0018144 0.00181629 0.00181818 0.00182008 0.00182197 0.00182386 0.00182576 0.00182765 0.00182954 0.00183144 0.00183333 0.00183522 0.00183712 0.00183901 0.0018409 0.0018428 0.00184469 0.00184658 0.00184848 0.00185037 0.00185226 0.00185416 0.00185605 0.00185794 0.00185984 0.00186173 0.00186362 0.00186552 0.00186741 0.0018693 0.0018712 0.00187309 0.00187498 0.00187688 0.00187877 0.00188066 0.00188256 0.00188445 0.00188634 0.00188824 0.00189013 0.00189202 0.00189392 0.00189581 0.0018977 0.0018996 0.00190149 0.00190338 0.00190528 0.00190717 0.00190906 0.00191096 0.00191285 0.00191474 0.00191664 0.00191853 0.00192042 0.00192232 0.00192421 0.0019261 0.001928 0.00192989 +-0.000373917 -0.000355733 -0.000328825 -0.000252993 5.07259E-06 0.000537544 0.00114838 0.00154803 0.00167763 0.00170293 0.00170837 0.00171079 0.00171277 0.00171469 0.00171659 0.0017185 0.0017204 0.00172231 0.00172421 0.00172612 0.00172802 0.00172993 0.00173183 0.00173374 0.00173564 0.00173755 0.00173945 0.00174136 0.00174326 0.00174517 0.00174707 0.00174898 0.00175088 0.00175279 0.00175469 0.0017566 0.0017585 0.00176041 0.00176231 0.00176422 0.00176612 0.00176803 0.00176993 0.00177184 0.00177374 0.00177564 0.00177755 0.00177945 0.00178136 0.00178326 0.00178517 0.00178707 0.00178898 0.00179088 0.00179279 0.00179469 0.0017966 0.0017985 0.00180041 0.00180231 0.00180422 0.00180612 0.00180803 0.00180993 0.00181184 0.00181374 0.00181565 0.00181755 0.00181946 0.00182136 0.00182327 0.00182517 0.00182708 0.00182898 0.00183089 0.00183279 0.0018347 0.0018366 0.00183851 0.00184041 0.00184232 0.00184422 0.00184613 0.00184803 0.00184994 0.00185184 0.00185375 0.00185565 0.00185755 0.00185946 0.00186136 0.00186327 0.00186517 0.00186708 0.00186898 0.00187089 0.00187279 0.0018747 0.0018766 0.00187851 0.00188041 0.00188232 0.00188422 0.00188613 0.00188803 0.00188994 0.00189184 0.00189375 0.00189565 0.00189756 0.00189946 0.00190137 0.00190327 0.00190518 0.00190708 0.00190899 0.00191089 0.0019128 0.0019147 0.00191661 0.00191851 0.00192042 0.00192232 0.00192423 0.00192613 0.00192804 0.00192994 0.00193185 0.00193375 0.00193566 0.00193756 0.00193947 0.00194137 +-0.000376232 -0.000357929 -0.000330831 -0.000254445 5.11865E-06 0.000539761 0.00115328 0.00155601 0.00168724 0.0017129 0.00171841 0.00172086 0.00172285 0.00172478 0.00172669 0.00172861 0.00173053 0.00173244 0.00173436 0.00173628 0.00173819 0.00174011 0.00174203 0.00174394 0.00174586 0.00174778 0.00174969 0.00175161 0.00175352 0.00175544 0.00175736 0.00175927 0.00176119 0.00176311 0.00176502 0.00176694 0.00176886 0.00177077 0.00177269 0.00177461 0.00177652 0.00177844 0.00178036 0.00178227 0.00178419 0.0017861 0.00178802 0.00178994 0.00179185 0.00179377 0.00179569 0.0017976 0.00179952 0.00180144 0.00180335 0.00180527 0.00180719 0.0018091 0.00181102 0.00181294 0.00181485 0.00181677 0.00181868 0.0018206 0.00182252 0.00182443 0.00182635 0.00182827 0.00183018 0.0018321 0.00183402 0.00183593 0.00183785 0.00183977 0.00184168 0.0018436 0.00184552 0.00184743 0.00184935 0.00185126 0.00185318 0.0018551 0.00185701 0.00185893 0.00186085 0.00186276 0.00186468 0.0018666 0.00186851 0.00187043 0.00187235 0.00187426 0.00187618 0.0018781 0.00188001 0.00188193 0.00188384 0.00188576 0.00188768 0.00188959 0.00189151 0.00189343 0.00189534 0.00189726 0.00189918 0.00190109 0.00190301 0.00190493 0.00190684 0.00190876 0.00191068 0.00191259 0.00191451 0.00191642 0.00191834 0.00192026 0.00192217 0.00192409 0.00192601 0.00192792 0.00192984 0.00193176 0.00193367 0.00193559 0.00193751 0.00193942 0.00194134 0.00194326 0.00194517 0.00194709 0.001949 0.00195092 0.00195284 +-0.000378546 -0.000360124 -0.000332835 -0.000255895 5.16484E-06 0.000541969 0.00115815 0.00156396 0.00169684 0.00172287 0.00172845 0.00173091 0.00173291 0.00173485 0.00173678 0.00173871 0.00174064 0.00174257 0.0017445 0.00174642 0.00174835 0.00175028 0.00175221 0.00175414 0.00175606 0.00175799 0.00175992 0.00176185 0.00176378 0.0017657 0.00176763 0.00176956 0.00177149 0.00177342 0.00177534 0.00177727 0.0017792 0.00178113 0.00178306 0.00178498 0.00178691 0.00178884 0.00179077 0.0017927 0.00179462 0.00179655 0.00179848 0.00180041 0.00180234 0.00180426 0.00180619 0.00180812 0.00181005 0.00181198 0.0018139 0.00181583 0.00181776 0.00181969 0.00182162 0.00182354 0.00182547 0.0018274 0.00182933 0.00183126 0.00183318 0.00183511 0.00183704 0.00183897 0.0018409 0.00184282 0.00184475 0.00184668 0.00184861 0.00185054 0.00185247 0.00185439 0.00185632 0.00185825 0.00186018 0.00186211 0.00186403 0.00186596 0.00186789 0.00186982 0.00187175 0.00187367 0.0018756 0.00187753 0.00187946 0.00188139 0.00188331 0.00188524 0.00188717 0.0018891 0.00189103 0.00189295 0.00189488 0.00189681 0.00189874 0.00190067 0.00190259 0.00190452 0.00190645 0.00190838 0.00191031 0.00191223 0.00191416 0.00191609 0.00191802 0.00191995 0.00192187 0.0019238 0.00192573 0.00192766 0.00192959 0.00193151 0.00193344 0.00193537 0.0019373 0.00193923 0.00194115 0.00194308 0.00194501 0.00194694 0.00194887 0.0019508 0.00195272 0.00195465 0.00195658 0.00195851 0.00196044 0.00196236 0.00196429 +-0.000380859 -0.000362318 -0.000334838 -0.000257343 5.21117E-06 0.000544167 0.001163 0.00157189 0.00170641 0.00173282 0.00173847 0.00174095 0.00174297 0.00174492 0.00174686 0.0017488 0.00175074 0.00175268 0.00175462 0.00175656 0.0017585 0.00176044 0.00176238 0.00176432 0.00176626 0.00176819 0.00177013 0.00177207 0.00177401 0.00177595 0.00177789 0.00177983 0.00178177 0.00178371 0.00178565 0.00178759 0.00178953 0.00179147 0.00179341 0.00179535 0.00179729 0.00179923 0.00180117 0.00180311 0.00180505 0.00180699 0.00180893 0.00181087 0.00181281 0.00181474 0.00181668 0.00181862 0.00182056 0.0018225 0.00182444 0.00182638 0.00182832 0.00183026 0.0018322 0.00183414 0.00183608 0.00183802 0.00183996 0.0018419 0.00184384 0.00184578 0.00184772 0.00184966 0.0018516 0.00185354 0.00185548 0.00185742 0.00185936 0.0018613 0.00186323 0.00186517 0.00186711 0.00186905 0.00187099 0.00187293 0.00187487 0.00187681 0.00187875 0.00188069 0.00188263 0.00188457 0.00188651 0.00188845 0.00189039 0.00189233 0.00189427 0.00189621 0.00189815 0.00190009 0.00190203 0.00190397 0.00190591 0.00190785 0.00190979 0.00191172 0.00191366 0.0019156 0.00191754 0.00191948 0.00192142 0.00192336 0.0019253 0.00192724 0.00192918 0.00193112 0.00193306 0.001935 0.00193694 0.00193888 0.00194082 0.00194276 0.0019447 0.00194664 0.00194858 0.00195052 0.00195246 0.0019544 0.00195634 0.00195827 0.00196021 0.00196215 0.00196409 0.00196603 0.00196797 0.00196991 0.00197185 0.00197379 0.00197573 +-0.000383171 -0.00036451 -0.00033684 -0.000258789 5.25762E-06 0.000546355 0.00116782 0.00157979 0.00171597 0.00174276 0.00174847 0.00175098 0.00175301 0.00175497 0.00175692 0.00175887 0.00176083 0.00176278 0.00176473 0.00176668 0.00176863 0.00177058 0.00177253 0.00177448 0.00177643 0.00177839 0.00178034 0.00178229 0.00178424 0.00178619 0.00178814 0.00179009 0.00179204 0.00179399 0.00179595 0.0017979 0.00179985 0.0018018 0.00180375 0.0018057 0.00180765 0.0018096 0.00181156 0.00181351 0.00181546 0.00181741 0.00181936 0.00182131 0.00182326 0.00182521 0.00182716 0.00182912 0.00183107 0.00183302 0.00183497 0.00183692 0.00183887 0.00184082 0.00184277 0.00184472 0.00184668 0.00184863 0.00185058 0.00185253 0.00185448 0.00185643 0.00185838 0.00186033 0.00186228 0.00186424 0.00186619 0.00186814 0.00187009 0.00187204 0.00187399 0.00187594 0.00187789 0.00187984 0.0018818 0.00188375 0.0018857 0.00188765 0.0018896 0.00189155 0.0018935 0.00189545 0.00189741 0.00189936 0.00190131 0.00190326 0.00190521 0.00190716 0.00190911 0.00191106 0.00191301 0.00191497 0.00191692 0.00191887 0.00192082 0.00192277 0.00192472 0.00192667 0.00192862 0.00193057 0.00193253 0.00193448 0.00193643 0.00193838 0.00194033 0.00194228 0.00194423 0.00194618 0.00194813 0.00195009 0.00195204 0.00195399 0.00195594 0.00195789 0.00195984 0.00196179 0.00196374 0.0019657 0.00196765 0.0019696 0.00197155 0.0019735 0.00197545 0.0019774 0.00197935 0.0019813 0.00198326 0.00198521 0.00198716 +-0.000385481 -0.000366702 -0.00033884 -0.000260233 5.30421E-06 0.000548534 0.00117262 0.00158766 0.00172551 0.00175268 0.00175847 0.00176099 0.00176304 0.00176501 0.00176697 0.00176894 0.0017709 0.00177286 0.00177483 0.00177679 0.00177875 0.00178071 0.00178268 0.00178464 0.0017866 0.00178856 0.00179053 0.00179249 0.00179445 0.00179642 0.00179838 0.00180034 0.0018023 0.00180427 0.00180623 0.00180819 0.00181015 0.00181212 0.00181408 0.00181604 0.001818 0.00181997 0.00182193 0.00182389 0.00182586 0.00182782 0.00182978 0.00183174 0.00183371 0.00183567 0.00183763 0.00183959 0.00184156 0.00184352 0.00184548 0.00184744 0.00184941 0.00185137 0.00185333 0.0018553 0.00185726 0.00185922 0.00186118 0.00186315 0.00186511 0.00186707 0.00186903 0.001871 0.00187296 0.00187492 0.00187688 0.00187885 0.00188081 0.00188277 0.00188474 0.0018867 0.00188866 0.00189062 0.00189259 0.00189455 0.00189651 0.00189847 0.00190044 0.0019024 0.00190436 0.00190632 0.00190829 0.00191025 0.00191221 0.00191418 0.00191614 0.0019181 0.00192006 0.00192203 0.00192399 0.00192595 0.00192791 0.00192988 0.00193184 0.0019338 0.00193576 0.00193773 0.00193969 0.00194165 0.00194362 0.00194558 0.00194754 0.0019495 0.00195147 0.00195343 0.00195539 0.00195735 0.00195932 0.00196128 0.00196324 0.0019652 0.00196717 0.00196913 0.00197109 0.00197306 0.00197502 0.00197698 0.00197894 0.00198091 0.00198287 0.00198483 0.00198679 0.00198876 0.00199072 0.00199268 0.00199465 0.00199661 0.00199857 +-0.000387791 -0.000368893 -0.000340839 -0.000261675 5.35093E-06 0.000550704 0.0011774 0.0015955 0.00173503 0.00176259 0.00176845 0.001771 0.00177305 0.00177504 0.00177701 0.00177899 0.00178096 0.00178294 0.00178491 0.00178689 0.00178886 0.00179083 0.00179281 0.00179478 0.00179676 0.00179873 0.0018007 0.00180268 0.00180465 0.00180663 0.0018086 0.00181058 0.00181255 0.00181452 0.0018165 0.00181847 0.00182045 0.00182242 0.0018244 0.00182637 0.00182834 0.00183032 0.00183229 0.00183427 0.00183624 0.00183821 0.00184019 0.00184216 0.00184414 0.00184611 0.00184809 0.00185006 0.00185203 0.00185401 0.00185598 0.00185796 0.00185993 0.0018619 0.00186388 0.00186585 0.00186783 0.0018698 0.00187178 0.00187375 0.00187572 0.0018777 0.00187967 0.00188165 0.00188362 0.0018856 0.00188757 0.00188954 0.00189152 0.00189349 0.00189547 0.00189744 0.00189941 0.00190139 0.00190336 0.00190534 0.00190731 0.00190929 0.00191126 0.00191323 0.00191521 0.00191718 0.00191916 0.00192113 0.0019231 0.00192508 0.00192705 0.00192903 0.001931 0.00193298 0.00193495 0.00193692 0.0019389 0.00194087 0.00194285 0.00194482 0.0019468 0.00194877 0.00195074 0.00195272 0.00195469 0.00195667 0.00195864 0.00196061 0.00196259 0.00196456 0.00196654 0.00196851 0.00197049 0.00197246 0.00197443 0.00197641 0.00197838 0.00198036 0.00198233 0.00198431 0.00198628 0.00198825 0.00199023 0.0019922 0.00199418 0.00199615 0.00199812 0.0020001 0.00200207 0.00200405 0.00200602 0.002008 0.00200997 +-0.0003901 -0.000371082 -0.000342837 -0.000263115 5.39777E-06 0.000552864 0.00118215 0.00160331 0.00174454 0.00177249 0.00177842 0.00178099 0.00178306 0.00178505 0.00178704 0.00178903 0.00179101 0.001793 0.00179498 0.00179697 0.00179896 0.00180094 0.00180293 0.00180491 0.0018069 0.00180888 0.00181087 0.00181286 0.00181484 0.00181683 0.00181881 0.0018208 0.00182278 0.00182477 0.00182676 0.00182874 0.00183073 0.00183271 0.0018347 0.00183668 0.00183867 0.00184066 0.00184264 0.00184463 0.00184661 0.0018486 0.00185058 0.00185257 0.00185456 0.00185654 0.00185853 0.00186051 0.0018625 0.00186448 0.00186647 0.00186846 0.00187044 0.00187243 0.00187441 0.0018764 0.00187838 0.00188037 0.00188236 0.00188434 0.00188633 0.00188831 0.0018903 0.00189228 0.00189427 0.00189626 0.00189824 0.00190023 0.00190221 0.0019042 0.00190618 0.00190817 0.00191016 0.00191214 0.00191413 0.00191611 0.0019181 0.00192008 0.00192207 0.00192406 0.00192604 0.00192803 0.00193001 0.001932 0.00193398 0.00193597 0.00193796 0.00193994 0.00194193 0.00194391 0.0019459 0.00194788 0.00194987 0.00195186 0.00195384 0.00195583 0.00195781 0.0019598 0.00196178 0.00196377 0.00196576 0.00196774 0.00196973 0.00197171 0.0019737 0.00197568 0.00197767 0.00197966 0.00198164 0.00198363 0.00198561 0.0019876 0.00198958 0.00199157 0.00199356 0.00199554 0.00199753 0.00199951 0.0020015 0.00200348 0.00200547 0.00200746 0.00200944 0.00201143 0.00201341 0.0020154 0.00201738 0.00201937 0.00202136 +-0.000392407 -0.000373271 -0.000344833 -0.000264553 5.44475E-06 0.000555015 0.00118688 0.0016111 0.00175403 0.00178238 0.00178838 0.00179097 0.00179305 0.00179506 0.00179706 0.00179905 0.00180105 0.00180305 0.00180505 0.00180704 0.00180904 0.00181104 0.00181303 0.00181503 0.00181703 0.00181903 0.00182102 0.00182302 0.00182502 0.00182702 0.00182901 0.00183101 0.00183301 0.001835 0.001837 0.001839 0.001841 0.00184299 0.00184499 0.00184699 0.00184898 0.00185098 0.00185298 0.00185498 0.00185697 0.00185897 0.00186097 0.00186296 0.00186496 0.00186696 0.00186896 0.00187095 0.00187295 0.00187495 0.00187695 0.00187894 0.00188094 0.00188294 0.00188493 0.00188693 0.00188893 0.00189093 0.00189292 0.00189492 0.00189692 0.00189891 0.00190091 0.00190291 0.00190491 0.0019069 0.0019089 0.0019109 0.00191289 0.00191489 0.00191689 0.00191889 0.00192088 0.00192288 0.00192488 0.00192688 0.00192887 0.00193087 0.00193287 0.00193486 0.00193686 0.00193886 0.00194086 0.00194285 0.00194485 0.00194685 0.00194884 0.00195084 0.00195284 0.00195484 0.00195683 0.00195883 0.00196083 0.00196283 0.00196482 0.00196682 0.00196882 0.00197081 0.00197281 0.00197481 0.00197681 0.0019788 0.0019808 0.0019828 0.00198479 0.00198679 0.00198879 0.00199079 0.00199278 0.00199478 0.00199678 0.00199877 0.00200077 0.00200277 0.00200477 0.00200676 0.00200876 0.00201076 0.00201276 0.00201475 0.00201675 0.00201875 0.00202074 0.00202274 0.00202474 0.00202674 0.00202873 0.00203073 0.00203273 +-0.000394714 -0.000375458 -0.000346829 -0.000265988 5.49185E-06 0.000557156 0.00119159 0.00161886 0.0017635 0.00179225 0.00179833 0.00180093 0.00180303 0.00180505 0.00180706 0.00180907 0.00181108 0.00181309 0.00181509 0.0018171 0.00181911 0.00182112 0.00182313 0.00182514 0.00182715 0.00182916 0.00183116 0.00183317 0.00183518 0.00183719 0.0018392 0.00184121 0.00184322 0.00184523 0.00184723 0.00184924 0.00185125 0.00185326 0.00185527 0.00185728 0.00185929 0.00186129 0.0018633 0.00186531 0.00186732 0.00186933 0.00187134 0.00187335 0.00187536 0.00187736 0.00187937 0.00188138 0.00188339 0.0018854 0.00188741 0.00188942 0.00189143 0.00189343 0.00189544 0.00189745 0.00189946 0.00190147 0.00190348 0.00190549 0.00190749 0.0019095 0.00191151 0.00191352 0.00191553 0.00191754 0.00191955 0.00192156 0.00192356 0.00192557 0.00192758 0.00192959 0.0019316 0.00193361 0.00193562 0.00193763 0.00193963 0.00194164 0.00194365 0.00194566 0.00194767 0.00194968 0.00195169 0.00195369 0.0019557 0.00195771 0.00195972 0.00196173 0.00196374 0.00196575 0.00196776 0.00196976 0.00197177 0.00197378 0.00197579 0.0019778 0.00197981 0.00198182 0.00198383 0.00198583 0.00198784 0.00198985 0.00199186 0.00199387 0.00199588 0.00199789 0.00199989 0.0020019 0.00200391 0.00200592 0.00200793 0.00200994 0.00201195 0.00201396 0.00201596 0.00201797 0.00201998 0.00202199 0.002024 0.00202601 0.00202802 0.00203003 0.00203203 0.00203404 0.00203605 0.00203806 0.00204007 0.00204208 0.00204409 +-0.000397019 -0.000377645 -0.000348823 -0.000267422 5.53908E-06 0.000559289 0.00119627 0.00162659 0.00177296 0.00180211 0.00180826 0.00181089 0.001813 0.00181503 0.00181705 0.00181907 0.00182109 0.00182311 0.00182513 0.00182715 0.00182917 0.00183119 0.00183321 0.00183523 0.00183725 0.00183927 0.00184129 0.00184331 0.00184533 0.00184735 0.00184937 0.00185139 0.00185341 0.00185543 0.00185745 0.00185947 0.00186149 0.00186351 0.00186554 0.00186756 0.00186958 0.0018716 0.00187362 0.00187564 0.00187766 0.00187968 0.0018817 0.00188372 0.00188574 0.00188776 0.00188978 0.0018918 0.00189382 0.00189584 0.00189786 0.00189988 0.0019019 0.00190392 0.00190594 0.00190796 0.00190998 0.001912 0.00191402 0.00191604 0.00191806 0.00192008 0.0019221 0.00192412 0.00192614 0.00192816 0.00193018 0.0019322 0.00193422 0.00193624 0.00193826 0.00194028 0.0019423 0.00194432 0.00194634 0.00194836 0.00195038 0.0019524 0.00195442 0.00195644 0.00195846 0.00196048 0.0019625 0.00196452 0.00196654 0.00196856 0.00197058 0.0019726 0.00197462 0.00197664 0.00197866 0.00198068 0.0019827 0.00198473 0.00198675 0.00198877 0.00199079 0.00199281 0.00199483 0.00199685 0.00199887 0.00200089 0.00200291 0.00200493 0.00200695 0.00200897 0.00201099 0.00201301 0.00201503 0.00201705 0.00201907 0.00202109 0.00202311 0.00202513 0.00202715 0.00202917 0.00203119 0.00203321 0.00203523 0.00203725 0.00203927 0.00204129 0.00204331 0.00204533 0.00204735 0.00204937 0.00205139 0.00205341 0.00205543 +-0.000399323 -0.00037983 -0.000350815 -0.000268853 5.58644E-06 0.000561412 0.00120094 0.0016343 0.0017824 0.00181196 0.00181819 0.00182083 0.00182295 0.001825 0.00182703 0.00182906 0.00183109 0.00183312 0.00183516 0.00183719 0.00183922 0.00184125 0.00184328 0.00184531 0.00184735 0.00184938 0.00185141 0.00185344 0.00185547 0.0018575 0.00185954 0.00186157 0.0018636 0.00186563 0.00186766 0.00186969 0.00187173 0.00187376 0.00187579 0.00187782 0.00187985 0.00188188 0.00188392 0.00188595 0.00188798 0.00189001 0.00189204 0.00189407 0.00189611 0.00189814 0.00190017 0.0019022 0.00190423 0.00190626 0.0019083 0.00191033 0.00191236 0.00191439 0.00191642 0.00191845 0.00192049 0.00192252 0.00192455 0.00192658 0.00192861 0.00193064 0.00193267 0.00193471 0.00193674 0.00193877 0.0019408 0.00194283 0.00194486 0.0019469 0.00194893 0.00195096 0.00195299 0.00195502 0.00195705 0.00195909 0.00196112 0.00196315 0.00196518 0.00196721 0.00196924 0.00197128 0.00197331 0.00197534 0.00197737 0.0019794 0.00198143 0.00198347 0.0019855 0.00198753 0.00198956 0.00199159 0.00199362 0.00199566 0.00199769 0.00199972 0.00200175 0.00200378 0.00200581 0.00200785 0.00200988 0.00201191 0.00201394 0.00201597 0.002018 0.00202004 0.00202207 0.0020241 0.00202613 0.00202816 0.00203019 0.00203223 0.00203426 0.00203629 0.00203832 0.00204035 0.00204238 0.00204441 0.00204645 0.00204848 0.00205051 0.00205254 0.00205457 0.0020566 0.00205864 0.00206067 0.0020627 0.00206473 0.00206676 +-0.000401627 -0.000382014 -0.000352806 -0.000270282 5.63392E-06 0.000563526 0.00120558 0.00164197 0.00179182 0.0018218 0.0018281 0.00183076 0.0018329 0.00183495 0.001837 0.00183904 0.00184108 0.00184313 0.00184517 0.00184721 0.00184926 0.0018513 0.00185334 0.00185538 0.00185743 0.00185947 0.00186151 0.00186356 0.0018656 0.00186764 0.00186969 0.00187173 0.00187377 0.00187582 0.00187786 0.0018799 0.00188194 0.00188399 0.00188603 0.00188807 0.00189012 0.00189216 0.0018942 0.00189625 0.00189829 0.00190033 0.00190238 0.00190442 0.00190646 0.00190851 0.00191055 0.00191259 0.00191463 0.00191668 0.00191872 0.00192076 0.00192281 0.00192485 0.00192689 0.00192894 0.00193098 0.00193302 0.00193507 0.00193711 0.00193915 0.00194119 0.00194324 0.00194528 0.00194732 0.00194937 0.00195141 0.00195345 0.0019555 0.00195754 0.00195958 0.00196163 0.00196367 0.00196571 0.00196775 0.0019698 0.00197184 0.00197388 0.00197593 0.00197797 0.00198001 0.00198206 0.0019841 0.00198614 0.00198819 0.00199023 0.00199227 0.00199431 0.00199636 0.0019984 0.00200044 0.00200249 0.00200453 0.00200657 0.00200862 0.00201066 0.0020127 0.00201475 0.00201679 0.00201883 0.00202087 0.00202292 0.00202496 0.002027 0.00202905 0.00203109 0.00203313 0.00203518 0.00203722 0.00203926 0.00204131 0.00204335 0.00204539 0.00204744 0.00204948 0.00205152 0.00205356 0.00205561 0.00205765 0.00205969 0.00206174 0.00206378 0.00206582 0.00206787 0.00206991 0.00207195 0.002074 0.00207604 0.00207808 +-0.000403929 -0.000384198 -0.000354796 -0.000271709 5.68153E-06 0.000565632 0.0012102 0.00164962 0.00180122 0.00183162 0.00183799 0.00184068 0.00184283 0.0018449 0.00184695 0.00184901 0.00185106 0.00185312 0.00185517 0.00185722 0.00185928 0.00186133 0.00186339 0.00186544 0.0018675 0.00186955 0.00187161 0.00187366 0.00187572 0.00187777 0.00187982 0.00188188 0.00188393 0.00188599 0.00188804 0.0018901 0.00189215 0.00189421 0.00189626 0.00189832 0.00190037 0.00190242 0.00190448 0.00190653 0.00190859 0.00191064 0.0019127 0.00191475 0.00191681 0.00191886 0.00192092 0.00192297 0.00192502 0.00192708 0.00192913 0.00193119 0.00193324 0.0019353 0.00193735 0.00193941 0.00194146 0.00194351 0.00194557 0.00194762 0.00194968 0.00195173 0.00195379 0.00195584 0.0019579 0.00195995 0.00196201 0.00196406 0.00196611 0.00196817 0.00197022 0.00197228 0.00197433 0.00197639 0.00197844 0.0019805 0.00198255 0.00198461 0.00198666 0.00198871 0.00199077 0.00199282 0.00199488 0.00199693 0.00199899 0.00200104 0.0020031 0.00200515 0.00200721 0.00200926 0.00201131 0.00201337 0.00201542 0.00201748 0.00201953 0.00202159 0.00202364 0.0020257 0.00202775 0.00202981 0.00203186 0.00203391 0.00203597 0.00203802 0.00204008 0.00204213 0.00204419 0.00204624 0.0020483 0.00205035 0.0020524 0.00205446 0.00205651 0.00205857 0.00206062 0.00206268 0.00206473 0.00206679 0.00206884 0.0020709 0.00207295 0.002075 0.00207706 0.00207911 0.00208117 0.00208322 0.00208528 0.00208733 0.00208939 +-0.000406231 -0.00038638 -0.000356785 -0.000273135 5.72926E-06 0.000567728 0.00121479 0.00165725 0.00181061 0.00184143 0.00184788 0.00185059 0.00185275 0.00185483 0.00185689 0.00185896 0.00186103 0.00186309 0.00186516 0.00186722 0.00186929 0.00187136 0.00187342 0.00187549 0.00187755 0.00187962 0.00188169 0.00188375 0.00188582 0.00188788 0.00188995 0.00189202 0.00189408 0.00189615 0.00189821 0.00190028 0.00190235 0.00190441 0.00190648 0.00190854 0.00191061 0.00191268 0.00191474 0.00191681 0.00191887 0.00192094 0.00192301 0.00192507 0.00192714 0.0019292 0.00193127 0.00193334 0.0019354 0.00193747 0.00193953 0.0019416 0.00194367 0.00194573 0.0019478 0.00194986 0.00195193 0.001954 0.00195606 0.00195813 0.00196019 0.00196226 0.00196433 0.00196639 0.00196846 0.00197052 0.00197259 0.00197465 0.00197672 0.00197879 0.00198085 0.00198292 0.00198498 0.00198705 0.00198912 0.00199118 0.00199325 0.00199531 0.00199738 0.00199945 0.00200151 0.00200358 0.00200564 0.00200771 0.00200978 0.00201184 0.00201391 0.00201597 0.00201804 0.00202011 0.00202217 0.00202424 0.0020263 0.00202837 0.00203044 0.0020325 0.00203457 0.00203663 0.0020387 0.00204077 0.00204283 0.0020449 0.00204696 0.00204903 0.0020511 0.00205316 0.00205523 0.00205729 0.00205936 0.00206143 0.00206349 0.00206556 0.00206762 0.00206969 0.00207175 0.00207382 0.00207589 0.00207795 0.00208002 0.00208208 0.00208415 0.00208622 0.00208828 0.00209035 0.00209241 0.00209448 0.00209655 0.00209861 0.00210068 +-0.000408531 -0.000388561 -0.000358773 -0.000274558 5.77712E-06 0.000569816 0.00121937 0.00166485 0.00181998 0.00185122 0.00185775 0.00186048 0.00186266 0.00186475 0.00186683 0.0018689 0.00187098 0.00187306 0.00187514 0.00187721 0.00187929 0.00188137 0.00188345 0.00188552 0.0018876 0.00188968 0.00189175 0.00189383 0.00189591 0.00189799 0.00190006 0.00190214 0.00190422 0.0019063 0.00190837 0.00191045 0.00191253 0.00191461 0.00191668 0.00191876 0.00192084 0.00192292 0.00192499 0.00192707 0.00192915 0.00193123 0.0019333 0.00193538 0.00193746 0.00193953 0.00194161 0.00194369 0.00194577 0.00194784 0.00194992 0.001952 0.00195408 0.00195615 0.00195823 0.00196031 0.00196239 0.00196446 0.00196654 0.00196862 0.0019707 0.00197277 0.00197485 0.00197693 0.001979 0.00198108 0.00198316 0.00198524 0.00198731 0.00198939 0.00199147 0.00199355 0.00199562 0.0019977 0.00199978 0.00200186 0.00200393 0.00200601 0.00200809 0.00201017 0.00201224 0.00201432 0.0020164 0.00201847 0.00202055 0.00202263 0.00202471 0.00202678 0.00202886 0.00203094 0.00203302 0.00203509 0.00203717 0.00203925 0.00204133 0.0020434 0.00204548 0.00204756 0.00204964 0.00205171 0.00205379 0.00205587 0.00205795 0.00206002 0.0020621 0.00206418 0.00206625 0.00206833 0.00207041 0.00207249 0.00207456 0.00207664 0.00207872 0.0020808 0.00208287 0.00208495 0.00208703 0.00208911 0.00209118 0.00209326 0.00209534 0.00209742 0.00209949 0.00210157 0.00210365 0.00210572 0.0021078 0.00210988 0.00211196 +-0.00041083 -0.000390741 -0.000360759 -0.000275979 5.8251E-06 0.000571895 0.00122392 0.00167242 0.00182933 0.00186101 0.00186762 0.00187037 0.00187255 0.00187465 0.00187675 0.00187883 0.00188092 0.00188301 0.0018851 0.00188719 0.00188928 0.00189137 0.00189346 0.00189554 0.00189763 0.00189972 0.00190181 0.0019039 0.00190599 0.00190808 0.00191017 0.00191226 0.00191434 0.00191643 0.00191852 0.00192061 0.0019227 0.00192479 0.00192688 0.00192897 0.00193105 0.00193314 0.00193523 0.00193732 0.00193941 0.0019415 0.00194359 0.00194568 0.00194776 0.00194985 0.00195194 0.00195403 0.00195612 0.00195821 0.0019603 0.00196239 0.00196447 0.00196656 0.00196865 0.00197074 0.00197283 0.00197492 0.00197701 0.0019791 0.00198118 0.00198327 0.00198536 0.00198745 0.00198954 0.00199163 0.00199372 0.00199581 0.0019979 0.00199998 0.00200207 0.00200416 0.00200625 0.00200834 0.00201043 0.00201252 0.00201461 0.00201669 0.00201878 0.00202087 0.00202296 0.00202505 0.00202714 0.00202923 0.00203132 0.0020334 0.00203549 0.00203758 0.00203967 0.00204176 0.00204385 0.00204594 0.00204803 0.00205011 0.0020522 0.00205429 0.00205638 0.00205847 0.00206056 0.00206265 0.00206474 0.00206683 0.00206891 0.002071 0.00207309 0.00207518 0.00207727 0.00207936 0.00208145 0.00208354 0.00208562 0.00208771 0.0020898 0.00209189 0.00209398 0.00209607 0.00209816 0.00210025 0.00210233 0.00210442 0.00210651 0.0021086 0.00211069 0.00211278 0.00211487 0.00211696 0.00211904 0.00212113 0.00212322 +-0.000413129 -0.00039292 -0.000362744 -0.000277398 5.87321E-06 0.000573965 0.00122845 0.00167996 0.00183867 0.00187078 0.00187747 0.00188024 0.00188244 0.00188455 0.00188665 0.00188875 0.00189085 0.00189295 0.00189505 0.00189715 0.00189925 0.00190135 0.00190345 0.00190555 0.00190766 0.00190976 0.00191186 0.00191396 0.00191606 0.00191816 0.00192026 0.00192236 0.00192446 0.00192656 0.00192866 0.00193076 0.00193286 0.00193496 0.00193706 0.00193916 0.00194126 0.00194336 0.00194546 0.00194756 0.00194966 0.00195176 0.00195386 0.00195596 0.00195806 0.00196016 0.00196226 0.00196436 0.00196646 0.00196856 0.00197066 0.00197276 0.00197486 0.00197696 0.00197906 0.00198116 0.00198326 0.00198536 0.00198746 0.00198956 0.00199166 0.00199376 0.00199586 0.00199796 0.00200006 0.00200216 0.00200426 0.00200636 0.00200846 0.00201056 0.00201266 0.00201476 0.00201686 0.00201896 0.00202106 0.00202317 0.00202527 0.00202737 0.00202947 0.00203157 0.00203367 0.00203577 0.00203787 0.00203997 0.00204207 0.00204417 0.00204627 0.00204837 0.00205047 0.00205257 0.00205467 0.00205677 0.00205887 0.00206097 0.00206307 0.00206517 0.00206727 0.00206937 0.00207147 0.00207357 0.00207567 0.00207777 0.00207987 0.00208197 0.00208407 0.00208617 0.00208827 0.00209037 0.00209247 0.00209457 0.00209667 0.00209877 0.00210087 0.00210297 0.00210507 0.00210717 0.00210927 0.00211137 0.00211347 0.00211557 0.00211767 0.00211977 0.00212187 0.00212397 0.00212607 0.00212817 0.00213027 0.00213237 0.00213447 +-0.000415426 -0.000395098 -0.000364727 -0.000278814 5.92144E-06 0.000576027 0.00123296 0.00168747 0.00184799 0.00188054 0.00188731 0.0018901 0.00189231 0.00189444 0.00189655 0.00189866 0.00190077 0.00190288 0.001905 0.00190711 0.00190922 0.00191133 0.00191344 0.00191555 0.00191766 0.00191978 0.00192189 0.001924 0.00192611 0.00192822 0.00193033 0.00193245 0.00193456 0.00193667 0.00193878 0.00194089 0.001943 0.00194512 0.00194723 0.00194934 0.00195145 0.00195356 0.00195567 0.00195778 0.0019599 0.00196201 0.00196412 0.00196623 0.00196834 0.00197045 0.00197257 0.00197468 0.00197679 0.0019789 0.00198101 0.00198312 0.00198523 0.00198735 0.00198946 0.00199157 0.00199368 0.00199579 0.0019979 0.00200002 0.00200213 0.00200424 0.00200635 0.00200846 0.00201057 0.00201269 0.0020148 0.00201691 0.00201902 0.00202113 0.00202324 0.00202535 0.00202747 0.00202958 0.00203169 0.0020338 0.00203591 0.00203802 0.00204014 0.00204225 0.00204436 0.00204647 0.00204858 0.00205069 0.0020528 0.00205492 0.00205703 0.00205914 0.00206125 0.00206336 0.00206547 0.00206759 0.0020697 0.00207181 0.00207392 0.00207603 0.00207814 0.00208026 0.00208237 0.00208448 0.00208659 0.0020887 0.00209081 0.00209292 0.00209504 0.00209715 0.00209926 0.00210137 0.00210348 0.00210559 0.00210771 0.00210982 0.00211193 0.00211404 0.00211615 0.00211826 0.00212038 0.00212249 0.0021246 0.00212671 0.00212882 0.00213093 0.00213304 0.00213516 0.00213727 0.00213938 0.00214149 0.0021436 0.00214571 +-0.000417722 -0.000397275 -0.00036671 -0.000280229 5.96979E-06 0.00057808 0.00123745 0.00169496 0.00185729 0.00189028 0.00189713 0.00189995 0.00190217 0.00190431 0.00190643 0.00190856 0.00191068 0.0019128 0.00191492 0.00191705 0.00191917 0.00192129 0.00192342 0.00192554 0.00192766 0.00192979 0.00193191 0.00193403 0.00193615 0.00193828 0.0019404 0.00194252 0.00194465 0.00194677 0.00194889 0.00195101 0.00195314 0.00195526 0.00195738 0.00195951 0.00196163 0.00196375 0.00196588 0.001968 0.00197012 0.00197224 0.00197437 0.00197649 0.00197861 0.00198074 0.00198286 0.00198498 0.0019871 0.00198923 0.00199135 0.00199347 0.0019956 0.00199772 0.00199984 0.00200197 0.00200409 0.00200621 0.00200833 0.00201046 0.00201258 0.0020147 0.00201683 0.00201895 0.00202107 0.00202319 0.00202532 0.00202744 0.00202956 0.00203169 0.00203381 0.00203593 0.00203806 0.00204018 0.0020423 0.00204442 0.00204655 0.00204867 0.00205079 0.00205292 0.00205504 0.00205716 0.00205928 0.00206141 0.00206353 0.00206565 0.00206778 0.0020699 0.00207202 0.00207415 0.00207627 0.00207839 0.00208051 0.00208264 0.00208476 0.00208688 0.00208901 0.00209113 0.00209325 0.00209537 0.0020975 0.00209962 0.00210174 0.00210387 0.00210599 0.00210811 0.00211024 0.00211236 0.00211448 0.0021166 0.00211873 0.00212085 0.00212297 0.0021251 0.00212722 0.00212934 0.00213146 0.00213359 0.00213571 0.00213783 0.00213996 0.00214208 0.0021442 0.00214633 0.00214845 0.00215057 0.00215269 0.00215482 0.00215694 +-0.000420017 -0.000399451 -0.000368691 -0.000281642 6.01826E-06 0.000580125 0.00124192 0.00170242 0.00186657 0.00190002 0.00190695 0.00190978 0.00191202 0.00191417 0.00191631 0.00191844 0.00192057 0.00192271 0.00192484 0.00192698 0.00192911 0.00193125 0.00193338 0.00193551 0.00193765 0.00193978 0.00194192 0.00194405 0.00194619 0.00194832 0.00195045 0.00195259 0.00195472 0.00195686 0.00195899 0.00196113 0.00196326 0.00196539 0.00196753 0.00196966 0.0019718 0.00197393 0.00197607 0.0019782 0.00198033 0.00198247 0.0019846 0.00198674 0.00198887 0.00199101 0.00199314 0.00199527 0.00199741 0.00199954 0.00200168 0.00200381 0.00200595 0.00200808 0.00201021 0.00201235 0.00201448 0.00201662 0.00201875 0.00202089 0.00202302 0.00202515 0.00202729 0.00202942 0.00203156 0.00203369 0.00203583 0.00203796 0.00204009 0.00204223 0.00204436 0.0020465 0.00204863 0.00205077 0.0020529 0.00205504 0.00205717 0.0020593 0.00206144 0.00206357 0.00206571 0.00206784 0.00206998 0.00207211 0.00207424 0.00207638 0.00207851 0.00208065 0.00208278 0.00208492 0.00208705 0.00208918 0.00209132 0.00209345 0.00209559 0.00209772 0.00209986 0.00210199 0.00210412 0.00210626 0.00210839 0.00211053 0.00211266 0.0021148 0.00211693 0.00211906 0.0021212 0.00212333 0.00212547 0.0021276 0.00212974 0.00213187 0.002134 0.00213614 0.00213827 0.00214041 0.00214254 0.00214468 0.00214681 0.00214894 0.00215108 0.00215321 0.00215535 0.00215748 0.00215962 0.00216175 0.00216388 0.00216602 0.00216815 +-0.000422312 -0.000401626 -0.00037067 -0.000283053 6.06686E-06 0.000582161 0.00124637 0.00170986 0.00187584 0.00190974 0.00191675 0.00191961 0.00192186 0.00192402 0.00192617 0.00192831 0.00193046 0.0019326 0.00193475 0.00193689 0.00193904 0.00194119 0.00194333 0.00194548 0.00194762 0.00194977 0.00195191 0.00195406 0.00195621 0.00195835 0.0019605 0.00196264 0.00196479 0.00196693 0.00196908 0.00197122 0.00197337 0.00197552 0.00197766 0.00197981 0.00198195 0.0019841 0.00198624 0.00198839 0.00199054 0.00199268 0.00199483 0.00199697 0.00199912 0.00200126 0.00200341 0.00200556 0.0020077 0.00200985 0.00201199 0.00201414 0.00201628 0.00201843 0.00202057 0.00202272 0.00202487 0.00202701 0.00202916 0.0020313 0.00203345 0.00203559 0.00203774 0.00203989 0.00204203 0.00204418 0.00204632 0.00204847 0.00205061 0.00205276 0.00205491 0.00205705 0.0020592 0.00206134 0.00206349 0.00206563 0.00206778 0.00206992 0.00207207 0.00207422 0.00207636 0.00207851 0.00208065 0.0020828 0.00208494 0.00208709 0.00208924 0.00209138 0.00209353 0.00209567 0.00209782 0.00209996 0.00210211 0.00210426 0.0021064 0.00210855 0.00211069 0.00211284 0.00211498 0.00211713 0.00211927 0.00212142 0.00212357 0.00212571 0.00212786 0.00213 0.00213215 0.00213429 0.00213644 0.00213859 0.00214073 0.00214288 0.00214502 0.00214717 0.00214931 0.00215146 0.00215361 0.00215575 0.0021579 0.00216004 0.00216219 0.00216433 0.00216648 0.00216862 0.00217077 0.00217292 0.00217506 0.00217721 0.00217935 +-0.000424605 -0.0004038 -0.000372649 -0.000284461 6.11557E-06 0.000584188 0.00125079 0.00171727 0.00188509 0.00191945 0.00192654 0.00192942 0.00193168 0.00193386 0.00193601 0.00193817 0.00194033 0.00194249 0.00194464 0.0019468 0.00194896 0.00195111 0.00195327 0.00195543 0.00195759 0.00195974 0.0019619 0.00196406 0.00196621 0.00196837 0.00197053 0.00197268 0.00197484 0.001977 0.00197915 0.00198131 0.00198347 0.00198563 0.00198778 0.00198994 0.0019921 0.00199425 0.00199641 0.00199857 0.00200072 0.00200288 0.00200504 0.0020072 0.00200935 0.00201151 0.00201367 0.00201582 0.00201798 0.00202014 0.00202229 0.00202445 0.00202661 0.00202877 0.00203092 0.00203308 0.00203524 0.00203739 0.00203955 0.00204171 0.00204386 0.00204602 0.00204818 0.00205034 0.00205249 0.00205465 0.00205681 0.00205896 0.00206112 0.00206328 0.00206543 0.00206759 0.00206975 0.00207191 0.00207406 0.00207622 0.00207838 0.00208053 0.00208269 0.00208485 0.002087 0.00208916 0.00209132 0.00209348 0.00209563 0.00209779 0.00209995 0.0021021 0.00210426 0.00210642 0.00210857 0.00211073 0.00211289 0.00211505 0.0021172 0.00211936 0.00212152 0.00212367 0.00212583 0.00212799 0.00213014 0.0021323 0.00213446 0.00213662 0.00213877 0.00214093 0.00214309 0.00214524 0.0021474 0.00214956 0.00215171 0.00215387 0.00215603 0.00215819 0.00216034 0.0021625 0.00216466 0.00216681 0.00216897 0.00217113 0.00217328 0.00217544 0.0021776 0.00217976 0.00218191 0.00218407 0.00218623 0.00218838 0.00219054 +-0.000426897 -0.000405973 -0.000374626 -0.000285868 6.16441E-06 0.000586208 0.0012552 0.00172465 0.00189433 0.00192914 0.00193632 0.00193922 0.0019415 0.00194368 0.00194585 0.00194802 0.00195019 0.00195236 0.00195453 0.00195669 0.00195886 0.00196103 0.0019632 0.00196537 0.00196754 0.0019697 0.00197187 0.00197404 0.00197621 0.00197838 0.00198055 0.00198271 0.00198488 0.00198705 0.00198922 0.00199139 0.00199356 0.00199572 0.00199789 0.00200006 0.00200223 0.0020044 0.00200657 0.00200873 0.0020109 0.00201307 0.00201524 0.00201741 0.00201958 0.00202174 0.00202391 0.00202608 0.00202825 0.00203042 0.00203259 0.00203475 0.00203692 0.00203909 0.00204126 0.00204343 0.0020456 0.00204776 0.00204993 0.0020521 0.00205427 0.00205644 0.00205861 0.00206077 0.00206294 0.00206511 0.00206728 0.00206945 0.00207162 0.00207378 0.00207595 0.00207812 0.00208029 0.00208246 0.00208463 0.00208679 0.00208896 0.00209113 0.0020933 0.00209547 0.00209764 0.0020998 0.00210197 0.00210414 0.00210631 0.00210848 0.00211064 0.00211281 0.00211498 0.00211715 0.00211932 0.00212149 0.00212365 0.00212582 0.00212799 0.00213016 0.00213233 0.0021345 0.00213666 0.00213883 0.002141 0.00214317 0.00214534 0.00214751 0.00214967 0.00215184 0.00215401 0.00215618 0.00215835 0.00216052 0.00216268 0.00216485 0.00216702 0.00216919 0.00217136 0.00217353 0.00217569 0.00217786 0.00218003 0.0021822 0.00218437 0.00218654 0.0021887 0.00219087 0.00219304 0.00219521 0.00219738 0.00219955 0.00220171 +-0.000429189 -0.000408145 -0.000376602 -0.000287272 6.21337E-06 0.000588219 0.00125958 0.00173201 0.00190354 0.00193882 0.00194609 0.00194901 0.0019513 0.0019535 0.00195568 0.00195786 0.00196004 0.00196222 0.0019644 0.00196658 0.00196876 0.00197094 0.00197312 0.0019753 0.00197747 0.00197965 0.00198183 0.00198401 0.00198619 0.00198837 0.00199055 0.00199273 0.00199491 0.00199709 0.00199927 0.00200145 0.00200363 0.00200581 0.00200799 0.00201017 0.00201235 0.00201453 0.00201671 0.00201889 0.00202107 0.00202325 0.00202543 0.00202761 0.00202979 0.00203197 0.00203415 0.00203633 0.0020385 0.00204068 0.00204286 0.00204504 0.00204722 0.0020494 0.00205158 0.00205376 0.00205594 0.00205812 0.0020603 0.00206248 0.00206466 0.00206684 0.00206902 0.0020712 0.00207338 0.00207556 0.00207774 0.00207992 0.0020821 0.00208428 0.00208646 0.00208864 0.00209082 0.002093 0.00209518 0.00209735 0.00209953 0.00210171 0.00210389 0.00210607 0.00210825 0.00211043 0.00211261 0.00211479 0.00211697 0.00211915 0.00212133 0.00212351 0.00212569 0.00212787 0.00213005 0.00213223 0.00213441 0.00213659 0.00213877 0.00214095 0.00214313 0.00214531 0.00214749 0.00214967 0.00215185 0.00215403 0.00215621 0.00215838 0.00216056 0.00216274 0.00216492 0.0021671 0.00216928 0.00217146 0.00217364 0.00217582 0.002178 0.00218018 0.00218236 0.00218454 0.00218672 0.0021889 0.00219108 0.00219326 0.00219544 0.00219762 0.0021998 0.00220198 0.00220416 0.00220634 0.00220852 0.0022107 0.00221288 +-0.000431479 -0.000410316 -0.000378577 -0.000288675 6.26244E-06 0.000590222 0.00126395 0.00173934 0.00191274 0.00194849 0.00195584 0.00195879 0.00196109 0.0019633 0.00196549 0.00196768 0.00196987 0.00197207 0.00197426 0.00197645 0.00197864 0.00198083 0.00198302 0.00198521 0.0019874 0.00198959 0.00199178 0.00199398 0.00199617 0.00199836 0.00200055 0.00200274 0.00200493 0.00200712 0.00200931 0.0020115 0.00201369 0.00201588 0.00201808 0.00202027 0.00202246 0.00202465 0.00202684 0.00202903 0.00203122 0.00203341 0.0020356 0.00203779 0.00203998 0.00204218 0.00204437 0.00204656 0.00204875 0.00205094 0.00205313 0.00205532 0.00205751 0.0020597 0.00206189 0.00206409 0.00206628 0.00206847 0.00207066 0.00207285 0.00207504 0.00207723 0.00207942 0.00208161 0.0020838 0.00208599 0.00208819 0.00209038 0.00209257 0.00209476 0.00209695 0.00209914 0.00210133 0.00210352 0.00210571 0.0021079 0.0021101 0.00211229 0.00211448 0.00211667 0.00211886 0.00212105 0.00212324 0.00212543 0.00212762 0.00212981 0.002132 0.0021342 0.00213639 0.00213858 0.00214077 0.00214296 0.00214515 0.00214734 0.00214953 0.00215172 0.00215391 0.0021561 0.0021583 0.00216049 0.00216268 0.00216487 0.00216706 0.00216925 0.00217144 0.00217363 0.00217582 0.00217801 0.00218021 0.0021824 0.00218459 0.00218678 0.00218897 0.00219116 0.00219335 0.00219554 0.00219773 0.00219992 0.00220211 0.00220431 0.0022065 0.00220869 0.00221088 0.00221307 0.00221526 0.00221745 0.00221964 0.00222183 0.00222402 +-0.000433768 -0.000412486 -0.00038055 -0.000290075 6.31164E-06 0.000592217 0.00126829 0.00174664 0.00192192 0.00195815 0.00196559 0.00196856 0.00197087 0.00197309 0.0019753 0.0019775 0.0019797 0.0019819 0.0019841 0.00198631 0.00198851 0.00199071 0.00199291 0.00199512 0.00199732 0.00199952 0.00200172 0.00200392 0.00200613 0.00200833 0.00201053 0.00201273 0.00201494 0.00201714 0.00201934 0.00202154 0.00202374 0.00202595 0.00202815 0.00203035 0.00203255 0.00203476 0.00203696 0.00203916 0.00204136 0.00204357 0.00204577 0.00204797 0.00205017 0.00205237 0.00205458 0.00205678 0.00205898 0.00206118 0.00206339 0.00206559 0.00206779 0.00206999 0.00207219 0.0020744 0.0020766 0.0020788 0.002081 0.00208321 0.00208541 0.00208761 0.00208981 0.00209201 0.00209422 0.00209642 0.00209862 0.00210082 0.00210303 0.00210523 0.00210743 0.00210963 0.00211183 0.00211404 0.00211624 0.00211844 0.00212064 0.00212285 0.00212505 0.00212725 0.00212945 0.00213165 0.00213386 0.00213606 0.00213826 0.00214046 0.00214267 0.00214487 0.00214707 0.00214927 0.00215147 0.00215368 0.00215588 0.00215808 0.00216028 0.00216249 0.00216469 0.00216689 0.00216909 0.00217129 0.0021735 0.0021757 0.0021779 0.0021801 0.00218231 0.00218451 0.00218671 0.00218891 0.00219112 0.00219332 0.00219552 0.00219772 0.00219992 0.00220213 0.00220433 0.00220653 0.00220873 0.00221094 0.00221314 0.00221534 0.00221754 0.00221974 0.00222195 0.00222415 0.00222635 0.00222855 0.00223076 0.00223296 0.00223516 +-0.000436056 -0.000414655 -0.000382522 -0.000291474 6.36095E-06 0.000594204 0.00127262 0.00175391 0.00193109 0.0019678 0.00197532 0.00197831 0.00198064 0.00198287 0.00198509 0.0019873 0.00198951 0.00199173 0.00199394 0.00199615 0.00199837 0.00200058 0.0020028 0.00200501 0.00200722 0.00200944 0.00201165 0.00201386 0.00201608 0.00201829 0.0020205 0.00202272 0.00202493 0.00202714 0.00202936 0.00203157 0.00203378 0.002036 0.00203821 0.00204043 0.00204264 0.00204485 0.00204707 0.00204928 0.00205149 0.00205371 0.00205592 0.00205813 0.00206035 0.00206256 0.00206477 0.00206699 0.0020692 0.00207141 0.00207363 0.00207584 0.00207806 0.00208027 0.00208248 0.0020847 0.00208691 0.00208912 0.00209134 0.00209355 0.00209576 0.00209798 0.00210019 0.0021024 0.00210462 0.00210683 0.00210904 0.00211126 0.00211347 0.00211568 0.0021179 0.00212011 0.00212233 0.00212454 0.00212675 0.00212897 0.00213118 0.00213339 0.00213561 0.00213782 0.00214003 0.00214225 0.00214446 0.00214667 0.00214889 0.0021511 0.00215331 0.00215553 0.00215774 0.00215996 0.00216217 0.00216438 0.0021666 0.00216881 0.00217102 0.00217324 0.00217545 0.00217766 0.00217988 0.00218209 0.0021843 0.00218652 0.00218873 0.00219094 0.00219316 0.00219537 0.00219759 0.0021998 0.00220201 0.00220423 0.00220644 0.00220865 0.00221087 0.00221308 0.00221529 0.00221751 0.00221972 0.00222193 0.00222415 0.00222636 0.00222857 0.00223079 0.002233 0.00223522 0.00223743 0.00223964 0.00224186 0.00224407 0.00224628 +-0.000438344 -0.000416822 -0.000384493 -0.00029287 6.41038E-06 0.000596183 0.00127692 0.00176116 0.00194024 0.00197743 0.00198504 0.00198806 0.0019904 0.00199264 0.00199487 0.00199709 0.00199932 0.00200154 0.00200377 0.00200599 0.00200822 0.00201044 0.00201267 0.00201489 0.00201712 0.00201934 0.00202156 0.00202379 0.00202601 0.00202824 0.00203046 0.00203269 0.00203491 0.00203714 0.00203936 0.00204159 0.00204381 0.00204604 0.00204826 0.00205049 0.00205271 0.00205494 0.00205716 0.00205939 0.00206161 0.00206384 0.00206606 0.00206829 0.00207051 0.00207273 0.00207496 0.00207718 0.00207941 0.00208163 0.00208386 0.00208608 0.00208831 0.00209053 0.00209276 0.00209498 0.00209721 0.00209943 0.00210166 0.00210388 0.00210611 0.00210833 0.00211056 0.00211278 0.00211501 0.00211723 0.00211946 0.00212168 0.00212391 0.00212613 0.00212835 0.00213058 0.0021328 0.00213503 0.00213725 0.00213948 0.0021417 0.00214393 0.00214615 0.00214838 0.0021506 0.00215283 0.00215505 0.00215728 0.0021595 0.00216173 0.00216395 0.00216618 0.0021684 0.00217063 0.00217285 0.00217508 0.0021773 0.00217953 0.00218175 0.00218397 0.0021862 0.00218842 0.00219065 0.00219287 0.0021951 0.00219732 0.00219955 0.00220177 0.002204 0.00220622 0.00220845 0.00221067 0.0022129 0.00221512 0.00221735 0.00221957 0.0022218 0.00222402 0.00222625 0.00222847 0.0022307 0.00223292 0.00223514 0.00223737 0.00223959 0.00224182 0.00224404 0.00224627 0.00224849 0.00225072 0.00225294 0.00225517 0.00225739 +-0.00044063 -0.000418989 -0.000386463 -0.000294264 6.45993E-06 0.000598153 0.00128121 0.00176839 0.00194937 0.00198705 0.00199475 0.00199779 0.00200014 0.0020024 0.00200464 0.00200687 0.00200911 0.00201134 0.00201358 0.00201582 0.00201805 0.00202029 0.00202252 0.00202476 0.002027 0.00202923 0.00203147 0.0020337 0.00203594 0.00203818 0.00204041 0.00204265 0.00204488 0.00204712 0.00204936 0.00205159 0.00205383 0.00205606 0.0020583 0.00206054 0.00206277 0.00206501 0.00206725 0.00206948 0.00207172 0.00207395 0.00207619 0.00207843 0.00208066 0.0020829 0.00208513 0.00208737 0.00208961 0.00209184 0.00209408 0.00209631 0.00209855 0.00210079 0.00210302 0.00210526 0.00210749 0.00210973 0.00211197 0.0021142 0.00211644 0.00211867 0.00212091 0.00212315 0.00212538 0.00212762 0.00212985 0.00213209 0.00213433 0.00213656 0.0021388 0.00214104 0.00214327 0.00214551 0.00214774 0.00214998 0.00215222 0.00215445 0.00215669 0.00215892 0.00216116 0.0021634 0.00216563 0.00216787 0.0021701 0.00217234 0.00217458 0.00217681 0.00217905 0.00218128 0.00218352 0.00218576 0.00218799 0.00219023 0.00219246 0.0021947 0.00219694 0.00219917 0.00220141 0.00220364 0.00220588 0.00220812 0.00221035 0.00221259 0.00221482 0.00221706 0.0022193 0.00222153 0.00222377 0.00222601 0.00222824 0.00223048 0.00223271 0.00223495 0.00223719 0.00223942 0.00224166 0.00224389 0.00224613 0.00224837 0.0022506 0.00225284 0.00225507 0.00225731 0.00225955 0.00226178 0.00226402 0.00226625 0.00226849 +-0.000442915 -0.000421155 -0.000388431 -0.000295657 6.50959E-06 0.000600116 0.00128547 0.00177558 0.00195848 0.00199666 0.00200445 0.00200751 0.00200988 0.00201214 0.00201439 0.00201664 0.00201889 0.00202113 0.00202338 0.00202563 0.00202788 0.00203012 0.00203237 0.00203462 0.00203687 0.00203911 0.00204136 0.00204361 0.00204586 0.0020481 0.00205035 0.0020526 0.00205484 0.00205709 0.00205934 0.00206159 0.00206383 0.00206608 0.00206833 0.00207058 0.00207282 0.00207507 0.00207732 0.00207956 0.00208181 0.00208406 0.00208631 0.00208855 0.0020908 0.00209305 0.0020953 0.00209754 0.00209979 0.00210204 0.00210429 0.00210653 0.00210878 0.00211103 0.00211327 0.00211552 0.00211777 0.00212002 0.00212226 0.00212451 0.00212676 0.00212901 0.00213125 0.0021335 0.00213575 0.00213799 0.00214024 0.00214249 0.00214474 0.00214698 0.00214923 0.00215148 0.00215373 0.00215597 0.00215822 0.00216047 0.00216272 0.00216496 0.00216721 0.00216946 0.0021717 0.00217395 0.0021762 0.00217845 0.00218069 0.00218294 0.00218519 0.00218744 0.00218968 0.00219193 0.00219418 0.00219642 0.00219867 0.00220092 0.00220317 0.00220541 0.00220766 0.00220991 0.00221216 0.0022144 0.00221665 0.0022189 0.00222115 0.00222339 0.00222564 0.00222789 0.00223013 0.00223238 0.00223463 0.00223688 0.00223912 0.00224137 0.00224362 0.00224587 0.00224811 0.00225036 0.00225261 0.00225485 0.0022571 0.00225935 0.0022616 0.00226384 0.00226609 0.00226834 0.00227059 0.00227283 0.00227508 0.00227733 0.00227958 +-0.0004452 -0.00042332 -0.000390398 -0.000297047 6.55938E-06 0.000602071 0.00128972 0.00178276 0.00196758 0.00200626 0.00201414 0.00201722 0.0020196 0.00202188 0.00202414 0.0020264 0.00202866 0.00203091 0.00203317 0.00203543 0.00203769 0.00203995 0.00204221 0.00204447 0.00204672 0.00204898 0.00205124 0.0020535 0.00205576 0.00205802 0.00206028 0.00206253 0.00206479 0.00206705 0.00206931 0.00207157 0.00207383 0.00207609 0.00207834 0.0020806 0.00208286 0.00208512 0.00208738 0.00208964 0.0020919 0.00209415 0.00209641 0.00209867 0.00210093 0.00210319 0.00210545 0.00210771 0.00210996 0.00211222 0.00211448 0.00211674 0.002119 0.00212126 0.00212351 0.00212577 0.00212803 0.00213029 0.00213255 0.00213481 0.00213707 0.00213932 0.00214158 0.00214384 0.0021461 0.00214836 0.00215062 0.00215288 0.00215513 0.00215739 0.00215965 0.00216191 0.00216417 0.00216643 0.00216869 0.00217094 0.0021732 0.00217546 0.00217772 0.00217998 0.00218224 0.0021845 0.00218675 0.00218901 0.00219127 0.00219353 0.00219579 0.00219805 0.00220031 0.00220256 0.00220482 0.00220708 0.00220934 0.0022116 0.00221386 0.00221612 0.00221837 0.00222063 0.00222289 0.00222515 0.00222741 0.00222967 0.00223193 0.00223418 0.00223644 0.0022387 0.00224096 0.00224322 0.00224548 0.00224773 0.00224999 0.00225225 0.00225451 0.00225677 0.00225903 0.00226129 0.00226354 0.0022658 0.00226806 0.00227032 0.00227258 0.00227484 0.0022771 0.00227935 0.00228161 0.00228387 0.00228613 0.00228839 0.00229065 +-0.000447483 -0.000425484 -0.000392364 -0.000298435 6.60927E-06 0.000604019 0.00129395 0.0017899 0.00197666 0.00201584 0.00202382 0.00202692 0.00202931 0.0020316 0.00203387 0.00203614 0.00203841 0.00204068 0.00204295 0.00204522 0.00204749 0.00204976 0.00205203 0.0020543 0.00205657 0.00205884 0.00206111 0.00206338 0.00206565 0.00206792 0.00207019 0.00207246 0.00207473 0.002077 0.00207927 0.00208154 0.00208381 0.00208608 0.00208835 0.00209062 0.00209289 0.00209516 0.00209743 0.0020997 0.00210197 0.00210424 0.00210651 0.00210878 0.00211105 0.00211332 0.00211559 0.00211786 0.00212012 0.00212239 0.00212466 0.00212693 0.0021292 0.00213147 0.00213374 0.00213601 0.00213828 0.00214055 0.00214282 0.00214509 0.00214736 0.00214963 0.0021519 0.00215417 0.00215644 0.00215871 0.00216098 0.00216325 0.00216552 0.00216779 0.00217006 0.00217233 0.0021746 0.00217687 0.00217914 0.00218141 0.00218368 0.00218595 0.00218822 0.00219049 0.00219276 0.00219503 0.0021973 0.00219957 0.00220184 0.00220411 0.00220638 0.00220865 0.00221092 0.00221319 0.00221546 0.00221773 0.00222 0.00222226 0.00222453 0.0022268 0.00222907 0.00223134 0.00223361 0.00223588 0.00223815 0.00224042 0.00224269 0.00224496 0.00224723 0.0022495 0.00225177 0.00225404 0.00225631 0.00225858 0.00226085 0.00226312 0.00226539 0.00226766 0.00226993 0.0022722 0.00227447 0.00227674 0.00227901 0.00228128 0.00228355 0.00228582 0.00228809 0.00229036 0.00229263 0.0022949 0.00229717 0.00229944 0.00230171 +-0.000449765 -0.000427647 -0.000394329 -0.000299821 6.65929E-06 0.000605958 0.00129815 0.00179702 0.00198572 0.00202541 0.00203348 0.00203661 0.00203901 0.00204131 0.0020436 0.00204588 0.00204816 0.00205044 0.00205272 0.002055 0.00205728 0.00205956 0.00206184 0.00206413 0.00206641 0.00206869 0.00207097 0.00207325 0.00207553 0.00207781 0.00208009 0.00208237 0.00208465 0.00208694 0.00208922 0.0020915 0.00209378 0.00209606 0.00209834 0.00210062 0.0021029 0.00210518 0.00210746 0.00210975 0.00211203 0.00211431 0.00211659 0.00211887 0.00212115 0.00212343 0.00212571 0.00212799 0.00213027 0.00213256 0.00213484 0.00213712 0.0021394 0.00214168 0.00214396 0.00214624 0.00214852 0.0021508 0.00215308 0.00215537 0.00215765 0.00215993 0.00216221 0.00216449 0.00216677 0.00216905 0.00217133 0.00217361 0.00217589 0.00217818 0.00218046 0.00218274 0.00218502 0.0021873 0.00218958 0.00219186 0.00219414 0.00219642 0.0021987 0.00220099 0.00220327 0.00220555 0.00220783 0.00221011 0.00221239 0.00221467 0.00221695 0.00221923 0.00222151 0.0022238 0.00222608 0.00222836 0.00223064 0.00223292 0.0022352 0.00223748 0.00223976 0.00224204 0.00224432 0.00224661 0.00224889 0.00225117 0.00225345 0.00225573 0.00225801 0.00226029 0.00226257 0.00226485 0.00226713 0.00226942 0.0022717 0.00227398 0.00227626 0.00227854 0.00228082 0.0022831 0.00228538 0.00228766 0.00228994 0.00229223 0.00229451 0.00229679 0.00229907 0.00230135 0.00230363 0.00230591 0.00230819 0.00231047 0.00231275 +-0.000452047 -0.000429808 -0.000396292 -0.000301205 6.70942E-06 0.00060789 0.00130234 0.00180411 0.00199476 0.00203497 0.00204313 0.00204629 0.0020487 0.00205101 0.00205331 0.0020556 0.00205789 0.00206019 0.00206248 0.00206477 0.00206706 0.00206935 0.00207165 0.00207394 0.00207623 0.00207852 0.00208082 0.00208311 0.0020854 0.00208769 0.00208998 0.00209228 0.00209457 0.00209686 0.00209915 0.00210145 0.00210374 0.00210603 0.00210832 0.00211061 0.00211291 0.0021152 0.00211749 0.00211978 0.00212208 0.00212437 0.00212666 0.00212895 0.00213124 0.00213354 0.00213583 0.00213812 0.00214041 0.0021427 0.002145 0.00214729 0.00214958 0.00215187 0.00215417 0.00215646 0.00215875 0.00216104 0.00216333 0.00216563 0.00216792 0.00217021 0.0021725 0.0021748 0.00217709 0.00217938 0.00218167 0.00218396 0.00218626 0.00218855 0.00219084 0.00219313 0.00219543 0.00219772 0.00220001 0.0022023 0.00220459 0.00220689 0.00220918 0.00221147 0.00221376 0.00221606 0.00221835 0.00222064 0.00222293 0.00222522 0.00222752 0.00222981 0.0022321 0.00223439 0.00223668 0.00223898 0.00224127 0.00224356 0.00224585 0.00224815 0.00225044 0.00225273 0.00225502 0.00225731 0.00225961 0.0022619 0.00226419 0.00226648 0.00226878 0.00227107 0.00227336 0.00227565 0.00227794 0.00228024 0.00228253 0.00228482 0.00228711 0.00228941 0.0022917 0.00229399 0.00229628 0.00229857 0.00230087 0.00230316 0.00230545 0.00230774 0.00231004 0.00231233 0.00231462 0.00231691 0.0023192 0.0023215 0.00232379 +-0.000454327 -0.000431969 -0.000398254 -0.000302588 6.75966E-06 0.000609814 0.00130651 0.00181118 0.00200379 0.00204452 0.00205278 0.00205595 0.00205838 0.0020607 0.00206301 0.00206531 0.00206762 0.00206992 0.00207222 0.00207453 0.00207683 0.00207913 0.00208144 0.00208374 0.00208604 0.00208835 0.00209065 0.00209295 0.00209526 0.00209756 0.00209986 0.00210217 0.00210447 0.00210677 0.00210908 0.00211138 0.00211368 0.00211599 0.00211829 0.00212059 0.0021229 0.0021252 0.00212751 0.00212981 0.00213211 0.00213442 0.00213672 0.00213902 0.00214133 0.00214363 0.00214593 0.00214824 0.00215054 0.00215284 0.00215515 0.00215745 0.00215975 0.00216206 0.00216436 0.00216666 0.00216897 0.00217127 0.00217357 0.00217588 0.00217818 0.00218048 0.00218279 0.00218509 0.00218739 0.0021897 0.002192 0.0021943 0.00219661 0.00219891 0.00220121 0.00220352 0.00220582 0.00220812 0.00221043 0.00221273 0.00221503 0.00221734 0.00221964 0.00222194 0.00222425 0.00222655 0.00222885 0.00223116 0.00223346 0.00223576 0.00223807 0.00224037 0.00224267 0.00224498 0.00224728 0.00224959 0.00225189 0.00225419 0.0022565 0.0022588 0.0022611 0.00226341 0.00226571 0.00226801 0.00227032 0.00227262 0.00227492 0.00227723 0.00227953 0.00228183 0.00228414 0.00228644 0.00228874 0.00229105 0.00229335 0.00229565 0.00229796 0.00230026 0.00230256 0.00230487 0.00230717 0.00230947 0.00231178 0.00231408 0.00231638 0.00231869 0.00232099 0.00232329 0.0023256 0.0023279 0.0023302 0.00233251 0.00233481 +-0.000456607 -0.000434129 -0.000400215 -0.000303968 6.81001E-06 0.000611731 0.00131066 0.00181822 0.0020128 0.00205406 0.00206241 0.00206561 0.00206805 0.00207038 0.0020727 0.00207501 0.00207733 0.00207964 0.00208196 0.00208427 0.00208659 0.0020889 0.00209122 0.00209353 0.00209585 0.00209816 0.00210047 0.00210279 0.0021051 0.00210742 0.00210973 0.00211205 0.00211436 0.00211668 0.00211899 0.00212131 0.00212362 0.00212594 0.00212825 0.00213056 0.00213288 0.00213519 0.00213751 0.00213982 0.00214214 0.00214445 0.00214677 0.00214908 0.0021514 0.00215371 0.00215602 0.00215834 0.00216065 0.00216297 0.00216528 0.0021676 0.00216991 0.00217223 0.00217454 0.00217686 0.00217917 0.00218149 0.0021838 0.00218611 0.00218843 0.00219074 0.00219306 0.00219537 0.00219769 0.0022 0.00220232 0.00220463 0.00220695 0.00220926 0.00221157 0.00221389 0.0022162 0.00221852 0.00222083 0.00222315 0.00222546 0.00222778 0.00223009 0.00223241 0.00223472 0.00223704 0.00223935 0.00224166 0.00224398 0.00224629 0.00224861 0.00225092 0.00225324 0.00225555 0.00225787 0.00226018 0.0022625 0.00226481 0.00226712 0.00226944 0.00227175 0.00227407 0.00227638 0.0022787 0.00228101 0.00228333 0.00228564 0.00228796 0.00229027 0.00229258 0.0022949 0.00229721 0.00229953 0.00230184 0.00230416 0.00230647 0.00230879 0.0023111 0.00231342 0.00231573 0.00231805 0.00232036 0.00232267 0.00232499 0.0023273 0.00232962 0.00233193 0.00233425 0.00233656 0.00233888 0.00234119 0.00234351 0.00234582 +-0.000458885 -0.000436288 -0.000402175 -0.000305346 6.86048E-06 0.00061364 0.00131479 0.00182524 0.0020218 0.00206358 0.00207202 0.00207525 0.0020777 0.00208005 0.00208238 0.0020847 0.00208703 0.00208936 0.00209168 0.00209401 0.00209633 0.00209866 0.00210098 0.00210331 0.00210564 0.00210796 0.00211029 0.00211261 0.00211494 0.00211726 0.00211959 0.00212192 0.00212424 0.00212657 0.00212889 0.00213122 0.00213355 0.00213587 0.0021382 0.00214052 0.00214285 0.00214517 0.0021475 0.00214983 0.00215215 0.00215448 0.0021568 0.00215913 0.00216145 0.00216378 0.00216611 0.00216843 0.00217076 0.00217308 0.00217541 0.00217773 0.00218006 0.00218239 0.00218471 0.00218704 0.00218936 0.00219169 0.00219401 0.00219634 0.00219867 0.00220099 0.00220332 0.00220564 0.00220797 0.0022103 0.00221262 0.00221495 0.00221727 0.0022196 0.00222192 0.00222425 0.00222658 0.0022289 0.00223123 0.00223355 0.00223588 0.0022382 0.00224053 0.00224286 0.00224518 0.00224751 0.00224983 0.00225216 0.00225448 0.00225681 0.00225914 0.00226146 0.00226379 0.00226611 0.00226844 0.00227076 0.00227309 0.00227542 0.00227774 0.00228007 0.00228239 0.00228472 0.00228704 0.00228937 0.0022917 0.00229402 0.00229635 0.00229867 0.002301 0.00230333 0.00230565 0.00230798 0.0023103 0.00231263 0.00231495 0.00231728 0.00231961 0.00232193 0.00232426 0.00232658 0.00232891 0.00233123 0.00233356 0.00233589 0.00233821 0.00234054 0.00234286 0.00234519 0.00234751 0.00234984 0.00235217 0.00235449 0.00235682 +-0.000461163 -0.000438446 -0.000404133 -0.000306722 6.91107E-06 0.000615542 0.0013189 0.00183222 0.00203077 0.00207309 0.00208163 0.00208488 0.00208735 0.00208971 0.00209205 0.00209438 0.00209672 0.00209906 0.00210139 0.00210373 0.00210607 0.0021084 0.00211074 0.00211308 0.00211542 0.00211775 0.00212009 0.00212243 0.00212476 0.0021271 0.00212944 0.00213177 0.00213411 0.00213645 0.00213878 0.00214112 0.00214346 0.0021458 0.00214813 0.00215047 0.00215281 0.00215514 0.00215748 0.00215982 0.00216215 0.00216449 0.00216683 0.00216916 0.0021715 0.00217384 0.00217618 0.00217851 0.00218085 0.00218319 0.00218552 0.00218786 0.0021902 0.00219253 0.00219487 0.00219721 0.00219954 0.00220188 0.00220422 0.00220656 0.00220889 0.00221123 0.00221357 0.0022159 0.00221824 0.00222058 0.00222291 0.00222525 0.00222759 0.00222992 0.00223226 0.0022346 0.00223694 0.00223927 0.00224161 0.00224395 0.00224628 0.00224862 0.00225096 0.00225329 0.00225563 0.00225797 0.0022603 0.00226264 0.00226498 0.00226732 0.00226965 0.00227199 0.00227433 0.00227666 0.002279 0.00228134 0.00228367 0.00228601 0.00228835 0.00229068 0.00229302 0.00229536 0.00229769 0.00230003 0.00230237 0.00230471 0.00230704 0.00230938 0.00231172 0.00231405 0.00231639 0.00231873 0.00232106 0.0023234 0.00232574 0.00232807 0.00233041 0.00233275 0.00233509 0.00233742 0.00233976 0.0023421 0.00234443 0.00234677 0.00234911 0.00235144 0.00235378 0.00235612 0.00235845 0.00236079 0.00236313 0.00236547 0.0023678 +-0.000463439 -0.000440602 -0.00040609 -0.000308096 6.96176E-06 0.000617436 0.001323 0.00183919 0.00203973 0.00208259 0.00209123 0.0020945 0.00209698 0.00209935 0.0021017 0.00210405 0.0021064 0.00210875 0.0021111 0.00211344 0.00211579 0.00211814 0.00212049 0.00212284 0.00212518 0.00212753 0.00212988 0.00213223 0.00213458 0.00213692 0.00213927 0.00214162 0.00214397 0.00214632 0.00214866 0.00215101 0.00215336 0.00215571 0.00215806 0.0021604 0.00216275 0.0021651 0.00216745 0.0021698 0.00217214 0.00217449 0.00217684 0.00217919 0.00218154 0.00218389 0.00218623 0.00218858 0.00219093 0.00219328 0.00219563 0.00219797 0.00220032 0.00220267 0.00220502 0.00220737 0.00220971 0.00221206 0.00221441 0.00221676 0.00221911 0.00222145 0.0022238 0.00222615 0.0022285 0.00223085 0.00223319 0.00223554 0.00223789 0.00224024 0.00224259 0.00224494 0.00224728 0.00224963 0.00225198 0.00225433 0.00225668 0.00225902 0.00226137 0.00226372 0.00226607 0.00226842 0.00227076 0.00227311 0.00227546 0.00227781 0.00228016 0.0022825 0.00228485 0.0022872 0.00228955 0.0022919 0.00229424 0.00229659 0.00229894 0.00230129 0.00230364 0.00230598 0.00230833 0.00231068 0.00231303 0.00231538 0.00231773 0.00232007 0.00232242 0.00232477 0.00232712 0.00232947 0.00233181 0.00233416 0.00233651 0.00233886 0.00234121 0.00234355 0.0023459 0.00234825 0.0023506 0.00235295 0.00235529 0.00235764 0.00235999 0.00236234 0.00236469 0.00236703 0.00236938 0.00237173 0.00237408 0.00237643 0.00237878 +-0.000465715 -0.000442758 -0.000408046 -0.000309468 7.01257E-06 0.000619323 0.00132707 0.00184613 0.00204867 0.00209207 0.00210082 0.00210411 0.00210661 0.00210899 0.00211135 0.00211371 0.00211607 0.00211843 0.00212079 0.00212314 0.0021255 0.00212786 0.00213022 0.00213258 0.00213494 0.0021373 0.00213966 0.00214202 0.00214438 0.00214674 0.0021491 0.00215146 0.00215381 0.00215617 0.00215853 0.00216089 0.00216325 0.00216561 0.00216797 0.00217033 0.00217269 0.00217505 0.00217741 0.00217977 0.00218212 0.00218448 0.00218684 0.0021892 0.00219156 0.00219392 0.00219628 0.00219864 0.002201 0.00220336 0.00220572 0.00220808 0.00221044 0.00221279 0.00221515 0.00221751 0.00221987 0.00222223 0.00222459 0.00222695 0.00222931 0.00223167 0.00223403 0.00223639 0.00223875 0.00224111 0.00224346 0.00224582 0.00224818 0.00225054 0.0022529 0.00225526 0.00225762 0.00225998 0.00226234 0.0022647 0.00226706 0.00226942 0.00227177 0.00227413 0.00227649 0.00227885 0.00228121 0.00228357 0.00228593 0.00228829 0.00229065 0.00229301 0.00229537 0.00229773 0.00230009 0.00230244 0.0023048 0.00230716 0.00230952 0.00231188 0.00231424 0.0023166 0.00231896 0.00232132 0.00232368 0.00232604 0.0023284 0.00233076 0.00233311 0.00233547 0.00233783 0.00234019 0.00234255 0.00234491 0.00234727 0.00234963 0.00235199 0.00235435 0.00235671 0.00235907 0.00236142 0.00236378 0.00236614 0.0023685 0.00237086 0.00237322 0.00237558 0.00237794 0.0023803 0.00238266 0.00238502 0.00238738 0.00238974 +-0.000467989 -0.000444913 -0.000410001 -0.000310838 7.06349E-06 0.000621202 0.00133113 0.00185304 0.0020576 0.00210155 0.00211039 0.00211371 0.00211622 0.00211861 0.00212098 0.00212335 0.00212572 0.00212809 0.00213046 0.00213283 0.00213521 0.00213758 0.00213995 0.00214232 0.00214469 0.00214706 0.00214943 0.0021518 0.00215417 0.00215654 0.00215891 0.00216128 0.00216365 0.00216602 0.00216839 0.00217076 0.00217313 0.0021755 0.00217787 0.00218024 0.00218261 0.00218498 0.00218735 0.00218972 0.00219209 0.00219446 0.00219683 0.0021992 0.00220157 0.00220395 0.00220632 0.00220869 0.00221106 0.00221343 0.0022158 0.00221817 0.00222054 0.00222291 0.00222528 0.00222765 0.00223002 0.00223239 0.00223476 0.00223713 0.0022395 0.00224187 0.00224424 0.00224661 0.00224898 0.00225135 0.00225372 0.00225609 0.00225846 0.00226083 0.0022632 0.00226557 0.00226794 0.00227031 0.00227268 0.00227506 0.00227743 0.0022798 0.00228217 0.00228454 0.00228691 0.00228928 0.00229165 0.00229402 0.00229639 0.00229876 0.00230113 0.0023035 0.00230587 0.00230824 0.00231061 0.00231298 0.00231535 0.00231772 0.00232009 0.00232246 0.00232483 0.0023272 0.00232957 0.00233194 0.00233431 0.00233668 0.00233905 0.00234142 0.0023438 0.00234617 0.00234854 0.00235091 0.00235328 0.00235565 0.00235802 0.00236039 0.00236276 0.00236513 0.0023675 0.00236987 0.00237224 0.00237461 0.00237698 0.00237935 0.00238172 0.00238409 0.00238646 0.00238883 0.0023912 0.00239357 0.00239594 0.00239831 0.00240068 +-0.000470263 -0.000447067 -0.000411954 -0.000312206 7.11452E-06 0.000623075 0.00133517 0.00185993 0.00206651 0.00211101 0.00211995 0.0021233 0.00212582 0.00212822 0.00213061 0.00213299 0.00213537 0.00213775 0.00214013 0.00214251 0.0021449 0.00214728 0.00214966 0.00215204 0.00215442 0.0021568 0.00215918 0.00216157 0.00216395 0.00216633 0.00216871 0.00217109 0.00217347 0.00217585 0.00217824 0.00218062 0.002183 0.00218538 0.00218776 0.00219014 0.00219252 0.00219491 0.00219729 0.00219967 0.00220205 0.00220443 0.00220681 0.0022092 0.00221158 0.00221396 0.00221634 0.00221872 0.0022211 0.00222348 0.00222587 0.00222825 0.00223063 0.00223301 0.00223539 0.00223777 0.00224015 0.00224254 0.00224492 0.0022473 0.00224968 0.00225206 0.00225444 0.00225682 0.00225921 0.00226159 0.00226397 0.00226635 0.00226873 0.00227111 0.00227349 0.00227588 0.00227826 0.00228064 0.00228302 0.0022854 0.00228778 0.00229016 0.00229255 0.00229493 0.00229731 0.00229969 0.00230207 0.00230445 0.00230683 0.00230922 0.0023116 0.00231398 0.00231636 0.00231874 0.00232112 0.00232351 0.00232589 0.00232827 0.00233065 0.00233303 0.00233541 0.00233779 0.00234018 0.00234256 0.00234494 0.00234732 0.0023497 0.00235208 0.00235446 0.00235685 0.00235923 0.00236161 0.00236399 0.00236637 0.00236875 0.00237113 0.00237352 0.0023759 0.00237828 0.00238066 0.00238304 0.00238542 0.0023878 0.00239019 0.00239257 0.00239495 0.00239733 0.00239971 0.00240209 0.00240447 0.00240686 0.00240924 0.00241162 +-0.000472536 -0.00044922 -0.000413906 -0.000313573 7.16566E-06 0.00062494 0.00133919 0.00186679 0.0020754 0.00212046 0.00212951 0.00213288 0.00213541 0.00213782 0.00214022 0.00214261 0.002145 0.0021474 0.00214979 0.00215218 0.00215458 0.00215697 0.00215936 0.00216175 0.00216415 0.00216654 0.00216893 0.00217132 0.00217372 0.00217611 0.0021785 0.00218089 0.00218329 0.00218568 0.00218807 0.00219046 0.00219286 0.00219525 0.00219764 0.00220003 0.00220243 0.00220482 0.00220721 0.0022096 0.002212 0.00221439 0.00221678 0.00221917 0.00222157 0.00222396 0.00222635 0.00222874 0.00223114 0.00223353 0.00223592 0.00223831 0.00224071 0.0022431 0.00224549 0.00224789 0.00225028 0.00225267 0.00225506 0.00225746 0.00225985 0.00226224 0.00226463 0.00226703 0.00226942 0.00227181 0.0022742 0.0022766 0.00227899 0.00228138 0.00228377 0.00228617 0.00228856 0.00229095 0.00229334 0.00229574 0.00229813 0.00230052 0.00230291 0.00230531 0.0023077 0.00231009 0.00231248 0.00231488 0.00231727 0.00231966 0.00232205 0.00232445 0.00232684 0.00232923 0.00233163 0.00233402 0.00233641 0.0023388 0.0023412 0.00234359 0.00234598 0.00234837 0.00235077 0.00235316 0.00235555 0.00235794 0.00236034 0.00236273 0.00236512 0.00236751 0.00236991 0.0023723 0.00237469 0.00237708 0.00237948 0.00238187 0.00238426 0.00238665 0.00238905 0.00239144 0.00239383 0.00239622 0.00239862 0.00240101 0.0024034 0.00240579 0.00240819 0.00241058 0.00241297 0.00241537 0.00241776 0.00242015 0.00242254 +-0.000474807 -0.000451372 -0.000415857 -0.000314937 7.21691E-06 0.000626798 0.0013432 0.00187363 0.00208427 0.0021299 0.00213905 0.00214244 0.00214499 0.00214741 0.00214982 0.00215223 0.00215463 0.00215703 0.00215944 0.00216184 0.00216424 0.00216665 0.00216905 0.00217145 0.00217386 0.00217626 0.00217867 0.00218107 0.00218347 0.00218588 0.00218828 0.00219068 0.00219309 0.00219549 0.00219789 0.0022003 0.0022027 0.00220511 0.00220751 0.00220991 0.00221232 0.00221472 0.00221712 0.00221953 0.00222193 0.00222434 0.00222674 0.00222914 0.00223155 0.00223395 0.00223635 0.00223876 0.00224116 0.00224356 0.00224597 0.00224837 0.00225078 0.00225318 0.00225558 0.00225799 0.00226039 0.00226279 0.0022652 0.0022676 0.00227 0.00227241 0.00227481 0.00227722 0.00227962 0.00228202 0.00228443 0.00228683 0.00228923 0.00229164 0.00229404 0.00229645 0.00229885 0.00230125 0.00230366 0.00230606 0.00230846 0.00231087 0.00231327 0.00231567 0.00231808 0.00232048 0.00232289 0.00232529 0.00232769 0.0023301 0.0023325 0.0023349 0.00233731 0.00233971 0.00234211 0.00234452 0.00234692 0.00234933 0.00235173 0.00235413 0.00235654 0.00235894 0.00236134 0.00236375 0.00236615 0.00236856 0.00237096 0.00237336 0.00237577 0.00237817 0.00238057 0.00238298 0.00238538 0.00238778 0.00239019 0.00239259 0.002395 0.0023974 0.0023998 0.00240221 0.00240461 0.00240701 0.00240942 0.00241182 0.00241422 0.00241663 0.00241903 0.00242144 0.00242384 0.00242624 0.00242865 0.00243105 0.00243345 +-0.000477078 -0.000453523 -0.000417807 -0.000316299 7.26827E-06 0.000628648 0.00134718 0.00188044 0.00209313 0.00213933 0.00214858 0.002152 0.00215456 0.00215699 0.00215941 0.00216183 0.00216424 0.00216666 0.00216907 0.00217149 0.0021739 0.00217632 0.00217873 0.00218115 0.00218356 0.00218597 0.00218839 0.0021908 0.00219322 0.00219563 0.00219805 0.00220046 0.00220288 0.00220529 0.00220771 0.00221012 0.00221254 0.00221495 0.00221737 0.00221978 0.0022222 0.00222461 0.00222703 0.00222944 0.00223186 0.00223427 0.00223668 0.0022391 0.00224151 0.00224393 0.00224634 0.00224876 0.00225117 0.00225359 0.002256 0.00225842 0.00226083 0.00226325 0.00226566 0.00226808 0.00227049 0.00227291 0.00227532 0.00227774 0.00228015 0.00228256 0.00228498 0.00228739 0.00228981 0.00229222 0.00229464 0.00229705 0.00229947 0.00230188 0.0023043 0.00230671 0.00230913 0.00231154 0.00231396 0.00231637 0.00231879 0.0023212 0.00232362 0.00232603 0.00232845 0.00233086 0.00233327 0.00233569 0.0023381 0.00234052 0.00234293 0.00234535 0.00234776 0.00235018 0.00235259 0.00235501 0.00235742 0.00235984 0.00236225 0.00236467 0.00236708 0.0023695 0.00237191 0.00237433 0.00237674 0.00237916 0.00238157 0.00238398 0.0023864 0.00238881 0.00239123 0.00239364 0.00239606 0.00239847 0.00240089 0.0024033 0.00240572 0.00240813 0.00241055 0.00241296 0.00241538 0.00241779 0.00242021 0.00242262 0.00242504 0.00242745 0.00242987 0.00243228 0.00243469 0.00243711 0.00243952 0.00244194 0.00244435 +-0.000479348 -0.000455673 -0.000419755 -0.000317659 7.31974E-06 0.000630492 0.00135115 0.00188722 0.00210197 0.00214874 0.0021581 0.00216154 0.00216412 0.00216656 0.00216899 0.00217142 0.00217384 0.00217627 0.0021787 0.00218112 0.00218355 0.00218597 0.0021884 0.00219083 0.00219325 0.00219568 0.0021981 0.00220053 0.00220295 0.00220538 0.00220781 0.00221023 0.00221266 0.00221508 0.00221751 0.00221994 0.00222236 0.00222479 0.00222721 0.00222964 0.00223206 0.00223449 0.00223692 0.00223934 0.00224177 0.00224419 0.00224662 0.00224905 0.00225147 0.0022539 0.00225632 0.00225875 0.00226117 0.0022636 0.00226603 0.00226845 0.00227088 0.0022733 0.00227573 0.00227816 0.00228058 0.00228301 0.00228543 0.00228786 0.00229028 0.00229271 0.00229514 0.00229756 0.00229999 0.00230241 0.00230484 0.00230727 0.00230969 0.00231212 0.00231454 0.00231697 0.00231939 0.00232182 0.00232425 0.00232667 0.0023291 0.00233152 0.00233395 0.00233638 0.0023388 0.00234123 0.00234365 0.00234608 0.0023485 0.00235093 0.00235336 0.00235578 0.00235821 0.00236063 0.00236306 0.00236549 0.00236791 0.00237034 0.00237276 0.00237519 0.00237761 0.00238004 0.00238247 0.00238489 0.00238732 0.00238974 0.00239217 0.0023946 0.00239702 0.00239945 0.00240187 0.0024043 0.00240672 0.00240915 0.00241158 0.002414 0.00241643 0.00241885 0.00242128 0.00242371 0.00242613 0.00242856 0.00243098 0.00243341 0.00243583 0.00243826 0.00244069 0.00244311 0.00244554 0.00244796 0.00245039 0.00245282 0.00245524 +-0.000481617 -0.000457822 -0.000421702 -0.000319017 7.37132E-06 0.000632329 0.0013551 0.00189398 0.00211079 0.00215814 0.00216761 0.00217108 0.00217366 0.00217612 0.00217856 0.002181 0.00218344 0.00218587 0.00218831 0.00219075 0.00219318 0.00219562 0.00219806 0.00220049 0.00220293 0.00220537 0.0022078 0.00221024 0.00221268 0.00221512 0.00221755 0.00221999 0.00222243 0.00222486 0.0022273 0.00222974 0.00223217 0.00223461 0.00223705 0.00223948 0.00224192 0.00224436 0.0022468 0.00224923 0.00225167 0.00225411 0.00225654 0.00225898 0.00226142 0.00226385 0.00226629 0.00226873 0.00227116 0.0022736 0.00227604 0.00227847 0.00228091 0.00228335 0.00228579 0.00228822 0.00229066 0.0022931 0.00229553 0.00229797 0.00230041 0.00230284 0.00230528 0.00230772 0.00231015 0.00231259 0.00231503 0.00231747 0.0023199 0.00232234 0.00232478 0.00232721 0.00232965 0.00233209 0.00233452 0.00233696 0.0023394 0.00234183 0.00234427 0.00234671 0.00234915 0.00235158 0.00235402 0.00235646 0.00235889 0.00236133 0.00236377 0.0023662 0.00236864 0.00237108 0.00237351 0.00237595 0.00237839 0.00238082 0.00238326 0.0023857 0.00238814 0.00239057 0.00239301 0.00239545 0.00239788 0.00240032 0.00240276 0.00240519 0.00240763 0.00241007 0.0024125 0.00241494 0.00241738 0.00241982 0.00242225 0.00242469 0.00242713 0.00242956 0.002432 0.00243444 0.00243687 0.00243931 0.00244175 0.00244418 0.00244662 0.00244906 0.00245149 0.00245393 0.00245637 0.00245881 0.00246124 0.00246368 0.00246612 +-0.000483885 -0.00045997 -0.000423648 -0.000320373 7.42301E-06 0.000634159 0.00135904 0.00190072 0.00211959 0.00216753 0.0021771 0.0021806 0.0021832 0.00218567 0.00218812 0.00219057 0.00219302 0.00219546 0.00219791 0.00220036 0.00220281 0.00220526 0.0022077 0.00221015 0.0022126 0.00221505 0.0022175 0.00221994 0.00222239 0.00222484 0.00222729 0.00222974 0.00223218 0.00223463 0.00223708 0.00223953 0.00224198 0.00224442 0.00224687 0.00224932 0.00225177 0.00225422 0.00225666 0.00225911 0.00226156 0.00226401 0.00226646 0.0022689 0.00227135 0.0022738 0.00227625 0.0022787 0.00228114 0.00228359 0.00228604 0.00228849 0.00229093 0.00229338 0.00229583 0.00229828 0.00230073 0.00230317 0.00230562 0.00230807 0.00231052 0.00231297 0.00231541 0.00231786 0.00232031 0.00232276 0.00232521 0.00232765 0.0023301 0.00233255 0.002335 0.00233745 0.00233989 0.00234234 0.00234479 0.00234724 0.00234969 0.00235213 0.00235458 0.00235703 0.00235948 0.00236193 0.00236437 0.00236682 0.00236927 0.00237172 0.00237417 0.00237661 0.00237906 0.00238151 0.00238396 0.00238641 0.00238885 0.0023913 0.00239375 0.0023962 0.00239864 0.00240109 0.00240354 0.00240599 0.00240844 0.00241088 0.00241333 0.00241578 0.00241823 0.00242068 0.00242312 0.00242557 0.00242802 0.00243047 0.00243292 0.00243536 0.00243781 0.00244026 0.00244271 0.00244516 0.0024476 0.00245005 0.0024525 0.00245495 0.0024574 0.00245984 0.00246229 0.00246474 0.00246719 0.00246964 0.00247208 0.00247453 0.00247698 +-0.000486152 -0.000462117 -0.000425593 -0.000321727 7.4748E-06 0.000635981 0.00136295 0.00190743 0.00212838 0.00217691 0.00218659 0.00219011 0.00219272 0.00219521 0.00219767 0.00220013 0.00220259 0.00220505 0.0022075 0.00220996 0.00221242 0.00221488 0.00221734 0.0022198 0.00222226 0.00222472 0.00222718 0.00222964 0.00223209 0.00223455 0.00223701 0.00223947 0.00224193 0.00224439 0.00224685 0.00224931 0.00225177 0.00225423 0.00225668 0.00225914 0.0022616 0.00226406 0.00226652 0.00226898 0.00227144 0.0022739 0.00227636 0.00227882 0.00228127 0.00228373 0.00228619 0.00228865 0.00229111 0.00229357 0.00229603 0.00229849 0.00230095 0.00230341 0.00230586 0.00230832 0.00231078 0.00231324 0.0023157 0.00231816 0.00232062 0.00232308 0.00232554 0.002328 0.00233045 0.00233291 0.00233537 0.00233783 0.00234029 0.00234275 0.00234521 0.00234767 0.00235013 0.00235259 0.00235504 0.0023575 0.00235996 0.00236242 0.00236488 0.00236734 0.0023698 0.00237226 0.00237472 0.00237718 0.00237963 0.00238209 0.00238455 0.00238701 0.00238947 0.00239193 0.00239439 0.00239685 0.00239931 0.00240177 0.00240422 0.00240668 0.00240914 0.0024116 0.00241406 0.00241652 0.00241898 0.00242144 0.0024239 0.00242636 0.00242881 0.00243127 0.00243373 0.00243619 0.00243865 0.00244111 0.00244357 0.00244603 0.00244849 0.00245095 0.0024534 0.00245586 0.00245832 0.00246078 0.00246324 0.0024657 0.00246816 0.00247062 0.00247308 0.00247554 0.00247799 0.00248045 0.00248291 0.00248537 0.00248783 +-0.000488418 -0.000464263 -0.000427536 -0.00032308 7.5267E-06 0.000637797 0.00136685 0.00191412 0.00213715 0.00218628 0.00219607 0.00219961 0.00220224 0.00220473 0.00220721 0.00220968 0.00221215 0.00221462 0.00221709 0.00221956 0.00222203 0.0022245 0.00222697 0.00222944 0.00223191 0.00223438 0.00223685 0.00223932 0.00224179 0.00224426 0.00224673 0.0022492 0.00225167 0.00225414 0.00225661 0.00225908 0.00226155 0.00226402 0.00226649 0.00226896 0.00227143 0.0022739 0.00227637 0.00227884 0.00228131 0.00228378 0.00228625 0.00228872 0.00229119 0.00229366 0.00229613 0.0022986 0.00230107 0.00230354 0.00230601 0.00230848 0.00231095 0.00231342 0.00231589 0.00231836 0.00232083 0.0023233 0.00232577 0.00232824 0.00233071 0.00233318 0.00233565 0.00233812 0.00234059 0.00234306 0.00234553 0.002348 0.00235047 0.00235294 0.00235541 0.00235788 0.00236035 0.00236282 0.00236529 0.00236776 0.00237023 0.0023727 0.00237517 0.00237764 0.00238011 0.00238258 0.00238505 0.00238752 0.00238999 0.00239246 0.00239493 0.0023974 0.00239987 0.00240234 0.00240481 0.00240728 0.00240975 0.00241222 0.00241469 0.00241716 0.00241963 0.0024221 0.00242457 0.00242704 0.00242951 0.00243198 0.00243445 0.00243692 0.00243939 0.00244186 0.00244433 0.0024468 0.00244927 0.00245174 0.00245421 0.00245668 0.00245915 0.00246162 0.00246409 0.00246656 0.00246903 0.0024715 0.00247397 0.00247644 0.00247891 0.00248138 0.00248385 0.00248632 0.00248879 0.00249126 0.00249373 0.0024962 0.00249867 +-0.000490683 -0.000466408 -0.000429478 -0.00032443 7.57871E-06 0.000639606 0.00137073 0.00192078 0.0021459 0.00219563 0.00220553 0.0022091 0.00221174 0.00221425 0.00221673 0.00221921 0.00222169 0.00222418 0.00222666 0.00222914 0.00223162 0.0022341 0.00223658 0.00223906 0.00224154 0.00224402 0.00224651 0.00224899 0.00225147 0.00225395 0.00225643 0.00225891 0.00226139 0.00226387 0.00226635 0.00226883 0.00227132 0.0022738 0.00227628 0.00227876 0.00228124 0.00228372 0.0022862 0.00228868 0.00229116 0.00229365 0.00229613 0.00229861 0.00230109 0.00230357 0.00230605 0.00230853 0.00231101 0.00231349 0.00231597 0.00231846 0.00232094 0.00232342 0.0023259 0.00232838 0.00233086 0.00233334 0.00233582 0.0023383 0.00234079 0.00234327 0.00234575 0.00234823 0.00235071 0.00235319 0.00235567 0.00235815 0.00236063 0.00236312 0.0023656 0.00236808 0.00237056 0.00237304 0.00237552 0.002378 0.00238048 0.00238296 0.00238544 0.00238793 0.00239041 0.00239289 0.00239537 0.00239785 0.00240033 0.00240281 0.00240529 0.00240777 0.00241026 0.00241274 0.00241522 0.0024177 0.00242018 0.00242266 0.00242514 0.00242762 0.0024301 0.00243258 0.00243507 0.00243755 0.00244003 0.00244251 0.00244499 0.00244747 0.00244995 0.00245243 0.00245491 0.0024574 0.00245988 0.00246236 0.00246484 0.00246732 0.0024698 0.00247228 0.00247476 0.00247724 0.00247972 0.00248221 0.00248469 0.00248717 0.00248965 0.00249213 0.00249461 0.00249709 0.00249957 0.00250205 0.00250454 0.00250702 0.0025095 +-0.000492947 -0.000468552 -0.000431419 -0.000325778 7.63083E-06 0.000641409 0.0013746 0.00192742 0.00215464 0.00220498 0.00221499 0.00221858 0.00222124 0.00222375 0.00222625 0.00222874 0.00223123 0.00223372 0.00223622 0.00223871 0.0022412 0.00224369 0.00224619 0.00224868 0.00225117 0.00225366 0.00225615 0.00225865 0.00226114 0.00226363 0.00226612 0.00226861 0.00227111 0.0022736 0.00227609 0.00227858 0.00228107 0.00228357 0.00228606 0.00228855 0.00229104 0.00229353 0.00229603 0.00229852 0.00230101 0.0023035 0.00230599 0.00230849 0.00231098 0.00231347 0.00231596 0.00231846 0.00232095 0.00232344 0.00232593 0.00232842 0.00233092 0.00233341 0.0023359 0.00233839 0.00234088 0.00234338 0.00234587 0.00234836 0.00235085 0.00235334 0.00235584 0.00235833 0.00236082 0.00236331 0.0023658 0.0023683 0.00237079 0.00237328 0.00237577 0.00237826 0.00238076 0.00238325 0.00238574 0.00238823 0.00239073 0.00239322 0.00239571 0.0023982 0.00240069 0.00240319 0.00240568 0.00240817 0.00241066 0.00241315 0.00241565 0.00241814 0.00242063 0.00242312 0.00242561 0.00242811 0.0024306 0.00243309 0.00243558 0.00243807 0.00244057 0.00244306 0.00244555 0.00244804 0.00245054 0.00245303 0.00245552 0.00245801 0.0024605 0.002463 0.00246549 0.00246798 0.00247047 0.00247296 0.00247546 0.00247795 0.00248044 0.00248293 0.00248542 0.00248792 0.00249041 0.0024929 0.00249539 0.00249788 0.00250038 0.00250287 0.00250536 0.00250785 0.00251034 0.00251284 0.00251533 0.00251782 0.00252031 +-0.00049521 -0.000470695 -0.000433359 -0.000327124 7.68305E-06 0.000643204 0.00137845 0.00193403 0.00216336 0.00221431 0.00222443 0.00222805 0.00223072 0.00223325 0.00223575 0.00223826 0.00224076 0.00224326 0.00224577 0.00224827 0.00225077 0.00225328 0.00225578 0.00225828 0.00226078 0.00226329 0.00226579 0.00226829 0.0022708 0.0022733 0.0022758 0.00227831 0.00228081 0.00228331 0.00228582 0.00228832 0.00229082 0.00229332 0.00229583 0.00229833 0.00230083 0.00230334 0.00230584 0.00230834 0.00231085 0.00231335 0.00231585 0.00231836 0.00232086 0.00232336 0.00232586 0.00232837 0.00233087 0.00233337 0.00233588 0.00233838 0.00234088 0.00234339 0.00234589 0.00234839 0.0023509 0.0023534 0.0023559 0.0023584 0.00236091 0.00236341 0.00236591 0.00236842 0.00237092 0.00237342 0.00237593 0.00237843 0.00238093 0.00238344 0.00238594 0.00238844 0.00239094 0.00239345 0.00239595 0.00239845 0.00240096 0.00240346 0.00240596 0.00240847 0.00241097 0.00241347 0.00241598 0.00241848 0.00242098 0.00242348 0.00242599 0.00242849 0.00243099 0.0024335 0.002436 0.0024385 0.00244101 0.00244351 0.00244601 0.00244852 0.00245102 0.00245352 0.00245602 0.00245853 0.00246103 0.00246353 0.00246604 0.00246854 0.00247104 0.00247355 0.00247605 0.00247855 0.00248106 0.00248356 0.00248606 0.00248856 0.00249107 0.00249357 0.00249607 0.00249858 0.00250108 0.00250358 0.00250609 0.00250859 0.00251109 0.0025136 0.0025161 0.0025186 0.0025211 0.00252361 0.00252611 0.00252861 0.00253112 +-0.000497472 -0.000472837 -0.000435298 -0.000328469 7.73538E-06 0.000644993 0.00138228 0.00194061 0.00217206 0.00222363 0.00223386 0.00223751 0.00224019 0.00224273 0.00224525 0.00224776 0.00225028 0.00225279 0.00225531 0.00225782 0.00226033 0.00226285 0.00226536 0.00226788 0.00227039 0.0022729 0.00227542 0.00227793 0.00228045 0.00228296 0.00228547 0.00228799 0.0022905 0.00229302 0.00229553 0.00229804 0.00230056 0.00230307 0.00230559 0.0023081 0.00231061 0.00231313 0.00231564 0.00231816 0.00232067 0.00232318 0.0023257 0.00232821 0.00233073 0.00233324 0.00233576 0.00233827 0.00234078 0.0023433 0.00234581 0.00234833 0.00235084 0.00235335 0.00235587 0.00235838 0.0023609 0.00236341 0.00236592 0.00236844 0.00237095 0.00237347 0.00237598 0.00237849 0.00238101 0.00238352 0.00238604 0.00238855 0.00239106 0.00239358 0.00239609 0.00239861 0.00240112 0.00240364 0.00240615 0.00240866 0.00241118 0.00241369 0.00241621 0.00241872 0.00242123 0.00242375 0.00242626 0.00242878 0.00243129 0.0024338 0.00243632 0.00243883 0.00244135 0.00244386 0.00244637 0.00244889 0.0024514 0.00245392 0.00245643 0.00245894 0.00246146 0.00246397 0.00246649 0.002469 0.00247151 0.00247403 0.00247654 0.00247906 0.00248157 0.00248409 0.0024866 0.00248911 0.00249163 0.00249414 0.00249666 0.00249917 0.00250168 0.0025042 0.00250671 0.00250923 0.00251174 0.00251425 0.00251677 0.00251928 0.0025218 0.00252431 0.00252682 0.00252934 0.00253185 0.00253437 0.00253688 0.00253939 0.00254191 +-0.000499734 -0.000474978 -0.000437235 -0.000329811 7.78781E-06 0.000646775 0.0013861 0.00194718 0.00218074 0.00223293 0.00224329 0.00224696 0.00224965 0.0022522 0.00225473 0.00225726 0.00225978 0.00226231 0.00226483 0.00226736 0.00226988 0.00227241 0.00227493 0.00227746 0.00227998 0.00228251 0.00228503 0.00228756 0.00229008 0.00229261 0.00229513 0.00229766 0.00230018 0.00230271 0.00230523 0.00230776 0.00231028 0.00231281 0.00231533 0.00231786 0.00232038 0.00232291 0.00232543 0.00232796 0.00233048 0.00233301 0.00233553 0.00233806 0.00234058 0.00234311 0.00234563 0.00234816 0.00235068 0.00235321 0.00235574 0.00235826 0.00236079 0.00236331 0.00236584 0.00236836 0.00237089 0.00237341 0.00237594 0.00237846 0.00238099 0.00238351 0.00238604 0.00238856 0.00239109 0.00239361 0.00239614 0.00239866 0.00240119 0.00240371 0.00240624 0.00240876 0.00241129 0.00241381 0.00241634 0.00241886 0.00242139 0.00242391 0.00242644 0.00242896 0.00243149 0.00243401 0.00243654 0.00243906 0.00244159 0.00244411 0.00244664 0.00244916 0.00245169 0.00245421 0.00245674 0.00245926 0.00246179 0.00246431 0.00246684 0.00246936 0.00247189 0.00247441 0.00247694 0.00247946 0.00248199 0.00248451 0.00248704 0.00248956 0.00249209 0.00249461 0.00249714 0.00249966 0.00250219 0.00250471 0.00250724 0.00250976 0.00251229 0.00251481 0.00251734 0.00251986 0.00252239 0.00252491 0.00252744 0.00252996 0.00253249 0.00253501 0.00253754 0.00254006 0.00254259 0.00254511 0.00254764 0.00255016 0.00255269 +-0.000501994 -0.000477119 -0.000439171 -0.000331151 7.84035E-06 0.000648551 0.0013899 0.00195372 0.00218941 0.00224223 0.0022527 0.0022564 0.00225911 0.00226167 0.00226421 0.00226674 0.00226928 0.00227181 0.00227435 0.00227689 0.00227942 0.00228196 0.0022845 0.00228703 0.00228957 0.0022921 0.00229464 0.00229718 0.00229971 0.00230225 0.00230478 0.00230732 0.00230986 0.00231239 0.00231493 0.00231746 0.00232 0.00232254 0.00232507 0.00232761 0.00233014 0.00233268 0.00233522 0.00233775 0.00234029 0.00234282 0.00234536 0.0023479 0.00235043 0.00235297 0.0023555 0.00235804 0.00236058 0.00236311 0.00236565 0.00236818 0.00237072 0.00237326 0.00237579 0.00237833 0.00238086 0.0023834 0.00238594 0.00238847 0.00239101 0.00239354 0.00239608 0.00239862 0.00240115 0.00240369 0.00240622 0.00240876 0.0024113 0.00241383 0.00241637 0.0024189 0.00242144 0.00242398 0.00242651 0.00242905 0.00243158 0.00243412 0.00243666 0.00243919 0.00244173 0.00244426 0.0024468 0.00244934 0.00245187 0.00245441 0.00245694 0.00245948 0.00246202 0.00246455 0.00246709 0.00246962 0.00247216 0.0024747 0.00247723 0.00247977 0.0024823 0.00248484 0.00248738 0.00248991 0.00249245 0.00249498 0.00249752 0.00250006 0.00250259 0.00250513 0.00250766 0.0025102 0.00251274 0.00251527 0.00251781 0.00252035 0.00252288 0.00252542 0.00252795 0.00253049 0.00253303 0.00253556 0.0025381 0.00254063 0.00254317 0.00254571 0.00254824 0.00255078 0.00255331 0.00255585 0.00255839 0.00256092 0.00256346 +-0.000504254 -0.000479258 -0.000441106 -0.00033249 7.89299E-06 0.00065032 0.00139368 0.00196023 0.00219806 0.00225151 0.0022621 0.00226583 0.00226855 0.00227112 0.00227367 0.00227622 0.00227876 0.00228131 0.00228386 0.00228641 0.00228895 0.0022915 0.00229405 0.00229659 0.00229914 0.00230169 0.00230423 0.00230678 0.00230933 0.00231187 0.00231442 0.00231697 0.00231952 0.00232206 0.00232461 0.00232716 0.0023297 0.00233225 0.0023348 0.00233734 0.00233989 0.00234244 0.00234499 0.00234753 0.00235008 0.00235263 0.00235517 0.00235772 0.00236027 0.00236281 0.00236536 0.00236791 0.00237046 0.002373 0.00237555 0.0023781 0.00238064 0.00238319 0.00238574 0.00238828 0.00239083 0.00239338 0.00239593 0.00239847 0.00240102 0.00240357 0.00240611 0.00240866 0.00241121 0.00241375 0.0024163 0.00241885 0.0024214 0.00242394 0.00242649 0.00242904 0.00243158 0.00243413 0.00243668 0.00243922 0.00244177 0.00244432 0.00244687 0.00244941 0.00245196 0.00245451 0.00245705 0.0024596 0.00246215 0.00246469 0.00246724 0.00246979 0.00247233 0.00247488 0.00247743 0.00247998 0.00248252 0.00248507 0.00248762 0.00249016 0.00249271 0.00249526 0.0024978 0.00250035 0.0025029 0.00250545 0.00250799 0.00251054 0.00251309 0.00251563 0.00251818 0.00252073 0.00252327 0.00252582 0.00252837 0.00253092 0.00253346 0.00253601 0.00253856 0.0025411 0.00254365 0.0025462 0.00254874 0.00255129 0.00255384 0.00255639 0.00255893 0.00256148 0.00256403 0.00256657 0.00256912 0.00257167 0.00257421 +-0.000506512 -0.000481396 -0.000443039 -0.000333826 7.94574E-06 0.000652083 0.00139744 0.00196672 0.00220669 0.00226079 0.00227149 0.00227525 0.00227798 0.00228056 0.00228312 0.00228568 0.00228824 0.0022908 0.00229335 0.00229591 0.00229847 0.00230103 0.00230359 0.00230614 0.0023087 0.00231126 0.00231382 0.00231638 0.00231893 0.00232149 0.00232405 0.00232661 0.00232917 0.00233172 0.00233428 0.00233684 0.0023394 0.00234196 0.00234451 0.00234707 0.00234963 0.00235219 0.00235475 0.0023573 0.00235986 0.00236242 0.00236498 0.00236753 0.00237009 0.00237265 0.00237521 0.00237777 0.00238032 0.00238288 0.00238544 0.002388 0.00239056 0.00239311 0.00239567 0.00239823 0.00240079 0.00240335 0.0024059 0.00240846 0.00241102 0.00241358 0.00241614 0.00241869 0.00242125 0.00242381 0.00242637 0.00242893 0.00243148 0.00243404 0.0024366 0.00243916 0.00244172 0.00244427 0.00244683 0.00244939 0.00245195 0.0024545 0.00245706 0.00245962 0.00246218 0.00246474 0.00246729 0.00246985 0.00247241 0.00247497 0.00247753 0.00248008 0.00248264 0.0024852 0.00248776 0.00249032 0.00249287 0.00249543 0.00249799 0.00250055 0.00250311 0.00250566 0.00250822 0.00251078 0.00251334 0.0025159 0.00251845 0.00252101 0.00252357 0.00252613 0.00252868 0.00253124 0.0025338 0.00253636 0.00253892 0.00254147 0.00254403 0.00254659 0.00254915 0.00255171 0.00255426 0.00255682 0.00255938 0.00256194 0.0025645 0.00256705 0.00256961 0.00257217 0.00257473 0.00257729 0.00257984 0.0025824 0.00258496 +-0.00050877 -0.000483533 -0.000444972 -0.00033516 7.99859E-06 0.000653839 0.00140119 0.00197319 0.0022153 0.00227005 0.00228087 0.00228465 0.0022874 0.00228999 0.00229256 0.00229513 0.0022977 0.00230027 0.00230284 0.00230541 0.00230798 0.00231055 0.00231312 0.00231569 0.00231825 0.00232082 0.00232339 0.00232596 0.00232853 0.0023311 0.00233367 0.00233624 0.00233881 0.00234137 0.00234394 0.00234651 0.00234908 0.00235165 0.00235422 0.00235679 0.00235936 0.00236193 0.00236449 0.00236706 0.00236963 0.0023722 0.00237477 0.00237734 0.00237991 0.00238248 0.00238505 0.00238761 0.00239018 0.00239275 0.00239532 0.00239789 0.00240046 0.00240303 0.0024056 0.00240816 0.00241073 0.0024133 0.00241587 0.00241844 0.00242101 0.00242358 0.00242615 0.00242872 0.00243128 0.00243385 0.00243642 0.00243899 0.00244156 0.00244413 0.0024467 0.00244927 0.00245184 0.0024544 0.00245697 0.00245954 0.00246211 0.00246468 0.00246725 0.00246982 0.00247239 0.00247496 0.00247752 0.00248009 0.00248266 0.00248523 0.0024878 0.00249037 0.00249294 0.00249551 0.00249808 0.00250064 0.00250321 0.00250578 0.00250835 0.00251092 0.00251349 0.00251606 0.00251863 0.0025212 0.00252376 0.00252633 0.0025289 0.00253147 0.00253404 0.00253661 0.00253918 0.00254175 0.00254432 0.00254688 0.00254945 0.00255202 0.00255459 0.00255716 0.00255973 0.0025623 0.00256487 0.00256744 0.00257 0.00257257 0.00257514 0.00257771 0.00258028 0.00258285 0.00258542 0.00258799 0.00259056 0.00259312 0.00259569 +-0.000511026 -0.00048567 -0.000446903 -0.000336493 8.05154E-06 0.000655588 0.00140493 0.00197963 0.0022239 0.0022793 0.00229024 0.00229405 0.00229681 0.00229941 0.002302 0.00230458 0.00230716 0.00230974 0.00231232 0.0023149 0.00231748 0.00232006 0.00232264 0.00232522 0.0023278 0.00233038 0.00233296 0.00233554 0.00233811 0.00234069 0.00234327 0.00234585 0.00234843 0.00235101 0.00235359 0.00235617 0.00235875 0.00236133 0.00236391 0.00236649 0.00236907 0.00237165 0.00237423 0.00237681 0.00237939 0.00238197 0.00238455 0.00238713 0.00238971 0.00239229 0.00239487 0.00239745 0.00240003 0.00240261 0.00240519 0.00240777 0.00241035 0.00241293 0.00241551 0.00241809 0.00242067 0.00242325 0.00242583 0.00242841 0.00243099 0.00243357 0.00243615 0.00243873 0.00244131 0.00244389 0.00244647 0.00244905 0.00245163 0.00245421 0.00245679 0.00245937 0.00246195 0.00246453 0.00246711 0.00246969 0.00247226 0.00247484 0.00247742 0.00248 0.00248258 0.00248516 0.00248774 0.00249032 0.0024929 0.00249548 0.00249806 0.00250064 0.00250322 0.0025058 0.00250838 0.00251096 0.00251354 0.00251612 0.0025187 0.00252128 0.00252386 0.00252644 0.00252902 0.0025316 0.00253418 0.00253676 0.00253934 0.00254192 0.0025445 0.00254708 0.00254966 0.00255224 0.00255482 0.0025574 0.00255998 0.00256256 0.00256514 0.00256772 0.0025703 0.00257288 0.00257546 0.00257804 0.00258062 0.0025832 0.00258578 0.00258836 0.00259094 0.00259352 0.0025961 0.00259868 0.00260126 0.00260383 0.00260641 +-0.000513282 -0.000487805 -0.000448833 -0.000337823 8.1046E-06 0.000657332 0.00140865 0.00198604 0.00223248 0.00228853 0.0022996 0.00230343 0.00230621 0.00230882 0.00231142 0.00231401 0.0023166 0.00231919 0.00232178 0.00232437 0.00232696 0.00232955 0.00233215 0.00233474 0.00233733 0.00233992 0.00234251 0.0023451 0.00234769 0.00235028 0.00235287 0.00235546 0.00235805 0.00236064 0.00236323 0.00236582 0.00236842 0.00237101 0.0023736 0.00237619 0.00237878 0.00238137 0.00238396 0.00238655 0.00238914 0.00239173 0.00239432 0.00239691 0.0023995 0.00240209 0.00240469 0.00240728 0.00240987 0.00241246 0.00241505 0.00241764 0.00242023 0.00242282 0.00242541 0.002428 0.00243059 0.00243318 0.00243577 0.00243836 0.00244096 0.00244355 0.00244614 0.00244873 0.00245132 0.00245391 0.0024565 0.00245909 0.00246168 0.00246427 0.00246686 0.00246945 0.00247204 0.00247464 0.00247723 0.00247982 0.00248241 0.002485 0.00248759 0.00249018 0.00249277 0.00249536 0.00249795 0.00250054 0.00250313 0.00250572 0.00250831 0.00251091 0.0025135 0.00251609 0.00251868 0.00252127 0.00252386 0.00252645 0.00252904 0.00253163 0.00253422 0.00253681 0.0025394 0.00254199 0.00254458 0.00254718 0.00254977 0.00255236 0.00255495 0.00255754 0.00256013 0.00256272 0.00256531 0.0025679 0.00257049 0.00257308 0.00257567 0.00257826 0.00258085 0.00258345 0.00258604 0.00258863 0.00259122 0.00259381 0.0025964 0.00259899 0.00260158 0.00260417 0.00260676 0.00260935 0.00261194 0.00261453 0.00261713 +-0.000515537 -0.00048994 -0.000450761 -0.000339152 8.15776E-06 0.000659068 0.00141235 0.00199244 0.00224104 0.00229776 0.00230894 0.00231281 0.0023156 0.00231822 0.00232083 0.00232343 0.00232603 0.00232864 0.00233124 0.00233384 0.00233644 0.00233904 0.00234164 0.00234425 0.00234685 0.00234945 0.00235205 0.00235465 0.00235725 0.00235986 0.00236246 0.00236506 0.00236766 0.00237026 0.00237286 0.00237547 0.00237807 0.00238067 0.00238327 0.00238587 0.00238847 0.00239108 0.00239368 0.00239628 0.00239888 0.00240148 0.00240408 0.00240668 0.00240929 0.00241189 0.00241449 0.00241709 0.00241969 0.00242229 0.0024249 0.0024275 0.0024301 0.0024327 0.0024353 0.0024379 0.00244051 0.00244311 0.00244571 0.00244831 0.00245091 0.00245351 0.00245612 0.00245872 0.00246132 0.00246392 0.00246652 0.00246912 0.00247173 0.00247433 0.00247693 0.00247953 0.00248213 0.00248473 0.00248734 0.00248994 0.00249254 0.00249514 0.00249774 0.00250034 0.00250295 0.00250555 0.00250815 0.00251075 0.00251335 0.00251595 0.00251856 0.00252116 0.00252376 0.00252636 0.00252896 0.00253156 0.00253416 0.00253677 0.00253937 0.00254197 0.00254457 0.00254717 0.00254977 0.00255238 0.00255498 0.00255758 0.00256018 0.00256278 0.00256538 0.00256799 0.00257059 0.00257319 0.00257579 0.00257839 0.00258099 0.0025836 0.0025862 0.0025888 0.0025914 0.002594 0.0025966 0.00259921 0.00260181 0.00260441 0.00260701 0.00260961 0.00261221 0.00261482 0.00261742 0.00262002 0.00262262 0.00262522 0.00262782 +-0.000517791 -0.000492073 -0.000452689 -0.000340479 8.21102E-06 0.000660799 0.00141604 0.00199881 0.00224959 0.00230697 0.00231828 0.00232218 0.00232498 0.00232761 0.00233023 0.00233284 0.00233546 0.00233807 0.00234068 0.00234329 0.00234591 0.00234852 0.00235113 0.00235374 0.00235636 0.00235897 0.00236158 0.00236419 0.00236681 0.00236942 0.00237203 0.00237465 0.00237726 0.00237987 0.00238248 0.0023851 0.00238771 0.00239032 0.00239293 0.00239555 0.00239816 0.00240077 0.00240338 0.002406 0.00240861 0.00241122 0.00241383 0.00241645 0.00241906 0.00242167 0.00242428 0.0024269 0.00242951 0.00243212 0.00243473 0.00243735 0.00243996 0.00244257 0.00244518 0.0024478 0.00245041 0.00245302 0.00245563 0.00245825 0.00246086 0.00246347 0.00246608 0.0024687 0.00247131 0.00247392 0.00247653 0.00247915 0.00248176 0.00248437 0.00248698 0.0024896 0.00249221 0.00249482 0.00249743 0.00250005 0.00250266 0.00250527 0.00250788 0.0025105 0.00251311 0.00251572 0.00251833 0.00252095 0.00252356 0.00252617 0.00252878 0.0025314 0.00253401 0.00253662 0.00253923 0.00254185 0.00254446 0.00254707 0.00254968 0.0025523 0.00255491 0.00255752 0.00256014 0.00256275 0.00256536 0.00256797 0.00257059 0.0025732 0.00257581 0.00257842 0.00258104 0.00258365 0.00258626 0.00258887 0.00259149 0.0025941 0.00259671 0.00259932 0.00260194 0.00260455 0.00260716 0.00260977 0.00261239 0.002615 0.00261761 0.00262022 0.00262284 0.00262545 0.00262806 0.00263067 0.00263329 0.0026359 0.00263851 +-0.000520044 -0.000494206 -0.000454615 -0.000341803 8.26438E-06 0.000662523 0.00141971 0.00200515 0.00225812 0.00231618 0.00232761 0.00233153 0.00233434 0.00233699 0.00233962 0.00234225 0.00234487 0.00234749 0.00235012 0.00235274 0.00235536 0.00235799 0.00236061 0.00236323 0.00236586 0.00236848 0.0023711 0.00237373 0.00237635 0.00237897 0.0023816 0.00238422 0.00238684 0.00238947 0.00239209 0.00239471 0.00239734 0.00239996 0.00240259 0.00240521 0.00240783 0.00241046 0.00241308 0.0024157 0.00241833 0.00242095 0.00242357 0.0024262 0.00242882 0.00243144 0.00243407 0.00243669 0.00243931 0.00244194 0.00244456 0.00244718 0.00244981 0.00245243 0.00245505 0.00245768 0.0024603 0.00246292 0.00246555 0.00246817 0.00247079 0.00247342 0.00247604 0.00247866 0.00248129 0.00248391 0.00248653 0.00248916 0.00249178 0.0024944 0.00249703 0.00249965 0.00250228 0.0025049 0.00250752 0.00251015 0.00251277 0.00251539 0.00251802 0.00252064 0.00252326 0.00252589 0.00252851 0.00253113 0.00253376 0.00253638 0.002539 0.00254163 0.00254425 0.00254687 0.0025495 0.00255212 0.00255474 0.00255737 0.00255999 0.00256261 0.00256524 0.00256786 0.00257048 0.00257311 0.00257573 0.00257835 0.00258098 0.0025836 0.00258622 0.00258885 0.00259147 0.0025941 0.00259672 0.00259934 0.00260197 0.00260459 0.00260721 0.00260984 0.00261246 0.00261508 0.00261771 0.00262033 0.00262295 0.00262558 0.0026282 0.00263082 0.00263345 0.00263607 0.00263869 0.00264132 0.00264394 0.00264656 0.00264919 +-0.000522296 -0.000496338 -0.00045654 -0.000343126 8.31784E-06 0.000664241 0.00142336 0.00201147 0.00226663 0.00232537 0.00233693 0.00234088 0.0023437 0.00234636 0.002349 0.00235164 0.00235427 0.00235691 0.00235954 0.00236218 0.00236481 0.00236744 0.00237008 0.00237271 0.00237535 0.00237798 0.00238062 0.00238325 0.00238588 0.00238852 0.00239115 0.00239379 0.00239642 0.00239906 0.00240169 0.00240432 0.00240696 0.00240959 0.00241223 0.00241486 0.0024175 0.00242013 0.00242276 0.0024254 0.00242803 0.00243067 0.0024333 0.00243594 0.00243857 0.0024412 0.00244384 0.00244647 0.00244911 0.00245174 0.00245438 0.00245701 0.00245964 0.00246228 0.00246491 0.00246755 0.00247018 0.00247282 0.00247545 0.00247808 0.00248072 0.00248335 0.00248599 0.00248862 0.00249126 0.00249389 0.00249652 0.00249916 0.00250179 0.00250443 0.00250706 0.0025097 0.00251233 0.00251496 0.0025176 0.00252023 0.00252287 0.0025255 0.00252814 0.00253077 0.0025334 0.00253604 0.00253867 0.00254131 0.00254394 0.00254658 0.00254921 0.00255184 0.00255448 0.00255711 0.00255975 0.00256238 0.00256502 0.00256765 0.00257029 0.00257292 0.00257555 0.00257819 0.00258082 0.00258346 0.00258609 0.00258873 0.00259136 0.00259399 0.00259663 0.00259926 0.0026019 0.00260453 0.00260717 0.0026098 0.00261243 0.00261507 0.0026177 0.00262034 0.00262297 0.00262561 0.00262824 0.00263087 0.00263351 0.00263614 0.00263878 0.00264141 0.00264405 0.00264668 0.00264931 0.00265195 0.00265458 0.00265722 0.00265985 +-0.000524547 -0.000498468 -0.000458464 -0.000344447 8.37141E-06 0.000665953 0.001427 0.00201777 0.00227512 0.00233455 0.00234623 0.00235021 0.00235305 0.00235572 0.00235837 0.00236102 0.00236366 0.00236631 0.00236895 0.0023716 0.00237425 0.00237689 0.00237954 0.00238218 0.00238483 0.00238747 0.00239012 0.00239276 0.00239541 0.00239805 0.0024007 0.00240334 0.00240599 0.00240863 0.00241128 0.00241392 0.00241657 0.00241921 0.00242186 0.0024245 0.00242715 0.00242979 0.00243244 0.00243508 0.00243773 0.00244037 0.00244302 0.00244566 0.00244831 0.00245096 0.0024536 0.00245625 0.00245889 0.00246154 0.00246418 0.00246683 0.00246947 0.00247212 0.00247476 0.00247741 0.00248005 0.0024827 0.00248534 0.00248799 0.00249063 0.00249328 0.00249592 0.00249857 0.00250121 0.00250386 0.0025065 0.00250915 0.00251179 0.00251444 0.00251708 0.00251973 0.00252237 0.00252502 0.00252767 0.00253031 0.00253296 0.0025356 0.00253825 0.00254089 0.00254354 0.00254618 0.00254883 0.00255147 0.00255412 0.00255676 0.00255941 0.00256205 0.0025647 0.00256734 0.00256999 0.00257263 0.00257528 0.00257792 0.00258057 0.00258321 0.00258586 0.0025885 0.00259115 0.00259379 0.00259644 0.00259908 0.00260173 0.00260438 0.00260702 0.00260967 0.00261231 0.00261496 0.0026176 0.00262025 0.00262289 0.00262554 0.00262818 0.00263083 0.00263347 0.00263612 0.00263876 0.00264141 0.00264405 0.0026467 0.00264934 0.00265199 0.00265463 0.00265728 0.00265992 0.00266257 0.00266521 0.00266786 0.0026705 +-0.000526797 -0.000500598 -0.000460387 -0.000345766 8.42507E-06 0.000667659 0.00143063 0.00202405 0.0022836 0.00234371 0.00235553 0.00235954 0.00236239 0.00236507 0.00236773 0.00237039 0.00237305 0.0023757 0.00237836 0.00238101 0.00238367 0.00238633 0.00238898 0.00239164 0.00239429 0.00239695 0.00239961 0.00240226 0.00240492 0.00240757 0.00241023 0.00241289 0.00241554 0.0024182 0.00242086 0.00242351 0.00242617 0.00242882 0.00243148 0.00243414 0.00243679 0.00243945 0.0024421 0.00244476 0.00244742 0.00245007 0.00245273 0.00245538 0.00245804 0.0024607 0.00246335 0.00246601 0.00246866 0.00247132 0.00247398 0.00247663 0.00247929 0.00248194 0.0024846 0.00248726 0.00248991 0.00249257 0.00249522 0.00249788 0.00250054 0.00250319 0.00250585 0.0025085 0.00251116 0.00251382 0.00251647 0.00251913 0.00252178 0.00252444 0.0025271 0.00252975 0.00253241 0.00253506 0.00253772 0.00254038 0.00254303 0.00254569 0.00254834 0.002551 0.00255366 0.00255631 0.00255897 0.00256162 0.00256428 0.00256694 0.00256959 0.00257225 0.0025749 0.00257756 0.00258022 0.00258287 0.00258553 0.00258818 0.00259084 0.0025935 0.00259615 0.00259881 0.00260147 0.00260412 0.00260678 0.00260943 0.00261209 0.00261475 0.0026174 0.00262006 0.00262271 0.00262537 0.00262803 0.00263068 0.00263334 0.00263599 0.00263865 0.00264131 0.00264396 0.00264662 0.00264927 0.00265193 0.00265459 0.00265724 0.0026599 0.00266255 0.00266521 0.00266787 0.00267052 0.00267318 0.00267583 0.00267849 0.00268115 +-0.000529047 -0.000502727 -0.000462308 -0.000347083 8.47883E-06 0.000669359 0.00143424 0.0020303 0.00229206 0.00235287 0.00236482 0.00236885 0.00237172 0.00237441 0.00237708 0.00237975 0.00238242 0.00238509 0.00238775 0.00239042 0.00239309 0.00239575 0.00239842 0.00240109 0.00240375 0.00240642 0.00240909 0.00241175 0.00241442 0.00241709 0.00241975 0.00242242 0.00242509 0.00242776 0.00243042 0.00243309 0.00243576 0.00243842 0.00244109 0.00244376 0.00244642 0.00244909 0.00245176 0.00245442 0.00245709 0.00245976 0.00246242 0.00246509 0.00246776 0.00247043 0.00247309 0.00247576 0.00247843 0.00248109 0.00248376 0.00248643 0.00248909 0.00249176 0.00249443 0.00249709 0.00249976 0.00250243 0.00250509 0.00250776 0.00251043 0.0025131 0.00251576 0.00251843 0.0025211 0.00252376 0.00252643 0.0025291 0.00253176 0.00253443 0.0025371 0.00253976 0.00254243 0.0025451 0.00254776 0.00255043 0.0025531 0.00255577 0.00255843 0.0025611 0.00256377 0.00256643 0.0025691 0.00257177 0.00257443 0.0025771 0.00257977 0.00258243 0.0025851 0.00258777 0.00259043 0.0025931 0.00259577 0.00259844 0.0026011 0.00260377 0.00260644 0.0026091 0.00261177 0.00261444 0.0026171 0.00261977 0.00262244 0.0026251 0.00262777 0.00263044 0.00263311 0.00263577 0.00263844 0.00264111 0.00264377 0.00264644 0.00264911 0.00265177 0.00265444 0.00265711 0.00265977 0.00266244 0.00266511 0.00266777 0.00267044 0.00267311 0.00267578 0.00267844 0.00268111 0.00268378 0.00268644 0.00268911 0.00269178 +-0.000531295 -0.000504855 -0.000464228 -0.000348398 8.5327E-06 0.000671052 0.00143783 0.00203653 0.0023005 0.00236201 0.00237409 0.00237816 0.00238103 0.00238374 0.00238642 0.0023891 0.00239178 0.00239446 0.00239714 0.00239981 0.00240249 0.00240517 0.00240785 0.00241052 0.0024132 0.00241588 0.00241856 0.00242123 0.00242391 0.00242659 0.00242927 0.00243195 0.00243462 0.0024373 0.00243998 0.00244266 0.00244533 0.00244801 0.00245069 0.00245337 0.00245605 0.00245872 0.0024614 0.00246408 0.00246676 0.00246943 0.00247211 0.00247479 0.00247747 0.00248014 0.00248282 0.0024855 0.00248818 0.00249086 0.00249353 0.00249621 0.00249889 0.00250157 0.00250424 0.00250692 0.0025096 0.00251228 0.00251496 0.00251763 0.00252031 0.00252299 0.00252567 0.00252834 0.00253102 0.0025337 0.00253638 0.00253905 0.00254173 0.00254441 0.00254709 0.00254977 0.00255244 0.00255512 0.0025578 0.00256048 0.00256315 0.00256583 0.00256851 0.00257119 0.00257386 0.00257654 0.00257922 0.0025819 0.00258458 0.00258725 0.00258993 0.00259261 0.00259529 0.00259796 0.00260064 0.00260332 0.002606 0.00260868 0.00261135 0.00261403 0.00261671 0.00261939 0.00262206 0.00262474 0.00262742 0.0026301 0.00263277 0.00263545 0.00263813 0.00264081 0.00264349 0.00264616 0.00264884 0.00265152 0.0026542 0.00265687 0.00265955 0.00266223 0.00266491 0.00266759 0.00267026 0.00267294 0.00267562 0.0026783 0.00268097 0.00268365 0.00268633 0.00268901 0.00269168 0.00269436 0.00269704 0.00269972 0.0027024 +-0.000533543 -0.000506982 -0.000466147 -0.000349711 8.58666E-06 0.00067274 0.00144141 0.00204273 0.00230892 0.00237115 0.00238336 0.00238745 0.00239034 0.00239306 0.00239575 0.00239844 0.00240113 0.00240382 0.00240651 0.0024092 0.00241189 0.00241457 0.00241726 0.00241995 0.00242264 0.00242533 0.00242802 0.00243071 0.00243339 0.00243608 0.00243877 0.00244146 0.00244415 0.00244684 0.00244953 0.00245221 0.0024549 0.00245759 0.00246028 0.00246297 0.00246566 0.00246835 0.00247103 0.00247372 0.00247641 0.0024791 0.00248179 0.00248448 0.00248717 0.00248985 0.00249254 0.00249523 0.00249792 0.00250061 0.0025033 0.00250599 0.00250867 0.00251136 0.00251405 0.00251674 0.00251943 0.00252212 0.0025248 0.00252749 0.00253018 0.00253287 0.00253556 0.00253825 0.00254094 0.00254362 0.00254631 0.002549 0.00255169 0.00255438 0.00255707 0.00255976 0.00256244 0.00256513 0.00256782 0.00257051 0.0025732 0.00257589 0.00257858 0.00258126 0.00258395 0.00258664 0.00258933 0.00259202 0.00259471 0.0025974 0.00260008 0.00260277 0.00260546 0.00260815 0.00261084 0.00261353 0.00261622 0.0026189 0.00262159 0.00262428 0.00262697 0.00262966 0.00263235 0.00263504 0.00263772 0.00264041 0.0026431 0.00264579 0.00264848 0.00265117 0.00265386 0.00265654 0.00265923 0.00266192 0.00266461 0.0026673 0.00266999 0.00267268 0.00267536 0.00267805 0.00268074 0.00268343 0.00268612 0.00268881 0.00269149 0.00269418 0.00269687 0.00269956 0.00270225 0.00270494 0.00270763 0.00271031 0.002713 +-0.000535789 -0.000509108 -0.000468065 -0.000351022 8.64072E-06 0.000674421 0.00144498 0.00204891 0.00231733 0.00238027 0.00239261 0.00239673 0.00239964 0.00240237 0.00240507 0.00240777 0.00241047 0.00241317 0.00241587 0.00241857 0.00242127 0.00242397 0.00242667 0.00242937 0.00243207 0.00243477 0.00243747 0.00244017 0.00244287 0.00244557 0.00244826 0.00245096 0.00245366 0.00245636 0.00245906 0.00246176 0.00246446 0.00246716 0.00246986 0.00247256 0.00247526 0.00247796 0.00248066 0.00248336 0.00248606 0.00248875 0.00249145 0.00249415 0.00249685 0.00249955 0.00250225 0.00250495 0.00250765 0.00251035 0.00251305 0.00251575 0.00251845 0.00252115 0.00252385 0.00252655 0.00252925 0.00253194 0.00253464 0.00253734 0.00254004 0.00254274 0.00254544 0.00254814 0.00255084 0.00255354 0.00255624 0.00255894 0.00256164 0.00256434 0.00256704 0.00256974 0.00257244 0.00257513 0.00257783 0.00258053 0.00258323 0.00258593 0.00258863 0.00259133 0.00259403 0.00259673 0.00259943 0.00260213 0.00260483 0.00260753 0.00261023 0.00261293 0.00261563 0.00261832 0.00262102 0.00262372 0.00262642 0.00262912 0.00263182 0.00263452 0.00263722 0.00263992 0.00264262 0.00264532 0.00264802 0.00265072 0.00265342 0.00265612 0.00265881 0.00266151 0.00266421 0.00266691 0.00266961 0.00267231 0.00267501 0.00267771 0.00268041 0.00268311 0.00268581 0.00268851 0.00269121 0.00269391 0.00269661 0.00269931 0.002702 0.0027047 0.0027074 0.0027101 0.0027128 0.0027155 0.0027182 0.0027209 0.0027236 +-0.000538035 -0.000511233 -0.000469982 -0.000352331 8.69488E-06 0.000676097 0.00144853 0.00205507 0.00232572 0.00238938 0.00240186 0.00240601 0.00240893 0.00241167 0.00241438 0.00241709 0.0024198 0.00242252 0.00242523 0.00242794 0.00243065 0.00243336 0.00243607 0.00243878 0.00244149 0.0024442 0.00244691 0.00244962 0.00245233 0.00245504 0.00245775 0.00246046 0.00246317 0.00246588 0.00246859 0.0024713 0.00247401 0.00247672 0.00247943 0.00248214 0.00248485 0.00248756 0.00249027 0.00249298 0.00249569 0.0024984 0.00250111 0.00250382 0.00250653 0.00250924 0.00251195 0.00251466 0.00251737 0.00252008 0.00252279 0.0025255 0.00252821 0.00253092 0.00253363 0.00253634 0.00253905 0.00254176 0.00254447 0.00254718 0.00254989 0.0025526 0.00255531 0.00255802 0.00256073 0.00256344 0.00256615 0.00256886 0.00257157 0.00257428 0.00257699 0.00257971 0.00258242 0.00258513 0.00258784 0.00259055 0.00259326 0.00259597 0.00259868 0.00260139 0.0026041 0.00260681 0.00260952 0.00261223 0.00261494 0.00261765 0.00262036 0.00262307 0.00262578 0.00262849 0.0026312 0.00263391 0.00263662 0.00263933 0.00264204 0.00264475 0.00264746 0.00265017 0.00265288 0.00265559 0.0026583 0.00266101 0.00266372 0.00266643 0.00266914 0.00267185 0.00267456 0.00267727 0.00267998 0.00268269 0.0026854 0.00268811 0.00269082 0.00269353 0.00269624 0.00269895 0.00270166 0.00270437 0.00270708 0.00270979 0.0027125 0.00271521 0.00271792 0.00272063 0.00272334 0.00272605 0.00272876 0.00273147 0.00273419 +-0.00054028 -0.000513357 -0.000471897 -0.000353638 8.74914E-06 0.000677766 0.00145206 0.0020612 0.00233409 0.00239848 0.00241109 0.00241527 0.00241821 0.00242096 0.00242368 0.00242641 0.00242913 0.00243185 0.00243457 0.00243729 0.00244001 0.00244273 0.00244545 0.00244817 0.00245089 0.00245362 0.00245634 0.00245906 0.00246178 0.0024645 0.00246722 0.00246994 0.00247266 0.00247538 0.0024781 0.00248082 0.00248355 0.00248627 0.00248899 0.00249171 0.00249443 0.00249715 0.00249987 0.00250259 0.00250531 0.00250803 0.00251076 0.00251348 0.0025162 0.00251892 0.00252164 0.00252436 0.00252708 0.0025298 0.00253252 0.00253524 0.00253797 0.00254069 0.00254341 0.00254613 0.00254885 0.00255157 0.00255429 0.00255701 0.00255973 0.00256245 0.00256518 0.0025679 0.00257062 0.00257334 0.00257606 0.00257878 0.0025815 0.00258422 0.00258694 0.00258966 0.00259238 0.00259511 0.00259783 0.00260055 0.00260327 0.00260599 0.00260871 0.00261143 0.00261415 0.00261687 0.00261959 0.00262232 0.00262504 0.00262776 0.00263048 0.0026332 0.00263592 0.00263864 0.00264136 0.00264408 0.0026468 0.00264953 0.00265225 0.00265497 0.00265769 0.00266041 0.00266313 0.00266585 0.00266857 0.00267129 0.00267401 0.00267673 0.00267946 0.00268218 0.0026849 0.00268762 0.00269034 0.00269306 0.00269578 0.0026985 0.00270122 0.00270394 0.00270667 0.00270939 0.00271211 0.00271483 0.00271755 0.00272027 0.00272299 0.00272571 0.00272843 0.00273115 0.00273388 0.0027366 0.00273932 0.00274204 0.00274476 +-0.000542523 -0.00051548 -0.000473811 -0.000354944 8.80349E-06 0.00067943 0.00145558 0.00206732 0.00234244 0.00240756 0.00242032 0.00242453 0.00242747 0.00243024 0.00243297 0.00243571 0.00243844 0.00244117 0.0024439 0.00244663 0.00244937 0.0024521 0.00245483 0.00245756 0.00246029 0.00246302 0.00246576 0.00246849 0.00247122 0.00247395 0.00247668 0.00247941 0.00248215 0.00248488 0.00248761 0.00249034 0.00249307 0.0024958 0.00249854 0.00250127 0.002504 0.00250673 0.00250946 0.0025122 0.00251493 0.00251766 0.00252039 0.00252312 0.00252585 0.00252859 0.00253132 0.00253405 0.00253678 0.00253951 0.00254224 0.00254498 0.00254771 0.00255044 0.00255317 0.0025559 0.00255864 0.00256137 0.0025641 0.00256683 0.00256956 0.00257229 0.00257503 0.00257776 0.00258049 0.00258322 0.00258595 0.00258868 0.00259142 0.00259415 0.00259688 0.00259961 0.00260234 0.00260508 0.00260781 0.00261054 0.00261327 0.002616 0.00261873 0.00262147 0.0026242 0.00262693 0.00262966 0.00263239 0.00263512 0.00263786 0.00264059 0.00264332 0.00264605 0.00264878 0.00265152 0.00265425 0.00265698 0.00265971 0.00266244 0.00266517 0.00266791 0.00267064 0.00267337 0.0026761 0.00267883 0.00268156 0.0026843 0.00268703 0.00268976 0.00269249 0.00269522 0.00269796 0.00270069 0.00270342 0.00270615 0.00270888 0.00271161 0.00271435 0.00271708 0.00271981 0.00272254 0.00272527 0.002728 0.00273074 0.00273347 0.0027362 0.00273893 0.00274166 0.0027444 0.00274713 0.00274986 0.00275259 0.00275532 +-0.000544766 -0.000517602 -0.000475724 -0.000356247 8.85794E-06 0.000681088 0.00145909 0.0020734 0.00235078 0.00241664 0.00242953 0.00243377 0.00243673 0.00243951 0.00244225 0.002445 0.00244774 0.00245048 0.00245322 0.00245597 0.00245871 0.00246145 0.00246419 0.00246694 0.00246968 0.00247242 0.00247516 0.00247791 0.00248065 0.00248339 0.00248614 0.00248888 0.00249162 0.00249436 0.00249711 0.00249985 0.00250259 0.00250533 0.00250808 0.00251082 0.00251356 0.0025163 0.00251905 0.00252179 0.00252453 0.00252727 0.00253002 0.00253276 0.0025355 0.00253824 0.00254099 0.00254373 0.00254647 0.00254921 0.00255196 0.0025547 0.00255744 0.00256018 0.00256293 0.00256567 0.00256841 0.00257115 0.0025739 0.00257664 0.00257938 0.00258212 0.00258487 0.00258761 0.00259035 0.00259309 0.00259584 0.00259858 0.00260132 0.00260406 0.00260681 0.00260955 0.00261229 0.00261503 0.00261778 0.00262052 0.00262326 0.002626 0.00262875 0.00263149 0.00263423 0.00263697 0.00263972 0.00264246 0.0026452 0.00264794 0.00265069 0.00265343 0.00265617 0.00265892 0.00266166 0.0026644 0.00266714 0.00266989 0.00267263 0.00267537 0.00267811 0.00268086 0.0026836 0.00268634 0.00268908 0.00269183 0.00269457 0.00269731 0.00270005 0.0027028 0.00270554 0.00270828 0.00271102 0.00271377 0.00271651 0.00271925 0.00272199 0.00272474 0.00272748 0.00273022 0.00273296 0.00273571 0.00273845 0.00274119 0.00274393 0.00274668 0.00274942 0.00275216 0.0027549 0.00275765 0.00276039 0.00276313 0.00276587 +-0.000547008 -0.000519724 -0.000477636 -0.000357549 8.91249E-06 0.00068274 0.00146258 0.00207947 0.0023591 0.0024257 0.00243874 0.00244301 0.00244599 0.00244877 0.00245153 0.00245428 0.00245704 0.00245979 0.00246254 0.0024653 0.00246805 0.0024708 0.00247356 0.00247631 0.00247906 0.00248182 0.00248457 0.00248732 0.00249008 0.00249283 0.00249558 0.00249834 0.00250109 0.00250384 0.0025066 0.00250935 0.0025121 0.00251486 0.00251761 0.00252036 0.00252312 0.00252587 0.00252862 0.00253138 0.00253413 0.00253688 0.00253964 0.00254239 0.00254514 0.0025479 0.00255065 0.0025534 0.00255616 0.00255891 0.00256166 0.00256442 0.00256717 0.00256992 0.00257268 0.00257543 0.00257818 0.00258094 0.00258369 0.00258644 0.0025892 0.00259195 0.0025947 0.00259745 0.00260021 0.00260296 0.00260571 0.00260847 0.00261122 0.00261397 0.00261673 0.00261948 0.00262223 0.00262499 0.00262774 0.00263049 0.00263325 0.002636 0.00263875 0.0026415 0.00264426 0.00264701 0.00264976 0.00265252 0.00265527 0.00265802 0.00266078 0.00266353 0.00266628 0.00266904 0.00267179 0.00267454 0.0026773 0.00268005 0.0026828 0.00268556 0.00268831 0.00269106 0.00269382 0.00269657 0.00269932 0.00270208 0.00270483 0.00270758 0.00271034 0.00271309 0.00271584 0.0027186 0.00272135 0.0027241 0.00272686 0.00272961 0.00273236 0.00273512 0.00273787 0.00274062 0.00274338 0.00274613 0.00274888 0.00275164 0.00275439 0.00275714 0.0027599 0.00276265 0.0027654 0.00276816 0.00277091 0.00277366 0.00277642 +-0.00054925 -0.000521844 -0.000479546 -0.000358848 8.96714E-06 0.000684386 0.00146606 0.00208551 0.0023674 0.00243476 0.00244793 0.00245224 0.00245522 0.00245802 0.00246079 0.00246355 0.00246632 0.00246908 0.00247185 0.00247461 0.00247737 0.00248014 0.0024829 0.00248567 0.00248843 0.00249119 0.00249396 0.00249672 0.00249949 0.00250225 0.00250501 0.00250778 0.00251054 0.00251331 0.00251607 0.00251883 0.0025216 0.00252436 0.00252713 0.00252989 0.00253266 0.00253542 0.00253818 0.00254095 0.00254371 0.00254648 0.00254924 0.002552 0.00255477 0.00255753 0.0025603 0.00256306 0.00256582 0.00256859 0.00257135 0.00257412 0.00257688 0.00257964 0.00258241 0.00258517 0.00258794 0.0025907 0.00259346 0.00259623 0.00259899 0.00260176 0.00260452 0.00260729 0.00261005 0.00261281 0.00261558 0.00261834 0.00262111 0.00262387 0.00262663 0.0026294 0.00263216 0.00263493 0.00263769 0.00264045 0.00264322 0.00264598 0.00264875 0.00265151 0.00265427 0.00265703 0.0026598 0.00266256 0.00266533 0.00266809 0.00267085 0.00267362 0.00267638 0.00267915 0.00268191 0.00268467 0.00268744 0.0026902 0.00269297 0.00269573 0.00269849 0.00270126 0.00270402 0.00270679 0.00270955 0.00271232 0.00271508 0.00271784 0.00272061 0.00272337 0.00272614 0.0027289 0.00273166 0.00273443 0.00273719 0.00273996 0.00274272 0.00274548 0.00274825 0.00275101 0.00275378 0.00275654 0.0027593 0.00276207 0.00276483 0.0027676 0.00277036 0.00277312 0.00277589 0.00277865 0.00278142 0.00278418 0.00278694 +-0.00055149 -0.000523964 -0.000481456 -0.000360146 9.02188E-06 0.000686027 0.00146952 0.00209153 0.00237569 0.0024438 0.00245712 0.00246145 0.00246445 0.00246726 0.00247004 0.00247281 0.00247559 0.00247836 0.00248114 0.00248391 0.00248669 0.00248946 0.00249224 0.00249501 0.00249779 0.00250056 0.00250334 0.00250611 0.00250889 0.00251166 0.00251444 0.00251721 0.00251999 0.00252276 0.00252554 0.00252831 0.00253109 0.00253386 0.00253664 0.00253941 0.00254218 0.00254496 0.00254773 0.00255051 0.00255328 0.00255606 0.00255883 0.00256161 0.00256438 0.00256716 0.00256993 0.00257271 0.00257548 0.00257826 0.00258103 0.00258381 0.00258658 0.00258936 0.00259213 0.00259491 0.00259768 0.00260046 0.00260323 0.00260601 0.00260878 0.00261156 0.00261433 0.00261711 0.00261988 0.00262265 0.00262543 0.0026282 0.00263098 0.00263375 0.00263653 0.0026393 0.00264208 0.00264485 0.00264763 0.0026504 0.00265318 0.00265595 0.00265873 0.0026615 0.00266427 0.00266705 0.00266982 0.0026726 0.00267537 0.00267815 0.00268092 0.0026837 0.00268647 0.00268925 0.00269202 0.0026948 0.00269757 0.00270035 0.00270312 0.00270589 0.00270867 0.00271144 0.00271422 0.00271699 0.00271977 0.00272254 0.00272532 0.00272809 0.00273087 0.00273364 0.00273642 0.00273919 0.00274197 0.00274474 0.00274752 0.00275029 0.00275307 0.00275584 0.00275862 0.00276139 0.00276417 0.00276694 0.00276972 0.00277249 0.00277527 0.00277804 0.00278081 0.00278359 0.00278636 0.00278914 0.00279191 0.00279469 0.00279746 +-0.000553729 -0.000526082 -0.000483364 -0.000361442 9.07671E-06 0.000687662 0.00147297 0.00209753 0.00238395 0.00245283 0.00246629 0.00247065 0.00247367 0.00247649 0.00247928 0.00248207 0.00248485 0.00248764 0.00249042 0.00249321 0.00249599 0.00249878 0.00250156 0.00250435 0.00250714 0.00250992 0.00251271 0.00251549 0.00251828 0.00252106 0.00252385 0.00252663 0.00252942 0.00253221 0.00253499 0.00253778 0.00254056 0.00254335 0.00254613 0.00254892 0.0025517 0.00255449 0.00255728 0.00256006 0.00256285 0.00256563 0.00256842 0.0025712 0.00257399 0.00257677 0.00257956 0.00258235 0.00258513 0.00258792 0.0025907 0.00259349 0.00259627 0.00259906 0.00260184 0.00260463 0.00260742 0.0026102 0.00261299 0.00261577 0.00261856 0.00262134 0.00262413 0.00262691 0.0026297 0.00263249 0.00263527 0.00263806 0.00264084 0.00264363 0.00264641 0.0026492 0.00265198 0.00265477 0.00265756 0.00266034 0.00266313 0.00266591 0.0026687 0.00267148 0.00267426 0.00267705 0.00267984 0.00268262 0.00268541 0.00268819 0.00269098 0.00269376 0.00269655 0.00269933 0.00270212 0.00270491 0.00270769 0.00271048 0.00271326 0.00271605 0.00271883 0.00272162 0.0027244 0.00272719 0.00272998 0.00273276 0.00273555 0.00273833 0.00274112 0.0027439 0.00274669 0.00274947 0.00275226 0.00275505 0.00275783 0.00276062 0.0027634 0.00276619 0.00276897 0.00277176 0.00277454 0.00277733 0.00278012 0.0027829 0.00278569 0.00278847 0.00279126 0.00279404 0.00279683 0.00279961 0.0028024 0.00280519 0.00280797 +-0.000555968 -0.0005282 -0.000485271 -0.000362735 9.13164E-06 0.000689291 0.00147641 0.00210351 0.0023922 0.00246185 0.00247546 0.00247985 0.00248288 0.00248571 0.00248851 0.00249131 0.0024941 0.0024969 0.0024997 0.00250249 0.00250529 0.00250808 0.00251088 0.00251368 0.00251647 0.00251927 0.00252207 0.00252486 0.00252766 0.00253046 0.00253325 0.00253605 0.00253884 0.00254164 0.00254444 0.00254723 0.00255003 0.00255283 0.00255562 0.00255842 0.00256121 0.00256401 0.00256681 0.0025696 0.0025724 0.0025752 0.00257799 0.00258079 0.00258358 0.00258638 0.00258918 0.00259197 0.00259477 0.00259757 0.00260036 0.00260316 0.00260595 0.00260875 0.00261155 0.00261434 0.00261714 0.00261994 0.00262273 0.00262553 0.00262833 0.00263112 0.00263392 0.00263671 0.00263951 0.00264231 0.0026451 0.0026479 0.0026507 0.00265349 0.00265629 0.00265908 0.00266188 0.00266468 0.00266747 0.00267027 0.00267307 0.00267586 0.00267866 0.00268145 0.00268425 0.00268704 0.00268984 0.00269264 0.00269543 0.00269823 0.00270102 0.00270382 0.00270662 0.00270941 0.00271221 0.00271501 0.0027178 0.0027206 0.00272339 0.00272619 0.00272899 0.00273178 0.00273458 0.00273738 0.00274017 0.00274297 0.00274576 0.00274856 0.00275136 0.00275415 0.00275695 0.00275975 0.00276254 0.00276534 0.00276814 0.00277093 0.00277373 0.00277652 0.00277932 0.00278212 0.00278491 0.00278771 0.00279051 0.0027933 0.0027961 0.00279889 0.00280169 0.00280449 0.00280728 0.00281008 0.00281288 0.00281567 0.00281847 +-0.000558205 -0.000530316 -0.000487176 -0.000364027 9.18667E-06 0.000690915 0.00147983 0.00210946 0.00240043 0.00247086 0.00248461 0.00248903 0.00249208 0.00249492 0.00249773 0.00250054 0.00250335 0.00250615 0.00250896 0.00251177 0.00251457 0.00251738 0.00252019 0.00252299 0.0025258 0.00252861 0.00253142 0.00253422 0.00253703 0.00253984 0.00254264 0.00254545 0.00254826 0.00255106 0.00255387 0.00255668 0.00255949 0.00256229 0.0025651 0.00256791 0.00257071 0.00257352 0.00257633 0.00257913 0.00258194 0.00258475 0.00258756 0.00259036 0.00259317 0.00259598 0.00259878 0.00260159 0.0026044 0.0026072 0.00261001 0.00261282 0.00261563 0.00261843 0.00262124 0.00262405 0.00262685 0.00262966 0.00263247 0.00263527 0.00263808 0.00264089 0.0026437 0.0026465 0.00264931 0.00265212 0.00265492 0.00265773 0.00266054 0.00266335 0.00266615 0.00266896 0.00267177 0.00267457 0.00267738 0.00268019 0.00268299 0.0026858 0.00268861 0.00269142 0.00269422 0.00269703 0.00269983 0.00270264 0.00270545 0.00270825 0.00271106 0.00271387 0.00271667 0.00271948 0.00272229 0.0027251 0.0027279 0.00273071 0.00273352 0.00273632 0.00273913 0.00274194 0.00274474 0.00274755 0.00275036 0.00275317 0.00275597 0.00275878 0.00276159 0.00276439 0.0027672 0.00277001 0.00277281 0.00277562 0.00277843 0.00278124 0.00278404 0.00278685 0.00278966 0.00279246 0.00279527 0.00279808 0.00280088 0.00280369 0.0028065 0.00280931 0.00281211 0.00281492 0.00281773 0.00282053 0.00282334 0.00282615 0.00282895 +-0.000560442 -0.000532432 -0.000489081 -0.000365317 9.24179E-06 0.000692533 0.00148324 0.00211539 0.00240865 0.00247986 0.00249375 0.00249821 0.00250127 0.00250412 0.00250694 0.00250976 0.00251258 0.0025154 0.00251821 0.00252103 0.00252385 0.00252667 0.00252948 0.0025323 0.00253512 0.00253794 0.00254076 0.00254357 0.00254639 0.00254921 0.00255203 0.00255484 0.00255766 0.00256048 0.0025633 0.00256611 0.00256893 0.00257175 0.00257457 0.00257739 0.0025802 0.00258302 0.00258584 0.00258866 0.00259147 0.00259429 0.00259711 0.00259993 0.00260275 0.00260556 0.00260838 0.0026112 0.00261402 0.00261683 0.00261965 0.00262247 0.00262529 0.0026281 0.00263092 0.00263374 0.00263656 0.00263938 0.00264219 0.00264501 0.00264783 0.00265065 0.00265346 0.00265628 0.0026591 0.00266192 0.00266473 0.00266755 0.00267037 0.00267319 0.00267601 0.00267882 0.00268164 0.00268446 0.00268728 0.00269009 0.00269291 0.00269573 0.00269855 0.00270137 0.00270418 0.002707 0.00270981 0.00271263 0.00271545 0.00271827 0.00272109 0.0027239 0.00272672 0.00272954 0.00273236 0.00273517 0.00273799 0.00274081 0.00274363 0.00274644 0.00274926 0.00275208 0.0027549 0.00275772 0.00276053 0.00276335 0.00276617 0.00276899 0.0027718 0.00277462 0.00277744 0.00278026 0.00278307 0.00278589 0.00278871 0.00279153 0.00279435 0.00279716 0.00279998 0.0028028 0.00280562 0.00280843 0.00281125 0.00281407 0.00281689 0.00281971 0.00282252 0.00282534 0.00282816 0.00283098 0.00283379 0.00283661 0.00283943 +-0.000562678 -0.000534547 -0.000490984 -0.000366606 9.29701E-06 0.000694145 0.00148663 0.0021213 0.00241685 0.00248884 0.00250289 0.00250738 0.00251045 0.00251331 0.00251614 0.00251897 0.0025218 0.00252463 0.00252746 0.00253029 0.00253311 0.00253594 0.00253877 0.0025416 0.00254443 0.00254726 0.00255009 0.00255291 0.00255574 0.00255857 0.0025614 0.00256423 0.00256706 0.00256988 0.00257271 0.00257554 0.00257837 0.0025812 0.00258403 0.00258685 0.00258968 0.00259251 0.00259534 0.00259817 0.002601 0.00260383 0.00260665 0.00260948 0.00261231 0.00261514 0.00261797 0.0026208 0.00262362 0.00262645 0.00262928 0.00263211 0.00263494 0.00263777 0.00264059 0.00264342 0.00264625 0.00264908 0.00265191 0.00265474 0.00265757 0.00266039 0.00266322 0.00266605 0.00266888 0.00267171 0.00267454 0.00267736 0.00268019 0.00268302 0.00268585 0.00268868 0.00269151 0.00269433 0.00269716 0.00269999 0.00270282 0.00270565 0.00270848 0.0027113 0.00271413 0.00271696 0.00271979 0.00272261 0.00272544 0.00272827 0.0027311 0.00273393 0.00273676 0.00273959 0.00274241 0.00274524 0.00274807 0.0027509 0.00275373 0.00275656 0.00275938 0.00276221 0.00276504 0.00276787 0.0027707 0.00277353 0.00277635 0.00277918 0.00278201 0.00278484 0.00278767 0.0027905 0.00279333 0.00279615 0.00279898 0.00280181 0.00280464 0.00280747 0.0028103 0.00281312 0.00281595 0.00281878 0.00282161 0.00282444 0.00282727 0.00283009 0.00283292 0.00283575 0.00283858 0.00284141 0.00284424 0.00284706 0.00284989 +-0.000564912 -0.000536661 -0.000492886 -0.000367892 9.35232E-06 0.000695752 0.00149001 0.00212719 0.00242503 0.00249781 0.00251201 0.00251653 0.00251962 0.00252249 0.00252534 0.00252818 0.00253101 0.00253385 0.00253669 0.00253953 0.00254237 0.00254521 0.00254805 0.00255089 0.00255373 0.00255657 0.00255941 0.00256224 0.00256508 0.00256792 0.00257076 0.0025736 0.00257644 0.00257928 0.00258212 0.00258496 0.0025878 0.00259064 0.00259347 0.00259631 0.00259915 0.00260199 0.00260483 0.00260767 0.00261051 0.00261335 0.00261619 0.00261903 0.00262187 0.0026247 0.00262754 0.00263038 0.00263322 0.00263606 0.0026389 0.00264174 0.00264458 0.00264742 0.00265026 0.0026531 0.00265593 0.00265877 0.00266161 0.00266445 0.00266729 0.00267013 0.00267297 0.00267581 0.00267865 0.00268149 0.00268433 0.00268717 0.00269 0.00269284 0.00269568 0.00269852 0.00270136 0.0027042 0.00270704 0.00270988 0.00271272 0.00271556 0.0027184 0.00272123 0.00272407 0.00272691 0.00272975 0.00273259 0.00273543 0.00273827 0.0027411 0.00274394 0.00274678 0.00274962 0.00275246 0.0027553 0.00275814 0.00276098 0.00276382 0.00276666 0.0027695 0.00277233 0.00277517 0.00277801 0.00278085 0.00278369 0.00278653 0.00278937 0.00279221 0.00279505 0.00279789 0.00280073 0.00280356 0.0028064 0.00280924 0.00281208 0.00281492 0.00281776 0.0028206 0.00282344 0.00282628 0.00282912 0.00283196 0.00283479 0.00283763 0.00284047 0.00284331 0.00284615 0.00284899 0.00285183 0.00285467 0.00285751 0.00286035 +-0.000567146 -0.000538774 -0.000494787 -0.000369176 9.40772E-06 0.000697353 0.00149338 0.00213305 0.00243319 0.00250678 0.00252113 0.00252568 0.00252878 0.00253166 0.00253452 0.00253737 0.00254022 0.00254307 0.00254592 0.00254877 0.00255162 0.00255447 0.00255732 0.00256017 0.00256302 0.00256587 0.00256872 0.00257157 0.00257442 0.00257726 0.00258011 0.00258296 0.00258581 0.00258866 0.00259151 0.00259436 0.00259721 0.00260006 0.00260291 0.00260576 0.00260861 0.00261146 0.00261431 0.00261716 0.00262001 0.00262286 0.00262571 0.00262856 0.00263141 0.00263426 0.00263711 0.00263996 0.00264281 0.00264566 0.00264851 0.00265136 0.00265421 0.00265706 0.00265991 0.00266276 0.00266561 0.00266846 0.00267131 0.00267416 0.00267701 0.00267986 0.00268271 0.00268556 0.00268841 0.00269126 0.00269411 0.00269696 0.00269981 0.00270266 0.00270551 0.00270836 0.0027112 0.00271405 0.0027169 0.00271975 0.0027226 0.00272545 0.0027283 0.00273115 0.002734 0.00273685 0.0027397 0.00274255 0.0027454 0.00274825 0.0027511 0.00275395 0.0027568 0.00275965 0.0027625 0.00276535 0.0027682 0.00277105 0.0027739 0.00277675 0.0027796 0.00278245 0.0027853 0.00278815 0.002791 0.00279385 0.00279669 0.00279954 0.00280239 0.00280524 0.00280809 0.00281094 0.00281379 0.00281664 0.00281949 0.00282234 0.00282519 0.00282804 0.00283089 0.00283374 0.00283659 0.00283944 0.00284229 0.00284514 0.00284799 0.00285084 0.00285369 0.00285654 0.00285939 0.00286224 0.00286509 0.00286794 0.00287079 +-0.00056938 -0.000540886 -0.000496687 -0.000370459 9.46321E-06 0.000698949 0.00149673 0.00213889 0.00244133 0.00251573 0.00253023 0.00253482 0.00253793 0.00254082 0.00254369 0.00254655 0.00254941 0.00255227 0.00255513 0.00255799 0.00256085 0.00256371 0.00256657 0.00256943 0.0025723 0.00257516 0.00257802 0.00258088 0.00258374 0.0025866 0.00258946 0.00259232 0.00259518 0.00259804 0.0026009 0.00260376 0.00260662 0.00260948 0.00261234 0.0026152 0.00261806 0.00262092 0.00262378 0.00262664 0.0026295 0.00263236 0.00263523 0.00263809 0.00264095 0.00264381 0.00264667 0.00264953 0.00265239 0.00265525 0.00265811 0.00266097 0.00266383 0.00266669 0.00266955 0.00267241 0.00267527 0.00267813 0.00268099 0.00268385 0.00268671 0.00268957 0.00269243 0.00269529 0.00269816 0.00270102 0.00270388 0.00270674 0.0027096 0.00271246 0.00271532 0.00271818 0.00272104 0.0027239 0.00272676 0.00272962 0.00273248 0.00273534 0.0027382 0.00274106 0.00274392 0.00274678 0.00274964 0.0027525 0.00275536 0.00275822 0.00276108 0.00276394 0.0027668 0.00276966 0.00277252 0.00277538 0.00277824 0.00278111 0.00278397 0.00278683 0.00278969 0.00279255 0.00279541 0.00279827 0.00280113 0.00280399 0.00280685 0.00280971 0.00281257 0.00281543 0.00281829 0.00282115 0.00282401 0.00282687 0.00282973 0.00283259 0.00283545 0.00283831 0.00284117 0.00284404 0.0028469 0.00284976 0.00285262 0.00285548 0.00285834 0.0028612 0.00286406 0.00286692 0.00286978 0.00287264 0.0028755 0.00287836 0.00288122 +-0.000571612 -0.000542997 -0.000498585 -0.000371739 9.5188E-06 0.00070054 0.00150007 0.00214471 0.00244946 0.00252467 0.00253933 0.00254394 0.00254707 0.00254998 0.00255285 0.00255572 0.0025586 0.00256147 0.00256434 0.00256721 0.00257008 0.00257295 0.00257582 0.00257869 0.00258156 0.00258444 0.00258731 0.00259018 0.00259305 0.00259592 0.00259879 0.00260166 0.00260453 0.0026074 0.00261028 0.00261315 0.00261602 0.00261889 0.00262176 0.00262463 0.0026275 0.00263037 0.00263324 0.00263612 0.00263899 0.00264186 0.00264473 0.0026476 0.00265047 0.00265334 0.00265621 0.00265908 0.00266196 0.00266483 0.0026677 0.00267057 0.00267344 0.00267631 0.00267918 0.00268205 0.00268493 0.0026878 0.00269067 0.00269354 0.00269641 0.00269928 0.00270215 0.00270502 0.00270789 0.00271077 0.00271364 0.00271651 0.00271938 0.00272225 0.00272512 0.00272799 0.00273086 0.00273373 0.00273661 0.00273948 0.00274235 0.00274522 0.00274809 0.00275096 0.00275383 0.0027567 0.00275957 0.00276244 0.00276531 0.00276818 0.00277106 0.00277393 0.0027768 0.00277967 0.00278254 0.00278541 0.00278828 0.00279115 0.00279402 0.0027969 0.00279977 0.00280264 0.00280551 0.00280838 0.00281125 0.00281412 0.00281699 0.00281986 0.00282274 0.00282561 0.00282848 0.00283135 0.00283422 0.00283709 0.00283996 0.00284283 0.0028457 0.00284858 0.00285145 0.00285432 0.00285719 0.00286006 0.00286293 0.0028658 0.00286867 0.00287154 0.00287442 0.00287729 0.00288016 0.00288303 0.0028859 0.00288877 0.00289164 +-0.000573843 -0.000545107 -0.000500482 -0.000373018 9.57448E-06 0.000702125 0.0015034 0.00215051 0.00245757 0.00253359 0.00254841 0.00255306 0.0025562 0.00255912 0.00256201 0.00256489 0.00256777 0.00257065 0.00257353 0.00257642 0.0025793 0.00258218 0.00258506 0.00258794 0.00259082 0.00259371 0.00259659 0.00259947 0.00260235 0.00260523 0.00260812 0.002611 0.00261388 0.00261676 0.00261964 0.00262252 0.00262541 0.00262829 0.00263117 0.00263405 0.00263693 0.00263981 0.0026427 0.00264558 0.00264846 0.00265134 0.00265422 0.00265711 0.00265999 0.00266287 0.00266575 0.00266863 0.00267151 0.0026744 0.00267728 0.00268016 0.00268304 0.00268592 0.0026888 0.00269169 0.00269457 0.00269745 0.00270033 0.00270321 0.0027061 0.00270898 0.00271186 0.00271474 0.00271762 0.0027205 0.00272339 0.00272627 0.00272915 0.00273203 0.00273491 0.00273779 0.00274068 0.00274356 0.00274644 0.00274932 0.0027522 0.00275509 0.00275797 0.00276085 0.00276373 0.00276661 0.00276949 0.00277237 0.00277525 0.00277814 0.00278102 0.0027839 0.00278678 0.00278966 0.00279255 0.00279543 0.00279831 0.00280119 0.00280407 0.00280695 0.00280984 0.00281272 0.0028156 0.00281848 0.00282136 0.00282424 0.00282713 0.00283001 0.00283289 0.00283577 0.00283865 0.00284154 0.00284442 0.0028473 0.00285018 0.00285306 0.00285594 0.00285883 0.00286171 0.00286459 0.00286747 0.00287035 0.00287323 0.00287612 0.002879 0.00288188 0.00288476 0.00288764 0.00289053 0.00289341 0.00289629 0.00289917 0.00290205 +-0.000576074 -0.000547217 -0.000502379 -0.000374294 9.63025E-06 0.000703705 0.00150671 0.00215629 0.00246566 0.00254251 0.00255749 0.00256217 0.00256532 0.00256825 0.00257115 0.00257404 0.00257694 0.00257983 0.00258272 0.00258561 0.00258851 0.0025914 0.00259429 0.00259718 0.00260007 0.00260297 0.00260586 0.00260875 0.00261164 0.00261454 0.00261743 0.00262032 0.00262321 0.00262611 0.002629 0.00263189 0.00263478 0.00263768 0.00264057 0.00264346 0.00264635 0.00264925 0.00265214 0.00265503 0.00265792 0.00266082 0.00266371 0.0026666 0.00266949 0.00267239 0.00267528 0.00267817 0.00268106 0.00268395 0.00268685 0.00268974 0.00269263 0.00269552 0.00269842 0.00270131 0.0027042 0.00270709 0.00270999 0.00271288 0.00271577 0.00271866 0.00272156 0.00272445 0.00272734 0.00273023 0.00273313 0.00273602 0.00273891 0.0027418 0.0027447 0.00274759 0.00275048 0.00275337 0.00275627 0.00275916 0.00276205 0.00276494 0.00276783 0.00277073 0.00277362 0.00277651 0.0027794 0.00278229 0.00278519 0.00278808 0.00279097 0.00279386 0.00279676 0.00279965 0.00280254 0.00280543 0.00280833 0.00281122 0.00281411 0.002817 0.0028199 0.00282279 0.00282568 0.00282857 0.00283146 0.00283436 0.00283725 0.00284014 0.00284303 0.00284593 0.00284882 0.00285171 0.0028546 0.0028575 0.00286039 0.00286328 0.00286617 0.00286907 0.00287196 0.00287485 0.00287774 0.00288064 0.00288353 0.00288642 0.00288931 0.00289221 0.0028951 0.00289799 0.00290088 0.00290377 0.00290667 0.00290956 0.00291245 +-0.000578303 -0.000549325 -0.000504273 -0.000375569 9.68611E-06 0.000705279 0.00151001 0.00216204 0.00247374 0.00255142 0.00256655 0.00257127 0.00257443 0.00257738 0.00258028 0.00258319 0.00258609 0.00258899 0.0025919 0.0025948 0.0025977 0.00260061 0.00260351 0.00260641 0.00260932 0.00261222 0.00261512 0.00261802 0.00262093 0.00262383 0.00262673 0.00262964 0.00263254 0.00263544 0.00263835 0.00264125 0.00264415 0.00264706 0.00264996 0.00265286 0.00265576 0.00265867 0.00266157 0.00266447 0.00266738 0.00267028 0.00267318 0.00267609 0.00267899 0.00268189 0.00268479 0.0026877 0.0026906 0.0026935 0.00269641 0.00269931 0.00270221 0.00270512 0.00270802 0.00271092 0.00271383 0.00271673 0.00271963 0.00272253 0.00272544 0.00272834 0.00273124 0.00273415 0.00273705 0.00273995 0.00274286 0.00274576 0.00274866 0.00275156 0.00275447 0.00275737 0.00276027 0.00276318 0.00276608 0.00276898 0.00277189 0.00277479 0.00277769 0.0027806 0.0027835 0.0027864 0.0027893 0.0027922 0.00279511 0.00279801 0.00280091 0.00280382 0.00280672 0.00280962 0.00281253 0.00281543 0.00281833 0.00282123 0.00282414 0.00282704 0.00282994 0.00283285 0.00283575 0.00283865 0.00284156 0.00284446 0.00284736 0.00285027 0.00285317 0.00285607 0.00285897 0.00286188 0.00286478 0.00286768 0.00287059 0.00287349 0.00287639 0.0028793 0.0028822 0.0028851 0.002888 0.00289091 0.00289381 0.00289671 0.00289962 0.00290252 0.00290542 0.00290833 0.00291123 0.00291413 0.00291704 0.00291994 0.00292284 +-0.000580532 -0.000551433 -0.000506167 -0.000376842 9.74207E-06 0.000706848 0.0015133 0.00216777 0.0024818 0.00256031 0.00257561 0.00258036 0.00258354 0.00258649 0.00258941 0.00259232 0.00259524 0.00259815 0.00260106 0.00260398 0.00260689 0.00260981 0.00261272 0.00261563 0.00261855 0.00262146 0.00262437 0.00262729 0.0026302 0.00263311 0.00263603 0.00263894 0.00264186 0.00264477 0.00264768 0.0026506 0.00265351 0.00265642 0.00265934 0.00266225 0.00266517 0.00266808 0.00267099 0.00267391 0.00267682 0.00267973 0.00268265 0.00268556 0.00268847 0.00269139 0.0026943 0.00269722 0.00270013 0.00270304 0.00270596 0.00270887 0.00271178 0.0027147 0.00271761 0.00272052 0.00272344 0.00272635 0.00272927 0.00273218 0.00273509 0.00273801 0.00274092 0.00274383 0.00274675 0.00274966 0.00275258 0.00275549 0.0027584 0.00276132 0.00276423 0.00276714 0.00277006 0.00277297 0.00277588 0.0027788 0.00278171 0.00278463 0.00278754 0.00279045 0.00279337 0.00279628 0.00279919 0.0028021 0.00280502 0.00280793 0.00281085 0.00281376 0.00281667 0.00281959 0.0028225 0.00282541 0.00282833 0.00283124 0.00283416 0.00283707 0.00283998 0.0028429 0.00284581 0.00284872 0.00285164 0.00285455 0.00285746 0.00286038 0.00286329 0.00286621 0.00286912 0.00287203 0.00287495 0.00287786 0.00288077 0.00288369 0.0028866 0.00288951 0.00289243 0.00289534 0.00289826 0.00290117 0.00290408 0.002907 0.00290991 0.00291282 0.00291574 0.00291865 0.00292156 0.00292448 0.00292739 0.00293031 0.00293322 +-0.00058276 -0.000553539 -0.00050806 -0.000378113 9.79811E-06 0.000708412 0.00151657 0.00217349 0.00248984 0.0025692 0.00258465 0.00258944 0.00259263 0.00259559 0.00259852 0.00260145 0.00260437 0.0026073 0.00261022 0.00261315 0.00261607 0.002619 0.00262192 0.00262484 0.00262777 0.00263069 0.00263362 0.00263654 0.00263947 0.00264239 0.00264531 0.00264824 0.00265116 0.00265409 0.00265701 0.00265994 0.00266286 0.00266578 0.00266871 0.00267163 0.00267456 0.00267748 0.00268041 0.00268333 0.00268625 0.00268918 0.0026921 0.00269503 0.00269795 0.00270088 0.0027038 0.00270672 0.00270965 0.00271257 0.0027155 0.00271842 0.00272134 0.00272427 0.00272719 0.00273012 0.00273304 0.00273597 0.00273889 0.00274181 0.00274474 0.00274766 0.00275059 0.00275351 0.00275644 0.00275936 0.00276228 0.00276521 0.00276813 0.00277106 0.00277398 0.00277691 0.00277983 0.00278275 0.00278568 0.0027886 0.00279153 0.00279445 0.00279738 0.0028003 0.00280322 0.00280615 0.00280907 0.00281199 0.00281492 0.00281784 0.00282077 0.00282369 0.00282662 0.00282954 0.00283246 0.00283539 0.00283831 0.00284124 0.00284416 0.00284709 0.00285001 0.00285293 0.00285586 0.00285878 0.00286171 0.00286463 0.00286756 0.00287048 0.0028734 0.00287633 0.00287925 0.00288218 0.0028851 0.00288803 0.00289095 0.00289387 0.0028968 0.00289972 0.00290265 0.00290557 0.0029085 0.00291142 0.00291434 0.00291727 0.00292019 0.00292312 0.00292604 0.00292897 0.00293189 0.00293481 0.00293774 0.00294066 0.00294359 +-0.000584987 -0.000555645 -0.000509951 -0.000379383 9.85425E-06 0.000709971 0.00151983 0.00217918 0.00249786 0.00257807 0.00259369 0.00259851 0.00260171 0.00260469 0.00260763 0.00261057 0.0026135 0.00261644 0.00261937 0.00262231 0.00262524 0.00262818 0.00263111 0.00263405 0.00263698 0.00263991 0.00264285 0.00264578 0.00264872 0.00265165 0.00265459 0.00265752 0.00266046 0.00266339 0.00266633 0.00266926 0.0026722 0.00267513 0.00267807 0.002681 0.00268394 0.00268687 0.00268981 0.00269274 0.00269568 0.00269861 0.00270155 0.00270448 0.00270742 0.00271035 0.00271329 0.00271622 0.00271916 0.00272209 0.00272503 0.00272796 0.0027309 0.00273383 0.00273677 0.0027397 0.00274264 0.00274557 0.00274851 0.00275144 0.00275438 0.00275731 0.00276025 0.00276318 0.00276611 0.00276905 0.00277198 0.00277492 0.00277785 0.00278079 0.00278372 0.00278666 0.00278959 0.00279253 0.00279546 0.0027984 0.00280133 0.00280427 0.0028072 0.00281014 0.00281307 0.00281601 0.00281894 0.00282188 0.00282481 0.00282774 0.00283068 0.00283361 0.00283655 0.00283948 0.00284242 0.00284535 0.00284829 0.00285122 0.00285416 0.00285709 0.00286003 0.00286296 0.0028659 0.00286883 0.00287177 0.0028747 0.00287764 0.00288057 0.00288351 0.00288644 0.00288938 0.00289231 0.00289525 0.00289818 0.00290112 0.00290405 0.00290699 0.00290992 0.00291286 0.00291579 0.00291873 0.00292166 0.0029246 0.00292753 0.00293047 0.0029334 0.00293634 0.00293927 0.00294221 0.00294514 0.00294807 0.00295101 0.00295394 +-0.000587213 -0.00055775 -0.000511841 -0.00038065 9.91048E-06 0.000711524 0.00152308 0.00218485 0.00250586 0.00258693 0.00260272 0.00260757 0.00261079 0.00261378 0.00261673 0.00261967 0.00262262 0.00262556 0.00262851 0.00263146 0.0026344 0.00263735 0.00264029 0.00264324 0.00264618 0.00264913 0.00265207 0.00265502 0.00265796 0.00266091 0.00266386 0.0026668 0.00266975 0.00267269 0.00267564 0.00267858 0.00268153 0.00268447 0.00268742 0.00269036 0.00269331 0.00269626 0.0026992 0.00270215 0.00270509 0.00270804 0.00271098 0.00271393 0.00271687 0.00271982 0.00272276 0.00272571 0.00272866 0.0027316 0.00273455 0.00273749 0.00274044 0.00274338 0.00274633 0.00274927 0.00275222 0.00275517 0.00275811 0.00276106 0.002764 0.00276695 0.00276989 0.00277284 0.00277578 0.00277873 0.00278167 0.00278462 0.00278757 0.00279051 0.00279346 0.0027964 0.00279935 0.00280229 0.00280524 0.00280818 0.00281113 0.00281407 0.00281702 0.00281997 0.00282291 0.00282586 0.0028288 0.00283175 0.00283469 0.00283764 0.00284058 0.00284353 0.00284647 0.00284942 0.00285236 0.00285531 0.00285825 0.0028612 0.00286415 0.00286709 0.00287004 0.00287298 0.00287593 0.00287887 0.00288182 0.00288476 0.00288771 0.00289065 0.0028936 0.00289655 0.00289949 0.00290244 0.00290538 0.00290833 0.00291127 0.00291422 0.00291716 0.00292011 0.00292305 0.002926 0.00292895 0.00293189 0.00293484 0.00293778 0.00294073 0.00294367 0.00294662 0.00294956 0.00295251 0.00295545 0.0029584 0.00296135 0.00296429 +-0.000589438 -0.000559853 -0.00051373 -0.000381915 9.96679E-06 0.000713073 0.00152631 0.00219049 0.00251385 0.00259578 0.00261173 0.00261662 0.00261986 0.00262285 0.00262581 0.00262877 0.00263173 0.00263468 0.00263764 0.0026406 0.00264355 0.00264651 0.00264946 0.00265242 0.00265538 0.00265833 0.00266129 0.00266424 0.0026672 0.00267016 0.00267311 0.00267607 0.00267902 0.00268198 0.00268494 0.00268789 0.00269085 0.0026938 0.00269676 0.00269972 0.00270267 0.00270563 0.00270858 0.00271154 0.0027145 0.00271745 0.00272041 0.00272336 0.00272632 0.00272928 0.00273223 0.00273519 0.00273815 0.0027411 0.00274406 0.00274701 0.00274997 0.00275293 0.00275588 0.00275884 0.00276179 0.00276475 0.00276771 0.00277066 0.00277362 0.00277657 0.00277953 0.00278249 0.00278544 0.0027884 0.00279135 0.00279431 0.00279727 0.00280022 0.00280318 0.00280613 0.00280909 0.00281205 0.002815 0.00281796 0.00282091 0.00282387 0.00282683 0.00282978 0.00283274 0.0028357 0.00283865 0.0028416 0.00284456 0.00284752 0.00285047 0.00285343 0.00285639 0.00285934 0.0028623 0.00286525 0.00286821 0.00287117 0.00287412 0.00287708 0.00288003 0.00288299 0.00288595 0.0028889 0.00289186 0.00289481 0.00289777 0.00290073 0.00290368 0.00290664 0.00290959 0.00291255 0.00291551 0.00291846 0.00292142 0.00292437 0.00292733 0.00293029 0.00293324 0.0029362 0.00293915 0.00294211 0.00294507 0.00294802 0.00295098 0.00295394 0.00295689 0.00295985 0.0029628 0.00296576 0.00296872 0.00297167 0.00297463 +-0.000591662 -0.000561956 -0.000515618 -0.000383179 1.00232E-05 0.000714616 0.00152954 0.00219612 0.00252182 0.00260462 0.00262074 0.00262566 0.00262891 0.00263192 0.00263489 0.00263786 0.00264083 0.00264379 0.00264676 0.00264973 0.00265269 0.00265566 0.00265863 0.00266159 0.00266456 0.00266753 0.00267049 0.00267346 0.00267643 0.00267939 0.00268236 0.00268533 0.00268829 0.00269126 0.00269423 0.00269719 0.00270016 0.00270313 0.00270609 0.00270906 0.00271203 0.00271499 0.00271796 0.00272093 0.00272389 0.00272686 0.00272983 0.00273279 0.00273576 0.00273872 0.00274169 0.00274466 0.00274762 0.00275059 0.00275356 0.00275652 0.00275949 0.00276246 0.00276542 0.00276839 0.00277136 0.00277432 0.00277729 0.00278026 0.00278322 0.00278619 0.00278916 0.00279212 0.00279509 0.00279806 0.00280102 0.00280399 0.00280696 0.00280992 0.00281289 0.00281586 0.00281882 0.00282179 0.00282476 0.00282772 0.00283069 0.00283366 0.00283662 0.00283959 0.00284256 0.00284552 0.00284849 0.00285146 0.00285442 0.00285739 0.00286035 0.00286332 0.00286629 0.00286925 0.00287222 0.00287519 0.00287815 0.00288112 0.00288409 0.00288705 0.00289002 0.00289299 0.00289595 0.00289892 0.00290189 0.00290485 0.00290782 0.00291079 0.00291375 0.00291672 0.00291969 0.00292265 0.00292562 0.00292859 0.00293155 0.00293452 0.00293749 0.00294045 0.00294342 0.00294639 0.00294935 0.00295232 0.00295529 0.00295825 0.00296122 0.00296419 0.00296715 0.00297012 0.00297309 0.00297605 0.00297902 0.00298199 0.00298495 +-0.000593886 -0.000564058 -0.000517504 -0.000384441 1.00797E-05 0.000716154 0.00153275 0.00220173 0.00252977 0.00261345 0.00262974 0.00263469 0.00263796 0.00264098 0.00264396 0.00264694 0.00264992 0.00265289 0.00265587 0.00265885 0.00266182 0.0026648 0.00266778 0.00267076 0.00267373 0.00267671 0.00267969 0.00268266 0.00268564 0.00268862 0.0026916 0.00269457 0.00269755 0.00270053 0.00270351 0.00270648 0.00270946 0.00271244 0.00271541 0.00271839 0.00272137 0.00272435 0.00272732 0.0027303 0.00273328 0.00273625 0.00273923 0.00274221 0.00274519 0.00274816 0.00275114 0.00275412 0.00275709 0.00276007 0.00276305 0.00276603 0.002769 0.00277198 0.00277496 0.00277794 0.00278091 0.00278389 0.00278687 0.00278984 0.00279282 0.0027958 0.00279878 0.00280175 0.00280473 0.00280771 0.00281068 0.00281366 0.00281664 0.00281962 0.00282259 0.00282557 0.00282855 0.00283152 0.0028345 0.00283748 0.00284046 0.00284343 0.00284641 0.00284939 0.00285237 0.00285534 0.00285832 0.0028613 0.00286427 0.00286725 0.00287023 0.0028732 0.00287618 0.00287916 0.00288214 0.00288511 0.00288809 0.00289107 0.00289404 0.00289702 0.0029 0.00290298 0.00290595 0.00290893 0.00291191 0.00291488 0.00291786 0.00292084 0.00292382 0.00292679 0.00292977 0.00293275 0.00293572 0.0029387 0.00294168 0.00294466 0.00294763 0.00295061 0.00295359 0.00295656 0.00295954 0.00296252 0.0029655 0.00296847 0.00297145 0.00297443 0.00297741 0.00298038 0.00298336 0.00298634 0.00298931 0.00299229 0.00299527 +-0.000596108 -0.000566159 -0.00051939 -0.000385701 1.01363E-05 0.000717687 0.00153594 0.00220731 0.00253771 0.00262226 0.00263873 0.00264372 0.002647 0.00265003 0.00265302 0.00265601 0.002659 0.00266198 0.00266497 0.00266796 0.00267095 0.00267393 0.00267692 0.00267991 0.0026829 0.00268589 0.00268887 0.00269186 0.00269485 0.00269784 0.00270082 0.00270381 0.0027068 0.00270979 0.00271278 0.00271576 0.00271875 0.00272174 0.00272473 0.00272771 0.0027307 0.00273369 0.00273668 0.00273967 0.00274265 0.00274564 0.00274863 0.00275162 0.0027546 0.00275759 0.00276058 0.00276357 0.00276656 0.00276954 0.00277253 0.00277552 0.00277851 0.00278149 0.00278448 0.00278747 0.00279046 0.00279344 0.00279643 0.00279942 0.00280241 0.0028054 0.00280838 0.00281137 0.00281436 0.00281735 0.00282033 0.00282332 0.00282631 0.0028293 0.00283229 0.00283527 0.00283826 0.00284125 0.00284424 0.00284722 0.00285021 0.0028532 0.00285619 0.00285918 0.00286216 0.00286515 0.00286814 0.00287113 0.00287411 0.0028771 0.00288009 0.00288308 0.00288606 0.00288905 0.00289204 0.00289503 0.00289801 0.002901 0.00290399 0.00290698 0.00290997 0.00291295 0.00291594 0.00291893 0.00292192 0.0029249 0.00292789 0.00293088 0.00293387 0.00293686 0.00293984 0.00294283 0.00294582 0.00294881 0.00295179 0.00295478 0.00295777 0.00296076 0.00296374 0.00296673 0.00296972 0.00297271 0.0029757 0.00297868 0.00298167 0.00298466 0.00298765 0.00299063 0.00299362 0.00299661 0.0029996 0.00300259 0.00300557 +-0.00059833 -0.00056826 -0.000521274 -0.000386959 1.01929E-05 0.000719215 0.00153913 0.00221287 0.00254563 0.00263107 0.00264771 0.00265273 0.00265602 0.00265906 0.00266207 0.00266507 0.00266807 0.00267107 0.00267406 0.00267706 0.00268006 0.00268306 0.00268606 0.00268906 0.00269205 0.00269505 0.00269805 0.00270105 0.00270405 0.00270704 0.00271004 0.00271304 0.00271604 0.00271904 0.00272204 0.00272503 0.00272803 0.00273103 0.00273403 0.00273703 0.00274003 0.00274302 0.00274602 0.00274902 0.00275202 0.00275502 0.00275802 0.00276101 0.00276401 0.00276701 0.00277001 0.00277301 0.00277601 0.002779 0.002782 0.002785 0.002788 0.002791 0.002794 0.00279699 0.00279999 0.00280299 0.00280599 0.00280899 0.00281199 0.00281498 0.00281798 0.00282098 0.00282398 0.00282698 0.00282998 0.00283297 0.00283597 0.00283897 0.00284197 0.00284497 0.00284797 0.00285096 0.00285396 0.00285696 0.00285996 0.00286296 0.00286595 0.00286895 0.00287195 0.00287495 0.00287795 0.00288095 0.00288394 0.00288694 0.00288994 0.00289294 0.00289594 0.00289893 0.00290193 0.00290493 0.00290793 0.00291093 0.00291393 0.00291692 0.00291992 0.00292292 0.00292592 0.00292892 0.00293192 0.00293491 0.00293791 0.00294091 0.00294391 0.00294691 0.00294991 0.0029529 0.0029559 0.0029589 0.0029619 0.0029649 0.0029679 0.00297089 0.00297389 0.00297689 0.00297989 0.00298289 0.00298588 0.00298888 0.00299188 0.00299488 0.00299788 0.00300088 0.00300387 0.00300687 0.00300987 0.00301287 0.00301587 +-0.000600551 -0.000570359 -0.000523157 -0.000388215 1.02497E-05 0.000720738 0.0015423 0.00221842 0.00255353 0.00263986 0.00265668 0.00266173 0.00266504 0.00266809 0.00267111 0.00267412 0.00267713 0.00268014 0.00268315 0.00268616 0.00268916 0.00269217 0.00269518 0.00269819 0.0027012 0.00270421 0.00270722 0.00271023 0.00271323 0.00271624 0.00271925 0.00272226 0.00272527 0.00272828 0.00273129 0.0027343 0.00273731 0.00274031 0.00274332 0.00274633 0.00274934 0.00275235 0.00275536 0.00275837 0.00276138 0.00276439 0.00276739 0.0027704 0.00277341 0.00277642 0.00277943 0.00278244 0.00278545 0.00278846 0.00279146 0.00279447 0.00279748 0.00280049 0.0028035 0.00280651 0.00280952 0.00281253 0.00281554 0.00281854 0.00282155 0.00282456 0.00282757 0.00283058 0.00283359 0.0028366 0.00283961 0.00284261 0.00284562 0.00284863 0.00285164 0.00285465 0.00285766 0.00286067 0.00286368 0.00286669 0.00286969 0.0028727 0.00287571 0.00287872 0.00288173 0.00288474 0.00288775 0.00289076 0.00289377 0.00289677 0.00289978 0.00290279 0.0029058 0.00290881 0.00291182 0.00291483 0.00291783 0.00292084 0.00292385 0.00292686 0.00292987 0.00293288 0.00293589 0.0029389 0.0029419 0.00294491 0.00294792 0.00295093 0.00295394 0.00295695 0.00295996 0.00296297 0.00296598 0.00296898 0.00297199 0.002975 0.00297801 0.00298102 0.00298403 0.00298704 0.00299005 0.00299305 0.00299606 0.00299907 0.00300208 0.00300509 0.0030081 0.00301111 0.00301412 0.00301713 0.00302013 0.00302314 0.00302615 +-0.000602774 -0.000572457 -0.000525038 -0.000389469 1.03066E-05 0.000722256 0.00154546 0.00222394 0.00256141 0.00264864 0.00266564 0.00267073 0.00267405 0.00267712 0.00268014 0.00268316 0.00268618 0.0026892 0.00269222 0.00269524 0.00269826 0.00270128 0.0027043 0.00270732 0.00271034 0.00271336 0.00271637 0.00271939 0.00272241 0.00272543 0.00272845 0.00273147 0.00273449 0.00273751 0.00274053 0.00274355 0.00274657 0.00274959 0.00275261 0.00275563 0.00275865 0.00276167 0.00276468 0.0027677 0.00277072 0.00277374 0.00277676 0.00277978 0.0027828 0.00278582 0.00278884 0.00279186 0.00279488 0.0027979 0.00280092 0.00280394 0.00280696 0.00280998 0.00281299 0.00281601 0.00281903 0.00282205 0.00282507 0.00282809 0.00283111 0.00283413 0.00283715 0.00284017 0.00284319 0.00284621 0.00284923 0.00285225 0.00285527 0.00285829 0.0028613 0.00286432 0.00286734 0.00287036 0.00287338 0.0028764 0.00287942 0.00288244 0.00288546 0.00288848 0.0028915 0.00289452 0.00289754 0.00290056 0.00290358 0.00290659 0.00290961 0.00291263 0.00291565 0.00291867 0.00292169 0.00292471 0.00292773 0.00293075 0.00293377 0.00293679 0.00293981 0.00294283 0.00294584 0.00294886 0.00295188 0.0029549 0.00295792 0.00296094 0.00296396 0.00296698 0.00297 0.00297302 0.00297604 0.00297906 0.00298208 0.0029851 0.00298812 0.00299114 0.00299415 0.00299717 0.00300019 0.00300321 0.00300623 0.00300925 0.00301227 0.00301529 0.00301831 0.00302133 0.00302435 0.00302737 0.00303039 0.00303341 0.00303643 +-0.000604993 -0.000574555 -0.000526919 -0.000390721 1.03635E-05 0.000723769 0.00154861 0.00222944 0.00256927 0.00265742 0.00267459 0.00267972 0.00268305 0.00268613 0.00268916 0.00269219 0.00269522 0.00269825 0.00270128 0.00270431 0.00270734 0.00271037 0.0027134 0.00271643 0.00271946 0.00272249 0.00272552 0.00272855 0.00273158 0.00273461 0.00273764 0.00274067 0.0027437 0.00274673 0.00274976 0.00275279 0.00275582 0.00275885 0.00276188 0.00276491 0.00276794 0.00277097 0.002774 0.00277703 0.00278006 0.00278309 0.00278612 0.00278915 0.00279218 0.00279521 0.00279824 0.00280127 0.0028043 0.00280733 0.00281036 0.00281339 0.00281642 0.00281945 0.00282248 0.00282551 0.00282854 0.00283157 0.0028346 0.00283763 0.00284066 0.00284369 0.00284672 0.00284975 0.00285278 0.00285581 0.00285884 0.00286187 0.0028649 0.00286793 0.00287096 0.00287399 0.00287702 0.00288005 0.00288308 0.00288611 0.00288914 0.00289217 0.0028952 0.00289823 0.00290126 0.00290429 0.00290732 0.00291035 0.00291338 0.0029164 0.00291943 0.00292246 0.00292549 0.00292852 0.00293155 0.00293458 0.00293761 0.00294064 0.00294367 0.0029467 0.00294973 0.00295276 0.00295579 0.00295882 0.00296185 0.00296488 0.00296791 0.00297094 0.00297397 0.002977 0.00298003 0.00298306 0.00298609 0.00298912 0.00299215 0.00299518 0.00299821 0.00300124 0.00300427 0.0030073 0.00301033 0.00301336 0.00301639 0.00301942 0.00302245 0.00302548 0.00302851 0.00303154 0.00303457 0.0030376 0.00304063 0.00304366 0.00304669 +-0.000607211 -0.000576652 -0.000528798 -0.000391972 1.04205E-05 0.000725277 0.00155175 0.00223492 0.00257712 0.00266618 0.00268353 0.00268869 0.00269204 0.00269513 0.00269818 0.00270122 0.00270426 0.0027073 0.00271034 0.00271338 0.00271642 0.00271946 0.0027225 0.00272554 0.00272858 0.00273162 0.00273466 0.0027377 0.00274074 0.00274378 0.00274682 0.00274986 0.0027529 0.00275595 0.00275899 0.00276203 0.00276507 0.00276811 0.00277115 0.00277419 0.00277723 0.00278027 0.00278331 0.00278635 0.00278939 0.00279243 0.00279547 0.00279851 0.00280155 0.00280459 0.00280763 0.00281067 0.00281371 0.00281675 0.00281979 0.00282283 0.00282587 0.00282891 0.00283196 0.002835 0.00283804 0.00284108 0.00284412 0.00284716 0.0028502 0.00285324 0.00285628 0.00285932 0.00286236 0.0028654 0.00286844 0.00287148 0.00287452 0.00287756 0.0028806 0.00288364 0.00288668 0.00288972 0.00289276 0.0028958 0.00289884 0.00290188 0.00290492 0.00290796 0.00291101 0.00291405 0.00291709 0.00292013 0.00292317 0.00292621 0.00292925 0.00293229 0.00293533 0.00293837 0.00294141 0.00294445 0.00294749 0.00295053 0.00295357 0.00295661 0.00295965 0.00296269 0.00296573 0.00296877 0.00297181 0.00297485 0.00297789 0.00298093 0.00298397 0.00298701 0.00299005 0.00299309 0.00299613 0.00299918 0.00300222 0.00300526 0.0030083 0.00301134 0.00301438 0.00301742 0.00302046 0.0030235 0.00302654 0.00302958 0.00303262 0.00303566 0.0030387 0.00304174 0.00304478 0.00304782 0.00305086 0.0030539 0.00305694 +-0.000609428 -0.000578747 -0.000530677 -0.00039322 1.04776E-05 0.00072678 0.00155487 0.00224038 0.00258495 0.00267493 0.00269246 0.00269766 0.00270103 0.00270412 0.00270718 0.00271023 0.00271328 0.00271633 0.00271939 0.00272244 0.00272549 0.00272854 0.00273159 0.00273464 0.00273769 0.00274074 0.00274379 0.00274684 0.00274989 0.00275295 0.002756 0.00275905 0.0027621 0.00276515 0.0027682 0.00277125 0.0027743 0.00277735 0.0027804 0.00278345 0.00278651 0.00278956 0.00279261 0.00279566 0.00279871 0.00280176 0.00280481 0.00280786 0.00281091 0.00281396 0.00281701 0.00282006 0.00282312 0.00282617 0.00282922 0.00283227 0.00283532 0.00283837 0.00284142 0.00284447 0.00284752 0.00285057 0.00285362 0.00285668 0.00285973 0.00286278 0.00286583 0.00286888 0.00287193 0.00287498 0.00287803 0.00288108 0.00288413 0.00288718 0.00289024 0.00289329 0.00289634 0.00289939 0.00290244 0.00290549 0.00290854 0.00291159 0.00291464 0.00291769 0.00292074 0.0029238 0.00292685 0.0029299 0.00293295 0.002936 0.00293905 0.0029421 0.00294515 0.0029482 0.00295125 0.0029543 0.00295735 0.0029604 0.00296346 0.00296651 0.00296956 0.00297261 0.00297566 0.00297871 0.00298176 0.00298481 0.00298786 0.00299091 0.00299396 0.00299701 0.00300007 0.00300312 0.00300617 0.00300922 0.00301227 0.00301532 0.00301837 0.00302142 0.00302447 0.00302752 0.00303057 0.00303363 0.00303668 0.00303973 0.00304278 0.00304583 0.00304888 0.00305193 0.00305498 0.00305803 0.00306108 0.00306413 0.00306719 +-0.000611645 -0.000580842 -0.000532554 -0.000394467 1.05348E-05 0.000728278 0.00155798 0.00224582 0.00259276 0.00268367 0.00270138 0.00270662 0.00271 0.00271311 0.00271618 0.00271924 0.0027223 0.00272536 0.00272842 0.00273148 0.00273454 0.00273761 0.00274067 0.00274373 0.00274679 0.00274985 0.00275291 0.00275597 0.00275904 0.0027621 0.00276516 0.00276822 0.00277128 0.00277434 0.0027774 0.00278047 0.00278353 0.00278659 0.00278965 0.00279271 0.00279577 0.00279883 0.0028019 0.00280496 0.00280802 0.00281108 0.00281414 0.0028172 0.00282026 0.00282333 0.00282639 0.00282945 0.00283251 0.00283557 0.00283863 0.00284169 0.00284475 0.00284782 0.00285088 0.00285394 0.002857 0.00286006 0.00286312 0.00286618 0.00286925 0.00287231 0.00287537 0.00287843 0.00288149 0.00288455 0.00288761 0.00289068 0.00289374 0.0028968 0.00289986 0.00290292 0.00290598 0.00290904 0.00291211 0.00291517 0.00291823 0.00292129 0.00292435 0.00292741 0.00293047 0.00293353 0.0029366 0.00293966 0.00294272 0.00294578 0.00294884 0.0029519 0.00295496 0.00295802 0.00296109 0.00296415 0.00296721 0.00297027 0.00297333 0.00297639 0.00297945 0.00298252 0.00298558 0.00298864 0.0029917 0.00299476 0.00299782 0.00300088 0.00300395 0.00300701 0.00301007 0.00301313 0.00301619 0.00301925 0.00302231 0.00302537 0.00302844 0.0030315 0.00303456 0.00303762 0.00304068 0.00304374 0.0030468 0.00304987 0.00305293 0.00305599 0.00305905 0.00306211 0.00306517 0.00306823 0.0030713 0.00307436 0.00307742 +-0.00061386 -0.000582936 -0.000534429 -0.000395712 1.05921E-05 0.000729771 0.00156108 0.00225124 0.00260055 0.0026924 0.00271029 0.00271557 0.00271896 0.00272208 0.00272516 0.00272823 0.00273131 0.00273438 0.00273745 0.00274052 0.00274359 0.00274667 0.00274974 0.00275281 0.00275588 0.00275895 0.00276202 0.0027651 0.00276817 0.00277124 0.00277431 0.00277738 0.00278046 0.00278353 0.0027866 0.00278967 0.00279274 0.00279582 0.00279889 0.00280196 0.00280503 0.0028081 0.00281117 0.00281425 0.00281732 0.00282039 0.00282346 0.00282653 0.00282961 0.00283268 0.00283575 0.00283882 0.00284189 0.00284497 0.00284804 0.00285111 0.00285418 0.00285725 0.00286032 0.0028634 0.00286647 0.00286954 0.00287261 0.00287568 0.00287876 0.00288183 0.0028849 0.00288797 0.00289104 0.00289411 0.00289719 0.00290026 0.00290333 0.0029064 0.00290947 0.00291255 0.00291562 0.00291869 0.00292176 0.00292483 0.00292791 0.00293098 0.00293405 0.00293712 0.00294019 0.00294326 0.00294634 0.00294941 0.00295248 0.00295555 0.00295862 0.00296169 0.00296477 0.00296784 0.00297091 0.00297398 0.00297705 0.00298013 0.0029832 0.00298627 0.00298934 0.00299241 0.00299548 0.00299856 0.00300163 0.0030047 0.00300777 0.00301084 0.00301392 0.00301699 0.00302006 0.00302313 0.0030262 0.00302928 0.00303235 0.00303542 0.00303849 0.00304156 0.00304463 0.00304771 0.00305078 0.00305385 0.00305692 0.00305999 0.00306307 0.00306614 0.00306921 0.00307228 0.00307535 0.00307843 0.0030815 0.00308457 0.00308764 +-0.000616075 -0.000585029 -0.000536304 -0.000396955 1.06495E-05 0.00073126 0.00156417 0.00225664 0.00260833 0.00270111 0.0027192 0.00272451 0.00272792 0.00273105 0.00273414 0.00273722 0.0027403 0.00274339 0.00274647 0.00274955 0.00275263 0.00275572 0.0027588 0.00276188 0.00276496 0.00276804 0.00277113 0.00277421 0.00277729 0.00278037 0.00278346 0.00278654 0.00278962 0.0027927 0.00279579 0.00279887 0.00280195 0.00280503 0.00280812 0.0028112 0.00281428 0.00281736 0.00282044 0.00282353 0.00282661 0.00282969 0.00283277 0.00283586 0.00283894 0.00284202 0.0028451 0.00284819 0.00285127 0.00285435 0.00285743 0.00286051 0.0028636 0.00286668 0.00286976 0.00287284 0.00287593 0.00287901 0.00288209 0.00288517 0.00288826 0.00289134 0.00289442 0.0028975 0.00290059 0.00290367 0.00290675 0.00290983 0.00291291 0.002916 0.00291908 0.00292216 0.00292524 0.00292833 0.00293141 0.00293449 0.00293757 0.00294066 0.00294374 0.00294682 0.0029499 0.00295298 0.00295607 0.00295915 0.00296223 0.00296531 0.0029684 0.00297148 0.00297456 0.00297764 0.00298072 0.00298381 0.00298689 0.00298997 0.00299305 0.00299614 0.00299922 0.0030023 0.00300538 0.00300847 0.00301155 0.00301463 0.00301771 0.00302079 0.00302388 0.00302696 0.00303004 0.00303312 0.00303621 0.00303929 0.00304237 0.00304545 0.00304854 0.00305162 0.0030547 0.00305778 0.00306087 0.00306395 0.00306703 0.00307011 0.00307319 0.00307628 0.00307936 0.00308244 0.00308552 0.00308861 0.00309169 0.00309477 0.00309785 +-0.000618289 -0.000587121 -0.000538178 -0.000398197 1.07069E-05 0.000732744 0.00156725 0.00226202 0.00261609 0.00270982 0.00272809 0.00273344 0.00273687 0.00274001 0.00274311 0.0027462 0.00274929 0.00275239 0.00275548 0.00275857 0.00276166 0.00276476 0.00276785 0.00277094 0.00277403 0.00277713 0.00278022 0.00278331 0.00278641 0.0027895 0.00279259 0.00279568 0.00279878 0.00280187 0.00280496 0.00280806 0.00281115 0.00281424 0.00281733 0.00282043 0.00282352 0.00282661 0.00282971 0.0028328 0.00283589 0.00283898 0.00284208 0.00284517 0.00284826 0.00285135 0.00285445 0.00285754 0.00286063 0.00286373 0.00286682 0.00286991 0.002873 0.0028761 0.00287919 0.00288228 0.00288538 0.00288847 0.00289156 0.00289465 0.00289775 0.00290084 0.00290393 0.00290702 0.00291012 0.00291321 0.0029163 0.0029194 0.00292249 0.00292558 0.00292867 0.00293177 0.00293486 0.00293795 0.00294105 0.00294414 0.00294723 0.00295032 0.00295342 0.00295651 0.0029596 0.0029627 0.00296579 0.00296888 0.00297197 0.00297507 0.00297816 0.00298125 0.00298434 0.00298744 0.00299053 0.00299362 0.00299671 0.00299981 0.0030029 0.00300599 0.00300909 0.00301218 0.00301527 0.00301836 0.00302146 0.00302455 0.00302764 0.00303074 0.00303383 0.00303692 0.00304001 0.00304311 0.0030462 0.00304929 0.00305239 0.00305548 0.00305857 0.00306166 0.00306476 0.00306785 0.00307094 0.00307403 0.00307713 0.00308022 0.00308331 0.00308641 0.0030895 0.00309259 0.00309568 0.00309878 0.00310187 0.00310496 0.00310806 +-0.000620502 -0.000589212 -0.00054005 -0.000399436 1.07644E-05 0.000734223 0.00157032 0.00226738 0.00262383 0.00271851 0.00273698 0.00274237 0.0027458 0.00274895 0.00275206 0.00275517 0.00275827 0.00276138 0.00276448 0.00276758 0.00277068 0.00277379 0.00277689 0.00277999 0.0027831 0.0027862 0.0027893 0.00279241 0.00279551 0.00279861 0.00280172 0.00280482 0.00280792 0.00281103 0.00281413 0.00281723 0.00282034 0.00282344 0.00282654 0.00282965 0.00283275 0.00283585 0.00283896 0.00284206 0.00284516 0.00284827 0.00285137 0.00285447 0.00285758 0.00286068 0.00286378 0.00286689 0.00286999 0.00287309 0.0028762 0.0028793 0.0028824 0.00288551 0.00288861 0.00289171 0.00289481 0.00289792 0.00290102 0.00290412 0.00290723 0.00291033 0.00291343 0.00291654 0.00291964 0.00292274 0.00292585 0.00292895 0.00293205 0.00293516 0.00293826 0.00294136 0.00294447 0.00294757 0.00295067 0.00295378 0.00295688 0.00295998 0.00296309 0.00296619 0.00296929 0.0029724 0.0029755 0.0029786 0.00298171 0.00298481 0.00298791 0.00299101 0.00299412 0.00299722 0.00300032 0.00300343 0.00300653 0.00300963 0.00301274 0.00301584 0.00301894 0.00302205 0.00302515 0.00302825 0.00303136 0.00303446 0.00303756 0.00304067 0.00304377 0.00304687 0.00304998 0.00305308 0.00305618 0.00305929 0.00306239 0.00306549 0.0030686 0.0030717 0.0030748 0.00307791 0.00308101 0.00308411 0.00308722 0.00309032 0.00309342 0.00309652 0.00309963 0.00310273 0.00310583 0.00310894 0.00311204 0.00311514 0.00311825 +-0.000622714 -0.000591303 -0.000541921 -0.000400674 1.08221E-05 0.000735697 0.00157337 0.00227272 0.00263156 0.0027272 0.00274585 0.00275128 0.00275473 0.00275789 0.00276101 0.00276413 0.00276724 0.00277036 0.00277347 0.00277658 0.0027797 0.00278281 0.00278592 0.00278904 0.00279215 0.00279527 0.00279838 0.00280149 0.00280461 0.00280772 0.00281083 0.00281395 0.00281706 0.00282018 0.00282329 0.0028264 0.00282952 0.00283263 0.00283574 0.00283886 0.00284197 0.00284508 0.0028482 0.00285131 0.00285443 0.00285754 0.00286065 0.00286377 0.00286688 0.00286999 0.00287311 0.00287622 0.00287934 0.00288245 0.00288556 0.00288868 0.00289179 0.0028949 0.00289802 0.00290113 0.00290424 0.00290736 0.00291047 0.00291359 0.0029167 0.00291981 0.00292293 0.00292604 0.00292915 0.00293227 0.00293538 0.0029385 0.00294161 0.00294472 0.00294784 0.00295095 0.00295406 0.00295718 0.00296029 0.00296341 0.00296652 0.00296963 0.00297275 0.00297586 0.00297897 0.00298209 0.0029852 0.00298831 0.00299143 0.00299454 0.00299766 0.00300077 0.00300388 0.003007 0.00301011 0.00301322 0.00301634 0.00301945 0.00302256 0.00302568 0.00302879 0.00303191 0.00303502 0.00303813 0.00304125 0.00304436 0.00304747 0.00305059 0.0030537 0.00305681 0.00305993 0.00306304 0.00306616 0.00306927 0.00307238 0.0030755 0.00307861 0.00308172 0.00308484 0.00308795 0.00309107 0.00309418 0.00309729 0.00310041 0.00310352 0.00310663 0.00310975 0.00311286 0.00311597 0.00311909 0.0031222 0.00312532 0.00312843 +-0.000624926 -0.000593392 -0.000543791 -0.000401909 1.08798E-05 0.000737167 0.00157641 0.00227803 0.00263926 0.00273587 0.00275472 0.00276018 0.00276365 0.00276682 0.00276995 0.00277308 0.0027762 0.00277933 0.00278245 0.00278558 0.0027887 0.00279182 0.00279495 0.00279807 0.0028012 0.00280432 0.00280745 0.00281057 0.00281369 0.00281682 0.00281994 0.00282307 0.00282619 0.00282931 0.00283244 0.00283556 0.00283869 0.00284181 0.00284493 0.00284806 0.00285118 0.00285431 0.00285743 0.00286056 0.00286368 0.0028668 0.00286993 0.00287305 0.00287618 0.0028793 0.00288242 0.00288555 0.00288867 0.0028918 0.00289492 0.00289804 0.00290117 0.00290429 0.00290742 0.00291054 0.00291367 0.00291679 0.00291991 0.00292304 0.00292616 0.00292929 0.00293241 0.00293553 0.00293866 0.00294178 0.00294491 0.00294803 0.00295116 0.00295428 0.0029574 0.00296053 0.00296365 0.00296678 0.0029699 0.00297302 0.00297615 0.00297927 0.0029824 0.00298552 0.00298864 0.00299177 0.00299489 0.00299802 0.00300114 0.00300427 0.00300739 0.00301051 0.00301364 0.00301676 0.00301988 0.00302301 0.00302613 0.00302926 0.00303238 0.00303551 0.00303863 0.00304175 0.00304488 0.003048 0.00305113 0.00305425 0.00305737 0.0030605 0.00306362 0.00306675 0.00306987 0.003073 0.00307612 0.00307924 0.00308237 0.00308549 0.00308862 0.00309174 0.00309486 0.00309799 0.00310111 0.00310424 0.00310736 0.00311048 0.00311361 0.00311673 0.00311986 0.00312298 0.00312611 0.00312923 0.00313235 0.00313548 0.0031386 +-0.000627136 -0.000595481 -0.00054566 -0.000403143 1.09376E-05 0.000738632 0.00157944 0.00228333 0.00264695 0.00274453 0.00276358 0.00276908 0.00277256 0.00277574 0.00277889 0.00278202 0.00278516 0.00278829 0.00279143 0.00279456 0.00279769 0.00280083 0.00280396 0.0028071 0.00281023 0.00281337 0.0028165 0.00281964 0.00282277 0.00282591 0.00282904 0.00283217 0.00283531 0.00283844 0.00284158 0.00284471 0.00284785 0.00285098 0.00285412 0.00285725 0.00286039 0.00286352 0.00286665 0.00286979 0.00287292 0.00287606 0.00287919 0.00288233 0.00288546 0.0028886 0.00289173 0.00289487 0.002898 0.00290113 0.00290427 0.0029074 0.00291054 0.00291367 0.00291681 0.00291994 0.00292308 0.00292621 0.00292935 0.00293248 0.00293562 0.00293875 0.00294188 0.00294502 0.00294815 0.00295129 0.00295442 0.00295756 0.00296069 0.00296383 0.00296696 0.0029701 0.00297323 0.00297636 0.0029795 0.00298263 0.00298577 0.0029889 0.00299204 0.00299517 0.00299831 0.00300144 0.00300458 0.00300771 0.00301084 0.00301398 0.00301711 0.00302025 0.00302338 0.00302652 0.00302965 0.00303279 0.00303592 0.00303905 0.00304219 0.00304532 0.00304846 0.00305159 0.00305473 0.00305786 0.003061 0.00306413 0.00306727 0.0030704 0.00307353 0.00307667 0.0030798 0.00308294 0.00308607 0.00308921 0.00309234 0.00309548 0.00309861 0.00310175 0.00310488 0.00310801 0.00311115 0.00311428 0.00311742 0.00312055 0.00312369 0.00312682 0.00312996 0.00313309 0.00313623 0.00313936 0.00314249 0.00314563 0.00314876 +-0.000629346 -0.000597569 -0.000547527 -0.000404375 1.09954E-05 0.000740092 0.00158246 0.00228861 0.00265462 0.00275318 0.00277242 0.00277797 0.00278146 0.00278466 0.00278781 0.00279095 0.0027941 0.00279724 0.00280039 0.00280353 0.00280668 0.00280982 0.00281297 0.00281611 0.00281926 0.0028224 0.00282555 0.00282869 0.00283184 0.00283498 0.00283813 0.00284127 0.00284442 0.00284756 0.00285071 0.00285385 0.002857 0.00286014 0.00286329 0.00286643 0.00286958 0.00287272 0.00287587 0.00287901 0.00288216 0.0028853 0.00288845 0.00289159 0.00289474 0.00289788 0.00290103 0.00290417 0.00290732 0.00291046 0.00291361 0.00291675 0.0029199 0.00292304 0.00292619 0.00292933 0.00293248 0.00293562 0.00293877 0.00294191 0.00294506 0.0029482 0.00295135 0.00295449 0.00295764 0.00296078 0.00296393 0.00296707 0.00297022 0.00297336 0.00297651 0.00297965 0.0029828 0.00298594 0.00298909 0.00299223 0.00299538 0.00299852 0.00300167 0.00300481 0.00300796 0.0030111 0.00301425 0.00301739 0.00302054 0.00302368 0.00302683 0.00302997 0.00303312 0.00303626 0.00303941 0.00304255 0.0030457 0.00304884 0.00305199 0.00305513 0.00305828 0.00306142 0.00306457 0.00306771 0.00307086 0.003074 0.00307715 0.00308029 0.00308344 0.00308658 0.00308973 0.00309287 0.00309602 0.00309916 0.00310231 0.00310545 0.0031086 0.00311174 0.00311489 0.00311803 0.00312118 0.00312432 0.00312747 0.00313061 0.00313376 0.0031369 0.00314005 0.00314319 0.00314634 0.00314948 0.00315263 0.00315577 0.00315892 +-0.000631555 -0.000599655 -0.000549394 -0.000405606 1.10534E-05 0.000741548 0.00158547 0.00229387 0.00266228 0.00276182 0.00278126 0.00278684 0.00279035 0.00279356 0.00279672 0.00279988 0.00280303 0.00280619 0.00280935 0.0028125 0.00281566 0.00281881 0.00282197 0.00282512 0.00282828 0.00283143 0.00283459 0.00283774 0.0028409 0.00284405 0.00284721 0.00285037 0.00285352 0.00285668 0.00285983 0.00286299 0.00286614 0.0028693 0.00287245 0.00287561 0.00287876 0.00288192 0.00288507 0.00288823 0.00289139 0.00289454 0.0028977 0.00290085 0.00290401 0.00290716 0.00291032 0.00291347 0.00291663 0.00291978 0.00292294 0.00292609 0.00292925 0.00293241 0.00293556 0.00293872 0.00294187 0.00294503 0.00294818 0.00295134 0.00295449 0.00295765 0.0029608 0.00296396 0.00296711 0.00297027 0.00297343 0.00297658 0.00297974 0.00298289 0.00298605 0.0029892 0.00299236 0.00299551 0.00299867 0.00300182 0.00300498 0.00300813 0.00301129 0.00301445 0.0030176 0.00302076 0.00302391 0.00302707 0.00303022 0.00303338 0.00303653 0.00303969 0.00304284 0.003046 0.00304915 0.00305231 0.00305546 0.00305862 0.00306177 0.00306493 0.00306809 0.00307124 0.0030744 0.00307755 0.00308071 0.00308386 0.00308702 0.00309017 0.00309333 0.00309648 0.00309964 0.00310279 0.00310595 0.00310911 0.00311226 0.00311542 0.00311857 0.00312173 0.00312488 0.00312804 0.00313119 0.00313435 0.0031375 0.00314066 0.00314381 0.00314697 0.00315013 0.00315328 0.00315644 0.00315959 0.00316275 0.0031659 0.00316906 +-0.000633762 -0.000601741 -0.000551259 -0.000406834 1.11114E-05 0.000742999 0.00158847 0.00229911 0.00266991 0.00277045 0.00279009 0.00279571 0.00279924 0.00280245 0.00280563 0.00280879 0.00281196 0.00281513 0.00281829 0.00282146 0.00282462 0.00282779 0.00283095 0.00283412 0.00283729 0.00284045 0.00284362 0.00284678 0.00284995 0.00285312 0.00285628 0.00285945 0.00286261 0.00286578 0.00286894 0.00287211 0.00287528 0.00287844 0.00288161 0.00288477 0.00288794 0.0028911 0.00289427 0.00289744 0.0029006 0.00290377 0.00290693 0.0029101 0.00291327 0.00291643 0.0029196 0.00292276 0.00292593 0.00292909 0.00293226 0.00293543 0.00293859 0.00294176 0.00294492 0.00294809 0.00295125 0.00295442 0.00295759 0.00296075 0.00296392 0.00296708 0.00297025 0.00297342 0.00297658 0.00297975 0.00298291 0.00298608 0.00298924 0.00299241 0.00299558 0.00299874 0.00300191 0.00300507 0.00300824 0.0030114 0.00301457 0.00301774 0.0030209 0.00302407 0.00302723 0.0030304 0.00303356 0.00303673 0.0030399 0.00304306 0.00304623 0.00304939 0.00305256 0.00305572 0.00305889 0.00306206 0.00306522 0.00306839 0.00307155 0.00307472 0.00307788 0.00308105 0.00308422 0.00308738 0.00309055 0.00309371 0.00309688 0.00310005 0.00310321 0.00310638 0.00310954 0.00311271 0.00311587 0.00311904 0.00312221 0.00312537 0.00312854 0.0031317 0.00313487 0.00313803 0.0031412 0.00314437 0.00314753 0.0031507 0.00315386 0.00315703 0.0031602 0.00316336 0.00316653 0.00316969 0.00317286 0.00317602 0.00317919 +-0.00063597 -0.000603826 -0.000553123 -0.000408061 1.11696E-05 0.000744445 0.00159145 0.00230434 0.00267753 0.00277907 0.00279891 0.00280457 0.00280811 0.00281134 0.00281452 0.0028177 0.00282088 0.00282405 0.00282723 0.00283041 0.00283358 0.00283676 0.00283993 0.00284311 0.00284629 0.00284946 0.00285264 0.00285582 0.00285899 0.00286217 0.00286534 0.00286852 0.0028717 0.00287487 0.00287805 0.00288122 0.0028844 0.00288758 0.00289075 0.00289393 0.00289711 0.00290028 0.00290346 0.00290663 0.00290981 0.00291299 0.00291616 0.00291934 0.00292251 0.00292569 0.00292887 0.00293204 0.00293522 0.0029384 0.00294157 0.00294475 0.00294792 0.0029511 0.00295428 0.00295745 0.00296063 0.0029638 0.00296698 0.00297016 0.00297333 0.00297651 0.00297969 0.00298286 0.00298604 0.00298921 0.00299239 0.00299557 0.00299874 0.00300192 0.0030051 0.00300827 0.00301145 0.00301462 0.0030178 0.00302098 0.00302415 0.00302733 0.0030305 0.00303368 0.00303686 0.00304003 0.00304321 0.00304639 0.00304956 0.00305274 0.00305591 0.00305909 0.00306227 0.00306544 0.00306862 0.00307179 0.00307497 0.00307815 0.00308132 0.0030845 0.00308767 0.00309085 0.00309403 0.0030972 0.00310038 0.00310356 0.00310673 0.00310991 0.00311308 0.00311626 0.00311944 0.00312261 0.00312579 0.00312896 0.00313214 0.00313532 0.00313849 0.00314167 0.00314485 0.00314802 0.0031512 0.00315437 0.00315755 0.00316073 0.0031639 0.00316708 0.00317026 0.00317343 0.00317661 0.00317978 0.00318296 0.00318614 0.00318931 +-0.000638176 -0.00060591 -0.000554986 -0.000409285 1.12278E-05 0.000745887 0.00159443 0.00230954 0.00268513 0.00278768 0.00280772 0.00281342 0.00281698 0.00282022 0.00282341 0.0028266 0.00282979 0.00283297 0.00283616 0.00283934 0.00284253 0.00284572 0.0028489 0.00285209 0.00285528 0.00285846 0.00286165 0.00286484 0.00286802 0.00287121 0.0028744 0.00287758 0.00288077 0.00288396 0.00288714 0.00289033 0.00289352 0.0028967 0.00289989 0.00290308 0.00290626 0.00290945 0.00291264 0.00291582 0.00291901 0.0029222 0.00292538 0.00292857 0.00293175 0.00293494 0.00293813 0.00294131 0.0029445 0.00294769 0.00295087 0.00295406 0.00295725 0.00296043 0.00296362 0.00296681 0.00296999 0.00297318 0.00297637 0.00297955 0.00298274 0.00298593 0.00298911 0.0029923 0.00299549 0.00299867 0.00300186 0.00300505 0.00300823 0.00301142 0.00301461 0.00301779 0.00302098 0.00302416 0.00302735 0.00303054 0.00303372 0.00303691 0.0030401 0.00304328 0.00304647 0.00304966 0.00305284 0.00305603 0.00305922 0.0030624 0.00306559 0.00306878 0.00307196 0.00307515 0.00307834 0.00308152 0.00308471 0.0030879 0.00309108 0.00309427 0.00309745 0.00310064 0.00310383 0.00310701 0.0031102 0.00311339 0.00311657 0.00311976 0.00312295 0.00312613 0.00312932 0.00313251 0.00313569 0.00313888 0.00314207 0.00314525 0.00314844 0.00315163 0.00315481 0.003158 0.00316119 0.00316437 0.00316756 0.00317075 0.00317393 0.00317712 0.00318031 0.00318349 0.00318668 0.00318986 0.00319305 0.00319624 0.00319942 +-0.000640381 -0.000607994 -0.000556847 -0.000410508 1.12861E-05 0.000747325 0.00159739 0.00231472 0.00269271 0.00279627 0.00281652 0.00282227 0.00282583 0.00282908 0.00283229 0.00283549 0.00283868 0.00284188 0.00284508 0.00284828 0.00285147 0.00285467 0.00285787 0.00286106 0.00286426 0.00286746 0.00287065 0.00287385 0.00287705 0.00288024 0.00288344 0.00288664 0.00288984 0.00289303 0.00289623 0.00289943 0.00290262 0.00290582 0.00290902 0.00291221 0.00291541 0.00291861 0.0029218 0.002925 0.0029282 0.0029314 0.00293459 0.00293779 0.00294099 0.00294418 0.00294738 0.00295058 0.00295377 0.00295697 0.00296017 0.00296336 0.00296656 0.00296976 0.00297296 0.00297615 0.00297935 0.00298255 0.00298574 0.00298894 0.00299214 0.00299533 0.00299853 0.00300173 0.00300492 0.00300812 0.00301132 0.00301452 0.00301771 0.00302091 0.00302411 0.0030273 0.0030305 0.0030337 0.00303689 0.00304009 0.00304329 0.00304648 0.00304968 0.00305288 0.00305608 0.00305927 0.00306247 0.00306567 0.00306886 0.00307206 0.00307526 0.00307845 0.00308165 0.00308485 0.00308804 0.00309124 0.00309444 0.00309763 0.00310083 0.00310403 0.00310723 0.00311042 0.00311362 0.00311682 0.00312001 0.00312321 0.00312641 0.0031296 0.0031328 0.003136 0.00313919 0.00314239 0.00314559 0.00314879 0.00315198 0.00315518 0.00315838 0.00316157 0.00316477 0.00316797 0.00317116 0.00317436 0.00317756 0.00318075 0.00318395 0.00318715 0.00319035 0.00319354 0.00319674 0.00319994 0.00320313 0.00320633 0.00320953 +-0.000642586 -0.000610076 -0.000558708 -0.000411729 1.13444E-05 0.000748758 0.00160034 0.00231988 0.00270028 0.00280486 0.00282532 0.0028311 0.00283468 0.00283794 0.00284116 0.00284437 0.00284757 0.00285078 0.00285399 0.0028572 0.0028604 0.00286361 0.00286682 0.00287003 0.00287323 0.00287644 0.00287965 0.00288286 0.00288606 0.00288927 0.00289248 0.00289568 0.00289889 0.0029021 0.00290531 0.00290851 0.00291172 0.00291493 0.00291814 0.00292134 0.00292455 0.00292776 0.00293096 0.00293417 0.00293738 0.00294059 0.00294379 0.002947 0.00295021 0.00295342 0.00295662 0.00295983 0.00296304 0.00296624 0.00296945 0.00297266 0.00297587 0.00297907 0.00298228 0.00298549 0.0029887 0.0029919 0.00299511 0.00299832 0.00300152 0.00300473 0.00300794 0.00301115 0.00301435 0.00301756 0.00302077 0.00302398 0.00302718 0.00303039 0.0030336 0.0030368 0.00304001 0.00304322 0.00304643 0.00304963 0.00305284 0.00305605 0.00305926 0.00306246 0.00306567 0.00306888 0.00307209 0.00307529 0.0030785 0.00308171 0.00308491 0.00308812 0.00309133 0.00309454 0.00309774 0.00310095 0.00310416 0.00310736 0.00311057 0.00311378 0.00311699 0.00312019 0.0031234 0.00312661 0.00312982 0.00313302 0.00313623 0.00313944 0.00314264 0.00314585 0.00314906 0.00315227 0.00315547 0.00315868 0.00316189 0.0031651 0.0031683 0.00317151 0.00317472 0.00317792 0.00318113 0.00318434 0.00318755 0.00319075 0.00319396 0.00319717 0.00320038 0.00320358 0.00320679 0.00321 0.0032132 0.00321641 0.00321962 +-0.000644789 -0.000612158 -0.000560567 -0.000412949 1.14029E-05 0.000750186 0.00160328 0.00232503 0.00270783 0.00281343 0.0028341 0.00283992 0.00284352 0.00284679 0.00285002 0.00285324 0.00285646 0.00285967 0.00286289 0.00286611 0.00286933 0.00287254 0.00287576 0.00287898 0.0028822 0.00288542 0.00288863 0.00289185 0.00289507 0.00289829 0.0029015 0.00290472 0.00290794 0.00291116 0.00291437 0.00291759 0.00292081 0.00292403 0.00292724 0.00293046 0.00293368 0.0029369 0.00294012 0.00294333 0.00294655 0.00294977 0.00295299 0.0029562 0.00295942 0.00296264 0.00296586 0.00296907 0.00297229 0.00297551 0.00297873 0.00298194 0.00298516 0.00298838 0.0029916 0.00299482 0.00299803 0.00300125 0.00300447 0.00300769 0.0030109 0.00301412 0.00301734 0.00302056 0.00302377 0.00302699 0.00303021 0.00303343 0.00303664 0.00303986 0.00304308 0.0030463 0.00304952 0.00305273 0.00305595 0.00305917 0.00306239 0.0030656 0.00306882 0.00307204 0.00307526 0.00307847 0.00308169 0.00308491 0.00308813 0.00309134 0.00309456 0.00309778 0.003101 0.00310421 0.00310743 0.00311065 0.00311387 0.00311708 0.0031203 0.00312352 0.00312674 0.00312996 0.00313317 0.00313639 0.00313961 0.00314283 0.00314604 0.00314926 0.00315248 0.0031557 0.00315891 0.00316213 0.00316535 0.00316857 0.00317178 0.003175 0.00317822 0.00318144 0.00318466 0.00318787 0.00319109 0.00319431 0.00319753 0.00320074 0.00320396 0.00320718 0.0032104 0.00321361 0.00321683 0.00322005 0.00322327 0.00322648 0.0032297 +-0.000646992 -0.000614238 -0.000562425 -0.000414166 1.14614E-05 0.00075161 0.00160621 0.00233015 0.00271536 0.002822 0.00284288 0.00284874 0.00285235 0.00285564 0.00285887 0.0028621 0.00286533 0.00286856 0.00287179 0.00287501 0.00287824 0.00288147 0.0028847 0.00288793 0.00289115 0.00289438 0.00289761 0.00290084 0.00290407 0.00290729 0.00291052 0.00291375 0.00291698 0.00292021 0.00292343 0.00292666 0.00292989 0.00293312 0.00293635 0.00293957 0.0029428 0.00294603 0.00294926 0.00295249 0.00295571 0.00295894 0.00296217 0.0029654 0.00296863 0.00297185 0.00297508 0.00297831 0.00298154 0.00298477 0.00298799 0.00299122 0.00299445 0.00299768 0.0030009 0.00300413 0.00300736 0.00301059 0.00301382 0.00301704 0.00302027 0.0030235 0.00302673 0.00302996 0.00303318 0.00303641 0.00303964 0.00304287 0.0030461 0.00304932 0.00305255 0.00305578 0.00305901 0.00306224 0.00306546 0.00306869 0.00307192 0.00307515 0.00307838 0.0030816 0.00308483 0.00308806 0.00309129 0.00309452 0.00309774 0.00310097 0.0031042 0.00310743 0.00311066 0.00311388 0.00311711 0.00312034 0.00312357 0.0031268 0.00313002 0.00313325 0.00313648 0.00313971 0.00314294 0.00314616 0.00314939 0.00315262 0.00315585 0.00315908 0.0031623 0.00316553 0.00316876 0.00317199 0.00317522 0.00317844 0.00318167 0.0031849 0.00318813 0.00319136 0.00319458 0.00319781 0.00320104 0.00320427 0.0032075 0.00321072 0.00321395 0.00321718 0.00322041 0.00322364 0.00322686 0.00323009 0.00323332 0.00323655 0.00323978 +-0.000649194 -0.000616318 -0.000564282 -0.000415382 1.152E-05 0.00075303 0.00160913 0.00233526 0.00272287 0.00283055 0.00285164 0.00285755 0.00286117 0.00286447 0.00286772 0.00287096 0.00287419 0.00287743 0.00288067 0.00288391 0.00288715 0.00289039 0.00289362 0.00289686 0.0029001 0.00290334 0.00290658 0.00290982 0.00291305 0.00291629 0.00291953 0.00292277 0.00292601 0.00292925 0.00293248 0.00293572 0.00293896 0.0029422 0.00294544 0.00294868 0.00295191 0.00295515 0.00295839 0.00296163 0.00296487 0.00296811 0.00297134 0.00297458 0.00297782 0.00298106 0.0029843 0.00298754 0.00299077 0.00299401 0.00299725 0.00300049 0.00300373 0.00300696 0.0030102 0.00301344 0.00301668 0.00301992 0.00302316 0.00302639 0.00302963 0.00303287 0.00303611 0.00303935 0.00304259 0.00304582 0.00304906 0.0030523 0.00305554 0.00305878 0.00306202 0.00306525 0.00306849 0.00307173 0.00307497 0.00307821 0.00308145 0.00308468 0.00308792 0.00309116 0.0030944 0.00309764 0.00310088 0.00310411 0.00310735 0.00311059 0.00311383 0.00311707 0.00312031 0.00312354 0.00312678 0.00313002 0.00313326 0.0031365 0.00313974 0.00314297 0.00314621 0.00314945 0.00315269 0.00315593 0.00315917 0.0031624 0.00316564 0.00316888 0.00317212 0.00317536 0.0031786 0.00318183 0.00318507 0.00318831 0.00319155 0.00319479 0.00319803 0.00320126 0.0032045 0.00320774 0.00321098 0.00321422 0.00321746 0.00322069 0.00322393 0.00322717 0.00323041 0.00323365 0.00323689 0.00324012 0.00324336 0.0032466 0.00324984 +-0.000651395 -0.000618397 -0.000566138 -0.000416596 1.15787E-05 0.000754445 0.00161204 0.00234034 0.00273037 0.00283909 0.0028604 0.00286635 0.00286999 0.00287329 0.00287655 0.0028798 0.00288305 0.0028863 0.00288955 0.0028928 0.00289604 0.00289929 0.00290254 0.00290579 0.00290904 0.00291229 0.00291554 0.00291878 0.00292203 0.00292528 0.00292853 0.00293178 0.00293503 0.00293828 0.00294153 0.00294477 0.00294802 0.00295127 0.00295452 0.00295777 0.00296102 0.00296427 0.00296751 0.00297076 0.00297401 0.00297726 0.00298051 0.00298376 0.00298701 0.00299025 0.0029935 0.00299675 0.003 0.00300325 0.0030065 0.00300975 0.003013 0.00301624 0.00301949 0.00302274 0.00302599 0.00302924 0.00303249 0.00303574 0.00303898 0.00304223 0.00304548 0.00304873 0.00305198 0.00305523 0.00305848 0.00306172 0.00306497 0.00306822 0.00307147 0.00307472 0.00307797 0.00308122 0.00308447 0.00308771 0.00309096 0.00309421 0.00309746 0.00310071 0.00310396 0.00310721 0.00311045 0.0031137 0.00311695 0.0031202 0.00312345 0.0031267 0.00312995 0.0031332 0.00313644 0.00313969 0.00314294 0.00314619 0.00314944 0.00315269 0.00315594 0.00315918 0.00316243 0.00316568 0.00316893 0.00317218 0.00317543 0.00317868 0.00318192 0.00318517 0.00318842 0.00319167 0.00319492 0.00319817 0.00320142 0.00320466 0.00320791 0.00321116 0.00321441 0.00321766 0.00322091 0.00322416 0.00322741 0.00323065 0.0032339 0.00323715 0.0032404 0.00324365 0.0032469 0.00325015 0.00325339 0.00325664 0.00325989 +-0.000653596 -0.000620475 -0.000567992 -0.000417808 1.16375E-05 0.000755856 0.00161494 0.00234541 0.00273784 0.00284762 0.00286915 0.00287514 0.00287879 0.00288211 0.00288538 0.00288864 0.0028919 0.00289516 0.00289841 0.00290167 0.00290493 0.00290819 0.00291145 0.00291471 0.00291797 0.00292123 0.00292449 0.00292774 0.002931 0.00293426 0.00293752 0.00294078 0.00294404 0.0029473 0.00295056 0.00295382 0.00295708 0.00296033 0.00296359 0.00296685 0.00297011 0.00297337 0.00297663 0.00297989 0.00298315 0.00298641 0.00298967 0.00299292 0.00299618 0.00299944 0.0030027 0.00300596 0.00300922 0.00301248 0.00301574 0.003019 0.00302225 0.00302551 0.00302877 0.00303203 0.00303529 0.00303855 0.00304181 0.00304507 0.00304833 0.00305159 0.00305484 0.0030581 0.00306136 0.00306462 0.00306788 0.00307114 0.0030744 0.00307766 0.00308092 0.00308418 0.00308743 0.00309069 0.00309395 0.00309721 0.00310047 0.00310373 0.00310699 0.00311025 0.00311351 0.00311676 0.00312002 0.00312328 0.00312654 0.0031298 0.00313306 0.00313632 0.00313958 0.00314284 0.0031461 0.00314935 0.00315261 0.00315587 0.00315913 0.00316239 0.00316565 0.00316891 0.00317217 0.00317543 0.00317868 0.00318194 0.0031852 0.00318846 0.00319172 0.00319498 0.00319824 0.0032015 0.00320476 0.00320802 0.00321127 0.00321453 0.00321779 0.00322105 0.00322431 0.00322757 0.00323083 0.00323409 0.00323735 0.0032406 0.00324386 0.00324712 0.00325038 0.00325364 0.0032569 0.00326016 0.00326342 0.00326668 0.00326994 +-0.000655795 -0.000622552 -0.000569846 -0.000419018 1.16964E-05 0.000757262 0.00161783 0.00235046 0.0027453 0.00285614 0.00287789 0.00288392 0.00288759 0.00289092 0.00289419 0.00289746 0.00290073 0.002904 0.00290727 0.00291054 0.00291381 0.00291708 0.00292035 0.00292362 0.00292689 0.00293016 0.00293343 0.0029367 0.00293997 0.00294323 0.0029465 0.00294977 0.00295304 0.00295631 0.00295958 0.00296285 0.00296612 0.00296939 0.00297266 0.00297593 0.0029792 0.00298247 0.00298574 0.002989 0.00299227 0.00299554 0.00299881 0.00300208 0.00300535 0.00300862 0.00301189 0.00301516 0.00301843 0.0030217 0.00302497 0.00302824 0.00303151 0.00303477 0.00303804 0.00304131 0.00304458 0.00304785 0.00305112 0.00305439 0.00305766 0.00306093 0.0030642 0.00306747 0.00307074 0.00307401 0.00307728 0.00308054 0.00308381 0.00308708 0.00309035 0.00309362 0.00309689 0.00310016 0.00310343 0.0031067 0.00310997 0.00311324 0.00311651 0.00311978 0.00312305 0.00312631 0.00312958 0.00313285 0.00313612 0.00313939 0.00314266 0.00314593 0.0031492 0.00315247 0.00315574 0.00315901 0.00316228 0.00316555 0.00316881 0.00317208 0.00317535 0.00317862 0.00318189 0.00318516 0.00318843 0.0031917 0.00319497 0.00319824 0.00320151 0.00320478 0.00320805 0.00321131 0.00321458 0.00321785 0.00322112 0.00322439 0.00322766 0.00323093 0.0032342 0.00323747 0.00324074 0.00324401 0.00324728 0.00325055 0.00325382 0.00325708 0.00326035 0.00326362 0.00326689 0.00327016 0.00327343 0.0032767 0.00327997 +-0.000657994 -0.000624628 -0.000571698 -0.000420226 1.17553E-05 0.000758665 0.00162071 0.00235549 0.00275275 0.00286465 0.00288661 0.00289269 0.00289638 0.00289972 0.002903 0.00290628 0.00290956 0.00291284 0.00291612 0.0029194 0.00292268 0.00292596 0.00292924 0.00293252 0.0029358 0.00293908 0.00294236 0.00294564 0.00294892 0.0029522 0.00295548 0.00295876 0.00296204 0.00296532 0.0029686 0.00297188 0.00297516 0.00297844 0.00298171 0.00298499 0.00298827 0.00299155 0.00299483 0.00299811 0.00300139 0.00300467 0.00300795 0.00301123 0.00301451 0.00301779 0.00302107 0.00302435 0.00302763 0.00303091 0.00303419 0.00303747 0.00304075 0.00304403 0.00304731 0.00305059 0.00305387 0.00305714 0.00306042 0.0030637 0.00306698 0.00307026 0.00307354 0.00307682 0.0030801 0.00308338 0.00308666 0.00308994 0.00309322 0.0030965 0.00309978 0.00310306 0.00310634 0.00310962 0.0031129 0.00311618 0.00311946 0.00312274 0.00312602 0.0031293 0.00313258 0.00313585 0.00313913 0.00314241 0.00314569 0.00314897 0.00315225 0.00315553 0.00315881 0.00316209 0.00316537 0.00316865 0.00317193 0.00317521 0.00317849 0.00318177 0.00318505 0.00318833 0.00319161 0.00319489 0.00319817 0.00320145 0.00320473 0.003208 0.00321128 0.00321456 0.00321784 0.00322112 0.0032244 0.00322768 0.00323096 0.00323424 0.00323752 0.0032408 0.00324408 0.00324736 0.00325064 0.00325392 0.0032572 0.00326048 0.00326376 0.00326704 0.00327032 0.0032736 0.00327688 0.00328016 0.00328344 0.00328671 0.00328999 +-0.000660192 -0.000626703 -0.000573549 -0.000421433 1.18143E-05 0.000760063 0.00162358 0.0023605 0.00276017 0.00287315 0.00289534 0.00290145 0.00290516 0.00290851 0.0029118 0.00291509 0.00291838 0.00292167 0.00292496 0.00292825 0.00293154 0.00293483 0.00293812 0.00294141 0.0029447 0.00294799 0.00295128 0.00295457 0.00295786 0.00296115 0.00296444 0.00296773 0.00297102 0.00297431 0.0029776 0.00298089 0.00298418 0.00298747 0.00299076 0.00299405 0.00299734 0.00300063 0.00300392 0.00300721 0.0030105 0.00301379 0.00301708 0.00302037 0.00302366 0.00302695 0.00303024 0.00303353 0.00303682 0.00304011 0.0030434 0.00304669 0.00304998 0.00305327 0.00305656 0.00305985 0.00306314 0.00306643 0.00306972 0.00307301 0.0030763 0.00307959 0.00308288 0.00308617 0.00308946 0.00309275 0.00309604 0.00309933 0.00310262 0.00310591 0.0031092 0.00311249 0.00311578 0.00311907 0.00312236 0.00312565 0.00312894 0.00313223 0.00313552 0.00313881 0.0031421 0.00314539 0.00314868 0.00315197 0.00315526 0.00315855 0.00316184 0.00316512 0.00316841 0.0031717 0.00317499 0.00317828 0.00318157 0.00318486 0.00318815 0.00319144 0.00319473 0.00319802 0.00320131 0.0032046 0.00320789 0.00321118 0.00321447 0.00321776 0.00322105 0.00322434 0.00322763 0.00323092 0.00323421 0.0032375 0.00324079 0.00324408 0.00324737 0.00325066 0.00325395 0.00325724 0.00326053 0.00326382 0.00326711 0.0032704 0.00327369 0.00327698 0.00328027 0.00328356 0.00328685 0.00329014 0.00329343 0.00329672 0.00330001 +-0.000662389 -0.000628778 -0.000575399 -0.000422638 1.18734E-05 0.000761456 0.00162643 0.0023655 0.00276758 0.00288164 0.00290405 0.00291021 0.00291393 0.00291729 0.0029206 0.0029239 0.0029272 0.0029305 0.0029338 0.0029371 0.0029404 0.0029437 0.002947 0.0029503 0.0029536 0.0029569 0.0029602 0.0029635 0.0029668 0.0029701 0.0029734 0.0029767 0.00298 0.0029833 0.0029866 0.0029899 0.0029932 0.0029965 0.0029998 0.0030031 0.0030064 0.0030097 0.003013 0.0030163 0.0030196 0.0030229 0.0030262 0.0030295 0.0030328 0.0030361 0.0030394 0.0030427 0.003046 0.0030493 0.0030526 0.0030559 0.0030592 0.0030625 0.0030658 0.0030691 0.0030724 0.0030757 0.003079 0.0030823 0.0030856 0.0030889 0.0030922 0.0030955 0.00309881 0.00310211 0.00310541 0.00310871 0.00311201 0.00311531 0.00311861 0.00312191 0.00312521 0.00312851 0.00313181 0.00313511 0.00313841 0.00314171 0.00314501 0.00314831 0.00315161 0.00315491 0.00315821 0.00316151 0.00316481 0.00316811 0.00317141 0.00317471 0.00317801 0.00318131 0.00318461 0.00318791 0.00319121 0.00319451 0.00319781 0.00320111 0.00320441 0.00320771 0.00321101 0.00321431 0.00321761 0.00322091 0.00322421 0.00322751 0.00323081 0.00323411 0.00323741 0.00324071 0.00324401 0.00324731 0.00325061 0.00325391 0.00325721 0.00326051 0.00326381 0.00326711 0.00327041 0.00327371 0.00327701 0.00328031 0.00328361 0.00328691 0.00329021 0.00329351 0.00329681 0.00330011 0.00330341 0.00330671 0.00331001 +-0.000664585 -0.000630852 -0.000577248 -0.000423841 1.19326E-05 0.000762845 0.00162928 0.00237047 0.00277497 0.00289012 0.00291275 0.00291895 0.00292269 0.00292606 0.00292938 0.00293269 0.002936 0.00293931 0.00294262 0.00294593 0.00294924 0.00295255 0.00295586 0.00295917 0.00296248 0.00296579 0.00296911 0.00297242 0.00297573 0.00297904 0.00298235 0.00298566 0.00298897 0.00299228 0.00299559 0.0029989 0.00300221 0.00300552 0.00300883 0.00301214 0.00301545 0.00301876 0.00302207 0.00302538 0.00302869 0.003032 0.00303531 0.00303862 0.00304193 0.00304525 0.00304856 0.00305187 0.00305518 0.00305849 0.0030618 0.00306511 0.00306842 0.00307173 0.00307504 0.00307835 0.00308166 0.00308497 0.00308828 0.00309159 0.0030949 0.00309821 0.00310152 0.00310483 0.00310814 0.00311145 0.00311476 0.00311807 0.00312138 0.0031247 0.00312801 0.00313132 0.00313463 0.00313794 0.00314125 0.00314456 0.00314787 0.00315118 0.00315449 0.0031578 0.00316111 0.00316442 0.00316773 0.00317104 0.00317435 0.00317766 0.00318097 0.00318428 0.00318759 0.0031909 0.00319421 0.00319752 0.00320084 0.00320415 0.00320746 0.00321077 0.00321408 0.00321739 0.0032207 0.00322401 0.00322732 0.00323063 0.00323394 0.00323725 0.00324056 0.00324387 0.00324718 0.00325049 0.0032538 0.00325711 0.00326042 0.00326373 0.00326704 0.00327035 0.00327366 0.00327697 0.00328028 0.0032836 0.00328691 0.00329022 0.00329353 0.00329684 0.00330015 0.00330346 0.00330677 0.00331008 0.00331339 0.0033167 0.00332001 +-0.00066678 -0.000632924 -0.000579095 -0.000425042 1.19918E-05 0.000764231 0.00163212 0.00237543 0.00278234 0.00289858 0.00292145 0.00292769 0.00293144 0.00293482 0.00293815 0.00294148 0.0029448 0.00294812 0.00295144 0.00295476 0.00295808 0.0029614 0.00296472 0.00296804 0.00297136 0.00297468 0.002978 0.00298132 0.00298464 0.00298797 0.00299129 0.00299461 0.00299793 0.00300125 0.00300457 0.00300789 0.00301121 0.00301453 0.00301785 0.00302117 0.00302449 0.00302781 0.00303113 0.00303445 0.00303778 0.0030411 0.00304442 0.00304774 0.00305106 0.00305438 0.0030577 0.00306102 0.00306434 0.00306766 0.00307098 0.0030743 0.00307762 0.00308094 0.00308427 0.00308759 0.00309091 0.00309423 0.00309755 0.00310087 0.00310419 0.00310751 0.00311083 0.00311415 0.00311747 0.00312079 0.00312411 0.00312743 0.00313075 0.00313408 0.0031374 0.00314072 0.00314404 0.00314736 0.00315068 0.003154 0.00315732 0.00316064 0.00316396 0.00316728 0.0031706 0.00317392 0.00317724 0.00318057 0.00318389 0.00318721 0.00319053 0.00319385 0.00319717 0.00320049 0.00320381 0.00320713 0.00321045 0.00321377 0.00321709 0.00322041 0.00322373 0.00322705 0.00323038 0.0032337 0.00323702 0.00324034 0.00324366 0.00324698 0.0032503 0.00325362 0.00325694 0.00326026 0.00326358 0.0032669 0.00327022 0.00327354 0.00327686 0.00328019 0.00328351 0.00328683 0.00329015 0.00329347 0.00329679 0.00330011 0.00330343 0.00330675 0.00331007 0.00331339 0.00331671 0.00332003 0.00332335 0.00332668 0.00333 +-0.000668975 -0.000634996 -0.000580941 -0.000426241 1.20512E-05 0.000765612 0.00163494 0.00238037 0.00278969 0.00290704 0.00293013 0.00293642 0.00294019 0.00294358 0.00294692 0.00295025 0.00295358 0.00295691 0.00296024 0.00296358 0.00296691 0.00297024 0.00297357 0.0029769 0.00298023 0.00298356 0.00298689 0.00299022 0.00299355 0.00299689 0.00300022 0.00300355 0.00300688 0.00301021 0.00301354 0.00301687 0.0030202 0.00302353 0.00302686 0.00303019 0.00303353 0.00303686 0.00304019 0.00304352 0.00304685 0.00305018 0.00305351 0.00305684 0.00306017 0.0030635 0.00306684 0.00307017 0.0030735 0.00307683 0.00308016 0.00308349 0.00308682 0.00309015 0.00309348 0.00309681 0.00310014 0.00310348 0.00310681 0.00311014 0.00311347 0.0031168 0.00312013 0.00312346 0.00312679 0.00313012 0.00313345 0.00313679 0.00314012 0.00314345 0.00314678 0.00315011 0.00315344 0.00315677 0.0031601 0.00316343 0.00316676 0.00317009 0.00317343 0.00317676 0.00318009 0.00318342 0.00318675 0.00319008 0.00319341 0.00319674 0.00320007 0.0032034 0.00320674 0.00321007 0.0032134 0.00321673 0.00322006 0.00322339 0.00322672 0.00323005 0.00323338 0.00323671 0.00324004 0.00324337 0.00324671 0.00325004 0.00325337 0.0032567 0.00326003 0.00326336 0.00326669 0.00327002 0.00327335 0.00327668 0.00328002 0.00328335 0.00328668 0.00329001 0.00329334 0.00329667 0.0033 0.00330333 0.00330666 0.00330999 0.00331332 0.00331666 0.00331999 0.00332332 0.00332665 0.00332998 0.00333331 0.00333664 0.00333997 +-0.000671168 -0.000637067 -0.000582787 -0.000427439 1.21106E-05 0.000766988 0.00163776 0.00238529 0.00279703 0.00291548 0.00293881 0.00294514 0.00294892 0.00295233 0.00295568 0.00295902 0.00296236 0.0029657 0.00296904 0.00297238 0.00297573 0.00297907 0.00298241 0.00298575 0.00298909 0.00299243 0.00299577 0.00299911 0.00300246 0.0030058 0.00300914 0.00301248 0.00301582 0.00301916 0.0030225 0.00302584 0.00302919 0.00303253 0.00303587 0.00303921 0.00304255 0.00304589 0.00304923 0.00305257 0.00305591 0.00305926 0.0030626 0.00306594 0.00306928 0.00307262 0.00307596 0.0030793 0.00308264 0.00308599 0.00308933 0.00309267 0.00309601 0.00309935 0.00310269 0.00310603 0.00310937 0.00311272 0.00311606 0.0031194 0.00312274 0.00312608 0.00312942 0.00313276 0.0031361 0.00313944 0.00314279 0.00314613 0.00314947 0.00315281 0.00315615 0.00315949 0.00316283 0.00316617 0.00316952 0.00317286 0.0031762 0.00317954 0.00318288 0.00318622 0.00318956 0.0031929 0.00319624 0.00319959 0.00320293 0.00320627 0.00320961 0.00321295 0.00321629 0.00321963 0.00322297 0.00322632 0.00322966 0.003233 0.00323634 0.00323968 0.00324302 0.00324636 0.0032497 0.00325304 0.00325639 0.00325973 0.00326307 0.00326641 0.00326975 0.00327309 0.00327643 0.00327977 0.00328312 0.00328646 0.0032898 0.00329314 0.00329648 0.00329982 0.00330316 0.0033065 0.00330985 0.00331319 0.00331653 0.00331987 0.00332321 0.00332655 0.00332989 0.00333323 0.00333657 0.00333992 0.00334326 0.0033466 0.00334994 +-0.000673361 -0.000639137 -0.000584631 -0.000428635 1.217E-05 0.000768361 0.00164056 0.00239019 0.00280435 0.00292391 0.00294748 0.00295386 0.00295765 0.00296107 0.00296443 0.00296778 0.00297113 0.00297448 0.00297783 0.00298119 0.00298454 0.00298789 0.00299124 0.00299459 0.00299794 0.00300129 0.00300465 0.003008 0.00301135 0.0030147 0.00301805 0.0030214 0.00302475 0.00302811 0.00303146 0.00303481 0.00303816 0.00304151 0.00304486 0.00304821 0.00305157 0.00305492 0.00305827 0.00306162 0.00306497 0.00306832 0.00307167 0.00307503 0.00307838 0.00308173 0.00308508 0.00308843 0.00309178 0.00309513 0.00309849 0.00310184 0.00310519 0.00310854 0.00311189 0.00311524 0.00311859 0.00312195 0.0031253 0.00312865 0.003132 0.00313535 0.0031387 0.00314205 0.00314541 0.00314876 0.00315211 0.00315546 0.00315881 0.00316216 0.00316551 0.00316887 0.00317222 0.00317557 0.00317892 0.00318227 0.00318562 0.00318897 0.00319233 0.00319568 0.00319903 0.00320238 0.00320573 0.00320908 0.00321243 0.00321579 0.00321914 0.00322249 0.00322584 0.00322919 0.00323254 0.00323589 0.00323925 0.0032426 0.00324595 0.0032493 0.00325265 0.003256 0.00325935 0.00326271 0.00326606 0.00326941 0.00327276 0.00327611 0.00327946 0.00328281 0.00328617 0.00328952 0.00329287 0.00329622 0.00329957 0.00330292 0.00330627 0.00330963 0.00331298 0.00331633 0.00331968 0.00332303 0.00332638 0.00332973 0.00333309 0.00333644 0.00333979 0.00334314 0.00334649 0.00334984 0.00335319 0.00335655 0.0033599 +-0.000675553 -0.000641207 -0.000586473 -0.000429829 1.22296E-05 0.000769729 0.00164336 0.00239508 0.00281165 0.00293234 0.00295613 0.00296256 0.00296637 0.0029698 0.00297317 0.00297653 0.00297989 0.00298325 0.00298662 0.00298998 0.00299334 0.0029967 0.00300006 0.00300342 0.00300679 0.00301015 0.00301351 0.00301687 0.00302023 0.00302359 0.00302696 0.00303032 0.00303368 0.00303704 0.0030404 0.00304376 0.00304713 0.00305049 0.00305385 0.00305721 0.00306057 0.00306393 0.0030673 0.00307066 0.00307402 0.00307738 0.00308074 0.0030841 0.00308747 0.00309083 0.00309419 0.00309755 0.00310091 0.00310427 0.00310764 0.003111 0.00311436 0.00311772 0.00312108 0.00312444 0.00312781 0.00313117 0.00313453 0.00313789 0.00314125 0.00314461 0.00314798 0.00315134 0.0031547 0.00315806 0.00316142 0.00316478 0.00316815 0.00317151 0.00317487 0.00317823 0.00318159 0.00318495 0.00318832 0.00319168 0.00319504 0.0031984 0.00320176 0.00320512 0.00320849 0.00321185 0.00321521 0.00321857 0.00322193 0.00322529 0.00322866 0.00323202 0.00323538 0.00323874 0.0032421 0.00324546 0.00324883 0.00325219 0.00325555 0.00325891 0.00326227 0.00326563 0.003269 0.00327236 0.00327572 0.00327908 0.00328244 0.0032858 0.00328917 0.00329253 0.00329589 0.00329925 0.00330261 0.00330597 0.00330934 0.0033127 0.00331606 0.00331942 0.00332278 0.00332614 0.00332951 0.00333287 0.00333623 0.00333959 0.00334295 0.00334631 0.00334968 0.00335304 0.0033564 0.00335976 0.00336312 0.00336648 0.00336985 +-0.000677744 -0.000643275 -0.000588315 -0.000431021 1.22892E-05 0.000771094 0.00164614 0.00239995 0.00281894 0.00294075 0.00296478 0.00297126 0.00297508 0.00297852 0.0029819 0.00298527 0.00298865 0.00299202 0.00299539 0.00299876 0.00300213 0.0030055 0.00300888 0.00301225 0.00301562 0.00301899 0.00302236 0.00302574 0.00302911 0.00303248 0.00303585 0.00303922 0.0030426 0.00304597 0.00304934 0.00305271 0.00305608 0.00305945 0.00306283 0.0030662 0.00306957 0.00307294 0.00307631 0.00307969 0.00308306 0.00308643 0.0030898 0.00309317 0.00309655 0.00309992 0.00310329 0.00310666 0.00311003 0.00311341 0.00311678 0.00312015 0.00312352 0.00312689 0.00313026 0.00313364 0.00313701 0.00314038 0.00314375 0.00314712 0.0031505 0.00315387 0.00315724 0.00316061 0.00316398 0.00316736 0.00317073 0.0031741 0.00317747 0.00318084 0.00318421 0.00318759 0.00319096 0.00319433 0.0031977 0.00320107 0.00320445 0.00320782 0.00321119 0.00321456 0.00321793 0.00322131 0.00322468 0.00322805 0.00323142 0.00323479 0.00323816 0.00324154 0.00324491 0.00324828 0.00325165 0.00325502 0.0032584 0.00326177 0.00326514 0.00326851 0.00327188 0.00327526 0.00327863 0.003282 0.00328537 0.00328874 0.00329211 0.00329549 0.00329886 0.00330223 0.0033056 0.00330897 0.00331235 0.00331572 0.00331909 0.00332246 0.00332583 0.00332921 0.00333258 0.00333595 0.00333932 0.00334269 0.00334606 0.00334944 0.00335281 0.00335618 0.00335955 0.00336292 0.0033663 0.00336967 0.00337304 0.00337641 0.00337978 +-0.000679935 -0.000645342 -0.000590156 -0.000432211 1.2349E-05 0.000772454 0.00164892 0.00240479 0.0028262 0.00294915 0.00297343 0.00297994 0.00298378 0.00298723 0.00299062 0.00299401 0.00299739 0.00300077 0.00300415 0.00300754 0.00301092 0.0030143 0.00301768 0.00302106 0.00302445 0.00302783 0.00303121 0.00303459 0.00303798 0.00304136 0.00304474 0.00304812 0.0030515 0.00305489 0.00305827 0.00306165 0.00306503 0.00306841 0.0030718 0.00307518 0.00307856 0.00308194 0.00308532 0.00308871 0.00309209 0.00309547 0.00309885 0.00310223 0.00310562 0.003109 0.00311238 0.00311576 0.00311915 0.00312253 0.00312591 0.00312929 0.00313267 0.00313606 0.00313944 0.00314282 0.0031462 0.00314958 0.00315297 0.00315635 0.00315973 0.00316311 0.00316649 0.00316988 0.00317326 0.00317664 0.00318002 0.00318341 0.00318679 0.00319017 0.00319355 0.00319693 0.00320032 0.0032037 0.00320708 0.00321046 0.00321384 0.00321723 0.00322061 0.00322399 0.00322737 0.00323075 0.00323414 0.00323752 0.0032409 0.00324428 0.00324767 0.00325105 0.00325443 0.00325781 0.00326119 0.00326458 0.00326796 0.00327134 0.00327472 0.0032781 0.00328149 0.00328487 0.00328825 0.00329163 0.00329501 0.0032984 0.00330178 0.00330516 0.00330854 0.00331192 0.00331531 0.00331869 0.00332207 0.00332545 0.00332884 0.00333222 0.0033356 0.00333898 0.00334236 0.00334575 0.00334913 0.00335251 0.00335589 0.00335927 0.00336266 0.00336604 0.00336942 0.0033728 0.00337618 0.00337957 0.00338295 0.00338633 0.00338971 +-0.000682124 -0.000647409 -0.000591995 -0.0004334 1.24088E-05 0.00077381 0.00165169 0.00240963 0.00283345 0.00295754 0.00298206 0.00298862 0.00299248 0.00299594 0.00299934 0.00300273 0.00300613 0.00300952 0.00301291 0.0030163 0.0030197 0.00302309 0.00302648 0.00302987 0.00303326 0.00303666 0.00304005 0.00304344 0.00304683 0.00305023 0.00305362 0.00305701 0.0030604 0.0030638 0.00306719 0.00307058 0.00307397 0.00307736 0.00308076 0.00308415 0.00308754 0.00309093 0.00309433 0.00309772 0.00310111 0.0031045 0.0031079 0.00311129 0.00311468 0.00311807 0.00312146 0.00312486 0.00312825 0.00313164 0.00313503 0.00313843 0.00314182 0.00314521 0.0031486 0.003152 0.00315539 0.00315878 0.00316217 0.00316556 0.00316896 0.00317235 0.00317574 0.00317913 0.00318253 0.00318592 0.00318931 0.0031927 0.0031961 0.00319949 0.00320288 0.00320627 0.00320966 0.00321306 0.00321645 0.00321984 0.00322323 0.00322663 0.00323002 0.00323341 0.0032368 0.00324019 0.00324359 0.00324698 0.00325037 0.00325376 0.00325716 0.00326055 0.00326394 0.00326733 0.00327073 0.00327412 0.00327751 0.0032809 0.00328429 0.00328769 0.00329108 0.00329447 0.00329786 0.00330126 0.00330465 0.00330804 0.00331143 0.00331483 0.00331822 0.00332161 0.003325 0.00332839 0.00333179 0.00333518 0.00333857 0.00334196 0.00334536 0.00334875 0.00335214 0.00335553 0.00335893 0.00336232 0.00336571 0.0033691 0.00337249 0.00337589 0.00337928 0.00338267 0.00338606 0.00338946 0.00339285 0.00339624 0.00339963 +-0.000684313 -0.000649475 -0.000593833 -0.000434587 1.24686E-05 0.000775162 0.00165444 0.00241444 0.00284068 0.00296592 0.00299068 0.00299729 0.00300116 0.00300463 0.00300805 0.00301145 0.00301485 0.00301826 0.00302166 0.00302506 0.00302846 0.00303187 0.00303527 0.00303867 0.00304207 0.00304548 0.00304888 0.00305228 0.00305568 0.00305909 0.00306249 0.00306589 0.00306929 0.0030727 0.0030761 0.0030795 0.0030829 0.00308631 0.00308971 0.00309311 0.00309651 0.00309992 0.00310332 0.00310672 0.00311012 0.00311353 0.00311693 0.00312033 0.00312373 0.00312714 0.00313054 0.00313394 0.00313734 0.00314075 0.00314415 0.00314755 0.00315095 0.00315436 0.00315776 0.00316116 0.00316456 0.00316797 0.00317137 0.00317477 0.00317817 0.00318158 0.00318498 0.00318838 0.00319178 0.00319519 0.00319859 0.00320199 0.00320539 0.0032088 0.0032122 0.0032156 0.003219 0.00322241 0.00322581 0.00322921 0.00323261 0.00323602 0.00323942 0.00324282 0.00324622 0.00324963 0.00325303 0.00325643 0.00325983 0.00326324 0.00326664 0.00327004 0.00327344 0.00327685 0.00328025 0.00328365 0.00328705 0.00329046 0.00329386 0.00329726 0.00330066 0.00330407 0.00330747 0.00331087 0.00331427 0.00331768 0.00332108 0.00332448 0.00332788 0.00333129 0.00333469 0.00333809 0.00334149 0.0033449 0.0033483 0.0033517 0.0033551 0.00335851 0.00336191 0.00336531 0.00336871 0.00337212 0.00337552 0.00337892 0.00338232 0.00338573 0.00338913 0.00339253 0.00339593 0.00339934 0.00340274 0.00340614 0.00340954 +-0.000686501 -0.00065154 -0.00059567 -0.000435772 1.25286E-05 0.00077651 0.00165719 0.00241924 0.0028479 0.00297429 0.0029993 0.00300596 0.00300984 0.00301332 0.00301675 0.00302016 0.00302357 0.00302699 0.0030304 0.00303381 0.00303722 0.00304064 0.00304405 0.00304746 0.00305087 0.00305429 0.0030577 0.00306111 0.00306453 0.00306794 0.00307135 0.00307476 0.00307818 0.00308159 0.003085 0.00308841 0.00309183 0.00309524 0.00309865 0.00310206 0.00310548 0.00310889 0.0031123 0.00311572 0.00311913 0.00312254 0.00312595 0.00312937 0.00313278 0.00313619 0.0031396 0.00314302 0.00314643 0.00314984 0.00315326 0.00315667 0.00316008 0.00316349 0.00316691 0.00317032 0.00317373 0.00317714 0.00318056 0.00318397 0.00318738 0.00319079 0.00319421 0.00319762 0.00320103 0.00320445 0.00320786 0.00321127 0.00321468 0.0032181 0.00322151 0.00322492 0.00322833 0.00323175 0.00323516 0.00323857 0.00324199 0.0032454 0.00324881 0.00325222 0.00325564 0.00325905 0.00326246 0.00326587 0.00326929 0.0032727 0.00327611 0.00327952 0.00328294 0.00328635 0.00328976 0.00329318 0.00329659 0.0033 0.00330341 0.00330683 0.00331024 0.00331365 0.00331706 0.00332048 0.00332389 0.0033273 0.00333071 0.00333413 0.00333754 0.00334095 0.00334437 0.00334778 0.00335119 0.0033546 0.00335802 0.00336143 0.00336484 0.00336825 0.00337167 0.00337508 0.00337849 0.00338191 0.00338532 0.00338873 0.00339214 0.00339556 0.00339897 0.00340238 0.00340579 0.00340921 0.00341262 0.00341603 0.00341944 +-0.000688688 -0.000653604 -0.000597506 -0.000436955 1.25886E-05 0.000777854 0.00165993 0.00242401 0.00285509 0.00298264 0.0030079 0.00301461 0.00301851 0.003022 0.00302544 0.00302886 0.00303228 0.00303571 0.00303913 0.00304255 0.00304598 0.0030494 0.00305282 0.00305624 0.00305967 0.00306309 0.00306651 0.00306994 0.00307336 0.00307678 0.0030802 0.00308363 0.00308705 0.00309047 0.0030939 0.00309732 0.00310074 0.00310416 0.00310759 0.00311101 0.00311443 0.00311786 0.00312128 0.0031247 0.00312812 0.00313155 0.00313497 0.00313839 0.00314182 0.00314524 0.00314866 0.00315208 0.00315551 0.00315893 0.00316235 0.00316578 0.0031692 0.00317262 0.00317604 0.00317947 0.00318289 0.00318631 0.00318974 0.00319316 0.00319658 0.0032 0.00320343 0.00320685 0.00321027 0.0032137 0.00321712 0.00322054 0.00322396 0.00322739 0.00323081 0.00323423 0.00323766 0.00324108 0.0032445 0.00324792 0.00325135 0.00325477 0.00325819 0.00326162 0.00326504 0.00326846 0.00327189 0.00327531 0.00327873 0.00328215 0.00328558 0.003289 0.00329242 0.00329585 0.00329927 0.00330269 0.00330611 0.00330954 0.00331296 0.00331638 0.00331981 0.00332323 0.00332665 0.00333007 0.0033335 0.00333692 0.00334034 0.00334376 0.00334719 0.00335061 0.00335403 0.00335746 0.00336088 0.0033643 0.00336772 0.00337115 0.00337457 0.00337799 0.00338142 0.00338484 0.00338826 0.00339169 0.00339511 0.00339853 0.00340195 0.00340538 0.0034088 0.00341222 0.00341565 0.00341907 0.00342249 0.00342591 0.00342934 +-0.000690874 -0.000655667 -0.000599341 -0.000438137 1.26487E-05 0.000779195 0.00166265 0.00242878 0.00286227 0.00299099 0.0030165 0.00302325 0.00302717 0.00303068 0.00303412 0.00303755 0.00304099 0.00304442 0.00304785 0.00305129 0.00305472 0.00305815 0.00306159 0.00306502 0.00306845 0.00307188 0.00307532 0.00307875 0.00308218 0.00308562 0.00308905 0.00309248 0.00309592 0.00309935 0.00310278 0.00310621 0.00310965 0.00311308 0.00311651 0.00311995 0.00312338 0.00312681 0.00313025 0.00313368 0.00313711 0.00314055 0.00314398 0.00314741 0.00315084 0.00315428 0.00315771 0.00316114 0.00316458 0.00316801 0.00317144 0.00317488 0.00317831 0.00318174 0.00318517 0.00318861 0.00319204 0.00319547 0.00319891 0.00320234 0.00320577 0.00320921 0.00321264 0.00321607 0.00321951 0.00322294 0.00322637 0.0032298 0.00323324 0.00323667 0.0032401 0.00324354 0.00324697 0.0032504 0.00325384 0.00325727 0.0032607 0.00326413 0.00326757 0.003271 0.00327443 0.00327787 0.0032813 0.00328473 0.00328817 0.0032916 0.00329503 0.00329846 0.0033019 0.00330533 0.00330876 0.0033122 0.00331563 0.00331906 0.0033225 0.00332593 0.00332936 0.0033328 0.00333623 0.00333966 0.00334309 0.00334653 0.00334996 0.00335339 0.00335683 0.00336026 0.00336369 0.00336713 0.00337056 0.00337399 0.00337742 0.00338086 0.00338429 0.00338772 0.00339116 0.00339459 0.00339802 0.00340146 0.00340489 0.00340832 0.00341175 0.00341519 0.00341862 0.00342205 0.00342549 0.00342892 0.00343235 0.00343579 0.00343922 +-0.000693059 -0.000657729 -0.000601174 -0.000439317 1.27089E-05 0.000780531 0.00166537 0.00243352 0.00286943 0.00299933 0.00302509 0.00303189 0.00303583 0.00303934 0.00304279 0.00304624 0.00304968 0.00305312 0.00305657 0.00306001 0.00306345 0.0030669 0.00307034 0.00307378 0.00307723 0.00308067 0.00308411 0.00308756 0.003091 0.00309444 0.00309789 0.00310133 0.00310477 0.00310822 0.00311166 0.0031151 0.00311855 0.00312199 0.00312543 0.00312888 0.00313232 0.00313576 0.0031392 0.00314265 0.00314609 0.00314953 0.00315298 0.00315642 0.00315986 0.00316331 0.00316675 0.00317019 0.00317364 0.00317708 0.00318052 0.00318397 0.00318741 0.00319085 0.0031943 0.00319774 0.00320118 0.00320463 0.00320807 0.00321151 0.00321496 0.0032184 0.00322184 0.00322528 0.00322873 0.00323217 0.00323561 0.00323906 0.0032425 0.00324594 0.00324939 0.00325283 0.00325627 0.00325972 0.00326316 0.0032666 0.00327005 0.00327349 0.00327693 0.00328038 0.00328382 0.00328726 0.00329071 0.00329415 0.00329759 0.00330104 0.00330448 0.00330792 0.00331136 0.00331481 0.00331825 0.00332169 0.00332514 0.00332858 0.00333202 0.00333547 0.00333891 0.00334235 0.0033458 0.00334924 0.00335268 0.00335613 0.00335957 0.00336301 0.00336646 0.0033699 0.00337334 0.00337679 0.00338023 0.00338367 0.00338711 0.00339056 0.003394 0.00339744 0.00340089 0.00340433 0.00340777 0.00341122 0.00341466 0.0034181 0.00342155 0.00342499 0.00342843 0.00343188 0.00343532 0.00343876 0.00344221 0.00344565 0.00344909 +-0.000695244 -0.000659791 -0.000603006 -0.000440495 1.27691E-05 0.000781863 0.00166808 0.00243825 0.00287658 0.00300765 0.00303367 0.00304052 0.00304447 0.003048 0.00305146 0.00305491 0.00305837 0.00306182 0.00306527 0.00306873 0.00307218 0.00307563 0.00307909 0.00308254 0.00308599 0.00308945 0.0030929 0.00309635 0.00309981 0.00310326 0.00310671 0.00311017 0.00311362 0.00311707 0.00312053 0.00312398 0.00312744 0.00313089 0.00313434 0.0031378 0.00314125 0.0031447 0.00314816 0.00315161 0.00315506 0.00315852 0.00316197 0.00316542 0.00316888 0.00317233 0.00317578 0.00317924 0.00318269 0.00318614 0.0031896 0.00319305 0.0031965 0.00319996 0.00320341 0.00320686 0.00321032 0.00321377 0.00321722 0.00322068 0.00322413 0.00322758 0.00323104 0.00323449 0.00323794 0.0032414 0.00324485 0.0032483 0.00325176 0.00325521 0.00325866 0.00326212 0.00326557 0.00326902 0.00327248 0.00327593 0.00327938 0.00328284 0.00328629 0.00328974 0.0032932 0.00329665 0.0033001 0.00330356 0.00330701 0.00331046 0.00331392 0.00331737 0.00332082 0.00332428 0.00332773 0.00333118 0.00333464 0.00333809 0.00334154 0.003345 0.00334845 0.0033519 0.00335536 0.00335881 0.00336226 0.00336572 0.00336917 0.00337262 0.00337608 0.00337953 0.00338298 0.00338644 0.00338989 0.00339334 0.0033968 0.00340025 0.0034037 0.00340716 0.00341061 0.00341406 0.00341752 0.00342097 0.00342442 0.00342788 0.00343133 0.00343478 0.00343824 0.00344169 0.00344514 0.0034486 0.00345205 0.0034555 0.00345896 +-0.000697428 -0.000661852 -0.000604837 -0.000441671 1.28294E-05 0.000783191 0.00167078 0.00244296 0.0028837 0.00301597 0.00304224 0.00304914 0.00305311 0.00305664 0.00306012 0.00306358 0.00306705 0.00307051 0.00307397 0.00307744 0.0030809 0.00308436 0.00308783 0.00309129 0.00309475 0.00309822 0.00310168 0.00310514 0.00310861 0.00311207 0.00311553 0.003119 0.00312246 0.00312593 0.00312939 0.00313285 0.00313632 0.00313978 0.00314324 0.00314671 0.00315017 0.00315363 0.0031571 0.00316056 0.00316402 0.00316749 0.00317095 0.00317441 0.00317788 0.00318134 0.0031848 0.00318827 0.00319173 0.0031952 0.00319866 0.00320212 0.00320559 0.00320905 0.00321251 0.00321598 0.00321944 0.0032229 0.00322637 0.00322983 0.00323329 0.00323676 0.00324022 0.00324368 0.00324715 0.00325061 0.00325407 0.00325754 0.003261 0.00326447 0.00326793 0.00327139 0.00327486 0.00327832 0.00328178 0.00328525 0.00328871 0.00329217 0.00329564 0.0032991 0.00330256 0.00330603 0.00330949 0.00331295 0.00331642 0.00331988 0.00332334 0.00332681 0.00333027 0.00333374 0.0033372 0.00334066 0.00334413 0.00334759 0.00335105 0.00335452 0.00335798 0.00336144 0.00336491 0.00336837 0.00337183 0.0033753 0.00337876 0.00338222 0.00338569 0.00338915 0.00339261 0.00339608 0.00339954 0.00340301 0.00340647 0.00340993 0.0034134 0.00341686 0.00342032 0.00342379 0.00342725 0.00343071 0.00343418 0.00343764 0.0034411 0.00344457 0.00344803 0.00345149 0.00345496 0.00345842 0.00346188 0.00346535 0.00346881 +-0.000699611 -0.000663911 -0.000606667 -0.000442846 1.28898E-05 0.000784516 0.00167347 0.00244765 0.00289081 0.00302427 0.00305081 0.00305775 0.00306173 0.00306528 0.00306877 0.00307224 0.00307572 0.00307919 0.00308266 0.00308614 0.00308961 0.00309308 0.00309656 0.00310003 0.0031035 0.00310698 0.00311045 0.00311393 0.0031174 0.00312087 0.00312435 0.00312782 0.00313129 0.00313477 0.00313824 0.00314171 0.00314519 0.00314866 0.00315214 0.00315561 0.00315908 0.00316256 0.00316603 0.0031695 0.00317298 0.00317645 0.00317992 0.0031834 0.00318687 0.00319035 0.00319382 0.00319729 0.00320077 0.00320424 0.00320771 0.00321119 0.00321466 0.00321813 0.00322161 0.00322508 0.00322856 0.00323203 0.0032355 0.00323898 0.00324245 0.00324592 0.0032494 0.00325287 0.00325634 0.00325982 0.00326329 0.00326677 0.00327024 0.00327371 0.00327719 0.00328066 0.00328413 0.00328761 0.00329108 0.00329455 0.00329803 0.0033015 0.00330498 0.00330845 0.00331192 0.0033154 0.00331887 0.00332234 0.00332582 0.00332929 0.00333276 0.00333624 0.00333971 0.00334319 0.00334666 0.00335013 0.00335361 0.00335708 0.00336055 0.00336403 0.0033675 0.00337097 0.00337445 0.00337792 0.0033814 0.00338487 0.00338834 0.00339182 0.00339529 0.00339876 0.00340224 0.00340571 0.00340918 0.00341266 0.00341613 0.00341961 0.00342308 0.00342655 0.00343003 0.0034335 0.00343697 0.00344045 0.00344392 0.00344739 0.00345087 0.00345434 0.00345782 0.00346129 0.00346476 0.00346824 0.00347171 0.00347518 0.00347866 +-0.000701793 -0.00066597 -0.000608496 -0.000444018 1.29503E-05 0.000785836 0.00167615 0.00245232 0.0028979 0.00303256 0.00305936 0.00306636 0.00307036 0.00307391 0.00307741 0.00308089 0.00308438 0.00308786 0.00309135 0.00309483 0.00309831 0.0031018 0.00310528 0.00310876 0.00311225 0.00311573 0.00311922 0.0031227 0.00312618 0.00312967 0.00313315 0.00313663 0.00314012 0.0031436 0.00314709 0.00315057 0.00315405 0.00315754 0.00316102 0.0031645 0.00316799 0.00317147 0.00317496 0.00317844 0.00318192 0.00318541 0.00318889 0.00319237 0.00319586 0.00319934 0.00320283 0.00320631 0.00320979 0.00321328 0.00321676 0.00322024 0.00322373 0.00322721 0.0032307 0.00323418 0.00323766 0.00324115 0.00324463 0.00324811 0.0032516 0.00325508 0.00325857 0.00326205 0.00326553 0.00326902 0.0032725 0.00327598 0.00327947 0.00328295 0.00328644 0.00328992 0.0032934 0.00329689 0.00330037 0.00330385 0.00330734 0.00331082 0.00331431 0.00331779 0.00332127 0.00332476 0.00332824 0.00333172 0.00333521 0.00333869 0.00334218 0.00334566 0.00334914 0.00335263 0.00335611 0.00335959 0.00336308 0.00336656 0.00337005 0.00337353 0.00337701 0.0033805 0.00338398 0.00338746 0.00339095 0.00339443 0.00339792 0.0034014 0.00340488 0.00340837 0.00341185 0.00341533 0.00341882 0.0034223 0.00342579 0.00342927 0.00343275 0.00343624 0.00343972 0.0034432 0.00344669 0.00345017 0.00345366 0.00345714 0.00346062 0.00346411 0.00346759 0.00347108 0.00347456 0.00347804 0.00348153 0.00348501 0.00348849 +-0.000703974 -0.000668028 -0.000610324 -0.000445189 1.30109E-05 0.000787153 0.00167882 0.00245698 0.00290498 0.00304084 0.00306791 0.00307495 0.00307897 0.00308254 0.00308604 0.00308954 0.00309303 0.00309652 0.00310002 0.00310351 0.00310701 0.0031105 0.00311399 0.00311749 0.00312098 0.00312448 0.00312797 0.00313146 0.00313496 0.00313845 0.00314195 0.00314544 0.00314893 0.00315243 0.00315592 0.00315941 0.00316291 0.0031664 0.0031699 0.00317339 0.00317688 0.00318038 0.00318387 0.00318737 0.00319086 0.00319435 0.00319785 0.00320134 0.00320484 0.00320833 0.00321182 0.00321532 0.00321881 0.0032223 0.0032258 0.00322929 0.00323279 0.00323628 0.00323977 0.00324327 0.00324676 0.00325026 0.00325375 0.00325724 0.00326074 0.00326423 0.00326773 0.00327122 0.00327471 0.00327821 0.0032817 0.00328519 0.00328869 0.00329218 0.00329568 0.00329917 0.00330266 0.00330616 0.00330965 0.00331315 0.00331664 0.00332013 0.00332363 0.00332712 0.00333062 0.00333411 0.0033376 0.0033411 0.00334459 0.00334808 0.00335158 0.00335507 0.00335857 0.00336206 0.00336555 0.00336905 0.00337254 0.00337604 0.00337953 0.00338302 0.00338652 0.00339001 0.00339351 0.003397 0.00340049 0.00340399 0.00340748 0.00341097 0.00341447 0.00341796 0.00342146 0.00342495 0.00342844 0.00343194 0.00343543 0.00343893 0.00344242 0.00344591 0.00344941 0.0034529 0.00345639 0.00345989 0.00346338 0.00346688 0.00347037 0.00347386 0.00347736 0.00348085 0.00348435 0.00348784 0.00349133 0.00349483 0.00349832 +-0.000706155 -0.000670085 -0.00061215 -0.000446359 1.30715E-05 0.000788466 0.00168148 0.00246162 0.00291204 0.00304912 0.00307645 0.00308354 0.00308757 0.00309115 0.00309467 0.00309817 0.00310168 0.00310518 0.00310868 0.00311219 0.00311569 0.0031192 0.0031227 0.0031262 0.00312971 0.00313321 0.00313672 0.00314022 0.00314372 0.00314723 0.00315073 0.00315424 0.00315774 0.00316124 0.00316475 0.00316825 0.00317176 0.00317526 0.00317876 0.00318227 0.00318577 0.00318928 0.00319278 0.00319628 0.00319979 0.00320329 0.0032068 0.0032103 0.0032138 0.00321731 0.00322081 0.00322432 0.00322782 0.00323132 0.00323483 0.00323833 0.00324184 0.00324534 0.00324884 0.00325235 0.00325585 0.00325936 0.00326286 0.00326636 0.00326987 0.00327337 0.00327688 0.00328038 0.00328388 0.00328739 0.00329089 0.0032944 0.0032979 0.0033014 0.00330491 0.00330841 0.00331192 0.00331542 0.00331892 0.00332243 0.00332593 0.00332944 0.00333294 0.00333644 0.00333995 0.00334345 0.00334696 0.00335046 0.00335396 0.00335747 0.00336097 0.00336448 0.00336798 0.00337148 0.00337499 0.00337849 0.003382 0.0033855 0.003389 0.00339251 0.00339601 0.00339952 0.00340302 0.00340652 0.00341003 0.00341353 0.00341704 0.00342054 0.00342404 0.00342755 0.00343105 0.00343456 0.00343806 0.00344156 0.00344507 0.00344857 0.00345208 0.00345558 0.00345908 0.00346259 0.00346609 0.0034696 0.0034731 0.0034766 0.00348011 0.00348361 0.00348712 0.00349062 0.00349412 0.00349763 0.00350113 0.00350464 0.00350814 +-0.000708334 -0.000672142 -0.000613976 -0.000447526 1.31322E-05 0.000789775 0.00168413 0.00246625 0.00291908 0.00305738 0.00308498 0.00309212 0.00309617 0.00309976 0.00310328 0.0031068 0.00311031 0.00311383 0.00311734 0.00312086 0.00312437 0.00312788 0.0031314 0.00313491 0.00313843 0.00314194 0.00314545 0.00314897 0.00315248 0.003156 0.00315951 0.00316303 0.00316654 0.00317005 0.00317357 0.00317708 0.0031806 0.00318411 0.00318762 0.00319114 0.00319465 0.00319817 0.00320168 0.00320519 0.00320871 0.00321222 0.00321574 0.00321925 0.00322276 0.00322628 0.00322979 0.00323331 0.00323682 0.00324034 0.00324385 0.00324736 0.00325088 0.00325439 0.00325791 0.00326142 0.00326493 0.00326845 0.00327196 0.00327548 0.00327899 0.0032825 0.00328602 0.00328953 0.00329305 0.00329656 0.00330007 0.00330359 0.0033071 0.00331062 0.00331413 0.00331765 0.00332116 0.00332467 0.00332819 0.0033317 0.00333522 0.00333873 0.00334224 0.00334576 0.00334927 0.00335279 0.0033563 0.00335981 0.00336333 0.00336684 0.00337036 0.00337387 0.00337739 0.0033809 0.00338441 0.00338793 0.00339144 0.00339496 0.00339847 0.00340198 0.0034055 0.00340901 0.00341253 0.00341604 0.00341955 0.00342307 0.00342658 0.0034301 0.00343361 0.00343712 0.00344064 0.00344415 0.00344767 0.00345118 0.0034547 0.00345821 0.00346172 0.00346524 0.00346875 0.00347227 0.00347578 0.00347929 0.00348281 0.00348632 0.00348984 0.00349335 0.00349686 0.00350038 0.00350389 0.00350741 0.00351092 0.00351443 0.00351795 +-0.000710513 -0.000674197 -0.0006158 -0.000448692 1.31929E-05 0.00079108 0.00168678 0.00247086 0.0029261 0.00306563 0.0030935 0.00310069 0.00310475 0.00310836 0.00311189 0.00311542 0.00311894 0.00312247 0.00312599 0.00312952 0.00313304 0.00313656 0.00314009 0.00314361 0.00314714 0.00315066 0.00315418 0.00315771 0.00316123 0.00316476 0.00316828 0.00317181 0.00317533 0.00317885 0.00318238 0.0031859 0.00318943 0.00319295 0.00319648 0.0032 0.00320352 0.00320705 0.00321057 0.0032141 0.00321762 0.00322114 0.00322467 0.00322819 0.00323172 0.00323524 0.00323877 0.00324229 0.00324581 0.00324934 0.00325286 0.00325639 0.00325991 0.00326343 0.00326696 0.00327048 0.00327401 0.00327753 0.00328106 0.00328458 0.0032881 0.00329163 0.00329515 0.00329868 0.0033022 0.00330573 0.00330925 0.00331277 0.0033163 0.00331982 0.00332335 0.00332687 0.00333039 0.00333392 0.00333744 0.00334097 0.00334449 0.00334802 0.00335154 0.00335506 0.00335859 0.00336211 0.00336564 0.00336916 0.00337268 0.00337621 0.00337973 0.00338326 0.00338678 0.00339031 0.00339383 0.00339735 0.00340088 0.0034044 0.00340793 0.00341145 0.00341497 0.0034185 0.00342202 0.00342555 0.00342907 0.0034326 0.00343612 0.00343964 0.00344317 0.00344669 0.00345022 0.00345374 0.00345727 0.00346079 0.00346431 0.00346784 0.00347136 0.00347489 0.00347841 0.00348193 0.00348546 0.00348898 0.00349251 0.00349603 0.00349956 0.00350308 0.0035066 0.00351013 0.00351365 0.00351718 0.0035207 0.00352422 0.00352775 +-0.000712691 -0.000676252 -0.000617623 -0.000449856 1.32538E-05 0.000792381 0.00168941 0.00247545 0.0029331 0.00307387 0.00310201 0.00310926 0.00311333 0.00311695 0.00312049 0.00312403 0.00312756 0.0031311 0.00313463 0.00313817 0.0031417 0.00314524 0.00314877 0.0031523 0.00315584 0.00315937 0.00316291 0.00316644 0.00316998 0.00317351 0.00317704 0.00318058 0.00318411 0.00318765 0.00319118 0.00319472 0.00319825 0.00320178 0.00320532 0.00320885 0.00321239 0.00321592 0.00321946 0.00322299 0.00322652 0.00323006 0.00323359 0.00323713 0.00324066 0.0032442 0.00324773 0.00325126 0.0032548 0.00325833 0.00326187 0.0032654 0.00326894 0.00327247 0.003276 0.00327954 0.00328307 0.00328661 0.00329014 0.00329368 0.00329721 0.00330074 0.00330428 0.00330781 0.00331135 0.00331488 0.00331841 0.00332195 0.00332548 0.00332902 0.00333255 0.00333609 0.00333962 0.00334315 0.00334669 0.00335022 0.00335376 0.00335729 0.00336083 0.00336436 0.00336789 0.00337143 0.00337496 0.0033785 0.00338203 0.00338557 0.0033891 0.00339263 0.00339617 0.0033997 0.00340324 0.00340677 0.00341031 0.00341384 0.00341737 0.00342091 0.00342444 0.00342798 0.00343151 0.00343505 0.00343858 0.00344211 0.00344565 0.00344918 0.00345272 0.00345625 0.00345979 0.00346332 0.00346685 0.00347039 0.00347392 0.00347746 0.00348099 0.00348453 0.00348806 0.00349159 0.00349513 0.00349866 0.0035022 0.00350573 0.00350927 0.0035128 0.00351633 0.00351987 0.0035234 0.00352694 0.00353047 0.00353401 0.00353754 +-0.000714869 -0.000678306 -0.000619445 -0.000451018 1.33147E-05 0.000793679 0.00169204 0.00248002 0.00294009 0.00308209 0.00311051 0.00311781 0.00312191 0.00312553 0.00312909 0.00313263 0.00313618 0.00313972 0.00314327 0.00314681 0.00315035 0.0031539 0.00315744 0.00316099 0.00316453 0.00316808 0.00317162 0.00317516 0.00317871 0.00318225 0.0031858 0.00318934 0.00319289 0.00319643 0.00319998 0.00320352 0.00320706 0.00321061 0.00321415 0.0032177 0.00322124 0.00322479 0.00322833 0.00323187 0.00323542 0.00323896 0.00324251 0.00324605 0.0032496 0.00325314 0.00325669 0.00326023 0.00326377 0.00326732 0.00327086 0.00327441 0.00327795 0.0032815 0.00328504 0.00328858 0.00329213 0.00329567 0.00329922 0.00330276 0.00330631 0.00330985 0.00331339 0.00331694 0.00332048 0.00332403 0.00332757 0.00333112 0.00333466 0.00333821 0.00334175 0.00334529 0.00334884 0.00335238 0.00335593 0.00335947 0.00336302 0.00336656 0.0033701 0.00337365 0.00337719 0.00338074 0.00338428 0.00338783 0.00339137 0.00339491 0.00339846 0.003402 0.00340555 0.00340909 0.00341264 0.00341618 0.00341973 0.00342327 0.00342681 0.00343036 0.0034339 0.00343745 0.00344099 0.00344454 0.00344808 0.00345162 0.00345517 0.00345871 0.00346226 0.0034658 0.00346935 0.00347289 0.00347643 0.00347998 0.00348352 0.00348707 0.00349061 0.00349416 0.0034977 0.00350125 0.00350479 0.00350833 0.00351188 0.00351542 0.00351897 0.00352251 0.00352606 0.0035296 0.00353314 0.00353669 0.00354023 0.00354378 0.00354732 +-0.000717045 -0.000680359 -0.000621265 -0.000452178 1.33757E-05 0.000794973 0.00169465 0.00248458 0.00294706 0.00309031 0.00311901 0.00312636 0.00313047 0.0031341 0.00313767 0.00314123 0.00314478 0.00314834 0.00315189 0.00315545 0.003159 0.00316255 0.00316611 0.00316966 0.00317322 0.00317677 0.00318033 0.00318388 0.00318744 0.00319099 0.00319454 0.0031981 0.00320165 0.00320521 0.00320876 0.00321232 0.00321587 0.00321942 0.00322298 0.00322653 0.00323009 0.00323364 0.0032372 0.00324075 0.00324431 0.00324786 0.00325141 0.00325497 0.00325852 0.00326208 0.00326563 0.00326919 0.00327274 0.0032763 0.00327985 0.0032834 0.00328696 0.00329051 0.00329407 0.00329762 0.00330118 0.00330473 0.00330829 0.00331184 0.00331539 0.00331895 0.0033225 0.00332606 0.00332961 0.00333317 0.00333672 0.00334028 0.00334383 0.00334738 0.00335094 0.00335449 0.00335805 0.0033616 0.00336516 0.00336871 0.00337227 0.00337582 0.00337937 0.00338293 0.00338648 0.00339004 0.00339359 0.00339715 0.0034007 0.00340425 0.00340781 0.00341136 0.00341492 0.00341847 0.00342203 0.00342558 0.00342914 0.00343269 0.00343624 0.0034398 0.00344335 0.00344691 0.00345046 0.00345402 0.00345757 0.00346113 0.00346468 0.00346823 0.00347179 0.00347534 0.0034789 0.00348245 0.00348601 0.00348956 0.00349312 0.00349667 0.00350022 0.00350378 0.00350733 0.00351089 0.00351444 0.003518 0.00352155 0.00352511 0.00352866 0.00353221 0.00353577 0.00353932 0.00354288 0.00354643 0.00354999 0.00355354 0.0035571 +-0.000719221 -0.000682411 -0.000623085 -0.000453337 1.34367E-05 0.000796263 0.00169726 0.00248912 0.00295401 0.00309852 0.0031275 0.0031349 0.00313903 0.00314267 0.00314625 0.00314981 0.00315338 0.00315694 0.00316051 0.00316407 0.00316764 0.0031712 0.00317477 0.00317833 0.00318189 0.00318546 0.00318902 0.00319259 0.00319615 0.00319972 0.00320328 0.00320685 0.00321041 0.00321398 0.00321754 0.0032211 0.00322467 0.00322823 0.0032318 0.00323536 0.00323893 0.00324249 0.00324606 0.00324962 0.00325318 0.00325675 0.00326031 0.00326388 0.00326744 0.00327101 0.00327457 0.00327814 0.0032817 0.00328526 0.00328883 0.00329239 0.00329596 0.00329952 0.00330309 0.00330665 0.00331022 0.00331378 0.00331735 0.00332091 0.00332447 0.00332804 0.0033316 0.00333517 0.00333873 0.0033423 0.00334586 0.00334943 0.00335299 0.00335655 0.00336012 0.00336368 0.00336725 0.00337081 0.00337438 0.00337794 0.00338151 0.00338507 0.00338864 0.0033922 0.00339576 0.00339933 0.00340289 0.00340646 0.00341002 0.00341359 0.00341715 0.00342072 0.00342428 0.00342784 0.00343141 0.00343497 0.00343854 0.0034421 0.00344567 0.00344923 0.0034528 0.00345636 0.00345992 0.00346349 0.00346705 0.00347062 0.00347418 0.00347775 0.00348131 0.00348488 0.00348844 0.003492 0.00349557 0.00349913 0.0035027 0.00350626 0.00350983 0.00351339 0.00351696 0.00352052 0.00352409 0.00352765 0.00353121 0.00353478 0.00353834 0.00354191 0.00354547 0.00354904 0.0035526 0.00355617 0.00355973 0.00356329 0.00356686 +-0.000721396 -0.000684462 -0.000624903 -0.000454494 1.34979E-05 0.00079755 0.00169986 0.00249365 0.00296094 0.00310671 0.00313597 0.00314343 0.00314757 0.00315123 0.00315482 0.00315839 0.00316197 0.00316554 0.00316912 0.00317269 0.00317627 0.00317984 0.00318342 0.00318699 0.00319056 0.00319414 0.00319771 0.00320129 0.00320486 0.00320844 0.00321201 0.00321559 0.00321916 0.00322274 0.00322631 0.00322988 0.00323346 0.00323703 0.00324061 0.00324418 0.00324776 0.00325133 0.00325491 0.00325848 0.00326205 0.00326563 0.0032692 0.00327278 0.00327635 0.00327993 0.0032835 0.00328708 0.00329065 0.00329423 0.0032978 0.00330137 0.00330495 0.00330852 0.0033121 0.00331567 0.00331925 0.00332282 0.0033264 0.00332997 0.00333355 0.00333712 0.00334069 0.00334427 0.00334784 0.00335142 0.00335499 0.00335857 0.00336214 0.00336572 0.00336929 0.00337287 0.00337644 0.00338001 0.00338359 0.00338716 0.00339074 0.00339431 0.00339789 0.00340146 0.00340504 0.00340861 0.00341219 0.00341576 0.00341933 0.00342291 0.00342648 0.00343006 0.00343363 0.00343721 0.00344078 0.00344436 0.00344793 0.00345151 0.00345508 0.00345865 0.00346223 0.0034658 0.00346938 0.00347295 0.00347653 0.0034801 0.00348368 0.00348725 0.00349083 0.0034944 0.00349797 0.00350155 0.00350512 0.0035087 0.00351227 0.00351585 0.00351942 0.003523 0.00352657 0.00353015 0.00353372 0.00353729 0.00354087 0.00354444 0.00354802 0.00355159 0.00355517 0.00355874 0.00356232 0.00356589 0.00356947 0.00357304 0.00357661 +-0.00072357 -0.000686512 -0.00062672 -0.000455649 1.35591E-05 0.000798833 0.00170245 0.00249816 0.00296786 0.0031149 0.00314444 0.00315195 0.00315611 0.00315978 0.00316338 0.00316696 0.00317055 0.00317413 0.00317772 0.0031813 0.00318489 0.00318847 0.00319206 0.00319564 0.00319923 0.00320281 0.00320639 0.00320998 0.00321356 0.00321715 0.00322073 0.00322432 0.0032279 0.00323149 0.00323507 0.00323866 0.00324224 0.00324583 0.00324941 0.00325299 0.00325658 0.00326016 0.00326375 0.00326733 0.00327092 0.0032745 0.00327809 0.00328167 0.00328526 0.00328884 0.00329242 0.00329601 0.00329959 0.00330318 0.00330676 0.00331035 0.00331393 0.00331752 0.0033211 0.00332469 0.00332827 0.00333186 0.00333544 0.00333902 0.00334261 0.00334619 0.00334978 0.00335336 0.00335695 0.00336053 0.00336412 0.0033677 0.00337129 0.00337487 0.00337845 0.00338204 0.00338562 0.00338921 0.00339279 0.00339638 0.00339996 0.00340355 0.00340713 0.00341072 0.0034143 0.00341789 0.00342147 0.00342505 0.00342864 0.00343222 0.00343581 0.00343939 0.00344298 0.00344656 0.00345015 0.00345373 0.00345732 0.0034609 0.00346448 0.00346807 0.00347165 0.00347524 0.00347882 0.00348241 0.00348599 0.00348958 0.00349316 0.00349675 0.00350033 0.00350392 0.0035075 0.00351108 0.00351467 0.00351825 0.00352184 0.00352542 0.00352901 0.00353259 0.00353618 0.00353976 0.00354335 0.00354693 0.00355051 0.0035541 0.00355768 0.00356127 0.00356485 0.00356844 0.00357202 0.00357561 0.00357919 0.00358278 0.00358636 +-0.000725743 -0.000688562 -0.000628536 -0.000456803 1.36203E-05 0.000800112 0.00170503 0.00250265 0.00297476 0.00312307 0.00315291 0.00316047 0.00316464 0.00316832 0.00317193 0.00317553 0.00317912 0.00318272 0.00318631 0.00318991 0.0031935 0.0031971 0.00320069 0.00320428 0.00320788 0.00321147 0.00321507 0.00321866 0.00322226 0.00322585 0.00322945 0.00323304 0.00323664 0.00324023 0.00324383 0.00324742 0.00325101 0.00325461 0.0032582 0.0032618 0.00326539 0.00326899 0.00327258 0.00327618 0.00327977 0.00328337 0.00328696 0.00329056 0.00329415 0.00329774 0.00330134 0.00330493 0.00330853 0.00331212 0.00331572 0.00331931 0.00332291 0.0033265 0.0033301 0.00333369 0.00333729 0.00334088 0.00334447 0.00334807 0.00335166 0.00335526 0.00335885 0.00336245 0.00336604 0.00336964 0.00337323 0.00337683 0.00338042 0.00338402 0.00338761 0.0033912 0.0033948 0.00339839 0.00340199 0.00340558 0.00340918 0.00341277 0.00341637 0.00341996 0.00342356 0.00342715 0.00343075 0.00343434 0.00343793 0.00344153 0.00344512 0.00344872 0.00345231 0.00345591 0.0034595 0.0034631 0.00346669 0.00347029 0.00347388 0.00347748 0.00348107 0.00348466 0.00348826 0.00349185 0.00349545 0.00349904 0.00350264 0.00350623 0.00350983 0.00351342 0.00351702 0.00352061 0.00352421 0.0035278 0.00353139 0.00353499 0.00353858 0.00354218 0.00354577 0.00354937 0.00355296 0.00355656 0.00356015 0.00356375 0.00356734 0.00357094 0.00357453 0.00357812 0.00358172 0.00358531 0.00358891 0.0035925 0.0035961 +-0.000727915 -0.000690611 -0.000630351 -0.000457954 1.36817E-05 0.000801387 0.0017076 0.00250713 0.00298164 0.00313124 0.00316136 0.00316898 0.00317317 0.00317686 0.00318048 0.00318408 0.00318769 0.00319129 0.0031949 0.0031985 0.00320211 0.00320571 0.00320931 0.00321292 0.00321652 0.00322013 0.00322373 0.00322734 0.00323094 0.00323455 0.00323815 0.00324176 0.00324536 0.00324897 0.00325257 0.00325618 0.00325978 0.00326338 0.00326699 0.00327059 0.0032742 0.0032778 0.00328141 0.00328501 0.00328862 0.00329222 0.00329583 0.00329943 0.00330304 0.00330664 0.00331025 0.00331385 0.00331745 0.00332106 0.00332466 0.00332827 0.00333187 0.00333548 0.00333908 0.00334269 0.00334629 0.0033499 0.0033535 0.00335711 0.00336071 0.00336431 0.00336792 0.00337152 0.00337513 0.00337873 0.00338234 0.00338594 0.00338955 0.00339315 0.00339676 0.00340036 0.00340397 0.00340757 0.00341118 0.00341478 0.00341838 0.00342199 0.00342559 0.0034292 0.0034328 0.00343641 0.00344001 0.00344362 0.00344722 0.00345083 0.00345443 0.00345804 0.00346164 0.00346525 0.00346885 0.00347245 0.00347606 0.00347966 0.00348327 0.00348687 0.00349048 0.00349408 0.00349769 0.00350129 0.0035049 0.0035085 0.00351211 0.00351571 0.00351931 0.00352292 0.00352652 0.00353013 0.00353373 0.00353734 0.00354094 0.00354455 0.00354815 0.00355176 0.00355536 0.00355897 0.00356257 0.00356618 0.00356978 0.00357338 0.00357699 0.00358059 0.0035842 0.0035878 0.00359141 0.00359501 0.00359862 0.00360222 0.00360583 +-0.000730087 -0.000692658 -0.000632165 -0.000459104 1.37431E-05 0.000802659 0.00171017 0.00251159 0.0029885 0.00313939 0.00316981 0.00317748 0.00318168 0.00318539 0.00318901 0.00319263 0.00319624 0.00319986 0.00320347 0.00320709 0.0032107 0.00321432 0.00321793 0.00322155 0.00322516 0.00322878 0.00323239 0.00323601 0.00323962 0.00324323 0.00324685 0.00325046 0.00325408 0.00325769 0.00326131 0.00326492 0.00326854 0.00327215 0.00327577 0.00327938 0.003283 0.00328661 0.00329023 0.00329384 0.00329745 0.00330107 0.00330468 0.0033083 0.00331191 0.00331553 0.00331914 0.00332276 0.00332637 0.00332999 0.0033336 0.00333722 0.00334083 0.00334445 0.00334806 0.00335168 0.00335529 0.0033589 0.00336252 0.00336613 0.00336975 0.00337336 0.00337698 0.00338059 0.00338421 0.00338782 0.00339144 0.00339505 0.00339867 0.00340228 0.0034059 0.00340951 0.00341312 0.00341674 0.00342035 0.00342397 0.00342758 0.0034312 0.00343481 0.00343843 0.00344204 0.00344566 0.00344927 0.00345289 0.0034565 0.00346012 0.00346373 0.00346734 0.00347096 0.00347457 0.00347819 0.0034818 0.00348542 0.00348903 0.00349265 0.00349626 0.00349988 0.00350349 0.00350711 0.00351072 0.00351434 0.00351795 0.00352156 0.00352518 0.00352879 0.00353241 0.00353602 0.00353964 0.00354325 0.00354687 0.00355048 0.0035541 0.00355771 0.00356133 0.00356494 0.00356856 0.00357217 0.00357578 0.0035794 0.00358301 0.00358663 0.00359024 0.00359386 0.00359747 0.00360109 0.0036047 0.00360832 0.00361193 0.00361555 +-0.000732258 -0.000694705 -0.000633977 -0.000460253 1.38046E-05 0.000803928 0.00171272 0.00251604 0.00299535 0.00314753 0.00317824 0.00318597 0.00319019 0.0031939 0.00319754 0.00320117 0.00320479 0.00320842 0.00321204 0.00321567 0.00321929 0.00322292 0.00322654 0.00323017 0.00323379 0.00323742 0.00324104 0.00324467 0.00324829 0.00325191 0.00325554 0.00325916 0.00326279 0.00326641 0.00327004 0.00327366 0.00327729 0.00328091 0.00328454 0.00328816 0.00329179 0.00329541 0.00329904 0.00330266 0.00330628 0.00330991 0.00331353 0.00331716 0.00332078 0.00332441 0.00332803 0.00333166 0.00333528 0.00333891 0.00334253 0.00334616 0.00334978 0.00335341 0.00335703 0.00336065 0.00336428 0.0033679 0.00337153 0.00337515 0.00337878 0.0033824 0.00338603 0.00338965 0.00339328 0.0033969 0.00340053 0.00340415 0.00340778 0.0034114 0.00341503 0.00341865 0.00342227 0.0034259 0.00342952 0.00343315 0.00343677 0.0034404 0.00344402 0.00344765 0.00345127 0.0034549 0.00345852 0.00346215 0.00346577 0.0034694 0.00347302 0.00347664 0.00348027 0.00348389 0.00348752 0.00349114 0.00349477 0.00349839 0.00350202 0.00350564 0.00350927 0.00351289 0.00351652 0.00352014 0.00352377 0.00352739 0.00353101 0.00353464 0.00353826 0.00354189 0.00354551 0.00354914 0.00355276 0.00355639 0.00356001 0.00356364 0.00356726 0.00357089 0.00357451 0.00357814 0.00358176 0.00358538 0.00358901 0.00359263 0.00359626 0.00359988 0.00360351 0.00360713 0.00361076 0.00361438 0.00361801 0.00362163 0.00362526 +-0.000734428 -0.000696751 -0.000635789 -0.000461399 1.38661E-05 0.000805192 0.00171527 0.00252047 0.00300218 0.00315566 0.00318667 0.00319445 0.00319869 0.00320242 0.00320606 0.0032097 0.00321333 0.00321697 0.0032206 0.00322424 0.00322787 0.00323151 0.00323514 0.00323878 0.00324241 0.00324605 0.00324968 0.00325332 0.00325695 0.00326059 0.00326422 0.00326786 0.00327149 0.00327512 0.00327876 0.00328239 0.00328603 0.00328966 0.0032933 0.00329693 0.00330057 0.0033042 0.00330784 0.00331147 0.00331511 0.00331874 0.00332238 0.00332601 0.00332964 0.00333328 0.00333691 0.00334055 0.00334418 0.00334782 0.00335145 0.00335509 0.00335872 0.00336236 0.00336599 0.00336963 0.00337326 0.0033769 0.00338053 0.00338417 0.0033878 0.00339143 0.00339507 0.0033987 0.00340234 0.00340597 0.00340961 0.00341324 0.00341688 0.00342051 0.00342415 0.00342778 0.00343142 0.00343505 0.00343869 0.00344232 0.00344595 0.00344959 0.00345322 0.00345686 0.00346049 0.00346413 0.00346776 0.0034714 0.00347503 0.00347867 0.0034823 0.00348594 0.00348957 0.00349321 0.00349684 0.00350048 0.00350411 0.00350774 0.00351138 0.00351501 0.00351865 0.00352228 0.00352592 0.00352955 0.00353319 0.00353682 0.00354046 0.00354409 0.00354773 0.00355136 0.003555 0.00355863 0.00356226 0.0035659 0.00356953 0.00357317 0.0035768 0.00358044 0.00358407 0.00358771 0.00359134 0.00359498 0.00359861 0.00360225 0.00360588 0.00360952 0.00361315 0.00361678 0.00362042 0.00362405 0.00362769 0.00363132 0.00363496 +-0.000736597 -0.000698797 -0.000637599 -0.000462544 1.39278E-05 0.000806454 0.0017178 0.00252488 0.00300899 0.00316378 0.00319509 0.00320293 0.00320719 0.00321092 0.00321458 0.00321822 0.00322187 0.00322551 0.00322916 0.0032328 0.00323645 0.00324009 0.00324374 0.00324738 0.00325103 0.00325467 0.00325832 0.00326196 0.0032656 0.00326925 0.00327289 0.00327654 0.00328018 0.00328383 0.00328747 0.00329112 0.00329476 0.00329841 0.00330205 0.0033057 0.00330934 0.00331299 0.00331663 0.00332027 0.00332392 0.00332756 0.00333121 0.00333485 0.0033385 0.00334214 0.00334579 0.00334943 0.00335308 0.00335672 0.00336037 0.00336401 0.00336766 0.0033713 0.00337495 0.00337859 0.00338223 0.00338588 0.00338952 0.00339317 0.00339681 0.00340046 0.0034041 0.00340775 0.00341139 0.00341504 0.00341868 0.00342233 0.00342597 0.00342962 0.00343326 0.0034369 0.00344055 0.00344419 0.00344784 0.00345148 0.00345513 0.00345877 0.00346242 0.00346606 0.00346971 0.00347335 0.003477 0.00348064 0.00348429 0.00348793 0.00349157 0.00349522 0.00349886 0.00350251 0.00350615 0.0035098 0.00351344 0.00351709 0.00352073 0.00352438 0.00352802 0.00353167 0.00353531 0.00353896 0.0035426 0.00354625 0.00354989 0.00355353 0.00355718 0.00356082 0.00356447 0.00356811 0.00357176 0.0035754 0.00357905 0.00358269 0.00358634 0.00358998 0.00359363 0.00359727 0.00360092 0.00360456 0.0036082 0.00361185 0.00361549 0.00361914 0.00362278 0.00362643 0.00363007 0.00363372 0.00363736 0.00364101 0.00364465 +-0.000738765 -0.000700841 -0.000639408 -0.000463687 1.39894E-05 0.000807711 0.00172033 0.00252928 0.00301579 0.00317189 0.0032035 0.0032114 0.00321567 0.00321941 0.00322308 0.00322674 0.00323039 0.00323405 0.0032377 0.00324136 0.00324501 0.00324867 0.00325232 0.00325598 0.00325963 0.00326329 0.00326694 0.0032706 0.00327425 0.0032779 0.00328156 0.00328521 0.00328887 0.00329252 0.00329618 0.00329983 0.00330349 0.00330714 0.0033108 0.00331445 0.00331811 0.00332176 0.00332542 0.00332907 0.00333272 0.00333638 0.00334003 0.00334369 0.00334734 0.003351 0.00335465 0.00335831 0.00336196 0.00336562 0.00336927 0.00337293 0.00337658 0.00338024 0.00338389 0.00338755 0.0033912 0.00339485 0.00339851 0.00340216 0.00340582 0.00340947 0.00341313 0.00341678 0.00342044 0.00342409 0.00342775 0.0034314 0.00343506 0.00343871 0.00344237 0.00344602 0.00344967 0.00345333 0.00345698 0.00346064 0.00346429 0.00346795 0.0034716 0.00347526 0.00347891 0.00348257 0.00348622 0.00348988 0.00349353 0.00349719 0.00350084 0.00350449 0.00350815 0.0035118 0.00351546 0.00351911 0.00352277 0.00352642 0.00353008 0.00353373 0.00353739 0.00354104 0.0035447 0.00354835 0.00355201 0.00355566 0.00355931 0.00356297 0.00356662 0.00357028 0.00357393 0.00357759 0.00358124 0.0035849 0.00358855 0.00359221 0.00359586 0.00359952 0.00360317 0.00360682 0.00361048 0.00361413 0.00361779 0.00362144 0.0036251 0.00362875 0.00363241 0.00363606 0.00363972 0.00364337 0.00364703 0.00365068 0.00365434 +-0.000740933 -0.000702885 -0.000641216 -0.000464828 1.40512E-05 0.000808965 0.00172286 0.00253366 0.00302256 0.00317999 0.00321191 0.00321986 0.00322415 0.0032279 0.00323158 0.00323525 0.00323891 0.00324258 0.00324624 0.00324991 0.00325357 0.00325724 0.0032609 0.00326456 0.00326823 0.00327189 0.00327556 0.00327922 0.00328289 0.00328655 0.00329022 0.00329388 0.00329755 0.00330121 0.00330488 0.00330854 0.00331221 0.00331587 0.00331953 0.0033232 0.00332686 0.00333053 0.00333419 0.00333786 0.00334152 0.00334519 0.00334885 0.00335252 0.00335618 0.00335985 0.00336351 0.00336717 0.00337084 0.0033745 0.00337817 0.00338183 0.0033855 0.00338916 0.00339283 0.00339649 0.00340016 0.00340382 0.00340749 0.00341115 0.00341482 0.00341848 0.00342214 0.00342581 0.00342947 0.00343314 0.0034368 0.00344047 0.00344413 0.0034478 0.00345146 0.00345513 0.00345879 0.00346246 0.00346612 0.00346978 0.00347345 0.00347711 0.00348078 0.00348444 0.00348811 0.00349177 0.00349544 0.0034991 0.00350277 0.00350643 0.0035101 0.00351376 0.00351743 0.00352109 0.00352475 0.00352842 0.00353208 0.00353575 0.00353941 0.00354308 0.00354674 0.00355041 0.00355407 0.00355774 0.0035614 0.00356507 0.00356873 0.0035724 0.00357606 0.00357972 0.00358339 0.00358705 0.00359072 0.00359438 0.00359805 0.00360171 0.00360538 0.00360904 0.00361271 0.00361637 0.00362004 0.0036237 0.00362736 0.00363103 0.00363469 0.00363836 0.00364202 0.00364569 0.00364935 0.00365302 0.00365668 0.00366035 0.00366401 +-0.0007431 -0.000704928 -0.000643023 -0.000465968 1.4113E-05 0.000810216 0.00172537 0.00253803 0.00302932 0.00318808 0.0032203 0.00322831 0.00323262 0.00323638 0.00324007 0.00324375 0.00324742 0.0032511 0.00325477 0.00325845 0.00326212 0.0032658 0.00326947 0.00327314 0.00327682 0.00328049 0.00328417 0.00328784 0.00329152 0.00329519 0.00329887 0.00330254 0.00330622 0.00330989 0.00331357 0.00331724 0.00332091 0.00332459 0.00332826 0.00333194 0.00333561 0.00333929 0.00334296 0.00334664 0.00335031 0.00335399 0.00335766 0.00336134 0.00336501 0.00336868 0.00337236 0.00337603 0.00337971 0.00338338 0.00338706 0.00339073 0.00339441 0.00339808 0.00340176 0.00340543 0.00340911 0.00341278 0.00341645 0.00342013 0.0034238 0.00342748 0.00343115 0.00343483 0.0034385 0.00344218 0.00344585 0.00344953 0.0034532 0.00345688 0.00346055 0.00346422 0.0034679 0.00347157 0.00347525 0.00347892 0.0034826 0.00348627 0.00348995 0.00349362 0.0034973 0.00350097 0.00350465 0.00350832 0.00351199 0.00351567 0.00351934 0.00352302 0.00352669 0.00353037 0.00353404 0.00353772 0.00354139 0.00354507 0.00354874 0.00355242 0.00355609 0.00355976 0.00356344 0.00356711 0.00357079 0.00357446 0.00357814 0.00358181 0.00358549 0.00358916 0.00359284 0.00359651 0.00360019 0.00360386 0.00360753 0.00361121 0.00361488 0.00361856 0.00362223 0.00362591 0.00362958 0.00363326 0.00363693 0.00364061 0.00364428 0.00364796 0.00365163 0.0036553 0.00365898 0.00366265 0.00366633 0.00367 0.00367368 +-0.000745266 -0.00070697 -0.000644828 -0.000467106 1.41749E-05 0.000811463 0.00172787 0.00254238 0.00303607 0.00319616 0.00322869 0.00323675 0.00324108 0.00324486 0.00324855 0.00325224 0.00325592 0.00325961 0.00326329 0.00326698 0.00327066 0.00327435 0.00327803 0.00328172 0.0032854 0.00328909 0.00329277 0.00329646 0.00330014 0.00330382 0.00330751 0.00331119 0.00331488 0.00331856 0.00332225 0.00332593 0.00332962 0.0033333 0.00333699 0.00334067 0.00334435 0.00334804 0.00335172 0.00335541 0.00335909 0.00336278 0.00336646 0.00337015 0.00337383 0.00337752 0.0033812 0.00338489 0.00338857 0.00339225 0.00339594 0.00339962 0.00340331 0.00340699 0.00341068 0.00341436 0.00341805 0.00342173 0.00342542 0.0034291 0.00343278 0.00343647 0.00344015 0.00344384 0.00344752 0.00345121 0.00345489 0.00345858 0.00346226 0.00346595 0.00346963 0.00347332 0.003477 0.00348068 0.00348437 0.00348805 0.00349174 0.00349542 0.00349911 0.00350279 0.00350648 0.00351016 0.00351385 0.00351753 0.00352121 0.0035249 0.00352858 0.00353227 0.00353595 0.00353964 0.00354332 0.00354701 0.00355069 0.00355438 0.00355806 0.00356175 0.00356543 0.00356911 0.0035728 0.00357648 0.00358017 0.00358385 0.00358754 0.00359122 0.00359491 0.00359859 0.00360228 0.00360596 0.00360964 0.00361333 0.00361701 0.0036207 0.00362438 0.00362807 0.00363175 0.00363544 0.00363912 0.00364281 0.00364649 0.00365017 0.00365386 0.00365754 0.00366123 0.00366491 0.0036686 0.00367228 0.00367597 0.00367965 0.00368334 +-0.000747431 -0.000709011 -0.000646632 -0.000468242 1.42369E-05 0.000812707 0.00173037 0.00254671 0.00304279 0.00320423 0.00323707 0.00324519 0.00324953 0.00325332 0.00325703 0.00326072 0.00326442 0.00326811 0.00327181 0.0032755 0.0032792 0.00328289 0.00328659 0.00329028 0.00329398 0.00329767 0.00330136 0.00330506 0.00330875 0.00331245 0.00331614 0.00331984 0.00332353 0.00332723 0.00333092 0.00333462 0.00333831 0.003342 0.0033457 0.00334939 0.00335309 0.00335678 0.00336048 0.00336417 0.00336787 0.00337156 0.00337526 0.00337895 0.00338264 0.00338634 0.00339003 0.00339373 0.00339742 0.00340112 0.00340481 0.00340851 0.0034122 0.0034159 0.00341959 0.00342328 0.00342698 0.00343067 0.00343437 0.00343806 0.00344176 0.00344545 0.00344915 0.00345284 0.00345654 0.00346023 0.00346392 0.00346762 0.00347131 0.00347501 0.0034787 0.0034824 0.00348609 0.00348979 0.00349348 0.00349718 0.00350087 0.00350456 0.00350826 0.00351195 0.00351565 0.00351934 0.00352304 0.00352673 0.00353043 0.00353412 0.00353782 0.00354151 0.0035452 0.0035489 0.00355259 0.00355629 0.00355998 0.00356368 0.00356737 0.00357107 0.00357476 0.00357846 0.00358215 0.00358584 0.00358954 0.00359323 0.00359693 0.00360062 0.00360432 0.00360801 0.00361171 0.0036154 0.00361909 0.00362279 0.00362648 0.00363018 0.00363387 0.00363757 0.00364126 0.00364496 0.00364865 0.00365235 0.00365604 0.00365973 0.00366343 0.00366712 0.00367082 0.00367451 0.00367821 0.0036819 0.0036856 0.00368929 0.00369299 +-0.000749595 -0.000711051 -0.000648436 -0.000469377 1.4299E-05 0.000813947 0.00173286 0.00255104 0.0030495 0.00321228 0.00324544 0.00325362 0.00325798 0.00326178 0.00326549 0.0032692 0.00327291 0.00327661 0.00328032 0.00328402 0.00328772 0.00329143 0.00329513 0.00329884 0.00330254 0.00330625 0.00330995 0.00331366 0.00331736 0.00332106 0.00332477 0.00332847 0.00333218 0.00333588 0.00333959 0.00334329 0.003347 0.0033507 0.0033544 0.00335811 0.00336181 0.00336552 0.00336922 0.00337293 0.00337663 0.00338034 0.00338404 0.00338775 0.00339145 0.00339515 0.00339886 0.00340256 0.00340627 0.00340997 0.00341368 0.00341738 0.00342109 0.00342479 0.00342849 0.0034322 0.0034359 0.00343961 0.00344331 0.00344702 0.00345072 0.00345443 0.00345813 0.00346183 0.00346554 0.00346924 0.00347295 0.00347665 0.00348036 0.00348406 0.00348777 0.00349147 0.00349518 0.00349888 0.00350258 0.00350629 0.00350999 0.0035137 0.0035174 0.00352111 0.00352481 0.00352852 0.00353222 0.00353592 0.00353963 0.00354333 0.00354704 0.00355074 0.00355445 0.00355815 0.00356186 0.00356556 0.00356926 0.00357297 0.00357667 0.00358038 0.00358408 0.00358779 0.00359149 0.0035952 0.0035989 0.00360261 0.00360631 0.00361001 0.00361372 0.00361742 0.00362113 0.00362483 0.00362854 0.00363224 0.00363595 0.00363965 0.00364335 0.00364706 0.00365076 0.00365447 0.00365817 0.00366188 0.00366558 0.00366929 0.00367299 0.00367669 0.0036804 0.0036841 0.00368781 0.00369151 0.00369522 0.00369892 0.00370263 +-0.000751759 -0.00071309 -0.000650238 -0.00047051 1.43611E-05 0.000815184 0.00173534 0.00255534 0.00305619 0.00322033 0.0032538 0.00326204 0.00326641 0.00327023 0.00327395 0.00327767 0.00328139 0.0032851 0.00328881 0.00329253 0.00329624 0.00329996 0.00330367 0.00330739 0.0033111 0.00331482 0.00331853 0.00332224 0.00332596 0.00332967 0.00333339 0.0033371 0.00334082 0.00334453 0.00334824 0.00335196 0.00335567 0.00335939 0.0033631 0.00336682 0.00337053 0.00337425 0.00337796 0.00338167 0.00338539 0.0033891 0.00339282 0.00339653 0.00340025 0.00340396 0.00340768 0.00341139 0.0034151 0.00341882 0.00342253 0.00342625 0.00342996 0.00343368 0.00343739 0.00344111 0.00344482 0.00344853 0.00345225 0.00345596 0.00345968 0.00346339 0.00346711 0.00347082 0.00347454 0.00347825 0.00348196 0.00348568 0.00348939 0.00349311 0.00349682 0.00350054 0.00350425 0.00350797 0.00351168 0.00351539 0.00351911 0.00352282 0.00352654 0.00353025 0.00353397 0.00353768 0.0035414 0.00354511 0.00354882 0.00355254 0.00355625 0.00355997 0.00356368 0.0035674 0.00357111 0.00357482 0.00357854 0.00358225 0.00358597 0.00358968 0.0035934 0.00359711 0.00360083 0.00360454 0.00360825 0.00361197 0.00361568 0.0036194 0.00362311 0.00362683 0.00363054 0.00363426 0.00363797 0.00364168 0.0036454 0.00364911 0.00365283 0.00365654 0.00366026 0.00366397 0.00366769 0.0036714 0.00367511 0.00367883 0.00368254 0.00368626 0.00368997 0.00369369 0.0036974 0.00370112 0.00370483 0.00370854 0.00371226 +-0.000753922 -0.000715129 -0.000652039 -0.000471641 1.44232E-05 0.000816417 0.00173781 0.00255963 0.00306286 0.00322836 0.00326215 0.00327045 0.00327485 0.00327867 0.00328241 0.00328613 0.00328986 0.00329358 0.00329731 0.00330103 0.00330475 0.00330848 0.0033122 0.00331593 0.00331965 0.00332338 0.0033271 0.00333082 0.00333455 0.00333827 0.003342 0.00334572 0.00334945 0.00335317 0.0033569 0.00336062 0.00336434 0.00336807 0.00337179 0.00337552 0.00337924 0.00338297 0.00338669 0.00339041 0.00339414 0.00339786 0.00340159 0.00340531 0.00340904 0.00341276 0.00341648 0.00342021 0.00342393 0.00342766 0.00343138 0.00343511 0.00343883 0.00344256 0.00344628 0.00345 0.00345373 0.00345745 0.00346118 0.0034649 0.00346863 0.00347235 0.00347607 0.0034798 0.00348352 0.00348725 0.00349097 0.0034947 0.00349842 0.00350215 0.00350587 0.00350959 0.00351332 0.00351704 0.00352077 0.00352449 0.00352822 0.00353194 0.00353566 0.00353939 0.00354311 0.00354684 0.00355056 0.00355429 0.00355801 0.00356173 0.00356546 0.00356918 0.00357291 0.00357663 0.00358036 0.00358408 0.00358781 0.00359153 0.00359525 0.00359898 0.0036027 0.00360643 0.00361015 0.00361388 0.0036176 0.00362132 0.00362505 0.00362877 0.0036325 0.00363622 0.00363995 0.00364367 0.00364739 0.00365112 0.00365484 0.00365857 0.00366229 0.00366602 0.00366974 0.00367347 0.00367719 0.00368091 0.00368464 0.00368836 0.00369209 0.00369581 0.00369954 0.00370326 0.00370698 0.00371071 0.00371443 0.00371816 0.00372188 +-0.000756084 -0.000717167 -0.000653838 -0.00047277 1.44855E-05 0.000817647 0.00174027 0.00256391 0.00306952 0.00323639 0.0032705 0.00327886 0.00328327 0.0032871 0.00329085 0.00329459 0.00329832 0.00330205 0.00330579 0.00330952 0.00331326 0.00331699 0.00332073 0.00332446 0.00332819 0.00333193 0.00333566 0.0033394 0.00334313 0.00334687 0.0033506 0.00335433 0.00335807 0.0033618 0.00336554 0.00336927 0.00337301 0.00337674 0.00338047 0.00338421 0.00338794 0.00339168 0.00339541 0.00339915 0.00340288 0.00340661 0.00341035 0.00341408 0.00341782 0.00342155 0.00342529 0.00342902 0.00343275 0.00343649 0.00344022 0.00344396 0.00344769 0.00345143 0.00345516 0.00345889 0.00346263 0.00346636 0.0034701 0.00347383 0.00347757 0.0034813 0.00348503 0.00348877 0.0034925 0.00349624 0.00349997 0.00350371 0.00350744 0.00351117 0.00351491 0.00351864 0.00352238 0.00352611 0.00352985 0.00353358 0.00353731 0.00354105 0.00354478 0.00354852 0.00355225 0.00355599 0.00355972 0.00356345 0.00356719 0.00357092 0.00357466 0.00357839 0.00358213 0.00358586 0.00358959 0.00359333 0.00359706 0.0036008 0.00360453 0.00360827 0.003612 0.00361573 0.00361947 0.0036232 0.00362694 0.00363067 0.00363441 0.00363814 0.00364187 0.00364561 0.00364934 0.00365308 0.00365681 0.00366055 0.00366428 0.00366801 0.00367175 0.00367548 0.00367922 0.00368295 0.00368669 0.00369042 0.00369415 0.00369789 0.00370162 0.00370536 0.00370909 0.00371283 0.00371656 0.00372029 0.00372403 0.00372776 0.0037315 +-0.000758245 -0.000719203 -0.000655637 -0.000473898 1.45478E-05 0.000818873 0.00174273 0.00256817 0.00307616 0.0032444 0.00327884 0.00328725 0.00329168 0.00329553 0.00329929 0.00330303 0.00330678 0.00331052 0.00331427 0.00331801 0.00332175 0.0033255 0.00332924 0.00333299 0.00333673 0.00334047 0.00334422 0.00334796 0.00335171 0.00335545 0.0033592 0.00336294 0.00336668 0.00337043 0.00337417 0.00337792 0.00338166 0.0033854 0.00338915 0.00339289 0.00339664 0.00340038 0.00340413 0.00340787 0.00341161 0.00341536 0.0034191 0.00342285 0.00342659 0.00343034 0.00343408 0.00343782 0.00344157 0.00344531 0.00344906 0.0034528 0.00345654 0.00346029 0.00346403 0.00346778 0.00347152 0.00347527 0.00347901 0.00348275 0.0034865 0.00349024 0.00349399 0.00349773 0.00350147 0.00350522 0.00350896 0.00351271 0.00351645 0.0035202 0.00352394 0.00352768 0.00353143 0.00353517 0.00353892 0.00354266 0.00354641 0.00355015 0.00355389 0.00355764 0.00356138 0.00356513 0.00356887 0.00357261 0.00357636 0.0035801 0.00358385 0.00358759 0.00359134 0.00359508 0.00359882 0.00360257 0.00360631 0.00361006 0.0036138 0.00361754 0.00362129 0.00362503 0.00362878 0.00363252 0.00363627 0.00364001 0.00364375 0.0036475 0.00365124 0.00365499 0.00365873 0.00366248 0.00366622 0.00366996 0.00367371 0.00367745 0.0036812 0.00368494 0.00368868 0.00369243 0.00369617 0.00369992 0.00370366 0.00370741 0.00371115 0.00371489 0.00371864 0.00372238 0.00372613 0.00372987 0.00373361 0.00373736 0.0037411 +-0.000760406 -0.000721239 -0.000657435 -0.000475024 1.46102E-05 0.000820096 0.00174517 0.00257241 0.00308278 0.0032524 0.00328717 0.00329565 0.00330009 0.00330395 0.00330771 0.00331147 0.00331523 0.00331898 0.00332273 0.00332649 0.00333024 0.003334 0.00333775 0.0033415 0.00334526 0.00334901 0.00335277 0.00335652 0.00336027 0.00336403 0.00336778 0.00337154 0.00337529 0.00337904 0.0033828 0.00338655 0.00339031 0.00339406 0.00339782 0.00340157 0.00340532 0.00340908 0.00341283 0.00341659 0.00342034 0.00342409 0.00342785 0.0034316 0.00343536 0.00343911 0.00344286 0.00344662 0.00345037 0.00345413 0.00345788 0.00346164 0.00346539 0.00346914 0.0034729 0.00347665 0.00348041 0.00348416 0.00348791 0.00349167 0.00349542 0.00349918 0.00350293 0.00350668 0.00351044 0.00351419 0.00351795 0.0035217 0.00352545 0.00352921 0.00353296 0.00353672 0.00354047 0.00354423 0.00354798 0.00355173 0.00355549 0.00355924 0.003563 0.00356675 0.0035705 0.00357426 0.00357801 0.00358177 0.00358552 0.00358927 0.00359303 0.00359678 0.00360054 0.00360429 0.00360805 0.0036118 0.00361555 0.00361931 0.00362306 0.00362682 0.00363057 0.00363432 0.00363808 0.00364183 0.00364559 0.00364934 0.00365309 0.00365685 0.0036606 0.00366436 0.00366811 0.00367186 0.00367562 0.00367937 0.00368313 0.00368688 0.00369064 0.00369439 0.00369814 0.0037019 0.00370565 0.00370941 0.00371316 0.00371691 0.00372067 0.00372442 0.00372818 0.00373193 0.00373568 0.00373944 0.00374319 0.00374695 0.0037507 +-0.000762565 -0.000723275 -0.000659231 -0.000476148 1.46726E-05 0.000821316 0.00174761 0.00257664 0.00308939 0.0032604 0.00329549 0.00330403 0.00330849 0.00331236 0.00331614 0.0033199 0.00332367 0.00332743 0.00333119 0.00333496 0.00333872 0.00334249 0.00334625 0.00335001 0.00335378 0.00335754 0.00336131 0.00336507 0.00336883 0.0033726 0.00337636 0.00338013 0.00338389 0.00338765 0.00339142 0.00339518 0.00339895 0.00340271 0.00340647 0.00341024 0.003414 0.00341777 0.00342153 0.00342529 0.00342906 0.00343282 0.00343659 0.00344035 0.00344411 0.00344788 0.00345164 0.00345541 0.00345917 0.00346293 0.0034667 0.00347046 0.00347423 0.00347799 0.00348175 0.00348552 0.00348928 0.00349305 0.00349681 0.00350057 0.00350434 0.0035081 0.00351187 0.00351563 0.00351939 0.00352316 0.00352692 0.00353069 0.00353445 0.00353821 0.00354198 0.00354574 0.00354951 0.00355327 0.00355703 0.0035608 0.00356456 0.00356833 0.00357209 0.00357585 0.00357962 0.00358338 0.00358715 0.00359091 0.00359467 0.00359844 0.0036022 0.00360597 0.00360973 0.00361349 0.00361726 0.00362102 0.00362479 0.00362855 0.00363231 0.00363608 0.00363984 0.00364361 0.00364737 0.00365113 0.0036549 0.00365866 0.00366243 0.00366619 0.00366995 0.00367372 0.00367748 0.00368125 0.00368501 0.00368877 0.00369254 0.0036963 0.00370007 0.00370383 0.00370759 0.00371136 0.00371512 0.00371889 0.00372265 0.00372641 0.00373018 0.00373394 0.00373771 0.00374147 0.00374523 0.003749 0.00375276 0.00375653 0.00376029 +-0.000764724 -0.000725309 -0.000661026 -0.00047727 1.47351E-05 0.000822533 0.00175004 0.00258086 0.00309597 0.00326838 0.0033038 0.0033124 0.00331688 0.00332076 0.00332455 0.00332833 0.0033321 0.00333587 0.00333965 0.00334342 0.00334719 0.00335097 0.00335474 0.00335852 0.00336229 0.00336606 0.00336984 0.00337361 0.00337739 0.00338116 0.00338493 0.00338871 0.00339248 0.00339626 0.00340003 0.0034038 0.00340758 0.00341135 0.00341512 0.0034189 0.00342267 0.00342645 0.00343022 0.00343399 0.00343777 0.00344154 0.00344532 0.00344909 0.00345286 0.00345664 0.00346041 0.00346419 0.00346796 0.00347173 0.00347551 0.00347928 0.00348306 0.00348683 0.0034906 0.00349438 0.00349815 0.00350192 0.0035057 0.00350947 0.00351325 0.00351702 0.00352079 0.00352457 0.00352834 0.00353212 0.00353589 0.00353966 0.00354344 0.00354721 0.00355099 0.00355476 0.00355853 0.00356231 0.00356608 0.00356985 0.00357363 0.0035774 0.00358118 0.00358495 0.00358872 0.0035925 0.00359627 0.00360005 0.00360382 0.00360759 0.00361137 0.00361514 0.00361892 0.00362269 0.00362646 0.00363024 0.00363401 0.00363778 0.00364156 0.00364533 0.00364911 0.00365288 0.00365665 0.00366043 0.0036642 0.00366798 0.00367175 0.00367552 0.0036793 0.00368307 0.00368685 0.00369062 0.00369439 0.00369817 0.00370194 0.00370571 0.00370949 0.00371326 0.00371704 0.00372081 0.00372458 0.00372836 0.00373213 0.00373591 0.00373968 0.00374345 0.00374723 0.003751 0.00375478 0.00375855 0.00376232 0.0037661 0.00376987 +-0.000766882 -0.000727343 -0.00066282 -0.000478391 1.47977E-05 0.000823746 0.00175247 0.00258506 0.00310255 0.00327635 0.00331211 0.00332077 0.00332527 0.00332916 0.00333295 0.00333674 0.00334052 0.00334431 0.00334809 0.00335188 0.00335566 0.00335944 0.00336323 0.00336701 0.0033708 0.00337458 0.00337836 0.00338215 0.00338593 0.00338971 0.0033935 0.00339728 0.00340107 0.00340485 0.00340863 0.00341242 0.0034162 0.00341998 0.00342377 0.00342755 0.00343134 0.00343512 0.0034389 0.00344269 0.00344647 0.00345025 0.00345404 0.00345782 0.00346161 0.00346539 0.00346917 0.00347296 0.00347674 0.00348052 0.00348431 0.00348809 0.00349188 0.00349566 0.00349944 0.00350323 0.00350701 0.00351079 0.00351458 0.00351836 0.00352215 0.00352593 0.00352971 0.0035335 0.00353728 0.00354107 0.00354485 0.00354863 0.00355242 0.0035562 0.00355998 0.00356377 0.00356755 0.00357134 0.00357512 0.0035789 0.00358269 0.00358647 0.00359025 0.00359404 0.00359782 0.00360161 0.00360539 0.00360917 0.00361296 0.00361674 0.00362052 0.00362431 0.00362809 0.00363188 0.00363566 0.00363944 0.00364323 0.00364701 0.00365079 0.00365458 0.00365836 0.00366215 0.00366593 0.00366971 0.0036735 0.00367728 0.00368106 0.00368485 0.00368863 0.00369242 0.0036962 0.00369998 0.00370377 0.00370755 0.00371134 0.00371512 0.0037189 0.00372269 0.00372647 0.00373025 0.00373404 0.00373782 0.00374161 0.00374539 0.00374917 0.00375296 0.00375674 0.00376052 0.00376431 0.00376809 0.00377188 0.00377566 0.00377944 +-0.00076904 -0.000729375 -0.000664613 -0.00047951 1.48604E-05 0.000824955 0.00175488 0.00258924 0.0031091 0.00328431 0.00332041 0.00332913 0.00333365 0.00333754 0.00334135 0.00334515 0.00334894 0.00335274 0.00335653 0.00336032 0.00336412 0.00336791 0.00337171 0.0033755 0.00337929 0.00338309 0.00338688 0.00339067 0.00339447 0.00339826 0.00340205 0.00340585 0.00340964 0.00341344 0.00341723 0.00342102 0.00342482 0.00342861 0.0034324 0.0034362 0.00343999 0.00344378 0.00344758 0.00345137 0.00345517 0.00345896 0.00346275 0.00346655 0.00347034 0.00347413 0.00347793 0.00348172 0.00348551 0.00348931 0.0034931 0.0034969 0.00350069 0.00350448 0.00350828 0.00351207 0.00351586 0.00351966 0.00352345 0.00352724 0.00353104 0.00353483 0.00353863 0.00354242 0.00354621 0.00355001 0.0035538 0.00355759 0.00356139 0.00356518 0.00356897 0.00357277 0.00357656 0.00358036 0.00358415 0.00358794 0.00359174 0.00359553 0.00359932 0.00360312 0.00360691 0.00361071 0.0036145 0.00361829 0.00362209 0.00362588 0.00362967 0.00363347 0.00363726 0.00364105 0.00364485 0.00364864 0.00365244 0.00365623 0.00366002 0.00366382 0.00366761 0.0036714 0.0036752 0.00367899 0.00368278 0.00368658 0.00369037 0.00369417 0.00369796 0.00370175 0.00370555 0.00370934 0.00371313 0.00371693 0.00372072 0.00372451 0.00372831 0.0037321 0.0037359 0.00373969 0.00374348 0.00374728 0.00375107 0.00375486 0.00375866 0.00376245 0.00376624 0.00377004 0.00377383 0.00377763 0.00378142 0.00378521 0.00378901 +-0.000771196 -0.000731407 -0.000666404 -0.000480628 1.49231E-05 0.000826162 0.00175729 0.00259341 0.00311564 0.00329225 0.0033287 0.00333748 0.00334202 0.00334593 0.00334974 0.00335355 0.00335735 0.00336116 0.00336496 0.00336876 0.00337257 0.00337637 0.00338017 0.00338398 0.00338778 0.00339159 0.00339539 0.00339919 0.003403 0.0034068 0.0034106 0.00341441 0.00341821 0.00342201 0.00342582 0.00342962 0.00343342 0.00343723 0.00344103 0.00344483 0.00344864 0.00345244 0.00345625 0.00346005 0.00346385 0.00346766 0.00347146 0.00347526 0.00347907 0.00348287 0.00348667 0.00349048 0.00349428 0.00349808 0.00350189 0.00350569 0.00350949 0.0035133 0.0035171 0.00352091 0.00352471 0.00352851 0.00353232 0.00353612 0.00353992 0.00354373 0.00354753 0.00355133 0.00355514 0.00355894 0.00356274 0.00356655 0.00357035 0.00357415 0.00357796 0.00358176 0.00358556 0.00358937 0.00359317 0.00359698 0.00360078 0.00360458 0.00360839 0.00361219 0.00361599 0.0036198 0.0036236 0.0036274 0.00363121 0.00363501 0.00363881 0.00364262 0.00364642 0.00365022 0.00365403 0.00365783 0.00366164 0.00366544 0.00366924 0.00367305 0.00367685 0.00368065 0.00368446 0.00368826 0.00369206 0.00369587 0.00369967 0.00370347 0.00370728 0.00371108 0.00371488 0.00371869 0.00372249 0.0037263 0.0037301 0.0037339 0.00373771 0.00374151 0.00374531 0.00374912 0.00375292 0.00375672 0.00376053 0.00376433 0.00376813 0.00377194 0.00377574 0.00377954 0.00378335 0.00378715 0.00379095 0.00379476 0.00379856 +-0.000773352 -0.000733438 -0.000668195 -0.000481744 1.49859E-05 0.000827365 0.00175969 0.00259757 0.00312215 0.00330019 0.00333698 0.00334583 0.00335038 0.0033543 0.00335813 0.00336194 0.00336576 0.00336957 0.00337338 0.0033772 0.00338101 0.00338482 0.00338864 0.00339245 0.00339626 0.00340008 0.00340389 0.0034077 0.00341152 0.00341533 0.00341914 0.00342296 0.00342677 0.00343058 0.0034344 0.00343821 0.00344202 0.00344584 0.00344965 0.00345346 0.00345728 0.00346109 0.0034649 0.00346872 0.00347253 0.00347634 0.00348016 0.00348397 0.00348778 0.0034916 0.00349541 0.00349923 0.00350304 0.00350685 0.00351067 0.00351448 0.00351829 0.00352211 0.00352592 0.00352973 0.00353355 0.00353736 0.00354117 0.00354499 0.0035488 0.00355261 0.00355643 0.00356024 0.00356405 0.00356787 0.00357168 0.00357549 0.00357931 0.00358312 0.00358693 0.00359075 0.00359456 0.00359837 0.00360219 0.003606 0.00360981 0.00361363 0.00361744 0.00362125 0.00362507 0.00362888 0.00363269 0.00363651 0.00364032 0.00364413 0.00364795 0.00365176 0.00365557 0.00365939 0.0036632 0.00366701 0.00367083 0.00367464 0.00367845 0.00368227 0.00368608 0.00368989 0.00369371 0.00369752 0.00370133 0.00370515 0.00370896 0.00371277 0.00371659 0.0037204 0.00372421 0.00372803 0.00373184 0.00373565 0.00373947 0.00374328 0.00374709 0.00375091 0.00375472 0.00375853 0.00376235 0.00376616 0.00376998 0.00377379 0.0037776 0.00378142 0.00378523 0.00378904 0.00379286 0.00379667 0.00380048 0.0038043 0.00380811 +-0.000775507 -0.000735468 -0.000669984 -0.000482858 1.50487E-05 0.000828565 0.00176209 0.00260171 0.00312866 0.00330812 0.00334525 0.00335416 0.00335873 0.00336266 0.0033665 0.00337033 0.00337415 0.00337798 0.0033818 0.00338562 0.00338945 0.00339327 0.00339709 0.00340092 0.00340474 0.00340856 0.00341238 0.00341621 0.00342003 0.00342385 0.00342768 0.0034315 0.00343532 0.00343915 0.00344297 0.00344679 0.00345062 0.00345444 0.00345826 0.00346209 0.00346591 0.00346973 0.00347356 0.00347738 0.0034812 0.00348503 0.00348885 0.00349267 0.0034965 0.00350032 0.00350414 0.00350797 0.00351179 0.00351561 0.00351944 0.00352326 0.00352708 0.0035309 0.00353473 0.00353855 0.00354237 0.0035462 0.00355002 0.00355384 0.00355767 0.00356149 0.00356531 0.00356914 0.00357296 0.00357678 0.00358061 0.00358443 0.00358825 0.00359208 0.0035959 0.00359972 0.00360355 0.00360737 0.00361119 0.00361502 0.00361884 0.00362266 0.00362649 0.00363031 0.00363413 0.00363796 0.00364178 0.0036456 0.00364943 0.00365325 0.00365707 0.00366089 0.00366472 0.00366854 0.00367236 0.00367619 0.00368001 0.00368383 0.00368766 0.00369148 0.0036953 0.00369913 0.00370295 0.00370677 0.0037106 0.00371442 0.00371824 0.00372207 0.00372589 0.00372971 0.00373354 0.00373736 0.00374118 0.00374501 0.00374883 0.00375265 0.00375648 0.0037603 0.00376412 0.00376795 0.00377177 0.00377559 0.00377942 0.00378324 0.00378706 0.00379088 0.00379471 0.00379853 0.00380235 0.00380618 0.00381 0.00381382 0.00381765 +-0.000777661 -0.000737498 -0.000671772 -0.00048397 1.51116E-05 0.000829762 0.00176447 0.00260584 0.00313514 0.00331604 0.00335352 0.00336249 0.00336708 0.00337102 0.00337487 0.00337871 0.00338254 0.00338637 0.00339021 0.00339404 0.00339787 0.00340171 0.00340554 0.00340937 0.00341321 0.00341704 0.00342087 0.0034247 0.00342854 0.00343237 0.0034362 0.00344004 0.00344387 0.0034477 0.00345154 0.00345537 0.0034592 0.00346304 0.00346687 0.0034707 0.00347453 0.00347837 0.0034822 0.00348603 0.00348987 0.0034937 0.00349753 0.00350137 0.0035052 0.00350903 0.00351287 0.0035167 0.00352053 0.00352436 0.0035282 0.00353203 0.00353586 0.0035397 0.00354353 0.00354736 0.0035512 0.00355503 0.00355886 0.0035627 0.00356653 0.00357036 0.00357419 0.00357803 0.00358186 0.00358569 0.00358953 0.00359336 0.00359719 0.00360103 0.00360486 0.00360869 0.00361253 0.00361636 0.00362019 0.00362402 0.00362786 0.00363169 0.00363552 0.00363936 0.00364319 0.00364702 0.00365086 0.00365469 0.00365852 0.00366236 0.00366619 0.00367002 0.00367385 0.00367769 0.00368152 0.00368535 0.00368919 0.00369302 0.00369685 0.00370069 0.00370452 0.00370835 0.00371219 0.00371602 0.00371985 0.00372368 0.00372752 0.00373135 0.00373518 0.00373902 0.00374285 0.00374668 0.00375052 0.00375435 0.00375818 0.00376202 0.00376585 0.00376968 0.00377351 0.00377735 0.00378118 0.00378501 0.00378885 0.00379268 0.00379651 0.00380035 0.00380418 0.00380801 0.00381185 0.00381568 0.00381951 0.00382334 0.00382718 +-0.000779814 -0.000739526 -0.000673559 -0.000485081 1.51746E-05 0.000830955 0.00176685 0.00260995 0.00314161 0.00332394 0.00336177 0.00337081 0.00337542 0.00337937 0.00338323 0.00338708 0.00339092 0.00339476 0.00339861 0.00340245 0.00340629 0.00341014 0.00341398 0.00341782 0.00342166 0.00342551 0.00342935 0.00343319 0.00343704 0.00344088 0.00344472 0.00344856 0.00345241 0.00345625 0.00346009 0.00346394 0.00346778 0.00347162 0.00347547 0.00347931 0.00348315 0.00348699 0.00349084 0.00349468 0.00349852 0.00350237 0.00350621 0.00351005 0.00351389 0.00351774 0.00352158 0.00352542 0.00352927 0.00353311 0.00353695 0.00354079 0.00354464 0.00354848 0.00355232 0.00355617 0.00356001 0.00356385 0.0035677 0.00357154 0.00357538 0.00357922 0.00358307 0.00358691 0.00359075 0.0035946 0.00359844 0.00360228 0.00360612 0.00360997 0.00361381 0.00361765 0.0036215 0.00362534 0.00362918 0.00363302 0.00363687 0.00364071 0.00364455 0.0036484 0.00365224 0.00365608 0.00365993 0.00366377 0.00366761 0.00367145 0.0036753 0.00367914 0.00368298 0.00368683 0.00369067 0.00369451 0.00369835 0.0037022 0.00370604 0.00370988 0.00371373 0.00371757 0.00372141 0.00372525 0.0037291 0.00373294 0.00373678 0.00374063 0.00374447 0.00374831 0.00375215 0.003756 0.00375984 0.00376368 0.00376753 0.00377137 0.00377521 0.00377906 0.0037829 0.00378674 0.00379058 0.00379443 0.00379827 0.00380211 0.00380596 0.0038098 0.00381364 0.00381748 0.00382133 0.00382517 0.00382901 0.00383286 0.0038367 +-0.000781967 -0.000741554 -0.000675345 -0.00048619 1.52376E-05 0.000832146 0.00176922 0.00261405 0.00314806 0.00333184 0.00337002 0.00337913 0.00338375 0.00338772 0.00339159 0.00339544 0.00339929 0.00340315 0.003407 0.00341085 0.00341471 0.00341856 0.00342241 0.00342626 0.00343012 0.00343397 0.00343782 0.00344167 0.00344553 0.00344938 0.00345323 0.00345709 0.00346094 0.00346479 0.00346864 0.0034725 0.00347635 0.0034802 0.00348405 0.00348791 0.00349176 0.00349561 0.00349947 0.00350332 0.00350717 0.00351102 0.00351488 0.00351873 0.00352258 0.00352643 0.00353029 0.00353414 0.00353799 0.00354185 0.0035457 0.00354955 0.0035534 0.00355726 0.00356111 0.00356496 0.00356881 0.00357267 0.00357652 0.00358037 0.00358423 0.00358808 0.00359193 0.00359578 0.00359964 0.00360349 0.00360734 0.0036112 0.00361505 0.0036189 0.00362275 0.00362661 0.00363046 0.00363431 0.00363816 0.00364202 0.00364587 0.00364972 0.00365358 0.00365743 0.00366128 0.00366513 0.00366899 0.00367284 0.00367669 0.00368054 0.0036844 0.00368825 0.0036921 0.00369596 0.00369981 0.00370366 0.00370751 0.00371137 0.00371522 0.00371907 0.00372292 0.00372678 0.00373063 0.00373448 0.00373834 0.00374219 0.00374604 0.00374989 0.00375375 0.0037576 0.00376145 0.0037653 0.00376916 0.00377301 0.00377686 0.00378072 0.00378457 0.00378842 0.00379227 0.00379613 0.00379998 0.00380383 0.00380768 0.00381154 0.00381539 0.00381924 0.0038231 0.00382695 0.0038308 0.00383465 0.00383851 0.00384236 0.00384621 +-0.000784119 -0.000743581 -0.00067713 -0.000487297 1.53007E-05 0.000833333 0.00177158 0.00261814 0.00315449 0.00333972 0.00337826 0.00338744 0.00339208 0.00339605 0.00339993 0.0034038 0.00340766 0.00341152 0.00341539 0.00341925 0.00342311 0.00342697 0.00343084 0.0034347 0.00343856 0.00344242 0.00344629 0.00345015 0.00345401 0.00345787 0.00346174 0.0034656 0.00346946 0.00347332 0.00347719 0.00348105 0.00348491 0.00348877 0.00349264 0.0034965 0.00350036 0.00350422 0.00350809 0.00351195 0.00351581 0.00351967 0.00352354 0.0035274 0.00353126 0.00353512 0.00353899 0.00354285 0.00354671 0.00355057 0.00355444 0.0035583 0.00356216 0.00356603 0.00356989 0.00357375 0.00357761 0.00358148 0.00358534 0.0035892 0.00359306 0.00359693 0.00360079 0.00360465 0.00360851 0.00361238 0.00361624 0.0036201 0.00362396 0.00362783 0.00363169 0.00363555 0.00363941 0.00364328 0.00364714 0.003651 0.00365486 0.00365873 0.00366259 0.00366645 0.00367031 0.00367418 0.00367804 0.0036819 0.00368576 0.00368963 0.00369349 0.00369735 0.00370121 0.00370508 0.00370894 0.0037128 0.00371667 0.00372053 0.00372439 0.00372825 0.00373212 0.00373598 0.00373984 0.0037437 0.00374757 0.00375143 0.00375529 0.00375915 0.00376302 0.00376688 0.00377074 0.0037746 0.00377847 0.00378233 0.00378619 0.00379005 0.00379392 0.00379778 0.00380164 0.0038055 0.00380937 0.00381323 0.00381709 0.00382095 0.00382482 0.00382868 0.00383254 0.0038364 0.00384027 0.00384413 0.00384799 0.00385185 0.00385572 +-0.00078627 -0.000745607 -0.000678914 -0.000488403 1.53639E-05 0.000834517 0.00177393 0.00262221 0.00316091 0.0033476 0.0033865 0.00339574 0.00340039 0.00340438 0.00340827 0.00341215 0.00341602 0.00341989 0.00342376 0.00342764 0.00343151 0.00343538 0.00343925 0.00344312 0.003447 0.00345087 0.00345474 0.00345861 0.00346249 0.00346636 0.00347023 0.0034741 0.00347798 0.00348185 0.00348572 0.00348959 0.00349347 0.00349734 0.00350121 0.00350508 0.00350896 0.00351283 0.0035167 0.00352057 0.00352444 0.00352832 0.00353219 0.00353606 0.00353993 0.00354381 0.00354768 0.00355155 0.00355542 0.0035593 0.00356317 0.00356704 0.00357091 0.00357479 0.00357866 0.00358253 0.0035864 0.00359028 0.00359415 0.00359802 0.00360189 0.00360576 0.00360964 0.00361351 0.00361738 0.00362125 0.00362513 0.003629 0.00363287 0.00363674 0.00364062 0.00364449 0.00364836 0.00365223 0.00365611 0.00365998 0.00366385 0.00366772 0.0036716 0.00367547 0.00367934 0.00368321 0.00368708 0.00369096 0.00369483 0.0036987 0.00370257 0.00370645 0.00371032 0.00371419 0.00371806 0.00372194 0.00372581 0.00372968 0.00373355 0.00373743 0.0037413 0.00374517 0.00374904 0.00375292 0.00375679 0.00376066 0.00376453 0.0037684 0.00377228 0.00377615 0.00378002 0.00378389 0.00378777 0.00379164 0.00379551 0.00379938 0.00380326 0.00380713 0.003811 0.00381487 0.00381875 0.00382262 0.00382649 0.00383036 0.00383424 0.00383811 0.00384198 0.00384585 0.00384972 0.0038536 0.00385747 0.00386134 0.00386521 +-0.00078842 -0.000747632 -0.000680696 -0.000489507 1.54271E-05 0.000835698 0.00177628 0.00262626 0.00316731 0.00335546 0.00339472 0.00340403 0.0034087 0.0034127 0.0034166 0.00342049 0.00342437 0.00342825 0.00343213 0.00343602 0.0034399 0.00344378 0.00344766 0.00345154 0.00345543 0.00345931 0.00346319 0.00346707 0.00347096 0.00347484 0.00347872 0.0034826 0.00348648 0.00349037 0.00349425 0.00349813 0.00350201 0.0035059 0.00350978 0.00351366 0.00351754 0.00352142 0.00352531 0.00352919 0.00353307 0.00353695 0.00354083 0.00354472 0.0035486 0.00355248 0.00355636 0.00356025 0.00356413 0.00356801 0.00357189 0.00357577 0.00357966 0.00358354 0.00358742 0.0035913 0.00359519 0.00359907 0.00360295 0.00360683 0.00361071 0.0036146 0.00361848 0.00362236 0.00362624 0.00363012 0.00363401 0.00363789 0.00364177 0.00364565 0.00364954 0.00365342 0.0036573 0.00366118 0.00366506 0.00366895 0.00367283 0.00367671 0.00368059 0.00368448 0.00368836 0.00369224 0.00369612 0.0037 0.00370389 0.00370777 0.00371165 0.00371553 0.00371942 0.0037233 0.00372718 0.00373106 0.00373494 0.00373883 0.00374271 0.00374659 0.00375047 0.00375435 0.00375824 0.00376212 0.003766 0.00376988 0.00377377 0.00377765 0.00378153 0.00378541 0.00378929 0.00379318 0.00379706 0.00380094 0.00380482 0.00380871 0.00381259 0.00381647 0.00382035 0.00382423 0.00382812 0.003832 0.00383588 0.00383976 0.00384364 0.00384753 0.00385141 0.00385529 0.00385917 0.00386306 0.00386694 0.00387082 0.0038747 +-0.00079057 -0.000749657 -0.000682477 -0.000490609 1.54904E-05 0.000836875 0.00177862 0.00263031 0.00317369 0.00336331 0.00340294 0.00341231 0.00341701 0.00342102 0.00342493 0.00342882 0.00343271 0.0034366 0.0034405 0.00344439 0.00344828 0.00345217 0.00345606 0.00345996 0.00346385 0.00346774 0.00347163 0.00347552 0.00347942 0.00348331 0.0034872 0.00349109 0.00349498 0.00349888 0.00350277 0.00350666 0.00351055 0.00351444 0.00351834 0.00352223 0.00352612 0.00353001 0.0035339 0.0035378 0.00354169 0.00354558 0.00354947 0.00355336 0.00355726 0.00356115 0.00356504 0.00356893 0.00357282 0.00357672 0.00358061 0.0035845 0.00358839 0.00359228 0.00359618 0.00360007 0.00360396 0.00360785 0.00361174 0.00361564 0.00361953 0.00362342 0.00362731 0.0036312 0.0036351 0.00363899 0.00364288 0.00364677 0.00365066 0.00365456 0.00365845 0.00366234 0.00366623 0.00367012 0.00367402 0.00367791 0.0036818 0.00368569 0.00368958 0.00369348 0.00369737 0.00370126 0.00370515 0.00370904 0.00371294 0.00371683 0.00372072 0.00372461 0.0037285 0.0037324 0.00373629 0.00374018 0.00374407 0.00374796 0.00375186 0.00375575 0.00375964 0.00376353 0.00376742 0.00377132 0.00377521 0.0037791 0.00378299 0.00378688 0.00379077 0.00379467 0.00379856 0.00380245 0.00380634 0.00381023 0.00381413 0.00381802 0.00382191 0.0038258 0.00382969 0.00383359 0.00383748 0.00384137 0.00384526 0.00384915 0.00385305 0.00385694 0.00386083 0.00386472 0.00386861 0.00387251 0.0038764 0.00388029 0.00388418 +-0.000792718 -0.00075168 -0.000684257 -0.00049171 1.55538E-05 0.00083805 0.00178095 0.00263434 0.00318006 0.00337115 0.00341115 0.00342059 0.0034253 0.00342932 0.00343324 0.00343715 0.00344105 0.00344495 0.00344885 0.00345275 0.00345666 0.00346056 0.00346446 0.00346836 0.00347226 0.00347616 0.00348007 0.00348397 0.00348787 0.00349177 0.00349567 0.00349958 0.00350348 0.00350738 0.00351128 0.00351518 0.00351908 0.00352299 0.00352689 0.00353079 0.00353469 0.00353859 0.00354249 0.0035464 0.0035503 0.0035542 0.0035581 0.003562 0.00356591 0.00356981 0.00357371 0.00357761 0.00358151 0.00358541 0.00358932 0.00359322 0.00359712 0.00360102 0.00360492 0.00360883 0.00361273 0.00361663 0.00362053 0.00362443 0.00362833 0.00363224 0.00363614 0.00364004 0.00364394 0.00364784 0.00365174 0.00365565 0.00365955 0.00366345 0.00366735 0.00367125 0.00367516 0.00367906 0.00368296 0.00368686 0.00369076 0.00369466 0.00369857 0.00370247 0.00370637 0.00371027 0.00371417 0.00371807 0.00372198 0.00372588 0.00372978 0.00373368 0.00373758 0.00374149 0.00374539 0.00374929 0.00375319 0.00375709 0.00376099 0.0037649 0.0037688 0.0037727 0.0037766 0.0037805 0.0037844 0.00378831 0.00379221 0.00379611 0.00380001 0.00380391 0.00380782 0.00381172 0.00381562 0.00381952 0.00382342 0.00382732 0.00383123 0.00383513 0.00383903 0.00384293 0.00384683 0.00385073 0.00385464 0.00385854 0.00386244 0.00386634 0.00387024 0.00387415 0.00387805 0.00388195 0.00388585 0.00388975 0.00389365 +-0.000794866 -0.000753703 -0.000686036 -0.000492809 1.56172E-05 0.000839221 0.00178328 0.00263835 0.00318641 0.00337898 0.00341935 0.00342886 0.00343359 0.00343762 0.00344155 0.00344547 0.00344938 0.00345329 0.0034572 0.00346111 0.00346502 0.00346894 0.00347285 0.00347676 0.00348067 0.00348458 0.00348849 0.0034924 0.00349632 0.00350023 0.00350414 0.00350805 0.00351196 0.00351587 0.00351979 0.0035237 0.00352761 0.00353152 0.00353543 0.00353934 0.00354326 0.00354717 0.00355108 0.00355499 0.0035589 0.00356281 0.00356672 0.00357064 0.00357455 0.00357846 0.00358237 0.00358628 0.00359019 0.00359411 0.00359802 0.00360193 0.00360584 0.00360975 0.00361366 0.00361757 0.00362149 0.0036254 0.00362931 0.00363322 0.00363713 0.00364104 0.00364496 0.00364887 0.00365278 0.00365669 0.0036606 0.00366451 0.00366842 0.00367234 0.00367625 0.00368016 0.00368407 0.00368798 0.00369189 0.00369581 0.00369972 0.00370363 0.00370754 0.00371145 0.00371536 0.00371928 0.00372319 0.0037271 0.00373101 0.00373492 0.00373883 0.00374274 0.00374666 0.00375057 0.00375448 0.00375839 0.0037623 0.00376621 0.00377013 0.00377404 0.00377795 0.00378186 0.00378577 0.00378968 0.00379359 0.00379751 0.00380142 0.00380533 0.00380924 0.00381315 0.00381706 0.00382098 0.00382489 0.0038288 0.00383271 0.00383662 0.00384053 0.00384444 0.00384836 0.00385227 0.00385618 0.00386009 0.003864 0.00386791 0.00387183 0.00387574 0.00387965 0.00388356 0.00388747 0.00389138 0.00389529 0.00389921 0.00390312 +-0.000797013 -0.000755725 -0.000687814 -0.000493906 1.56807E-05 0.000840389 0.0017856 0.00264235 0.00319274 0.0033868 0.00342755 0.00343712 0.00344187 0.00344591 0.00344985 0.00345378 0.0034577 0.00346162 0.00346554 0.00346946 0.00347338 0.00347731 0.00348123 0.00348515 0.00348907 0.00349299 0.00349691 0.00350083 0.00350476 0.00350868 0.0035126 0.00351652 0.00352044 0.00352436 0.00352828 0.0035322 0.00353613 0.00354005 0.00354397 0.00354789 0.00355181 0.00355573 0.00355965 0.00356358 0.0035675 0.00357142 0.00357534 0.00357926 0.00358318 0.0035871 0.00359102 0.00359495 0.00359887 0.00360279 0.00360671 0.00361063 0.00361455 0.00361847 0.0036224 0.00362632 0.00363024 0.00363416 0.00363808 0.003642 0.00364592 0.00364984 0.00365377 0.00365769 0.00366161 0.00366553 0.00366945 0.00367337 0.00367729 0.00368122 0.00368514 0.00368906 0.00369298 0.0036969 0.00370082 0.00370474 0.00370866 0.00371259 0.00371651 0.00372043 0.00372435 0.00372827 0.00373219 0.00373611 0.00374004 0.00374396 0.00374788 0.0037518 0.00375572 0.00375964 0.00376356 0.00376748 0.00377141 0.00377533 0.00377925 0.00378317 0.00378709 0.00379101 0.00379493 0.00379885 0.00380278 0.0038067 0.00381062 0.00381454 0.00381846 0.00382238 0.0038263 0.00383023 0.00383415 0.00383807 0.00384199 0.00384591 0.00384983 0.00385375 0.00385767 0.0038616 0.00386552 0.00386944 0.00387336 0.00387728 0.0038812 0.00388512 0.00388905 0.00389297 0.00389689 0.00390081 0.00390473 0.00390865 0.00391257 +-0.00079916 -0.000757746 -0.000689591 -0.000495002 1.57443E-05 0.000841555 0.00178791 0.00264634 0.00319906 0.00339461 0.00343573 0.00344538 0.00345015 0.0034542 0.00345815 0.00346208 0.00346601 0.00346994 0.00347388 0.00347781 0.00348174 0.00348567 0.0034896 0.00349353 0.00349746 0.00350139 0.00350532 0.00350926 0.00351319 0.00351712 0.00352105 0.00352498 0.00352891 0.00353284 0.00353677 0.0035407 0.00354464 0.00354857 0.0035525 0.00355643 0.00356036 0.00356429 0.00356822 0.00357215 0.00357608 0.00358002 0.00358395 0.00358788 0.00359181 0.00359574 0.00359967 0.0036036 0.00360753 0.00361146 0.0036154 0.00361933 0.00362326 0.00362719 0.00363112 0.00363505 0.00363898 0.00364291 0.00364684 0.00365078 0.00365471 0.00365864 0.00366257 0.0036665 0.00367043 0.00367436 0.00367829 0.00368222 0.00368615 0.00369009 0.00369402 0.00369795 0.00370188 0.00370581 0.00370974 0.00371367 0.0037176 0.00372153 0.00372547 0.0037294 0.00373333 0.00373726 0.00374119 0.00374512 0.00374905 0.00375298 0.00375691 0.00376085 0.00376478 0.00376871 0.00377264 0.00377657 0.0037805 0.00378443 0.00378836 0.00379229 0.00379623 0.00380016 0.00380409 0.00380802 0.00381195 0.00381588 0.00381981 0.00382374 0.00382767 0.00383161 0.00383554 0.00383947 0.0038434 0.00384733 0.00385126 0.00385519 0.00385912 0.00386305 0.00386699 0.00387092 0.00387485 0.00387878 0.00388271 0.00388664 0.00389057 0.0038945 0.00389843 0.00390237 0.0039063 0.00391023 0.00391416 0.00391809 0.00392202 +-0.000801305 -0.000759766 -0.000691366 -0.000496096 1.58079E-05 0.000842717 0.00179021 0.00265031 0.00320535 0.00340241 0.00344391 0.00345362 0.00345841 0.00346248 0.00346644 0.00347038 0.00347432 0.00347826 0.0034822 0.00348614 0.00349008 0.00349402 0.00349797 0.00350191 0.00350585 0.00350979 0.00351373 0.00351767 0.00352161 0.00352555 0.00352949 0.00353343 0.00353737 0.00354132 0.00354526 0.0035492 0.00355314 0.00355708 0.00356102 0.00356496 0.0035689 0.00357284 0.00357678 0.00358072 0.00358466 0.00358861 0.00359255 0.00359649 0.00360043 0.00360437 0.00360831 0.00361225 0.00361619 0.00362013 0.00362407 0.00362801 0.00363195 0.0036359 0.00363984 0.00364378 0.00364772 0.00365166 0.0036556 0.00365954 0.00366348 0.00366742 0.00367136 0.0036753 0.00367925 0.00368319 0.00368713 0.00369107 0.00369501 0.00369895 0.00370289 0.00370683 0.00371077 0.00371471 0.00371865 0.00372259 0.00372654 0.00373048 0.00373442 0.00373836 0.0037423 0.00374624 0.00375018 0.00375412 0.00375806 0.003762 0.00376594 0.00376988 0.00377383 0.00377777 0.00378171 0.00378565 0.00378959 0.00379353 0.00379747 0.00380141 0.00380535 0.00380929 0.00381323 0.00381717 0.00382112 0.00382506 0.003829 0.00383294 0.00383688 0.00384082 0.00384476 0.0038487 0.00385264 0.00385658 0.00386052 0.00386447 0.00386841 0.00387235 0.00387629 0.00388023 0.00388417 0.00388811 0.00389205 0.00389599 0.00389993 0.00390387 0.00390781 0.00391176 0.0039157 0.00391964 0.00392358 0.00392752 0.00393146 +-0.00080345 -0.000761786 -0.000693141 -0.000497188 1.58716E-05 0.000843876 0.00179251 0.00265427 0.00321164 0.0034102 0.00345208 0.00346187 0.00346667 0.00347075 0.00347472 0.00347867 0.00348262 0.00348657 0.00349052 0.00349447 0.00349842 0.00350237 0.00350632 0.00351027 0.00351423 0.00351818 0.00352213 0.00352608 0.00353003 0.00353398 0.00353793 0.00354188 0.00354583 0.00354978 0.00355373 0.00355768 0.00356163 0.00356558 0.00356953 0.00357348 0.00357743 0.00358139 0.00358534 0.00358929 0.00359324 0.00359719 0.00360114 0.00360509 0.00360904 0.00361299 0.00361694 0.00362089 0.00362484 0.00362879 0.00363274 0.00363669 0.00364064 0.0036446 0.00364855 0.0036525 0.00365645 0.0036604 0.00366435 0.0036683 0.00367225 0.0036762 0.00368015 0.0036841 0.00368805 0.003692 0.00369595 0.0036999 0.00370385 0.0037078 0.00371176 0.00371571 0.00371966 0.00372361 0.00372756 0.00373151 0.00373546 0.00373941 0.00374336 0.00374731 0.00375126 0.00375521 0.00375916 0.00376311 0.00376706 0.00377101 0.00377497 0.00377892 0.00378287 0.00378682 0.00379077 0.00379472 0.00379867 0.00380262 0.00380657 0.00381052 0.00381447 0.00381842 0.00382237 0.00382632 0.00383027 0.00383422 0.00383817 0.00384213 0.00384608 0.00385003 0.00385398 0.00385793 0.00386188 0.00386583 0.00386978 0.00387373 0.00387768 0.00388163 0.00388558 0.00388953 0.00389348 0.00389743 0.00390138 0.00390534 0.00390929 0.00391324 0.00391719 0.00392114 0.00392509 0.00392904 0.00393299 0.00393694 0.00394089 +-0.000805594 -0.000763805 -0.000694914 -0.000498279 1.59353E-05 0.000845032 0.0017948 0.00265822 0.0032179 0.00341797 0.00346024 0.0034701 0.00347492 0.00347901 0.00348299 0.00348695 0.00349091 0.00349487 0.00349883 0.00350279 0.00350675 0.00351071 0.00351467 0.00351864 0.0035226 0.00352656 0.00353052 0.00353448 0.00353844 0.0035424 0.00354636 0.00355032 0.00355428 0.00355824 0.0035622 0.00356616 0.00357012 0.00357408 0.00357804 0.003582 0.00358596 0.00358992 0.00359388 0.00359784 0.0036018 0.00360576 0.00360972 0.00361368 0.00361764 0.0036216 0.00362556 0.00362952 0.00363349 0.00363745 0.00364141 0.00364537 0.00364933 0.00365329 0.00365725 0.00366121 0.00366517 0.00366913 0.00367309 0.00367705 0.00368101 0.00368497 0.00368893 0.00369289 0.00369685 0.00370081 0.00370477 0.00370873 0.00371269 0.00371665 0.00372061 0.00372457 0.00372853 0.00373249 0.00373645 0.00374041 0.00374438 0.00374834 0.0037523 0.00375626 0.00376022 0.00376418 0.00376814 0.0037721 0.00377606 0.00378002 0.00378398 0.00378794 0.0037919 0.00379586 0.00379982 0.00380378 0.00380774 0.0038117 0.00381566 0.00381962 0.00382358 0.00382754 0.0038315 0.00383546 0.00383942 0.00384338 0.00384734 0.0038513 0.00385527 0.00385923 0.00386319 0.00386715 0.00387111 0.00387507 0.00387903 0.00388299 0.00388695 0.00389091 0.00389487 0.00389883 0.00390279 0.00390675 0.00391071 0.00391467 0.00391863 0.00392259 0.00392655 0.00393051 0.00393447 0.00393843 0.00394239 0.00394635 0.00395031 +-0.000807738 -0.000765822 -0.000696686 -0.000499368 1.59991E-05 0.000846185 0.00179708 0.00266215 0.00322415 0.00342574 0.0034684 0.00347832 0.00348317 0.00348727 0.00349125 0.00349523 0.0034992 0.00350317 0.00350714 0.00351111 0.00351508 0.00351905 0.00352302 0.00352699 0.00353096 0.00353493 0.0035389 0.00354287 0.00354684 0.00355081 0.00355478 0.00355875 0.00356272 0.00356669 0.00357066 0.00357463 0.0035786 0.00358257 0.00358654 0.00359051 0.00359448 0.00359845 0.00360242 0.00360639 0.00361036 0.00361433 0.0036183 0.00362227 0.00362624 0.00363021 0.00363418 0.00363815 0.00364212 0.00364609 0.00365006 0.00365403 0.003658 0.00366197 0.00366594 0.00366991 0.00367388 0.00367785 0.00368182 0.00368579 0.00368976 0.00369373 0.0036977 0.00370167 0.00370564 0.00370961 0.00371358 0.00371755 0.00372152 0.00372549 0.00372946 0.00373343 0.0037374 0.00374137 0.00374534 0.00374931 0.00375328 0.00375725 0.00376122 0.00376519 0.00376916 0.00377313 0.0037771 0.00378107 0.00378504 0.00378901 0.00379298 0.00379695 0.00380092 0.00380489 0.00380886 0.00381283 0.00381681 0.00382078 0.00382475 0.00382872 0.00383269 0.00383666 0.00384063 0.0038446 0.00384857 0.00385254 0.00385651 0.00386048 0.00386445 0.00386842 0.00387239 0.00387636 0.00388033 0.0038843 0.00388827 0.00389224 0.00389621 0.00390018 0.00390415 0.00390812 0.00391209 0.00391606 0.00392003 0.003924 0.00392797 0.00393194 0.00393591 0.00393988 0.00394385 0.00394782 0.00395179 0.00395576 0.00395973 +-0.00080988 -0.000767839 -0.000698457 -0.000500455 1.6063E-05 0.000847335 0.00179935 0.00266607 0.00323038 0.00343349 0.00347654 0.00348654 0.00349141 0.00349551 0.00349951 0.0035035 0.00350748 0.00351146 0.00351544 0.00351942 0.0035234 0.00352737 0.00353135 0.00353533 0.00353931 0.00354329 0.00354727 0.00355125 0.00355523 0.00355921 0.00356319 0.00356717 0.00357115 0.00357513 0.00357911 0.00358309 0.00358707 0.00359105 0.00359503 0.00359901 0.00360299 0.00360697 0.00361095 0.00361493 0.00361891 0.00362289 0.00362687 0.00363085 0.00363483 0.00363881 0.00364279 0.00364677 0.00365075 0.00365473 0.00365871 0.00366269 0.00366667 0.00367065 0.00367463 0.00367861 0.00368259 0.00368657 0.00369055 0.00369453 0.00369851 0.00370249 0.00370647 0.00371045 0.00371443 0.00371841 0.00372239 0.00372637 0.00373035 0.00373433 0.00373831 0.00374229 0.00374626 0.00375024 0.00375422 0.0037582 0.00376218 0.00376616 0.00377014 0.00377412 0.0037781 0.00378208 0.00378606 0.00379004 0.00379402 0.003798 0.00380198 0.00380596 0.00380994 0.00381392 0.0038179 0.00382188 0.00382586 0.00382984 0.00383382 0.0038378 0.00384178 0.00384576 0.00384974 0.00385372 0.0038577 0.00386168 0.00386566 0.00386964 0.00387362 0.0038776 0.00388158 0.00388556 0.00388954 0.00389352 0.0038975 0.00390148 0.00390546 0.00390944 0.00391342 0.0039174 0.00392138 0.00392536 0.00392934 0.00393332 0.0039373 0.00394128 0.00394526 0.00394924 0.00395322 0.0039572 0.00396118 0.00396516 0.00396913 +-0.000812022 -0.000769856 -0.000700227 -0.000501541 1.61269E-05 0.000848482 0.00180162 0.00266998 0.00323659 0.00344124 0.00348468 0.00349475 0.00349964 0.00350376 0.00350776 0.00351176 0.00351575 0.00351974 0.00352373 0.00352772 0.0035317 0.00353569 0.00353968 0.00354367 0.00354766 0.00355165 0.00355564 0.00355963 0.00356362 0.00356761 0.0035716 0.00357559 0.00357958 0.00358357 0.00358756 0.00359155 0.00359554 0.00359953 0.00360352 0.00360751 0.0036115 0.00361549 0.00361947 0.00362346 0.00362745 0.00363144 0.00363543 0.00363942 0.00364341 0.0036474 0.00365139 0.00365538 0.00365937 0.00366336 0.00366735 0.00367134 0.00367533 0.00367932 0.00368331 0.0036873 0.00369129 0.00369528 0.00369927 0.00370325 0.00370724 0.00371123 0.00371522 0.00371921 0.0037232 0.00372719 0.00373118 0.00373517 0.00373916 0.00374315 0.00374714 0.00375113 0.00375512 0.00375911 0.0037631 0.00376709 0.00377108 0.00377507 0.00377906 0.00378305 0.00378704 0.00379102 0.00379501 0.003799 0.00380299 0.00380698 0.00381097 0.00381496 0.00381895 0.00382294 0.00382693 0.00383092 0.00383491 0.0038389 0.00384289 0.00384688 0.00385087 0.00385486 0.00385885 0.00386284 0.00386683 0.00387082 0.00387481 0.00387879 0.00388278 0.00388677 0.00389076 0.00389475 0.00389874 0.00390273 0.00390672 0.00391071 0.0039147 0.00391869 0.00392268 0.00392667 0.00393066 0.00393465 0.00393864 0.00394263 0.00394662 0.00395061 0.0039546 0.00395859 0.00396258 0.00396656 0.00397055 0.00397454 0.00397853 +-0.000814163 -0.000771871 -0.000701995 -0.000502625 1.61909E-05 0.000849626 0.00180388 0.00267387 0.00324279 0.00344897 0.00349281 0.00350296 0.00350786 0.00351199 0.00351601 0.00352001 0.00352401 0.00352801 0.00353201 0.00353601 0.00354001 0.00354401 0.00354801 0.003552 0.003556 0.00356 0.003564 0.003568 0.003572 0.003576 0.00358 0.003584 0.003588 0.003592 0.003596 0.0036 0.003604 0.00360799 0.00361199 0.00361599 0.00361999 0.00362399 0.00362799 0.00363199 0.00363599 0.00363999 0.00364399 0.00364799 0.00365199 0.00365599 0.00365998 0.00366398 0.00366798 0.00367198 0.00367598 0.00367998 0.00368398 0.00368798 0.00369198 0.00369598 0.00369998 0.00370398 0.00370798 0.00371198 0.00371597 0.00371997 0.00372397 0.00372797 0.00373197 0.00373597 0.00373997 0.00374397 0.00374797 0.00375197 0.00375597 0.00375997 0.00376397 0.00376796 0.00377196 0.00377596 0.00377996 0.00378396 0.00378796 0.00379196 0.00379596 0.00379996 0.00380396 0.00380796 0.00381196 0.00381596 0.00381996 0.00382395 0.00382795 0.00383195 0.00383595 0.00383995 0.00384395 0.00384795 0.00385195 0.00385595 0.00385995 0.00386395 0.00386795 0.00387195 0.00387594 0.00387994 0.00388394 0.00388794 0.00389194 0.00389594 0.00389994 0.00390394 0.00390794 0.00391194 0.00391594 0.00391994 0.00392394 0.00392794 0.00393193 0.00393593 0.00393993 0.00394393 0.00394793 0.00395193 0.00395593 0.00395993 0.00396393 0.00396793 0.00397193 0.00397593 0.00397993 0.00398392 0.00398792 +-0.000816303 -0.000773885 -0.000703763 -0.000503707 1.6255E-05 0.000850767 0.00180614 0.00267775 0.00324897 0.00345669 0.00350094 0.00351115 0.00351608 0.00352022 0.00352425 0.00352826 0.00353227 0.00353628 0.00354028 0.00354429 0.0035483 0.00355231 0.00355632 0.00356033 0.00356434 0.00356835 0.00357236 0.00357637 0.00358037 0.00358438 0.00358839 0.0035924 0.00359641 0.00360042 0.00360443 0.00360844 0.00361245 0.00361645 0.00362046 0.00362447 0.00362848 0.00363249 0.0036365 0.00364051 0.00364452 0.00364853 0.00365254 0.00365654 0.00366055 0.00366456 0.00366857 0.00367258 0.00367659 0.0036806 0.00368461 0.00368862 0.00369263 0.00369663 0.00370064 0.00370465 0.00370866 0.00371267 0.00371668 0.00372069 0.0037247 0.00372871 0.00373271 0.00373672 0.00374073 0.00374474 0.00374875 0.00375276 0.00375677 0.00376078 0.00376479 0.0037688 0.0037728 0.00377681 0.00378082 0.00378483 0.00378884 0.00379285 0.00379686 0.00380087 0.00380488 0.00380889 0.00381289 0.0038169 0.00382091 0.00382492 0.00382893 0.00383294 0.00383695 0.00384096 0.00384497 0.00384897 0.00385298 0.00385699 0.003861 0.00386501 0.00386902 0.00387303 0.00387704 0.00388105 0.00388506 0.00388906 0.00389307 0.00389708 0.00390109 0.0039051 0.00390911 0.00391312 0.00391713 0.00392114 0.00392514 0.00392915 0.00393316 0.00393717 0.00394118 0.00394519 0.0039492 0.00395321 0.00395722 0.00396123 0.00396523 0.00396924 0.00397325 0.00397726 0.00398127 0.00398528 0.00398929 0.0039933 0.00399731 +-0.000818442 -0.000775899 -0.000705529 -0.000504788 1.63191E-05 0.000851905 0.00180838 0.00268162 0.00325514 0.0034644 0.00350905 0.00351934 0.00352428 0.00352844 0.00353248 0.0035365 0.00354052 0.00354453 0.00354855 0.00355257 0.00355659 0.00356061 0.00356463 0.00356865 0.00357267 0.00357668 0.0035807 0.00358472 0.00358874 0.00359276 0.00359678 0.0036008 0.00360481 0.00360883 0.00361285 0.00361687 0.00362089 0.00362491 0.00362893 0.00363295 0.00363696 0.00364098 0.003645 0.00364902 0.00365304 0.00365706 0.00366108 0.00366509 0.00366911 0.00367313 0.00367715 0.00368117 0.00368519 0.00368921 0.00369323 0.00369724 0.00370126 0.00370528 0.0037093 0.00371332 0.00371734 0.00372136 0.00372537 0.00372939 0.00373341 0.00373743 0.00374145 0.00374547 0.00374949 0.0037535 0.00375752 0.00376154 0.00376556 0.00376958 0.0037736 0.00377762 0.00378164 0.00378565 0.00378967 0.00379369 0.00379771 0.00380173 0.00380575 0.00380977 0.00381378 0.0038178 0.00382182 0.00382584 0.00382986 0.00383388 0.0038379 0.00384192 0.00384593 0.00384995 0.00385397 0.00385799 0.00386201 0.00386603 0.00387005 0.00387406 0.00387808 0.0038821 0.00388612 0.00389014 0.00389416 0.00389818 0.0039022 0.00390621 0.00391023 0.00391425 0.00391827 0.00392229 0.00392631 0.00393033 0.00393434 0.00393836 0.00394238 0.0039464 0.00395042 0.00395444 0.00395846 0.00396248 0.00396649 0.00397051 0.00397453 0.00397855 0.00398257 0.00398659 0.00399061 0.00399462 0.00399864 0.00400266 0.00400668 +-0.000820581 -0.000777912 -0.000707294 -0.000505867 1.63833E-05 0.00085304 0.00181062 0.00268547 0.00326129 0.0034721 0.00351716 0.00352753 0.00353249 0.00353665 0.0035407 0.00354473 0.00354876 0.00355279 0.00355681 0.00356084 0.00356487 0.0035689 0.00357293 0.00357696 0.00358098 0.00358501 0.00358904 0.00359307 0.0035971 0.00360113 0.00360515 0.00360918 0.00361321 0.00361724 0.00362127 0.0036253 0.00362933 0.00363335 0.00363738 0.00364141 0.00364544 0.00364947 0.0036535 0.00365752 0.00366155 0.00366558 0.00366961 0.00367364 0.00367767 0.00368169 0.00368572 0.00368975 0.00369378 0.00369781 0.00370184 0.00370586 0.00370989 0.00371392 0.00371795 0.00372198 0.00372601 0.00373003 0.00373406 0.00373809 0.00374212 0.00374615 0.00375018 0.0037542 0.00375823 0.00376226 0.00376629 0.00377032 0.00377435 0.00377837 0.0037824 0.00378643 0.00379046 0.00379449 0.00379852 0.00380254 0.00380657 0.0038106 0.00381463 0.00381866 0.00382269 0.00382671 0.00383074 0.00383477 0.0038388 0.00384283 0.00384686 0.00385088 0.00385491 0.00385894 0.00386297 0.003867 0.00387103 0.00387505 0.00387908 0.00388311 0.00388714 0.00389117 0.0038952 0.00389922 0.00390325 0.00390728 0.00391131 0.00391534 0.00391937 0.0039234 0.00392742 0.00393145 0.00393548 0.00393951 0.00394354 0.00394757 0.00395159 0.00395562 0.00395965 0.00396368 0.00396771 0.00397174 0.00397576 0.00397979 0.00398382 0.00398785 0.00399188 0.00399591 0.00399993 0.00400396 0.00400799 0.00401202 0.00401605 +-0.000822719 -0.000779924 -0.000709058 -0.000506945 1.64475E-05 0.000854172 0.00181286 0.00268932 0.00326742 0.00347979 0.00352526 0.0035357 0.00354068 0.00354486 0.00354891 0.00355295 0.00355699 0.00356103 0.00356507 0.00356911 0.00357315 0.00357718 0.00358122 0.00358526 0.0035893 0.00359334 0.00359737 0.00360141 0.00360545 0.00360949 0.00361353 0.00361756 0.0036216 0.00362564 0.00362968 0.00363372 0.00363775 0.00364179 0.00364583 0.00364987 0.00365391 0.00365794 0.00366198 0.00366602 0.00367006 0.0036741 0.00367813 0.00368217 0.00368621 0.00369025 0.00369429 0.00369832 0.00370236 0.0037064 0.00371044 0.00371448 0.00371851 0.00372255 0.00372659 0.00373063 0.00373467 0.0037387 0.00374274 0.00374678 0.00375082 0.00375486 0.0037589 0.00376293 0.00376697 0.00377101 0.00377505 0.00377909 0.00378312 0.00378716 0.0037912 0.00379524 0.00379928 0.00380331 0.00380735 0.00381139 0.00381543 0.00381947 0.0038235 0.00382754 0.00383158 0.00383562 0.00383966 0.00384369 0.00384773 0.00385177 0.00385581 0.00385985 0.00386388 0.00386792 0.00387196 0.003876 0.00388004 0.00388407 0.00388811 0.00389215 0.00389619 0.00390023 0.00390426 0.0039083 0.00391234 0.00391638 0.00392042 0.00392445 0.00392849 0.00393253 0.00393657 0.00394061 0.00394464 0.00394868 0.00395272 0.00395676 0.0039608 0.00396484 0.00396887 0.00397291 0.00397695 0.00398099 0.00398503 0.00398906 0.0039931 0.00399714 0.00400118 0.00400522 0.00400925 0.00401329 0.00401733 0.00402137 0.00402541 +-0.000824856 -0.000781935 -0.000710821 -0.00050802 1.65118E-05 0.000855301 0.00181508 0.00269314 0.00327353 0.00348747 0.00353335 0.00354387 0.00354887 0.00355305 0.00355712 0.00356117 0.00356522 0.00356927 0.00357332 0.00357736 0.00358141 0.00358546 0.00358951 0.00359356 0.0035976 0.00360165 0.0036057 0.00360975 0.00361379 0.00361784 0.00362189 0.00362594 0.00362998 0.00363403 0.00363808 0.00364213 0.00364618 0.00365022 0.00365427 0.00365832 0.00366237 0.00366641 0.00367046 0.00367451 0.00367856 0.0036826 0.00368665 0.0036907 0.00369475 0.0036988 0.00370284 0.00370689 0.00371094 0.00371499 0.00371903 0.00372308 0.00372713 0.00373118 0.00373523 0.00373927 0.00374332 0.00374737 0.00375142 0.00375546 0.00375951 0.00376356 0.00376761 0.00377165 0.0037757 0.00377975 0.0037838 0.00378785 0.00379189 0.00379594 0.00379999 0.00380404 0.00380808 0.00381213 0.00381618 0.00382023 0.00382427 0.00382832 0.00383237 0.00383642 0.00384047 0.00384451 0.00384856 0.00385261 0.00385666 0.0038607 0.00386475 0.0038688 0.00387285 0.0038769 0.00388094 0.00388499 0.00388904 0.00389309 0.00389713 0.00390118 0.00390523 0.00390928 0.00391332 0.00391737 0.00392142 0.00392547 0.00392952 0.00393356 0.00393761 0.00394166 0.00394571 0.00394975 0.0039538 0.00395785 0.0039619 0.00396595 0.00396999 0.00397404 0.00397809 0.00398214 0.00398618 0.00399023 0.00399428 0.00399833 0.00400237 0.00400642 0.00401047 0.00401452 0.00401857 0.00402261 0.00402666 0.00403071 0.00403476 +-0.000826993 -0.000783946 -0.000712583 -0.000509095 1.65762E-05 0.000856428 0.0018173 0.00269696 0.00327963 0.00349514 0.00354144 0.00355203 0.00355705 0.00356125 0.00356532 0.00356938 0.00357344 0.0035775 0.00358156 0.00358561 0.00358967 0.00359373 0.00359779 0.00360184 0.0036059 0.00360996 0.00361402 0.00361807 0.00362213 0.00362619 0.00363025 0.0036343 0.00363836 0.00364242 0.00364647 0.00365053 0.00365459 0.00365865 0.0036627 0.00366676 0.00367082 0.00367488 0.00367893 0.00368299 0.00368705 0.00369111 0.00369516 0.00369922 0.00370328 0.00370734 0.00371139 0.00371545 0.00371951 0.00372357 0.00372762 0.00373168 0.00373574 0.00373979 0.00374385 0.00374791 0.00375197 0.00375602 0.00376008 0.00376414 0.0037682 0.00377225 0.00377631 0.00378037 0.00378443 0.00378848 0.00379254 0.0037966 0.00380066 0.00380471 0.00380877 0.00381283 0.00381689 0.00382094 0.003825 0.00382906 0.00383311 0.00383717 0.00384123 0.00384529 0.00384934 0.0038534 0.00385746 0.00386152 0.00386557 0.00386963 0.00387369 0.00387775 0.0038818 0.00388586 0.00388992 0.00389398 0.00389803 0.00390209 0.00390615 0.00391021 0.00391426 0.00391832 0.00392238 0.00392643 0.00393049 0.00393455 0.00393861 0.00394266 0.00394672 0.00395078 0.00395484 0.00395889 0.00396295 0.00396701 0.00397107 0.00397512 0.00397918 0.00398324 0.0039873 0.00399135 0.00399541 0.00399947 0.00400352 0.00400758 0.00401164 0.0040157 0.00401975 0.00402381 0.00402787 0.00403193 0.00403598 0.00404004 0.0040441 +-0.000829128 -0.000785956 -0.000714343 -0.000510167 1.66406E-05 0.000857551 0.00181951 0.00270076 0.00328571 0.0035028 0.00354951 0.00356019 0.00356522 0.00356943 0.00357352 0.00357759 0.00358166 0.00358572 0.00358979 0.00359386 0.00359792 0.00360199 0.00360606 0.00361013 0.00361419 0.00361826 0.00362233 0.00362639 0.00363046 0.00363453 0.00363859 0.00364266 0.00364673 0.0036508 0.00365486 0.00365893 0.003663 0.00366706 0.00367113 0.0036752 0.00367926 0.00368333 0.0036874 0.00369147 0.00369553 0.0036996 0.00370367 0.00370773 0.0037118 0.00371587 0.00371994 0.003724 0.00372807 0.00373214 0.0037362 0.00374027 0.00374434 0.0037484 0.00375247 0.00375654 0.00376061 0.00376467 0.00376874 0.00377281 0.00377687 0.00378094 0.00378501 0.00378908 0.00379314 0.00379721 0.00380128 0.00380534 0.00380941 0.00381348 0.00381754 0.00382161 0.00382568 0.00382975 0.00383381 0.00383788 0.00384195 0.00384601 0.00385008 0.00385415 0.00385822 0.00386228 0.00386635 0.00387042 0.00387448 0.00387855 0.00388262 0.00388668 0.00389075 0.00389482 0.00389889 0.00390295 0.00390702 0.00391109 0.00391515 0.00391922 0.00392329 0.00392735 0.00393142 0.00393549 0.00393956 0.00394362 0.00394769 0.00395176 0.00395582 0.00395989 0.00396396 0.00396803 0.00397209 0.00397616 0.00398023 0.00398429 0.00398836 0.00399243 0.00399649 0.00400056 0.00400463 0.0040087 0.00401276 0.00401683 0.0040209 0.00402496 0.00402903 0.0040331 0.00403717 0.00404123 0.0040453 0.00404937 0.00405343 +-0.000831263 -0.000787964 -0.000716103 -0.000511238 1.67051E-05 0.000858672 0.00182172 0.00270455 0.00329177 0.00351045 0.00355758 0.00356833 0.00357339 0.00357761 0.00358171 0.00358579 0.00358986 0.00359394 0.00359802 0.00360209 0.00360617 0.00361025 0.00361432 0.0036184 0.00362248 0.00362655 0.00363063 0.00363471 0.00363878 0.00364286 0.00364694 0.00365101 0.00365509 0.00365917 0.00366324 0.00366732 0.0036714 0.00367547 0.00367955 0.00368363 0.0036877 0.00369178 0.00369586 0.00369993 0.00370401 0.00370809 0.00371216 0.00371624 0.00372032 0.00372439 0.00372847 0.00373255 0.00373662 0.0037407 0.00374478 0.00374885 0.00375293 0.00375701 0.00376108 0.00376516 0.00376924 0.00377331 0.00377739 0.00378147 0.00378554 0.00378962 0.0037937 0.00379777 0.00380185 0.00380593 0.00381 0.00381408 0.00381816 0.00382223 0.00382631 0.00383039 0.00383446 0.00383854 0.00384262 0.00384669 0.00385077 0.00385485 0.00385892 0.003863 0.00386708 0.00387116 0.00387523 0.00387931 0.00388339 0.00388746 0.00389154 0.00389562 0.00389969 0.00390377 0.00390785 0.00391192 0.003916 0.00392008 0.00392415 0.00392823 0.00393231 0.00393638 0.00394046 0.00394454 0.00394861 0.00395269 0.00395677 0.00396084 0.00396492 0.003969 0.00397307 0.00397715 0.00398123 0.0039853 0.00398938 0.00399346 0.00399753 0.00400161 0.00400569 0.00400976 0.00401384 0.00401792 0.00402199 0.00402607 0.00403015 0.00403422 0.0040383 0.00404238 0.00404645 0.00405053 0.00405461 0.00405868 0.00406276 +-0.000833397 -0.000789972 -0.000717861 -0.000512307 1.67696E-05 0.00085979 0.00182392 0.00270833 0.00329782 0.00351808 0.00356564 0.00357647 0.00358155 0.00358578 0.00358989 0.00359398 0.00359806 0.00360215 0.00360623 0.00361032 0.00361441 0.00361849 0.00362258 0.00362667 0.00363075 0.00363484 0.00363893 0.00364301 0.0036471 0.00365118 0.00365527 0.00365936 0.00366344 0.00366753 0.00367162 0.0036757 0.00367979 0.00368388 0.00368796 0.00369205 0.00369613 0.00370022 0.00370431 0.00370839 0.00371248 0.00371657 0.00372065 0.00372474 0.00372883 0.00373291 0.003737 0.00374108 0.00374517 0.00374926 0.00375334 0.00375743 0.00376152 0.0037656 0.00376969 0.00377378 0.00377786 0.00378195 0.00378603 0.00379012 0.00379421 0.00379829 0.00380238 0.00380647 0.00381055 0.00381464 0.00381873 0.00382281 0.0038269 0.00383098 0.00383507 0.00383916 0.00384324 0.00384733 0.00385142 0.0038555 0.00385959 0.00386368 0.00386776 0.00387185 0.00387593 0.00388002 0.00388411 0.00388819 0.00389228 0.00389637 0.00390045 0.00390454 0.00390863 0.00391271 0.0039168 0.00392088 0.00392497 0.00392906 0.00393314 0.00393723 0.00394132 0.0039454 0.00394949 0.00395357 0.00395766 0.00396175 0.00396583 0.00396992 0.00397401 0.00397809 0.00398218 0.00398627 0.00399035 0.00399444 0.00399852 0.00400261 0.0040067 0.00401078 0.00401487 0.00401896 0.00402304 0.00402713 0.00403122 0.0040353 0.00403939 0.00404347 0.00404756 0.00405165 0.00405573 0.00405982 0.00406391 0.00406799 0.00407208 +-0.00083553 -0.00079198 -0.000719618 -0.000513375 1.68342E-05 0.000860904 0.00182611 0.00271209 0.00330385 0.00352571 0.0035737 0.0035846 0.0035897 0.00359394 0.00359806 0.00360216 0.00360625 0.00361035 0.00361445 0.00361854 0.00362264 0.00362673 0.00363083 0.00363493 0.00363902 0.00364312 0.00364721 0.00365131 0.00365541 0.0036595 0.0036636 0.00366769 0.00367179 0.00367589 0.00367998 0.00368408 0.00368817 0.00369227 0.00369637 0.00370046 0.00370456 0.00370865 0.00371275 0.00371685 0.00372094 0.00372504 0.00372913 0.00373323 0.00373733 0.00374142 0.00374552 0.00374961 0.00375371 0.00375781 0.0037619 0.003766 0.00377009 0.00377419 0.00377829 0.00378238 0.00378648 0.00379057 0.00379467 0.00379877 0.00380286 0.00380696 0.00381105 0.00381515 0.00381925 0.00382334 0.00382744 0.00383153 0.00383563 0.00383973 0.00384382 0.00384792 0.00385201 0.00385611 0.00386021 0.0038643 0.0038684 0.00387249 0.00387659 0.00388069 0.00388478 0.00388888 0.00389297 0.00389707 0.00390117 0.00390526 0.00390936 0.00391345 0.00391755 0.00392165 0.00392574 0.00392984 0.00393393 0.00393803 0.00394213 0.00394622 0.00395032 0.00395441 0.00395851 0.00396261 0.0039667 0.0039708 0.00397489 0.00397899 0.00398309 0.00398718 0.00399128 0.00399537 0.00399947 0.00400357 0.00400766 0.00401176 0.00401585 0.00401995 0.00402405 0.00402814 0.00403224 0.00403633 0.00404043 0.00404453 0.00404862 0.00405272 0.00405681 0.00406091 0.00406501 0.0040691 0.0040732 0.00407729 0.00408139 +-0.000837663 -0.000793986 -0.000721374 -0.000514441 1.68989E-05 0.000862017 0.0018283 0.00271584 0.00330987 0.00353332 0.00358174 0.00359273 0.00359785 0.0036021 0.00360623 0.00361033 0.00361444 0.00361855 0.00362265 0.00362676 0.00363086 0.00363497 0.00363907 0.00364318 0.00364729 0.00365139 0.0036555 0.0036596 0.00366371 0.00366781 0.00367192 0.00367603 0.00368013 0.00368424 0.00368834 0.00369245 0.00369655 0.00370066 0.00370476 0.00370887 0.00371298 0.00371708 0.00372119 0.00372529 0.0037294 0.0037335 0.00373761 0.00374172 0.00374582 0.00374993 0.00375403 0.00375814 0.00376224 0.00376635 0.00377045 0.00377456 0.00377867 0.00378277 0.00378688 0.00379098 0.00379509 0.00379919 0.0038033 0.00380741 0.00381151 0.00381562 0.00381972 0.00382383 0.00382793 0.00383204 0.00383614 0.00384025 0.00384436 0.00384846 0.00385257 0.00385667 0.00386078 0.00386488 0.00386899 0.0038731 0.0038772 0.00388131 0.00388541 0.00388952 0.00389362 0.00389773 0.00390183 0.00390594 0.00391005 0.00391415 0.00391826 0.00392236 0.00392647 0.00393057 0.00393468 0.00393879 0.00394289 0.003947 0.0039511 0.00395521 0.00395931 0.00396342 0.00396752 0.00397163 0.00397574 0.00397984 0.00398395 0.00398805 0.00399216 0.00399626 0.00400037 0.00400448 0.00400858 0.00401269 0.00401679 0.0040209 0.004025 0.00402911 0.00403321 0.00403732 0.00404143 0.00404553 0.00404964 0.00405374 0.00405785 0.00406195 0.00406606 0.00407017 0.00407427 0.00407838 0.00408248 0.00408659 0.00409069 +-0.000839795 -0.000795992 -0.000723129 -0.000515505 1.69636E-05 0.000863126 0.00183048 0.00271958 0.00331587 0.00354093 0.00358978 0.00360085 0.00360598 0.00361025 0.00361439 0.0036185 0.00362262 0.00362673 0.00363085 0.00363497 0.00363908 0.0036432 0.00364731 0.00365143 0.00365554 0.00365966 0.00366377 0.00366789 0.003672 0.00367612 0.00368023 0.00368435 0.00368846 0.00369258 0.00369669 0.00370081 0.00370492 0.00370904 0.00371316 0.00371727 0.00372139 0.0037255 0.00372962 0.00373373 0.00373785 0.00374196 0.00374608 0.00375019 0.00375431 0.00375842 0.00376254 0.00376665 0.00377077 0.00377488 0.003779 0.00378311 0.00378723 0.00379134 0.00379546 0.00379958 0.00380369 0.00380781 0.00381192 0.00381604 0.00382015 0.00382427 0.00382838 0.0038325 0.00383661 0.00384073 0.00384484 0.00384896 0.00385307 0.00385719 0.0038613 0.00386542 0.00386953 0.00387365 0.00387777 0.00388188 0.003886 0.00389011 0.00389423 0.00389834 0.00390246 0.00390657 0.00391069 0.0039148 0.00391892 0.00392303 0.00392715 0.00393126 0.00393538 0.00393949 0.00394361 0.00394772 0.00395184 0.00395595 0.00396007 0.00396419 0.0039683 0.00397242 0.00397653 0.00398065 0.00398476 0.00398888 0.00399299 0.00399711 0.00400122 0.00400534 0.00400945 0.00401357 0.00401768 0.0040218 0.00402591 0.00403003 0.00403414 0.00403826 0.00404238 0.00404649 0.00405061 0.00405472 0.00405884 0.00406295 0.00406707 0.00407118 0.0040753 0.00407941 0.00408353 0.00408764 0.00409176 0.00409587 0.00409999 +-0.000841926 -0.000797996 -0.000724882 -0.000516568 1.70284E-05 0.000864232 0.00183265 0.00272331 0.00332185 0.00354852 0.00359781 0.00360896 0.00361412 0.00361839 0.00362254 0.00362667 0.00363079 0.00363492 0.00363904 0.00364317 0.00364729 0.00365142 0.00365554 0.00365967 0.00366379 0.00366792 0.00367204 0.00367616 0.00368029 0.00368441 0.00368854 0.00369266 0.00369679 0.00370091 0.00370504 0.00370916 0.00371329 0.00371741 0.00372154 0.00372566 0.00372979 0.00373391 0.00373804 0.00374216 0.00374629 0.00375041 0.00375454 0.00375866 0.00376279 0.00376691 0.00377104 0.00377516 0.00377929 0.00378341 0.00378754 0.00379166 0.00379579 0.00379991 0.00380404 0.00380816 0.00381229 0.00381641 0.00382054 0.00382466 0.00382879 0.00383291 0.00383703 0.00384116 0.00384528 0.00384941 0.00385353 0.00385766 0.00386178 0.00386591 0.00387003 0.00387416 0.00387828 0.00388241 0.00388653 0.00389066 0.00389478 0.00389891 0.00390303 0.00390716 0.00391128 0.00391541 0.00391953 0.00392366 0.00392778 0.00393191 0.00393603 0.00394016 0.00394428 0.00394841 0.00395253 0.00395666 0.00396078 0.00396491 0.00396903 0.00397316 0.00397728 0.00398141 0.00398553 0.00398965 0.00399378 0.0039979 0.00400203 0.00400615 0.00401028 0.0040144 0.00401853 0.00402265 0.00402678 0.0040309 0.00403503 0.00403915 0.00404328 0.0040474 0.00405153 0.00405565 0.00405978 0.0040639 0.00406803 0.00407215 0.00407628 0.0040804 0.00408453 0.00408865 0.00409278 0.0040969 0.00410103 0.00410515 0.00410928 +-0.000844056 -0.0008 -0.000726635 -0.000517629 1.70932E-05 0.000865336 0.00183482 0.00272702 0.00332782 0.0035561 0.00360584 0.00361706 0.00362224 0.00362653 0.00363068 0.00363482 0.00363896 0.00364309 0.00364723 0.00365136 0.00365549 0.00365963 0.00366376 0.0036679 0.00367203 0.00367617 0.0036803 0.00368444 0.00368857 0.0036927 0.00369684 0.00370097 0.00370511 0.00370924 0.00371338 0.00371751 0.00372165 0.00372578 0.00372991 0.00373405 0.00373818 0.00374232 0.00374645 0.00375059 0.00375472 0.00375886 0.00376299 0.00376713 0.00377126 0.00377539 0.00377953 0.00378366 0.0037878 0.00379193 0.00379607 0.0038002 0.00380434 0.00380847 0.0038126 0.00381674 0.00382087 0.00382501 0.00382914 0.00383328 0.00383741 0.00384155 0.00384568 0.00384981 0.00385395 0.00385808 0.00386222 0.00386635 0.00387049 0.00387462 0.00387876 0.00388289 0.00388703 0.00389116 0.00389529 0.00389943 0.00390356 0.0039077 0.00391183 0.00391597 0.0039201 0.00392424 0.00392837 0.0039325 0.00393664 0.00394077 0.00394491 0.00394904 0.00395318 0.00395731 0.00396145 0.00396558 0.00396971 0.00397385 0.00397798 0.00398212 0.00398625 0.00399039 0.00399452 0.00399866 0.00400279 0.00400692 0.00401106 0.00401519 0.00401933 0.00402346 0.0040276 0.00403173 0.00403587 0.00404 0.00404414 0.00404827 0.0040524 0.00405654 0.00406067 0.00406481 0.00406894 0.00407308 0.00407721 0.00408135 0.00408548 0.00408961 0.00409375 0.00409788 0.00410202 0.00410615 0.00411029 0.00411442 0.00411856 +-0.000846186 -0.000802003 -0.000728386 -0.000518689 1.71581E-05 0.000866437 0.00183698 0.00273072 0.00333377 0.00356367 0.00361385 0.00362516 0.00363036 0.00363466 0.00363882 0.00364297 0.00364711 0.00365126 0.0036554 0.00365955 0.00366369 0.00366783 0.00367198 0.00367612 0.00368027 0.00368441 0.00368856 0.0036927 0.00369684 0.00370099 0.00370513 0.00370928 0.00371342 0.00371756 0.00372171 0.00372585 0.00373 0.00373414 0.00373828 0.00374243 0.00374657 0.00375072 0.00375486 0.003759 0.00376315 0.00376729 0.00377144 0.00377558 0.00377972 0.00378387 0.00378801 0.00379216 0.0037963 0.00380045 0.00380459 0.00380873 0.00381288 0.00381702 0.00382117 0.00382531 0.00382945 0.0038336 0.00383774 0.00384189 0.00384603 0.00385017 0.00385432 0.00385846 0.00386261 0.00386675 0.00387089 0.00387504 0.00387918 0.00388333 0.00388747 0.00389162 0.00389576 0.0038999 0.00390405 0.00390819 0.00391234 0.00391648 0.00392062 0.00392477 0.00392891 0.00393306 0.0039372 0.00394134 0.00394549 0.00394963 0.00395378 0.00395792 0.00396206 0.00396621 0.00397035 0.0039745 0.00397864 0.00398278 0.00398693 0.00399107 0.00399522 0.00399936 0.00400351 0.00400765 0.00401179 0.00401594 0.00402008 0.00402423 0.00402837 0.00403251 0.00403666 0.0040408 0.00404495 0.00404909 0.00405323 0.00405738 0.00406152 0.00406567 0.00406981 0.00407395 0.0040781 0.00408224 0.00408639 0.00409053 0.00409468 0.00409882 0.00410296 0.00410711 0.00411125 0.0041154 0.00411954 0.00412368 0.00412783 +-0.000848314 -0.000804006 -0.000730136 -0.000519747 1.7223E-05 0.000867535 0.00183913 0.00273441 0.0033397 0.00357123 0.00362186 0.00363325 0.00363847 0.00364278 0.00364695 0.00365111 0.00365527 0.00365942 0.00366357 0.00366773 0.00367188 0.00367603 0.00368019 0.00368434 0.00368849 0.00369265 0.0036968 0.00370096 0.00370511 0.00370926 0.00371342 0.00371757 0.00372172 0.00372588 0.00373003 0.00373419 0.00373834 0.00374249 0.00374665 0.0037508 0.00375495 0.00375911 0.00376326 0.00376741 0.00377157 0.00377572 0.00377988 0.00378403 0.00378818 0.00379234 0.00379649 0.00380064 0.0038048 0.00380895 0.00381311 0.00381726 0.00382141 0.00382557 0.00382972 0.00383387 0.00383803 0.00384218 0.00384633 0.00385049 0.00385464 0.0038588 0.00386295 0.0038671 0.00387126 0.00387541 0.00387956 0.00388372 0.00388787 0.00389203 0.00389618 0.00390033 0.00390449 0.00390864 0.00391279 0.00391695 0.0039211 0.00392525 0.00392941 0.00393356 0.00393772 0.00394187 0.00394602 0.00395018 0.00395433 0.00395848 0.00396264 0.00396679 0.00397094 0.0039751 0.00397925 0.00398341 0.00398756 0.00399171 0.00399587 0.00400002 0.00400417 0.00400833 0.00401248 0.00401664 0.00402079 0.00402494 0.0040291 0.00403325 0.0040374 0.00404156 0.00404571 0.00404986 0.00405402 0.00405817 0.00406233 0.00406648 0.00407063 0.00407479 0.00407894 0.00408309 0.00408725 0.0040914 0.00409556 0.00409971 0.00410386 0.00410802 0.00411217 0.00411632 0.00412048 0.00412463 0.00412878 0.00413294 0.00413709 +-0.000850442 -0.000806007 -0.000731885 -0.000520803 1.72881E-05 0.00086863 0.00184128 0.00273809 0.00334562 0.00357878 0.00362986 0.00364133 0.00364657 0.00365089 0.00365508 0.00365925 0.00366341 0.00366757 0.00367174 0.0036759 0.00368006 0.00368423 0.00368839 0.00369255 0.00369672 0.00370088 0.00370504 0.00370921 0.00371337 0.00371753 0.0037217 0.00372586 0.00373002 0.00373418 0.00373835 0.00374251 0.00374667 0.00375084 0.003755 0.00375916 0.00376333 0.00376749 0.00377165 0.00377582 0.00377998 0.00378414 0.00378831 0.00379247 0.00379663 0.0038008 0.00380496 0.00380912 0.00381329 0.00381745 0.00382161 0.00382578 0.00382994 0.0038341 0.00383827 0.00384243 0.00384659 0.00385076 0.00385492 0.00385908 0.00386325 0.00386741 0.00387157 0.00387574 0.0038799 0.00388406 0.00388823 0.00389239 0.00389655 0.00390072 0.00390488 0.00390904 0.00391321 0.00391737 0.00392153 0.0039257 0.00392986 0.00393402 0.00393819 0.00394235 0.00394651 0.00395067 0.00395484 0.003959 0.00396316 0.00396733 0.00397149 0.00397565 0.00397982 0.00398398 0.00398814 0.00399231 0.00399647 0.00400063 0.0040048 0.00400896 0.00401312 0.00401729 0.00402145 0.00402561 0.00402978 0.00403394 0.0040381 0.00404227 0.00404643 0.00405059 0.00405476 0.00405892 0.00406308 0.00406725 0.00407141 0.00407557 0.00407974 0.0040839 0.00408806 0.00409223 0.00409639 0.00410055 0.00410472 0.00410888 0.00411304 0.00411721 0.00412137 0.00412553 0.0041297 0.00413386 0.00413802 0.00414219 0.00414635 +-0.00085257 -0.000808008 -0.000733633 -0.000521858 1.73531E-05 0.000869723 0.00184342 0.00274176 0.00335152 0.00358632 0.00363785 0.00364941 0.00365467 0.003659 0.0036632 0.00366737 0.00367155 0.00367572 0.00367989 0.00368407 0.00368824 0.00369241 0.00369658 0.00370076 0.00370493 0.0037091 0.00371328 0.00371745 0.00372162 0.00372579 0.00372997 0.00373414 0.00373831 0.00374249 0.00374666 0.00375083 0.003755 0.00375918 0.00376335 0.00376752 0.0037717 0.00377587 0.00378004 0.00378421 0.00378839 0.00379256 0.00379673 0.00380091 0.00380508 0.00380925 0.00381342 0.0038176 0.00382177 0.00382594 0.00383012 0.00383429 0.00383846 0.00384263 0.00384681 0.00385098 0.00385515 0.00385932 0.0038635 0.00386767 0.00387184 0.00387602 0.00388019 0.00388436 0.00388853 0.00389271 0.00389688 0.00390105 0.00390523 0.0039094 0.00391357 0.00391774 0.00392192 0.00392609 0.00393026 0.00393444 0.00393861 0.00394278 0.00394695 0.00395113 0.0039553 0.00395947 0.00396365 0.00396782 0.00397199 0.00397616 0.00398034 0.00398451 0.00398868 0.00399286 0.00399703 0.0040012 0.00400537 0.00400955 0.00401372 0.00401789 0.00402207 0.00402624 0.00403041 0.00403458 0.00403876 0.00404293 0.0040471 0.00405128 0.00405545 0.00405962 0.00406379 0.00406797 0.00407214 0.00407631 0.00408049 0.00408466 0.00408883 0.004093 0.00409718 0.00410135 0.00410552 0.0041097 0.00411387 0.00411804 0.00412221 0.00412639 0.00413056 0.00413473 0.00413891 0.00414308 0.00414725 0.00415142 0.0041556 +-0.000854696 -0.000810008 -0.00073538 -0.000522911 1.74183E-05 0.000870813 0.00184556 0.00274541 0.0033574 0.00359385 0.00364584 0.00365748 0.00366276 0.0036671 0.00367131 0.00367549 0.00367968 0.00368386 0.00368804 0.00369222 0.00369641 0.00370059 0.00370477 0.00370895 0.00371314 0.00371732 0.0037215 0.00372568 0.00372987 0.00373405 0.00373823 0.00374241 0.0037466 0.00375078 0.00375496 0.00375914 0.00376333 0.00376751 0.00377169 0.00377587 0.00378006 0.00378424 0.00378842 0.0037926 0.00379679 0.00380097 0.00380515 0.00380933 0.00381351 0.0038177 0.00382188 0.00382606 0.00383024 0.00383443 0.00383861 0.00384279 0.00384697 0.00385116 0.00385534 0.00385952 0.0038637 0.00386789 0.00387207 0.00387625 0.00388043 0.00388462 0.0038888 0.00389298 0.00389716 0.00390135 0.00390553 0.00390971 0.00391389 0.00391808 0.00392226 0.00392644 0.00393062 0.00393481 0.00393899 0.00394317 0.00394735 0.00395153 0.00395572 0.0039599 0.00396408 0.00396826 0.00397245 0.00397663 0.00398081 0.00398499 0.00398918 0.00399336 0.00399754 0.00400172 0.00400591 0.00401009 0.00401427 0.00401845 0.00402264 0.00402682 0.004031 0.00403518 0.00403937 0.00404355 0.00404773 0.00405191 0.0040561 0.00406028 0.00406446 0.00406864 0.00407283 0.00407701 0.00408119 0.00408537 0.00408955 0.00409374 0.00409792 0.0041021 0.00410628 0.00411047 0.00411465 0.00411883 0.00412301 0.0041272 0.00413138 0.00413556 0.00413974 0.00414393 0.00414811 0.00415229 0.00415647 0.00416066 0.00416484 +-0.000856822 -0.000812007 -0.000737126 -0.000523963 1.74834E-05 0.0008719 0.00184769 0.00274905 0.00336327 0.00360136 0.00365382 0.00366554 0.00367084 0.0036752 0.00367941 0.00368361 0.0036878 0.00369199 0.00369618 0.00370038 0.00370457 0.00370876 0.00371295 0.00371714 0.00372134 0.00372553 0.00372972 0.00373391 0.0037381 0.0037423 0.00374649 0.00375068 0.00375487 0.00375906 0.00376326 0.00376745 0.00377164 0.00377583 0.00378002 0.00378422 0.00378841 0.0037926 0.00379679 0.00380098 0.00380518 0.00380937 0.00381356 0.00381775 0.00382194 0.00382614 0.00383033 0.00383452 0.00383871 0.0038429 0.0038471 0.00385129 0.00385548 0.00385967 0.00386386 0.00386806 0.00387225 0.00387644 0.00388063 0.00388482 0.00388902 0.00389321 0.0038974 0.00390159 0.00390578 0.00390998 0.00391417 0.00391836 0.00392255 0.00392674 0.00393094 0.00393513 0.00393932 0.00394351 0.0039477 0.0039519 0.00395609 0.00396028 0.00396447 0.00396866 0.00397286 0.00397705 0.00398124 0.00398543 0.00398962 0.00399382 0.00399801 0.0040022 0.00400639 0.00401058 0.00401478 0.00401897 0.00402316 0.00402735 0.00403154 0.00403574 0.00403993 0.00404412 0.00404831 0.0040525 0.0040567 0.00406089 0.00406508 0.00406927 0.00407346 0.00407766 0.00408185 0.00408604 0.00409023 0.00409442 0.00409862 0.00410281 0.004107 0.00411119 0.00411538 0.00411958 0.00412377 0.00412796 0.00413215 0.00413634 0.00414054 0.00414473 0.00414892 0.00415311 0.0041573 0.0041615 0.00416569 0.00416988 0.00417407 +-0.000858947 -0.000814005 -0.00073887 -0.000525012 1.75487E-05 0.000872984 0.00184981 0.00275268 0.00336912 0.00360887 0.00366179 0.0036736 0.00367892 0.00368328 0.00368751 0.00369172 0.00369592 0.00370012 0.00370432 0.00370852 0.00371272 0.00371693 0.00372113 0.00372533 0.00372953 0.00373373 0.00373793 0.00374213 0.00374634 0.00375054 0.00375474 0.00375894 0.00376314 0.00376734 0.00377155 0.00377575 0.00377995 0.00378415 0.00378835 0.00379255 0.00379675 0.00380096 0.00380516 0.00380936 0.00381356 0.00381776 0.00382196 0.00382617 0.00383037 0.00383457 0.00383877 0.00384297 0.00384717 0.00385137 0.00385558 0.00385978 0.00386398 0.00386818 0.00387238 0.00387658 0.00388079 0.00388499 0.00388919 0.00389339 0.00389759 0.00390179 0.003906 0.0039102 0.0039144 0.0039186 0.0039228 0.003927 0.0039312 0.00393541 0.00393961 0.00394381 0.00394801 0.00395221 0.00395641 0.00396062 0.00396482 0.00396902 0.00397322 0.00397742 0.00398162 0.00398582 0.00399003 0.00399423 0.00399843 0.00400263 0.00400683 0.00401103 0.00401524 0.00401944 0.00402364 0.00402784 0.00403204 0.00403624 0.00404044 0.00404465 0.00404885 0.00405305 0.00405725 0.00406145 0.00406565 0.00406986 0.00407406 0.00407826 0.00408246 0.00408666 0.00409086 0.00409507 0.00409927 0.00410347 0.00410767 0.00411187 0.00411607 0.00412027 0.00412448 0.00412868 0.00413288 0.00413708 0.00414128 0.00414548 0.00414969 0.00415389 0.00415809 0.00416229 0.00416649 0.00417069 0.00417489 0.0041791 0.0041833 +-0.000861071 -0.000816003 -0.000740614 -0.000526061 1.7614E-05 0.000874066 0.00185192 0.0027563 0.00337496 0.00361636 0.00366975 0.00368165 0.00368699 0.00369137 0.0036956 0.00369982 0.00370403 0.00370824 0.00371245 0.00371666 0.00372087 0.00372508 0.00372929 0.00373351 0.00373772 0.00374193 0.00374614 0.00375035 0.00375456 0.00375877 0.00376298 0.00376719 0.00377141 0.00377562 0.00377983 0.00378404 0.00378825 0.00379246 0.00379667 0.00380088 0.00380509 0.00380931 0.00381352 0.00381773 0.00382194 0.00382615 0.00383036 0.00383457 0.00383878 0.00384299 0.0038472 0.00385142 0.00385563 0.00385984 0.00386405 0.00386826 0.00387247 0.00387668 0.00388089 0.0038851 0.00388932 0.00389353 0.00389774 0.00390195 0.00390616 0.00391037 0.00391458 0.00391879 0.003923 0.00392722 0.00393143 0.00393564 0.00393985 0.00394406 0.00394827 0.00395248 0.00395669 0.0039609 0.00396512 0.00396933 0.00397354 0.00397775 0.00398196 0.00398617 0.00399038 0.00399459 0.0039988 0.00400302 0.00400723 0.00401144 0.00401565 0.00401986 0.00402407 0.00402828 0.00403249 0.0040367 0.00404092 0.00404513 0.00404934 0.00405355 0.00405776 0.00406197 0.00406618 0.00407039 0.0040746 0.00407882 0.00408303 0.00408724 0.00409145 0.00409566 0.00409987 0.00410408 0.00410829 0.0041125 0.00411672 0.00412093 0.00412514 0.00412935 0.00413356 0.00413777 0.00414198 0.00414619 0.0041504 0.00415462 0.00415883 0.00416304 0.00416725 0.00417146 0.00417567 0.00417988 0.00418409 0.0041883 0.00419252 +-0.000863195 -0.000817999 -0.000742356 -0.000527107 1.76794E-05 0.000875145 0.00185403 0.0027599 0.00338078 0.00362385 0.0036777 0.00368969 0.00369505 0.00369944 0.00370369 0.00370791 0.00371213 0.00371635 0.00372057 0.00372479 0.00372901 0.00373323 0.00373745 0.00374168 0.0037459 0.00375012 0.00375434 0.00375856 0.00376278 0.003767 0.00377122 0.00377544 0.00377966 0.00378388 0.0037881 0.00379232 0.00379654 0.00380076 0.00380498 0.00380921 0.00381343 0.00381765 0.00382187 0.00382609 0.00383031 0.00383453 0.00383875 0.00384297 0.00384719 0.00385141 0.00385563 0.00385985 0.00386407 0.00386829 0.00387252 0.00387674 0.00388096 0.00388518 0.0038894 0.00389362 0.00389784 0.00390206 0.00390628 0.0039105 0.00391472 0.00391894 0.00392316 0.00392738 0.0039316 0.00393583 0.00394005 0.00394427 0.00394849 0.00395271 0.00395693 0.00396115 0.00396537 0.00396959 0.00397381 0.00397803 0.00398225 0.00398647 0.00399069 0.00399491 0.00399913 0.00400336 0.00400758 0.0040118 0.00401602 0.00402024 0.00402446 0.00402868 0.0040329 0.00403712 0.00404134 0.00404556 0.00404978 0.004054 0.00405822 0.00406244 0.00406667 0.00407089 0.00407511 0.00407933 0.00408355 0.00408777 0.00409199 0.00409621 0.00410043 0.00410465 0.00410887 0.00411309 0.00411731 0.00412153 0.00412575 0.00412998 0.0041342 0.00413842 0.00414264 0.00414686 0.00415108 0.0041553 0.00415952 0.00416374 0.00416796 0.00417218 0.0041764 0.00418062 0.00418484 0.00418906 0.00419329 0.00419751 0.00420173 +-0.000865317 -0.000819995 -0.000744097 -0.000528153 1.77448E-05 0.000876221 0.00185614 0.00276349 0.00338658 0.00363132 0.00368565 0.00369772 0.00370311 0.00370751 0.00371176 0.003716 0.00372023 0.00372446 0.00372869 0.00373292 0.00373715 0.00374138 0.00374561 0.00374984 0.00375407 0.0037583 0.00376253 0.00376676 0.00377099 0.00377522 0.00377945 0.00378368 0.00378791 0.00379214 0.00379637 0.0038006 0.00380483 0.00380906 0.00381329 0.00381752 0.00382175 0.00382598 0.00383021 0.00383444 0.00383867 0.0038429 0.00384713 0.00385136 0.00385559 0.00385982 0.00386405 0.00386828 0.00387251 0.00387674 0.00388097 0.0038852 0.00388943 0.00389366 0.00389789 0.00390213 0.00390636 0.00391059 0.00391482 0.00391905 0.00392328 0.00392751 0.00393174 0.00393597 0.0039402 0.00394443 0.00394866 0.00395289 0.00395712 0.00396135 0.00396558 0.00396981 0.00397404 0.00397827 0.0039825 0.00398673 0.00399096 0.00399519 0.00399942 0.00400365 0.00400788 0.00401211 0.00401634 0.00402057 0.0040248 0.00402903 0.00403326 0.00403749 0.00404172 0.00404595 0.00405018 0.00405441 0.00405864 0.00406287 0.0040671 0.00407133 0.00407556 0.00407979 0.00408402 0.00408825 0.00409248 0.00409671 0.00410094 0.00410517 0.0041094 0.00411363 0.00411786 0.0041221 0.00412633 0.00413056 0.00413479 0.00413902 0.00414325 0.00414748 0.00415171 0.00415594 0.00416017 0.0041644 0.00416863 0.00417286 0.00417709 0.00418132 0.00418555 0.00418978 0.00419401 0.00419824 0.00420247 0.0042067 0.00421093 +-0.000867439 -0.00082199 -0.000745837 -0.000529196 1.78103E-05 0.000877295 0.00185823 0.00276708 0.00339237 0.00363878 0.00369359 0.00370575 0.00371116 0.00371557 0.00371983 0.00372408 0.00372832 0.00373256 0.0037368 0.00374104 0.00374528 0.00374952 0.00375375 0.00375799 0.00376223 0.00376647 0.00377071 0.00377495 0.00377919 0.00378343 0.00378767 0.00379191 0.00379615 0.00380039 0.00380463 0.00380887 0.00381311 0.00381735 0.00382159 0.00382583 0.00383007 0.00383431 0.00383855 0.00384279 0.00384703 0.00385127 0.00385551 0.00385975 0.00386399 0.00386823 0.00387247 0.00387671 0.00388095 0.00388519 0.00388943 0.00389367 0.00389791 0.00390215 0.00390638 0.00391062 0.00391486 0.0039191 0.00392334 0.00392758 0.00393182 0.00393606 0.0039403 0.00394454 0.00394878 0.00395302 0.00395726 0.0039615 0.00396574 0.00396998 0.00397422 0.00397846 0.0039827 0.00398694 0.00399118 0.00399542 0.00399966 0.0040039 0.00400814 0.00401238 0.00401662 0.00402086 0.0040251 0.00402934 0.00403358 0.00403782 0.00404206 0.0040463 0.00405054 0.00405478 0.00405901 0.00406325 0.00406749 0.00407173 0.00407597 0.00408021 0.00408445 0.00408869 0.00409293 0.00409717 0.00410141 0.00410565 0.00410989 0.00411413 0.00411837 0.00412261 0.00412685 0.00413109 0.00413533 0.00413957 0.00414381 0.00414805 0.00415229 0.00415653 0.00416077 0.00416501 0.00416925 0.00417349 0.00417773 0.00418197 0.00418621 0.00419045 0.00419469 0.00419893 0.00420317 0.00420741 0.00421165 0.00421588 0.00422012 +-0.000869561 -0.000823985 -0.000747575 -0.000530238 1.78758E-05 0.000878366 0.00186033 0.00277065 0.00339814 0.00364623 0.00370153 0.00371377 0.0037192 0.00372362 0.0037279 0.00373215 0.0037364 0.00374065 0.0037449 0.00374915 0.0037534 0.00375765 0.00376189 0.00376614 0.00377039 0.00377464 0.00377889 0.00378314 0.00378739 0.00379164 0.00379589 0.00380014 0.00380439 0.00380864 0.00381289 0.00381713 0.00382138 0.00382563 0.00382988 0.00383413 0.00383838 0.00384263 0.00384688 0.00385113 0.00385538 0.00385963 0.00386388 0.00386813 0.00387238 0.00387662 0.00388087 0.00388512 0.00388937 0.00389362 0.00389787 0.00390212 0.00390637 0.00391062 0.00391487 0.00391912 0.00392337 0.00392762 0.00393186 0.00393611 0.00394036 0.00394461 0.00394886 0.00395311 0.00395736 0.00396161 0.00396586 0.00397011 0.00397436 0.00397861 0.00398286 0.0039871 0.00399135 0.0039956 0.00399985 0.0040041 0.00400835 0.0040126 0.00401685 0.0040211 0.00402535 0.0040296 0.00403385 0.0040381 0.00404235 0.00404659 0.00405084 0.00405509 0.00405934 0.00406359 0.00406784 0.00407209 0.00407634 0.00408059 0.00408484 0.00408909 0.00409334 0.00409759 0.00410183 0.00410608 0.00411033 0.00411458 0.00411883 0.00412308 0.00412733 0.00413158 0.00413583 0.00414008 0.00414433 0.00414858 0.00415283 0.00415707 0.00416132 0.00416557 0.00416982 0.00417407 0.00417832 0.00418257 0.00418682 0.00419107 0.00419532 0.00419957 0.00420382 0.00420807 0.00421232 0.00421656 0.00422081 0.00422506 0.00422931 +-0.000871681 -0.000825978 -0.000749313 -0.000531278 1.79414E-05 0.000879435 0.00186241 0.0027742 0.0034039 0.00365367 0.00370945 0.00372179 0.00372724 0.00373167 0.00373595 0.00374022 0.00374448 0.00374873 0.00375299 0.00375725 0.00376151 0.00376577 0.00377003 0.00377429 0.00377855 0.0037828 0.00378706 0.00379132 0.00379558 0.00379984 0.0038041 0.00380836 0.00381262 0.00381687 0.00382113 0.00382539 0.00382965 0.00383391 0.00383817 0.00384243 0.00384669 0.00385094 0.0038552 0.00385946 0.00386372 0.00386798 0.00387224 0.0038765 0.00388076 0.00388501 0.00388927 0.00389353 0.00389779 0.00390205 0.00390631 0.00391057 0.00391483 0.00391908 0.00392334 0.0039276 0.00393186 0.00393612 0.00394038 0.00394464 0.0039489 0.00395315 0.00395741 0.00396167 0.00396593 0.00397019 0.00397445 0.00397871 0.00398297 0.00398723 0.00399148 0.00399574 0.004 0.00400426 0.00400852 0.00401278 0.00401704 0.0040213 0.00402555 0.00402981 0.00403407 0.00403833 0.00404259 0.00404685 0.00405111 0.00405537 0.00405962 0.00406388 0.00406814 0.0040724 0.00407666 0.00408092 0.00408518 0.00408944 0.00409369 0.00409795 0.00410221 0.00410647 0.00411073 0.00411499 0.00411925 0.00412351 0.00412776 0.00413202 0.00413628 0.00414054 0.0041448 0.00414906 0.00415332 0.00415758 0.00416183 0.00416609 0.00417035 0.00417461 0.00417887 0.00418313 0.00418739 0.00419165 0.0041959 0.00420016 0.00420442 0.00420868 0.00421294 0.0042172 0.00422146 0.00422572 0.00422997 0.00423423 0.00423849 +-0.000873801 -0.000827971 -0.000751049 -0.000532317 1.8007E-05 0.0008805 0.00186449 0.00277775 0.00340964 0.0036611 0.00371737 0.0037298 0.00373527 0.00373971 0.003744 0.00374828 0.00375254 0.00375681 0.00376108 0.00376535 0.00376962 0.00377389 0.00377815 0.00378242 0.00378669 0.00379096 0.00379523 0.0037995 0.00380376 0.00380803 0.0038123 0.00381657 0.00382084 0.00382511 0.00382937 0.00383364 0.00383791 0.00384218 0.00384645 0.00385072 0.00385498 0.00385925 0.00386352 0.00386779 0.00387206 0.00387632 0.00388059 0.00388486 0.00388913 0.0038934 0.00389767 0.00390193 0.0039062 0.00391047 0.00391474 0.00391901 0.00392328 0.00392754 0.00393181 0.00393608 0.00394035 0.00394462 0.00394889 0.00395315 0.00395742 0.00396169 0.00396596 0.00397023 0.0039745 0.00397876 0.00398303 0.0039873 0.00399157 0.00399584 0.0040001 0.00400437 0.00400864 0.00401291 0.00401718 0.00402145 0.00402571 0.00402998 0.00403425 0.00403852 0.00404279 0.00404706 0.00405132 0.00405559 0.00405986 0.00406413 0.0040684 0.00407267 0.00407693 0.0040812 0.00408547 0.00408974 0.00409401 0.00409828 0.00410254 0.00410681 0.00411108 0.00411535 0.00411962 0.00412388 0.00412815 0.00413242 0.00413669 0.00414096 0.00414523 0.00414949 0.00415376 0.00415803 0.0041623 0.00416657 0.00417084 0.0041751 0.00417937 0.00418364 0.00418791 0.00419218 0.00419645 0.00420071 0.00420498 0.00420925 0.00421352 0.00421779 0.00422206 0.00422632 0.00423059 0.00423486 0.00423913 0.0042434 0.00424766 +-0.00087592 -0.000829963 -0.000752785 -0.000533354 1.80727E-05 0.000881564 0.00186656 0.00278129 0.00341536 0.00366852 0.00372528 0.0037378 0.00374329 0.00374774 0.00375205 0.00375633 0.00376061 0.00376489 0.00376916 0.00377344 0.00377772 0.003782 0.00378627 0.00379055 0.00379483 0.00379911 0.00380339 0.00380766 0.00381194 0.00381622 0.0038205 0.00382477 0.00382905 0.00383333 0.00383761 0.00384189 0.00384616 0.00385044 0.00385472 0.003859 0.00386327 0.00386755 0.00387183 0.00387611 0.00388039 0.00388466 0.00388894 0.00389322 0.0038975 0.00390177 0.00390605 0.00391033 0.00391461 0.00391889 0.00392316 0.00392744 0.00393172 0.003936 0.00394027 0.00394455 0.00394883 0.00395311 0.00395739 0.00396166 0.00396594 0.00397022 0.0039745 0.00397877 0.00398305 0.00398733 0.00399161 0.00399589 0.00400016 0.00400444 0.00400872 0.004013 0.00401727 0.00402155 0.00402583 0.00403011 0.00403439 0.00403866 0.00404294 0.00404722 0.0040515 0.00405577 0.00406005 0.00406433 0.00406861 0.00407289 0.00407716 0.00408144 0.00408572 0.00409 0.00409427 0.00409855 0.00410283 0.00410711 0.00411139 0.00411566 0.00411994 0.00412422 0.0041285 0.00413277 0.00413705 0.00414133 0.00414561 0.00414989 0.00415416 0.00415844 0.00416272 0.004167 0.00417127 0.00417555 0.00417983 0.00418411 0.00418839 0.00419266 0.00419694 0.00420122 0.0042055 0.00420977 0.00421405 0.00421833 0.00422261 0.00422689 0.00423116 0.00423544 0.00423972 0.004244 0.00424827 0.00425255 0.00425683 +-0.000878038 -0.000831954 -0.000754519 -0.00053439 1.81385E-05 0.000882624 0.00186863 0.00278481 0.00342107 0.00367593 0.00373318 0.00374579 0.00375131 0.00375577 0.00376008 0.00376438 0.00376866 0.00377295 0.00377724 0.00378153 0.00378581 0.0037901 0.00379439 0.00379867 0.00380296 0.00380725 0.00381154 0.00381582 0.00382011 0.0038244 0.00382869 0.00383297 0.00383726 0.00384155 0.00384583 0.00385012 0.00385441 0.0038587 0.00386298 0.00386727 0.00387156 0.00387585 0.00388013 0.00388442 0.00388871 0.00389299 0.00389728 0.00390157 0.00390586 0.00391014 0.00391443 0.00391872 0.00392301 0.00392729 0.00393158 0.00393587 0.00394015 0.00394444 0.00394873 0.00395302 0.0039573 0.00396159 0.00396588 0.00397017 0.00397445 0.00397874 0.00398303 0.00398731 0.0039916 0.00399589 0.00400018 0.00400446 0.00400875 0.00401304 0.00401733 0.00402161 0.0040259 0.00403019 0.00403447 0.00403876 0.00404305 0.00404734 0.00405162 0.00405591 0.0040602 0.00406449 0.00406877 0.00407306 0.00407735 0.00408163 0.00408592 0.00409021 0.0040945 0.00409878 0.00410307 0.00410736 0.00411165 0.00411593 0.00412022 0.00412451 0.00412879 0.00413308 0.00413737 0.00414166 0.00414594 0.00415023 0.00415452 0.00415881 0.00416309 0.00416738 0.00417167 0.00417595 0.00418024 0.00418453 0.00418882 0.0041931 0.00419739 0.00420168 0.00420597 0.00421025 0.00421454 0.00421883 0.00422311 0.0042274 0.00423169 0.00423598 0.00424026 0.00424455 0.00424884 0.00425313 0.00425741 0.0042617 0.00426599 +-0.000880156 -0.000833944 -0.000756252 -0.000535424 1.82043E-05 0.000883682 0.00187069 0.00278832 0.00342676 0.00368332 0.00374108 0.00375378 0.00375931 0.00376379 0.00376811 0.00377242 0.00377671 0.00378101 0.00378531 0.0037896 0.0037939 0.0037982 0.00380249 0.00380679 0.00381109 0.00381538 0.00381968 0.00382398 0.00382827 0.00383257 0.00383687 0.00384116 0.00384546 0.00384976 0.00385405 0.00385835 0.00386265 0.00386694 0.00387124 0.00387554 0.00387984 0.00388413 0.00388843 0.00389273 0.00389702 0.00390132 0.00390562 0.00390991 0.00391421 0.00391851 0.0039228 0.0039271 0.0039314 0.00393569 0.00393999 0.00394429 0.00394858 0.00395288 0.00395718 0.00396147 0.00396577 0.00397007 0.00397436 0.00397866 0.00398296 0.00398725 0.00399155 0.00399585 0.00400014 0.00400444 0.00400874 0.00401303 0.00401733 0.00402163 0.00402593 0.00403022 0.00403452 0.00403882 0.00404311 0.00404741 0.00405171 0.004056 0.0040603 0.0040646 0.00406889 0.00407319 0.00407749 0.00408178 0.00408608 0.00409038 0.00409467 0.00409897 0.00410327 0.00410756 0.00411186 0.00411616 0.00412045 0.00412475 0.00412905 0.00413334 0.00413764 0.00414194 0.00414623 0.00415053 0.00415483 0.00415913 0.00416342 0.00416772 0.00417202 0.00417631 0.00418061 0.00418491 0.0041892 0.0041935 0.0041978 0.00420209 0.00420639 0.00421069 0.00421498 0.00421928 0.00422358 0.00422787 0.00423217 0.00423647 0.00424076 0.00424506 0.00424936 0.00425365 0.00425795 0.00426225 0.00426654 0.00427084 0.00427514 +-0.000882272 -0.000835933 -0.000757984 -0.000536456 1.82702E-05 0.000884738 0.00187275 0.00279182 0.00343244 0.00369071 0.00374896 0.00376176 0.00376732 0.00377181 0.00377614 0.00378045 0.00378476 0.00378906 0.00379337 0.00379767 0.00380198 0.00380629 0.00381059 0.0038149 0.00381921 0.00382351 0.00382782 0.00383212 0.00383643 0.00384074 0.00384504 0.00384935 0.00385366 0.00385796 0.00386227 0.00386657 0.00387088 0.00387519 0.00387949 0.0038838 0.00388811 0.00389241 0.00389672 0.00390102 0.00390533 0.00390964 0.00391394 0.00391825 0.00392256 0.00392686 0.00393117 0.00393547 0.00393978 0.00394409 0.00394839 0.0039527 0.00395701 0.00396131 0.00396562 0.00396992 0.00397423 0.00397854 0.00398284 0.00398715 0.00399146 0.00399576 0.00400007 0.00400437 0.00400868 0.00401299 0.00401729 0.0040216 0.00402591 0.00403021 0.00403452 0.00403882 0.00404313 0.00404744 0.00405174 0.00405605 0.00406036 0.00406466 0.00406897 0.00407327 0.00407758 0.00408189 0.00408619 0.0040905 0.00409481 0.00409911 0.00410342 0.00410772 0.00411203 0.00411634 0.00412064 0.00412495 0.00412926 0.00413356 0.00413787 0.00414217 0.00414648 0.00415079 0.00415509 0.0041594 0.00416371 0.00416801 0.00417232 0.00417662 0.00418093 0.00418524 0.00418954 0.00419385 0.00419816 0.00420246 0.00420677 0.00421107 0.00421538 0.00421969 0.00422399 0.0042283 0.00423261 0.00423691 0.00424122 0.00424552 0.00424983 0.00425414 0.00425844 0.00426275 0.00426706 0.00427136 0.00427567 0.00427997 0.00428428 +-0.000884389 -0.000837922 -0.000759714 -0.000537487 1.83361E-05 0.000885791 0.0018748 0.00279531 0.0034381 0.00369808 0.00375684 0.00376973 0.00377531 0.00377981 0.00378416 0.00378848 0.00379279 0.00379711 0.00380142 0.00380574 0.00381005 0.00381437 0.00381869 0.003823 0.00382732 0.00383163 0.00383595 0.00384026 0.00384458 0.0038489 0.00385321 0.00385753 0.00386184 0.00386616 0.00387047 0.00387479 0.00387911 0.00388342 0.00388774 0.00389205 0.00389637 0.00390068 0.003905 0.00390932 0.00391363 0.00391795 0.00392226 0.00392658 0.00393089 0.00393521 0.00393953 0.00394384 0.00394816 0.00395247 0.00395679 0.0039611 0.00396542 0.00396974 0.00397405 0.00397837 0.00398268 0.003987 0.00399131 0.00399563 0.00399995 0.00400426 0.00400858 0.00401289 0.00401721 0.00402152 0.00402584 0.00403016 0.00403447 0.00403879 0.0040431 0.00404742 0.00405174 0.00405605 0.00406037 0.00406468 0.004069 0.00407331 0.00407763 0.00408195 0.00408626 0.00409058 0.00409489 0.00409921 0.00410352 0.00410784 0.00411216 0.00411647 0.00412079 0.0041251 0.00412942 0.00413373 0.00413805 0.00414237 0.00414668 0.004151 0.00415531 0.00415963 0.00416394 0.00416826 0.00417258 0.00417689 0.00418121 0.00418552 0.00418984 0.00419415 0.00419847 0.00420279 0.0042071 0.00421142 0.00421573 0.00422005 0.00422436 0.00422868 0.004233 0.00423731 0.00424163 0.00424594 0.00425026 0.00425457 0.00425889 0.00426321 0.00426752 0.00427184 0.00427615 0.00428047 0.00428478 0.0042891 0.00429342 +-0.000886504 -0.00083991 -0.000761444 -0.000538516 1.84021E-05 0.000886841 0.00187684 0.00279879 0.00344375 0.00370545 0.00376472 0.0037777 0.0037833 0.00378781 0.00379217 0.0037965 0.00380082 0.00380515 0.00380947 0.0038138 0.00381812 0.00382245 0.00382677 0.0038311 0.00383542 0.00383975 0.00384407 0.0038484 0.00385272 0.00385705 0.00386137 0.0038657 0.00387002 0.00387435 0.00387867 0.003883 0.00388732 0.00389165 0.00389598 0.0039003 0.00390463 0.00390895 0.00391328 0.0039176 0.00392193 0.00392625 0.00393058 0.0039349 0.00393923 0.00394355 0.00394788 0.0039522 0.00395653 0.00396085 0.00396518 0.0039695 0.00397383 0.00397815 0.00398248 0.0039868 0.00399113 0.00399545 0.00399978 0.00400411 0.00400843 0.00401276 0.00401708 0.00402141 0.00402573 0.00403006 0.00403438 0.00403871 0.00404303 0.00404736 0.00405168 0.00405601 0.00406033 0.00406466 0.00406898 0.00407331 0.00407763 0.00408196 0.00408628 0.00409061 0.00409493 0.00409926 0.00410358 0.00410791 0.00411223 0.00411656 0.00412089 0.00412521 0.00412954 0.00413386 0.00413819 0.00414251 0.00414684 0.00415116 0.00415549 0.00415981 0.00416414 0.00416846 0.00417279 0.00417711 0.00418144 0.00418576 0.00419009 0.00419441 0.00419874 0.00420306 0.00420739 0.00421171 0.00421604 0.00422036 0.00422469 0.00422902 0.00423334 0.00423767 0.00424199 0.00424632 0.00425064 0.00425497 0.00425929 0.00426362 0.00426794 0.00427227 0.00427659 0.00428092 0.00428524 0.00428957 0.00429389 0.00429822 0.00430254 +-0.000888618 -0.000841897 -0.000763172 -0.000539544 1.84681E-05 0.000887889 0.00187888 0.00280226 0.00344937 0.0037128 0.00377258 0.00378566 0.00379129 0.00379581 0.00380017 0.00380451 0.00380884 0.00381318 0.00381751 0.00382185 0.00382618 0.00383052 0.00383485 0.00383919 0.00384352 0.00384786 0.00385219 0.00385652 0.00386086 0.00386519 0.00386953 0.00387386 0.0038782 0.00388253 0.00388687 0.0038912 0.00389554 0.00389987 0.00390421 0.00390854 0.00391288 0.00391721 0.00392154 0.00392588 0.00393021 0.00393455 0.00393888 0.00394322 0.00394755 0.00395189 0.00395622 0.00396056 0.00396489 0.00396923 0.00397356 0.0039779 0.00398223 0.00398656 0.0039909 0.00399523 0.00399957 0.0040039 0.00400824 0.00401257 0.00401691 0.00402124 0.00402558 0.00402991 0.00403425 0.00403858 0.00404292 0.00404725 0.00405158 0.00405592 0.00406025 0.00406459 0.00406892 0.00407326 0.00407759 0.00408193 0.00408626 0.0040906 0.00409493 0.00409927 0.0041036 0.00410793 0.00411227 0.0041166 0.00412094 0.00412527 0.00412961 0.00413394 0.00413828 0.00414261 0.00414695 0.00415128 0.00415562 0.00415995 0.00416429 0.00416862 0.00417295 0.00417729 0.00418162 0.00418596 0.00419029 0.00419463 0.00419896 0.0042033 0.00420763 0.00421197 0.0042163 0.00422064 0.00422497 0.00422931 0.00423364 0.00423797 0.00424231 0.00424664 0.00425098 0.00425531 0.00425965 0.00426398 0.00426832 0.00427265 0.00427699 0.00428132 0.00428566 0.00428999 0.00429433 0.00429866 0.00430299 0.00430733 0.00431166 +-0.000890732 -0.000843883 -0.0007649 -0.00054057 1.85342E-05 0.000888934 0.00188091 0.00280571 0.00345499 0.00372014 0.00378044 0.00379362 0.00379926 0.0038038 0.00380817 0.00381252 0.00381686 0.0038212 0.00382555 0.00382989 0.00383424 0.00383858 0.00384292 0.00384727 0.00385161 0.00385596 0.0038603 0.00386465 0.00386899 0.00387333 0.00387768 0.00388202 0.00388637 0.00389071 0.00389505 0.0038994 0.00390374 0.00390809 0.00391243 0.00391677 0.00392112 0.00392546 0.00392981 0.00393415 0.0039385 0.00394284 0.00394718 0.00395153 0.00395587 0.00396022 0.00396456 0.0039689 0.00397325 0.00397759 0.00398194 0.00398628 0.00399062 0.00399497 0.00399931 0.00400366 0.004008 0.00401234 0.00401669 0.00402103 0.00402538 0.00402972 0.00403407 0.00403841 0.00404275 0.0040471 0.00405144 0.00405579 0.00406013 0.00406447 0.00406882 0.00407316 0.00407751 0.00408185 0.00408619 0.00409054 0.00409488 0.00409923 0.00410357 0.00410792 0.00411226 0.0041166 0.00412095 0.00412529 0.00412964 0.00413398 0.00413832 0.00414267 0.00414701 0.00415136 0.0041557 0.00416004 0.00416439 0.00416873 0.00417308 0.00417742 0.00418177 0.00418611 0.00419045 0.0041948 0.00419914 0.00420349 0.00420783 0.00421217 0.00421652 0.00422086 0.00422521 0.00422955 0.00423389 0.00423824 0.00424258 0.00424693 0.00425127 0.00425562 0.00425996 0.0042643 0.00426865 0.00427299 0.00427734 0.00428168 0.00428602 0.00429037 0.00429471 0.00429906 0.0043034 0.00430774 0.00431209 0.00431643 0.00432078 +-0.000892845 -0.000845868 -0.000766626 -0.000541594 1.86003E-05 0.000889977 0.00188294 0.00280916 0.00346059 0.00372747 0.00378829 0.00380156 0.00380723 0.00381178 0.00381616 0.00382052 0.00382487 0.00382922 0.00383358 0.00383793 0.00384228 0.00384664 0.00385099 0.00385534 0.0038597 0.00386405 0.00386841 0.00387276 0.00387711 0.00388147 0.00388582 0.00389017 0.00389453 0.00389888 0.00390323 0.00390759 0.00391194 0.00391629 0.00392065 0.003925 0.00392935 0.00393371 0.00393806 0.00394242 0.00394677 0.00395112 0.00395548 0.00395983 0.00396418 0.00396854 0.00397289 0.00397724 0.0039816 0.00398595 0.0039903 0.00399466 0.00399901 0.00400337 0.00400772 0.00401207 0.00401643 0.00402078 0.00402513 0.00402949 0.00403384 0.00403819 0.00404255 0.0040469 0.00405125 0.00405561 0.00405996 0.00406432 0.00406867 0.00407302 0.00407738 0.00408173 0.00408608 0.00409044 0.00409479 0.00409914 0.0041035 0.00410785 0.0041122 0.00411656 0.00412091 0.00412527 0.00412962 0.00413397 0.00413833 0.00414268 0.00414703 0.00415139 0.00415574 0.00416009 0.00416445 0.0041688 0.00417315 0.00417751 0.00418186 0.00418621 0.00419057 0.00419492 0.00419928 0.00420363 0.00420798 0.00421234 0.00421669 0.00422104 0.0042254 0.00422975 0.0042341 0.00423846 0.00424281 0.00424716 0.00425152 0.00425587 0.00426023 0.00426458 0.00426893 0.00427329 0.00427764 0.00428199 0.00428635 0.0042907 0.00429505 0.00429941 0.00430376 0.00430811 0.00431247 0.00431682 0.00432118 0.00432553 0.00432988 +-0.000894957 -0.000847853 -0.000768351 -0.000542617 1.86665E-05 0.000891017 0.00188496 0.00281259 0.00346617 0.00373479 0.00379613 0.0038095 0.00381519 0.00381975 0.00382414 0.00382851 0.00383287 0.00383724 0.0038416 0.00384596 0.00385032 0.00385469 0.00385905 0.00386341 0.00386778 0.00387214 0.0038765 0.00388087 0.00388523 0.00388959 0.00389395 0.00389832 0.00390268 0.00390704 0.00391141 0.00391577 0.00392013 0.0039245 0.00392886 0.00393322 0.00393758 0.00394195 0.00394631 0.00395067 0.00395504 0.0039594 0.00396376 0.00396813 0.00397249 0.00397685 0.00398121 0.00398558 0.00398994 0.0039943 0.00399867 0.00400303 0.00400739 0.00401176 0.00401612 0.00402048 0.00402484 0.00402921 0.00403357 0.00403793 0.0040423 0.00404666 0.00405102 0.00405539 0.00405975 0.00406411 0.00406847 0.00407284 0.0040772 0.00408156 0.00408593 0.00409029 0.00409465 0.00409902 0.00410338 0.00410774 0.0041121 0.00411647 0.00412083 0.00412519 0.00412956 0.00413392 0.00413828 0.00414265 0.00414701 0.00415137 0.00415573 0.0041601 0.00416446 0.00416882 0.00417319 0.00417755 0.00418191 0.00418628 0.00419064 0.004195 0.00419936 0.00420373 0.00420809 0.00421245 0.00421682 0.00422118 0.00422554 0.00422991 0.00423427 0.00423863 0.00424299 0.00424736 0.00425172 0.00425608 0.00426045 0.00426481 0.00426917 0.00427354 0.0042779 0.00428226 0.00428662 0.00429099 0.00429535 0.00429971 0.00430408 0.00430844 0.0043128 0.00431717 0.00432153 0.00432589 0.00433025 0.00433462 0.00433898 +-0.000897069 -0.000849837 -0.000770075 -0.000543639 1.87328E-05 0.000892055 0.00188697 0.00281602 0.00347173 0.0037421 0.00380397 0.00381744 0.00382315 0.00382772 0.00383212 0.0038365 0.00384087 0.00384524 0.00384961 0.00385399 0.00385836 0.00386273 0.0038671 0.00387148 0.00387585 0.00388022 0.00388459 0.00388897 0.00389334 0.00389771 0.00390208 0.00390646 0.00391083 0.0039152 0.00391957 0.00392395 0.00392832 0.00393269 0.00393706 0.00394144 0.00394581 0.00395018 0.00395455 0.00395892 0.0039633 0.00396767 0.00397204 0.00397641 0.00398079 0.00398516 0.00398953 0.0039939 0.00399828 0.00400265 0.00400702 0.00401139 0.00401577 0.00402014 0.00402451 0.00402888 0.00403326 0.00403763 0.004042 0.00404637 0.00405075 0.00405512 0.00405949 0.00406386 0.00406824 0.00407261 0.00407698 0.00408135 0.00408573 0.0040901 0.00409447 0.00409884 0.00410322 0.00410759 0.00411196 0.00411633 0.0041207 0.00412508 0.00412945 0.00413382 0.00413819 0.00414257 0.00414694 0.00415131 0.00415568 0.00416006 0.00416443 0.0041688 0.00417317 0.00417755 0.00418192 0.00418629 0.00419066 0.00419504 0.00419941 0.00420378 0.00420815 0.00421253 0.0042169 0.00422127 0.00422564 0.00423002 0.00423439 0.00423876 0.00424313 0.00424751 0.00425188 0.00425625 0.00426062 0.004265 0.00426937 0.00427374 0.00427811 0.00428248 0.00428686 0.00429123 0.0042956 0.00429997 0.00430435 0.00430872 0.00431309 0.00431746 0.00432184 0.00432621 0.00433058 0.00433495 0.00433933 0.0043437 0.00434807 +-0.00089918 -0.00085182 -0.000771797 -0.000544658 1.87991E-05 0.00089309 0.00188898 0.00281943 0.00347728 0.0037494 0.0038118 0.00382536 0.0038311 0.00383568 0.00384009 0.00384448 0.00384886 0.00385324 0.00385762 0.003862 0.00386639 0.00387077 0.00387515 0.00387953 0.00388391 0.0038883 0.00389268 0.00389706 0.00390144 0.00390582 0.00391021 0.00391459 0.00391897 0.00392335 0.00392773 0.00393211 0.0039365 0.00394088 0.00394526 0.00394964 0.00395402 0.00395841 0.00396279 0.00396717 0.00397155 0.00397593 0.00398031 0.0039847 0.00398908 0.00399346 0.00399784 0.00400222 0.00400661 0.00401099 0.00401537 0.00401975 0.00402413 0.00402852 0.0040329 0.00403728 0.00404166 0.00404604 0.00405042 0.00405481 0.00405919 0.00406357 0.00406795 0.00407233 0.00407672 0.0040811 0.00408548 0.00408986 0.00409424 0.00409863 0.00410301 0.00410739 0.00411177 0.00411615 0.00412053 0.00412492 0.0041293 0.00413368 0.00413806 0.00414244 0.00414683 0.00415121 0.00415559 0.00415997 0.00416435 0.00416873 0.00417312 0.0041775 0.00418188 0.00418626 0.00419064 0.00419503 0.00419941 0.00420379 0.00420817 0.00421255 0.00421694 0.00422132 0.0042257 0.00423008 0.00423446 0.00423884 0.00424323 0.00424761 0.00425199 0.00425637 0.00426075 0.00426514 0.00426952 0.0042739 0.00427828 0.00428266 0.00428705 0.00429143 0.00429581 0.00430019 0.00430457 0.00430895 0.00431334 0.00431772 0.0043221 0.00432648 0.00433086 0.00433525 0.00433963 0.00434401 0.00434839 0.00435277 0.00435715 +-0.00090129 -0.000853802 -0.000773519 -0.000545677 1.88655E-05 0.000894123 0.00189098 0.00282283 0.00348282 0.00375668 0.00381962 0.00383329 0.00383904 0.00384363 0.00384806 0.00385245 0.00385684 0.00386123 0.00386563 0.00387002 0.00387441 0.0038788 0.00388319 0.00388758 0.00389197 0.00389636 0.00390076 0.00390515 0.00390954 0.00391393 0.00391832 0.00392271 0.0039271 0.00393149 0.00393589 0.00394028 0.00394467 0.00394906 0.00395345 0.00395784 0.00396223 0.00396662 0.00397102 0.00397541 0.0039798 0.00398419 0.00398858 0.00399297 0.00399736 0.00400175 0.00400615 0.00401054 0.00401493 0.00401932 0.00402371 0.0040281 0.00403249 0.00403689 0.00404128 0.00404567 0.00405006 0.00405445 0.00405884 0.00406323 0.00406762 0.00407202 0.00407641 0.0040808 0.00408519 0.00408958 0.00409397 0.00409836 0.00410275 0.00410715 0.00411154 0.00411593 0.00412032 0.00412471 0.0041291 0.00413349 0.00413788 0.00414228 0.00414667 0.00415106 0.00415545 0.00415984 0.00416423 0.00416862 0.00417301 0.00417741 0.0041818 0.00418619 0.00419058 0.00419497 0.00419936 0.00420375 0.00420814 0.00421254 0.00421693 0.00422132 0.00422571 0.0042301 0.00423449 0.00423888 0.00424328 0.00424767 0.00425206 0.00425645 0.00426084 0.00426523 0.00426962 0.00427401 0.00427841 0.0042828 0.00428719 0.00429158 0.00429597 0.00430036 0.00430475 0.00430914 0.00431354 0.00431793 0.00432232 0.00432671 0.0043311 0.00433549 0.00433988 0.00434427 0.00434867 0.00435306 0.00435745 0.00436184 0.00436623 +-0.000903399 -0.000855784 -0.000775239 -0.000546693 1.89319E-05 0.000895153 0.00189298 0.00282622 0.00348834 0.00376396 0.00382743 0.0038412 0.00384698 0.00385158 0.00385601 0.00386042 0.00386482 0.00386922 0.00387362 0.00387802 0.00388242 0.00388682 0.00389122 0.00389562 0.00390003 0.00390443 0.00390883 0.00391323 0.00391763 0.00392203 0.00392643 0.00393083 0.00393523 0.00393963 0.00394403 0.00394843 0.00395283 0.00395723 0.00396163 0.00396604 0.00397044 0.00397484 0.00397924 0.00398364 0.00398804 0.00399244 0.00399684 0.00400124 0.00400564 0.00401004 0.00401444 0.00401884 0.00402324 0.00402765 0.00403205 0.00403645 0.00404085 0.00404525 0.00404965 0.00405405 0.00405845 0.00406285 0.00406725 0.00407165 0.00407605 0.00408045 0.00408485 0.00408925 0.00409366 0.00409806 0.00410246 0.00410686 0.00411126 0.00411566 0.00412006 0.00412446 0.00412886 0.00413326 0.00413766 0.00414206 0.00414646 0.00415086 0.00415527 0.00415967 0.00416407 0.00416847 0.00417287 0.00417727 0.00418167 0.00418607 0.00419047 0.00419487 0.00419927 0.00420367 0.00420807 0.00421247 0.00421687 0.00422128 0.00422568 0.00423008 0.00423448 0.00423888 0.00424328 0.00424768 0.00425208 0.00425648 0.00426088 0.00426528 0.00426968 0.00427408 0.00427848 0.00428289 0.00428729 0.00429169 0.00429609 0.00430049 0.00430489 0.00430929 0.00431369 0.00431809 0.00432249 0.00432689 0.00433129 0.00433569 0.00434009 0.0043445 0.0043489 0.0043533 0.0043577 0.0043621 0.0043665 0.0043709 0.0043753 +-0.000905508 -0.000857764 -0.000776959 -0.000547708 1.89983E-05 0.000896181 0.00189497 0.0028296 0.00349384 0.00377122 0.00383524 0.00384911 0.00385491 0.00385953 0.00386396 0.00386838 0.00387279 0.0038772 0.00388161 0.00388602 0.00389043 0.00389484 0.00389925 0.00390366 0.00390807 0.00391248 0.00391689 0.0039213 0.00392571 0.00393012 0.00393453 0.00393894 0.00394335 0.00394776 0.00395217 0.00395658 0.00396099 0.0039654 0.00396981 0.00397422 0.00397863 0.00398304 0.00398745 0.00399186 0.00399627 0.00400068 0.00400509 0.0040095 0.00401391 0.00401832 0.00402273 0.00402714 0.00403155 0.00403596 0.00404037 0.00404478 0.00404919 0.0040536 0.00405801 0.00406242 0.00406683 0.00407124 0.00407565 0.00408006 0.00408447 0.00408888 0.0040933 0.00409771 0.00410212 0.00410653 0.00411094 0.00411535 0.00411976 0.00412417 0.00412858 0.00413299 0.0041374 0.00414181 0.00414622 0.00415063 0.00415504 0.00415945 0.00416386 0.00416827 0.00417268 0.00417709 0.0041815 0.00418591 0.00419032 0.00419473 0.00419914 0.00420355 0.00420796 0.00421237 0.00421678 0.00422119 0.0042256 0.00423001 0.00423442 0.00423883 0.00424324 0.00424765 0.00425206 0.00425647 0.00426088 0.00426529 0.0042697 0.00427411 0.00427852 0.00428293 0.00428734 0.00429175 0.00429616 0.00430057 0.00430498 0.00430939 0.0043138 0.00431821 0.00432262 0.00432703 0.00433144 0.00433585 0.00434026 0.00434467 0.00434908 0.00435349 0.0043579 0.00436231 0.00436672 0.00437113 0.00437554 0.00437995 0.00438436 +-0.000907616 -0.000859744 -0.000778677 -0.000548722 1.90649E-05 0.000897207 0.00189696 0.00283297 0.00349933 0.00377848 0.00384304 0.00385701 0.00386284 0.00386746 0.00387191 0.00387633 0.00388075 0.00388517 0.00388959 0.00389401 0.00389843 0.00390285 0.00390727 0.00391169 0.00391611 0.00392053 0.00392495 0.00392937 0.00393379 0.00393821 0.00394263 0.00394705 0.00395147 0.00395589 0.00396031 0.00396472 0.00396914 0.00397356 0.00397798 0.0039824 0.00398682 0.00399124 0.00399566 0.00400008 0.0040045 0.00400892 0.00401334 0.00401776 0.00402218 0.0040266 0.00403102 0.00403544 0.00403986 0.00404428 0.0040487 0.00405311 0.00405753 0.00406195 0.00406637 0.00407079 0.00407521 0.00407963 0.00408405 0.00408847 0.00409289 0.00409731 0.00410173 0.00410615 0.00411057 0.00411499 0.00411941 0.00412383 0.00412825 0.00413267 0.00413708 0.0041415 0.00414592 0.00415034 0.00415476 0.00415918 0.0041636 0.00416802 0.00417244 0.00417686 0.00418128 0.0041857 0.00419012 0.00419454 0.00419896 0.00420338 0.0042078 0.00421222 0.00421664 0.00422106 0.00422547 0.00422989 0.00423431 0.00423873 0.00424315 0.00424757 0.00425199 0.00425641 0.00426083 0.00426525 0.00426967 0.00427409 0.00427851 0.00428293 0.00428735 0.00429177 0.00429619 0.00430061 0.00430503 0.00430945 0.00431386 0.00431828 0.0043227 0.00432712 0.00433154 0.00433596 0.00434038 0.0043448 0.00434922 0.00435364 0.00435806 0.00436248 0.0043669 0.00437132 0.00437574 0.00438016 0.00438458 0.004389 0.00439342 +-0.000909723 -0.000861723 -0.000780394 -0.000549734 1.91314E-05 0.00089823 0.00189894 0.00283632 0.00350481 0.00378572 0.00385083 0.0038649 0.00387075 0.00387539 0.00387985 0.00388428 0.00388871 0.00389314 0.00389757 0.003902 0.00390643 0.00391086 0.00391529 0.00391971 0.00392414 0.00392857 0.003933 0.00393743 0.00394186 0.00394629 0.00395072 0.00395515 0.00395957 0.003964 0.00396843 0.00397286 0.00397729 0.00398172 0.00398615 0.00399058 0.00399501 0.00399943 0.00400386 0.00400829 0.00401272 0.00401715 0.00402158 0.00402601 0.00403044 0.00403487 0.00403929 0.00404372 0.00404815 0.00405258 0.00405701 0.00406144 0.00406587 0.0040703 0.00407473 0.00407915 0.00408358 0.00408801 0.00409244 0.00409687 0.0041013 0.00410573 0.00411016 0.00411459 0.00411901 0.00412344 0.00412787 0.0041323 0.00413673 0.00414116 0.00414559 0.00415002 0.00415445 0.00415887 0.0041633 0.00416773 0.00417216 0.00417659 0.00418102 0.00418545 0.00418988 0.00419431 0.00419873 0.00420316 0.00420759 0.00421202 0.00421645 0.00422088 0.00422531 0.00422974 0.00423417 0.00423859 0.00424302 0.00424745 0.00425188 0.00425631 0.00426074 0.00426517 0.0042696 0.00427403 0.00427845 0.00428288 0.00428731 0.00429174 0.00429617 0.0043006 0.00430503 0.00430946 0.00431389 0.00431831 0.00432274 0.00432717 0.0043316 0.00433603 0.00434046 0.00434489 0.00434932 0.00435375 0.00435817 0.0043626 0.00436703 0.00437146 0.00437589 0.00438032 0.00438475 0.00438918 0.00439361 0.00439803 0.00440246 +-0.000911829 -0.000863702 -0.00078211 -0.000550745 1.91981E-05 0.00089925 0.00190092 0.00283967 0.00351026 0.00379295 0.00385862 0.00387279 0.00387866 0.00388331 0.00388778 0.00389222 0.00389666 0.0039011 0.00390554 0.00390998 0.00391442 0.00391885 0.00392329 0.00392773 0.00393217 0.00393661 0.00394105 0.00394548 0.00394992 0.00395436 0.0039588 0.00396324 0.00396768 0.00397211 0.00397655 0.00398099 0.00398543 0.00398987 0.0039943 0.00399874 0.00400318 0.00400762 0.00401206 0.0040165 0.00402093 0.00402537 0.00402981 0.00403425 0.00403869 0.00404313 0.00404756 0.004052 0.00405644 0.00406088 0.00406532 0.00406976 0.00407419 0.00407863 0.00408307 0.00408751 0.00409195 0.00409639 0.00410082 0.00410526 0.0041097 0.00411414 0.00411858 0.00412301 0.00412745 0.00413189 0.00413633 0.00414077 0.00414521 0.00414964 0.00415408 0.00415852 0.00416296 0.0041674 0.00417184 0.00417627 0.00418071 0.00418515 0.00418959 0.00419403 0.00419847 0.0042029 0.00420734 0.00421178 0.00421622 0.00422066 0.0042251 0.00422953 0.00423397 0.00423841 0.00424285 0.00424729 0.00425172 0.00425616 0.0042606 0.00426504 0.00426948 0.00427392 0.00427835 0.00428279 0.00428723 0.00429167 0.00429611 0.00430055 0.00430498 0.00430942 0.00431386 0.0043183 0.00432274 0.00432718 0.00433161 0.00433605 0.00434049 0.00434493 0.00434937 0.00435381 0.00435824 0.00436268 0.00436712 0.00437156 0.004376 0.00438043 0.00438487 0.00438931 0.00439375 0.00439819 0.00440263 0.00440706 0.0044115 +-0.000913935 -0.000865679 -0.000783824 -0.000551753 1.92648E-05 0.000900268 0.00190288 0.00284301 0.00351571 0.00380017 0.00386639 0.00388067 0.00388657 0.00389123 0.00389571 0.00390016 0.00390461 0.00390906 0.0039135 0.00391795 0.0039224 0.00392685 0.00393129 0.00393574 0.00394019 0.00394464 0.00394908 0.00395353 0.00395798 0.00396243 0.00396687 0.00397132 0.00397577 0.00398022 0.00398467 0.00398911 0.00399356 0.00399801 0.00400246 0.0040069 0.00401135 0.0040158 0.00402025 0.00402469 0.00402914 0.00403359 0.00403804 0.00404248 0.00404693 0.00405138 0.00405583 0.00406028 0.00406472 0.00406917 0.00407362 0.00407807 0.00408251 0.00408696 0.00409141 0.00409586 0.0041003 0.00410475 0.0041092 0.00411365 0.00411809 0.00412254 0.00412699 0.00413144 0.00413589 0.00414033 0.00414478 0.00414923 0.00415368 0.00415812 0.00416257 0.00416702 0.00417147 0.00417591 0.00418036 0.00418481 0.00418926 0.00419371 0.00419815 0.0042026 0.00420705 0.0042115 0.00421594 0.00422039 0.00422484 0.00422929 0.00423373 0.00423818 0.00424263 0.00424708 0.00425152 0.00425597 0.00426042 0.00426487 0.00426932 0.00427376 0.00427821 0.00428266 0.00428711 0.00429155 0.004296 0.00430045 0.0043049 0.00430934 0.00431379 0.00431824 0.00432269 0.00432713 0.00433158 0.00433603 0.00434048 0.00434493 0.00434937 0.00435382 0.00435827 0.00436272 0.00436716 0.00437161 0.00437606 0.00438051 0.00438495 0.0043894 0.00439385 0.0043983 0.00440274 0.00440719 0.00441164 0.00441609 0.00442054 +-0.00091604 -0.000867656 -0.000785538 -0.000552761 1.93315E-05 0.000901284 0.00190485 0.00284634 0.00352113 0.00380738 0.00387416 0.00388855 0.00389447 0.00389914 0.00390363 0.00390809 0.00391255 0.003917 0.00392146 0.00392592 0.00393037 0.00393483 0.00393929 0.00394374 0.0039482 0.00395266 0.00395712 0.00396157 0.00396603 0.00397049 0.00397494 0.0039794 0.00398386 0.00398832 0.00399277 0.00399723 0.00400169 0.00400614 0.0040106 0.00401506 0.00401951 0.00402397 0.00402843 0.00403289 0.00403734 0.0040418 0.00404626 0.00405071 0.00405517 0.00405963 0.00406408 0.00406854 0.004073 0.00407746 0.00408191 0.00408637 0.00409083 0.00409528 0.00409974 0.0041042 0.00410865 0.00411311 0.00411757 0.00412203 0.00412648 0.00413094 0.0041354 0.00413985 0.00414431 0.00414877 0.00415323 0.00415768 0.00416214 0.0041666 0.00417105 0.00417551 0.00417997 0.00418442 0.00418888 0.00419334 0.0041978 0.00420225 0.00420671 0.00421117 0.00421562 0.00422008 0.00422454 0.00422899 0.00423345 0.00423791 0.00424237 0.00424682 0.00425128 0.00425574 0.00426019 0.00426465 0.00426911 0.00427356 0.00427802 0.00428248 0.00428694 0.00429139 0.00429585 0.00430031 0.00430476 0.00430922 0.00431368 0.00431814 0.00432259 0.00432705 0.00433151 0.00433596 0.00434042 0.00434488 0.00434933 0.00435379 0.00435825 0.00436271 0.00436716 0.00437162 0.00437608 0.00438053 0.00438499 0.00438945 0.0043939 0.00439836 0.00440282 0.00440728 0.00441173 0.00441619 0.00442065 0.0044251 0.00442956 +-0.000918144 -0.000869632 -0.00078725 -0.000553767 1.93983E-05 0.000902298 0.00190681 0.00284965 0.00352654 0.00381458 0.00388193 0.00389641 0.00390236 0.00390704 0.00391154 0.00391601 0.00392048 0.00392494 0.00392941 0.00393388 0.00393834 0.00394281 0.00394728 0.00395174 0.00395621 0.00396068 0.00396514 0.00396961 0.00397407 0.00397854 0.00398301 0.00398747 0.00399194 0.00399641 0.00400087 0.00400534 0.00400981 0.00401427 0.00401874 0.0040232 0.00402767 0.00403214 0.0040366 0.00404107 0.00404554 0.00405 0.00405447 0.00405894 0.0040634 0.00406787 0.00407233 0.0040768 0.00408127 0.00408573 0.0040902 0.00409467 0.00409913 0.0041036 0.00410807 0.00411253 0.004117 0.00412147 0.00412593 0.0041304 0.00413486 0.00413933 0.0041438 0.00414826 0.00415273 0.0041572 0.00416166 0.00416613 0.0041706 0.00417506 0.00417953 0.00418399 0.00418846 0.00419293 0.00419739 0.00420186 0.00420633 0.00421079 0.00421526 0.00421973 0.00422419 0.00422866 0.00423313 0.00423759 0.00424206 0.00424652 0.00425099 0.00425546 0.00425992 0.00426439 0.00426886 0.00427332 0.00427779 0.00428226 0.00428672 0.00429119 0.00429565 0.00430012 0.00430459 0.00430905 0.00431352 0.00431799 0.00432245 0.00432692 0.00433139 0.00433585 0.00434032 0.00434478 0.00434925 0.00435372 0.00435818 0.00436265 0.00436712 0.00437158 0.00437605 0.00438052 0.00438498 0.00438945 0.00439392 0.00439838 0.00440285 0.00440731 0.00441178 0.00441625 0.00442071 0.00442518 0.00442965 0.00443411 0.00443858 +-0.000920248 -0.000871607 -0.000788961 -0.000554771 1.94651E-05 0.000903309 0.00190876 0.00285296 0.00353194 0.00382177 0.00388968 0.00390428 0.00391025 0.00391494 0.00391945 0.00392393 0.0039284 0.00393288 0.00393735 0.00394183 0.00394631 0.00395078 0.00395526 0.00395973 0.00396421 0.00396868 0.00397316 0.00397764 0.00398211 0.00398659 0.00399106 0.00399554 0.00400002 0.00400449 0.00400897 0.00401344 0.00401792 0.00402239 0.00402687 0.00403135 0.00403582 0.0040403 0.00404477 0.00404925 0.00405372 0.0040582 0.00406268 0.00406715 0.00407163 0.0040761 0.00408058 0.00408505 0.00408953 0.00409401 0.00409848 0.00410296 0.00410743 0.00411191 0.00411638 0.00412086 0.00412534 0.00412981 0.00413429 0.00413876 0.00414324 0.00414771 0.00415219 0.00415667 0.00416114 0.00416562 0.00417009 0.00417457 0.00417905 0.00418352 0.004188 0.00419247 0.00419695 0.00420142 0.0042059 0.00421038 0.00421485 0.00421933 0.0042238 0.00422828 0.00423275 0.00423723 0.00424171 0.00424618 0.00425066 0.00425513 0.00425961 0.00426408 0.00426856 0.00427304 0.00427751 0.00428199 0.00428646 0.00429094 0.00429541 0.00429989 0.00430437 0.00430884 0.00431332 0.00431779 0.00432227 0.00432674 0.00433122 0.0043357 0.00434017 0.00434465 0.00434912 0.0043536 0.00435808 0.00436255 0.00436703 0.0043715 0.00437598 0.00438045 0.00438493 0.00438941 0.00439388 0.00439836 0.00440283 0.00440731 0.00441178 0.00441626 0.00442074 0.00442521 0.00442969 0.00443416 0.00443864 0.00444311 0.00444759 +-0.00092235 -0.000873581 -0.000790672 -0.000555774 1.9532E-05 0.000904317 0.00191071 0.00285625 0.00353732 0.00382894 0.00389743 0.00391213 0.00391812 0.00392283 0.00392735 0.00393184 0.00393632 0.00394081 0.00394529 0.00394978 0.00395426 0.00395875 0.00396323 0.00396772 0.0039722 0.00397669 0.00398117 0.00398566 0.00399014 0.00399463 0.00399911 0.0040036 0.00400808 0.00401257 0.00401705 0.00402154 0.00402602 0.00403051 0.00403499 0.00403948 0.00404396 0.00404845 0.00405293 0.00405742 0.00406191 0.00406639 0.00407088 0.00407536 0.00407985 0.00408433 0.00408882 0.0040933 0.00409779 0.00410227 0.00410676 0.00411124 0.00411573 0.00412021 0.0041247 0.00412918 0.00413367 0.00413815 0.00414264 0.00414712 0.00415161 0.00415609 0.00416058 0.00416506 0.00416955 0.00417403 0.00417852 0.004183 0.00418749 0.00419197 0.00419646 0.00420094 0.00420543 0.00420991 0.0042144 0.00421888 0.00422337 0.00422785 0.00423234 0.00423682 0.00424131 0.00424579 0.00425028 0.00425476 0.00425925 0.00426373 0.00426822 0.0042727 0.00427719 0.00428168 0.00428616 0.00429065 0.00429513 0.00429962 0.0043041 0.00430859 0.00431307 0.00431756 0.00432204 0.00432653 0.00433101 0.0043355 0.00433998 0.00434447 0.00434895 0.00435344 0.00435792 0.00436241 0.00436689 0.00437138 0.00437586 0.00438035 0.00438483 0.00438932 0.0043938 0.00439829 0.00440277 0.00440726 0.00441174 0.00441623 0.00442071 0.0044252 0.00442968 0.00443417 0.00443865 0.00444314 0.00444762 0.00445211 0.00445659 +-0.000924452 -0.000875555 -0.000792381 -0.000556775 1.9599E-05 0.000905323 0.00191265 0.00285954 0.00354269 0.00383611 0.00390517 0.00391998 0.003926 0.00393071 0.00393524 0.00393974 0.00394423 0.00394873 0.00395322 0.00395772 0.00396221 0.00396671 0.0039712 0.0039757 0.00398019 0.00398469 0.00398918 0.00399367 0.00399817 0.00400266 0.00400716 0.00401165 0.00401615 0.00402064 0.00402514 0.00402963 0.00403412 0.00403862 0.00404311 0.00404761 0.0040521 0.0040566 0.00406109 0.00406559 0.00407008 0.00407457 0.00407907 0.00408356 0.00408806 0.00409255 0.00409705 0.00410154 0.00410604 0.00411053 0.00411502 0.00411952 0.00412401 0.00412851 0.004133 0.0041375 0.00414199 0.00414649 0.00415098 0.00415547 0.00415997 0.00416446 0.00416896 0.00417345 0.00417795 0.00418244 0.00418694 0.00419143 0.00419592 0.00420042 0.00420491 0.00420941 0.0042139 0.0042184 0.00422289 0.00422739 0.00423188 0.00423637 0.00424087 0.00424536 0.00424986 0.00425435 0.00425885 0.00426334 0.00426784 0.00427233 0.00427682 0.00428132 0.00428581 0.00429031 0.0042948 0.0042993 0.00430379 0.00430829 0.00431278 0.00431727 0.00432177 0.00432626 0.00433076 0.00433525 0.00433975 0.00434424 0.00434874 0.00435323 0.00435772 0.00436222 0.00436671 0.00437121 0.0043757 0.0043802 0.00438469 0.00438919 0.00439368 0.00439817 0.00440267 0.00440716 0.00441166 0.00441615 0.00442065 0.00442514 0.00442964 0.00443413 0.00443862 0.00444312 0.00444761 0.00445211 0.0044566 0.0044611 0.00446559 +-0.000926554 -0.000877527 -0.000794088 -0.000557775 1.9666E-05 0.000906327 0.00191459 0.00286281 0.00354804 0.00384326 0.0039129 0.00392782 0.00393386 0.00393859 0.00394313 0.00394764 0.00395214 0.00395665 0.00396115 0.00396565 0.00397016 0.00397466 0.00397916 0.00398367 0.00398817 0.00399268 0.00399718 0.00400168 0.00400619 0.00401069 0.00401519 0.0040197 0.0040242 0.00402871 0.00403321 0.00403771 0.00404222 0.00404672 0.00405122 0.00405573 0.00406023 0.00406474 0.00406924 0.00407374 0.00407825 0.00408275 0.00408725 0.00409176 0.00409626 0.00410077 0.00410527 0.00410977 0.00411428 0.00411878 0.00412329 0.00412779 0.00413229 0.0041368 0.0041413 0.0041458 0.00415031 0.00415481 0.00415932 0.00416382 0.00416832 0.00417283 0.00417733 0.00418183 0.00418634 0.00419084 0.00419535 0.00419985 0.00420435 0.00420886 0.00421336 0.00421786 0.00422237 0.00422687 0.00423138 0.00423588 0.00424038 0.00424489 0.00424939 0.0042539 0.0042584 0.0042629 0.00426741 0.00427191 0.00427641 0.00428092 0.00428542 0.00428993 0.00429443 0.00429893 0.00430344 0.00430794 0.00431244 0.00431695 0.00432145 0.00432596 0.00433046 0.00433496 0.00433947 0.00434397 0.00434847 0.00435298 0.00435748 0.00436199 0.00436649 0.00437099 0.0043755 0.00438 0.0043845 0.00438901 0.00439351 0.00439802 0.00440252 0.00440702 0.00441153 0.00441603 0.00442054 0.00442504 0.00442954 0.00443405 0.00443855 0.00444305 0.00444756 0.00445206 0.00445657 0.00446107 0.00446557 0.00447008 0.00447458 +-0.000928654 -0.000879499 -0.000795795 -0.000558773 1.9733E-05 0.000907329 0.00191652 0.00286608 0.00355338 0.00385041 0.00392063 0.00393566 0.00394172 0.00394646 0.00395101 0.00395553 0.00396004 0.00396455 0.00396907 0.00397358 0.00397809 0.00398261 0.00398712 0.00399163 0.00399615 0.00400066 0.00400517 0.00400969 0.0040142 0.00401871 0.00402323 0.00402774 0.00403225 0.00403676 0.00404128 0.00404579 0.0040503 0.00405482 0.00405933 0.00406384 0.00406836 0.00407287 0.00407738 0.0040819 0.00408641 0.00409092 0.00409544 0.00409995 0.00410446 0.00410897 0.00411349 0.004118 0.00412251 0.00412703 0.00413154 0.00413605 0.00414057 0.00414508 0.00414959 0.00415411 0.00415862 0.00416313 0.00416764 0.00417216 0.00417667 0.00418118 0.0041857 0.00419021 0.00419472 0.00419924 0.00420375 0.00420826 0.00421278 0.00421729 0.0042218 0.00422632 0.00423083 0.00423534 0.00423985 0.00424437 0.00424888 0.00425339 0.00425791 0.00426242 0.00426693 0.00427145 0.00427596 0.00428047 0.00428499 0.0042895 0.00429401 0.00429853 0.00430304 0.00430755 0.00431206 0.00431658 0.00432109 0.0043256 0.00433012 0.00433463 0.00433914 0.00434366 0.00434817 0.00435268 0.0043572 0.00436171 0.00436622 0.00437074 0.00437525 0.00437976 0.00438427 0.00438879 0.0043933 0.00439781 0.00440233 0.00440684 0.00441135 0.00441587 0.00442038 0.00442489 0.00442941 0.00443392 0.00443843 0.00444295 0.00444746 0.00445197 0.00445648 0.004461 0.00446551 0.00447002 0.00447454 0.00447905 0.00448356 +-0.000930754 -0.00088147 -0.000797501 -0.000559769 1.98001E-05 0.000908328 0.00191845 0.00286933 0.0035587 0.00385754 0.00392835 0.00394349 0.00394958 0.00395433 0.00395888 0.00396341 0.00396794 0.00397246 0.00397698 0.0039815 0.00398603 0.00399055 0.00399507 0.00399959 0.00400411 0.00400864 0.00401316 0.00401768 0.0040222 0.00402673 0.00403125 0.00403577 0.00404029 0.00404482 0.00404934 0.00405386 0.00405838 0.00406291 0.00406743 0.00407195 0.00407647 0.004081 0.00408552 0.00409004 0.00409456 0.00409909 0.00410361 0.00410813 0.00411265 0.00411718 0.0041217 0.00412622 0.00413074 0.00413527 0.00413979 0.00414431 0.00414883 0.00415336 0.00415788 0.0041624 0.00416692 0.00417145 0.00417597 0.00418049 0.00418501 0.00418953 0.00419406 0.00419858 0.0042031 0.00420762 0.00421215 0.00421667 0.00422119 0.00422571 0.00423024 0.00423476 0.00423928 0.0042438 0.00424833 0.00425285 0.00425737 0.00426189 0.00426642 0.00427094 0.00427546 0.00427998 0.00428451 0.00428903 0.00429355 0.00429807 0.0043026 0.00430712 0.00431164 0.00431616 0.00432069 0.00432521 0.00432973 0.00433425 0.00433878 0.0043433 0.00434782 0.00435234 0.00435687 0.00436139 0.00436591 0.00437043 0.00437496 0.00437948 0.004384 0.00438852 0.00439304 0.00439757 0.00440209 0.00440661 0.00441113 0.00441566 0.00442018 0.0044247 0.00442922 0.00443375 0.00443827 0.00444279 0.00444731 0.00445184 0.00445636 0.00446088 0.0044654 0.00446993 0.00447445 0.00447897 0.00448349 0.00448802 0.00449254 +-0.000932853 -0.000883441 -0.000799205 -0.000560764 1.98673E-05 0.000909325 0.00192037 0.00287257 0.003564 0.00386466 0.00393606 0.00395131 0.00395743 0.00396219 0.00396675 0.00397129 0.00397582 0.00398035 0.00398489 0.00398942 0.00399395 0.00399848 0.00400301 0.00400755 0.00401208 0.00401661 0.00402114 0.00402567 0.0040302 0.00403474 0.00403927 0.0040438 0.00404833 0.00405286 0.00405739 0.00406193 0.00406646 0.00407099 0.00407552 0.00408005 0.00408458 0.00408912 0.00409365 0.00409818 0.00410271 0.00410724 0.00411178 0.00411631 0.00412084 0.00412537 0.0041299 0.00413443 0.00413897 0.0041435 0.00414803 0.00415256 0.00415709 0.00416162 0.00416616 0.00417069 0.00417522 0.00417975 0.00418428 0.00418882 0.00419335 0.00419788 0.00420241 0.00420694 0.00421147 0.00421601 0.00422054 0.00422507 0.0042296 0.00423413 0.00423866 0.0042432 0.00424773 0.00425226 0.00425679 0.00426132 0.00426586 0.00427039 0.00427492 0.00427945 0.00428398 0.00428851 0.00429305 0.00429758 0.00430211 0.00430664 0.00431117 0.0043157 0.00432024 0.00432477 0.0043293 0.00433383 0.00433836 0.0043429 0.00434743 0.00435196 0.00435649 0.00436102 0.00436555 0.00437009 0.00437462 0.00437915 0.00438368 0.00438821 0.00439274 0.00439728 0.00440181 0.00440634 0.00441087 0.0044154 0.00441994 0.00442447 0.004429 0.00443353 0.00443806 0.00444259 0.00444713 0.00445166 0.00445619 0.00446072 0.00446525 0.00446978 0.00447432 0.00447885 0.00448338 0.00448791 0.00449244 0.00449698 0.00450151 +-0.000934951 -0.00088541 -0.000800908 -0.000561758 1.99345E-05 0.00091032 0.00192229 0.00287581 0.00356929 0.00387177 0.00394376 0.00395913 0.00396527 0.00397004 0.00397462 0.00397916 0.0039837 0.00398824 0.00399279 0.00399733 0.00400187 0.00400641 0.00401095 0.00401549 0.00402003 0.00402457 0.00402911 0.00403366 0.0040382 0.00404274 0.00404728 0.00405182 0.00405636 0.0040609 0.00406544 0.00406998 0.00407453 0.00407907 0.00408361 0.00408815 0.00409269 0.00409723 0.00410177 0.00410631 0.00411085 0.0041154 0.00411994 0.00412448 0.00412902 0.00413356 0.0041381 0.00414264 0.00414718 0.00415172 0.00415626 0.00416081 0.00416535 0.00416989 0.00417443 0.00417897 0.00418351 0.00418805 0.00419259 0.00419713 0.00420168 0.00420622 0.00421076 0.0042153 0.00421984 0.00422438 0.00422892 0.00423346 0.004238 0.00424255 0.00424709 0.00425163 0.00425617 0.00426071 0.00426525 0.00426979 0.00427433 0.00427887 0.00428341 0.00428796 0.0042925 0.00429704 0.00430158 0.00430612 0.00431066 0.0043152 0.00431974 0.00432428 0.00432883 0.00433337 0.00433791 0.00434245 0.00434699 0.00435153 0.00435607 0.00436061 0.00436515 0.0043697 0.00437424 0.00437878 0.00438332 0.00438786 0.0043924 0.00439694 0.00440148 0.00440602 0.00441056 0.00441511 0.00441965 0.00442419 0.00442873 0.00443327 0.00443781 0.00444235 0.00444689 0.00445143 0.00445598 0.00446052 0.00446506 0.0044696 0.00447414 0.00447868 0.00448322 0.00448776 0.0044923 0.00449685 0.00450139 0.00450593 0.00451047 +-0.000937049 -0.000887379 -0.00080261 -0.00056275 2.00017E-05 0.000911312 0.0019242 0.00287903 0.00357457 0.00387887 0.00395146 0.00396694 0.0039731 0.00397789 0.00398247 0.00398703 0.00399158 0.00399613 0.00400068 0.00400523 0.00400978 0.00401433 0.00401888 0.00402343 0.00402798 0.00403253 0.00403708 0.00404163 0.00404618 0.00405073 0.00405528 0.00405983 0.00406438 0.00406894 0.00407349 0.00407804 0.00408259 0.00408714 0.00409169 0.00409624 0.00410079 0.00410534 0.00410989 0.00411444 0.00411899 0.00412354 0.00412809 0.00413264 0.00413719 0.00414174 0.00414629 0.00415084 0.00415539 0.00415994 0.00416449 0.00416904 0.00417359 0.00417814 0.00418269 0.00418725 0.0041918 0.00419635 0.0042009 0.00420545 0.00421 0.00421455 0.0042191 0.00422365 0.0042282 0.00423275 0.0042373 0.00424185 0.0042464 0.00425095 0.0042555 0.00426005 0.0042646 0.00426915 0.0042737 0.00427825 0.0042828 0.00428735 0.0042919 0.00429645 0.004301 0.00430555 0.00431011 0.00431466 0.00431921 0.00432376 0.00432831 0.00433286 0.00433741 0.00434196 0.00434651 0.00435106 0.00435561 0.00436016 0.00436471 0.00436926 0.00437381 0.00437836 0.00438291 0.00438746 0.00439201 0.00439656 0.00440111 0.00440566 0.00441021 0.00441476 0.00441931 0.00442386 0.00442842 0.00443297 0.00443752 0.00444207 0.00444662 0.00445117 0.00445572 0.00446027 0.00446482 0.00446937 0.00447392 0.00447847 0.00448302 0.00448757 0.00449212 0.00449667 0.00450122 0.00450577 0.00451032 0.00451487 0.00451942 +-0.000939146 -0.000889347 -0.000804311 -0.00056374 2.0069E-05 0.000912302 0.0019261 0.00288225 0.00357983 0.00388596 0.00395915 0.00397474 0.00398093 0.00398573 0.00399032 0.00399489 0.00399945 0.00400401 0.00400857 0.00401313 0.00401769 0.00402225 0.00402681 0.00403137 0.00403592 0.00404048 0.00404504 0.0040496 0.00405416 0.00405872 0.00406328 0.00406784 0.0040724 0.00407696 0.00408152 0.00408608 0.00409064 0.0040952 0.00409976 0.00410432 0.00410888 0.00411344 0.004118 0.00412256 0.00412712 0.00413168 0.00413624 0.0041408 0.00414536 0.00414992 0.00415448 0.00415904 0.0041636 0.00416816 0.00417272 0.00417727 0.00418183 0.00418639 0.00419095 0.00419551 0.00420007 0.00420463 0.00420919 0.00421375 0.00421831 0.00422287 0.00422743 0.00423199 0.00423655 0.00424111 0.00424567 0.00425023 0.00425479 0.00425935 0.00426391 0.00426847 0.00427303 0.00427759 0.00428215 0.00428671 0.00429127 0.00429583 0.00430039 0.00430495 0.00430951 0.00431407 0.00431862 0.00432318 0.00432774 0.0043323 0.00433686 0.00434142 0.00434598 0.00435054 0.0043551 0.00435966 0.00436422 0.00436878 0.00437334 0.0043779 0.00438246 0.00438702 0.00439158 0.00439614 0.0044007 0.00440526 0.00440982 0.00441438 0.00441894 0.0044235 0.00442806 0.00443262 0.00443718 0.00444174 0.0044463 0.00445086 0.00445542 0.00445997 0.00446453 0.00446909 0.00447365 0.00447821 0.00448277 0.00448733 0.00449189 0.00449645 0.00450101 0.00450557 0.00451013 0.00451469 0.00451925 0.00452381 0.00452837 +-0.000941242 -0.000891314 -0.000806011 -0.000564729 2.01364E-05 0.00091329 0.001928 0.00288545 0.00358507 0.00389303 0.00396683 0.00398254 0.00398875 0.00399356 0.00399817 0.00400274 0.00400731 0.00401188 0.00401645 0.00402102 0.00402559 0.00403015 0.00403472 0.00403929 0.00404386 0.00404843 0.004053 0.00405757 0.00406214 0.00406671 0.00407128 0.00407584 0.00408041 0.00408498 0.00408955 0.00409412 0.00409869 0.00410326 0.00410783 0.0041124 0.00411697 0.00412153 0.0041261 0.00413067 0.00413524 0.00413981 0.00414438 0.00414895 0.00415352 0.00415809 0.00416265 0.00416722 0.00417179 0.00417636 0.00418093 0.0041855 0.00419007 0.00419464 0.00419921 0.00420378 0.00420834 0.00421291 0.00421748 0.00422205 0.00422662 0.00423119 0.00423576 0.00424033 0.0042449 0.00424947 0.00425403 0.0042586 0.00426317 0.00426774 0.00427231 0.00427688 0.00428145 0.00428602 0.00429059 0.00429515 0.00429972 0.00430429 0.00430886 0.00431343 0.004318 0.00432257 0.00432714 0.00433171 0.00433628 0.00434084 0.00434541 0.00434998 0.00435455 0.00435912 0.00436369 0.00436826 0.00437283 0.0043774 0.00438197 0.00438653 0.0043911 0.00439567 0.00440024 0.00440481 0.00440938 0.00441395 0.00441852 0.00442309 0.00442765 0.00443222 0.00443679 0.00444136 0.00444593 0.0044505 0.00445507 0.00445964 0.00446421 0.00446878 0.00447334 0.00447791 0.00448248 0.00448705 0.00449162 0.00449619 0.00450076 0.00450533 0.0045099 0.00451447 0.00451903 0.0045236 0.00452817 0.00453274 0.00453731 +-0.000943338 -0.000893281 -0.00080771 -0.000565717 2.02038E-05 0.000914275 0.0019299 0.00288864 0.0035903 0.0039001 0.00397451 0.00399033 0.00399657 0.00400139 0.004006 0.00401059 0.00401517 0.00401974 0.00402432 0.0040289 0.00403348 0.00403806 0.00404264 0.00404721 0.00405179 0.00405637 0.00406095 0.00406553 0.00407011 0.00407468 0.00407926 0.00408384 0.00408842 0.004093 0.00409757 0.00410215 0.00410673 0.00411131 0.00411589 0.00412047 0.00412504 0.00412962 0.0041342 0.00413878 0.00414336 0.00414794 0.00415251 0.00415709 0.00416167 0.00416625 0.00417083 0.0041754 0.00417998 0.00418456 0.00418914 0.00419372 0.0041983 0.00420287 0.00420745 0.00421203 0.00421661 0.00422119 0.00422577 0.00423034 0.00423492 0.0042395 0.00424408 0.00424866 0.00425324 0.00425781 0.00426239 0.00426697 0.00427155 0.00427613 0.0042807 0.00428528 0.00428986 0.00429444 0.00429902 0.0043036 0.00430817 0.00431275 0.00431733 0.00432191 0.00432649 0.00433107 0.00433564 0.00434022 0.0043448 0.00434938 0.00435396 0.00435854 0.00436311 0.00436769 0.00437227 0.00437685 0.00438143 0.004386 0.00439058 0.00439516 0.00439974 0.00440432 0.0044089 0.00441347 0.00441805 0.00442263 0.00442721 0.00443179 0.00443637 0.00444094 0.00444552 0.0044501 0.00445468 0.00445926 0.00446383 0.00446841 0.00447299 0.00447757 0.00448215 0.00448673 0.0044913 0.00449588 0.00450046 0.00450504 0.00450962 0.0045142 0.00451877 0.00452335 0.00452793 0.00453251 0.00453709 0.00454167 0.00454624 +-0.000945432 -0.000895246 -0.000809408 -0.000566703 2.02713E-05 0.000915259 0.00193179 0.00289183 0.00359552 0.00390715 0.00398218 0.00399811 0.00400438 0.00400921 0.00401383 0.00401843 0.00402302 0.0040276 0.00403219 0.00403678 0.00404137 0.00404595 0.00405054 0.00405513 0.00405972 0.0040643 0.00406889 0.00407348 0.00407807 0.00408265 0.00408724 0.00409183 0.00409642 0.004101 0.00410559 0.00411018 0.00411477 0.00411935 0.00412394 0.00412853 0.00413312 0.0041377 0.00414229 0.00414688 0.00415147 0.00415605 0.00416064 0.00416523 0.00416982 0.0041744 0.00417899 0.00418358 0.00418817 0.00419275 0.00419734 0.00420193 0.00420652 0.0042111 0.00421569 0.00422028 0.00422487 0.00422945 0.00423404 0.00423863 0.00424322 0.00424781 0.00425239 0.00425698 0.00426157 0.00426616 0.00427074 0.00427533 0.00427992 0.00428451 0.00428909 0.00429368 0.00429827 0.00430286 0.00430744 0.00431203 0.00431662 0.00432121 0.00432579 0.00433038 0.00433497 0.00433956 0.00434414 0.00434873 0.00435332 0.00435791 0.00436249 0.00436708 0.00437167 0.00437626 0.00438084 0.00438543 0.00439002 0.00439461 0.00439919 0.00440378 0.00440837 0.00441296 0.00441754 0.00442213 0.00442672 0.00443131 0.00443589 0.00444048 0.00444507 0.00444966 0.00445424 0.00445883 0.00446342 0.00446801 0.00447259 0.00447718 0.00448177 0.00448636 0.00449094 0.00449553 0.00450012 0.00450471 0.00450929 0.00451388 0.00451847 0.00452306 0.00452764 0.00453223 0.00453682 0.00454141 0.00454599 0.00455058 0.00455517 +-0.000947526 -0.000897211 -0.000811104 -0.000567687 2.03388E-05 0.00091624 0.00193367 0.002895 0.00360072 0.00391419 0.00398984 0.00400589 0.00401218 0.00401703 0.00402166 0.00402626 0.00403086 0.00403546 0.00404005 0.00404465 0.00404925 0.00405384 0.00405844 0.00406304 0.00406763 0.00407223 0.00407683 0.00408142 0.00408602 0.00409062 0.00409522 0.00409981 0.00410441 0.00410901 0.0041136 0.0041182 0.0041228 0.00412739 0.00413199 0.00413659 0.00414118 0.00414578 0.00415038 0.00415497 0.00415957 0.00416417 0.00416876 0.00417336 0.00417796 0.00418255 0.00418715 0.00419175 0.00419634 0.00420094 0.00420554 0.00421014 0.00421473 0.00421933 0.00422393 0.00422852 0.00423312 0.00423772 0.00424231 0.00424691 0.00425151 0.0042561 0.0042607 0.0042653 0.00426989 0.00427449 0.00427909 0.00428368 0.00428828 0.00429288 0.00429747 0.00430207 0.00430667 0.00431126 0.00431586 0.00432046 0.00432506 0.00432965 0.00433425 0.00433885 0.00434344 0.00434804 0.00435264 0.00435723 0.00436183 0.00436643 0.00437102 0.00437562 0.00438022 0.00438481 0.00438941 0.00439401 0.0043986 0.0044032 0.0044078 0.00441239 0.00441699 0.00442159 0.00442618 0.00443078 0.00443538 0.00443998 0.00444457 0.00444917 0.00445377 0.00445836 0.00446296 0.00446756 0.00447215 0.00447675 0.00448135 0.00448594 0.00449054 0.00449514 0.00449973 0.00450433 0.00450893 0.00451352 0.00451812 0.00452272 0.00452731 0.00453191 0.00453651 0.00454111 0.0045457 0.0045503 0.0045549 0.00455949 0.00456409 +-0.00094962 -0.000899175 -0.000812799 -0.00056867 2.04063E-05 0.000917218 0.00193555 0.00289817 0.00360591 0.00392123 0.00399749 0.00401366 0.00401998 0.00402484 0.00402948 0.00403409 0.0040387 0.0040433 0.00404791 0.00405252 0.00405712 0.00406173 0.00406633 0.00407094 0.00407555 0.00408015 0.00408476 0.00408936 0.00409397 0.00409858 0.00410318 0.00410779 0.00411239 0.004117 0.00412161 0.00412621 0.00413082 0.00413542 0.00414003 0.00414464 0.00414924 0.00415385 0.00415846 0.00416306 0.00416767 0.00417227 0.00417688 0.00418149 0.00418609 0.0041907 0.0041953 0.00419991 0.00420452 0.00420912 0.00421373 0.00421833 0.00422294 0.00422755 0.00423215 0.00423676 0.00424136 0.00424597 0.00425058 0.00425518 0.00425979 0.00426439 0.004269 0.00427361 0.00427821 0.00428282 0.00428743 0.00429203 0.00429664 0.00430124 0.00430585 0.00431046 0.00431506 0.00431967 0.00432427 0.00432888 0.00433349 0.00433809 0.0043427 0.0043473 0.00435191 0.00435652 0.00436112 0.00436573 0.00437033 0.00437494 0.00437955 0.00438415 0.00438876 0.00439336 0.00439797 0.00440258 0.00440718 0.00441179 0.0044164 0.004421 0.00442561 0.00443021 0.00443482 0.00443943 0.00444403 0.00444864 0.00445324 0.00445785 0.00446246 0.00446706 0.00447167 0.00447627 0.00448088 0.00448549 0.00449009 0.0044947 0.0044993 0.00450391 0.00450852 0.00451312 0.00451773 0.00452233 0.00452694 0.00453155 0.00453615 0.00454076 0.00454537 0.00454997 0.00455458 0.00455918 0.00456379 0.0045684 0.004573 +-0.000951712 -0.000901139 -0.000814493 -0.000569651 2.0474E-05 0.000918195 0.00193743 0.00290132 0.00361108 0.00392825 0.00400514 0.00402143 0.00402777 0.00403264 0.00403729 0.00404191 0.00404653 0.00405114 0.00405576 0.00406037 0.00406499 0.00406961 0.00407422 0.00407884 0.00408345 0.00408807 0.00409268 0.0040973 0.00410191 0.00410653 0.00411114 0.00411576 0.00412037 0.00412499 0.0041296 0.00413422 0.00413884 0.00414345 0.00414807 0.00415268 0.0041573 0.00416191 0.00416653 0.00417114 0.00417576 0.00418037 0.00418499 0.0041896 0.00419422 0.00419883 0.00420345 0.00420807 0.00421268 0.0042173 0.00422191 0.00422653 0.00423114 0.00423576 0.00424037 0.00424499 0.0042496 0.00425422 0.00425883 0.00426345 0.00426806 0.00427268 0.0042773 0.00428191 0.00428653 0.00429114 0.00429576 0.00430037 0.00430499 0.0043096 0.00431422 0.00431883 0.00432345 0.00432806 0.00433268 0.00433729 0.00434191 0.00434653 0.00435114 0.00435576 0.00436037 0.00436499 0.0043696 0.00437422 0.00437883 0.00438345 0.00438806 0.00439268 0.00439729 0.00440191 0.00440652 0.00441114 0.00441576 0.00442037 0.00442499 0.0044296 0.00443422 0.00443883 0.00444345 0.00444806 0.00445268 0.00445729 0.00446191 0.00446652 0.00447114 0.00447575 0.00448037 0.00448498 0.0044896 0.00449422 0.00449883 0.00450345 0.00450806 0.00451268 0.00451729 0.00452191 0.00452652 0.00453114 0.00453575 0.00454037 0.00454498 0.0045496 0.00455421 0.00455883 0.00456345 0.00456806 0.00457268 0.00457729 0.00458191 +-0.000953804 -0.000903101 -0.000816186 -0.000570631 2.05416E-05 0.000919169 0.0019393 0.00290447 0.00361624 0.00393526 0.00401278 0.00402919 0.00403556 0.00404044 0.0040451 0.00404973 0.00405435 0.00405898 0.0040636 0.00406823 0.00407285 0.00407748 0.0040821 0.00408673 0.00409135 0.00409598 0.0041006 0.00410522 0.00410985 0.00411447 0.0041191 0.00412372 0.00412835 0.00413297 0.0041376 0.00414222 0.00414685 0.00415147 0.00415609 0.00416072 0.00416534 0.00416997 0.00417459 0.00417922 0.00418384 0.00418847 0.00419309 0.00419772 0.00420234 0.00420697 0.00421159 0.00421621 0.00422084 0.00422546 0.00423009 0.00423471 0.00423934 0.00424396 0.00424859 0.00425321 0.00425784 0.00426246 0.00426708 0.00427171 0.00427633 0.00428096 0.00428558 0.00429021 0.00429483 0.00429946 0.00430408 0.00430871 0.00431333 0.00431796 0.00432258 0.0043272 0.00433183 0.00433645 0.00434108 0.0043457 0.00435033 0.00435495 0.00435958 0.0043642 0.00436883 0.00437345 0.00437807 0.0043827 0.00438732 0.00439195 0.00439657 0.0044012 0.00440582 0.00441045 0.00441507 0.0044197 0.00442432 0.00442895 0.00443357 0.00443819 0.00444282 0.00444744 0.00445207 0.00445669 0.00446132 0.00446594 0.00447057 0.00447519 0.00447982 0.00448444 0.00448906 0.00449369 0.00449831 0.00450294 0.00450756 0.00451219 0.00451681 0.00452144 0.00452606 0.00453069 0.00453531 0.00453994 0.00454456 0.00454918 0.00455381 0.00455843 0.00456306 0.00456768 0.00457231 0.00457693 0.00458156 0.00458618 0.00459081 +-0.000955895 -0.000905063 -0.000817878 -0.00057161 2.06093E-05 0.000920141 0.00194116 0.0029076 0.00362138 0.00394226 0.00402041 0.00403694 0.00404334 0.00404823 0.0040529 0.00405754 0.00406217 0.00406681 0.00407144 0.00407607 0.00408071 0.00408534 0.00408998 0.00409461 0.00409924 0.00410388 0.00410851 0.00411315 0.00411778 0.00412241 0.00412705 0.00413168 0.00413631 0.00414095 0.00414558 0.00415022 0.00415485 0.00415948 0.00416412 0.00416875 0.00417338 0.00417802 0.00418265 0.00418729 0.00419192 0.00419655 0.00420119 0.00420582 0.00421046 0.00421509 0.00421972 0.00422436 0.00422899 0.00423362 0.00423826 0.00424289 0.00424753 0.00425216 0.00425679 0.00426143 0.00426606 0.0042707 0.00427533 0.00427996 0.0042846 0.00428923 0.00429386 0.0042985 0.00430313 0.00430777 0.0043124 0.00431703 0.00432167 0.0043263 0.00433094 0.00433557 0.0043402 0.00434484 0.00434947 0.0043541 0.00435874 0.00436337 0.00436801 0.00437264 0.00437727 0.00438191 0.00438654 0.00439117 0.00439581 0.00440044 0.00440508 0.00440971 0.00441434 0.00441898 0.00442361 0.00442825 0.00443288 0.00443751 0.00444215 0.00444678 0.00445141 0.00445605 0.00446068 0.00446532 0.00446995 0.00447458 0.00447922 0.00448385 0.00448849 0.00449312 0.00449775 0.00450239 0.00450702 0.00451165 0.00451629 0.00452092 0.00452556 0.00453019 0.00453482 0.00453946 0.00454409 0.00454872 0.00455336 0.00455799 0.00456263 0.00456726 0.00457189 0.00457653 0.00458116 0.0045858 0.00459043 0.00459506 0.0045997 +-0.000957985 -0.000907024 -0.000819569 -0.000572587 2.06771E-05 0.000921111 0.00194302 0.00291073 0.00362651 0.00394924 0.00402804 0.00404469 0.00405111 0.00405601 0.00406069 0.00406534 0.00406999 0.00407463 0.00407927 0.00408392 0.00408856 0.0040932 0.00409784 0.00410249 0.00410713 0.00411177 0.00411642 0.00412106 0.0041257 0.00413035 0.00413499 0.00413963 0.00414428 0.00414892 0.00415356 0.0041582 0.00416285 0.00416749 0.00417213 0.00417678 0.00418142 0.00418606 0.00419071 0.00419535 0.00419999 0.00420464 0.00420928 0.00421392 0.00421856 0.00422321 0.00422785 0.00423249 0.00423714 0.00424178 0.00424642 0.00425107 0.00425571 0.00426035 0.00426499 0.00426964 0.00427428 0.00427892 0.00428357 0.00428821 0.00429285 0.0042975 0.00430214 0.00430678 0.00431143 0.00431607 0.00432071 0.00432535 0.00433 0.00433464 0.00433928 0.00434393 0.00434857 0.00435321 0.00435786 0.0043625 0.00436714 0.00437179 0.00437643 0.00438107 0.00438571 0.00439036 0.004395 0.00439964 0.00440429 0.00440893 0.00441357 0.00441822 0.00442286 0.0044275 0.00443215 0.00443679 0.00444143 0.00444607 0.00445072 0.00445536 0.00446 0.00446465 0.00446929 0.00447393 0.00447858 0.00448322 0.00448786 0.00449251 0.00449715 0.00450179 0.00450643 0.00451108 0.00451572 0.00452036 0.00452501 0.00452965 0.00453429 0.00453894 0.00454358 0.00454822 0.00455286 0.00455751 0.00456215 0.00456679 0.00457144 0.00457608 0.00458072 0.00458537 0.00459001 0.00459465 0.0045993 0.00460394 0.00460858 +-0.000960075 -0.000908984 -0.000821259 -0.000573562 2.07449E-05 0.000922079 0.00194488 0.00291385 0.00363162 0.00395622 0.00403566 0.00405243 0.00405888 0.00406379 0.00406848 0.00407314 0.00407779 0.00408245 0.0040871 0.00409175 0.0040964 0.00410105 0.00410571 0.00411036 0.00411501 0.00411966 0.00412432 0.00412897 0.00413362 0.00413827 0.00414293 0.00414758 0.00415223 0.00415688 0.00416153 0.00416619 0.00417084 0.00417549 0.00418014 0.0041848 0.00418945 0.0041941 0.00419875 0.00420341 0.00420806 0.00421271 0.00421736 0.00422201 0.00422667 0.00423132 0.00423597 0.00424062 0.00424528 0.00424993 0.00425458 0.00425923 0.00426388 0.00426854 0.00427319 0.00427784 0.00428249 0.00428715 0.0042918 0.00429645 0.0043011 0.00430576 0.00431041 0.00431506 0.00431971 0.00432436 0.00432902 0.00433367 0.00433832 0.00434297 0.00434763 0.00435228 0.00435693 0.00436158 0.00436624 0.00437089 0.00437554 0.00438019 0.00438484 0.0043895 0.00439415 0.0043988 0.00440345 0.00440811 0.00441276 0.00441741 0.00442206 0.00442672 0.00443137 0.00443602 0.00444067 0.00444532 0.00444998 0.00445463 0.00445928 0.00446393 0.00446859 0.00447324 0.00447789 0.00448254 0.0044872 0.00449185 0.0044965 0.00450115 0.0045058 0.00451046 0.00451511 0.00451976 0.00452441 0.00452907 0.00453372 0.00453837 0.00454302 0.00454768 0.00455233 0.00455698 0.00456163 0.00456628 0.00457094 0.00457559 0.00458024 0.00458489 0.00458955 0.0045942 0.00459885 0.0046035 0.00460815 0.00461281 0.00461746 +-0.000962164 -0.000910943 -0.000822947 -0.000574536 2.08128E-05 0.000923044 0.00194673 0.00291695 0.00363672 0.00396318 0.00404327 0.00406016 0.00406664 0.00407156 0.00407626 0.00408093 0.00408559 0.00409026 0.00409492 0.00409958 0.00410424 0.0041089 0.00411356 0.00411822 0.00412289 0.00412755 0.00413221 0.00413687 0.00414153 0.00414619 0.00415086 0.00415552 0.00416018 0.00416484 0.0041695 0.00417416 0.00417882 0.00418349 0.00418815 0.00419281 0.00419747 0.00420213 0.00420679 0.00421145 0.00421612 0.00422078 0.00422544 0.0042301 0.00423476 0.00423942 0.00424409 0.00424875 0.00425341 0.00425807 0.00426273 0.00426739 0.00427205 0.00427672 0.00428138 0.00428604 0.0042907 0.00429536 0.00430002 0.00430469 0.00430935 0.00431401 0.00431867 0.00432333 0.00432799 0.00433265 0.00433732 0.00434198 0.00434664 0.0043513 0.00435596 0.00436062 0.00436529 0.00436995 0.00437461 0.00437927 0.00438393 0.00438859 0.00439325 0.00439792 0.00440258 0.00440724 0.0044119 0.00441656 0.00442122 0.00442589 0.00443055 0.00443521 0.00443987 0.00444453 0.00444919 0.00445385 0.00445852 0.00446318 0.00446784 0.0044725 0.00447716 0.00448182 0.00448648 0.00449115 0.00449581 0.00450047 0.00450513 0.00450979 0.00451445 0.00451912 0.00452378 0.00452844 0.0045331 0.00453776 0.00454242 0.00454708 0.00455175 0.00455641 0.00456107 0.00456573 0.00457039 0.00457505 0.00457972 0.00458438 0.00458904 0.0045937 0.00459836 0.00460302 0.00460768 0.00461235 0.00461701 0.00462167 0.00462633 +-0.000964252 -0.000912902 -0.000824634 -0.000575508 2.08807E-05 0.000924008 0.00194858 0.00292005 0.00364181 0.00397014 0.00405087 0.00406789 0.00407439 0.00407933 0.00408404 0.00408872 0.00409339 0.00409806 0.00410273 0.0041074 0.00411207 0.00411674 0.00412141 0.00412608 0.00413075 0.00413543 0.0041401 0.00414477 0.00414944 0.00415411 0.00415878 0.00416345 0.00416812 0.00417279 0.00417746 0.00418213 0.0041868 0.00419147 0.00419614 0.00420082 0.00420549 0.00421016 0.00421483 0.0042195 0.00422417 0.00422884 0.00423351 0.00423818 0.00424285 0.00424752 0.00425219 0.00425686 0.00426154 0.00426621 0.00427088 0.00427555 0.00428022 0.00428489 0.00428956 0.00429423 0.0042989 0.00430357 0.00430824 0.00431291 0.00431758 0.00432225 0.00432693 0.0043316 0.00433627 0.00434094 0.00434561 0.00435028 0.00435495 0.00435962 0.00436429 0.00436896 0.00437363 0.0043783 0.00438297 0.00438765 0.00439232 0.00439699 0.00440166 0.00440633 0.004411 0.00441567 0.00442034 0.00442501 0.00442968 0.00443435 0.00443902 0.00444369 0.00444836 0.00445304 0.00445771 0.00446238 0.00446705 0.00447172 0.00447639 0.00448106 0.00448573 0.0044904 0.00449507 0.00449974 0.00450441 0.00450908 0.00451376 0.00451843 0.0045231 0.00452777 0.00453244 0.00453711 0.00454178 0.00454645 0.00455112 0.00455579 0.00456046 0.00456513 0.0045698 0.00457448 0.00457915 0.00458382 0.00458849 0.00459316 0.00459783 0.0046025 0.00460717 0.00461184 0.00461651 0.00462118 0.00462585 0.00463052 0.00463519 +-0.00096634 -0.00091486 -0.00082632 -0.000576479 2.09486E-05 0.000924969 0.00195042 0.00292314 0.00364688 0.00397708 0.00405847 0.00407561 0.00408214 0.00408709 0.00409181 0.0040965 0.00410118 0.00410586 0.00411054 0.00411522 0.0041199 0.00412458 0.00412926 0.00413394 0.00413862 0.0041433 0.00414798 0.00415266 0.00415734 0.00416202 0.0041667 0.00417138 0.00417606 0.00418074 0.00418542 0.0041901 0.00419478 0.00419946 0.00420414 0.00420882 0.0042135 0.00421818 0.00422286 0.00422754 0.00423222 0.0042369 0.00424158 0.00424626 0.00425094 0.00425562 0.0042603 0.00426498 0.00426966 0.00427434 0.00427902 0.0042837 0.00428838 0.00429306 0.00429774 0.00430242 0.0043071 0.00431178 0.00431645 0.00432113 0.00432581 0.00433049 0.00433517 0.00433985 0.00434453 0.00434921 0.00435389 0.00435857 0.00436325 0.00436793 0.00437261 0.00437729 0.00438197 0.00438665 0.00439133 0.00439601 0.00440069 0.00440537 0.00441005 0.00441473 0.00441941 0.00442409 0.00442877 0.00443345 0.00443813 0.00444281 0.00444749 0.00445217 0.00445685 0.00446153 0.00446621 0.00447089 0.00447557 0.00448025 0.00448493 0.00448961 0.00449429 0.00449897 0.00450365 0.00450833 0.00451301 0.00451769 0.00452237 0.00452705 0.00453173 0.00453641 0.00454109 0.00454577 0.00455045 0.00455513 0.00455981 0.00456449 0.00456917 0.00457385 0.00457853 0.00458321 0.00458789 0.00459257 0.00459725 0.00460193 0.00460661 0.00461129 0.00461597 0.00462065 0.00462533 0.00463001 0.00463469 0.00463937 0.00464405 +-0.000968427 -0.000916817 -0.000828005 -0.000577449 2.10166E-05 0.000925928 0.00195225 0.00292622 0.00365193 0.00398401 0.00406606 0.00408333 0.00408988 0.00409485 0.00409957 0.00410427 0.00410896 0.00411365 0.00411834 0.00412303 0.00412772 0.00413241 0.00413709 0.00414178 0.00414647 0.00415116 0.00415585 0.00416054 0.00416523 0.00416992 0.00417461 0.0041793 0.00418399 0.00418868 0.00419336 0.00419805 0.00420274 0.00420743 0.00421212 0.00421681 0.0042215 0.00422619 0.00423088 0.00423557 0.00424026 0.00424495 0.00424963 0.00425432 0.00425901 0.0042637 0.00426839 0.00427308 0.00427777 0.00428246 0.00428715 0.00429184 0.00429653 0.00430122 0.0043059 0.00431059 0.00431528 0.00431997 0.00432466 0.00432935 0.00433404 0.00433873 0.00434342 0.00434811 0.0043528 0.00435749 0.00436217 0.00436686 0.00437155 0.00437624 0.00438093 0.00438562 0.00439031 0.004395 0.00439969 0.00440438 0.00440907 0.00441376 0.00441844 0.00442313 0.00442782 0.00443251 0.0044372 0.00444189 0.00444658 0.00445127 0.00445596 0.00446065 0.00446534 0.00447003 0.00447471 0.0044794 0.00448409 0.00448878 0.00449347 0.00449816 0.00450285 0.00450754 0.00451223 0.00451692 0.00452161 0.0045263 0.00453098 0.00453567 0.00454036 0.00454505 0.00454974 0.00455443 0.00455912 0.00456381 0.0045685 0.00457319 0.00457788 0.00458257 0.00458725 0.00459194 0.00459663 0.00460132 0.00460601 0.0046107 0.00461539 0.00462008 0.00462477 0.00462946 0.00463415 0.00463884 0.00464352 0.00464821 0.0046529 +-0.000970513 -0.000918773 -0.000829689 -0.000578416 2.10847E-05 0.000926885 0.00195408 0.00292929 0.00365697 0.00399093 0.00407364 0.00409104 0.00409762 0.00410259 0.00410733 0.00411204 0.00411674 0.00412143 0.00412613 0.00413083 0.00413553 0.00414023 0.00414493 0.00414962 0.00415432 0.00415902 0.00416372 0.00416842 0.00417312 0.00417781 0.00418251 0.00418721 0.00419191 0.00419661 0.00420131 0.004206 0.0042107 0.0042154 0.0042201 0.0042248 0.0042295 0.00423419 0.00423889 0.00424359 0.00424829 0.00425299 0.00425769 0.00426239 0.00426708 0.00427178 0.00427648 0.00428118 0.00428588 0.00429058 0.00429527 0.00429997 0.00430467 0.00430937 0.00431407 0.00431877 0.00432346 0.00432816 0.00433286 0.00433756 0.00434226 0.00434696 0.00435165 0.00435635 0.00436105 0.00436575 0.00437045 0.00437515 0.00437984 0.00438454 0.00438924 0.00439394 0.00439864 0.00440334 0.00440803 0.00441273 0.00441743 0.00442213 0.00442683 0.00443153 0.00443622 0.00444092 0.00444562 0.00445032 0.00445502 0.00445972 0.00446441 0.00446911 0.00447381 0.00447851 0.00448321 0.00448791 0.00449261 0.0044973 0.004502 0.0045067 0.0045114 0.0045161 0.0045208 0.00452549 0.00453019 0.00453489 0.00453959 0.00454429 0.00454899 0.00455368 0.00455838 0.00456308 0.00456778 0.00457248 0.00457718 0.00458187 0.00458657 0.00459127 0.00459597 0.00460067 0.00460537 0.00461006 0.00461476 0.00461946 0.00462416 0.00462886 0.00463356 0.00463825 0.00464295 0.00464765 0.00465235 0.00465705 0.00466175 +-0.000972598 -0.000920728 -0.000831372 -0.000579383 2.11528E-05 0.000927839 0.00195591 0.00293235 0.003662 0.00399784 0.00408122 0.00409874 0.00410535 0.00411034 0.00411508 0.0041198 0.00412451 0.00412921 0.00413392 0.00413863 0.00414334 0.00414804 0.00415275 0.00415746 0.00416217 0.00416687 0.00417158 0.00417629 0.004181 0.0041857 0.00419041 0.00419512 0.00419983 0.00420453 0.00420924 0.00421395 0.00421866 0.00422336 0.00422807 0.00423278 0.00423749 0.0042422 0.0042469 0.00425161 0.00425632 0.00426103 0.00426573 0.00427044 0.00427515 0.00427986 0.00428456 0.00428927 0.00429398 0.00429869 0.00430339 0.0043081 0.00431281 0.00431752 0.00432222 0.00432693 0.00433164 0.00433635 0.00434105 0.00434576 0.00435047 0.00435518 0.00435988 0.00436459 0.0043693 0.00437401 0.00437871 0.00438342 0.00438813 0.00439284 0.00439754 0.00440225 0.00440696 0.00441167 0.00441637 0.00442108 0.00442579 0.0044305 0.00443521 0.00443991 0.00444462 0.00444933 0.00445404 0.00445874 0.00446345 0.00446816 0.00447287 0.00447757 0.00448228 0.00448699 0.0044917 0.0044964 0.00450111 0.00450582 0.00451053 0.00451523 0.00451994 0.00452465 0.00452936 0.00453406 0.00453877 0.00454348 0.00454819 0.00455289 0.0045576 0.00456231 0.00456702 0.00457172 0.00457643 0.00458114 0.00458585 0.00459055 0.00459526 0.00459997 0.00460468 0.00460938 0.00461409 0.0046188 0.00462351 0.00462822 0.00463292 0.00463763 0.00464234 0.00464705 0.00465175 0.00465646 0.00466117 0.00466588 0.00467058 +-0.000974683 -0.000922683 -0.000833054 -0.000580348 2.1221E-05 0.000928792 0.00195773 0.0029354 0.00366701 0.00400474 0.00408878 0.00410644 0.00411308 0.00411807 0.00412283 0.00412755 0.00413227 0.00413699 0.0041417 0.00414642 0.00415114 0.00415585 0.00416057 0.00416529 0.00417 0.00417472 0.00417944 0.00418415 0.00418887 0.00419359 0.00419831 0.00420302 0.00420774 0.00421246 0.00421717 0.00422189 0.00422661 0.00423132 0.00423604 0.00424076 0.00424547 0.00425019 0.00425491 0.00425962 0.00426434 0.00426906 0.00427377 0.00427849 0.00428321 0.00428792 0.00429264 0.00429736 0.00430207 0.00430679 0.00431151 0.00431622 0.00432094 0.00432566 0.00433037 0.00433509 0.00433981 0.00434452 0.00434924 0.00435396 0.00435867 0.00436339 0.00436811 0.00437282 0.00437754 0.00438226 0.00438697 0.00439169 0.00439641 0.00440113 0.00440584 0.00441056 0.00441528 0.00441999 0.00442471 0.00442943 0.00443414 0.00443886 0.00444358 0.00444829 0.00445301 0.00445773 0.00446244 0.00446716 0.00447188 0.00447659 0.00448131 0.00448603 0.00449074 0.00449546 0.00450018 0.00450489 0.00450961 0.00451433 0.00451904 0.00452376 0.00452848 0.00453319 0.00453791 0.00454263 0.00454734 0.00455206 0.00455678 0.00456149 0.00456621 0.00457093 0.00457564 0.00458036 0.00458508 0.0045898 0.00459451 0.00459923 0.00460395 0.00460866 0.00461338 0.0046181 0.00462281 0.00462753 0.00463225 0.00463696 0.00464168 0.0046464 0.00465111 0.00465583 0.00466055 0.00466526 0.00466998 0.0046747 0.00467941 +-0.000976767 -0.000924637 -0.000834734 -0.000581311 2.12892E-05 0.000929743 0.00195955 0.00293844 0.00367201 0.00401162 0.00409634 0.00411413 0.00412079 0.0041258 0.00413057 0.0041353 0.00414003 0.00414475 0.00414948 0.00415421 0.00415893 0.00416366 0.00416838 0.00417311 0.00417784 0.00418256 0.00418729 0.00419201 0.00419674 0.00420147 0.00420619 0.00421092 0.00421564 0.00422037 0.0042251 0.00422982 0.00423455 0.00423927 0.004244 0.00424873 0.00425345 0.00425818 0.0042629 0.00426763 0.00427235 0.00427708 0.00428181 0.00428653 0.00429126 0.00429598 0.00430071 0.00430544 0.00431016 0.00431489 0.00431961 0.00432434 0.00432907 0.00433379 0.00433852 0.00434324 0.00434797 0.0043527 0.00435742 0.00436215 0.00436687 0.0043716 0.00437633 0.00438105 0.00438578 0.0043905 0.00439523 0.00439996 0.00440468 0.00440941 0.00441413 0.00441886 0.00442358 0.00442831 0.00443304 0.00443776 0.00444249 0.00444721 0.00445194 0.00445667 0.00446139 0.00446612 0.00447084 0.00447557 0.0044803 0.00448502 0.00448975 0.00449447 0.0044992 0.00450393 0.00450865 0.00451338 0.0045181 0.00452283 0.00452756 0.00453228 0.00453701 0.00454173 0.00454646 0.00455118 0.00455591 0.00456064 0.00456536 0.00457009 0.00457481 0.00457954 0.00458427 0.00458899 0.00459372 0.00459844 0.00460317 0.0046079 0.00461262 0.00461735 0.00462207 0.0046268 0.00463153 0.00463625 0.00464098 0.0046457 0.00465043 0.00465516 0.00465988 0.00466461 0.00466933 0.00467406 0.00467878 0.00468351 0.00468824 +-0.00097885 -0.00092659 -0.000836413 -0.000582273 2.13574E-05 0.000930691 0.00196136 0.00294147 0.003677 0.0040185 0.0041039 0.00412182 0.00412851 0.00413353 0.0041383 0.00414305 0.00414778 0.00415252 0.00415725 0.00416199 0.00416672 0.00417146 0.00417619 0.00418093 0.00418566 0.0041904 0.00419513 0.00419987 0.0042046 0.00420934 0.00421407 0.00421881 0.00422354 0.00422828 0.00423301 0.00423775 0.00424248 0.00424722 0.00425195 0.00425669 0.00426142 0.00426616 0.00427089 0.00427563 0.00428036 0.0042851 0.00428983 0.00429457 0.0042993 0.00430404 0.00430877 0.00431351 0.00431825 0.00432298 0.00432772 0.00433245 0.00433719 0.00434192 0.00434666 0.00435139 0.00435613 0.00436086 0.0043656 0.00437033 0.00437507 0.0043798 0.00438454 0.00438927 0.00439401 0.00439874 0.00440348 0.00440821 0.00441295 0.00441768 0.00442242 0.00442715 0.00443189 0.00443662 0.00444136 0.00444609 0.00445083 0.00445556 0.0044603 0.00446503 0.00446977 0.0044745 0.00447924 0.00448397 0.00448871 0.00449344 0.00449818 0.00450291 0.00450765 0.00451238 0.00451712 0.00452185 0.00452659 0.00453132 0.00453606 0.00454079 0.00454553 0.00455027 0.004555 0.00455974 0.00456447 0.00456921 0.00457394 0.00457868 0.00458341 0.00458815 0.00459288 0.00459762 0.00460235 0.00460709 0.00461182 0.00461656 0.00462129 0.00462603 0.00463076 0.0046355 0.00464023 0.00464497 0.0046497 0.00465444 0.00465917 0.00466391 0.00466864 0.00467338 0.00467811 0.00468285 0.00468758 0.00469232 0.00469705 +-0.000980932 -0.000928542 -0.000838092 -0.000583234 2.14257E-05 0.000931637 0.00196316 0.0029445 0.00368197 0.00402536 0.00411145 0.0041295 0.00413621 0.00414125 0.00414603 0.00415078 0.00415553 0.00416027 0.00416502 0.00416976 0.0041745 0.00417925 0.00418399 0.00418874 0.00419348 0.00419823 0.00420297 0.00420771 0.00421246 0.0042172 0.00422195 0.00422669 0.00423144 0.00423618 0.00424092 0.00424567 0.00425041 0.00425516 0.0042599 0.00426465 0.00426939 0.00427413 0.00427888 0.00428362 0.00428837 0.00429311 0.00429786 0.0043026 0.00430734 0.00431209 0.00431683 0.00432158 0.00432632 0.00433107 0.00433581 0.00434055 0.0043453 0.00435004 0.00435479 0.00435953 0.00436428 0.00436902 0.00437376 0.00437851 0.00438325 0.004388 0.00439274 0.00439749 0.00440223 0.00440697 0.00441172 0.00441646 0.00442121 0.00442595 0.0044307 0.00443544 0.00444018 0.00444493 0.00444967 0.00445442 0.00445916 0.00446391 0.00446865 0.00447339 0.00447814 0.00448288 0.00448763 0.00449237 0.00449712 0.00450186 0.0045066 0.00451135 0.00451609 0.00452084 0.00452558 0.00453033 0.00453507 0.00453981 0.00454456 0.0045493 0.00455405 0.00455879 0.00456354 0.00456828 0.00457302 0.00457777 0.00458251 0.00458726 0.004592 0.00459675 0.00460149 0.00460623 0.00461098 0.00461572 0.00462047 0.00462521 0.00462995 0.0046347 0.00463944 0.00464419 0.00464893 0.00465368 0.00465842 0.00466316 0.00466791 0.00467265 0.0046774 0.00468214 0.00468689 0.00469163 0.00469637 0.00470112 0.00470586 +-0.000983014 -0.000930494 -0.000839769 -0.000584193 2.14941E-05 0.000932581 0.00196496 0.00294751 0.00368692 0.00403222 0.00411899 0.00413717 0.00414391 0.00414896 0.00415375 0.00415851 0.00416327 0.00416802 0.00417278 0.00417753 0.00418228 0.00418704 0.00419179 0.00419654 0.0042013 0.00420605 0.0042108 0.00421556 0.00422031 0.00422506 0.00422982 0.00423457 0.00423932 0.00424408 0.00424883 0.00425358 0.00425834 0.00426309 0.00426784 0.0042726 0.00427735 0.0042821 0.00428686 0.00429161 0.00429636 0.00430112 0.00430587 0.00431062 0.00431538 0.00432013 0.00432488 0.00432964 0.00433439 0.00433915 0.0043439 0.00434865 0.00435341 0.00435816 0.00436291 0.00436767 0.00437242 0.00437717 0.00438193 0.00438668 0.00439143 0.00439619 0.00440094 0.00440569 0.00441045 0.0044152 0.00441995 0.00442471 0.00442946 0.00443421 0.00443897 0.00444372 0.00444847 0.00445323 0.00445798 0.00446273 0.00446749 0.00447224 0.00447699 0.00448175 0.0044865 0.00449126 0.00449601 0.00450076 0.00450552 0.00451027 0.00451502 0.00451978 0.00452453 0.00452928 0.00453404 0.00453879 0.00454354 0.0045483 0.00455305 0.0045578 0.00456256 0.00456731 0.00457206 0.00457682 0.00458157 0.00458632 0.00459108 0.00459583 0.00460058 0.00460534 0.00461009 0.00461484 0.0046196 0.00462435 0.0046291 0.00463386 0.00463861 0.00464336 0.00464812 0.00465287 0.00465763 0.00466238 0.00466713 0.00467189 0.00467664 0.00468139 0.00468615 0.0046909 0.00469565 0.00470041 0.00470516 0.00470991 0.00471467 +-0.000985095 -0.000932445 -0.000841445 -0.00058515 2.15625E-05 0.000933523 0.00196676 0.00295052 0.00369186 0.00403906 0.00412652 0.00414483 0.00415161 0.00415666 0.00416147 0.00416624 0.004171 0.00417577 0.00418053 0.00418529 0.00419005 0.00419482 0.00419958 0.00420434 0.0042091 0.00421387 0.00421863 0.00422339 0.00422815 0.00423292 0.00423768 0.00424244 0.0042472 0.00425197 0.00425673 0.00426149 0.00426625 0.00427102 0.00427578 0.00428054 0.0042853 0.00429007 0.00429483 0.00429959 0.00430436 0.00430912 0.00431388 0.00431864 0.00432341 0.00432817 0.00433293 0.00433769 0.00434246 0.00434722 0.00435198 0.00435674 0.00436151 0.00436627 0.00437103 0.00437579 0.00438056 0.00438532 0.00439008 0.00439484 0.00439961 0.00440437 0.00440913 0.00441389 0.00441866 0.00442342 0.00442818 0.00443295 0.00443771 0.00444247 0.00444723 0.004452 0.00445676 0.00446152 0.00446628 0.00447105 0.00447581 0.00448057 0.00448533 0.0044901 0.00449486 0.00449962 0.00450438 0.00450915 0.00451391 0.00451867 0.00452343 0.0045282 0.00453296 0.00453772 0.00454248 0.00454725 0.00455201 0.00455677 0.00456153 0.0045663 0.00457106 0.00457582 0.00458059 0.00458535 0.00459011 0.00459487 0.00459964 0.0046044 0.00460916 0.00461392 0.00461869 0.00462345 0.00462821 0.00463297 0.00463774 0.0046425 0.00464726 0.00465202 0.00465679 0.00466155 0.00466631 0.00467107 0.00467584 0.0046806 0.00468536 0.00469012 0.00469489 0.00469965 0.00470441 0.00470918 0.00471394 0.0047187 0.00472346 +-0.000987176 -0.000934395 -0.000843119 -0.000586106 2.16309E-05 0.000934463 0.00196855 0.00295352 0.00369679 0.00404589 0.00413404 0.00415249 0.0041593 0.00416437 0.00416918 0.00417396 0.00417873 0.0041835 0.00418827 0.00419305 0.00419782 0.00420259 0.00420736 0.00421213 0.00421691 0.00422168 0.00422645 0.00423122 0.00423599 0.00424076 0.00424554 0.00425031 0.00425508 0.00425985 0.00426462 0.00426939 0.00427417 0.00427894 0.00428371 0.00428848 0.00429325 0.00429802 0.0043028 0.00430757 0.00431234 0.00431711 0.00432188 0.00432666 0.00433143 0.0043362 0.00434097 0.00434574 0.00435051 0.00435529 0.00436006 0.00436483 0.0043696 0.00437437 0.00437914 0.00438392 0.00438869 0.00439346 0.00439823 0.004403 0.00440777 0.00441255 0.00441732 0.00442209 0.00442686 0.00443163 0.00443641 0.00444118 0.00444595 0.00445072 0.00445549 0.00446026 0.00446504 0.00446981 0.00447458 0.00447935 0.00448412 0.00448889 0.00449367 0.00449844 0.00450321 0.00450798 0.00451275 0.00451752 0.0045223 0.00452707 0.00453184 0.00453661 0.00454138 0.00454616 0.00455093 0.0045557 0.00456047 0.00456524 0.00457001 0.00457479 0.00457956 0.00458433 0.0045891 0.00459387 0.00459864 0.00460342 0.00460819 0.00461296 0.00461773 0.0046225 0.00462727 0.00463205 0.00463682 0.00464159 0.00464636 0.00465113 0.00465591 0.00466068 0.00466545 0.00467022 0.00467499 0.00467976 0.00468454 0.00468931 0.00469408 0.00469885 0.00470362 0.00470839 0.00471317 0.00471794 0.00472271 0.00472748 0.00473225 +-0.000989255 -0.000936344 -0.000844793 -0.000587061 2.16994E-05 0.000935401 0.00197034 0.0029565 0.00370171 0.00405271 0.00414156 0.00416015 0.00416698 0.00417206 0.00417688 0.00418167 0.00418645 0.00419123 0.00419602 0.0042008 0.00420558 0.00421036 0.00421514 0.00421992 0.0042247 0.00422948 0.00423426 0.00423904 0.00424382 0.00424861 0.00425339 0.00425817 0.00426295 0.00426773 0.00427251 0.00427729 0.00428207 0.00428685 0.00429163 0.00429641 0.00430119 0.00430598 0.00431076 0.00431554 0.00432032 0.0043251 0.00432988 0.00433466 0.00433944 0.00434422 0.004349 0.00435378 0.00435857 0.00436335 0.00436813 0.00437291 0.00437769 0.00438247 0.00438725 0.00439203 0.00439681 0.00440159 0.00440637 0.00441116 0.00441594 0.00442072 0.0044255 0.00443028 0.00443506 0.00443984 0.00444462 0.0044494 0.00445418 0.00445896 0.00446374 0.00446853 0.00447331 0.00447809 0.00448287 0.00448765 0.00449243 0.00449721 0.00450199 0.00450677 0.00451155 0.00451633 0.00452112 0.0045259 0.00453068 0.00453546 0.00454024 0.00454502 0.0045498 0.00455458 0.00455936 0.00456414 0.00456892 0.00457371 0.00457849 0.00458327 0.00458805 0.00459283 0.00459761 0.00460239 0.00460717 0.00461195 0.00461673 0.00462151 0.00462629 0.00463108 0.00463586 0.00464064 0.00464542 0.0046502 0.00465498 0.00465976 0.00466454 0.00466932 0.0046741 0.00467888 0.00468367 0.00468845 0.00469323 0.00469801 0.00470279 0.00470757 0.00471235 0.00471713 0.00472191 0.00472669 0.00473147 0.00473626 0.00474104 +-0.000991334 -0.000938292 -0.000846465 -0.000588014 2.17679E-05 0.000936337 0.00197213 0.00295948 0.00370661 0.00405951 0.00414907 0.0041678 0.00417466 0.00417975 0.00418458 0.00418938 0.00419417 0.00419896 0.00420375 0.00420854 0.00421333 0.00421812 0.00422291 0.0042277 0.00423249 0.00423728 0.00424207 0.00424686 0.00425165 0.00425644 0.00426123 0.00426602 0.00427081 0.0042756 0.00428039 0.00428518 0.00428997 0.00429476 0.00429955 0.00430434 0.00430913 0.00431392 0.00431871 0.0043235 0.00432829 0.00433308 0.00433787 0.00434266 0.00434745 0.00435224 0.00435703 0.00436182 0.00436661 0.0043714 0.00437619 0.00438098 0.00438577 0.00439056 0.00439535 0.00440014 0.00440493 0.00440972 0.00441451 0.0044193 0.00442409 0.00442888 0.00443367 0.00443846 0.00444325 0.00444804 0.00445283 0.00445762 0.00446241 0.0044672 0.00447199 0.00447678 0.00448157 0.00448636 0.00449115 0.00449594 0.00450073 0.00450552 0.00451031 0.0045151 0.00451989 0.00452468 0.00452947 0.00453426 0.00453905 0.00454384 0.00454863 0.00455342 0.00455821 0.004563 0.00456779 0.00457258 0.00457737 0.00458216 0.00458695 0.00459174 0.00459653 0.00460132 0.00460611 0.0046109 0.00461569 0.00462048 0.00462527 0.00463006 0.00463485 0.00463964 0.00464443 0.00464922 0.00465401 0.0046588 0.00466359 0.00466838 0.00467317 0.00467796 0.00468275 0.00468754 0.00469233 0.00469712 0.00470191 0.0047067 0.00471149 0.00471628 0.00472107 0.00472586 0.00473065 0.00473544 0.00474023 0.00474502 0.00474981 +-0.000993412 -0.00094024 -0.000848137 -0.000588965 2.18365E-05 0.000937271 0.0019739 0.00296245 0.00371149 0.00406631 0.00415658 0.00417544 0.00418233 0.00418743 0.00419228 0.00419708 0.00420188 0.00420668 0.00421148 0.00421628 0.00422108 0.00422588 0.00423068 0.00423548 0.00424027 0.00424507 0.00424987 0.00425467 0.00425947 0.00426427 0.00426907 0.00427387 0.00427867 0.00428347 0.00428827 0.00429306 0.00429786 0.00430266 0.00430746 0.00431226 0.00431706 0.00432186 0.00432666 0.00433146 0.00433626 0.00434106 0.00434586 0.00435065 0.00435545 0.00436025 0.00436505 0.00436985 0.00437465 0.00437945 0.00438425 0.00438905 0.00439385 0.00439865 0.00440345 0.00440824 0.00441304 0.00441784 0.00442264 0.00442744 0.00443224 0.00443704 0.00444184 0.00444664 0.00445144 0.00445624 0.00446104 0.00446583 0.00447063 0.00447543 0.00448023 0.00448503 0.00448983 0.00449463 0.00449943 0.00450423 0.00450903 0.00451383 0.00451862 0.00452342 0.00452822 0.00453302 0.00453782 0.00454262 0.00454742 0.00455222 0.00455702 0.00456182 0.00456662 0.00457142 0.00457621 0.00458101 0.00458581 0.00459061 0.00459541 0.00460021 0.00460501 0.00460981 0.00461461 0.00461941 0.00462421 0.00462901 0.0046338 0.0046386 0.0046434 0.0046482 0.004653 0.0046578 0.0046626 0.0046674 0.0046722 0.004677 0.0046818 0.0046866 0.00469139 0.00469619 0.00470099 0.00470579 0.00471059 0.00471539 0.00472019 0.00472499 0.00472979 0.00473459 0.00473939 0.00474418 0.00474898 0.00475378 0.00475858 +-0.00099549 -0.000942187 -0.000849807 -0.000589915 2.19051E-05 0.000938203 0.00197568 0.00296541 0.00371636 0.0040731 0.00416408 0.00418308 0.00418999 0.00419511 0.00419996 0.00420478 0.00420959 0.00421439 0.0042192 0.00422401 0.00422882 0.00423363 0.00423844 0.00424324 0.00424805 0.00425286 0.00425767 0.00426248 0.00426729 0.00427209 0.0042769 0.00428171 0.00428652 0.00429133 0.00429613 0.00430094 0.00430575 0.00431056 0.00431537 0.00432018 0.00432498 0.00432979 0.0043346 0.00433941 0.00434422 0.00434903 0.00435383 0.00435864 0.00436345 0.00436826 0.00437307 0.00437788 0.00438268 0.00438749 0.0043923 0.00439711 0.00440192 0.00440673 0.00441153 0.00441634 0.00442115 0.00442596 0.00443077 0.00443557 0.00444038 0.00444519 0.00445 0.00445481 0.00445962 0.00446442 0.00446923 0.00447404 0.00447885 0.00448366 0.00448847 0.00449327 0.00449808 0.00450289 0.0045077 0.00451251 0.00451732 0.00452212 0.00452693 0.00453174 0.00453655 0.00454136 0.00454617 0.00455097 0.00455578 0.00456059 0.0045654 0.00457021 0.00457501 0.00457982 0.00458463 0.00458944 0.00459425 0.00459906 0.00460386 0.00460867 0.00461348 0.00461829 0.0046231 0.00462791 0.00463271 0.00463752 0.00464233 0.00464714 0.00465195 0.00465676 0.00466156 0.00466637 0.00467118 0.00467599 0.0046808 0.0046856 0.00469041 0.00469522 0.00470003 0.00470484 0.00470965 0.00471445 0.00471926 0.00472407 0.00472888 0.00473369 0.0047385 0.0047433 0.00474811 0.00475292 0.00475773 0.00476254 0.00476735 +-0.000997567 -0.000944133 -0.000851476 -0.000590864 2.19738E-05 0.000939132 0.00197745 0.00296837 0.00372122 0.00407987 0.00417157 0.00419071 0.00419765 0.00420278 0.00420764 0.00421247 0.00421728 0.0042221 0.00422692 0.00423174 0.00423655 0.00424137 0.00424619 0.00425101 0.00425582 0.00426064 0.00426546 0.00427028 0.00427509 0.00427991 0.00428473 0.00428955 0.00429436 0.00429918 0.004304 0.00430882 0.00431363 0.00431845 0.00432327 0.00432808 0.0043329 0.00433772 0.00434254 0.00434735 0.00435217 0.00435699 0.00436181 0.00436662 0.00437144 0.00437626 0.00438108 0.00438589 0.00439071 0.00439553 0.00440035 0.00440516 0.00440998 0.0044148 0.00441962 0.00442443 0.00442925 0.00443407 0.00443888 0.0044437 0.00444852 0.00445334 0.00445815 0.00446297 0.00446779 0.00447261 0.00447742 0.00448224 0.00448706 0.00449188 0.00449669 0.00450151 0.00450633 0.00451115 0.00451596 0.00452078 0.0045256 0.00453042 0.00453523 0.00454005 0.00454487 0.00454968 0.0045545 0.00455932 0.00456414 0.00456895 0.00457377 0.00457859 0.00458341 0.00458822 0.00459304 0.00459786 0.00460268 0.00460749 0.00461231 0.00461713 0.00462195 0.00462676 0.00463158 0.0046364 0.00464122 0.00464603 0.00465085 0.00465567 0.00466048 0.0046653 0.00467012 0.00467494 0.00467975 0.00468457 0.00468939 0.00469421 0.00469902 0.00470384 0.00470866 0.00471348 0.00471829 0.00472311 0.00472793 0.00473275 0.00473756 0.00474238 0.0047472 0.00475202 0.00475683 0.00476165 0.00476647 0.00477128 0.0047761 +-0.000999643 -0.000946078 -0.000853144 -0.000591811 2.20425E-05 0.00094006 0.00197921 0.00297131 0.00372607 0.00408663 0.00417905 0.00419833 0.0042053 0.00421044 0.00421532 0.00422015 0.00422498 0.0042298 0.00423463 0.00423946 0.00424428 0.00424911 0.00425394 0.00425876 0.00426359 0.00426842 0.00427324 0.00427807 0.0042829 0.00428772 0.00429255 0.00429738 0.0043022 0.00430703 0.00431185 0.00431668 0.00432151 0.00432633 0.00433116 0.00433599 0.00434081 0.00434564 0.00435047 0.00435529 0.00436012 0.00436495 0.00436977 0.0043746 0.00437943 0.00438425 0.00438908 0.00439391 0.00439873 0.00440356 0.00440839 0.00441321 0.00441804 0.00442286 0.00442769 0.00443252 0.00443734 0.00444217 0.004447 0.00445182 0.00445665 0.00446148 0.0044663 0.00447113 0.00447596 0.00448078 0.00448561 0.00449044 0.00449526 0.00450009 0.00450492 0.00450974 0.00451457 0.00451939 0.00452422 0.00452905 0.00453387 0.0045387 0.00454353 0.00454835 0.00455318 0.00455801 0.00456283 0.00456766 0.00457249 0.00457731 0.00458214 0.00458697 0.00459179 0.00459662 0.00460145 0.00460627 0.0046111 0.00461592 0.00462075 0.00462558 0.0046304 0.00463523 0.00464006 0.00464488 0.00464971 0.00465454 0.00465936 0.00466419 0.00466902 0.00467384 0.00467867 0.0046835 0.00468832 0.00469315 0.00469798 0.0047028 0.00470763 0.00471245 0.00471728 0.00472211 0.00472693 0.00473176 0.00473659 0.00474141 0.00474624 0.00475107 0.00475589 0.00476072 0.00476555 0.00477037 0.0047752 0.00478003 0.00478485 +-0.00100172 -0.000948023 -0.000854811 -0.000592757 2.21113E-05 0.000940986 0.00198097 0.00297425 0.0037309 0.00409338 0.00418653 0.00420595 0.00421295 0.0042181 0.00422299 0.00422783 0.00423266 0.0042375 0.00424234 0.00424717 0.00425201 0.00425684 0.00426168 0.00426651 0.00427135 0.00427619 0.00428102 0.00428586 0.00429069 0.00429553 0.00430036 0.0043052 0.00431003 0.00431487 0.00431971 0.00432454 0.00432938 0.00433421 0.00433905 0.00434388 0.00434872 0.00435356 0.00435839 0.00436323 0.00436806 0.0043729 0.00437773 0.00438257 0.0043874 0.00439224 0.00439708 0.00440191 0.00440675 0.00441158 0.00441642 0.00442125 0.00442609 0.00443093 0.00443576 0.0044406 0.00444543 0.00445027 0.0044551 0.00445994 0.00446477 0.00446961 0.00447445 0.00447928 0.00448412 0.00448895 0.00449379 0.00449862 0.00450346 0.00450829 0.00451313 0.00451797 0.0045228 0.00452764 0.00453247 0.00453731 0.00454214 0.00454698 0.00455182 0.00455665 0.00456149 0.00456632 0.00457116 0.00457599 0.00458083 0.00458566 0.0045905 0.00459534 0.00460017 0.00460501 0.00460984 0.00461468 0.00461951 0.00462435 0.00462919 0.00463402 0.00463886 0.00464369 0.00464853 0.00465336 0.0046582 0.00466303 0.00466787 0.00467271 0.00467754 0.00468238 0.00468721 0.00469205 0.00469688 0.00470172 0.00470655 0.00471139 0.00471623 0.00472106 0.0047259 0.00473073 0.00473557 0.0047404 0.00474524 0.00475008 0.00475491 0.00475975 0.00476458 0.00476942 0.00477425 0.00477909 0.00478392 0.00478876 0.0047936 +-0.00100379 -0.000949967 -0.000856476 -0.000593701 2.21801E-05 0.000941909 0.00198273 0.00297717 0.00373571 0.00410012 0.00419399 0.00421356 0.00422059 0.00422576 0.00423065 0.0042355 0.00424035 0.00424519 0.00425004 0.00425488 0.00425973 0.00426457 0.00426941 0.00427426 0.0042791 0.00428395 0.00428879 0.00429364 0.00429848 0.00430333 0.00430817 0.00431302 0.00431786 0.00432271 0.00432755 0.0043324 0.00433724 0.00434209 0.00434693 0.00435177 0.00435662 0.00436146 0.00436631 0.00437115 0.004376 0.00438084 0.00438569 0.00439053 0.00439538 0.00440022 0.00440507 0.00440991 0.00441476 0.0044196 0.00442445 0.00442929 0.00443413 0.00443898 0.00444382 0.00444867 0.00445351 0.00445836 0.0044632 0.00446805 0.00447289 0.00447774 0.00448258 0.00448743 0.00449227 0.00449712 0.00450196 0.00450681 0.00451165 0.00451649 0.00452134 0.00452618 0.00453103 0.00453587 0.00454072 0.00454556 0.00455041 0.00455525 0.0045601 0.00456494 0.00456979 0.00457463 0.00457948 0.00458432 0.00458917 0.00459401 0.00459885 0.0046037 0.00460854 0.00461339 0.00461823 0.00462308 0.00462792 0.00463277 0.00463761 0.00464246 0.0046473 0.00465215 0.00465699 0.00466184 0.00466668 0.00467153 0.00467637 0.00468121 0.00468606 0.0046909 0.00469575 0.00470059 0.00470544 0.00471028 0.00471513 0.00471997 0.00472482 0.00472966 0.00473451 0.00473935 0.0047442 0.00474904 0.00475389 0.00475873 0.00476358 0.00476842 0.00477326 0.00477811 0.00478295 0.0047878 0.00479264 0.00479749 0.00480233 +-0.00100587 -0.00095191 -0.000858141 -0.000594644 2.2249E-05 0.000942831 0.00198448 0.00298009 0.00374052 0.00410685 0.00420146 0.00422117 0.00422823 0.00423341 0.00423831 0.00424317 0.00424802 0.00425288 0.00425773 0.00426258 0.00426744 0.00427229 0.00427714 0.004282 0.00428685 0.00429171 0.00429656 0.00430141 0.00430627 0.00431112 0.00431598 0.00432083 0.00432568 0.00433054 0.00433539 0.00434024 0.0043451 0.00434995 0.00435481 0.00435966 0.00436451 0.00436937 0.00437422 0.00437907 0.00438393 0.00438878 0.00439364 0.00439849 0.00440334 0.0044082 0.00441305 0.00441791 0.00442276 0.00442761 0.00443247 0.00443732 0.00444217 0.00444703 0.00445188 0.00445674 0.00446159 0.00446644 0.0044713 0.00447615 0.004481 0.00448586 0.00449071 0.00449557 0.00450042 0.00450527 0.00451013 0.00451498 0.00451983 0.00452469 0.00452954 0.0045344 0.00453925 0.0045441 0.00454896 0.00455381 0.00455867 0.00456352 0.00456837 0.00457323 0.00457808 0.00458293 0.00458779 0.00459264 0.0045975 0.00460235 0.0046072 0.00461206 0.00461691 0.00462176 0.00462662 0.00463147 0.00463633 0.00464118 0.00464603 0.00465089 0.00465574 0.0046606 0.00466545 0.0046703 0.00467516 0.00468001 0.00468486 0.00468972 0.00469457 0.00469943 0.00470428 0.00470913 0.00471399 0.00471884 0.00472369 0.00472855 0.0047334 0.00473826 0.00474311 0.00474796 0.00475282 0.00475767 0.00476252 0.00476738 0.00477223 0.00477709 0.00478194 0.00478679 0.00479165 0.0047965 0.00480136 0.00480621 0.00481106 +-0.00100794 -0.000953852 -0.000859804 -0.000595586 2.23179E-05 0.000943751 0.00198623 0.002983 0.00374531 0.00411357 0.00420891 0.00422877 0.00423586 0.00424105 0.00424596 0.00425083 0.00425569 0.00426055 0.00426542 0.00427028 0.00427514 0.00428001 0.00428487 0.00428973 0.00429459 0.00429946 0.00430432 0.00430918 0.00431405 0.00431891 0.00432377 0.00432864 0.0043335 0.00433836 0.00434322 0.00434809 0.00435295 0.00435781 0.00436268 0.00436754 0.0043724 0.00437726 0.00438213 0.00438699 0.00439185 0.00439672 0.00440158 0.00440644 0.0044113 0.00441617 0.00442103 0.00442589 0.00443076 0.00443562 0.00444048 0.00444534 0.00445021 0.00445507 0.00445993 0.0044648 0.00446966 0.00447452 0.00447938 0.00448425 0.00448911 0.00449397 0.00449884 0.0045037 0.00450856 0.00451342 0.00451829 0.00452315 0.00452801 0.00453288 0.00453774 0.0045426 0.00454747 0.00455233 0.00455719 0.00456205 0.00456692 0.00457178 0.00457664 0.00458151 0.00458637 0.00459123 0.00459609 0.00460096 0.00460582 0.00461068 0.00461555 0.00462041 0.00462527 0.00463013 0.004635 0.00463986 0.00464472 0.00464959 0.00465445 0.00465931 0.00466417 0.00466904 0.0046739 0.00467876 0.00468363 0.00468849 0.00469335 0.00469821 0.00470308 0.00470794 0.0047128 0.00471767 0.00472253 0.00472739 0.00473225 0.00473712 0.00474198 0.00474684 0.00475171 0.00475657 0.00476143 0.0047663 0.00477116 0.00477602 0.00478088 0.00478575 0.00479061 0.00479547 0.00480034 0.0048052 0.00481006 0.00481492 0.00481979 +-0.00101001 -0.000955793 -0.000861467 -0.000596526 2.23869E-05 0.000944668 0.00198797 0.0029859 0.00375008 0.00412027 0.00421636 0.00423636 0.00424348 0.00424868 0.0042536 0.00425848 0.00426336 0.00426823 0.0042731 0.00427797 0.00428284 0.00428772 0.00429259 0.00429746 0.00430233 0.0043072 0.00431208 0.00431695 0.00432182 0.00432669 0.00433156 0.00433644 0.00434131 0.00434618 0.00435105 0.00435592 0.00436079 0.00436567 0.00437054 0.00437541 0.00438028 0.00438515 0.00439003 0.0043949 0.00439977 0.00440464 0.00440951 0.00441439 0.00441926 0.00442413 0.004429 0.00443387 0.00443875 0.00444362 0.00444849 0.00445336 0.00445823 0.00446311 0.00446798 0.00447285 0.00447772 0.00448259 0.00448747 0.00449234 0.00449721 0.00450208 0.00450695 0.00451183 0.0045167 0.00452157 0.00452644 0.00453131 0.00453619 0.00454106 0.00454593 0.0045508 0.00455567 0.00456055 0.00456542 0.00457029 0.00457516 0.00458003 0.00458491 0.00458978 0.00459465 0.00459952 0.00460439 0.00460927 0.00461414 0.00461901 0.00462388 0.00462875 0.00463363 0.0046385 0.00464337 0.00464824 0.00465311 0.00465799 0.00466286 0.00466773 0.0046726 0.00467747 0.00468234 0.00468722 0.00469209 0.00469696 0.00470183 0.0047067 0.00471158 0.00471645 0.00472132 0.00472619 0.00473106 0.00473594 0.00474081 0.00474568 0.00475055 0.00475542 0.0047603 0.00476517 0.00477004 0.00477491 0.00477978 0.00478466 0.00478953 0.0047944 0.00479927 0.00480414 0.00480902 0.00481389 0.00481876 0.00482363 0.0048285 +-0.00101208 -0.000957734 -0.000863128 -0.000597464 2.24559E-05 0.000945584 0.00198971 0.0029888 0.00375484 0.00412697 0.0042238 0.00424395 0.0042511 0.00425631 0.00426124 0.00426613 0.00427101 0.00427589 0.00428078 0.00428566 0.00429054 0.00429542 0.0043003 0.00430518 0.00431006 0.00431494 0.00431982 0.00432471 0.00432959 0.00433447 0.00433935 0.00434423 0.00434911 0.00435399 0.00435887 0.00436375 0.00436863 0.00437352 0.0043784 0.00438328 0.00438816 0.00439304 0.00439792 0.0044028 0.00440768 0.00441256 0.00441745 0.00442233 0.00442721 0.00443209 0.00443697 0.00444185 0.00444673 0.00445161 0.00445649 0.00446137 0.00446626 0.00447114 0.00447602 0.0044809 0.00448578 0.00449066 0.00449554 0.00450042 0.0045053 0.00451018 0.00451507 0.00451995 0.00452483 0.00452971 0.00453459 0.00453947 0.00454435 0.00454923 0.00455411 0.004559 0.00456388 0.00456876 0.00457364 0.00457852 0.0045834 0.00458828 0.00459316 0.00459804 0.00460292 0.00460781 0.00461269 0.00461757 0.00462245 0.00462733 0.00463221 0.00463709 0.00464197 0.00464685 0.00465174 0.00465662 0.0046615 0.00466638 0.00467126 0.00467614 0.00468102 0.0046859 0.00469078 0.00469566 0.00470055 0.00470543 0.00471031 0.00471519 0.00472007 0.00472495 0.00472983 0.00473471 0.00473959 0.00474447 0.00474936 0.00475424 0.00475912 0.004764 0.00476888 0.00477376 0.00477864 0.00478352 0.0047884 0.00479329 0.00479817 0.00480305 0.00480793 0.00481281 0.00481769 0.00482257 0.00482745 0.00483233 0.00483721 +-0.00101416 -0.000959674 -0.000864788 -0.000598401 2.25249E-05 0.000946498 0.00199144 0.00299168 0.00375959 0.00413365 0.00423123 0.00425153 0.00425871 0.00426394 0.00426888 0.00427377 0.00427867 0.00428356 0.00428845 0.00429334 0.00429823 0.00430312 0.00430801 0.0043129 0.00431779 0.00432268 0.00432757 0.00433246 0.00433735 0.00434224 0.00434713 0.00435202 0.00435691 0.0043618 0.00436669 0.00437158 0.00437647 0.00438136 0.00438625 0.00439114 0.00439603 0.00440092 0.00440581 0.0044107 0.00441559 0.00442048 0.00442537 0.00443026 0.00443515 0.00444004 0.00444493 0.00444982 0.00445471 0.0044596 0.00446449 0.00446938 0.00447427 0.00447916 0.00448405 0.00448894 0.00449383 0.00449872 0.00450361 0.0045085 0.00451339 0.00451828 0.00452317 0.00452806 0.00453295 0.00453784 0.00454273 0.00454762 0.00455251 0.0045574 0.00456229 0.00456718 0.00457207 0.00457696 0.00458185 0.00458674 0.00459163 0.00459652 0.00460141 0.0046063 0.00461119 0.00461608 0.00462097 0.00462586 0.00463075 0.00463564 0.00464053 0.00464542 0.00465031 0.0046552 0.00466009 0.00466498 0.00466987 0.00467477 0.00467966 0.00468455 0.00468944 0.00469433 0.00469922 0.00470411 0.004709 0.00471389 0.00471878 0.00472367 0.00472856 0.00473345 0.00473834 0.00474323 0.00474812 0.00475301 0.0047579 0.00476279 0.00476768 0.00477257 0.00477746 0.00478235 0.00478724 0.00479213 0.00479702 0.00480191 0.0048068 0.00481169 0.00481658 0.00482147 0.00482636 0.00483125 0.00483614 0.00484103 0.00484592 +-0.00101623 -0.000961613 -0.000866446 -0.000599337 2.2594E-05 0.000947409 0.00199317 0.00299456 0.00376433 0.00414032 0.00423866 0.00425911 0.00426632 0.00427156 0.00427651 0.00428141 0.00428631 0.00429121 0.00429611 0.00430101 0.00430591 0.00431081 0.00431571 0.00432061 0.00432551 0.00433041 0.0043353 0.0043402 0.0043451 0.00435 0.0043549 0.0043598 0.0043647 0.0043696 0.0043745 0.0043794 0.0043843 0.0043892 0.00439409 0.00439899 0.00440389 0.00440879 0.00441369 0.00441859 0.00442349 0.00442839 0.00443329 0.00443819 0.00444309 0.00444799 0.00445288 0.00445778 0.00446268 0.00446758 0.00447248 0.00447738 0.00448228 0.00448718 0.00449208 0.00449698 0.00450188 0.00450678 0.00451167 0.00451657 0.00452147 0.00452637 0.00453127 0.00453617 0.00454107 0.00454597 0.00455087 0.00455577 0.00456067 0.00456557 0.00457046 0.00457536 0.00458026 0.00458516 0.00459006 0.00459496 0.00459986 0.00460476 0.00460966 0.00461456 0.00461946 0.00462436 0.00462925 0.00463415 0.00463905 0.00464395 0.00464885 0.00465375 0.00465865 0.00466355 0.00466845 0.00467335 0.00467825 0.00468315 0.00468804 0.00469294 0.00469784 0.00470274 0.00470764 0.00471254 0.00471744 0.00472234 0.00472724 0.00473214 0.00473704 0.00474194 0.00474683 0.00475173 0.00475663 0.00476153 0.00476643 0.00477133 0.00477623 0.00478113 0.00478603 0.00479093 0.00479583 0.00480073 0.00480563 0.00481052 0.00481542 0.00482032 0.00482522 0.00483012 0.00483502 0.00483992 0.00484482 0.00484972 0.00485462 +-0.0010183 -0.000963551 -0.000868104 -0.000600271 2.26631E-05 0.000948319 0.0019949 0.00299742 0.00376905 0.00414698 0.00424608 0.00426668 0.00427392 0.00427917 0.00428413 0.00428904 0.00429395 0.00429886 0.00430377 0.00430868 0.00431359 0.00431849 0.0043234 0.00432831 0.00433322 0.00433813 0.00434304 0.00434794 0.00435285 0.00435776 0.00436267 0.00436758 0.00437249 0.00437739 0.0043823 0.00438721 0.00439212 0.00439703 0.00440193 0.00440684 0.00441175 0.00441666 0.00442157 0.00442648 0.00443138 0.00443629 0.0044412 0.00444611 0.00445102 0.00445592 0.00446083 0.00446574 0.00447065 0.00447556 0.00448047 0.00448537 0.00449028 0.00449519 0.0045001 0.00450501 0.00450992 0.00451482 0.00451973 0.00452464 0.00452955 0.00453446 0.00453936 0.00454427 0.00454918 0.00455409 0.004559 0.00456391 0.00456881 0.00457372 0.00457863 0.00458354 0.00458845 0.00459336 0.00459826 0.00460317 0.00460808 0.00461299 0.0046179 0.0046228 0.00462771 0.00463262 0.00463753 0.00464244 0.00464735 0.00465225 0.00465716 0.00466207 0.00466698 0.00467189 0.0046768 0.0046817 0.00468661 0.00469152 0.00469643 0.00470134 0.00470624 0.00471115 0.00471606 0.00472097 0.00472588 0.00473079 0.00473569 0.0047406 0.00474551 0.00475042 0.00475533 0.00476024 0.00476514 0.00477005 0.00477496 0.00477987 0.00478478 0.00478968 0.00479459 0.0047995 0.00480441 0.00480932 0.00481423 0.00481913 0.00482404 0.00482895 0.00483386 0.00483877 0.00484368 0.00484858 0.00485349 0.0048584 0.00486331 +-0.00102037 -0.000965489 -0.000869761 -0.000601204 2.27323E-05 0.000949227 0.00199662 0.00300028 0.00377376 0.00415363 0.00425349 0.00427424 0.00428152 0.00428678 0.00429175 0.00429667 0.00430159 0.00430651 0.00431142 0.00431634 0.00432126 0.00432617 0.00433109 0.00433601 0.00434093 0.00434584 0.00435076 0.00435568 0.0043606 0.00436551 0.00437043 0.00437535 0.00438026 0.00438518 0.0043901 0.00439502 0.00439993 0.00440485 0.00440977 0.00441469 0.0044196 0.00442452 0.00442944 0.00443435 0.00443927 0.00444419 0.00444911 0.00445402 0.00445894 0.00446386 0.00446878 0.00447369 0.00447861 0.00448353 0.00448845 0.00449336 0.00449828 0.0045032 0.00450811 0.00451303 0.00451795 0.00452287 0.00452778 0.0045327 0.00453762 0.00454254 0.00454745 0.00455237 0.00455729 0.0045622 0.00456712 0.00457204 0.00457696 0.00458187 0.00458679 0.00459171 0.00459663 0.00460154 0.00460646 0.00461138 0.00461629 0.00462121 0.00462613 0.00463105 0.00463596 0.00464088 0.0046458 0.00465072 0.00465563 0.00466055 0.00466547 0.00467038 0.0046753 0.00468022 0.00468514 0.00469005 0.00469497 0.00469989 0.00470481 0.00470972 0.00471464 0.00471956 0.00472447 0.00472939 0.00473431 0.00473923 0.00474414 0.00474906 0.00475398 0.0047589 0.00476381 0.00476873 0.00477365 0.00477856 0.00478348 0.0047884 0.00479332 0.00479823 0.00480315 0.00480807 0.00481299 0.0048179 0.00482282 0.00482774 0.00483265 0.00483757 0.00484249 0.00484741 0.00485232 0.00485724 0.00486216 0.00486708 0.00487199 +-0.00102243 -0.000967426 -0.000871416 -0.000602135 2.28016E-05 0.000950133 0.00199834 0.00300313 0.00377845 0.00416027 0.0042609 0.0042818 0.00428911 0.00429438 0.00429936 0.00430429 0.00430922 0.00431414 0.00431907 0.004324 0.00432892 0.00433385 0.00433878 0.0043437 0.00434863 0.00435355 0.00435848 0.00436341 0.00436833 0.00437326 0.00437819 0.00438311 0.00438804 0.00439297 0.00439789 0.00440282 0.00440774 0.00441267 0.0044176 0.00442252 0.00442745 0.00443238 0.0044373 0.00444223 0.00444715 0.00445208 0.00445701 0.00446193 0.00446686 0.00447179 0.00447671 0.00448164 0.00448657 0.00449149 0.00449642 0.00450134 0.00450627 0.0045112 0.00451612 0.00452105 0.00452598 0.0045309 0.00453583 0.00454075 0.00454568 0.00455061 0.00455553 0.00456046 0.00456539 0.00457031 0.00457524 0.00458017 0.00458509 0.00459002 0.00459494 0.00459987 0.0046048 0.00460972 0.00461465 0.00461958 0.0046245 0.00462943 0.00463436 0.00463928 0.00464421 0.00464913 0.00465406 0.00465899 0.00466391 0.00466884 0.00467377 0.00467869 0.00468362 0.00468854 0.00469347 0.0046984 0.00470332 0.00470825 0.00471318 0.0047181 0.00472303 0.00472796 0.00473288 0.00473781 0.00474273 0.00474766 0.00475259 0.00475751 0.00476244 0.00476737 0.00477229 0.00477722 0.00478214 0.00478707 0.004792 0.00479692 0.00480185 0.00480678 0.0048117 0.00481663 0.00482156 0.00482648 0.00483141 0.00483633 0.00484126 0.00484619 0.00485111 0.00485604 0.00486097 0.00486589 0.00487082 0.00487574 0.00488067 +-0.0010245 -0.000969362 -0.00087307 -0.000603065 2.28708E-05 0.000951037 0.00200005 0.00300598 0.00378313 0.0041669 0.0042683 0.00428935 0.00429669 0.00430198 0.00430696 0.0043119 0.00431684 0.00432178 0.00432671 0.00433165 0.00433658 0.00434152 0.00434645 0.00435139 0.00435632 0.00436126 0.00436619 0.00437113 0.00437607 0.004381 0.00438594 0.00439087 0.00439581 0.00440074 0.00440568 0.00441061 0.00441555 0.00442048 0.00442542 0.00443035 0.00443529 0.00444023 0.00444516 0.0044501 0.00445503 0.00445997 0.0044649 0.00446984 0.00447477 0.00447971 0.00448464 0.00448958 0.00449451 0.00449945 0.00450439 0.00450932 0.00451426 0.00451919 0.00452413 0.00452906 0.004534 0.00453893 0.00454387 0.0045488 0.00455374 0.00455867 0.00456361 0.00456854 0.00457348 0.00457842 0.00458335 0.00458829 0.00459322 0.00459816 0.00460309 0.00460803 0.00461296 0.0046179 0.00462283 0.00462777 0.0046327 0.00463764 0.00464258 0.00464751 0.00465245 0.00465738 0.00466232 0.00466725 0.00467219 0.00467712 0.00468206 0.00468699 0.00469193 0.00469686 0.0047018 0.00470673 0.00471167 0.00471661 0.00472154 0.00472648 0.00473141 0.00473635 0.00474128 0.00474622 0.00475115 0.00475609 0.00476102 0.00476596 0.00477089 0.00477583 0.00478077 0.0047857 0.00479064 0.00479557 0.00480051 0.00480544 0.00481038 0.00481531 0.00482025 0.00482518 0.00483012 0.00483505 0.00483999 0.00484492 0.00484986 0.0048548 0.00485973 0.00486467 0.0048696 0.00487454 0.00487947 0.00488441 0.00488934 +-0.00102657 -0.000971297 -0.000874723 -0.000603993 2.29402E-05 0.000951939 0.00200176 0.00300881 0.0037878 0.00417351 0.00427569 0.0042969 0.00430427 0.00430957 0.00431456 0.00431951 0.00432446 0.0043294 0.00433435 0.00433929 0.00434424 0.00434918 0.00435413 0.00435907 0.00436401 0.00436896 0.0043739 0.00437885 0.00438379 0.00438874 0.00439368 0.00439863 0.00440357 0.00440851 0.00441346 0.0044184 0.00442335 0.00442829 0.00443324 0.00443818 0.00444312 0.00444807 0.00445301 0.00445796 0.0044629 0.00446785 0.00447279 0.00447774 0.00448268 0.00448762 0.00449257 0.00449751 0.00450246 0.0045074 0.00451235 0.00451729 0.00452223 0.00452718 0.00453212 0.00453707 0.00454201 0.00454696 0.0045519 0.00455685 0.00456179 0.00456673 0.00457168 0.00457662 0.00458157 0.00458651 0.00459146 0.0045964 0.00460135 0.00460629 0.00461123 0.00461618 0.00462112 0.00462607 0.00463101 0.00463596 0.0046409 0.00464584 0.00465079 0.00465573 0.00466068 0.00466562 0.00467057 0.00467551 0.00468046 0.0046854 0.00469034 0.00469529 0.00470023 0.00470518 0.00471012 0.00471507 0.00472001 0.00472496 0.0047299 0.00473484 0.00473979 0.00474473 0.00474968 0.00475462 0.00475957 0.00476451 0.00476945 0.0047744 0.00477934 0.00478429 0.00478923 0.00479418 0.00479912 0.00480407 0.00480901 0.00481395 0.0048189 0.00482384 0.00482879 0.00483373 0.00483868 0.00484362 0.00484856 0.00485351 0.00485845 0.0048634 0.00486834 0.00487329 0.00487823 0.00488318 0.00488812 0.00489306 0.00489801 +-0.00102863 -0.000973232 -0.000876375 -0.00060492 2.30095E-05 0.000952839 0.00200346 0.00301164 0.00379246 0.00418012 0.00428308 0.00430444 0.00431184 0.00431715 0.00432216 0.00432712 0.00433207 0.00433702 0.00434198 0.00434693 0.00435189 0.00435684 0.00436179 0.00436675 0.0043717 0.00437665 0.00438161 0.00438656 0.00439151 0.00439647 0.00440142 0.00440637 0.00441133 0.00441628 0.00442123 0.00442619 0.00443114 0.00443609 0.00444105 0.004446 0.00445095 0.00445591 0.00446086 0.00446581 0.00447077 0.00447572 0.00448067 0.00448563 0.00449058 0.00449553 0.00450049 0.00450544 0.00451039 0.00451535 0.0045203 0.00452525 0.00453021 0.00453516 0.00454011 0.00454507 0.00455002 0.00455498 0.00455993 0.00456488 0.00456984 0.00457479 0.00457974 0.0045847 0.00458965 0.0045946 0.00459956 0.00460451 0.00460946 0.00461442 0.00461937 0.00462432 0.00462928 0.00463423 0.00463918 0.00464414 0.00464909 0.00465404 0.004659 0.00466395 0.0046689 0.00467386 0.00467881 0.00468376 0.00468872 0.00469367 0.00469862 0.00470358 0.00470853 0.00471348 0.00471844 0.00472339 0.00472834 0.0047333 0.00473825 0.00474321 0.00474816 0.00475311 0.00475807 0.00476302 0.00476797 0.00477293 0.00477788 0.00478283 0.00478779 0.00479274 0.00479769 0.00480265 0.0048076 0.00481255 0.00481751 0.00482246 0.00482741 0.00483237 0.00483732 0.00484227 0.00484723 0.00485218 0.00485713 0.00486209 0.00486704 0.00487199 0.00487695 0.0048819 0.00488685 0.00489181 0.00489676 0.00490171 0.00490667 +-0.0010307 -0.000975165 -0.000878026 -0.000605846 2.30789E-05 0.000953737 0.00200516 0.00301445 0.0037971 0.00418671 0.00429045 0.00431198 0.00431941 0.00432473 0.00432974 0.00433471 0.00433968 0.00434464 0.0043496 0.00435457 0.00435953 0.00436449 0.00436945 0.00437441 0.00437938 0.00438434 0.0043893 0.00439426 0.00439923 0.00440419 0.00440915 0.00441411 0.00441908 0.00442404 0.004429 0.00443396 0.00443893 0.00444389 0.00444885 0.00445381 0.00445878 0.00446374 0.0044687 0.00447366 0.00447863 0.00448359 0.00448855 0.00449351 0.00449848 0.00450344 0.0045084 0.00451336 0.00451833 0.00452329 0.00452825 0.00453321 0.00453818 0.00454314 0.0045481 0.00455306 0.00455803 0.00456299 0.00456795 0.00457291 0.00457787 0.00458284 0.0045878 0.00459276 0.00459772 0.00460269 0.00460765 0.00461261 0.00461757 0.00462254 0.0046275 0.00463246 0.00463742 0.00464239 0.00464735 0.00465231 0.00465727 0.00466224 0.0046672 0.00467216 0.00467712 0.00468209 0.00468705 0.00469201 0.00469697 0.00470194 0.0047069 0.00471186 0.00471682 0.00472179 0.00472675 0.00473171 0.00473667 0.00474164 0.0047466 0.00475156 0.00475652 0.00476149 0.00476645 0.00477141 0.00477637 0.00478133 0.0047863 0.00479126 0.00479622 0.00480118 0.00480615 0.00481111 0.00481607 0.00482103 0.004826 0.00483096 0.00483592 0.00484088 0.00484585 0.00485081 0.00485577 0.00486073 0.0048657 0.00487066 0.00487562 0.00488058 0.00488555 0.00489051 0.00489547 0.00490043 0.0049054 0.00491036 0.00491532 +-0.00103276 -0.000977098 -0.000879676 -0.00060677 2.31484E-05 0.000954634 0.00200685 0.00301726 0.00380173 0.00419329 0.00429783 0.0043195 0.00432697 0.0043323 0.00433733 0.00434231 0.00434728 0.00435225 0.00435722 0.00436219 0.00436716 0.00437214 0.00437711 0.00438208 0.00438705 0.00439202 0.00439699 0.00440196 0.00440694 0.00441191 0.00441688 0.00442185 0.00442682 0.00443179 0.00443676 0.00444174 0.00444671 0.00445168 0.00445665 0.00446162 0.00446659 0.00447156 0.00447654 0.00448151 0.00448648 0.00449145 0.00449642 0.00450139 0.00450637 0.00451134 0.00451631 0.00452128 0.00452625 0.00453122 0.00453619 0.00454117 0.00454614 0.00455111 0.00455608 0.00456105 0.00456602 0.00457099 0.00457597 0.00458094 0.00458591 0.00459088 0.00459585 0.00460082 0.00460579 0.00461077 0.00461574 0.00462071 0.00462568 0.00463065 0.00463562 0.00464059 0.00464557 0.00465054 0.00465551 0.00466048 0.00466545 0.00467042 0.00467539 0.00468037 0.00468534 0.00469031 0.00469528 0.00470025 0.00470522 0.00471019 0.00471517 0.00472014 0.00472511 0.00473008 0.00473505 0.00474002 0.00474499 0.00474997 0.00475494 0.00475991 0.00476488 0.00476985 0.00477482 0.00477979 0.00478477 0.00478974 0.00479471 0.00479968 0.00480465 0.00480962 0.0048146 0.00481957 0.00482454 0.00482951 0.00483448 0.00483945 0.00484442 0.0048494 0.00485437 0.00485934 0.00486431 0.00486928 0.00487425 0.00487922 0.0048842 0.00488917 0.00489414 0.00489911 0.00490408 0.00490905 0.00491402 0.004919 0.00492397 +-0.00103483 -0.000979031 -0.000881325 -0.000607692 2.32179E-05 0.000955528 0.00200854 0.00302007 0.00380634 0.00419986 0.00430519 0.00432703 0.00433452 0.00433987 0.0043449 0.00434989 0.00435487 0.00435985 0.00436483 0.00436982 0.0043748 0.00437978 0.00438476 0.00438974 0.00439472 0.0043997 0.00440468 0.00440966 0.00441464 0.00441962 0.0044246 0.00442958 0.00443456 0.00443954 0.00444452 0.0044495 0.00445448 0.00445946 0.00446444 0.00446942 0.0044744 0.00447939 0.00448437 0.00448935 0.00449433 0.00449931 0.00450429 0.00450927 0.00451425 0.00451923 0.00452421 0.00452919 0.00453417 0.00453915 0.00454413 0.00454911 0.00455409 0.00455907 0.00456405 0.00456903 0.00457401 0.00457899 0.00458397 0.00458896 0.00459394 0.00459892 0.0046039 0.00460888 0.00461386 0.00461884 0.00462382 0.0046288 0.00463378 0.00463876 0.00464374 0.00464872 0.0046537 0.00465868 0.00466366 0.00466864 0.00467362 0.0046786 0.00468358 0.00468856 0.00469354 0.00469853 0.00470351 0.00470849 0.00471347 0.00471845 0.00472343 0.00472841 0.00473339 0.00473837 0.00474335 0.00474833 0.00475331 0.00475829 0.00476327 0.00476825 0.00477323 0.00477821 0.00478319 0.00478817 0.00479315 0.00479813 0.00480312 0.0048081 0.00481308 0.00481806 0.00482304 0.00482802 0.004833 0.00483798 0.00484296 0.00484794 0.00485292 0.0048579 0.00486288 0.00486786 0.00487284 0.00487782 0.0048828 0.00488778 0.00489276 0.00489774 0.00490272 0.0049077 0.00491269 0.00491767 0.00492265 0.00492763 0.00493261 +-0.00103689 -0.000980962 -0.000882972 -0.000608614 2.32874E-05 0.00095642 0.00201023 0.00302286 0.00381094 0.00420642 0.00431255 0.00433455 0.00434207 0.00434743 0.00435248 0.00435747 0.00436246 0.00436745 0.00437244 0.00437743 0.00438242 0.00438741 0.0043924 0.00439739 0.00440238 0.00440737 0.00441236 0.00441735 0.00442234 0.00442733 0.00443232 0.00443731 0.00444229 0.00444728 0.00445227 0.00445726 0.00446225 0.00446724 0.00447223 0.00447722 0.00448221 0.0044872 0.00449219 0.00449718 0.00450217 0.00450716 0.00451215 0.00451714 0.00452213 0.00452712 0.0045321 0.00453709 0.00454208 0.00454707 0.00455206 0.00455705 0.00456204 0.00456703 0.00457202 0.00457701 0.004582 0.00458699 0.00459198 0.00459697 0.00460196 0.00460695 0.00461194 0.00461693 0.00462192 0.0046269 0.00463189 0.00463688 0.00464187 0.00464686 0.00465185 0.00465684 0.00466183 0.00466682 0.00467181 0.0046768 0.00468179 0.00468678 0.00469177 0.00469676 0.00470175 0.00470674 0.00471173 0.00471671 0.0047217 0.00472669 0.00473168 0.00473667 0.00474166 0.00474665 0.00475164 0.00475663 0.00476162 0.00476661 0.0047716 0.00477659 0.00478158 0.00478657 0.00479156 0.00479655 0.00480154 0.00480653 0.00481151 0.0048165 0.00482149 0.00482648 0.00483147 0.00483646 0.00484145 0.00484644 0.00485143 0.00485642 0.00486141 0.0048664 0.00487139 0.00487638 0.00488137 0.00488636 0.00489135 0.00489634 0.00490132 0.00490631 0.0049113 0.00491629 0.00492128 0.00492627 0.00493126 0.00493625 0.00494124 +-0.00103895 -0.000982893 -0.000884618 -0.000609534 2.3357E-05 0.000957311 0.00201191 0.00302565 0.00381553 0.00421297 0.0043199 0.00434206 0.00434962 0.00435499 0.00436004 0.00436505 0.00437005 0.00437505 0.00438004 0.00438504 0.00439004 0.00439504 0.00440004 0.00440504 0.00441003 0.00441503 0.00442003 0.00442503 0.00443003 0.00443503 0.00444003 0.00444502 0.00445002 0.00445502 0.00446002 0.00446502 0.00447002 0.00447501 0.00448001 0.00448501 0.00449001 0.00449501 0.00450001 0.00450501 0.00451 0.004515 0.00452 0.004525 0.00453 0.004535 0.00453999 0.00454499 0.00454999 0.00455499 0.00455999 0.00456499 0.00456999 0.00457498 0.00457998 0.00458498 0.00458998 0.00459498 0.00459998 0.00460497 0.00460997 0.00461497 0.00461997 0.00462497 0.00462997 0.00463497 0.00463996 0.00464496 0.00464996 0.00465496 0.00465996 0.00466496 0.00466995 0.00467495 0.00467995 0.00468495 0.00468995 0.00469495 0.00469995 0.00470494 0.00470994 0.00471494 0.00471994 0.00472494 0.00472994 0.00473493 0.00473993 0.00474493 0.00474993 0.00475493 0.00475993 0.00476493 0.00476992 0.00477492 0.00477992 0.00478492 0.00478992 0.00479492 0.00479991 0.00480491 0.00480991 0.00481491 0.00481991 0.00482491 0.0048299 0.0048349 0.0048399 0.0048449 0.0048499 0.0048549 0.0048599 0.00486489 0.00486989 0.00487489 0.00487989 0.00488489 0.00488989 0.00489488 0.00489988 0.00490488 0.00490988 0.00491488 0.00491988 0.00492488 0.00492987 0.00493487 0.00493987 0.00494487 0.00494987 +-0.00104102 -0.000984823 -0.000886264 -0.000610452 2.34266E-05 0.0009582 0.00201359 0.00302842 0.00382011 0.0042195 0.00432724 0.00434956 0.00435715 0.00436254 0.0043676 0.00437262 0.00437763 0.00438263 0.00438764 0.00439265 0.00439766 0.00440266 0.00440767 0.00441268 0.00441769 0.00442269 0.0044277 0.00443271 0.00443771 0.00444272 0.00444773 0.00445274 0.00445774 0.00446275 0.00446776 0.00447277 0.00447777 0.00448278 0.00448779 0.0044928 0.0044978 0.00450281 0.00450782 0.00451283 0.00451783 0.00452284 0.00452785 0.00453286 0.00453786 0.00454287 0.00454788 0.00455289 0.00455789 0.0045629 0.00456791 0.00457292 0.00457792 0.00458293 0.00458794 0.00459295 0.00459795 0.00460296 0.00460797 0.00461298 0.00461798 0.00462299 0.004628 0.00463301 0.00463801 0.00464302 0.00464803 0.00465303 0.00465804 0.00466305 0.00466806 0.00467306 0.00467807 0.00468308 0.00468809 0.00469309 0.0046981 0.00470311 0.00470812 0.00471312 0.00471813 0.00472314 0.00472815 0.00473315 0.00473816 0.00474317 0.00474818 0.00475318 0.00475819 0.0047632 0.00476821 0.00477321 0.00477822 0.00478323 0.00478824 0.00479324 0.00479825 0.00480326 0.00480827 0.00481327 0.00481828 0.00482329 0.0048283 0.0048333 0.00483831 0.00484332 0.00484833 0.00485333 0.00485834 0.00486335 0.00486835 0.00487336 0.00487837 0.00488338 0.00488838 0.00489339 0.0048984 0.00490341 0.00490841 0.00491342 0.00491843 0.00492344 0.00492844 0.00493345 0.00493846 0.00494347 0.00494847 0.00495348 0.00495849 +-0.00104308 -0.000986752 -0.000887908 -0.000611369 2.34963E-05 0.000959087 0.00201527 0.0030312 0.00382467 0.00422603 0.00433458 0.00435706 0.00436469 0.00437008 0.00437516 0.00438018 0.0043852 0.00439021 0.00439523 0.00440025 0.00440526 0.00441028 0.0044153 0.00442031 0.00442533 0.00443035 0.00443536 0.00444038 0.0044454 0.00445041 0.00445543 0.00446044 0.00446546 0.00447048 0.00447549 0.00448051 0.00448553 0.00449054 0.00449556 0.00450058 0.00450559 0.00451061 0.00451563 0.00452064 0.00452566 0.00453067 0.00453569 0.00454071 0.00454572 0.00455074 0.00455576 0.00456077 0.00456579 0.00457081 0.00457582 0.00458084 0.00458586 0.00459087 0.00459589 0.0046009 0.00460592 0.00461094 0.00461595 0.00462097 0.00462599 0.004631 0.00463602 0.00464104 0.00464605 0.00465107 0.00465609 0.0046611 0.00466612 0.00467113 0.00467615 0.00468117 0.00468618 0.0046912 0.00469622 0.00470123 0.00470625 0.00471127 0.00471628 0.0047213 0.00472632 0.00473133 0.00473635 0.00474136 0.00474638 0.0047514 0.00475641 0.00476143 0.00476645 0.00477146 0.00477648 0.0047815 0.00478651 0.00479153 0.00479655 0.00480156 0.00480658 0.00481159 0.00481661 0.00482163 0.00482664 0.00483166 0.00483668 0.00484169 0.00484671 0.00485173 0.00485674 0.00486176 0.00486677 0.00487179 0.00487681 0.00488182 0.00488684 0.00489186 0.00489687 0.00490189 0.00490691 0.00491192 0.00491694 0.00492196 0.00492697 0.00493199 0.004937 0.00494202 0.00494704 0.00495205 0.00495707 0.00496209 0.0049671 +-0.00104514 -0.00098868 -0.00088955 -0.000612284 2.3566E-05 0.000959972 0.00201694 0.00303396 0.00382922 0.00423254 0.0043419 0.00436456 0.00437221 0.00437762 0.0043827 0.00438774 0.00439276 0.00439779 0.00440282 0.00440784 0.00441287 0.00441789 0.00442292 0.00442794 0.00443297 0.00443799 0.00444302 0.00444804 0.00445307 0.0044581 0.00446312 0.00446815 0.00447317 0.0044782 0.00448322 0.00448825 0.00449327 0.0044983 0.00450332 0.00450835 0.00451337 0.0045184 0.00452343 0.00452845 0.00453348 0.0045385 0.00454353 0.00454855 0.00455358 0.0045586 0.00456363 0.00456865 0.00457368 0.00457871 0.00458373 0.00458876 0.00459378 0.00459881 0.00460383 0.00460886 0.00461388 0.00461891 0.00462393 0.00462896 0.00463398 0.00463901 0.00464404 0.00464906 0.00465409 0.00465911 0.00466414 0.00466916 0.00467419 0.00467921 0.00468424 0.00468926 0.00469429 0.00469931 0.00470434 0.00470937 0.00471439 0.00471942 0.00472444 0.00472947 0.00473449 0.00473952 0.00474454 0.00474957 0.00475459 0.00475962 0.00476464 0.00476967 0.0047747 0.00477972 0.00478475 0.00478977 0.0047948 0.00479982 0.00480485 0.00480987 0.0048149 0.00481992 0.00482495 0.00482998 0.004835 0.00484003 0.00484505 0.00485008 0.0048551 0.00486013 0.00486515 0.00487018 0.0048752 0.00488023 0.00488525 0.00489028 0.00489531 0.00490033 0.00490536 0.00491038 0.00491541 0.00492043 0.00492546 0.00493048 0.00493551 0.00494053 0.00494556 0.00495058 0.00495561 0.00496064 0.00496566 0.00497069 0.00497571 +-0.0010472 -0.000990608 -0.000891192 -0.000613199 2.36358E-05 0.000960855 0.0020186 0.00303671 0.00383376 0.00423904 0.00434923 0.00437204 0.00437973 0.00438516 0.00439025 0.00439529 0.00440033 0.00440536 0.0044104 0.00441543 0.00442046 0.0044255 0.00443053 0.00443557 0.0044406 0.00444564 0.00445067 0.0044557 0.00446074 0.00446577 0.00447081 0.00447584 0.00448088 0.00448591 0.00449095 0.00449598 0.00450101 0.00450605 0.00451108 0.00451612 0.00452115 0.00452619 0.00453122 0.00453625 0.00454129 0.00454632 0.00455136 0.00455639 0.00456143 0.00456646 0.0045715 0.00457653 0.00458156 0.0045866 0.00459163 0.00459667 0.0046017 0.00460674 0.00461177 0.0046168 0.00462184 0.00462687 0.00463191 0.00463694 0.00464198 0.00464701 0.00465205 0.00465708 0.00466211 0.00466715 0.00467218 0.00467722 0.00468225 0.00468729 0.00469232 0.00469735 0.00470239 0.00470742 0.00471246 0.00471749 0.00472253 0.00472756 0.0047326 0.00473763 0.00474266 0.0047477 0.00475273 0.00475777 0.0047628 0.00476784 0.00477287 0.0047779 0.00478294 0.00478797 0.00479301 0.00479804 0.00480308 0.00480811 0.00481315 0.00481818 0.00482321 0.00482825 0.00483328 0.00483832 0.00484335 0.00484839 0.00485342 0.00485845 0.00486349 0.00486852 0.00487356 0.00487859 0.00488363 0.00488866 0.0048937 0.00489873 0.00490376 0.0049088 0.00491383 0.00491887 0.0049239 0.00492894 0.00493397 0.004939 0.00494404 0.00494907 0.00495411 0.00495914 0.00496418 0.00496921 0.00497425 0.00497928 0.00498431 +-0.00104926 -0.000992535 -0.000892833 -0.000614111 2.37056E-05 0.000961736 0.00202026 0.00303946 0.00383828 0.00424553 0.00435654 0.00437953 0.00438725 0.00439269 0.00439779 0.00440284 0.00440788 0.00441293 0.00441797 0.00442301 0.00442806 0.0044331 0.00443814 0.00444319 0.00444823 0.00445327 0.00445832 0.00446336 0.0044684 0.00447345 0.00447849 0.00448353 0.00448858 0.00449362 0.00449866 0.00450371 0.00450875 0.00451379 0.00451884 0.00452388 0.00452892 0.00453397 0.00453901 0.00454405 0.0045491 0.00455414 0.00455918 0.00456423 0.00456927 0.00457431 0.00457936 0.0045844 0.00458944 0.00459449 0.00459953 0.00460457 0.00460962 0.00461466 0.0046197 0.00462475 0.00462979 0.00463483 0.00463988 0.00464492 0.00464996 0.00465501 0.00466005 0.00466509 0.00467014 0.00467518 0.00468022 0.00468527 0.00469031 0.00469535 0.0047004 0.00470544 0.00471048 0.00471553 0.00472057 0.00472561 0.00473066 0.0047357 0.00474074 0.00474579 0.00475083 0.00475587 0.00476092 0.00476596 0.004771 0.00477605 0.00478109 0.00478613 0.00479118 0.00479622 0.00480126 0.00480631 0.00481135 0.00481639 0.00482144 0.00482648 0.00483152 0.00483657 0.00484161 0.00484665 0.0048517 0.00485674 0.00486178 0.00486683 0.00487187 0.00487691 0.00488196 0.004887 0.00489204 0.00489709 0.00490213 0.00490717 0.00491222 0.00491726 0.0049223 0.00492735 0.00493239 0.00493743 0.00494248 0.00494752 0.00495256 0.00495761 0.00496265 0.00496769 0.00497274 0.00497778 0.00498282 0.00498787 0.00499291 +-0.00105132 -0.000994461 -0.000894472 -0.000615023 2.37755E-05 0.000962616 0.00202192 0.0030422 0.00384279 0.00425201 0.00436385 0.004387 0.00439476 0.00440021 0.00440532 0.00441038 0.00441543 0.00442048 0.00442554 0.00443059 0.00443564 0.00444069 0.00444575 0.0044508 0.00445585 0.0044609 0.00446596 0.00447101 0.00447606 0.00448111 0.00448616 0.00449122 0.00449627 0.00450132 0.00450637 0.00451143 0.00451648 0.00452153 0.00452658 0.00453164 0.00453669 0.00454174 0.00454679 0.00455184 0.0045569 0.00456195 0.004567 0.00457205 0.00457711 0.00458216 0.00458721 0.00459226 0.00459732 0.00460237 0.00460742 0.00461247 0.00461752 0.00462258 0.00462763 0.00463268 0.00463773 0.00464279 0.00464784 0.00465289 0.00465794 0.004663 0.00466805 0.0046731 0.00467815 0.0046832 0.00468826 0.00469331 0.00469836 0.00470341 0.00470847 0.00471352 0.00471857 0.00472362 0.00472868 0.00473373 0.00473878 0.00474383 0.00474888 0.00475394 0.00475899 0.00476404 0.00476909 0.00477415 0.0047792 0.00478425 0.0047893 0.00479436 0.00479941 0.00480446 0.00480951 0.00481456 0.00481962 0.00482467 0.00482972 0.00483477 0.00483983 0.00484488 0.00484993 0.00485498 0.00486003 0.00486509 0.00487014 0.00487519 0.00488024 0.0048853 0.00489035 0.0048954 0.00490045 0.00490551 0.00491056 0.00491561 0.00492066 0.00492571 0.00493077 0.00493582 0.00494087 0.00494592 0.00495098 0.00495603 0.00496108 0.00496613 0.00497119 0.00497624 0.00498129 0.00498634 0.00499139 0.00499645 0.0050015 +-0.00105337 -0.000996386 -0.000896111 -0.000615933 2.38454E-05 0.000963494 0.00202357 0.00304493 0.00384729 0.00425848 0.00437115 0.00439448 0.00440227 0.00440773 0.00441285 0.00441791 0.00442298 0.00442804 0.0044331 0.00443816 0.00444322 0.00444828 0.00445334 0.00445841 0.00446347 0.00446853 0.00447359 0.00447865 0.00448371 0.00448877 0.00449383 0.0044989 0.00450396 0.00450902 0.00451408 0.00451914 0.0045242 0.00452926 0.00453432 0.00453939 0.00454445 0.00454951 0.00455457 0.00455963 0.00456469 0.00456975 0.00457481 0.00457988 0.00458494 0.00459 0.00459506 0.00460012 0.00460518 0.00461024 0.0046153 0.00462037 0.00462543 0.00463049 0.00463555 0.00464061 0.00464567 0.00465073 0.00465579 0.00466086 0.00466592 0.00467098 0.00467604 0.0046811 0.00468616 0.00469122 0.00469628 0.00470135 0.00470641 0.00471147 0.00471653 0.00472159 0.00472665 0.00473171 0.00473677 0.00474184 0.0047469 0.00475196 0.00475702 0.00476208 0.00476714 0.0047722 0.00477727 0.00478233 0.00478739 0.00479245 0.00479751 0.00480257 0.00480763 0.00481269 0.00481776 0.00482282 0.00482788 0.00483294 0.004838 0.00484306 0.00484812 0.00485318 0.00485825 0.00486331 0.00486837 0.00487343 0.00487849 0.00488355 0.00488861 0.00489367 0.00489874 0.0049038 0.00490886 0.00491392 0.00491898 0.00492404 0.0049291 0.00493416 0.00493923 0.00494429 0.00494935 0.00495441 0.00495947 0.00496453 0.00496959 0.00497465 0.00497972 0.00498478 0.00498984 0.0049949 0.00499996 0.00500502 0.00501008 +-0.00105543 -0.000998311 -0.000897748 -0.000616841 2.39153E-05 0.000964369 0.00202522 0.00304765 0.00385178 0.00426493 0.00437845 0.00440194 0.00440977 0.00441524 0.00442037 0.00442545 0.00443052 0.00443559 0.00444066 0.00444573 0.0044508 0.00445587 0.00446094 0.00446602 0.00447109 0.00447616 0.00448123 0.0044863 0.00449137 0.00449644 0.00450151 0.00450658 0.00451165 0.00451672 0.00452179 0.00452686 0.00453193 0.004537 0.00454207 0.00454714 0.00455221 0.00455728 0.00456235 0.00456742 0.00457248 0.00457755 0.00458262 0.00458769 0.00459276 0.00459783 0.0046029 0.00460797 0.00461304 0.00461811 0.00462318 0.00462825 0.00463332 0.00463839 0.00464346 0.00464854 0.00465361 0.00465868 0.00466375 0.00466882 0.00467389 0.00467896 0.00468403 0.0046891 0.00469417 0.00469924 0.00470431 0.00470938 0.00471445 0.00471952 0.00472459 0.00472966 0.00473473 0.0047398 0.00474487 0.00474994 0.00475501 0.00476008 0.00476515 0.00477022 0.00477529 0.00478036 0.00478543 0.0047905 0.00479557 0.00480064 0.00480571 0.00481078 0.00481585 0.00482092 0.00482599 0.00483106 0.00483613 0.0048412 0.00484627 0.00485134 0.00485641 0.00486148 0.00486655 0.00487162 0.00487669 0.00488176 0.00488683 0.0048919 0.00489697 0.00490205 0.00490712 0.00491219 0.00491726 0.00492233 0.0049274 0.00493247 0.00493754 0.00494261 0.00494768 0.00495275 0.00495782 0.00496289 0.00496796 0.00497303 0.0049781 0.00498317 0.00498824 0.00499331 0.00499838 0.00500345 0.00500852 0.00501359 0.00501866 +-0.00105749 -0.00100023 -0.000899384 -0.000617748 2.39853E-05 0.000965243 0.00202687 0.00305037 0.00385625 0.00427138 0.00438573 0.00440941 0.00441726 0.00442275 0.00442789 0.00443298 0.00443806 0.00444314 0.00444822 0.00445329 0.00445837 0.00446345 0.00446853 0.00447361 0.00447869 0.00448377 0.00448885 0.00449393 0.00449901 0.00450409 0.00450917 0.00451424 0.00451932 0.0045244 0.00452948 0.00453456 0.00453964 0.00454472 0.0045498 0.00455488 0.00455996 0.00456504 0.00457011 0.00457519 0.00458027 0.00458535 0.00459042 0.0045955 0.00460058 0.00460566 0.00461074 0.00461582 0.0046209 0.00462598 0.00463106 0.00463614 0.00464122 0.00464629 0.00465137 0.00465645 0.00466153 0.00466661 0.00467169 0.00467677 0.00468185 0.00468693 0.00469201 0.00469709 0.00470217 0.00470724 0.00471232 0.0047174 0.00472248 0.00472756 0.00473264 0.00473772 0.0047428 0.00474788 0.00475296 0.00475804 0.00476312 0.00476819 0.00477327 0.00477835 0.00478343 0.00478851 0.00479359 0.00479867 0.00480375 0.00480883 0.00481391 0.00481899 0.00482406 0.00482914 0.00483422 0.0048393 0.00484438 0.00484946 0.00485454 0.00485962 0.0048647 0.00486978 0.00487486 0.00487994 0.00488501 0.00489009 0.00489517 0.00490025 0.00490533 0.00491041 0.00491549 0.00492057 0.00492565 0.00493073 0.00493581 0.00494089 0.00494596 0.00495104 0.00495612 0.0049612 0.00496628 0.00497136 0.00497644 0.00498152 0.0049866 0.00499168 0.00499676 0.00500183 0.00500691 0.00501199 0.00501707 0.00502215 0.00502723 +-0.00105954 -0.00100216 -0.000901019 -0.000618654 2.40553E-05 0.000966116 0.00202851 0.00305308 0.00386071 0.00427781 0.00439301 0.00441686 0.00442475 0.00443025 0.0044354 0.0044405 0.00444558 0.00445067 0.00445576 0.00446085 0.00446594 0.00447103 0.00447611 0.0044812 0.00448629 0.00449138 0.00449647 0.00450155 0.00450664 0.00451173 0.00451682 0.00452191 0.00452699 0.00453208 0.00453717 0.00454226 0.00454735 0.00455243 0.00455752 0.00456261 0.0045677 0.00457279 0.00457788 0.00458296 0.00458804 0.00459313 0.00459822 0.00460331 0.0046084 0.00461348 0.00461857 0.00462366 0.00462875 0.00463384 0.00463893 0.00464401 0.0046491 0.00465419 0.00465928 0.00466437 0.00466945 0.00467454 0.00467963 0.00468472 0.00468981 0.00469489 0.00469998 0.00470507 0.00471016 0.00471525 0.00472033 0.00472542 0.00473051 0.0047356 0.00474069 0.00474577 0.00475086 0.00475595 0.00476104 0.00476613 0.00477122 0.0047763 0.00478139 0.00478648 0.00479157 0.00479666 0.00480174 0.00480683 0.00481192 0.00481701 0.0048221 0.00482718 0.00483227 0.00483736 0.00484245 0.00484754 0.00485262 0.00485771 0.0048628 0.00486789 0.00487298 0.00487806 0.00488315 0.00488824 0.00489333 0.00489842 0.00490351 0.00490859 0.00491368 0.00491877 0.00492386 0.00492895 0.00493403 0.00493912 0.00494421 0.0049493 0.00495439 0.00495947 0.00496456 0.00496965 0.00497474 0.00497983 0.00498491 0.00499 0.00499509 0.00500018 0.00500527 0.00501035 0.00501544 0.00502053 0.00502562 0.00503071 0.0050358 +-0.0010616 -0.00100408 -0.000902653 -0.000619558 2.41254E-05 0.000966986 0.00203015 0.00305578 0.00386516 0.00428423 0.00440029 0.00442431 0.00443224 0.00443775 0.0044429 0.00444801 0.00445311 0.0044582 0.0044633 0.0044684 0.0044735 0.00447859 0.00448369 0.00448879 0.00449388 0.00449898 0.00450408 0.00450917 0.00451427 0.00451937 0.00452447 0.00452956 0.00453466 0.00453976 0.00454485 0.00454995 0.00455505 0.00456014 0.00456524 0.00457034 0.00457544 0.00458053 0.00458563 0.00459073 0.00459582 0.00460091 0.00460601 0.00461111 0.00461621 0.0046213 0.0046264 0.0046315 0.00463659 0.00464169 0.00464679 0.00465188 0.00465698 0.00466208 0.00466718 0.00467227 0.00467737 0.00468247 0.00468756 0.00469266 0.00469776 0.00470285 0.00470795 0.00471305 0.00471815 0.00472324 0.00472834 0.00473344 0.00473853 0.00474363 0.00474873 0.00475382 0.00475892 0.00476402 0.00476912 0.00477421 0.00477931 0.00478441 0.0047895 0.0047946 0.0047997 0.00480479 0.00480989 0.00481499 0.00482009 0.00482518 0.00483028 0.00483538 0.00484047 0.00484557 0.00485067 0.00485576 0.00486086 0.00486596 0.00487106 0.00487615 0.00488125 0.00488635 0.00489144 0.00489654 0.00490164 0.00490673 0.00491183 0.00491693 0.00492203 0.00492712 0.00493222 0.00493732 0.00494241 0.00494751 0.00495261 0.0049577 0.0049628 0.0049679 0.004973 0.00497809 0.00498319 0.00498829 0.00499338 0.00499848 0.00500358 0.00500867 0.00501377 0.00501887 0.00502397 0.00502906 0.00503416 0.00503926 0.00504435 +-0.00106365 -0.001006 -0.000904285 -0.000620461 2.41955E-05 0.000967855 0.00203178 0.00305847 0.00386959 0.00429064 0.00440755 0.00443175 0.00443971 0.00444524 0.0044504 0.00445552 0.00446062 0.00446573 0.00447084 0.00447594 0.00448105 0.00448615 0.00449126 0.00449637 0.00450147 0.00450658 0.00451168 0.00451679 0.0045219 0.004527 0.00453211 0.00453721 0.00454232 0.00454743 0.00455253 0.00455764 0.00456274 0.00456785 0.00457295 0.00457806 0.00458317 0.00458827 0.00459338 0.00459848 0.00460359 0.00460869 0.0046138 0.0046189 0.00462401 0.00462911 0.00463422 0.00463933 0.00464443 0.00464954 0.00465464 0.00465975 0.00466486 0.00466996 0.00467507 0.00468017 0.00468528 0.00469038 0.00469549 0.0047006 0.0047057 0.00471081 0.00471591 0.00472102 0.00472613 0.00473123 0.00473634 0.00474144 0.00474655 0.00475166 0.00475676 0.00476187 0.00476697 0.00477208 0.00477719 0.00478229 0.0047874 0.0047925 0.00479761 0.00480272 0.00480782 0.00481293 0.00481803 0.00482314 0.00482824 0.00483335 0.00483846 0.00484356 0.00484867 0.00485377 0.00485888 0.00486399 0.00486909 0.0048742 0.0048793 0.00488441 0.00488952 0.00489462 0.00489973 0.00490483 0.00490994 0.00491505 0.00492015 0.00492526 0.00493036 0.00493547 0.00494058 0.00494568 0.00495079 0.00495589 0.004961 0.0049661 0.00497121 0.00497632 0.00498142 0.00498653 0.00499163 0.00499674 0.00500185 0.00500695 0.00501206 0.00501716 0.00502227 0.00502738 0.00503248 0.00503759 0.00504269 0.0050478 0.00505291 +-0.00106571 -0.00100792 -0.000905917 -0.000621363 2.42656E-05 0.000968722 0.00203341 0.00306116 0.00387402 0.00429704 0.00441481 0.00443919 0.00444718 0.00445272 0.0044579 0.00446302 0.00446814 0.00447325 0.00447837 0.00448348 0.0044886 0.00449371 0.00449882 0.00450394 0.00450905 0.00451417 0.00451928 0.0045244 0.00452951 0.00453463 0.00453974 0.00454486 0.00454997 0.00455509 0.0045602 0.00456532 0.00457043 0.00457555 0.00458066 0.00458578 0.00459089 0.00459601 0.00460112 0.00460624 0.00461135 0.00461646 0.00462158 0.00462669 0.0046318 0.00463692 0.00464203 0.00464715 0.00465226 0.00465738 0.00466249 0.00466761 0.00467272 0.00467784 0.00468295 0.00468807 0.00469318 0.0046983 0.00470341 0.00470853 0.00471364 0.00471876 0.00472387 0.00472899 0.0047341 0.00473922 0.00474433 0.00474945 0.00475456 0.00475968 0.00476479 0.00476991 0.00477502 0.00478014 0.00478525 0.00479036 0.00479548 0.00480059 0.00480571 0.00481082 0.00481594 0.00482105 0.00482617 0.00483128 0.0048364 0.00484151 0.00484663 0.00485174 0.00485686 0.00486197 0.00486709 0.0048722 0.00487732 0.00488243 0.00488755 0.00489266 0.00489778 0.00490289 0.00490801 0.00491312 0.00491824 0.00492335 0.00492847 0.00493358 0.0049387 0.00494381 0.00494893 0.00495404 0.00495915 0.00496427 0.00496938 0.0049745 0.00497961 0.00498473 0.00498984 0.00499496 0.00500007 0.00500519 0.0050103 0.00501542 0.00502053 0.00502565 0.00503076 0.00503588 0.00504099 0.00504611 0.00505122 0.00505634 0.00506145 +-0.00106776 -0.00100984 -0.000907547 -0.000622263 2.43358E-05 0.000969587 0.00203504 0.00306383 0.00387843 0.00430342 0.00442206 0.00444662 0.00445465 0.0044602 0.00446538 0.00447052 0.00447564 0.00448077 0.00448589 0.00449101 0.00449614 0.00450126 0.00450638 0.00451151 0.00451663 0.00452176 0.00452688 0.004532 0.00453713 0.00454225 0.00454737 0.0045525 0.00455762 0.00456275 0.00456787 0.00457299 0.00457812 0.00458324 0.00458836 0.00459349 0.00459861 0.00460374 0.00460886 0.00461398 0.00461911 0.00462422 0.00462935 0.00463447 0.0046396 0.00464472 0.00464984 0.00465497 0.00466009 0.00466521 0.00467034 0.00467546 0.00468059 0.00468571 0.00469083 0.00469596 0.00470108 0.0047062 0.00471133 0.00471645 0.00472158 0.0047267 0.00473182 0.00473695 0.00474207 0.0047472 0.00475232 0.00475744 0.00476257 0.00476769 0.00477281 0.00477794 0.00478306 0.00478819 0.00479331 0.00479843 0.00480356 0.00480868 0.0048138 0.00481893 0.00482405 0.00482918 0.0048343 0.00483942 0.00484455 0.00484967 0.00485479 0.00485992 0.00486504 0.00487017 0.00487529 0.00488041 0.00488554 0.00489066 0.00489578 0.00490091 0.00490603 0.00491116 0.00491628 0.0049214 0.00492653 0.00493165 0.00493677 0.0049419 0.00494702 0.00495215 0.00495727 0.00496239 0.00496752 0.00497264 0.00497776 0.00498289 0.00498801 0.00499314 0.00499826 0.00500338 0.00500851 0.00501363 0.00501875 0.00502388 0.005029 0.00503413 0.00503925 0.00504437 0.0050495 0.00505462 0.00505974 0.00506487 0.00506999 +-0.00106981 -0.00101176 -0.000909177 -0.000623162 2.4406E-05 0.00097045 0.00203666 0.0030665 0.00388282 0.0043098 0.00442931 0.00445404 0.00446211 0.00446767 0.00447287 0.00447801 0.00448314 0.00448827 0.00449341 0.00449854 0.00450367 0.00450881 0.00451394 0.00451907 0.0045242 0.00452934 0.00453447 0.0045396 0.00454473 0.00454987 0.004555 0.00456013 0.00456526 0.0045704 0.00457553 0.00458066 0.0045858 0.00459093 0.00459606 0.00460119 0.00460633 0.00461146 0.00461659 0.00462172 0.00462686 0.00463198 0.00463712 0.00464225 0.00464738 0.00465251 0.00465765 0.00466278 0.00466791 0.00467305 0.00467818 0.00468331 0.00468844 0.00469358 0.00469871 0.00470384 0.00470897 0.00471411 0.00471924 0.00472437 0.0047295 0.00473464 0.00473977 0.0047449 0.00475004 0.00475517 0.0047603 0.00476543 0.00477057 0.0047757 0.00478083 0.00478596 0.0047911 0.00479623 0.00480136 0.00480649 0.00481163 0.00481676 0.00482189 0.00482702 0.00483216 0.00483729 0.00484242 0.00484756 0.00485269 0.00485782 0.00486295 0.00486809 0.00487322 0.00487835 0.00488348 0.00488862 0.00489375 0.00489888 0.00490401 0.00490915 0.00491428 0.00491941 0.00492455 0.00492968 0.00493481 0.00493994 0.00494508 0.00495021 0.00495534 0.00496047 0.00496561 0.00497074 0.00497587 0.004981 0.00498614 0.00499127 0.0049964 0.00500154 0.00500667 0.0050118 0.00501693 0.00502207 0.0050272 0.00503233 0.00503746 0.0050426 0.00504773 0.00505286 0.00505799 0.00506313 0.00506826 0.00507339 0.00507853 +-0.00107186 -0.00101368 -0.000910805 -0.000624059 2.44763E-05 0.000971312 0.00203828 0.00306917 0.00388721 0.00431616 0.00443655 0.00446146 0.00446956 0.00447514 0.00448034 0.00448549 0.00449064 0.00449578 0.00450092 0.00450606 0.0045112 0.00451634 0.00452149 0.00452663 0.00453177 0.00453691 0.00454205 0.00454719 0.00455234 0.00455748 0.00456262 0.00456776 0.0045729 0.00457804 0.00458319 0.00458833 0.00459347 0.00459861 0.00460375 0.00460889 0.00461403 0.00461918 0.00462432 0.00462946 0.0046346 0.00463974 0.00464488 0.00465002 0.00465516 0.0046603 0.00466544 0.00467059 0.00467573 0.00468087 0.00468601 0.00469115 0.00469629 0.00470144 0.00470658 0.00471172 0.00471686 0.004722 0.00472714 0.00473229 0.00473743 0.00474257 0.00474771 0.00475285 0.00475799 0.00476313 0.00476828 0.00477342 0.00477856 0.0047837 0.00478884 0.00479398 0.00479913 0.00480427 0.00480941 0.00481455 0.00481969 0.00482483 0.00482997 0.00483512 0.00484026 0.0048454 0.00485054 0.00485568 0.00486082 0.00486597 0.00487111 0.00487625 0.00488139 0.00488653 0.00489167 0.00489682 0.00490196 0.0049071 0.00491224 0.00491738 0.00492252 0.00492766 0.00493281 0.00493795 0.00494309 0.00494823 0.00495337 0.00495851 0.00496366 0.0049688 0.00497394 0.00497908 0.00498422 0.00498936 0.00499451 0.00499965 0.00500479 0.00500993 0.00501507 0.00502021 0.00502535 0.0050305 0.00503564 0.00504078 0.00504592 0.00505106 0.0050562 0.00506135 0.00506649 0.00507163 0.00507677 0.00508191 0.00508705 +-0.00107392 -0.0010156 -0.000912432 -0.000624955 2.45466E-05 0.000972171 0.00203989 0.00307182 0.00389158 0.00432252 0.00444378 0.00446888 0.00447701 0.0044826 0.00448781 0.00449297 0.00449813 0.00450328 0.00450843 0.00451358 0.00451873 0.00452388 0.00452903 0.00453418 0.00453933 0.00454448 0.00454963 0.00455478 0.00455993 0.00456508 0.00457023 0.00457538 0.00458053 0.00458568 0.00459084 0.00459599 0.00460114 0.00460629 0.00461144 0.00461659 0.00462174 0.00462689 0.00463204 0.00463719 0.00464234 0.00464749 0.00465264 0.00465779 0.00466294 0.00466809 0.00467324 0.00467839 0.00468354 0.00468869 0.00469384 0.00469899 0.00470414 0.00470929 0.00471444 0.00471959 0.00472474 0.00472989 0.00473504 0.00474019 0.00474534 0.00475049 0.00475564 0.00476079 0.00476595 0.0047711 0.00477625 0.0047814 0.00478655 0.0047917 0.00479685 0.004802 0.00480715 0.0048123 0.00481745 0.0048226 0.00482775 0.0048329 0.00483805 0.0048432 0.00484835 0.0048535 0.00485865 0.0048638 0.00486895 0.0048741 0.00487926 0.00488441 0.00488956 0.00489471 0.00489986 0.00490501 0.00491016 0.00491531 0.00492046 0.00492561 0.00493076 0.00493591 0.00494106 0.00494621 0.00495136 0.00495651 0.00496166 0.00496681 0.00497196 0.00497711 0.00498226 0.00498742 0.00499257 0.00499772 0.00500287 0.00500802 0.00501317 0.00501832 0.00502347 0.00502862 0.00503377 0.00503892 0.00504407 0.00504922 0.00505437 0.00505952 0.00506467 0.00506982 0.00507497 0.00508012 0.00508527 0.00509042 0.00509557 +-0.00107597 -0.00101751 -0.000914058 -0.000625849 2.4617E-05 0.000973029 0.0020415 0.00307447 0.00389594 0.00432886 0.00445101 0.00447628 0.00448446 0.00449006 0.00449528 0.00450045 0.00450561 0.00451077 0.00451593 0.00452109 0.00452625 0.00453141 0.00453657 0.00454173 0.00454689 0.00455205 0.0045572 0.00456236 0.00456752 0.00457268 0.00457784 0.004583 0.00458816 0.00459332 0.00459848 0.00460364 0.0046088 0.00461396 0.00461912 0.00462428 0.00462944 0.00463459 0.00463975 0.00464491 0.00465007 0.00465523 0.00466039 0.00466555 0.0046707 0.00467586 0.00468102 0.00468618 0.00469134 0.0046965 0.00470166 0.00470682 0.00471198 0.00471714 0.0047223 0.00472746 0.00473262 0.00473778 0.00474294 0.0047481 0.00475325 0.00475841 0.00476357 0.00476873 0.00477389 0.00477905 0.00478421 0.00478937 0.00479453 0.00479969 0.00480485 0.00481001 0.00481517 0.00482033 0.00482549 0.00483064 0.0048358 0.00484096 0.00484612 0.00485128 0.00485644 0.0048616 0.00486676 0.00487192 0.00487708 0.00488224 0.0048874 0.00489256 0.00489772 0.00490288 0.00490803 0.00491319 0.00491835 0.00492351 0.00492867 0.00493383 0.00493899 0.00494415 0.00494931 0.00495447 0.00495963 0.00496479 0.00496995 0.00497511 0.00498027 0.00498543 0.00499058 0.00499574 0.0050009 0.00500606 0.00501122 0.00501638 0.00502154 0.0050267 0.00503186 0.00503702 0.00504218 0.00504734 0.0050525 0.00505766 0.00506282 0.00506797 0.00507313 0.00507829 0.00508345 0.00508861 0.00509377 0.00509893 0.00510409 +-0.00107802 -0.00101943 -0.000915682 -0.000626743 2.46874E-05 0.000973886 0.00204311 0.00307711 0.00390029 0.00433519 0.00445822 0.00448369 0.0044919 0.00449751 0.00450274 0.00450792 0.00451309 0.00451826 0.00452343 0.00452859 0.00453376 0.00453893 0.0045441 0.00454927 0.00455444 0.0045596 0.00456477 0.00456994 0.00457511 0.00458028 0.00458544 0.00459061 0.00459578 0.00460095 0.00460612 0.00461129 0.00461645 0.00462162 0.00462679 0.00463196 0.00463713 0.0046423 0.00464746 0.00465263 0.0046578 0.00466297 0.00466813 0.0046733 0.00467847 0.00468364 0.0046888 0.00469397 0.00469914 0.00470431 0.00470948 0.00471465 0.00471981 0.00472498 0.00473015 0.00473532 0.00474049 0.00474566 0.00475082 0.00475599 0.00476116 0.00476633 0.0047715 0.00477666 0.00478183 0.004787 0.00479217 0.00479734 0.00480251 0.00480767 0.00481284 0.00481801 0.00482318 0.00482835 0.00483352 0.00483868 0.00484385 0.00484902 0.00485419 0.00485936 0.00486452 0.00486969 0.00487486 0.00488003 0.0048852 0.00489037 0.00489553 0.0049007 0.00490587 0.00491104 0.00491621 0.00492137 0.00492654 0.00493171 0.00493688 0.00494205 0.00494722 0.00495238 0.00495755 0.00496272 0.00496789 0.00497306 0.00497823 0.00498339 0.00498856 0.00499373 0.0049989 0.00500407 0.00500923 0.0050144 0.00501957 0.00502474 0.00502991 0.00503508 0.00504024 0.00504541 0.00505058 0.00505575 0.00506092 0.00506609 0.00507125 0.00507642 0.00508159 0.00508676 0.00509193 0.00509709 0.00510226 0.00510743 0.0051126 +-0.00108006 -0.00102135 -0.000917306 -0.000627634 2.47578E-05 0.00097474 0.00204471 0.00307975 0.00390463 0.00434151 0.00446544 0.00449108 0.00449933 0.00450496 0.0045102 0.00451538 0.00452056 0.00452574 0.00453092 0.00453609 0.00454127 0.00454645 0.00455163 0.0045568 0.00456198 0.00456716 0.00457233 0.00457751 0.00458269 0.00458787 0.00459304 0.00459822 0.0046034 0.00460857 0.00461375 0.00461893 0.00462411 0.00462928 0.00463446 0.00463964 0.00464481 0.00464999 0.00465517 0.00466034 0.00466552 0.0046707 0.00467588 0.00468105 0.00468623 0.0046914 0.00469658 0.00470176 0.00470693 0.00471211 0.00471729 0.00472247 0.00472764 0.00473282 0.004738 0.00474317 0.00474835 0.00475353 0.00475871 0.00476388 0.00476906 0.00477424 0.00477941 0.00478459 0.00478977 0.00479494 0.00480012 0.0048053 0.00481048 0.00481565 0.00482083 0.00482601 0.00483118 0.00483636 0.00484154 0.00484672 0.00485189 0.00485707 0.00486225 0.00486742 0.0048726 0.00487778 0.00488296 0.00488813 0.00489331 0.00489849 0.00490366 0.00490884 0.00491402 0.0049192 0.00492437 0.00492955 0.00493473 0.0049399 0.00494508 0.00495026 0.00495544 0.00496061 0.00496579 0.00497097 0.00497614 0.00498132 0.0049865 0.00499168 0.00499685 0.00500203 0.00500721 0.00501238 0.00501756 0.00502274 0.00502791 0.00503309 0.00503827 0.00504345 0.00504862 0.0050538 0.00505898 0.00506415 0.00506933 0.00507451 0.00507969 0.00508486 0.00509004 0.00509522 0.00510039 0.00510557 0.00511075 0.00511593 0.0051211 +-0.00108211 -0.00102326 -0.000918928 -0.000628525 2.48283E-05 0.000975593 0.00204631 0.00308237 0.00390895 0.00434781 0.00447264 0.00449848 0.00450676 0.0045124 0.00451765 0.00452284 0.00452803 0.00453322 0.0045384 0.00454359 0.00454877 0.00455396 0.00455915 0.00456433 0.00456952 0.0045747 0.00457989 0.00458508 0.00459026 0.00459545 0.00460063 0.00460582 0.00461101 0.00461619 0.00462138 0.00462656 0.00463175 0.00463694 0.00464212 0.00464731 0.00465249 0.00465768 0.00466287 0.00466805 0.00467324 0.00467842 0.00468361 0.00468879 0.00469398 0.00469916 0.00470435 0.00470954 0.00471472 0.00471991 0.00472509 0.00473028 0.00473547 0.00474065 0.00474584 0.00475102 0.00475621 0.0047614 0.00476658 0.00477177 0.00477695 0.00478214 0.00478733 0.00479251 0.0047977 0.00480288 0.00480807 0.00481326 0.00481844 0.00482363 0.00482881 0.004834 0.00483919 0.00484437 0.00484956 0.00485474 0.00485993 0.00486511 0.0048703 0.00487549 0.00488067 0.00488586 0.00489104 0.00489623 0.00490142 0.0049066 0.00491179 0.00491697 0.00492216 0.00492735 0.00493253 0.00493772 0.0049429 0.00494809 0.00495328 0.00495846 0.00496365 0.00496883 0.00497402 0.00497921 0.00498439 0.00498958 0.00499476 0.00499995 0.00500514 0.00501032 0.00501551 0.00502069 0.00502588 0.00503107 0.00503625 0.00504144 0.00504662 0.00505181 0.005057 0.00506218 0.00506737 0.00507255 0.00507774 0.00508293 0.00508811 0.0050933 0.00509848 0.00510367 0.00510886 0.00511404 0.00511923 0.00512441 0.0051296 +-0.00108416 -0.00102517 -0.00092055 -0.000629414 2.48989E-05 0.000976444 0.00204791 0.00308499 0.00391326 0.00435411 0.00447984 0.00450586 0.00451418 0.00451983 0.00452509 0.0045303 0.00453549 0.00454069 0.00454588 0.00455108 0.00455627 0.00456147 0.00456666 0.00457186 0.00457705 0.00458225 0.00458744 0.00459264 0.00459783 0.00460303 0.00460822 0.00461342 0.00461861 0.00462381 0.004629 0.0046342 0.00463939 0.00464459 0.00464978 0.00465497 0.00466017 0.00466536 0.00467056 0.00467575 0.00468095 0.00468614 0.00469134 0.00469653 0.00470172 0.00470692 0.00471211 0.00471731 0.0047225 0.0047277 0.00473289 0.00473809 0.00474328 0.00474848 0.00475367 0.00475887 0.00476406 0.00476926 0.00477445 0.00477965 0.00478484 0.00479004 0.00479523 0.00480043 0.00480562 0.00481082 0.00481601 0.00482121 0.0048264 0.0048316 0.00483679 0.00484198 0.00484718 0.00485237 0.00485757 0.00486276 0.00486796 0.00487315 0.00487835 0.00488354 0.00488874 0.00489393 0.00489913 0.00490432 0.00490952 0.00491471 0.00491991 0.0049251 0.0049303 0.00493549 0.00494069 0.00494588 0.00495108 0.00495627 0.00496147 0.00496666 0.00497186 0.00497705 0.00498225 0.00498744 0.00499264 0.00499783 0.00500303 0.00500822 0.00501341 0.00501861 0.0050238 0.005029 0.00503419 0.00503939 0.00504458 0.00504978 0.00505497 0.00506017 0.00506536 0.00507056 0.00507575 0.00508095 0.00508614 0.00509134 0.00509653 0.00510173 0.00510692 0.00511212 0.00511731 0.00512251 0.0051277 0.0051329 0.00513809 +-0.00108621 -0.00102709 -0.00092217 -0.000630301 2.49694E-05 0.000977293 0.0020495 0.00308761 0.00391756 0.00436039 0.00448703 0.00451324 0.0045216 0.00452726 0.00453253 0.00453775 0.00454295 0.00454815 0.00455336 0.00455856 0.00456377 0.00456897 0.00457417 0.00457938 0.00458458 0.00458978 0.00459499 0.00460019 0.0046054 0.0046106 0.0046158 0.00462101 0.00462621 0.00463141 0.00463662 0.00464182 0.00464702 0.00465223 0.00465743 0.00466264 0.00466784 0.00467304 0.00467825 0.00468345 0.00468865 0.00469386 0.00469906 0.00470426 0.00470946 0.00471467 0.00471987 0.00472508 0.00473028 0.00473548 0.00474069 0.00474589 0.00475109 0.0047563 0.0047615 0.00476671 0.00477191 0.00477711 0.00478232 0.00478752 0.00479272 0.00479793 0.00480313 0.00480834 0.00481354 0.00481874 0.00482395 0.00482915 0.00483435 0.00483956 0.00484476 0.00484996 0.00485517 0.00486037 0.00486558 0.00487078 0.00487598 0.00488119 0.00488639 0.00489159 0.0048968 0.004902 0.00490721 0.00491241 0.00491761 0.00492282 0.00492802 0.00493322 0.00493843 0.00494363 0.00494884 0.00495404 0.00495924 0.00496445 0.00496965 0.00497485 0.00498006 0.00498526 0.00499046 0.00499567 0.00500087 0.00500608 0.00501128 0.00501648 0.00502169 0.00502689 0.00503209 0.0050373 0.0050425 0.00504771 0.00505291 0.00505811 0.00506332 0.00506852 0.00507372 0.00507893 0.00508413 0.00508934 0.00509454 0.00509974 0.00510495 0.00511015 0.00511535 0.00512056 0.00512576 0.00513096 0.00513617 0.00514137 0.00514658 +-0.00108825 -0.001029 -0.000923789 -0.000631188 2.504E-05 0.000978141 0.00205109 0.00309021 0.00392185 0.00436667 0.00449421 0.00452062 0.00452901 0.00453469 0.00453997 0.00454519 0.0045504 0.00455562 0.00456083 0.00456604 0.00457125 0.00457647 0.00458168 0.00458689 0.0045921 0.00459732 0.00460253 0.00460774 0.00461295 0.00461817 0.00462338 0.00462859 0.0046338 0.00463902 0.00464423 0.00464944 0.00465465 0.00465987 0.00466508 0.00467029 0.0046755 0.00468072 0.00468593 0.00469114 0.00469635 0.00470157 0.00470678 0.00471199 0.0047172 0.00472241 0.00472763 0.00473284 0.00473805 0.00474326 0.00474848 0.00475369 0.0047589 0.00476411 0.00476933 0.00477454 0.00477975 0.00478496 0.00479018 0.00479539 0.0048006 0.00480581 0.00481103 0.00481624 0.00482145 0.00482666 0.00483188 0.00483709 0.0048423 0.00484751 0.00485273 0.00485794 0.00486315 0.00486836 0.00487358 0.00487879 0.004884 0.00488921 0.00489443 0.00489964 0.00490485 0.00491006 0.00491528 0.00492049 0.0049257 0.00493092 0.00493613 0.00494134 0.00494655 0.00495177 0.00495698 0.00496219 0.0049674 0.00497262 0.00497783 0.00498304 0.00498825 0.00499347 0.00499868 0.00500389 0.0050091 0.00501432 0.00501953 0.00502474 0.00502995 0.00503517 0.00504038 0.00504559 0.0050508 0.00505602 0.00506123 0.00506644 0.00507165 0.00507687 0.00508208 0.00508729 0.0050925 0.00509772 0.00510293 0.00510814 0.00511335 0.00511857 0.00512378 0.00512899 0.0051342 0.00513942 0.00514463 0.00514984 0.00515506 +-0.0010903 -0.00103091 -0.000925407 -0.000632073 2.51107E-05 0.000978986 0.00205267 0.00309281 0.00392612 0.00437293 0.00450139 0.00452798 0.00453641 0.0045421 0.00454739 0.00455263 0.00455785 0.00456307 0.00456829 0.00457351 0.00457873 0.00458396 0.00458918 0.0045944 0.00459962 0.00460484 0.00461006 0.00461528 0.00462051 0.00462573 0.00463095 0.00463617 0.00464139 0.00464661 0.00465183 0.00465706 0.00466228 0.0046675 0.00467272 0.00467794 0.00468316 0.00468838 0.00469361 0.00469883 0.00470405 0.00470927 0.00471449 0.00471971 0.00472493 0.00473015 0.00473537 0.00474059 0.00474582 0.00475104 0.00475626 0.00476148 0.0047667 0.00477192 0.00477714 0.00478237 0.00478759 0.00479281 0.00479803 0.00480325 0.00480847 0.00481369 0.00481892 0.00482414 0.00482936 0.00483458 0.0048398 0.00484502 0.00485024 0.00485547 0.00486069 0.00486591 0.00487113 0.00487635 0.00488157 0.00488679 0.00489201 0.00489724 0.00490246 0.00490768 0.0049129 0.00491812 0.00492334 0.00492856 0.00493379 0.00493901 0.00494423 0.00494945 0.00495467 0.00495989 0.00496511 0.00497034 0.00497556 0.00498078 0.004986 0.00499122 0.00499644 0.00500166 0.00500689 0.00501211 0.00501733 0.00502255 0.00502777 0.00503299 0.00503821 0.00504344 0.00504866 0.00505388 0.0050591 0.00506432 0.00506954 0.00507476 0.00507999 0.00508521 0.00509043 0.00509565 0.00510087 0.00510609 0.00511131 0.00511654 0.00512176 0.00512698 0.0051322 0.00513742 0.00514264 0.00514786 0.00515309 0.00515831 0.00516353 +-0.00109234 -0.00103282 -0.000927024 -0.000632956 2.51814E-05 0.00097983 0.00205425 0.0030954 0.00393039 0.00437918 0.00450856 0.00453535 0.00454381 0.00454952 0.00455482 0.00456006 0.00456529 0.00457052 0.00457575 0.00458098 0.00458621 0.00459144 0.00459667 0.0046019 0.00460713 0.00461236 0.00461759 0.00462282 0.00462805 0.00463328 0.00463851 0.00464374 0.00464897 0.0046542 0.00465943 0.00466466 0.0046699 0.00467513 0.00468036 0.00468559 0.00469082 0.00469605 0.00470128 0.00470651 0.00471174 0.00471697 0.0047222 0.00472743 0.00473265 0.00473788 0.00474311 0.00474835 0.00475358 0.00475881 0.00476404 0.00476927 0.0047745 0.00477973 0.00478496 0.00479019 0.00479542 0.00480065 0.00480588 0.00481111 0.00481634 0.00482157 0.0048268 0.00483203 0.00483726 0.00484249 0.00484772 0.00485295 0.00485818 0.00486341 0.00486864 0.00487387 0.0048791 0.00488433 0.00488956 0.00489479 0.00490002 0.00490525 0.00491048 0.00491571 0.00492094 0.00492617 0.0049314 0.00493663 0.00494186 0.00494709 0.00495232 0.00495755 0.00496279 0.00496802 0.00497325 0.00497848 0.00498371 0.00498894 0.00499417 0.0049994 0.00500463 0.00500986 0.00501509 0.00502032 0.00502555 0.00503078 0.00503601 0.00504124 0.00504647 0.0050517 0.00505693 0.00506216 0.00506739 0.00507262 0.00507785 0.00508308 0.00508831 0.00509354 0.00509877 0.005104 0.00510923 0.00511446 0.00511969 0.00512492 0.00513015 0.00513538 0.00514061 0.00514584 0.00515107 0.0051563 0.00516153 0.00516676 0.005172 +-0.00109439 -0.00103473 -0.000928639 -0.000633838 2.52521E-05 0.000980673 0.00205583 0.00309798 0.00393464 0.00438541 0.00451572 0.00454271 0.00455121 0.00455693 0.00456224 0.00456749 0.00457273 0.00457797 0.0045832 0.00458844 0.00459368 0.00459892 0.00460416 0.0046094 0.00461464 0.00461988 0.00462512 0.00463036 0.0046356 0.00464083 0.00464607 0.00465131 0.00465655 0.00466179 0.00466703 0.00467227 0.00467751 0.00468275 0.00468799 0.00469322 0.00469846 0.0047037 0.00470894 0.00471418 0.00471942 0.00472466 0.0047299 0.00473514 0.00474037 0.00474561 0.00475085 0.00475609 0.00476133 0.00476657 0.00477181 0.00477705 0.00478229 0.00478752 0.00479276 0.004798 0.00480324 0.00480848 0.00481372 0.00481896 0.0048242 0.00482944 0.00483468 0.00483992 0.00484515 0.00485039 0.00485563 0.00486087 0.00486611 0.00487135 0.00487659 0.00488183 0.00488707 0.00489231 0.00489755 0.00490278 0.00490802 0.00491326 0.0049185 0.00492374 0.00492898 0.00493422 0.00493946 0.0049447 0.00494994 0.00495518 0.00496041 0.00496565 0.00497089 0.00497613 0.00498137 0.00498661 0.00499185 0.00499709 0.00500233 0.00500757 0.00501281 0.00501804 0.00502328 0.00502852 0.00503376 0.005039 0.00504424 0.00504948 0.00505472 0.00505996 0.0050652 0.00507044 0.00507567 0.00508091 0.00508615 0.00509139 0.00509663 0.00510187 0.00510711 0.00511235 0.00511759 0.00512283 0.00512807 0.0051333 0.00513854 0.00514378 0.00514902 0.00515426 0.0051595 0.00516474 0.00516998 0.00517522 0.00518046 +-0.00109643 -0.00103664 -0.000930254 -0.000634719 2.53229E-05 0.000981513 0.0020574 0.00310056 0.00393888 0.00439164 0.00452288 0.00455006 0.0045586 0.00456433 0.00456965 0.00457491 0.00458016 0.0045854 0.00459065 0.0045959 0.00460115 0.0046064 0.00461164 0.00461689 0.00462214 0.00462739 0.00463264 0.00463788 0.00464313 0.00464838 0.00465363 0.00465888 0.00466412 0.00466937 0.00467462 0.00467987 0.00468511 0.00469036 0.00469561 0.00470086 0.00470611 0.00471135 0.0047166 0.00472185 0.0047271 0.00473235 0.00473759 0.00474284 0.00474809 0.00475333 0.00475858 0.00476383 0.00476908 0.00477433 0.00477957 0.00478482 0.00479007 0.00479532 0.00480057 0.00480581 0.00481106 0.00481631 0.00482156 0.0048268 0.00483205 0.0048373 0.00484255 0.0048478 0.00485304 0.00485829 0.00486354 0.00486879 0.00487404 0.00487928 0.00488453 0.00488978 0.00489503 0.00490028 0.00490552 0.00491077 0.00491602 0.00492127 0.00492652 0.00493176 0.00493701 0.00494226 0.00494751 0.00495275 0.004958 0.00496325 0.0049685 0.00497375 0.00497899 0.00498424 0.00498949 0.00499474 0.00499999 0.00500523 0.00501048 0.00501573 0.00502098 0.00502623 0.00503147 0.00503672 0.00504197 0.00504722 0.00505247 0.00505771 0.00506296 0.00506821 0.00507346 0.0050787 0.00508395 0.0050892 0.00509445 0.0050997 0.00510494 0.00511019 0.00511544 0.00512069 0.00512594 0.00513118 0.00513643 0.00514168 0.00514693 0.00515218 0.00515742 0.00516267 0.00516792 0.00517317 0.00517842 0.00518366 0.00518891 +-0.00109847 -0.00103855 -0.000931867 -0.000635599 2.53937E-05 0.000982353 0.00205897 0.00310313 0.0039431 0.00439786 0.00453002 0.0045574 0.00456599 0.00457173 0.00457706 0.00458232 0.00458758 0.00459284 0.0045981 0.00460335 0.00460861 0.00461387 0.00461912 0.00462438 0.00462964 0.00463489 0.00464015 0.00464541 0.00465066 0.00465592 0.00466118 0.00466643 0.00467169 0.00467695 0.0046822 0.00468746 0.00469272 0.00469797 0.00470323 0.00470849 0.00471374 0.004719 0.00472426 0.00472951 0.00473477 0.00474003 0.00474528 0.00475054 0.0047558 0.00476105 0.00476631 0.00477156 0.00477682 0.00478208 0.00478733 0.00479259 0.00479785 0.0048031 0.00480836 0.00481362 0.00481887 0.00482413 0.00482939 0.00483465 0.0048399 0.00484516 0.00485042 0.00485567 0.00486093 0.00486619 0.00487144 0.0048767 0.00488196 0.00488721 0.00489247 0.00489773 0.00490298 0.00490824 0.0049135 0.00491875 0.00492401 0.00492927 0.00493452 0.00493978 0.00494504 0.00495029 0.00495555 0.00496081 0.00496606 0.00497132 0.00497658 0.00498183 0.00498709 0.00499235 0.0049976 0.00500286 0.00500812 0.00501337 0.00501863 0.00502389 0.00502914 0.0050344 0.00503966 0.00504491 0.00505017 0.00505543 0.00506068 0.00506594 0.0050712 0.00507646 0.00508171 0.00508697 0.00509223 0.00509748 0.00510274 0.005108 0.00511325 0.00511851 0.00512377 0.00512902 0.00513428 0.00513954 0.00514479 0.00515005 0.00515531 0.00516056 0.00516582 0.00517108 0.00517633 0.00518159 0.00518685 0.0051921 0.00519736 +-0.00110052 -0.00104046 -0.000933479 -0.000636477 2.54646E-05 0.00098319 0.00206053 0.00310569 0.00394732 0.00440406 0.00453717 0.00456475 0.00457336 0.00457912 0.00458446 0.00458973 0.004595 0.00460027 0.00460553 0.0046108 0.00461606 0.00462133 0.00462659 0.00463186 0.00463713 0.00464239 0.00464766 0.00465292 0.00465819 0.00466345 0.00466872 0.00467398 0.00467925 0.00468452 0.00468978 0.00469505 0.00470031 0.00470558 0.00471084 0.00471611 0.00472138 0.00472664 0.00473191 0.00473717 0.00474244 0.0047477 0.00475297 0.00475823 0.0047635 0.00476876 0.00477403 0.00477929 0.00478456 0.00478982 0.00479509 0.00480036 0.00480562 0.00481089 0.00481615 0.00482142 0.00482668 0.00483195 0.00483721 0.00484248 0.00484775 0.00485301 0.00485828 0.00486354 0.00486881 0.00487407 0.00487934 0.0048846 0.00488987 0.00489514 0.0049004 0.00490567 0.00491093 0.0049162 0.00492146 0.00492673 0.00493199 0.00493726 0.00494253 0.00494779 0.00495306 0.00495832 0.00496359 0.00496885 0.00497412 0.00497938 0.00498465 0.00498992 0.00499518 0.00500045 0.00500571 0.00501098 0.00501624 0.00502151 0.00502677 0.00503204 0.00503731 0.00504257 0.00504784 0.0050531 0.00505837 0.00506363 0.0050689 0.00507416 0.00507943 0.0050847 0.00508996 0.00509523 0.00510049 0.00510576 0.00511102 0.00511629 0.00512155 0.00512682 0.00513209 0.00513735 0.00514262 0.00514788 0.00515315 0.00515841 0.00516368 0.00516894 0.00517421 0.00517948 0.00518474 0.00519001 0.00519527 0.00520054 0.0052058 +-0.00110256 -0.00104236 -0.000935091 -0.000637354 2.55355E-05 0.000984026 0.00206209 0.00310825 0.00395152 0.00441025 0.0045443 0.00457208 0.00458074 0.00458651 0.00459186 0.00459714 0.00460242 0.00460769 0.00461296 0.00461824 0.00462351 0.00462879 0.00463406 0.00463934 0.00464461 0.00464989 0.00465516 0.00466043 0.00466571 0.00467098 0.00467626 0.00468153 0.00468681 0.00469208 0.00469735 0.00470263 0.0047079 0.00471318 0.00471845 0.00472373 0.004729 0.00473428 0.00473955 0.00474482 0.0047501 0.00475537 0.00476065 0.00476592 0.0047712 0.00477647 0.00478174 0.00478702 0.00479229 0.00479756 0.00480284 0.00480811 0.00481339 0.00481866 0.00482394 0.00482921 0.00483449 0.00483976 0.00484503 0.00485031 0.00485558 0.00486086 0.00486613 0.00487141 0.00487668 0.00488195 0.00488723 0.0048925 0.00489778 0.00490305 0.00490833 0.0049136 0.00491888 0.00492415 0.00492942 0.0049347 0.00493997 0.00494525 0.00495052 0.0049558 0.00496107 0.00496634 0.00497162 0.00497689 0.00498217 0.00498744 0.00499272 0.00499799 0.00500327 0.00500854 0.00501381 0.00501909 0.00502436 0.00502964 0.00503491 0.00504019 0.00504546 0.00505073 0.00505601 0.00506128 0.00506656 0.00507183 0.00507711 0.00508238 0.00508766 0.00509293 0.0050982 0.00510348 0.00510875 0.00511403 0.0051193 0.00512458 0.00512985 0.00513512 0.0051404 0.00514567 0.00515095 0.00515622 0.0051615 0.00516677 0.00517205 0.00517732 0.00518259 0.00518787 0.00519314 0.00519842 0.00520369 0.00520897 0.00521424 +-0.0011046 -0.00104427 -0.0009367 -0.000638229 2.56064E-05 0.00098486 0.00206365 0.0031108 0.00395571 0.00441643 0.00455143 0.00457941 0.00458811 0.00459389 0.00459925 0.00460454 0.00460983 0.00461511 0.00462039 0.00462568 0.00463096 0.00463624 0.00464152 0.00464681 0.00465209 0.00465737 0.00466266 0.00466794 0.00467322 0.00467851 0.00468379 0.00468907 0.00469436 0.00469964 0.00470492 0.00471021 0.00471549 0.00472077 0.00472606 0.00473134 0.00473662 0.00474191 0.00474719 0.00475247 0.00475775 0.00476304 0.00476832 0.0047736 0.00477889 0.00478417 0.00478945 0.00479473 0.00480002 0.0048053 0.00481058 0.00481587 0.00482115 0.00482643 0.00483172 0.004837 0.00484228 0.00484757 0.00485285 0.00485813 0.00486342 0.0048687 0.00487398 0.00487926 0.00488455 0.00488983 0.00489511 0.0049004 0.00490568 0.00491096 0.00491625 0.00492153 0.00492681 0.0049321 0.00493738 0.00494266 0.00494795 0.00495323 0.00495851 0.0049638 0.00496908 0.00497436 0.00497965 0.00498493 0.00499021 0.00499549 0.00500078 0.00500606 0.00501134 0.00501663 0.00502191 0.00502719 0.00503248 0.00503776 0.00504304 0.00504833 0.00505361 0.00505889 0.00506418 0.00506946 0.00507474 0.00508003 0.00508531 0.00509059 0.00509588 0.00510116 0.00510644 0.00511172 0.00511701 0.00512229 0.00512757 0.00513286 0.00513814 0.00514342 0.00514871 0.00515399 0.00515927 0.00516456 0.00516984 0.00517512 0.00518041 0.00518569 0.00519097 0.00519626 0.00520154 0.00520682 0.00521211 0.00521739 0.00522267 +-0.00110664 -0.00104618 -0.000938309 -0.000639103 2.56774E-05 0.000985692 0.00206521 0.00311334 0.00395989 0.0044226 0.00455855 0.00458674 0.00459547 0.00460127 0.00460663 0.00461194 0.00461723 0.00462252 0.00462781 0.00463311 0.0046384 0.00464369 0.00464898 0.00465427 0.00465957 0.00466486 0.00467015 0.00467544 0.00468073 0.00468603 0.00469132 0.00469661 0.0047019 0.00470719 0.00471249 0.00471778 0.00472307 0.00472836 0.00473365 0.00473895 0.00474424 0.00474953 0.00475482 0.00476011 0.00476541 0.0047707 0.00477599 0.00478128 0.00478657 0.00479187 0.00479715 0.00480245 0.00480774 0.00481303 0.00481832 0.00482361 0.00482891 0.0048342 0.00483949 0.00484478 0.00485007 0.00485537 0.00486066 0.00486595 0.00487124 0.00487653 0.00488183 0.00488712 0.00489241 0.0048977 0.00490299 0.00490829 0.00491358 0.00491887 0.00492416 0.00492945 0.00493475 0.00494004 0.00494533 0.00495062 0.00495591 0.00496121 0.0049665 0.00497179 0.00497708 0.00498237 0.00498767 0.00499296 0.00499825 0.00500354 0.00500883 0.00501413 0.00501942 0.00502471 0.00503 0.00503529 0.00504059 0.00504588 0.00505117 0.00505646 0.00506175 0.00506705 0.00507234 0.00507763 0.00508292 0.00508821 0.00509351 0.0050988 0.00510409 0.00510938 0.00511467 0.00511997 0.00512526 0.00513055 0.00513584 0.00514113 0.00514642 0.00515172 0.00515701 0.0051623 0.00516759 0.00517288 0.00517818 0.00518347 0.00518876 0.00519405 0.00519934 0.00520464 0.00520993 0.00521522 0.00522051 0.0052258 0.0052311 +-0.00110868 -0.00104808 -0.000939917 -0.000639976 2.57484E-05 0.000986523 0.00206676 0.00311587 0.00396406 0.00442876 0.00456566 0.00459406 0.00460283 0.00460864 0.00461401 0.00461933 0.00462463 0.00462993 0.00463523 0.00464053 0.00464583 0.00465113 0.00465643 0.00466173 0.00466703 0.00467234 0.00467764 0.00468294 0.00468824 0.00469354 0.00469884 0.00470414 0.00470944 0.00471474 0.00472004 0.00472534 0.00473064 0.00473594 0.00474125 0.00474655 0.00475185 0.00475715 0.00476245 0.00476775 0.00477305 0.00477835 0.00478365 0.00478895 0.00479425 0.00479955 0.00480485 0.00481015 0.00481545 0.00482075 0.00482606 0.00483136 0.00483666 0.00484196 0.00484726 0.00485256 0.00485786 0.00486316 0.00486846 0.00487376 0.00487906 0.00488436 0.00488966 0.00489497 0.00490027 0.00490557 0.00491087 0.00491617 0.00492147 0.00492677 0.00493207 0.00493737 0.00494267 0.00494797 0.00495327 0.00495857 0.00496388 0.00496918 0.00497448 0.00497978 0.00498508 0.00499038 0.00499568 0.00500098 0.00500628 0.00501158 0.00501688 0.00502218 0.00502748 0.00503279 0.00503809 0.00504339 0.00504869 0.00505399 0.00505929 0.00506459 0.00506989 0.00507519 0.00508049 0.00508579 0.00509109 0.00509639 0.0051017 0.005107 0.0051123 0.0051176 0.0051229 0.0051282 0.0051335 0.0051388 0.0051441 0.0051494 0.0051547 0.00516 0.00516531 0.00517061 0.00517591 0.00518121 0.00518651 0.00519181 0.00519711 0.00520241 0.00520771 0.00521301 0.00521831 0.00522361 0.00522891 0.00523422 0.00523952 +-0.00111072 -0.00104999 -0.000941524 -0.000640847 2.58194E-05 0.000987352 0.0020683 0.0031184 0.00396822 0.00443491 0.00457277 0.00460137 0.00461018 0.00461601 0.00462139 0.00462671 0.00463202 0.00463733 0.00464264 0.00464795 0.00465326 0.00465857 0.00466388 0.00466919 0.0046745 0.00467981 0.00468512 0.00469043 0.00469574 0.00470105 0.00470636 0.00471167 0.00471698 0.00472228 0.00472759 0.0047329 0.00473821 0.00474352 0.00474883 0.00475414 0.00475945 0.00476476 0.00477007 0.00477538 0.00478069 0.004786 0.00479131 0.00479662 0.00480193 0.00480724 0.00481254 0.00481785 0.00482316 0.00482847 0.00483378 0.00483909 0.0048444 0.00484971 0.00485502 0.00486033 0.00486564 0.00487095 0.00487626 0.00488157 0.00488688 0.00489219 0.0048975 0.00490281 0.00490812 0.00491343 0.00491874 0.00492405 0.00492936 0.00493466 0.00493997 0.00494528 0.00495059 0.0049559 0.00496121 0.00496652 0.00497183 0.00497714 0.00498245 0.00498776 0.00499307 0.00499838 0.00500369 0.005009 0.00501431 0.00501962 0.00502493 0.00503024 0.00503555 0.00504086 0.00504617 0.00505148 0.00505678 0.00506209 0.0050674 0.00507271 0.00507802 0.00508333 0.00508864 0.00509395 0.00509926 0.00510457 0.00510988 0.00511519 0.0051205 0.00512581 0.00513112 0.00513643 0.00514174 0.00514705 0.00515236 0.00515767 0.00516298 0.00516829 0.0051736 0.00517891 0.00518421 0.00518952 0.00519483 0.00520014 0.00520545 0.00521076 0.00521607 0.00522138 0.00522669 0.005232 0.00523731 0.00524262 0.00524793 +-0.00111275 -0.00105189 -0.000943129 -0.000641717 2.58905E-05 0.00098818 0.00206985 0.00312092 0.00397236 0.00444104 0.00457987 0.00460868 0.00461753 0.00462337 0.00462876 0.00463409 0.00463941 0.00464473 0.00465005 0.00465537 0.00466068 0.004666 0.00467132 0.00467664 0.00468196 0.00468728 0.00469259 0.00469791 0.00470323 0.00470855 0.00471387 0.00471919 0.0047245 0.00472982 0.00473514 0.00474046 0.00474578 0.0047511 0.00475641 0.00476173 0.00476705 0.00477237 0.00477769 0.00478301 0.00478832 0.00479364 0.00479896 0.00480428 0.0048096 0.00481492 0.00482023 0.00482555 0.00483087 0.00483619 0.00484151 0.00484682 0.00485214 0.00485746 0.00486278 0.0048681 0.00487342 0.00487873 0.00488405 0.00488937 0.00489469 0.00490001 0.00490533 0.00491064 0.00491596 0.00492128 0.0049266 0.00493192 0.00493724 0.00494255 0.00494787 0.00495319 0.00495851 0.00496383 0.00496915 0.00497446 0.00497978 0.0049851 0.00499042 0.00499574 0.00500106 0.00500637 0.00501169 0.00501701 0.00502233 0.00502765 0.00503297 0.00503828 0.0050436 0.00504892 0.00505424 0.00505956 0.00506488 0.00507019 0.00507551 0.00508083 0.00508615 0.00509147 0.00509679 0.0051021 0.00510742 0.00511274 0.00511806 0.00512338 0.0051287 0.00513401 0.00513933 0.00514465 0.00514997 0.00515529 0.00516061 0.00516592 0.00517124 0.00517656 0.00518188 0.0051872 0.00519252 0.00519784 0.00520315 0.00520847 0.00521379 0.00521911 0.00522443 0.00522975 0.00523506 0.00524038 0.0052457 0.00525102 0.00525634 +-0.00111479 -0.00105379 -0.000944733 -0.000642585 2.59617E-05 0.000989006 0.00207139 0.00312344 0.0039765 0.00444716 0.00458696 0.00461598 0.00462487 0.00463072 0.00463613 0.00464146 0.00464679 0.00465212 0.00465745 0.00466277 0.0046681 0.00467343 0.00467876 0.00468408 0.00468941 0.00469474 0.00470006 0.00470539 0.00471072 0.00471605 0.00472137 0.0047267 0.00473203 0.00473735 0.00474268 0.00474801 0.00475334 0.00475866 0.00476399 0.00476932 0.00477464 0.00477997 0.0047853 0.00479063 0.00479595 0.00480128 0.00480661 0.00481193 0.00481726 0.00482259 0.00482792 0.00483324 0.00483857 0.00484389 0.00484922 0.00485455 0.00485988 0.0048652 0.00487053 0.00487586 0.00488118 0.00488651 0.00489184 0.00489717 0.00490249 0.00490782 0.00491315 0.00491847 0.0049238 0.00492913 0.00493446 0.00493978 0.00494511 0.00495044 0.00495576 0.00496109 0.00496642 0.00497175 0.00497707 0.0049824 0.00498773 0.00499305 0.00499838 0.00500371 0.00500904 0.00501436 0.00501969 0.00502502 0.00503034 0.00503567 0.005041 0.00504633 0.00505165 0.00505698 0.00506231 0.00506763 0.00507296 0.00507829 0.00508362 0.00508894 0.00509427 0.0050996 0.00510492 0.00511025 0.00511558 0.00512091 0.00512623 0.00513156 0.00513689 0.00514221 0.00514754 0.00515287 0.0051582 0.00516352 0.00516885 0.00517418 0.0051795 0.00518483 0.00519016 0.00519549 0.00520081 0.00520614 0.00521147 0.00521679 0.00522212 0.00522745 0.00523278 0.0052381 0.00524343 0.00524876 0.00525408 0.00525941 0.00526474 +-0.00111683 -0.00105569 -0.000946336 -0.000643453 2.60329E-05 0.00098983 0.00207292 0.00312595 0.00398062 0.00445328 0.00459405 0.00462328 0.00463221 0.00463807 0.00464349 0.00464883 0.00465417 0.00465951 0.00466484 0.00467018 0.00467551 0.00468085 0.00468619 0.00469152 0.00469686 0.00470219 0.00470753 0.00471287 0.0047182 0.00472354 0.00472887 0.00473421 0.00473955 0.00474488 0.00475022 0.00475555 0.00476089 0.00476623 0.00477156 0.0047769 0.00478223 0.00478757 0.00479291 0.00479824 0.00480358 0.00480891 0.00481425 0.00481958 0.00482492 0.00483026 0.00483559 0.00484093 0.00484626 0.0048516 0.00485693 0.00486227 0.00486761 0.00487294 0.00487828 0.00488361 0.00488895 0.00489428 0.00489962 0.00490496 0.00491029 0.00491563 0.00492096 0.0049263 0.00493164 0.00493697 0.00494231 0.00494764 0.00495298 0.00495832 0.00496365 0.00496899 0.00497432 0.00497966 0.004985 0.00499033 0.00499567 0.005001 0.00500634 0.00501167 0.00501701 0.00502235 0.00502768 0.00503302 0.00503835 0.00504369 0.00504903 0.00505436 0.0050597 0.00506503 0.00507037 0.00507571 0.00508104 0.00508638 0.00509171 0.00509705 0.00510239 0.00510772 0.00511306 0.00511839 0.00512373 0.00512906 0.0051344 0.00513974 0.00514507 0.00515041 0.00515574 0.00516108 0.00516642 0.00517175 0.00517709 0.00518242 0.00518776 0.0051931 0.00519843 0.00520377 0.0052091 0.00521444 0.00521978 0.00522511 0.00523045 0.00523578 0.00524112 0.00524645 0.00525179 0.00525713 0.00526246 0.0052678 0.00527313 +-0.00111886 -0.00105759 -0.000947939 -0.000644319 2.61041E-05 0.000990653 0.00207446 0.00312845 0.00398473 0.00445938 0.00460113 0.00463057 0.00463954 0.00464542 0.00465084 0.0046562 0.00466154 0.00466689 0.00467223 0.00467758 0.00468292 0.00468827 0.00469361 0.00469896 0.0047043 0.00470965 0.00471499 0.00472034 0.00472568 0.00473102 0.00473637 0.00474171 0.00474706 0.0047524 0.00475775 0.00476309 0.00476844 0.00477378 0.00477913 0.00478447 0.00478982 0.00479516 0.00480051 0.00480585 0.0048112 0.00481654 0.00482188 0.00482723 0.00483257 0.00483792 0.00484326 0.00484861 0.00485395 0.00485929 0.00486464 0.00486998 0.00487533 0.00488067 0.00488602 0.00489136 0.00489671 0.00490205 0.0049074 0.00491274 0.00491809 0.00492343 0.00492878 0.00493412 0.00493946 0.00494481 0.00495015 0.0049555 0.00496084 0.00496619 0.00497153 0.00497688 0.00498222 0.00498757 0.00499291 0.00499826 0.0050036 0.00500895 0.00501429 0.00501964 0.00502498 0.00503032 0.00503567 0.00504101 0.00504636 0.0050517 0.00505705 0.00506239 0.00506774 0.00507308 0.00507843 0.00508377 0.00508912 0.00509446 0.00509981 0.00510515 0.00511049 0.00511584 0.00512118 0.00512653 0.00513187 0.00513722 0.00514256 0.00514791 0.00515325 0.0051586 0.00516394 0.00516929 0.00517463 0.00517998 0.00518532 0.00519066 0.00519601 0.00520135 0.0052067 0.00521204 0.00521739 0.00522273 0.00522808 0.00523342 0.00523877 0.00524411 0.00524946 0.0052548 0.00526015 0.00526549 0.00527084 0.00527618 0.00528152 +-0.0011209 -0.00105949 -0.000949539 -0.000645183 2.61753E-05 0.000991474 0.00207599 0.00313094 0.00398883 0.00446546 0.0046082 0.00463785 0.00464687 0.00465276 0.00465819 0.00466356 0.00466891 0.00467426 0.00467962 0.00468497 0.00469033 0.00469568 0.00470103 0.00470639 0.00471174 0.00471709 0.00472245 0.0047278 0.00473315 0.00473851 0.00474386 0.00474921 0.00475457 0.00475992 0.00476527 0.00477063 0.00477598 0.00478133 0.00478669 0.00479204 0.00479739 0.00480275 0.0048081 0.00481345 0.00481881 0.00482416 0.00482951 0.00483487 0.00484022 0.00484558 0.00485093 0.00485628 0.00486163 0.00486699 0.00487234 0.00487769 0.00488305 0.0048884 0.00489375 0.00489911 0.00490446 0.00490981 0.00491517 0.00492052 0.00492587 0.00493123 0.00493658 0.00494193 0.00494729 0.00495264 0.004958 0.00496335 0.0049687 0.00497406 0.00497941 0.00498476 0.00499012 0.00499547 0.00500082 0.00500618 0.00501153 0.00501688 0.00502224 0.00502759 0.00503294 0.0050383 0.00504365 0.005049 0.00505436 0.00505971 0.00506506 0.00507042 0.00507577 0.00508112 0.00508648 0.00509183 0.00509718 0.00510254 0.00510789 0.00511324 0.0051186 0.00512395 0.00512931 0.00513466 0.00514001 0.00514537 0.00515072 0.00515607 0.00516143 0.00516678 0.00517213 0.00517749 0.00518284 0.00518819 0.00519355 0.0051989 0.00520425 0.00520961 0.00521496 0.00522031 0.00522567 0.00523102 0.00523637 0.00524173 0.00524708 0.00525243 0.00525779 0.00526314 0.00526849 0.00527385 0.0052792 0.00528456 0.00528991 +-0.00112293 -0.00106139 -0.000951139 -0.000646046 2.62466E-05 0.000992293 0.00207751 0.00313343 0.00399291 0.00447154 0.00461527 0.00464514 0.00465419 0.00466009 0.00466554 0.00467091 0.00467627 0.00468164 0.004687 0.00469236 0.00469772 0.00470308 0.00470845 0.00471381 0.00471917 0.00472453 0.0047299 0.00473526 0.00474062 0.00474598 0.00475134 0.00475671 0.00476207 0.00476743 0.00477279 0.00477816 0.00478352 0.00478888 0.00479424 0.0047996 0.00480497 0.00481033 0.00481569 0.00482105 0.00482642 0.00483178 0.00483714 0.0048425 0.00484786 0.00485323 0.00485859 0.00486395 0.00486931 0.00487467 0.00488004 0.0048854 0.00489076 0.00489612 0.00490148 0.00490685 0.00491221 0.00491757 0.00492293 0.0049283 0.00493366 0.00493902 0.00494438 0.00494974 0.00495511 0.00496047 0.00496583 0.00497119 0.00497655 0.00498192 0.00498728 0.00499264 0.004998 0.00500337 0.00500873 0.00501409 0.00501945 0.00502481 0.00503018 0.00503554 0.0050409 0.00504626 0.00505163 0.00505699 0.00506235 0.00506771 0.00507307 0.00507844 0.0050838 0.00508916 0.00509452 0.00509989 0.00510525 0.00511061 0.00511597 0.00512133 0.0051267 0.00513206 0.00513742 0.00514278 0.00514815 0.00515351 0.00515887 0.00516423 0.00516959 0.00517496 0.00518032 0.00518568 0.00519104 0.00519641 0.00520177 0.00520713 0.00521249 0.00521785 0.00522322 0.00522858 0.00523394 0.0052393 0.00524466 0.00525003 0.00525539 0.00526075 0.00526611 0.00527148 0.00527684 0.0052822 0.00528756 0.00529292 0.00529829 +-0.00112497 -0.00106329 -0.000952738 -0.000646908 2.6318E-05 0.000993111 0.00207903 0.00313591 0.00399699 0.00447761 0.00462232 0.00465241 0.00466151 0.00466743 0.00467288 0.00467826 0.00468363 0.004689 0.00469437 0.00469974 0.00470511 0.00471049 0.00471586 0.00472123 0.0047266 0.00473197 0.00473734 0.00474271 0.00474808 0.00475345 0.00475882 0.0047642 0.00476957 0.00477494 0.00478031 0.00478568 0.00479105 0.00479642 0.00480179 0.00480716 0.00481253 0.0048179 0.00482328 0.00482865 0.00483402 0.00483939 0.00484476 0.00485013 0.0048555 0.00486087 0.00486624 0.00487161 0.00487698 0.00488235 0.00488773 0.0048931 0.00489847 0.00490384 0.00490921 0.00491458 0.00491995 0.00492532 0.00493069 0.00493606 0.00494143 0.00494681 0.00495218 0.00495755 0.00496292 0.00496829 0.00497366 0.00497903 0.0049844 0.00498977 0.00499514 0.00500052 0.00500589 0.00501126 0.00501663 0.005022 0.00502737 0.00503274 0.00503811 0.00504348 0.00504885 0.00505422 0.0050596 0.00506497 0.00507034 0.00507571 0.00508108 0.00508645 0.00509182 0.00509719 0.00510256 0.00510793 0.00511331 0.00511868 0.00512405 0.00512942 0.00513479 0.00514016 0.00514553 0.0051509 0.00515627 0.00516164 0.00516701 0.00517239 0.00517776 0.00518313 0.0051885 0.00519387 0.00519924 0.00520461 0.00520998 0.00521535 0.00522072 0.00522609 0.00523147 0.00523684 0.00524221 0.00524758 0.00525295 0.00525832 0.00526369 0.00526906 0.00527443 0.0052798 0.00528518 0.00529055 0.00529592 0.00530129 0.00530666 +-0.001127 -0.00106519 -0.000954335 -0.000647769 2.63893E-05 0.000993927 0.00208055 0.00313839 0.00400105 0.00448366 0.00462937 0.00465968 0.00466882 0.00467475 0.00468021 0.0046856 0.00469098 0.00469636 0.00470174 0.00470712 0.0047125 0.00471788 0.00472326 0.00472864 0.00473402 0.0047394 0.00474478 0.00475016 0.00475554 0.00476092 0.0047663 0.00477168 0.00477706 0.00478244 0.00478782 0.0047932 0.00479858 0.00480396 0.00480934 0.00481472 0.0048201 0.00482548 0.00483086 0.00483623 0.00484161 0.00484699 0.00485237 0.00485775 0.00486313 0.00486851 0.00487389 0.00487927 0.00488465 0.00489003 0.00489541 0.00490079 0.00490617 0.00491155 0.00491693 0.00492231 0.00492769 0.00493307 0.00493845 0.00494383 0.00494921 0.00495459 0.00495997 0.00496535 0.00497073 0.0049761 0.00498148 0.00498686 0.00499224 0.00499762 0.005003 0.00500838 0.00501376 0.00501914 0.00502452 0.0050299 0.00503528 0.00504066 0.00504604 0.00505142 0.0050568 0.00506218 0.00506756 0.00507294 0.00507832 0.0050837 0.00508908 0.00509446 0.00509984 0.00510522 0.0051106 0.00511598 0.00512136 0.00512674 0.00513212 0.0051375 0.00514288 0.00514826 0.00515363 0.00515901 0.00516439 0.00516977 0.00517515 0.00518053 0.00518591 0.00519129 0.00519667 0.00520205 0.00520743 0.00521281 0.00521819 0.00522357 0.00522895 0.00523433 0.00523971 0.00524509 0.00525047 0.00525585 0.00526123 0.00526661 0.00527199 0.00527737 0.00528275 0.00528813 0.00529351 0.00529889 0.00530427 0.00530965 0.00531503 +-0.00112903 -0.00106709 -0.000955932 -0.000648628 2.64607E-05 0.000994742 0.00208207 0.00314086 0.00400511 0.0044897 0.00463642 0.00466694 0.00467613 0.00468207 0.00468754 0.00469294 0.00469833 0.00470372 0.00470911 0.0047145 0.00471988 0.00472527 0.00473066 0.00473605 0.00474144 0.00474683 0.00475221 0.0047576 0.00476299 0.00476838 0.00477377 0.00477916 0.00478454 0.00478993 0.00479532 0.00480071 0.0048061 0.00481149 0.00481688 0.00482226 0.00482765 0.00483304 0.00483843 0.00484382 0.00484921 0.00485459 0.00485998 0.00486537 0.00487076 0.00487615 0.00488154 0.00488693 0.00489231 0.0048977 0.00490309 0.00490848 0.00491387 0.00491925 0.00492464 0.00493003 0.00493542 0.00494081 0.0049462 0.00495158 0.00495697 0.00496236 0.00496775 0.00497314 0.00497853 0.00498392 0.0049893 0.00499469 0.00500008 0.00500547 0.00501086 0.00501625 0.00502163 0.00502702 0.00503241 0.0050378 0.00504319 0.00504858 0.00505396 0.00505935 0.00506474 0.00507013 0.00507552 0.00508091 0.0050863 0.00509168 0.00509707 0.00510246 0.00510785 0.00511324 0.00511863 0.00512401 0.0051294 0.00513479 0.00514018 0.00514557 0.00515096 0.00515635 0.00516173 0.00516712 0.00517251 0.0051779 0.00518329 0.00518868 0.00519406 0.00519945 0.00520484 0.00521023 0.00521562 0.00522101 0.00522639 0.00523178 0.00523717 0.00524256 0.00524795 0.00525334 0.00525873 0.00526411 0.0052695 0.00527489 0.00528028 0.00528567 0.00529106 0.00529644 0.00530183 0.00530722 0.00531261 0.005318 0.00532339 +-0.00113106 -0.00106898 -0.000957527 -0.000649486 2.65322E-05 0.000995555 0.00208358 0.00314332 0.00400915 0.00449574 0.00464346 0.0046742 0.00468343 0.00468938 0.00469486 0.00470027 0.00470567 0.00471107 0.00471647 0.00472186 0.00472726 0.00473266 0.00473805 0.00474345 0.00474885 0.00475425 0.00475964 0.00476504 0.00477044 0.00477583 0.00478123 0.00478663 0.00479203 0.00479742 0.00480282 0.00480822 0.00481362 0.00481901 0.00482441 0.00482981 0.0048352 0.0048406 0.004846 0.0048514 0.00485679 0.00486219 0.00486759 0.00487298 0.00487838 0.00488378 0.00488918 0.00489457 0.00489997 0.00490537 0.00491076 0.00491616 0.00492156 0.00492695 0.00493235 0.00493775 0.00494315 0.00494854 0.00495394 0.00495934 0.00496473 0.00497013 0.00497553 0.00498093 0.00498632 0.00499172 0.00499712 0.00500251 0.00500791 0.00501331 0.00501871 0.0050241 0.0050295 0.0050349 0.00504029 0.00504569 0.00505109 0.00505649 0.00506188 0.00506728 0.00507268 0.00507807 0.00508347 0.00508887 0.00509427 0.00509966 0.00510506 0.00511046 0.00511585 0.00512125 0.00512665 0.00513205 0.00513744 0.00514284 0.00514824 0.00515364 0.00515903 0.00516443 0.00516983 0.00517522 0.00518062 0.00518602 0.00519142 0.00519681 0.00520221 0.00520761 0.005213 0.0052184 0.0052238 0.0052292 0.00523459 0.00523999 0.00524539 0.00525078 0.00525618 0.00526158 0.00526698 0.00527237 0.00527777 0.00528317 0.00528856 0.00529396 0.00529936 0.00530476 0.00531015 0.00531555 0.00532095 0.00532634 0.00533174 +-0.0011331 -0.00107088 -0.000959121 -0.000650343 2.66037E-05 0.000996366 0.00208509 0.00314577 0.00401318 0.00450176 0.00465049 0.00468146 0.00469072 0.00469669 0.00470218 0.0047076 0.00471301 0.00471841 0.00472382 0.00472923 0.00473463 0.00474004 0.00474544 0.00475085 0.00475626 0.00476166 0.00476707 0.00477247 0.00477788 0.00478328 0.00478869 0.0047941 0.0047995 0.00480491 0.00481031 0.00481572 0.00482113 0.00482653 0.00483194 0.00483734 0.00484275 0.00484816 0.00485356 0.00485897 0.00486437 0.00486978 0.00487519 0.00488059 0.004886 0.0048914 0.00489681 0.00490221 0.00490762 0.00491303 0.00491843 0.00492384 0.00492924 0.00493465 0.00494005 0.00494546 0.00495087 0.00495627 0.00496168 0.00496708 0.00497249 0.0049779 0.0049833 0.00498871 0.00499411 0.00499952 0.00500493 0.00501033 0.00501574 0.00502114 0.00502655 0.00503195 0.00503736 0.00504277 0.00504817 0.00505358 0.00505898 0.00506439 0.0050698 0.0050752 0.00508061 0.00508601 0.00509142 0.00509683 0.00510223 0.00510764 0.00511304 0.00511845 0.00512385 0.00512926 0.00513467 0.00514007 0.00514548 0.00515088 0.00515629 0.0051617 0.0051671 0.00517251 0.00517791 0.00518332 0.00518873 0.00519413 0.00519954 0.00520494 0.00521035 0.00521576 0.00522116 0.00522657 0.00523197 0.00523738 0.00524278 0.00524819 0.0052536 0.005259 0.00526441 0.00526981 0.00527522 0.00528063 0.00528603 0.00529144 0.00529684 0.00530225 0.00530766 0.00531306 0.00531847 0.00532387 0.00532928 0.00533469 0.00534009 +-0.00113513 -0.00107277 -0.000960714 -0.000651198 2.66752E-05 0.000997176 0.00208659 0.00314822 0.0040172 0.00450776 0.00465751 0.00468871 0.00469801 0.004704 0.0047095 0.00471492 0.00472034 0.00472575 0.00473117 0.00473658 0.004742 0.00474741 0.00475283 0.00475824 0.00476366 0.00476907 0.00477449 0.0047799 0.00478532 0.00479073 0.00479614 0.00480156 0.00480697 0.00481239 0.0048178 0.00482322 0.00482863 0.00483405 0.00483946 0.00484488 0.00485029 0.00485571 0.00486112 0.00486653 0.00487195 0.00487736 0.00488278 0.00488819 0.00489361 0.00489902 0.00490444 0.00490985 0.00491527 0.00492068 0.00492609 0.00493151 0.00493692 0.00494234 0.00494775 0.00495317 0.00495858 0.004964 0.00496941 0.00497483 0.00498024 0.00498565 0.00499107 0.00499648 0.0050019 0.00500731 0.00501273 0.00501814 0.00502356 0.00502897 0.00503439 0.0050398 0.00504522 0.00505063 0.00505604 0.00506146 0.00506687 0.00507229 0.0050777 0.00508312 0.00508853 0.00509395 0.00509936 0.00510478 0.00511019 0.00511561 0.00512102 0.00512643 0.00513185 0.00513726 0.00514268 0.00514809 0.00515351 0.00515892 0.00516434 0.00516975 0.00517517 0.00518058 0.005186 0.00519141 0.00519683 0.00520224 0.00520765 0.00521307 0.00521848 0.0052239 0.00522931 0.00523473 0.00524014 0.00524556 0.00525097 0.00525639 0.0052618 0.00526722 0.00527263 0.00527804 0.00528346 0.00528887 0.00529429 0.0052997 0.00530512 0.00531053 0.00531595 0.00532136 0.00532678 0.00533219 0.00533761 0.00534302 0.00534843 +-0.00113716 -0.00107467 -0.000962306 -0.000652052 2.67468E-05 0.000997985 0.0020881 0.00315067 0.0040212 0.00451376 0.00466453 0.00469595 0.0047053 0.0047113 0.0047168 0.00472224 0.00472767 0.00473309 0.00473851 0.00474394 0.00474936 0.00475478 0.00476021 0.00476563 0.00477105 0.00477648 0.0047819 0.00478732 0.00479275 0.00479817 0.00480359 0.00480902 0.00481444 0.00481986 0.00482529 0.00483071 0.00483613 0.00484156 0.00484698 0.0048524 0.00485783 0.00486325 0.00486867 0.0048741 0.00487952 0.00488494 0.00489037 0.00489579 0.00490121 0.00490664 0.00491206 0.00491748 0.00492291 0.00492833 0.00493375 0.00493917 0.0049446 0.00495002 0.00495544 0.00496087 0.00496629 0.00497171 0.00497714 0.00498256 0.00498798 0.00499341 0.00499883 0.00500425 0.00500968 0.0050151 0.00502052 0.00502595 0.00503137 0.00503679 0.00504222 0.00504764 0.00505306 0.00505849 0.00506391 0.00506934 0.00507476 0.00508018 0.00508561 0.00509103 0.00509645 0.00510188 0.0051073 0.00511272 0.00511815 0.00512357 0.00512899 0.00513442 0.00513984 0.00514526 0.00515069 0.00515611 0.00516153 0.00516696 0.00517238 0.0051778 0.00518323 0.00518865 0.00519407 0.0051995 0.00520492 0.00521034 0.00521577 0.00522119 0.00522661 0.00523204 0.00523746 0.00524288 0.00524831 0.00525373 0.00525915 0.00526458 0.00527 0.00527542 0.00528085 0.00528627 0.00529169 0.00529712 0.00530254 0.00530796 0.00531339 0.00531881 0.00532423 0.00532966 0.00533508 0.0053405 0.00534593 0.00535135 0.00535677 +-0.00113919 -0.00107656 -0.000963896 -0.000652904 2.68184E-05 0.000998791 0.00208959 0.0031531 0.0040252 0.00451975 0.00467154 0.00470319 0.00471258 0.00471859 0.00472411 0.00472955 0.00473499 0.00474042 0.00474585 0.00475128 0.00475672 0.00476215 0.00476758 0.00477301 0.00477844 0.00478388 0.00478931 0.00479474 0.00480017 0.0048056 0.00481104 0.00481647 0.0048219 0.00482733 0.00483276 0.0048382 0.00484363 0.00484906 0.00485449 0.00485992 0.00486536 0.00487079 0.00487622 0.00488165 0.00488708 0.00489252 0.00489795 0.00490338 0.00490881 0.00491425 0.00491968 0.00492511 0.00493054 0.00493597 0.00494141 0.00494684 0.00495227 0.0049577 0.00496313 0.00496856 0.004974 0.00497943 0.00498486 0.00499029 0.00499572 0.00500116 0.00500659 0.00501202 0.00501745 0.00502288 0.00502832 0.00503375 0.00503918 0.00504461 0.00505004 0.00505548 0.00506091 0.00506634 0.00507177 0.00507721 0.00508264 0.00508807 0.0050935 0.00509893 0.00510437 0.0051098 0.00511523 0.00512066 0.00512609 0.00513153 0.00513696 0.00514239 0.00514782 0.00515325 0.00515869 0.00516412 0.00516955 0.00517498 0.00518041 0.00518585 0.00519128 0.00519671 0.00520214 0.00520757 0.00521301 0.00521844 0.00522387 0.0052293 0.00523473 0.00524017 0.0052456 0.00525103 0.00525646 0.0052619 0.00526733 0.00527276 0.00527819 0.00528362 0.00528906 0.00529449 0.00529992 0.00530535 0.00531078 0.00531622 0.00532165 0.00532708 0.00533251 0.00533794 0.00534338 0.00534881 0.00535424 0.00535967 0.0053651 +-0.00114121 -0.00107845 -0.000965486 -0.000653756 2.689E-05 0.000999597 0.00209109 0.00315553 0.00402919 0.00452572 0.00467854 0.00471042 0.00471985 0.00472588 0.00473141 0.00473686 0.0047423 0.00474774 0.00475318 0.00475863 0.00476407 0.00476951 0.00477495 0.00478039 0.00478583 0.00479127 0.00479671 0.00480215 0.00480759 0.00481303 0.00481847 0.00482391 0.00482936 0.0048348 0.00484024 0.00484568 0.00485112 0.00485656 0.004862 0.00486744 0.00487288 0.00487832 0.00488376 0.0048892 0.00489464 0.00490009 0.00490553 0.00491097 0.00491641 0.00492185 0.00492729 0.00493273 0.00493817 0.00494361 0.00494905 0.00495449 0.00495993 0.00496537 0.00497081 0.00497625 0.0049817 0.00498714 0.00499258 0.00499802 0.00500346 0.0050089 0.00501434 0.00501978 0.00502522 0.00503066 0.0050361 0.00504154 0.00504698 0.00505243 0.00505787 0.00506331 0.00506875 0.00507419 0.00507963 0.00508507 0.00509051 0.00509595 0.00510139 0.00510683 0.00511227 0.00511771 0.00512316 0.0051286 0.00513404 0.00513948 0.00514492 0.00515036 0.0051558 0.00516124 0.00516668 0.00517212 0.00517756 0.005183 0.00518844 0.00519389 0.00519933 0.00520477 0.00521021 0.00521565 0.00522109 0.00522653 0.00523197 0.00523741 0.00524285 0.00524829 0.00525373 0.00525917 0.00526462 0.00527006 0.0052755 0.00528094 0.00528638 0.00529182 0.00529726 0.0053027 0.00530814 0.00531358 0.00531902 0.00532446 0.0053299 0.00533535 0.00534079 0.00534623 0.00535167 0.00535711 0.00536255 0.00536799 0.00537343 +-0.00114324 -0.00108035 -0.000967074 -0.000654606 2.69617E-05 0.0010004 0.00209258 0.00315795 0.00403316 0.00453168 0.00468554 0.00471765 0.00472713 0.00473317 0.0047387 0.00474416 0.00474961 0.00475506 0.00476051 0.00476596 0.00477141 0.00477686 0.00478231 0.00478776 0.00479321 0.00479866 0.00480411 0.00480956 0.00481501 0.00482046 0.00482591 0.00483136 0.00483681 0.00484226 0.0048477 0.00485315 0.0048586 0.00486405 0.0048695 0.00487495 0.0048804 0.00488585 0.0048913 0.00489675 0.0049022 0.00490765 0.0049131 0.00491855 0.004924 0.00492945 0.0049349 0.00494035 0.0049458 0.00495124 0.00495669 0.00496214 0.00496759 0.00497304 0.00497849 0.00498394 0.00498939 0.00499484 0.00500029 0.00500574 0.00501119 0.00501664 0.00502209 0.00502754 0.00503299 0.00503843 0.00504388 0.00504933 0.00505478 0.00506023 0.00506568 0.00507113 0.00507658 0.00508203 0.00508748 0.00509293 0.00509838 0.00510383 0.00510928 0.00511473 0.00512018 0.00512563 0.00513108 0.00513653 0.00514197 0.00514742 0.00515287 0.00515832 0.00516377 0.00516922 0.00517467 0.00518012 0.00518557 0.00519102 0.00519647 0.00520192 0.00520737 0.00521282 0.00521827 0.00522372 0.00522917 0.00523462 0.00524007 0.00524551 0.00525096 0.00525641 0.00526186 0.00526731 0.00527276 0.00527821 0.00528366 0.00528911 0.00529456 0.00530001 0.00530546 0.00531091 0.00531636 0.00532181 0.00532726 0.00533271 0.00533816 0.0053436 0.00534905 0.0053545 0.00535995 0.0053654 0.00537085 0.0053763 0.00538175 +-0.00114527 -0.00108224 -0.000968662 -0.000655454 2.70334E-05 0.0010012 0.00209407 0.00316037 0.00403713 0.00453763 0.00469253 0.00472487 0.00473439 0.00474044 0.00474599 0.00475146 0.00475692 0.00476238 0.00476784 0.00477329 0.00477875 0.00478421 0.00478967 0.00479513 0.00480059 0.00480604 0.0048115 0.00481696 0.00482242 0.00482788 0.00483333 0.00483879 0.00484425 0.00484971 0.00485517 0.00486063 0.00486608 0.00487154 0.004877 0.00488246 0.00488792 0.00489337 0.00489883 0.00490429 0.00490975 0.00491521 0.00492067 0.00492612 0.00493158 0.00493704 0.0049425 0.00494796 0.00495341 0.00495887 0.00496433 0.00496979 0.00497525 0.0049807 0.00498616 0.00499162 0.00499708 0.00500254 0.00500799 0.00501345 0.00501891 0.00502437 0.00502983 0.00503529 0.00504074 0.0050462 0.00505166 0.00505712 0.00506258 0.00506803 0.00507349 0.00507895 0.00508441 0.00508987 0.00509533 0.00510078 0.00510624 0.0051117 0.00511716 0.00512262 0.00512807 0.00513353 0.00513899 0.00514445 0.00514991 0.00515536 0.00516082 0.00516628 0.00517174 0.0051772 0.00518266 0.00518811 0.00519357 0.00519903 0.00520449 0.00520995 0.0052154 0.00522086 0.00522632 0.00523178 0.00523724 0.0052427 0.00524815 0.00525361 0.00525907 0.00526453 0.00526999 0.00527544 0.0052809 0.00528636 0.00529182 0.00529728 0.00530274 0.00530819 0.00531365 0.00531911 0.00532457 0.00533003 0.00533548 0.00534094 0.0053464 0.00535186 0.00535732 0.00536278 0.00536823 0.00537369 0.00537915 0.00538461 0.00539007 +-0.0011473 -0.00108413 -0.000970248 -0.000656302 2.71052E-05 0.001002 0.00209555 0.00316278 0.00404108 0.00454357 0.00469951 0.00473208 0.00474165 0.00474772 0.00475327 0.00475875 0.00476422 0.00476969 0.00477515 0.00478062 0.00478609 0.00479156 0.00479702 0.00480249 0.00480796 0.00481342 0.00481889 0.00482436 0.00482982 0.00483529 0.00484076 0.00484622 0.00485169 0.00485716 0.00486262 0.00486809 0.00487356 0.00487903 0.00488449 0.00488996 0.00489543 0.00490089 0.00490636 0.00491183 0.00491729 0.00492276 0.00492823 0.00493369 0.00493916 0.00494463 0.00495009 0.00495556 0.00496103 0.00496649 0.00497196 0.00497743 0.00498289 0.00498836 0.00499383 0.00499929 0.00500476 0.00501023 0.0050157 0.00502116 0.00502663 0.0050321 0.00503756 0.00504303 0.0050485 0.00505396 0.00505943 0.0050649 0.00507036 0.00507583 0.0050813 0.00508676 0.00509223 0.0050977 0.00510316 0.00510863 0.0051141 0.00511957 0.00512503 0.0051305 0.00513597 0.00514143 0.0051469 0.00515237 0.00515783 0.0051633 0.00516877 0.00517423 0.0051797 0.00518517 0.00519063 0.0051961 0.00520157 0.00520704 0.0052125 0.00521797 0.00522344 0.0052289 0.00523437 0.00523984 0.0052453 0.00525077 0.00525624 0.0052617 0.00526717 0.00527264 0.0052781 0.00528357 0.00528904 0.0052945 0.00529997 0.00530544 0.00531091 0.00531637 0.00532184 0.00532731 0.00533277 0.00533824 0.00534371 0.00534917 0.00535464 0.00536011 0.00536557 0.00537104 0.00537651 0.00538197 0.00538744 0.00539291 0.00539838 +-0.00114932 -0.00108602 -0.000971833 -0.000657148 2.7177E-05 0.0010028 0.00209704 0.00316519 0.00404502 0.0045495 0.00470648 0.00473929 0.00474891 0.00475499 0.00476055 0.00476604 0.00477152 0.00477699 0.00478247 0.00478794 0.00479342 0.00479889 0.00480437 0.00480985 0.00481532 0.0048208 0.00482627 0.00483175 0.00483722 0.0048427 0.00484817 0.00485365 0.00485913 0.0048646 0.00487008 0.00487555 0.00488103 0.0048865 0.00489198 0.00489745 0.00490293 0.00490841 0.00491388 0.00491936 0.00492483 0.00493031 0.00493578 0.00494126 0.00494673 0.00495221 0.00495769 0.00496316 0.00496864 0.00497411 0.00497959 0.00498506 0.00499054 0.00499601 0.00500149 0.00500696 0.00501244 0.00501792 0.00502339 0.00502887 0.00503434 0.00503982 0.00504529 0.00505077 0.00505624 0.00506172 0.0050672 0.00507267 0.00507815 0.00508362 0.0050891 0.00509457 0.00510005 0.00510552 0.005111 0.00511647 0.00512195 0.00512743 0.0051329 0.00513838 0.00514385 0.00514933 0.0051548 0.00516028 0.00516575 0.00517123 0.00517671 0.00518218 0.00518766 0.00519313 0.00519861 0.00520408 0.00520956 0.00521503 0.00522051 0.00522599 0.00523146 0.00523694 0.00524241 0.00524789 0.00525336 0.00525884 0.00526431 0.00526979 0.00527527 0.00528074 0.00528622 0.00529169 0.00529717 0.00530264 0.00530812 0.00531359 0.00531907 0.00532455 0.00533002 0.0053355 0.00534097 0.00534645 0.00535192 0.0053574 0.00536287 0.00536835 0.00537383 0.0053793 0.00538478 0.00539025 0.00539573 0.0054012 0.00540668 +-0.00115135 -0.00108791 -0.000973417 -0.000657992 2.72488E-05 0.0010036 0.00209851 0.00316759 0.00404895 0.00455542 0.00471345 0.0047465 0.00475616 0.00476225 0.00476782 0.00477332 0.00477881 0.00478429 0.00478978 0.00479526 0.00480074 0.00480623 0.00481171 0.0048172 0.00482268 0.00482817 0.00483365 0.00483913 0.00484462 0.0048501 0.00485559 0.00486107 0.00486656 0.00487204 0.00487752 0.00488301 0.00488849 0.00489398 0.00489946 0.00490495 0.00491043 0.00491591 0.0049214 0.00492688 0.00493237 0.00493785 0.00494333 0.00494882 0.0049543 0.00495979 0.00496527 0.00497076 0.00497624 0.00498172 0.00498721 0.00499269 0.00499818 0.00500366 0.00500914 0.00501463 0.00502011 0.0050256 0.00503108 0.00503657 0.00504205 0.00504753 0.00505302 0.0050585 0.00506399 0.00506947 0.00507495 0.00508044 0.00508592 0.00509141 0.00509689 0.00510238 0.00510786 0.00511334 0.00511883 0.00512431 0.0051298 0.00513528 0.00514077 0.00514625 0.00515173 0.00515722 0.0051627 0.00516819 0.00517367 0.00517915 0.00518464 0.00519012 0.00519561 0.00520109 0.00520658 0.00521206 0.00521754 0.00522303 0.00522851 0.005234 0.00523948 0.00524497 0.00525045 0.00525593 0.00526142 0.0052669 0.00527239 0.00527787 0.00528336 0.00528884 0.00529432 0.00529981 0.00530529 0.00531078 0.00531626 0.00532174 0.00532723 0.00533271 0.0053382 0.00534368 0.00534917 0.00535465 0.00536013 0.00536562 0.0053711 0.00537659 0.00538207 0.00538756 0.00539304 0.00539852 0.00540401 0.00540949 0.00541498 +-0.00115337 -0.0010898 -0.000975 -0.000658836 2.73207E-05 0.0010044 0.00209999 0.00316998 0.00405287 0.00456132 0.00472041 0.0047537 0.0047634 0.00476951 0.00477509 0.0047806 0.00478609 0.00479159 0.00479708 0.00480257 0.00480807 0.00481356 0.00481905 0.00482454 0.00483004 0.00483553 0.00484102 0.00484652 0.00485201 0.0048575 0.00486299 0.00486849 0.00487398 0.00487947 0.00488497 0.00489046 0.00489595 0.00490144 0.00490694 0.00491243 0.00491792 0.00492342 0.00492891 0.0049344 0.00493989 0.00494539 0.00495088 0.00495637 0.00496187 0.00496736 0.00497285 0.00497835 0.00498384 0.00498933 0.00499482 0.00500032 0.00500581 0.0050113 0.00501679 0.00502229 0.00502778 0.00503327 0.00503877 0.00504426 0.00504975 0.00505524 0.00506074 0.00506623 0.00507172 0.00507722 0.00508271 0.0050882 0.00509369 0.00509919 0.00510468 0.00511017 0.00511567 0.00512116 0.00512665 0.00513215 0.00513764 0.00514313 0.00514862 0.00515412 0.00515961 0.0051651 0.0051706 0.00517609 0.00518158 0.00518707 0.00519257 0.00519806 0.00520355 0.00520905 0.00521454 0.00522003 0.00522552 0.00523102 0.00523651 0.005242 0.0052475 0.00525299 0.00525848 0.00526397 0.00526947 0.00527496 0.00528045 0.00528595 0.00529144 0.00529693 0.00530242 0.00530792 0.00531341 0.0053189 0.0053244 0.00532989 0.00533538 0.00534088 0.00534637 0.00535186 0.00535735 0.00536285 0.00536834 0.00537383 0.00537933 0.00538482 0.00539031 0.0053958 0.0054013 0.00540679 0.00541228 0.00541778 0.00542327 +-0.0011554 -0.00109168 -0.000976581 -0.000659678 2.73926E-05 0.00100519 0.00210146 0.00317236 0.00405678 0.00456722 0.00472737 0.00476089 0.00477064 0.00477676 0.00478236 0.00478787 0.00479337 0.00479888 0.00480438 0.00480988 0.00481538 0.00482088 0.00482638 0.00483189 0.00483739 0.00484289 0.00484839 0.00485389 0.00485939 0.00486489 0.0048704 0.0048759 0.0048814 0.0048869 0.0048924 0.0048979 0.00490341 0.00490891 0.00491441 0.00491991 0.00492541 0.00493091 0.00493642 0.00494192 0.00494742 0.00495292 0.00495842 0.00496392 0.00496942 0.00497493 0.00498043 0.00498593 0.00499143 0.00499693 0.00500243 0.00500794 0.00501344 0.00501894 0.00502444 0.00502994 0.00503544 0.00504094 0.00504645 0.00505195 0.00505745 0.00506295 0.00506845 0.00507395 0.00507945 0.00508496 0.00509046 0.00509596 0.00510146 0.00510696 0.00511246 0.00511797 0.00512347 0.00512897 0.00513447 0.00513997 0.00514547 0.00515098 0.00515648 0.00516198 0.00516748 0.00517298 0.00517848 0.00518398 0.00518949 0.00519499 0.00520049 0.00520599 0.00521149 0.00521699 0.0052225 0.005228 0.0052335 0.005239 0.0052445 0.00525 0.00525551 0.00526101 0.00526651 0.00527201 0.00527751 0.00528301 0.00528851 0.00529402 0.00529952 0.00530502 0.00531052 0.00531602 0.00532152 0.00532703 0.00533253 0.00533803 0.00534353 0.00534903 0.00535453 0.00536003 0.00536554 0.00537104 0.00537654 0.00538204 0.00538754 0.00539304 0.00539855 0.00540405 0.00540955 0.00541505 0.00542055 0.00542605 0.00543156 +-0.00115742 -0.00109357 -0.000978162 -0.000660519 2.74645E-05 0.00100598 0.00210293 0.00317474 0.00406068 0.0045731 0.00473432 0.00476808 0.00477787 0.00478401 0.00478961 0.00479514 0.00480065 0.00480616 0.00481167 0.00481718 0.00482269 0.0048282 0.00483371 0.00483922 0.00484473 0.00485024 0.00485575 0.00486126 0.00486677 0.00487228 0.00487779 0.0048833 0.00488881 0.00489432 0.00489983 0.00490534 0.00491085 0.00491637 0.00492188 0.00492739 0.0049329 0.00493841 0.00494392 0.00494943 0.00495494 0.00496045 0.00496596 0.00497147 0.00497698 0.00498249 0.004988 0.00499351 0.00499902 0.00500453 0.00501004 0.00501555 0.00502106 0.00502657 0.00503208 0.00503759 0.0050431 0.00504861 0.00505412 0.00505963 0.00506514 0.00507065 0.00507616 0.00508167 0.00508718 0.00509269 0.0050982 0.00510371 0.00510922 0.00511473 0.00512024 0.00512575 0.00513126 0.00513677 0.00514228 0.00514779 0.0051533 0.00515881 0.00516432 0.00516983 0.00517534 0.00518086 0.00518637 0.00519188 0.00519739 0.0052029 0.00520841 0.00521392 0.00521943 0.00522494 0.00523045 0.00523596 0.00524147 0.00524698 0.00525249 0.005258 0.00526351 0.00526902 0.00527453 0.00528004 0.00528555 0.00529106 0.00529657 0.00530208 0.00530759 0.0053131 0.00531861 0.00532412 0.00532963 0.00533514 0.00534065 0.00534616 0.00535167 0.00535718 0.00536269 0.0053682 0.00537371 0.00537922 0.00538473 0.00539024 0.00539575 0.00540126 0.00540677 0.00541228 0.0054178 0.00542331 0.00542882 0.00543433 0.00543984 +-0.00115944 -0.00109546 -0.000979741 -0.000661358 2.75365E-05 0.00100677 0.00210439 0.00317712 0.00406457 0.00457897 0.00474126 0.00477527 0.0047851 0.00479126 0.00479687 0.0048024 0.00480792 0.00481344 0.00481896 0.00482448 0.00483 0.00483552 0.00484103 0.00484655 0.00485207 0.00485759 0.00486311 0.00486863 0.00487415 0.00487967 0.00488519 0.0048907 0.00489622 0.00490174 0.00490726 0.00491278 0.0049183 0.00492382 0.00492934 0.00493486 0.00494037 0.00494589 0.00495141 0.00495693 0.00496245 0.00496797 0.00497349 0.00497901 0.00498453 0.00499004 0.00499556 0.00500108 0.0050066 0.00501212 0.00501764 0.00502316 0.00502868 0.0050342 0.00503971 0.00504523 0.00505075 0.00505627 0.00506179 0.00506731 0.00507283 0.00507835 0.00508386 0.00508938 0.0050949 0.00510042 0.00510594 0.00511146 0.00511698 0.0051225 0.00512802 0.00513353 0.00513905 0.00514457 0.00515009 0.00515561 0.00516113 0.00516665 0.00517217 0.00517769 0.0051832 0.00518872 0.00519424 0.00519976 0.00520528 0.0052108 0.00521632 0.00522184 0.00522736 0.00523287 0.00523839 0.00524391 0.00524943 0.00525495 0.00526047 0.00526599 0.00527151 0.00527703 0.00528254 0.00528806 0.00529358 0.0052991 0.00530462 0.00531014 0.00531566 0.00532118 0.0053267 0.00533221 0.00533773 0.00534325 0.00534877 0.00535429 0.00535981 0.00536533 0.00537085 0.00537637 0.00538188 0.0053874 0.00539292 0.00539844 0.00540396 0.00540948 0.005415 0.00542052 0.00542604 0.00543155 0.00543707 0.00544259 0.00544811 +-0.00116146 -0.00109734 -0.000981319 -0.000662196 2.76085E-05 0.00100756 0.00210586 0.00317948 0.00406844 0.00458483 0.00474819 0.00478245 0.00479233 0.0047985 0.00480412 0.00480966 0.00481519 0.00482071 0.00482624 0.00483177 0.0048373 0.00484282 0.00484835 0.00485388 0.00485941 0.00486493 0.00487046 0.00487599 0.00488152 0.00488704 0.00489257 0.0048981 0.00490363 0.00490916 0.00491468 0.00492021 0.00492574 0.00493127 0.00493679 0.00494232 0.00494785 0.00495338 0.0049589 0.00496443 0.00496996 0.00497549 0.00498101 0.00498654 0.00499207 0.0049976 0.00500312 0.00500865 0.00501418 0.00501971 0.00502523 0.00503076 0.00503629 0.00504182 0.00504734 0.00505287 0.0050584 0.00506393 0.00506945 0.00507498 0.00508051 0.00508604 0.00509156 0.00509709 0.00510262 0.00510815 0.00511367 0.0051192 0.00512473 0.00513026 0.00513578 0.00514131 0.00514684 0.00515237 0.00515789 0.00516342 0.00516895 0.00517448 0.00518 0.00518553 0.00519106 0.00519659 0.00520211 0.00520764 0.00521317 0.0052187 0.00522422 0.00522975 0.00523528 0.00524081 0.00524633 0.00525186 0.00525739 0.00526292 0.00526844 0.00527397 0.0052795 0.00528503 0.00529055 0.00529608 0.00530161 0.00530714 0.00531266 0.00531819 0.00532372 0.00532925 0.00533477 0.0053403 0.00534583 0.00535136 0.00535689 0.00536241 0.00536794 0.00537347 0.005379 0.00538452 0.00539005 0.00539558 0.00540111 0.00540663 0.00541216 0.00541769 0.00542322 0.00542874 0.00543427 0.0054398 0.00544533 0.00545085 0.00545638 +-0.00116348 -0.00109922 -0.000982896 -0.000663033 2.76806E-05 0.00100835 0.00210731 0.00318184 0.00407231 0.00459067 0.00475512 0.00478962 0.00479955 0.00480573 0.00481136 0.00481691 0.00482245 0.00482798 0.00483352 0.00483906 0.00484459 0.00485013 0.00485566 0.0048612 0.00486674 0.00487227 0.00487781 0.00488335 0.00488888 0.00489442 0.00489995 0.00490549 0.00491103 0.00491656 0.0049221 0.00492764 0.00493317 0.00493871 0.00494424 0.00494978 0.00495532 0.00496085 0.00496639 0.00497192 0.00497746 0.004983 0.00498853 0.00499407 0.00499961 0.00500514 0.00501068 0.00501621 0.00502175 0.00502729 0.00503282 0.00503836 0.0050439 0.00504943 0.00505497 0.0050605 0.00506604 0.00507158 0.00507711 0.00508265 0.00508818 0.00509372 0.00509926 0.00510479 0.00511033 0.00511586 0.0051214 0.00512694 0.00513247 0.00513801 0.00514355 0.00514908 0.00515462 0.00516015 0.00516569 0.00517123 0.00517676 0.0051823 0.00518784 0.00519337 0.00519891 0.00520444 0.00520998 0.00521552 0.00522105 0.00522659 0.00523212 0.00523766 0.0052432 0.00524873 0.00525427 0.00525981 0.00526534 0.00527088 0.00527641 0.00528195 0.00528749 0.00529302 0.00529856 0.0053041 0.00530963 0.00531517 0.0053207 0.00532624 0.00533178 0.00533731 0.00534285 0.00534838 0.00535392 0.00535946 0.00536499 0.00537053 0.00537607 0.0053816 0.00538714 0.00539267 0.00539821 0.00540375 0.00540928 0.00541482 0.00542036 0.00542589 0.00543143 0.00543696 0.0054425 0.00544804 0.00545357 0.00545911 0.00546464 +-0.0011655 -0.00110111 -0.000984472 -0.000663869 2.77527E-05 0.00100914 0.00210877 0.0031842 0.00407616 0.00459651 0.00476204 0.00479679 0.00480676 0.00481296 0.0048186 0.00482416 0.0048297 0.00483525 0.00484079 0.00484634 0.00485188 0.00485743 0.00486297 0.00486852 0.00487406 0.00487961 0.00488515 0.0048907 0.00489624 0.00490179 0.00490733 0.00491288 0.00491842 0.00492397 0.00492951 0.00493506 0.0049406 0.00494614 0.00495169 0.00495723 0.00496278 0.00496832 0.00497387 0.00497941 0.00498496 0.0049905 0.00499605 0.00500159 0.00500714 0.00501268 0.00501823 0.00502377 0.00502932 0.00503486 0.00504041 0.00504595 0.0050515 0.00505704 0.00506259 0.00506813 0.00507368 0.00507922 0.00508476 0.00509031 0.00509585 0.0051014 0.00510694 0.00511249 0.00511803 0.00512358 0.00512912 0.00513467 0.00514021 0.00514576 0.0051513 0.00515685 0.00516239 0.00516794 0.00517348 0.00517903 0.00518457 0.00519012 0.00519566 0.00520121 0.00520675 0.0052123 0.00521784 0.00522339 0.00522893 0.00523448 0.00524002 0.00524557 0.00525111 0.00525665 0.0052622 0.00526774 0.00527329 0.00527883 0.00528438 0.00528992 0.00529547 0.00530101 0.00530656 0.0053121 0.00531765 0.00532319 0.00532874 0.00533428 0.00533983 0.00534537 0.00535092 0.00535646 0.00536201 0.00536755 0.0053731 0.00537864 0.00538419 0.00538973 0.00539528 0.00540082 0.00540637 0.00541191 0.00541745 0.005423 0.00542854 0.00543409 0.00543963 0.00544518 0.00545072 0.00545627 0.00546181 0.00546736 0.0054729 +-0.00116752 -0.00110299 -0.000986047 -0.000664703 2.78248E-05 0.00100992 0.00211022 0.00318655 0.00408001 0.00460234 0.00476895 0.00480395 0.00481397 0.00482018 0.00482583 0.0048314 0.00483695 0.00484251 0.00484806 0.00485361 0.00485917 0.00486472 0.00487028 0.00487583 0.00488138 0.00488694 0.00489249 0.00489804 0.0049036 0.00490915 0.0049147 0.00492026 0.00492581 0.00493136 0.00493692 0.00494247 0.00494802 0.00495358 0.00495913 0.00496468 0.00497024 0.00497579 0.00498134 0.0049869 0.00499245 0.004998 0.00500356 0.00500911 0.00501467 0.00502022 0.00502577 0.00503133 0.00503688 0.00504243 0.00504799 0.00505354 0.00505909 0.00506465 0.0050702 0.00507575 0.00508131 0.00508686 0.00509241 0.00509797 0.00510352 0.00510907 0.00511463 0.00512018 0.00512573 0.00513129 0.00513684 0.00514239 0.00514795 0.0051535 0.00515905 0.00516461 0.00517016 0.00517572 0.00518127 0.00518682 0.00519238 0.00519793 0.00520348 0.00520904 0.00521459 0.00522014 0.0052257 0.00523125 0.0052368 0.00524236 0.00524791 0.00525346 0.00525902 0.00526457 0.00527012 0.00527568 0.00528123 0.00528678 0.00529234 0.00529789 0.00530344 0.005309 0.00531455 0.00532011 0.00532566 0.00533121 0.00533677 0.00534232 0.00534787 0.00535343 0.00535898 0.00536453 0.00537009 0.00537564 0.00538119 0.00538675 0.0053923 0.00539785 0.00540341 0.00540896 0.00541451 0.00542007 0.00542562 0.00543117 0.00543673 0.00544228 0.00544784 0.00545339 0.00545894 0.0054645 0.00547005 0.0054756 0.00548116 +-0.00116954 -0.00110487 -0.000987621 -0.000665536 2.7897E-05 0.00101071 0.00211167 0.00318889 0.00408384 0.00460815 0.00477586 0.00481111 0.00482118 0.0048274 0.00483306 0.00483864 0.0048442 0.00484976 0.00485532 0.00486089 0.00486645 0.00487201 0.00487757 0.00488313 0.0048887 0.00489426 0.00489982 0.00490538 0.00491095 0.00491651 0.00492207 0.00492763 0.00493319 0.00493876 0.00494432 0.00494988 0.00495544 0.004961 0.00496657 0.00497213 0.00497769 0.00498325 0.00498881 0.00499438 0.00499994 0.0050055 0.00501106 0.00501663 0.00502219 0.00502775 0.00503331 0.00503887 0.00504444 0.00505 0.00505556 0.00506112 0.00506668 0.00507225 0.00507781 0.00508337 0.00508893 0.00509449 0.00510006 0.00510562 0.00511118 0.00511674 0.0051223 0.00512787 0.00513343 0.00513899 0.00514455 0.00515011 0.00515568 0.00516124 0.0051668 0.00517236 0.00517793 0.00518349 0.00518905 0.00519461 0.00520017 0.00520574 0.0052113 0.00521686 0.00522242 0.00522798 0.00523355 0.00523911 0.00524467 0.00525023 0.00525579 0.00526136 0.00526692 0.00527248 0.00527804 0.00528361 0.00528917 0.00529473 0.00530029 0.00530585 0.00531142 0.00531698 0.00532254 0.0053281 0.00533366 0.00533923 0.00534479 0.00535035 0.00535591 0.00536147 0.00536704 0.0053726 0.00537816 0.00538372 0.00538929 0.00539485 0.00540041 0.00540597 0.00541153 0.0054171 0.00542266 0.00542822 0.00543378 0.00543934 0.00544491 0.00545047 0.00545603 0.00546159 0.00546715 0.00547272 0.00547828 0.00548384 0.0054894 +-0.00117156 -0.00110675 -0.000989194 -0.000666368 2.79692E-05 0.00101149 0.00211312 0.00319123 0.00408767 0.00461395 0.00478276 0.00481826 0.00482838 0.00483462 0.00484028 0.00484587 0.00485144 0.00485701 0.00486258 0.00486815 0.00487372 0.00487929 0.00488487 0.00489044 0.00489601 0.00490158 0.00490715 0.00491272 0.00491829 0.00492386 0.00492943 0.004935 0.00494057 0.00494614 0.00495171 0.00495728 0.00496286 0.00496843 0.004974 0.00497957 0.00498514 0.00499071 0.00499628 0.00500185 0.00500742 0.00501299 0.00501856 0.00502413 0.0050297 0.00503528 0.00504085 0.00504642 0.00505199 0.00505756 0.00506313 0.0050687 0.00507427 0.00507984 0.00508541 0.00509098 0.00509655 0.00510212 0.00510769 0.00511326 0.00511884 0.00512441 0.00512998 0.00513555 0.00514112 0.00514669 0.00515226 0.00515783 0.0051634 0.00516897 0.00517454 0.00518011 0.00518568 0.00519125 0.00519683 0.0052024 0.00520797 0.00521354 0.00521911 0.00522468 0.00523025 0.00523582 0.00524139 0.00524696 0.00525253 0.0052581 0.00526367 0.00526924 0.00527482 0.00528039 0.00528596 0.00529153 0.0052971 0.00530267 0.00530824 0.00531381 0.00531938 0.00532495 0.00533052 0.00533609 0.00534166 0.00534724 0.00535281 0.00535838 0.00536395 0.00536952 0.00537509 0.00538066 0.00538623 0.0053918 0.00539737 0.00540294 0.00540851 0.00541408 0.00541965 0.00542523 0.0054308 0.00543637 0.00544194 0.00544751 0.00545308 0.00545865 0.00546422 0.00546979 0.00547536 0.00548093 0.0054865 0.00549207 0.00549764 +-0.00117358 -0.00110864 -0.000990765 -0.000667198 2.80414E-05 0.00101227 0.00211456 0.00319356 0.00409148 0.00461974 0.00478965 0.00482541 0.00483557 0.00484182 0.0048475 0.0048531 0.00485868 0.00486426 0.00486984 0.00487542 0.00488099 0.00488657 0.00489215 0.00489773 0.00490331 0.00490889 0.00491447 0.00492005 0.00492563 0.00493121 0.00493679 0.00494237 0.00494795 0.00495353 0.00495911 0.00496468 0.00497026 0.00497584 0.00498142 0.004987 0.00499258 0.00499816 0.00500374 0.00500932 0.0050149 0.00502048 0.00502606 0.00503164 0.00503722 0.0050428 0.00504838 0.00505395 0.00505953 0.00506511 0.00507069 0.00507627 0.00508185 0.00508743 0.00509301 0.00509859 0.00510417 0.00510975 0.00511533 0.00512091 0.00512649 0.00513206 0.00513764 0.00514322 0.0051488 0.00515438 0.00515996 0.00516554 0.00517112 0.0051767 0.00518228 0.00518786 0.00519344 0.00519902 0.0052046 0.00521018 0.00521575 0.00522133 0.00522691 0.00523249 0.00523807 0.00524365 0.00524923 0.00525481 0.00526039 0.00526597 0.00527155 0.00527713 0.00528271 0.00528829 0.00529387 0.00529945 0.00530502 0.0053106 0.00531618 0.00532176 0.00532734 0.00533292 0.0053385 0.00534408 0.00534966 0.00535524 0.00536082 0.0053664 0.00537198 0.00537756 0.00538314 0.00538871 0.00539429 0.00539987 0.00540545 0.00541103 0.00541661 0.00542219 0.00542777 0.00543335 0.00543893 0.00544451 0.00545009 0.00545567 0.00546125 0.00546683 0.0054724 0.00547798 0.00548356 0.00548914 0.00549472 0.0055003 0.00550588 +-0.0011756 -0.00111052 -0.000992335 -0.000668027 2.81137E-05 0.00101305 0.002116 0.00319589 0.00409528 0.00462552 0.00479653 0.00483255 0.00484276 0.00484903 0.00485472 0.00486032 0.00486591 0.0048715 0.00487708 0.00488267 0.00488826 0.00489385 0.00489944 0.00490502 0.00491061 0.0049162 0.00492179 0.00492738 0.00493296 0.00493855 0.00494414 0.00494973 0.00495532 0.0049609 0.00496649 0.00497208 0.00497767 0.00498326 0.00498884 0.00499443 0.00500002 0.00500561 0.0050112 0.00501678 0.00502237 0.00502796 0.00503355 0.00503914 0.00504472 0.00505031 0.0050559 0.00506149 0.00506708 0.00507266 0.00507825 0.00508384 0.00508943 0.00509501 0.0051006 0.00510619 0.00511178 0.00511737 0.00512295 0.00512854 0.00513413 0.00513972 0.00514531 0.00515089 0.00515648 0.00516207 0.00516766 0.00517325 0.00517883 0.00518442 0.00519001 0.0051956 0.00520119 0.00520677 0.00521236 0.00521795 0.00522354 0.00522913 0.00523471 0.0052403 0.00524589 0.00525148 0.00525707 0.00526265 0.00526824 0.00527383 0.00527942 0.005285 0.00529059 0.00529618 0.00530177 0.00530736 0.00531294 0.00531853 0.00532412 0.00532971 0.0053353 0.00534088 0.00534647 0.00535206 0.00535765 0.00536324 0.00536882 0.00537441 0.00538 0.00538559 0.00539118 0.00539676 0.00540235 0.00540794 0.00541353 0.00541912 0.0054247 0.00543029 0.00543588 0.00544147 0.00544706 0.00545264 0.00545823 0.00546382 0.00546941 0.005475 0.00548058 0.00548617 0.00549176 0.00549735 0.00550294 0.00550852 0.00551411 +-0.00117761 -0.00111239 -0.000993904 -0.000668855 2.8186E-05 0.00101383 0.00211743 0.00319821 0.00409907 0.00463129 0.00480341 0.00483969 0.00484995 0.00485623 0.00486192 0.00486754 0.00487313 0.00487873 0.00488433 0.00488992 0.00489552 0.00490112 0.00490671 0.00491231 0.00491791 0.0049235 0.0049291 0.0049347 0.00494029 0.00494589 0.00495149 0.00495708 0.00496268 0.00496828 0.00497387 0.00497947 0.00498507 0.00499066 0.00499626 0.00500186 0.00500745 0.00501305 0.00501865 0.00502424 0.00502984 0.00503544 0.00504103 0.00504663 0.00505222 0.00505782 0.00506342 0.00506901 0.00507461 0.00508021 0.0050858 0.0050914 0.005097 0.00510259 0.00510819 0.00511379 0.00511938 0.00512498 0.00513058 0.00513617 0.00514177 0.00514737 0.00515296 0.00515856 0.00516416 0.00516975 0.00517535 0.00518095 0.00518654 0.00519214 0.00519774 0.00520333 0.00520893 0.00521452 0.00522012 0.00522572 0.00523131 0.00523691 0.00524251 0.0052481 0.0052537 0.0052593 0.00526489 0.00527049 0.00527609 0.00528168 0.00528728 0.00529288 0.00529847 0.00530407 0.00530967 0.00531526 0.00532086 0.00532646 0.00533205 0.00533765 0.00534325 0.00534884 0.00535444 0.00536004 0.00536563 0.00537123 0.00537683 0.00538242 0.00538802 0.00539362 0.00539921 0.00540481 0.00541041 0.005416 0.0054216 0.00542719 0.00543279 0.00543839 0.00544398 0.00544958 0.00545518 0.00546077 0.00546637 0.00547197 0.00547756 0.00548316 0.00548876 0.00549435 0.00549995 0.00550555 0.00551114 0.00551674 0.00552234 +-0.00117963 -0.00111427 -0.000995473 -0.000669682 2.82584E-05 0.00101461 0.00211887 0.00320052 0.00410286 0.00463704 0.00481028 0.00484682 0.00485713 0.00486342 0.00486913 0.00487475 0.00488036 0.00488596 0.00489157 0.00489717 0.00490278 0.00490838 0.00491399 0.00491959 0.0049252 0.0049308 0.00493641 0.00494201 0.00494762 0.00495322 0.00495883 0.00496443 0.00497004 0.00497564 0.00498125 0.00498685 0.00499246 0.00499806 0.00500367 0.00500927 0.00501488 0.00502049 0.00502609 0.0050317 0.0050373 0.00504291 0.00504851 0.00505412 0.00505972 0.00506533 0.00507093 0.00507654 0.00508214 0.00508775 0.00509335 0.00509896 0.00510456 0.00511017 0.00511577 0.00512138 0.00512698 0.00513259 0.00513819 0.0051438 0.0051494 0.00515501 0.00516061 0.00516622 0.00517182 0.00517743 0.00518303 0.00518864 0.00519425 0.00519985 0.00520546 0.00521106 0.00521667 0.00522227 0.00522788 0.00523348 0.00523909 0.00524469 0.0052503 0.0052559 0.00526151 0.00526711 0.00527272 0.00527832 0.00528393 0.00528953 0.00529514 0.00530074 0.00530635 0.00531195 0.00531756 0.00532316 0.00532877 0.00533437 0.00533998 0.00534559 0.00535119 0.0053568 0.0053624 0.00536801 0.00537361 0.00537922 0.00538482 0.00539043 0.00539603 0.00540164 0.00540724 0.00541285 0.00541845 0.00542406 0.00542966 0.00543527 0.00544087 0.00544648 0.00545208 0.00545769 0.00546329 0.0054689 0.0054745 0.00548011 0.00548571 0.00549132 0.00549692 0.00550253 0.00550814 0.00551374 0.00551935 0.00552495 0.00553056 +-0.00118164 -0.00111615 -0.000997039 -0.000670507 2.83307E-05 0.00101538 0.0021203 0.00320283 0.00410663 0.00464279 0.00481715 0.00485394 0.0048643 0.00487061 0.00487633 0.00488196 0.00488757 0.00489319 0.0048988 0.00490441 0.00491003 0.00491564 0.00492125 0.00492687 0.00493248 0.0049381 0.00494371 0.00494932 0.00495494 0.00496055 0.00496616 0.00497178 0.00497739 0.00498301 0.00498862 0.00499423 0.00499985 0.00500546 0.00501108 0.00501669 0.0050223 0.00502792 0.00503353 0.00503914 0.00504476 0.00505037 0.00505599 0.0050616 0.00506721 0.00507283 0.00507844 0.00508405 0.00508967 0.00509528 0.0051009 0.00510651 0.00511212 0.00511774 0.00512335 0.00512896 0.00513458 0.00514019 0.00514581 0.00515142 0.00515703 0.00516265 0.00516826 0.00517387 0.00517949 0.0051851 0.00519072 0.00519633 0.00520194 0.00520756 0.00521317 0.00521878 0.0052244 0.00523001 0.00523563 0.00524124 0.00524685 0.00525247 0.00525808 0.00526369 0.00526931 0.00527492 0.00528054 0.00528615 0.00529176 0.00529738 0.00530299 0.0053086 0.00531422 0.00531983 0.00532545 0.00533106 0.00533667 0.00534229 0.0053479 0.00535352 0.00535913 0.00536474 0.00537036 0.00537597 0.00538158 0.0053872 0.00539281 0.00539843 0.00540404 0.00540965 0.00541527 0.00542088 0.00542649 0.00543211 0.00543772 0.00544334 0.00544895 0.00545456 0.00546018 0.00546579 0.0054714 0.00547702 0.00548263 0.00548825 0.00549386 0.00549947 0.00550509 0.0055107 0.00551631 0.00552193 0.00552754 0.00553316 0.00553877 +-0.00118366 -0.00111803 -0.000998605 -0.000671331 2.84032E-05 0.00101616 0.00212172 0.00320513 0.00411039 0.00464852 0.004824 0.00486106 0.00487147 0.0048778 0.00488352 0.00488916 0.00489478 0.00490041 0.00490603 0.00491165 0.00491727 0.0049229 0.00492852 0.00493414 0.00493976 0.00494538 0.00495101 0.00495663 0.00496225 0.00496787 0.0049735 0.00497912 0.00498474 0.00499036 0.00499599 0.00500161 0.00500723 0.00501285 0.00501848 0.0050241 0.00502972 0.00503534 0.00504097 0.00504659 0.00505221 0.00505783 0.00506345 0.00506908 0.0050747 0.00508032 0.00508594 0.00509157 0.00509719 0.00510281 0.00510843 0.00511406 0.00511968 0.0051253 0.00513092 0.00513655 0.00514217 0.00514779 0.00515341 0.00515903 0.00516466 0.00517028 0.0051759 0.00518152 0.00518715 0.00519277 0.00519839 0.00520401 0.00520964 0.00521526 0.00522088 0.0052265 0.00523213 0.00523775 0.00524337 0.00524899 0.00525461 0.00526024 0.00526586 0.00527148 0.0052771 0.00528273 0.00528835 0.00529397 0.00529959 0.00530522 0.00531084 0.00531646 0.00532208 0.00532771 0.00533333 0.00533895 0.00534457 0.0053502 0.00535582 0.00536144 0.00536706 0.00537268 0.00537831 0.00538393 0.00538955 0.00539517 0.0054008 0.00540642 0.00541204 0.00541766 0.00542329 0.00542891 0.00543453 0.00544015 0.00544578 0.0054514 0.00545702 0.00546264 0.00546827 0.00547389 0.00547951 0.00548513 0.00549075 0.00549638 0.005502 0.00550762 0.00551324 0.00551887 0.00552449 0.00553011 0.00553573 0.00554136 0.00554698 +-0.00118567 -0.0011199 -0.00100017 -0.000672154 2.84756E-05 0.00101693 0.00212315 0.00320742 0.00411414 0.00465424 0.00483086 0.00486818 0.00487864 0.00488498 0.00489071 0.00489636 0.00490199 0.00490762 0.00491325 0.00491888 0.00492451 0.00493014 0.00493578 0.00494141 0.00494704 0.00495267 0.0049583 0.00496393 0.00496956 0.00497519 0.00498082 0.00498645 0.00499209 0.00499772 0.00500335 0.00500898 0.00501461 0.00502024 0.00502587 0.0050315 0.00503713 0.00504276 0.0050484 0.00505403 0.00505966 0.00506529 0.00507092 0.00507655 0.00508218 0.00508781 0.00509344 0.00509907 0.0051047 0.00511034 0.00511597 0.0051216 0.00512723 0.00513286 0.00513849 0.00514412 0.00514975 0.00515538 0.00516101 0.00516664 0.00517228 0.00517791 0.00518354 0.00518917 0.0051948 0.00520043 0.00520606 0.00521169 0.00521732 0.00522295 0.00522859 0.00523422 0.00523985 0.00524548 0.00525111 0.00525674 0.00526237 0.005268 0.00527363 0.00527926 0.0052849 0.00529053 0.00529616 0.00530179 0.00530742 0.00531305 0.00531868 0.00532431 0.00532994 0.00533557 0.0053412 0.00534684 0.00535247 0.0053581 0.00536373 0.00536936 0.00537499 0.00538062 0.00538625 0.00539188 0.00539751 0.00540315 0.00540878 0.00541441 0.00542004 0.00542567 0.0054313 0.00543693 0.00544256 0.00544819 0.00545382 0.00545946 0.00546509 0.00547072 0.00547635 0.00548198 0.00548761 0.00549324 0.00549887 0.0055045 0.00551013 0.00551576 0.0055214 0.00552703 0.00553266 0.00553829 0.00554392 0.00554955 0.00555518 +-0.00118769 -0.00112178 -0.00100173 -0.000672975 2.85481E-05 0.0010177 0.00212457 0.00320971 0.00411788 0.00465995 0.0048377 0.00487529 0.0048858 0.00489215 0.00489789 0.00490355 0.00490919 0.00491483 0.00492047 0.00492611 0.00493175 0.00493739 0.00494303 0.00494867 0.00495431 0.00495995 0.00496559 0.00497123 0.00497687 0.00498251 0.00498815 0.00499379 0.00499942 0.00500506 0.0050107 0.00501634 0.00502198 0.00502762 0.00503326 0.0050389 0.00504454 0.00505018 0.00505582 0.00506146 0.0050671 0.00507274 0.00507838 0.00508402 0.00508966 0.0050953 0.00510094 0.00510658 0.00511222 0.00511786 0.00512349 0.00512913 0.00513477 0.00514041 0.00514605 0.00515169 0.00515733 0.00516297 0.00516861 0.00517425 0.00517989 0.00518553 0.00519117 0.00519681 0.00520245 0.00520809 0.00521373 0.00521937 0.00522501 0.00523065 0.00523629 0.00524192 0.00524756 0.0052532 0.00525884 0.00526448 0.00527012 0.00527576 0.0052814 0.00528704 0.00529268 0.00529832 0.00530396 0.0053096 0.00531524 0.00532088 0.00532652 0.00533216 0.0053378 0.00534344 0.00534908 0.00535472 0.00536036 0.00536599 0.00537163 0.00537727 0.00538291 0.00538855 0.00539419 0.00539983 0.00540547 0.00541111 0.00541675 0.00542239 0.00542803 0.00543367 0.00543931 0.00544495 0.00545059 0.00545623 0.00546187 0.00546751 0.00547315 0.00547879 0.00548443 0.00549006 0.0054957 0.00550134 0.00550698 0.00551262 0.00551826 0.0055239 0.00552954 0.00553518 0.00554082 0.00554646 0.0055521 0.00555774 0.00556338 +-0.0011897 -0.00112365 -0.0010033 -0.000673795 2.86206E-05 0.00101847 0.00212599 0.003212 0.00412161 0.00466565 0.00484454 0.0048824 0.00489295 0.00489932 0.00490507 0.00491074 0.00491639 0.00492204 0.00492768 0.00493333 0.00493898 0.00494463 0.00495028 0.00495593 0.00496157 0.00496722 0.00497287 0.00497852 0.00498417 0.00498981 0.00499546 0.00500111 0.00500676 0.00501241 0.00501805 0.0050237 0.00502935 0.005035 0.00504065 0.0050463 0.00505194 0.00505759 0.00506324 0.00506889 0.00507454 0.00508018 0.00508583 0.00509148 0.00509713 0.00510278 0.00510843 0.00511407 0.00511972 0.00512537 0.00513102 0.00513667 0.00514231 0.00514796 0.00515361 0.00515926 0.00516491 0.00517055 0.0051762 0.00518185 0.0051875 0.00519315 0.00519879 0.00520444 0.00521009 0.00521574 0.00522139 0.00522704 0.00523268 0.00523833 0.00524398 0.00524963 0.00525528 0.00526092 0.00526657 0.00527222 0.00527787 0.00528352 0.00528916 0.00529481 0.00530046 0.00530611 0.00531176 0.00531741 0.00532305 0.0053287 0.00533435 0.00534 0.00534565 0.00535129 0.00535694 0.00536259 0.00536824 0.00537389 0.00537953 0.00538518 0.00539083 0.00539648 0.00540213 0.00540778 0.00541342 0.00541907 0.00542472 0.00543037 0.00543602 0.00544166 0.00544731 0.00545296 0.00545861 0.00546426 0.0054699 0.00547555 0.0054812 0.00548685 0.0054925 0.00549815 0.00550379 0.00550944 0.00551509 0.00552074 0.00552639 0.00553203 0.00553768 0.00554333 0.00554898 0.00555463 0.00556027 0.00556592 0.00557157 +-0.00119171 -0.00112553 -0.00100486 -0.000674614 2.86932E-05 0.00101924 0.0021274 0.00321428 0.00412533 0.00467134 0.00485136 0.0048895 0.0049001 0.00490649 0.00491225 0.00491792 0.00492358 0.00492924 0.00493489 0.00494055 0.00494621 0.00495186 0.00495752 0.00496318 0.00496883 0.00497449 0.00498015 0.0049858 0.00499146 0.00499712 0.00500277 0.00500843 0.00501409 0.00501974 0.0050254 0.00503106 0.00503671 0.00504237 0.00504803 0.00505368 0.00505934 0.005065 0.00507065 0.00507631 0.00508197 0.00508763 0.00509328 0.00509894 0.0051046 0.00511025 0.00511591 0.00512157 0.00512722 0.00513288 0.00513854 0.00514419 0.00514985 0.00515551 0.00516116 0.00516682 0.00517248 0.00517813 0.00518379 0.00518945 0.0051951 0.00520076 0.00520642 0.00521207 0.00521773 0.00522339 0.00522904 0.0052347 0.00524036 0.00524601 0.00525167 0.00525733 0.00526298 0.00526864 0.0052743 0.00527995 0.00528561 0.00529127 0.00529692 0.00530258 0.00530824 0.00531389 0.00531955 0.00532521 0.00533086 0.00533652 0.00534218 0.00534783 0.00535349 0.00535915 0.0053648 0.00537046 0.00537612 0.00538177 0.00538743 0.00539309 0.00539874 0.0054044 0.00541006 0.00541571 0.00542137 0.00542703 0.00543268 0.00543834 0.005444 0.00544965 0.00545531 0.00546097 0.00546662 0.00547228 0.00547794 0.00548359 0.00548925 0.00549491 0.00550056 0.00550622 0.00551188 0.00551753 0.00552319 0.00552885 0.0055345 0.00554016 0.00554582 0.00555147 0.00555713 0.00556279 0.00556844 0.0055741 0.00557976 +-0.00119372 -0.0011274 -0.00100642 -0.000675432 2.87658E-05 0.00102 0.00212881 0.00321655 0.00412904 0.00467702 0.00485819 0.00489659 0.00490725 0.00491365 0.00491942 0.0049251 0.00493077 0.00493643 0.0049421 0.00494776 0.00495343 0.00495909 0.00496476 0.00497042 0.00497609 0.00498176 0.00498742 0.00499309 0.00499875 0.00500442 0.00501008 0.00501575 0.00502141 0.00502708 0.00503274 0.00503841 0.00504407 0.00504974 0.0050554 0.00506107 0.00506673 0.0050724 0.00507806 0.00508373 0.0050894 0.00509506 0.00510073 0.00510639 0.00511206 0.00511772 0.00512339 0.00512905 0.00513472 0.00514038 0.00514605 0.00515171 0.00515738 0.00516304 0.00516871 0.00517437 0.00518004 0.00518571 0.00519137 0.00519704 0.0052027 0.00520837 0.00521403 0.0052197 0.00522536 0.00523103 0.00523669 0.00524236 0.00524802 0.00525369 0.00525935 0.00526502 0.00527068 0.00527635 0.00528201 0.00528768 0.00529334 0.00529901 0.00530468 0.00531034 0.00531601 0.00532167 0.00532734 0.005333 0.00533867 0.00534433 0.00535 0.00535566 0.00536133 0.00536699 0.00537266 0.00537832 0.00538399 0.00538965 0.00539532 0.00540098 0.00540665 0.00541232 0.00541798 0.00542365 0.00542931 0.00543498 0.00544064 0.00544631 0.00545197 0.00545764 0.0054633 0.00546897 0.00547463 0.0054803 0.00548596 0.00549163 0.00549729 0.00550296 0.00550863 0.00551429 0.00551996 0.00552562 0.00553129 0.00553695 0.00554262 0.00554828 0.00555395 0.00555961 0.00556528 0.00557094 0.00557661 0.00558227 0.00558794 +-0.00119573 -0.00112927 -0.00100798 -0.000676248 2.88385E-05 0.00102077 0.00213022 0.00321882 0.00413274 0.00468268 0.004865 0.00490368 0.00491439 0.0049208 0.00492658 0.00493227 0.00493795 0.00494362 0.0049493 0.00495497 0.00496065 0.00496632 0.00497199 0.00497767 0.00498334 0.00498901 0.00499469 0.00500036 0.00500604 0.00501171 0.00501738 0.00502306 0.00502873 0.00503441 0.00504008 0.00504575 0.00505143 0.0050571 0.00506277 0.00506845 0.00507412 0.0050798 0.00508547 0.00509114 0.00509682 0.00510249 0.00510817 0.00511384 0.00511951 0.00512519 0.00513086 0.00513653 0.00514221 0.00514788 0.00515356 0.00515923 0.0051649 0.00517058 0.00517625 0.00518193 0.0051876 0.00519327 0.00519895 0.00520462 0.00521029 0.00521597 0.00522164 0.00522732 0.00523299 0.00523866 0.00524434 0.00525001 0.00525568 0.00526136 0.00526703 0.00527271 0.00527838 0.00528405 0.00528973 0.0052954 0.00530108 0.00530675 0.00531242 0.0053181 0.00532377 0.00532944 0.00533512 0.00534079 0.00534647 0.00535214 0.00535781 0.00536349 0.00536916 0.00537483 0.00538051 0.00538618 0.00539186 0.00539753 0.0054032 0.00540888 0.00541455 0.00542023 0.0054259 0.00543157 0.00543725 0.00544292 0.00544859 0.00545427 0.00545994 0.00546562 0.00547129 0.00547696 0.00548264 0.00548831 0.00549399 0.00549966 0.00550533 0.00551101 0.00551668 0.00552235 0.00552803 0.0055337 0.00553938 0.00554505 0.00555072 0.0055564 0.00556207 0.00556775 0.00557342 0.00557909 0.00558477 0.00559044 0.00559611 +-0.00119774 -0.00113115 -0.00100953 -0.000677063 2.89111E-05 0.00102153 0.00213163 0.00322108 0.00413643 0.00468833 0.00487181 0.00491077 0.00492153 0.00492795 0.00493374 0.00493944 0.00494513 0.00495081 0.00495649 0.00496217 0.00496786 0.00497354 0.00497922 0.0049849 0.00499059 0.00499627 0.00500195 0.00500763 0.00501332 0.005019 0.00502468 0.00503036 0.00503605 0.00504173 0.00504741 0.00505309 0.00505878 0.00506446 0.00507014 0.00507582 0.00508151 0.00508719 0.00509287 0.00509855 0.00510423 0.00510992 0.0051156 0.00512128 0.00512696 0.00513265 0.00513833 0.00514401 0.00514969 0.00515538 0.00516106 0.00516674 0.00517242 0.00517811 0.00518379 0.00518947 0.00519515 0.00520084 0.00520652 0.0052122 0.00521788 0.00522356 0.00522925 0.00523493 0.00524061 0.00524629 0.00525198 0.00525766 0.00526334 0.00526902 0.00527471 0.00528039 0.00528607 0.00529175 0.00529744 0.00530312 0.0053088 0.00531448 0.00532017 0.00532585 0.00533153 0.00533721 0.00534289 0.00534858 0.00535426 0.00535994 0.00536562 0.00537131 0.00537699 0.00538267 0.00538835 0.00539404 0.00539972 0.0054054 0.00541108 0.00541677 0.00542245 0.00542813 0.00543381 0.0054395 0.00544518 0.00545086 0.00545654 0.00546222 0.00546791 0.00547359 0.00547927 0.00548495 0.00549064 0.00549632 0.005502 0.00550768 0.00551337 0.00551905 0.00552473 0.00553041 0.0055361 0.00554178 0.00554746 0.00555314 0.00555883 0.00556451 0.00557019 0.00557587 0.00558156 0.00558724 0.00559292 0.0055986 0.00560428 +-0.00119975 -0.00113302 -0.00101109 -0.000677877 2.89838E-05 0.00102229 0.00213303 0.00322334 0.00414011 0.00469398 0.00487861 0.00491785 0.00492866 0.0049351 0.0049409 0.00494661 0.0049523 0.00495799 0.00496368 0.00496937 0.00497506 0.00498076 0.00498645 0.00499214 0.00499783 0.00500352 0.00500921 0.0050149 0.00502059 0.00502628 0.00503197 0.00503766 0.00504336 0.00504905 0.00505474 0.00506043 0.00506612 0.00507181 0.0050775 0.00508319 0.00508888 0.00509457 0.00510027 0.00510596 0.00511165 0.00511734 0.00512303 0.00512872 0.00513441 0.0051401 0.00514579 0.00515148 0.00515717 0.00516287 0.00516856 0.00517425 0.00517994 0.00518563 0.00519132 0.00519701 0.0052027 0.00520839 0.00521408 0.00521977 0.00522547 0.00523116 0.00523685 0.00524254 0.00524823 0.00525392 0.00525961 0.0052653 0.00527099 0.00527668 0.00528237 0.00528807 0.00529376 0.00529945 0.00530514 0.00531083 0.00531652 0.00532221 0.0053279 0.00533359 0.00533928 0.00534498 0.00535067 0.00535636 0.00536205 0.00536774 0.00537343 0.00537912 0.00538481 0.0053905 0.00539619 0.00540188 0.00540758 0.00541327 0.00541896 0.00542465 0.00543034 0.00543603 0.00544172 0.00544741 0.0054531 0.00545879 0.00546449 0.00547018 0.00547587 0.00548156 0.00548725 0.00549294 0.00549863 0.00550432 0.00551001 0.0055157 0.00552139 0.00552709 0.00553278 0.00553847 0.00554416 0.00554985 0.00555554 0.00556123 0.00556692 0.00557261 0.0055783 0.00558399 0.00558969 0.00559538 0.00560107 0.00560676 0.00561245 +-0.00120176 -0.00113489 -0.00101265 -0.00067869 2.90566E-05 0.00102306 0.00213443 0.00322559 0.00414378 0.00469961 0.00488541 0.00492492 0.00493578 0.00494224 0.00494805 0.00495377 0.00495947 0.00496517 0.00497087 0.00497657 0.00498227 0.00498797 0.00499367 0.00499936 0.00500506 0.00501076 0.00501646 0.00502216 0.00502786 0.00503356 0.00503926 0.00504496 0.00505066 0.00505636 0.00506206 0.00506776 0.00507346 0.00507916 0.00508486 0.00509056 0.00509626 0.00510196 0.00510766 0.00511335 0.00511905 0.00512475 0.00513045 0.00513615 0.00514185 0.00514755 0.00515325 0.00515895 0.00516465 0.00517035 0.00517605 0.00518175 0.00518745 0.00519315 0.00519885 0.00520455 0.00521025 0.00521595 0.00522165 0.00522734 0.00523304 0.00523874 0.00524444 0.00525014 0.00525584 0.00526154 0.00526724 0.00527294 0.00527864 0.00528434 0.00529004 0.00529574 0.00530144 0.00530714 0.00531284 0.00531854 0.00532424 0.00532993 0.00533563 0.00534133 0.00534703 0.00535273 0.00535843 0.00536413 0.00536983 0.00537553 0.00538123 0.00538693 0.00539263 0.00539833 0.00540403 0.00540973 0.00541543 0.00542113 0.00542683 0.00543253 0.00543823 0.00544392 0.00544962 0.00545532 0.00546102 0.00546672 0.00547242 0.00547812 0.00548382 0.00548952 0.00549522 0.00550092 0.00550662 0.00551232 0.00551802 0.00552372 0.00552942 0.00553512 0.00554082 0.00554652 0.00555222 0.00555791 0.00556361 0.00556931 0.00557501 0.00558071 0.00558641 0.00559211 0.00559781 0.00560351 0.00560921 0.00561491 0.00562061 +-0.00120377 -0.00113676 -0.0010142 -0.000679501 2.91294E-05 0.00102382 0.00213582 0.00322783 0.00414744 0.00470523 0.0048922 0.00493199 0.0049429 0.00494938 0.0049552 0.00496092 0.00496663 0.00497234 0.00497805 0.00498376 0.00498946 0.00499517 0.00500088 0.00500659 0.0050123 0.005018 0.00502371 0.00502942 0.00503513 0.00504084 0.00504654 0.00505225 0.00505796 0.00506367 0.00506938 0.00507508 0.00508079 0.0050865 0.00509221 0.00509792 0.00510362 0.00510933 0.00511504 0.00512075 0.00512646 0.00513216 0.00513787 0.00514358 0.00514929 0.005155 0.0051607 0.00516641 0.00517212 0.00517783 0.00518354 0.00518924 0.00519495 0.00520066 0.00520637 0.00521208 0.00521778 0.00522349 0.0052292 0.00523491 0.00524062 0.00524633 0.00525203 0.00525774 0.00526345 0.00526916 0.00527486 0.00528057 0.00528628 0.00529199 0.0052977 0.00530341 0.00530911 0.00531482 0.00532053 0.00532624 0.00533195 0.00533765 0.00534336 0.00534907 0.00535478 0.00536049 0.00536619 0.0053719 0.00537761 0.00538332 0.00538903 0.00539473 0.00540044 0.00540615 0.00541186 0.00541757 0.00542327 0.00542898 0.00543469 0.0054404 0.00544611 0.00545181 0.00545752 0.00546323 0.00546894 0.00547465 0.00548035 0.00548606 0.00549177 0.00549748 0.00550319 0.00550889 0.0055146 0.00552031 0.00552602 0.00553173 0.00553743 0.00554314 0.00554885 0.00555456 0.00556027 0.00556597 0.00557168 0.00557739 0.0055831 0.00558881 0.00559451 0.00560022 0.00560593 0.00561164 0.00561735 0.00562306 0.00562876 +-0.00120578 -0.00113863 -0.00101575 -0.000680311 2.92022E-05 0.00102457 0.00213722 0.00323007 0.00415109 0.00471083 0.00489898 0.00493905 0.00495002 0.00495651 0.00496234 0.00496807 0.00497379 0.00497951 0.00498522 0.00499094 0.00499666 0.00500237 0.00500809 0.00501381 0.00501952 0.00502524 0.00503096 0.00503667 0.00504239 0.00504811 0.00505382 0.00505954 0.00506525 0.00507097 0.00507669 0.0050824 0.00508812 0.00509384 0.00509955 0.00510527 0.00511099 0.0051167 0.00512242 0.00512814 0.00513385 0.00513957 0.00514529 0.005151 0.00515672 0.00516244 0.00516815 0.00517387 0.00517959 0.0051853 0.00519102 0.00519674 0.00520245 0.00520817 0.00521389 0.0052196 0.00522532 0.00523104 0.00523675 0.00524247 0.00524819 0.0052539 0.00525962 0.00526533 0.00527105 0.00527677 0.00528248 0.0052882 0.00529392 0.00529963 0.00530535 0.00531107 0.00531678 0.0053225 0.00532822 0.00533393 0.00533965 0.00534537 0.00535108 0.0053568 0.00536252 0.00536823 0.00537395 0.00537967 0.00538538 0.0053911 0.00539682 0.00540253 0.00540825 0.00541397 0.00541968 0.0054254 0.00543112 0.00543683 0.00544255 0.00544826 0.00545398 0.0054597 0.00546541 0.00547113 0.00547685 0.00548256 0.00548828 0.005494 0.00549971 0.00550543 0.00551115 0.00551686 0.00552258 0.0055283 0.00553401 0.00553973 0.00554545 0.00555116 0.00555688 0.0055626 0.00556831 0.00557403 0.00557975 0.00558546 0.00559118 0.0055969 0.00560261 0.00560833 0.00561405 0.00561976 0.00562548 0.0056312 0.00563691 +-0.00120778 -0.00114049 -0.00101731 -0.00068112 2.9275E-05 0.00102533 0.00213861 0.0032323 0.00415473 0.00471643 0.00490575 0.00494611 0.00495713 0.00496364 0.00496947 0.00497522 0.00498094 0.00498667 0.00499239 0.00499812 0.00500384 0.00500957 0.00501529 0.00502102 0.00502674 0.00503247 0.00503819 0.00504392 0.00504964 0.00505537 0.00506109 0.00506682 0.00507254 0.00507827 0.005084 0.00508972 0.00509545 0.00510117 0.0051069 0.00511262 0.00511835 0.00512407 0.0051298 0.00513552 0.00514125 0.00514697 0.0051527 0.00515842 0.00516415 0.00516987 0.0051756 0.00518132 0.00518705 0.00519277 0.0051985 0.00520422 0.00520995 0.00521567 0.0052214 0.00522712 0.00523285 0.00523857 0.0052443 0.00525002 0.00525575 0.00526147 0.0052672 0.00527292 0.00527865 0.00528437 0.0052901 0.00529582 0.00530155 0.00530727 0.005313 0.00531872 0.00532445 0.00533017 0.0053359 0.00534162 0.00534735 0.00535307 0.0053588 0.00536452 0.00537025 0.00537598 0.0053817 0.00538743 0.00539315 0.00539888 0.0054046 0.00541033 0.00541605 0.00542178 0.0054275 0.00543323 0.00543895 0.00544468 0.0054504 0.00545613 0.00546185 0.00546758 0.0054733 0.00547903 0.00548475 0.00549048 0.0054962 0.00550193 0.00550765 0.00551338 0.0055191 0.00552483 0.00553055 0.00553628 0.005542 0.00554773 0.00555345 0.00555918 0.0055649 0.00557063 0.00557635 0.00558208 0.0055878 0.00559353 0.00559925 0.00560498 0.0056107 0.00561643 0.00562215 0.00562788 0.0056336 0.00563933 0.00564505 +-0.00120979 -0.00114236 -0.00101886 -0.000681927 2.93479E-05 0.00102609 0.00214 0.00323453 0.00415836 0.00472201 0.00491252 0.00495317 0.00496424 0.00497076 0.00497661 0.00498236 0.00498809 0.00499383 0.00499956 0.00500529 0.00501103 0.00501676 0.00502249 0.00502823 0.00503396 0.00503969 0.00504543 0.00505116 0.0050569 0.00506263 0.00506836 0.0050741 0.00507983 0.00508556 0.0050913 0.00509703 0.00510276 0.0051085 0.00511423 0.00511997 0.0051257 0.00513143 0.00513717 0.0051429 0.00514863 0.00515437 0.0051601 0.00516583 0.00517157 0.0051773 0.00518304 0.00518877 0.0051945 0.00520024 0.00520597 0.0052117 0.00521744 0.00522317 0.0052289 0.00523464 0.00524037 0.00524611 0.00525184 0.00525757 0.00526331 0.00526904 0.00527477 0.00528051 0.00528624 0.00529197 0.00529771 0.00530344 0.00530918 0.00531491 0.00532064 0.00532638 0.00533211 0.00533784 0.00534358 0.00534931 0.00535504 0.00536078 0.00536651 0.00537224 0.00537798 0.00538371 0.00538945 0.00539518 0.00540091 0.00540665 0.00541238 0.00541811 0.00542385 0.00542958 0.00543531 0.00544105 0.00544678 0.00545252 0.00545825 0.00546398 0.00546972 0.00547545 0.00548118 0.00548692 0.00549265 0.00549838 0.00550412 0.00550985 0.00551559 0.00552132 0.00552705 0.00553279 0.00553852 0.00554425 0.00554999 0.00555572 0.00556145 0.00556719 0.00557292 0.00557866 0.00558439 0.00559012 0.00559586 0.00560159 0.00560732 0.00561306 0.00561879 0.00562452 0.00563026 0.00563599 0.00564173 0.00564746 0.00565319 +-0.00121179 -0.00114423 -0.00102041 -0.000682733 2.94208E-05 0.00102684 0.00214138 0.00323675 0.00416198 0.00472759 0.00491928 0.00496021 0.00497134 0.00497787 0.00498373 0.00498949 0.00499524 0.00500098 0.00500672 0.00501246 0.0050182 0.00502395 0.00502969 0.00503543 0.00504117 0.00504692 0.00505266 0.0050584 0.00506414 0.00506988 0.00507563 0.00508137 0.00508711 0.00509285 0.00509859 0.00510434 0.00511008 0.00511582 0.00512156 0.00512731 0.00513305 0.00513879 0.00514453 0.00515027 0.00515602 0.00516176 0.0051675 0.00517324 0.00517898 0.00518473 0.00519047 0.00519621 0.00520195 0.0052077 0.00521344 0.00521918 0.00522492 0.00523066 0.00523641 0.00524215 0.00524789 0.00525363 0.00525938 0.00526512 0.00527086 0.0052766 0.00528234 0.00528809 0.00529383 0.00529957 0.00530531 0.00531105 0.0053168 0.00532254 0.00532828 0.00533402 0.00533976 0.00534551 0.00535125 0.00535699 0.00536273 0.00536848 0.00537422 0.00537996 0.0053857 0.00539144 0.00539719 0.00540293 0.00540867 0.00541441 0.00542016 0.0054259 0.00543164 0.00543738 0.00544312 0.00544887 0.00545461 0.00546035 0.00546609 0.00547183 0.00547758 0.00548332 0.00548906 0.0054948 0.00550055 0.00550629 0.00551203 0.00551777 0.00552351 0.00552926 0.005535 0.00554074 0.00554648 0.00555222 0.00555797 0.00556371 0.00556945 0.00557519 0.00558094 0.00558668 0.00559242 0.00559816 0.0056039 0.00560965 0.00561539 0.00562113 0.00562687 0.00563261 0.00563836 0.0056441 0.00564984 0.00565558 0.00566133 +-0.0012138 -0.00114609 -0.00102196 -0.000683538 2.94938E-05 0.00102759 0.00214276 0.00323897 0.00416559 0.00473315 0.00492603 0.00496726 0.00497844 0.00498499 0.00499085 0.00499662 0.00500237 0.00500813 0.00501388 0.00501963 0.00502538 0.00503113 0.00503688 0.00504263 0.00504838 0.00505413 0.00505988 0.00506563 0.00507138 0.00507713 0.00508288 0.00508864 0.00509439 0.00510014 0.00510589 0.00511164 0.00511739 0.00512314 0.00512889 0.00513464 0.00514039 0.00514614 0.00515189 0.00515764 0.00516339 0.00516914 0.0051749 0.00518065 0.0051864 0.00519215 0.0051979 0.00520365 0.0052094 0.00521515 0.0052209 0.00522665 0.0052324 0.00523815 0.0052439 0.00524965 0.0052554 0.00526116 0.00526691 0.00527266 0.00527841 0.00528416 0.00528991 0.00529566 0.00530141 0.00530716 0.00531291 0.00531866 0.00532441 0.00533016 0.00533591 0.00534166 0.00534742 0.00535317 0.00535892 0.00536467 0.00537042 0.00537617 0.00538192 0.00538767 0.00539342 0.00539917 0.00540492 0.00541067 0.00541642 0.00542217 0.00542792 0.00543368 0.00543943 0.00544518 0.00545093 0.00545668 0.00546243 0.00546818 0.00547393 0.00547968 0.00548543 0.00549118 0.00549693 0.00550268 0.00550843 0.00551418 0.00551994 0.00552569 0.00553144 0.00553719 0.00554294 0.00554869 0.00555444 0.00556019 0.00556594 0.00557169 0.00557744 0.00558319 0.00558894 0.00559469 0.00560044 0.0056062 0.00561195 0.0056177 0.00562345 0.0056292 0.00563495 0.0056407 0.00564645 0.0056522 0.00565795 0.0056637 0.00566945 +-0.0012158 -0.00114796 -0.0010235 -0.000684342 2.95668E-05 0.00102834 0.00214414 0.00324118 0.00416919 0.0047387 0.00493278 0.0049743 0.00498553 0.0049921 0.00499797 0.00500375 0.00500951 0.00501527 0.00502103 0.00502679 0.00503255 0.00503831 0.00504406 0.00504982 0.00505558 0.00506134 0.0050671 0.00507286 0.00507862 0.00508438 0.00509014 0.0050959 0.00510166 0.00510742 0.00511318 0.00511893 0.00512469 0.00513045 0.00513621 0.00514197 0.00514773 0.00515349 0.00515925 0.00516501 0.00517077 0.00517653 0.00518229 0.00518804 0.0051938 0.00519956 0.00520532 0.00521108 0.00521684 0.0052226 0.00522836 0.00523412 0.00523988 0.00524564 0.0052514 0.00525715 0.00526291 0.00526867 0.00527443 0.00528019 0.00528595 0.00529171 0.00529747 0.00530323 0.00530899 0.00531475 0.00532051 0.00532626 0.00533202 0.00533778 0.00534354 0.0053493 0.00535506 0.00536082 0.00536658 0.00537234 0.0053781 0.00538386 0.00538962 0.00539537 0.00540113 0.00540689 0.00541265 0.00541841 0.00542417 0.00542993 0.00543569 0.00544145 0.00544721 0.00545297 0.00545873 0.00546448 0.00547024 0.005476 0.00548176 0.00548752 0.00549328 0.00549904 0.0055048 0.00551056 0.00551632 0.00552208 0.00552784 0.00553359 0.00553935 0.00554511 0.00555087 0.00555663 0.00556239 0.00556815 0.00557391 0.00557967 0.00558543 0.00559119 0.00559695 0.00560271 0.00560846 0.00561422 0.00561998 0.00562574 0.0056315 0.00563726 0.00564302 0.00564878 0.00565454 0.0056603 0.00566606 0.00567182 0.00567757 +-0.00121781 -0.00114982 -0.00102505 -0.000685145 2.96398E-05 0.00102909 0.00214552 0.00324339 0.00417279 0.00474424 0.00493952 0.00498133 0.00499262 0.0049992 0.00500508 0.00501087 0.00501664 0.00502241 0.00502818 0.00503394 0.00503971 0.00504548 0.00505125 0.00505701 0.00506278 0.00506855 0.00507432 0.00508008 0.00508585 0.00509162 0.00509739 0.00510315 0.00510892 0.00511469 0.00512046 0.00512623 0.00513199 0.00513776 0.00514353 0.0051493 0.00515506 0.00516083 0.0051666 0.00517237 0.00517813 0.0051839 0.00518967 0.00519544 0.00520121 0.00520697 0.00521274 0.00521851 0.00522428 0.00523004 0.00523581 0.00524158 0.00524735 0.00525311 0.00525888 0.00526465 0.00527042 0.00527619 0.00528195 0.00528772 0.00529349 0.00529926 0.00530502 0.00531079 0.00531656 0.00532233 0.00532809 0.00533386 0.00533963 0.0053454 0.00535117 0.00535693 0.0053627 0.00536847 0.00537424 0.00538 0.00538577 0.00539154 0.00539731 0.00540307 0.00540884 0.00541461 0.00542038 0.00542615 0.00543191 0.00543768 0.00544345 0.00544922 0.00545498 0.00546075 0.00546652 0.00547229 0.00547805 0.00548382 0.00548959 0.00549536 0.00550113 0.00550689 0.00551266 0.00551843 0.0055242 0.00552996 0.00553573 0.0055415 0.00554727 0.00555303 0.0055588 0.00556457 0.00557034 0.0055761 0.00558187 0.00558764 0.00559341 0.00559918 0.00560494 0.00561071 0.00561648 0.00562225 0.00562801 0.00563378 0.00563955 0.00564532 0.00565108 0.00565685 0.00566262 0.00566839 0.00567416 0.00567992 0.00568569 +-0.00121981 -0.00115169 -0.0010266 -0.000685946 2.97128E-05 0.00102984 0.00214689 0.00324559 0.00417637 0.00474977 0.00494625 0.00498836 0.0049997 0.0050063 0.00501219 0.00501799 0.00502376 0.00502954 0.00503532 0.00504109 0.00504687 0.00505265 0.00505842 0.0050642 0.00506997 0.00507575 0.00508153 0.0050873 0.00509308 0.00509886 0.00510463 0.00511041 0.00511618 0.00512196 0.00512774 0.00513351 0.00513929 0.00514506 0.00515084 0.00515662 0.00516239 0.00516817 0.00517395 0.00517972 0.0051855 0.00519127 0.00519705 0.00520283 0.0052086 0.00521438 0.00522016 0.00522593 0.00523171 0.00523748 0.00524326 0.00524904 0.00525481 0.00526059 0.00526636 0.00527214 0.00527792 0.00528369 0.00528947 0.00529525 0.00530102 0.0053068 0.00531257 0.00531835 0.00532413 0.0053299 0.00533568 0.00534145 0.00534723 0.00535301 0.00535878 0.00536456 0.00537034 0.00537611 0.00538189 0.00538766 0.00539344 0.00539922 0.00540499 0.00541077 0.00541655 0.00542232 0.0054281 0.00543387 0.00543965 0.00544543 0.0054512 0.00545698 0.00546275 0.00546853 0.00547431 0.00548008 0.00548586 0.00549164 0.00549741 0.00550319 0.00550896 0.00551474 0.00552052 0.00552629 0.00553207 0.00553785 0.00554362 0.0055494 0.00555517 0.00556095 0.00556673 0.0055725 0.00557828 0.00558405 0.00558983 0.00559561 0.00560138 0.00560716 0.00561294 0.00561871 0.00562449 0.00563026 0.00563604 0.00564182 0.00564759 0.00565337 0.00565915 0.00566492 0.0056707 0.00567647 0.00568225 0.00568803 0.0056938 +-0.00122181 -0.00115355 -0.00102814 -0.000686746 2.97859E-05 0.00103059 0.00214826 0.00324779 0.00417994 0.00475529 0.00495297 0.00499538 0.00500678 0.00501339 0.0050193 0.0050251 0.00503088 0.00503667 0.00504245 0.00504824 0.00505402 0.00505981 0.00506559 0.00507138 0.00507716 0.00508295 0.00508873 0.00509452 0.0051003 0.00510609 0.00511187 0.00511766 0.00512344 0.00512922 0.00513501 0.00514079 0.00514658 0.00515236 0.00515815 0.00516393 0.00516972 0.0051755 0.00518129 0.00518707 0.00519286 0.00519864 0.00520443 0.00521021 0.00521599 0.00522178 0.00522756 0.00523335 0.00523913 0.00524492 0.0052507 0.00525649 0.00526227 0.00526806 0.00527384 0.00527963 0.00528541 0.0052912 0.00529698 0.00530277 0.00530855 0.00531433 0.00532012 0.0053259 0.00533169 0.00533747 0.00534326 0.00534904 0.00535483 0.00536061 0.0053664 0.00537218 0.00537797 0.00538375 0.00538954 0.00539532 0.0054011 0.00540689 0.00541267 0.00541846 0.00542424 0.00543003 0.00543581 0.0054416 0.00544738 0.00545317 0.00545895 0.00546474 0.00547052 0.00547631 0.00548209 0.00548787 0.00549366 0.00549944 0.00550523 0.00551101 0.0055168 0.00552258 0.00552837 0.00553415 0.00553994 0.00554572 0.00555151 0.00555729 0.00556308 0.00556886 0.00557465 0.00558043 0.00558621 0.005592 0.00559778 0.00560357 0.00560935 0.00561514 0.00562092 0.00562671 0.00563249 0.00563828 0.00564406 0.00564985 0.00565563 0.00566142 0.0056672 0.00567298 0.00567877 0.00568455 0.00569034 0.00569612 0.00570191 +-0.00122381 -0.00115541 -0.00102968 -0.000687545 2.98591E-05 0.00103134 0.00214963 0.00324998 0.0041835 0.00476079 0.00495969 0.0050024 0.00501385 0.00502048 0.00502639 0.0050322 0.005038 0.00504379 0.00504959 0.00505538 0.00506117 0.00506697 0.00507276 0.00507855 0.00508435 0.00509014 0.00509593 0.00510173 0.00510752 0.00511331 0.00511911 0.0051249 0.00513069 0.00513648 0.00514228 0.00514807 0.00515386 0.00515966 0.00516545 0.00517124 0.00517704 0.00518283 0.00518862 0.00519442 0.00520021 0.005206 0.0052118 0.00521759 0.00522338 0.00522918 0.00523497 0.00524076 0.00524655 0.00525235 0.00525814 0.00526393 0.00526973 0.00527552 0.00528131 0.00528711 0.0052929 0.00529869 0.00530449 0.00531028 0.00531607 0.00532187 0.00532766 0.00533345 0.00533925 0.00534504 0.00535083 0.00535663 0.00536242 0.00536821 0.005374 0.0053798 0.00538559 0.00539138 0.00539718 0.00540297 0.00540876 0.00541456 0.00542035 0.00542614 0.00543194 0.00543773 0.00544352 0.00544932 0.00545511 0.0054609 0.0054667 0.00547249 0.00547828 0.00548407 0.00548987 0.00549566 0.00550145 0.00550725 0.00551304 0.00551883 0.00552463 0.00553042 0.00553621 0.00554201 0.0055478 0.00555359 0.00555939 0.00556518 0.00557097 0.00557677 0.00558256 0.00558835 0.00559415 0.00559994 0.00560573 0.00561152 0.00561732 0.00562311 0.0056289 0.0056347 0.00564049 0.00564628 0.00565208 0.00565787 0.00566366 0.00566946 0.00567525 0.00568104 0.00568684 0.00569263 0.00569842 0.00570422 0.00571001 +-0.00122581 -0.00115727 -0.00103123 -0.000688342 2.99322E-05 0.00103208 0.00215099 0.00325216 0.00418705 0.00476629 0.0049664 0.00500941 0.00502092 0.00502756 0.00503349 0.00503931 0.00504511 0.00505091 0.00505671 0.00506252 0.00506832 0.00507412 0.00507992 0.00508572 0.00509152 0.00509733 0.00510313 0.00510893 0.00511473 0.00512053 0.00512633 0.00513214 0.00513794 0.00514374 0.00514954 0.00515534 0.00516114 0.00516695 0.00517275 0.00517855 0.00518435 0.00519015 0.00519595 0.00520176 0.00520756 0.00521336 0.00521916 0.00522496 0.00523076 0.00523657 0.00524237 0.00524817 0.00525397 0.00525977 0.00526557 0.00527138 0.00527718 0.00528298 0.00528878 0.00529458 0.00530038 0.00530619 0.00531199 0.00531779 0.00532359 0.00532939 0.00533519 0.005341 0.0053468 0.0053526 0.0053584 0.0053642 0.00537 0.00537581 0.00538161 0.00538741 0.00539321 0.00539901 0.00540481 0.00541062 0.00541642 0.00542222 0.00542802 0.00543382 0.00543962 0.00544543 0.00545123 0.00545703 0.00546283 0.00546863 0.00547443 0.00548024 0.00548604 0.00549184 0.00549764 0.00550344 0.00550924 0.00551505 0.00552085 0.00552665 0.00553245 0.00553825 0.00554405 0.00554986 0.00555566 0.00556146 0.00556726 0.00557306 0.00557886 0.00558467 0.00559047 0.00559627 0.00560207 0.00560787 0.00561367 0.00561948 0.00562528 0.00563108 0.00563688 0.00564268 0.00564848 0.00565429 0.00566009 0.00566589 0.00567169 0.00567749 0.00568329 0.0056891 0.0056949 0.0057007 0.0057065 0.0057123 0.0057181 +-0.00122781 -0.00115913 -0.00103277 -0.000689139 3.00054E-05 0.00103282 0.00215235 0.00325434 0.0041906 0.00477177 0.00497311 0.00501642 0.00502799 0.00503464 0.00504058 0.0050464 0.00505222 0.00505803 0.00506384 0.00506965 0.00507546 0.00508127 0.00508708 0.00509289 0.0050987 0.00510451 0.00511032 0.00511613 0.00512194 0.00512775 0.00513356 0.00513937 0.00514518 0.00515099 0.0051568 0.00516261 0.00516842 0.00517423 0.00518004 0.00518585 0.00519166 0.00519747 0.00520328 0.00520909 0.0052149 0.00522071 0.00522652 0.00523233 0.00523814 0.00524395 0.00524976 0.00525557 0.00526138 0.00526719 0.005273 0.00527881 0.00528462 0.00529043 0.00529624 0.00530205 0.00530786 0.00531367 0.00531948 0.00532529 0.0053311 0.00533691 0.00534272 0.00534853 0.00535434 0.00536016 0.00536597 0.00537178 0.00537759 0.0053834 0.00538921 0.00539502 0.00540083 0.00540664 0.00541245 0.00541826 0.00542407 0.00542988 0.00543569 0.0054415 0.00544731 0.00545312 0.00545893 0.00546474 0.00547055 0.00547636 0.00548217 0.00548798 0.00549379 0.0054996 0.00550541 0.00551122 0.00551703 0.00552284 0.00552865 0.00553446 0.00554027 0.00554608 0.00555189 0.0055577 0.00556351 0.00556932 0.00557513 0.00558094 0.00558675 0.00559256 0.00559837 0.00560418 0.00560999 0.0056158 0.00562161 0.00562742 0.00563323 0.00563904 0.00564485 0.00565066 0.00565647 0.00566228 0.00566809 0.0056739 0.00567971 0.00568552 0.00569133 0.00569714 0.00570295 0.00570876 0.00571457 0.00572038 0.00572619 +-0.00122981 -0.00116099 -0.00103431 -0.000689934 3.00786E-05 0.00103356 0.00215371 0.00325651 0.00419413 0.00477724 0.0049798 0.00502342 0.00503505 0.00504172 0.00504766 0.0050535 0.00505932 0.00506514 0.00507096 0.00507678 0.00508259 0.00508841 0.00509423 0.00510005 0.00510587 0.00511169 0.00511751 0.00512332 0.00512914 0.00513496 0.00514078 0.0051466 0.00515242 0.00515824 0.00516405 0.00516987 0.00517569 0.00518151 0.00518733 0.00519315 0.00519897 0.00520478 0.0052106 0.00521642 0.00522224 0.00522806 0.00523388 0.0052397 0.00524552 0.00525133 0.00525715 0.00526297 0.00526879 0.00527461 0.00528043 0.00528625 0.00529206 0.00529788 0.0053037 0.00530952 0.00531534 0.00532116 0.00532698 0.00533279 0.00533861 0.00534443 0.00535025 0.00535607 0.00536189 0.00536771 0.00537352 0.00537934 0.00538516 0.00539098 0.0053968 0.00540262 0.00540844 0.00541425 0.00542007 0.00542589 0.00543171 0.00543753 0.00544335 0.00544917 0.00545499 0.0054608 0.00546662 0.00547244 0.00547826 0.00548408 0.0054899 0.00549572 0.00550153 0.00550735 0.00551317 0.00551899 0.00552481 0.00553063 0.00553645 0.00554226 0.00554808 0.0055539 0.00555972 0.00556554 0.00557136 0.00557718 0.00558299 0.00558881 0.00559463 0.00560045 0.00560627 0.00561209 0.00561791 0.00562373 0.00562954 0.00563536 0.00564118 0.005647 0.00565282 0.00565864 0.00566446 0.00567027 0.00567609 0.00568191 0.00568773 0.00569355 0.00569937 0.00570519 0.005711 0.00571682 0.00572264 0.00572846 0.00573428 +-0.00123181 -0.00116285 -0.00103584 -0.000690728 3.01519E-05 0.00103431 0.00215507 0.00325868 0.00419766 0.0047827 0.00498649 0.00503042 0.0050421 0.00504879 0.00505474 0.00506059 0.00506642 0.00507224 0.00507807 0.0050839 0.00508972 0.00509555 0.00510138 0.00510721 0.00511303 0.00511886 0.00512469 0.00513051 0.00513634 0.00514217 0.005148 0.00515382 0.00515965 0.00516548 0.0051713 0.00517713 0.00518296 0.00518879 0.00519461 0.00520044 0.00520627 0.00521209 0.00521792 0.00522375 0.00522957 0.0052354 0.00524123 0.00524706 0.00525288 0.00525871 0.00526454 0.00527036 0.00527619 0.00528202 0.00528785 0.00529367 0.0052995 0.00530533 0.00531115 0.00531698 0.00532281 0.00532864 0.00533446 0.00534029 0.00534612 0.00535194 0.00535777 0.0053636 0.00536942 0.00537525 0.00538108 0.00538691 0.00539273 0.00539856 0.00540439 0.00541021 0.00541604 0.00542187 0.0054277 0.00543352 0.00543935 0.00544518 0.005451 0.00545683 0.00546266 0.00546849 0.00547431 0.00548014 0.00548597 0.00549179 0.00549762 0.00550345 0.00550927 0.0055151 0.00552093 0.00552676 0.00553258 0.00553841 0.00554424 0.00555006 0.00555589 0.00556172 0.00556755 0.00557337 0.0055792 0.00558503 0.00559085 0.00559668 0.00560251 0.00560834 0.00561416 0.00561999 0.00562582 0.00563164 0.00563747 0.0056433 0.00564912 0.00565495 0.00566078 0.00566661 0.00567243 0.00567826 0.00568409 0.00568991 0.00569574 0.00570157 0.0057074 0.00571322 0.00571905 0.00572488 0.0057307 0.00573653 0.00574236 +-0.00123381 -0.00116471 -0.00103738 -0.00069152 3.02252E-05 0.00103504 0.00215642 0.00326084 0.00420117 0.00478815 0.00499318 0.00503741 0.00504915 0.00505585 0.00506182 0.00506767 0.00507351 0.00507934 0.00508518 0.00509102 0.00509685 0.00510269 0.00510852 0.00511436 0.00512019 0.00512603 0.00513186 0.0051377 0.00514354 0.00514937 0.00515521 0.00516104 0.00516688 0.00517271 0.00517855 0.00518438 0.00519022 0.00519606 0.00520189 0.00520773 0.00521356 0.0052194 0.00522523 0.00523107 0.0052369 0.00524274 0.00524858 0.00525441 0.00526025 0.00526608 0.00527192 0.00527775 0.00528359 0.00528942 0.00529526 0.0053011 0.00530693 0.00531277 0.0053186 0.00532444 0.00533027 0.00533611 0.00534194 0.00534778 0.00535362 0.00535945 0.00536529 0.00537112 0.00537696 0.00538279 0.00538863 0.00539446 0.0054003 0.00540613 0.00541197 0.00541781 0.00542364 0.00542948 0.00543531 0.00544115 0.00544698 0.00545282 0.00545865 0.00546449 0.00547033 0.00547616 0.005482 0.00548783 0.00549367 0.0054995 0.00550534 0.00551117 0.00551701 0.00552285 0.00552868 0.00553452 0.00554035 0.00554619 0.00555202 0.00555786 0.00556369 0.00556953 0.00557537 0.0055812 0.00558704 0.00559287 0.00559871 0.00560454 0.00561038 0.00561621 0.00562205 0.00562789 0.00563372 0.00563956 0.00564539 0.00565123 0.00565706 0.0056629 0.00566873 0.00567457 0.00568041 0.00568624 0.00569208 0.00569791 0.00570375 0.00570958 0.00571542 0.00572125 0.00572709 0.00573293 0.00573876 0.0057446 0.00575043 +-0.00123581 -0.00116657 -0.00103892 -0.000692312 3.02985E-05 0.00103578 0.00215777 0.003263 0.00420468 0.00479359 0.00499985 0.0050444 0.0050562 0.00506291 0.00506889 0.00507475 0.0050806 0.00508644 0.00509228 0.00509813 0.00510397 0.00510982 0.00511566 0.0051215 0.00512735 0.00513319 0.00513904 0.00514488 0.00515072 0.00515657 0.00516241 0.00516826 0.0051741 0.00517994 0.00518579 0.00519163 0.00519748 0.00520332 0.00520916 0.00521501 0.00522085 0.0052267 0.00523254 0.00523838 0.00524423 0.00525007 0.00525592 0.00526176 0.0052676 0.00527345 0.00527929 0.00528514 0.00529098 0.00529682 0.00530267 0.00530851 0.00531436 0.0053202 0.00532604 0.00533189 0.00533773 0.00534358 0.00534942 0.00535526 0.00536111 0.00536695 0.0053728 0.00537864 0.00538448 0.00539033 0.00539617 0.00540202 0.00540786 0.0054137 0.00541955 0.00542539 0.00543124 0.00543708 0.00544292 0.00544877 0.00545461 0.00546046 0.0054663 0.00547214 0.00547799 0.00548383 0.00548968 0.00549552 0.00550136 0.00550721 0.00551305 0.0055189 0.00552474 0.00553059 0.00553643 0.00554227 0.00554812 0.00555396 0.00555981 0.00556565 0.00557149 0.00557734 0.00558318 0.00558903 0.00559487 0.00560071 0.00560656 0.0056124 0.00561825 0.00562409 0.00562993 0.00563578 0.00564162 0.00564747 0.00565331 0.00565915 0.005665 0.00567084 0.00567669 0.00568253 0.00568837 0.00569422 0.00570006 0.00570591 0.00571175 0.00571759 0.00572344 0.00572928 0.00573513 0.00574097 0.00574681 0.00575266 0.0057585 +-0.0012378 -0.00116842 -0.00104045 -0.000693102 3.03719E-05 0.00103652 0.00215912 0.00326515 0.00420817 0.00479901 0.00500652 0.00505138 0.00506324 0.00506997 0.00507595 0.00508182 0.00508768 0.00509353 0.00509938 0.00510524 0.00511109 0.00511694 0.00512279 0.00512865 0.0051345 0.00514035 0.0051462 0.00515206 0.00515791 0.00516376 0.00516961 0.00517547 0.00518132 0.00518717 0.00519302 0.00519888 0.00520473 0.00521058 0.00521643 0.00522229 0.00522814 0.00523399 0.00523984 0.0052457 0.00525155 0.0052574 0.00526325 0.00526911 0.00527496 0.00528081 0.00528666 0.00529252 0.00529837 0.00530422 0.00531007 0.00531593 0.00532178 0.00532763 0.00533348 0.00533934 0.00534519 0.00535104 0.00535689 0.00536275 0.0053686 0.00537445 0.0053803 0.00538615 0.00539201 0.00539786 0.00540371 0.00540956 0.00541542 0.00542127 0.00542712 0.00543297 0.00543883 0.00544468 0.00545053 0.00545638 0.00546224 0.00546809 0.00547394 0.00547979 0.00548565 0.0054915 0.00549735 0.0055032 0.00550906 0.00551491 0.00552076 0.00552661 0.00553247 0.00553832 0.00554417 0.00555002 0.00555588 0.00556173 0.00556758 0.00557343 0.00557929 0.00558514 0.00559099 0.00559684 0.0056027 0.00560855 0.0056144 0.00562025 0.00562611 0.00563196 0.00563781 0.00564366 0.00564952 0.00565537 0.00566122 0.00566707 0.00567293 0.00567878 0.00568463 0.00569048 0.00569634 0.00570219 0.00570804 0.00571389 0.00571975 0.0057256 0.00573145 0.0057373 0.00574316 0.00574901 0.00575486 0.00576071 0.00576657 +-0.0012398 -0.00117028 -0.00104199 -0.000693891 3.04453E-05 0.00103725 0.00216046 0.0032673 0.00421166 0.00480443 0.00501318 0.00505836 0.00507027 0.00507702 0.00508301 0.00508889 0.00509476 0.00510062 0.00510648 0.00511234 0.0051182 0.00512406 0.00512992 0.00513578 0.00514164 0.00514751 0.00515337 0.00515923 0.00516509 0.00517095 0.00517681 0.00518267 0.00518853 0.00519439 0.00520025 0.00520611 0.00521198 0.00521784 0.0052237 0.00522956 0.00523542 0.00524128 0.00524714 0.005253 0.00525886 0.00526472 0.00527059 0.00527645 0.00528231 0.00528817 0.00529403 0.00529989 0.00530575 0.00531161 0.00531747 0.00532333 0.00532919 0.00533506 0.00534092 0.00534678 0.00535264 0.0053585 0.00536436 0.00537022 0.00537608 0.00538194 0.0053878 0.00539366 0.00539953 0.00540539 0.00541125 0.00541711 0.00542297 0.00542883 0.00543469 0.00544055 0.00544641 0.00545227 0.00545813 0.005464 0.00546986 0.00547572 0.00548158 0.00548744 0.0054933 0.00549916 0.00550502 0.00551088 0.00551674 0.0055226 0.00552847 0.00553433 0.00554019 0.00554605 0.00555191 0.00555777 0.00556363 0.00556949 0.00557535 0.00558121 0.00558707 0.00559294 0.0055988 0.00560466 0.00561052 0.00561638 0.00562224 0.0056281 0.00563396 0.00563982 0.00564568 0.00565154 0.00565741 0.00566327 0.00566913 0.00567499 0.00568085 0.00568671 0.00569257 0.00569843 0.00570429 0.00571015 0.00571601 0.00572188 0.00572774 0.0057336 0.00573946 0.00574532 0.00575118 0.00575704 0.0057629 0.00576876 0.00577462 +-0.00124179 -0.00117214 -0.00104352 -0.000694679 3.05187E-05 0.00103799 0.0021618 0.00326945 0.00421514 0.00480983 0.00501984 0.00506533 0.0050773 0.00508407 0.00509007 0.00509596 0.00510183 0.0051077 0.00511357 0.00511944 0.00512531 0.00513118 0.00513705 0.00514292 0.00514879 0.00515466 0.00516052 0.00516639 0.00517226 0.00517813 0.005184 0.00518987 0.00519574 0.00520161 0.00520748 0.00521335 0.00521922 0.00522509 0.00523096 0.00523683 0.0052427 0.00524857 0.00525443 0.0052603 0.00526617 0.00527204 0.00527791 0.00528378 0.00528965 0.00529552 0.00530139 0.00530726 0.00531313 0.005319 0.00532487 0.00533074 0.00533661 0.00534248 0.00534834 0.00535421 0.00536008 0.00536595 0.00537182 0.00537769 0.00538356 0.00538943 0.0053953 0.00540117 0.00540704 0.00541291 0.00541878 0.00542465 0.00543052 0.00543638 0.00544225 0.00544812 0.00545399 0.00545986 0.00546573 0.0054716 0.00547747 0.00548334 0.00548921 0.00549508 0.00550095 0.00550682 0.00551269 0.00551856 0.00552443 0.00553029 0.00553616 0.00554203 0.0055479 0.00555377 0.00555964 0.00556551 0.00557138 0.00557725 0.00558312 0.00558899 0.00559486 0.00560073 0.0056066 0.00561247 0.00561834 0.0056242 0.00563007 0.00563594 0.00564181 0.00564768 0.00565355 0.00565942 0.00566529 0.00567116 0.00567703 0.0056829 0.00568877 0.00569464 0.00570051 0.00570638 0.00571224 0.00571811 0.00572398 0.00572985 0.00573572 0.00574159 0.00574746 0.00575333 0.0057592 0.00576507 0.00577094 0.00577681 0.00578268 +-0.00124379 -0.00117399 -0.00104505 -0.000695465 3.05922E-05 0.00103872 0.00216314 0.00327158 0.00421861 0.00481523 0.00502648 0.0050723 0.00508433 0.00509111 0.00509712 0.00510302 0.0051089 0.00511478 0.00512066 0.00512653 0.00513241 0.00513829 0.00514417 0.00515004 0.00515592 0.0051618 0.00516768 0.00517356 0.00517943 0.00518531 0.00519119 0.00519707 0.00520295 0.00520882 0.0052147 0.00522058 0.00522646 0.00523233 0.00523821 0.00524409 0.00524997 0.00525585 0.00526172 0.0052676 0.00527348 0.00527936 0.00528523 0.00529111 0.00529699 0.00530287 0.00530875 0.00531462 0.0053205 0.00532638 0.00533226 0.00533813 0.00534401 0.00534989 0.00535577 0.00536165 0.00536752 0.0053734 0.00537928 0.00538516 0.00539103 0.00539691 0.00540279 0.00540867 0.00541455 0.00542042 0.0054263 0.00543218 0.00543806 0.00544393 0.00544981 0.00545569 0.00546157 0.00546745 0.00547332 0.0054792 0.00548508 0.00549096 0.00549684 0.00550271 0.00550859 0.00551447 0.00552035 0.00552622 0.0055321 0.00553798 0.00554386 0.00554974 0.00555561 0.00556149 0.00556737 0.00557325 0.00557912 0.005585 0.00559088 0.00559676 0.00560264 0.00560851 0.00561439 0.00562027 0.00562615 0.00563202 0.0056379 0.00564378 0.00564966 0.00565554 0.00566141 0.00566729 0.00567317 0.00567905 0.00568492 0.0056908 0.00569668 0.00570256 0.00570844 0.00571431 0.00572019 0.00572607 0.00573195 0.00573783 0.0057437 0.00574958 0.00575546 0.00576134 0.00576721 0.00577309 0.00577897 0.00578485 0.00579073 +-0.00124578 -0.00117584 -0.00104658 -0.00069625 3.06657E-05 0.00103945 0.00216448 0.00327372 0.00422206 0.00482061 0.00503313 0.00507926 0.00509135 0.00509815 0.00510417 0.00511008 0.00511596 0.00512185 0.00512774 0.00513362 0.00513951 0.0051454 0.00515128 0.00515717 0.00516305 0.00516894 0.00517483 0.00518071 0.0051866 0.00519249 0.00519837 0.00520426 0.00521014 0.00521603 0.00522192 0.0052278 0.00523369 0.00523958 0.00524546 0.00525135 0.00525723 0.00526312 0.00526901 0.00527489 0.00528078 0.00528667 0.00529255 0.00529844 0.00530432 0.00531021 0.0053161 0.00532198 0.00532787 0.00533376 0.00533964 0.00534553 0.00535141 0.0053573 0.00536319 0.00536907 0.00537496 0.00538085 0.00538673 0.00539262 0.0053985 0.00540439 0.00541028 0.00541616 0.00542205 0.00542794 0.00543382 0.00543971 0.00544559 0.00545148 0.00545737 0.00546325 0.00546914 0.00547503 0.00548091 0.0054868 0.00549268 0.00549857 0.00550446 0.00551034 0.00551623 0.00552212 0.005528 0.00553389 0.00553977 0.00554566 0.00555155 0.00555743 0.00556332 0.0055692 0.00557509 0.00558098 0.00558686 0.00559275 0.00559864 0.00560452 0.00561041 0.00561629 0.00562218 0.00562807 0.00563395 0.00563984 0.00564573 0.00565161 0.0056575 0.00566338 0.00566927 0.00567516 0.00568104 0.00568693 0.00569282 0.0056987 0.00570459 0.00571047 0.00571636 0.00572225 0.00572813 0.00573402 0.00573991 0.00574579 0.00575168 0.00575756 0.00576345 0.00576934 0.00577522 0.00578111 0.005787 0.00579288 0.00579877 +-0.00124778 -0.0011777 -0.00104811 -0.000697034 3.07392E-05 0.00104018 0.00216581 0.00327584 0.00422551 0.00482598 0.00503976 0.00508622 0.00509837 0.00510518 0.00511121 0.00511713 0.00512302 0.00512892 0.00513481 0.00514071 0.0051466 0.0051525 0.00515839 0.00516429 0.00517018 0.00517608 0.00518197 0.00518787 0.00519376 0.00519966 0.00520555 0.00521144 0.00521734 0.00522323 0.00522913 0.00523502 0.00524092 0.00524681 0.00525271 0.0052586 0.0052645 0.00527039 0.00527629 0.00528218 0.00528808 0.00529397 0.00529986 0.00530576 0.00531165 0.00531755 0.00532344 0.00532934 0.00533523 0.00534113 0.00534702 0.00535292 0.00535881 0.00536471 0.0053706 0.0053765 0.00538239 0.00538828 0.00539418 0.00540007 0.00540597 0.00541186 0.00541776 0.00542365 0.00542955 0.00543544 0.00544134 0.00544723 0.00545313 0.00545902 0.00546492 0.00547081 0.0054767 0.0054826 0.00548849 0.00549439 0.00550028 0.00550618 0.00551207 0.00551797 0.00552386 0.00552976 0.00553565 0.00554155 0.00554744 0.00555334 0.00555923 0.00556512 0.00557102 0.00557691 0.00558281 0.0055887 0.0055946 0.00560049 0.00560639 0.00561228 0.00561818 0.00562407 0.00562997 0.00563586 0.00564176 0.00564765 0.00565354 0.00565944 0.00566533 0.00567123 0.00567712 0.00568302 0.00568891 0.00569481 0.0057007 0.0057066 0.00571249 0.00571839 0.00572428 0.00573018 0.00573607 0.00574196 0.00574786 0.00575375 0.00575965 0.00576554 0.00577144 0.00577733 0.00578323 0.00578912 0.00579502 0.00580091 0.00580681 +-0.00124977 -0.00117955 -0.00104964 -0.000697817 3.08128E-05 0.00104091 0.00216714 0.00327796 0.00422896 0.00483134 0.00504639 0.00509317 0.00510538 0.00511221 0.00511825 0.00512417 0.00513008 0.00513598 0.00514189 0.00514779 0.00515369 0.0051596 0.0051655 0.0051714 0.0051773 0.00518321 0.00518911 0.00519501 0.00520092 0.00520682 0.00521272 0.00521863 0.00522453 0.00523043 0.00523634 0.00524224 0.00524814 0.00525404 0.00525995 0.00526585 0.00527175 0.00527766 0.00528356 0.00528946 0.00529537 0.00530127 0.00530717 0.00531308 0.00531898 0.00532488 0.00533078 0.00533669 0.00534259 0.00534849 0.0053544 0.0053603 0.0053662 0.00537211 0.00537801 0.00538391 0.00538982 0.00539572 0.00540162 0.00540753 0.00541343 0.00541933 0.00542523 0.00543114 0.00543704 0.00544294 0.00544885 0.00545475 0.00546065 0.00546656 0.00547246 0.00547836 0.00548427 0.00549017 0.00549607 0.00550197 0.00550788 0.00551378 0.00551968 0.00552559 0.00553149 0.00553739 0.0055433 0.0055492 0.0055551 0.00556101 0.00556691 0.00557281 0.00557871 0.00558462 0.00559052 0.00559642 0.00560233 0.00560823 0.00561413 0.00562004 0.00562594 0.00563184 0.00563775 0.00564365 0.00564955 0.00565546 0.00566136 0.00566726 0.00567316 0.00567907 0.00568497 0.00569087 0.00569678 0.00570268 0.00570858 0.00571449 0.00572039 0.00572629 0.0057322 0.0057381 0.005744 0.0057499 0.00575581 0.00576171 0.00576761 0.00577352 0.00577942 0.00578532 0.00579123 0.00579713 0.00580303 0.00580894 0.00581484 +-0.00125176 -0.0011814 -0.00105117 -0.000698599 3.08864E-05 0.00104164 0.00216847 0.00328008 0.00423239 0.00483669 0.00505301 0.00510012 0.00511239 0.00511924 0.00512528 0.00513122 0.00513713 0.00514304 0.00514895 0.00515486 0.00516078 0.00516669 0.0051726 0.00517851 0.00518442 0.00519033 0.00519625 0.00520216 0.00520807 0.00521398 0.00521989 0.0052258 0.00523171 0.00523763 0.00524354 0.00524945 0.00525536 0.00526127 0.00526718 0.0052731 0.00527901 0.00528492 0.00529083 0.00529674 0.00530265 0.00530856 0.00531448 0.00532039 0.0053263 0.00533221 0.00533812 0.00534403 0.00534994 0.00535586 0.00536177 0.00536768 0.00537359 0.0053795 0.00538541 0.00539133 0.00539724 0.00540315 0.00540906 0.00541497 0.00542088 0.00542679 0.00543271 0.00543862 0.00544453 0.00545044 0.00545635 0.00546226 0.00546818 0.00547409 0.00548 0.00548591 0.00549182 0.00549773 0.00550364 0.00550956 0.00551547 0.00552138 0.00552729 0.0055332 0.00553911 0.00554502 0.00555094 0.00555685 0.00556276 0.00556867 0.00557458 0.00558049 0.00558641 0.00559232 0.00559823 0.00560414 0.00561005 0.00561596 0.00562187 0.00562779 0.0056337 0.00563961 0.00564552 0.00565143 0.00565734 0.00566326 0.00566917 0.00567508 0.00568099 0.0056869 0.00569281 0.00569872 0.00570464 0.00571055 0.00571646 0.00572237 0.00572828 0.00573419 0.0057401 0.00574602 0.00575193 0.00575784 0.00576375 0.00576966 0.00577557 0.00578149 0.0057874 0.00579331 0.00579922 0.00580513 0.00581104 0.00581695 0.00582287 +-0.00125375 -0.00118325 -0.0010527 -0.000699379 3.096E-05 0.00104237 0.00216979 0.00328219 0.00423581 0.00484202 0.00505962 0.00510706 0.00511939 0.00512626 0.00513231 0.00513825 0.00514418 0.0051501 0.00515602 0.00516194 0.00516786 0.00517378 0.0051797 0.00518562 0.00519154 0.00519746 0.00520338 0.0052093 0.00521522 0.00522114 0.00522706 0.00523298 0.0052389 0.00524482 0.00525074 0.00525666 0.00526258 0.0052685 0.00527441 0.00528033 0.00528625 0.00529217 0.00529809 0.00530401 0.00530993 0.00531585 0.00532177 0.00532769 0.00533361 0.00533953 0.00534545 0.00535137 0.00535729 0.00536321 0.00536913 0.00537505 0.00538097 0.00538689 0.00539281 0.00539873 0.00540465 0.00541057 0.00541649 0.00542241 0.00542833 0.00543425 0.00544017 0.00544609 0.00545201 0.00545793 0.00546385 0.00546977 0.00547569 0.00548161 0.00548753 0.00549345 0.00549937 0.00550529 0.00551121 0.00551713 0.00552305 0.00552897 0.00553489 0.00554081 0.00554673 0.00555265 0.00555857 0.00556449 0.00557041 0.00557633 0.00558225 0.00558817 0.00559409 0.00560001 0.00560593 0.00561185 0.00561777 0.00562369 0.00562961 0.00563553 0.00564145 0.00564737 0.00565329 0.00565921 0.00566513 0.00567105 0.00567697 0.00568289 0.00568881 0.00569473 0.00570065 0.00570657 0.00571249 0.00571841 0.00572433 0.00573025 0.00573617 0.00574209 0.00574801 0.00575393 0.00575985 0.00576577 0.00577169 0.00577761 0.00578353 0.00578945 0.00579537 0.00580129 0.00580721 0.00581313 0.00581905 0.00582497 0.00583089 +-0.00125575 -0.0011851 -0.00105422 -0.000700159 3.10337E-05 0.00104309 0.00217112 0.0032843 0.00423922 0.00484735 0.00506622 0.005114 0.00512639 0.00513327 0.00513934 0.00514529 0.00515122 0.00515715 0.00516307 0.005169 0.00517493 0.00518086 0.00518679 0.00519272 0.00519864 0.00520457 0.0052105 0.00521643 0.00522236 0.00522829 0.00523421 0.00524014 0.00524607 0.005252 0.00525793 0.00526386 0.00526978 0.00527571 0.00528164 0.00528757 0.0052935 0.00529943 0.00530535 0.00531128 0.00531721 0.00532314 0.00532907 0.005335 0.00534092 0.00534685 0.00535278 0.00535871 0.00536464 0.00537057 0.00537649 0.00538242 0.00538835 0.00539428 0.00540021 0.00540614 0.00541207 0.00541799 0.00542392 0.00542985 0.00543578 0.00544171 0.00544764 0.00545356 0.00545949 0.00546542 0.00547135 0.00547728 0.00548321 0.00548913 0.00549506 0.00550099 0.00550692 0.00551285 0.00551878 0.0055247 0.00553063 0.00553656 0.00554249 0.00554842 0.00555435 0.00556027 0.0055662 0.00557213 0.00557806 0.00558399 0.00558992 0.00559584 0.00560177 0.0056077 0.00561363 0.00561956 0.00562549 0.00563141 0.00563734 0.00564327 0.0056492 0.00565513 0.00566106 0.00566698 0.00567291 0.00567884 0.00568477 0.0056907 0.00569663 0.00570255 0.00570848 0.00571441 0.00572034 0.00572627 0.0057322 0.00573812 0.00574405 0.00574998 0.00575591 0.00576184 0.00576777 0.00577369 0.00577962 0.00578555 0.00579148 0.00579741 0.00580334 0.00580926 0.00581519 0.00582112 0.00582705 0.00583298 0.00583891 +-0.00125774 -0.00118695 -0.00105574 -0.000700937 3.11073E-05 0.00104381 0.00217244 0.0032864 0.00424263 0.00485266 0.00507282 0.00512093 0.00513339 0.00514028 0.00514636 0.00515231 0.00515825 0.00516419 0.00517013 0.00517607 0.005182 0.00518794 0.00519388 0.00519981 0.00520575 0.00521169 0.00521762 0.00522356 0.0052295 0.00523543 0.00524137 0.00524731 0.00525324 0.00525918 0.00526512 0.00527105 0.00527699 0.00528293 0.00528886 0.0052948 0.00530074 0.00530667 0.00531261 0.00531855 0.00532448 0.00533042 0.00533636 0.00534229 0.00534823 0.00535417 0.0053601 0.00536604 0.00537198 0.00537791 0.00538385 0.00538979 0.00539572 0.00540166 0.0054076 0.00541354 0.00541947 0.00542541 0.00543135 0.00543728 0.00544322 0.00544916 0.00545509 0.00546103 0.00546697 0.0054729 0.00547884 0.00548478 0.00549071 0.00549665 0.00550259 0.00550852 0.00551446 0.0055204 0.00552633 0.00553227 0.00553821 0.00554414 0.00555008 0.00555602 0.00556195 0.00556789 0.00557383 0.00557976 0.0055857 0.00559164 0.00559757 0.00560351 0.00560945 0.00561538 0.00562132 0.00562726 0.00563319 0.00563913 0.00564507 0.005651 0.00565694 0.00566288 0.00566882 0.00567475 0.00568069 0.00568663 0.00569256 0.0056985 0.00570444 0.00571037 0.00571631 0.00572225 0.00572818 0.00573412 0.00574006 0.00574599 0.00575193 0.00575787 0.0057638 0.00576974 0.00577568 0.00578161 0.00578755 0.00579349 0.00579942 0.00580536 0.0058113 0.00581723 0.00582317 0.00582911 0.00583504 0.00584098 0.00584692 +-0.00125973 -0.0011888 -0.00105727 -0.000701713 3.11811E-05 0.00104454 0.00217375 0.0032885 0.00424602 0.00485796 0.00507941 0.00512786 0.00514038 0.00514729 0.00515337 0.00515934 0.00516529 0.00517123 0.00517718 0.00518312 0.00518907 0.00519501 0.00520096 0.0052069 0.00521285 0.00521879 0.00522474 0.00523068 0.00523663 0.00524257 0.00524852 0.00525446 0.00526041 0.00526635 0.0052723 0.00527825 0.00528419 0.00529014 0.00529608 0.00530203 0.00530797 0.00531392 0.00531986 0.00532581 0.00533175 0.0053377 0.00534364 0.00534959 0.00535553 0.00536148 0.00536742 0.00537337 0.00537931 0.00538526 0.0053912 0.00539715 0.00540309 0.00540904 0.00541498 0.00542093 0.00542687 0.00543282 0.00543876 0.00544471 0.00545065 0.0054566 0.00546254 0.00546849 0.00547443 0.00548038 0.00548633 0.00549227 0.00549822 0.00550416 0.00551011 0.00551605 0.005522 0.00552794 0.00553389 0.00553983 0.00554578 0.00555172 0.00555767 0.00556361 0.00556956 0.0055755 0.00558145 0.00558739 0.00559334 0.00559928 0.00560523 0.00561117 0.00561712 0.00562306 0.00562901 0.00563495 0.0056409 0.00564684 0.00565279 0.00565873 0.00566468 0.00567062 0.00567657 0.00568252 0.00568846 0.00569441 0.00570035 0.0057063 0.00571224 0.00571819 0.00572413 0.00573008 0.00573602 0.00574197 0.00574791 0.00575386 0.0057598 0.00576575 0.00577169 0.00577764 0.00578358 0.00578953 0.00579547 0.00580142 0.00580736 0.00581331 0.00581925 0.0058252 0.00583114 0.00583709 0.00584303 0.00584898 0.00585492 +-0.00126171 -0.00119065 -0.00105879 -0.000702489 3.12548E-05 0.00104526 0.00217507 0.00329059 0.00424941 0.00486326 0.005086 0.00513478 0.00514736 0.00515429 0.00516038 0.00516636 0.00517231 0.00517827 0.00518422 0.00519018 0.00519613 0.00520208 0.00520804 0.00521399 0.00521994 0.0052259 0.00523185 0.0052378 0.00524376 0.00524971 0.00525566 0.00526162 0.00526757 0.00527353 0.00527948 0.00528543 0.00529139 0.00529734 0.00530329 0.00530925 0.0053152 0.00532115 0.00532711 0.00533306 0.00533901 0.00534497 0.00535092 0.00535688 0.00536283 0.00536878 0.00537474 0.00538069 0.00538664 0.0053926 0.00539855 0.0054045 0.00541046 0.00541641 0.00542236 0.00542832 0.00543427 0.00544022 0.00544618 0.00545213 0.00545809 0.00546404 0.00546999 0.00547595 0.0054819 0.00548785 0.00549381 0.00549976 0.00550571 0.00551167 0.00551762 0.00552357 0.00552953 0.00553548 0.00554143 0.00554739 0.00555334 0.0055593 0.00556525 0.0055712 0.00557716 0.00558311 0.00558906 0.00559502 0.00560097 0.00560692 0.00561288 0.00561883 0.00562478 0.00563074 0.00563669 0.00564265 0.0056486 0.00565455 0.00566051 0.00566646 0.00567241 0.00567837 0.00568432 0.00569027 0.00569623 0.00570218 0.00570813 0.00571409 0.00572004 0.00572599 0.00573195 0.0057379 0.00574386 0.00574981 0.00575576 0.00576172 0.00576767 0.00577362 0.00577958 0.00578553 0.00579148 0.00579744 0.00580339 0.00580934 0.0058153 0.00582125 0.0058272 0.00583316 0.00583911 0.00584507 0.00585102 0.00585697 0.00586293 +-0.0012637 -0.0011925 -0.00106031 -0.000703263 3.13286E-05 0.00104598 0.00217638 0.00329268 0.00425279 0.00486854 0.00509257 0.0051417 0.00515434 0.00516128 0.00516739 0.00517337 0.00517934 0.0051853 0.00519126 0.00519722 0.00520319 0.00520915 0.00521511 0.00522107 0.00522703 0.005233 0.00523896 0.00524492 0.00525088 0.00525684 0.00526281 0.00526877 0.00527473 0.00528069 0.00528665 0.00529262 0.00529858 0.00530454 0.0053105 0.00531646 0.00532242 0.00532839 0.00533435 0.00534031 0.00534627 0.00535223 0.0053582 0.00536416 0.00537012 0.00537608 0.00538204 0.00538801 0.00539397 0.00539993 0.00540589 0.00541185 0.00541782 0.00542378 0.00542974 0.0054357 0.00544166 0.00544763 0.00545359 0.00545955 0.00546551 0.00547147 0.00547744 0.0054834 0.00548936 0.00549532 0.00550128 0.00550724 0.00551321 0.00551917 0.00552513 0.00553109 0.00553705 0.00554302 0.00554898 0.00555494 0.0055609 0.00556686 0.00557283 0.00557879 0.00558475 0.00559071 0.00559667 0.00560264 0.0056086 0.00561456 0.00562052 0.00562648 0.00563245 0.00563841 0.00564437 0.00565033 0.00565629 0.00566226 0.00566822 0.00567418 0.00568014 0.0056861 0.00569206 0.00569803 0.00570399 0.00570995 0.00571591 0.00572187 0.00572784 0.0057338 0.00573976 0.00574572 0.00575168 0.00575765 0.00576361 0.00576957 0.00577553 0.00578149 0.00578746 0.00579342 0.00579938 0.00580534 0.0058113 0.00581727 0.00582323 0.00582919 0.00583515 0.00584111 0.00584708 0.00585304 0.005859 0.00586496 0.00587092 +-0.00126569 -0.00119434 -0.00106183 -0.000704036 3.14024E-05 0.0010467 0.00217769 0.00329476 0.00425616 0.00487381 0.00509915 0.00514861 0.00516132 0.00516828 0.00517439 0.00518038 0.00518636 0.00519233 0.0051983 0.00520427 0.00521024 0.00521621 0.00522218 0.00522815 0.00523412 0.00524009 0.00524606 0.00525203 0.005258 0.00526397 0.00526994 0.00527591 0.00528188 0.00528785 0.00529382 0.00529979 0.00530576 0.00531173 0.0053177 0.00532367 0.00532965 0.00533562 0.00534159 0.00534756 0.00535353 0.0053595 0.00536547 0.00537144 0.00537741 0.00538338 0.00538935 0.00539532 0.00540129 0.00540726 0.00541323 0.0054192 0.00542517 0.00543114 0.00543711 0.00544308 0.00544905 0.00545502 0.00546099 0.00546696 0.00547293 0.0054789 0.00548487 0.00549084 0.00549681 0.00550278 0.00550875 0.00551472 0.0055207 0.00552667 0.00553264 0.00553861 0.00554458 0.00555055 0.00555652 0.00556249 0.00556846 0.00557443 0.0055804 0.00558637 0.00559234 0.00559831 0.00560428 0.00561025 0.00561622 0.00562219 0.00562816 0.00563413 0.0056401 0.00564607 0.00565204 0.00565801 0.00566398 0.00566995 0.00567592 0.00568189 0.00568786 0.00569383 0.0056998 0.00570578 0.00571175 0.00571772 0.00572369 0.00572966 0.00573563 0.0057416 0.00574757 0.00575354 0.00575951 0.00576548 0.00577145 0.00577742 0.00578339 0.00578936 0.00579533 0.0058013 0.00580727 0.00581324 0.00581921 0.00582518 0.00583115 0.00583712 0.00584309 0.00584906 0.00585503 0.005861 0.00586697 0.00587294 0.00587891 +-0.00126768 -0.00119619 -0.00106335 -0.000704808 3.14763E-05 0.00104741 0.00217899 0.00329684 0.00425952 0.00487907 0.00510571 0.00515552 0.00516829 0.00517526 0.00518139 0.00518739 0.00519337 0.00519935 0.00520533 0.00521131 0.00521729 0.00522327 0.00522924 0.00523522 0.0052412 0.00524718 0.00525316 0.00525914 0.00526512 0.00527109 0.00527707 0.00528305 0.00528903 0.00529501 0.00530099 0.00530697 0.00531295 0.00531892 0.0053249 0.00533088 0.00533686 0.00534284 0.00534882 0.0053548 0.00536078 0.00536675 0.00537273 0.00537871 0.00538469 0.00539067 0.00539665 0.00540263 0.0054086 0.00541458 0.00542056 0.00542654 0.00543252 0.0054385 0.00544448 0.00545046 0.00545643 0.00546241 0.00546839 0.00547437 0.00548035 0.00548633 0.00549231 0.00549829 0.00550426 0.00551024 0.00551622 0.0055222 0.00552818 0.00553416 0.00554014 0.00554611 0.00555209 0.00555807 0.00556405 0.00557003 0.00557601 0.00558199 0.00558797 0.00559394 0.00559992 0.0056059 0.00561188 0.00561786 0.00562384 0.00562982 0.0056358 0.00564177 0.00564775 0.00565373 0.00565971 0.00566569 0.00567167 0.00567765 0.00568362 0.0056896 0.00569558 0.00570156 0.00570754 0.00571352 0.0057195 0.00572548 0.00573145 0.00573743 0.00574341 0.00574939 0.00575537 0.00576135 0.00576733 0.00577331 0.00577928 0.00578526 0.00579124 0.00579722 0.0058032 0.00580918 0.00581516 0.00582114 0.00582711 0.00583309 0.00583907 0.00584505 0.00585103 0.00585701 0.00586299 0.00586896 0.00587494 0.00588092 0.0058869 +-0.00126966 -0.00119803 -0.00106487 -0.000705579 3.15502E-05 0.00104813 0.0021803 0.00329891 0.00426287 0.00488431 0.00511226 0.00516242 0.00517525 0.00518225 0.00518838 0.00519439 0.00520038 0.00520637 0.00521236 0.00521834 0.00522433 0.00523032 0.0052363 0.00524229 0.00524828 0.00525427 0.00526025 0.00526624 0.00527223 0.00527821 0.0052842 0.00529019 0.00529617 0.00530216 0.00530815 0.00531414 0.00532012 0.00532611 0.0053321 0.00533808 0.00534407 0.00535006 0.00535605 0.00536203 0.00536802 0.00537401 0.00537999 0.00538598 0.00539197 0.00539795 0.00540394 0.00540993 0.00541592 0.0054219 0.00542789 0.00543388 0.00543986 0.00544585 0.00545184 0.00545783 0.00546381 0.0054698 0.00547579 0.00548177 0.00548776 0.00549375 0.00549974 0.00550572 0.00551171 0.0055177 0.00552368 0.00552967 0.00553566 0.00554164 0.00554763 0.00555362 0.00555961 0.00556559 0.00557158 0.00557757 0.00558355 0.00558954 0.00559553 0.00560152 0.0056075 0.00561349 0.00561948 0.00562546 0.00563145 0.00563744 0.00564342 0.00564941 0.0056554 0.00566139 0.00566737 0.00567336 0.00567935 0.00568533 0.00569132 0.00569731 0.0057033 0.00570928 0.00571527 0.00572126 0.00572724 0.00573323 0.00573922 0.00574521 0.00575119 0.00575718 0.00576317 0.00576915 0.00577514 0.00578113 0.00578711 0.0057931 0.00579909 0.00580508 0.00581106 0.00581705 0.00582304 0.00582902 0.00583501 0.005841 0.00584699 0.00585297 0.00585896 0.00586495 0.00587093 0.00587692 0.00588291 0.0058889 0.00589488 +-0.00127165 -0.00119988 -0.00106638 -0.000706349 3.16241E-05 0.00104884 0.0021816 0.00330098 0.00426621 0.00488955 0.00511881 0.00516932 0.00518222 0.00518923 0.00519537 0.00520139 0.00520739 0.00521338 0.00521938 0.00522537 0.00523137 0.00523736 0.00524336 0.00524935 0.00525535 0.00526135 0.00526734 0.00527334 0.00527933 0.00528533 0.00529132 0.00529732 0.00530331 0.00530931 0.0053153 0.0053213 0.0053273 0.00533329 0.00533929 0.00534528 0.00535128 0.00535727 0.00536327 0.00536926 0.00537526 0.00538125 0.00538725 0.00539325 0.00539924 0.00540524 0.00541123 0.00541723 0.00542322 0.00542922 0.00543521 0.00544121 0.0054472 0.0054532 0.0054592 0.00546519 0.00547119 0.00547718 0.00548318 0.00548917 0.00549517 0.00550116 0.00550716 0.00551315 0.00551915 0.00552515 0.00553114 0.00553714 0.00554313 0.00554913 0.00555512 0.00556112 0.00556711 0.00557311 0.0055791 0.0055851 0.0055911 0.00559709 0.00560309 0.00560908 0.00561508 0.00562107 0.00562707 0.00563306 0.00563906 0.00564505 0.00565105 0.00565705 0.00566304 0.00566904 0.00567503 0.00568103 0.00568702 0.00569302 0.00569901 0.00570501 0.005711 0.005717 0.005723 0.00572899 0.00573499 0.00574098 0.00574698 0.00575297 0.00575897 0.00576496 0.00577096 0.00577695 0.00578295 0.00578895 0.00579494 0.00580094 0.00580693 0.00581293 0.00581892 0.00582492 0.00583091 0.00583691 0.0058429 0.0058489 0.00585489 0.00586089 0.00586689 0.00587288 0.00587888 0.00588487 0.00589087 0.00589686 0.00590286 +-0.00127364 -0.00120172 -0.0010679 -0.000707117 3.16981E-05 0.00104956 0.0021829 0.00330304 0.00426954 0.00489477 0.00512536 0.00517621 0.00518917 0.0051962 0.00520235 0.00520838 0.00521439 0.00522039 0.0052264 0.0052324 0.0052384 0.00524441 0.00525041 0.00525641 0.00526242 0.00526842 0.00527443 0.00528043 0.00528643 0.00529244 0.00529844 0.00530444 0.00531045 0.00531645 0.00532246 0.00532846 0.00533446 0.00534047 0.00534647 0.00535248 0.00535848 0.00536448 0.00537049 0.00537649 0.00538249 0.0053885 0.0053945 0.00540051 0.00540651 0.00541251 0.00541852 0.00542452 0.00543052 0.00543653 0.00544253 0.00544854 0.00545454 0.00546054 0.00546655 0.00547255 0.00547856 0.00548456 0.00549056 0.00549657 0.00550257 0.00550857 0.00551458 0.00552058 0.00552659 0.00553259 0.00553859 0.0055446 0.0055506 0.0055566 0.00556261 0.00556861 0.00557462 0.00558062 0.00558662 0.00559263 0.00559863 0.00560464 0.00561064 0.00561664 0.00562265 0.00562865 0.00563465 0.00564066 0.00564666 0.00565267 0.00565867 0.00566467 0.00567068 0.00567668 0.00568268 0.00568869 0.00569469 0.0057007 0.0057067 0.0057127 0.00571871 0.00572471 0.00573072 0.00573672 0.00574272 0.00574873 0.00575473 0.00576073 0.00576674 0.00577274 0.00577875 0.00578475 0.00579075 0.00579676 0.00580276 0.00580876 0.00581477 0.00582077 0.00582678 0.00583278 0.00583878 0.00584479 0.00585079 0.0058568 0.0058628 0.0058688 0.00587481 0.00588081 0.00588681 0.00589282 0.00589882 0.00590483 0.00591083 +-0.00127562 -0.00120357 -0.00106941 -0.000707884 3.17721E-05 0.00105027 0.00218419 0.0033051 0.00427287 0.00489999 0.00513189 0.0051831 0.00519613 0.00520317 0.00520933 0.00521537 0.00522138 0.0052274 0.00523341 0.00523942 0.00524543 0.00525144 0.00525746 0.00526347 0.00526948 0.00527549 0.00528151 0.00528752 0.00529353 0.00529954 0.00530555 0.00531157 0.00531758 0.00532359 0.0053296 0.00533562 0.00534163 0.00534764 0.00535365 0.00535966 0.00536568 0.00537169 0.0053777 0.00538371 0.00538972 0.00539574 0.00540175 0.00540776 0.00541377 0.00541979 0.0054258 0.00543181 0.00543782 0.00544383 0.00544985 0.00545586 0.00546187 0.00546788 0.0054739 0.00547991 0.00548592 0.00549193 0.00549794 0.00550396 0.00550997 0.00551598 0.00552199 0.005528 0.00553402 0.00554003 0.00554604 0.00555205 0.00555807 0.00556408 0.00557009 0.0055761 0.00558211 0.00558813 0.00559414 0.00560015 0.00560616 0.00561218 0.00561819 0.0056242 0.00563021 0.00563622 0.00564224 0.00564825 0.00565426 0.00566027 0.00566628 0.0056723 0.00567831 0.00568432 0.00569033 0.00569635 0.00570236 0.00570837 0.00571438 0.00572039 0.00572641 0.00573242 0.00573843 0.00574444 0.00575046 0.00575647 0.00576248 0.00576849 0.0057745 0.00578052 0.00578653 0.00579254 0.00579855 0.00580456 0.00581058 0.00581659 0.0058226 0.00582861 0.00583463 0.00584064 0.00584665 0.00585266 0.00585867 0.00586469 0.0058707 0.00587671 0.00588272 0.00588874 0.00589475 0.00590076 0.00590677 0.00591278 0.0059188 +-0.0012776 -0.00120541 -0.00107092 -0.00070865 3.18461E-05 0.00105098 0.00218549 0.00330715 0.00427618 0.00490519 0.00513842 0.00518999 0.00520308 0.00521014 0.00521631 0.00522235 0.00522837 0.0052344 0.00524042 0.00524644 0.00525246 0.00525848 0.0052645 0.00527052 0.00527654 0.00528256 0.00528858 0.0052946 0.00530062 0.00530664 0.00531266 0.00531868 0.0053247 0.00533072 0.00533675 0.00534277 0.00534879 0.00535481 0.00536083 0.00536685 0.00537287 0.00537889 0.00538491 0.00539093 0.00539695 0.00540297 0.00540899 0.00541501 0.00542103 0.00542705 0.00543307 0.00543909 0.00544511 0.00545114 0.00545716 0.00546318 0.0054692 0.00547522 0.00548124 0.00548726 0.00549328 0.0054993 0.00550532 0.00551134 0.00551736 0.00552338 0.0055294 0.00553542 0.00554144 0.00554746 0.00555348 0.0055595 0.00556553 0.00557155 0.00557757 0.00558359 0.00558961 0.00559563 0.00560165 0.00560767 0.00561369 0.00561971 0.00562573 0.00563175 0.00563777 0.00564379 0.00564981 0.00565583 0.00566185 0.00566787 0.00567389 0.00567992 0.00568594 0.00569196 0.00569798 0.005704 0.00571002 0.00571604 0.00572206 0.00572808 0.0057341 0.00574012 0.00574614 0.00575216 0.00575818 0.0057642 0.00577022 0.00577624 0.00578226 0.00578828 0.00579431 0.00580033 0.00580635 0.00581237 0.00581839 0.00582441 0.00583043 0.00583645 0.00584247 0.00584849 0.00585451 0.00586053 0.00586655 0.00587257 0.00587859 0.00588461 0.00589063 0.00589665 0.00590268 0.0059087 0.00591472 0.00592074 0.00592676 +-0.00127959 -0.00120725 -0.00107243 -0.000709415 3.19201E-05 0.00105169 0.00218678 0.0033092 0.00427949 0.00491038 0.00514494 0.00519686 0.00521002 0.0052171 0.00522328 0.00522933 0.00523536 0.00524139 0.00524742 0.00525345 0.00525948 0.00526551 0.00527154 0.00527757 0.00528359 0.00528962 0.00529565 0.00530168 0.00530771 0.00531374 0.00531977 0.0053258 0.00533182 0.00533785 0.00534388 0.00534991 0.00535594 0.00536197 0.005368 0.00537403 0.00538006 0.00538608 0.00539211 0.00539814 0.00540417 0.0054102 0.00541623 0.00542226 0.00542829 0.00543432 0.00544034 0.00544637 0.0054524 0.00545843 0.00546446 0.00547049 0.00547652 0.00548255 0.00548858 0.0054946 0.00550063 0.00550666 0.00551269 0.00551872 0.00552475 0.00553078 0.00553681 0.00554284 0.00554886 0.00555489 0.00556092 0.00556695 0.00557298 0.00557901 0.00558504 0.00559107 0.0055971 0.00560312 0.00560915 0.00561518 0.00562121 0.00562724 0.00563327 0.0056393 0.00564533 0.00565136 0.00565738 0.00566341 0.00566944 0.00567547 0.0056815 0.00568753 0.00569356 0.00569959 0.00570562 0.00571164 0.00571767 0.0057237 0.00572973 0.00573576 0.00574179 0.00574782 0.00575385 0.00575988 0.0057659 0.00577193 0.00577796 0.00578399 0.00579002 0.00579605 0.00580208 0.00580811 0.00581414 0.00582016 0.00582619 0.00583222 0.00583825 0.00584428 0.00585031 0.00585634 0.00586237 0.0058684 0.00587442 0.00588045 0.00588648 0.00589251 0.00589854 0.00590457 0.0059106 0.00591663 0.00592266 0.00592868 0.00593471 +-0.00128157 -0.00120909 -0.00107394 -0.000710179 3.19942E-05 0.0010524 0.00218806 0.00331124 0.00428279 0.00491556 0.00515145 0.00520374 0.00521696 0.00522405 0.00523024 0.0052363 0.00524235 0.00524838 0.00525442 0.00526046 0.00526649 0.00527253 0.00527857 0.00528461 0.00529064 0.00529668 0.00530272 0.00530876 0.00531479 0.00532083 0.00532687 0.0053329 0.00533894 0.00534498 0.00535102 0.00535705 0.00536309 0.00536913 0.00537516 0.0053812 0.00538724 0.00539328 0.00539931 0.00540535 0.00541139 0.00541743 0.00542346 0.0054295 0.00543554 0.00544157 0.00544761 0.00545365 0.00545969 0.00546572 0.00547176 0.0054778 0.00548383 0.00548987 0.00549591 0.00550195 0.00550798 0.00551402 0.00552006 0.0055261 0.00553213 0.00553817 0.00554421 0.00555024 0.00555628 0.00556232 0.00556836 0.00557439 0.00558043 0.00558647 0.00559251 0.00559854 0.00560458 0.00561062 0.00561665 0.00562269 0.00562873 0.00563477 0.0056408 0.00564684 0.00565288 0.00565891 0.00566495 0.00567099 0.00567703 0.00568306 0.0056891 0.00569514 0.00570118 0.00570721 0.00571325 0.00571929 0.00572532 0.00573136 0.0057374 0.00574344 0.00574947 0.00575551 0.00576155 0.00576758 0.00577362 0.00577966 0.0057857 0.00579173 0.00579777 0.00580381 0.00580985 0.00581588 0.00582192 0.00582796 0.00583399 0.00584003 0.00584607 0.00585211 0.00585814 0.00586418 0.00587022 0.00587625 0.00588229 0.00588833 0.00589437 0.0059004 0.00590644 0.00591248 0.00591852 0.00592455 0.00593059 0.00593663 0.00594266 +-0.00128355 -0.00121093 -0.00107545 -0.000710941 3.20683E-05 0.00105311 0.00218935 0.00331328 0.00428608 0.00492073 0.00515796 0.0052106 0.00522389 0.00523101 0.00523721 0.00524327 0.00524932 0.00525537 0.00526142 0.00526746 0.00527351 0.00527955 0.0052856 0.00529164 0.00529769 0.00530373 0.00530978 0.00531583 0.00532187 0.00532792 0.00533396 0.00534001 0.00534605 0.0053521 0.00535814 0.00536419 0.00537024 0.00537628 0.00538233 0.00538837 0.00539442 0.00540046 0.00540651 0.00541255 0.0054186 0.00542465 0.00543069 0.00543674 0.00544278 0.00544883 0.00545487 0.00546092 0.00546696 0.00547301 0.00547906 0.0054851 0.00549115 0.00549719 0.00550324 0.00550928 0.00551533 0.00552137 0.00552742 0.00553347 0.00553951 0.00554556 0.0055516 0.00555765 0.00556369 0.00556974 0.00557578 0.00558183 0.00558788 0.00559392 0.00559997 0.00560601 0.00561206 0.0056181 0.00562415 0.0056302 0.00563624 0.00564229 0.00564833 0.00565438 0.00566042 0.00566647 0.00567251 0.00567856 0.00568461 0.00569065 0.0056967 0.00570274 0.00570879 0.00571483 0.00572088 0.00572692 0.00573297 0.00573902 0.00574506 0.00575111 0.00575715 0.0057632 0.00576924 0.00577529 0.00578133 0.00578738 0.00579343 0.00579947 0.00580552 0.00581156 0.00581761 0.00582365 0.0058297 0.00583574 0.00584179 0.00584784 0.00585388 0.00585993 0.00586597 0.00587202 0.00587806 0.00588411 0.00589015 0.0058962 0.00590225 0.00590829 0.00591434 0.00592038 0.00592643 0.00593247 0.00593852 0.00594456 0.00595061 +-0.00128553 -0.00121277 -0.00107696 -0.000711703 3.21425E-05 0.00105381 0.00219063 0.00331532 0.00428936 0.00492589 0.00516446 0.00521747 0.00523082 0.00523795 0.00524416 0.00525024 0.0052563 0.00526235 0.00526841 0.00527446 0.00528051 0.00528657 0.00529262 0.00529868 0.00530473 0.00531078 0.00531684 0.00532289 0.00532895 0.005335 0.00534105 0.00534711 0.00535316 0.00535921 0.00536527 0.00537132 0.00537738 0.00538343 0.00538948 0.00539554 0.00540159 0.00540765 0.0054137 0.00541975 0.00542581 0.00543186 0.00543792 0.00544397 0.00545002 0.00545608 0.00546213 0.00546818 0.00547424 0.00548029 0.00548635 0.0054924 0.00549845 0.00550451 0.00551056 0.00551662 0.00552267 0.00552872 0.00553478 0.00554083 0.00554689 0.00555294 0.00555899 0.00556505 0.0055711 0.00557716 0.00558321 0.00558926 0.00559532 0.00560137 0.00560742 0.00561348 0.00561953 0.00562559 0.00563164 0.00563769 0.00564375 0.0056498 0.00565586 0.00566191 0.00566796 0.00567402 0.00568007 0.00568613 0.00569218 0.00569823 0.00570429 0.00571034 0.0057164 0.00572245 0.0057285 0.00573456 0.00574061 0.00574666 0.00575272 0.00575877 0.00576483 0.00577088 0.00577693 0.00578299 0.00578904 0.0057951 0.00580115 0.0058072 0.00581326 0.00581931 0.00582537 0.00583142 0.00583747 0.00584353 0.00584958 0.00585564 0.00586169 0.00586774 0.0058738 0.00587985 0.0058859 0.00589196 0.00589801 0.00590407 0.00591012 0.00591617 0.00592223 0.00592828 0.00593434 0.00594039 0.00594644 0.0059525 0.00595855 +-0.00128751 -0.00121461 -0.00107847 -0.000712463 3.22166E-05 0.00105452 0.00219191 0.00331734 0.00429263 0.00493104 0.00517095 0.00522433 0.00523775 0.0052449 0.00525112 0.0052572 0.00526327 0.00526933 0.00527539 0.00528145 0.00528752 0.00529358 0.00529964 0.0053057 0.00531177 0.00531783 0.00532389 0.00532995 0.00533601 0.00534208 0.00534814 0.0053542 0.00536026 0.00536633 0.00537239 0.00537845 0.00538451 0.00539057 0.00539664 0.0054027 0.00540876 0.00541482 0.00542089 0.00542695 0.00543301 0.00543907 0.00544513 0.0054512 0.00545726 0.00546332 0.00546938 0.00547545 0.00548151 0.00548757 0.00549363 0.0054997 0.00550576 0.00551182 0.00551788 0.00552394 0.00553001 0.00553607 0.00554213 0.00554819 0.00555426 0.00556032 0.00556638 0.00557244 0.0055785 0.00558457 0.00559063 0.00559669 0.00560275 0.00560882 0.00561488 0.00562094 0.005627 0.00563306 0.00563913 0.00564519 0.00565125 0.00565731 0.00566338 0.00566944 0.0056755 0.00568156 0.00568762 0.00569369 0.00569975 0.00570581 0.00571187 0.00571794 0.005724 0.00573006 0.00573612 0.00574218 0.00574825 0.00575431 0.00576037 0.00576643 0.0057725 0.00577856 0.00578462 0.00579068 0.00579674 0.00580281 0.00580887 0.00581493 0.00582099 0.00582706 0.00583312 0.00583918 0.00584524 0.00585131 0.00585737 0.00586343 0.00586949 0.00587555 0.00588162 0.00588768 0.00589374 0.0058998 0.00590587 0.00591193 0.00591799 0.00592405 0.00593011 0.00593618 0.00594224 0.0059483 0.00595436 0.00596043 0.00596649 +-0.00128949 -0.00121644 -0.00107998 -0.000713222 3.22908E-05 0.00105522 0.00219319 0.00331937 0.0042959 0.00493618 0.00517743 0.00523118 0.00524467 0.00525183 0.00525806 0.00526416 0.00527023 0.0052763 0.00528237 0.00528844 0.00529452 0.00530059 0.00530666 0.00531273 0.0053188 0.00532487 0.00533094 0.00533701 0.00534308 0.00534915 0.00535522 0.00536129 0.00536736 0.00537343 0.0053795 0.00538557 0.00539164 0.00539771 0.00540379 0.00540986 0.00541593 0.005422 0.00542807 0.00543414 0.00544021 0.00544628 0.00545235 0.00545842 0.00546449 0.00547056 0.00547663 0.0054827 0.00548877 0.00549484 0.00550091 0.00550698 0.00551306 0.00551913 0.0055252 0.00553127 0.00553734 0.00554341 0.00554948 0.00555555 0.00556162 0.00556769 0.00557376 0.00557983 0.0055859 0.00559197 0.00559804 0.00560411 0.00561018 0.00561626 0.00562233 0.0056284 0.00563447 0.00564054 0.00564661 0.00565268 0.00565875 0.00566482 0.00567089 0.00567696 0.00568303 0.0056891 0.00569517 0.00570124 0.00570731 0.00571338 0.00571945 0.00572553 0.0057316 0.00573767 0.00574374 0.00574981 0.00575588 0.00576195 0.00576802 0.00577409 0.00578016 0.00578623 0.0057923 0.00579837 0.00580444 0.00581051 0.00581658 0.00582265 0.00582873 0.0058348 0.00584087 0.00584694 0.00585301 0.00585908 0.00586515 0.00587122 0.00587729 0.00588336 0.00588943 0.0058955 0.00590157 0.00590764 0.00591371 0.00591978 0.00592585 0.00593192 0.005938 0.00594407 0.00595014 0.00595621 0.00596228 0.00596835 0.00597442 +-0.00129147 -0.00121828 -0.00108148 -0.000713979 3.23651E-05 0.00105593 0.00219447 0.00332139 0.00429915 0.0049413 0.00518391 0.00523803 0.00525159 0.00525877 0.00526501 0.00527111 0.00527719 0.00528327 0.00528935 0.00529543 0.00530151 0.00530759 0.00531367 0.00531975 0.00532582 0.0053319 0.00533798 0.00534406 0.00535014 0.00535622 0.0053623 0.00536838 0.00537446 0.00538053 0.00538661 0.00539269 0.00539877 0.00540485 0.00541093 0.00541701 0.00542309 0.00542917 0.00543524 0.00544132 0.0054474 0.00545348 0.00545956 0.00546564 0.00547172 0.0054778 0.00548388 0.00548995 0.00549603 0.00550211 0.00550819 0.00551427 0.00552035 0.00552643 0.00553251 0.00553859 0.00554466 0.00555074 0.00555682 0.0055629 0.00556898 0.00557506 0.00558114 0.00558722 0.0055933 0.00559937 0.00560545 0.00561153 0.00561761 0.00562369 0.00562977 0.00563585 0.00564193 0.00564801 0.00565408 0.00566016 0.00566624 0.00567232 0.0056784 0.00568448 0.00569056 0.00569664 0.00570272 0.00570879 0.00571487 0.00572095 0.00572703 0.00573311 0.00573919 0.00574527 0.00575135 0.00575743 0.0057635 0.00576958 0.00577566 0.00578174 0.00578782 0.0057939 0.00579998 0.00580606 0.00581214 0.00581821 0.00582429 0.00583037 0.00583645 0.00584253 0.00584861 0.00585469 0.00586077 0.00586685 0.00587292 0.005879 0.00588508 0.00589116 0.00589724 0.00590332 0.0059094 0.00591548 0.00592156 0.00592763 0.00593371 0.00593979 0.00594587 0.00595195 0.00595803 0.00596411 0.00597019 0.00597627 0.00598234 +-0.00129345 -0.00122012 -0.00108298 -0.000714736 3.24393E-05 0.00105663 0.00219574 0.0033234 0.0043024 0.00494642 0.00519038 0.00524487 0.0052585 0.0052657 0.00527195 0.00527806 0.00528415 0.00529024 0.00529632 0.00530241 0.0053085 0.00531459 0.00532067 0.00532676 0.00533285 0.00533893 0.00534502 0.00535111 0.0053572 0.00536328 0.00536937 0.00537546 0.00538155 0.00538763 0.00539372 0.00539981 0.00540589 0.00541198 0.00541807 0.00542416 0.00543024 0.00543633 0.00544242 0.0054485 0.00545459 0.00546068 0.00546677 0.00547285 0.00547894 0.00548503 0.00549111 0.0054972 0.00550329 0.00550938 0.00551546 0.00552155 0.00552764 0.00553373 0.00553981 0.0055459 0.00555199 0.00555807 0.00556416 0.00557025 0.00557634 0.00558242 0.00558851 0.0055946 0.00560068 0.00560677 0.00561286 0.00561895 0.00562503 0.00563112 0.00563721 0.0056433 0.00564938 0.00565547 0.00566156 0.00566764 0.00567373 0.00567982 0.00568591 0.00569199 0.00569808 0.00570417 0.00571025 0.00571634 0.00572243 0.00572852 0.0057346 0.00574069 0.00574678 0.00575286 0.00575895 0.00576504 0.00577113 0.00577721 0.0057833 0.00578939 0.00579548 0.00580156 0.00580765 0.00581374 0.00581982 0.00582591 0.005832 0.00583809 0.00584417 0.00585026 0.00585635 0.00586243 0.00586852 0.00587461 0.0058807 0.00588678 0.00589287 0.00589896 0.00590505 0.00591113 0.00591722 0.00592331 0.00592939 0.00593548 0.00594157 0.00594766 0.00595374 0.00595983 0.00596592 0.005972 0.00597809 0.00598418 0.00599027 +-0.00129543 -0.00122195 -0.00108449 -0.000715491 3.25136E-05 0.00105733 0.00219701 0.00332541 0.00430564 0.00495152 0.00519685 0.00525171 0.00526541 0.00527262 0.00527888 0.005285 0.0052911 0.0052972 0.00530329 0.00530939 0.00531548 0.00532158 0.00532767 0.00533377 0.00533987 0.00534596 0.00535206 0.00535815 0.00536425 0.00537034 0.00537644 0.00538253 0.00538863 0.00539473 0.00540082 0.00540692 0.00541301 0.00541911 0.0054252 0.0054313 0.00543739 0.00544349 0.00544959 0.00545568 0.00546178 0.00546787 0.00547397 0.00548006 0.00548616 0.00549225 0.00549835 0.00550444 0.00551054 0.00551664 0.00552273 0.00552883 0.00553492 0.00554102 0.00554711 0.00555321 0.0055593 0.0055654 0.0055715 0.00557759 0.00558369 0.00558978 0.00559588 0.00560197 0.00560807 0.00561416 0.00562026 0.00562636 0.00563245 0.00563855 0.00564464 0.00565074 0.00565683 0.00566293 0.00566902 0.00567512 0.00568122 0.00568731 0.00569341 0.0056995 0.0057056 0.00571169 0.00571779 0.00572388 0.00572998 0.00573607 0.00574217 0.00574827 0.00575436 0.00576046 0.00576655 0.00577265 0.00577874 0.00578484 0.00579093 0.00579703 0.00580313 0.00580922 0.00581532 0.00582141 0.00582751 0.0058336 0.0058397 0.00584579 0.00585189 0.00585799 0.00586408 0.00587018 0.00587627 0.00588237 0.00588846 0.00589456 0.00590065 0.00590675 0.00591284 0.00591894 0.00592504 0.00593113 0.00593723 0.00594332 0.00594942 0.00595551 0.00596161 0.0059677 0.0059738 0.0059799 0.00598599 0.00599209 0.00599818 +-0.00129741 -0.00122379 -0.00108599 -0.000716246 3.2588E-05 0.00105803 0.00219828 0.00332742 0.00430887 0.00495662 0.0052033 0.00525854 0.00527231 0.00527954 0.00528581 0.00529194 0.00529805 0.00530415 0.00531026 0.00531636 0.00532246 0.00532857 0.00533467 0.00534078 0.00534688 0.00535298 0.00535909 0.00536519 0.0053713 0.0053774 0.0053835 0.00538961 0.00539571 0.00540181 0.00540792 0.00541402 0.00542013 0.00542623 0.00543233 0.00543844 0.00544454 0.00545064 0.00545675 0.00546285 0.00546896 0.00547506 0.00548116 0.00548727 0.00549337 0.00549948 0.00550558 0.00551168 0.00551779 0.00552389 0.00552999 0.0055361 0.0055422 0.00554831 0.00555441 0.00556051 0.00556662 0.00557272 0.00557883 0.00558493 0.00559103 0.00559714 0.00560324 0.00560934 0.00561545 0.00562155 0.00562766 0.00563376 0.00563986 0.00564597 0.00565207 0.00565818 0.00566428 0.00567038 0.00567649 0.00568259 0.00568869 0.0056948 0.0057009 0.00570701 0.00571311 0.00571921 0.00572532 0.00573142 0.00573752 0.00574363 0.00574973 0.00575584 0.00576194 0.00576804 0.00577415 0.00578025 0.00578636 0.00579246 0.00579856 0.00580467 0.00581077 0.00581687 0.00582298 0.00582908 0.00583519 0.00584129 0.00584739 0.0058535 0.0058596 0.00586571 0.00587181 0.00587791 0.00588402 0.00589012 0.00589622 0.00590233 0.00590843 0.00591454 0.00592064 0.00592674 0.00593285 0.00593895 0.00594506 0.00595116 0.00595726 0.00596337 0.00596947 0.00597557 0.00598168 0.00598778 0.00599389 0.00599999 0.00600609 +-0.00129938 -0.00122562 -0.00108749 -0.000716999 3.26623E-05 0.00105872 0.00219954 0.00332942 0.00431209 0.0049617 0.00520975 0.00526537 0.00527921 0.00528646 0.00529274 0.00529888 0.00530499 0.0053111 0.00531722 0.00532333 0.00532944 0.00533555 0.00534167 0.00534778 0.00535389 0.00536 0.00536611 0.00537223 0.00537834 0.00538445 0.00539056 0.00539667 0.00540279 0.0054089 0.00541501 0.00542112 0.00542723 0.00543335 0.00543946 0.00544557 0.00545168 0.0054578 0.00546391 0.00547002 0.00547613 0.00548224 0.00548836 0.00549447 0.00550058 0.00550669 0.0055128 0.00551892 0.00552503 0.00553114 0.00553725 0.00554337 0.00554948 0.00555559 0.0055617 0.00556781 0.00557393 0.00558004 0.00558615 0.00559226 0.00559837 0.00560449 0.0056106 0.00561671 0.00562282 0.00562894 0.00563505 0.00564116 0.00564727 0.00565338 0.0056595 0.00566561 0.00567172 0.00567783 0.00568394 0.00569006 0.00569617 0.00570228 0.00570839 0.00571451 0.00572062 0.00572673 0.00573284 0.00573895 0.00574507 0.00575118 0.00575729 0.0057634 0.00576951 0.00577563 0.00578174 0.00578785 0.00579396 0.00580007 0.00580619 0.0058123 0.00581841 0.00582452 0.00583064 0.00583675 0.00584286 0.00584897 0.00585508 0.0058612 0.00586731 0.00587342 0.00587953 0.00588564 0.00589176 0.00589787 0.00590398 0.00591009 0.00591621 0.00592232 0.00592843 0.00593454 0.00594065 0.00594677 0.00595288 0.00595899 0.0059651 0.00597121 0.00597733 0.00598344 0.00598955 0.00599566 0.00600178 0.00600789 0.006014 +-0.00130136 -0.00122746 -0.00108899 -0.000717751 3.27367E-05 0.00105942 0.0022008 0.00333142 0.00431531 0.00496677 0.00521619 0.0052722 0.00528611 0.00529337 0.00529966 0.00530581 0.00531193 0.00531805 0.00532417 0.00533029 0.00533641 0.00534253 0.00534865 0.00535477 0.00536089 0.00536701 0.00537314 0.00537926 0.00538538 0.0053915 0.00539762 0.00540374 0.00540986 0.00541598 0.0054221 0.00542822 0.00543434 0.00544046 0.00544658 0.0054527 0.00545882 0.00546494 0.00547106 0.00547718 0.0054833 0.00548942 0.00549554 0.00550166 0.00550778 0.00551391 0.00552003 0.00552615 0.00553227 0.00553839 0.00554451 0.00555063 0.00555675 0.00556287 0.00556899 0.00557511 0.00558123 0.00558735 0.00559347 0.00559959 0.00560571 0.00561183 0.00561795 0.00562407 0.00563019 0.00563631 0.00564243 0.00564855 0.00565468 0.0056608 0.00566692 0.00567304 0.00567916 0.00568528 0.0056914 0.00569752 0.00570364 0.00570976 0.00571588 0.005722 0.00572812 0.00573424 0.00574036 0.00574648 0.0057526 0.00575872 0.00576484 0.00577096 0.00577708 0.0057832 0.00578932 0.00579545 0.00580157 0.00580769 0.00581381 0.00581993 0.00582605 0.00583217 0.00583829 0.00584441 0.00585053 0.00585665 0.00586277 0.00586889 0.00587501 0.00588113 0.00588725 0.00589337 0.00589949 0.00590561 0.00591173 0.00591785 0.00592397 0.00593009 0.00593621 0.00594234 0.00594846 0.00595458 0.0059607 0.00596682 0.00597294 0.00597906 0.00598518 0.0059913 0.00599742 0.00600354 0.00600966 0.00601578 0.0060219 +-0.00130334 -0.00122929 -0.00109049 -0.000718501 3.28112E-05 0.00106012 0.00220206 0.00333341 0.00431851 0.00497183 0.00522263 0.00527902 0.005293 0.00530028 0.00530658 0.00531273 0.00531886 0.00532499 0.00533112 0.00533725 0.00534338 0.00534951 0.00535564 0.00536177 0.0053679 0.00537402 0.00538015 0.00538628 0.00539241 0.00539854 0.00540467 0.0054108 0.00541692 0.00542305 0.00542918 0.00543531 0.00544144 0.00544757 0.0054537 0.00545983 0.00546595 0.00547208 0.00547821 0.00548434 0.00549047 0.0054966 0.00550273 0.00550886 0.00551498 0.00552111 0.00552724 0.00553337 0.0055395 0.00554563 0.00555176 0.00555789 0.00556401 0.00557014 0.00557627 0.0055824 0.00558853 0.00559466 0.00560079 0.00560692 0.00561304 0.00561917 0.0056253 0.00563143 0.00563756 0.00564369 0.00564982 0.00565595 0.00566207 0.0056682 0.00567433 0.00568046 0.00568659 0.00569272 0.00569885 0.00570497 0.0057111 0.00571723 0.00572336 0.00572949 0.00573562 0.00574175 0.00574788 0.005754 0.00576013 0.00576626 0.00577239 0.00577852 0.00578465 0.00579078 0.00579691 0.00580303 0.00580916 0.00581529 0.00582142 0.00582755 0.00583368 0.00583981 0.00584594 0.00585206 0.00585819 0.00586432 0.00587045 0.00587658 0.00588271 0.00588884 0.00589497 0.00590109 0.00590722 0.00591335 0.00591948 0.00592561 0.00593174 0.00593787 0.005944 0.00595012 0.00595625 0.00596238 0.00596851 0.00597464 0.00598077 0.0059869 0.00599303 0.00599915 0.00600528 0.00601141 0.00601754 0.00602367 0.0060298 +-0.00130531 -0.00123112 -0.00109198 -0.000719251 3.28856E-05 0.00106081 0.00220332 0.0033354 0.00432171 0.00497688 0.00522906 0.00528583 0.00529988 0.00530718 0.00531349 0.00531965 0.00532579 0.00533193 0.00533807 0.00534421 0.00535034 0.00535648 0.00536262 0.00536875 0.00537489 0.00538103 0.00538717 0.0053933 0.00539944 0.00540558 0.00541171 0.00541785 0.00542399 0.00543012 0.00543626 0.0054424 0.00544854 0.00545467 0.00546081 0.00546695 0.00547308 0.00547922 0.00548536 0.00549149 0.00549763 0.00550377 0.00550991 0.00551604 0.00552218 0.00552832 0.00553445 0.00554059 0.00554673 0.00555286 0.005559 0.00556514 0.00557128 0.00557741 0.00558355 0.00558969 0.00559582 0.00560196 0.0056081 0.00561423 0.00562037 0.00562651 0.00563265 0.00563878 0.00564492 0.00565106 0.00565719 0.00566333 0.00566947 0.00567561 0.00568174 0.00568788 0.00569402 0.00570015 0.00570629 0.00571243 0.00571856 0.0057247 0.00573084 0.00573698 0.00574311 0.00574925 0.00575539 0.00576152 0.00576766 0.0057738 0.00577993 0.00578607 0.00579221 0.00579835 0.00580448 0.00581062 0.00581676 0.00582289 0.00582903 0.00583517 0.0058413 0.00584744 0.00585358 0.00585972 0.00586585 0.00587199 0.00587813 0.00588426 0.0058904 0.00589654 0.00590267 0.00590881 0.00591495 0.00592109 0.00592722 0.00593336 0.0059395 0.00594563 0.00595177 0.00595791 0.00596404 0.00597018 0.00597632 0.00598246 0.00598859 0.00599473 0.00600087 0.006007 0.00601314 0.00601928 0.00602541 0.00603155 0.00603769 +-0.00130729 -0.00123295 -0.00109348 -0.000719999 3.29601E-05 0.0010615 0.00220458 0.00333738 0.0043249 0.00498192 0.00523548 0.00529264 0.00530676 0.00531408 0.0053204 0.00532657 0.00533272 0.00533887 0.00534501 0.00535116 0.0053573 0.00536345 0.00536959 0.00537574 0.00538188 0.00538803 0.00539417 0.00540032 0.00540646 0.00541261 0.00541876 0.0054249 0.00543105 0.00543719 0.00544334 0.00544948 0.00545563 0.00546177 0.00546792 0.00547406 0.00548021 0.00548635 0.0054925 0.00549864 0.00550479 0.00551093 0.00551708 0.00552323 0.00552937 0.00553552 0.00554166 0.00554781 0.00555395 0.0055601 0.00556624 0.00557239 0.00557853 0.00558468 0.00559082 0.00559697 0.00560311 0.00560926 0.0056154 0.00562155 0.0056277 0.00563384 0.00563999 0.00564613 0.00565228 0.00565842 0.00566457 0.00567071 0.00567686 0.005683 0.00568915 0.00569529 0.00570144 0.00570758 0.00571373 0.00571987 0.00572602 0.00573217 0.00573831 0.00574446 0.0057506 0.00575675 0.00576289 0.00576904 0.00577518 0.00578133 0.00578747 0.00579362 0.00579976 0.00580591 0.00581205 0.0058182 0.00582434 0.00583049 0.00583664 0.00584278 0.00584893 0.00585507 0.00586122 0.00586736 0.00587351 0.00587965 0.0058858 0.00589194 0.00589809 0.00590423 0.00591038 0.00591652 0.00592267 0.00592881 0.00593496 0.00594111 0.00594725 0.0059534 0.00595954 0.00596569 0.00597183 0.00597798 0.00598412 0.00599027 0.00599641 0.00600256 0.0060087 0.00601485 0.00602099 0.00602714 0.00603328 0.00603943 0.00604558 +-0.00130926 -0.00123478 -0.00109497 -0.000720746 3.30346E-05 0.0010622 0.00220583 0.00333936 0.00432808 0.00498694 0.00524189 0.00529944 0.00531364 0.00532098 0.00532731 0.00533348 0.00533964 0.0053458 0.00535195 0.0053581 0.00536426 0.00537041 0.00537656 0.00538272 0.00538887 0.00539502 0.00540118 0.00540733 0.00541349 0.00541964 0.00542579 0.00543195 0.0054381 0.00544425 0.00545041 0.00545656 0.00546271 0.00546887 0.00547502 0.00548117 0.00548733 0.00549348 0.00549964 0.00550579 0.00551194 0.0055181 0.00552425 0.0055304 0.00553656 0.00554271 0.00554886 0.00555502 0.00556117 0.00556732 0.00557348 0.00557963 0.00558579 0.00559194 0.00559809 0.00560425 0.0056104 0.00561655 0.00562271 0.00562886 0.00563501 0.00564117 0.00564732 0.00565347 0.00565963 0.00566578 0.00567194 0.00567809 0.00568424 0.0056904 0.00569655 0.0057027 0.00570886 0.00571501 0.00572116 0.00572732 0.00573347 0.00573962 0.00574578 0.00575193 0.00575809 0.00576424 0.00577039 0.00577655 0.0057827 0.00578885 0.00579501 0.00580116 0.00580731 0.00581347 0.00581962 0.00582577 0.00583193 0.00583808 0.00584424 0.00585039 0.00585654 0.0058627 0.00586885 0.005875 0.00588116 0.00588731 0.00589346 0.00589962 0.00590577 0.00591192 0.00591808 0.00592423 0.00593039 0.00593654 0.00594269 0.00594885 0.005955 0.00596115 0.00596731 0.00597346 0.00597961 0.00598577 0.00599192 0.00599808 0.00600423 0.00601038 0.00601654 0.00602269 0.00602884 0.006035 0.00604115 0.0060473 0.00605346 +-0.00131123 -0.00123661 -0.00109647 -0.000721493 3.31092E-05 0.00106289 0.00220708 0.00334133 0.00433125 0.00499196 0.0052483 0.00530624 0.00532051 0.00532787 0.00533421 0.00534039 0.00534656 0.00535272 0.00535888 0.00536504 0.00537121 0.00537737 0.00538353 0.00538969 0.00539585 0.00540202 0.00540818 0.00541434 0.0054205 0.00542666 0.00543282 0.00543899 0.00544515 0.00545131 0.00545747 0.00546363 0.0054698 0.00547596 0.00548212 0.00548828 0.00549444 0.00550061 0.00550677 0.00551293 0.00551909 0.00552525 0.00553141 0.00553758 0.00554374 0.0055499 0.00555606 0.00556222 0.00556839 0.00557455 0.00558071 0.00558687 0.00559303 0.0055992 0.00560536 0.00561152 0.00561768 0.00562384 0.00563 0.00563617 0.00564233 0.00564849 0.00565465 0.00566081 0.00566698 0.00567314 0.0056793 0.00568546 0.00569162 0.00569778 0.00570395 0.00571011 0.00571627 0.00572243 0.00572859 0.00573476 0.00574092 0.00574708 0.00575324 0.0057594 0.00576557 0.00577173 0.00577789 0.00578405 0.00579021 0.00579637 0.00580254 0.0058087 0.00581486 0.00582102 0.00582718 0.00583335 0.00583951 0.00584567 0.00585183 0.00585799 0.00586415 0.00587032 0.00587648 0.00588264 0.0058888 0.00589496 0.00590113 0.00590729 0.00591345 0.00591961 0.00592577 0.00593194 0.0059381 0.00594426 0.00595042 0.00595658 0.00596274 0.00596891 0.00597507 0.00598123 0.00598739 0.00599355 0.00599972 0.00600588 0.00601204 0.0060182 0.00602436 0.00603052 0.00603669 0.00604285 0.00604901 0.00605517 0.00606133 +-0.00131321 -0.00123844 -0.00109796 -0.000722237 3.31837E-05 0.00106358 0.00220833 0.0033433 0.00433442 0.00499696 0.0052547 0.00531304 0.00532738 0.00533476 0.0053411 0.0053473 0.00535347 0.00535964 0.00536581 0.00537198 0.00537815 0.00538432 0.00539049 0.00539666 0.00540283 0.005409 0.00541517 0.00542134 0.00542751 0.00543368 0.00543985 0.00544602 0.00545219 0.00545836 0.00546453 0.0054707 0.00547687 0.00548304 0.00548921 0.00549538 0.00550155 0.00550772 0.00551389 0.00552006 0.00552624 0.00553241 0.00553858 0.00554475 0.00555092 0.00555709 0.00556326 0.00556943 0.0055756 0.00558177 0.00558794 0.00559411 0.00560028 0.00560645 0.00561262 0.00561879 0.00562496 0.00563113 0.0056373 0.00564347 0.00564964 0.00565581 0.00566198 0.00566815 0.00567432 0.00568049 0.00568666 0.00569283 0.005699 0.00570517 0.00571134 0.00571751 0.00572368 0.00572985 0.00573602 0.00574219 0.00574836 0.00575453 0.0057607 0.00576687 0.00577304 0.00577921 0.00578538 0.00579155 0.00579772 0.00580389 0.00581006 0.00581623 0.0058224 0.00582857 0.00583474 0.00584091 0.00584708 0.00585325 0.00585942 0.00586559 0.00587176 0.00587793 0.0058841 0.00589027 0.00589644 0.00590261 0.00590878 0.00591495 0.00592112 0.00592729 0.00593346 0.00593963 0.0059458 0.00595197 0.00595814 0.00596431 0.00597048 0.00597665 0.00598282 0.00598899 0.00599516 0.00600133 0.0060075 0.00601367 0.00601984 0.00602602 0.00603219 0.00603836 0.00604453 0.0060507 0.00605687 0.00606304 0.00606921 +-0.00131518 -0.00124027 -0.00109945 -0.000722981 3.32583E-05 0.00106427 0.00220957 0.00334527 0.00433757 0.00500196 0.00526109 0.00531983 0.00533424 0.00534164 0.00534799 0.0053542 0.00536038 0.00536656 0.00537274 0.00537891 0.00538509 0.00539127 0.00539745 0.00540363 0.00540981 0.00541599 0.00542216 0.00542834 0.00543452 0.0054407 0.00544688 0.00545306 0.00545923 0.00546541 0.00547159 0.00547777 0.00548395 0.00549013 0.0054963 0.00550248 0.00550866 0.00551484 0.00552102 0.0055272 0.00553337 0.00553955 0.00554573 0.00555191 0.00555809 0.00556427 0.00557045 0.00557662 0.0055828 0.00558898 0.00559516 0.00560134 0.00560752 0.00561369 0.00561987 0.00562605 0.00563223 0.00563841 0.00564459 0.00565076 0.00565694 0.00566312 0.0056693 0.00567548 0.00568166 0.00568783 0.00569401 0.00570019 0.00570637 0.00571255 0.00571873 0.0057249 0.00573108 0.00573726 0.00574344 0.00574962 0.0057558 0.00576198 0.00576815 0.00577433 0.00578051 0.00578669 0.00579287 0.00579905 0.00580522 0.0058114 0.00581758 0.00582376 0.00582994 0.00583612 0.00584229 0.00584847 0.00585465 0.00586083 0.00586701 0.00587319 0.00587936 0.00588554 0.00589172 0.0058979 0.00590408 0.00591026 0.00591643 0.00592261 0.00592879 0.00593497 0.00594115 0.00594733 0.00595351 0.00595968 0.00596586 0.00597204 0.00597822 0.0059844 0.00599058 0.00599675 0.00600293 0.00600911 0.00601529 0.00602147 0.00602765 0.00603382 0.00604 0.00604618 0.00605236 0.00605854 0.00606472 0.00607089 0.00607707 +-0.00131715 -0.0012421 -0.00110094 -0.000723724 3.3333E-05 0.00106495 0.00221082 0.00334723 0.00434072 0.00500694 0.00526747 0.00532661 0.0053411 0.00534851 0.00535488 0.00536109 0.00536728 0.00537347 0.00537966 0.00538584 0.00539203 0.00539822 0.0054044 0.00541059 0.00541678 0.00542296 0.00542915 0.00543534 0.00544152 0.00544771 0.0054539 0.00546008 0.00546627 0.00547246 0.00547864 0.00548483 0.00549102 0.0054972 0.00550339 0.00550958 0.00551576 0.00552195 0.00552814 0.00553432 0.00554051 0.0055467 0.00555288 0.00555907 0.00556526 0.00557144 0.00557763 0.00558382 0.00559 0.00559619 0.00560238 0.00560856 0.00561475 0.00562094 0.00562712 0.00563331 0.0056395 0.00564568 0.00565187 0.00565806 0.00566424 0.00567043 0.00567662 0.0056828 0.00568899 0.00569518 0.00570136 0.00570755 0.00571374 0.00571992 0.00572611 0.0057323 0.00573848 0.00574467 0.00575086 0.00575704 0.00576323 0.00576942 0.0057756 0.00578179 0.00578798 0.00579416 0.00580035 0.00580654 0.00581272 0.00581891 0.0058251 0.00583128 0.00583747 0.00584366 0.00584984 0.00585603 0.00586222 0.0058684 0.00587459 0.00588078 0.00588696 0.00589315 0.00589934 0.00590552 0.00591171 0.0059179 0.00592408 0.00593027 0.00593646 0.00594264 0.00594883 0.00595502 0.0059612 0.00596739 0.00597358 0.00597976 0.00598595 0.00599214 0.00599832 0.00600451 0.0060107 0.00601688 0.00602307 0.00602926 0.00603544 0.00604163 0.00604782 0.006054 0.00606019 0.00606638 0.00607256 0.00607875 0.00608494 +-0.00131912 -0.00124392 -0.00110243 -0.000724465 3.34076E-05 0.00106564 0.00221206 0.00334919 0.00434386 0.00501192 0.00527385 0.00533339 0.00534796 0.00535539 0.00536176 0.00536798 0.00537418 0.00538038 0.00538657 0.00539277 0.00539896 0.00540516 0.00541135 0.00541755 0.00542374 0.00542994 0.00543613 0.00544233 0.00544852 0.00545472 0.00546091 0.00546711 0.0054733 0.0054795 0.00548569 0.00549189 0.00549808 0.00550428 0.00551047 0.00551667 0.00552286 0.00552906 0.00553525 0.00554145 0.00554764 0.00555384 0.00556003 0.00556623 0.00557242 0.00557862 0.00558481 0.00559101 0.0055972 0.00560339 0.00560959 0.00561578 0.00562198 0.00562817 0.00563437 0.00564056 0.00564676 0.00565295 0.00565915 0.00566534 0.00567154 0.00567773 0.00568393 0.00569012 0.00569632 0.00570251 0.00570871 0.0057149 0.0057211 0.00572729 0.00573349 0.00573968 0.00574588 0.00575207 0.00575827 0.00576446 0.00577066 0.00577685 0.00578305 0.00578924 0.00579544 0.00580163 0.00580783 0.00581402 0.00582022 0.00582641 0.00583261 0.0058388 0.005845 0.00585119 0.00585739 0.00586358 0.00586978 0.00587597 0.00588217 0.00588836 0.00589456 0.00590075 0.00590695 0.00591314 0.00591934 0.00592553 0.00593172 0.00593792 0.00594411 0.00595031 0.0059565 0.0059627 0.00596889 0.00597509 0.00598128 0.00598748 0.00599367 0.00599987 0.00600606 0.00601226 0.00601845 0.00602465 0.00603084 0.00603704 0.00604323 0.00604943 0.00605562 0.00606182 0.00606801 0.00607421 0.0060804 0.0060866 0.00609279 +-0.00132109 -0.00124575 -0.00110392 -0.000725206 3.34823E-05 0.00106632 0.0022133 0.00335114 0.004347 0.00501688 0.00528022 0.00534017 0.00535481 0.00536226 0.00536864 0.00537487 0.00538108 0.00538728 0.00539349 0.00539969 0.00540589 0.00541209 0.0054183 0.0054245 0.0054307 0.00543691 0.00544311 0.00544931 0.00545552 0.00546172 0.00546792 0.00547413 0.00548033 0.00548653 0.00549274 0.00549894 0.00550514 0.00551135 0.00551755 0.00552375 0.00552995 0.00553616 0.00554236 0.00554856 0.00555477 0.00556097 0.00556717 0.00557338 0.00557958 0.00558578 0.00559199 0.00559819 0.00560439 0.0056106 0.0056168 0.005623 0.00562921 0.00563541 0.00564161 0.00564781 0.00565402 0.00566022 0.00566642 0.00567263 0.00567883 0.00568503 0.00569124 0.00569744 0.00570364 0.00570985 0.00571605 0.00572225 0.00572846 0.00573466 0.00574086 0.00574706 0.00575327 0.00575947 0.00576567 0.00577188 0.00577808 0.00578428 0.00579049 0.00579669 0.00580289 0.0058091 0.0058153 0.0058215 0.00582771 0.00583391 0.00584011 0.00584632 0.00585252 0.00585872 0.00586492 0.00587113 0.00587733 0.00588353 0.00588974 0.00589594 0.00590214 0.00590835 0.00591455 0.00592075 0.00592696 0.00593316 0.00593936 0.00594557 0.00595177 0.00595797 0.00596418 0.00597038 0.00597658 0.00598278 0.00598899 0.00599519 0.00600139 0.0060076 0.0060138 0.00602 0.00602621 0.00603241 0.00603861 0.00604482 0.00605102 0.00605722 0.00606343 0.00606963 0.00607583 0.00608204 0.00608824 0.00609444 0.00610065 +-0.00132306 -0.00124757 -0.0011054 -0.000725945 3.35571E-05 0.00106701 0.00221453 0.00335308 0.00435012 0.00502183 0.00528658 0.00534694 0.00536166 0.00536912 0.00537552 0.00538175 0.00538797 0.00539418 0.00540039 0.0054066 0.00541282 0.00541903 0.00542524 0.00543145 0.00543766 0.00544387 0.00545008 0.0054563 0.00546251 0.00546872 0.00547493 0.00548114 0.00548735 0.00549356 0.00549977 0.00550599 0.0055122 0.00551841 0.00552462 0.00553083 0.00553704 0.00554325 0.00554947 0.00555568 0.00556189 0.0055681 0.00557431 0.00558052 0.00558673 0.00559295 0.00559916 0.00560537 0.00561158 0.00561779 0.005624 0.00563021 0.00563643 0.00564264 0.00564885 0.00565506 0.00566127 0.00566748 0.00567369 0.00567991 0.00568612 0.00569233 0.00569854 0.00570475 0.00571096 0.00571717 0.00572339 0.0057296 0.00573581 0.00574202 0.00574823 0.00575444 0.00576065 0.00576687 0.00577308 0.00577929 0.0057855 0.00579171 0.00579792 0.00580413 0.00581035 0.00581656 0.00582277 0.00582898 0.00583519 0.0058414 0.00584761 0.00585383 0.00586004 0.00586625 0.00587246 0.00587867 0.00588488 0.00589109 0.0058973 0.00590352 0.00590973 0.00591594 0.00592215 0.00592836 0.00593457 0.00594078 0.005947 0.00595321 0.00595942 0.00596563 0.00597184 0.00597805 0.00598426 0.00599048 0.00599669 0.0060029 0.00600911 0.00601532 0.00602153 0.00602774 0.00603396 0.00604017 0.00604638 0.00605259 0.0060588 0.00606501 0.00607122 0.00607744 0.00608365 0.00608986 0.00609607 0.00610228 0.00610849 +-0.00132503 -0.0012494 -0.00110689 -0.000726683 3.36318E-05 0.00106769 0.00221577 0.00335503 0.00435324 0.00502677 0.00529294 0.00535371 0.0053685 0.00537598 0.00538239 0.00538863 0.00539486 0.00540108 0.0054073 0.00541352 0.00541974 0.00542595 0.00543217 0.00543839 0.00544461 0.00545083 0.00545705 0.00546327 0.00546949 0.00547571 0.00548193 0.00548815 0.00549437 0.00550059 0.00550681 0.00551303 0.00551925 0.00552547 0.00553169 0.00553791 0.00554413 0.00555035 0.00555657 0.00556279 0.00556901 0.00557523 0.00558145 0.00558767 0.00559389 0.0056001 0.00560632 0.00561254 0.00561876 0.00562498 0.0056312 0.00563742 0.00564364 0.00564986 0.00565608 0.0056623 0.00566852 0.00567474 0.00568096 0.00568718 0.0056934 0.00569962 0.00570584 0.00571206 0.00571828 0.0057245 0.00573072 0.00573694 0.00574316 0.00574938 0.0057556 0.00576182 0.00576804 0.00577425 0.00578047 0.00578669 0.00579291 0.00579913 0.00580535 0.00581157 0.00581779 0.00582401 0.00583023 0.00583645 0.00584267 0.00584889 0.00585511 0.00586133 0.00586755 0.00587377 0.00587999 0.00588621 0.00589243 0.00589865 0.00590487 0.00591109 0.00591731 0.00592353 0.00592975 0.00593597 0.00594219 0.0059484 0.00595462 0.00596084 0.00596706 0.00597328 0.0059795 0.00598572 0.00599194 0.00599816 0.00600438 0.0060106 0.00601682 0.00602304 0.00602926 0.00603548 0.0060417 0.00604792 0.00605414 0.00606036 0.00606658 0.0060728 0.00607902 0.00608524 0.00609146 0.00609768 0.0061039 0.00611012 0.00611634 +-0.00132699 -0.00125122 -0.00110837 -0.00072742 3.37066E-05 0.00106837 0.002217 0.00335697 0.00435634 0.0050317 0.00529929 0.00536047 0.00537533 0.00538284 0.00538925 0.00539551 0.00540174 0.00540797 0.00541419 0.00542042 0.00542665 0.00543288 0.00543911 0.00544533 0.00545156 0.00545779 0.00546402 0.00547025 0.00547647 0.0054827 0.00548893 0.00549516 0.00550139 0.00550761 0.00551384 0.00552007 0.0055263 0.00553252 0.00553875 0.00554498 0.00555121 0.00555744 0.00556366 0.00556989 0.00557612 0.00558235 0.00558858 0.0055948 0.00560103 0.00560726 0.00561349 0.00561971 0.00562594 0.00563217 0.0056384 0.00564463 0.00565085 0.00565708 0.00566331 0.00566954 0.00567577 0.00568199 0.00568822 0.00569445 0.00570068 0.00570691 0.00571313 0.00571936 0.00572559 0.00573182 0.00573804 0.00574427 0.0057505 0.00575673 0.00576296 0.00576918 0.00577541 0.00578164 0.00578787 0.0057941 0.00580032 0.00580655 0.00581278 0.00581901 0.00582523 0.00583146 0.00583769 0.00584392 0.00585015 0.00585637 0.0058626 0.00586883 0.00587506 0.00588129 0.00588751 0.00589374 0.00589997 0.0059062 0.00591243 0.00591865 0.00592488 0.00593111 0.00593734 0.00594356 0.00594979 0.00595602 0.00596225 0.00596848 0.0059747 0.00598093 0.00598716 0.00599339 0.00599962 0.00600584 0.00601207 0.0060183 0.00602453 0.00603076 0.00603698 0.00604321 0.00604944 0.00605567 0.00606189 0.00606812 0.00607435 0.00608058 0.00608681 0.00609303 0.00609926 0.00610549 0.00611172 0.00611795 0.00612417 +-0.00132896 -0.00125305 -0.00110986 -0.000728155 3.37814E-05 0.00106905 0.00221822 0.0033589 0.00435945 0.00503662 0.00530563 0.00536722 0.00538217 0.00538969 0.00539611 0.00540238 0.00540862 0.00541485 0.00542109 0.00542733 0.00543356 0.0054398 0.00544603 0.00545227 0.00545851 0.00546474 0.00547098 0.00547721 0.00548345 0.00548969 0.00549592 0.00550216 0.00550839 0.00551463 0.00552087 0.0055271 0.00553334 0.00553958 0.00554581 0.00555205 0.00555828 0.00556452 0.00557076 0.00557699 0.00558323 0.00558946 0.0055957 0.00560194 0.00560817 0.00561441 0.00562065 0.00562688 0.00563312 0.00563935 0.00564559 0.00565183 0.00565806 0.0056643 0.00567053 0.00567677 0.00568301 0.00568924 0.00569548 0.00570171 0.00570795 0.00571419 0.00572042 0.00572666 0.0057329 0.00573913 0.00574537 0.0057516 0.00575784 0.00576408 0.00577031 0.00577655 0.00578278 0.00578902 0.00579526 0.00580149 0.00580773 0.00581396 0.0058202 0.00582644 0.00583267 0.00583891 0.00584515 0.00585138 0.00585762 0.00586385 0.00587009 0.00587633 0.00588256 0.0058888 0.00589503 0.00590127 0.00590751 0.00591374 0.00591998 0.00592621 0.00593245 0.00593869 0.00594492 0.00595116 0.0059574 0.00596363 0.00596987 0.0059761 0.00598234 0.00598858 0.00599481 0.00600105 0.00600728 0.00601352 0.00601976 0.00602599 0.00603223 0.00603846 0.0060447 0.00605094 0.00605717 0.00606341 0.00606965 0.00607588 0.00608212 0.00608835 0.00609459 0.00610083 0.00610706 0.0061133 0.00611953 0.00612577 0.00613201 +-0.00133093 -0.00125487 -0.00111134 -0.00072889 3.38563E-05 0.00106973 0.00221945 0.00336083 0.00436254 0.00504153 0.00531196 0.00537398 0.005389 0.00539654 0.00540297 0.00540924 0.00541549 0.00542174 0.00542798 0.00543422 0.00544047 0.00544671 0.00545296 0.0054592 0.00546545 0.00547169 0.00547793 0.00548418 0.00549042 0.00549667 0.00550291 0.00550916 0.0055154 0.00552164 0.00552789 0.00553413 0.00554038 0.00554662 0.00555287 0.00555911 0.00556536 0.0055716 0.00557784 0.00558409 0.00559033 0.00559658 0.00560282 0.00560907 0.00561531 0.00562155 0.0056278 0.00563404 0.00564029 0.00564653 0.00565278 0.00565902 0.00566526 0.00567151 0.00567775 0.005684 0.00569024 0.00569649 0.00570273 0.00570898 0.00571522 0.00572146 0.00572771 0.00573395 0.0057402 0.00574644 0.00575269 0.00575893 0.00576517 0.00577142 0.00577766 0.00578391 0.00579015 0.0057964 0.00580264 0.00580888 0.00581513 0.00582137 0.00582762 0.00583386 0.00584011 0.00584635 0.0058526 0.00585884 0.00586508 0.00587133 0.00587757 0.00588382 0.00589006 0.00589631 0.00590255 0.00590879 0.00591504 0.00592128 0.00592753 0.00593377 0.00594002 0.00594626 0.0059525 0.00595875 0.00596499 0.00597124 0.00597748 0.00598373 0.00598997 0.00599622 0.00600246 0.0060087 0.00601495 0.00602119 0.00602744 0.00603368 0.00603993 0.00604617 0.00605241 0.00605866 0.0060649 0.00607115 0.00607739 0.00608364 0.00608988 0.00609612 0.00610237 0.00610861 0.00611486 0.0061211 0.00612735 0.00613359 0.00613983 +-0.00133289 -0.00125669 -0.00111282 -0.000729624 3.39312E-05 0.00107041 0.00222067 0.00336276 0.00436562 0.00504642 0.00531829 0.00538072 0.00539582 0.00540338 0.00540982 0.0054161 0.00542236 0.00542861 0.00543487 0.00544112 0.00544737 0.00545362 0.00545988 0.00546613 0.00547238 0.00547863 0.00548489 0.00549114 0.00549739 0.00550364 0.0055099 0.00551615 0.0055224 0.00552865 0.00553491 0.00554116 0.00554741 0.00555366 0.00555992 0.00556617 0.00557242 0.00557867 0.00558493 0.00559118 0.00559743 0.00560369 0.00560994 0.00561619 0.00562244 0.0056287 0.00563495 0.0056412 0.00564745 0.00565371 0.00565996 0.00566621 0.00567246 0.00567872 0.00568497 0.00569122 0.00569747 0.00570373 0.00570998 0.00571623 0.00572248 0.00572874 0.00573499 0.00574124 0.00574749 0.00575375 0.00576 0.00576625 0.0057725 0.00577876 0.00578501 0.00579126 0.00579751 0.00580377 0.00581002 0.00581627 0.00582252 0.00582878 0.00583503 0.00584128 0.00584754 0.00585379 0.00586004 0.00586629 0.00587255 0.0058788 0.00588505 0.0058913 0.00589756 0.00590381 0.00591006 0.00591631 0.00592257 0.00592882 0.00593507 0.00594132 0.00594758 0.00595383 0.00596008 0.00596633 0.00597259 0.00597884 0.00598509 0.00599134 0.0059976 0.00600385 0.0060101 0.00601635 0.00602261 0.00602886 0.00603511 0.00604136 0.00604762 0.00605387 0.00606012 0.00606638 0.00607263 0.00607888 0.00608513 0.00609139 0.00609764 0.00610389 0.00611014 0.0061164 0.00612265 0.0061289 0.00613515 0.00614141 0.00614766 +-0.00133486 -0.00125851 -0.0011143 -0.000730356 3.40061E-05 0.00107109 0.0022219 0.00336468 0.0043687 0.00505131 0.00532461 0.00538746 0.00540264 0.00541022 0.00541667 0.00542296 0.00542923 0.00543549 0.00544175 0.00544801 0.00545427 0.00546053 0.00546679 0.00547305 0.00547931 0.00548557 0.00549183 0.00549809 0.00550436 0.00551062 0.00551688 0.00552314 0.0055294 0.00553566 0.00554192 0.00554818 0.00555444 0.0055607 0.00556696 0.00557322 0.00557948 0.00558575 0.00559201 0.00559827 0.00560453 0.00561079 0.00561705 0.00562331 0.00562957 0.00563583 0.00564209 0.00564835 0.00565461 0.00566088 0.00566714 0.0056734 0.00567966 0.00568592 0.00569218 0.00569844 0.0057047 0.00571096 0.00571722 0.00572348 0.00572974 0.005736 0.00574227 0.00574853 0.00575479 0.00576105 0.00576731 0.00577357 0.00577983 0.00578609 0.00579235 0.00579861 0.00580487 0.00581113 0.00581739 0.00582366 0.00582992 0.00583618 0.00584244 0.0058487 0.00585496 0.00586122 0.00586748 0.00587374 0.00588 0.00588626 0.00589252 0.00589879 0.00590505 0.00591131 0.00591757 0.00592383 0.00593009 0.00593635 0.00594261 0.00594887 0.00595513 0.00596139 0.00596765 0.00597391 0.00598018 0.00598644 0.0059927 0.00599896 0.00600522 0.00601148 0.00601774 0.006024 0.00603026 0.00603652 0.00604278 0.00604904 0.0060553 0.00606157 0.00606783 0.00607409 0.00608035 0.00608661 0.00609287 0.00609913 0.00610539 0.00611165 0.00611791 0.00612417 0.00613043 0.00613669 0.00614296 0.00614922 0.00615548 +-0.00133683 -0.00126033 -0.00111578 -0.000731087 3.4081E-05 0.00107176 0.00222312 0.00336659 0.00437177 0.00505619 0.00533092 0.0053942 0.00540946 0.00541705 0.00542352 0.00542981 0.00543609 0.00544236 0.00544863 0.00545489 0.00546116 0.00546743 0.0054737 0.00547997 0.00548624 0.00549251 0.00549878 0.00550505 0.00551132 0.00551758 0.00552385 0.00553012 0.00553639 0.00554266 0.00554893 0.0055552 0.00556147 0.00556774 0.00557401 0.00558027 0.00558654 0.00559281 0.00559908 0.00560535 0.00561162 0.00561789 0.00562416 0.00563043 0.0056367 0.00564296 0.00564923 0.0056555 0.00566177 0.00566804 0.00567431 0.00568058 0.00568685 0.00569312 0.00569939 0.00570565 0.00571192 0.00571819 0.00572446 0.00573073 0.005737 0.00574327 0.00574954 0.00575581 0.00576208 0.00576834 0.00577461 0.00578088 0.00578715 0.00579342 0.00579969 0.00580596 0.00581223 0.0058185 0.00582477 0.00583103 0.0058373 0.00584357 0.00584984 0.00585611 0.00586238 0.00586865 0.00587492 0.00588119 0.00588746 0.00589372 0.00589999 0.00590626 0.00591253 0.0059188 0.00592507 0.00593134 0.00593761 0.00594388 0.00595015 0.00595641 0.00596268 0.00596895 0.00597522 0.00598149 0.00598776 0.00599403 0.0060003 0.00600657 0.00601284 0.0060191 0.00602537 0.00603164 0.00603791 0.00604418 0.00605045 0.00605672 0.00606299 0.00606926 0.00607553 0.00608179 0.00608806 0.00609433 0.0061006 0.00610687 0.00611314 0.00611941 0.00612568 0.00613195 0.00613822 0.00614448 0.00615075 0.00615702 0.00616329 +-0.00133879 -0.00126215 -0.00111726 -0.000731817 3.4156E-05 0.00107244 0.00222433 0.00336851 0.00437483 0.00506105 0.00533723 0.00540093 0.00541627 0.00542388 0.00543036 0.00543666 0.00544294 0.00544922 0.0054555 0.00546178 0.00546805 0.00547433 0.00548061 0.00548688 0.00549316 0.00549944 0.00550572 0.00551199 0.00551827 0.00552455 0.00553083 0.0055371 0.00554338 0.00554966 0.00555593 0.00556221 0.00556849 0.00557477 0.00558104 0.00558732 0.0055936 0.00559987 0.00560615 0.00561243 0.00561871 0.00562498 0.00563126 0.00563754 0.00564381 0.00565009 0.00565637 0.00566265 0.00566892 0.0056752 0.00568148 0.00568776 0.00569403 0.00570031 0.00570659 0.00571286 0.00571914 0.00572542 0.0057317 0.00573797 0.00574425 0.00575053 0.0057568 0.00576308 0.00576936 0.00577564 0.00578191 0.00578819 0.00579447 0.00580075 0.00580702 0.0058133 0.00581958 0.00582585 0.00583213 0.00583841 0.00584469 0.00585096 0.00585724 0.00586352 0.00586979 0.00587607 0.00588235 0.00588863 0.0058949 0.00590118 0.00590746 0.00591373 0.00592001 0.00592629 0.00593257 0.00593884 0.00594512 0.0059514 0.00595768 0.00596395 0.00597023 0.00597651 0.00598278 0.00598906 0.00599534 0.00600162 0.00600789 0.00601417 0.00602045 0.00602672 0.006033 0.00603928 0.00604556 0.00605183 0.00605811 0.00606439 0.00607067 0.00607694 0.00608322 0.0060895 0.00609577 0.00610205 0.00610833 0.00611461 0.00612088 0.00612716 0.00613344 0.00613971 0.00614599 0.00615227 0.00615855 0.00616482 0.0061711 +-0.00134075 -0.00126397 -0.00111874 -0.000732546 3.4231E-05 0.00107311 0.00222555 0.00337042 0.00437788 0.00506591 0.00534353 0.00540766 0.00542308 0.00543071 0.00543719 0.00544351 0.0054498 0.00545608 0.00546237 0.00546865 0.00547494 0.00548122 0.00548751 0.00549379 0.00550008 0.00550637 0.00551265 0.00551894 0.00552522 0.00553151 0.00553779 0.00554408 0.00555036 0.00555665 0.00556293 0.00556922 0.00557551 0.00558179 0.00558808 0.00559436 0.00560065 0.00560693 0.00561322 0.0056195 0.00562579 0.00563207 0.00563836 0.00564464 0.00565093 0.00565722 0.0056635 0.00566979 0.00567607 0.00568236 0.00568864 0.00569493 0.00570121 0.0057075 0.00571378 0.00572007 0.00572636 0.00573264 0.00573893 0.00574521 0.0057515 0.00575778 0.00576407 0.00577035 0.00577664 0.00578292 0.00578921 0.00579549 0.00580178 0.00580807 0.00581435 0.00582064 0.00582692 0.00583321 0.00583949 0.00584578 0.00585206 0.00585835 0.00586463 0.00587092 0.00587721 0.00588349 0.00588978 0.00589606 0.00590235 0.00590863 0.00591492 0.0059212 0.00592749 0.00593377 0.00594006 0.00594634 0.00595263 0.00595892 0.0059652 0.00597149 0.00597777 0.00598406 0.00599034 0.00599663 0.00600291 0.0060092 0.00601548 0.00602177 0.00602805 0.00603434 0.00604063 0.00604691 0.0060532 0.00605948 0.00606577 0.00607205 0.00607834 0.00608462 0.00609091 0.00609719 0.00610348 0.00610977 0.00611605 0.00612234 0.00612862 0.00613491 0.00614119 0.00614748 0.00615376 0.00616005 0.00616633 0.00617262 0.0061789 +-0.00134272 -0.00126579 -0.00112021 -0.000733274 3.4306E-05 0.00107379 0.00222676 0.00337232 0.00438093 0.00507075 0.00534982 0.00541438 0.00542988 0.00543753 0.00544402 0.00545035 0.00545664 0.00546294 0.00546923 0.00547553 0.00548182 0.00548811 0.00549441 0.0055007 0.00550699 0.00551329 0.00551958 0.00552588 0.00553217 0.00553846 0.00554476 0.00555105 0.00555734 0.00556364 0.00556993 0.00557622 0.00558252 0.00558881 0.0055951 0.0056014 0.00560769 0.00561399 0.00562028 0.00562657 0.00563287 0.00563916 0.00564545 0.00565175 0.00565804 0.00566433 0.00567063 0.00567692 0.00568322 0.00568951 0.0056958 0.0057021 0.00570839 0.00571468 0.00572098 0.00572727 0.00573356 0.00573986 0.00574615 0.00575245 0.00575874 0.00576503 0.00577133 0.00577762 0.00578391 0.00579021 0.0057965 0.00580279 0.00580909 0.00581538 0.00582167 0.00582797 0.00583426 0.00584056 0.00584685 0.00585314 0.00585944 0.00586573 0.00587202 0.00587832 0.00588461 0.0058909 0.0058972 0.00590349 0.00590979 0.00591608 0.00592237 0.00592867 0.00593496 0.00594125 0.00594755 0.00595384 0.00596013 0.00596643 0.00597272 0.00597902 0.00598531 0.0059916 0.0059979 0.00600419 0.00601048 0.00601678 0.00602307 0.00602936 0.00603566 0.00604195 0.00604825 0.00605454 0.00606083 0.00606713 0.00607342 0.00607971 0.00608601 0.0060923 0.00609859 0.00610489 0.00611118 0.00611747 0.00612377 0.00613006 0.00613636 0.00614265 0.00614894 0.00615524 0.00616153 0.00616782 0.00617412 0.00618041 0.0061867 +-0.00134468 -0.0012676 -0.00112169 -0.000734 3.43811E-05 0.00107446 0.00222797 0.00337422 0.00438397 0.00507559 0.0053561 0.0054211 0.00543668 0.00544435 0.00545085 0.00545718 0.00546349 0.00546979 0.00547609 0.00548239 0.0054887 0.005495 0.0055013 0.0055076 0.0055139 0.00552021 0.00552651 0.00553281 0.00553911 0.00554541 0.00555171 0.00555802 0.00556432 0.00557062 0.00557692 0.00558322 0.00558953 0.00559583 0.00560213 0.00560843 0.00561473 0.00562103 0.00562734 0.00563364 0.00563994 0.00564624 0.00565254 0.00565885 0.00566515 0.00567145 0.00567775 0.00568405 0.00569035 0.00569666 0.00570296 0.00570926 0.00571556 0.00572186 0.00572817 0.00573447 0.00574077 0.00574707 0.00575337 0.00575967 0.00576598 0.00577228 0.00577858 0.00578488 0.00579118 0.00579749 0.00580379 0.00581009 0.00581639 0.00582269 0.00582899 0.0058353 0.0058416 0.0058479 0.0058542 0.0058605 0.00586681 0.00587311 0.00587941 0.00588571 0.00589201 0.00589831 0.00590462 0.00591092 0.00591722 0.00592352 0.00592982 0.00593613 0.00594243 0.00594873 0.00595503 0.00596133 0.00596763 0.00597394 0.00598024 0.00598654 0.00599284 0.00599914 0.00600545 0.00601175 0.00601805 0.00602435 0.00603065 0.00603695 0.00604326 0.00604956 0.00605586 0.00606216 0.00606846 0.00607477 0.00608107 0.00608737 0.00609367 0.00609997 0.00610627 0.00611258 0.00611888 0.00612518 0.00613148 0.00613778 0.00614409 0.00615039 0.00615669 0.00616299 0.00616929 0.00617559 0.0061819 0.0061882 0.0061945 +-0.00134664 -0.00126942 -0.00112316 -0.000734726 3.44561E-05 0.00107513 0.00222918 0.00337612 0.004387 0.00508041 0.00536238 0.00542781 0.00544347 0.00545116 0.00545768 0.00546401 0.00547033 0.00547664 0.00548295 0.00548926 0.00549557 0.00550188 0.00550819 0.0055145 0.00552081 0.00552712 0.00553343 0.00553974 0.00554605 0.00555236 0.00555867 0.00556498 0.00557129 0.0055776 0.00558391 0.00559022 0.00559653 0.00560284 0.00560915 0.00561546 0.00562177 0.00562808 0.00563439 0.0056407 0.00564701 0.00565332 0.00565963 0.00566594 0.00567225 0.00567856 0.00568487 0.00569118 0.00569749 0.0057038 0.00571011 0.00571642 0.00572273 0.00572904 0.00573535 0.00574166 0.00574797 0.00575428 0.00576059 0.0057669 0.00577321 0.00577952 0.00578583 0.00579214 0.00579845 0.00580476 0.00581107 0.00581738 0.00582369 0.00583 0.00583631 0.00584262 0.00584893 0.00585524 0.00586155 0.00586786 0.00587417 0.00588048 0.00588679 0.0058931 0.00589941 0.00590572 0.00591203 0.00591834 0.00592465 0.00593096 0.00593727 0.00594358 0.00594989 0.0059562 0.00596251 0.00596882 0.00597513 0.00598144 0.00598775 0.00599406 0.00600037 0.00600668 0.00601299 0.0060193 0.00602561 0.00603192 0.00603823 0.00604454 0.00605085 0.00605716 0.00606347 0.00606978 0.00607609 0.0060824 0.00608871 0.00609502 0.00610133 0.00610764 0.00611395 0.00612026 0.00612657 0.00613288 0.00613919 0.0061455 0.00615181 0.00615812 0.00616443 0.00617074 0.00617705 0.00618336 0.00618967 0.00619598 0.00620229 +-0.0013486 -0.00127124 -0.00112463 -0.00073545 3.45313E-05 0.0010758 0.00223038 0.00337801 0.00439002 0.00508522 0.00536865 0.00543452 0.00545026 0.00545797 0.00546449 0.00547084 0.00547716 0.00548348 0.0054898 0.00549612 0.00550244 0.00550876 0.00551507 0.00552139 0.00552771 0.00553403 0.00554035 0.00554667 0.00555298 0.0055593 0.00556562 0.00557194 0.00557826 0.00558457 0.00559089 0.00559721 0.00560353 0.00560985 0.00561617 0.00562248 0.0056288 0.00563512 0.00564144 0.00564776 0.00565407 0.00566039 0.00566671 0.00567303 0.00567935 0.00568567 0.00569198 0.0056983 0.00570462 0.00571094 0.00571726 0.00572357 0.00572989 0.00573621 0.00574253 0.00574885 0.00575517 0.00576148 0.0057678 0.00577412 0.00578044 0.00578676 0.00579307 0.00579939 0.00580571 0.00581203 0.00581835 0.00582467 0.00583098 0.0058373 0.00584362 0.00584994 0.00585626 0.00586257 0.00586889 0.00587521 0.00588153 0.00588785 0.00589417 0.00590048 0.0059068 0.00591312 0.00591944 0.00592576 0.00593207 0.00593839 0.00594471 0.00595103 0.00595735 0.00596367 0.00596998 0.0059763 0.00598262 0.00598894 0.00599526 0.00600158 0.00600789 0.00601421 0.00602053 0.00602685 0.00603317 0.00603948 0.0060458 0.00605212 0.00605844 0.00606476 0.00607108 0.00607739 0.00608371 0.00609003 0.00609635 0.00610267 0.00610898 0.0061153 0.00612162 0.00612794 0.00613426 0.00614058 0.00614689 0.00615321 0.00615953 0.00616585 0.00617217 0.00617848 0.0061848 0.00619112 0.00619744 0.00620376 0.00621008 +-0.00135056 -0.00127305 -0.0011261 -0.000736174 3.46064E-05 0.00107647 0.00223159 0.00337989 0.00439304 0.00509002 0.00537491 0.00544123 0.00545705 0.00546478 0.00547131 0.00547767 0.005484 0.00549032 0.00549665 0.00550298 0.0055093 0.00551563 0.00552196 0.00552828 0.00553461 0.00554093 0.00554726 0.00555359 0.00555991 0.00556624 0.00557257 0.00557889 0.00558522 0.00559155 0.00559787 0.0056042 0.00561052 0.00561685 0.00562318 0.0056295 0.00563583 0.00564216 0.00564848 0.00565481 0.00566114 0.00566746 0.00567379 0.00568011 0.00568644 0.00569277 0.00569909 0.00570542 0.00571175 0.00571807 0.0057244 0.00573073 0.00573705 0.00574338 0.0057497 0.00575603 0.00576236 0.00576868 0.00577501 0.00578134 0.00578766 0.00579399 0.00580032 0.00580664 0.00581297 0.00581929 0.00582562 0.00583195 0.00583827 0.0058446 0.00585093 0.00585725 0.00586358 0.00586991 0.00587623 0.00588256 0.00588888 0.00589521 0.00590154 0.00590786 0.00591419 0.00592052 0.00592684 0.00593317 0.0059395 0.00594582 0.00595215 0.00595847 0.0059648 0.00597113 0.00597745 0.00598378 0.00599011 0.00599643 0.00600276 0.00600909 0.00601541 0.00602174 0.00602806 0.00603439 0.00604072 0.00604704 0.00605337 0.0060597 0.00606602 0.00607235 0.00607868 0.006085 0.00609133 0.00609766 0.00610398 0.00611031 0.00611663 0.00612296 0.00612929 0.00613561 0.00614194 0.00614827 0.00615459 0.00616092 0.00616725 0.00617357 0.0061799 0.00618622 0.00619255 0.00619888 0.0062052 0.00621153 0.00621786 +-0.00135252 -0.00127487 -0.00112757 -0.000736896 3.46816E-05 0.00107713 0.00223279 0.00338178 0.00439605 0.00509481 0.00538116 0.00544792 0.00546383 0.00547158 0.00547812 0.00548448 0.00549082 0.00549716 0.00550349 0.00550983 0.00551616 0.0055225 0.00552883 0.00553517 0.0055415 0.00554784 0.00555417 0.0055605 0.00556684 0.00557317 0.00557951 0.00558584 0.00559218 0.00559851 0.00560485 0.00561118 0.00561752 0.00562385 0.00563018 0.00563652 0.00564285 0.00564919 0.00565552 0.00566186 0.00566819 0.00567453 0.00568086 0.0056872 0.00569353 0.00569986 0.0057062 0.00571253 0.00571887 0.0057252 0.00573154 0.00573787 0.00574421 0.00575054 0.00575688 0.00576321 0.00576954 0.00577588 0.00578221 0.00578855 0.00579488 0.00580122 0.00580755 0.00581389 0.00582022 0.00582656 0.00583289 0.00583922 0.00584556 0.00585189 0.00585823 0.00586456 0.0058709 0.00587723 0.00588357 0.0058899 0.00589624 0.00590257 0.0059089 0.00591524 0.00592157 0.00592791 0.00593424 0.00594058 0.00594691 0.00595325 0.00595958 0.00596592 0.00597225 0.00597858 0.00598492 0.00599125 0.00599759 0.00600392 0.00601026 0.00601659 0.00602293 0.00602926 0.0060356 0.00604193 0.00604826 0.0060546 0.00606093 0.00606727 0.0060736 0.00607994 0.00608627 0.00609261 0.00609894 0.00610528 0.00611161 0.00611794 0.00612428 0.00613061 0.00613695 0.00614328 0.00614962 0.00615595 0.00616229 0.00616862 0.00617496 0.00618129 0.00618762 0.00619396 0.00620029 0.00620663 0.00621296 0.0062193 0.00622563 +-0.00135448 -0.00127668 -0.00112904 -0.000737617 3.47568E-05 0.0010778 0.00223398 0.00338366 0.00439905 0.00509959 0.00538741 0.00545462 0.00547061 0.00547838 0.00548493 0.0054913 0.00549765 0.00550399 0.00551033 0.00551668 0.00552302 0.00552936 0.0055357 0.00554205 0.00554839 0.00555473 0.00556108 0.00556742 0.00557376 0.0055801 0.00558645 0.00559279 0.00559913 0.00560547 0.00561182 0.00561816 0.0056245 0.00563084 0.00563719 0.00564353 0.00564987 0.00565622 0.00566256 0.0056689 0.00567524 0.00568159 0.00568793 0.00569427 0.00570061 0.00570696 0.0057133 0.00571964 0.00572599 0.00573233 0.00573867 0.00574501 0.00575136 0.0057577 0.00576404 0.00577038 0.00577673 0.00578307 0.00578941 0.00579576 0.0058021 0.00580844 0.00581478 0.00582113 0.00582747 0.00583381 0.00584015 0.0058465 0.00585284 0.00585918 0.00586553 0.00587187 0.00587821 0.00588455 0.0058909 0.00589724 0.00590358 0.00590992 0.00591627 0.00592261 0.00592895 0.0059353 0.00594164 0.00594798 0.00595432 0.00596067 0.00596701 0.00597335 0.00597969 0.00598604 0.00599238 0.00599872 0.00600507 0.00601141 0.00601775 0.00602409 0.00603044 0.00603678 0.00604312 0.00604946 0.00605581 0.00606215 0.00606849 0.00607484 0.00608118 0.00608752 0.00609386 0.00610021 0.00610655 0.00611289 0.00611923 0.00612558 0.00613192 0.00613826 0.00614461 0.00615095 0.00615729 0.00616363 0.00616998 0.00617632 0.00618266 0.006189 0.00619535 0.00620169 0.00620803 0.00621438 0.00622072 0.00622706 0.0062334 +-0.00135644 -0.00127849 -0.00113051 -0.000738337 3.4832E-05 0.00107846 0.00223518 0.00338553 0.00440204 0.00510436 0.00539365 0.00546131 0.00547738 0.00548517 0.00549173 0.00549811 0.00550447 0.00551082 0.00551717 0.00552352 0.00552987 0.00553622 0.00554257 0.00554892 0.00555527 0.00556162 0.00556798 0.00557433 0.00558068 0.00558703 0.00559338 0.00559973 0.00560608 0.00561243 0.00561878 0.00562513 0.00563148 0.00563784 0.00564419 0.00565054 0.00565689 0.00566324 0.00566959 0.00567594 0.00568229 0.00568864 0.00569499 0.00570134 0.0057077 0.00571405 0.0057204 0.00572675 0.0057331 0.00573945 0.0057458 0.00575215 0.0057585 0.00576485 0.0057712 0.00577756 0.00578391 0.00579026 0.00579661 0.00580296 0.00580931 0.00581566 0.00582201 0.00582836 0.00583471 0.00584106 0.00584741 0.00585377 0.00586012 0.00586647 0.00587282 0.00587917 0.00588552 0.00589187 0.00589822 0.00590457 0.00591092 0.00591727 0.00592363 0.00592998 0.00593633 0.00594268 0.00594903 0.00595538 0.00596173 0.00596808 0.00597443 0.00598078 0.00598713 0.00599349 0.00599984 0.00600619 0.00601254 0.00601889 0.00602524 0.00603159 0.00603794 0.00604429 0.00605064 0.00605699 0.00606335 0.0060697 0.00607605 0.0060824 0.00608875 0.0060951 0.00610145 0.0061078 0.00611415 0.0061205 0.00612685 0.0061332 0.00613956 0.00614591 0.00615226 0.00615861 0.00616496 0.00617131 0.00617766 0.00618401 0.00619036 0.00619671 0.00620306 0.00620942 0.00621577 0.00622212 0.00622847 0.00623482 0.00624117 +-0.0013584 -0.0012803 -0.00113197 -0.000739056 3.49072E-05 0.00107913 0.00223637 0.0033874 0.00440503 0.00510912 0.00539988 0.00546799 0.00548415 0.00549196 0.00549853 0.00550492 0.00551128 0.00551764 0.005524 0.00553036 0.00553672 0.00554308 0.00554944 0.0055558 0.00556215 0.00556851 0.00557487 0.00558123 0.00558759 0.00559395 0.00560031 0.00560667 0.00561303 0.00561939 0.00562574 0.0056321 0.00563846 0.00564482 0.00565118 0.00565754 0.0056639 0.00567026 0.00567662 0.00568298 0.00568934 0.00569569 0.00570205 0.00570841 0.00571477 0.00572113 0.00572749 0.00573385 0.00574021 0.00574657 0.00575293 0.00575928 0.00576564 0.005772 0.00577836 0.00578472 0.00579108 0.00579744 0.0058038 0.00581016 0.00581652 0.00582288 0.00582923 0.00583559 0.00584195 0.00584831 0.00585467 0.00586103 0.00586739 0.00587375 0.00588011 0.00588647 0.00589283 0.00589918 0.00590554 0.0059119 0.00591826 0.00592462 0.00593098 0.00593734 0.0059437 0.00595006 0.00595642 0.00596277 0.00596913 0.00597549 0.00598185 0.00598821 0.00599457 0.00600093 0.00600729 0.00601365 0.00602001 0.00602637 0.00603272 0.00603908 0.00604544 0.0060518 0.00605816 0.00606452 0.00607088 0.00607724 0.0060836 0.00608996 0.00609631 0.00610267 0.00610903 0.00611539 0.00612175 0.00612811 0.00613447 0.00614083 0.00614719 0.00615355 0.00615991 0.00616626 0.00617262 0.00617898 0.00618534 0.0061917 0.00619806 0.00620442 0.00621078 0.00621714 0.0062235 0.00622985 0.00623621 0.00624257 0.00624893 +-0.00136035 -0.00128212 -0.00113344 -0.000739773 3.49825E-05 0.00107979 0.00223757 0.00338927 0.004408 0.00511387 0.00540611 0.00547467 0.00549091 0.00549874 0.00550532 0.00551172 0.00551809 0.00552446 0.00553083 0.00553719 0.00554356 0.00554993 0.0055563 0.00556266 0.00556903 0.0055754 0.00558176 0.00558813 0.0055945 0.00560087 0.00560723 0.0056136 0.00561997 0.00562634 0.0056327 0.00563907 0.00564544 0.0056518 0.00565817 0.00566454 0.00567091 0.00567727 0.00568364 0.00569001 0.00569637 0.00570274 0.00570911 0.00571548 0.00572184 0.00572821 0.00573458 0.00574095 0.00574731 0.00575368 0.00576005 0.00576641 0.00577278 0.00577915 0.00578552 0.00579188 0.00579825 0.00580462 0.00581098 0.00581735 0.00582372 0.00583009 0.00583645 0.00584282 0.00584919 0.00585555 0.00586192 0.00586829 0.00587466 0.00588102 0.00588739 0.00589376 0.00590013 0.00590649 0.00591286 0.00591923 0.00592559 0.00593196 0.00593833 0.0059447 0.00595106 0.00595743 0.0059638 0.00597016 0.00597653 0.0059829 0.00598927 0.00599563 0.006002 0.00600837 0.00601474 0.0060211 0.00602747 0.00603384 0.0060402 0.00604657 0.00605294 0.00605931 0.00606567 0.00607204 0.00607841 0.00608477 0.00609114 0.00609751 0.00610388 0.00611024 0.00611661 0.00612298 0.00612935 0.00613571 0.00614208 0.00614845 0.00615481 0.00616118 0.00616755 0.00617392 0.00618028 0.00618665 0.00619302 0.00619938 0.00620575 0.00621212 0.00621849 0.00622485 0.00623122 0.00623759 0.00624395 0.00625032 0.00625669 +-0.00136231 -0.00128393 -0.0011349 -0.00074049 3.50578E-05 0.00108045 0.00223876 0.00339113 0.00441097 0.00511861 0.00541232 0.00548135 0.00549768 0.00550552 0.00551211 0.00551852 0.0055249 0.00553127 0.00553765 0.00554403 0.0055504 0.00555678 0.00556315 0.00556953 0.0055759 0.00558228 0.00558865 0.00559503 0.0056014 0.00560778 0.00561415 0.00562053 0.00562691 0.00563328 0.00563966 0.00564603 0.00565241 0.00565878 0.00566516 0.00567153 0.00567791 0.00568428 0.00569066 0.00569703 0.00570341 0.00570979 0.00571616 0.00572254 0.00572891 0.00573529 0.00574166 0.00574804 0.00575441 0.00576079 0.00576716 0.00577354 0.00577991 0.00578629 0.00579266 0.00579904 0.00580542 0.00581179 0.00581817 0.00582454 0.00583092 0.00583729 0.00584367 0.00585004 0.00585642 0.00586279 0.00586917 0.00587554 0.00588192 0.0058883 0.00589467 0.00590105 0.00590742 0.0059138 0.00592017 0.00592655 0.00593292 0.0059393 0.00594567 0.00595205 0.00595842 0.0059648 0.00597118 0.00597755 0.00598393 0.0059903 0.00599668 0.00600305 0.00600943 0.0060158 0.00602218 0.00602855 0.00603493 0.0060413 0.00604768 0.00605405 0.00606043 0.00606681 0.00607318 0.00607956 0.00608593 0.00609231 0.00609868 0.00610506 0.00611143 0.00611781 0.00612418 0.00613056 0.00613693 0.00614331 0.00614969 0.00615606 0.00616244 0.00616881 0.00617519 0.00618156 0.00618794 0.00619431 0.00620069 0.00620706 0.00621344 0.00621981 0.00622619 0.00623257 0.00623894 0.00624532 0.00625169 0.00625807 0.00626444 +-0.00136427 -0.00128574 -0.00113637 -0.000741206 3.51332E-05 0.00108111 0.00223994 0.00339299 0.00441394 0.00512334 0.00541853 0.00548802 0.00550443 0.0055123 0.0055189 0.00552531 0.0055317 0.00553809 0.00554447 0.00555085 0.00555724 0.00556362 0.00557 0.00557639 0.00558277 0.00558915 0.00559554 0.00560192 0.0056083 0.00561469 0.00562107 0.00562745 0.00563384 0.00564022 0.00564661 0.00565299 0.00565937 0.00566576 0.00567214 0.00567852 0.00568491 0.00569129 0.00569767 0.00570406 0.00571044 0.00571682 0.00572321 0.00572959 0.00573597 0.00574236 0.00574874 0.00575512 0.00576151 0.00576789 0.00577428 0.00578066 0.00578704 0.00579343 0.00579981 0.00580619 0.00581258 0.00581896 0.00582534 0.00583173 0.00583811 0.00584449 0.00585088 0.00585726 0.00586364 0.00587003 0.00587641 0.0058828 0.00588918 0.00589556 0.00590195 0.00590833 0.00591471 0.0059211 0.00592748 0.00593386 0.00594025 0.00594663 0.00595301 0.0059594 0.00596578 0.00597216 0.00597855 0.00598493 0.00599132 0.0059977 0.00600408 0.00601047 0.00601685 0.00602323 0.00602962 0.006036 0.00604238 0.00604877 0.00605515 0.00606153 0.00606792 0.0060743 0.00608068 0.00608707 0.00609345 0.00609983 0.00610622 0.0061126 0.00611899 0.00612537 0.00613175 0.00613814 0.00614452 0.0061509 0.00615729 0.00616367 0.00617005 0.00617644 0.00618282 0.0061892 0.00619559 0.00620197 0.00620835 0.00621474 0.00622112 0.00622751 0.00623389 0.00624027 0.00624666 0.00625304 0.00625942 0.00626581 0.00627219 +-0.00136622 -0.00128755 -0.00113783 -0.00074192 3.52086E-05 0.00108177 0.00224113 0.00339485 0.00441689 0.00512806 0.00542474 0.00549468 0.00551118 0.00551907 0.00552568 0.0055321 0.0055385 0.00554489 0.00555128 0.00555768 0.00556407 0.00557046 0.00557685 0.00558324 0.00558963 0.00559603 0.00560242 0.00560881 0.0056152 0.00562159 0.00562798 0.00563438 0.00564077 0.00564716 0.00565355 0.00565994 0.00566633 0.00567273 0.00567912 0.00568551 0.0056919 0.00569829 0.00570468 0.00571108 0.00571747 0.00572386 0.00573025 0.00573664 0.00574303 0.00574943 0.00575582 0.00576221 0.0057686 0.00577499 0.00578138 0.00578778 0.00579417 0.00580056 0.00580695 0.00581334 0.00581973 0.00582613 0.00583252 0.00583891 0.0058453 0.00585169 0.00585808 0.00586448 0.00587087 0.00587726 0.00588365 0.00589004 0.00589643 0.00590283 0.00590922 0.00591561 0.005922 0.00592839 0.00593478 0.00594117 0.00594757 0.00595396 0.00596035 0.00596674 0.00597313 0.00597952 0.00598592 0.00599231 0.0059987 0.00600509 0.00601148 0.00601787 0.00602427 0.00603066 0.00603705 0.00604344 0.00604983 0.00605622 0.00606262 0.00606901 0.0060754 0.00608179 0.00608818 0.00609457 0.00610097 0.00610736 0.00611375 0.00612014 0.00612653 0.00613292 0.00613932 0.00614571 0.0061521 0.00615849 0.00616488 0.00617127 0.00617767 0.00618406 0.00619045 0.00619684 0.00620323 0.00620962 0.00621602 0.00622241 0.0062288 0.00623519 0.00624158 0.00624797 0.00625437 0.00626076 0.00626715 0.00627354 0.00627993 +-0.00136818 -0.00128935 -0.00113929 -0.000742633 3.5284E-05 0.00108243 0.00224231 0.0033967 0.00441984 0.00513276 0.00543093 0.00550134 0.00551793 0.00552584 0.00553246 0.00553889 0.00554529 0.00555169 0.00555809 0.00556449 0.00557089 0.00557729 0.00558369 0.00559009 0.00559649 0.00560289 0.00560929 0.00561569 0.00562209 0.00562849 0.00563489 0.00564129 0.00564769 0.00565409 0.00566049 0.00566689 0.00567329 0.00567969 0.00568609 0.00569249 0.00569889 0.00570529 0.00571169 0.00571809 0.00572449 0.00573089 0.00573729 0.00574369 0.00575009 0.00575649 0.00576289 0.00576929 0.00577569 0.00578209 0.00578849 0.00579489 0.00580129 0.00580769 0.00581409 0.00582049 0.00582689 0.00583329 0.00583969 0.00584609 0.00585249 0.00585888 0.00586528 0.00587168 0.00587808 0.00588448 0.00589088 0.00589728 0.00590368 0.00591008 0.00591648 0.00592288 0.00592928 0.00593568 0.00594208 0.00594848 0.00595488 0.00596128 0.00596768 0.00597408 0.00598048 0.00598688 0.00599328 0.00599968 0.00600608 0.00601248 0.00601888 0.00602528 0.00603168 0.00603808 0.00604448 0.00605088 0.00605728 0.00606368 0.00607008 0.00607648 0.00608288 0.00608928 0.00609568 0.00610208 0.00610848 0.00611488 0.00612128 0.00612768 0.00613408 0.00614048 0.00614688 0.00615328 0.00615968 0.00616608 0.00617248 0.00617888 0.00618527 0.00619167 0.00619807 0.00620447 0.00621087 0.00621727 0.00622367 0.00623007 0.00623647 0.00624287 0.00624927 0.00625567 0.00626207 0.00626847 0.00627487 0.00628127 0.00628767 +-0.00137013 -0.00129116 -0.00114075 -0.000743345 3.53594E-05 0.00108309 0.00224349 0.00339854 0.00442278 0.00513746 0.00543712 0.005508 0.00552467 0.0055326 0.00553923 0.00554567 0.00555208 0.00555849 0.0055649 0.00557131 0.00557772 0.00558412 0.00559053 0.00559694 0.00560335 0.00560976 0.00561616 0.00562257 0.00562898 0.00563539 0.0056418 0.0056482 0.00565461 0.00566102 0.00566743 0.00567384 0.00568024 0.00568665 0.00569306 0.00569947 0.00570588 0.00571228 0.00571869 0.0057251 0.00573151 0.00573791 0.00574432 0.00575073 0.00575714 0.00576355 0.00576995 0.00577636 0.00578277 0.00578918 0.00579559 0.00580199 0.0058084 0.00581481 0.00582122 0.00582763 0.00583403 0.00584044 0.00584685 0.00585326 0.00585967 0.00586607 0.00587248 0.00587889 0.0058853 0.00589171 0.00589811 0.00590452 0.00591093 0.00591734 0.00592375 0.00593015 0.00593656 0.00594297 0.00594938 0.00595578 0.00596219 0.0059686 0.00597501 0.00598142 0.00598782 0.00599423 0.00600064 0.00600705 0.00601346 0.00601986 0.00602627 0.00603268 0.00603909 0.0060455 0.0060519 0.00605831 0.00606472 0.00607113 0.00607754 0.00608394 0.00609035 0.00609676 0.00610317 0.00610958 0.00611598 0.00612239 0.0061288 0.00613521 0.00614162 0.00614802 0.00615443 0.00616084 0.00616725 0.00617365 0.00618006 0.00618647 0.00619288 0.00619929 0.00620569 0.0062121 0.00621851 0.00622492 0.00623133 0.00623773 0.00624414 0.00625055 0.00625696 0.00626337 0.00626977 0.00627618 0.00628259 0.006289 0.00629541 +-0.00137209 -0.00129297 -0.00114221 -0.000744056 3.54348E-05 0.00108375 0.00224467 0.00340039 0.00442572 0.00514215 0.0054433 0.00551465 0.00553141 0.00553936 0.005546 0.00555245 0.00555887 0.00556529 0.0055717 0.00557812 0.00558454 0.00559095 0.00559737 0.00560378 0.0056102 0.00561662 0.00562303 0.00562945 0.00563586 0.00564228 0.0056487 0.00565511 0.00566153 0.00566794 0.00567436 0.00568078 0.00568719 0.00569361 0.00570002 0.00570644 0.00571286 0.00571927 0.00572569 0.0057321 0.00573852 0.00574494 0.00575135 0.00575777 0.00576419 0.0057706 0.00577702 0.00578343 0.00578985 0.00579627 0.00580268 0.0058091 0.00581551 0.00582193 0.00582835 0.00583476 0.00584118 0.00584759 0.00585401 0.00586043 0.00586684 0.00587326 0.00587967 0.00588609 0.00589251 0.00589892 0.00590534 0.00591175 0.00591817 0.00592459 0.005931 0.00593742 0.00594383 0.00595025 0.00595667 0.00596308 0.0059695 0.00597592 0.00598233 0.00598875 0.00599516 0.00600158 0.006008 0.00601441 0.00602083 0.00602724 0.00603366 0.00604008 0.00604649 0.00605291 0.00605932 0.00606574 0.00607216 0.00607857 0.00608499 0.0060914 0.00609782 0.00610424 0.00611065 0.00611707 0.00612348 0.0061299 0.00613632 0.00614273 0.00614915 0.00615557 0.00616198 0.0061684 0.00617481 0.00618123 0.00618765 0.00619406 0.00620048 0.00620689 0.00621331 0.00621973 0.00622614 0.00623256 0.00623897 0.00624539 0.00625181 0.00625822 0.00626464 0.00627105 0.00627747 0.00628389 0.0062903 0.00629672 0.00630313 +-0.00137404 -0.00129477 -0.00114367 -0.000744766 3.55103E-05 0.0010844 0.00224585 0.00340223 0.00442864 0.00514682 0.00544948 0.0055213 0.00553815 0.00554612 0.00555277 0.00555922 0.00556565 0.00557208 0.0055785 0.00558493 0.00559135 0.00559777 0.0056042 0.00561062 0.00561705 0.00562347 0.00562989 0.00563632 0.00564274 0.00564917 0.00565559 0.00566202 0.00566844 0.00567486 0.00568129 0.00568771 0.00569414 0.00570056 0.00570699 0.00571341 0.00571983 0.00572626 0.00573268 0.00573911 0.00574553 0.00575195 0.00575838 0.0057648 0.00577123 0.00577765 0.00578408 0.0057905 0.00579692 0.00580335 0.00580977 0.0058162 0.00582262 0.00582904 0.00583547 0.00584189 0.00584832 0.00585474 0.00586117 0.00586759 0.00587401 0.00588044 0.00588686 0.00589329 0.00589971 0.00590614 0.00591256 0.00591898 0.00592541 0.00593183 0.00593826 0.00594468 0.0059511 0.00595753 0.00596395 0.00597038 0.0059768 0.00598323 0.00598965 0.00599607 0.0060025 0.00600892 0.00601535 0.00602177 0.00602819 0.00603462 0.00604104 0.00604747 0.00605389 0.00606032 0.00606674 0.00607316 0.00607959 0.00608601 0.00609244 0.00609886 0.00610529 0.00611171 0.00611813 0.00612456 0.00613098 0.00613741 0.00614383 0.00615025 0.00615668 0.0061631 0.00616953 0.00617595 0.00618238 0.0061888 0.00619522 0.00620165 0.00620807 0.0062145 0.00622092 0.00622735 0.00623377 0.00624019 0.00624662 0.00625304 0.00625947 0.00626589 0.00627231 0.00627874 0.00628516 0.00629159 0.00629801 0.00630444 0.00631086 +-0.00137599 -0.00129658 -0.00114512 -0.000745475 3.55858E-05 0.00108506 0.00224702 0.00340406 0.00443156 0.00515149 0.00545564 0.00552794 0.00554488 0.00555287 0.00555953 0.00556599 0.00557243 0.00557886 0.0055853 0.00559173 0.00559816 0.00560459 0.00561102 0.00561746 0.00562389 0.00563032 0.00563675 0.00564319 0.00564962 0.00565605 0.00566248 0.00566892 0.00567535 0.00568178 0.00568821 0.00569464 0.00570108 0.00570751 0.00571394 0.00572037 0.00572681 0.00573324 0.00573967 0.0057461 0.00575254 0.00575897 0.0057654 0.00577183 0.00577826 0.0057847 0.00579113 0.00579756 0.00580399 0.00581043 0.00581686 0.00582329 0.00582972 0.00583616 0.00584259 0.00584902 0.00585545 0.00586188 0.00586832 0.00587475 0.00588118 0.00588761 0.00589405 0.00590048 0.00590691 0.00591334 0.00591978 0.00592621 0.00593264 0.00593907 0.00594551 0.00595194 0.00595837 0.0059648 0.00597123 0.00597767 0.0059841 0.00599053 0.00599696 0.0060034 0.00600983 0.00601626 0.00602269 0.00602913 0.00603556 0.00604199 0.00604842 0.00605485 0.00606129 0.00606772 0.00607415 0.00608058 0.00608702 0.00609345 0.00609988 0.00610631 0.00611275 0.00611918 0.00612561 0.00613204 0.00613847 0.00614491 0.00615134 0.00615777 0.0061642 0.00617064 0.00617707 0.0061835 0.00618993 0.00619637 0.0062028 0.00620923 0.00621566 0.00622209 0.00622853 0.00623496 0.00624139 0.00624782 0.00625426 0.00626069 0.00626712 0.00627355 0.00627999 0.00628642 0.00629285 0.00629928 0.00630572 0.00631215 0.00631858 +-0.00137794 -0.00129839 -0.00114658 -0.000746183 3.56614E-05 0.00108571 0.00224819 0.00340589 0.00443448 0.00515614 0.0054618 0.00553457 0.00555161 0.00555961 0.00556628 0.00557276 0.0055792 0.00558564 0.00559209 0.00559853 0.00560497 0.00561141 0.00561785 0.00562429 0.00563073 0.00563717 0.00564361 0.00565005 0.00565649 0.00566293 0.00566937 0.00567581 0.00568225 0.00568869 0.00569513 0.00570157 0.00570801 0.00571445 0.00572089 0.00572733 0.00573377 0.00574022 0.00574666 0.0057531 0.00575954 0.00576598 0.00577242 0.00577886 0.0057853 0.00579174 0.00579818 0.00580462 0.00581106 0.0058175 0.00582394 0.00583038 0.00583682 0.00584326 0.0058497 0.00585614 0.00586258 0.00586902 0.00587546 0.0058819 0.00588835 0.00589479 0.00590123 0.00590767 0.00591411 0.00592055 0.00592699 0.00593343 0.00593987 0.00594631 0.00595275 0.00595919 0.00596563 0.00597207 0.00597851 0.00598495 0.00599139 0.00599783 0.00600427 0.00601071 0.00601715 0.00602359 0.00603004 0.00603648 0.00604292 0.00604936 0.0060558 0.00606224 0.00606868 0.00607512 0.00608156 0.006088 0.00609444 0.00610088 0.00610732 0.00611376 0.0061202 0.00612664 0.00613308 0.00613952 0.00614596 0.0061524 0.00615884 0.00616528 0.00617172 0.00617817 0.00618461 0.00619105 0.00619749 0.00620393 0.00621037 0.00621681 0.00622325 0.00622969 0.00623613 0.00624257 0.00624901 0.00625545 0.00626189 0.00626833 0.00627477 0.00628121 0.00628765 0.00629409 0.00630053 0.00630697 0.00631341 0.00631985 0.0063263 +-0.00137989 -0.00130019 -0.00114803 -0.00074689 3.5737E-05 0.00108636 0.00224936 0.00340772 0.00443738 0.00516079 0.00546795 0.00554121 0.00555833 0.00556636 0.00557304 0.00557952 0.00558597 0.00559242 0.00559887 0.00560532 0.00561177 0.00561822 0.00562467 0.00563111 0.00563756 0.00564401 0.00565046 0.00565691 0.00566336 0.00566981 0.00567625 0.0056827 0.00568915 0.0056956 0.00570205 0.0057085 0.00571494 0.00572139 0.00572784 0.00573429 0.00574074 0.00574719 0.00575364 0.00576008 0.00576653 0.00577298 0.00577943 0.00578588 0.00579233 0.00579878 0.00580522 0.00581167 0.00581812 0.00582457 0.00583102 0.00583747 0.00584392 0.00585036 0.00585681 0.00586326 0.00586971 0.00587616 0.00588261 0.00588906 0.0058955 0.00590195 0.0059084 0.00591485 0.0059213 0.00592775 0.0059342 0.00594064 0.00594709 0.00595354 0.00595999 0.00596644 0.00597289 0.00597934 0.00598578 0.00599223 0.00599868 0.00600513 0.00601158 0.00601803 0.00602448 0.00603092 0.00603737 0.00604382 0.00605027 0.00605672 0.00606317 0.00606962 0.00607606 0.00608251 0.00608896 0.00609541 0.00610186 0.00610831 0.00611476 0.0061212 0.00612765 0.0061341 0.00614055 0.006147 0.00615345 0.0061599 0.00616634 0.00617279 0.00617924 0.00618569 0.00619214 0.00619859 0.00620504 0.00621148 0.00621793 0.00622438 0.00623083 0.00623728 0.00624373 0.00625017 0.00625662 0.00626307 0.00626952 0.00627597 0.00628242 0.00628887 0.00629531 0.00630176 0.00630821 0.00631466 0.00632111 0.00632756 0.00633401 +-0.00138184 -0.00130199 -0.00114949 -0.000747595 3.58126E-05 0.00108701 0.00225053 0.00340954 0.00444028 0.00516542 0.0054741 0.00554783 0.00556505 0.0055731 0.00557979 0.00558628 0.00559274 0.0055992 0.00560565 0.00561211 0.00561857 0.00562502 0.00563148 0.00563794 0.00564439 0.00565085 0.00565731 0.00566376 0.00567022 0.00567668 0.00568313 0.00568959 0.00569605 0.0057025 0.00570896 0.00571542 0.00572187 0.00572833 0.00573479 0.00574124 0.0057477 0.00575416 0.00576061 0.00576707 0.00577353 0.00577998 0.00578644 0.0057929 0.00579935 0.00580581 0.00581227 0.00581872 0.00582518 0.00583164 0.00583809 0.00584455 0.00585101 0.00585746 0.00586392 0.00587038 0.00587683 0.00588329 0.00588975 0.0058962 0.00590266 0.00590912 0.00591557 0.00592203 0.00592849 0.00593494 0.0059414 0.00594786 0.00595431 0.00596077 0.00596723 0.00597368 0.00598014 0.0059866 0.00599305 0.00599951 0.00600597 0.00601242 0.00601888 0.00602534 0.00603179 0.00603825 0.00604471 0.00605116 0.00605762 0.00606408 0.00607053 0.00607699 0.00608345 0.0060899 0.00609636 0.00610282 0.00610927 0.00611573 0.00612219 0.00612864 0.0061351 0.00614156 0.00614801 0.00615447 0.00616093 0.00616738 0.00617384 0.0061803 0.00618675 0.00619321 0.00619967 0.00620612 0.00621258 0.00621904 0.00622549 0.00623195 0.00623841 0.00624486 0.00625132 0.00625778 0.00626423 0.00627069 0.00627715 0.0062836 0.00629006 0.00629652 0.00630297 0.00630943 0.00631589 0.00632234 0.0063288 0.00633526 0.00634171 +-0.00138379 -0.0013038 -0.00115094 -0.0007483 3.58882E-05 0.00108766 0.00225169 0.00341136 0.00444317 0.00517005 0.00548023 0.00555446 0.00557176 0.00557983 0.00558653 0.00559303 0.0055995 0.00560597 0.00561243 0.0056189 0.00562536 0.00563182 0.00563829 0.00564475 0.00565122 0.00565768 0.00566415 0.00567061 0.00567708 0.00568354 0.00569001 0.00569647 0.00570294 0.0057094 0.00571587 0.00572233 0.0057288 0.00573526 0.00574173 0.00574819 0.00575466 0.00576112 0.00576758 0.00577405 0.00578051 0.00578698 0.00579344 0.00579991 0.00580637 0.00581284 0.0058193 0.00582577 0.00583223 0.0058387 0.00584516 0.00585163 0.00585809 0.00586456 0.00587102 0.00587749 0.00588395 0.00589042 0.00589688 0.00590335 0.00590981 0.00591627 0.00592274 0.0059292 0.00593567 0.00594213 0.0059486 0.00595506 0.00596153 0.00596799 0.00597446 0.00598092 0.00598739 0.00599385 0.00600032 0.00600678 0.00601325 0.00601971 0.00602618 0.00603264 0.00603911 0.00604557 0.00605203 0.0060585 0.00606496 0.00607143 0.00607789 0.00608436 0.00609082 0.00609729 0.00610375 0.00611022 0.00611668 0.00612315 0.00612961 0.00613608 0.00614254 0.00614901 0.00615547 0.00616194 0.0061684 0.00617487 0.00618133 0.00618779 0.00619426 0.00620072 0.00620719 0.00621365 0.00622012 0.00622658 0.00623305 0.00623951 0.00624598 0.00625244 0.00625891 0.00626537 0.00627184 0.0062783 0.00628477 0.00629123 0.0062977 0.00630416 0.00631063 0.00631709 0.00632356 0.00633002 0.00633648 0.00634295 0.00634941 +-0.00138574 -0.0013056 -0.00115239 -0.000749003 3.59638E-05 0.00108831 0.00225286 0.00341318 0.00444605 0.00517466 0.00548636 0.00556108 0.00557847 0.00558656 0.00559327 0.00559978 0.00560626 0.00561273 0.0056192 0.00562568 0.00563215 0.00563862 0.0056451 0.00565157 0.00565804 0.00566451 0.00567099 0.00567746 0.00568393 0.00569041 0.00569688 0.00570335 0.00570982 0.0057163 0.00572277 0.00572924 0.00573572 0.00574219 0.00574866 0.00575513 0.00576161 0.00576808 0.00577455 0.00578103 0.0057875 0.00579397 0.00580044 0.00580692 0.00581339 0.00581986 0.00582634 0.00583281 0.00583928 0.00584575 0.00585223 0.0058587 0.00586517 0.00587165 0.00587812 0.00588459 0.00589106 0.00589754 0.00590401 0.00591048 0.00591696 0.00592343 0.0059299 0.00593637 0.00594285 0.00594932 0.00595579 0.00596227 0.00596874 0.00597521 0.00598168 0.00598816 0.00599463 0.0060011 0.00600758 0.00601405 0.00602052 0.00602699 0.00603347 0.00603994 0.00604641 0.00605289 0.00605936 0.00606583 0.0060723 0.00607878 0.00608525 0.00609172 0.0060982 0.00610467 0.00611114 0.00611762 0.00612409 0.00613056 0.00613703 0.00614351 0.00614998 0.00615645 0.00616293 0.0061694 0.00617587 0.00618234 0.00618882 0.00619529 0.00620176 0.00620824 0.00621471 0.00622118 0.00622765 0.00623413 0.0062406 0.00624707 0.00625355 0.00626002 0.00626649 0.00627296 0.00627944 0.00628591 0.00629238 0.00629886 0.00630533 0.0063118 0.00631827 0.00632475 0.00633122 0.00633769 0.00634417 0.00635064 0.00635711 +-0.00138769 -0.0013074 -0.00115384 -0.000749706 3.60395E-05 0.00108896 0.00225402 0.00341499 0.00444893 0.00517926 0.00549249 0.00556769 0.00558518 0.00559329 0.00560001 0.00560652 0.00561301 0.00561949 0.00562597 0.00563245 0.00563894 0.00564542 0.0056519 0.00565838 0.00566486 0.00567134 0.00567782 0.0056843 0.00569078 0.00569726 0.00570375 0.00571023 0.00571671 0.00572319 0.00572967 0.00573615 0.00574263 0.00574911 0.00575559 0.00576207 0.00576855 0.00577504 0.00578152 0.005788 0.00579448 0.00580096 0.00580744 0.00581392 0.0058204 0.00582688 0.00583336 0.00583985 0.00584633 0.00585281 0.00585929 0.00586577 0.00587225 0.00587873 0.00588521 0.00589169 0.00589817 0.00590466 0.00591114 0.00591762 0.0059241 0.00593058 0.00593706 0.00594354 0.00595002 0.0059565 0.00596298 0.00596946 0.00597595 0.00598243 0.00598891 0.00599539 0.00600187 0.00600835 0.00601483 0.00602131 0.00602779 0.00603427 0.00604076 0.00604724 0.00605372 0.0060602 0.00606668 0.00607316 0.00607964 0.00608612 0.0060926 0.00609908 0.00610557 0.00611205 0.00611853 0.00612501 0.00613149 0.00613797 0.00614445 0.00615093 0.00615741 0.00616389 0.00617037 0.00617686 0.00618334 0.00618982 0.0061963 0.00620278 0.00620926 0.00621574 0.00622222 0.0062287 0.00623518 0.00624167 0.00624815 0.00625463 0.00626111 0.00626759 0.00627407 0.00628055 0.00628703 0.00629351 0.00629999 0.00630648 0.00631296 0.00631944 0.00632592 0.0063324 0.00633888 0.00634536 0.00635184 0.00635832 0.0063648 +-0.00138964 -0.0013092 -0.00115529 -0.000750407 3.61152E-05 0.00108961 0.00225518 0.00341679 0.0044518 0.00518386 0.0054986 0.0055743 0.00559188 0.00560001 0.00560674 0.00561327 0.00561976 0.00562625 0.00563274 0.00563923 0.00564572 0.00565221 0.0056587 0.00566518 0.00567167 0.00567816 0.00568465 0.00569114 0.00569763 0.00570412 0.00571061 0.0057171 0.00572359 0.00573008 0.00573656 0.00574305 0.00574954 0.00575603 0.00576252 0.00576901 0.0057755 0.00578199 0.00578848 0.00579497 0.00580145 0.00580794 0.00581443 0.00582092 0.00582741 0.0058339 0.00584039 0.00584688 0.00585337 0.00585986 0.00586635 0.00587283 0.00587932 0.00588581 0.0058923 0.00589879 0.00590528 0.00591177 0.00591826 0.00592475 0.00593124 0.00593772 0.00594421 0.0059507 0.00595719 0.00596368 0.00597017 0.00597666 0.00598315 0.00598964 0.00599613 0.00600262 0.0060091 0.00601559 0.00602208 0.00602857 0.00603506 0.00604155 0.00604804 0.00605453 0.00606102 0.00606751 0.006074 0.00608048 0.00608697 0.00609346 0.00609995 0.00610644 0.00611293 0.00611942 0.00612591 0.0061324 0.00613889 0.00614537 0.00615186 0.00615835 0.00616484 0.00617133 0.00617782 0.00618431 0.0061908 0.00619729 0.00620378 0.00621027 0.00621675 0.00622324 0.00622973 0.00623622 0.00624271 0.0062492 0.00625569 0.00626218 0.00626867 0.00627516 0.00628164 0.00628813 0.00629462 0.00630111 0.0063076 0.00631409 0.00632058 0.00632707 0.00633356 0.00634005 0.00634654 0.00635302 0.00635951 0.006366 0.00637249 +-0.00139159 -0.001311 -0.00115674 -0.000751107 3.6191E-05 0.00109025 0.00225633 0.0034186 0.00445466 0.00518844 0.00550471 0.0055809 0.00559858 0.00560673 0.00561347 0.00562 0.00562651 0.005633 0.0056395 0.005646 0.00565249 0.00565899 0.00566549 0.00567199 0.00567848 0.00568498 0.00569148 0.00569797 0.00570447 0.00571097 0.00571747 0.00572396 0.00573046 0.00573696 0.00574345 0.00574995 0.00575645 0.00576295 0.00576944 0.00577594 0.00578244 0.00578893 0.00579543 0.00580193 0.00580843 0.00581492 0.00582142 0.00582792 0.00583441 0.00584091 0.00584741 0.00585391 0.0058604 0.0058669 0.0058734 0.00587989 0.00588639 0.00589289 0.00589939 0.00590588 0.00591238 0.00591888 0.00592538 0.00593187 0.00593837 0.00594487 0.00595136 0.00595786 0.00596436 0.00597086 0.00597735 0.00598385 0.00599035 0.00599684 0.00600334 0.00600984 0.00601634 0.00602283 0.00602933 0.00603583 0.00604232 0.00604882 0.00605532 0.00606182 0.00606831 0.00607481 0.00608131 0.0060878 0.0060943 0.0061008 0.0061073 0.00611379 0.00612029 0.00612679 0.00613328 0.00613978 0.00614628 0.00615278 0.00615927 0.00616577 0.00617227 0.00617876 0.00618526 0.00619176 0.00619826 0.00620475 0.00621125 0.00621775 0.00622424 0.00623074 0.00623724 0.00624374 0.00625023 0.00625673 0.00626323 0.00626972 0.00627622 0.00628272 0.00628922 0.00629571 0.00630221 0.00630871 0.0063152 0.0063217 0.0063282 0.0063347 0.00634119 0.00634769 0.00635419 0.00636068 0.00636718 0.00637368 0.00638018 +-0.00139353 -0.0013128 -0.00115818 -0.000751806 3.62667E-05 0.0010909 0.00225749 0.0034204 0.00445752 0.00519301 0.00551081 0.0055875 0.00560527 0.00561345 0.0056202 0.00562674 0.00563325 0.00563975 0.00564626 0.00565276 0.00565927 0.00566577 0.00567228 0.00567878 0.00568529 0.00569179 0.0056983 0.00570481 0.00571131 0.00571782 0.00572432 0.00573083 0.00573733 0.00574384 0.00575034 0.00575685 0.00576335 0.00576986 0.00577636 0.00578287 0.00578937 0.00579588 0.00580238 0.00580889 0.00581539 0.0058219 0.0058284 0.00583491 0.00584141 0.00584792 0.00585443 0.00586093 0.00586744 0.00587394 0.00588045 0.00588695 0.00589346 0.00589996 0.00590647 0.00591297 0.00591948 0.00592598 0.00593249 0.00593899 0.0059455 0.005952 0.00595851 0.00596501 0.00597152 0.00597802 0.00598453 0.00599104 0.00599754 0.00600405 0.00601055 0.00601706 0.00602356 0.00603007 0.00603657 0.00604308 0.00604958 0.00605609 0.00606259 0.0060691 0.0060756 0.00608211 0.00608861 0.00609512 0.00610162 0.00610813 0.00611463 0.00612114 0.00612764 0.00613415 0.00614066 0.00614716 0.00615367 0.00616017 0.00616668 0.00617318 0.00617969 0.00618619 0.0061927 0.0061992 0.00620571 0.00621221 0.00621872 0.00622522 0.00623173 0.00623823 0.00624474 0.00625124 0.00625775 0.00626425 0.00627076 0.00627727 0.00628377 0.00629028 0.00629678 0.00630329 0.00630979 0.0063163 0.0063228 0.00632931 0.00633581 0.00634232 0.00634882 0.00635533 0.00636183 0.00636834 0.00637484 0.00638135 0.00638785 +-0.00139548 -0.0013146 -0.00115963 -0.000752504 3.63425E-05 0.00109154 0.00225864 0.00342219 0.00446037 0.00519757 0.0055169 0.0055941 0.00561196 0.00562016 0.00562692 0.00563347 0.00563998 0.0056465 0.00565301 0.00565952 0.00566604 0.00567255 0.00567906 0.00568558 0.00569209 0.0056986 0.00570512 0.00571163 0.00571814 0.00572466 0.00573117 0.00573768 0.0057442 0.00575071 0.00575722 0.00576374 0.00577025 0.00577676 0.00578328 0.00578979 0.0057963 0.00580282 0.00580933 0.00581584 0.00582236 0.00582887 0.00583538 0.0058419 0.00584841 0.00585492 0.00586144 0.00586795 0.00587446 0.00588098 0.00588749 0.005894 0.00590052 0.00590703 0.00591354 0.00592006 0.00592657 0.00593308 0.0059396 0.00594611 0.00595262 0.00595914 0.00596565 0.00597216 0.00597868 0.00598519 0.0059917 0.00599822 0.00600473 0.00601124 0.00601776 0.00602427 0.00603078 0.0060373 0.00604381 0.00605032 0.00605684 0.00606335 0.00606986 0.00607638 0.00608289 0.0060894 0.00609592 0.00610243 0.00610894 0.00611546 0.00612197 0.00612848 0.006135 0.00614151 0.00614802 0.00615454 0.00616105 0.00616756 0.00617408 0.00618059 0.0061871 0.00619362 0.00620013 0.00620664 0.00621316 0.00621967 0.00622618 0.0062327 0.00623921 0.00624572 0.00625224 0.00625875 0.00626526 0.00627178 0.00627829 0.0062848 0.00629132 0.00629783 0.00630434 0.00631086 0.00631737 0.00632388 0.0063304 0.00633691 0.00634342 0.00634994 0.00635645 0.00636296 0.00636948 0.00637599 0.0063825 0.00638902 0.00639553 +-0.00139743 -0.00131639 -0.00116107 -0.000753201 3.64183E-05 0.00109219 0.00225979 0.00342398 0.00446321 0.00520213 0.00552299 0.00560069 0.00561865 0.00562686 0.00563363 0.00564019 0.00564672 0.00565324 0.00565976 0.00566628 0.0056728 0.00567932 0.00568585 0.00569237 0.00569889 0.00570541 0.00571193 0.00571845 0.00572497 0.0057315 0.00573802 0.00574454 0.00575106 0.00575758 0.0057641 0.00577062 0.00577715 0.00578367 0.00579019 0.00579671 0.00580323 0.00580975 0.00581627 0.0058228 0.00582932 0.00583584 0.00584236 0.00584888 0.0058554 0.00586192 0.00586844 0.00587497 0.00588149 0.00588801 0.00589453 0.00590105 0.00590757 0.00591409 0.00592062 0.00592714 0.00593366 0.00594018 0.0059467 0.00595322 0.00595974 0.00596627 0.00597279 0.00597931 0.00598583 0.00599235 0.00599887 0.00600539 0.00601192 0.00601844 0.00602496 0.00603148 0.006038 0.00604452 0.00605104 0.00605756 0.00606409 0.00607061 0.00607713 0.00608365 0.00609017 0.00609669 0.00610321 0.00610974 0.00611626 0.00612278 0.0061293 0.00613582 0.00614234 0.00614886 0.00615539 0.00616191 0.00616843 0.00617495 0.00618147 0.00618799 0.00619451 0.00620104 0.00620756 0.00621408 0.0062206 0.00622712 0.00623364 0.00624016 0.00624669 0.00625321 0.00625973 0.00626625 0.00627277 0.00627929 0.00628581 0.00629233 0.00629886 0.00630538 0.0063119 0.00631842 0.00632494 0.00633146 0.00633798 0.00634451 0.00635103 0.00635755 0.00636407 0.00637059 0.00637711 0.00638363 0.00639016 0.00639668 0.0064032 +-0.00139937 -0.00131819 -0.00116251 -0.000753897 3.64942E-05 0.00109283 0.00226094 0.00342577 0.00446604 0.00520667 0.00552906 0.00560727 0.00562533 0.00563357 0.00564035 0.00564691 0.00565345 0.00565998 0.00566651 0.00567304 0.00567956 0.00568609 0.00569262 0.00569915 0.00570568 0.00571221 0.00571874 0.00572527 0.0057318 0.00573833 0.00574486 0.00575139 0.00575792 0.00576445 0.00577098 0.00577751 0.00578404 0.00579057 0.0057971 0.00580362 0.00581015 0.00581668 0.00582321 0.00582974 0.00583627 0.0058428 0.00584933 0.00585586 0.00586239 0.00586892 0.00587545 0.00588198 0.00588851 0.00589504 0.00590157 0.0059081 0.00591463 0.00592115 0.00592768 0.00593421 0.00594074 0.00594727 0.0059538 0.00596033 0.00596686 0.00597339 0.00597992 0.00598645 0.00599298 0.00599951 0.00600604 0.00601257 0.0060191 0.00602563 0.00603216 0.00603868 0.00604521 0.00605174 0.00605827 0.0060648 0.00607133 0.00607786 0.00608439 0.00609092 0.00609745 0.00610398 0.00611051 0.00611704 0.00612357 0.0061301 0.00613663 0.00614316 0.00614969 0.00615621 0.00616274 0.00616927 0.0061758 0.00618233 0.00618886 0.00619539 0.00620192 0.00620845 0.00621498 0.00622151 0.00622804 0.00623457 0.0062411 0.00624763 0.00625416 0.00626069 0.00626722 0.00627375 0.00628027 0.0062868 0.00629333 0.00629986 0.00630639 0.00631292 0.00631945 0.00632598 0.00633251 0.00633904 0.00634557 0.0063521 0.00635863 0.00636516 0.00637169 0.00637822 0.00638475 0.00639128 0.0063978 0.00640433 0.00641086 +-0.00140132 -0.00131999 -0.00116396 -0.000754592 3.657E-05 0.00109347 0.00226209 0.00342756 0.00446887 0.0052112 0.00553514 0.00561385 0.00563201 0.00564027 0.00564705 0.00565363 0.00566017 0.00566671 0.00567325 0.00567978 0.00568632 0.00569286 0.0056994 0.00570593 0.00571247 0.00571901 0.00572555 0.00573209 0.00573862 0.00574516 0.0057517 0.00575824 0.00576477 0.00577131 0.00577785 0.00578439 0.00579092 0.00579746 0.005804 0.00581054 0.00581707 0.00582361 0.00583015 0.00583669 0.00584322 0.00584976 0.0058563 0.00586284 0.00586937 0.00587591 0.00588245 0.00588899 0.00589552 0.00590206 0.0059086 0.00591514 0.00592167 0.00592821 0.00593475 0.00594129 0.00594782 0.00595436 0.0059609 0.00596744 0.00597397 0.00598051 0.00598705 0.00599359 0.00600012 0.00600666 0.0060132 0.00601974 0.00602627 0.00603281 0.00603935 0.00604589 0.00605242 0.00605896 0.0060655 0.00607204 0.00607857 0.00608511 0.00609165 0.00609819 0.00610472 0.00611126 0.0061178 0.00612434 0.00613087 0.00613741 0.00614395 0.00615049 0.00615702 0.00616356 0.0061701 0.00617664 0.00618317 0.00618971 0.00619625 0.00620279 0.00620932 0.00621586 0.0062224 0.00622894 0.00623547 0.00624201 0.00624855 0.00625509 0.00626162 0.00626816 0.0062747 0.00628124 0.00628777 0.00629431 0.00630085 0.00630739 0.00631392 0.00632046 0.006327 0.00633354 0.00634007 0.00634661 0.00635315 0.00635969 0.00636622 0.00637276 0.0063793 0.00638584 0.00639237 0.00639891 0.00640545 0.00641199 0.00641852 +-0.00140326 -0.00132178 -0.0011654 -0.000755285 3.66459E-05 0.00109411 0.00226323 0.00342934 0.00447169 0.00521572 0.0055412 0.00562043 0.00563868 0.00564696 0.00565376 0.00566034 0.00566689 0.00567344 0.00567998 0.00568653 0.00569308 0.00569962 0.00570617 0.00571271 0.00571926 0.0057258 0.00573235 0.00573889 0.00574544 0.00575199 0.00575853 0.00576508 0.00577162 0.00577817 0.00578471 0.00579126 0.00579781 0.00580435 0.0058109 0.00581744 0.00582399 0.00583053 0.00583708 0.00584362 0.00585017 0.00585672 0.00586326 0.00586981 0.00587635 0.0058829 0.00588944 0.00589599 0.00590253 0.00590908 0.00591563 0.00592217 0.00592872 0.00593526 0.00594181 0.00594835 0.0059549 0.00596144 0.00596799 0.00597454 0.00598108 0.00598763 0.00599417 0.00600072 0.00600726 0.00601381 0.00602035 0.0060269 0.00603345 0.00603999 0.00604654 0.00605308 0.00605963 0.00606617 0.00607272 0.00607926 0.00608581 0.00609236 0.0060989 0.00610545 0.00611199 0.00611854 0.00612508 0.00613163 0.00613818 0.00614472 0.00615127 0.00615781 0.00616436 0.0061709 0.00617745 0.00618399 0.00619054 0.00619709 0.00620363 0.00621018 0.00621672 0.00622327 0.00622981 0.00623636 0.0062429 0.00624945 0.006256 0.00626254 0.00626909 0.00627563 0.00628218 0.00628872 0.00629527 0.00630181 0.00630836 0.00631491 0.00632145 0.006328 0.00633454 0.00634109 0.00634763 0.00635418 0.00636072 0.00636727 0.00637382 0.00638036 0.00638691 0.00639345 0.0064 0.00640654 0.00641309 0.00641963 0.00642618 +-0.0014052 -0.00132358 -0.00116684 -0.000755978 3.67219E-05 0.00109475 0.00226437 0.00343112 0.0044745 0.00522023 0.00554725 0.005627 0.00564535 0.00565369 0.00566046 0.00566705 0.00567361 0.00568016 0.00568672 0.00569327 0.00569983 0.00570638 0.00571293 0.00571949 0.00572604 0.00573259 0.00573915 0.0057457 0.00575225 0.00575881 0.00576536 0.00577192 0.00577847 0.00578502 0.00579158 0.00579813 0.00580468 0.00581124 0.00581779 0.00582434 0.0058309 0.00583745 0.00584401 0.00585056 0.00585711 0.00586367 0.00587022 0.00587677 0.00588333 0.00588988 0.00589643 0.00590299 0.00590954 0.0059161 0.00592265 0.0059292 0.00593576 0.00594231 0.00594886 0.00595542 0.00596197 0.00596852 0.00597508 0.00598163 0.00598819 0.00599474 0.00600129 0.00600785 0.0060144 0.00602095 0.00602751 0.00603406 0.00604061 0.00604717 0.00605372 0.00606028 0.00606683 0.00607338 0.00607994 0.00608649 0.00609304 0.0060996 0.00610615 0.0061127 0.00611926 0.00612581 0.00613237 0.00613892 0.00614547 0.00615203 0.00615858 0.00616513 0.00617169 0.00617824 0.00618479 0.00619135 0.0061979 0.00620446 0.00621101 0.00621756 0.00622412 0.00623067 0.00623722 0.00624378 0.00625033 0.00625688 0.00626344 0.00626999 0.00627655 0.0062831 0.00628965 0.00629621 0.00630276 0.00630931 0.00631587 0.00632242 0.00632897 0.00633553 0.00634208 0.00634864 0.00635519 0.00636174 0.0063683 0.00637485 0.0063814 0.00638796 0.00639451 0.00640106 0.00640762 0.00641417 0.00642072 0.00642728 0.00643383 +-0.00140714 -0.00132537 -0.00116828 -0.000756669 3.67978E-05 0.00109539 0.00226551 0.00343289 0.00447731 0.00522474 0.0055533 0.00563356 0.00565201 0.00566038 0.00566716 0.00567376 0.00568032 0.00568689 0.00569345 0.00570001 0.00570657 0.00571313 0.00571969 0.00572626 0.00573282 0.00573938 0.00574594 0.0057525 0.00575906 0.00576563 0.00577219 0.00577875 0.00578531 0.00579187 0.00579843 0.005805 0.00581156 0.00581812 0.00582468 0.00583124 0.0058378 0.00584437 0.00585093 0.00585749 0.00586405 0.00587061 0.00587717 0.00588374 0.0058903 0.00589686 0.00590342 0.00590998 0.00591654 0.00592311 0.00592967 0.00593623 0.00594279 0.00594935 0.00595591 0.00596248 0.00596904 0.0059756 0.00598216 0.00598872 0.00599528 0.00600185 0.00600841 0.00601497 0.00602153 0.00602809 0.00603465 0.00604122 0.00604778 0.00605434 0.0060609 0.00606746 0.00607403 0.00608059 0.00608715 0.00609371 0.00610027 0.00610683 0.0061134 0.00611996 0.00612652 0.00613308 0.00613964 0.0061462 0.00615277 0.00615933 0.00616589 0.00617245 0.00617901 0.00618557 0.00619214 0.0061987 0.00620526 0.00621182 0.00621838 0.00622494 0.00623151 0.00623807 0.00624463 0.00625119 0.00625775 0.00626431 0.00627088 0.00627744 0.006284 0.00629056 0.00629712 0.00630368 0.00631025 0.00631681 0.00632337 0.00632993 0.00633649 0.00634305 0.00634962 0.00635618 0.00636274 0.0063693 0.00637586 0.00638242 0.00638899 0.00639555 0.00640211 0.00640867 0.00641523 0.00642179 0.00642836 0.00643492 0.00644148 +-0.00140909 -0.00132716 -0.00116971 -0.00075736 3.68738E-05 0.00109602 0.00226665 0.00343466 0.00448011 0.00522923 0.00555934 0.00564013 0.00565867 0.00566706 0.00567388 0.00568046 0.00568703 0.0056936 0.00570017 0.00570674 0.00571331 0.00571988 0.00572645 0.00573302 0.00573959 0.00574616 0.00575273 0.0057593 0.00576587 0.00577244 0.00577901 0.00578558 0.00579215 0.00579872 0.00580529 0.00581186 0.00581843 0.005825 0.00583157 0.00583814 0.00584471 0.00585128 0.00585785 0.00586442 0.00587099 0.00587756 0.00588413 0.00589069 0.00589726 0.00590383 0.0059104 0.00591697 0.00592354 0.00593011 0.00593668 0.00594325 0.00594982 0.00595639 0.00596296 0.00596953 0.0059761 0.00598267 0.00598924 0.00599581 0.00600238 0.00600895 0.00601552 0.00602209 0.00602866 0.00603523 0.0060418 0.00604837 0.00605494 0.00606151 0.00606808 0.00607465 0.00608122 0.00608779 0.00609436 0.00610093 0.0061075 0.00611407 0.00612064 0.00612721 0.00613378 0.00614034 0.00614691 0.00615348 0.00616005 0.00616662 0.00617319 0.00617976 0.00618633 0.0061929 0.00619947 0.00620604 0.00621261 0.00621918 0.00622575 0.00623232 0.00623889 0.00624546 0.00625203 0.0062586 0.00626517 0.00627174 0.00627831 0.00628488 0.00629145 0.00629802 0.00630459 0.00631116 0.00631773 0.0063243 0.00633087 0.00633744 0.00634401 0.00635058 0.00635715 0.00636372 0.00637029 0.00637686 0.00638342 0.00638999 0.00639656 0.00640313 0.0064097 0.00641627 0.00642284 0.00642941 0.00643598 0.00644255 0.00644912 +-0.00141103 -0.00132896 -0.00117115 -0.000758049 3.69498E-05 0.00109666 0.00226779 0.00343642 0.00448291 0.00523371 0.00556538 0.00564668 0.00566533 0.00567373 0.00568057 0.00568715 0.00569374 0.00570032 0.00570689 0.00571347 0.00572005 0.00572663 0.0057332 0.00573978 0.00574636 0.00575294 0.00575952 0.00576609 0.00577267 0.00577925 0.00578583 0.0057924 0.00579898 0.00580556 0.00581214 0.00581872 0.00582529 0.00583187 0.00583845 0.00584503 0.0058516 0.00585818 0.00586476 0.00587134 0.00587792 0.00588449 0.00589107 0.00589765 0.00590423 0.0059108 0.00591738 0.00592396 0.00593054 0.00593712 0.00594369 0.00595027 0.00595685 0.00596343 0.00597 0.00597658 0.00598316 0.00598974 0.00599632 0.00600289 0.00600947 0.00601605 0.00602263 0.0060292 0.00603578 0.00604236 0.00604894 0.00605552 0.00606209 0.00606867 0.00607525 0.00608183 0.0060884 0.00609498 0.00610156 0.00610814 0.00611472 0.00612129 0.00612787 0.00613445 0.00614103 0.0061476 0.00615418 0.00616076 0.00616734 0.00617392 0.00618049 0.00618707 0.00619365 0.00620023 0.0062068 0.00621338 0.00621996 0.00622654 0.00623312 0.00623969 0.00624627 0.00625285 0.00625943 0.006266 0.00627258 0.00627916 0.00628574 0.00629232 0.00629889 0.00630547 0.00631205 0.00631863 0.0063252 0.00633178 0.00633836 0.00634494 0.00635152 0.00635809 0.00636467 0.00637125 0.00637783 0.00638441 0.00639098 0.00639756 0.00640414 0.00641072 0.00641729 0.00642387 0.00643045 0.00643703 0.00644361 0.00645018 0.00645676 +-0.00141297 -0.00133075 -0.00117259 -0.000758738 3.70258E-05 0.00109729 0.00226892 0.00343819 0.00448569 0.00523818 0.0055714 0.00565324 0.00567198 0.00568041 0.00568725 0.00569388 0.00570044 0.00570703 0.00571361 0.0057202 0.00572678 0.00573337 0.00573995 0.00574654 0.00575313 0.00575971 0.0057663 0.00577288 0.00577947 0.00578606 0.00579264 0.00579923 0.00580581 0.0058124 0.00581898 0.00582557 0.00583216 0.00583874 0.00584533 0.00585191 0.0058585 0.00586508 0.00587167 0.00587826 0.00588484 0.00589143 0.00589801 0.0059046 0.00591119 0.00591777 0.00592436 0.00593094 0.00593753 0.00594411 0.0059507 0.00595729 0.00596387 0.00597046 0.00597704 0.00598363 0.00599022 0.0059968 0.00600339 0.00600997 0.00601656 0.00602314 0.00602973 0.00603632 0.0060429 0.00604949 0.00605607 0.00606266 0.00606925 0.00607583 0.00608242 0.006089 0.00609559 0.00610217 0.00610876 0.00611535 0.00612193 0.00612852 0.0061351 0.00614169 0.00614828 0.00615486 0.00616145 0.00616803 0.00617462 0.0061812 0.00618779 0.00619438 0.00620096 0.00620755 0.00621413 0.00622072 0.0062273 0.00623389 0.00624048 0.00624706 0.00625365 0.00626023 0.00626682 0.00627341 0.00627999 0.00628658 0.00629316 0.00629975 0.00630633 0.00631292 0.00631951 0.00632609 0.00633268 0.00633926 0.00634585 0.00635244 0.00635902 0.00636561 0.00637219 0.00637878 0.00638536 0.00639195 0.00639854 0.00640512 0.00641171 0.00641829 0.00642488 0.00643147 0.00643805 0.00644464 0.00645122 0.00645781 0.00646439 +-0.00141491 -0.00133254 -0.00117402 -0.000759425 3.71019E-05 0.00109793 0.00227005 0.00343994 0.00448847 0.00524264 0.00557742 0.00565978 0.00567863 0.00568708 0.00569393 0.00570057 0.00570714 0.00571373 0.00572032 0.00572692 0.00573351 0.00574011 0.0057467 0.00575329 0.00575989 0.00576648 0.00577308 0.00577967 0.00578626 0.00579286 0.00579945 0.00580604 0.00581264 0.00581923 0.00582583 0.00583242 0.00583901 0.00584561 0.0058522 0.0058588 0.00586539 0.00587198 0.00587858 0.00588517 0.00589176 0.00589836 0.00590495 0.00591155 0.00591814 0.00592473 0.00593133 0.00593792 0.00594452 0.00595111 0.0059577 0.0059643 0.00597089 0.00597748 0.00598408 0.00599067 0.00599727 0.00600386 0.00601045 0.00601705 0.00602364 0.00603024 0.00603683 0.00604342 0.00605002 0.00605661 0.0060632 0.0060698 0.00607639 0.00608299 0.00608958 0.00609617 0.00610277 0.00610936 0.00611596 0.00612255 0.00612914 0.00613574 0.00614233 0.00614892 0.00615552 0.00616211 0.00616871 0.0061753 0.00618189 0.00618849 0.00619508 0.00620168 0.00620827 0.00621486 0.00622146 0.00622805 0.00623465 0.00624124 0.00624783 0.00625443 0.00626102 0.00626761 0.00627421 0.0062808 0.0062874 0.00629399 0.00630058 0.00630718 0.00631377 0.00632037 0.00632696 0.00633355 0.00634015 0.00634674 0.00635333 0.00635993 0.00636652 0.00637312 0.00637971 0.0063863 0.0063929 0.00639949 0.00640609 0.00641268 0.00641927 0.00642587 0.00643246 0.00643905 0.00644565 0.00645224 0.00645884 0.00646543 0.00647202 +-0.00141685 -0.00133433 -0.00117545 -0.000760111 3.7178E-05 0.00109856 0.00227118 0.0034417 0.00449125 0.00524709 0.00558343 0.00566633 0.00568531 0.00569374 0.00570061 0.00570725 0.00571383 0.00572043 0.00572703 0.00573364 0.00574024 0.00574684 0.00575344 0.00576004 0.00576665 0.00577325 0.00577985 0.00578645 0.00579305 0.00579965 0.00580626 0.00581286 0.00581946 0.00582606 0.00583266 0.00583927 0.00584587 0.00585247 0.00585907 0.00586567 0.00587228 0.00587888 0.00588548 0.00589208 0.00589868 0.00590528 0.00591189 0.00591849 0.00592509 0.00593169 0.00593829 0.0059449 0.0059515 0.0059581 0.0059647 0.0059713 0.00597791 0.00598451 0.00599111 0.00599771 0.00600431 0.00601091 0.00601752 0.00602412 0.00603072 0.00603732 0.00604392 0.00605053 0.00605713 0.00606373 0.00607033 0.00607693 0.00608354 0.00609014 0.00609674 0.00610334 0.00610994 0.00611655 0.00612315 0.00612975 0.00613635 0.00614295 0.00614955 0.00615616 0.00616276 0.00616936 0.00617596 0.00618256 0.00618917 0.00619577 0.00620237 0.00620897 0.00621557 0.00622218 0.00622878 0.00623538 0.00624198 0.00624858 0.00625518 0.00626179 0.00626839 0.00627499 0.00628159 0.00628819 0.0062948 0.0063014 0.006308 0.0063146 0.0063212 0.00632781 0.00633441 0.00634101 0.00634761 0.00635421 0.00636081 0.00636742 0.00637402 0.00638062 0.00638722 0.00639382 0.00640043 0.00640703 0.00641363 0.00642023 0.00642683 0.00643344 0.00644004 0.00644664 0.00645324 0.00645984 0.00646644 0.00647305 0.00647965 +-0.00141879 -0.00133612 -0.00117688 -0.000760796 3.72541E-05 0.00109919 0.00227231 0.00344345 0.00449401 0.00525153 0.00558943 0.00567287 0.00569195 0.0057004 0.00570728 0.00571393 0.00572055 0.00572713 0.00573374 0.00574035 0.00574696 0.00575357 0.00576018 0.00576679 0.0057734 0.00578001 0.00578662 0.00579323 0.00579984 0.00580645 0.00581306 0.00581967 0.00582628 0.00583289 0.0058395 0.00584611 0.00585272 0.00585933 0.00586594 0.00587255 0.00587916 0.00588577 0.00589238 0.00589899 0.0059056 0.00591221 0.00591882 0.00592543 0.00593204 0.00593865 0.00594526 0.00595187 0.00595848 0.00596509 0.0059717 0.00597831 0.00598492 0.00599153 0.00599814 0.00600475 0.00601136 0.00601797 0.00602458 0.00603119 0.0060378 0.00604441 0.00605102 0.00605762 0.00606423 0.00607084 0.00607745 0.00608406 0.00609067 0.00609728 0.00610389 0.0061105 0.00611711 0.00612372 0.00613033 0.00613694 0.00614355 0.00615016 0.00615677 0.00616338 0.00616999 0.0061766 0.00618321 0.00618982 0.00619643 0.00620304 0.00620965 0.00621626 0.00622287 0.00622948 0.00623609 0.0062427 0.00624931 0.00625592 0.00626253 0.00626914 0.00627575 0.00628236 0.00628897 0.00629558 0.00630219 0.0063088 0.00631541 0.00632202 0.00632863 0.00633524 0.00634185 0.00634846 0.00635507 0.00636168 0.00636829 0.0063749 0.00638151 0.00638812 0.00639473 0.00640134 0.00640795 0.00641456 0.00642117 0.00642778 0.00643439 0.006441 0.00644761 0.00645422 0.00646083 0.00646744 0.00647405 0.00648066 0.00648727 +-0.00142072 -0.00133791 -0.00117831 -0.00076148 3.73302E-05 0.00109982 0.00227344 0.0034452 0.00449677 0.00525596 0.00559543 0.0056794 0.00569858 0.00570706 0.00571395 0.00572061 0.00572723 0.00573382 0.00574044 0.00574706 0.00575368 0.00576029 0.00576691 0.00577353 0.00578015 0.00578677 0.00579338 0.0058 0.00580662 0.00581324 0.00581986 0.00582647 0.00583309 0.00583971 0.00584633 0.00585295 0.00585956 0.00586618 0.0058728 0.00587942 0.00588604 0.00589265 0.00589927 0.00590589 0.00591251 0.00591913 0.00592574 0.00593236 0.00593898 0.0059456 0.00595221 0.00595883 0.00596545 0.00597207 0.00597869 0.0059853 0.00599192 0.00599854 0.00600516 0.00601178 0.00601839 0.00602501 0.00603163 0.00603825 0.00604487 0.00605148 0.0060581 0.00606472 0.00607134 0.00607796 0.00608457 0.00609119 0.00609781 0.00610443 0.00611105 0.00611766 0.00612428 0.0061309 0.00613752 0.00614413 0.00615075 0.00615737 0.00616399 0.00617061 0.00617722 0.00618384 0.00619046 0.00619708 0.0062037 0.00621031 0.00621693 0.00622355 0.00623017 0.00623679 0.0062434 0.00625002 0.00625664 0.00626326 0.00626988 0.00627649 0.00628311 0.00628973 0.00629635 0.00630297 0.00630958 0.0063162 0.00632282 0.00632944 0.00633605 0.00634267 0.00634929 0.00635591 0.00636253 0.00636914 0.00637576 0.00638238 0.006389 0.00639562 0.00640223 0.00640885 0.00641547 0.00642209 0.00642871 0.00643532 0.00644194 0.00644856 0.00645518 0.0064618 0.00646841 0.00647503 0.00648165 0.00648827 0.00649489 +-0.00142266 -0.0013397 -0.00117974 -0.000762163 3.74064E-05 0.00110046 0.00227456 0.00344694 0.00449953 0.00526039 0.00560142 0.00568593 0.00570522 0.00571371 0.00572061 0.00572728 0.00573391 0.00574054 0.00574714 0.00575376 0.00576039 0.00576702 0.00577364 0.00578027 0.00578689 0.00579352 0.00580015 0.00580677 0.0058134 0.00582002 0.00582665 0.00583328 0.0058399 0.00584653 0.00585315 0.00585978 0.00586641 0.00587303 0.00587966 0.00588628 0.00589291 0.00589954 0.00590616 0.00591279 0.00591941 0.00592604 0.00593267 0.00593929 0.00594592 0.00595254 0.00595917 0.00596579 0.00597242 0.00597905 0.00598567 0.0059923 0.00599892 0.00600555 0.00601218 0.0060188 0.00602543 0.00603205 0.00603868 0.00604531 0.00605193 0.00605856 0.00606518 0.00607181 0.00607844 0.00608506 0.00609169 0.00609831 0.00610494 0.00611157 0.00611819 0.00612482 0.00613144 0.00613807 0.0061447 0.00615132 0.00615795 0.00616457 0.0061712 0.00617783 0.00618445 0.00619108 0.0061977 0.00620433 0.00621095 0.00621758 0.00622421 0.00623083 0.00623746 0.00624408 0.00625071 0.00625734 0.00626396 0.00627059 0.00627721 0.00628384 0.00629047 0.00629709 0.00630372 0.00631034 0.00631697 0.0063236 0.00633022 0.00633685 0.00634347 0.0063501 0.00635673 0.00636335 0.00636998 0.0063766 0.00638323 0.00638986 0.00639648 0.00640311 0.00640973 0.00641636 0.00642299 0.00642961 0.00643624 0.00644286 0.00644949 0.00645611 0.00646274 0.00646937 0.00647599 0.00648262 0.00648924 0.00649587 0.0065025 +-0.0014246 -0.00134148 -0.00118117 -0.000762845 3.74826E-05 0.00110108 0.00227568 0.00344868 0.00450227 0.0052648 0.0056074 0.00569245 0.00571184 0.00572036 0.00572727 0.00573395 0.00574059 0.00574722 0.00575383 0.00576047 0.0057671 0.00577373 0.00578037 0.005787 0.00579364 0.00580027 0.0058069 0.00581354 0.00582017 0.00582681 0.00583344 0.00584007 0.00584671 0.00585334 0.00585998 0.00586661 0.00587324 0.00587988 0.00588651 0.00589315 0.00589978 0.00590641 0.00591305 0.00591968 0.00592632 0.00593295 0.00593958 0.00594622 0.00595285 0.00595948 0.00596612 0.00597275 0.00597939 0.00598602 0.00599265 0.00599929 0.00600592 0.00601256 0.00601919 0.00602582 0.00603246 0.00603909 0.00604573 0.00605236 0.00605899 0.00606563 0.00607226 0.0060789 0.00608553 0.00609216 0.0060988 0.00610543 0.00611207 0.0061187 0.00612533 0.00613197 0.0061386 0.00614524 0.00615187 0.0061585 0.00616514 0.00617177 0.00617841 0.00618504 0.00619167 0.00619831 0.00620494 0.00621158 0.00621821 0.00622484 0.00623148 0.00623811 0.00624475 0.00625138 0.00625801 0.00626465 0.00627128 0.00627792 0.00628455 0.00629118 0.00629782 0.00630445 0.00631108 0.00631772 0.00632435 0.00633099 0.00633762 0.00634425 0.00635089 0.00635752 0.00636416 0.00637079 0.00637742 0.00638406 0.00639069 0.00639733 0.00640396 0.00641059 0.00641723 0.00642386 0.0064305 0.00643713 0.00644376 0.0064504 0.00645703 0.00646367 0.0064703 0.00647693 0.00648357 0.0064902 0.00649684 0.00650347 0.0065101 +-0.00142654 -0.00134327 -0.0011826 -0.000763526 3.75588E-05 0.00110171 0.0022768 0.00345042 0.00450501 0.0052692 0.00561337 0.00569897 0.00571847 0.00572701 0.00573393 0.00574061 0.00574726 0.0057539 0.00576052 0.00576716 0.00577381 0.00578045 0.00578709 0.00579373 0.00580037 0.00580702 0.00581366 0.0058203 0.00582694 0.00583358 0.00584023 0.00584687 0.00585351 0.00586015 0.00586679 0.00587344 0.00588008 0.00588672 0.00589336 0.0059 0.00590665 0.00591329 0.00591993 0.00592657 0.00593321 0.00593985 0.0059465 0.00595314 0.00595978 0.00596642 0.00597306 0.00597971 0.00598635 0.00599299 0.00599963 0.00600627 0.00601292 0.00601956 0.0060262 0.00603284 0.00603948 0.00604613 0.00605277 0.00605941 0.00606605 0.00607269 0.00607934 0.00608598 0.00609262 0.00609926 0.0061059 0.00611255 0.00611919 0.00612583 0.00613247 0.00613911 0.00614576 0.0061524 0.00615904 0.00616568 0.00617232 0.00617897 0.00618561 0.00619225 0.00619889 0.00620553 0.00621218 0.00621882 0.00622546 0.0062321 0.00623874 0.00624539 0.00625203 0.00625867 0.00626531 0.00627195 0.0062786 0.00628524 0.00629188 0.00629852 0.00630516 0.00631181 0.00631845 0.00632509 0.00633173 0.00633837 0.00634502 0.00635166 0.0063583 0.00636494 0.00637158 0.00637823 0.00638487 0.00639151 0.00639815 0.00640479 0.00641143 0.00641808 0.00642472 0.00643136 0.006438 0.00644464 0.00645129 0.00645793 0.00646457 0.00647121 0.00647785 0.0064845 0.00649114 0.00649778 0.00650442 0.00651106 0.00651771 +-0.00142847 -0.00134506 -0.00118403 -0.000764206 3.76351E-05 0.00110234 0.00227792 0.00345215 0.00450774 0.00527359 0.00561934 0.00570549 0.00572509 0.00573365 0.00574058 0.00574727 0.00575393 0.00576058 0.00576723 0.00577386 0.00578051 0.00578716 0.00579381 0.00580046 0.00580711 0.00581376 0.00582041 0.00582706 0.00583371 0.00584036 0.00584701 0.00585366 0.00586031 0.00586696 0.00587361 0.00588026 0.00588691 0.00589356 0.00590021 0.00590686 0.00591351 0.00592016 0.00592681 0.00593346 0.00594011 0.00594676 0.00595341 0.00596006 0.00596671 0.00597336 0.00598001 0.00598666 0.00599331 0.00599996 0.00600661 0.00601326 0.00601991 0.00602656 0.00603321 0.00603986 0.00604651 0.00605316 0.00605981 0.00606646 0.00607311 0.00607976 0.00608641 0.00609306 0.00609971 0.00610636 0.00611301 0.00611966 0.00612631 0.00613296 0.00613961 0.00614626 0.00615291 0.00615956 0.00616621 0.00617286 0.00617951 0.00618616 0.00619281 0.00619946 0.00620611 0.00621276 0.00621941 0.00622606 0.00623271 0.00623936 0.00624601 0.00625266 0.00625931 0.00626596 0.00627261 0.00627926 0.00628591 0.00629256 0.00629921 0.00630586 0.00631251 0.00631916 0.00632581 0.00633246 0.00633911 0.00634576 0.00635241 0.00635906 0.00636571 0.00637236 0.00637901 0.00638566 0.00639231 0.00639896 0.00640561 0.00641226 0.00641891 0.00642556 0.00643221 0.00643886 0.00644551 0.00645216 0.00645881 0.00646545 0.0064721 0.00647875 0.0064854 0.00649205 0.0064987 0.00650535 0.006512 0.00651865 0.0065253 +-0.00143041 -0.00134684 -0.00118545 -0.000764885 3.77113E-05 0.00110297 0.00227903 0.00345388 0.00451047 0.00527797 0.0056253 0.005712 0.0057317 0.00574029 0.00574723 0.00575393 0.00576059 0.00576725 0.00577391 0.00578055 0.00578721 0.00579386 0.00580052 0.00580718 0.00581384 0.0058205 0.00582715 0.00583381 0.00584047 0.00584713 0.00585379 0.00586044 0.0058671 0.00587376 0.00588042 0.00588707 0.00589373 0.00590039 0.00590705 0.00591371 0.00592036 0.00592702 0.00593368 0.00594034 0.005947 0.00595365 0.00596031 0.00596697 0.00597363 0.00598029 0.00598694 0.0059936 0.00600026 0.00600692 0.00601358 0.00602023 0.00602689 0.00603355 0.00604021 0.00604687 0.00605352 0.00606018 0.00606684 0.0060735 0.00608016 0.00608681 0.00609347 0.00610013 0.00610679 0.00611345 0.0061201 0.00612676 0.00613342 0.00614008 0.00614674 0.00615339 0.00616005 0.00616671 0.00617337 0.00618003 0.00618668 0.00619334 0.0062 0.00620666 0.00621332 0.00621997 0.00622663 0.00623329 0.00623995 0.00624661 0.00625326 0.00625992 0.00626658 0.00627324 0.0062799 0.00628655 0.00629321 0.00629987 0.00630653 0.00631319 0.00631984 0.0063265 0.00633316 0.00633982 0.00634648 0.00635313 0.00635979 0.00636645 0.00637311 0.00637977 0.00638642 0.00639308 0.00639974 0.0064064 0.00641306 0.00641971 0.00642637 0.00643303 0.00643969 0.00644634 0.006453 0.00645966 0.00646632 0.00647298 0.00647963 0.00648629 0.00649295 0.00649961 0.00650627 0.00651292 0.00651958 0.00652624 0.0065329 +-0.00143234 -0.00134863 -0.00118688 -0.000765563 3.77876E-05 0.00110359 0.00228015 0.00345561 0.00451319 0.00528234 0.00563125 0.0057185 0.00573831 0.00574692 0.00575387 0.00576058 0.00576725 0.00577392 0.00578059 0.00578725 0.0057939 0.00580057 0.00580723 0.0058139 0.00582056 0.00582723 0.0058339 0.00584056 0.00584723 0.00585389 0.00586056 0.00586722 0.00587389 0.00588056 0.00588722 0.00589389 0.00590055 0.00590722 0.00591389 0.00592055 0.00592722 0.00593388 0.00594055 0.00594722 0.00595388 0.00596055 0.00596721 0.00597388 0.00598055 0.00598721 0.00599388 0.00600054 0.00600721 0.00601388 0.00602054 0.00602721 0.00603387 0.00604054 0.00604721 0.00605387 0.00606054 0.0060672 0.00607387 0.00608054 0.0060872 0.00609387 0.00610053 0.0061072 0.00611387 0.00612053 0.0061272 0.00613386 0.00614053 0.0061472 0.00615386 0.00616053 0.00616719 0.00617386 0.00618053 0.00618719 0.00619386 0.00620052 0.00620719 0.00621386 0.00622052 0.00622719 0.00623385 0.00624052 0.00624719 0.00625385 0.00626052 0.00626718 0.00627385 0.00628052 0.00628718 0.00629385 0.00630051 0.00630718 0.00631385 0.00632051 0.00632718 0.00633384 0.00634051 0.00634717 0.00635384 0.00636051 0.00636717 0.00637384 0.0063805 0.00638717 0.00639384 0.0064005 0.00640717 0.00641383 0.0064205 0.00642717 0.00643383 0.0064405 0.00644716 0.00645383 0.0064605 0.00646716 0.00647383 0.00648049 0.00648716 0.00649383 0.00650049 0.00650716 0.00651382 0.00652049 0.00652716 0.00653382 0.00654049 +-0.00143427 -0.00135041 -0.0011883 -0.000766239 3.7864E-05 0.00110422 0.00228126 0.00345733 0.00451591 0.00528671 0.00563719 0.005725 0.00574492 0.00575355 0.00576051 0.00576723 0.00577391 0.00578058 0.00578726 0.00579393 0.00580059 0.00580726 0.00581394 0.00582061 0.00582729 0.00583396 0.00584063 0.00584731 0.00585398 0.00586065 0.00586733 0.005874 0.00588068 0.00588735 0.00589402 0.0059007 0.00590737 0.00591405 0.00592072 0.00592739 0.00593407 0.00594074 0.00594742 0.00595409 0.00596076 0.00596744 0.00597411 0.00598079 0.00598746 0.00599413 0.00600081 0.00600748 0.00601416 0.00602083 0.0060275 0.00603418 0.00604085 0.00604753 0.0060542 0.00606087 0.00606755 0.00607422 0.0060809 0.00608757 0.00609424 0.00610092 0.00610759 0.00611427 0.00612094 0.00612761 0.00613429 0.00614096 0.00614764 0.00615431 0.00616098 0.00616766 0.00617433 0.00618101 0.00618768 0.00619435 0.00620103 0.0062077 0.00621438 0.00622105 0.00622772 0.0062344 0.00624107 0.00624774 0.00625442 0.00626109 0.00626777 0.00627444 0.00628111 0.00628779 0.00629446 0.00630114 0.00630781 0.00631448 0.00632116 0.00632783 0.00633451 0.00634118 0.00634785 0.00635453 0.0063612 0.00636788 0.00637455 0.00638122 0.0063879 0.00639457 0.00640125 0.00640792 0.00641459 0.00642127 0.00642794 0.00643462 0.00644129 0.00644796 0.00645464 0.00646131 0.00646799 0.00647466 0.00648133 0.00648801 0.00649468 0.00650136 0.00650803 0.0065147 0.00652138 0.00652805 0.00653473 0.0065414 0.00654807 +-0.00143621 -0.00135219 -0.00118972 -0.000766915 3.79403E-05 0.00110484 0.00228237 0.00345905 0.00451861 0.00529106 0.00564313 0.0057315 0.00575152 0.00576018 0.00576715 0.00577387 0.00578056 0.00578725 0.00579393 0.00580061 0.00580728 0.00581396 0.00582064 0.00582732 0.005834 0.00584069 0.00584737 0.00585405 0.00586073 0.00586741 0.00587409 0.00588078 0.00588746 0.00589414 0.00590082 0.0059075 0.00591419 0.00592087 0.00592755 0.00593423 0.00594091 0.0059476 0.00595428 0.00596096 0.00596764 0.00597432 0.00598101 0.00598769 0.00599437 0.00600105 0.00600773 0.00601442 0.0060211 0.00602778 0.00603446 0.00604114 0.00604783 0.00605451 0.00606119 0.00606787 0.00607455 0.00608124 0.00608792 0.0060946 0.00610128 0.00610796 0.00611465 0.00612133 0.00612801 0.00613469 0.00614137 0.00614805 0.00615474 0.00616142 0.0061681 0.00617478 0.00618146 0.00618815 0.00619483 0.00620151 0.00620819 0.00621487 0.00622156 0.00622824 0.00623492 0.0062416 0.00624828 0.00625497 0.00626165 0.00626833 0.00627501 0.00628169 0.00628838 0.00629506 0.00630174 0.00630842 0.0063151 0.00632179 0.00632847 0.00633515 0.00634183 0.00634851 0.0063552 0.00636188 0.00636856 0.00637524 0.00638192 0.00638861 0.00639529 0.00640197 0.00640865 0.00641533 0.00642201 0.0064287 0.00643538 0.00644206 0.00644874 0.00645542 0.00646211 0.00646879 0.00647547 0.00648215 0.00648883 0.00649552 0.0065022 0.00650888 0.00651556 0.00652224 0.00652893 0.00653561 0.00654229 0.00654897 0.00655565 +-0.00143814 -0.00135398 -0.00119114 -0.00076759 3.80167E-05 0.00110546 0.00228348 0.00346076 0.00452132 0.0052954 0.00564905 0.00573799 0.00575812 0.0057668 0.00577378 0.00578052 0.00578721 0.0057939 0.00580059 0.00580728 0.00581397 0.00582065 0.00582734 0.00583403 0.00584072 0.00584741 0.0058541 0.00586079 0.00586748 0.00587417 0.00588086 0.00588755 0.00589424 0.00590093 0.00590762 0.00591431 0.005921 0.00592769 0.00593438 0.00594107 0.00594776 0.00595445 0.00596114 0.00596783 0.00597452 0.00598121 0.0059879 0.00599459 0.00600128 0.00600797 0.00601466 0.00602135 0.00602804 0.00603473 0.00604142 0.00604811 0.0060548 0.00606149 0.00606818 0.00607487 0.00608156 0.00608824 0.00609493 0.00610162 0.00610831 0.006115 0.00612169 0.00612838 0.00613507 0.00614176 0.00614845 0.00615514 0.00616183 0.00616852 0.00617521 0.0061819 0.00618859 0.00619528 0.00620197 0.00620866 0.00621535 0.00622204 0.00622873 0.00623542 0.00624211 0.0062488 0.00625549 0.00626218 0.00626887 0.00627556 0.00628225 0.00628894 0.00629563 0.00630232 0.00630901 0.0063157 0.00632239 0.00632908 0.00633577 0.00634246 0.00634915 0.00635584 0.00636253 0.00636922 0.00637591 0.0063826 0.00638929 0.00639598 0.00640267 0.00640936 0.00641605 0.00642274 0.00642943 0.00643612 0.00644281 0.0064495 0.00645619 0.00646288 0.00646957 0.00647626 0.00648295 0.00648964 0.00649633 0.00650302 0.00650971 0.0065164 0.00652309 0.00652978 0.00653647 0.00654316 0.00654985 0.00655654 0.00656323 +-0.00144007 -0.00135576 -0.00119256 -0.000768263 3.80931E-05 0.00110608 0.00228458 0.00346247 0.00452401 0.00529973 0.00565497 0.00574448 0.00576472 0.00577342 0.00578041 0.00578715 0.00579386 0.00580056 0.00580725 0.00581395 0.00582065 0.00582733 0.00583403 0.00584073 0.00584743 0.00585413 0.00586082 0.00586752 0.00587422 0.00588092 0.00588762 0.00589431 0.00590101 0.00590771 0.00591441 0.0059211 0.0059278 0.0059345 0.0059412 0.0059479 0.00595459 0.00596129 0.00596799 0.00597469 0.00598139 0.00598808 0.00599478 0.00600148 0.00600818 0.00601488 0.00602157 0.00602827 0.00603497 0.00604167 0.00604837 0.00605506 0.00606176 0.00606846 0.00607516 0.00608185 0.00608855 0.00609525 0.00610195 0.00610865 0.00611534 0.00612204 0.00612874 0.00613544 0.00614214 0.00614883 0.00615553 0.00616223 0.00616893 0.00617563 0.00618232 0.00618902 0.00619572 0.00620242 0.00620911 0.00621581 0.00622251 0.00622921 0.00623591 0.0062426 0.0062493 0.006256 0.0062627 0.0062694 0.00627609 0.00628279 0.00628949 0.00629619 0.00630289 0.00630958 0.00631628 0.00632298 0.00632968 0.00633638 0.00634307 0.00634977 0.00635647 0.00636317 0.00636986 0.00637656 0.00638326 0.00638996 0.00639666 0.00640335 0.00641005 0.00641675 0.00642345 0.00643015 0.00643684 0.00644354 0.00645024 0.00645694 0.00646364 0.00647033 0.00647703 0.00648373 0.00649043 0.00649713 0.00650382 0.00651052 0.00651722 0.00652392 0.00653061 0.00653731 0.00654401 0.00655071 0.00655741 0.0065641 0.0065708 +-0.001442 -0.00135754 -0.00119398 -0.000768936 3.81695E-05 0.0011067 0.00228569 0.00346418 0.0045267 0.00530406 0.00566089 0.00575096 0.00577131 0.00578004 0.00578704 0.00579379 0.0058005 0.00580721 0.00581391 0.00582062 0.00582732 0.00583403 0.00584072 0.00584743 0.00585413 0.00586084 0.00586755 0.00587425 0.00588096 0.00588766 0.00589437 0.00590108 0.00590778 0.00591449 0.00592119 0.0059279 0.0059346 0.00594131 0.00594802 0.00595472 0.00596143 0.00596813 0.00597484 0.00598155 0.00598825 0.00599496 0.00600166 0.00600837 0.00601508 0.00602178 0.00602849 0.00603519 0.0060419 0.0060486 0.00605531 0.00606202 0.00606872 0.00607543 0.00608213 0.00608884 0.00609555 0.00610225 0.00610896 0.00611566 0.00612237 0.00612908 0.00613578 0.00614249 0.00614919 0.0061559 0.0061626 0.00616931 0.00617602 0.00618272 0.00618943 0.00619613 0.00620284 0.00620955 0.00621625 0.00622296 0.00622966 0.00623637 0.00624308 0.00624978 0.00625649 0.00626319 0.0062699 0.0062766 0.00628331 0.00629002 0.00629672 0.00630343 0.00631013 0.00631684 0.00632355 0.00633025 0.00633696 0.00634366 0.00635037 0.00635708 0.00636378 0.00637049 0.00637719 0.0063839 0.00639061 0.00639731 0.00640402 0.00641072 0.00641743 0.00642413 0.00643084 0.00643755 0.00644425 0.00645096 0.00645766 0.00646437 0.00647108 0.00647778 0.00648449 0.00649119 0.0064979 0.00650461 0.00651131 0.00651802 0.00652472 0.00653143 0.00653813 0.00654484 0.00655155 0.00655825 0.00656496 0.00657166 0.00657837 +-0.00144393 -0.00135932 -0.0011954 -0.000769607 3.8246E-05 0.00110732 0.00228679 0.00346589 0.00452938 0.00530837 0.00566679 0.00575744 0.0057779 0.00578665 0.00579366 0.00580042 0.00580714 0.00581385 0.00582057 0.00582728 0.00583399 0.00584071 0.00584741 0.00585412 0.00586084 0.00586755 0.00587426 0.00588098 0.00588769 0.00589441 0.00590112 0.00590783 0.00591455 0.00592126 0.00592797 0.00593469 0.0059414 0.00594812 0.00595483 0.00596154 0.00596826 0.00597497 0.00598169 0.0059884 0.00599511 0.00600183 0.00600854 0.00601526 0.00602197 0.00602868 0.0060354 0.00604211 0.00604882 0.00605554 0.00606225 0.00606897 0.00607568 0.00608239 0.00608911 0.00609582 0.00610254 0.00610925 0.00611596 0.00612268 0.00612939 0.0061361 0.00614282 0.00614953 0.00615625 0.00616296 0.00616967 0.00617639 0.0061831 0.00618982 0.00619653 0.00620324 0.00620996 0.00621667 0.00622338 0.0062301 0.00623681 0.00624353 0.00625024 0.00625695 0.00626367 0.00627038 0.0062771 0.00628381 0.00629052 0.00629724 0.00630395 0.00631066 0.00631738 0.00632409 0.00633081 0.00633752 0.00634423 0.00635095 0.00635766 0.00636438 0.00637109 0.0063778 0.00638452 0.00639123 0.00639795 0.00640466 0.00641137 0.00641809 0.0064248 0.00643151 0.00643823 0.00644494 0.00645166 0.00645837 0.00646508 0.0064718 0.00647851 0.00648523 0.00649194 0.00649865 0.00650537 0.00651208 0.00651879 0.00652551 0.00653222 0.00653894 0.00654565 0.00655236 0.00655908 0.00656579 0.00657251 0.00657922 0.00658593 +-0.00144587 -0.0013611 -0.00119681 -0.000770278 3.83225E-05 0.00110794 0.00228789 0.00346759 0.00453206 0.00531267 0.00567269 0.00576391 0.00578448 0.00579325 0.00580028 0.00580704 0.00581377 0.00582049 0.00582722 0.00583394 0.00584066 0.00584738 0.0058541 0.00586081 0.00586753 0.00587426 0.00588098 0.0058877 0.00589442 0.00590114 0.00590787 0.00591459 0.00592131 0.00592803 0.00593475 0.00594147 0.0059482 0.00595492 0.00596164 0.00596836 0.00597508 0.00598181 0.00598853 0.00599525 0.00600197 0.00600869 0.00601542 0.00602214 0.00602886 0.00603558 0.0060423 0.00604902 0.00605575 0.00606247 0.00606919 0.00607591 0.00608263 0.00608936 0.00609608 0.0061028 0.00610952 0.00611624 0.00612296 0.00612969 0.00613641 0.00614313 0.00614985 0.00615657 0.0061633 0.00617002 0.00617674 0.00618346 0.00619018 0.0061969 0.00620363 0.00621035 0.00621707 0.00622379 0.00623051 0.00623724 0.00624396 0.00625068 0.0062574 0.00626412 0.00627084 0.00627757 0.00628429 0.00629101 0.00629773 0.00630445 0.00631118 0.0063179 0.00632462 0.00633134 0.00633806 0.00634478 0.00635151 0.00635823 0.00636495 0.00637167 0.00637839 0.00638512 0.00639184 0.00639856 0.00640528 0.006412 0.00641872 0.00642545 0.00643217 0.00643889 0.00644561 0.00645233 0.00645906 0.00646578 0.0064725 0.00647922 0.00648594 0.00649266 0.00649939 0.00650611 0.00651283 0.00651955 0.00652627 0.006533 0.00653972 0.00654644 0.00655316 0.00655988 0.0065666 0.00657333 0.00658005 0.00658677 0.00659349 +-0.00144779 -0.00136288 -0.00119823 -0.000770947 3.8399E-05 0.00110856 0.00228899 0.00346929 0.00453473 0.00531696 0.00567858 0.00577038 0.00579106 0.00579986 0.00580689 0.00581366 0.0058204 0.00582713 0.00583386 0.00584059 0.00584732 0.00585405 0.00586078 0.0058675 0.00587423 0.00588096 0.00588769 0.00589442 0.00590115 0.00590788 0.00591461 0.00592134 0.00592807 0.0059348 0.00594153 0.00594826 0.00595499 0.00596172 0.00596845 0.00597518 0.00598191 0.00598864 0.00599537 0.0060021 0.00600883 0.00601556 0.00602228 0.00602901 0.00603574 0.00604247 0.0060492 0.00605593 0.00606266 0.00606939 0.00607612 0.00608285 0.00608958 0.00609631 0.00610304 0.00610977 0.0061165 0.00612323 0.00612996 0.00613669 0.00614342 0.00615015 0.00615688 0.00616361 0.00617034 0.00617707 0.0061838 0.00619053 0.00619726 0.00620399 0.00621072 0.00621745 0.00622418 0.00623091 0.00623764 0.00624437 0.0062511 0.00625783 0.00626456 0.00627129 0.00627802 0.00628475 0.00629148 0.00629821 0.00630494 0.00631167 0.0063184 0.00632513 0.00633186 0.00633858 0.00634531 0.00635204 0.00635877 0.0063655 0.00637223 0.00637896 0.00638569 0.00639242 0.00639915 0.00640588 0.00641261 0.00641934 0.00642607 0.0064328 0.00643953 0.00644626 0.00645299 0.00645972 0.00646645 0.00647318 0.00647991 0.00648664 0.00649337 0.0065001 0.00650683 0.00651356 0.00652029 0.00652702 0.00653375 0.00654048 0.00654721 0.00655394 0.00656067 0.0065674 0.00657413 0.00658086 0.00658759 0.00659432 0.00660105 +-0.00144972 -0.00136465 -0.00119964 -0.000771616 3.84755E-05 0.00110918 0.00229008 0.00347098 0.00453739 0.00532125 0.00568446 0.00577685 0.00579764 0.00580646 0.0058135 0.00582028 0.00582703 0.00583377 0.0058405 0.00584724 0.00585398 0.00586072 0.00586746 0.00587419 0.00588092 0.00588766 0.0058944 0.00590113 0.00590787 0.00591461 0.00592135 0.00592808 0.00593482 0.00594156 0.0059483 0.00595504 0.00596177 0.00596851 0.00597525 0.00598199 0.00598872 0.00599546 0.0060022 0.00600894 0.00601568 0.00602241 0.00602915 0.00603589 0.00604263 0.00604936 0.0060561 0.00606284 0.00606958 0.00607631 0.00608305 0.00608979 0.00609653 0.00610327 0.00611 0.00611674 0.00612348 0.00613022 0.00613695 0.00614369 0.00615043 0.00615717 0.00616391 0.00617064 0.00617738 0.00618412 0.00619086 0.00619759 0.00620433 0.00621107 0.00621781 0.00622455 0.00623128 0.00623802 0.00624476 0.0062515 0.00625823 0.00626497 0.00627171 0.00627845 0.00628519 0.00629192 0.00629866 0.0063054 0.00631214 0.00631887 0.00632561 0.00633235 0.00633909 0.00634582 0.00635256 0.0063593 0.00636604 0.00637278 0.00637951 0.00638625 0.00639299 0.00639973 0.00640646 0.0064132 0.00641994 0.00642668 0.00643342 0.00644015 0.00644689 0.00645363 0.00646037 0.0064671 0.00647384 0.00648058 0.00648732 0.00649406 0.00650079 0.00650753 0.00651427 0.00652101 0.00652774 0.00653448 0.00654122 0.00654796 0.00655469 0.00656143 0.00656817 0.00657491 0.00658165 0.00658838 0.00659512 0.00660186 0.0066086 +-0.00145165 -0.00136643 -0.00120106 -0.000772283 3.85521E-05 0.00110979 0.00229118 0.00347267 0.00454005 0.00532552 0.00569034 0.0057833 0.00580421 0.00581305 0.00582011 0.0058269 0.00583365 0.0058404 0.00584714 0.00585389 0.00586063 0.00586738 0.00587413 0.00588087 0.00588761 0.00589435 0.0059011 0.00590784 0.00591459 0.00592134 0.00592808 0.00593483 0.00594157 0.00594832 0.00595506 0.00596181 0.00596856 0.0059753 0.00598205 0.00598879 0.00599554 0.00600228 0.00600903 0.00601578 0.00602252 0.00602927 0.00603601 0.00604276 0.0060495 0.00605625 0.006063 0.00606974 0.00607649 0.00608323 0.00608998 0.00609672 0.00610347 0.00611022 0.00611696 0.00612371 0.00613045 0.0061372 0.00614394 0.00615069 0.00615744 0.00616418 0.00617093 0.00617767 0.00618442 0.00619116 0.00619791 0.00620466 0.0062114 0.00621815 0.00622489 0.00623164 0.00623838 0.00624513 0.00625188 0.00625862 0.00626537 0.00627211 0.00627886 0.0062856 0.00629235 0.00629909 0.00630584 0.00631259 0.00631933 0.00632608 0.00633282 0.00633957 0.00634631 0.00635306 0.00635981 0.00636655 0.0063733 0.00638004 0.00638679 0.00639353 0.00640028 0.00640703 0.00641377 0.00642052 0.00642726 0.00643401 0.00644075 0.0064475 0.00645425 0.00646099 0.00646774 0.00647448 0.00648123 0.00648797 0.00649472 0.00650147 0.00650821 0.00651496 0.0065217 0.00652845 0.00653519 0.00654194 0.00654869 0.00655543 0.00656218 0.00656892 0.00657567 0.00658241 0.00658916 0.00659591 0.00660265 0.0066094 0.00661614 +-0.00145358 -0.00136821 -0.00120247 -0.00077295 3.86287E-05 0.00111041 0.00229227 0.00347436 0.0045427 0.00532979 0.00569621 0.00578976 0.00581078 0.00581965 0.00582671 0.00583351 0.00584027 0.00584702 0.00585378 0.00586053 0.00586728 0.00587404 0.00588079 0.00588755 0.00589429 0.00590104 0.0059078 0.00591455 0.0059213 0.00592806 0.00593481 0.00594157 0.00594832 0.00595507 0.00596183 0.00596858 0.00597533 0.00598209 0.00598884 0.0059956 0.00600235 0.0060091 0.00601586 0.00602261 0.00602936 0.00603612 0.00604287 0.00604962 0.00605638 0.00606313 0.00606989 0.00607664 0.00608339 0.00609015 0.0060969 0.00610365 0.00611041 0.00611716 0.00612391 0.00613067 0.00613742 0.00614418 0.00615093 0.00615768 0.00616444 0.00617119 0.00617794 0.0061847 0.00619145 0.0061982 0.00620496 0.00621171 0.00621847 0.00622522 0.00623197 0.00623873 0.00624548 0.00625223 0.00625899 0.00626574 0.00627249 0.00627925 0.006286 0.00629276 0.00629951 0.00630626 0.00631302 0.00631977 0.00632652 0.00633328 0.00634003 0.00634678 0.00635354 0.00636029 0.00636705 0.0063738 0.00638055 0.00638731 0.00639406 0.00640081 0.00640757 0.00641432 0.00642107 0.00642783 0.00643458 0.00644134 0.00644809 0.00645484 0.0064616 0.00646835 0.0064751 0.00648186 0.00648861 0.00649537 0.00650212 0.00650887 0.00651563 0.00652238 0.00652913 0.00653589 0.00654264 0.00654939 0.00655615 0.0065629 0.00656966 0.00657641 0.00658316 0.00658992 0.00659667 0.00660342 0.00661018 0.00661693 0.00662368 +-0.00145551 -0.00136998 -0.00120388 -0.000773615 3.87053E-05 0.00111102 0.00229336 0.00347604 0.00454534 0.00533404 0.00570207 0.00579621 0.00581734 0.00582623 0.00583331 0.00584012 0.00584688 0.00585365 0.00586041 0.00586717 0.00587393 0.00588069 0.00588745 0.00589422 0.00590098 0.00590773 0.00591449 0.00592125 0.00592802 0.00593478 0.00594154 0.0059483 0.00595506 0.00596182 0.00596859 0.00597535 0.00598211 0.00598887 0.00599563 0.00600239 0.00600916 0.00601592 0.00602268 0.00602944 0.0060362 0.00604296 0.00604972 0.00605649 0.00606325 0.00607001 0.00607677 0.00608353 0.00609029 0.00609706 0.00610382 0.00611058 0.00611734 0.0061241 0.00613086 0.00613763 0.00614439 0.00615115 0.00615791 0.00616467 0.00617143 0.00617819 0.00618496 0.00619172 0.00619848 0.00620524 0.006212 0.00621876 0.00622553 0.00623229 0.00623905 0.00624581 0.00625257 0.00625933 0.0062661 0.00627286 0.00627962 0.00628638 0.00629314 0.0062999 0.00630667 0.00631343 0.00632019 0.00632695 0.00633371 0.00634047 0.00634723 0.006354 0.00636076 0.00636752 0.00637428 0.00638104 0.0063878 0.00639457 0.00640133 0.00640809 0.00641485 0.00642161 0.00642837 0.00643514 0.0064419 0.00644866 0.00645542 0.00646218 0.00646894 0.00647571 0.00648247 0.00648923 0.00649599 0.00650275 0.00650951 0.00651627 0.00652304 0.0065298 0.00653656 0.00654332 0.00655008 0.00655684 0.00656361 0.00657037 0.00657713 0.00658389 0.00659065 0.00659741 0.00660418 0.00661094 0.0066177 0.00662446 0.00663122 +-0.00145743 -0.00137176 -0.00120529 -0.000774279 3.87819E-05 0.00111163 0.00229445 0.00347772 0.00454798 0.00533829 0.00570792 0.00580265 0.0058239 0.00583282 0.0058399 0.00584672 0.0058535 0.00586027 0.00586704 0.0058738 0.00588057 0.00588734 0.00589411 0.00590088 0.00590765 0.00591441 0.00592118 0.00592795 0.00593472 0.00594149 0.00594826 0.00595503 0.0059618 0.00596857 0.00597534 0.00598211 0.00598888 0.00599565 0.00600242 0.00600919 0.00601596 0.00602273 0.0060295 0.00603627 0.00604304 0.00604981 0.00605657 0.00606334 0.00607011 0.00607688 0.00608365 0.00609042 0.00609719 0.00610396 0.00611073 0.0061175 0.00612427 0.00613104 0.00613781 0.00614458 0.00615135 0.00615812 0.00616489 0.00617166 0.00617843 0.0061852 0.00619197 0.00619873 0.0062055 0.00621227 0.00621904 0.00622581 0.00623258 0.00623935 0.00624612 0.00625289 0.00625966 0.00626643 0.0062732 0.00627997 0.00628674 0.00629351 0.00630028 0.00630705 0.00631382 0.00632059 0.00632736 0.00633413 0.0063409 0.00634766 0.00635443 0.0063612 0.00636797 0.00637474 0.00638151 0.00638828 0.00639505 0.00640182 0.00640859 0.00641536 0.00642213 0.0064289 0.00643567 0.00644244 0.00644921 0.00645598 0.00646275 0.00646952 0.00647629 0.00648306 0.00648982 0.00649659 0.00650336 0.00651013 0.0065169 0.00652367 0.00653044 0.00653721 0.00654398 0.00655075 0.00655752 0.00656429 0.00657106 0.00657783 0.0065846 0.00659137 0.00659814 0.00660491 0.00661168 0.00661845 0.00662522 0.00663199 0.00663875 +-0.00145936 -0.00137353 -0.0012067 -0.000774942 3.88586E-05 0.00111225 0.00229553 0.0034794 0.00455061 0.00534252 0.00571376 0.0058091 0.00583046 0.0058394 0.00584649 0.00585332 0.0058601 0.00586688 0.00587366 0.00588044 0.00588721 0.00589399 0.00590077 0.00590755 0.00591432 0.0059211 0.00592787 0.00593465 0.00594143 0.0059482 0.00595498 0.00596176 0.00596854 0.00597531 0.00598209 0.00598887 0.00599565 0.00600242 0.0060092 0.00601598 0.00602276 0.00602953 0.00603631 0.00604309 0.00604987 0.00605664 0.00606342 0.0060702 0.00607698 0.00608375 0.00609053 0.00609731 0.00610409 0.00611086 0.00611764 0.00612442 0.0061312 0.00613797 0.00614475 0.00615153 0.00615831 0.00616508 0.00617186 0.00617864 0.00618542 0.00619219 0.00619897 0.00620575 0.00621253 0.0062193 0.00622608 0.00623286 0.00623963 0.00624641 0.00625319 0.00625997 0.00626674 0.00627352 0.0062803 0.00628708 0.00629385 0.00630063 0.00630741 0.00631419 0.00632096 0.00632774 0.00633452 0.0063413 0.00634807 0.00635485 0.00636163 0.00636841 0.00637518 0.00638196 0.00638874 0.00639552 0.00640229 0.00640907 0.00641585 0.00642263 0.0064294 0.00643618 0.00644296 0.00644974 0.00645651 0.00646329 0.00647007 0.00647685 0.00648362 0.0064904 0.00649718 0.00650396 0.00651073 0.00651751 0.00652429 0.00653107 0.00653784 0.00654462 0.0065514 0.00655818 0.00656495 0.00657173 0.00657851 0.00658529 0.00659206 0.00659884 0.00660562 0.0066124 0.00661917 0.00662595 0.00663273 0.00663951 0.00664628 +-0.00146128 -0.00137531 -0.0012081 -0.000775605 3.89352E-05 0.00111286 0.00229662 0.00348107 0.00455324 0.00534675 0.0057196 0.00581553 0.00583701 0.00584598 0.00585308 0.00585991 0.00586671 0.00587349 0.00588028 0.00588706 0.00589385 0.00590063 0.00590742 0.00591421 0.00592099 0.00592778 0.00593456 0.00594134 0.00594813 0.00595491 0.0059617 0.00596848 0.00597527 0.00598205 0.00598884 0.00599562 0.00600241 0.00600919 0.00601598 0.00602277 0.00602955 0.00603634 0.00604312 0.00604991 0.00605669 0.00606348 0.00607026 0.00607705 0.00608383 0.00609062 0.0060974 0.00610419 0.00611098 0.00611776 0.00612455 0.00613133 0.00613812 0.0061449 0.00615169 0.00615847 0.00616526 0.00617204 0.00617883 0.00618561 0.0061924 0.00619919 0.00620597 0.00621276 0.00621954 0.00622633 0.00623311 0.0062399 0.00624668 0.00625347 0.00626025 0.00626704 0.00627383 0.00628061 0.0062874 0.00629418 0.00630097 0.00630775 0.00631454 0.00632132 0.00632811 0.00633489 0.00634168 0.00634846 0.00635525 0.00636204 0.00636882 0.00637561 0.00638239 0.00638918 0.00639596 0.00640275 0.00640953 0.00641632 0.0064231 0.00642989 0.00643667 0.00644346 0.00645025 0.00645703 0.00646382 0.0064706 0.00647739 0.00648417 0.00649096 0.00649774 0.00650453 0.00651131 0.0065181 0.00652489 0.00653167 0.00653846 0.00654524 0.00655203 0.00655881 0.0065656 0.00657238 0.00657917 0.00658595 0.00659274 0.00659952 0.00660631 0.0066131 0.00661988 0.00662667 0.00663345 0.00664024 0.00664702 0.00665381 +-0.00146321 -0.00137708 -0.00120951 -0.000776266 3.9012E-05 0.00111347 0.0022977 0.00348274 0.00455586 0.00535097 0.00572543 0.00582196 0.00584356 0.00585255 0.00585967 0.00586651 0.00587331 0.0058801 0.00588689 0.00589369 0.00590048 0.00590727 0.00591407 0.00592086 0.00592765 0.00593445 0.00594124 0.00594803 0.00595482 0.00596161 0.00596841 0.0059752 0.00598199 0.00598879 0.00599558 0.00600237 0.00600917 0.00601596 0.00602275 0.00602955 0.00603634 0.00604313 0.00604993 0.00605672 0.00606351 0.00607031 0.0060771 0.00608389 0.00609069 0.00609748 0.00610427 0.00611107 0.00611786 0.00612465 0.00613145 0.00613824 0.00614503 0.00615183 0.00615862 0.00616541 0.00617221 0.006179 0.00618579 0.00619259 0.00619938 0.00620617 0.00621297 0.00621976 0.00622655 0.00623335 0.00624014 0.00624693 0.00625373 0.00626052 0.00626731 0.00627411 0.0062809 0.00628769 0.00629449 0.00630128 0.00630807 0.00631487 0.00632166 0.00632845 0.00633525 0.00634204 0.00634883 0.00635563 0.00636242 0.00636921 0.00637601 0.0063828 0.00638959 0.00639639 0.00640318 0.00640997 0.00641677 0.00642356 0.00643035 0.00643715 0.00644394 0.00645073 0.00645753 0.00646432 0.00647111 0.00647791 0.0064847 0.00649149 0.00649829 0.00650508 0.00651187 0.00651867 0.00652546 0.00653225 0.00653905 0.00654584 0.00655263 0.00655943 0.00656622 0.00657301 0.00657981 0.0065866 0.00659339 0.00660019 0.00660698 0.00661377 0.00662057 0.00662736 0.00663415 0.00664095 0.00664774 0.00665453 0.00666133 +-0.00146513 -0.00137885 -0.00121092 -0.000776926 3.90887E-05 0.00111408 0.00229878 0.00348441 0.00455847 0.00535517 0.00573125 0.00582839 0.0058501 0.00585912 0.00586625 0.00587309 0.0058799 0.0058867 0.00589351 0.00590031 0.00590711 0.00591391 0.00592071 0.00592751 0.00593431 0.00594111 0.00594792 0.00595472 0.00596151 0.00596831 0.00597512 0.00598192 0.00598872 0.00599552 0.00600232 0.00600912 0.00601592 0.00602272 0.00602953 0.00603633 0.00604313 0.00604993 0.00605673 0.00606353 0.00607033 0.00607713 0.00608394 0.00609074 0.00609754 0.00610434 0.00611114 0.00611794 0.00612474 0.00613154 0.00613835 0.00614515 0.00615195 0.00615875 0.00616555 0.00617235 0.00617915 0.00618595 0.00619276 0.00619956 0.00620636 0.00621316 0.00621996 0.00622676 0.00623356 0.00624036 0.00624717 0.00625397 0.00626077 0.00626757 0.00627437 0.00628117 0.00628797 0.00629477 0.00630158 0.00630838 0.00631518 0.00632198 0.00632878 0.00633558 0.00634238 0.00634918 0.00635599 0.00636279 0.00636959 0.00637639 0.00638319 0.00638999 0.00639679 0.00640359 0.0064104 0.0064172 0.006424 0.0064308 0.0064376 0.0064444 0.0064512 0.006458 0.00646481 0.00647161 0.00647841 0.00648521 0.00649201 0.00649881 0.00650561 0.00651241 0.00651922 0.00652602 0.00653282 0.00653962 0.00654642 0.00655322 0.00656002 0.00656682 0.00657363 0.00658043 0.00658723 0.00659403 0.00660083 0.00660763 0.00661443 0.00662123 0.00662804 0.00663484 0.00664164 0.00664844 0.00665524 0.00666204 0.00666884 +-0.00146706 -0.00138062 -0.00121232 -0.000777585 3.91654E-05 0.00111469 0.00229986 0.00348607 0.00456108 0.00535937 0.00573707 0.00583481 0.00585664 0.00586569 0.00587282 0.00587968 0.00588649 0.0058933 0.00590011 0.00590692 0.00591373 0.00592054 0.00592735 0.00593416 0.00594097 0.00594778 0.00595459 0.0059614 0.0059682 0.00597501 0.00598182 0.00598863 0.00599544 0.00600225 0.00600906 0.00601586 0.00602267 0.00602948 0.00603629 0.0060431 0.00604991 0.00605672 0.00606353 0.00607034 0.00607715 0.00608396 0.00609077 0.00609758 0.00610438 0.00611119 0.006118 0.00612481 0.00613162 0.00613843 0.00614524 0.00615205 0.00615886 0.00616567 0.00617248 0.00617929 0.00618609 0.0061929 0.00619971 0.00620652 0.00621333 0.00622014 0.00622695 0.00623376 0.00624057 0.00624738 0.00625419 0.006261 0.0062678 0.00627461 0.00628142 0.00628823 0.00629504 0.00630185 0.00630866 0.00631547 0.00632228 0.00632909 0.0063359 0.00634271 0.00634951 0.00635632 0.00636313 0.00636994 0.00637675 0.00638356 0.00639037 0.00639718 0.00640399 0.0064108 0.00641761 0.00642442 0.00643122 0.00643803 0.00644484 0.00645165 0.00645846 0.00646527 0.00647208 0.00647889 0.0064857 0.00649251 0.00649932 0.00650613 0.00651293 0.00651974 0.00652655 0.00653336 0.00654017 0.00654698 0.00655379 0.0065606 0.00656741 0.00657422 0.00658103 0.00658784 0.00659465 0.00660145 0.00660826 0.00661507 0.00662188 0.00662869 0.0066355 0.00664231 0.00664912 0.00665593 0.00666274 0.00666955 0.00667636 +-0.00146898 -0.00138239 -0.00121372 -0.000778243 3.92422E-05 0.00111529 0.00230094 0.00348773 0.00456368 0.00536356 0.00574288 0.00584123 0.00586318 0.00587225 0.00587939 0.00588626 0.00589308 0.0058999 0.00590672 0.00591354 0.00592035 0.00592717 0.00593399 0.0059408 0.00594762 0.00595444 0.00596126 0.00596807 0.00597488 0.0059817 0.00598852 0.00599534 0.00600215 0.00600897 0.00601579 0.0060226 0.00602942 0.00603624 0.00604306 0.00604987 0.00605669 0.00606351 0.00607032 0.00607714 0.00608396 0.00609078 0.00609759 0.00610441 0.00611123 0.00611804 0.00612486 0.00613168 0.00613849 0.00614531 0.00615213 0.00615895 0.00616576 0.00617258 0.0061794 0.00618621 0.00619303 0.00619985 0.00620667 0.00621348 0.0062203 0.00622712 0.00623393 0.00624075 0.00624757 0.00625439 0.0062612 0.00626802 0.00627484 0.00628165 0.00628847 0.00629529 0.00630211 0.00630892 0.00631574 0.00632256 0.00632937 0.00633619 0.00634301 0.00634982 0.00635664 0.00636346 0.00637028 0.00637709 0.00638391 0.00639073 0.00639754 0.00640436 0.00641118 0.006418 0.00642481 0.00643163 0.00643845 0.00644526 0.00645208 0.0064589 0.00646572 0.00647253 0.00647935 0.00648617 0.00649298 0.0064998 0.00650662 0.00651344 0.00652025 0.00652707 0.00653389 0.0065407 0.00654752 0.00655434 0.00656115 0.00656797 0.00657479 0.00658161 0.00658842 0.00659524 0.00660206 0.00660887 0.00661569 0.00662251 0.00662933 0.00663614 0.00664296 0.00664978 0.00665659 0.00666341 0.00667023 0.00667705 0.00668386 +-0.0014709 -0.00138417 -0.00121512 -0.000778901 3.9319E-05 0.0011159 0.00230201 0.00348939 0.00456628 0.00536774 0.00574867 0.00584764 0.00586971 0.00587881 0.00588596 0.00589284 0.00589967 0.00590649 0.00591332 0.00592014 0.00592697 0.00593379 0.00594062 0.00594744 0.00595427 0.00596109 0.00596792 0.00597474 0.00598156 0.00598839 0.00599521 0.00600204 0.00600886 0.00601569 0.00602251 0.00602934 0.00603616 0.00604299 0.00604981 0.00605664 0.00606346 0.00607029 0.00607711 0.00608394 0.00609076 0.00609759 0.00610441 0.00611124 0.00611806 0.00612489 0.00613171 0.00613854 0.00614536 0.00615219 0.00615902 0.00616584 0.00617267 0.00617949 0.00618632 0.00619314 0.00619997 0.00620679 0.00621362 0.00622044 0.00622727 0.00623409 0.00624092 0.00624774 0.00625457 0.00626139 0.00626822 0.00627504 0.00628187 0.00628869 0.00629552 0.00630234 0.00630917 0.00631599 0.00632282 0.00632964 0.00633647 0.00634329 0.00635012 0.00635694 0.00636377 0.00637059 0.00637742 0.00638424 0.00639107 0.00639789 0.00640472 0.00641154 0.00641837 0.00642519 0.00643202 0.00643884 0.00644567 0.00645249 0.00645932 0.00646614 0.00647297 0.00647979 0.00648662 0.00649344 0.00650027 0.00650709 0.00651392 0.00652074 0.00652757 0.00653439 0.00654122 0.00654804 0.00655487 0.00656169 0.00656852 0.00657534 0.00658217 0.00658899 0.00659582 0.00660264 0.00660947 0.00661629 0.00662312 0.00662994 0.00663677 0.00664359 0.00665042 0.00665724 0.00666407 0.00667089 0.00667772 0.00668454 0.00669137 +-0.00147282 -0.00138593 -0.00121652 -0.000779557 3.93959E-05 0.00111651 0.00230309 0.00349105 0.00456887 0.00537191 0.00575447 0.00585405 0.00587624 0.00588536 0.00589253 0.00589941 0.00590625 0.00591308 0.00591992 0.00592675 0.00593358 0.00594041 0.00594725 0.00595408 0.00596091 0.00596775 0.00597458 0.00598141 0.00598824 0.00599507 0.00600191 0.00600874 0.00601557 0.00602241 0.00602924 0.00603607 0.0060429 0.00604974 0.00605657 0.0060634 0.00607024 0.00607707 0.0060839 0.00609073 0.00609757 0.0061044 0.00611123 0.00611807 0.0061249 0.00613173 0.00613857 0.0061454 0.00615223 0.00615906 0.0061659 0.00617273 0.00617956 0.0061864 0.00619323 0.00620006 0.00620689 0.00621373 0.00622056 0.00622739 0.00623423 0.00624106 0.00624789 0.00625472 0.00626156 0.00626839 0.00627522 0.00628206 0.00628889 0.00629572 0.00630256 0.00630939 0.00631622 0.00632305 0.00632989 0.00633672 0.00634355 0.00635039 0.00635722 0.00636405 0.00637088 0.00637772 0.00638455 0.00639138 0.00639822 0.00640505 0.00641188 0.00641871 0.00642555 0.00643238 0.00643921 0.00644605 0.00645288 0.00645971 0.00646655 0.00647338 0.00648021 0.00648704 0.00649388 0.00650071 0.00650754 0.00651438 0.00652121 0.00652804 0.00653487 0.00654171 0.00654854 0.00655537 0.00656221 0.00656904 0.00657587 0.0065827 0.00658954 0.00659637 0.0066032 0.00661004 0.00661687 0.0066237 0.00663054 0.00663737 0.0066442 0.00665103 0.00665787 0.0066647 0.00667153 0.00667837 0.0066852 0.00669203 0.00669886 +-0.00147475 -0.0013877 -0.00121792 -0.000780212 3.94727E-05 0.00111711 0.00230416 0.0034927 0.00457145 0.00537606 0.00576025 0.00586046 0.00588277 0.00589191 0.00589909 0.00590598 0.00591283 0.00591967 0.00592651 0.00593335 0.00594019 0.00594703 0.00595387 0.00596071 0.00596755 0.0059744 0.00598124 0.00598808 0.00599491 0.00600175 0.0060086 0.00601544 0.00602228 0.00602912 0.00603596 0.0060428 0.00604964 0.00605648 0.00606332 0.00607016 0.006077 0.00608384 0.00609069 0.00609753 0.00610437 0.00611121 0.00611805 0.00612489 0.00613173 0.00613857 0.00614541 0.00615225 0.00615909 0.00616593 0.00617278 0.00617962 0.00618646 0.0061933 0.00620014 0.00620698 0.00621382 0.00622066 0.0062275 0.00623434 0.00624118 0.00624802 0.00625486 0.00626171 0.00626855 0.00627539 0.00628223 0.00628907 0.00629591 0.00630275 0.00630959 0.00631643 0.00632327 0.00633011 0.00633695 0.0063438 0.00635064 0.00635748 0.00636432 0.00637116 0.006378 0.00638484 0.00639168 0.00639852 0.00640536 0.0064122 0.00641904 0.00642589 0.00643273 0.00643957 0.00644641 0.00645325 0.00646009 0.00646693 0.00647377 0.00648061 0.00648745 0.00649429 0.00650113 0.00650798 0.00651482 0.00652166 0.0065285 0.00653534 0.00654218 0.00654902 0.00655586 0.0065627 0.00656954 0.00657638 0.00658322 0.00659006 0.00659691 0.00660375 0.00661059 0.00661743 0.00662427 0.00663111 0.00663795 0.00664479 0.00665163 0.00665847 0.00666531 0.00667215 0.006679 0.00668584 0.00669268 0.00669952 0.00670636 +-0.00147667 -0.00138947 -0.00121932 -0.000780866 3.95496E-05 0.00111772 0.00230523 0.00349434 0.00457403 0.00538021 0.00576603 0.00586685 0.00588929 0.00589846 0.00590565 0.00591254 0.0059194 0.00592625 0.0059331 0.00593995 0.0059468 0.00595364 0.00596049 0.00596734 0.00597419 0.00598104 0.00598789 0.00599474 0.00600158 0.00600843 0.00601528 0.00602213 0.00602898 0.00603583 0.00604267 0.00604952 0.00605637 0.00606322 0.00607007 0.00607692 0.00608377 0.00609062 0.00609746 0.00610431 0.00611116 0.00611801 0.00612486 0.00613171 0.00613856 0.00614541 0.00615225 0.0061591 0.00616595 0.0061728 0.00617965 0.0061865 0.00619335 0.0062002 0.00620704 0.00621389 0.00622074 0.00622759 0.00623444 0.00624129 0.00624814 0.00625499 0.00626183 0.00626868 0.00627553 0.00628238 0.00628923 0.00629608 0.00630293 0.00630977 0.00631662 0.00632347 0.00633032 0.00633717 0.00634402 0.00635087 0.00635772 0.00636456 0.00637141 0.00637826 0.00638511 0.00639196 0.00639881 0.00640566 0.00641251 0.00641935 0.0064262 0.00643305 0.0064399 0.00644675 0.0064536 0.00646045 0.0064673 0.00647414 0.00648099 0.00648784 0.00649469 0.00650154 0.00650839 0.00651524 0.00652209 0.00652893 0.00653578 0.00654263 0.00654948 0.00655633 0.00656318 0.00657003 0.00657687 0.00658372 0.00659057 0.00659742 0.00660427 0.00661112 0.00661797 0.00662482 0.00663166 0.00663851 0.00664536 0.00665221 0.00665906 0.00666591 0.00667276 0.00667961 0.00668645 0.0066933 0.00670015 0.006707 0.00671385 +-0.00147859 -0.00139124 -0.00122072 -0.000781519 3.96265E-05 0.00111832 0.0023063 0.00349599 0.0045766 0.00538436 0.0057718 0.00587325 0.00589581 0.005905 0.0059122 0.00591911 0.00592597 0.00593283 0.00593968 0.00594654 0.0059534 0.00596025 0.00596711 0.00597397 0.00598082 0.00598768 0.00599454 0.00600139 0.00600825 0.0060151 0.00602196 0.00602882 0.00603567 0.00604253 0.00604939 0.00605624 0.0060631 0.00606996 0.00607681 0.00608367 0.00609053 0.00609738 0.00610424 0.0061111 0.00611795 0.00612481 0.00613167 0.00613852 0.00614538 0.00615224 0.00615909 0.00616595 0.00617281 0.00617966 0.00618652 0.00619338 0.00620023 0.00620709 0.00621395 0.0062208 0.00622766 0.00623452 0.00624137 0.00624823 0.00625509 0.00626194 0.0062688 0.00627566 0.00628251 0.00628937 0.00629623 0.00630308 0.00630994 0.0063168 0.00632365 0.00633051 0.00633736 0.00634422 0.00635108 0.00635793 0.00636479 0.00637165 0.0063785 0.00638536 0.00639222 0.00639907 0.00640593 0.00641279 0.00641964 0.0064265 0.00643336 0.00644021 0.00644707 0.00645393 0.00646078 0.00646764 0.0064745 0.00648135 0.00648821 0.00649507 0.00650192 0.00650878 0.00651564 0.00652249 0.00652935 0.00653621 0.00654306 0.00654992 0.00655678 0.00656363 0.00657049 0.00657735 0.0065842 0.00659106 0.00659792 0.00660477 0.00661163 0.00661849 0.00662534 0.0066322 0.00663906 0.00664591 0.00665277 0.00665963 0.00666648 0.00667334 0.0066802 0.00668705 0.00669391 0.00670077 0.00670762 0.00671448 0.00672134 +-0.00148051 -0.001393 -0.00122212 -0.000782171 3.97035E-05 0.00111892 0.00230736 0.00349763 0.00457916 0.00538849 0.00577756 0.00587964 0.00590232 0.00591154 0.00591875 0.00592566 0.00593254 0.0059394 0.00594627 0.00595313 0.00596 0.00596686 0.00597372 0.00598059 0.00598745 0.00599432 0.00600118 0.00600805 0.00601491 0.00602177 0.00602864 0.0060355 0.00604237 0.00604923 0.0060561 0.00606296 0.00606982 0.00607669 0.00608355 0.00609042 0.00609728 0.00610415 0.00611101 0.00611788 0.00612474 0.00613161 0.00613847 0.00614533 0.0061522 0.00615906 0.00616593 0.00617279 0.00617966 0.00618652 0.00619339 0.00620025 0.00620711 0.00621398 0.00622084 0.00622771 0.00623457 0.00624144 0.0062483 0.00625517 0.00626203 0.0062689 0.00627576 0.00628262 0.00628949 0.00629635 0.00630322 0.00631008 0.00631695 0.00632381 0.00633068 0.00633754 0.0063444 0.00635127 0.00635813 0.006365 0.00637186 0.00637873 0.00638559 0.00639246 0.00639932 0.00640619 0.00641305 0.00641991 0.00642678 0.00643364 0.00644051 0.00644737 0.00645424 0.0064611 0.00646797 0.00647483 0.00648169 0.00648856 0.00649542 0.00650229 0.00650915 0.00651602 0.00652288 0.00652975 0.00653661 0.00654348 0.00655034 0.0065572 0.00656407 0.00657093 0.0065778 0.00658466 0.00659153 0.00659839 0.00660526 0.00661212 0.00661898 0.00662585 0.00663271 0.00663958 0.00664644 0.00665331 0.00666017 0.00666704 0.0066739 0.00668077 0.00668763 0.00669449 0.00670136 0.00670822 0.00671509 0.00672195 0.00672882 +-0.00148242 -0.00139477 -0.00122351 -0.000782822 3.97804E-05 0.00111952 0.00230843 0.00349926 0.00458172 0.00539261 0.00578331 0.00588602 0.00590883 0.00591808 0.0059253 0.00593222 0.0059391 0.00594597 0.00595284 0.00595972 0.00596659 0.00597346 0.00598033 0.00598721 0.00599408 0.00600095 0.00600782 0.0060147 0.00602157 0.00602844 0.00603531 0.00604218 0.00604906 0.00605593 0.0060628 0.00606967 0.00607655 0.00608342 0.00609029 0.00609716 0.00610403 0.00611091 0.00611778 0.00612465 0.00613152 0.0061384 0.00614527 0.00615214 0.00615901 0.00616589 0.00617276 0.00617963 0.0061865 0.00619338 0.00620025 0.00620712 0.00621399 0.00622087 0.00622774 0.00623461 0.00624148 0.00624835 0.00625523 0.0062621 0.00626897 0.00627584 0.00628272 0.00628959 0.00629646 0.00630333 0.00631021 0.00631708 0.00632395 0.00633082 0.0063377 0.00634457 0.00635144 0.00635831 0.00636519 0.00637206 0.00637893 0.0063858 0.00639268 0.00639955 0.00640642 0.00641329 0.00642016 0.00642704 0.00643391 0.00644078 0.00644765 0.00645453 0.0064614 0.00646827 0.00647514 0.00648202 0.00648889 0.00649576 0.00650263 0.00650951 0.00651638 0.00652325 0.00653012 0.006537 0.00654387 0.00655074 0.00655761 0.00656448 0.00657136 0.00657823 0.0065851 0.00659197 0.00659885 0.00660572 0.00661259 0.00661946 0.00662634 0.00663321 0.00664008 0.00664695 0.00665383 0.0066607 0.00666757 0.00667444 0.00668132 0.00668819 0.00669506 0.00670193 0.00670881 0.00671568 0.00672255 0.00672942 0.00673629 +-0.00148434 -0.00139654 -0.00122491 -0.000783472 3.98574E-05 0.00112012 0.00230949 0.0035009 0.00458428 0.00539672 0.00578906 0.0058924 0.00591534 0.00592461 0.00593184 0.00593877 0.00594566 0.00595254 0.00595942 0.0059663 0.00597318 0.00598006 0.00598694 0.00599382 0.0060007 0.00600758 0.00601446 0.00602134 0.00602822 0.0060351 0.00604198 0.00604886 0.00605574 0.00606262 0.0060695 0.00607638 0.00608326 0.00609014 0.00609702 0.0061039 0.00611078 0.00611766 0.00612454 0.00613142 0.0061383 0.00614518 0.00615206 0.00615894 0.00616583 0.00617271 0.00617959 0.00618647 0.00619335 0.00620023 0.00620711 0.00621399 0.00622087 0.00622775 0.00623463 0.00624151 0.00624839 0.00625527 0.00626215 0.00626903 0.00627591 0.00628279 0.00628967 0.00629655 0.00630343 0.00631031 0.00631719 0.00632407 0.00633095 0.00633783 0.00634471 0.00635159 0.00635847 0.00636535 0.00637223 0.00637911 0.00638599 0.00639287 0.00639975 0.00640663 0.00641351 0.0064204 0.00642728 0.00643416 0.00644104 0.00644792 0.0064548 0.00646168 0.00646856 0.00647544 0.00648232 0.0064892 0.00649608 0.00650296 0.00650984 0.00651672 0.0065236 0.00653048 0.00653736 0.00654424 0.00655112 0.006558 0.00656488 0.00657176 0.00657864 0.00658552 0.0065924 0.00659928 0.00660616 0.00661304 0.00661992 0.0066268 0.00663368 0.00664056 0.00664744 0.00665432 0.0066612 0.00666809 0.00667497 0.00668185 0.00668873 0.00669561 0.00670249 0.00670937 0.00671625 0.00672313 0.00673001 0.00673689 0.00674377 +-0.00148626 -0.0013983 -0.0012263 -0.000784122 3.99344E-05 0.00112072 0.00231055 0.00350253 0.00458682 0.00540082 0.00579479 0.00589878 0.00592184 0.00593114 0.00593838 0.00594532 0.00595221 0.0059591 0.00596599 0.00597288 0.00597977 0.00598665 0.00599354 0.00600043 0.00600732 0.00601421 0.0060211 0.00602798 0.00603487 0.00604176 0.00604865 0.00605553 0.00606242 0.00606931 0.0060762 0.00608309 0.00608997 0.00609686 0.00610375 0.00611064 0.00611753 0.00612442 0.0061313 0.00613819 0.00614508 0.00615197 0.00615886 0.00616574 0.00617263 0.00617952 0.00618641 0.0061933 0.00620019 0.00620707 0.00621396 0.00622085 0.00622774 0.00623463 0.00624151 0.0062484 0.00625529 0.00626218 0.00626907 0.00627595 0.00628284 0.00628973 0.00629662 0.00630351 0.0063104 0.00631728 0.00632417 0.00633106 0.00633795 0.00634484 0.00635172 0.00635861 0.0063655 0.00637239 0.00637928 0.00638617 0.00639305 0.00639994 0.00640683 0.00641372 0.00642061 0.00642749 0.00643438 0.00644127 0.00644816 0.00645505 0.00646193 0.00646882 0.00647571 0.0064826 0.00648949 0.00649638 0.00650326 0.00651015 0.00651704 0.00652393 0.00653082 0.0065377 0.00654459 0.00655148 0.00655837 0.00656526 0.00657215 0.00657903 0.00658592 0.00659281 0.0065997 0.00660659 0.00661347 0.00662036 0.00662725 0.00663414 0.00664103 0.00664792 0.0066548 0.00666169 0.00666858 0.00667547 0.00668236 0.00668924 0.00669613 0.00670302 0.00670991 0.0067168 0.00672368 0.00673057 0.00673746 0.00674435 0.00675124 +-0.00148818 -0.00140006 -0.00122769 -0.00078477 4.00115E-05 0.00112132 0.00231161 0.00350416 0.00458937 0.00540492 0.00580052 0.00590515 0.00592834 0.00593766 0.00594491 0.00595186 0.00595876 0.00596566 0.00597256 0.00597945 0.00598635 0.00599325 0.00600014 0.00600704 0.00601393 0.00602083 0.00602773 0.00603462 0.00604152 0.00604841 0.00605531 0.0060622 0.0060691 0.006076 0.00608289 0.00608979 0.00609668 0.00610358 0.00611048 0.00611737 0.00612427 0.00613116 0.00613806 0.00614496 0.00615185 0.00615875 0.00616564 0.00617254 0.00617944 0.00618633 0.00619323 0.00620012 0.00620702 0.00621392 0.00622081 0.00622771 0.0062346 0.0062415 0.0062484 0.00625529 0.00626219 0.00626908 0.00627598 0.00628288 0.00628977 0.00629667 0.00630356 0.00631046 0.00631736 0.00632425 0.00633115 0.00633804 0.00634494 0.00635184 0.00635873 0.00636563 0.00637252 0.00637942 0.00638632 0.00639321 0.00640011 0.006407 0.0064139 0.0064208 0.00642769 0.00643459 0.00644149 0.00644838 0.00645528 0.00646217 0.00646907 0.00647597 0.00648286 0.00648976 0.00649665 0.00650355 0.00651045 0.00651734 0.00652424 0.00653113 0.00653803 0.00654493 0.00655182 0.00655872 0.00656561 0.00657251 0.00657941 0.0065863 0.0065932 0.00660009 0.00660699 0.00661389 0.00662078 0.00662768 0.00663457 0.00664147 0.00664837 0.00665526 0.00666216 0.00666905 0.00667595 0.00668285 0.00668974 0.00669664 0.00670353 0.00671043 0.00671733 0.00672422 0.00673112 0.00673801 0.00674491 0.00675181 0.0067587 +-0.00149009 -0.00140183 -0.00122908 -0.000785417 4.00885E-05 0.00112192 0.00231266 0.00350578 0.0045919 0.005409 0.00580625 0.00591152 0.00593483 0.00594418 0.00595144 0.0059584 0.00596531 0.00597222 0.00597912 0.00598602 0.00599293 0.00599983 0.00600674 0.00601364 0.00602054 0.00602745 0.00603435 0.00604126 0.00604816 0.00605506 0.00606197 0.00606887 0.00607577 0.00608268 0.00608958 0.00609649 0.00610339 0.00611029 0.0061172 0.0061241 0.006131 0.00613791 0.00614481 0.00615172 0.00615862 0.00616552 0.00617243 0.00617933 0.00618624 0.00619314 0.00620004 0.00620695 0.00621385 0.00622076 0.00622766 0.00623456 0.00624147 0.00624837 0.00625527 0.00626218 0.00626908 0.00627599 0.00628289 0.00628979 0.0062967 0.0063036 0.00631051 0.00631741 0.00632431 0.00633122 0.00633812 0.00634503 0.00635193 0.00635883 0.00636574 0.00637264 0.00637954 0.00638645 0.00639335 0.00640026 0.00640716 0.00641406 0.00642097 0.00642787 0.00643478 0.00644168 0.00644858 0.00645549 0.00646239 0.0064693 0.0064762 0.0064831 0.00649001 0.00649691 0.00650382 0.00651072 0.00651762 0.00652453 0.00653143 0.00653833 0.00654524 0.00655214 0.00655905 0.00656595 0.00657285 0.00657976 0.00658666 0.00659357 0.00660047 0.00660737 0.00661428 0.00662118 0.00662809 0.00663499 0.00664189 0.0066488 0.0066557 0.0066626 0.00666951 0.00667641 0.00668332 0.00669022 0.00669712 0.00670403 0.00671093 0.00671784 0.00672474 0.00673164 0.00673855 0.00674545 0.00675236 0.00675926 0.00676616 +-0.00149201 -0.00140359 -0.00123047 -0.000786063 4.01656E-05 0.00112252 0.00231372 0.0035074 0.00459443 0.00541308 0.00581196 0.00591788 0.00594132 0.0059507 0.00595797 0.00596494 0.00597186 0.00597877 0.00598568 0.00599259 0.0059995 0.00600642 0.00601333 0.00602024 0.00602715 0.00603406 0.00604097 0.00604789 0.0060548 0.00606171 0.00606862 0.00607553 0.00608244 0.00608936 0.00609627 0.00610318 0.00611009 0.006117 0.00612391 0.00613083 0.00613774 0.00614465 0.00615156 0.00615847 0.00616538 0.0061723 0.00617921 0.00618612 0.00619303 0.00619994 0.00620686 0.00621377 0.00622068 0.00622759 0.0062345 0.00624141 0.00624833 0.00625524 0.00626215 0.00626906 0.00627597 0.00628288 0.0062898 0.00629671 0.00630362 0.00631053 0.00631744 0.00632436 0.00633127 0.00633818 0.00634509 0.006352 0.00635891 0.00636583 0.00637274 0.00637965 0.00638656 0.00639347 0.00640038 0.0064073 0.00641421 0.00642112 0.00642803 0.00643494 0.00644186 0.00644877 0.00645568 0.00646259 0.0064695 0.00647641 0.00648333 0.00649024 0.00649715 0.00650406 0.00651097 0.00651788 0.0065248 0.00653171 0.00653862 0.00654553 0.00655244 0.00655936 0.00656627 0.00657318 0.00658009 0.006587 0.00659391 0.00660083 0.00660774 0.00661465 0.00662156 0.00662847 0.00663538 0.0066423 0.00664921 0.00665612 0.00666303 0.00666994 0.00667686 0.00668377 0.00669068 0.00669759 0.0067045 0.00671141 0.00671833 0.00672524 0.00673215 0.00673906 0.00674597 0.00675288 0.0067598 0.00676671 0.00677362 +-0.00149392 -0.00140535 -0.00123186 -0.000786708 4.02427E-05 0.00112311 0.00231477 0.00350902 0.00459696 0.00541715 0.00581767 0.00592424 0.00594781 0.00595721 0.0059645 0.00597147 0.0059784 0.00598532 0.00599224 0.00599916 0.00600608 0.006013 0.00601991 0.00602683 0.00603375 0.00604067 0.00604759 0.00605451 0.00606143 0.00606835 0.00607527 0.00608219 0.00608911 0.00609603 0.00610295 0.00610987 0.00611679 0.00612371 0.00613063 0.00613755 0.00614447 0.00615139 0.00615831 0.00616523 0.00617215 0.00617906 0.00618598 0.0061929 0.00619982 0.00620674 0.00621366 0.00622058 0.0062275 0.00623442 0.00624134 0.00624826 0.00625518 0.0062621 0.00626902 0.00627594 0.00628286 0.00628978 0.0062967 0.00630362 0.00631054 0.00631746 0.00632438 0.0063313 0.00633822 0.00634514 0.00635206 0.00635898 0.00636589 0.00637281 0.00637973 0.00638665 0.00639357 0.00640049 0.00640741 0.00641433 0.00642125 0.00642817 0.00643509 0.00644201 0.00644893 0.00645585 0.00646277 0.00646969 0.00647661 0.00648353 0.00649045 0.00649737 0.00650429 0.00651121 0.00651813 0.00652505 0.00653197 0.00653889 0.0065458 0.00655272 0.00655964 0.00656656 0.00657348 0.0065804 0.00658732 0.00659424 0.00660116 0.00660808 0.006615 0.00662192 0.00662884 0.00663576 0.00664268 0.0066496 0.00665652 0.00666344 0.00667036 0.00667728 0.0066842 0.00669112 0.00669804 0.00670496 0.00671188 0.0067188 0.00672572 0.00673263 0.00673955 0.00674647 0.00675339 0.00676031 0.00676723 0.00677415 0.00678107 +-0.00149584 -0.00140711 -0.00123325 -0.000787352 4.03198E-05 0.00112371 0.00231582 0.00351064 0.00459948 0.0054212 0.00582337 0.00593059 0.00595429 0.00596372 0.00597102 0.005978 0.00598493 0.00599186 0.00599879 0.00600572 0.00601264 0.00601957 0.0060265 0.00603343 0.00604035 0.00604728 0.00605421 0.00606114 0.00606806 0.00607499 0.00608192 0.00608884 0.00609577 0.0061027 0.00610963 0.00611655 0.00612348 0.00613041 0.00613734 0.00614426 0.00615119 0.00615812 0.00616505 0.00617197 0.0061789 0.00618583 0.00619276 0.00619968 0.00620661 0.00621354 0.00622047 0.00622739 0.00623432 0.00624125 0.00624818 0.0062551 0.00626203 0.00626896 0.00627589 0.00628281 0.00628974 0.00629667 0.0063036 0.00631052 0.00631745 0.00632438 0.00633131 0.00633823 0.00634516 0.00635209 0.00635902 0.00636594 0.00637287 0.0063798 0.00638673 0.00639365 0.00640058 0.00640751 0.00641444 0.00642136 0.00642829 0.00643522 0.00644215 0.00644907 0.006456 0.00646293 0.00646986 0.00647678 0.00648371 0.00649064 0.00649757 0.00650449 0.00651142 0.00651835 0.00652528 0.0065322 0.00653913 0.00654606 0.00655299 0.00655991 0.00656684 0.00657377 0.0065807 0.00658762 0.00659455 0.00660148 0.00660841 0.00661533 0.00662226 0.00662919 0.00663612 0.00664304 0.00664997 0.0066569 0.00666383 0.00667075 0.00667768 0.00668461 0.00669154 0.00669846 0.00670539 0.00671232 0.00671925 0.00672617 0.0067331 0.00674003 0.00674696 0.00675388 0.00676081 0.00676774 0.00677467 0.00678159 0.00678852 +-0.00149775 -0.00140887 -0.00123463 -0.000787995 4.0397E-05 0.0011243 0.00231687 0.00351225 0.00460199 0.00542525 0.00582906 0.00593694 0.00596077 0.00597023 0.00597753 0.00598452 0.00599147 0.0059984 0.00600534 0.00601227 0.00601921 0.00602614 0.00603308 0.00604001 0.00604695 0.00605388 0.00606082 0.00606776 0.00607469 0.00608162 0.00608856 0.0060955 0.00610243 0.00610937 0.0061163 0.00612324 0.00613017 0.00613711 0.00614404 0.00615098 0.00615791 0.00616485 0.00617178 0.00617872 0.00618565 0.00619259 0.00619953 0.00620646 0.0062134 0.00622033 0.00622727 0.0062342 0.00624114 0.00624807 0.00625501 0.00626194 0.00626888 0.00627581 0.00628275 0.00628968 0.00629662 0.00630356 0.00631049 0.00631743 0.00632436 0.0063313 0.00633823 0.00634517 0.0063521 0.00635904 0.00636597 0.00637291 0.00637984 0.00638678 0.00639372 0.00640065 0.00640759 0.00641452 0.00642146 0.00642839 0.00643533 0.00644226 0.0064492 0.00645613 0.00646307 0.00647 0.00647694 0.00648387 0.00649081 0.00649775 0.00650468 0.00651162 0.00651855 0.00652549 0.00653242 0.00653936 0.00654629 0.00655323 0.00656016 0.0065671 0.00657403 0.00658097 0.0065879 0.00659484 0.00660178 0.00660871 0.00661565 0.00662258 0.00662952 0.00663645 0.00664339 0.00665032 0.00665726 0.00666419 0.00667113 0.00667806 0.006685 0.00669193 0.00669887 0.00670581 0.00671274 0.00671968 0.00672661 0.00673355 0.00674048 0.00674742 0.00675435 0.00676129 0.00676822 0.00677516 0.00678209 0.00678903 0.00679596 +-0.00149966 -0.00141063 -0.00123602 -0.000788637 4.04742E-05 0.00112489 0.00231792 0.00351386 0.0046045 0.00542929 0.00583475 0.00594328 0.00596725 0.00597673 0.00598405 0.00599104 0.00599799 0.00600494 0.00601188 0.00601883 0.00602577 0.00603271 0.00603965 0.0060466 0.00605354 0.00606048 0.00606743 0.00607437 0.00608131 0.00608826 0.0060952 0.00610214 0.00610909 0.00611603 0.00612297 0.00612992 0.00613686 0.0061438 0.00615074 0.00615769 0.00616463 0.00617157 0.00617852 0.00618546 0.0061924 0.00619935 0.00620629 0.00621323 0.00622018 0.00622712 0.00623406 0.00624101 0.00624795 0.00625489 0.00626184 0.00626878 0.00627572 0.00628267 0.00628961 0.00629655 0.0063035 0.00631044 0.00631738 0.00632432 0.00633127 0.00633821 0.00634515 0.0063521 0.00635904 0.00636598 0.00637293 0.00637987 0.00638681 0.00639376 0.0064007 0.00640764 0.00641459 0.00642153 0.00642847 0.00643542 0.00644236 0.0064493 0.00645625 0.00646319 0.00647013 0.00647707 0.00648402 0.00649096 0.0064979 0.00650485 0.00651179 0.00651873 0.00652568 0.00653262 0.00653956 0.00654651 0.00655345 0.00656039 0.00656734 0.00657428 0.00658122 0.00658817 0.00659511 0.00660205 0.006609 0.00661594 0.00662288 0.00662983 0.00663677 0.00664371 0.00665065 0.0066576 0.00666454 0.00667148 0.00667843 0.00668537 0.00669231 0.00669926 0.0067062 0.00671314 0.00672009 0.00672703 0.00673397 0.00674092 0.00674786 0.0067548 0.00676175 0.00676869 0.00677563 0.00678258 0.00678952 0.00679646 0.0068034 +-0.00150158 -0.00141239 -0.0012374 -0.000789279 4.05514E-05 0.00112549 0.00231897 0.00351546 0.004607 0.00543332 0.00584042 0.00594962 0.00597372 0.00598323 0.00599056 0.00599756 0.00600452 0.00601147 0.00601842 0.00602537 0.00603233 0.00603928 0.00604623 0.00605318 0.00606013 0.00606708 0.00607403 0.00608098 0.00608793 0.00609488 0.00610183 0.00610879 0.00611574 0.00612269 0.00612964 0.00613659 0.00614354 0.00615049 0.00615744 0.00616439 0.00617135 0.0061783 0.00618525 0.0061922 0.00619915 0.0062061 0.00621305 0.00622 0.00622695 0.0062339 0.00624086 0.00624781 0.00625476 0.00626171 0.00626866 0.00627561 0.00628256 0.00628951 0.00629646 0.00630341 0.00631037 0.00631732 0.00632427 0.00633122 0.00633817 0.00634512 0.00635207 0.00635902 0.00636597 0.00637293 0.00637988 0.00638683 0.00639378 0.00640073 0.00640768 0.00641463 0.00642158 0.00642853 0.00643548 0.00644244 0.00644939 0.00645634 0.00646329 0.00647024 0.00647719 0.00648414 0.00649109 0.00649804 0.00650499 0.00651195 0.0065189 0.00652585 0.0065328 0.00653975 0.0065467 0.00655365 0.0065606 0.00656755 0.00657451 0.00658146 0.00658841 0.00659536 0.00660231 0.00660926 0.00661621 0.00662316 0.00663011 0.00663706 0.00664402 0.00665097 0.00665792 0.00666487 0.00667182 0.00667877 0.00668572 0.00669267 0.00669962 0.00670658 0.00671353 0.00672048 0.00672743 0.00673438 0.00674133 0.00674828 0.00675523 0.00676218 0.00676913 0.00677609 0.00678304 0.00678999 0.00679694 0.00680389 0.00681084 +-0.00150349 -0.00141415 -0.00123878 -0.000789919 4.06286E-05 0.00112608 0.00232001 0.00351706 0.00460949 0.00543734 0.00584609 0.00595596 0.00598019 0.00598972 0.00599706 0.00600407 0.00601104 0.006018 0.00602496 0.00603192 0.00603888 0.00604584 0.0060528 0.00605976 0.00606671 0.00607367 0.00608063 0.00608759 0.00609455 0.00610151 0.00610847 0.00611543 0.00612238 0.00612934 0.0061363 0.00614326 0.00615022 0.00615718 0.00616414 0.0061711 0.00617806 0.00618501 0.00619197 0.00619893 0.00620589 0.00621285 0.00621981 0.00622677 0.00623373 0.00624069 0.00624764 0.0062546 0.00626156 0.00626852 0.00627548 0.00628244 0.0062894 0.00629636 0.00630332 0.00631027 0.00631723 0.00632419 0.00633115 0.00633811 0.00634507 0.00635203 0.00635899 0.00636595 0.0063729 0.00637986 0.00638682 0.00639378 0.00640074 0.0064077 0.00641466 0.00642162 0.00642858 0.00643553 0.00644249 0.00644945 0.00645641 0.00646337 0.00647033 0.00647729 0.00648425 0.0064912 0.00649816 0.00650512 0.00651208 0.00651904 0.006526 0.00653296 0.00653992 0.00654688 0.00655383 0.00656079 0.00656775 0.00657471 0.00658167 0.00658863 0.00659559 0.00660255 0.00660951 0.00661646 0.00662342 0.00663038 0.00663734 0.0066443 0.00665126 0.00665822 0.00666518 0.00667214 0.00667909 0.00668605 0.00669301 0.00669997 0.00670693 0.00671389 0.00672085 0.00672781 0.00673477 0.00674172 0.00674868 0.00675564 0.0067626 0.00676956 0.00677652 0.00678348 0.00679044 0.0067974 0.00680435 0.00681131 0.00681827 +-0.0015054 -0.0014159 -0.00124017 -0.000790558 4.07058E-05 0.00112667 0.00232106 0.00351866 0.00461198 0.00544135 0.00585175 0.00596229 0.00598665 0.00599622 0.00600356 0.00601059 0.00601756 0.00602453 0.00603149 0.00603846 0.00604543 0.00605239 0.00605936 0.00606633 0.0060733 0.00608026 0.00608723 0.0060942 0.00610116 0.00610813 0.00611509 0.00612206 0.00612903 0.00613599 0.00614296 0.00614993 0.00615689 0.00616386 0.00617083 0.0061778 0.00618476 0.00619173 0.0061987 0.00620566 0.00621263 0.0062196 0.00622656 0.00623353 0.0062405 0.00624746 0.00625443 0.0062614 0.00626836 0.00627533 0.0062823 0.00628926 0.00629623 0.0063032 0.00631016 0.00631713 0.0063241 0.00633106 0.00633803 0.006345 0.00635196 0.00635893 0.0063659 0.00637286 0.00637983 0.0063868 0.00639376 0.00640073 0.0064077 0.00641466 0.00642163 0.0064286 0.00643556 0.00644253 0.0064495 0.00645646 0.00646343 0.0064704 0.00647736 0.00648433 0.0064913 0.00649826 0.00650523 0.0065122 0.00651916 0.00652613 0.0065331 0.00654006 0.00654703 0.006554 0.00656096 0.00656793 0.0065749 0.00658186 0.00658883 0.0065958 0.00660276 0.00660973 0.0066167 0.00662367 0.00663063 0.0066376 0.00664457 0.00665153 0.0066585 0.00666547 0.00667243 0.0066794 0.00668637 0.00669333 0.0067003 0.00670727 0.00671423 0.0067212 0.00672817 0.00673513 0.0067421 0.00674907 0.00675603 0.006763 0.00676997 0.00677693 0.0067839 0.00679087 0.00679783 0.0068048 0.00681177 0.00681873 0.0068257 +-0.00150731 -0.00141766 -0.00124155 -0.000791196 4.07831E-05 0.00112726 0.0023221 0.00352026 0.00461447 0.00544535 0.00585741 0.00596861 0.00599311 0.0060027 0.00601006 0.00601709 0.00602407 0.00603105 0.00603802 0.006045 0.00605197 0.00605895 0.00606592 0.0060729 0.00607987 0.00608685 0.00609382 0.0061008 0.00610777 0.00611474 0.00612172 0.00612869 0.00613567 0.00614264 0.00614962 0.00615659 0.00616357 0.00617054 0.00617752 0.00618449 0.00619146 0.00619844 0.00620541 0.00621239 0.00621936 0.00622634 0.00623331 0.00624029 0.00624726 0.00625424 0.00626121 0.00626818 0.00627516 0.00628213 0.00628911 0.00629608 0.00630306 0.00631003 0.00631701 0.00632398 0.00633096 0.00633793 0.0063449 0.00635188 0.00635885 0.00636583 0.0063728 0.00637978 0.00638675 0.00639373 0.0064007 0.00640768 0.00641465 0.00642162 0.0064286 0.00643557 0.00644255 0.00644952 0.0064565 0.00646347 0.00647045 0.00647742 0.0064844 0.00649137 0.00649834 0.00650532 0.00651229 0.00651927 0.00652624 0.00653322 0.00654019 0.00654717 0.00655414 0.00656112 0.00656809 0.00657506 0.00658204 0.00658901 0.00659599 0.00660296 0.00660994 0.00661691 0.00662389 0.00663086 0.00663784 0.00664481 0.00665179 0.00665876 0.00666573 0.00667271 0.00667968 0.00668666 0.00669363 0.00670061 0.00670758 0.00671456 0.00672153 0.00672851 0.00673548 0.00674245 0.00674943 0.0067564 0.00676338 0.00677035 0.00677733 0.0067843 0.00679128 0.00679825 0.00680523 0.0068122 0.00681917 0.00682615 0.00683312 +-0.00150922 -0.00141942 -0.00124293 -0.000791833 4.08604E-05 0.00112785 0.00232314 0.00352185 0.00461695 0.00544935 0.00586305 0.00597493 0.00599957 0.00600919 0.00601656 0.00602359 0.00603059 0.00603757 0.00604455 0.00605153 0.00605852 0.0060655 0.00607248 0.00607946 0.00608645 0.00609343 0.00610041 0.00610739 0.00611437 0.00612136 0.00612834 0.00613532 0.0061423 0.00614929 0.00615627 0.00616325 0.00617023 0.00617722 0.0061842 0.00619118 0.00619816 0.00620515 0.00621213 0.00621911 0.00622609 0.00623308 0.00624006 0.00624704 0.00625402 0.006261 0.00626799 0.00627497 0.00628195 0.00628893 0.00629592 0.0063029 0.00630988 0.00631686 0.00632385 0.00633083 0.00633781 0.00634479 0.00635178 0.00635876 0.00636574 0.00637272 0.00637971 0.00638669 0.00639367 0.00640065 0.00640763 0.00641462 0.0064216 0.00642858 0.00643556 0.00644255 0.00644953 0.00645651 0.00646349 0.00647048 0.00647746 0.00648444 0.00649142 0.00649841 0.00650539 0.00651237 0.00651935 0.00652634 0.00653332 0.0065403 0.00654728 0.00655427 0.00656125 0.00656823 0.00657521 0.00658219 0.00658918 0.00659616 0.00660314 0.00661012 0.00661711 0.00662409 0.00663107 0.00663805 0.00664504 0.00665202 0.006659 0.00666598 0.00667297 0.00667995 0.00668693 0.00669391 0.0067009 0.00670788 0.00671486 0.00672184 0.00672882 0.00673581 0.00674279 0.00674977 0.00675675 0.00676374 0.00677072 0.0067777 0.00678468 0.00679167 0.00679865 0.00680563 0.00681261 0.0068196 0.00682658 0.00683356 0.00684054 +-0.00151113 -0.00142117 -0.00124431 -0.000792469 4.09377E-05 0.00112844 0.00232417 0.00352344 0.00461942 0.00545333 0.00586869 0.00598125 0.00600602 0.00601567 0.00602305 0.00603009 0.00603709 0.00604408 0.00605107 0.00605806 0.00606505 0.00607205 0.00607904 0.00608603 0.00609302 0.00610001 0.006107 0.00611399 0.00612098 0.00612797 0.00613496 0.00614195 0.00614894 0.00615593 0.00616292 0.00616991 0.0061769 0.00618389 0.00619088 0.00619787 0.00620486 0.00621185 0.00621884 0.00622583 0.00623282 0.00623981 0.0062468 0.00625379 0.00626078 0.00626777 0.00627476 0.00628175 0.00628874 0.00629573 0.00630272 0.00630971 0.0063167 0.00632369 0.00633068 0.00633767 0.00634466 0.00635165 0.00635864 0.00636563 0.00637262 0.00637961 0.0063866 0.00639359 0.00640058 0.00640757 0.00641456 0.00642156 0.00642855 0.00643554 0.00644253 0.00644952 0.00645651 0.0064635 0.00647049 0.00647748 0.00648447 0.00649146 0.00649845 0.00650544 0.00651243 0.00651942 0.00652641 0.0065334 0.00654039 0.00654738 0.00655437 0.00656136 0.00656835 0.00657534 0.00658233 0.00658932 0.00659631 0.0066033 0.00661029 0.00661728 0.00662427 0.00663126 0.00663825 0.00664524 0.00665223 0.00665922 0.00666621 0.0066732 0.00668019 0.00668718 0.00669417 0.00670116 0.00670815 0.00671514 0.00672213 0.00672912 0.00673611 0.0067431 0.00675009 0.00675709 0.00676408 0.00677107 0.00677806 0.00678505 0.00679204 0.00679903 0.00680602 0.00681301 0.00682 0.00682699 0.00683398 0.00684097 0.00684796 +-0.00151304 -0.00142292 -0.00124568 -0.000793105 4.10151E-05 0.00112902 0.00232521 0.00352503 0.00462189 0.00545731 0.00587432 0.00598756 0.00601247 0.00602214 0.00602953 0.00603659 0.0060436 0.0060506 0.00605759 0.00606459 0.00607159 0.00607859 0.00608559 0.00609258 0.00609958 0.00610658 0.00611358 0.00612058 0.00612757 0.00613457 0.00614157 0.00614857 0.00615557 0.00616256 0.00616956 0.00617656 0.00618356 0.00619056 0.00619755 0.00620455 0.00621155 0.00621855 0.00622555 0.00623254 0.00623954 0.00624654 0.00625354 0.00626054 0.00626753 0.00627453 0.00628153 0.00628853 0.00629553 0.00630252 0.00630952 0.00631652 0.00632352 0.00633052 0.00633751 0.00634451 0.00635151 0.00635851 0.00636551 0.0063725 0.0063795 0.0063865 0.0063935 0.0064005 0.0064075 0.00641449 0.00642149 0.00642849 0.00643549 0.00644249 0.00644948 0.00645648 0.00646348 0.00647048 0.00647748 0.00648447 0.00649147 0.00649847 0.00650547 0.00651247 0.00651946 0.00652646 0.00653346 0.00654046 0.00654746 0.00655445 0.00656145 0.00656845 0.00657545 0.00658245 0.00658944 0.00659644 0.00660344 0.00661044 0.00661744 0.00662443 0.00663143 0.00663843 0.00664543 0.00665243 0.00665942 0.00666642 0.00667342 0.00668042 0.00668742 0.00669441 0.00670141 0.00670841 0.00671541 0.00672241 0.0067294 0.0067364 0.0067434 0.0067504 0.0067574 0.00676439 0.00677139 0.00677839 0.00678539 0.00679239 0.00679938 0.00680638 0.00681338 0.00682038 0.00682738 0.00683437 0.00684137 0.00684837 0.00685537 +-0.00151495 -0.00142468 -0.00124706 -0.000793739 4.10925E-05 0.00112961 0.00232624 0.00352661 0.00462435 0.00546127 0.00587994 0.00599387 0.00601892 0.00602862 0.00603602 0.00604308 0.0060501 0.0060571 0.00606411 0.00607112 0.00607812 0.00608513 0.00609213 0.00609914 0.00610614 0.00611315 0.00612016 0.00612716 0.00613417 0.00614117 0.00614818 0.00615519 0.00616219 0.0061692 0.0061762 0.00618321 0.00619021 0.00619722 0.00620423 0.00621123 0.00621824 0.00622524 0.00623225 0.00623926 0.00624626 0.00625327 0.00626027 0.00626728 0.00627428 0.00628129 0.0062883 0.0062953 0.00630231 0.00630931 0.00631632 0.00632333 0.00633033 0.00633734 0.00634434 0.00635135 0.00635835 0.00636536 0.00637237 0.00637937 0.00638638 0.00639338 0.00640039 0.0064074 0.0064144 0.00642141 0.00642841 0.00643542 0.00644243 0.00644943 0.00645644 0.00646344 0.00647045 0.00647745 0.00648446 0.00649147 0.00649847 0.00650548 0.00651248 0.00651949 0.0065265 0.0065335 0.00654051 0.00654751 0.00655452 0.00656152 0.00656853 0.00657554 0.00658254 0.00658955 0.00659655 0.00660356 0.00661057 0.00661757 0.00662458 0.00663158 0.00663859 0.00664559 0.0066526 0.00665961 0.00666661 0.00667362 0.00668062 0.00668763 0.00669464 0.00670164 0.00670865 0.00671565 0.00672266 0.00672966 0.00673667 0.00674368 0.00675068 0.00675769 0.00676469 0.0067717 0.00677871 0.00678571 0.00679272 0.00679972 0.00680673 0.00681374 0.00682074 0.00682775 0.00683475 0.00684176 0.00684876 0.00685577 0.00686278 +-0.00151686 -0.00142643 -0.00124843 -0.000794372 4.11699E-05 0.0011302 0.00232728 0.00352819 0.00462681 0.00546523 0.00588556 0.00600017 0.00602536 0.00603509 0.0060425 0.00604957 0.00605659 0.00606361 0.00607062 0.00607764 0.00608465 0.00609166 0.00609868 0.00610569 0.0061127 0.00611972 0.00612673 0.00613374 0.00614076 0.00614777 0.00615479 0.0061618 0.00616881 0.00617583 0.00618284 0.00618985 0.00619687 0.00620388 0.00621089 0.00621791 0.00622492 0.00623194 0.00623895 0.00624596 0.00625298 0.00625999 0.006267 0.00627402 0.00628103 0.00628804 0.00629506 0.00630207 0.00630909 0.0063161 0.00632311 0.00633013 0.00633714 0.00634415 0.00635117 0.00635818 0.0063652 0.00637221 0.00637922 0.00638624 0.00639325 0.00640026 0.00640728 0.00641429 0.0064213 0.00642832 0.00643533 0.00644235 0.00644936 0.00645637 0.00646339 0.0064704 0.00647741 0.00648443 0.00649144 0.00649845 0.00650547 0.00651248 0.0065195 0.00652651 0.00653352 0.00654054 0.00654755 0.00655456 0.00656158 0.00656859 0.00657561 0.00658262 0.00658963 0.00659665 0.00660366 0.00661067 0.00661769 0.0066247 0.00663171 0.00663873 0.00664574 0.00665276 0.00665977 0.00666678 0.0066738 0.00668081 0.00668782 0.00669484 0.00670185 0.00670886 0.00671588 0.00672289 0.00672991 0.00673692 0.00674393 0.00675095 0.00675796 0.00676497 0.00677199 0.006779 0.00678601 0.00679303 0.00680004 0.00680706 0.00681407 0.00682108 0.0068281 0.00683511 0.00684212 0.00684914 0.00685615 0.00686317 0.00687018 +-0.00151876 -0.00142818 -0.00124981 -0.000795005 4.12473E-05 0.00113078 0.00232831 0.00352977 0.00462926 0.00546918 0.00589116 0.00600647 0.00603179 0.00604155 0.00604898 0.00605606 0.00606309 0.00607011 0.00607713 0.00608415 0.00609117 0.00609819 0.00610522 0.00611224 0.00611926 0.00612628 0.0061333 0.00614032 0.00614734 0.00615437 0.00616139 0.00616841 0.00617543 0.00618245 0.00618947 0.00619649 0.00620352 0.00621054 0.00621756 0.00622458 0.0062316 0.00623862 0.00624565 0.00625267 0.00625969 0.00626671 0.00627373 0.00628075 0.00628777 0.0062948 0.00630182 0.00630884 0.00631586 0.00632288 0.0063299 0.00633692 0.00634395 0.00635097 0.00635799 0.00636501 0.00637203 0.00637905 0.00638607 0.0063931 0.00640012 0.00640714 0.00641416 0.00642118 0.0064282 0.00643522 0.00644225 0.00644927 0.00645629 0.00646331 0.00647033 0.00647735 0.00648438 0.0064914 0.00649842 0.00650544 0.00651246 0.00651948 0.0065265 0.00653353 0.00654055 0.00654757 0.00655459 0.00656161 0.00656863 0.00657565 0.00658268 0.0065897 0.00659672 0.00660374 0.00661076 0.00661778 0.0066248 0.00663183 0.00663885 0.00664587 0.00665289 0.00665991 0.00666693 0.00667395 0.00668098 0.006688 0.00669502 0.00670204 0.00670906 0.00671608 0.00672311 0.00673013 0.00673715 0.00674417 0.00675119 0.00675821 0.00676523 0.00677226 0.00677928 0.0067863 0.00679332 0.00680034 0.00680736 0.00681438 0.00682141 0.00682843 0.00683545 0.00684247 0.00684949 0.00685651 0.00686353 0.00687056 0.00687758 +-0.00152067 -0.00142993 -0.00125118 -0.000795636 4.13247E-05 0.00113137 0.00232934 0.00353134 0.00463171 0.00547312 0.00589676 0.00601276 0.00603823 0.00604802 0.00605545 0.00606254 0.00606957 0.00607661 0.00608363 0.00609066 0.00609769 0.00610472 0.00611175 0.00611878 0.00612581 0.00613284 0.00613987 0.0061469 0.00615393 0.00616096 0.00616799 0.00617502 0.00618204 0.00618907 0.0061961 0.00620313 0.00621016 0.00621719 0.00622422 0.00623125 0.00623828 0.00624531 0.00625234 0.00625937 0.0062664 0.00627343 0.00628045 0.00628748 0.00629451 0.00630154 0.00630857 0.0063156 0.00632263 0.00632966 0.00633669 0.00634372 0.00635075 0.00635778 0.00636481 0.00637183 0.00637886 0.00638589 0.00639292 0.00639995 0.00640698 0.00641401 0.00642104 0.00642807 0.0064351 0.00644213 0.00644916 0.00645619 0.00646322 0.00647024 0.00647727 0.0064843 0.00649133 0.00649836 0.00650539 0.00651242 0.00651945 0.00652648 0.00653351 0.00654054 0.00654757 0.0065546 0.00656163 0.00656865 0.00657568 0.00658271 0.00658974 0.00659677 0.0066038 0.00661083 0.00661786 0.00662489 0.00663192 0.00663895 0.00664598 0.00665301 0.00666004 0.00666706 0.00667409 0.00668112 0.00668815 0.00669518 0.00670221 0.00670924 0.00671627 0.0067233 0.00673033 0.00673736 0.00674439 0.00675142 0.00675845 0.00676547 0.0067725 0.00677953 0.00678656 0.00679359 0.00680062 0.00680765 0.00681468 0.00682171 0.00682874 0.00683577 0.0068428 0.00684983 0.00685686 0.00686388 0.00687091 0.00687794 0.00688497 +-0.00152258 -0.00143169 -0.00125255 -0.000796266 4.14022E-05 0.00113195 0.00233036 0.00353292 0.00463415 0.00547705 0.00590235 0.00601905 0.00604466 0.00605447 0.00606192 0.00606901 0.00607606 0.0060831 0.00609014 0.00609717 0.00610421 0.00611125 0.00611828 0.00612532 0.00613236 0.0061394 0.00614643 0.00615347 0.00616051 0.00616754 0.00617458 0.00618162 0.00618865 0.00619569 0.00620273 0.00620977 0.0062168 0.00622384 0.00623088 0.00623791 0.00624495 0.00625199 0.00625903 0.00626606 0.0062731 0.00628014 0.00628717 0.00629421 0.00630125 0.00630829 0.00631532 0.00632236 0.0063294 0.00633643 0.00634347 0.00635051 0.00635754 0.00636458 0.00637162 0.00637866 0.00638569 0.00639273 0.00639977 0.0064068 0.00641384 0.00642088 0.00642792 0.00643495 0.00644199 0.00644903 0.00645606 0.0064631 0.00647014 0.00647718 0.00648421 0.00649125 0.00649829 0.00650532 0.00651236 0.0065194 0.00652643 0.00653347 0.00654051 0.00654755 0.00655458 0.00656162 0.00656866 0.00657569 0.00658273 0.00658977 0.00659681 0.00660384 0.00661088 0.00661792 0.00662495 0.00663199 0.00663903 0.00664607 0.0066531 0.00666014 0.00666718 0.00667421 0.00668125 0.00668829 0.00669532 0.00670236 0.0067094 0.00671644 0.00672347 0.00673051 0.00673755 0.00674458 0.00675162 0.00675866 0.0067657 0.00677273 0.00677977 0.00678681 0.00679384 0.00680088 0.00680792 0.00681496 0.00682199 0.00682903 0.00683607 0.0068431 0.00685014 0.00685718 0.00686421 0.00687125 0.00687829 0.00688533 0.00689236 +-0.00152448 -0.00143344 -0.00125392 -0.000796896 4.14797E-05 0.00113253 0.00233139 0.00353448 0.00463658 0.00548097 0.00590794 0.00602533 0.00605109 0.00606093 0.00606838 0.00607549 0.00608254 0.00608959 0.00609663 0.00610368 0.00611072 0.00611777 0.00612481 0.00613186 0.0061389 0.00614595 0.00615299 0.00616004 0.00616708 0.00617413 0.00618117 0.00618822 0.00619526 0.00620231 0.00620935 0.0062164 0.00622344 0.00623049 0.00623753 0.00624458 0.00625162 0.00625867 0.00626571 0.00627276 0.0062798 0.00628685 0.00629389 0.00630093 0.00630798 0.00631502 0.00632207 0.00632911 0.00633616 0.0063432 0.00635025 0.00635729 0.00636434 0.00637138 0.00637843 0.00638547 0.00639252 0.00639956 0.00640661 0.00641365 0.0064207 0.00642774 0.00643479 0.00644183 0.00644888 0.00645592 0.00646297 0.00647001 0.00647706 0.0064841 0.00649115 0.00649819 0.00650524 0.00651228 0.00651933 0.00652637 0.00653342 0.00654046 0.00654751 0.00655455 0.0065616 0.00656864 0.00657569 0.00658273 0.00658977 0.00659682 0.00660386 0.00661091 0.00661795 0.006625 0.00663204 0.00663909 0.00664613 0.00665318 0.00666022 0.00666727 0.00667431 0.00668136 0.0066884 0.00669545 0.00670249 0.00670954 0.00671658 0.00672363 0.00673067 0.00673772 0.00674476 0.00675181 0.00675885 0.0067659 0.00677294 0.00677999 0.00678703 0.00679408 0.00680112 0.00680817 0.00681521 0.00682226 0.0068293 0.00683635 0.00684339 0.00685044 0.00685748 0.00686453 0.00687157 0.00687862 0.00688566 0.0068927 0.00689975 +-0.00152639 -0.00143518 -0.00125529 -0.000797524 4.15572E-05 0.00113311 0.00233241 0.00353605 0.00463901 0.00548488 0.00591351 0.00603161 0.00605751 0.00606738 0.00607485 0.00608196 0.00608902 0.00609607 0.00610313 0.00611018 0.00611723 0.00612429 0.00613134 0.00613839 0.00614544 0.0061525 0.00615955 0.0061666 0.00617365 0.00618071 0.00618776 0.00619481 0.00620186 0.00620892 0.00621597 0.00622302 0.00623008 0.00623713 0.00624418 0.00625123 0.00625829 0.00626534 0.00627239 0.00627944 0.0062865 0.00629355 0.0063006 0.00630765 0.00631471 0.00632176 0.00632881 0.00633587 0.00634292 0.00634997 0.00635702 0.00636408 0.00637113 0.00637818 0.00638523 0.00639229 0.00639934 0.00640639 0.00641344 0.0064205 0.00642755 0.0064346 0.00644166 0.00644871 0.00645576 0.00646281 0.00646987 0.00647692 0.00648397 0.00649102 0.00649808 0.00650513 0.00651218 0.00651924 0.00652629 0.00653334 0.00654039 0.00654745 0.0065545 0.00656155 0.0065686 0.00657566 0.00658271 0.00658976 0.00659681 0.00660387 0.00661092 0.00661797 0.00662503 0.00663208 0.00663913 0.00664618 0.00665324 0.00666029 0.00666734 0.00667439 0.00668145 0.0066885 0.00669555 0.0067026 0.00670966 0.00671671 0.00672376 0.00673082 0.00673787 0.00674492 0.00675197 0.00675903 0.00676608 0.00677313 0.00678018 0.00678724 0.00679429 0.00680134 0.00680839 0.00681545 0.0068225 0.00682955 0.00683661 0.00684366 0.00685071 0.00685776 0.00686482 0.00687187 0.00687892 0.00688597 0.00689303 0.00690008 0.00690713 +-0.00152829 -0.00143693 -0.00125666 -0.000798152 4.16347E-05 0.00113369 0.00233343 0.00353761 0.00464143 0.00548878 0.00591908 0.00603789 0.00606393 0.00607383 0.0060813 0.00608843 0.0060955 0.00610256 0.00610962 0.00611668 0.00612374 0.0061308 0.00613786 0.00614492 0.00615198 0.00615904 0.0061661 0.00617316 0.00618022 0.00618728 0.00619434 0.0062014 0.00620846 0.00621552 0.00622259 0.00622965 0.00623671 0.00624377 0.00625083 0.00625789 0.00626495 0.00627201 0.00627907 0.00628613 0.00629319 0.00630025 0.00630731 0.00631437 0.00632143 0.00632849 0.00633555 0.00634261 0.00634967 0.00635673 0.00636379 0.00637085 0.00637792 0.00638498 0.00639204 0.0063991 0.00640616 0.00641322 0.00642028 0.00642734 0.0064344 0.00644146 0.00644852 0.00645558 0.00646264 0.0064697 0.00647676 0.00648382 0.00649088 0.00649794 0.006505 0.00651206 0.00651912 0.00652619 0.00653325 0.00654031 0.00654737 0.00655443 0.00656149 0.00656855 0.00657561 0.00658267 0.00658973 0.00659679 0.00660385 0.00661091 0.00661797 0.00662503 0.00663209 0.00663915 0.00664621 0.00665327 0.00666033 0.00666739 0.00667445 0.00668152 0.00668858 0.00669564 0.0067027 0.00670976 0.00671682 0.00672388 0.00673094 0.006738 0.00674506 0.00675212 0.00675918 0.00676624 0.0067733 0.00678036 0.00678742 0.00679448 0.00680154 0.0068086 0.00681566 0.00682272 0.00682979 0.00683685 0.00684391 0.00685097 0.00685803 0.00686509 0.00687215 0.00687921 0.00688627 0.00689333 0.00690039 0.00690745 0.00691451 +-0.0015302 -0.00143868 -0.00125803 -0.000798778 4.17123E-05 0.00113427 0.00233445 0.00353917 0.00464385 0.00549268 0.00592464 0.00604416 0.00607034 0.00608027 0.00608776 0.00609489 0.00610197 0.00610904 0.0061161 0.00612317 0.00613024 0.00613731 0.00614438 0.00615145 0.00615851 0.00616558 0.00617265 0.00617972 0.00618679 0.00619386 0.00620092 0.00620799 0.00621506 0.00622213 0.0062292 0.00623626 0.00624333 0.0062504 0.00625747 0.00626454 0.00627161 0.00627867 0.00628574 0.00629281 0.00629988 0.00630695 0.00631402 0.00632108 0.00632815 0.00633522 0.00634229 0.00634936 0.00635642 0.00636349 0.00637056 0.00637763 0.0063847 0.00639177 0.00639883 0.0064059 0.00641297 0.00642004 0.00642711 0.00643418 0.00644124 0.00644831 0.00645538 0.00646245 0.00646952 0.00647659 0.00648365 0.00649072 0.00649779 0.00650486 0.00651193 0.00651899 0.00652606 0.00653313 0.0065402 0.00654727 0.00655434 0.0065614 0.00656847 0.00657554 0.00658261 0.00658968 0.00659675 0.00660381 0.00661088 0.00661795 0.00662502 0.00663209 0.00663916 0.00664622 0.00665329 0.00666036 0.00666743 0.0066745 0.00668156 0.00668863 0.0066957 0.00670277 0.00670984 0.00671691 0.00672397 0.00673104 0.00673811 0.00674518 0.00675225 0.00675932 0.00676638 0.00677345 0.00678052 0.00678759 0.00679466 0.00680172 0.00680879 0.00681586 0.00682293 0.00683 0.00683707 0.00684413 0.0068512 0.00685827 0.00686534 0.00687241 0.00687948 0.00688654 0.00689361 0.00690068 0.00690775 0.00691482 0.00692189 +-0.0015321 -0.00144043 -0.0012594 -0.000799404 4.17898E-05 0.00113485 0.00233547 0.00354073 0.00464626 0.00549656 0.0059302 0.00605042 0.00607675 0.00608671 0.00609421 0.00610135 0.00610843 0.00611551 0.00612259 0.00612966 0.00613674 0.00614382 0.00615089 0.00615797 0.00616504 0.00617212 0.0061792 0.00618627 0.00619335 0.00620042 0.0062075 0.00621458 0.00622165 0.00622873 0.0062358 0.00624288 0.00624996 0.00625703 0.00626411 0.00627118 0.00627826 0.00628534 0.00629241 0.00629949 0.00630656 0.00631364 0.00632072 0.00632779 0.00633487 0.00634194 0.00634902 0.0063561 0.00636317 0.00637025 0.00637732 0.0063844 0.00639148 0.00639855 0.00640563 0.0064127 0.00641978 0.00642686 0.00643393 0.00644101 0.00644809 0.00645516 0.00646224 0.00646931 0.00647639 0.00648347 0.00649054 0.00649762 0.00650469 0.00651177 0.00651885 0.00652592 0.006533 0.00654007 0.00654715 0.00655423 0.0065613 0.00656838 0.00657545 0.00658253 0.00658961 0.00659668 0.00660376 0.00661083 0.00661791 0.00662499 0.00663206 0.00663914 0.00664621 0.00665329 0.00666037 0.00666744 0.00667452 0.00668159 0.00668867 0.00669575 0.00670282 0.0067099 0.00671697 0.00672405 0.00673113 0.0067382 0.00674528 0.00675235 0.00675943 0.00676651 0.00677358 0.00678066 0.00678773 0.00679481 0.00680189 0.00680896 0.00681604 0.00682311 0.00683019 0.00683727 0.00684434 0.00685142 0.0068585 0.00686557 0.00687265 0.00687972 0.0068868 0.00689388 0.00690095 0.00690803 0.0069151 0.00692218 0.00692926 +-0.001534 -0.00144217 -0.00126076 -0.000800028 4.18675E-05 0.00113543 0.00233649 0.00354228 0.00464867 0.00550044 0.00593574 0.00605669 0.00608316 0.00609315 0.00610066 0.00610781 0.0061149 0.00612198 0.00612907 0.00613615 0.00614323 0.00615032 0.0061574 0.00616449 0.00617157 0.00617865 0.00618574 0.00619282 0.00619991 0.00620699 0.00621407 0.00622116 0.00622824 0.00623532 0.00624241 0.00624949 0.00625658 0.00626366 0.00627074 0.00627783 0.00628491 0.00629199 0.00629908 0.00630616 0.00631325 0.00632033 0.00632741 0.0063345 0.00634158 0.00634867 0.00635575 0.00636283 0.00636992 0.006377 0.00638408 0.00639117 0.00639825 0.00640534 0.00641242 0.0064195 0.00642659 0.00643367 0.00644075 0.00644784 0.00645492 0.00646201 0.00646909 0.00647617 0.00648326 0.00649034 0.00649743 0.00650451 0.00651159 0.00651868 0.00652576 0.00653284 0.00653993 0.00654701 0.0065541 0.00656118 0.00656826 0.00657535 0.00658243 0.00658951 0.0065966 0.00660368 0.00661077 0.00661785 0.00662493 0.00663202 0.0066391 0.00664619 0.00665327 0.00666035 0.00666744 0.00667452 0.0066816 0.00668869 0.00669577 0.00670286 0.00670994 0.00671702 0.00672411 0.00673119 0.00673828 0.00674536 0.00675244 0.00675953 0.00676661 0.00677369 0.00678078 0.00678786 0.00679495 0.00680203 0.00680911 0.0068162 0.00682328 0.00683036 0.00683745 0.00684453 0.00685162 0.0068587 0.00686578 0.00687287 0.00687995 0.00688704 0.00689412 0.0069012 0.00690829 0.00691537 0.00692245 0.00692954 0.00693662 +-0.0015359 -0.00144392 -0.00126213 -0.000800652 4.19451E-05 0.00113601 0.00233751 0.00354383 0.00465107 0.00550431 0.00594128 0.00606294 0.00608957 0.00609958 0.0061071 0.00611426 0.00612136 0.00612845 0.00613554 0.00614263 0.00614973 0.00615682 0.00616391 0.006171 0.00617809 0.00618518 0.00619228 0.00619937 0.00620646 0.00621355 0.00622064 0.00622773 0.00623483 0.00624192 0.00624901 0.0062561 0.00626319 0.00627028 0.00627737 0.00628447 0.00629156 0.00629865 0.00630574 0.00631283 0.00631992 0.00632702 0.00633411 0.0063412 0.00634829 0.00635538 0.00636247 0.00636957 0.00637666 0.00638375 0.00639084 0.00639793 0.00640502 0.00641212 0.00641921 0.0064263 0.00643339 0.00644048 0.00644757 0.00645466 0.00646176 0.00646885 0.00647594 0.00648303 0.00649012 0.00649721 0.00650431 0.0065114 0.00651849 0.00652558 0.00653267 0.00653976 0.00654686 0.00655395 0.00656104 0.00656813 0.00657522 0.00658231 0.0065894 0.0065965 0.00660359 0.00661068 0.00661777 0.00662486 0.00663195 0.00663905 0.00664614 0.00665323 0.00666032 0.00666741 0.0066745 0.0066816 0.00668869 0.00669578 0.00670287 0.00670996 0.00671705 0.00672414 0.00673124 0.00673833 0.00674542 0.00675251 0.0067596 0.00676669 0.00677379 0.00678088 0.00678797 0.00679506 0.00680215 0.00680924 0.00681634 0.00682343 0.00683052 0.00683761 0.0068447 0.00685179 0.00685889 0.00686598 0.00687307 0.00688016 0.00688725 0.00689434 0.00690143 0.00690853 0.00691562 0.00692271 0.0069298 0.00693689 0.00694398 +-0.00153781 -0.00144566 -0.00126349 -0.000801275 4.20227E-05 0.00113658 0.00233852 0.00354538 0.00465347 0.00550817 0.00594681 0.00606919 0.00609597 0.00610601 0.00611354 0.00612071 0.00612782 0.00613492 0.00614202 0.00614911 0.00615621 0.00616331 0.00617041 0.00617751 0.00618461 0.00619171 0.00619881 0.00620591 0.00621301 0.00622011 0.00622721 0.00623431 0.00624141 0.00624851 0.00625561 0.0062627 0.0062698 0.0062769 0.006284 0.0062911 0.0062982 0.0063053 0.0063124 0.0063195 0.0063266 0.0063337 0.0063408 0.0063479 0.006355 0.0063621 0.0063692 0.00637629 0.00638339 0.00639049 0.00639759 0.00640469 0.00641179 0.00641889 0.00642599 0.00643309 0.00644019 0.00644729 0.00645439 0.00646149 0.00646859 0.00647569 0.00648278 0.00648988 0.00649698 0.00650408 0.00651118 0.00651828 0.00652538 0.00653248 0.00653958 0.00654668 0.00655378 0.00656088 0.00656798 0.00657508 0.00658218 0.00658928 0.00659637 0.00660347 0.00661057 0.00661767 0.00662477 0.00663187 0.00663897 0.00664607 0.00665317 0.00666027 0.00666737 0.00667447 0.00668157 0.00668867 0.00669577 0.00670286 0.00670996 0.00671706 0.00672416 0.00673126 0.00673836 0.00674546 0.00675256 0.00675966 0.00676676 0.00677386 0.00678096 0.00678806 0.00679516 0.00680226 0.00680936 0.00681645 0.00682355 0.00683065 0.00683775 0.00684485 0.00685195 0.00685905 0.00686615 0.00687325 0.00688035 0.00688745 0.00689455 0.00690165 0.00690875 0.00691585 0.00692294 0.00693004 0.00693714 0.00694424 0.00695134 +-0.00153971 -0.00144741 -0.00126485 -0.000801896 4.21004E-05 0.00113716 0.00233953 0.00354693 0.00465586 0.00551202 0.00595233 0.00607544 0.00610236 0.00611244 0.00611998 0.00612715 0.00613427 0.00614138 0.00614848 0.00615559 0.0061627 0.00616981 0.00617691 0.00618402 0.00619113 0.00619823 0.00620534 0.00621245 0.00621956 0.00622666 0.00623377 0.00624088 0.00624798 0.00625509 0.0062622 0.00626931 0.00627641 0.00628352 0.00629063 0.00629773 0.00630484 0.00631195 0.00631906 0.00632616 0.00633327 0.00634038 0.00634748 0.00635459 0.0063617 0.00636881 0.00637591 0.00638302 0.00639013 0.00639723 0.00640434 0.00641145 0.00641856 0.00642566 0.00643277 0.00643988 0.00644698 0.00645409 0.0064612 0.00646831 0.00647541 0.00648252 0.00648963 0.00649673 0.00650384 0.00651095 0.00651805 0.00652516 0.00653227 0.00653938 0.00654648 0.00655359 0.0065607 0.0065678 0.00657491 0.00658202 0.00658913 0.00659623 0.00660334 0.00661045 0.00661755 0.00662466 0.00663177 0.00663888 0.00664598 0.00665309 0.0066602 0.0066673 0.00667441 0.00668152 0.00668863 0.00669573 0.00670284 0.00670995 0.00671705 0.00672416 0.00673127 0.00673838 0.00674548 0.00675259 0.0067597 0.0067668 0.00677391 0.00678102 0.00678813 0.00679523 0.00680234 0.00680945 0.00681655 0.00682366 0.00683077 0.00683788 0.00684498 0.00685209 0.0068592 0.0068663 0.00687341 0.00688052 0.00688763 0.00689473 0.00690184 0.00690895 0.00691605 0.00692316 0.00693027 0.00693738 0.00694448 0.00695159 0.0069587 +-0.00154161 -0.00144915 -0.00126621 -0.000802517 4.21781E-05 0.00113773 0.00234054 0.00354847 0.00465825 0.00551586 0.00595784 0.00608168 0.00610876 0.00611886 0.00612642 0.00613359 0.00614072 0.00614783 0.00615495 0.00616206 0.00616918 0.00617629 0.00618341 0.00619052 0.00619764 0.00620475 0.00621187 0.00621898 0.0062261 0.00623321 0.00624033 0.00624744 0.00625456 0.00626167 0.00626879 0.0062759 0.00628302 0.00629013 0.00629725 0.00630436 0.00631148 0.00631859 0.00632571 0.00633282 0.00633994 0.00634705 0.00635417 0.00636128 0.0063684 0.00637551 0.00638263 0.00638974 0.00639686 0.00640397 0.00641109 0.0064182 0.00642532 0.00643243 0.00643955 0.00644666 0.00645377 0.00646089 0.006468 0.00647512 0.00648223 0.00648935 0.00649646 0.00650358 0.00651069 0.00651781 0.00652492 0.00653204 0.00653915 0.00654627 0.00655338 0.0065605 0.00656761 0.00657473 0.00658184 0.00658896 0.00659607 0.00660319 0.0066103 0.00661742 0.00662453 0.00663165 0.00663876 0.00664588 0.00665299 0.00666011 0.00666722 0.00667434 0.00668145 0.00668857 0.00669568 0.0067028 0.00670991 0.00671703 0.00672414 0.00673126 0.00673837 0.00674549 0.0067526 0.00675972 0.00676683 0.00677394 0.00678106 0.00678817 0.00679529 0.0068024 0.00680952 0.00681663 0.00682375 0.00683086 0.00683798 0.00684509 0.00685221 0.00685932 0.00686644 0.00687355 0.00688067 0.00688778 0.0068949 0.00690201 0.00690913 0.00691624 0.00692336 0.00693047 0.00693759 0.0069447 0.00695182 0.00695893 0.00696605 +-0.00154351 -0.0014509 -0.00126757 -0.000803137 4.22558E-05 0.00113831 0.00234155 0.00355001 0.00466063 0.0055197 0.00596335 0.00608792 0.00611515 0.00612528 0.00613285 0.00614003 0.00614716 0.00615429 0.00616141 0.00616853 0.00617566 0.00618278 0.0061899 0.00619702 0.00620415 0.00621127 0.00621839 0.00622552 0.00623264 0.00623976 0.00624688 0.00625401 0.00626113 0.00626825 0.00627537 0.0062825 0.00628962 0.00629674 0.00630386 0.00631099 0.00631811 0.00632523 0.00633235 0.00633948 0.0063466 0.00635372 0.00636085 0.00636797 0.00637509 0.00638221 0.00638934 0.00639646 0.00640358 0.0064107 0.00641783 0.00642495 0.00643207 0.00643919 0.00644632 0.00645344 0.00646056 0.00646769 0.00647481 0.00648193 0.00648905 0.00649618 0.0065033 0.00651042 0.00651754 0.00652467 0.00653179 0.00653891 0.00654603 0.00655316 0.00656028 0.0065674 0.00657452 0.00658165 0.00658877 0.00659589 0.00660302 0.00661014 0.00661726 0.00662438 0.00663151 0.00663863 0.00664575 0.00665287 0.00666 0.00666712 0.00667424 0.00668136 0.00668849 0.00669561 0.00670273 0.00670986 0.00671698 0.0067241 0.00673122 0.00673835 0.00674547 0.00675259 0.00675971 0.00676684 0.00677396 0.00678108 0.0067882 0.00679533 0.00680245 0.00680957 0.00681669 0.00682382 0.00683094 0.00683806 0.00684519 0.00685231 0.00685943 0.00686655 0.00687368 0.0068808 0.00688792 0.00689504 0.00690217 0.00690929 0.00691641 0.00692353 0.00693066 0.00693778 0.0069449 0.00695203 0.00695915 0.00696627 0.00697339 +-0.0015454 -0.00145264 -0.00126893 -0.000803756 4.23336E-05 0.00113888 0.00234256 0.00355154 0.00466301 0.00552352 0.00596885 0.00609415 0.00612153 0.0061317 0.00613927 0.00614647 0.00615361 0.00616074 0.00616787 0.006175 0.00618213 0.00618926 0.00619639 0.00620352 0.00621065 0.00621778 0.00622491 0.00623204 0.00623917 0.0062463 0.00625343 0.00626056 0.0062677 0.00627483 0.00628196 0.00628909 0.00629622 0.00630335 0.00631048 0.00631761 0.00632474 0.00633187 0.006339 0.00634613 0.00635326 0.00636039 0.00636752 0.00637465 0.00638178 0.00638891 0.00639604 0.00640317 0.0064103 0.00641743 0.00642456 0.00643169 0.00643882 0.00644596 0.00645309 0.00646022 0.00646735 0.00647448 0.00648161 0.00648874 0.00649587 0.006503 0.00651013 0.00651726 0.00652439 0.00653152 0.00653865 0.00654578 0.00655291 0.00656004 0.00656717 0.0065743 0.00658143 0.00658856 0.00659569 0.00660282 0.00660995 0.00661708 0.00662422 0.00663135 0.00663848 0.00664561 0.00665274 0.00665987 0.006667 0.00667413 0.00668126 0.00668839 0.00669552 0.00670265 0.00670978 0.00671691 0.00672404 0.00673117 0.0067383 0.00674543 0.00675256 0.00675969 0.00676682 0.00677395 0.00678108 0.00678821 0.00679534 0.00680248 0.00680961 0.00681674 0.00682387 0.006831 0.00683813 0.00684526 0.00685239 0.00685952 0.00686665 0.00687378 0.00688091 0.00688804 0.00689517 0.0069023 0.00690943 0.00691656 0.00692369 0.00693082 0.00693795 0.00694508 0.00695221 0.00695934 0.00696647 0.0069736 0.00698074 +-0.0015473 -0.00145438 -0.00127029 -0.000804374 4.24113E-05 0.00113945 0.00234356 0.00355307 0.00466538 0.00552734 0.00597434 0.00610038 0.00612791 0.00613811 0.00614569 0.0061529 0.00616005 0.00616719 0.00617432 0.00618146 0.0061886 0.00619574 0.00620288 0.00621001 0.00621715 0.00622429 0.00623143 0.00623857 0.00624571 0.00625284 0.00625998 0.00626712 0.00627426 0.0062814 0.00628853 0.00629567 0.00630281 0.00630995 0.00631709 0.00632423 0.00633136 0.0063385 0.00634564 0.00635278 0.00635992 0.00636705 0.00637419 0.00638133 0.00638847 0.00639561 0.00640275 0.00640988 0.00641702 0.00642416 0.0064313 0.00643844 0.00644557 0.00645271 0.00645985 0.00646699 0.00647413 0.00648126 0.0064884 0.00649554 0.00650268 0.00650982 0.00651696 0.00652409 0.00653123 0.00653837 0.00654551 0.00655265 0.00655978 0.00656692 0.00657406 0.0065812 0.00658834 0.00659548 0.00660261 0.00660975 0.00661689 0.00662403 0.00663117 0.0066383 0.00664544 0.00665258 0.00665972 0.00666686 0.00667399 0.00668113 0.00668827 0.00669541 0.00670255 0.00670969 0.00671682 0.00672396 0.0067311 0.00673824 0.00674538 0.00675251 0.00675965 0.00676679 0.00677393 0.00678107 0.00678821 0.00679534 0.00680248 0.00680962 0.00681676 0.0068239 0.00683103 0.00683817 0.00684531 0.00685245 0.00685959 0.00686672 0.00687386 0.006881 0.00688814 0.00689528 0.00690242 0.00690955 0.00691669 0.00692383 0.00693097 0.00693811 0.00694524 0.00695238 0.00695952 0.00696666 0.0069738 0.00698094 0.00698807 +-0.0015492 -0.00145612 -0.00127164 -0.000804991 4.24891E-05 0.00114003 0.00234457 0.0035546 0.00466774 0.00553114 0.00597982 0.00610661 0.00613429 0.00614452 0.00615211 0.00615933 0.00616648 0.00617363 0.00618078 0.00618792 0.00619507 0.00620221 0.00620936 0.0062165 0.00622365 0.0062308 0.00623794 0.00624509 0.00625223 0.00625938 0.00626653 0.00627367 0.00628082 0.00628796 0.00629511 0.00630226 0.0063094 0.00631655 0.00632369 0.00633084 0.00633799 0.00634513 0.00635228 0.00635942 0.00636657 0.00637371 0.00638086 0.00638801 0.00639515 0.0064023 0.00640944 0.00641659 0.00642374 0.00643088 0.00643803 0.00644517 0.00645232 0.00645947 0.00646661 0.00647376 0.0064809 0.00648805 0.00649519 0.00650234 0.00650949 0.00651663 0.00652378 0.00653092 0.00653807 0.00654522 0.00655236 0.00655951 0.00656665 0.0065738 0.00658095 0.00658809 0.00659524 0.00660238 0.00660953 0.00661668 0.00662382 0.00663097 0.00663811 0.00664526 0.0066524 0.00665955 0.0066667 0.00667384 0.00668099 0.00668813 0.00669528 0.00670243 0.00670957 0.00671672 0.00672386 0.00673101 0.00673816 0.0067453 0.00675245 0.00675959 0.00676674 0.00677388 0.00678103 0.00678818 0.00679532 0.00680247 0.00680961 0.00681676 0.00682391 0.00683105 0.0068382 0.00684534 0.00685249 0.00685964 0.00686678 0.00687393 0.00688107 0.00688822 0.00689537 0.00690251 0.00690966 0.0069168 0.00692395 0.00693109 0.00693824 0.00694539 0.00695253 0.00695968 0.00696682 0.00697397 0.00698112 0.00698826 0.00699541 +-0.0015511 -0.00145786 -0.001273 -0.000805607 4.25669E-05 0.0011406 0.00234557 0.00355613 0.0046701 0.00553494 0.00598529 0.00611283 0.00614067 0.00615092 0.00615853 0.00616575 0.00617291 0.00618007 0.00618722 0.00619438 0.00620153 0.00620868 0.00621584 0.00622299 0.00623014 0.0062373 0.00624445 0.00625161 0.00625876 0.00626591 0.00627307 0.00628022 0.00628737 0.00629453 0.00630168 0.00630883 0.00631599 0.00632314 0.0063303 0.00633745 0.0063446 0.00635176 0.00635891 0.00636606 0.00637322 0.00638037 0.00638752 0.00639468 0.00640183 0.00640899 0.00641614 0.00642329 0.00643045 0.0064376 0.00644475 0.00645191 0.00645906 0.00646621 0.00647337 0.00648052 0.00648768 0.00649483 0.00650198 0.00650914 0.00651629 0.00652344 0.0065306 0.00653775 0.0065449 0.00655206 0.00655921 0.00656637 0.00657352 0.00658067 0.00658783 0.00659498 0.00660213 0.00660929 0.00661644 0.0066236 0.00663075 0.0066379 0.00664506 0.00665221 0.00665936 0.00666652 0.00667367 0.00668082 0.00668798 0.00669513 0.00670229 0.00670944 0.00671659 0.00672375 0.0067309 0.00673805 0.00674521 0.00675236 0.00675951 0.00676667 0.00677382 0.00678098 0.00678813 0.00679528 0.00680244 0.00680959 0.00681674 0.0068239 0.00683105 0.0068382 0.00684536 0.00685251 0.00685967 0.00686682 0.00687397 0.00688113 0.00688828 0.00689543 0.00690259 0.00690974 0.00691689 0.00692405 0.0069312 0.00693836 0.00694551 0.00695266 0.00695982 0.00696697 0.00697412 0.00698128 0.00698843 0.00699558 0.00700274 +-0.00155299 -0.0014596 -0.00127435 -0.000806222 4.26448E-05 0.00114117 0.00234657 0.00355766 0.00467246 0.00553873 0.00599076 0.00611904 0.00614704 0.00615732 0.00616494 0.00617217 0.00617934 0.00618651 0.00619367 0.00620083 0.00620799 0.00621515 0.00622231 0.00622947 0.00623664 0.0062438 0.00625096 0.00625812 0.00626528 0.00627244 0.0062796 0.00628676 0.00629393 0.00630109 0.00630825 0.00631541 0.00632257 0.00632973 0.00633689 0.00634406 0.00635122 0.00635838 0.00636554 0.0063727 0.00637986 0.00638702 0.00639419 0.00640135 0.00640851 0.00641567 0.00642283 0.00642999 0.00643715 0.00644432 0.00645148 0.00645864 0.0064658 0.00647296 0.00648012 0.00648728 0.00649444 0.00650161 0.00650877 0.00651593 0.00652309 0.00653025 0.00653741 0.00654457 0.00655174 0.0065589 0.00656606 0.00657322 0.00658038 0.00658754 0.0065947 0.00660187 0.00660903 0.00661619 0.00662335 0.00663051 0.00663767 0.00664483 0.006652 0.00665916 0.00666632 0.00667348 0.00668064 0.0066878 0.00669496 0.00670212 0.00670929 0.00671645 0.00672361 0.00673077 0.00673793 0.00674509 0.00675225 0.00675942 0.00676658 0.00677374 0.0067809 0.00678806 0.00679522 0.00680238 0.00680955 0.00681671 0.00682387 0.00683103 0.00683819 0.00684535 0.00685251 0.00685968 0.00686684 0.006874 0.00688116 0.00688832 0.00689548 0.00690264 0.00690981 0.00691697 0.00692413 0.00693129 0.00693845 0.00694561 0.00695277 0.00695993 0.0069671 0.00697426 0.00698142 0.00698858 0.00699574 0.0070029 0.00701006 +-0.00155489 -0.00146134 -0.00127571 -0.000806836 4.27226E-05 0.00114174 0.00234757 0.00355918 0.00467481 0.00554252 0.00599622 0.00612525 0.0061534 0.00616372 0.00617135 0.00617859 0.00618577 0.00619294 0.00620011 0.00620728 0.00621445 0.00622161 0.00622878 0.00623595 0.00624312 0.00625029 0.00625746 0.00626463 0.0062718 0.00627897 0.00628614 0.00629331 0.00630047 0.00630764 0.00631481 0.00632198 0.00632915 0.00633632 0.00634349 0.00635066 0.00635783 0.006365 0.00637217 0.00637934 0.0063865 0.00639367 0.00640084 0.00640801 0.00641518 0.00642235 0.00642952 0.00643669 0.00644386 0.00645103 0.0064582 0.00646536 0.00647253 0.0064797 0.00648687 0.00649404 0.00650121 0.00650838 0.00651555 0.00652272 0.00652989 0.00653706 0.00654422 0.00655139 0.00655856 0.00656573 0.0065729 0.00658007 0.00658724 0.00659441 0.00660158 0.00660875 0.00661592 0.00662309 0.00663025 0.00663742 0.00664459 0.00665176 0.00665893 0.0066661 0.00667327 0.00668044 0.00668761 0.00669478 0.00670195 0.00670911 0.00671628 0.00672345 0.00673062 0.00673779 0.00674496 0.00675213 0.0067593 0.00676647 0.00677364 0.00678081 0.00678797 0.00679514 0.00680231 0.00680948 0.00681665 0.00682382 0.00683099 0.00683816 0.00684533 0.0068525 0.00685967 0.00686684 0.006874 0.00688117 0.00688834 0.00689551 0.00690268 0.00690985 0.00691702 0.00692419 0.00693136 0.00693853 0.0069457 0.00695286 0.00696003 0.0069672 0.00697437 0.00698154 0.00698871 0.00699588 0.00700305 0.00701022 0.00701739 +-0.00155679 -0.00146307 -0.00127706 -0.000807449 4.28005E-05 0.00114231 0.00234857 0.0035607 0.00467715 0.00554629 0.00600167 0.00613146 0.00615977 0.00617012 0.00617776 0.006185 0.00619219 0.00619937 0.00620654 0.00621372 0.0062209 0.00622807 0.00623525 0.00624243 0.00624961 0.00625678 0.00626396 0.00627114 0.00627831 0.00628549 0.00629267 0.00629984 0.00630702 0.0063142 0.00632137 0.00632855 0.00633573 0.0063429 0.00635008 0.00635726 0.00636443 0.00637161 0.00637879 0.00638597 0.00639314 0.00640032 0.0064075 0.00641467 0.00642185 0.00642903 0.0064362 0.00644338 0.00645056 0.00645773 0.00646491 0.00647209 0.00647926 0.00648644 0.00649362 0.0065008 0.00650797 0.00651515 0.00652233 0.0065295 0.00653668 0.00654386 0.00655103 0.00655821 0.00656539 0.00657256 0.00657974 0.00658692 0.00659409 0.00660127 0.00660845 0.00661562 0.0066228 0.00662998 0.00663716 0.00664433 0.00665151 0.00665869 0.00666586 0.00667304 0.00668022 0.00668739 0.00669457 0.00670175 0.00670892 0.0067161 0.00672328 0.00673045 0.00673763 0.00674481 0.00675198 0.00675916 0.00676634 0.00677352 0.00678069 0.00678787 0.00679505 0.00680222 0.0068094 0.00681658 0.00682375 0.00683093 0.00683811 0.00684528 0.00685246 0.00685964 0.00686681 0.00687399 0.00688117 0.00688834 0.00689552 0.0069027 0.00690988 0.00691705 0.00692423 0.00693141 0.00693858 0.00694576 0.00695294 0.00696011 0.00696729 0.00697447 0.00698164 0.00698882 0.006996 0.00700317 0.00701035 0.00701753 0.00702471 +-0.00155868 -0.00146481 -0.00127841 -0.000808061 4.28784E-05 0.00114287 0.00234956 0.00356221 0.00467949 0.00555005 0.00600711 0.00613766 0.00616613 0.00617651 0.00618416 0.00619141 0.00619861 0.00620579 0.00621298 0.00622016 0.00622735 0.00623453 0.00624172 0.0062489 0.00625609 0.00626327 0.00627045 0.00627764 0.00628482 0.00629201 0.00629919 0.00630638 0.00631356 0.00632075 0.00632793 0.00633512 0.0063423 0.00634948 0.00635667 0.00636385 0.00637104 0.00637822 0.00638541 0.00639259 0.00639978 0.00640696 0.00641415 0.00642133 0.00642852 0.0064357 0.00644288 0.00645007 0.00645725 0.00646444 0.00647162 0.00647881 0.00648599 0.00649318 0.00650036 0.00650755 0.00651473 0.00652191 0.0065291 0.00653628 0.00654347 0.00655065 0.00655784 0.00656502 0.00657221 0.00657939 0.00658658 0.00659376 0.00660094 0.00660813 0.00661531 0.0066225 0.00662968 0.00663687 0.00664405 0.00665124 0.00665842 0.00666561 0.00667279 0.00667998 0.00668716 0.00669434 0.00670153 0.00670871 0.0067159 0.00672308 0.00673027 0.00673745 0.00674464 0.00675182 0.00675901 0.00676619 0.00677337 0.00678056 0.00678774 0.00679493 0.00680211 0.0068093 0.00681648 0.00682367 0.00683085 0.00683804 0.00684522 0.00685241 0.00685959 0.00686677 0.00687396 0.00688114 0.00688833 0.00689551 0.0069027 0.00690988 0.00691707 0.00692425 0.00693144 0.00693862 0.0069458 0.00695299 0.00696017 0.00696736 0.00697454 0.00698173 0.00698891 0.0069961 0.00700328 0.00701047 0.00701765 0.00702483 0.00703202 +-0.00156058 -0.00146655 -0.00127976 -0.000808672 4.29563E-05 0.00114344 0.00235056 0.00356373 0.00468182 0.00555381 0.00601255 0.00614386 0.00617248 0.00618289 0.00619056 0.00619782 0.00620502 0.00621222 0.00621941 0.0062266 0.00623379 0.00624098 0.00624818 0.00625537 0.00626256 0.00626975 0.00627695 0.00628414 0.00629133 0.00629852 0.00630572 0.00631291 0.0063201 0.00632729 0.00633448 0.00634168 0.00634887 0.00635606 0.00636325 0.00637045 0.00637764 0.00638483 0.00639202 0.00639922 0.00640641 0.0064136 0.00642079 0.00642798 0.00643518 0.00644237 0.00644956 0.00645675 0.00646395 0.00647114 0.00647833 0.00648552 0.00649272 0.00649991 0.0065071 0.00651429 0.00652148 0.00652868 0.00653587 0.00654306 0.00655025 0.00655745 0.00656464 0.00657183 0.00657902 0.00658621 0.00659341 0.0066006 0.00660779 0.00661498 0.00662218 0.00662937 0.00663656 0.00664375 0.00665095 0.00665814 0.00666533 0.00667252 0.00667971 0.00668691 0.0066941 0.00670129 0.00670848 0.00671568 0.00672287 0.00673006 0.00673725 0.00674445 0.00675164 0.00675883 0.00676602 0.00677321 0.00678041 0.0067876 0.00679479 0.00680198 0.00680918 0.00681637 0.00682356 0.00683075 0.00683795 0.00684514 0.00685233 0.00685952 0.00686671 0.00687391 0.0068811 0.00688829 0.00689548 0.00690268 0.00690987 0.00691706 0.00692425 0.00693145 0.00693864 0.00694583 0.00695302 0.00696021 0.00696741 0.0069746 0.00698179 0.00698898 0.00699618 0.00700337 0.00701056 0.00701775 0.00702495 0.00703214 0.00703933 +-0.00156247 -0.00146828 -0.00128111 -0.000809283 4.30343E-05 0.00114401 0.00235155 0.00356524 0.00468415 0.00555756 0.00601798 0.00615005 0.00617883 0.00618928 0.00619695 0.00620422 0.00621143 0.00621863 0.00622583 0.00623303 0.00624023 0.00624743 0.00625463 0.00626183 0.00626903 0.00627623 0.00628343 0.00629063 0.00629783 0.00630503 0.00631223 0.00631943 0.00632663 0.00633383 0.00634103 0.00634823 0.00635543 0.00636263 0.00636983 0.00637703 0.00638423 0.00639143 0.00639863 0.00640583 0.00641303 0.00642023 0.00642743 0.00643463 0.00644183 0.00644903 0.00645623 0.00646343 0.00647063 0.00647783 0.00648503 0.00649223 0.00649943 0.00650663 0.00651383 0.00652103 0.00652823 0.00653543 0.00654263 0.00654983 0.00655704 0.00656424 0.00657144 0.00657864 0.00658584 0.00659304 0.00660024 0.00660744 0.00661464 0.00662184 0.00662904 0.00663624 0.00664344 0.00665064 0.00665784 0.00666504 0.00667224 0.00667944 0.00668664 0.00669384 0.00670104 0.00670824 0.00671544 0.00672264 0.00672984 0.00673704 0.00674424 0.00675144 0.00675864 0.00676584 0.00677304 0.00678024 0.00678744 0.00679464 0.00680184 0.00680904 0.00681624 0.00682344 0.00683064 0.00683784 0.00684504 0.00685224 0.00685944 0.00686664 0.00687384 0.00688104 0.00688824 0.00689544 0.00690264 0.00690984 0.00691704 0.00692424 0.00693144 0.00693864 0.00694584 0.00695304 0.00696024 0.00696744 0.00697464 0.00698184 0.00698904 0.00699624 0.00700344 0.00701064 0.00701784 0.00702504 0.00703224 0.00703944 0.00704664 +-0.00156436 -0.00147002 -0.00128245 -0.000809892 4.31122E-05 0.00114457 0.00235254 0.00356674 0.00468648 0.0055613 0.0060234 0.00615623 0.00618518 0.00619566 0.00620334 0.00621062 0.00621784 0.00622505 0.00623226 0.00623946 0.00624667 0.00625388 0.00626109 0.0062683 0.0062755 0.00628271 0.00628992 0.00629713 0.00630433 0.00631154 0.00631875 0.00632596 0.00633317 0.00634037 0.00634758 0.00635479 0.006362 0.0063692 0.00637641 0.00638362 0.00639083 0.00639803 0.00640524 0.00641245 0.00641966 0.00642687 0.00643407 0.00644128 0.00644849 0.0064557 0.0064629 0.00647011 0.00647732 0.00648453 0.00649174 0.00649894 0.00650615 0.00651336 0.00652057 0.00652777 0.00653498 0.00654219 0.0065494 0.00655661 0.00656381 0.00657102 0.00657823 0.00658544 0.00659264 0.00659985 0.00660706 0.00661427 0.00662147 0.00662868 0.00663589 0.0066431 0.00665031 0.00665751 0.00666472 0.00667193 0.00667914 0.00668634 0.00669355 0.00670076 0.00670797 0.00671518 0.00672238 0.00672959 0.0067368 0.00674401 0.00675121 0.00675842 0.00676563 0.00677284 0.00678004 0.00678725 0.00679446 0.00680167 0.00680888 0.00681608 0.00682329 0.0068305 0.00683771 0.00684491 0.00685212 0.00685933 0.00686654 0.00687375 0.00688095 0.00688816 0.00689537 0.00690258 0.00690978 0.00691699 0.0069242 0.00693141 0.00693862 0.00694582 0.00695303 0.00696024 0.00696745 0.00697465 0.00698186 0.00698907 0.00699628 0.00700348 0.00701069 0.0070179 0.00702511 0.00703232 0.00703952 0.00704673 0.00705394 +-0.00156625 -0.00147175 -0.0012838 -0.000810501 4.31902E-05 0.00114514 0.00235353 0.00356825 0.0046888 0.00556503 0.00602881 0.00616242 0.00619153 0.00620203 0.00620973 0.00621702 0.00622424 0.00623146 0.00623868 0.00624589 0.00625311 0.00626032 0.00626754 0.00627475 0.00628197 0.00628918 0.0062964 0.00630362 0.00631083 0.00631805 0.00632526 0.00633248 0.00633969 0.00634691 0.00635412 0.00636134 0.00636855 0.00637577 0.00638299 0.0063902 0.00639742 0.00640463 0.00641185 0.00641906 0.00642628 0.00643349 0.00644071 0.00644792 0.00645514 0.00646236 0.00646957 0.00647679 0.006484 0.00649122 0.00649843 0.00650565 0.00651286 0.00652008 0.00652729 0.00653451 0.00654173 0.00654894 0.00655616 0.00656337 0.00657059 0.0065778 0.00658502 0.00659223 0.00659945 0.00660666 0.00661388 0.0066211 0.00662831 0.00663553 0.00664274 0.00664996 0.00665717 0.00666439 0.0066716 0.00667882 0.00668603 0.00669325 0.00670047 0.00670768 0.0067149 0.00672211 0.00672933 0.00673654 0.00674376 0.00675097 0.00675819 0.0067654 0.00677262 0.00677984 0.00678705 0.00679427 0.00680148 0.0068087 0.00681591 0.00682313 0.00683034 0.00683756 0.00684477 0.00685199 0.00685921 0.00686642 0.00687364 0.00688085 0.00688807 0.00689528 0.0069025 0.00690971 0.00691693 0.00692414 0.00693136 0.00693857 0.00694579 0.00695301 0.00696022 0.00696744 0.00697465 0.00698187 0.00698908 0.0069963 0.00700351 0.00701073 0.00701794 0.00702516 0.00703238 0.00703959 0.00704681 0.00705402 0.00706124 +-0.00156815 -0.00147349 -0.00128515 -0.000811108 4.32682E-05 0.0011457 0.00235452 0.00356975 0.00469111 0.00556875 0.00603421 0.0061686 0.00619787 0.00620841 0.00621612 0.00622341 0.00623064 0.00623787 0.00624509 0.00625232 0.00625954 0.00626676 0.00627399 0.00628121 0.00628843 0.00629565 0.00630288 0.0063101 0.00631732 0.00632455 0.00633177 0.00633899 0.00634622 0.00635344 0.00636066 0.00636789 0.00637511 0.00638233 0.00638956 0.00639678 0.006404 0.00641123 0.00641845 0.00642567 0.00643289 0.00644012 0.00644734 0.00645456 0.00646179 0.00646901 0.00647623 0.00648346 0.00649068 0.0064979 0.00650513 0.00651235 0.00651957 0.0065268 0.00653402 0.00654124 0.00654846 0.00655569 0.00656291 0.00657013 0.00657736 0.00658458 0.0065918 0.00659903 0.00660625 0.00661347 0.0066207 0.00662792 0.00663514 0.00664237 0.00664959 0.00665681 0.00666404 0.00667126 0.00667848 0.0066857 0.00669293 0.00670015 0.00670737 0.0067146 0.00672182 0.00672904 0.00673627 0.00674349 0.00675071 0.00675794 0.00676516 0.00677238 0.00677961 0.00678683 0.00679405 0.00680128 0.0068085 0.00681572 0.00682294 0.00683017 0.00683739 0.00684461 0.00685184 0.00685906 0.00686628 0.00687351 0.00688073 0.00688795 0.00689518 0.0069024 0.00690962 0.00691685 0.00692407 0.00693129 0.00693852 0.00694574 0.00695296 0.00696018 0.00696741 0.00697463 0.00698185 0.00698908 0.0069963 0.00700352 0.00701075 0.00701797 0.00702519 0.00703242 0.00703964 0.00704686 0.00705409 0.00706131 0.00706853 +-0.00157004 -0.00147522 -0.00128649 -0.000811715 4.33463E-05 0.00114626 0.0023555 0.00357125 0.00469342 0.00557246 0.00603961 0.00617477 0.00620421 0.00621478 0.0062225 0.0062298 0.00623704 0.00624427 0.0062515 0.00625874 0.00626597 0.0062732 0.00628043 0.00628766 0.00629489 0.00630212 0.00630935 0.00631658 0.00632381 0.00633104 0.00633828 0.00634551 0.00635274 0.00635997 0.0063672 0.00637443 0.00638166 0.00638889 0.00639612 0.00640335 0.00641058 0.00641781 0.00642505 0.00643228 0.00643951 0.00644674 0.00645397 0.0064612 0.00646843 0.00647566 0.00648289 0.00649012 0.00649735 0.00650459 0.00651182 0.00651905 0.00652628 0.00653351 0.00654074 0.00654797 0.0065552 0.00656243 0.00656966 0.00657689 0.00658412 0.00659136 0.00659859 0.00660582 0.00661305 0.00662028 0.00662751 0.00663474 0.00664197 0.0066492 0.00665643 0.00666366 0.00667089 0.00667813 0.00668536 0.00669259 0.00669982 0.00670705 0.00671428 0.00672151 0.00672874 0.00673597 0.0067432 0.00675043 0.00675767 0.0067649 0.00677213 0.00677936 0.00678659 0.00679382 0.00680105 0.00680828 0.00681551 0.00682274 0.00682997 0.0068372 0.00684444 0.00685167 0.0068589 0.00686613 0.00687336 0.00688059 0.00688782 0.00689505 0.00690228 0.00690951 0.00691674 0.00692398 0.00693121 0.00693844 0.00694567 0.0069529 0.00696013 0.00696736 0.00697459 0.00698182 0.00698905 0.00699628 0.00700351 0.00701075 0.00701798 0.00702521 0.00703244 0.00703967 0.0070469 0.00705413 0.00706136 0.00706859 0.00707582 +-0.00157193 -0.00147695 -0.00128783 -0.00081232 4.34243E-05 0.00114682 0.00235649 0.00357275 0.00469572 0.00557617 0.006045 0.00618094 0.00621054 0.00622114 0.00622888 0.00623619 0.00624343 0.00625068 0.00625791 0.00626515 0.00627239 0.00627963 0.00628687 0.00629411 0.00630135 0.00630858 0.00631582 0.00632306 0.0063303 0.00633754 0.00634478 0.00635202 0.00635925 0.00636649 0.00637373 0.00638097 0.00638821 0.00639545 0.00640269 0.00640992 0.00641716 0.0064244 0.00643164 0.00643888 0.00644612 0.00645336 0.00646059 0.00646783 0.00647507 0.00648231 0.00648955 0.00649679 0.00650402 0.00651126 0.0065185 0.00652574 0.00653298 0.00654022 0.00654746 0.00655469 0.00656193 0.00656917 0.00657641 0.00658365 0.00659089 0.00659813 0.00660536 0.0066126 0.00661984 0.00662708 0.00663432 0.00664156 0.0066488 0.00665603 0.00666327 0.00667051 0.00667775 0.00668499 0.00669223 0.00669947 0.0067067 0.00671394 0.00672118 0.00672842 0.00673566 0.0067429 0.00675014 0.00675737 0.00676461 0.00677185 0.00677909 0.00678633 0.00679357 0.00680081 0.00680804 0.00681528 0.00682252 0.00682976 0.006837 0.00684424 0.00685148 0.00685871 0.00686595 0.00687319 0.00688043 0.00688767 0.00689491 0.00690215 0.00690938 0.00691662 0.00692386 0.0069311 0.00693834 0.00694558 0.00695282 0.00696005 0.00696729 0.00697453 0.00698177 0.00698901 0.00699625 0.00700349 0.00701072 0.00701796 0.0070252 0.00703244 0.00703968 0.00704692 0.00705416 0.00706139 0.00706863 0.00707587 0.00708311 +-0.00157382 -0.00147868 -0.00128918 -0.000812925 4.35024E-05 0.00114739 0.00235747 0.00357424 0.00469802 0.00557987 0.00605038 0.0061871 0.00621687 0.00622751 0.00623525 0.00624257 0.00624983 0.00625707 0.00626432 0.00627157 0.00627881 0.00628606 0.0062933 0.00630055 0.0063078 0.00631504 0.00632229 0.00632954 0.00633678 0.00634403 0.00635127 0.00635852 0.00636577 0.00637301 0.00638026 0.00638751 0.00639475 0.006402 0.00640924 0.00641649 0.00642374 0.00643098 0.00643823 0.00644548 0.00645272 0.00645997 0.00646721 0.00647446 0.00648171 0.00648895 0.0064962 0.00650345 0.00651069 0.00651794 0.00652518 0.00653243 0.00653968 0.00654692 0.00655417 0.00656142 0.00656866 0.00657591 0.00658315 0.0065904 0.00659765 0.00660489 0.00661214 0.00661939 0.00662663 0.00663388 0.00664112 0.00664837 0.00665562 0.00666286 0.00667011 0.00667736 0.0066846 0.00669185 0.00669909 0.00670634 0.00671359 0.00672083 0.00672808 0.00673533 0.00674257 0.00674982 0.00675707 0.00676431 0.00677156 0.0067788 0.00678605 0.0067933 0.00680054 0.00680779 0.00681504 0.00682228 0.00682953 0.00683677 0.00684402 0.00685127 0.00685851 0.00686576 0.00687301 0.00688025 0.0068875 0.00689474 0.00690199 0.00690924 0.00691648 0.00692373 0.00693098 0.00693822 0.00694547 0.00695271 0.00695996 0.00696721 0.00697445 0.0069817 0.00698895 0.00699619 0.00700344 0.00701068 0.00701793 0.00702518 0.00703242 0.00703967 0.00704692 0.00705416 0.00706141 0.00706865 0.0070759 0.00708315 0.00709039 +-0.00157571 -0.00148041 -0.00129052 -0.000813529 4.35805E-05 0.00114795 0.00235845 0.00357573 0.00470032 0.00558356 0.00605575 0.00619326 0.0062232 0.00623387 0.00624162 0.00624895 0.00625621 0.00626347 0.00627072 0.00627798 0.00628523 0.00629248 0.00629974 0.00630699 0.00631425 0.0063215 0.00632875 0.00633601 0.00634326 0.00635051 0.00635777 0.00636502 0.00637228 0.00637953 0.00638678 0.00639404 0.00640129 0.00640855 0.0064158 0.00642305 0.00643031 0.00643756 0.00644482 0.00645207 0.00645932 0.00646658 0.00647383 0.00648109 0.00648834 0.00649559 0.00650285 0.0065101 0.00651736 0.00652461 0.00653186 0.00653912 0.00654637 0.00655363 0.00656088 0.00656813 0.00657539 0.00658264 0.0065899 0.00659715 0.0066044 0.00661166 0.00661891 0.00662617 0.00663342 0.00664067 0.00664793 0.00665518 0.00666243 0.00666969 0.00667694 0.0066842 0.00669145 0.0066987 0.00670596 0.00671321 0.00672047 0.00672772 0.00673497 0.00674223 0.00674948 0.00675674 0.00676399 0.00677124 0.0067785 0.00678575 0.00679301 0.00680026 0.00680751 0.00681477 0.00682202 0.00682928 0.00683653 0.00684378 0.00685104 0.00685829 0.00686555 0.0068728 0.00688005 0.00688731 0.00689456 0.00690182 0.00690907 0.00691632 0.00692358 0.00693083 0.00693809 0.00694534 0.00695259 0.00695985 0.0069671 0.00697435 0.00698161 0.00698886 0.00699612 0.00700337 0.00701062 0.00701788 0.00702513 0.00703239 0.00703964 0.00704689 0.00705415 0.0070614 0.00706866 0.00707591 0.00708316 0.00709042 0.00709767 +-0.0015776 -0.00148214 -0.00129186 -0.000814132 4.36586E-05 0.00114851 0.00235943 0.00357722 0.00470261 0.00558723 0.00606112 0.00619942 0.00622952 0.00624022 0.00624799 0.00625532 0.00626259 0.00626986 0.00627712 0.00628438 0.00629164 0.0062989 0.00630617 0.00631343 0.00632069 0.00632795 0.00633521 0.00634247 0.00634974 0.006357 0.00636426 0.00637152 0.00637878 0.00638604 0.00639331 0.00640057 0.00640783 0.00641509 0.00642235 0.00642961 0.00643688 0.00644414 0.0064514 0.00645866 0.00646592 0.00647318 0.00648045 0.00648771 0.00649497 0.00650223 0.00650949 0.00651675 0.00652402 0.00653128 0.00653854 0.0065458 0.00655306 0.00656032 0.00656759 0.00657485 0.00658211 0.00658937 0.00659663 0.00660389 0.00661116 0.00661842 0.00662568 0.00663294 0.0066402 0.00664746 0.00665473 0.00666199 0.00666925 0.00667651 0.00668377 0.00669103 0.0066983 0.00670556 0.00671282 0.00672008 0.00672734 0.0067346 0.00674187 0.00674913 0.00675639 0.00676365 0.00677091 0.00677817 0.00678543 0.0067927 0.00679996 0.00680722 0.00681448 0.00682174 0.006829 0.00683627 0.00684353 0.00685079 0.00685805 0.00686531 0.00687257 0.00687984 0.0068871 0.00689436 0.00690162 0.00690888 0.00691614 0.00692341 0.00693067 0.00693793 0.00694519 0.00695245 0.00695971 0.00696698 0.00697424 0.0069815 0.00698876 0.00699602 0.00700328 0.00701055 0.00701781 0.00702507 0.00703233 0.00703959 0.00704685 0.00705412 0.00706138 0.00706864 0.0070759 0.00708316 0.00709042 0.00709769 0.00710495 +-0.00157949 -0.00148387 -0.0012932 -0.000814734 4.37368E-05 0.00114907 0.00236041 0.0035787 0.00470489 0.00559091 0.00606647 0.00620557 0.00623584 0.00624657 0.00625435 0.00626169 0.00626897 0.00627625 0.00628352 0.00629078 0.00629805 0.00630532 0.00631259 0.00631986 0.00632713 0.0063344 0.00634167 0.00634894 0.00635621 0.00636348 0.00637075 0.00637802 0.00638529 0.00639256 0.00639982 0.00640709 0.00641436 0.00642163 0.0064289 0.00643617 0.00644344 0.00645071 0.00645798 0.00646525 0.00647252 0.00647979 0.00648706 0.00649433 0.00650159 0.00650886 0.00651613 0.0065234 0.00653067 0.00653794 0.00654521 0.00655248 0.00655975 0.00656702 0.00657429 0.00658156 0.00658883 0.0065961 0.00660337 0.00661063 0.0066179 0.00662517 0.00663244 0.00663971 0.00664698 0.00665425 0.00666152 0.00666879 0.00667606 0.00668333 0.0066906 0.00669787 0.00670514 0.00671241 0.00671967 0.00672694 0.00673421 0.00674148 0.00674875 0.00675602 0.00676329 0.00677056 0.00677783 0.0067851 0.00679237 0.00679964 0.00680691 0.00681418 0.00682145 0.00682871 0.00683598 0.00684325 0.00685052 0.00685779 0.00686506 0.00687233 0.0068796 0.00688687 0.00689414 0.00690141 0.00690868 0.00691595 0.00692322 0.00693049 0.00693775 0.00694502 0.00695229 0.00695956 0.00696683 0.0069741 0.00698137 0.00698864 0.00699591 0.00700318 0.00701045 0.00701772 0.00702499 0.00703226 0.00703953 0.00704679 0.00705406 0.00706133 0.0070686 0.00707587 0.00708314 0.00709041 0.00709768 0.00710495 0.00711222 +-0.00158137 -0.0014856 -0.00129453 -0.000815335 4.38149E-05 0.00114962 0.00236138 0.00358019 0.00470717 0.00559457 0.00607182 0.00621171 0.00624216 0.00625292 0.00626071 0.00626806 0.00627535 0.00628263 0.00628991 0.00629718 0.00630446 0.00631174 0.00631901 0.00632629 0.00633357 0.00634085 0.00634812 0.0063554 0.00636268 0.00636995 0.00637723 0.00638451 0.00639178 0.00639906 0.00640634 0.00641362 0.00642089 0.00642817 0.00643545 0.00644272 0.00645 0.00645728 0.00646456 0.00647183 0.00647911 0.00648639 0.00649366 0.00650094 0.00650822 0.00651549 0.00652277 0.00653005 0.00653733 0.0065446 0.00655188 0.00655916 0.00656643 0.00657371 0.00658099 0.00658826 0.00659554 0.00660282 0.0066101 0.00661737 0.00662465 0.00663193 0.0066392 0.00664648 0.00665376 0.00666103 0.00666831 0.00667559 0.00668287 0.00669014 0.00669742 0.0067047 0.00671197 0.00671925 0.00672653 0.0067338 0.00674108 0.00674836 0.00675564 0.00676291 0.00677019 0.00677747 0.00678474 0.00679202 0.0067993 0.00680657 0.00681385 0.00682113 0.00682841 0.00683568 0.00684296 0.00685024 0.00685751 0.00686479 0.00687207 0.00687934 0.00688662 0.0068939 0.00690118 0.00690845 0.00691573 0.00692301 0.00693028 0.00693756 0.00694484 0.00695211 0.00695939 0.00696667 0.00697395 0.00698122 0.0069885 0.00699578 0.00700305 0.00701033 0.00701761 0.00702488 0.00703216 0.00703944 0.00704672 0.00705399 0.00706127 0.00706855 0.00707582 0.0070831 0.00709038 0.00709765 0.00710493 0.00711221 0.00711949 +-0.00158326 -0.00148733 -0.00129587 -0.000815935 4.38931E-05 0.00115018 0.00236236 0.00358166 0.00470944 0.00559822 0.00607716 0.00621785 0.00624847 0.00625927 0.00626707 0.00627443 0.00628172 0.00628901 0.0062963 0.00630358 0.00631086 0.00631815 0.00632543 0.00633272 0.00634 0.00634729 0.00635457 0.00636186 0.00636914 0.00637643 0.00638371 0.006391 0.00639828 0.00640557 0.00641285 0.00642013 0.00642742 0.0064347 0.00644199 0.00644927 0.00645656 0.00646384 0.00647113 0.00647841 0.0064857 0.00649298 0.00650027 0.00650755 0.00651484 0.00652212 0.00652941 0.00653669 0.00654397 0.00655126 0.00655854 0.00656583 0.00657311 0.0065804 0.00658768 0.00659497 0.00660225 0.00660954 0.00661682 0.00662411 0.00663139 0.00663868 0.00664596 0.00665324 0.00666053 0.00666781 0.0066751 0.00668238 0.00668967 0.00669695 0.00670424 0.00671152 0.00671881 0.00672609 0.00673338 0.00674066 0.00674795 0.00675523 0.00676252 0.0067698 0.00677708 0.00678437 0.00679165 0.00679894 0.00680622 0.00681351 0.00682079 0.00682808 0.00683536 0.00684265 0.00684993 0.00685722 0.0068645 0.00687179 0.00687907 0.00688635 0.00689364 0.00690092 0.00690821 0.00691549 0.00692278 0.00693006 0.00693735 0.00694463 0.00695192 0.0069592 0.00696649 0.00697377 0.00698106 0.00698834 0.00699562 0.00700291 0.00701019 0.00701748 0.00702476 0.00703205 0.00703933 0.00704662 0.0070539 0.00706119 0.00706847 0.00707576 0.00708304 0.00709033 0.00709761 0.0071049 0.00711218 0.00711946 0.00712675 +-0.00158515 -0.00148905 -0.00129721 -0.000816534 4.39713E-05 0.00115074 0.00236333 0.00358314 0.00471171 0.00560187 0.0060825 0.00622399 0.00625478 0.00626561 0.00627342 0.00628079 0.00628809 0.00629539 0.00630268 0.00630997 0.00631726 0.00632456 0.00633185 0.00633914 0.00634643 0.00635373 0.00636102 0.00636831 0.0063756 0.0063829 0.00639019 0.00639748 0.00640477 0.00641207 0.00641936 0.00642665 0.00643394 0.00644123 0.00644853 0.00645582 0.00646311 0.0064704 0.0064777 0.00648499 0.00649228 0.00649957 0.00650687 0.00651416 0.00652145 0.00652874 0.00653604 0.00654333 0.00655062 0.00655791 0.0065652 0.0065725 0.00657979 0.00658708 0.00659437 0.00660167 0.00660896 0.00661625 0.00662354 0.00663084 0.00663813 0.00664542 0.00665271 0.00666001 0.0066673 0.00667459 0.00668188 0.00668917 0.00669647 0.00670376 0.00671105 0.00671834 0.00672564 0.00673293 0.00674022 0.00674751 0.00675481 0.0067621 0.00676939 0.00677668 0.00678398 0.00679127 0.00679856 0.00680585 0.00681315 0.00682044 0.00682773 0.00683502 0.00684231 0.00684961 0.0068569 0.00686419 0.00687148 0.00687878 0.00688607 0.00689336 0.00690065 0.00690795 0.00691524 0.00692253 0.00692982 0.00693712 0.00694441 0.0069517 0.00695899 0.00696628 0.00697358 0.00698087 0.00698816 0.00699545 0.00700275 0.00701004 0.00701733 0.00702462 0.00703192 0.00703921 0.0070465 0.00705379 0.00706109 0.00706838 0.00707567 0.00708296 0.00709025 0.00709755 0.00710484 0.00711213 0.00711942 0.00712672 0.00713401 +-0.00158703 -0.00149078 -0.00129854 -0.000817133 4.40496E-05 0.00115129 0.00236431 0.00358462 0.00471398 0.00560551 0.00608782 0.00623012 0.00626108 0.00627195 0.00627977 0.00628715 0.00629446 0.00630176 0.00630906 0.00631636 0.00632366 0.00633096 0.00633826 0.00634556 0.00635286 0.00636016 0.00636746 0.00637476 0.00638206 0.00638936 0.00639666 0.00640396 0.00641126 0.00641856 0.00642586 0.00643316 0.00644046 0.00644776 0.00645506 0.00646236 0.00646966 0.00647696 0.00648426 0.00649156 0.00649886 0.00650616 0.00651346 0.00652076 0.00652806 0.00653536 0.00654266 0.00654996 0.00655726 0.00656456 0.00657186 0.00657916 0.00658646 0.00659376 0.00660106 0.00660836 0.00661566 0.00662296 0.00663026 0.00663756 0.00664486 0.00665216 0.00665946 0.00666676 0.00667406 0.00668136 0.00668866 0.00669596 0.00670326 0.00671056 0.00671786 0.00672516 0.00673246 0.00673976 0.00674706 0.00675436 0.00676166 0.00676896 0.00677626 0.00678356 0.00679086 0.00679816 0.00680546 0.00681276 0.00682006 0.00682736 0.00683466 0.00684196 0.00684926 0.00685656 0.00686386 0.00687116 0.00687846 0.00688576 0.00689306 0.00690036 0.00690766 0.00691496 0.00692226 0.00692956 0.00693686 0.00694416 0.00695146 0.00695876 0.00696606 0.00697336 0.00698066 0.00698796 0.00699526 0.00700256 0.00700986 0.00701716 0.00702446 0.00703176 0.00703906 0.00704636 0.00705366 0.00706096 0.00706826 0.00707556 0.00708286 0.00709016 0.00709746 0.00710476 0.00711206 0.00711936 0.00712666 0.00713396 0.00714126 +-0.00158892 -0.00149251 -0.00129987 -0.00081773 4.41278E-05 0.00115185 0.00236528 0.00358609 0.00471624 0.00560914 0.00609314 0.00623625 0.00626739 0.00627828 0.00628612 0.0062935 0.00630082 0.00630813 0.00631544 0.00632275 0.00633005 0.00633736 0.00634467 0.00635198 0.00635929 0.00636659 0.0063739 0.00638121 0.00638852 0.00639582 0.00640313 0.00641044 0.00641775 0.00642505 0.00643236 0.00643967 0.00644698 0.00645429 0.00646159 0.0064689 0.00647621 0.00648352 0.00649082 0.00649813 0.00650544 0.00651275 0.00652005 0.00652736 0.00653467 0.00654198 0.00654929 0.00655659 0.0065639 0.00657121 0.00657852 0.00658582 0.00659313 0.00660044 0.00660775 0.00661505 0.00662236 0.00662967 0.00663698 0.00664429 0.00665159 0.0066589 0.00666621 0.00667352 0.00668082 0.00668813 0.00669544 0.00670275 0.00671005 0.00671736 0.00672467 0.00673198 0.00673929 0.00674659 0.0067539 0.00676121 0.00676852 0.00677582 0.00678313 0.00679044 0.00679775 0.00680505 0.00681236 0.00681967 0.00682698 0.00683429 0.00684159 0.0068489 0.00685621 0.00686352 0.00687082 0.00687813 0.00688544 0.00689275 0.00690005 0.00690736 0.00691467 0.00692198 0.00692929 0.00693659 0.0069439 0.00695121 0.00695852 0.00696582 0.00697313 0.00698044 0.00698775 0.00699506 0.00700236 0.00700967 0.00701698 0.00702429 0.00703159 0.0070389 0.00704621 0.00705352 0.00706082 0.00706813 0.00707544 0.00708275 0.00709006 0.00709736 0.00710467 0.00711198 0.00711929 0.00712659 0.0071339 0.00714121 0.00714852 +-0.0015908 -0.00149423 -0.00130121 -0.000818326 4.42061E-05 0.0011524 0.00236624 0.00358756 0.00471849 0.00561277 0.00609845 0.00624237 0.00627368 0.00628462 0.00629246 0.00629985 0.00630718 0.0063145 0.00632181 0.00632913 0.00633644 0.00634376 0.00635108 0.00635839 0.00636571 0.00637302 0.00638034 0.00638765 0.00639497 0.00640228 0.0064096 0.00641691 0.00642423 0.00643154 0.00643886 0.00644617 0.00645349 0.00646081 0.00646812 0.00647544 0.00648275 0.00649007 0.00649738 0.0065047 0.00651201 0.00651933 0.00652664 0.00653396 0.00654127 0.00654859 0.00655591 0.00656322 0.00657054 0.00657785 0.00658517 0.00659248 0.0065998 0.00660711 0.00661443 0.00662174 0.00662906 0.00663637 0.00664369 0.006651 0.00665832 0.00666564 0.00667295 0.00668027 0.00668758 0.0066949 0.00670221 0.00670953 0.00671684 0.00672416 0.00673147 0.00673879 0.0067461 0.00675342 0.00676074 0.00676805 0.00677537 0.00678268 0.00679 0.00679731 0.00680463 0.00681194 0.00681926 0.00682657 0.00683389 0.0068412 0.00684852 0.00685583 0.00686315 0.00687047 0.00687778 0.0068851 0.00689241 0.00689973 0.00690704 0.00691436 0.00692167 0.00692899 0.0069363 0.00694362 0.00695093 0.00695825 0.00696557 0.00697288 0.0069802 0.00698751 0.00699483 0.00700214 0.00700946 0.00701677 0.00702409 0.0070314 0.00703872 0.00704603 0.00705335 0.00706067 0.00706798 0.0070753 0.00708261 0.00708993 0.00709724 0.00710456 0.00711187 0.00711919 0.0071265 0.00713382 0.00714113 0.00714845 0.00715576 +-0.00159269 -0.00149596 -0.00130254 -0.000818922 4.42844E-05 0.00115296 0.00236721 0.00358902 0.00472074 0.00561638 0.00610375 0.00624849 0.00627998 0.00629094 0.0062988 0.0063062 0.00631354 0.00632086 0.00632818 0.00633551 0.00634283 0.00635015 0.00635748 0.0063648 0.00637212 0.00637945 0.00638677 0.00639409 0.00640141 0.00640874 0.00641606 0.00642338 0.00643071 0.00643803 0.00644535 0.00645268 0.00646 0.00646732 0.00647465 0.00648197 0.00648929 0.00649661 0.00650394 0.00651126 0.00651858 0.00652591 0.00653323 0.00654055 0.00654788 0.0065552 0.00656252 0.00656984 0.00657717 0.00658449 0.00659181 0.00659914 0.00660646 0.00661378 0.00662111 0.00662843 0.00663575 0.00664307 0.0066504 0.00665772 0.00666504 0.00667237 0.00667969 0.00668701 0.00669434 0.00670166 0.00670898 0.0067163 0.00672363 0.00673095 0.00673827 0.0067456 0.00675292 0.00676024 0.00676757 0.00677489 0.00678221 0.00678953 0.00679686 0.00680418 0.0068115 0.00681883 0.00682615 0.00683347 0.0068408 0.00684812 0.00685544 0.00686277 0.00687009 0.00687741 0.00688473 0.00689206 0.00689938 0.0069067 0.00691403 0.00692135 0.00692867 0.006936 0.00694332 0.00695064 0.00695796 0.00696529 0.00697261 0.00697993 0.00698726 0.00699458 0.0070019 0.00700923 0.00701655 0.00702387 0.00703119 0.00703852 0.00704584 0.00705316 0.00706049 0.00706781 0.00707513 0.00708246 0.00708978 0.0070971 0.00710442 0.00711175 0.00711907 0.00712639 0.00713372 0.00714104 0.00714836 0.00715569 0.00716301 +-0.00159457 -0.00149768 -0.00130387 -0.000819517 4.43627E-05 0.00115351 0.00236818 0.00359049 0.00472299 0.00561999 0.00610905 0.00625461 0.00628627 0.00629727 0.00630514 0.00631255 0.00631989 0.00632722 0.00633455 0.00634188 0.00634921 0.00635654 0.00636388 0.00637121 0.00637854 0.00638587 0.0063932 0.00640053 0.00640786 0.00641519 0.00642252 0.00642985 0.00643718 0.00644451 0.00645184 0.00645917 0.0064665 0.00647384 0.00648117 0.0064885 0.00649583 0.00650316 0.00651049 0.00651782 0.00652515 0.00653248 0.00653981 0.00654714 0.00655447 0.0065618 0.00656913 0.00657646 0.0065838 0.00659113 0.00659846 0.00660579 0.00661312 0.00662045 0.00662778 0.00663511 0.00664244 0.00664977 0.0066571 0.00666443 0.00667176 0.00667909 0.00668642 0.00669376 0.00670109 0.00670842 0.00671575 0.00672308 0.00673041 0.00673774 0.00674507 0.0067524 0.00675973 0.00676706 0.00677439 0.00678172 0.00678905 0.00679638 0.00680372 0.00681105 0.00681838 0.00682571 0.00683304 0.00684037 0.0068477 0.00685503 0.00686236 0.00686969 0.00687702 0.00688435 0.00689168 0.00689901 0.00690635 0.00691368 0.00692101 0.00692834 0.00693567 0.006943 0.00695033 0.00695766 0.00696499 0.00697232 0.00697965 0.00698698 0.00699431 0.00700164 0.00700897 0.00701631 0.00702364 0.00703097 0.0070383 0.00704563 0.00705296 0.00706029 0.00706762 0.00707495 0.00708228 0.00708961 0.00709694 0.00710427 0.0071116 0.00711893 0.00712627 0.0071336 0.00714093 0.00714826 0.00715559 0.00716292 0.00717025 +-0.00159645 -0.0014994 -0.0013052 -0.00082011 4.4441E-05 0.00115406 0.00236914 0.00359195 0.00472523 0.00562359 0.00611433 0.00626071 0.00629256 0.00630359 0.00631147 0.00631889 0.00632624 0.00633358 0.00634092 0.00634826 0.00635559 0.00636293 0.00637027 0.00637761 0.00638495 0.00639229 0.00639962 0.00640696 0.0064143 0.00642164 0.00642898 0.00643631 0.00644365 0.00645099 0.00645833 0.00646567 0.00647301 0.00648034 0.00648768 0.00649502 0.00650236 0.0065097 0.00651704 0.00652437 0.00653171 0.00653905 0.00654639 0.00655373 0.00656107 0.0065684 0.00657574 0.00658308 0.00659042 0.00659776 0.0066051 0.00661243 0.00661977 0.00662711 0.00663445 0.00664179 0.00664913 0.00665646 0.0066638 0.00667114 0.00667848 0.00668582 0.00669316 0.00670049 0.00670783 0.00671517 0.00672251 0.00672985 0.00673719 0.00674452 0.00675186 0.0067592 0.00676654 0.00677388 0.00678122 0.00678855 0.00679589 0.00680323 0.00681057 0.00681791 0.00682525 0.00683258 0.00683992 0.00684726 0.0068546 0.00686194 0.00686928 0.00687661 0.00688395 0.00689129 0.00689863 0.00690597 0.00691331 0.00692064 0.00692798 0.00693532 0.00694266 0.00695 0.00695734 0.00696467 0.00697201 0.00697935 0.00698669 0.00699403 0.00700137 0.0070087 0.00701604 0.00702338 0.00703072 0.00703806 0.0070454 0.00705273 0.00706007 0.00706741 0.00707475 0.00708209 0.00708943 0.00709676 0.0071041 0.00711144 0.00711878 0.00712612 0.00713346 0.00714079 0.00714813 0.00715547 0.00716281 0.00717015 0.00717749 +-0.00159834 -0.00150112 -0.00130652 -0.000820703 4.45194E-05 0.00115461 0.00237011 0.00359341 0.00472746 0.00562718 0.00611961 0.00626682 0.00629884 0.00630991 0.0063178 0.00632523 0.00633258 0.00633993 0.00634728 0.00635462 0.00636197 0.00636932 0.00637666 0.00638401 0.00639135 0.0063987 0.00640605 0.00641339 0.00642074 0.00642808 0.00643543 0.00644278 0.00645012 0.00645747 0.00646481 0.00647216 0.00647951 0.00648685 0.0064942 0.00650154 0.00650889 0.00651623 0.00652358 0.00653093 0.00653827 0.00654562 0.00655296 0.00656031 0.00656766 0.006575 0.00658235 0.00658969 0.00659704 0.00660439 0.00661173 0.00661908 0.00662642 0.00663377 0.00664112 0.00664846 0.00665581 0.00666315 0.0066705 0.00667785 0.00668519 0.00669254 0.00669988 0.00670723 0.00671458 0.00672192 0.00672927 0.00673661 0.00674396 0.00675131 0.00675865 0.006766 0.00677334 0.00678069 0.00678804 0.00679538 0.00680273 0.00681007 0.00681742 0.00682477 0.00683211 0.00683946 0.0068468 0.00685415 0.0068615 0.00686884 0.00687619 0.00688353 0.00689088 0.00689823 0.00690557 0.00691292 0.00692026 0.00692761 0.00693496 0.0069423 0.00694965 0.00695699 0.00696434 0.00697169 0.00697903 0.00698638 0.00699372 0.00700107 0.00700842 0.00701576 0.00702311 0.00703045 0.0070378 0.00704515 0.00705249 0.00705984 0.00706718 0.00707453 0.00708187 0.00708922 0.00709657 0.00710391 0.00711126 0.0071186 0.00712595 0.0071333 0.00714064 0.00714799 0.00715533 0.00716268 0.00717003 0.00717737 0.00718472 +-0.00160022 -0.00150284 -0.00130785 -0.000821295 4.45978E-05 0.00115517 0.00237107 0.00359486 0.00472969 0.00563076 0.00612488 0.00627292 0.00630512 0.00631622 0.00632413 0.00633156 0.00633893 0.00634628 0.00635364 0.00636099 0.00636834 0.0063757 0.00638305 0.0063904 0.00639776 0.00640511 0.00641246 0.00641982 0.00642717 0.00643452 0.00644188 0.00644923 0.00645659 0.00646394 0.00647129 0.00647865 0.006486 0.00649335 0.00650071 0.00650806 0.00651541 0.00652277 0.00653012 0.00653748 0.00654483 0.00655218 0.00655954 0.00656689 0.00657424 0.0065816 0.00658895 0.0065963 0.00660366 0.00661101 0.00661837 0.00662572 0.00663307 0.00664043 0.00664778 0.00665513 0.00666249 0.00666984 0.00667719 0.00668455 0.0066919 0.00669926 0.00670661 0.00671396 0.00672132 0.00672867 0.00673602 0.00674338 0.00675073 0.00675808 0.00676544 0.00677279 0.00678014 0.0067875 0.00679485 0.00680221 0.00680956 0.00681691 0.00682427 0.00683162 0.00683897 0.00684633 0.00685368 0.00686103 0.00686839 0.00687574 0.0068831 0.00689045 0.0068978 0.00690516 0.00691251 0.00691986 0.00692722 0.00693457 0.00694192 0.00694928 0.00695663 0.00696399 0.00697134 0.00697869 0.00698605 0.0069934 0.00700075 0.00700811 0.00701546 0.00702281 0.00703017 0.00703752 0.00704488 0.00705223 0.00705958 0.00706694 0.00707429 0.00708164 0.007089 0.00709635 0.0071037 0.00711106 0.00711841 0.00712576 0.00713312 0.00714047 0.00714783 0.00715518 0.00716253 0.00716989 0.00717724 0.00718459 0.00719195 +-0.0016021 -0.00150456 -0.00130918 -0.000821886 4.46762E-05 0.00115572 0.00237203 0.00359632 0.00473192 0.00563433 0.00613014 0.00627901 0.0063114 0.00632253 0.00633045 0.00633789 0.00634526 0.00635263 0.00635999 0.00636735 0.00637471 0.00638207 0.00638943 0.0063968 0.00640416 0.00641152 0.00641888 0.00642624 0.0064336 0.00644096 0.00644832 0.00645569 0.00646305 0.00647041 0.00647777 0.00648513 0.00649249 0.00649985 0.00650721 0.00651458 0.00652194 0.0065293 0.00653666 0.00654402 0.00655138 0.00655874 0.0065661 0.00657347 0.00658083 0.00658819 0.00659555 0.00660291 0.00661027 0.00661763 0.00662499 0.00663236 0.00663972 0.00664708 0.00665444 0.0066618 0.00666916 0.00667652 0.00668388 0.00669125 0.00669861 0.00670597 0.00671333 0.00672069 0.00672805 0.00673541 0.00674277 0.00675014 0.0067575 0.00676486 0.00677222 0.00677958 0.00678694 0.0067943 0.00680166 0.00680903 0.00681639 0.00682375 0.00683111 0.00683847 0.00684583 0.00685319 0.00686055 0.00686792 0.00687528 0.00688264 0.00689 0.00689736 0.00690472 0.00691208 0.00691944 0.00692681 0.00693417 0.00694153 0.00694889 0.00695625 0.00696361 0.00697097 0.00697833 0.0069857 0.00699306 0.00700042 0.00700778 0.00701514 0.0070225 0.00702986 0.00703722 0.00704459 0.00705195 0.00705931 0.00706667 0.00707403 0.00708139 0.00708875 0.00709611 0.00710348 0.00711084 0.0071182 0.00712556 0.00713292 0.00714028 0.00714764 0.007155 0.00716237 0.00716973 0.00717709 0.00718445 0.00719181 0.00719917 +-0.00160398 -0.00150628 -0.0013105 -0.000822476 4.47546E-05 0.00115626 0.00237298 0.00359777 0.00473414 0.0056379 0.0061354 0.0062851 0.00631767 0.00632884 0.00633677 0.00634422 0.0063516 0.00635897 0.00636634 0.00637371 0.00638108 0.00638845 0.00639582 0.00640318 0.00641055 0.00641792 0.00642529 0.00643266 0.00644003 0.0064474 0.00645477 0.00646214 0.0064695 0.00647687 0.00648424 0.00649161 0.00649898 0.00650635 0.00651372 0.00652109 0.00652846 0.00653582 0.00654319 0.00655056 0.00655793 0.0065653 0.00657267 0.00658004 0.00658741 0.00659478 0.00660214 0.00660951 0.00661688 0.00662425 0.00663162 0.00663899 0.00664636 0.00665373 0.0066611 0.00666846 0.00667583 0.0066832 0.00669057 0.00669794 0.00670531 0.00671268 0.00672005 0.00672742 0.00673478 0.00674215 0.00674952 0.00675689 0.00676426 0.00677163 0.006779 0.00678637 0.00679374 0.0068011 0.00680847 0.00681584 0.00682321 0.00683058 0.00683795 0.00684532 0.00685269 0.00686006 0.00686742 0.00687479 0.00688216 0.00688953 0.0068969 0.00690427 0.00691164 0.00691901 0.00692638 0.00693374 0.00694111 0.00694848 0.00695585 0.00696322 0.00697059 0.00697796 0.00698533 0.0069927 0.00700006 0.00700743 0.0070148 0.00702217 0.00702954 0.00703691 0.00704428 0.00705165 0.00705902 0.00706638 0.00707375 0.00708112 0.00708849 0.00709586 0.00710323 0.0071106 0.00711797 0.00712534 0.0071327 0.00714007 0.00714744 0.00715481 0.00716218 0.00716955 0.00717692 0.00718429 0.00719166 0.00719902 0.00720639 +-0.00160586 -0.001508 -0.00131182 -0.000823065 4.48331E-05 0.00115681 0.00237394 0.00359921 0.00473636 0.00564146 0.00614064 0.00629119 0.00632394 0.00633515 0.00634309 0.00635054 0.00635793 0.00636531 0.00637269 0.00638006 0.00638744 0.00639482 0.00640219 0.00640957 0.00641695 0.00642432 0.0064317 0.00643908 0.00644645 0.00645383 0.00646121 0.00646858 0.00647596 0.00648333 0.00649071 0.00649809 0.00650546 0.00651284 0.00652022 0.00652759 0.00653497 0.00654235 0.00654972 0.0065571 0.00656448 0.00657185 0.00657923 0.00658661 0.00659398 0.00660136 0.00660874 0.00661611 0.00662349 0.00663087 0.00663824 0.00664562 0.006653 0.00666037 0.00666775 0.00667512 0.0066825 0.00668988 0.00669725 0.00670463 0.00671201 0.00671938 0.00672676 0.00673414 0.00674151 0.00674889 0.00675627 0.00676364 0.00677102 0.0067784 0.00678577 0.00679315 0.00680053 0.0068079 0.00681528 0.00682266 0.00683003 0.00683741 0.00684478 0.00685216 0.00685954 0.00686691 0.00687429 0.00688167 0.00688904 0.00689642 0.0069038 0.00691117 0.00691855 0.00692593 0.0069333 0.00694068 0.00694806 0.00695543 0.00696281 0.00697019 0.00697756 0.00698494 0.00699232 0.00699969 0.00700707 0.00701444 0.00702182 0.0070292 0.00703657 0.00704395 0.00705133 0.0070587 0.00706608 0.00707346 0.00708083 0.00708821 0.00709559 0.00710296 0.00711034 0.00711772 0.00712509 0.00713247 0.00713985 0.00714722 0.0071546 0.00716198 0.00716935 0.00717673 0.00718411 0.00719148 0.00719886 0.00720623 0.00721361 +-0.00160774 -0.00150972 -0.00131315 -0.000823654 4.49115E-05 0.00115736 0.0023749 0.00360066 0.00473857 0.00564501 0.00614588 0.00629727 0.0063302 0.00634145 0.0063494 0.00635686 0.00636426 0.00637165 0.00637903 0.00638642 0.0063938 0.00640118 0.00640857 0.00641595 0.00642334 0.00643072 0.0064381 0.00644549 0.00645287 0.00646026 0.00646764 0.00647502 0.00648241 0.00648979 0.00649718 0.00650456 0.00651195 0.00651933 0.00652671 0.0065341 0.00654148 0.00654887 0.00655625 0.00656363 0.00657102 0.0065784 0.00658579 0.00659317 0.00660056 0.00660794 0.00661532 0.00662271 0.00663009 0.00663748 0.00664486 0.00665224 0.00665963 0.00666701 0.0066744 0.00668178 0.00668917 0.00669655 0.00670393 0.00671132 0.0067187 0.00672609 0.00673347 0.00674085 0.00674824 0.00675562 0.00676301 0.00677039 0.00677778 0.00678516 0.00679254 0.00679993 0.00680731 0.0068147 0.00682208 0.00682946 0.00683685 0.00684423 0.00685162 0.006859 0.00686639 0.00687377 0.00688115 0.00688854 0.00689592 0.00690331 0.00691069 0.00691807 0.00692546 0.00693284 0.00694023 0.00694761 0.006955 0.00696238 0.00696976 0.00697715 0.00698453 0.00699192 0.0069993 0.00700668 0.00701407 0.00702145 0.00702884 0.00703622 0.0070436 0.00705099 0.00705837 0.00706576 0.00707314 0.00708053 0.00708791 0.00709529 0.00710268 0.00711006 0.00711745 0.00712483 0.00713221 0.0071396 0.00714698 0.00715437 0.00716175 0.00716914 0.00717652 0.0071839 0.00719129 0.00719867 0.00720606 0.00721344 0.00722082 +-0.00160962 -0.00151144 -0.00131447 -0.000824241 4.499E-05 0.00115791 0.00237585 0.0036021 0.00474078 0.00564855 0.00615111 0.00630335 0.00633647 0.00634775 0.00635571 0.00636318 0.00637059 0.00637798 0.00638537 0.00639276 0.00640016 0.00640755 0.00641494 0.00642233 0.00642972 0.00643711 0.00644451 0.0064519 0.00645929 0.00646668 0.00647407 0.00648146 0.00648886 0.00649625 0.00650364 0.00651103 0.00651842 0.00652582 0.00653321 0.0065406 0.00654799 0.00655538 0.00656277 0.00657017 0.00657756 0.00658495 0.00659234 0.00659973 0.00660712 0.00661452 0.00662191 0.0066293 0.00663669 0.00664408 0.00665148 0.00665887 0.00666626 0.00667365 0.00668104 0.00668843 0.00669583 0.00670322 0.00671061 0.006718 0.00672539 0.00673279 0.00674018 0.00674757 0.00675496 0.00676235 0.00676974 0.00677714 0.00678453 0.00679192 0.00679931 0.0068067 0.00681409 0.00682149 0.00682888 0.00683627 0.00684366 0.00685105 0.00685845 0.00686584 0.00687323 0.00688062 0.00688801 0.0068954 0.0069028 0.00691019 0.00691758 0.00692497 0.00693236 0.00693976 0.00694715 0.00695454 0.00696193 0.00696932 0.00697671 0.00698411 0.0069915 0.00699889 0.00700628 0.00701367 0.00702106 0.00702846 0.00703585 0.00704324 0.00705063 0.00705802 0.00706542 0.00707281 0.0070802 0.00708759 0.00709498 0.00710237 0.00710977 0.00711716 0.00712455 0.00713194 0.00713933 0.00714672 0.00715412 0.00716151 0.0071689 0.00717629 0.00718368 0.00719108 0.00719847 0.00720586 0.00721325 0.00722064 0.00722803 +-0.0016115 -0.00151316 -0.00131579 -0.000824828 4.50685E-05 0.00115845 0.0023768 0.00360354 0.00474298 0.00565208 0.00615634 0.00630942 0.00634272 0.00635404 0.00636201 0.0063695 0.00637691 0.00638431 0.00639171 0.00639911 0.00640651 0.00641391 0.00642131 0.00642871 0.00643611 0.0064435 0.0064509 0.0064583 0.0064657 0.0064731 0.0064805 0.0064879 0.0064953 0.0065027 0.0065101 0.0065175 0.0065249 0.0065323 0.0065397 0.0065471 0.0065545 0.00656189 0.00656929 0.00657669 0.00658409 0.00659149 0.00659889 0.00660629 0.00661369 0.00662109 0.00662849 0.00663589 0.00664329 0.00665069 0.00665809 0.00666549 0.00667289 0.00668029 0.00668768 0.00669508 0.00670248 0.00670988 0.00671728 0.00672468 0.00673208 0.00673948 0.00674688 0.00675428 0.00676168 0.00676908 0.00677648 0.00678388 0.00679128 0.00679868 0.00680608 0.00681347 0.00682087 0.00682827 0.00683567 0.00684307 0.00685047 0.00685787 0.00686527 0.00687267 0.00688007 0.00688747 0.00689487 0.00690227 0.00690967 0.00691707 0.00692447 0.00693187 0.00693926 0.00694666 0.00695406 0.00696146 0.00696886 0.00697626 0.00698366 0.00699106 0.00699846 0.00700586 0.00701326 0.00702066 0.00702806 0.00703546 0.00704286 0.00705026 0.00705765 0.00706505 0.00707245 0.00707985 0.00708725 0.00709465 0.00710205 0.00710945 0.00711685 0.00712425 0.00713165 0.00713905 0.00714645 0.00715385 0.00716125 0.00716865 0.00717605 0.00718344 0.00719084 0.00719824 0.00720564 0.00721304 0.00722044 0.00722784 0.00723524 +-0.00161338 -0.00151487 -0.00131711 -0.000825413 4.51471E-05 0.001159 0.00237775 0.00360498 0.00474518 0.00565561 0.00616155 0.00631549 0.00634898 0.00636033 0.00636832 0.00637581 0.00638323 0.00639064 0.00639804 0.00640545 0.00641286 0.00642026 0.00642767 0.00643508 0.00644249 0.00644989 0.0064573 0.00646471 0.00647211 0.00647952 0.00648693 0.00649433 0.00650174 0.00650915 0.00651655 0.00652396 0.00653137 0.00653878 0.00654618 0.00655359 0.006561 0.0065684 0.00657581 0.00658322 0.00659063 0.00659803 0.00660544 0.00661285 0.00662025 0.00662766 0.00663507 0.00664247 0.00664988 0.00665729 0.0066647 0.0066721 0.00667951 0.00668692 0.00669432 0.00670173 0.00670914 0.00671654 0.00672395 0.00673136 0.00673877 0.00674617 0.00675358 0.00676099 0.00676839 0.0067758 0.00678321 0.00679061 0.00679802 0.00680543 0.00681284 0.00682024 0.00682765 0.00683506 0.00684246 0.00684987 0.00685728 0.00686468 0.00687209 0.0068795 0.00688691 0.00689431 0.00690172 0.00690913 0.00691653 0.00692394 0.00693135 0.00693875 0.00694616 0.00695357 0.00696098 0.00696838 0.00697579 0.0069832 0.0069906 0.00699801 0.00700542 0.00701283 0.00702023 0.00702764 0.00703505 0.00704245 0.00704986 0.00705727 0.00706467 0.00707208 0.00707949 0.0070869 0.0070943 0.00710171 0.00710912 0.00711652 0.00712393 0.00713134 0.00713874 0.00714615 0.00715356 0.00716097 0.00716837 0.00717578 0.00718319 0.00719059 0.007198 0.00720541 0.00721281 0.00722022 0.00722763 0.00723504 0.00724244 +-0.00161525 -0.00151659 -0.00131842 -0.000825998 4.52256E-05 0.00115954 0.0023787 0.00360641 0.00474737 0.00565913 0.00616676 0.00632155 0.00635523 0.00636662 0.00637462 0.00638211 0.00638954 0.00639696 0.00640437 0.00641179 0.0064192 0.00642662 0.00643403 0.00644145 0.00644886 0.00645628 0.00646369 0.00647111 0.00647852 0.00648593 0.00649335 0.00650076 0.00650818 0.00651559 0.00652301 0.00653042 0.00653784 0.00654525 0.00655267 0.00656008 0.00656749 0.00657491 0.00658232 0.00658974 0.00659715 0.00660457 0.00661198 0.0066194 0.00662681 0.00663423 0.00664164 0.00664906 0.00665647 0.00666389 0.0066713 0.00667871 0.00668613 0.00669354 0.00670096 0.00670837 0.00671579 0.0067232 0.00673062 0.00673803 0.00674545 0.00675286 0.00676028 0.00676769 0.0067751 0.00678252 0.00678993 0.00679735 0.00680476 0.00681218 0.00681959 0.00682701 0.00683442 0.00684184 0.00684925 0.00685667 0.00686408 0.00687149 0.00687891 0.00688632 0.00689374 0.00690115 0.00690857 0.00691598 0.0069234 0.00693081 0.00693823 0.00694564 0.00695306 0.00696047 0.00696789 0.0069753 0.00698271 0.00699013 0.00699754 0.00700496 0.00701237 0.00701979 0.0070272 0.00703462 0.00704203 0.00704945 0.00705686 0.00706428 0.00707169 0.0070791 0.00708652 0.00709393 0.00710135 0.00710876 0.00711618 0.00712359 0.00713101 0.00713842 0.00714584 0.00715325 0.00716067 0.00716808 0.00717549 0.00718291 0.00719032 0.00719774 0.00720515 0.00721257 0.00721998 0.0072274 0.00723481 0.00724223 0.00724964 +-0.00161713 -0.0015183 -0.00131974 -0.000826582 4.53042E-05 0.00116009 0.00237965 0.00360785 0.00474956 0.00566264 0.00617196 0.00632761 0.00636148 0.0063729 0.00638091 0.00638842 0.00639585 0.00640328 0.0064107 0.00641812 0.00642555 0.00643297 0.00644039 0.00644781 0.00645523 0.00646266 0.00647008 0.0064775 0.00648492 0.00649234 0.00649977 0.00650719 0.00651461 0.00652203 0.00652946 0.00653688 0.0065443 0.00655172 0.00655914 0.00656657 0.00657399 0.00658141 0.00658883 0.00659626 0.00660368 0.0066111 0.00661852 0.00662595 0.00663337 0.00664079 0.00664821 0.00665563 0.00666306 0.00667048 0.0066779 0.00668532 0.00669275 0.00670017 0.00670759 0.00671501 0.00672243 0.00672986 0.00673728 0.0067447 0.00675212 0.00675955 0.00676697 0.00677439 0.00678181 0.00678923 0.00679666 0.00680408 0.0068115 0.00681892 0.00682635 0.00683377 0.00684119 0.00684861 0.00685603 0.00686346 0.00687088 0.0068783 0.00688572 0.00689315 0.00690057 0.00690799 0.00691541 0.00692283 0.00693026 0.00693768 0.0069451 0.00695252 0.00695995 0.00696737 0.00697479 0.00698221 0.00698964 0.00699706 0.00700448 0.0070119 0.00701932 0.00702675 0.00703417 0.00704159 0.00704901 0.00705644 0.00706386 0.00707128 0.0070787 0.00708612 0.00709355 0.00710097 0.00710839 0.00711581 0.00712324 0.00713066 0.00713808 0.0071455 0.00715292 0.00716035 0.00716777 0.00717519 0.00718261 0.00719004 0.00719746 0.00720488 0.0072123 0.00721972 0.00722715 0.00723457 0.00724199 0.00724941 0.00725684 +-0.00161901 -0.00152002 -0.00132106 -0.000827165 4.53828E-05 0.00116063 0.0023806 0.00360928 0.00475175 0.00566614 0.00617715 0.00633366 0.00636772 0.00637918 0.0063872 0.00639472 0.00640216 0.00640959 0.00641702 0.00642445 0.00643188 0.00643931 0.00644674 0.00645417 0.0064616 0.00646903 0.00647646 0.00648389 0.00649132 0.00649875 0.00650618 0.00651361 0.00652104 0.00652847 0.0065359 0.00654333 0.00655076 0.00655819 0.00656562 0.00657305 0.00658048 0.00658791 0.00659534 0.00660277 0.0066102 0.00661763 0.00662506 0.00663249 0.00663992 0.00664735 0.00665478 0.00666221 0.00666964 0.00667707 0.0066845 0.00669193 0.00669936 0.00670679 0.00671422 0.00672165 0.00672908 0.00673651 0.00674394 0.00675137 0.0067588 0.00676623 0.00677366 0.00678109 0.00678852 0.00679595 0.00680338 0.00681081 0.00681824 0.00682567 0.0068331 0.00684053 0.00684796 0.00685539 0.00686281 0.00687024 0.00687767 0.0068851 0.00689253 0.00689996 0.00690739 0.00691482 0.00692225 0.00692968 0.00693711 0.00694454 0.00695197 0.0069594 0.00696683 0.00697426 0.00698169 0.00698912 0.00699655 0.00700398 0.00701141 0.00701884 0.00702627 0.0070337 0.00704113 0.00704856 0.00705599 0.00706342 0.00707085 0.00707828 0.00708571 0.00709314 0.00710057 0.007108 0.00711543 0.00712286 0.00713029 0.00713772 0.00714515 0.00715258 0.00716001 0.00716744 0.00717487 0.0071823 0.00718973 0.00719716 0.00720459 0.00721202 0.00721945 0.00722688 0.00723431 0.00724174 0.00724917 0.0072566 0.00726403 +-0.00162088 -0.00152173 -0.00132237 -0.000827747 4.54614E-05 0.00116117 0.00238154 0.0036107 0.00475393 0.00566964 0.00618233 0.00633971 0.00637396 0.00638546 0.00639349 0.00640102 0.00640847 0.00641591 0.00642334 0.00643078 0.00643822 0.00644566 0.00645309 0.00646053 0.00646797 0.00647541 0.00648284 0.00649028 0.00649772 0.00650516 0.00651259 0.00652003 0.00652747 0.00653491 0.00654234 0.00654978 0.00655722 0.00656466 0.00657209 0.00657953 0.00658697 0.00659441 0.00660184 0.00660928 0.00661672 0.00662416 0.00663159 0.00663903 0.00664647 0.00665391 0.00666134 0.00666878 0.00667622 0.00668366 0.00669109 0.00669853 0.00670597 0.0067134 0.00672084 0.00672828 0.00673572 0.00674315 0.00675059 0.00675803 0.00676547 0.0067729 0.00678034 0.00678778 0.00679522 0.00680265 0.00681009 0.00681753 0.00682497 0.0068324 0.00683984 0.00684728 0.00685472 0.00686215 0.00686959 0.00687703 0.00688447 0.0068919 0.00689934 0.00690678 0.00691422 0.00692165 0.00692909 0.00693653 0.00694397 0.0069514 0.00695884 0.00696628 0.00697372 0.00698115 0.00698859 0.00699603 0.00700347 0.0070109 0.00701834 0.00702578 0.00703322 0.00704065 0.00704809 0.00705553 0.00706297 0.0070704 0.00707784 0.00708528 0.00709272 0.00710015 0.00710759 0.00711503 0.00712247 0.0071299 0.00713734 0.00714478 0.00715221 0.00715965 0.00716709 0.00717453 0.00718196 0.0071894 0.00719684 0.00720428 0.00721171 0.00721915 0.00722659 0.00723403 0.00724146 0.0072489 0.00725634 0.00726378 0.00727121 +-0.00162276 -0.00152344 -0.00132369 -0.000828328 4.554E-05 0.00116172 0.00238249 0.00361213 0.0047561 0.00567313 0.00618751 0.00634576 0.0063802 0.00639173 0.00639978 0.00640731 0.00641477 0.00642222 0.00642966 0.00643711 0.00644455 0.006452 0.00645944 0.00646689 0.00647433 0.00648178 0.00648922 0.00649667 0.00650411 0.00651156 0.006519 0.00652645 0.00653389 0.00654134 0.00654878 0.00655623 0.00656367 0.00657112 0.00657856 0.00658601 0.00659345 0.0066009 0.00660834 0.00661579 0.00662323 0.00663068 0.00663812 0.00664557 0.00665301 0.00666046 0.0066679 0.00667535 0.00668279 0.00669024 0.00669768 0.00670513 0.00671257 0.00672002 0.00672746 0.00673491 0.00674235 0.0067498 0.00675724 0.00676469 0.00677213 0.00677958 0.00678702 0.00679447 0.00680191 0.00680936 0.0068168 0.00682425 0.00683169 0.00683914 0.00684658 0.00685403 0.00686147 0.00686892 0.00687636 0.00688381 0.00689125 0.0068987 0.00690614 0.00691359 0.00692103 0.00692848 0.00693593 0.00694337 0.00695082 0.00695826 0.00696571 0.00697315 0.0069806 0.00698804 0.00699549 0.00700293 0.00701038 0.00701782 0.00702527 0.00703271 0.00704016 0.0070476 0.00705505 0.00706249 0.00706994 0.00707738 0.00708483 0.00709227 0.00709972 0.00710716 0.00711461 0.00712205 0.0071295 0.00713694 0.00714439 0.00715183 0.00715928 0.00716672 0.00717417 0.00718161 0.00718906 0.0071965 0.00720395 0.00721139 0.00721884 0.00722628 0.00723373 0.00724117 0.00724862 0.00725606 0.00726351 0.00727095 0.0072784 +-0.00162463 -0.00152516 -0.001325 -0.000828908 4.56187E-05 0.00116226 0.00238343 0.00361355 0.00475827 0.00567661 0.00619268 0.00635179 0.00638644 0.00639801 0.00640606 0.0064136 0.00642107 0.00642852 0.00643598 0.00644343 0.00645088 0.00645833 0.00646579 0.00647324 0.00648069 0.00648814 0.0064956 0.00650305 0.0065105 0.00651795 0.00652541 0.00653286 0.00654031 0.00654776 0.00655522 0.00656267 0.00657012 0.00657758 0.00658503 0.00659248 0.00659993 0.00660739 0.00661484 0.00662229 0.00662974 0.0066372 0.00664465 0.0066521 0.00665955 0.00666701 0.00667446 0.00668191 0.00668937 0.00669682 0.00670427 0.00671172 0.00671918 0.00672663 0.00673408 0.00674153 0.00674899 0.00675644 0.00676389 0.00677134 0.0067788 0.00678625 0.0067937 0.00680115 0.00680861 0.00681606 0.00682351 0.00683097 0.00683842 0.00684587 0.00685332 0.00686078 0.00686823 0.00687568 0.00688313 0.00689059 0.00689804 0.00690549 0.00691294 0.0069204 0.00692785 0.0069353 0.00694276 0.00695021 0.00695766 0.00696511 0.00697257 0.00698002 0.00698747 0.00699492 0.00700238 0.00700983 0.00701728 0.00702473 0.00703219 0.00703964 0.00704709 0.00705455 0.007062 0.00706945 0.0070769 0.00708436 0.00709181 0.00709926 0.00710671 0.00711417 0.00712162 0.00712907 0.00713652 0.00714398 0.00715143 0.00715888 0.00716633 0.00717379 0.00718124 0.00718869 0.00719615 0.0072036 0.00721105 0.0072185 0.00722596 0.00723341 0.00724086 0.00724831 0.00725577 0.00726322 0.00727067 0.00727812 0.00728558 +-0.0016265 -0.00152687 -0.00132631 -0.000829487 4.56974E-05 0.0011628 0.00238437 0.00361497 0.00476044 0.00568008 0.00619784 0.00635783 0.00639267 0.00640427 0.00641234 0.00641989 0.00642736 0.00643483 0.00644229 0.00644975 0.00645721 0.00646467 0.00647213 0.00647959 0.00648705 0.00649451 0.00650197 0.00650943 0.00651689 0.00652435 0.00653181 0.00653927 0.00654673 0.00655419 0.00656165 0.00656911 0.00657657 0.00658403 0.00659149 0.00659895 0.00660641 0.00661387 0.00662133 0.00662879 0.00663625 0.00664371 0.00665117 0.00665863 0.00666609 0.00667355 0.00668101 0.00668847 0.00669593 0.00670339 0.00671085 0.00671831 0.00672577 0.00673323 0.0067407 0.00674816 0.00675562 0.00676308 0.00677054 0.006778 0.00678546 0.00679292 0.00680038 0.00680784 0.0068153 0.00682276 0.00683022 0.00683768 0.00684514 0.0068526 0.00686006 0.00686752 0.00687498 0.00688244 0.0068899 0.00689736 0.00690482 0.00691228 0.00691974 0.0069272 0.00693466 0.00694212 0.00694958 0.00695704 0.0069645 0.00697196 0.00697942 0.00698688 0.00699434 0.0070018 0.00700926 0.00701672 0.00702418 0.00703164 0.0070391 0.00704657 0.00705403 0.00706149 0.00706895 0.00707641 0.00708387 0.00709133 0.00709879 0.00710625 0.00711371 0.00712117 0.00712863 0.00713609 0.00714355 0.00715101 0.00715847 0.00716593 0.00717339 0.00718085 0.00718831 0.00719577 0.00720323 0.00721069 0.00721815 0.00722561 0.00723307 0.00724053 0.00724799 0.00725545 0.00726291 0.00727037 0.00727783 0.00728529 0.00729275 +-0.00162838 -0.00152858 -0.00132762 -0.000830066 4.57761E-05 0.00116334 0.00238531 0.00361639 0.0047626 0.00568354 0.00620299 0.00636386 0.00639889 0.00641054 0.00641862 0.00642618 0.00643366 0.00644113 0.00644859 0.00645606 0.00646353 0.006471 0.00647847 0.00648593 0.0064934 0.00650087 0.00650834 0.0065158 0.00652327 0.00653074 0.00653821 0.00654567 0.00655314 0.00656061 0.00656808 0.00657555 0.00658301 0.00659048 0.00659795 0.00660542 0.00661288 0.00662035 0.00662782 0.00663529 0.00664276 0.00665022 0.00665769 0.00666516 0.00667263 0.0066801 0.00668756 0.00669503 0.0067025 0.00670997 0.00671743 0.0067249 0.00673237 0.00673984 0.00674731 0.00675477 0.00676224 0.00676971 0.00677718 0.00678464 0.00679211 0.00679958 0.00680705 0.00681452 0.00682198 0.00682945 0.00683692 0.00684439 0.00685186 0.00685932 0.00686679 0.00687426 0.00688173 0.00688919 0.00689666 0.00690413 0.0069116 0.00691907 0.00692653 0.006934 0.00694147 0.00694894 0.00695641 0.00696387 0.00697134 0.00697881 0.00698628 0.00699374 0.00700121 0.00700868 0.00701615 0.00702362 0.00703108 0.00703855 0.00704602 0.00705349 0.00706095 0.00706842 0.00707589 0.00708336 0.00709083 0.00709829 0.00710576 0.00711323 0.0071207 0.00712817 0.00713563 0.0071431 0.00715057 0.00715804 0.0071655 0.00717297 0.00718044 0.00718791 0.00719538 0.00720284 0.00721031 0.00721778 0.00722525 0.00723271 0.00724018 0.00724765 0.00725512 0.00726259 0.00727005 0.00727752 0.00728499 0.00729246 0.00729993 +-0.00163025 -0.00153029 -0.00132893 -0.000830644 4.58548E-05 0.00116388 0.00238625 0.0036178 0.00476476 0.005687 0.00620813 0.00636989 0.00640512 0.0064168 0.00642489 0.00643246 0.00643994 0.00644742 0.0064549 0.00646237 0.00646985 0.00647732 0.0064848 0.00649227 0.00649975 0.00650723 0.0065147 0.00652218 0.00652965 0.00653713 0.0065446 0.00655208 0.00655955 0.00656703 0.0065745 0.00658198 0.00658945 0.00659693 0.0066044 0.00661188 0.00661936 0.00662683 0.00663431 0.00664178 0.00664926 0.00665673 0.00666421 0.00667168 0.00667916 0.00668663 0.00669411 0.00670159 0.00670906 0.00671654 0.00672401 0.00673149 0.00673896 0.00674644 0.00675391 0.00676139 0.00676886 0.00677634 0.00678381 0.00679129 0.00679877 0.00680624 0.00681372 0.00682119 0.00682867 0.00683614 0.00684362 0.00685109 0.00685857 0.00686604 0.00687352 0.006881 0.00688847 0.00689595 0.00690342 0.0069109 0.00691837 0.00692585 0.00693332 0.0069408 0.00694827 0.00695575 0.00696322 0.0069707 0.00697818 0.00698565 0.00699313 0.0070006 0.00700808 0.00701555 0.00702303 0.0070305 0.00703798 0.00704545 0.00705293 0.0070604 0.00706788 0.00707536 0.00708283 0.00709031 0.00709778 0.00710526 0.00711273 0.00712021 0.00712768 0.00713516 0.00714263 0.00715011 0.00715759 0.00716506 0.00717254 0.00718001 0.00718749 0.00719496 0.00720244 0.00720991 0.00721739 0.00722486 0.00723234 0.00723981 0.00724729 0.00725477 0.00726224 0.00726972 0.00727719 0.00728467 0.00729214 0.00729962 0.00730709 +-0.00163212 -0.001532 -0.00133024 -0.00083122 4.59335E-05 0.00116442 0.00238718 0.00361921 0.00476691 0.00569045 0.00621326 0.00637591 0.00641134 0.00642306 0.00643116 0.00643873 0.00644623 0.00645372 0.0064612 0.00646868 0.00647616 0.00648365 0.00649113 0.00649861 0.0065061 0.00651358 0.00652106 0.00652855 0.00653603 0.00654351 0.00655099 0.00655848 0.00656596 0.00657344 0.00658092 0.00658841 0.00659589 0.00660337 0.00661086 0.00661834 0.00662582 0.00663331 0.00664079 0.00664827 0.00665575 0.00666324 0.00667072 0.0066782 0.00668569 0.00669317 0.00670065 0.00670814 0.00671562 0.0067231 0.00673058 0.00673807 0.00674555 0.00675303 0.00676052 0.006768 0.00677548 0.00678297 0.00679045 0.00679793 0.00680541 0.0068129 0.00682038 0.00682786 0.00683535 0.00684283 0.00685031 0.0068578 0.00686528 0.00687276 0.00688024 0.00688773 0.00689521 0.00690269 0.00691018 0.00691766 0.00692514 0.00693263 0.00694011 0.00694759 0.00695507 0.00696256 0.00697004 0.00697752 0.00698501 0.00699249 0.00699997 0.00700746 0.00701494 0.00702242 0.0070299 0.00703739 0.00704487 0.00705235 0.00705984 0.00706732 0.0070748 0.00708229 0.00708977 0.00709725 0.00710473 0.00711222 0.0071197 0.00712718 0.00713467 0.00714215 0.00714963 0.00715712 0.0071646 0.00717208 0.00717956 0.00718705 0.00719453 0.00720201 0.0072095 0.00721698 0.00722446 0.00723195 0.00723943 0.00724691 0.00725439 0.00726188 0.00726936 0.00727684 0.00728433 0.00729181 0.00729929 0.00730678 0.00731426 +-0.00163399 -0.0015337 -0.00133154 -0.000831796 4.60123E-05 0.00116495 0.00238812 0.00362062 0.00476906 0.00569389 0.00621839 0.00638192 0.00641755 0.00642931 0.00643743 0.00644501 0.00645251 0.00646 0.0064675 0.00647499 0.00648248 0.00648997 0.00649746 0.00650495 0.00651244 0.00651993 0.00652742 0.00653491 0.0065424 0.00654989 0.00655738 0.00656487 0.00657236 0.00657985 0.00658734 0.00659483 0.00660232 0.00660981 0.00661731 0.0066248 0.00663229 0.00663978 0.00664727 0.00665476 0.00666225 0.00666974 0.00667723 0.00668472 0.00669221 0.0066997 0.00670719 0.00671468 0.00672217 0.00672966 0.00673715 0.00674465 0.00675214 0.00675963 0.00676712 0.00677461 0.0067821 0.00678959 0.00679708 0.00680457 0.00681206 0.00681955 0.00682704 0.00683453 0.00684202 0.00684951 0.006857 0.00686449 0.00687198 0.00687948 0.00688697 0.00689446 0.00690195 0.00690944 0.00691693 0.00692442 0.00693191 0.0069394 0.00694689 0.00695438 0.00696187 0.00696936 0.00697685 0.00698434 0.00699183 0.00699932 0.00700682 0.00701431 0.0070218 0.00702929 0.00703678 0.00704427 0.00705176 0.00705925 0.00706674 0.00707423 0.00708172 0.00708921 0.0070967 0.00710419 0.00711168 0.00711917 0.00712666 0.00713416 0.00714165 0.00714914 0.00715663 0.00716412 0.00717161 0.0071791 0.00718659 0.00719408 0.00720157 0.00720906 0.00721655 0.00722404 0.00723153 0.00723902 0.00724651 0.007254 0.00726149 0.00726899 0.00727648 0.00728397 0.00729146 0.00729895 0.00730644 0.00731393 0.00732142 +-0.00163586 -0.00153541 -0.00133285 -0.000832371 4.60911E-05 0.00116549 0.00238905 0.00362203 0.0047712 0.00569732 0.00622351 0.00638794 0.00642376 0.00643556 0.00644369 0.00645128 0.00645879 0.00646629 0.00647379 0.00648129 0.00648879 0.00649628 0.00650378 0.00651128 0.00651878 0.00652628 0.00653377 0.00654127 0.00654877 0.00655627 0.00656377 0.00657126 0.00657876 0.00658626 0.00659376 0.00660126 0.00660875 0.00661625 0.00662375 0.00663125 0.00663875 0.00664625 0.00665374 0.00666124 0.00666874 0.00667624 0.00668374 0.00669123 0.00669873 0.00670623 0.00671373 0.00672123 0.00672872 0.00673622 0.00674372 0.00675122 0.00675872 0.00676622 0.00677371 0.00678121 0.00678871 0.00679621 0.00680371 0.0068112 0.0068187 0.0068262 0.0068337 0.0068412 0.0068487 0.00685619 0.00686369 0.00687119 0.00687869 0.00688619 0.00689368 0.00690118 0.00690868 0.00691618 0.00692368 0.00693117 0.00693867 0.00694617 0.00695367 0.00696117 0.00696867 0.00697616 0.00698366 0.00699116 0.00699866 0.00700616 0.00701365 0.00702115 0.00702865 0.00703615 0.00704365 0.00705115 0.00705864 0.00706614 0.00707364 0.00708114 0.00708864 0.00709613 0.00710363 0.00711113 0.00711863 0.00712613 0.00713362 0.00714112 0.00714862 0.00715612 0.00716362 0.00717112 0.00717861 0.00718611 0.00719361 0.00720111 0.00720861 0.0072161 0.0072236 0.0072311 0.0072386 0.0072461 0.0072536 0.00726109 0.00726859 0.00727609 0.00728359 0.00729109 0.00729858 0.00730608 0.00731358 0.00732108 0.00732858 +-0.00163773 -0.00153712 -0.00133415 -0.000832945 4.61699E-05 0.00116603 0.00238998 0.00362343 0.00477334 0.00570075 0.00622862 0.00639394 0.00642997 0.00644181 0.00644995 0.00645755 0.00646507 0.00647257 0.00648008 0.00648759 0.00649509 0.0065026 0.0065101 0.00651761 0.00652511 0.00653262 0.00654013 0.00654763 0.00655514 0.00656264 0.00657015 0.00657765 0.00658516 0.00659266 0.00660017 0.00660768 0.00661518 0.00662269 0.00663019 0.0066377 0.0066452 0.00665271 0.00666022 0.00666772 0.00667523 0.00668273 0.00669024 0.00669774 0.00670525 0.00671276 0.00672026 0.00672777 0.00673527 0.00674278 0.00675028 0.00675779 0.0067653 0.0067728 0.00678031 0.00678781 0.00679532 0.00680282 0.00681033 0.00681784 0.00682534 0.00683285 0.00684035 0.00684786 0.00685536 0.00686287 0.00687038 0.00687788 0.00688539 0.00689289 0.0069004 0.0069079 0.00691541 0.00692292 0.00693042 0.00693793 0.00694543 0.00695294 0.00696044 0.00696795 0.00697546 0.00698296 0.00699047 0.00699797 0.00700548 0.00701298 0.00702049 0.007028 0.0070355 0.00704301 0.00705051 0.00705802 0.00706552 0.00707303 0.00708054 0.00708804 0.00709555 0.00710305 0.00711056 0.00711806 0.00712557 0.00713308 0.00714058 0.00714809 0.00715559 0.0071631 0.0071706 0.00717811 0.00718562 0.00719312 0.00720063 0.00720813 0.00721564 0.00722314 0.00723065 0.00723816 0.00724566 0.00725317 0.00726067 0.00726818 0.00727568 0.00728319 0.0072907 0.0072982 0.00730571 0.00731321 0.00732072 0.00732822 0.00733573 +-0.0016396 -0.00153883 -0.00133546 -0.000833518 4.62487E-05 0.00116656 0.00239091 0.00362484 0.00477547 0.00570416 0.00623373 0.00639994 0.00643618 0.00644805 0.00645621 0.00646381 0.00647134 0.00647885 0.00648637 0.00649388 0.00650139 0.00650891 0.00651642 0.00652393 0.00653145 0.00653896 0.00654647 0.00655399 0.0065615 0.00656901 0.00657653 0.00658404 0.00659155 0.00659906 0.00660658 0.00661409 0.0066216 0.00662912 0.00663663 0.00664414 0.00665166 0.00665917 0.00666668 0.0066742 0.00668171 0.00668922 0.00669674 0.00670425 0.00671176 0.00671928 0.00672679 0.0067343 0.00674182 0.00674933 0.00675684 0.00676436 0.00677187 0.00677938 0.0067869 0.00679441 0.00680192 0.00680944 0.00681695 0.00682446 0.00683198 0.00683949 0.006847 0.00685452 0.00686203 0.00686954 0.00687706 0.00688457 0.00689208 0.0068996 0.00690711 0.00691462 0.00692214 0.00692965 0.00693716 0.00694468 0.00695219 0.0069597 0.00696722 0.00697473 0.00698224 0.00698976 0.00699727 0.00700478 0.0070123 0.00701981 0.00702732 0.00703484 0.00704235 0.00704986 0.00705738 0.00706489 0.0070724 0.00707992 0.00708743 0.00709494 0.00710245 0.00710997 0.00711748 0.00712499 0.00713251 0.00714002 0.00714753 0.00715505 0.00716256 0.00717007 0.00717759 0.0071851 0.00719261 0.00720013 0.00720764 0.00721515 0.00722267 0.00723018 0.00723769 0.00724521 0.00725272 0.00726023 0.00726775 0.00727526 0.00728277 0.00729029 0.0072978 0.00730531 0.00731283 0.00732034 0.00732785 0.00733537 0.00734288 +-0.00164147 -0.00154053 -0.00133676 -0.000834091 4.63275E-05 0.0011671 0.00239184 0.00362624 0.0047776 0.00570757 0.00623882 0.00640594 0.00644238 0.00645429 0.00646246 0.00647007 0.00647761 0.00648513 0.00649265 0.00650017 0.00650769 0.00651521 0.00652274 0.00653026 0.00653778 0.0065453 0.00655282 0.00656034 0.00656786 0.00657538 0.0065829 0.00659042 0.00659794 0.00660546 0.00661298 0.0066205 0.00662802 0.00663555 0.00664307 0.00665059 0.00665811 0.00666563 0.00667315 0.00668067 0.00668819 0.00669571 0.00670323 0.00671075 0.00671828 0.0067258 0.00673332 0.00674084 0.00674836 0.00675588 0.0067634 0.00677092 0.00677844 0.00678596 0.00679348 0.006801 0.00680853 0.00681605 0.00682357 0.00683109 0.00683861 0.00684613 0.00685365 0.00686117 0.00686869 0.00687621 0.00688373 0.00689125 0.00689878 0.0069063 0.00691382 0.00692134 0.00692886 0.00693638 0.0069439 0.00695142 0.00695894 0.00696646 0.00697398 0.0069815 0.00698903 0.00699655 0.00700407 0.00701159 0.00701911 0.00702663 0.00703415 0.00704167 0.00704919 0.00705671 0.00706423 0.00707175 0.00707928 0.0070868 0.00709432 0.00710184 0.00710936 0.00711688 0.0071244 0.00713192 0.00713944 0.00714696 0.00715448 0.00716201 0.00716953 0.00717705 0.00718457 0.00719209 0.00719961 0.00720713 0.00721465 0.00722217 0.00722969 0.00723721 0.00724473 0.00725226 0.00725978 0.0072673 0.00727482 0.00728234 0.00728986 0.00729738 0.0073049 0.00731242 0.00731994 0.00732746 0.00733498 0.00734251 0.00735003 +-0.00164334 -0.00154224 -0.00133806 -0.000834662 4.64064E-05 0.00116763 0.00239277 0.00362763 0.00477973 0.00571098 0.00624391 0.00641194 0.00644858 0.00646053 0.00646871 0.00647633 0.00648387 0.0064914 0.00649893 0.00650646 0.00651399 0.00652152 0.00652905 0.00653658 0.0065441 0.00655163 0.00655916 0.00656669 0.00657421 0.00658174 0.00658927 0.0065968 0.00660433 0.00661186 0.00661938 0.00662691 0.00663444 0.00664197 0.0066495 0.00665703 0.00666456 0.00667208 0.00667961 0.00668714 0.00669467 0.0067022 0.00670973 0.00671725 0.00672478 0.00673231 0.00673984 0.00674737 0.0067549 0.00676242 0.00676995 0.00677748 0.00678501 0.00679254 0.00680007 0.00680759 0.00681512 0.00682265 0.00683018 0.00683771 0.00684524 0.00685277 0.00686029 0.00686782 0.00687535 0.00688288 0.00689041 0.00689794 0.00690546 0.00691299 0.00692052 0.00692805 0.00693558 0.00694311 0.00695063 0.00695816 0.00696569 0.00697322 0.00698075 0.00698828 0.00699581 0.00700333 0.00701086 0.00701839 0.00702592 0.00703345 0.00704098 0.0070485 0.00705603 0.00706356 0.00707109 0.00707862 0.00708615 0.00709367 0.0071012 0.00710873 0.00711626 0.00712379 0.00713132 0.00713884 0.00714637 0.0071539 0.00716143 0.00716896 0.00717649 0.00718402 0.00719154 0.00719907 0.0072066 0.00721413 0.00722166 0.00722919 0.00723671 0.00724424 0.00725177 0.0072593 0.00726683 0.00727436 0.00728188 0.00728941 0.00729694 0.00730447 0.007312 0.00731953 0.00732706 0.00733458 0.00734211 0.00734964 0.00735717 +-0.00164521 -0.00154394 -0.00133936 -0.000835233 4.64853E-05 0.00116816 0.0023937 0.00362903 0.00478185 0.00571437 0.00624899 0.00641792 0.00645478 0.00646676 0.00647495 0.00648258 0.00649014 0.00649767 0.00650521 0.00651275 0.00652028 0.00652782 0.00653535 0.00654289 0.00655043 0.00655796 0.0065655 0.00657303 0.00658057 0.0065881 0.00659564 0.00660318 0.00661071 0.00661825 0.00662578 0.00663332 0.00664086 0.00664839 0.00665593 0.00666346 0.006671 0.00667853 0.00668607 0.00669361 0.00670114 0.00670868 0.00671621 0.00672375 0.00673129 0.00673882 0.00674636 0.00675389 0.00676143 0.00676897 0.0067765 0.00678404 0.00679157 0.00679911 0.00680665 0.00681418 0.00682172 0.00682925 0.00683679 0.00684433 0.00685186 0.0068594 0.00686693 0.00687447 0.00688201 0.00688954 0.00689708 0.00690461 0.00691215 0.00691969 0.00692722 0.00693476 0.00694229 0.00694983 0.00695737 0.0069649 0.00697244 0.00697997 0.00698751 0.00699505 0.00700258 0.00701012 0.00701765 0.00702519 0.00703273 0.00704026 0.0070478 0.00705533 0.00706287 0.0070704 0.00707794 0.00708548 0.00709301 0.00710055 0.00710808 0.00711562 0.00712316 0.00713069 0.00713823 0.00714576 0.0071533 0.00716084 0.00716837 0.00717591 0.00718344 0.00719098 0.00719852 0.00720605 0.00721359 0.00722112 0.00722866 0.0072362 0.00724373 0.00725127 0.0072588 0.00726634 0.00727388 0.00728141 0.00728895 0.00729648 0.00730402 0.00731156 0.00731909 0.00732663 0.00733416 0.0073417 0.00734924 0.00735677 0.00736431 +-0.00164708 -0.00154564 -0.00134066 -0.000835802 4.65642E-05 0.0011687 0.00239462 0.00363042 0.00478397 0.00571776 0.00625406 0.00642391 0.00646097 0.00647299 0.0064812 0.00648883 0.0064964 0.00650394 0.00651149 0.00651903 0.00652657 0.00653412 0.00654166 0.0065492 0.00655675 0.00656429 0.00657183 0.00657938 0.00658692 0.00659446 0.006602 0.00660955 0.00661709 0.00662463 0.00663218 0.00663972 0.00664727 0.00665481 0.00666235 0.0066699 0.00667744 0.00668498 0.00669253 0.00670007 0.00670761 0.00671516 0.0067227 0.00673024 0.00673779 0.00674533 0.00675287 0.00676042 0.00676796 0.0067755 0.00678305 0.00679059 0.00679814 0.00680568 0.00681322 0.00682077 0.00682831 0.00683585 0.0068434 0.00685094 0.00685848 0.00686603 0.00687357 0.00688111 0.00688866 0.0068962 0.00690374 0.00691129 0.00691883 0.00692638 0.00693392 0.00694146 0.00694901 0.00695655 0.00696409 0.00697164 0.00697918 0.00698672 0.00699427 0.00700181 0.00700935 0.0070169 0.00702444 0.00703198 0.00703953 0.00704707 0.00705461 0.00706216 0.0070697 0.00707725 0.00708479 0.00709233 0.00709988 0.00710742 0.00711496 0.00712251 0.00713005 0.00713759 0.00714514 0.00715268 0.00716022 0.00716777 0.00717531 0.00718285 0.0071904 0.00719794 0.00720549 0.00721303 0.00722057 0.00722812 0.00723566 0.0072432 0.00725075 0.00725829 0.00726583 0.00727338 0.00728092 0.00728846 0.00729601 0.00730355 0.00731109 0.00731864 0.00732618 0.00733372 0.00734127 0.00734881 0.00735636 0.0073639 0.00737144 +-0.00164894 -0.00154735 -0.00134196 -0.000836371 4.66431E-05 0.00116923 0.00239554 0.00363181 0.00478608 0.00572114 0.00625913 0.00642989 0.00646716 0.00647922 0.00648744 0.00649508 0.00650265 0.00651021 0.00651776 0.00652531 0.00653286 0.00654041 0.00654796 0.00655551 0.00656306 0.00657061 0.00657817 0.00658572 0.00659326 0.00660081 0.00660837 0.00661592 0.00662347 0.00663102 0.00663857 0.00664612 0.00665367 0.00666122 0.00666877 0.00667633 0.00668388 0.00669143 0.00669898 0.00670653 0.00671408 0.00672163 0.00672918 0.00673673 0.00674428 0.00675184 0.00675939 0.00676694 0.00677449 0.00678204 0.00678959 0.00679714 0.00680469 0.00681224 0.0068198 0.00682735 0.0068349 0.00684245 0.00685 0.00685755 0.0068651 0.00687265 0.0068802 0.00688775 0.00689531 0.00690286 0.00691041 0.00691796 0.00692551 0.00693306 0.00694061 0.00694816 0.00695571 0.00696327 0.00697082 0.00697837 0.00698592 0.00699347 0.00700102 0.00700857 0.00701612 0.00702367 0.00703123 0.00703878 0.00704633 0.00705388 0.00706143 0.00706898 0.00707653 0.00708408 0.00709163 0.00709918 0.00710674 0.00711429 0.00712184 0.00712939 0.00713694 0.00714449 0.00715204 0.00715959 0.00716714 0.0071747 0.00718225 0.0071898 0.00719735 0.0072049 0.00721245 0.00722 0.00722755 0.0072351 0.00724265 0.00725021 0.00725776 0.00726531 0.00727286 0.00728041 0.00728796 0.00729551 0.00730306 0.00731061 0.00731817 0.00732572 0.00733327 0.00734082 0.00734837 0.00735592 0.00736347 0.00737102 0.00737857 +-0.00165081 -0.00154905 -0.00134326 -0.000836939 4.67221E-05 0.00116976 0.00239647 0.0036332 0.00478819 0.00572451 0.00626418 0.00643586 0.00647334 0.00648545 0.00649367 0.00650133 0.0065089 0.00651647 0.00652402 0.00653158 0.00653914 0.0065467 0.00655426 0.00656182 0.00656938 0.00657693 0.00658449 0.00659205 0.00659961 0.00660717 0.00661472 0.00662228 0.00662984 0.0066374 0.00664496 0.00665252 0.00666008 0.00666763 0.00667519 0.00668275 0.00669031 0.00669787 0.00670543 0.00671299 0.00672054 0.0067281 0.00673566 0.00674322 0.00675078 0.00675834 0.0067659 0.00677345 0.00678101 0.00678857 0.00679613 0.00680369 0.00681125 0.00681881 0.00682636 0.00683392 0.00684148 0.00684904 0.0068566 0.00686416 0.00687172 0.00687927 0.00688683 0.00689439 0.00690195 0.00690951 0.00691707 0.00692463 0.00693219 0.00693974 0.0069473 0.00695486 0.00696242 0.00696998 0.00697754 0.0069851 0.00699265 0.00700021 0.00700777 0.00701533 0.00702289 0.00703045 0.00703801 0.00704556 0.00705312 0.00706068 0.00706824 0.0070758 0.00708336 0.00709092 0.00709847 0.00710603 0.00711359 0.00712115 0.00712871 0.00713627 0.00714383 0.00715138 0.00715894 0.0071665 0.00717406 0.00718162 0.00718918 0.00719674 0.0072043 0.00721185 0.00721941 0.00722697 0.00723453 0.00724209 0.00724965 0.00725721 0.00726476 0.00727232 0.00727988 0.00728744 0.007295 0.00730256 0.00731012 0.00731767 0.00732523 0.00733279 0.00734035 0.00734791 0.00735547 0.00736303 0.00737058 0.00737814 0.0073857 +-0.00165268 -0.00155075 -0.00134455 -0.000837506 4.6801E-05 0.00117029 0.00239739 0.00363458 0.0047903 0.00572788 0.00626923 0.00644183 0.00647952 0.00649167 0.00649991 0.00650757 0.00651515 0.00652272 0.00653029 0.00653786 0.00654542 0.00655299 0.00656055 0.00656812 0.00657569 0.00658325 0.00659082 0.00659838 0.00660595 0.00661351 0.00662108 0.00662864 0.00663621 0.00664378 0.00665134 0.00665891 0.00666648 0.00667404 0.00668161 0.00668917 0.00669674 0.00670431 0.00671187 0.00671944 0.006727 0.00673457 0.00674214 0.0067497 0.00675727 0.00676484 0.0067724 0.00677997 0.00678753 0.0067951 0.00680267 0.00681023 0.0068178 0.00682536 0.00683293 0.0068405 0.00684806 0.00685563 0.0068632 0.00687076 0.00687833 0.00688589 0.00689346 0.00690103 0.00690859 0.00691616 0.00692372 0.00693129 0.00693886 0.00694642 0.00695399 0.00696156 0.00696912 0.00697669 0.00698425 0.00699182 0.00699939 0.00700695 0.00701452 0.00702208 0.00702965 0.00703722 0.00704478 0.00705235 0.00705992 0.00706748 0.00707505 0.00708261 0.00709018 0.00709775 0.00710531 0.00711288 0.00712044 0.00712801 0.00713558 0.00714314 0.00715071 0.00715828 0.00716584 0.00717341 0.00718097 0.00718854 0.00719611 0.00720367 0.00721124 0.0072188 0.00722637 0.00723394 0.0072415 0.00724907 0.00725663 0.0072642 0.00727177 0.00727933 0.0072869 0.00729447 0.00730203 0.0073096 0.00731716 0.00732473 0.0073323 0.00733986 0.00734743 0.00735499 0.00736256 0.00737013 0.00737769 0.00738526 0.00739283 +-0.00165454 -0.00155245 -0.00134585 -0.000838072 4.688E-05 0.00117082 0.00239831 0.00363596 0.0047924 0.00573123 0.00627427 0.0064478 0.0064857 0.00649788 0.00650614 0.00651381 0.0065214 0.00652897 0.00653655 0.00654412 0.0065517 0.00655927 0.00656685 0.00657442 0.00658199 0.00658957 0.00659714 0.00660471 0.00661228 0.00661986 0.00662743 0.006635 0.00664258 0.00665015 0.00665772 0.0066653 0.00667287 0.00668045 0.00668802 0.00669559 0.00670317 0.00671074 0.00671831 0.00672589 0.00673346 0.00674104 0.00674861 0.00675618 0.00676376 0.00677133 0.0067789 0.00678648 0.00679405 0.00680162 0.0068092 0.00681677 0.00682435 0.00683192 0.00683949 0.00684707 0.00685464 0.00686221 0.00686979 0.00687736 0.00688494 0.00689251 0.00690008 0.00690766 0.00691523 0.0069228 0.00693038 0.00693795 0.00694552 0.0069531 0.00696067 0.00696825 0.00697582 0.00698339 0.00699097 0.00699854 0.00700611 0.00701369 0.00702126 0.00702884 0.00703641 0.00704398 0.00705156 0.00705913 0.0070667 0.00707428 0.00708185 0.00708942 0.007097 0.00710457 0.00711215 0.00711972 0.00712729 0.00713487 0.00714244 0.00715001 0.00715759 0.00716516 0.00717274 0.00718031 0.00718788 0.00719546 0.00720303 0.0072106 0.00721818 0.00722575 0.00723332 0.0072409 0.00724847 0.00725605 0.00726362 0.00727119 0.00727877 0.00728634 0.00729391 0.00730149 0.00730906 0.00731664 0.00732421 0.00733178 0.00733936 0.00734693 0.0073545 0.00736208 0.00736965 0.00737722 0.0073848 0.00739237 0.00739995 +-0.00165641 -0.00155415 -0.00134714 -0.000838638 4.6959E-05 0.00117135 0.00239922 0.00363734 0.00479449 0.00573458 0.00627931 0.00645376 0.00649187 0.0065041 0.00651236 0.00652004 0.00652764 0.00653522 0.0065428 0.00655039 0.00655797 0.00656555 0.00657313 0.00658072 0.0065883 0.00659588 0.00660346 0.00661104 0.00661862 0.0066262 0.00663378 0.00664136 0.00664894 0.00665652 0.0066641 0.00667168 0.00667927 0.00668685 0.00669443 0.00670201 0.00670959 0.00671717 0.00672475 0.00673233 0.00673992 0.0067475 0.00675508 0.00676266 0.00677024 0.00677782 0.0067854 0.00679298 0.00680057 0.00680815 0.00681573 0.00682331 0.00683089 0.00683847 0.00684605 0.00685363 0.00686121 0.0068688 0.00687638 0.00688396 0.00689154 0.00689912 0.0069067 0.00691428 0.00692186 0.00692945 0.00693703 0.00694461 0.00695219 0.00695977 0.00696735 0.00697493 0.00698251 0.0069901 0.00699768 0.00700526 0.00701284 0.00702042 0.007028 0.00703558 0.00704316 0.00705075 0.00705833 0.00706591 0.00707349 0.00708107 0.00708865 0.00709623 0.00710381 0.0071114 0.00711898 0.00712656 0.00713414 0.00714172 0.0071493 0.00715688 0.00716446 0.00717204 0.00717963 0.00718721 0.00719479 0.00720237 0.00720995 0.00721753 0.00722511 0.00723269 0.00724028 0.00724786 0.00725544 0.00726302 0.0072706 0.00727818 0.00728576 0.00729334 0.00730093 0.00730851 0.00731609 0.00732367 0.00733125 0.00733883 0.00734641 0.00735399 0.00736158 0.00736916 0.00737674 0.00738432 0.0073919 0.00739948 0.00740706 +-0.00165827 -0.00155585 -0.00134844 -0.000839202 4.7038E-05 0.00117188 0.00240014 0.00363872 0.00479658 0.00573793 0.00628433 0.00645971 0.00649804 0.00651031 0.00651859 0.00652627 0.00653388 0.00654147 0.00654906 0.00655665 0.00656424 0.00657183 0.00657942 0.00658701 0.0065946 0.00660219 0.00660977 0.00661736 0.00662495 0.00663253 0.00664012 0.00664771 0.0066553 0.00666289 0.00667048 0.00667807 0.00668566 0.00669324 0.00670083 0.00670842 0.00671601 0.0067236 0.00673119 0.00673878 0.00674637 0.00675395 0.00676154 0.00676913 0.00677672 0.00678431 0.0067919 0.00679949 0.00680708 0.00681466 0.00682225 0.00682984 0.00683743 0.00684502 0.00685261 0.0068602 0.00686779 0.00687537 0.00688296 0.00689055 0.00689814 0.00690573 0.00691332 0.00692091 0.0069285 0.00693608 0.00694367 0.00695126 0.00695885 0.00696644 0.00697403 0.00698162 0.00698921 0.00699679 0.00700438 0.00701197 0.00701956 0.00702715 0.00703474 0.00704233 0.00704992 0.0070575 0.00706509 0.00707268 0.00708027 0.00708786 0.00709545 0.00710304 0.00711063 0.00711821 0.0071258 0.00713339 0.00714098 0.00714857 0.00715616 0.00716375 0.00717134 0.00717892 0.00718651 0.0071941 0.00720169 0.00720928 0.00721687 0.00722446 0.00723205 0.00723963 0.00724722 0.00725481 0.0072624 0.00726999 0.00727758 0.00728517 0.00729276 0.00730034 0.00730793 0.00731552 0.00732311 0.0073307 0.00733829 0.00734588 0.00735347 0.00736105 0.00736864 0.00737623 0.00738382 0.00739141 0.007399 0.00740659 0.00741418 +-0.00166013 -0.00155755 -0.00134973 -0.000839766 4.71171E-05 0.00117241 0.00240106 0.0036401 0.00479867 0.00574126 0.00628935 0.00646566 0.00650421 0.00651652 0.00652481 0.0065325 0.00654011 0.00654771 0.00655531 0.00656291 0.00657051 0.0065781 0.0065857 0.0065933 0.00660089 0.00660849 0.00661609 0.00662368 0.00663127 0.00663887 0.00664647 0.00665406 0.00666166 0.00666925 0.00667685 0.00668445 0.00669204 0.00669964 0.00670724 0.00671483 0.00672243 0.00673002 0.00673762 0.00674522 0.00675281 0.00676041 0.00676801 0.0067756 0.0067832 0.00679079 0.00679839 0.00680599 0.00681358 0.00682118 0.00682878 0.00683637 0.00684397 0.00685156 0.00685916 0.00686676 0.00687435 0.00688195 0.00688955 0.00689714 0.00690474 0.00691233 0.00691993 0.00692753 0.00693512 0.00694272 0.00695032 0.00695791 0.00696551 0.0069731 0.0069807 0.0069883 0.00699589 0.00700349 0.00701109 0.00701868 0.00702628 0.00703388 0.00704147 0.00704907 0.00705666 0.00706426 0.00707186 0.00707945 0.00708705 0.00709465 0.00710224 0.00710984 0.00711743 0.00712503 0.00713263 0.00714022 0.00714782 0.00715542 0.00716301 0.00717061 0.0071782 0.0071858 0.0071934 0.00720099 0.00720859 0.00721619 0.00722378 0.00723138 0.00723897 0.00724657 0.00725417 0.00726176 0.00726936 0.00727696 0.00728455 0.00729215 0.00729974 0.00730734 0.00731494 0.00732253 0.00733013 0.00733773 0.00734532 0.00735292 0.00736052 0.00736811 0.00737571 0.0073833 0.0073909 0.0073985 0.00740609 0.00741369 0.00742129 +-0.001662 -0.00155924 -0.00135102 -0.000840329 4.71961E-05 0.00117293 0.00240197 0.00364147 0.00480075 0.00574459 0.00629436 0.00647161 0.00651038 0.00652272 0.00653102 0.00653873 0.00654635 0.00655395 0.00656156 0.00656916 0.00657677 0.00658438 0.00659198 0.00659958 0.00660719 0.00661479 0.00662239 0.00663 0.0066376 0.0066452 0.0066528 0.00666041 0.00666801 0.00667561 0.00668322 0.00669082 0.00669843 0.00670603 0.00671363 0.00672124 0.00672884 0.00673645 0.00674405 0.00675165 0.00675926 0.00676686 0.00677446 0.00678207 0.00678967 0.00679728 0.00680488 0.00681248 0.00682009 0.00682769 0.00683529 0.0068429 0.0068505 0.00685811 0.00686571 0.00687331 0.00688092 0.00688852 0.00689613 0.00690373 0.00691133 0.00691894 0.00692654 0.00693414 0.00694175 0.00694935 0.00695696 0.00696456 0.00697216 0.00697977 0.00698737 0.00699497 0.00700258 0.00701018 0.00701779 0.00702539 0.00703299 0.0070406 0.0070482 0.0070558 0.00706341 0.00707101 0.00707862 0.00708622 0.00709382 0.00710143 0.00710903 0.00711664 0.00712424 0.00713184 0.00713945 0.00714705 0.00715465 0.00716226 0.00716986 0.00717747 0.00718507 0.00719267 0.00720028 0.00720788 0.00721548 0.00722309 0.00723069 0.0072383 0.0072459 0.0072535 0.00726111 0.00726871 0.00727632 0.00728392 0.00729152 0.00729913 0.00730673 0.00731433 0.00732194 0.00732954 0.00733715 0.00734475 0.00735235 0.00735996 0.00736756 0.00737516 0.00738277 0.00739037 0.00739798 0.00740558 0.00741318 0.00742079 0.00742839 +-0.00166386 -0.00156094 -0.00135231 -0.000840891 4.72752E-05 0.00117346 0.00240288 0.00364284 0.00480283 0.00574791 0.00629936 0.00647755 0.00651654 0.00652892 0.00653724 0.00654495 0.00655258 0.00656019 0.0065678 0.00657541 0.00658303 0.00659064 0.00659826 0.00660587 0.00661348 0.00662109 0.0066287 0.00663631 0.00664392 0.00665153 0.00665914 0.00666675 0.00667436 0.00668197 0.00668958 0.0066972 0.00670481 0.00671242 0.00672003 0.00672764 0.00673525 0.00674286 0.00675047 0.00675809 0.0067657 0.00677331 0.00678092 0.00678853 0.00679614 0.00680375 0.00681137 0.00681898 0.00682659 0.0068342 0.00684181 0.00684942 0.00685703 0.00686464 0.00687226 0.00687987 0.00688748 0.00689509 0.0069027 0.00691031 0.00691792 0.00692553 0.00693315 0.00694076 0.00694837 0.00695598 0.00696359 0.0069712 0.00697881 0.00698643 0.00699404 0.00700165 0.00700926 0.00701687 0.00702448 0.00703209 0.0070397 0.00704732 0.00705493 0.00706254 0.00707015 0.00707776 0.00708537 0.00709298 0.0071006 0.00710821 0.00711582 0.00712343 0.00713104 0.00713865 0.00714626 0.00715387 0.00716149 0.0071691 0.00717671 0.00718432 0.00719193 0.00719954 0.00720715 0.00721476 0.00722238 0.00722999 0.0072376 0.00724521 0.00725282 0.00726043 0.00726804 0.00727566 0.00728327 0.00729088 0.00729849 0.0073061 0.00731371 0.00732132 0.00732893 0.00733655 0.00734416 0.00735177 0.00735938 0.00736699 0.0073746 0.00738221 0.00738983 0.00739744 0.00740505 0.00741266 0.00742027 0.00742788 0.00743549 +-0.00166572 -0.00156264 -0.0013536 -0.000841452 4.73543E-05 0.00117398 0.00240379 0.00364421 0.00480491 0.00575123 0.00630435 0.00648349 0.00652269 0.00653512 0.00654345 0.00655117 0.0065588 0.00656643 0.00657404 0.00658166 0.00658928 0.00659691 0.00660453 0.00661215 0.00661977 0.00662738 0.006635 0.00664262 0.00665023 0.00665785 0.00666547 0.00667309 0.00668071 0.00668833 0.00669595 0.00670356 0.00671118 0.0067188 0.00672642 0.00673404 0.00674166 0.00674928 0.0067569 0.00676452 0.00677213 0.00677975 0.00678737 0.00679499 0.00680261 0.00681023 0.00681785 0.00682547 0.00683308 0.0068407 0.00684832 0.00685594 0.00686356 0.00687118 0.0068788 0.00688642 0.00689404 0.00690165 0.00690927 0.00691689 0.00692451 0.00693213 0.00693975 0.00694737 0.00695499 0.00696261 0.00697022 0.00697784 0.00698546 0.00699308 0.0070007 0.00700832 0.00701594 0.00702356 0.00703117 0.00703879 0.00704641 0.00705403 0.00706165 0.00706927 0.00707689 0.00708451 0.00709213 0.00709974 0.00710736 0.00711498 0.0071226 0.00713022 0.00713784 0.00714546 0.00715308 0.00716069 0.00716831 0.00717593 0.00718355 0.00719117 0.00719879 0.00720641 0.00721403 0.00722165 0.00722926 0.00723688 0.0072445 0.00725212 0.00725974 0.00726736 0.00727498 0.0072826 0.00729022 0.00729783 0.00730545 0.00731307 0.00732069 0.00732831 0.00733593 0.00734355 0.00735117 0.00735878 0.0073664 0.00737402 0.00738164 0.00738926 0.00739688 0.0074045 0.00741212 0.00741974 0.00742735 0.00743497 0.00744259 +-0.00166758 -0.00156433 -0.00135488 -0.000842012 4.74335E-05 0.00117451 0.0024047 0.00364558 0.00480698 0.00575453 0.00630934 0.00648942 0.00652885 0.00654132 0.00654966 0.00655739 0.00656503 0.00657266 0.00658028 0.00658791 0.00659554 0.00660316 0.0066108 0.00661842 0.00662605 0.00663368 0.0066413 0.00664893 0.00665655 0.00666417 0.0066718 0.00667943 0.00668705 0.00669468 0.0067023 0.00670993 0.00671756 0.00672518 0.00673281 0.00674044 0.00674806 0.00675569 0.00676332 0.00677094 0.00677857 0.00678619 0.00679382 0.00680145 0.00680907 0.0068167 0.00682433 0.00683195 0.00683958 0.00684721 0.00685483 0.00686246 0.00687008 0.00687771 0.00688534 0.00689296 0.00690059 0.00690822 0.00691584 0.00692347 0.00693109 0.00693872 0.00694635 0.00695397 0.0069616 0.00696923 0.00697685 0.00698448 0.00699211 0.00699973 0.00700736 0.00701498 0.00702261 0.00703024 0.00703786 0.00704549 0.00705312 0.00706074 0.00706837 0.007076 0.00708362 0.00709125 0.00709887 0.0071065 0.00711413 0.00712175 0.00712938 0.00713701 0.00714463 0.00715226 0.00715989 0.00716751 0.00717514 0.00718276 0.00719039 0.00719802 0.00720564 0.00721327 0.0072209 0.00722852 0.00723615 0.00724378 0.0072514 0.00725903 0.00726665 0.00727428 0.00728191 0.00728953 0.00729716 0.00730479 0.00731241 0.00732004 0.00732767 0.00733529 0.00734292 0.00735054 0.00735817 0.0073658 0.00737342 0.00738105 0.00738868 0.0073963 0.00740393 0.00741155 0.00741918 0.00742681 0.00743443 0.00744206 0.00744969 +-0.00166944 -0.00156603 -0.00135617 -0.000842571 4.75126E-05 0.00117503 0.00240561 0.00364694 0.00480904 0.00575783 0.00631431 0.00649535 0.006535 0.00654751 0.00655586 0.0065636 0.00657125 0.00657888 0.00658652 0.00659415 0.00660179 0.00660942 0.00661706 0.0066247 0.00663233 0.00663996 0.0066476 0.00665523 0.00666286 0.00667049 0.00667812 0.00668576 0.00669339 0.00670103 0.00670866 0.00671629 0.00672393 0.00673156 0.0067392 0.00674683 0.00675446 0.0067621 0.00676973 0.00677736 0.006785 0.00679263 0.00680027 0.0068079 0.00681553 0.00682317 0.0068308 0.00683844 0.00684607 0.0068537 0.00686134 0.00686897 0.0068766 0.00688424 0.00689187 0.00689951 0.00690714 0.00691477 0.00692241 0.00693004 0.00693768 0.00694531 0.00695294 0.00696058 0.00696821 0.00697584 0.00698348 0.00699111 0.00699875 0.00700638 0.00701401 0.00702165 0.00702928 0.00703692 0.00704455 0.00705218 0.00705982 0.00706745 0.00707509 0.00708272 0.00709035 0.00709799 0.00710562 0.00711325 0.00712089 0.00712852 0.00713616 0.00714379 0.00715142 0.00715906 0.00716669 0.00717433 0.00718196 0.00718959 0.00719723 0.00720486 0.00721249 0.00722013 0.00722776 0.0072354 0.00724303 0.00725066 0.0072583 0.00726593 0.00727357 0.0072812 0.00728883 0.00729647 0.0073041 0.00731173 0.00731937 0.007327 0.00733464 0.00734227 0.0073499 0.00735754 0.00736517 0.00737281 0.00738044 0.00738807 0.00739571 0.00740334 0.00741097 0.00741861 0.00742624 0.00743388 0.00744151 0.00744914 0.00745678 +-0.0016713 -0.00156772 -0.00135746 -0.00084313 4.75918E-05 0.00117556 0.00240652 0.0036483 0.0048111 0.00576112 0.00631928 0.00650127 0.00654114 0.0065537 0.00656206 0.00656981 0.00657746 0.00658511 0.00659275 0.00660039 0.00660803 0.00661567 0.00662332 0.00663097 0.00663861 0.00664625 0.00665389 0.00666153 0.00666916 0.00667681 0.00668445 0.00669209 0.00669973 0.00670737 0.00671501 0.00672265 0.00673029 0.00673794 0.00674558 0.00675322 0.00676086 0.0067685 0.00677614 0.00678378 0.00679143 0.00679907 0.00680671 0.00681435 0.00682199 0.00682963 0.00683727 0.00684492 0.00685256 0.0068602 0.00686784 0.00687548 0.00688312 0.00689076 0.0068984 0.00690605 0.00691369 0.00692133 0.00692897 0.00693661 0.00694425 0.00695189 0.00695954 0.00696718 0.00697482 0.00698246 0.0069901 0.00699774 0.00700538 0.00701303 0.00702067 0.00702831 0.00703595 0.00704359 0.00705123 0.00705887 0.00706651 0.00707416 0.0070818 0.00708944 0.00709708 0.00710472 0.00711236 0.00712 0.00712765 0.00713529 0.00714293 0.00715057 0.00715821 0.00716585 0.00717349 0.00718114 0.00718878 0.00719642 0.00720406 0.0072117 0.00721934 0.00722698 0.00723462 0.00724227 0.00724991 0.00725755 0.00726519 0.00727283 0.00728047 0.00728811 0.00729576 0.0073034 0.00731104 0.00731868 0.00732632 0.00733396 0.0073416 0.00734925 0.00735689 0.00736453 0.00737217 0.00737981 0.00738745 0.00739509 0.00740273 0.00741038 0.00741802 0.00742566 0.0074333 0.00744094 0.00744858 0.00745622 0.00746387 +-0.00167316 -0.00156942 -0.00135874 -0.000843687 4.7671E-05 0.00117608 0.00240742 0.00364966 0.00481316 0.00576441 0.00632424 0.00650719 0.00654729 0.00655988 0.00656826 0.00657601 0.00658368 0.00659133 0.00659898 0.00660663 0.00661428 0.00662193 0.00662957 0.00663723 0.00664488 0.00665253 0.00666018 0.00666783 0.00667547 0.00668312 0.00669077 0.00669841 0.00670606 0.00671371 0.00672136 0.00672901 0.00673666 0.00674431 0.00675196 0.00675961 0.00676725 0.0067749 0.00678255 0.0067902 0.00679785 0.0068055 0.00681315 0.0068208 0.00682845 0.00683609 0.00684374 0.00685139 0.00685904 0.00686669 0.00687434 0.00688199 0.00688964 0.00689728 0.00690493 0.00691258 0.00692023 0.00692788 0.00693553 0.00694318 0.00695083 0.00695848 0.00696612 0.00697377 0.00698142 0.00698907 0.00699672 0.00700437 0.00701202 0.00701967 0.00702732 0.00703496 0.00704261 0.00705026 0.00705791 0.00706556 0.00707321 0.00708086 0.00708851 0.00709616 0.0071038 0.00711145 0.0071191 0.00712675 0.0071344 0.00714205 0.0071497 0.00715735 0.007165 0.00717264 0.00718029 0.00718794 0.00719559 0.00720324 0.00721089 0.00721854 0.00722619 0.00723383 0.00724148 0.00724913 0.00725678 0.00726443 0.00727208 0.00727973 0.00728738 0.00729503 0.00730267 0.00731032 0.00731797 0.00732562 0.00733327 0.00734092 0.00734857 0.00735622 0.00736387 0.00737151 0.00737916 0.00738681 0.00739446 0.00740211 0.00740976 0.00741741 0.00742506 0.00743271 0.00744035 0.007448 0.00745565 0.0074633 0.00747095 +-0.00167502 -0.00157111 -0.00136002 -0.000844244 4.77502E-05 0.0011766 0.00240833 0.00365102 0.00481521 0.00576768 0.0063292 0.00651311 0.00655343 0.00656607 0.00657445 0.00658222 0.00658989 0.00659755 0.0066052 0.00661286 0.00662052 0.00662817 0.00663583 0.00664349 0.00665115 0.00665881 0.00666647 0.00667412 0.00668177 0.00668942 0.00669708 0.00670474 0.00671239 0.00672005 0.00672771 0.00673536 0.00674302 0.00675068 0.00675833 0.00676599 0.00677364 0.0067813 0.00678896 0.00679661 0.00680427 0.00681193 0.00681958 0.00682724 0.0068349 0.00684255 0.00685021 0.00685786 0.00686552 0.00687318 0.00688083 0.00688849 0.00689615 0.0069038 0.00691146 0.00691912 0.00692677 0.00693443 0.00694208 0.00694974 0.0069574 0.00696505 0.00697271 0.00698037 0.00698802 0.00699568 0.00700334 0.00701099 0.00701865 0.0070263 0.00703396 0.00704162 0.00704927 0.00705693 0.00706459 0.00707224 0.0070799 0.00708756 0.00709521 0.00710287 0.00711052 0.00711818 0.00712584 0.00713349 0.00714115 0.00714881 0.00715646 0.00716412 0.00717178 0.00717943 0.00718709 0.00719474 0.0072024 0.00721006 0.00721771 0.00722537 0.00723303 0.00724068 0.00724834 0.007256 0.00726365 0.00727131 0.00727896 0.00728662 0.00729428 0.00730193 0.00730959 0.00731725 0.0073249 0.00733256 0.00734022 0.00734787 0.00735553 0.00736318 0.00737084 0.0073785 0.00738615 0.00739381 0.00740147 0.00740912 0.00741678 0.00742444 0.00743209 0.00743975 0.0074474 0.00745506 0.00746272 0.00747037 0.00747803 +-0.00167688 -0.0015728 -0.00136131 -0.0008448 4.78294E-05 0.00117712 0.00240923 0.00365237 0.00481726 0.00577095 0.00633414 0.00651902 0.00655956 0.00657224 0.00658065 0.00658842 0.0065961 0.00660376 0.00661143 0.00661909 0.00662675 0.00663442 0.00664208 0.00664975 0.00665742 0.00666509 0.00667275 0.00668041 0.00668807 0.00669573 0.00670339 0.00671106 0.00671872 0.00672639 0.00673405 0.00674171 0.00674938 0.00675704 0.0067647 0.00677237 0.00678003 0.0067877 0.00679536 0.00680302 0.00681069 0.00681835 0.00682602 0.00683368 0.00684134 0.00684901 0.00685667 0.00686433 0.006872 0.00687966 0.00688733 0.00689499 0.00690265 0.00691032 0.00691798 0.00692565 0.00693331 0.00694097 0.00694864 0.0069563 0.00696396 0.00697163 0.00697929 0.00698696 0.00699462 0.00700228 0.00700995 0.00701761 0.00702528 0.00703294 0.0070406 0.00704827 0.00705593 0.00706359 0.00707126 0.00707892 0.00708659 0.00709425 0.00710191 0.00710958 0.00711724 0.00712491 0.00713257 0.00714023 0.0071479 0.00715556 0.00716322 0.00717089 0.00717855 0.00718622 0.00719388 0.00720154 0.00720921 0.00721687 0.00722454 0.0072322 0.00723986 0.00724753 0.00725519 0.00726286 0.00727052 0.00727818 0.00728585 0.00729351 0.00730117 0.00730884 0.0073165 0.00732417 0.00733183 0.00733949 0.00734716 0.00735482 0.00736249 0.00737015 0.00737781 0.00738548 0.00739314 0.0074008 0.00740847 0.00741613 0.0074238 0.00743146 0.00743912 0.00744679 0.00745445 0.00746212 0.00746978 0.00747744 0.00748511 +-0.00167873 -0.00157449 -0.00136259 -0.000845355 4.79086E-05 0.00117765 0.00241013 0.00365372 0.00481931 0.00577421 0.00633908 0.00652492 0.0065657 0.00657842 0.00658683 0.00659461 0.0066023 0.00660997 0.00661765 0.00662532 0.00663299 0.00664066 0.00664833 0.006656 0.00666367 0.00667136 0.00667903 0.0066867 0.00669436 0.00670203 0.0067097 0.00671737 0.00672505 0.00673272 0.00674039 0.00674806 0.00675573 0.0067634 0.00677107 0.00677874 0.00678642 0.00679409 0.00680176 0.00680943 0.0068171 0.00682477 0.00683244 0.00684012 0.00684779 0.00685546 0.00686313 0.0068708 0.00687847 0.00688614 0.00689381 0.00690149 0.00690916 0.00691683 0.0069245 0.00693217 0.00693984 0.00694751 0.00695519 0.00696286 0.00697053 0.0069782 0.00698587 0.00699354 0.00700121 0.00700889 0.00701656 0.00702423 0.0070319 0.00703957 0.00704724 0.00705491 0.00706258 0.00707026 0.00707793 0.0070856 0.00709327 0.00710094 0.00710861 0.00711628 0.00712396 0.00713163 0.0071393 0.00714697 0.00715464 0.00716231 0.00716998 0.00717765 0.00718533 0.007193 0.00720067 0.00720834 0.00721601 0.00722368 0.00723135 0.00723903 0.0072467 0.00725437 0.00726204 0.00726971 0.00727738 0.00728505 0.00729273 0.0073004 0.00730807 0.00731574 0.00732341 0.00733108 0.00733875 0.00734642 0.0073541 0.00736177 0.00736944 0.00737711 0.00738478 0.00739245 0.00740012 0.0074078 0.00741547 0.00742314 0.00743081 0.00743848 0.00744615 0.00745382 0.00746149 0.00746917 0.00747684 0.00748451 0.00749218 +-0.00168059 -0.00157618 -0.00136387 -0.00084591 4.79879E-05 0.00117817 0.00241103 0.00365507 0.00482135 0.00577747 0.00634401 0.00653082 0.00657183 0.00658459 0.00659302 0.00660081 0.0066085 0.00661618 0.00662386 0.00663154 0.00663922 0.0066469 0.00665458 0.00666226 0.00666994 0.00667763 0.00668531 0.00669298 0.00670065 0.00670833 0.00671601 0.00672369 0.00673137 0.00673905 0.00674672 0.0067544 0.00676208 0.00676976 0.00677744 0.00678512 0.0067928 0.00680048 0.00680815 0.00681583 0.00682351 0.00683119 0.00683887 0.00684655 0.00685423 0.00686191 0.00686959 0.00687726 0.00688494 0.00689262 0.0069003 0.00690798 0.00691566 0.00692334 0.00693102 0.00693869 0.00694637 0.00695405 0.00696173 0.00696941 0.00697709 0.00698477 0.00699245 0.00700013 0.0070078 0.00701548 0.00702316 0.00703084 0.00703852 0.0070462 0.00705388 0.00706156 0.00706923 0.00707691 0.00708459 0.00709227 0.00709995 0.00710763 0.00711531 0.00712299 0.00713067 0.00713834 0.00714602 0.0071537 0.00716138 0.00716906 0.00717674 0.00718442 0.0071921 0.00719978 0.00720745 0.00721513 0.00722281 0.00723049 0.00723817 0.00724585 0.00725353 0.00726121 0.00726888 0.00727656 0.00728424 0.00729192 0.0072996 0.00730728 0.00731496 0.00732264 0.00733032 0.00733799 0.00734567 0.00735335 0.00736103 0.00736871 0.00737639 0.00738407 0.00739175 0.00739942 0.0074071 0.00741478 0.00742246 0.00743014 0.00743782 0.0074455 0.00745318 0.00746086 0.00746853 0.00747621 0.00748389 0.00749157 0.00749925 +-0.00168245 -0.00157787 -0.00136515 -0.000846463 4.80672E-05 0.00117869 0.00241193 0.00365642 0.00482339 0.00578072 0.00634893 0.00653671 0.00657795 0.00659076 0.0065992 0.006607 0.0066147 0.00662239 0.00663008 0.00663776 0.00664545 0.00665313 0.00666082 0.00666851 0.00667619 0.00668389 0.00669158 0.00669927 0.00670694 0.00671462 0.00672231 0.00673 0.00673768 0.00674537 0.00675306 0.00676074 0.00676843 0.00677612 0.0067838 0.00679149 0.00679917 0.00680686 0.00681455 0.00682223 0.00682992 0.00683761 0.00684529 0.00685298 0.00686066 0.00686835 0.00687604 0.00688372 0.00689141 0.0068991 0.00690678 0.00691447 0.00692216 0.00692984 0.00693753 0.00694521 0.0069529 0.00696059 0.00696827 0.00697596 0.00698365 0.00699133 0.00699902 0.00700671 0.00701439 0.00702208 0.00702976 0.00703745 0.00704514 0.00705282 0.00706051 0.0070682 0.00707588 0.00708357 0.00709125 0.00709894 0.00710663 0.00711431 0.007122 0.00712969 0.00713737 0.00714506 0.00715275 0.00716043 0.00716812 0.0071758 0.00718349 0.00719118 0.00719886 0.00720655 0.00721424 0.00722192 0.00722961 0.00723729 0.00724498 0.00725267 0.00726035 0.00726804 0.00727573 0.00728341 0.0072911 0.00729879 0.00730647 0.00731416 0.00732184 0.00732953 0.00733722 0.0073449 0.00735259 0.00736028 0.00736796 0.00737565 0.00738333 0.00739102 0.00739871 0.00740639 0.00741408 0.00742177 0.00742945 0.00743714 0.00744483 0.00745251 0.0074602 0.00746788 0.00747557 0.00748326 0.00749094 0.00749863 0.00750632 +-0.0016843 -0.00157956 -0.00136642 -0.000847016 4.81465E-05 0.0011792 0.00241283 0.00365776 0.00482542 0.00578396 0.00635384 0.00654261 0.00658407 0.00659693 0.00660538 0.00661318 0.00662089 0.00662859 0.00663629 0.00664398 0.00665167 0.00665937 0.00666706 0.00667475 0.00668245 0.00669014 0.00669785 0.00670554 0.00671322 0.00672092 0.00672861 0.0067363 0.006744 0.00675169 0.00675939 0.00676708 0.00677477 0.00678247 0.00679016 0.00679785 0.00680555 0.00681324 0.00682094 0.00682863 0.00683632 0.00684402 0.00685171 0.00685941 0.0068671 0.00687479 0.00688249 0.00689018 0.00689787 0.00690557 0.00691326 0.00692096 0.00692865 0.00693634 0.00694404 0.00695173 0.00695942 0.00696712 0.00697481 0.00698251 0.0069902 0.00699789 0.00700559 0.00701328 0.00702098 0.00702867 0.00703636 0.00704406 0.00705175 0.00705944 0.00706714 0.00707483 0.00708253 0.00709022 0.00709791 0.00710561 0.0071133 0.00712099 0.00712869 0.00713638 0.00714408 0.00715177 0.00715946 0.00716716 0.00717485 0.00718254 0.00719024 0.00719793 0.00720563 0.00721332 0.00722101 0.00722871 0.0072364 0.0072441 0.00725179 0.00725948 0.00726718 0.00727487 0.00728256 0.00729026 0.00729795 0.00730565 0.00731334 0.00732103 0.00732873 0.00733642 0.00734411 0.00735181 0.0073595 0.0073672 0.00737489 0.00738258 0.00739028 0.00739797 0.00740567 0.00741336 0.00742105 0.00742875 0.00743644 0.00744413 0.00745183 0.00745952 0.00746722 0.00747491 0.0074826 0.0074903 0.00749799 0.00750568 0.00751338 +-0.00168616 -0.00158125 -0.0013677 -0.000847567 4.82258E-05 0.00117972 0.00241372 0.00365911 0.00482745 0.00578719 0.00635875 0.00654849 0.00659019 0.00660309 0.00661156 0.00661937 0.00662709 0.00663479 0.00664249 0.00665019 0.00665789 0.0066656 0.0066733 0.006681 0.0066887 0.0066964 0.00670412 0.00671182 0.0067195 0.00672721 0.00673491 0.00674261 0.00675031 0.00675801 0.00676571 0.00677341 0.00678111 0.00678882 0.00679652 0.00680422 0.00681192 0.00681962 0.00682732 0.00683502 0.00684272 0.00685043 0.00685813 0.00686583 0.00687353 0.00688123 0.00688893 0.00689663 0.00690434 0.00691204 0.00691974 0.00692744 0.00693514 0.00694284 0.00695054 0.00695824 0.00696595 0.00697365 0.00698135 0.00698905 0.00699675 0.00700445 0.00701215 0.00701985 0.00702756 0.00703526 0.00704296 0.00705066 0.00705836 0.00706606 0.00707376 0.00708146 0.00708917 0.00709687 0.00710457 0.00711227 0.00711997 0.00712767 0.00713537 0.00714307 0.00715078 0.00715848 0.00716618 0.00717388 0.00718158 0.00718928 0.00719698 0.00720468 0.00721239 0.00722009 0.00722779 0.00723549 0.00724319 0.00725089 0.00725859 0.0072663 0.007274 0.0072817 0.0072894 0.0072971 0.0073048 0.0073125 0.0073202 0.00732791 0.00733561 0.00734331 0.00735101 0.00735871 0.00736641 0.00737411 0.00738181 0.00738952 0.00739722 0.00740492 0.00741262 0.00742032 0.00742802 0.00743572 0.00744342 0.00745113 0.00745883 0.00746653 0.00747423 0.00748193 0.00748963 0.00749733 0.00750503 0.00751274 0.00752044 +-0.00168801 -0.00158294 -0.00136898 -0.000848118 4.83051E-05 0.00118024 0.00241462 0.00366045 0.00482947 0.00579042 0.00636365 0.00655437 0.00659631 0.00660925 0.00661773 0.00662555 0.00663327 0.00664099 0.00664869 0.0066564 0.00666411 0.00667182 0.00667953 0.00668724 0.00669495 0.00670266 0.00671036 0.00671809 0.00672578 0.00673349 0.0067412 0.00674891 0.00675662 0.00676433 0.00677203 0.00677974 0.00678745 0.00679516 0.00680287 0.00681058 0.00681829 0.006826 0.0068337 0.00684141 0.00684912 0.00685683 0.00686454 0.00687225 0.00687996 0.00688767 0.00689538 0.00690308 0.00691079 0.0069185 0.00692621 0.00693392 0.00694163 0.00694934 0.00695705 0.00696475 0.00697246 0.00698017 0.00698788 0.00699559 0.0070033 0.00701101 0.00701872 0.00702642 0.00703413 0.00704184 0.00704955 0.00705726 0.00706497 0.00707268 0.00708039 0.00708809 0.0070958 0.00710351 0.00711122 0.00711893 0.00712664 0.00713435 0.00714206 0.00714976 0.00715747 0.00716518 0.00717289 0.0071806 0.00718831 0.00719602 0.00720373 0.00721143 0.00721914 0.00722685 0.00723456 0.00724227 0.00724998 0.00725769 0.0072654 0.0072731 0.00728081 0.00728852 0.00729623 0.00730394 0.00731165 0.00731936 0.00732707 0.00733477 0.00734248 0.00735019 0.0073579 0.00736561 0.00737332 0.00738103 0.00738874 0.00739644 0.00740415 0.00741186 0.00741957 0.00742728 0.00743499 0.0074427 0.00745041 0.00745811 0.00746582 0.00747353 0.00748124 0.00748895 0.00749666 0.00750437 0.00751208 0.00751978 0.00752749 +-0.00168987 -0.00158462 -0.00137025 -0.000848668 4.83845E-05 0.00118076 0.00241551 0.00366179 0.0048315 0.00579364 0.00636854 0.00656025 0.00660242 0.00661541 0.0066239 0.00663173 0.00663946 0.00664718 0.0066549 0.00666261 0.00667033 0.00667804 0.00668576 0.00669348 0.00670119 0.00670891 0.00671662 0.00672436 0.00673206 0.00673977 0.00674749 0.00675521 0.00676292 0.00677064 0.00677835 0.00678607 0.00679379 0.0068015 0.00680922 0.00681694 0.00682465 0.00683237 0.00684008 0.0068478 0.00685552 0.00686323 0.00687095 0.00687867 0.00688638 0.0068941 0.00690181 0.00690953 0.00691725 0.00692496 0.00693268 0.0069404 0.00694811 0.00695583 0.00696354 0.00697126 0.00697898 0.00698669 0.00699441 0.00700213 0.00700984 0.00701756 0.00702527 0.00703299 0.00704071 0.00704842 0.00705614 0.00706385 0.00707157 0.00707929 0.007087 0.00709472 0.00710244 0.00711015 0.00711787 0.00712558 0.0071333 0.00714102 0.00714873 0.00715645 0.00716417 0.00717188 0.0071796 0.00718731 0.00719503 0.00720275 0.00721046 0.00721818 0.0072259 0.00723361 0.00724133 0.00724904 0.00725676 0.00726448 0.00727219 0.00727991 0.00728763 0.00729534 0.00730306 0.00731077 0.00731849 0.00732621 0.00733392 0.00734164 0.00734936 0.00735707 0.00736479 0.0073725 0.00738022 0.00738794 0.00739565 0.00740337 0.00741108 0.0074188 0.00742652 0.00743423 0.00744195 0.00744967 0.00745738 0.0074651 0.00747281 0.00748053 0.00748825 0.00749596 0.00750368 0.0075114 0.00751911 0.00752683 0.00753454 +-0.00169172 -0.00158631 -0.00137152 -0.000849218 4.84639E-05 0.00118127 0.00241641 0.00366312 0.00483351 0.00579685 0.00637342 0.00656612 0.00660853 0.00662156 0.00663006 0.0066379 0.00664564 0.00665337 0.00666109 0.00666882 0.00667654 0.00668426 0.00669199 0.00669971 0.00670743 0.00671516 0.00672288 0.00673062 0.00673833 0.00674605 0.00675378 0.0067615 0.00676922 0.00677695 0.00678467 0.00679239 0.00680012 0.00680784 0.00681557 0.00682329 0.00683101 0.00683874 0.00684646 0.00685418 0.00686191 0.00686963 0.00687736 0.00688508 0.0068928 0.00690053 0.00690825 0.00691597 0.0069237 0.00693142 0.00693914 0.00694687 0.00695459 0.00696232 0.00697004 0.00697776 0.00698549 0.00699321 0.00700093 0.00700866 0.00701638 0.00702411 0.00703183 0.00703955 0.00704728 0.007055 0.00706272 0.00707045 0.00707817 0.0070859 0.00709362 0.00710134 0.00710907 0.00711679 0.00712451 0.00713224 0.00713996 0.00714768 0.00715541 0.00716313 0.00717086 0.00717858 0.0071863 0.00719403 0.00720175 0.00720947 0.0072172 0.00722492 0.00723265 0.00724037 0.00724809 0.00725582 0.00726354 0.00727126 0.00727899 0.00728671 0.00729443 0.00730216 0.00730988 0.00731761 0.00732533 0.00733305 0.00734078 0.0073485 0.00735622 0.00736395 0.00737167 0.0073794 0.00738712 0.00739484 0.00740257 0.00741029 0.00741801 0.00742574 0.00743346 0.00744118 0.00744891 0.00745663 0.00746436 0.00747208 0.0074798 0.00748753 0.00749525 0.00750297 0.0075107 0.00751842 0.00752615 0.00753387 0.00754159 +-0.00169357 -0.001588 -0.0013728 -0.000849766 4.85433E-05 0.00118179 0.0024173 0.00366446 0.00483553 0.00580006 0.00637829 0.00657199 0.00661464 0.00662771 0.00663623 0.00664407 0.00665182 0.00665955 0.00666729 0.00667502 0.00668275 0.00669048 0.00669821 0.00670594 0.00671367 0.0067214 0.00672914 0.00673687 0.0067446 0.00675233 0.00676006 0.00676779 0.00677552 0.00678325 0.00679098 0.00679872 0.00680645 0.00681418 0.00682191 0.00682964 0.00683737 0.0068451 0.00685283 0.00686056 0.0068683 0.00687603 0.00688376 0.00689149 0.00689922 0.00690695 0.00691468 0.00692241 0.00693015 0.00693788 0.00694561 0.00695334 0.00696107 0.0069688 0.00697653 0.00698426 0.00699199 0.00699973 0.00700746 0.00701519 0.00702292 0.00703065 0.00703838 0.00704611 0.00705384 0.00706157 0.00706931 0.00707704 0.00708477 0.0070925 0.00710023 0.00710796 0.00711569 0.00712342 0.00713116 0.00713889 0.00714662 0.00715435 0.00716208 0.00716981 0.00717754 0.00718527 0.007193 0.00720074 0.00720847 0.0072162 0.00722393 0.00723166 0.00723939 0.00724712 0.00725485 0.00726258 0.00727032 0.00727805 0.00728578 0.00729351 0.00730124 0.00730897 0.0073167 0.00732443 0.00733217 0.0073399 0.00734763 0.00735536 0.00736309 0.00737082 0.00737855 0.00738628 0.00739401 0.00740175 0.00740948 0.00741721 0.00742494 0.00743267 0.0074404 0.00744813 0.00745586 0.00746359 0.00747133 0.00747906 0.00748679 0.00749452 0.00750225 0.00750998 0.00751771 0.00752544 0.00753318 0.00754091 0.00754864 +-0.00169543 -0.00158968 -0.00137407 -0.000850314 4.86227E-05 0.0011823 0.00241819 0.00366579 0.00483753 0.00580326 0.00638316 0.00657785 0.00662074 0.00663386 0.00664239 0.00665024 0.006658 0.00666574 0.00667348 0.00668122 0.00668895 0.00669669 0.00670443 0.00671217 0.00671991 0.00672765 0.00673539 0.00674312 0.00675086 0.0067586 0.00676634 0.00677408 0.00678182 0.00678956 0.00679729 0.00680503 0.00681277 0.00682051 0.00682825 0.00683599 0.00684373 0.00685146 0.0068592 0.00686694 0.00687468 0.00688242 0.00689016 0.0068979 0.00690564 0.00691337 0.00692111 0.00692885 0.00693659 0.00694433 0.00695207 0.00695981 0.00696754 0.00697528 0.00698302 0.00699076 0.0069985 0.00700624 0.00701398 0.00702171 0.00702945 0.00703719 0.00704493 0.00705267 0.00706041 0.00706815 0.00707588 0.00708362 0.00709136 0.0070991 0.00710684 0.00711458 0.00712232 0.00713005 0.00713779 0.00714553 0.00715327 0.00716101 0.00716875 0.00717649 0.00718423 0.00719196 0.0071997 0.00720744 0.00721518 0.00722292 0.00723066 0.0072384 0.00724613 0.00725387 0.00726161 0.00726935 0.00727709 0.00728483 0.00729257 0.0073003 0.00730804 0.00731578 0.00732352 0.00733126 0.007339 0.00734674 0.00735447 0.00736221 0.00736995 0.00737769 0.00738543 0.00739317 0.00740091 0.00740864 0.00741638 0.00742412 0.00743186 0.0074396 0.00744734 0.00745508 0.00746282 0.00747055 0.00747829 0.00748603 0.00749377 0.00750151 0.00750925 0.00751699 0.00752472 0.00753246 0.0075402 0.00754794 0.00755568 +-0.00169728 -0.00159136 -0.00137534 -0.00085086 4.87021E-05 0.00118282 0.00241907 0.00366712 0.00483954 0.00580645 0.00638802 0.00658371 0.00662684 0.00664 0.00664854 0.00665641 0.00666417 0.00667192 0.00667966 0.00668741 0.00669516 0.0067029 0.00671065 0.00671839 0.00672614 0.00673389 0.00674163 0.00674938 0.00675713 0.00676487 0.00677262 0.00678036 0.00678811 0.00679586 0.0068036 0.00681135 0.00681909 0.00682684 0.00683459 0.00684233 0.00685008 0.00685782 0.00686557 0.00687332 0.00688106 0.00688881 0.00689655 0.0069043 0.00691205 0.00691979 0.00692754 0.00693528 0.00694303 0.00695078 0.00695852 0.00696627 0.00697401 0.00698176 0.00698951 0.00699725 0.007005 0.00701275 0.00702049 0.00702824 0.00703598 0.00704373 0.00705148 0.00705922 0.00706697 0.00707471 0.00708246 0.00709021 0.00709795 0.0071057 0.00711344 0.00712119 0.00712894 0.00713668 0.00714443 0.00715217 0.00715992 0.00716767 0.00717541 0.00718316 0.0071909 0.00719865 0.0072064 0.00721414 0.00722189 0.00722964 0.00723738 0.00724513 0.00725287 0.00726062 0.00726837 0.00727611 0.00728386 0.0072916 0.00729935 0.0073071 0.00731484 0.00732259 0.00733033 0.00733808 0.00734583 0.00735357 0.00736132 0.00736906 0.00737681 0.00738456 0.0073923 0.00740005 0.00740779 0.00741554 0.00742329 0.00743103 0.00743878 0.00744653 0.00745427 0.00746202 0.00746976 0.00747751 0.00748526 0.007493 0.00750075 0.00750849 0.00751624 0.00752399 0.00753173 0.00753948 0.00754722 0.00755497 0.00756272 +-0.00169913 -0.00159305 -0.00137661 -0.000851406 4.87816E-05 0.00118333 0.00241996 0.00366844 0.00484154 0.00580963 0.00639287 0.00658956 0.00663293 0.00664614 0.0066547 0.00666257 0.00667034 0.00667809 0.00668585 0.0066936 0.00670136 0.00670911 0.00671686 0.00672462 0.00673237 0.00674012 0.00674788 0.00675563 0.00676338 0.00677114 0.00677889 0.00678664 0.0067944 0.00680215 0.00680991 0.00681766 0.00682541 0.00683317 0.00684092 0.00684867 0.00685643 0.00686418 0.00687193 0.00687969 0.00688744 0.00689519 0.00690295 0.0069107 0.00691845 0.00692621 0.00693396 0.00694172 0.00694947 0.00695722 0.00696498 0.00697273 0.00698048 0.00698824 0.00699599 0.00700374 0.0070115 0.00701925 0.007027 0.00703476 0.00704251 0.00705026 0.00705802 0.00706577 0.00707352 0.00708128 0.00708903 0.00709679 0.00710454 0.00711229 0.00712005 0.0071278 0.00713555 0.00714331 0.00715106 0.00715881 0.00716657 0.00717432 0.00718207 0.00718983 0.00719758 0.00720533 0.00721309 0.00722084 0.0072286 0.00723635 0.0072441 0.00725186 0.00725961 0.00726736 0.00727512 0.00728287 0.00729062 0.00729838 0.00730613 0.00731388 0.00732164 0.00732939 0.00733714 0.0073449 0.00735265 0.00736041 0.00736816 0.00737591 0.00738367 0.00739142 0.00739917 0.00740693 0.00741468 0.00742243 0.00743019 0.00743794 0.00744569 0.00745345 0.0074612 0.00746895 0.00747671 0.00748446 0.00749221 0.00749997 0.00750772 0.00751548 0.00752323 0.00753098 0.00753874 0.00754649 0.00755424 0.007562 0.00756975 +-0.00170098 -0.00159473 -0.00137787 -0.000851951 4.8861E-05 0.00118385 0.00242085 0.00366977 0.00484354 0.00581281 0.00639771 0.00659541 0.00663903 0.00665228 0.00666085 0.00666873 0.00667651 0.00668427 0.00669203 0.00669979 0.00670755 0.00671531 0.00672307 0.00673084 0.0067386 0.00674636 0.00675412 0.00676188 0.00676964 0.0067774 0.00678516 0.00679292 0.00680068 0.00680844 0.00681621 0.00682397 0.00683173 0.00683949 0.00684725 0.00685501 0.00686277 0.00687053 0.00687829 0.00688605 0.00689382 0.00690158 0.00690934 0.0069171 0.00692486 0.00693262 0.00694038 0.00694814 0.0069559 0.00696366 0.00697143 0.00697919 0.00698695 0.00699471 0.00700247 0.00701023 0.00701799 0.00702575 0.00703351 0.00704127 0.00704903 0.0070568 0.00706456 0.00707232 0.00708008 0.00708784 0.0070956 0.00710336 0.00711112 0.00711888 0.00712664 0.00713441 0.00714217 0.00714993 0.00715769 0.00716545 0.00717321 0.00718097 0.00718873 0.00719649 0.00720425 0.00721202 0.00721978 0.00722754 0.0072353 0.00724306 0.00725082 0.00725858 0.00726634 0.0072741 0.00728186 0.00728962 0.00729739 0.00730515 0.00731291 0.00732067 0.00732843 0.00733619 0.00734395 0.00735171 0.00735947 0.00736723 0.007375 0.00738276 0.00739052 0.00739828 0.00740604 0.0074138 0.00742156 0.00742932 0.00743708 0.00744484 0.00745261 0.00746037 0.00746813 0.00747589 0.00748365 0.00749141 0.00749917 0.00750693 0.00751469 0.00752245 0.00753021 0.00753798 0.00754574 0.0075535 0.00756126 0.00756902 0.00757678 +-0.00170283 -0.00159641 -0.00137914 -0.000852495 4.89405E-05 0.00118436 0.00242173 0.00367109 0.00484553 0.00581598 0.00640254 0.00660125 0.00664511 0.00665841 0.006667 0.00667488 0.00668267 0.00669044 0.00669821 0.00670598 0.00671375 0.00672151 0.00672928 0.00673705 0.00674482 0.00675259 0.00676036 0.00676812 0.00677589 0.00678366 0.00679143 0.0067992 0.00680697 0.00681473 0.0068225 0.00683027 0.00683804 0.00684581 0.00685358 0.00686135 0.00686911 0.00687688 0.00688465 0.00689242 0.00690019 0.00690796 0.00691572 0.00692349 0.00693126 0.00693903 0.0069468 0.00695457 0.00696233 0.0069701 0.00697787 0.00698564 0.00699341 0.00700118 0.00700894 0.00701671 0.00702448 0.00703225 0.00704002 0.00704779 0.00705556 0.00706332 0.00707109 0.00707886 0.00708663 0.0070944 0.00710217 0.00710993 0.0071177 0.00712547 0.00713324 0.00714101 0.00714878 0.00715654 0.00716431 0.00717208 0.00717985 0.00718762 0.00719539 0.00720316 0.00721092 0.00721869 0.00722646 0.00723423 0.007242 0.00724977 0.00725753 0.0072653 0.00727307 0.00728084 0.00728861 0.00729638 0.00730414 0.00731191 0.00731968 0.00732745 0.00733522 0.00734299 0.00735076 0.00735852 0.00736629 0.00737406 0.00738183 0.0073896 0.00739737 0.00740513 0.0074129 0.00742067 0.00742844 0.00743621 0.00744398 0.00745174 0.00745951 0.00746728 0.00747505 0.00748282 0.00749059 0.00749836 0.00750612 0.00751389 0.00752166 0.00752943 0.0075372 0.00754497 0.00755273 0.0075605 0.00756827 0.00757604 0.00758381 +-0.00170468 -0.00159809 -0.00138041 -0.000853039 4.902E-05 0.00118487 0.00242261 0.00367241 0.00484752 0.00581915 0.00640737 0.00660709 0.0066512 0.00666454 0.00667314 0.00668104 0.00668883 0.00669661 0.00670438 0.00671216 0.00671994 0.00672771 0.00673549 0.00674326 0.00675104 0.00675881 0.00676659 0.00677437 0.00678214 0.00678992 0.00679769 0.00680547 0.00681325 0.00682102 0.0068288 0.00683657 0.00684435 0.00685212 0.0068599 0.00686768 0.00687545 0.00688323 0.006891 0.00689878 0.00690656 0.00691433 0.00692211 0.00692988 0.00693766 0.00694543 0.00695321 0.00696099 0.00696876 0.00697654 0.00698431 0.00699209 0.00699987 0.00700764 0.00701542 0.00702319 0.00703097 0.00703875 0.00704652 0.0070543 0.00706207 0.00706985 0.00707762 0.0070854 0.00709318 0.00710095 0.00710873 0.0071165 0.00712428 0.00713206 0.00713983 0.00714761 0.00715538 0.00716316 0.00717093 0.00717871 0.00718649 0.00719426 0.00720204 0.00720981 0.00721759 0.00722537 0.00723314 0.00724092 0.00724869 0.00725647 0.00726425 0.00727202 0.0072798 0.00728757 0.00729535 0.00730312 0.0073109 0.00731868 0.00732645 0.00733423 0.007342 0.00734978 0.00735756 0.00736533 0.00737311 0.00738088 0.00738866 0.00739643 0.00740421 0.00741199 0.00741976 0.00742754 0.00743531 0.00744309 0.00745087 0.00745864 0.00746642 0.00747419 0.00748197 0.00748974 0.00749752 0.0075053 0.00751307 0.00752085 0.00752862 0.0075364 0.00754418 0.00755195 0.00755973 0.0075675 0.00757528 0.00758306 0.00759083 +-0.00170653 -0.00159977 -0.00138167 -0.000853581 4.90996E-05 0.00118538 0.0024235 0.00367373 0.0048495 0.0058223 0.00641219 0.00661292 0.00665728 0.00667067 0.00667928 0.00668718 0.00669499 0.00670277 0.00671056 0.00671834 0.00672612 0.00673391 0.00674169 0.00674947 0.00675726 0.00676504 0.00677282 0.00678061 0.00678839 0.00679617 0.00680395 0.00681174 0.00681952 0.0068273 0.00683509 0.00684287 0.00685065 0.00685844 0.00686622 0.006874 0.00688179 0.00688957 0.00689735 0.00690514 0.00691292 0.0069207 0.00692849 0.00693627 0.00694405 0.00695184 0.00695962 0.0069674 0.00697519 0.00698297 0.00699075 0.00699854 0.00700632 0.0070141 0.00702189 0.00702967 0.00703745 0.00704524 0.00705302 0.0070608 0.00706859 0.00707637 0.00708415 0.00709194 0.00709972 0.0071075 0.00711529 0.00712307 0.00713085 0.00713864 0.00714642 0.0071542 0.00716199 0.00716977 0.00717755 0.00718534 0.00719312 0.0072009 0.00720869 0.00721647 0.00722425 0.00723204 0.00723982 0.0072476 0.00725539 0.00726317 0.00727095 0.00727874 0.00728652 0.0072943 0.00730209 0.00730987 0.00731765 0.00732544 0.00733322 0.007341 0.00734879 0.00735657 0.00736435 0.00737214 0.00737992 0.0073877 0.00739549 0.00740327 0.00741105 0.00741884 0.00742662 0.0074344 0.00744219 0.00744997 0.00745775 0.00746554 0.00747332 0.0074811 0.00748888 0.00749667 0.00750445 0.00751223 0.00752002 0.0075278 0.00753558 0.00754337 0.00755115 0.00755893 0.00756672 0.0075745 0.00758228 0.00759007 0.00759785 +-0.00170838 -0.00160145 -0.00138293 -0.000854123 4.91791E-05 0.00118589 0.00242438 0.00367504 0.00485148 0.00582545 0.006417 0.00661875 0.00666336 0.0066768 0.00668542 0.00669333 0.00670114 0.00670893 0.00671672 0.00672451 0.00673231 0.0067401 0.00674789 0.00675568 0.00676347 0.00677126 0.00677905 0.00678684 0.00679463 0.00680242 0.00681021 0.006818 0.00682579 0.00683359 0.00684138 0.00684917 0.00685696 0.00686475 0.00687254 0.00688033 0.00688812 0.00689591 0.0069037 0.00691149 0.00691928 0.00692707 0.00693486 0.00694266 0.00695045 0.00695824 0.00696603 0.00697382 0.00698161 0.0069894 0.00699719 0.00700498 0.00701277 0.00702056 0.00702835 0.00703614 0.00704393 0.00705173 0.00705952 0.00706731 0.0070751 0.00708289 0.00709068 0.00709847 0.00710626 0.00711405 0.00712184 0.00712963 0.00713742 0.00714521 0.00715301 0.0071608 0.00716859 0.00717638 0.00718417 0.00719196 0.00719975 0.00720754 0.00721533 0.00722312 0.00723091 0.0072387 0.00724649 0.00725428 0.00726208 0.00726987 0.00727766 0.00728545 0.00729324 0.00730103 0.00730882 0.00731661 0.0073244 0.00733219 0.00733998 0.00734777 0.00735556 0.00736335 0.00737115 0.00737894 0.00738673 0.00739452 0.00740231 0.0074101 0.00741789 0.00742568 0.00743347 0.00744126 0.00744905 0.00745684 0.00746463 0.00747243 0.00748022 0.00748801 0.0074958 0.00750359 0.00751138 0.00751917 0.00752696 0.00753475 0.00754254 0.00755033 0.00755812 0.00756591 0.0075737 0.0075815 0.00758929 0.00759708 0.00760487 +-0.00171023 -0.00160313 -0.0013842 -0.000854664 4.92587E-05 0.0011864 0.00242526 0.00367636 0.00485346 0.0058286 0.0064218 0.00662457 0.00666943 0.00668292 0.00669155 0.00669947 0.00670729 0.00671509 0.00672289 0.00673069 0.00673849 0.00674628 0.00675408 0.00676188 0.00676968 0.00677748 0.00678528 0.00679307 0.00680087 0.00680867 0.00681647 0.00682427 0.00683206 0.00683986 0.00684766 0.00685546 0.00686326 0.00687105 0.00687885 0.00688665 0.00689445 0.00690225 0.00691005 0.00691784 0.00692564 0.00693344 0.00694124 0.00694904 0.00695683 0.00696463 0.00697243 0.00698023 0.00698803 0.00699583 0.00700362 0.00701142 0.00701922 0.00702702 0.00703482 0.00704261 0.00705041 0.00705821 0.00706601 0.00707381 0.00708161 0.0070894 0.0070972 0.007105 0.0071128 0.0071206 0.00712839 0.00713619 0.00714399 0.00715179 0.00715959 0.00716739 0.00717518 0.00718298 0.00719078 0.00719858 0.00720638 0.00721417 0.00722197 0.00722977 0.00723757 0.00724537 0.00725316 0.00726096 0.00726876 0.00727656 0.00728436 0.00729216 0.00729995 0.00730775 0.00731555 0.00732335 0.00733115 0.00733894 0.00734674 0.00735454 0.00736234 0.00737014 0.00737794 0.00738573 0.00739353 0.00740133 0.00740913 0.00741693 0.00742472 0.00743252 0.00744032 0.00744812 0.00745592 0.00746372 0.00747151 0.00747931 0.00748711 0.00749491 0.00750271 0.0075105 0.0075183 0.0075261 0.0075339 0.0075417 0.0075495 0.00755729 0.00756509 0.00757289 0.00758069 0.00758849 0.00759628 0.00760408 0.00761188 +-0.00171207 -0.00160481 -0.00138546 -0.000855204 4.93383E-05 0.00118691 0.00242613 0.00367767 0.00485544 0.00583173 0.0064266 0.00663039 0.00667551 0.00668904 0.00669769 0.00670561 0.00671344 0.00672125 0.00672905 0.00673686 0.00674466 0.00675247 0.00676027 0.00676808 0.00677589 0.00678369 0.0067915 0.0067993 0.00680711 0.00681491 0.00682272 0.00683053 0.00683833 0.00684614 0.00685394 0.00686175 0.00686955 0.00687736 0.00688516 0.00689297 0.00690078 0.00690858 0.00691639 0.00692419 0.006932 0.0069398 0.00694761 0.00695541 0.00696322 0.00697103 0.00697883 0.00698664 0.00699444 0.00700225 0.00701005 0.00701786 0.00702566 0.00703347 0.00704128 0.00704908 0.00705689 0.00706469 0.0070725 0.0070803 0.00708811 0.00709592 0.00710372 0.00711153 0.00711933 0.00712714 0.00713494 0.00714275 0.00715055 0.00715836 0.00716617 0.00717397 0.00718178 0.00718958 0.00719739 0.00720519 0.007213 0.0072208 0.00722861 0.00723642 0.00724422 0.00725203 0.00725983 0.00726764 0.00727544 0.00728325 0.00729106 0.00729886 0.00730667 0.00731447 0.00732228 0.00733008 0.00733789 0.00734569 0.0073535 0.00736131 0.00736911 0.00737692 0.00738472 0.00739253 0.00740033 0.00740814 0.00741594 0.00742375 0.00743156 0.00743936 0.00744717 0.00745497 0.00746278 0.00747058 0.00747839 0.00748619 0.007494 0.00750181 0.00750961 0.00751742 0.00752522 0.00753303 0.00754083 0.00754864 0.00755645 0.00756425 0.00757206 0.00757986 0.00758767 0.00759547 0.00760328 0.00761108 0.00761889 +-0.00171392 -0.00160649 -0.00138672 -0.000855744 4.94179E-05 0.00118742 0.00242701 0.00367898 0.00485741 0.00583486 0.00643138 0.00663621 0.00668157 0.00669515 0.00670381 0.00671175 0.00671958 0.0067274 0.00673521 0.00674302 0.00675084 0.00675865 0.00676646 0.00677428 0.00678209 0.0067899 0.00679772 0.00680553 0.00681334 0.00682116 0.00682897 0.00683678 0.00684459 0.00685241 0.00686022 0.00686803 0.00687585 0.00688366 0.00689147 0.00689929 0.0069071 0.00691491 0.00692272 0.00693054 0.00693835 0.00694616 0.00695398 0.00696179 0.0069696 0.00697742 0.00698523 0.00699304 0.00700085 0.00700867 0.00701648 0.00702429 0.00703211 0.00703992 0.00704773 0.00705555 0.00706336 0.00707117 0.00707898 0.0070868 0.00709461 0.00710242 0.00711024 0.00711805 0.00712586 0.00713368 0.00714149 0.0071493 0.00715711 0.00716493 0.00717274 0.00718055 0.00718837 0.00719618 0.00720399 0.00721181 0.00721962 0.00722743 0.00723524 0.00724306 0.00725087 0.00725868 0.0072665 0.00727431 0.00728212 0.00728994 0.00729775 0.00730556 0.00731338 0.00732119 0.007329 0.00733681 0.00734463 0.00735244 0.00736025 0.00736807 0.00737588 0.00738369 0.00739151 0.00739932 0.00740713 0.00741494 0.00742276 0.00743057 0.00743838 0.0074462 0.00745401 0.00746182 0.00746964 0.00747745 0.00748526 0.00749307 0.00750089 0.0075087 0.00751651 0.00752433 0.00753214 0.00753995 0.00754777 0.00755558 0.00756339 0.0075712 0.00757902 0.00758683 0.00759464 0.00760246 0.00761027 0.00761808 0.0076259 +-0.00171577 -0.00160817 -0.00138798 -0.000856282 4.94975E-05 0.00118793 0.00242789 0.00368029 0.00485937 0.00583798 0.00643616 0.00664202 0.00668764 0.00670127 0.00670994 0.00671789 0.00672572 0.00673355 0.00674137 0.00674919 0.00675701 0.00676483 0.00677265 0.00678047 0.00678829 0.00679611 0.00680393 0.00681175 0.00681957 0.00682739 0.00683521 0.00684303 0.00685085 0.00685867 0.0068665 0.00687432 0.00688214 0.00688996 0.00689778 0.0069056 0.00691342 0.00692124 0.00692906 0.00693688 0.0069447 0.00695252 0.00696034 0.00696816 0.00697598 0.0069838 0.00699162 0.00699944 0.00700726 0.00701508 0.0070229 0.00703072 0.00703854 0.00704637 0.00705419 0.00706201 0.00706983 0.00707765 0.00708547 0.00709329 0.00710111 0.00710893 0.00711675 0.00712457 0.00713239 0.00714021 0.00714803 0.00715585 0.00716367 0.00717149 0.00717931 0.00718713 0.00719495 0.00720277 0.00721059 0.00721842 0.00722624 0.00723406 0.00724188 0.0072497 0.00725752 0.00726534 0.00727316 0.00728098 0.0072888 0.00729662 0.00730444 0.00731226 0.00732008 0.0073279 0.00733572 0.00734354 0.00735136 0.00735918 0.007367 0.00737482 0.00738264 0.00739046 0.00739829 0.00740611 0.00741393 0.00742175 0.00742957 0.00743739 0.00744521 0.00745303 0.00746085 0.00746867 0.00747649 0.00748431 0.00749213 0.00749995 0.00750777 0.00751559 0.00752341 0.00753123 0.00753905 0.00754687 0.00755469 0.00756251 0.00757033 0.00757816 0.00758598 0.0075938 0.00760162 0.00760944 0.00761726 0.00762508 0.0076329 +-0.00171761 -0.00160984 -0.00138924 -0.00085682 4.95772E-05 0.00118843 0.00242876 0.00368159 0.00486133 0.0058411 0.00644093 0.00664782 0.0066937 0.00670737 0.00671606 0.00672402 0.00673186 0.00673969 0.00674752 0.00675535 0.00676318 0.00677101 0.00677883 0.00678666 0.00679449 0.00680232 0.00681014 0.00681797 0.0068258 0.00683363 0.00684146 0.00684928 0.00685711 0.00686494 0.00687277 0.0068806 0.00688842 0.00689625 0.00690408 0.00691191 0.00691973 0.00692756 0.00693539 0.00694322 0.00695105 0.00695887 0.0069667 0.00697453 0.00698236 0.00699019 0.00699801 0.00700584 0.00701367 0.0070215 0.00702932 0.00703715 0.00704498 0.00705281 0.00706064 0.00706846 0.00707629 0.00708412 0.00709195 0.00709978 0.0071076 0.00711543 0.00712326 0.00713109 0.00713891 0.00714674 0.00715457 0.0071624 0.00717023 0.00717805 0.00718588 0.00719371 0.00720154 0.00720937 0.00721719 0.00722502 0.00723285 0.00724068 0.0072485 0.00725633 0.00726416 0.00727199 0.00727982 0.00728764 0.00729547 0.0073033 0.00731113 0.00731896 0.00732678 0.00733461 0.00734244 0.00735027 0.00735809 0.00736592 0.00737375 0.00738158 0.00738941 0.00739723 0.00740506 0.00741289 0.00742072 0.00742855 0.00743637 0.0074442 0.00745203 0.00745986 0.00746768 0.00747551 0.00748334 0.00749117 0.007499 0.00750682 0.00751465 0.00752248 0.00753031 0.00753814 0.00754596 0.00755379 0.00756162 0.00756945 0.00757727 0.0075851 0.00759293 0.00760076 0.00760859 0.00761641 0.00762424 0.00763207 0.0076399 +-0.00171946 -0.00161152 -0.00139049 -0.000857356 4.96568E-05 0.00118894 0.00242963 0.00368289 0.00486329 0.00584421 0.0064457 0.00665362 0.00669976 0.00671348 0.00672218 0.00673014 0.006738 0.00674584 0.00675367 0.00676151 0.00676934 0.00677718 0.00678501 0.00679285 0.00680068 0.00680852 0.00681635 0.00682419 0.00683202 0.00683986 0.0068477 0.00685553 0.00686337 0.0068712 0.00687904 0.00688687 0.00689471 0.00690254 0.00691038 0.00691821 0.00692605 0.00693388 0.00694172 0.00694955 0.00695739 0.00696522 0.00697306 0.00698089 0.00698873 0.00699657 0.0070044 0.00701224 0.00702007 0.00702791 0.00703574 0.00704358 0.00705141 0.00705925 0.00706708 0.00707492 0.00708275 0.00709059 0.00709842 0.00710626 0.00711409 0.00712193 0.00712976 0.0071376 0.00714544 0.00715327 0.00716111 0.00716894 0.00717678 0.00718461 0.00719245 0.00720028 0.00720812 0.00721595 0.00722379 0.00723162 0.00723946 0.00724729 0.00725513 0.00726296 0.0072708 0.00727863 0.00728647 0.00729431 0.00730214 0.00730998 0.00731781 0.00732565 0.00733348 0.00734132 0.00734915 0.00735699 0.00736482 0.00737266 0.00738049 0.00738833 0.00739616 0.007404 0.00741183 0.00741967 0.00742751 0.00743534 0.00744318 0.00745101 0.00745885 0.00746668 0.00747452 0.00748235 0.00749019 0.00749802 0.00750586 0.00751369 0.00752153 0.00752936 0.0075372 0.00754503 0.00755287 0.0075607 0.00756854 0.00757638 0.00758421 0.00759205 0.00759988 0.00760772 0.00761555 0.00762339 0.00763122 0.00763906 0.00764689 +-0.0017213 -0.00161319 -0.00139175 -0.000857893 4.97365E-05 0.00118945 0.00243051 0.00368419 0.00486525 0.00584731 0.00645045 0.00665942 0.00670581 0.00671958 0.0067283 0.00673627 0.00674413 0.00675198 0.00675982 0.00676766 0.0067755 0.00678335 0.00679119 0.00679903 0.00680688 0.00681472 0.00682256 0.0068304 0.00683825 0.00684609 0.00685393 0.00686177 0.00686962 0.00687746 0.0068853 0.00689314 0.00690099 0.00690883 0.00691667 0.00692452 0.00693236 0.0069402 0.00694804 0.00695589 0.00696373 0.00697157 0.00697941 0.00698726 0.0069951 0.00700294 0.00701078 0.00701863 0.00702647 0.00703431 0.00704216 0.00705 0.00705784 0.00706568 0.00707353 0.00708137 0.00708921 0.00709705 0.0071049 0.00711274 0.00712058 0.00712842 0.00713627 0.00714411 0.00715195 0.0071598 0.00716764 0.00717548 0.00718332 0.00719117 0.00719901 0.00720685 0.00721469 0.00722254 0.00723038 0.00723822 0.00724607 0.00725391 0.00726175 0.00726959 0.00727744 0.00728528 0.00729312 0.00730096 0.00730881 0.00731665 0.00732449 0.00733233 0.00734018 0.00734802 0.00735586 0.00736371 0.00737155 0.00737939 0.00738723 0.00739508 0.00740292 0.00741076 0.0074186 0.00742645 0.00743429 0.00744213 0.00744997 0.00745782 0.00746566 0.0074735 0.00748135 0.00748919 0.00749703 0.00750487 0.00751272 0.00752056 0.0075284 0.00753624 0.00754409 0.00755193 0.00755977 0.00756762 0.00757546 0.0075833 0.00759114 0.00759899 0.00760683 0.00761467 0.00762251 0.00763036 0.0076382 0.00764604 0.00765388 +-0.00172315 -0.00161487 -0.00139301 -0.000858428 4.98162E-05 0.00118995 0.00243138 0.00368549 0.0048672 0.00585041 0.0064552 0.00666521 0.00671187 0.00672568 0.00673441 0.00674239 0.00675026 0.00675811 0.00676596 0.00677381 0.00678166 0.00678951 0.00679736 0.00680521 0.00681306 0.00682091 0.00682876 0.00683661 0.00684446 0.00685231 0.00686016 0.00686801 0.00687586 0.00688371 0.00689156 0.00689941 0.00690726 0.00691511 0.00692296 0.00693081 0.00693866 0.00694652 0.00695437 0.00696222 0.00697007 0.00697792 0.00698577 0.00699362 0.00700147 0.00700932 0.00701717 0.00702502 0.00703287 0.00704072 0.00704857 0.00705642 0.00706427 0.00707212 0.00707997 0.00708782 0.00709567 0.00710352 0.00711137 0.00711922 0.00712707 0.00713492 0.00714277 0.00715062 0.00715847 0.00716632 0.00717417 0.00718202 0.00718987 0.00719772 0.00720557 0.00721342 0.00722127 0.00722912 0.00723697 0.00724482 0.00725267 0.00726052 0.00726837 0.00727622 0.00728407 0.00729192 0.00729977 0.00730762 0.00731547 0.00732332 0.00733117 0.00733902 0.00734687 0.00735472 0.00736257 0.00737042 0.00737827 0.00738612 0.00739397 0.00740182 0.00740967 0.00741752 0.00742537 0.00743322 0.00744107 0.00744892 0.00745677 0.00746462 0.00747247 0.00748032 0.00748817 0.00749602 0.00750387 0.00751172 0.00751957 0.00752742 0.00753527 0.00754312 0.00755097 0.00755882 0.00756667 0.00757452 0.00758237 0.00759022 0.00759807 0.00760592 0.00761377 0.00762162 0.00762947 0.00763732 0.00764517 0.00765302 0.00766087 +-0.00172499 -0.00161654 -0.00139426 -0.000858962 4.98959E-05 0.00119046 0.00243224 0.00368679 0.00486914 0.0058535 0.00645994 0.006671 0.00671791 0.00673178 0.00674052 0.00674851 0.00675639 0.00676425 0.0067721 0.00677996 0.00678782 0.00679568 0.00680353 0.00681139 0.00681925 0.00682711 0.00683496 0.00684282 0.00685068 0.00685854 0.00686639 0.00687425 0.00688211 0.00688997 0.00689782 0.00690568 0.00691354 0.0069214 0.00692925 0.00693711 0.00694497 0.00695283 0.00696068 0.00696854 0.0069764 0.00698426 0.00699211 0.00699997 0.00700783 0.00701569 0.00702354 0.0070314 0.00703926 0.00704712 0.00705497 0.00706283 0.00707069 0.00707855 0.0070864 0.00709426 0.00710212 0.00710998 0.00711783 0.00712569 0.00713355 0.00714141 0.00714926 0.00715712 0.00716498 0.00717284 0.00718069 0.00718855 0.00719641 0.00720427 0.00721212 0.00721998 0.00722784 0.0072357 0.00724355 0.00725141 0.00725927 0.00726713 0.00727498 0.00728284 0.0072907 0.00729856 0.00730641 0.00731427 0.00732213 0.00732999 0.00733784 0.0073457 0.00735356 0.00736142 0.00736927 0.00737713 0.00738499 0.00739285 0.0074007 0.00740856 0.00741642 0.00742428 0.00743213 0.00743999 0.00744785 0.00745571 0.00746356 0.00747142 0.00747928 0.00748714 0.00749499 0.00750285 0.00751071 0.00751857 0.00752642 0.00753428 0.00754214 0.00755 0.00755785 0.00756571 0.00757357 0.00758143 0.00758928 0.00759714 0.007605 0.00761286 0.00762071 0.00762857 0.00763643 0.00764429 0.00765214 0.00766 0.00766786 +-0.00172683 -0.00161821 -0.00139551 -0.000859496 4.99757E-05 0.00119096 0.00243311 0.00368808 0.00487109 0.00585658 0.00646467 0.00667678 0.00672396 0.00673787 0.00674663 0.00675462 0.00676251 0.00677038 0.00677824 0.00678611 0.00679397 0.00680184 0.0068097 0.00681757 0.00682543 0.0068333 0.00684116 0.00684903 0.00685689 0.00686476 0.00687262 0.00688049 0.00688835 0.00689622 0.00690408 0.00691195 0.00691981 0.00692767 0.00693554 0.0069434 0.00695127 0.00695913 0.006967 0.00697486 0.00698273 0.00699059 0.00699846 0.00700632 0.00701419 0.00702205 0.00702992 0.00703778 0.00704565 0.00705351 0.00706138 0.00706924 0.00707711 0.00708497 0.00709284 0.0071007 0.00710857 0.00711643 0.0071243 0.00713216 0.00714003 0.00714789 0.00715576 0.00716362 0.00717149 0.00717935 0.00718722 0.00719508 0.00720295 0.00721081 0.00721868 0.00722654 0.00723441 0.00724227 0.00725014 0.007258 0.00726587 0.00727373 0.0072816 0.00728946 0.00729732 0.00730519 0.00731305 0.00732092 0.00732878 0.00733665 0.00734451 0.00735238 0.00736024 0.00736811 0.00737597 0.00738384 0.0073917 0.00739957 0.00740743 0.0074153 0.00742316 0.00743103 0.00743889 0.00744676 0.00745462 0.00746249 0.00747035 0.00747822 0.00748608 0.00749395 0.00750181 0.00750968 0.00751754 0.00752541 0.00753327 0.00754114 0.007549 0.00755687 0.00756473 0.0075726 0.00758046 0.00758833 0.00759619 0.00760406 0.00761192 0.00761979 0.00762765 0.00763552 0.00764338 0.00765125 0.00765911 0.00766697 0.00767484 +-0.00172867 -0.00161988 -0.00139676 -0.000860028 5.00554E-05 0.00119147 0.00243398 0.00368937 0.00487302 0.00585966 0.0064694 0.00668256 0.00673 0.00674396 0.00675273 0.00676074 0.00676863 0.0067765 0.00678438 0.00679225 0.00680012 0.00680799 0.00681587 0.00682374 0.00683161 0.00683948 0.00684735 0.00685523 0.0068631 0.00687097 0.00687884 0.00688672 0.00689459 0.00690246 0.00691033 0.00691821 0.00692608 0.00693395 0.00694182 0.00694969 0.00695757 0.00696544 0.00697331 0.00698118 0.00698906 0.00699693 0.0070048 0.00701267 0.00702055 0.00702842 0.00703629 0.00704416 0.00705203 0.00705991 0.00706778 0.00707565 0.00708352 0.0070914 0.00709927 0.00710714 0.00711501 0.00712289 0.00713076 0.00713863 0.0071465 0.00715437 0.00716225 0.00717012 0.00717799 0.00718586 0.00719374 0.00720161 0.00720948 0.00721735 0.00722523 0.0072331 0.00724097 0.00724884 0.00725671 0.00726459 0.00727246 0.00728033 0.0072882 0.00729608 0.00730395 0.00731182 0.00731969 0.00732756 0.00733544 0.00734331 0.00735118 0.00735905 0.00736693 0.0073748 0.00738267 0.00739054 0.00739842 0.00740629 0.00741416 0.00742203 0.0074299 0.00743778 0.00744565 0.00745352 0.00746139 0.00746927 0.00747714 0.00748501 0.00749288 0.00750076 0.00750863 0.0075165 0.00752437 0.00753224 0.00754012 0.00754799 0.00755586 0.00756373 0.00757161 0.00757948 0.00758735 0.00759522 0.0076031 0.00761097 0.00761884 0.00762671 0.00763458 0.00764246 0.00765033 0.0076582 0.00766607 0.00767395 0.00768182 +-0.00173052 -0.00162156 -0.00139802 -0.00086056 5.01352E-05 0.00119197 0.00243484 0.00369066 0.00487496 0.00586272 0.00647411 0.00668833 0.00673604 0.00675005 0.00675883 0.00676685 0.00677475 0.00678263 0.00679051 0.00679839 0.00680627 0.00681415 0.00682203 0.00682991 0.00683779 0.00684567 0.00685355 0.00686143 0.00686931 0.00687718 0.00688506 0.00689294 0.00690082 0.0069087 0.00691658 0.00692446 0.00693234 0.00694022 0.0069481 0.00695598 0.00696386 0.00697174 0.00697962 0.0069875 0.00699538 0.00700326 0.00701114 0.00701902 0.0070269 0.00703478 0.00704266 0.00705054 0.00705842 0.0070663 0.00707418 0.00708206 0.00708994 0.00709782 0.0071057 0.00711358 0.00712146 0.00712933 0.00713721 0.00714509 0.00715297 0.00716085 0.00716873 0.00717661 0.00718449 0.00719237 0.00720025 0.00720813 0.00721601 0.00722389 0.00723177 0.00723965 0.00724753 0.00725541 0.00726329 0.00727117 0.00727905 0.00728693 0.00729481 0.00730269 0.00731057 0.00731845 0.00732633 0.00733421 0.00734209 0.00734997 0.00735785 0.00736573 0.00737361 0.00738148 0.00738936 0.00739724 0.00740512 0.007413 0.00742088 0.00742876 0.00743664 0.00744452 0.0074524 0.00746028 0.00746816 0.00747604 0.00748392 0.0074918 0.00749968 0.00750756 0.00751544 0.00752332 0.0075312 0.00753908 0.00754696 0.00755484 0.00756272 0.0075706 0.00757848 0.00758636 0.00759424 0.00760212 0.00761 0.00761788 0.00762576 0.00763363 0.00764151 0.00764939 0.00765727 0.00766515 0.00767303 0.00768091 0.00768879 +-0.00173236 -0.00162323 -0.00139926 -0.000861092 5.0215E-05 0.00119247 0.00243571 0.00369195 0.00487689 0.00586579 0.00647882 0.0066941 0.00674207 0.00675614 0.00676493 0.00677295 0.00678086 0.00678875 0.00679664 0.00680452 0.00681241 0.0068203 0.00682819 0.00683607 0.00684396 0.00685185 0.00685973 0.00686762 0.00687551 0.00688339 0.00689128 0.00689917 0.00690706 0.00691494 0.00692283 0.00693072 0.0069386 0.00694649 0.00695438 0.00696227 0.00697015 0.00697804 0.00698593 0.00699381 0.0070017 0.00700959 0.00701748 0.00702536 0.00703325 0.00704114 0.00704902 0.00705691 0.0070648 0.00707268 0.00708057 0.00708846 0.00709635 0.00710423 0.00711212 0.00712001 0.00712789 0.00713578 0.00714367 0.00715156 0.00715944 0.00716733 0.00717522 0.0071831 0.00719099 0.00719888 0.00720677 0.00721465 0.00722254 0.00723043 0.00723831 0.0072462 0.00725409 0.00726197 0.00726986 0.00727775 0.00728564 0.00729352 0.00730141 0.0073093 0.00731718 0.00732507 0.00733296 0.00734085 0.00734873 0.00735662 0.00736451 0.00737239 0.00738028 0.00738817 0.00739605 0.00740394 0.00741183 0.00741972 0.0074276 0.00743549 0.00744338 0.00745126 0.00745915 0.00746704 0.00747493 0.00748281 0.0074907 0.00749859 0.00750647 0.00751436 0.00752225 0.00753014 0.00753802 0.00754591 0.0075538 0.00756168 0.00756957 0.00757746 0.00758534 0.00759323 0.00760112 0.00760901 0.00761689 0.00762478 0.00763267 0.00764055 0.00764844 0.00765633 0.00766422 0.0076721 0.00767999 0.00768788 0.00769576 +-0.0017342 -0.0016249 -0.00140051 -0.000861622 5.02948E-05 0.00119297 0.00243657 0.00369324 0.00487882 0.00586884 0.00648352 0.00669986 0.0067481 0.00676222 0.00677103 0.00677906 0.00678697 0.00679487 0.00680276 0.00681066 0.00681855 0.00682645 0.00683434 0.00684224 0.00685013 0.00685802 0.00686592 0.00687381 0.00688171 0.0068896 0.0068975 0.00690539 0.00691329 0.00692118 0.00692907 0.00693697 0.00694486 0.00695276 0.00696065 0.00696855 0.00697644 0.00698434 0.00699223 0.00700012 0.00700802 0.00701591 0.00702381 0.0070317 0.0070396 0.00704749 0.00705539 0.00706328 0.00707117 0.00707907 0.00708696 0.00709486 0.00710275 0.00711065 0.00711854 0.00712644 0.00713433 0.00714222 0.00715012 0.00715801 0.00716591 0.0071738 0.0071817 0.00718959 0.00719749 0.00720538 0.00721327 0.00722117 0.00722906 0.00723696 0.00724485 0.00725275 0.00726064 0.00726854 0.00727643 0.00728433 0.00729222 0.00730011 0.00730801 0.0073159 0.0073238 0.00733169 0.00733959 0.00734748 0.00735538 0.00736327 0.00737116 0.00737906 0.00738695 0.00739485 0.00740274 0.00741064 0.00741853 0.00742643 0.00743432 0.00744221 0.00745011 0.007458 0.0074659 0.00747379 0.00748169 0.00748958 0.00749748 0.00750537 0.00751326 0.00752116 0.00752905 0.00753695 0.00754484 0.00755274 0.00756063 0.00756853 0.00757642 0.00758431 0.00759221 0.0076001 0.007608 0.00761589 0.00762379 0.00763168 0.00763958 0.00764747 0.00765536 0.00766326 0.00767115 0.00767905 0.00768694 0.00769484 0.00770273 +-0.00173604 -0.00162657 -0.00140176 -0.000862152 5.03746E-05 0.00119347 0.00243743 0.00369452 0.00488074 0.00587189 0.00648821 0.00670562 0.00675413 0.0067683 0.00677712 0.00678516 0.00679308 0.00680098 0.00680889 0.00681679 0.00682469 0.00683259 0.00684049 0.00684839 0.0068563 0.0068642 0.0068721 0.00688 0.0068879 0.00689581 0.00690371 0.00691161 0.00691951 0.00692741 0.00693531 0.00694322 0.00695112 0.00695902 0.00696692 0.00697482 0.00698273 0.00699063 0.00699853 0.00700643 0.00701433 0.00702224 0.00703014 0.00703804 0.00704594 0.00705384 0.00706174 0.00706965 0.00707755 0.00708545 0.00709335 0.00710125 0.00710916 0.00711706 0.00712496 0.00713286 0.00714076 0.00714866 0.00715657 0.00716447 0.00717237 0.00718027 0.00718817 0.00719608 0.00720398 0.00721188 0.00721978 0.00722768 0.00723559 0.00724349 0.00725139 0.00725929 0.00726719 0.00727509 0.007283 0.0072909 0.0072988 0.0073067 0.0073146 0.00732251 0.00733041 0.00733831 0.00734621 0.00735411 0.00736201 0.00736992 0.00737782 0.00738572 0.00739362 0.00740152 0.00740943 0.00741733 0.00742523 0.00743313 0.00744103 0.00744894 0.00745684 0.00746474 0.00747264 0.00748054 0.00748844 0.00749635 0.00750425 0.00751215 0.00752005 0.00752795 0.00753586 0.00754376 0.00755166 0.00755956 0.00756746 0.00757536 0.00758327 0.00759117 0.00759907 0.00760697 0.00761487 0.00762278 0.00763068 0.00763858 0.00764648 0.00765438 0.00766229 0.00767019 0.00767809 0.00768599 0.00769389 0.00770179 0.0077097 +-0.00173788 -0.00162823 -0.00140301 -0.00086268 5.04545E-05 0.00119397 0.00243829 0.0036958 0.00488266 0.00587493 0.0064929 0.00671137 0.00676016 0.00677437 0.00678321 0.00679125 0.00679918 0.0068071 0.006815 0.00682291 0.00683082 0.00683873 0.00684664 0.00685455 0.00686246 0.00687037 0.00687828 0.00688619 0.0068941 0.00690201 0.00690992 0.00691782 0.00692573 0.00693364 0.00694155 0.00694946 0.00695737 0.00696528 0.00697319 0.0069811 0.00698901 0.00699692 0.00700483 0.00701274 0.00702064 0.00702855 0.00703646 0.00704437 0.00705228 0.00706019 0.0070681 0.00707601 0.00708392 0.00709183 0.00709974 0.00710765 0.00711556 0.00712346 0.00713137 0.00713928 0.00714719 0.0071551 0.00716301 0.00717092 0.00717883 0.00718674 0.00719465 0.00720256 0.00721047 0.00721838 0.00722628 0.00723419 0.0072421 0.00725001 0.00725792 0.00726583 0.00727374 0.00728165 0.00728956 0.00729747 0.00730538 0.00731329 0.0073212 0.0073291 0.00733701 0.00734492 0.00735283 0.00736074 0.00736865 0.00737656 0.00738447 0.00739238 0.00740029 0.0074082 0.00741611 0.00742402 0.00743192 0.00743983 0.00744774 0.00745565 0.00746356 0.00747147 0.00747938 0.00748729 0.0074952 0.00750311 0.00751102 0.00751893 0.00752684 0.00753474 0.00754265 0.00755056 0.00755847 0.00756638 0.00757429 0.0075822 0.00759011 0.00759802 0.00760593 0.00761384 0.00762175 0.00762966 0.00763756 0.00764547 0.00765338 0.00766129 0.0076692 0.00767711 0.00768502 0.00769293 0.00770084 0.00770875 0.00771666 +-0.00173972 -0.0016299 -0.00140425 -0.000863208 5.05343E-05 0.00119447 0.00243915 0.00369708 0.00488458 0.00587797 0.00649757 0.00671712 0.00676618 0.00678044 0.00678929 0.00679735 0.00680528 0.0068132 0.00682112 0.00682904 0.00683695 0.00684487 0.00685279 0.0068607 0.00686862 0.00687654 0.00688445 0.00689237 0.00690029 0.0069082 0.00691612 0.00692404 0.00693195 0.00693987 0.00694779 0.0069557 0.00696362 0.00697154 0.00697945 0.00698737 0.00699529 0.0070032 0.00701112 0.00701904 0.00702695 0.00703487 0.00704279 0.0070507 0.00705862 0.00706654 0.00707445 0.00708237 0.00709029 0.0070982 0.00710612 0.00711404 0.00712195 0.00712987 0.00713779 0.0071457 0.00715362 0.00716154 0.00716945 0.00717737 0.00718529 0.0071932 0.00720112 0.00720904 0.00721695 0.00722487 0.00723278 0.0072407 0.00724862 0.00725653 0.00726445 0.00727237 0.00728028 0.0072882 0.00729612 0.00730403 0.00731195 0.00731987 0.00732778 0.0073357 0.00734362 0.00735153 0.00735945 0.00736737 0.00737528 0.0073832 0.00739112 0.00739903 0.00740695 0.00741487 0.00742278 0.0074307 0.00743862 0.00744653 0.00745445 0.00746237 0.00747028 0.0074782 0.00748612 0.00749403 0.00750195 0.00750987 0.00751778 0.0075257 0.00753362 0.00754153 0.00754945 0.00755737 0.00756528 0.0075732 0.00758112 0.00758903 0.00759695 0.00760487 0.00761278 0.0076207 0.00762862 0.00763653 0.00764445 0.00765237 0.00766028 0.0076682 0.00767611 0.00768403 0.00769195 0.00769986 0.00770778 0.0077157 0.00772361 +-0.00174155 -0.00163157 -0.0014055 -0.000863735 5.06142E-05 0.00119497 0.00244001 0.00369836 0.00488649 0.005881 0.00650224 0.00672286 0.0067722 0.00678651 0.00679538 0.00680344 0.00681138 0.00681931 0.00682723 0.00683516 0.00684308 0.00685101 0.00685893 0.00686685 0.00687478 0.0068827 0.00689063 0.00689855 0.00690647 0.0069144 0.00692232 0.00693025 0.00693817 0.00694609 0.00695402 0.00696194 0.00696987 0.00697779 0.00698571 0.00699364 0.00700156 0.00700949 0.00701741 0.00702533 0.00703326 0.00704118 0.00704911 0.00705703 0.00706495 0.00707288 0.0070808 0.00708873 0.00709665 0.00710457 0.0071125 0.00712042 0.00712835 0.00713627 0.00714419 0.00715212 0.00716004 0.00716797 0.00717589 0.00718381 0.00719174 0.00719966 0.00720759 0.00721551 0.00722343 0.00723136 0.00723928 0.00724721 0.00725513 0.00726305 0.00727098 0.0072789 0.00728683 0.00729475 0.00730267 0.0073106 0.00731852 0.00732645 0.00733437 0.00734229 0.00735022 0.00735814 0.00736607 0.00737399 0.00738191 0.00738984 0.00739776 0.00740569 0.00741361 0.00742153 0.00742946 0.00743738 0.00744531 0.00745323 0.00746115 0.00746908 0.007477 0.00748493 0.00749285 0.00750077 0.0075087 0.00751662 0.00752455 0.00753247 0.00754039 0.00754832 0.00755624 0.00756417 0.00757209 0.00758001 0.00758794 0.00759586 0.00760378 0.00761171 0.00761963 0.00762756 0.00763548 0.0076434 0.00765133 0.00765925 0.00766718 0.0076751 0.00768302 0.00769095 0.00769887 0.0077068 0.00771472 0.00772264 0.00773057 +-0.00174339 -0.00163323 -0.00140674 -0.000864262 5.06941E-05 0.00119547 0.00244087 0.00369963 0.0048884 0.00588402 0.0065069 0.0067286 0.00677821 0.00679258 0.00680146 0.00680953 0.00681748 0.00682541 0.00683335 0.00684128 0.00684921 0.00685714 0.00686507 0.006873 0.00688093 0.00688886 0.0068968 0.00690473 0.00691266 0.00692059 0.00692852 0.00693645 0.00694438 0.00695232 0.00696025 0.00696818 0.00697611 0.00698404 0.00699197 0.0069999 0.00700783 0.00701577 0.0070237 0.00703163 0.00703956 0.00704749 0.00705542 0.00706335 0.00707129 0.00707922 0.00708715 0.00709508 0.00710301 0.00711094 0.00711887 0.00712681 0.00713474 0.00714267 0.0071506 0.00715853 0.00716646 0.00717439 0.00718232 0.00719026 0.00719819 0.00720612 0.00721405 0.00722198 0.00722991 0.00723784 0.00724578 0.00725371 0.00726164 0.00726957 0.0072775 0.00728543 0.00729336 0.00730129 0.00730923 0.00731716 0.00732509 0.00733302 0.00734095 0.00734888 0.00735681 0.00736475 0.00737268 0.00738061 0.00738854 0.00739647 0.0074044 0.00741233 0.00742027 0.0074282 0.00743613 0.00744406 0.00745199 0.00745992 0.00746785 0.00747578 0.00748372 0.00749165 0.00749958 0.00750751 0.00751544 0.00752337 0.0075313 0.00753924 0.00754717 0.0075551 0.00756303 0.00757096 0.00757889 0.00758682 0.00759475 0.00760269 0.00761062 0.00761855 0.00762648 0.00763441 0.00764234 0.00765027 0.00765821 0.00766614 0.00767407 0.007682 0.00768993 0.00769786 0.00770579 0.00771373 0.00772166 0.00772959 0.00773752 +-0.00174523 -0.0016349 -0.00140798 -0.000864787 5.0774E-05 0.00119597 0.00244172 0.00370091 0.00489031 0.00588704 0.00651156 0.00673433 0.00678422 0.00679864 0.00680753 0.00681561 0.00682357 0.00683151 0.00683945 0.00684739 0.00685533 0.00686327 0.00687121 0.00687915 0.00688708 0.00689502 0.00690296 0.0069109 0.00691884 0.00692678 0.00693472 0.00694266 0.00695059 0.00695853 0.00696647 0.00697441 0.00698235 0.00699029 0.00699823 0.00700617 0.0070141 0.00702204 0.00702998 0.00703792 0.00704586 0.0070538 0.00706174 0.00706968 0.00707761 0.00708555 0.00709349 0.00710143 0.00710937 0.00711731 0.00712525 0.00713319 0.00714112 0.00714906 0.007157 0.00716494 0.00717288 0.00718082 0.00718876 0.00719669 0.00720463 0.00721257 0.00722051 0.00722845 0.00723639 0.00724433 0.00725227 0.0072602 0.00726814 0.00727608 0.00728402 0.00729196 0.0072999 0.00730784 0.00731578 0.00732371 0.00733165 0.00733959 0.00734753 0.00735547 0.00736341 0.00737135 0.00737929 0.00738722 0.00739516 0.0074031 0.00741104 0.00741898 0.00742692 0.00743486 0.0074428 0.00745073 0.00745867 0.00746661 0.00747455 0.00748249 0.00749043 0.00749837 0.0075063 0.00751424 0.00752218 0.00753012 0.00753806 0.007546 0.00755394 0.00756188 0.00756981 0.00757775 0.00758569 0.00759363 0.00760157 0.00760951 0.00761745 0.00762539 0.00763332 0.00764126 0.0076492 0.00765714 0.00766508 0.00767302 0.00768096 0.0076889 0.00769683 0.00770477 0.00771271 0.00772065 0.00772859 0.00773653 0.00774447 +-0.00174707 -0.00163657 -0.00140922 -0.000865312 5.0854E-05 0.00119647 0.00244258 0.00370218 0.00489221 0.00589005 0.0065162 0.00674006 0.00679023 0.0068047 0.00681361 0.00682169 0.00682966 0.00683761 0.00684556 0.0068535 0.00686145 0.0068694 0.00687734 0.00688529 0.00689323 0.00690118 0.00690913 0.00691707 0.00692502 0.00693296 0.00694091 0.00694886 0.0069568 0.00696475 0.00697269 0.00698064 0.00698859 0.00699653 0.00700448 0.00701242 0.00702037 0.00702832 0.00703626 0.00704421 0.00705216 0.0070601 0.00706805 0.00707599 0.00708394 0.00709189 0.00709983 0.00710778 0.00711572 0.00712367 0.00713162 0.00713956 0.00714751 0.00715545 0.0071634 0.00717135 0.00717929 0.00718724 0.00719518 0.00720313 0.00721108 0.00721902 0.00722697 0.00723491 0.00724286 0.00725081 0.00725875 0.0072667 0.00727465 0.00728259 0.00729054 0.00729848 0.00730643 0.00731438 0.00732232 0.00733027 0.00733821 0.00734616 0.00735411 0.00736205 0.00737 0.00737794 0.00738589 0.00739384 0.00740178 0.00740973 0.00741767 0.00742562 0.00743357 0.00744151 0.00744946 0.00745741 0.00746535 0.0074733 0.00748124 0.00748919 0.00749714 0.00750508 0.00751303 0.00752097 0.00752892 0.00753687 0.00754481 0.00755276 0.0075607 0.00756865 0.0075766 0.00758454 0.00759249 0.00760043 0.00760838 0.00761633 0.00762427 0.00763222 0.00764017 0.00764811 0.00765606 0.007664 0.00767195 0.0076799 0.00768784 0.00769579 0.00770373 0.00771168 0.00771963 0.00772757 0.00773552 0.00774346 0.00775141 +-0.0017489 -0.00163823 -0.00141046 -0.000865836 5.09339E-05 0.00119696 0.00244343 0.00370345 0.00489411 0.00589305 0.00652084 0.00674578 0.00679624 0.00681076 0.00681968 0.00682777 0.00683575 0.0068437 0.00685166 0.00685961 0.00686757 0.00687552 0.00688347 0.00689143 0.00689938 0.00690733 0.00691529 0.00692324 0.00693119 0.00693915 0.0069471 0.00695505 0.00696301 0.00697096 0.00697891 0.00698687 0.00699482 0.00700277 0.00701073 0.00701868 0.00702663 0.00703459 0.00704254 0.00705049 0.00705845 0.0070664 0.00707435 0.00708231 0.00709026 0.00709821 0.00710617 0.00711412 0.00712208 0.00713003 0.00713798 0.00714594 0.00715389 0.00716184 0.0071698 0.00717775 0.0071857 0.00719366 0.00720161 0.00720956 0.00721752 0.00722547 0.00723342 0.00724138 0.00724933 0.00725728 0.00726524 0.00727319 0.00728114 0.0072891 0.00729705 0.007305 0.00731296 0.00732091 0.00732886 0.00733682 0.00734477 0.00735273 0.00736068 0.00736863 0.00737659 0.00738454 0.00739249 0.00740045 0.0074084 0.00741635 0.00742431 0.00743226 0.00744021 0.00744817 0.00745612 0.00746407 0.00747203 0.00747998 0.00748793 0.00749589 0.00750384 0.00751179 0.00751975 0.0075277 0.00753565 0.00754361 0.00755156 0.00755951 0.00756747 0.00757542 0.00758338 0.00759133 0.00759928 0.00760724 0.00761519 0.00762314 0.0076311 0.00763905 0.007647 0.00765496 0.00766291 0.00767086 0.00767882 0.00768677 0.00769472 0.00770268 0.00771063 0.00771858 0.00772654 0.00773449 0.00774244 0.0077504 0.00775835 +-0.00175074 -0.00163989 -0.0014117 -0.000866359 5.10139E-05 0.00119746 0.00244428 0.00370471 0.004896 0.00589605 0.00652547 0.0067515 0.00680224 0.00681681 0.00682575 0.00683385 0.00684183 0.0068498 0.00685776 0.00686572 0.00687368 0.00688164 0.0068896 0.00689756 0.00690552 0.00691348 0.00692144 0.0069294 0.00693736 0.00694533 0.00695329 0.00696125 0.00696921 0.00697717 0.00698513 0.00699309 0.00700105 0.00700901 0.00701697 0.00702493 0.00703289 0.00704085 0.00704882 0.00705678 0.00706474 0.0070727 0.00708066 0.00708862 0.00709658 0.00710454 0.0071125 0.00712046 0.00712842 0.00713638 0.00714435 0.00715231 0.00716027 0.00716823 0.00717619 0.00718415 0.00719211 0.00720007 0.00720803 0.00721599 0.00722395 0.00723191 0.00723987 0.00724784 0.0072558 0.00726376 0.00727172 0.00727968 0.00728764 0.0072956 0.00730356 0.00731152 0.00731948 0.00732744 0.0073354 0.00734337 0.00735133 0.00735929 0.00736725 0.00737521 0.00738317 0.00739113 0.00739909 0.00740705 0.00741501 0.00742297 0.00743093 0.0074389 0.00744686 0.00745482 0.00746278 0.00747074 0.0074787 0.00748666 0.00749462 0.00750258 0.00751054 0.0075185 0.00752646 0.00753442 0.00754239 0.00755035 0.00755831 0.00756627 0.00757423 0.00758219 0.00759015 0.00759811 0.00760607 0.00761403 0.00762199 0.00762995 0.00763792 0.00764588 0.00765384 0.0076618 0.00766976 0.00767772 0.00768568 0.00769364 0.0077016 0.00770956 0.00771752 0.00772548 0.00773344 0.00774141 0.00774937 0.00775733 0.00776529 +-0.00175257 -0.00164156 -0.00141294 -0.000866881 5.10939E-05 0.00119795 0.00244513 0.00370598 0.00489789 0.00589904 0.00653009 0.00675722 0.00680824 0.00682286 0.00683181 0.00683992 0.00684791 0.00685588 0.00686385 0.00687182 0.00687979 0.00688776 0.00689572 0.00690369 0.00691166 0.00691963 0.0069276 0.00693557 0.00694353 0.0069515 0.00695947 0.00696744 0.00697541 0.00698337 0.00699134 0.00699931 0.00700728 0.00701525 0.00702321 0.00703118 0.00703915 0.00704712 0.00705509 0.00706306 0.00707102 0.00707899 0.00708696 0.00709493 0.0071029 0.00711086 0.00711883 0.0071268 0.00713477 0.00714274 0.00715071 0.00715867 0.00716664 0.00717461 0.00718258 0.00719055 0.00719851 0.00720648 0.00721445 0.00722242 0.00723039 0.00723836 0.00724632 0.00725429 0.00726226 0.00727023 0.0072782 0.00728616 0.00729413 0.0073021 0.00731007 0.00731804 0.007326 0.00733397 0.00734194 0.00734991 0.00735788 0.00736585 0.00737381 0.00738178 0.00738975 0.00739772 0.00740569 0.00741365 0.00742162 0.00742959 0.00743756 0.00744553 0.0074535 0.00746146 0.00746943 0.0074774 0.00748537 0.00749334 0.0075013 0.00750927 0.00751724 0.00752521 0.00753318 0.00754114 0.00754911 0.00755708 0.00756505 0.00757302 0.00758099 0.00758895 0.00759692 0.00760489 0.00761286 0.00762083 0.00762879 0.00763676 0.00764473 0.0076527 0.00766067 0.00766864 0.0076766 0.00768457 0.00769254 0.00770051 0.00770848 0.00771644 0.00772441 0.00773238 0.00774035 0.00774832 0.00775629 0.00776425 0.00777222 +-0.00175441 -0.00164322 -0.00141418 -0.000867403 5.11739E-05 0.00119845 0.00244598 0.00370724 0.00489978 0.00590203 0.0065347 0.00676293 0.00681423 0.00682891 0.00683787 0.00684599 0.00685399 0.00686197 0.00686994 0.00687792 0.0068859 0.00689387 0.00690185 0.00690982 0.0069178 0.00692577 0.00693375 0.00694172 0.0069497 0.00695767 0.00696565 0.00697363 0.0069816 0.00698958 0.00699755 0.00700553 0.0070135 0.00702148 0.00702945 0.00703743 0.00704541 0.00705338 0.00706136 0.00706933 0.00707731 0.00708528 0.00709326 0.00710123 0.00710921 0.00711718 0.00712516 0.00713314 0.00714111 0.00714909 0.00715706 0.00716504 0.00717301 0.00718099 0.00718896 0.00719694 0.00720492 0.00721289 0.00722087 0.00722884 0.00723682 0.00724479 0.00725277 0.00726074 0.00726872 0.00727669 0.00728467 0.00729265 0.00730062 0.0073086 0.00731657 0.00732455 0.00733252 0.0073405 0.00734847 0.00735645 0.00736443 0.0073724 0.00738038 0.00738835 0.00739633 0.0074043 0.00741228 0.00742025 0.00742823 0.00743621 0.00744418 0.00745216 0.00746013 0.00746811 0.00747608 0.00748406 0.00749203 0.00750001 0.00750798 0.00751596 0.00752394 0.00753191 0.00753989 0.00754786 0.00755584 0.00756381 0.00757179 0.00757976 0.00758774 0.00759572 0.00760369 0.00761167 0.00761964 0.00762762 0.00763559 0.00764357 0.00765154 0.00765952 0.00766749 0.00767547 0.00768345 0.00769142 0.0076994 0.00770737 0.00771535 0.00772332 0.0077313 0.00773927 0.00774725 0.00775523 0.0077632 0.00777118 0.00777915 +-0.00175624 -0.00164488 -0.00141541 -0.000867924 5.12539E-05 0.00119894 0.00244683 0.0037085 0.00490166 0.005905 0.00653931 0.00676863 0.00682022 0.00683495 0.00684393 0.00685206 0.00686006 0.00686805 0.00687603 0.00688402 0.006892 0.00689998 0.00690796 0.00691595 0.00692393 0.00693191 0.0069399 0.00694788 0.00695586 0.00696384 0.00697183 0.00697981 0.00698779 0.00699578 0.00700376 0.00701174 0.00701972 0.00702771 0.00703569 0.00704367 0.00705166 0.00705964 0.00706762 0.0070756 0.00708359 0.00709157 0.00709955 0.00710754 0.00711552 0.0071235 0.00713148 0.00713947 0.00714745 0.00715543 0.00716342 0.0071714 0.00717938 0.00718736 0.00719535 0.00720333 0.00721131 0.0072193 0.00722728 0.00723526 0.00724324 0.00725123 0.00725921 0.00726719 0.00727518 0.00728316 0.00729114 0.00729912 0.00730711 0.00731509 0.00732307 0.00733106 0.00733904 0.00734702 0.007355 0.00736299 0.00737097 0.00737895 0.00738694 0.00739492 0.0074029 0.00741088 0.00741887 0.00742685 0.00743483 0.00744282 0.0074508 0.00745878 0.00746676 0.00747475 0.00748273 0.00749071 0.0074987 0.00750668 0.00751466 0.00752264 0.00753063 0.00753861 0.00754659 0.00755458 0.00756256 0.00757054 0.00757852 0.00758651 0.00759449 0.00760247 0.00761046 0.00761844 0.00762642 0.0076344 0.00764239 0.00765037 0.00765835 0.00766634 0.00767432 0.0076823 0.00769028 0.00769827 0.00770625 0.00771423 0.00772222 0.0077302 0.00773818 0.00774616 0.00775415 0.00776213 0.00777011 0.0077781 0.00778608 +-0.00175807 -0.00164654 -0.00141665 -0.000868444 5.1334E-05 0.00119944 0.00244768 0.00370976 0.00490354 0.00590798 0.00654391 0.00677433 0.00682621 0.006841 0.00684999 0.00685812 0.00686614 0.00687413 0.00688212 0.00689011 0.0068981 0.00690609 0.00691408 0.00692207 0.00693006 0.00693805 0.00694604 0.00695403 0.00696202 0.00697001 0.006978 0.00698599 0.00699398 0.00700197 0.00700996 0.00701795 0.00702594 0.00703393 0.00704192 0.00704991 0.0070579 0.00706589 0.00707388 0.00708187 0.00708986 0.00709786 0.00710585 0.00711384 0.00712183 0.00712982 0.00713781 0.0071458 0.00715379 0.00716178 0.00716977 0.00717776 0.00718575 0.00719374 0.00720173 0.00720972 0.00721771 0.0072257 0.00723369 0.00724168 0.00724967 0.00725766 0.00726565 0.00727364 0.00728163 0.00728962 0.00729761 0.0073056 0.00731359 0.00732158 0.00732957 0.00733756 0.00734555 0.00735354 0.00736153 0.00736952 0.00737751 0.0073855 0.00739349 0.00740148 0.00740947 0.00741746 0.00742545 0.00743344 0.00744143 0.00744942 0.00745741 0.0074654 0.00747339 0.00748138 0.00748937 0.00749736 0.00750536 0.00751335 0.00752134 0.00752933 0.00753732 0.00754531 0.0075533 0.00756129 0.00756928 0.00757727 0.00758526 0.00759325 0.00760124 0.00760923 0.00761722 0.00762521 0.0076332 0.00764119 0.00764918 0.00765717 0.00766516 0.00767315 0.00768114 0.00768913 0.00769712 0.00770511 0.0077131 0.00772109 0.00772908 0.00773707 0.00774506 0.00775305 0.00776104 0.00776903 0.00777702 0.00778501 0.007793 +-0.00175991 -0.0016482 -0.00141788 -0.000868963 5.1414E-05 0.00119993 0.00244853 0.00371102 0.00490542 0.00591094 0.0065485 0.00678003 0.00683219 0.00684703 0.00685604 0.00686419 0.0068722 0.00688021 0.0068882 0.0068962 0.0069042 0.0069122 0.00692019 0.00692819 0.00693619 0.00694419 0.00695218 0.00696018 0.00696818 0.00697618 0.00698417 0.00699217 0.00700017 0.00700817 0.00701616 0.00702416 0.00703216 0.00704016 0.00704815 0.00705615 0.00706415 0.00707215 0.00708014 0.00708814 0.00709614 0.00710414 0.00711213 0.00712013 0.00712813 0.00713613 0.00714412 0.00715212 0.00716012 0.00716812 0.00717611 0.00718411 0.00719211 0.00720011 0.0072081 0.0072161 0.0072241 0.0072321 0.00724009 0.00724809 0.00725609 0.00726409 0.00727208 0.00728008 0.00728808 0.00729608 0.00730407 0.00731207 0.00732007 0.00732807 0.00733607 0.00734406 0.00735206 0.00736006 0.00736806 0.00737605 0.00738405 0.00739205 0.00740005 0.00740804 0.00741604 0.00742404 0.00743204 0.00744003 0.00744803 0.00745603 0.00746403 0.00747202 0.00748002 0.00748802 0.00749602 0.00750401 0.00751201 0.00752001 0.00752801 0.007536 0.007544 0.007552 0.00756 0.00756799 0.00757599 0.00758399 0.00759199 0.00759998 0.00760798 0.00761598 0.00762398 0.00763197 0.00763997 0.00764797 0.00765597 0.00766396 0.00767196 0.00767996 0.00768796 0.00769595 0.00770395 0.00771195 0.00771995 0.00772794 0.00773594 0.00774394 0.00775194 0.00775993 0.00776793 0.00777593 0.00778393 0.00779192 0.00779992 +-0.00176174 -0.00164986 -0.00141911 -0.000869482 5.14941E-05 0.00120042 0.00244937 0.00371227 0.00490729 0.0059139 0.00655308 0.00678572 0.00683818 0.00685307 0.00686209 0.00687024 0.00687827 0.00688628 0.00689428 0.00690229 0.00691029 0.0069183 0.0069263 0.00693431 0.00694231 0.00695032 0.00695832 0.00696633 0.00697433 0.00698234 0.00699034 0.00699835 0.00700635 0.00701436 0.00702236 0.00703037 0.00703837 0.00704638 0.00705438 0.00706239 0.00707039 0.0070784 0.0070864 0.00709441 0.00710241 0.00711041 0.00711842 0.00712642 0.00713443 0.00714243 0.00715044 0.00715844 0.00716645 0.00717445 0.00718246 0.00719046 0.00719847 0.00720647 0.00721448 0.00722248 0.00723049 0.00723849 0.0072465 0.0072545 0.00726251 0.00727051 0.00727852 0.00728652 0.00729453 0.00730253 0.00731054 0.00731854 0.00732655 0.00733455 0.00734256 0.00735056 0.00735857 0.00736657 0.00737458 0.00738258 0.00739059 0.00739859 0.0074066 0.0074146 0.00742261 0.00743061 0.00743861 0.00744662 0.00745462 0.00746263 0.00747063 0.00747864 0.00748664 0.00749465 0.00750265 0.00751066 0.00751866 0.00752667 0.00753467 0.00754268 0.00755068 0.00755869 0.00756669 0.0075747 0.0075827 0.00759071 0.00759871 0.00760672 0.00761472 0.00762273 0.00763073 0.00763874 0.00764674 0.00765475 0.00766275 0.00767076 0.00767876 0.00768677 0.00769477 0.00770278 0.00771078 0.00771879 0.00772679 0.0077348 0.0077428 0.0077508 0.00775881 0.00776681 0.00777482 0.00778282 0.00779083 0.00779883 0.00780684 +-0.00176357 -0.00165152 -0.00142035 -0.000869999 5.15742E-05 0.00120092 0.00245021 0.00371353 0.00490916 0.00591685 0.00655766 0.0067914 0.00684415 0.0068591 0.00686814 0.0068763 0.00688433 0.00689235 0.00690036 0.00690837 0.00691639 0.0069244 0.00693241 0.00694042 0.00694843 0.00695645 0.00696446 0.00697247 0.00698048 0.00698849 0.00699651 0.00700452 0.00701253 0.00702054 0.00702856 0.00703657 0.00704458 0.00705259 0.0070606 0.00706862 0.00707663 0.00708464 0.00709265 0.00710067 0.00710868 0.00711669 0.0071247 0.00713271 0.00714073 0.00714874 0.00715675 0.00716476 0.00717278 0.00718079 0.0071888 0.00719681 0.00720482 0.00721284 0.00722085 0.00722886 0.00723687 0.00724489 0.0072529 0.00726091 0.00726892 0.00727693 0.00728495 0.00729296 0.00730097 0.00730898 0.007317 0.00732501 0.00733302 0.00734103 0.00734904 0.00735706 0.00736507 0.00737308 0.00738109 0.00738911 0.00739712 0.00740513 0.00741314 0.00742115 0.00742917 0.00743718 0.00744519 0.0074532 0.00746122 0.00746923 0.00747724 0.00748525 0.00749326 0.00750128 0.00750929 0.0075173 0.00752531 0.00753333 0.00754134 0.00754935 0.00755736 0.00756537 0.00757339 0.0075814 0.00758941 0.00759742 0.00760543 0.00761345 0.00762146 0.00762947 0.00763748 0.0076455 0.00765351 0.00766152 0.00766953 0.00767754 0.00768556 0.00769357 0.00770158 0.00770959 0.00771761 0.00772562 0.00773363 0.00774164 0.00774965 0.00775767 0.00776568 0.00777369 0.0077817 0.00778972 0.00779773 0.00780574 0.00781375 +-0.0017654 -0.00165317 -0.00142158 -0.000870516 5.16543E-05 0.00120141 0.00245106 0.00371478 0.00491103 0.0059198 0.00656222 0.00679708 0.00685013 0.00686513 0.00687418 0.00688235 0.00689039 0.00689841 0.00690643 0.00691445 0.00692247 0.00693049 0.00693851 0.00694653 0.00695455 0.00696257 0.00697059 0.00697861 0.00698663 0.00699465 0.00700267 0.00701069 0.00701871 0.00702673 0.00703475 0.00704277 0.00705079 0.00705881 0.00706683 0.00707485 0.00708286 0.00709088 0.0070989 0.00710692 0.00711494 0.00712296 0.00713098 0.007139 0.00714702 0.00715504 0.00716306 0.00717108 0.0071791 0.00718712 0.00719514 0.00720316 0.00721118 0.0072192 0.00722722 0.00723524 0.00724326 0.00725128 0.00725929 0.00726731 0.00727533 0.00728335 0.00729137 0.00729939 0.00730741 0.00731543 0.00732345 0.00733147 0.00733949 0.00734751 0.00735553 0.00736355 0.00737157 0.00737959 0.00738761 0.00739563 0.00740365 0.00741167 0.00741969 0.0074277 0.00743572 0.00744374 0.00745176 0.00745978 0.0074678 0.00747582 0.00748384 0.00749186 0.00749988 0.0075079 0.00751592 0.00752394 0.00753196 0.00753998 0.007548 0.00755602 0.00756404 0.00757206 0.00758008 0.0075881 0.00759612 0.00760413 0.00761215 0.00762017 0.00762819 0.00763621 0.00764423 0.00765225 0.00766027 0.00766829 0.00767631 0.00768433 0.00769235 0.00770037 0.00770839 0.00771641 0.00772443 0.00773245 0.00774047 0.00774849 0.00775651 0.00776453 0.00777255 0.00778056 0.00778858 0.0077966 0.00780462 0.00781264 0.00782066 +-0.00176723 -0.00165483 -0.00142281 -0.000871032 5.17345E-05 0.0012019 0.0024519 0.00371602 0.00491289 0.00592274 0.00656678 0.00680276 0.0068561 0.00687116 0.00688022 0.0068884 0.00689645 0.00690448 0.00691251 0.00692053 0.00692856 0.00693659 0.00694461 0.00695264 0.00696067 0.00696869 0.00697672 0.00698475 0.00699278 0.0070008 0.00700883 0.00701686 0.00702488 0.00703291 0.00704094 0.00704896 0.00705699 0.00706502 0.00707304 0.00708107 0.0070891 0.00709712 0.00710515 0.00711318 0.0071212 0.00712923 0.00713726 0.00714529 0.00715331 0.00716134 0.00716937 0.00717739 0.00718542 0.00719345 0.00720147 0.0072095 0.00721753 0.00722555 0.00723358 0.00724161 0.00724963 0.00725766 0.00726569 0.00727372 0.00728174 0.00728977 0.0072978 0.00730582 0.00731385 0.00732188 0.0073299 0.00733793 0.00734596 0.00735398 0.00736201 0.00737004 0.00737806 0.00738609 0.00739412 0.00740215 0.00741017 0.0074182 0.00742623 0.00743425 0.00744228 0.00745031 0.00745833 0.00746636 0.00747439 0.00748241 0.00749044 0.00749847 0.00750649 0.00751452 0.00752255 0.00753057 0.0075386 0.00754663 0.00755466 0.00756268 0.00757071 0.00757874 0.00758676 0.00759479 0.00760282 0.00761084 0.00761887 0.0076269 0.00763492 0.00764295 0.00765098 0.007659 0.00766703 0.00767506 0.00768309 0.00769111 0.00769914 0.00770717 0.00771519 0.00772322 0.00773125 0.00773927 0.0077473 0.00775533 0.00776335 0.00777138 0.00777941 0.00778743 0.00779546 0.00780349 0.00781152 0.00781954 0.00782757 +-0.00176906 -0.00165649 -0.00142403 -0.000871547 5.18146E-05 0.00120239 0.00245274 0.00371727 0.00491475 0.00592567 0.00657133 0.00680843 0.00686207 0.00687718 0.00688626 0.00689445 0.0069025 0.00691054 0.00691857 0.00692661 0.00693464 0.00694268 0.00695071 0.00695875 0.00696678 0.00697481 0.00698285 0.00699088 0.00699892 0.00700695 0.00701499 0.00702302 0.00703105 0.00703909 0.00704712 0.00705516 0.00706319 0.00707122 0.00707926 0.00708729 0.00709533 0.00710336 0.0071114 0.00711943 0.00712746 0.0071355 0.00714353 0.00715157 0.0071596 0.00716763 0.00717567 0.0071837 0.00719174 0.00719977 0.00720781 0.00721584 0.00722387 0.00723191 0.00723994 0.00724798 0.00725601 0.00726404 0.00727208 0.00728011 0.00728815 0.00729618 0.00730422 0.00731225 0.00732028 0.00732832 0.00733635 0.00734439 0.00735242 0.00736046 0.00736849 0.00737652 0.00738456 0.00739259 0.00740063 0.00740866 0.00741669 0.00742473 0.00743276 0.0074408 0.00744883 0.00745687 0.0074649 0.00747293 0.00748097 0.007489 0.00749704 0.00750507 0.0075131 0.00752114 0.00752917 0.00753721 0.00754524 0.00755328 0.00756131 0.00756934 0.00757738 0.00758541 0.00759345 0.00760148 0.00760952 0.00761755 0.00762558 0.00763362 0.00764165 0.00764969 0.00765772 0.00766575 0.00767379 0.00768182 0.00768986 0.00769789 0.00770593 0.00771396 0.00772199 0.00773003 0.00773806 0.0077461 0.00775413 0.00776216 0.0077702 0.00777823 0.00778627 0.0077943 0.00780234 0.00781037 0.0078184 0.00782644 0.00783447 +-0.00177089 -0.00165814 -0.00142526 -0.000872062 5.18948E-05 0.00120288 0.00245358 0.00371852 0.00491661 0.0059286 0.00657588 0.0068141 0.00686803 0.0068832 0.00689229 0.00690049 0.00690855 0.0069166 0.00692464 0.00693268 0.00694072 0.00694876 0.00695681 0.00696485 0.00697289 0.00698093 0.00698897 0.00699701 0.00700506 0.0070131 0.00702114 0.00702918 0.00703722 0.00704526 0.0070533 0.00706135 0.00706939 0.00707743 0.00708547 0.00709351 0.00710155 0.00710959 0.00711764 0.00712568 0.00713372 0.00714176 0.0071498 0.00715784 0.00716589 0.00717393 0.00718197 0.00719001 0.00719805 0.00720609 0.00721413 0.00722218 0.00723022 0.00723826 0.0072463 0.00725434 0.00726238 0.00727043 0.00727847 0.00728651 0.00729455 0.00730259 0.00731063 0.00731867 0.00732672 0.00733476 0.0073428 0.00735084 0.00735888 0.00736692 0.00737496 0.00738301 0.00739105 0.00739909 0.00740713 0.00741517 0.00742321 0.00743126 0.0074393 0.00744734 0.00745538 0.00746342 0.00747146 0.0074795 0.00748755 0.00749559 0.00750363 0.00751167 0.00751971 0.00752775 0.00753579 0.00754384 0.00755188 0.00755992 0.00756796 0.007576 0.00758404 0.00759209 0.00760013 0.00760817 0.00761621 0.00762425 0.00763229 0.00764033 0.00764838 0.00765642 0.00766446 0.0076725 0.00768054 0.00768858 0.00769663 0.00770467 0.00771271 0.00772075 0.00772879 0.00773683 0.00774487 0.00775292 0.00776096 0.007769 0.00777704 0.00778508 0.00779312 0.00780116 0.00780921 0.00781725 0.00782529 0.00783333 0.00784137 +-0.00177272 -0.0016598 -0.00142649 -0.000872576 5.1975E-05 0.00120337 0.00245441 0.00371976 0.00491846 0.00593152 0.00658041 0.00681976 0.006874 0.00688922 0.00689833 0.00690653 0.0069146 0.00692265 0.0069307 0.00693875 0.0069468 0.00695485 0.0069629 0.00697095 0.006979 0.00698704 0.00699509 0.00700314 0.00701119 0.00701924 0.00702729 0.00703534 0.00704339 0.00705144 0.00705948 0.00706753 0.00707558 0.00708363 0.00709168 0.00709973 0.00710778 0.00711583 0.00712387 0.00713192 0.00713997 0.00714802 0.00715607 0.00716412 0.00717217 0.00718022 0.00718827 0.00719631 0.00720436 0.00721241 0.00722046 0.00722851 0.00723656 0.00724461 0.00725266 0.0072607 0.00726875 0.0072768 0.00728485 0.0072929 0.00730095 0.007309 0.00731705 0.0073251 0.00733314 0.00734119 0.00734924 0.00735729 0.00736534 0.00737339 0.00738144 0.00738949 0.00739753 0.00740558 0.00741363 0.00742168 0.00742973 0.00743778 0.00744583 0.00745388 0.00746193 0.00746997 0.00747802 0.00748607 0.00749412 0.00750217 0.00751022 0.00751827 0.00752632 0.00753436 0.00754241 0.00755046 0.00755851 0.00756656 0.00757461 0.00758266 0.00759071 0.00759876 0.0076068 0.00761485 0.0076229 0.00763095 0.007639 0.00764705 0.0076551 0.00766315 0.00767119 0.00767924 0.00768729 0.00769534 0.00770339 0.00771144 0.00771949 0.00772754 0.00773559 0.00774363 0.00775168 0.00775973 0.00776778 0.00777583 0.00778388 0.00779193 0.00779998 0.00780802 0.00781607 0.00782412 0.00783217 0.00784022 0.00784827 +-0.00177455 -0.00166145 -0.00142771 -0.000873089 5.20552E-05 0.00120385 0.00245525 0.003721 0.00492031 0.00593444 0.00658494 0.00682542 0.00687995 0.00689523 0.00690436 0.00691257 0.00692065 0.00692871 0.00693676 0.00694482 0.00695287 0.00696093 0.00696899 0.00697704 0.0069851 0.00699316 0.00700121 0.00700927 0.00701732 0.00702538 0.00703344 0.00704149 0.00704955 0.0070576 0.00706566 0.00707372 0.00708177 0.00708983 0.00709788 0.00710594 0.007114 0.00712205 0.00713011 0.00713817 0.00714622 0.00715428 0.00716233 0.00717039 0.00717845 0.0071865 0.00719456 0.00720261 0.00721067 0.00721873 0.00722678 0.00723484 0.0072429 0.00725095 0.00725901 0.00726706 0.00727512 0.00728318 0.00729123 0.00729929 0.00730734 0.0073154 0.00732346 0.00733151 0.00733957 0.00734763 0.00735568 0.00736374 0.00737179 0.00737985 0.00738791 0.00739596 0.00740402 0.00741207 0.00742013 0.00742819 0.00743624 0.0074443 0.00745236 0.00746041 0.00746847 0.00747652 0.00748458 0.00749264 0.00750069 0.00750875 0.0075168 0.00752486 0.00753292 0.00754097 0.00754903 0.00755708 0.00756514 0.0075732 0.00758125 0.00758931 0.00759737 0.00760542 0.00761348 0.00762153 0.00762959 0.00763765 0.0076457 0.00765376 0.00766181 0.00766987 0.00767793 0.00768598 0.00769404 0.0077021 0.00771015 0.00771821 0.00772626 0.00773432 0.00774238 0.00775043 0.00775849 0.00776654 0.0077746 0.00778266 0.00779071 0.00779877 0.00780683 0.00781488 0.00782294 0.00783099 0.00783905 0.00784711 0.00785516 +-0.00177638 -0.00166311 -0.00142894 -0.000873601 5.21354E-05 0.00120434 0.00245609 0.00372224 0.00492215 0.00593735 0.00658946 0.00683107 0.00688591 0.00690125 0.00691038 0.0069186 0.00692669 0.00693475 0.00694282 0.00695088 0.00695895 0.00696701 0.00697507 0.00698314 0.0069912 0.00699926 0.00700733 0.00701539 0.00702345 0.00703152 0.00703958 0.00704764 0.00705571 0.00706377 0.00707183 0.0070799 0.00708796 0.00709602 0.00710409 0.00711215 0.00712021 0.00712828 0.00713634 0.0071444 0.00715247 0.00716053 0.0071686 0.00717666 0.00718472 0.00719279 0.00720085 0.00720891 0.00721698 0.00722504 0.0072331 0.00724117 0.00724923 0.00725729 0.00726536 0.00727342 0.00728148 0.00728955 0.00729761 0.00730567 0.00731374 0.0073218 0.00732986 0.00733793 0.00734599 0.00735405 0.00736212 0.00737018 0.00737825 0.00738631 0.00739437 0.00740244 0.0074105 0.00741856 0.00742663 0.00743469 0.00744275 0.00745082 0.00745888 0.00746694 0.00747501 0.00748307 0.00749113 0.0074992 0.00750726 0.00751532 0.00752339 0.00753145 0.00753951 0.00754758 0.00755564 0.0075637 0.00757177 0.00757983 0.00758789 0.00759596 0.00760402 0.00761209 0.00762015 0.00762821 0.00763628 0.00764434 0.0076524 0.00766047 0.00766853 0.00767659 0.00768466 0.00769272 0.00770078 0.00770885 0.00771691 0.00772497 0.00773304 0.0077411 0.00774916 0.00775723 0.00776529 0.00777335 0.00778142 0.00778948 0.00779754 0.00780561 0.00781367 0.00782173 0.0078298 0.00783786 0.00784593 0.00785399 0.00786205 +-0.0017782 -0.00166476 -0.00143016 -0.000874112 5.22157E-05 0.00120483 0.00245692 0.00372347 0.00492399 0.00594025 0.00659397 0.00683671 0.00689186 0.00690725 0.0069164 0.00692463 0.00693273 0.0069408 0.00694887 0.00695694 0.00696501 0.00697308 0.00698116 0.00698923 0.0069973 0.00700537 0.00701344 0.00702151 0.00702958 0.00703765 0.00704572 0.00705379 0.00706186 0.00706993 0.007078 0.00708608 0.00709415 0.00710222 0.00711029 0.00711836 0.00712643 0.0071345 0.00714257 0.00715064 0.00715871 0.00716678 0.00717485 0.00718292 0.00719099 0.00719907 0.00720714 0.00721521 0.00722328 0.00723135 0.00723942 0.00724749 0.00725556 0.00726363 0.0072717 0.00727977 0.00728784 0.00729591 0.00730399 0.00731206 0.00732013 0.0073282 0.00733627 0.00734434 0.00735241 0.00736048 0.00736855 0.00737662 0.00738469 0.00739276 0.00740083 0.00740891 0.00741698 0.00742505 0.00743312 0.00744119 0.00744926 0.00745733 0.0074654 0.00747347 0.00748154 0.00748961 0.00749768 0.00750575 0.00751383 0.0075219 0.00752997 0.00753804 0.00754611 0.00755418 0.00756225 0.00757032 0.00757839 0.00758646 0.00759453 0.0076026 0.00761067 0.00761875 0.00762682 0.00763489 0.00764296 0.00765103 0.0076591 0.00766717 0.00767524 0.00768331 0.00769138 0.00769945 0.00770752 0.00771559 0.00772367 0.00773174 0.00773981 0.00774788 0.00775595 0.00776402 0.00777209 0.00778016 0.00778823 0.0077963 0.00780437 0.00781244 0.00782051 0.00782858 0.00783666 0.00784473 0.0078528 0.00786087 0.00786894 +-0.00178003 -0.00166641 -0.00143138 -0.000874623 5.22959E-05 0.00120532 0.00245775 0.00372471 0.00492583 0.00594314 0.00659848 0.00684236 0.00689781 0.00691326 0.00692242 0.00693066 0.00693876 0.00694684 0.00695492 0.006963 0.00697108 0.00697916 0.00698724 0.00699531 0.00700339 0.00701147 0.00701955 0.00702763 0.0070357 0.00704378 0.00705186 0.00705994 0.00706802 0.00707609 0.00708417 0.00709225 0.00710033 0.00710841 0.00711648 0.00712456 0.00713264 0.00714072 0.0071488 0.00715687 0.00716495 0.00717303 0.00718111 0.00718919 0.00719726 0.00720534 0.00721342 0.0072215 0.00722958 0.00723766 0.00724573 0.00725381 0.00726189 0.00726997 0.00727805 0.00728612 0.0072942 0.00730228 0.00731036 0.00731844 0.00732651 0.00733459 0.00734267 0.00735075 0.00735883 0.0073669 0.00737498 0.00738306 0.00739114 0.00739922 0.00740729 0.00741537 0.00742345 0.00743153 0.00743961 0.00744768 0.00745576 0.00746384 0.00747192 0.00748 0.00748807 0.00749615 0.00750423 0.00751231 0.00752039 0.00752847 0.00753654 0.00754462 0.0075527 0.00756078 0.00756886 0.00757693 0.00758501 0.00759309 0.00760117 0.00760925 0.00761732 0.0076254 0.00763348 0.00764156 0.00764964 0.00765771 0.00766579 0.00767387 0.00768195 0.00769003 0.0076981 0.00770618 0.00771426 0.00772234 0.00773042 0.00773849 0.00774657 0.00775465 0.00776273 0.00777081 0.00777889 0.00778696 0.00779504 0.00780312 0.0078112 0.00781928 0.00782735 0.00783543 0.00784351 0.00785159 0.00785967 0.00786774 0.00787582 +-0.00178185 -0.00166806 -0.0014326 -0.000875133 5.23762E-05 0.0012058 0.00245859 0.00372594 0.00492767 0.00594603 0.00660297 0.00684799 0.00690376 0.00691926 0.00692844 0.00693669 0.0069448 0.00695288 0.00696097 0.00696906 0.00697714 0.00698523 0.00699331 0.0070014 0.00700948 0.00701757 0.00702565 0.00703374 0.00704182 0.00704991 0.00705799 0.00706608 0.00707417 0.00708225 0.00709034 0.00709842 0.00710651 0.00711459 0.00712268 0.00713076 0.00713885 0.00714693 0.00715502 0.0071631 0.00717119 0.00717928 0.00718736 0.00719545 0.00720353 0.00721162 0.0072197 0.00722779 0.00723587 0.00724396 0.00725204 0.00726013 0.00726821 0.0072763 0.00728439 0.00729247 0.00730056 0.00730864 0.00731673 0.00732481 0.0073329 0.00734098 0.00734907 0.00735715 0.00736524 0.00737332 0.00738141 0.00738949 0.00739758 0.00740567 0.00741375 0.00742184 0.00742992 0.00743801 0.00744609 0.00745418 0.00746226 0.00747035 0.00747843 0.00748652 0.0074946 0.00750269 0.00751078 0.00751886 0.00752695 0.00753503 0.00754312 0.0075512 0.00755929 0.00756737 0.00757546 0.00758354 0.00759163 0.00759971 0.0076078 0.00761588 0.00762397 0.00763206 0.00764014 0.00764823 0.00765631 0.0076644 0.00767248 0.00768057 0.00768865 0.00769674 0.00770482 0.00771291 0.00772099 0.00772908 0.00773717 0.00774525 0.00775334 0.00776142 0.00776951 0.00777759 0.00778568 0.00779376 0.00780185 0.00780993 0.00781802 0.0078261 0.00783419 0.00784228 0.00785036 0.00785845 0.00786653 0.00787462 0.0078827 +-0.00178368 -0.00166971 -0.00143382 -0.000875642 5.24565E-05 0.00120629 0.00245942 0.00372717 0.0049295 0.00594892 0.00660746 0.00685362 0.0069097 0.00692526 0.00693446 0.00694271 0.00695083 0.00695892 0.00696702 0.00697511 0.0069832 0.00699129 0.00699939 0.00700748 0.00701557 0.00702366 0.00703176 0.00703985 0.00704794 0.00705603 0.00706413 0.00707222 0.00708031 0.00708841 0.0070965 0.00710459 0.00711268 0.00712078 0.00712887 0.00713696 0.00714505 0.00715315 0.00716124 0.00716933 0.00717742 0.00718552 0.00719361 0.0072017 0.0072098 0.00721789 0.00722598 0.00723407 0.00724217 0.00725026 0.00725835 0.00726644 0.00727454 0.00728263 0.00729072 0.00729881 0.00730691 0.007315 0.00732309 0.00733118 0.00733928 0.00734737 0.00735546 0.00736356 0.00737165 0.00737974 0.00738783 0.00739593 0.00740402 0.00741211 0.0074202 0.0074283 0.00743639 0.00744448 0.00745257 0.00746067 0.00746876 0.00747685 0.00748495 0.00749304 0.00750113 0.00750922 0.00751732 0.00752541 0.0075335 0.00754159 0.00754969 0.00755778 0.00756587 0.00757396 0.00758206 0.00759015 0.00759824 0.00760634 0.00761443 0.00762252 0.00763061 0.00763871 0.0076468 0.00765489 0.00766298 0.00767108 0.00767917 0.00768726 0.00769535 0.00770345 0.00771154 0.00771963 0.00772773 0.00773582 0.00774391 0.007752 0.0077601 0.00776819 0.00777628 0.00778437 0.00779247 0.00780056 0.00780865 0.00781674 0.00782484 0.00783293 0.00784102 0.00784912 0.00785721 0.0078653 0.00787339 0.00788149 0.00788958 +-0.0017855 -0.00167136 -0.00143504 -0.00087615 5.25368E-05 0.00120677 0.00246025 0.0037284 0.00493133 0.0059518 0.00661194 0.00685925 0.00691564 0.00693126 0.00694047 0.00694873 0.00695685 0.00696496 0.00697306 0.00698116 0.00698926 0.00699736 0.00700546 0.00701356 0.00702166 0.00702976 0.00703786 0.00704596 0.00705406 0.00706216 0.00707026 0.00707836 0.00708646 0.00709456 0.00710266 0.00711076 0.00711886 0.00712696 0.00713506 0.00714316 0.00715126 0.00715936 0.00716746 0.00717556 0.00718366 0.00719176 0.00719986 0.00720796 0.00721606 0.00722416 0.00723226 0.00724036 0.00724846 0.00725656 0.00726466 0.00727276 0.00728086 0.00728896 0.00729706 0.00730516 0.00731326 0.00732136 0.00732946 0.00733756 0.00734565 0.00735375 0.00736185 0.00736995 0.00737805 0.00738615 0.00739425 0.00740235 0.00741045 0.00741855 0.00742665 0.00743475 0.00744285 0.00745095 0.00745905 0.00746715 0.00747525 0.00748335 0.00749145 0.00749955 0.00750765 0.00751575 0.00752385 0.00753195 0.00754005 0.00754815 0.00755625 0.00756435 0.00757245 0.00758055 0.00758865 0.00759675 0.00760485 0.00761295 0.00762105 0.00762915 0.00763725 0.00764535 0.00765345 0.00766155 0.00766965 0.00767775 0.00768585 0.00769395 0.00770205 0.00771015 0.00771825 0.00772635 0.00773445 0.00774255 0.00775065 0.00775875 0.00776685 0.00777495 0.00778305 0.00779115 0.00779925 0.00780735 0.00781545 0.00782355 0.00783165 0.00783975 0.00784785 0.00785595 0.00786405 0.00787215 0.00788025 0.00788835 0.00789645 +-0.00178733 -0.00167301 -0.00143626 -0.000876658 5.26171E-05 0.00120726 0.00246107 0.00372963 0.00493315 0.00595467 0.00661642 0.00686487 0.00692157 0.00693725 0.00694648 0.00695475 0.00696288 0.00697099 0.0069791 0.0069872 0.00699531 0.00700342 0.00701152 0.00701963 0.00702774 0.00703585 0.00704395 0.00705206 0.00706017 0.00706828 0.00707638 0.00708449 0.0070926 0.0071007 0.00710881 0.00711692 0.00712503 0.00713313 0.00714124 0.00714935 0.00715746 0.00716556 0.00717367 0.00718178 0.00718988 0.00719799 0.0072061 0.00721421 0.00722231 0.00723042 0.00723853 0.00724664 0.00725474 0.00726285 0.00727096 0.00727906 0.00728717 0.00729528 0.00730339 0.00731149 0.0073196 0.00732771 0.00733581 0.00734392 0.00735203 0.00736014 0.00736824 0.00737635 0.00738446 0.00739257 0.00740067 0.00740878 0.00741689 0.00742499 0.0074331 0.00744121 0.00744932 0.00745742 0.00746553 0.00747364 0.00748175 0.00748985 0.00749796 0.00750607 0.00751417 0.00752228 0.00753039 0.0075385 0.0075466 0.00755471 0.00756282 0.00757092 0.00757903 0.00758714 0.00759525 0.00760335 0.00761146 0.00761957 0.00762768 0.00763578 0.00764389 0.007652 0.0076601 0.00766821 0.00767632 0.00768443 0.00769253 0.00770064 0.00770875 0.00771686 0.00772496 0.00773307 0.00774118 0.00774928 0.00775739 0.0077655 0.00777361 0.00778171 0.00778982 0.00779793 0.00780604 0.00781414 0.00782225 0.00783036 0.00783846 0.00784657 0.00785468 0.00786279 0.00787089 0.007879 0.00788711 0.00789521 0.00790332 +-0.00178915 -0.00167466 -0.00143748 -0.000877165 5.26975E-05 0.00120774 0.0024619 0.00373085 0.00493497 0.00595754 0.00662088 0.00687049 0.0069275 0.00694324 0.00695248 0.00696076 0.0069689 0.00697702 0.00698513 0.00699325 0.00700136 0.00700948 0.00701759 0.0070257 0.00703382 0.00704193 0.00705005 0.00705816 0.00706628 0.00707439 0.00708251 0.00709062 0.00709874 0.00710685 0.00711496 0.00712308 0.00713119 0.00713931 0.00714742 0.00715554 0.00716365 0.00717177 0.00717988 0.007188 0.00719611 0.00720422 0.00721234 0.00722045 0.00722857 0.00723668 0.0072448 0.00725291 0.00726103 0.00726914 0.00727726 0.00728537 0.00729348 0.0073016 0.00730971 0.00731783 0.00732594 0.00733406 0.00734217 0.00735029 0.0073584 0.00736651 0.00737463 0.00738274 0.00739086 0.00739897 0.00740709 0.0074152 0.00742332 0.00743143 0.00743955 0.00744766 0.00745577 0.00746389 0.007472 0.00748012 0.00748823 0.00749635 0.00750446 0.00751258 0.00752069 0.00752881 0.00753692 0.00754503 0.00755315 0.00756126 0.00756938 0.00757749 0.00758561 0.00759372 0.00760184 0.00760995 0.00761807 0.00762618 0.00763429 0.00764241 0.00765052 0.00765864 0.00766675 0.00767487 0.00768298 0.0076911 0.00769921 0.00770733 0.00771544 0.00772355 0.00773167 0.00773978 0.0077479 0.00775601 0.00776413 0.00777224 0.00778036 0.00778847 0.00779659 0.0078047 0.00781281 0.00782093 0.00782904 0.00783716 0.00784527 0.00785339 0.0078615 0.00786962 0.00787773 0.00788585 0.00789396 0.00790207 0.00791019 +-0.00179098 -0.00167631 -0.00143869 -0.000877671 5.27778E-05 0.00120822 0.00246273 0.00373208 0.00493679 0.0059604 0.00662534 0.0068761 0.00693343 0.00694923 0.00695848 0.00696677 0.00697492 0.00698304 0.00699116 0.00699929 0.00700741 0.00701553 0.00702365 0.00703177 0.0070399 0.00704802 0.00705614 0.00706426 0.00707238 0.0070805 0.00708863 0.00709675 0.00710487 0.00711299 0.00712111 0.00712924 0.00713736 0.00714548 0.0071536 0.00716172 0.00716984 0.00717797 0.00718609 0.00719421 0.00720233 0.00721045 0.00721858 0.0072267 0.00723482 0.00724294 0.00725106 0.00725918 0.00726731 0.00727543 0.00728355 0.00729167 0.00729979 0.00730792 0.00731604 0.00732416 0.00733228 0.0073404 0.00734852 0.00735665 0.00736477 0.00737289 0.00738101 0.00738913 0.00739726 0.00740538 0.0074135 0.00742162 0.00742974 0.00743786 0.00744599 0.00745411 0.00746223 0.00747035 0.00747847 0.0074866 0.00749472 0.00750284 0.00751096 0.00751908 0.0075272 0.00753533 0.00754345 0.00755157 0.00755969 0.00756781 0.00757594 0.00758406 0.00759218 0.0076003 0.00760842 0.00761654 0.00762467 0.00763279 0.00764091 0.00764903 0.00765715 0.00766528 0.0076734 0.00768152 0.00768964 0.00769776 0.00770588 0.00771401 0.00772213 0.00773025 0.00773837 0.00774649 0.00775462 0.00776274 0.00777086 0.00777898 0.0077871 0.00779522 0.00780335 0.00781147 0.00781959 0.00782771 0.00783583 0.00784396 0.00785208 0.0078602 0.00786832 0.00787644 0.00788456 0.00789269 0.00790081 0.00790893 0.00791705 +-0.0017928 -0.00167795 -0.00143991 -0.000878176 5.28582E-05 0.00120871 0.00246355 0.0037333 0.0049386 0.00596325 0.00662979 0.00688171 0.00693936 0.00695521 0.00696448 0.00697278 0.00698093 0.00698907 0.00699719 0.00700532 0.00701345 0.00702158 0.00702971 0.00703784 0.00704597 0.0070541 0.00706223 0.00707036 0.00707849 0.00708662 0.00709474 0.00710287 0.007111 0.00711913 0.00712726 0.00713539 0.00714352 0.00715165 0.00715978 0.00716791 0.00717604 0.00718416 0.00719229 0.00720042 0.00720855 0.00721668 0.00722481 0.00723294 0.00724107 0.0072492 0.00725733 0.00726546 0.00727358 0.00728171 0.00728984 0.00729797 0.0073061 0.00731423 0.00732236 0.00733049 0.00733862 0.00734675 0.00735488 0.007363 0.00737113 0.00737926 0.00738739 0.00739552 0.00740365 0.00741178 0.00741991 0.00742804 0.00743617 0.0074443 0.00745242 0.00746055 0.00746868 0.00747681 0.00748494 0.00749307 0.0075012 0.00750933 0.00751746 0.00752559 0.00753372 0.00754184 0.00754997 0.0075581 0.00756623 0.00757436 0.00758249 0.00759062 0.00759875 0.00760688 0.00761501 0.00762314 0.00763126 0.00763939 0.00764752 0.00765565 0.00766378 0.00767191 0.00768004 0.00768817 0.0076963 0.00770443 0.00771256 0.00772068 0.00772881 0.00773694 0.00774507 0.0077532 0.00776133 0.00776946 0.00777759 0.00778572 0.00779385 0.00780198 0.0078101 0.00781823 0.00782636 0.00783449 0.00784262 0.00785075 0.00785888 0.00786701 0.00787514 0.00788327 0.0078914 0.00789953 0.00790765 0.00791578 0.00792391 +-0.00179462 -0.0016796 -0.00144112 -0.00087868 5.29386E-05 0.00120919 0.00246438 0.00373452 0.00494041 0.0059661 0.00663423 0.00688731 0.00694528 0.0069612 0.00697048 0.00697878 0.00698695 0.00699509 0.00700322 0.00701136 0.00701949 0.00702763 0.00703577 0.0070439 0.00705204 0.00706018 0.00706831 0.00707645 0.00708459 0.00709272 0.00710086 0.007109 0.00711713 0.00712527 0.0071334 0.00714154 0.00714968 0.00715781 0.00716595 0.00717409 0.00718222 0.00719036 0.0071985 0.00720663 0.00721477 0.0072229 0.00723104 0.00723918 0.00724731 0.00725545 0.00726359 0.00727172 0.00727986 0.007288 0.00729613 0.00730427 0.0073124 0.00732054 0.00732868 0.00733681 0.00734495 0.00735309 0.00736122 0.00736936 0.0073775 0.00738563 0.00739377 0.0074019 0.00741004 0.00741818 0.00742631 0.00743445 0.00744259 0.00745072 0.00745886 0.007467 0.00747513 0.00748327 0.0074914 0.00749954 0.00750768 0.00751581 0.00752395 0.00753209 0.00754022 0.00754836 0.0075565 0.00756463 0.00757277 0.0075809 0.00758904 0.00759718 0.00760531 0.00761345 0.00762159 0.00762972 0.00763786 0.007646 0.00765413 0.00766227 0.00767041 0.00767854 0.00768668 0.00769481 0.00770295 0.00771109 0.00771922 0.00772736 0.0077355 0.00774363 0.00775177 0.00775991 0.00776804 0.00777618 0.00778431 0.00779245 0.00780059 0.00780872 0.00781686 0.007825 0.00783313 0.00784127 0.00784941 0.00785754 0.00786568 0.00787381 0.00788195 0.00789009 0.00789822 0.00790636 0.0079145 0.00792263 0.00793077 +-0.00179644 -0.00168125 -0.00144233 -0.000879184 5.3019E-05 0.00120967 0.0024652 0.00373573 0.00494222 0.00596894 0.00663867 0.00689291 0.0069512 0.00696717 0.00697647 0.00698479 0.00699295 0.0070011 0.00700925 0.00701739 0.00702553 0.00703368 0.00704182 0.00704996 0.00705811 0.00706625 0.0070744 0.00708254 0.00709068 0.00709883 0.00710697 0.00711511 0.00712326 0.0071314 0.00713954 0.00714769 0.00715583 0.00716398 0.00717212 0.00718026 0.00718841 0.00719655 0.00720469 0.00721284 0.00722098 0.00722912 0.00723727 0.00724541 0.00725356 0.0072617 0.00726984 0.00727799 0.00728613 0.00729427 0.00730242 0.00731056 0.00731871 0.00732685 0.00733499 0.00734314 0.00735128 0.00735942 0.00736757 0.00737571 0.00738385 0.007392 0.00740014 0.00740829 0.00741643 0.00742457 0.00743272 0.00744086 0.007449 0.00745715 0.00746529 0.00747343 0.00748158 0.00748972 0.00749787 0.00750601 0.00751415 0.0075223 0.00753044 0.00753858 0.00754673 0.00755487 0.00756301 0.00757116 0.0075793 0.00758745 0.00759559 0.00760373 0.00761188 0.00762002 0.00762816 0.00763631 0.00764445 0.00765259 0.00766074 0.00766888 0.00767703 0.00768517 0.00769331 0.00770146 0.0077096 0.00771774 0.00772589 0.00773403 0.00774218 0.00775032 0.00775846 0.00776661 0.00777475 0.00778289 0.00779104 0.00779918 0.00780732 0.00781547 0.00782361 0.00783176 0.0078399 0.00784804 0.00785619 0.00786433 0.00787247 0.00788062 0.00788876 0.0078969 0.00790505 0.00791319 0.00792134 0.00792948 0.00793762 +-0.00179826 -0.00168289 -0.00144354 -0.000879687 5.30995E-05 0.00121015 0.00246602 0.00373695 0.00494403 0.00597178 0.00664309 0.00689851 0.00695712 0.00697315 0.00698246 0.00699079 0.00699896 0.00700712 0.00701527 0.00702342 0.00703157 0.00703972 0.00704787 0.00705602 0.00706417 0.00707232 0.00708048 0.00708863 0.00709678 0.00710493 0.00711308 0.00712123 0.00712938 0.00713753 0.00714568 0.00715383 0.00716198 0.00717014 0.00717829 0.00718644 0.00719459 0.00720274 0.00721089 0.00721904 0.00722719 0.00723534 0.00724349 0.00725164 0.0072598 0.00726795 0.0072761 0.00728425 0.0072924 0.00730055 0.0073087 0.00731685 0.007325 0.00733315 0.0073413 0.00734946 0.00735761 0.00736576 0.00737391 0.00738206 0.00739021 0.00739836 0.00740651 0.00741466 0.00742281 0.00743096 0.00743912 0.00744727 0.00745542 0.00746357 0.00747172 0.00747987 0.00748802 0.00749617 0.00750432 0.00751247 0.00752063 0.00752878 0.00753693 0.00754508 0.00755323 0.00756138 0.00756953 0.00757768 0.00758583 0.00759398 0.00760213 0.00761029 0.00761844 0.00762659 0.00763474 0.00764289 0.00765104 0.00765919 0.00766734 0.00767549 0.00768364 0.00769179 0.00769995 0.0077081 0.00771625 0.0077244 0.00773255 0.0077407 0.00774885 0.007757 0.00776515 0.0077733 0.00778145 0.00778961 0.00779776 0.00780591 0.00781406 0.00782221 0.00783036 0.00783851 0.00784666 0.00785481 0.00786296 0.00787111 0.00787927 0.00788742 0.00789557 0.00790372 0.00791187 0.00792002 0.00792817 0.00793632 0.00794447 +-0.00180008 -0.00168454 -0.00144475 -0.000880189 5.31799E-05 0.00121063 0.00246684 0.00373816 0.00494583 0.00597461 0.00664751 0.00690409 0.00696303 0.00697912 0.00698845 0.00699678 0.00700497 0.00701313 0.00702129 0.00702944 0.0070376 0.00704576 0.00705392 0.00706208 0.00707024 0.00707839 0.00708655 0.00709471 0.00710287 0.00711103 0.00711918 0.00712734 0.0071355 0.00714366 0.00715182 0.00715998 0.00716813 0.00717629 0.00718445 0.00719261 0.00720077 0.00720892 0.00721708 0.00722524 0.0072334 0.00724156 0.00724972 0.00725787 0.00726603 0.00727419 0.00728235 0.00729051 0.00729866 0.00730682 0.00731498 0.00732314 0.0073313 0.00733946 0.00734761 0.00735577 0.00736393 0.00737209 0.00738025 0.0073884 0.00739656 0.00740472 0.00741288 0.00742104 0.0074292 0.00743735 0.00744551 0.00745367 0.00746183 0.00746999 0.00747814 0.0074863 0.00749446 0.00750262 0.00751078 0.00751894 0.00752709 0.00753525 0.00754341 0.00755157 0.00755973 0.00756789 0.00757604 0.0075842 0.00759236 0.00760052 0.00760868 0.00761683 0.00762499 0.00763315 0.00764131 0.00764947 0.00765763 0.00766578 0.00767394 0.0076821 0.00769026 0.00769842 0.00770657 0.00771473 0.00772289 0.00773105 0.00773921 0.00774737 0.00775552 0.00776368 0.00777184 0.00778 0.00778816 0.00779631 0.00780447 0.00781263 0.00782079 0.00782895 0.00783711 0.00784526 0.00785342 0.00786158 0.00786974 0.0078779 0.00788605 0.00789421 0.00790237 0.00791053 0.00791869 0.00792685 0.007935 0.00794316 0.00795132 +-0.0018019 -0.00168618 -0.00144596 -0.000880691 5.32604E-05 0.00121111 0.00246766 0.00373938 0.00494762 0.00597743 0.00665193 0.00690968 0.00696894 0.00698509 0.00699444 0.00700278 0.00701097 0.00701914 0.0070273 0.00703547 0.00704363 0.0070518 0.00705996 0.00706813 0.00707629 0.00708446 0.00709263 0.00710079 0.00710896 0.00711712 0.00712529 0.00713345 0.00714162 0.00714978 0.00715795 0.00716611 0.00717428 0.00718245 0.00719061 0.00719878 0.00720694 0.00721511 0.00722327 0.00723144 0.0072396 0.00724777 0.00725593 0.0072641 0.00727227 0.00728043 0.0072886 0.00729676 0.00730493 0.00731309 0.00732126 0.00732942 0.00733759 0.00734575 0.00735392 0.00736209 0.00737025 0.00737842 0.00738658 0.00739475 0.00740291 0.00741108 0.00741924 0.00742741 0.00743557 0.00744374 0.00745191 0.00746007 0.00746824 0.0074764 0.00748457 0.00749273 0.0075009 0.00750906 0.00751723 0.00752539 0.00753356 0.00754173 0.00754989 0.00755806 0.00756622 0.00757439 0.00758255 0.00759072 0.00759888 0.00760705 0.00761521 0.00762338 0.00763155 0.00763971 0.00764788 0.00765604 0.00766421 0.00767237 0.00768054 0.0076887 0.00769687 0.00770503 0.0077132 0.00772137 0.00772953 0.0077377 0.00774586 0.00775403 0.00776219 0.00777036 0.00777852 0.00778669 0.00779485 0.00780302 0.00781119 0.00781935 0.00782752 0.00783568 0.00784385 0.00785201 0.00786018 0.00786834 0.00787651 0.00788467 0.00789284 0.00790101 0.00790917 0.00791734 0.0079255 0.00793367 0.00794183 0.00795 0.00795816 +-0.00180372 -0.00168782 -0.00144717 -0.000881191 5.33408E-05 0.00121159 0.00246848 0.00374058 0.00494942 0.00598025 0.00665633 0.00691526 0.00697484 0.00699106 0.00700042 0.00700877 0.00701696 0.00702514 0.00703331 0.00704149 0.00704966 0.00705783 0.00706601 0.00707418 0.00708235 0.00709052 0.0070987 0.00710687 0.00711504 0.00712321 0.00713139 0.00713956 0.00714773 0.00715591 0.00716408 0.00717225 0.00718042 0.0071886 0.00719677 0.00720494 0.00721311 0.00722129 0.00722946 0.00723763 0.00724581 0.00725398 0.00726215 0.00727032 0.0072785 0.00728667 0.00729484 0.00730301 0.00731119 0.00731936 0.00732753 0.0073357 0.00734388 0.00735205 0.00736022 0.0073684 0.00737657 0.00738474 0.00739291 0.00740109 0.00740926 0.00741743 0.0074256 0.00743378 0.00744195 0.00745012 0.0074583 0.00746647 0.00747464 0.00748281 0.00749099 0.00749916 0.00750733 0.0075155 0.00752368 0.00753185 0.00754002 0.0075482 0.00755637 0.00756454 0.00757271 0.00758089 0.00758906 0.00759723 0.0076054 0.00761358 0.00762175 0.00762992 0.0076381 0.00764627 0.00765444 0.00766261 0.00767079 0.00767896 0.00768713 0.0076953 0.00770348 0.00771165 0.00771982 0.007728 0.00773617 0.00774434 0.00775251 0.00776069 0.00776886 0.00777703 0.0077852 0.00779338 0.00780155 0.00780972 0.0078179 0.00782607 0.00783424 0.00784241 0.00785059 0.00785876 0.00786693 0.0078751 0.00788328 0.00789145 0.00789962 0.0079078 0.00791597 0.00792414 0.00793231 0.00794049 0.00794866 0.00795683 0.007965 +-0.00180554 -0.00168946 -0.00144838 -0.000881691 5.34213E-05 0.00121207 0.0024693 0.00374179 0.00495121 0.00598306 0.00666073 0.00692083 0.00698075 0.00699702 0.0070064 0.00701475 0.00702296 0.00703114 0.00703932 0.0070475 0.00705568 0.00706386 0.00707204 0.00708022 0.0070884 0.00709658 0.00710476 0.00711294 0.00712112 0.0071293 0.00713748 0.00714566 0.00715384 0.00716202 0.0071702 0.00717838 0.00718656 0.00719474 0.00720292 0.0072111 0.00721928 0.00722746 0.00723564 0.00724382 0.007252 0.00726018 0.00726836 0.00727654 0.00728472 0.0072929 0.00730108 0.00730926 0.00731744 0.00732562 0.0073338 0.00734198 0.00735016 0.00735834 0.00736652 0.0073747 0.00738288 0.00739106 0.00739924 0.00740742 0.0074156 0.00742378 0.00743196 0.00744014 0.00744832 0.0074565 0.00746468 0.00747286 0.00748104 0.00748922 0.0074974 0.00750558 0.00751376 0.00752194 0.00753012 0.0075383 0.00754648 0.00755466 0.00756284 0.00757102 0.0075792 0.00758738 0.00759556 0.00760374 0.00761192 0.0076201 0.00762828 0.00763646 0.00764464 0.00765282 0.007661 0.00766918 0.00767736 0.00768554 0.00769372 0.0077019 0.00771008 0.00771826 0.00772644 0.00773462 0.0077428 0.00775098 0.00775916 0.00776734 0.00777552 0.0077837 0.00779188 0.00780006 0.00780824 0.00781642 0.0078246 0.00783278 0.00784096 0.00784914 0.00785732 0.0078655 0.00787368 0.00788186 0.00789004 0.00789822 0.0079064 0.00791458 0.00792276 0.00793094 0.00793912 0.0079473 0.00795548 0.00796366 0.00797184 +-0.00180736 -0.0016911 -0.00144958 -0.000882191 5.35019E-05 0.00121255 0.00247011 0.003743 0.004953 0.00598587 0.00666511 0.0069264 0.00698665 0.00700298 0.00701238 0.00702074 0.00702895 0.00703714 0.00704533 0.00705352 0.00706171 0.00706989 0.00707808 0.00708627 0.00709445 0.00710264 0.00711083 0.00711902 0.0071272 0.00713539 0.00714358 0.00715176 0.00715995 0.00716814 0.00717633 0.00718451 0.0071927 0.00720089 0.00720908 0.00721726 0.00722545 0.00723364 0.00724182 0.00725001 0.0072582 0.00726639 0.00727457 0.00728276 0.00729095 0.00729914 0.00730732 0.00731551 0.0073237 0.00733188 0.00734007 0.00734826 0.00735645 0.00736463 0.00737282 0.00738101 0.00738919 0.00739738 0.00740557 0.00741376 0.00742194 0.00743013 0.00743832 0.00744651 0.00745469 0.00746288 0.00747107 0.00747925 0.00748744 0.00749563 0.00750382 0.007512 0.00752019 0.00752838 0.00753656 0.00754475 0.00755294 0.00756113 0.00756931 0.0075775 0.00758569 0.00759388 0.00760206 0.00761025 0.00761844 0.00762662 0.00763481 0.007643 0.00765119 0.00765937 0.00766756 0.00767575 0.00768394 0.00769212 0.00770031 0.0077085 0.00771668 0.00772487 0.00773306 0.00774125 0.00774943 0.00775762 0.00776581 0.00777399 0.00778218 0.00779037 0.00779856 0.00780674 0.00781493 0.00782312 0.00783131 0.00783949 0.00784768 0.00785587 0.00786405 0.00787224 0.00788043 0.00788862 0.0078968 0.00790499 0.00791318 0.00792136 0.00792955 0.00793774 0.00794593 0.00795411 0.0079623 0.00797049 0.00797868 +-0.00180918 -0.00169275 -0.00145079 -0.000882689 5.35824E-05 0.00121302 0.00247093 0.0037442 0.00495478 0.00598867 0.00666949 0.00693196 0.00699254 0.00700894 0.00701835 0.00702672 0.00703494 0.00704314 0.00705133 0.00705953 0.00706772 0.00707592 0.00708411 0.00709231 0.0071005 0.0071087 0.00711689 0.00712509 0.00713328 0.00714147 0.00714967 0.00715786 0.00716606 0.00717425 0.00718245 0.00719064 0.00719884 0.00720703 0.00721522 0.00722342 0.00723161 0.00723981 0.007248 0.0072562 0.00726439 0.00727259 0.00728078 0.00728897 0.00729717 0.00730536 0.00731356 0.00732175 0.00732995 0.00733814 0.00734634 0.00735453 0.00736273 0.00737092 0.00737911 0.00738731 0.0073955 0.0074037 0.00741189 0.00742009 0.00742828 0.00743648 0.00744467 0.00745286 0.00746106 0.00746925 0.00747745 0.00748564 0.00749384 0.00750203 0.00751023 0.00751842 0.00752662 0.00753481 0.007543 0.0075512 0.00755939 0.00756759 0.00757578 0.00758398 0.00759217 0.00760037 0.00760856 0.00761675 0.00762495 0.00763314 0.00764134 0.00764953 0.00765773 0.00766592 0.00767412 0.00768231 0.0076905 0.0076987 0.00770689 0.00771509 0.00772328 0.00773148 0.00773967 0.00774787 0.00775606 0.00776426 0.00777245 0.00778064 0.00778884 0.00779703 0.00780523 0.00781342 0.00782162 0.00782981 0.00783801 0.0078462 0.00785439 0.00786259 0.00787078 0.00787898 0.00788717 0.00789537 0.00790356 0.00791176 0.00791995 0.00792814 0.00793634 0.00794453 0.00795273 0.00796092 0.00796912 0.00797731 0.00798551 +-0.00181099 -0.00169439 -0.00145199 -0.000883187 5.36629E-05 0.0012135 0.00247174 0.0037454 0.00495656 0.00599146 0.00667387 0.00693752 0.00699844 0.0070149 0.00702432 0.0070327 0.00704093 0.00704913 0.00705734 0.00706554 0.00707374 0.00708194 0.00709014 0.00709834 0.00710655 0.00711475 0.00712295 0.00713115 0.00713935 0.00714756 0.00715576 0.00716396 0.00717216 0.00718036 0.00718856 0.00719677 0.00720497 0.00721317 0.00722137 0.00722957 0.00723777 0.00724598 0.00725418 0.00726238 0.00727058 0.00727878 0.00728698 0.00729519 0.00730339 0.00731159 0.00731979 0.00732799 0.00733619 0.0073444 0.0073526 0.0073608 0.007369 0.0073772 0.00738541 0.00739361 0.00740181 0.00741001 0.00741821 0.00742641 0.00743462 0.00744282 0.00745102 0.00745922 0.00746742 0.00747562 0.00748383 0.00749203 0.00750023 0.00750843 0.00751663 0.00752483 0.00753304 0.00754124 0.00754944 0.00755764 0.00756584 0.00757405 0.00758225 0.00759045 0.00759865 0.00760685 0.00761505 0.00762326 0.00763146 0.00763966 0.00764786 0.00765606 0.00766426 0.00767247 0.00768067 0.00768887 0.00769707 0.00770527 0.00771347 0.00772168 0.00772988 0.00773808 0.00774628 0.00775448 0.00776269 0.00777089 0.00777909 0.00778729 0.00779549 0.00780369 0.0078119 0.0078201 0.0078283 0.0078365 0.0078447 0.0078529 0.00786111 0.00786931 0.00787751 0.00788571 0.00789391 0.00790211 0.00791032 0.00791852 0.00792672 0.00793492 0.00794312 0.00795133 0.00795953 0.00796773 0.00797593 0.00798413 0.00799233 +-0.00181281 -0.00169602 -0.0014532 -0.000883684 5.37435E-05 0.00121398 0.00247255 0.00374661 0.00495834 0.00599425 0.00667823 0.00694307 0.00700433 0.00702085 0.00703029 0.00703868 0.00704691 0.00705512 0.00706333 0.00707154 0.00707975 0.00708796 0.00709617 0.00710438 0.00711259 0.0071208 0.00712901 0.00713722 0.00714542 0.00715363 0.00716184 0.00717005 0.00717826 0.00718647 0.00719468 0.00720289 0.0072111 0.0072193 0.00722751 0.00723572 0.00724393 0.00725214 0.00726035 0.00726856 0.00727677 0.00728498 0.00729319 0.00730139 0.0073096 0.00731781 0.00732602 0.00733423 0.00734244 0.00735065 0.00735886 0.00736707 0.00737528 0.00738348 0.00739169 0.0073999 0.00740811 0.00741632 0.00742453 0.00743274 0.00744095 0.00744916 0.00745737 0.00746557 0.00747378 0.00748199 0.0074902 0.00749841 0.00750662 0.00751483 0.00752304 0.00753125 0.00753946 0.00754766 0.00755587 0.00756408 0.00757229 0.0075805 0.00758871 0.00759692 0.00760513 0.00761334 0.00762154 0.00762975 0.00763796 0.00764617 0.00765438 0.00766259 0.0076708 0.00767901 0.00768722 0.00769543 0.00770363 0.00771184 0.00772005 0.00772826 0.00773647 0.00774468 0.00775289 0.0077611 0.00776931 0.00777752 0.00778572 0.00779393 0.00780214 0.00781035 0.00781856 0.00782677 0.00783498 0.00784319 0.0078514 0.00785961 0.00786781 0.00787602 0.00788423 0.00789244 0.00790065 0.00790886 0.00791707 0.00792528 0.00793349 0.0079417 0.0079499 0.00795811 0.00796632 0.00797453 0.00798274 0.00799095 0.00799916 +-0.00181463 -0.00169766 -0.0014544 -0.00088418 5.38241E-05 0.00121445 0.00247337 0.0037478 0.00496012 0.00599704 0.00668259 0.00694862 0.00701021 0.0070268 0.00703625 0.00704465 0.00705289 0.00706111 0.00706933 0.00707755 0.00708576 0.00709398 0.00710219 0.00711041 0.00711863 0.00712684 0.00713506 0.00714328 0.00715149 0.00715971 0.00716792 0.00717614 0.00718436 0.00719257 0.00720079 0.00720901 0.00721722 0.00722544 0.00723365 0.00724187 0.00725009 0.0072583 0.00726652 0.00727474 0.00728295 0.00729117 0.00729938 0.0073076 0.00731582 0.00732403 0.00733225 0.00734046 0.00734868 0.0073569 0.00736511 0.00737333 0.00738155 0.00738976 0.00739798 0.00740619 0.00741441 0.00742263 0.00743084 0.00743906 0.00744728 0.00745549 0.00746371 0.00747192 0.00748014 0.00748836 0.00749657 0.00750479 0.00751301 0.00752122 0.00752944 0.00753765 0.00754587 0.00755409 0.0075623 0.00757052 0.00757874 0.00758695 0.00759517 0.00760338 0.0076116 0.00761982 0.00762803 0.00763625 0.00764447 0.00765268 0.0076609 0.00766911 0.00767733 0.00768555 0.00769376 0.00770198 0.00771019 0.00771841 0.00772663 0.00773484 0.00774306 0.00775128 0.00775949 0.00776771 0.00777592 0.00778414 0.00779236 0.00780057 0.00780879 0.00781701 0.00782522 0.00783344 0.00784165 0.00784987 0.00785809 0.0078663 0.00787452 0.00788274 0.00789095 0.00789917 0.00790738 0.0079156 0.00792382 0.00793203 0.00794025 0.00794847 0.00795668 0.0079649 0.00797311 0.00798133 0.00798955 0.00799776 0.00800598 +-0.00181644 -0.0016993 -0.0014556 -0.000884675 5.39047E-05 0.00121493 0.00247418 0.003749 0.00496189 0.00599981 0.00668694 0.00695417 0.0070161 0.00703275 0.00704221 0.00705062 0.00705887 0.0070671 0.00707532 0.00708355 0.00709177 0.00709999 0.00710822 0.00711644 0.00712466 0.00713289 0.00714111 0.00714933 0.00715756 0.00716578 0.007174 0.00718223 0.00719045 0.00719867 0.0072069 0.00721512 0.00722334 0.00723157 0.00723979 0.00724801 0.00725624 0.00726446 0.00727269 0.00728091 0.00728913 0.00729736 0.00730558 0.0073138 0.00732203 0.00733025 0.00733847 0.0073467 0.00735492 0.00736314 0.00737137 0.00737959 0.00738781 0.00739604 0.00740426 0.00741248 0.00742071 0.00742893 0.00743715 0.00744538 0.0074536 0.00746182 0.00747005 0.00747827 0.0074865 0.00749472 0.00750294 0.00751117 0.00751939 0.00752761 0.00753584 0.00754406 0.00755228 0.00756051 0.00756873 0.00757695 0.00758518 0.0075934 0.00760162 0.00760985 0.00761807 0.00762629 0.00763452 0.00764274 0.00765096 0.00765919 0.00766741 0.00767563 0.00768386 0.00769208 0.00770031 0.00770853 0.00771675 0.00772498 0.0077332 0.00774142 0.00774965 0.00775787 0.00776609 0.00777432 0.00778254 0.00779076 0.00779899 0.00780721 0.00781543 0.00782366 0.00783188 0.0078401 0.00784833 0.00785655 0.00786477 0.007873 0.00788122 0.00788944 0.00789767 0.00790589 0.00791412 0.00792234 0.00793056 0.00793879 0.00794701 0.00795523 0.00796346 0.00797168 0.0079799 0.00798813 0.00799635 0.00800457 0.0080128 +-0.00181826 -0.00170094 -0.0014568 -0.00088517 5.39853E-05 0.0012154 0.00247499 0.0037502 0.00496366 0.00600258 0.00669128 0.0069597 0.00702198 0.00703869 0.00704817 0.00705659 0.00706485 0.00707308 0.00708131 0.00708954 0.00709777 0.007106 0.00711423 0.00712247 0.0071307 0.00713893 0.00714716 0.00715539 0.00716362 0.00717185 0.00718008 0.00718831 0.00719654 0.00720477 0.007213 0.00722123 0.00722946 0.00723769 0.00724593 0.00725416 0.00726239 0.00727062 0.00727885 0.00728708 0.00729531 0.00730354 0.00731177 0.00732 0.00732823 0.00733646 0.00734469 0.00735292 0.00736116 0.00736939 0.00737762 0.00738585 0.00739408 0.00740231 0.00741054 0.00741877 0.007427 0.00743523 0.00744346 0.00745169 0.00745992 0.00746815 0.00747639 0.00748462 0.00749285 0.00750108 0.00750931 0.00751754 0.00752577 0.007534 0.00754223 0.00755046 0.00755869 0.00756692 0.00757515 0.00758338 0.00759161 0.00759985 0.00760808 0.00761631 0.00762454 0.00763277 0.007641 0.00764923 0.00765746 0.00766569 0.00767392 0.00768215 0.00769038 0.00769861 0.00770684 0.00771508 0.00772331 0.00773154 0.00773977 0.007748 0.00775623 0.00776446 0.00777269 0.00778092 0.00778915 0.00779738 0.00780561 0.00781384 0.00782207 0.00783031 0.00783854 0.00784677 0.007855 0.00786323 0.00787146 0.00787969 0.00788792 0.00789615 0.00790438 0.00791261 0.00792084 0.00792907 0.0079373 0.00794554 0.00795377 0.007962 0.00797023 0.00797846 0.00798669 0.00799492 0.00800315 0.00801138 0.00801961 +-0.00182007 -0.00170257 -0.001458 -0.000885664 5.40659E-05 0.00121588 0.00247579 0.00375139 0.00496542 0.00600535 0.00669562 0.00696524 0.00702785 0.00704463 0.00705413 0.00706255 0.00707082 0.00707906 0.0070873 0.00709554 0.00710377 0.00711201 0.00712025 0.00712849 0.00713673 0.00714496 0.0071532 0.00716144 0.00716968 0.00717792 0.00718615 0.00719439 0.00720263 0.00721087 0.00721911 0.00722734 0.00723558 0.00724382 0.00725206 0.00726029 0.00726853 0.00727677 0.00728501 0.00729325 0.00730148 0.00730972 0.00731796 0.0073262 0.00733444 0.00734267 0.00735091 0.00735915 0.00736739 0.00737563 0.00738386 0.0073921 0.00740034 0.00740858 0.00741682 0.00742505 0.00743329 0.00744153 0.00744977 0.00745801 0.00746624 0.00747448 0.00748272 0.00749096 0.00749919 0.00750743 0.00751567 0.00752391 0.00753215 0.00754038 0.00754862 0.00755686 0.0075651 0.00757334 0.00758157 0.00758981 0.00759805 0.00760629 0.00761453 0.00762276 0.007631 0.00763924 0.00764748 0.00765572 0.00766395 0.00767219 0.00768043 0.00768867 0.00769691 0.00770514 0.00771338 0.00772162 0.00772986 0.0077381 0.00774633 0.00775457 0.00776281 0.00777105 0.00777928 0.00778752 0.00779576 0.007804 0.00781224 0.00782047 0.00782871 0.00783695 0.00784519 0.00785343 0.00786166 0.0078699 0.00787814 0.00788638 0.00789462 0.00790285 0.00791109 0.00791933 0.00792757 0.00793581 0.00794404 0.00795228 0.00796052 0.00796876 0.007977 0.00798523 0.00799347 0.00800171 0.00800995 0.00801818 0.00802642 +-0.00182188 -0.00170421 -0.00145919 -0.000886157 5.41466E-05 0.00121635 0.0024766 0.00375258 0.00496718 0.00600811 0.00669995 0.00697077 0.00703373 0.00705057 0.00706008 0.00706851 0.00707679 0.00708504 0.00709328 0.00710153 0.00710977 0.00711802 0.00712626 0.00713451 0.00714275 0.007151 0.00715924 0.00716749 0.00717573 0.00718398 0.00719222 0.00720047 0.00720871 0.00721696 0.0072252 0.00723345 0.0072417 0.00724994 0.00725819 0.00726643 0.00727468 0.00728292 0.00729117 0.00729941 0.00730766 0.0073159 0.00732415 0.00733239 0.00734064 0.00734888 0.00735713 0.00736537 0.00737362 0.00738186 0.00739011 0.00739835 0.0074066 0.00741484 0.00742309 0.00743133 0.00743958 0.00744782 0.00745607 0.00746431 0.00747256 0.0074808 0.00748905 0.0074973 0.00750554 0.00751379 0.00752203 0.00753028 0.00753852 0.00754677 0.00755501 0.00756326 0.0075715 0.00757975 0.00758799 0.00759624 0.00760448 0.00761273 0.00762097 0.00762922 0.00763746 0.00764571 0.00765395 0.0076622 0.00767044 0.00767869 0.00768693 0.00769518 0.00770342 0.00771167 0.00771991 0.00772816 0.0077364 0.00774465 0.0077529 0.00776114 0.00776939 0.00777763 0.00778588 0.00779412 0.00780237 0.00781061 0.00781886 0.0078271 0.00783535 0.00784359 0.00785184 0.00786008 0.00786833 0.00787657 0.00788482 0.00789306 0.00790131 0.00790955 0.0079178 0.00792604 0.00793429 0.00794253 0.00795078 0.00795902 0.00796727 0.00797551 0.00798376 0.007992 0.00800025 0.0080085 0.00801674 0.00802499 0.00803323 +-0.0018237 -0.00170584 -0.00146039 -0.00088665 5.42273E-05 0.00121682 0.00247741 0.00375377 0.00496894 0.00601087 0.00670426 0.00697629 0.0070396 0.0070565 0.00706603 0.00707447 0.00708275 0.00709101 0.00709926 0.00710752 0.00711577 0.00712402 0.00713227 0.00714053 0.00714878 0.00715703 0.00716528 0.00717353 0.00718179 0.00719004 0.00719829 0.00720654 0.0072148 0.00722305 0.0072313 0.00723955 0.00724781 0.00725606 0.00726431 0.00727256 0.00728082 0.00728907 0.00729732 0.00730557 0.00731383 0.00732208 0.00733033 0.00733858 0.00734683 0.00735509 0.00736334 0.00737159 0.00737984 0.0073881 0.00739635 0.0074046 0.00741285 0.00742111 0.00742936 0.00743761 0.00744586 0.00745412 0.00746237 0.00747062 0.00747887 0.00748713 0.00749538 0.00750363 0.00751188 0.00752014 0.00752839 0.00753664 0.00754489 0.00755314 0.0075614 0.00756965 0.0075779 0.00758615 0.00759441 0.00760266 0.00761091 0.00761916 0.00762742 0.00763567 0.00764392 0.00765217 0.00766043 0.00766868 0.00767693 0.00768518 0.00769344 0.00770169 0.00770994 0.00771819 0.00772644 0.0077347 0.00774295 0.0077512 0.00775945 0.00776771 0.00777596 0.00778421 0.00779246 0.00780072 0.00780897 0.00781722 0.00782547 0.00783373 0.00784198 0.00785023 0.00785848 0.00786674 0.00787499 0.00788324 0.00789149 0.00789975 0.007908 0.00791625 0.0079245 0.00793275 0.00794101 0.00794926 0.00795751 0.00796576 0.00797402 0.00798227 0.00799052 0.00799877 0.00800703 0.00801528 0.00802353 0.00803178 0.00804004 +-0.00182551 -0.00170748 -0.00146159 -0.000887141 5.4308E-05 0.0012173 0.00247821 0.00375496 0.0049707 0.00601361 0.00670858 0.00698181 0.00704546 0.00706244 0.00707198 0.00708043 0.00708872 0.00709698 0.00710524 0.0071135 0.00712176 0.00713002 0.00713828 0.00714654 0.0071548 0.00716306 0.00717132 0.00717958 0.00718784 0.0071961 0.00720436 0.00721262 0.00722088 0.00722914 0.0072374 0.00724565 0.00725391 0.00726217 0.00727043 0.00727869 0.00728695 0.00729521 0.00730347 0.00731173 0.00731999 0.00732825 0.00733651 0.00734477 0.00735303 0.00736129 0.00736955 0.00737781 0.00738607 0.00739433 0.00740259 0.00741085 0.00741911 0.00742737 0.00743563 0.00744389 0.00745215 0.0074604 0.00746866 0.00747692 0.00748518 0.00749344 0.0075017 0.00750996 0.00751822 0.00752648 0.00753474 0.007543 0.00755126 0.00755952 0.00756778 0.00757604 0.0075843 0.00759256 0.00760082 0.00760908 0.00761734 0.0076256 0.00763386 0.00764212 0.00765038 0.00765864 0.0076669 0.00767515 0.00768341 0.00769167 0.00769993 0.00770819 0.00771645 0.00772471 0.00773297 0.00774123 0.00774949 0.00775775 0.00776601 0.00777427 0.00778253 0.00779079 0.00779905 0.00780731 0.00781557 0.00782383 0.00783209 0.00784035 0.00784861 0.00785687 0.00786513 0.00787339 0.00788165 0.0078899 0.00789816 0.00790642 0.00791468 0.00792294 0.0079312 0.00793946 0.00794772 0.00795598 0.00796424 0.0079725 0.00798076 0.00798902 0.00799728 0.00800554 0.0080138 0.00802206 0.00803032 0.00803858 0.00804684 +-0.00182732 -0.00170911 -0.00146278 -0.000887632 5.43887E-05 0.00121777 0.00247902 0.00375614 0.00497245 0.00601636 0.00671288 0.00698732 0.00705133 0.00706836 0.00707793 0.00708638 0.00709468 0.00710295 0.00711122 0.00711948 0.00712775 0.00713602 0.00714428 0.00715255 0.00716082 0.00716908 0.00717735 0.00718562 0.00719389 0.00720215 0.00721042 0.00721869 0.00722695 0.00723522 0.00724349 0.00725175 0.00726002 0.00726829 0.00727655 0.00728482 0.00729309 0.00730135 0.00730962 0.00731789 0.00732615 0.00733442 0.00734269 0.00735095 0.00735922 0.00736749 0.00737576 0.00738402 0.00739229 0.00740056 0.00740882 0.00741709 0.00742536 0.00743362 0.00744189 0.00745016 0.00745842 0.00746669 0.00747496 0.00748322 0.00749149 0.00749976 0.00750802 0.00751629 0.00752456 0.00753283 0.00754109 0.00754936 0.00755763 0.00756589 0.00757416 0.00758243 0.00759069 0.00759896 0.00760723 0.00761549 0.00762376 0.00763203 0.00764029 0.00764856 0.00765683 0.00766509 0.00767336 0.00768163 0.0076899 0.00769816 0.00770643 0.0077147 0.00772296 0.00773123 0.0077395 0.00774776 0.00775603 0.0077643 0.00777256 0.00778083 0.0077891 0.00779736 0.00780563 0.0078139 0.00782216 0.00783043 0.0078387 0.00784696 0.00785523 0.0078635 0.00787177 0.00788003 0.0078883 0.00789657 0.00790483 0.0079131 0.00792137 0.00792963 0.0079379 0.00794617 0.00795443 0.0079627 0.00797097 0.00797923 0.0079875 0.00799577 0.00800403 0.0080123 0.00802057 0.00802884 0.0080371 0.00804537 0.00805364 +-0.00182913 -0.00171075 -0.00146397 -0.000888123 5.44694E-05 0.00121824 0.00247982 0.00375732 0.0049742 0.00601909 0.00671718 0.00699283 0.00705719 0.00707429 0.00708387 0.00709233 0.00710064 0.00710891 0.00711719 0.00712546 0.00713374 0.00714201 0.00715029 0.00715856 0.00716683 0.00717511 0.00718338 0.00719166 0.00719993 0.0072082 0.00721648 0.00722475 0.00723303 0.0072413 0.00724957 0.00725785 0.00726612 0.0072744 0.00728267 0.00729094 0.00729922 0.00730749 0.00731577 0.00732404 0.00733231 0.00734059 0.00734886 0.00735714 0.00736541 0.00737368 0.00738196 0.00739023 0.00739851 0.00740678 0.00741506 0.00742333 0.0074316 0.00743988 0.00744815 0.00745643 0.0074647 0.00747297 0.00748125 0.00748952 0.0074978 0.00750607 0.00751434 0.00752262 0.00753089 0.00753917 0.00754744 0.00755571 0.00756399 0.00757226 0.00758054 0.00758881 0.00759708 0.00760536 0.00761363 0.00762191 0.00763018 0.00763845 0.00764673 0.007655 0.00766328 0.00767155 0.00767982 0.0076881 0.00769637 0.00770465 0.00771292 0.00772119 0.00772947 0.00773774 0.00774602 0.00775429 0.00776257 0.00777084 0.00777911 0.00778739 0.00779566 0.00780394 0.00781221 0.00782048 0.00782876 0.00783703 0.00784531 0.00785358 0.00786185 0.00787013 0.0078784 0.00788668 0.00789495 0.00790322 0.0079115 0.00791977 0.00792805 0.00793632 0.00794459 0.00795287 0.00796114 0.00796942 0.00797769 0.00798596 0.00799424 0.00800251 0.00801079 0.00801906 0.00802733 0.00803561 0.00804388 0.00805216 0.00806043 +-0.00183094 -0.00171238 -0.00146517 -0.000888612 5.45501E-05 0.00121871 0.00248062 0.00375851 0.00497595 0.00602183 0.00672147 0.00699834 0.00706305 0.00708021 0.00708981 0.00709828 0.00710659 0.00711488 0.00712316 0.00713144 0.00713972 0.007148 0.00715628 0.00716457 0.00717285 0.00718113 0.00718941 0.00719769 0.00720597 0.00721425 0.00722253 0.00723082 0.0072391 0.00724738 0.00725566 0.00726394 0.00727222 0.0072805 0.00728878 0.00729707 0.00730535 0.00731363 0.00732191 0.00733019 0.00733847 0.00734675 0.00735503 0.00736332 0.0073716 0.00737988 0.00738816 0.00739644 0.00740472 0.007413 0.00742128 0.00742957 0.00743785 0.00744613 0.00745441 0.00746269 0.00747097 0.00747925 0.00748753 0.00749582 0.0075041 0.00751238 0.00752066 0.00752894 0.00753722 0.0075455 0.00755378 0.00756207 0.00757035 0.00757863 0.00758691 0.00759519 0.00760347 0.00761175 0.00762003 0.00762832 0.0076366 0.00764488 0.00765316 0.00766144 0.00766972 0.007678 0.00768628 0.00769457 0.00770285 0.00771113 0.00771941 0.00772769 0.00773597 0.00774425 0.00775254 0.00776082 0.0077691 0.00777738 0.00778566 0.00779394 0.00780222 0.0078105 0.00781879 0.00782707 0.00783535 0.00784363 0.00785191 0.00786019 0.00786847 0.00787675 0.00788504 0.00789332 0.0079016 0.00790988 0.00791816 0.00792644 0.00793472 0.007943 0.00795129 0.00795957 0.00796785 0.00797613 0.00798441 0.00799269 0.00800097 0.00800925 0.00801754 0.00802582 0.0080341 0.00804238 0.00805066 0.00805894 0.00806722 +-0.00183275 -0.00171401 -0.00146636 -0.000889101 5.46309E-05 0.00121918 0.00248142 0.00375969 0.00497769 0.00602455 0.00672575 0.00700384 0.0070689 0.00708613 0.00709575 0.00710423 0.00711254 0.00712084 0.00712913 0.00713741 0.0071457 0.00715399 0.00716228 0.00717057 0.00717886 0.00718715 0.00719543 0.00720372 0.00721201 0.0072203 0.00722859 0.00723688 0.00724516 0.00725345 0.00726174 0.00727003 0.00727832 0.00728661 0.0072949 0.00730318 0.00731147 0.00731976 0.00732805 0.00733634 0.00734463 0.00735291 0.0073612 0.00736949 0.00737778 0.00738607 0.00739436 0.00740265 0.00741093 0.00741922 0.00742751 0.0074358 0.00744409 0.00745238 0.00746066 0.00746895 0.00747724 0.00748553 0.00749382 0.00750211 0.0075104 0.00751868 0.00752697 0.00753526 0.00754355 0.00755184 0.00756013 0.00756841 0.0075767 0.00758499 0.00759328 0.00760157 0.00760986 0.00761815 0.00762643 0.00763472 0.00764301 0.0076513 0.00765959 0.00766788 0.00767617 0.00768445 0.00769274 0.00770103 0.00770932 0.00771761 0.0077259 0.00773418 0.00774247 0.00775076 0.00775905 0.00776734 0.00777563 0.00778392 0.0077922 0.00780049 0.00780878 0.00781707 0.00782536 0.00783365 0.00784193 0.00785022 0.00785851 0.0078668 0.00787509 0.00788338 0.00789167 0.00789995 0.00790824 0.00791653 0.00792482 0.00793311 0.0079414 0.00794968 0.00795797 0.00796626 0.00797455 0.00798284 0.00799113 0.00799942 0.0080077 0.00801599 0.00802428 0.00803257 0.00804086 0.00804915 0.00805743 0.00806572 0.00807401 +-0.00183456 -0.00171564 -0.00146755 -0.000889589 5.47116E-05 0.00121965 0.00248222 0.00376087 0.00497943 0.00602727 0.00673002 0.00700933 0.00707475 0.00709205 0.00710168 0.00711017 0.00711849 0.00712679 0.00713509 0.00714339 0.00715168 0.00715998 0.00716827 0.00717657 0.00718486 0.00719316 0.00720146 0.00720975 0.00721805 0.00722634 0.00723464 0.00724293 0.00725123 0.00725952 0.00726782 0.00727612 0.00728441 0.00729271 0.007301 0.0073093 0.00731759 0.00732589 0.00733419 0.00734248 0.00735078 0.00735907 0.00736737 0.00737566 0.00738396 0.00739226 0.00740055 0.00740885 0.00741714 0.00742544 0.00743373 0.00744203 0.00745033 0.00745862 0.00746692 0.00747521 0.00748351 0.0074918 0.0075001 0.0075084 0.00751669 0.00752499 0.00753328 0.00754158 0.00754987 0.00755817 0.00756647 0.00757476 0.00758306 0.00759135 0.00759965 0.00760794 0.00761624 0.00762454 0.00763283 0.00764113 0.00764942 0.00765772 0.00766601 0.00767431 0.0076826 0.0076909 0.0076992 0.00770749 0.00771579 0.00772408 0.00773238 0.00774067 0.00774897 0.00775727 0.00776556 0.00777386 0.00778215 0.00779045 0.00779874 0.00780704 0.00781534 0.00782363 0.00783193 0.00784022 0.00784852 0.00785681 0.00786511 0.00787341 0.0078817 0.00789 0.00789829 0.00790659 0.00791488 0.00792318 0.00793148 0.00793977 0.00794807 0.00795636 0.00796466 0.00797295 0.00798125 0.00798955 0.00799784 0.00800614 0.00801443 0.00802273 0.00803102 0.00803932 0.00804761 0.00805591 0.00806421 0.0080725 0.0080808 +-0.00183637 -0.00171727 -0.00146874 -0.000890076 5.47924E-05 0.00122012 0.00248302 0.00376204 0.00498116 0.00602999 0.00673429 0.00701482 0.0070806 0.00709797 0.00710761 0.00711611 0.00712444 0.00713275 0.00714105 0.00714935 0.00715766 0.00716596 0.00717426 0.00718257 0.00719087 0.00719917 0.00720747 0.00721578 0.00722408 0.00723238 0.00724069 0.00724899 0.00725729 0.00726559 0.0072739 0.0072822 0.0072905 0.00729881 0.00730711 0.00731541 0.00732371 0.00733202 0.00734032 0.00734862 0.00735693 0.00736523 0.00737353 0.00738183 0.00739014 0.00739844 0.00740674 0.00741505 0.00742335 0.00743165 0.00743995 0.00744826 0.00745656 0.00746486 0.00747317 0.00748147 0.00748977 0.00749808 0.00750638 0.00751468 0.00752298 0.00753129 0.00753959 0.00754789 0.0075562 0.0075645 0.0075728 0.0075811 0.00758941 0.00759771 0.00760601 0.00761432 0.00762262 0.00763092 0.00763922 0.00764753 0.00765583 0.00766413 0.00767244 0.00768074 0.00768904 0.00769734 0.00770565 0.00771395 0.00772225 0.00773056 0.00773886 0.00774716 0.00775546 0.00776377 0.00777207 0.00778037 0.00778868 0.00779698 0.00780528 0.00781358 0.00782189 0.00783019 0.00783849 0.0078468 0.0078551 0.0078634 0.0078717 0.00788001 0.00788831 0.00789661 0.00790492 0.00791322 0.00792152 0.00792983 0.00793813 0.00794643 0.00795473 0.00796304 0.00797134 0.00797964 0.00798795 0.00799625 0.00800455 0.00801285 0.00802116 0.00802946 0.00803776 0.00804607 0.00805437 0.00806267 0.00807097 0.00807928 0.00808758 +-0.00183818 -0.0017189 -0.00146993 -0.000890563 5.48732E-05 0.00122059 0.00248382 0.00376322 0.0049829 0.0060327 0.00673855 0.0070203 0.00708644 0.00710388 0.00711354 0.00712205 0.00713038 0.0071387 0.00714701 0.00715532 0.00716363 0.00717194 0.00718025 0.00718856 0.00719687 0.00720518 0.00721349 0.0072218 0.00723011 0.00723842 0.00724673 0.00725504 0.00726335 0.00727166 0.00727997 0.00728828 0.00729659 0.0073049 0.00731321 0.00732152 0.00732983 0.00733814 0.00734645 0.00735476 0.00736307 0.00737138 0.00737969 0.007388 0.00739631 0.00740462 0.00741293 0.00742124 0.00742955 0.00743786 0.00744617 0.00745448 0.00746279 0.0074711 0.00747941 0.00748772 0.00749603 0.00750434 0.00751265 0.00752096 0.00752927 0.00753758 0.00754589 0.0075542 0.00756251 0.00757082 0.00757913 0.00758744 0.00759575 0.00760406 0.00761237 0.00762068 0.00762899 0.0076373 0.00764561 0.00765392 0.00766223 0.00767054 0.00767885 0.00768716 0.00769548 0.00770379 0.0077121 0.00772041 0.00772872 0.00773703 0.00774534 0.00775365 0.00776196 0.00777027 0.00777858 0.00778689 0.0077952 0.00780351 0.00781182 0.00782013 0.00782844 0.00783675 0.00784506 0.00785337 0.00786168 0.00786999 0.0078783 0.00788661 0.00789492 0.00790323 0.00791154 0.00791985 0.00792816 0.00793647 0.00794478 0.00795309 0.0079614 0.00796971 0.00797802 0.00798633 0.00799464 0.00800295 0.00801126 0.00801957 0.00802788 0.00803619 0.0080445 0.00805281 0.00806112 0.00806943 0.00807774 0.00808605 0.00809436 +-0.00183999 -0.00172053 -0.00147111 -0.000891049 5.4954E-05 0.00122105 0.00248462 0.00376439 0.00498463 0.0060354 0.0067428 0.00702578 0.00709229 0.00710979 0.00711946 0.00712798 0.00713633 0.00714465 0.00715296 0.00716128 0.0071696 0.00717792 0.00718623 0.00719455 0.00720287 0.00721119 0.0072195 0.00722782 0.00723614 0.00724445 0.00725277 0.00726109 0.00726941 0.00727772 0.00728604 0.00729436 0.00730268 0.00731099 0.00731931 0.00732763 0.00733595 0.00734426 0.00735258 0.0073609 0.00736921 0.00737753 0.00738585 0.00739417 0.00740248 0.0074108 0.00741912 0.00742744 0.00743575 0.00744407 0.00745239 0.0074607 0.00746902 0.00747734 0.00748566 0.00749397 0.00750229 0.00751061 0.00751893 0.00752724 0.00753556 0.00754388 0.00755219 0.00756051 0.00756883 0.00757715 0.00758546 0.00759378 0.0076021 0.00761042 0.00761873 0.00762705 0.00763537 0.00764368 0.007652 0.00766032 0.00766864 0.00767695 0.00768527 0.00769359 0.00770191 0.00771022 0.00771854 0.00772686 0.00773517 0.00774349 0.00775181 0.00776013 0.00776844 0.00777676 0.00778508 0.0077934 0.00780171 0.00781003 0.00781835 0.00782667 0.00783498 0.0078433 0.00785162 0.00785993 0.00786825 0.00787657 0.00788489 0.0078932 0.00790152 0.00790984 0.00791816 0.00792647 0.00793479 0.00794311 0.00795142 0.00795974 0.00796806 0.00797638 0.00798469 0.00799301 0.00800133 0.00800965 0.00801796 0.00802628 0.0080346 0.00804291 0.00805123 0.00805955 0.00806787 0.00807618 0.0080845 0.00809282 0.00810114 +-0.0018418 -0.00172215 -0.0014723 -0.000891534 5.50348E-05 0.00122152 0.00248541 0.00376556 0.00498636 0.0060381 0.00674704 0.00703126 0.00709812 0.00711569 0.00712539 0.00713391 0.00714226 0.00715059 0.00715892 0.00716724 0.00717557 0.00718389 0.00719222 0.00720054 0.00720886 0.00721719 0.00722551 0.00723384 0.00724216 0.00725049 0.00725881 0.00726714 0.00727546 0.00728378 0.00729211 0.00730043 0.00730876 0.00731708 0.00732541 0.00733373 0.00734206 0.00735038 0.00735871 0.00736703 0.00737535 0.00738368 0.007392 0.00740033 0.00740865 0.00741698 0.0074253 0.00743363 0.00744195 0.00745027 0.0074586 0.00746692 0.00747525 0.00748357 0.0074919 0.00750022 0.00750855 0.00751687 0.00752519 0.00753352 0.00754184 0.00755017 0.00755849 0.00756682 0.00757514 0.00758347 0.00759179 0.00760011 0.00760844 0.00761676 0.00762509 0.00763341 0.00764174 0.00765006 0.00765839 0.00766671 0.00767504 0.00768336 0.00769168 0.00770001 0.00770833 0.00771666 0.00772498 0.00773331 0.00774163 0.00774996 0.00775828 0.0077666 0.00777493 0.00778325 0.00779158 0.0077999 0.00780823 0.00781655 0.00782488 0.0078332 0.00784152 0.00784985 0.00785817 0.0078665 0.00787482 0.00788315 0.00789147 0.0078998 0.00790812 0.00791645 0.00792477 0.00793309 0.00794142 0.00794974 0.00795807 0.00796639 0.00797472 0.00798304 0.00799137 0.00799969 0.00800801 0.00801634 0.00802466 0.00803299 0.00804131 0.00804964 0.00805796 0.00806629 0.00807461 0.00808294 0.00809126 0.00809958 0.00810791 +-0.00184361 -0.00172378 -0.00147348 -0.000892018 5.51157E-05 0.00122199 0.00248621 0.00376673 0.00498808 0.00604079 0.00675128 0.00703673 0.00710396 0.0071216 0.0071313 0.00713984 0.0071482 0.00715653 0.00716487 0.0071732 0.00718153 0.00718986 0.00719819 0.00720653 0.00721486 0.00722319 0.00723152 0.00723985 0.00724818 0.00725652 0.00726485 0.00727318 0.00728151 0.00728984 0.00729817 0.00730651 0.00731484 0.00732317 0.0073315 0.00733983 0.00734816 0.0073565 0.00736483 0.00737316 0.00738149 0.00738982 0.00739815 0.00740649 0.00741482 0.00742315 0.00743148 0.00743981 0.00744814 0.00745648 0.00746481 0.00747314 0.00748147 0.0074898 0.00749813 0.00750647 0.0075148 0.00752313 0.00753146 0.00753979 0.00754812 0.00755646 0.00756479 0.00757312 0.00758145 0.00758978 0.00759811 0.00760645 0.00761478 0.00762311 0.00763144 0.00763977 0.0076481 0.00765644 0.00766477 0.0076731 0.00768143 0.00768976 0.00769809 0.00770643 0.00771476 0.00772309 0.00773142 0.00773975 0.00774808 0.00775642 0.00776475 0.00777308 0.00778141 0.00778974 0.00779807 0.00780641 0.00781474 0.00782307 0.0078314 0.00783973 0.00784806 0.0078564 0.00786473 0.00787306 0.00788139 0.00788972 0.00789805 0.00790639 0.00791472 0.00792305 0.00793138 0.00793971 0.00794804 0.00795638 0.00796471 0.00797304 0.00798137 0.0079897 0.00799803 0.00800637 0.0080147 0.00802303 0.00803136 0.00803969 0.00804802 0.00805636 0.00806469 0.00807302 0.00808135 0.00808968 0.00809801 0.00810635 0.00811468 +-0.00184541 -0.00172541 -0.00147467 -0.000892502 5.51966E-05 0.00122246 0.002487 0.0037679 0.0049898 0.00604348 0.0067555 0.00704219 0.00710979 0.0071275 0.00713722 0.00714576 0.00715413 0.00716247 0.00717081 0.00717915 0.00718749 0.00719583 0.00720417 0.00721251 0.00722085 0.00722919 0.00723753 0.00724586 0.0072542 0.00726254 0.00727088 0.00727922 0.00728756 0.0072959 0.00730424 0.00731258 0.00732091 0.00732925 0.00733759 0.00734593 0.00735427 0.00736261 0.00737095 0.00737929 0.00738762 0.00739596 0.0074043 0.00741264 0.00742098 0.00742932 0.00743766 0.007446 0.00745434 0.00746267 0.00747101 0.00747935 0.00748769 0.00749603 0.00750437 0.00751271 0.00752105 0.00752939 0.00753772 0.00754606 0.0075544 0.00756274 0.00757108 0.00757942 0.00758776 0.0075961 0.00760444 0.00761277 0.00762111 0.00762945 0.00763779 0.00764613 0.00765447 0.00766281 0.00767115 0.00767949 0.00768782 0.00769616 0.0077045 0.00771284 0.00772118 0.00772952 0.00773786 0.0077462 0.00775453 0.00776287 0.00777121 0.00777955 0.00778789 0.00779623 0.00780457 0.00781291 0.00782125 0.00782958 0.00783792 0.00784626 0.0078546 0.00786294 0.00787128 0.00787962 0.00788796 0.0078963 0.00790463 0.00791297 0.00792131 0.00792965 0.00793799 0.00794633 0.00795467 0.00796301 0.00797135 0.00797968 0.00798802 0.00799636 0.0080047 0.00801304 0.00802138 0.00802972 0.00803806 0.0080464 0.00805473 0.00806307 0.00807141 0.00807975 0.00808809 0.00809643 0.00810477 0.00811311 0.00812144 +-0.00184722 -0.00172703 -0.00147585 -0.000892985 5.52774E-05 0.00122292 0.00248779 0.00376906 0.00499152 0.00604616 0.00675973 0.00704765 0.00711562 0.00713339 0.00714314 0.00715169 0.00716006 0.00716841 0.00717676 0.0071851 0.00719345 0.0072018 0.00721014 0.00721849 0.00722683 0.00723518 0.00724353 0.00725187 0.00726022 0.00726857 0.00727691 0.00728526 0.0072936 0.00730195 0.0073103 0.00731864 0.00732699 0.00733533 0.00734368 0.00735203 0.00736037 0.00736872 0.00737706 0.00738541 0.00739376 0.0074021 0.00741045 0.00741879 0.00742714 0.00743549 0.00744383 0.00745218 0.00746052 0.00746887 0.00747722 0.00748556 0.00749391 0.00750225 0.0075106 0.00751895 0.00752729 0.00753564 0.00754398 0.00755233 0.00756068 0.00756902 0.00757737 0.00758572 0.00759406 0.00760241 0.00761075 0.0076191 0.00762745 0.00763579 0.00764414 0.00765248 0.00766083 0.00766918 0.00767752 0.00768587 0.00769421 0.00770256 0.00771091 0.00771925 0.0077276 0.00773594 0.00774429 0.00775264 0.00776098 0.00776933 0.00777767 0.00778602 0.00779437 0.00780271 0.00781106 0.0078194 0.00782775 0.0078361 0.00784444 0.00785279 0.00786113 0.00786948 0.00787783 0.00788617 0.00789452 0.00790286 0.00791121 0.00791956 0.0079279 0.00793625 0.0079446 0.00795294 0.00796129 0.00796963 0.00797798 0.00798633 0.00799467 0.00800302 0.00801136 0.00801971 0.00802806 0.0080364 0.00804475 0.00805309 0.00806144 0.00806979 0.00807813 0.00808648 0.00809482 0.00810317 0.00811152 0.00811986 0.00812821 +-0.00184902 -0.00172866 -0.00147703 -0.000893467 5.53583E-05 0.00122339 0.00248858 0.00377023 0.00499323 0.00604883 0.00676394 0.0070531 0.00712144 0.00713929 0.00714905 0.00715761 0.00716599 0.00717435 0.0071827 0.00719105 0.00719941 0.00720776 0.00721611 0.00722447 0.00723282 0.00724117 0.00724953 0.00725788 0.00726623 0.00727459 0.00728294 0.00729129 0.00729965 0.007308 0.00731635 0.00732471 0.00733306 0.00734141 0.00734976 0.00735812 0.00736647 0.00737482 0.00738318 0.00739153 0.00739988 0.00740824 0.00741659 0.00742494 0.0074333 0.00744165 0.00745 0.00745836 0.00746671 0.00747506 0.00748342 0.00749177 0.00750012 0.00750848 0.00751683 0.00752518 0.00753354 0.00754189 0.00755024 0.0075586 0.00756695 0.0075753 0.00758366 0.00759201 0.00760036 0.00760871 0.00761707 0.00762542 0.00763377 0.00764213 0.00765048 0.00765883 0.00766719 0.00767554 0.00768389 0.00769225 0.0077006 0.00770895 0.00771731 0.00772566 0.00773401 0.00774237 0.00775072 0.00775907 0.00776743 0.00777578 0.00778413 0.00779249 0.00780084 0.00780919 0.00781755 0.0078259 0.00783425 0.00784261 0.00785096 0.00785931 0.00786767 0.00787602 0.00788437 0.00789272 0.00790108 0.00790943 0.00791778 0.00792614 0.00793449 0.00794284 0.0079512 0.00795955 0.0079679 0.00797626 0.00798461 0.00799296 0.00800132 0.00800967 0.00801802 0.00802638 0.00803473 0.00804308 0.00805144 0.00805979 0.00806814 0.0080765 0.00808485 0.0080932 0.00810156 0.00810991 0.00811826 0.00812662 0.00813497 +-0.00185083 -0.00173028 -0.00147821 -0.000893948 5.54393E-05 0.00122385 0.00248937 0.00377139 0.00499495 0.0060515 0.00676814 0.00705855 0.00712727 0.00714518 0.00715495 0.00716352 0.00717191 0.00718028 0.00718864 0.007197 0.00720536 0.00721372 0.00722208 0.00723044 0.0072388 0.00724716 0.00725552 0.00726388 0.00727224 0.0072806 0.00728896 0.00729732 0.00730568 0.00731405 0.00732241 0.00733077 0.00733913 0.00734749 0.00735585 0.00736421 0.00737257 0.00738093 0.00738929 0.00739765 0.00740601 0.00741437 0.00742273 0.00743109 0.00743945 0.00744781 0.00745617 0.00746453 0.00747289 0.00748125 0.00748961 0.00749797 0.00750633 0.00751469 0.00752306 0.00753142 0.00753978 0.00754814 0.0075565 0.00756486 0.00757322 0.00758158 0.00758994 0.0075983 0.00760666 0.00761502 0.00762338 0.00763174 0.0076401 0.00764846 0.00765682 0.00766518 0.00767354 0.0076819 0.00769026 0.00769862 0.00770698 0.00771534 0.00772371 0.00773207 0.00774043 0.00774879 0.00775715 0.00776551 0.00777387 0.00778223 0.00779059 0.00779895 0.00780731 0.00781567 0.00782403 0.00783239 0.00784075 0.00784911 0.00785747 0.00786583 0.00787419 0.00788255 0.00789091 0.00789927 0.00790763 0.00791599 0.00792436 0.00793272 0.00794108 0.00794944 0.0079578 0.00796616 0.00797452 0.00798288 0.00799124 0.0079996 0.00800796 0.00801632 0.00802468 0.00803304 0.0080414 0.00804976 0.00805812 0.00806648 0.00807484 0.0080832 0.00809156 0.00809992 0.00810828 0.00811664 0.008125 0.00813337 0.00814173 +-0.00185263 -0.00173191 -0.00147939 -0.000894429 5.55202E-05 0.00122432 0.00249016 0.00377255 0.00499665 0.00605417 0.00677234 0.007064 0.00713309 0.00715107 0.00716086 0.00716944 0.00717783 0.00718621 0.00719457 0.00720294 0.00721131 0.00721968 0.00722805 0.00723641 0.00724478 0.00725315 0.00726152 0.00726988 0.00727825 0.00728662 0.00729499 0.00730335 0.00731172 0.00732009 0.00732846 0.00733682 0.00734519 0.00735356 0.00736193 0.00737029 0.00737866 0.00738703 0.0073954 0.00740376 0.00741213 0.0074205 0.00742887 0.00743723 0.0074456 0.00745397 0.00746234 0.00747071 0.00747907 0.00748744 0.00749581 0.00750418 0.00751254 0.00752091 0.00752928 0.00753765 0.00754601 0.00755438 0.00756275 0.00757112 0.00757948 0.00758785 0.00759622 0.00760459 0.00761295 0.00762132 0.00762969 0.00763806 0.00764642 0.00765479 0.00766316 0.00767153 0.00767989 0.00768826 0.00769663 0.007705 0.00771337 0.00772173 0.0077301 0.00773847 0.00774684 0.0077552 0.00776357 0.00777194 0.00778031 0.00778867 0.00779704 0.00780541 0.00781378 0.00782214 0.00783051 0.00783888 0.00784725 0.00785561 0.00786398 0.00787235 0.00788072 0.00788908 0.00789745 0.00790582 0.00791419 0.00792255 0.00793092 0.00793929 0.00794766 0.00795603 0.00796439 0.00797276 0.00798113 0.0079895 0.00799786 0.00800623 0.0080146 0.00802297 0.00803133 0.0080397 0.00804807 0.00805644 0.0080648 0.00807317 0.00808154 0.00808991 0.00809827 0.00810664 0.00811501 0.00812338 0.00813174 0.00814011 0.00814848 +-0.00185444 -0.00173353 -0.00148057 -0.000894909 5.56011E-05 0.00122478 0.00249095 0.00377371 0.00499836 0.00605683 0.00677653 0.00706943 0.0071389 0.00715696 0.00716676 0.00717535 0.00718375 0.00719213 0.00720051 0.00720888 0.00721726 0.00722563 0.00723401 0.00724238 0.00725076 0.00725913 0.00726751 0.00727588 0.00728426 0.00729263 0.007301 0.00730938 0.00731775 0.00732613 0.0073345 0.00734288 0.00735125 0.00735963 0.007368 0.00737638 0.00738475 0.00739313 0.0074015 0.00740988 0.00741825 0.00742663 0.007435 0.00744338 0.00745175 0.00746013 0.0074685 0.00747687 0.00748525 0.00749362 0.007502 0.00751037 0.00751875 0.00752712 0.0075355 0.00754387 0.00755225 0.00756062 0.007569 0.00757737 0.00758575 0.00759412 0.0076025 0.00761087 0.00761925 0.00762762 0.007636 0.00764437 0.00765274 0.00766112 0.00766949 0.00767787 0.00768624 0.00769462 0.00770299 0.00771137 0.00771974 0.00772812 0.00773649 0.00774487 0.00775324 0.00776162 0.00776999 0.00777837 0.00778674 0.00779512 0.00780349 0.00781187 0.00782024 0.00782861 0.00783699 0.00784536 0.00785374 0.00786211 0.00787049 0.00787886 0.00788724 0.00789561 0.00790399 0.00791236 0.00792074 0.00792911 0.00793749 0.00794586 0.00795424 0.00796261 0.00797099 0.00797936 0.00798774 0.00799611 0.00800448 0.00801286 0.00802123 0.00802961 0.00803798 0.00804636 0.00805473 0.00806311 0.00807148 0.00807986 0.00808823 0.00809661 0.00810498 0.00811336 0.00812173 0.00813011 0.00813848 0.00814686 0.00815523 +-0.00185624 -0.00173515 -0.00148175 -0.000895388 5.56821E-05 0.00122524 0.00249174 0.00377487 0.00500006 0.00605948 0.00678072 0.00707487 0.00714471 0.00716284 0.00717266 0.00718126 0.00718967 0.00719806 0.00720644 0.00721482 0.0072232 0.00723158 0.00723997 0.00724835 0.00725673 0.00726511 0.00727349 0.00728188 0.00729026 0.00729864 0.00730702 0.0073154 0.00732379 0.00733217 0.00734055 0.00734893 0.00735731 0.00736569 0.00737408 0.00738246 0.00739084 0.00739922 0.0074076 0.00741599 0.00742437 0.00743275 0.00744113 0.00744951 0.0074579 0.00746628 0.00747466 0.00748304 0.00749142 0.00749981 0.00750819 0.00751657 0.00752495 0.00753333 0.00754172 0.0075501 0.00755848 0.00756686 0.00757524 0.00758363 0.00759201 0.00760039 0.00760877 0.00761715 0.00762553 0.00763392 0.0076423 0.00765068 0.00765906 0.00766744 0.00767583 0.00768421 0.00769259 0.00770097 0.00770935 0.00771774 0.00772612 0.0077345 0.00774288 0.00775126 0.00775965 0.00776803 0.00777641 0.00778479 0.00779317 0.00780156 0.00780994 0.00781832 0.0078267 0.00783508 0.00784346 0.00785185 0.00786023 0.00786861 0.00787699 0.00788537 0.00789376 0.00790214 0.00791052 0.0079189 0.00792728 0.00793567 0.00794405 0.00795243 0.00796081 0.00796919 0.00797758 0.00798596 0.00799434 0.00800272 0.0080111 0.00801949 0.00802787 0.00803625 0.00804463 0.00805301 0.0080614 0.00806978 0.00807816 0.00808654 0.00809492 0.0081033 0.00811169 0.00812007 0.00812845 0.00813683 0.00814521 0.0081536 0.00816198 +-0.00185804 -0.00173677 -0.00148293 -0.000895867 5.57631E-05 0.00122571 0.00249252 0.00377602 0.00500176 0.00606213 0.00678489 0.0070803 0.00715052 0.00716872 0.00717856 0.00718716 0.00719558 0.00720398 0.00721237 0.00722075 0.00722914 0.00723753 0.00724592 0.00725431 0.0072627 0.00727109 0.00727948 0.00728787 0.00729626 0.00730465 0.00731303 0.00732142 0.00732981 0.0073382 0.00734659 0.00735498 0.00736337 0.00737176 0.00738015 0.00738854 0.00739693 0.00740531 0.0074137 0.00742209 0.00743048 0.00743887 0.00744726 0.00745565 0.00746404 0.00747243 0.00748082 0.00748921 0.0074976 0.00750598 0.00751437 0.00752276 0.00753115 0.00753954 0.00754793 0.00755632 0.00756471 0.0075731 0.00758149 0.00758988 0.00759826 0.00760665 0.00761504 0.00762343 0.00763182 0.00764021 0.0076486 0.00765699 0.00766538 0.00767377 0.00768216 0.00769054 0.00769893 0.00770732 0.00771571 0.0077241 0.00773249 0.00774088 0.00774927 0.00775766 0.00776605 0.00777444 0.00778282 0.00779121 0.0077996 0.00780799 0.00781638 0.00782477 0.00783316 0.00784155 0.00784994 0.00785833 0.00786672 0.0078751 0.00788349 0.00789188 0.00790027 0.00790866 0.00791705 0.00792544 0.00793383 0.00794222 0.00795061 0.007959 0.00796738 0.00797577 0.00798416 0.00799255 0.00800094 0.00800933 0.00801772 0.00802611 0.0080345 0.00804289 0.00805128 0.00805966 0.00806805 0.00807644 0.00808483 0.00809322 0.00810161 0.00811 0.00811839 0.00812678 0.00813517 0.00814356 0.00815194 0.00816033 0.00816872 +-0.00185984 -0.00173839 -0.0014841 -0.000896345 5.58441E-05 0.00122617 0.00249331 0.00377718 0.00500346 0.00606478 0.00678906 0.00708572 0.00715633 0.0071746 0.00718445 0.00719307 0.00720149 0.00720989 0.00721829 0.00722669 0.00723508 0.00724348 0.00725188 0.00726027 0.00726867 0.00727706 0.00728546 0.00729386 0.00730225 0.00731065 0.00731905 0.00732744 0.00733584 0.00734423 0.00735263 0.00736103 0.00736942 0.00737782 0.00738622 0.00739461 0.00740301 0.0074114 0.0074198 0.0074282 0.00743659 0.00744499 0.00745339 0.00746178 0.00747018 0.00747857 0.00748697 0.00749537 0.00750376 0.00751216 0.00752056 0.00752895 0.00753735 0.00754574 0.00755414 0.00756254 0.00757093 0.00757933 0.00758773 0.00759612 0.00760452 0.00761291 0.00762131 0.00762971 0.0076381 0.0076465 0.0076549 0.00766329 0.00767169 0.00768008 0.00768848 0.00769688 0.00770527 0.00771367 0.00772207 0.00773046 0.00773886 0.00774725 0.00775565 0.00776405 0.00777244 0.00778084 0.00778924 0.00779763 0.00780603 0.00781443 0.00782282 0.00783122 0.00783961 0.00784801 0.00785641 0.0078648 0.0078732 0.0078816 0.00788999 0.00789839 0.00790678 0.00791518 0.00792358 0.00793197 0.00794037 0.00794877 0.00795716 0.00796556 0.00797395 0.00798235 0.00799075 0.00799914 0.00800754 0.00801594 0.00802433 0.00803273 0.00804112 0.00804952 0.00805792 0.00806631 0.00807471 0.00808311 0.0080915 0.0080999 0.00810829 0.00811669 0.00812509 0.00813348 0.00814188 0.00815028 0.00815867 0.00816707 0.00817546 +-0.00186165 -0.00174001 -0.00148528 -0.000896822 5.59251E-05 0.00122663 0.00249409 0.00377833 0.00500515 0.00606741 0.00679322 0.00709114 0.00716213 0.00718047 0.00719035 0.00719897 0.0072074 0.00721581 0.00722421 0.00723262 0.00724102 0.00724942 0.00725783 0.00726623 0.00727463 0.00728304 0.00729144 0.00729984 0.00730825 0.00731665 0.00732505 0.00733346 0.00734186 0.00735026 0.00735867 0.00736707 0.00737547 0.00738388 0.00739228 0.00740068 0.00740909 0.00741749 0.00742589 0.0074343 0.0074427 0.0074511 0.00745951 0.00746791 0.00747632 0.00748472 0.00749312 0.00750153 0.00750993 0.00751833 0.00752674 0.00753514 0.00754354 0.00755195 0.00756035 0.00756875 0.00757716 0.00758556 0.00759396 0.00760237 0.00761077 0.00761917 0.00762758 0.00763598 0.00764438 0.00765279 0.00766119 0.00766959 0.007678 0.0076864 0.0076948 0.00770321 0.00771161 0.00772001 0.00772842 0.00773682 0.00774522 0.00775363 0.00776203 0.00777043 0.00777884 0.00778724 0.00779565 0.00780405 0.00781245 0.00782086 0.00782926 0.00783766 0.00784607 0.00785447 0.00786287 0.00787128 0.00787968 0.00788808 0.00789649 0.00790489 0.00791329 0.0079217 0.0079301 0.0079385 0.00794691 0.00795531 0.00796371 0.00797212 0.00798052 0.00798892 0.00799733 0.00800573 0.00801413 0.00802254 0.00803094 0.00803934 0.00804775 0.00805615 0.00806455 0.00807296 0.00808136 0.00808977 0.00809817 0.00810657 0.00811498 0.00812338 0.00813178 0.00814019 0.00814859 0.00815699 0.0081654 0.0081738 0.0081822 +-0.00186345 -0.00174163 -0.00148645 -0.000897298 5.60061E-05 0.00122709 0.00249488 0.00377948 0.00500684 0.00607005 0.00679737 0.00709655 0.00716793 0.00718634 0.00719624 0.00720486 0.00721331 0.00722172 0.00723013 0.00723854 0.00724695 0.00725536 0.00726377 0.00727218 0.0072806 0.00728901 0.00729742 0.00730583 0.00731424 0.00732265 0.00733106 0.00733947 0.00734788 0.00735629 0.0073647 0.00737311 0.00738152 0.00738993 0.00739834 0.00740675 0.00741516 0.00742358 0.00743199 0.0074404 0.00744881 0.00745722 0.00746563 0.00747404 0.00748245 0.00749086 0.00749927 0.00750768 0.00751609 0.0075245 0.00753291 0.00754132 0.00754973 0.00755814 0.00756655 0.00757497 0.00758338 0.00759179 0.0076002 0.00760861 0.00761702 0.00762543 0.00763384 0.00764225 0.00765066 0.00765907 0.00766748 0.00767589 0.0076843 0.00769271 0.00770112 0.00770953 0.00771795 0.00772636 0.00773477 0.00774318 0.00775159 0.00776 0.00776841 0.00777682 0.00778523 0.00779364 0.00780205 0.00781046 0.00781887 0.00782728 0.00783569 0.0078441 0.00785251 0.00786093 0.00786934 0.00787775 0.00788616 0.00789457 0.00790298 0.00791139 0.0079198 0.00792821 0.00793662 0.00794503 0.00795344 0.00796185 0.00797026 0.00797867 0.00798708 0.00799549 0.00800391 0.00801232 0.00802073 0.00802914 0.00803755 0.00804596 0.00805437 0.00806278 0.00807119 0.0080796 0.00808801 0.00809642 0.00810483 0.00811324 0.00812165 0.00813006 0.00813847 0.00814689 0.0081553 0.00816371 0.00817212 0.00818053 0.00818894 +-0.00186525 -0.00174325 -0.00148762 -0.000897774 5.60871E-05 0.00122755 0.00249566 0.00378063 0.00500853 0.00607267 0.00680152 0.00710196 0.00717373 0.00719221 0.00720212 0.00721076 0.00721921 0.00722763 0.00723605 0.00724447 0.00725288 0.0072613 0.00726972 0.00727814 0.00728655 0.00729497 0.00730339 0.00731181 0.00732023 0.00732864 0.00733706 0.00734548 0.0073539 0.00736231 0.00737073 0.00737915 0.00738757 0.00739599 0.0074044 0.00741282 0.00742124 0.00742966 0.00743807 0.00744649 0.00745491 0.00746333 0.00747174 0.00748016 0.00748858 0.007497 0.00750542 0.00751383 0.00752225 0.00753067 0.00753909 0.0075475 0.00755592 0.00756434 0.00757276 0.00758118 0.00758959 0.00759801 0.00760643 0.00761485 0.00762326 0.00763168 0.0076401 0.00764852 0.00765693 0.00766535 0.00767377 0.00768219 0.00769061 0.00769902 0.00770744 0.00771586 0.00772428 0.00773269 0.00774111 0.00774953 0.00775795 0.00776637 0.00777478 0.0077832 0.00779162 0.00780004 0.00780845 0.00781687 0.00782529 0.00783371 0.00784213 0.00785054 0.00785896 0.00786738 0.0078758 0.00788421 0.00789263 0.00790105 0.00790947 0.00791788 0.0079263 0.00793472 0.00794314 0.00795156 0.00795997 0.00796839 0.00797681 0.00798523 0.00799364 0.00800206 0.00801048 0.0080189 0.00802732 0.00803573 0.00804415 0.00805257 0.00806099 0.0080694 0.00807782 0.00808624 0.00809466 0.00810307 0.00811149 0.00811991 0.00812833 0.00813675 0.00814516 0.00815358 0.008162 0.00817042 0.00817883 0.00818725 0.00819567 +-0.00186705 -0.00174487 -0.00148879 -0.000898249 5.61682E-05 0.00122801 0.00249644 0.00378177 0.00501022 0.0060753 0.00680566 0.00710737 0.00717952 0.00719808 0.007208 0.00721665 0.00722511 0.00723354 0.00724196 0.00725039 0.00725881 0.00726724 0.00727566 0.00728409 0.00729251 0.00730094 0.00730936 0.00731779 0.00732621 0.00733464 0.00734306 0.00735149 0.00735991 0.00736834 0.00737676 0.00738518 0.00739361 0.00740203 0.00741046 0.00741888 0.00742731 0.00743573 0.00744416 0.00745258 0.00746101 0.00746943 0.00747786 0.00748628 0.00749471 0.00750313 0.00751156 0.00751998 0.00752841 0.00753683 0.00754526 0.00755368 0.00756211 0.00757053 0.00757896 0.00758738 0.00759581 0.00760423 0.00761266 0.00762108 0.00762951 0.00763793 0.00764636 0.00765478 0.00766321 0.00767163 0.00768006 0.00768848 0.00769691 0.00770533 0.00771376 0.00772218 0.00773061 0.00773903 0.00774745 0.00775588 0.0077643 0.00777273 0.00778115 0.00778958 0.007798 0.00780643 0.00781485 0.00782328 0.0078317 0.00784013 0.00784855 0.00785698 0.0078654 0.00787383 0.00788225 0.00789068 0.0078991 0.00790753 0.00791595 0.00792438 0.0079328 0.00794123 0.00794965 0.00795808 0.0079665 0.00797493 0.00798335 0.00799178 0.0080002 0.00800863 0.00801705 0.00802548 0.0080339 0.00804233 0.00805075 0.00805918 0.0080676 0.00807603 0.00808445 0.00809288 0.0081013 0.00810973 0.00811815 0.00812657 0.008135 0.00814342 0.00815185 0.00816027 0.0081687 0.00817712 0.00818555 0.00819397 0.0082024 +-0.00186885 -0.00174649 -0.00148996 -0.000898723 5.62493E-05 0.00122847 0.00249722 0.00378292 0.0050119 0.00607791 0.00680979 0.00711276 0.00718531 0.00720394 0.00721389 0.00722254 0.007231 0.00723944 0.00724787 0.0072563 0.00726474 0.00727317 0.0072816 0.00729003 0.00729846 0.0073069 0.00731533 0.00732376 0.00733219 0.00734063 0.00734906 0.00735749 0.00736592 0.00737435 0.00738279 0.00739122 0.00739965 0.00740808 0.00741651 0.00742495 0.00743338 0.00744181 0.00745024 0.00745867 0.00746711 0.00747554 0.00748397 0.0074924 0.00750083 0.00750927 0.0075177 0.00752613 0.00753456 0.00754299 0.00755143 0.00755986 0.00756829 0.00757672 0.00758515 0.00759359 0.00760202 0.00761045 0.00761888 0.00762731 0.00763575 0.00764418 0.00765261 0.00766104 0.00766947 0.00767791 0.00768634 0.00769477 0.0077032 0.00771163 0.00772007 0.0077285 0.00773693 0.00774536 0.00775379 0.00776223 0.00777066 0.00777909 0.00778752 0.00779596 0.00780439 0.00781282 0.00782125 0.00782968 0.00783812 0.00784655 0.00785498 0.00786341 0.00787184 0.00788028 0.00788871 0.00789714 0.00790557 0.007914 0.00792244 0.00793087 0.0079393 0.00794773 0.00795616 0.0079646 0.00797303 0.00798146 0.00798989 0.00799832 0.00800676 0.00801519 0.00802362 0.00803205 0.00804048 0.00804892 0.00805735 0.00806578 0.00807421 0.00808264 0.00809108 0.00809951 0.00810794 0.00811637 0.0081248 0.00813324 0.00814167 0.0081501 0.00815853 0.00816696 0.0081754 0.00818383 0.00819226 0.00820069 0.00820912 +-0.00187064 -0.0017481 -0.00149113 -0.000899197 5.63304E-05 0.00122893 0.002498 0.00378406 0.00501358 0.00608052 0.00681391 0.00711816 0.0071911 0.0072098 0.00721976 0.00722843 0.0072369 0.00724534 0.00725378 0.00726222 0.00727066 0.0072791 0.00728754 0.00729598 0.00730442 0.00731286 0.00732129 0.00732973 0.00733817 0.00734661 0.00735505 0.00736349 0.00737193 0.00738037 0.00738881 0.00739725 0.00740569 0.00741413 0.00742256 0.007431 0.00743944 0.00744788 0.00745632 0.00746476 0.0074732 0.00748164 0.00749008 0.00749852 0.00750696 0.0075154 0.00752383 0.00753227 0.00754071 0.00754915 0.00755759 0.00756603 0.00757447 0.00758291 0.00759135 0.00759979 0.00760823 0.00761667 0.0076251 0.00763354 0.00764198 0.00765042 0.00765886 0.0076673 0.00767574 0.00768418 0.00769262 0.00770106 0.0077095 0.00771794 0.00772637 0.00773481 0.00774325 0.00775169 0.00776013 0.00776857 0.00777701 0.00778545 0.00779389 0.00780233 0.00781077 0.00781921 0.00782765 0.00783608 0.00784452 0.00785296 0.0078614 0.00786984 0.00787828 0.00788672 0.00789516 0.0079036 0.00791204 0.00792048 0.00792892 0.00793735 0.00794579 0.00795423 0.00796267 0.00797111 0.00797955 0.00798799 0.00799643 0.00800487 0.00801331 0.00802175 0.00803019 0.00803862 0.00804706 0.0080555 0.00806394 0.00807238 0.00808082 0.00808926 0.0080977 0.00810614 0.00811458 0.00812302 0.00813146 0.00813989 0.00814833 0.00815677 0.00816521 0.00817365 0.00818209 0.00819053 0.00819897 0.00820741 0.00821585 +-0.00187244 -0.00174972 -0.0014923 -0.00089967 5.64115E-05 0.00122939 0.00249878 0.0037852 0.00501525 0.00608313 0.00681803 0.00712355 0.00719688 0.00721566 0.00722564 0.00723431 0.00724279 0.00725124 0.00725969 0.00726813 0.00727658 0.00728503 0.00729347 0.00730192 0.00731036 0.00731881 0.00732726 0.0073357 0.00734415 0.0073526 0.00736104 0.00736949 0.00737793 0.00738638 0.00739483 0.00740327 0.00741172 0.00742017 0.00742861 0.00743706 0.00744551 0.00745395 0.0074624 0.00747084 0.00747929 0.00748774 0.00749618 0.00750463 0.00751308 0.00752152 0.00752997 0.00753841 0.00754686 0.00755531 0.00756375 0.0075722 0.00758065 0.00758909 0.00759754 0.00760599 0.00761443 0.00762288 0.00763132 0.00763977 0.00764822 0.00765666 0.00766511 0.00767356 0.007682 0.00769045 0.0076989 0.00770734 0.00771579 0.00772423 0.00773268 0.00774113 0.00774957 0.00775802 0.00776647 0.00777491 0.00778336 0.0077918 0.00780025 0.0078087 0.00781714 0.00782559 0.00783404 0.00784248 0.00785093 0.00785938 0.00786782 0.00787627 0.00788471 0.00789316 0.00790161 0.00791005 0.0079185 0.00792695 0.00793539 0.00794384 0.00795228 0.00796073 0.00796918 0.00797762 0.00798607 0.00799452 0.00800296 0.00801141 0.00801986 0.0080283 0.00803675 0.00804519 0.00805364 0.00806209 0.00807053 0.00807898 0.00808743 0.00809587 0.00810432 0.00811277 0.00812121 0.00812966 0.0081381 0.00814655 0.008155 0.00816344 0.00817189 0.00818034 0.00818878 0.00819723 0.00820567 0.00821412 0.00822257 +-0.00187424 -0.00175133 -0.00149347 -0.000900142 5.64926E-05 0.00122985 0.00249955 0.00378634 0.00501693 0.00608573 0.00682214 0.00712893 0.00720266 0.00722152 0.00723151 0.00724019 0.00724868 0.00725713 0.00726559 0.00727404 0.0072825 0.00729095 0.0072994 0.00730786 0.00731631 0.00732476 0.00733322 0.00734167 0.00735012 0.00735858 0.00736703 0.00737548 0.00738394 0.00739239 0.00740084 0.0074093 0.00741775 0.0074262 0.00743466 0.00744311 0.00745157 0.00746002 0.00746847 0.00747693 0.00748538 0.00749383 0.00750229 0.00751074 0.00751919 0.00752765 0.0075361 0.00754455 0.00755301 0.00756146 0.00756991 0.00757837 0.00758682 0.00759527 0.00760373 0.00761218 0.00762063 0.00762909 0.00763754 0.00764599 0.00765445 0.0076629 0.00767136 0.00767981 0.00768826 0.00769672 0.00770517 0.00771362 0.00772208 0.00773053 0.00773898 0.00774744 0.00775589 0.00776434 0.0077728 0.00778125 0.0077897 0.00779816 0.00780661 0.00781506 0.00782352 0.00783197 0.00784042 0.00784888 0.00785733 0.00786578 0.00787424 0.00788269 0.00789115 0.0078996 0.00790805 0.00791651 0.00792496 0.00793341 0.00794187 0.00795032 0.00795877 0.00796723 0.00797568 0.00798413 0.00799259 0.00800104 0.00800949 0.00801795 0.0080264 0.00803485 0.00804331 0.00805176 0.00806021 0.00806867 0.00807712 0.00808557 0.00809403 0.00810248 0.00811094 0.00811939 0.00812784 0.0081363 0.00814475 0.0081532 0.00816166 0.00817011 0.00817856 0.00818702 0.00819547 0.00820392 0.00821238 0.00822083 0.00822928 +-0.00187604 -0.00175295 -0.00149464 -0.000900614 5.65737E-05 0.00123031 0.00250033 0.00378748 0.0050186 0.00608833 0.00682624 0.00713431 0.00720844 0.00722737 0.00723738 0.00724607 0.00725456 0.00726303 0.00727149 0.00727995 0.00728841 0.00729687 0.00730533 0.00731379 0.00732225 0.00733071 0.00733917 0.00734763 0.00735609 0.00736456 0.00737302 0.00738148 0.00738994 0.0073984 0.00740686 0.00741532 0.00742378 0.00743224 0.0074407 0.00744916 0.00745762 0.00746608 0.00747454 0.007483 0.00749146 0.00749993 0.00750839 0.00751685 0.00752531 0.00753377 0.00754223 0.00755069 0.00755915 0.00756761 0.00757607 0.00758453 0.00759299 0.00760145 0.00760991 0.00761837 0.00762683 0.00763529 0.00764376 0.00765222 0.00766068 0.00766914 0.0076776 0.00768606 0.00769452 0.00770298 0.00771144 0.0077199 0.00772836 0.00773682 0.00774528 0.00775374 0.0077622 0.00777066 0.00777912 0.00778759 0.00779605 0.00780451 0.00781297 0.00782143 0.00782989 0.00783835 0.00784681 0.00785527 0.00786373 0.00787219 0.00788065 0.00788911 0.00789757 0.00790603 0.00791449 0.00792296 0.00793142 0.00793988 0.00794834 0.0079568 0.00796526 0.00797372 0.00798218 0.00799064 0.0079991 0.00800756 0.00801602 0.00802448 0.00803294 0.0080414 0.00804986 0.00805832 0.00806679 0.00807525 0.00808371 0.00809217 0.00810063 0.00810909 0.00811755 0.00812601 0.00813447 0.00814293 0.00815139 0.00815985 0.00816831 0.00817677 0.00818523 0.00819369 0.00820215 0.00821062 0.00821908 0.00822754 0.008236 +-0.00187783 -0.00175456 -0.0014958 -0.000901084 5.66549E-05 0.00123076 0.0025011 0.00378862 0.00502026 0.00609092 0.00683033 0.00713968 0.00721421 0.00723322 0.00724325 0.00725194 0.00726044 0.00726892 0.00727739 0.00728585 0.00729432 0.00730279 0.00731126 0.00731972 0.00732819 0.00733666 0.00734513 0.0073536 0.00736206 0.00737053 0.007379 0.00738747 0.00739593 0.0074044 0.00741287 0.00742134 0.00742981 0.00743827 0.00744674 0.00745521 0.00746368 0.00747214 0.00748061 0.00748908 0.00749755 0.00750601 0.00751448 0.00752295 0.00753142 0.00753989 0.00754835 0.00755682 0.00756529 0.00757376 0.00758222 0.00759069 0.00759916 0.00760763 0.0076161 0.00762456 0.00763303 0.0076415 0.00764997 0.00765843 0.0076669 0.00767537 0.00768384 0.00769231 0.00770077 0.00770924 0.00771771 0.00772618 0.00773464 0.00774311 0.00775158 0.00776005 0.00776851 0.00777698 0.00778545 0.00779392 0.00780239 0.00781085 0.00781932 0.00782779 0.00783626 0.00784472 0.00785319 0.00786166 0.00787013 0.0078786 0.00788706 0.00789553 0.007904 0.00791247 0.00792093 0.0079294 0.00793787 0.00794634 0.0079548 0.00796327 0.00797174 0.00798021 0.00798868 0.00799714 0.00800561 0.00801408 0.00802255 0.00803101 0.00803948 0.00804795 0.00805642 0.00806489 0.00807335 0.00808182 0.00809029 0.00809876 0.00810722 0.00811569 0.00812416 0.00813263 0.00814109 0.00814956 0.00815803 0.0081665 0.00817497 0.00818343 0.0081919 0.00820037 0.00820884 0.0082173 0.00822577 0.00823424 0.00824271 +-0.00187963 -0.00175617 -0.00149697 -0.000901554 5.6736E-05 0.00123122 0.00250188 0.00378975 0.00502193 0.0060935 0.00683442 0.00714505 0.00721998 0.00723906 0.00724911 0.00725782 0.00726633 0.0072748 0.00728328 0.00729176 0.00730023 0.00730871 0.00731718 0.00732565 0.00733413 0.0073426 0.00735108 0.00735955 0.00736803 0.0073765 0.00738498 0.00739345 0.00740193 0.0074104 0.00741888 0.00742735 0.00743583 0.0074443 0.00745278 0.00746125 0.00746973 0.0074782 0.00748668 0.00749515 0.00750363 0.0075121 0.00752058 0.00752905 0.00753753 0.007546 0.00755448 0.00756295 0.00757143 0.0075799 0.00758838 0.00759685 0.00760533 0.0076138 0.00762228 0.00763075 0.00763922 0.0076477 0.00765617 0.00766465 0.00767312 0.0076816 0.00769007 0.00769855 0.00770702 0.0077155 0.00772397 0.00773245 0.00774092 0.0077494 0.00775787 0.00776635 0.00777482 0.0077833 0.00779177 0.00780025 0.00780872 0.0078172 0.00782567 0.00783415 0.00784262 0.0078511 0.00785957 0.00786805 0.00787652 0.007885 0.00789347 0.00790195 0.00791042 0.0079189 0.00792737 0.00793584 0.00794432 0.00795279 0.00796127 0.00796974 0.00797822 0.00798669 0.00799517 0.00800364 0.00801212 0.00802059 0.00802907 0.00803754 0.00804602 0.00805449 0.00806297 0.00807144 0.00807992 0.00808839 0.00809687 0.00810534 0.00811382 0.00812229 0.00813077 0.00813924 0.00814772 0.00815619 0.00816467 0.00817314 0.00818162 0.00819009 0.00819857 0.00820704 0.00821552 0.00822399 0.00823247 0.00824094 0.00824941 +-0.00188143 -0.00175778 -0.00149813 -0.000902024 5.68172E-05 0.00123167 0.00250265 0.00379088 0.00502359 0.00609608 0.0068385 0.00715041 0.00722575 0.00724491 0.00725497 0.00726369 0.0072722 0.00728069 0.00728917 0.00729765 0.00730614 0.00731462 0.0073231 0.00733158 0.00734006 0.00734855 0.00735703 0.00736551 0.00737399 0.00738247 0.00739096 0.00739944 0.00740792 0.0074164 0.00742488 0.00743337 0.00744185 0.00745033 0.00745881 0.00746729 0.00747578 0.00748426 0.00749274 0.00750122 0.0075097 0.00751819 0.00752667 0.00753515 0.00754363 0.00755211 0.0075606 0.00756908 0.00757756 0.00758604 0.00759452 0.00760301 0.00761149 0.00761997 0.00762845 0.00763693 0.00764542 0.0076539 0.00766238 0.00767086 0.00767934 0.00768783 0.00769631 0.00770479 0.00771327 0.00772175 0.00773024 0.00773872 0.0077472 0.00775568 0.00776416 0.00777265 0.00778113 0.00778961 0.00779809 0.00780657 0.00781506 0.00782354 0.00783202 0.0078405 0.00784898 0.00785747 0.00786595 0.00787443 0.00788291 0.00789139 0.00789988 0.00790836 0.00791684 0.00792532 0.0079338 0.00794229 0.00795077 0.00795925 0.00796773 0.00797621 0.0079847 0.00799318 0.00800166 0.00801014 0.00801862 0.00802711 0.00803559 0.00804407 0.00805255 0.00806103 0.00806952 0.008078 0.00808648 0.00809496 0.00810344 0.00811193 0.00812041 0.00812889 0.00813737 0.00814585 0.00815434 0.00816282 0.0081713 0.00817978 0.00818826 0.00819675 0.00820523 0.00821371 0.00822219 0.00823067 0.00823916 0.00824764 0.00825612 +-0.00188322 -0.0017594 -0.00149929 -0.000902492 5.68984E-05 0.00123213 0.00250342 0.00379201 0.00502525 0.00609865 0.00684257 0.00715577 0.00723152 0.00725075 0.00726083 0.00726955 0.00727808 0.00728657 0.00729506 0.00730355 0.00731204 0.00732053 0.00732902 0.00733751 0.007346 0.00735448 0.00736297 0.00737146 0.00737995 0.00738844 0.00739693 0.00740542 0.00741391 0.0074224 0.00743089 0.00743938 0.00744787 0.00745635 0.00746484 0.00747333 0.00748182 0.00749031 0.0074988 0.00750729 0.00751578 0.00752427 0.00753276 0.00754125 0.00754973 0.00755822 0.00756671 0.0075752 0.00758369 0.00759218 0.00760067 0.00760916 0.00761765 0.00762614 0.00763463 0.00764311 0.0076516 0.00766009 0.00766858 0.00767707 0.00768556 0.00769405 0.00770254 0.00771103 0.00771952 0.00772801 0.0077365 0.00774498 0.00775347 0.00776196 0.00777045 0.00777894 0.00778743 0.00779592 0.00780441 0.0078129 0.00782139 0.00782988 0.00783836 0.00784685 0.00785534 0.00786383 0.00787232 0.00788081 0.0078893 0.00789779 0.00790628 0.00791477 0.00792326 0.00793174 0.00794023 0.00794872 0.00795721 0.0079657 0.00797419 0.00798268 0.00799117 0.00799966 0.00800815 0.00801664 0.00802513 0.00803361 0.0080421 0.00805059 0.00805908 0.00806757 0.00807606 0.00808455 0.00809304 0.00810153 0.00811002 0.00811851 0.00812699 0.00813548 0.00814397 0.00815246 0.00816095 0.00816944 0.00817793 0.00818642 0.00819491 0.0082034 0.00821189 0.00822037 0.00822886 0.00823735 0.00824584 0.00825433 0.00826282 +-0.00188502 -0.00176101 -0.00150045 -0.00090296 5.69796E-05 0.00123259 0.00250419 0.00379314 0.0050269 0.00610122 0.00684663 0.00716112 0.00723728 0.00725659 0.00726669 0.00727542 0.00728395 0.00729245 0.00730095 0.00730944 0.00731794 0.00732644 0.00733493 0.00734343 0.00735192 0.00736042 0.00736892 0.00737741 0.00738591 0.00739441 0.0074029 0.0074114 0.00741989 0.00742839 0.00743689 0.00744538 0.00745388 0.00746238 0.00747087 0.00747937 0.00748786 0.00749636 0.00750486 0.00751335 0.00752185 0.00753035 0.00753884 0.00754734 0.00755583 0.00756433 0.00757283 0.00758132 0.00758982 0.00759832 0.00760681 0.00761531 0.0076238 0.0076323 0.0076408 0.00764929 0.00765779 0.00766629 0.00767478 0.00768328 0.00769177 0.00770027 0.00770877 0.00771726 0.00772576 0.00773426 0.00774275 0.00775125 0.00775974 0.00776824 0.00777674 0.00778523 0.00779373 0.00780223 0.00781072 0.00781922 0.00782771 0.00783621 0.00784471 0.0078532 0.0078617 0.0078702 0.00787869 0.00788719 0.00789568 0.00790418 0.00791268 0.00792117 0.00792967 0.00793817 0.00794666 0.00795516 0.00796365 0.00797215 0.00798065 0.00798914 0.00799764 0.00800613 0.00801463 0.00802313 0.00803162 0.00804012 0.00804862 0.00805711 0.00806561 0.0080741 0.0080826 0.0080911 0.00809959 0.00810809 0.00811659 0.00812508 0.00813358 0.00814207 0.00815057 0.00815907 0.00816756 0.00817606 0.00818456 0.00819305 0.00820155 0.00821004 0.00821854 0.00822704 0.00823553 0.00824403 0.00825253 0.00826102 0.00826952 +-0.00188681 -0.00176262 -0.00150161 -0.000903427 5.70609E-05 0.00123304 0.00250496 0.00379427 0.00502856 0.00610379 0.00685069 0.00716647 0.00724304 0.00726242 0.00727254 0.00728128 0.00728982 0.00729833 0.00730683 0.00731533 0.00732384 0.00733234 0.00734084 0.00734935 0.00735785 0.00736635 0.00737486 0.00738336 0.00739186 0.00740037 0.00740887 0.00741737 0.00742588 0.00743438 0.00744288 0.00745139 0.00745989 0.00746839 0.0074769 0.0074854 0.0074939 0.00750241 0.00751091 0.00751941 0.00752792 0.00753642 0.00754492 0.00755343 0.00756193 0.00757043 0.00757894 0.00758744 0.00759595 0.00760445 0.00761295 0.00762146 0.00762996 0.00763846 0.00764697 0.00765547 0.00766397 0.00767248 0.00768098 0.00768948 0.00769799 0.00770649 0.00771499 0.0077235 0.007732 0.0077405 0.00774901 0.00775751 0.00776601 0.00777452 0.00778302 0.00779152 0.00780003 0.00780853 0.00781703 0.00782554 0.00783404 0.00784254 0.00785105 0.00785955 0.00786805 0.00787656 0.00788506 0.00789356 0.00790207 0.00791057 0.00791907 0.00792758 0.00793608 0.00794458 0.00795309 0.00796159 0.00797009 0.0079786 0.0079871 0.0079956 0.00800411 0.00801261 0.00802111 0.00802962 0.00803812 0.00804662 0.00805513 0.00806363 0.00807213 0.00808064 0.00808914 0.00809764 0.00810615 0.00811465 0.00812315 0.00813166 0.00814016 0.00814866 0.00815717 0.00816567 0.00817417 0.00818268 0.00819118 0.00819968 0.00820819 0.00821669 0.00822519 0.0082337 0.0082422 0.0082507 0.00825921 0.00826771 0.00827621 +-0.0018886 -0.00176423 -0.00150277 -0.000903894 5.71421E-05 0.00123349 0.00250573 0.0037954 0.00503021 0.00610635 0.00685474 0.00717181 0.00724879 0.00726826 0.00727839 0.00728714 0.00729568 0.0073042 0.00731271 0.00732122 0.00732973 0.00733824 0.00734675 0.00735526 0.00736377 0.00737229 0.0073808 0.00738931 0.00739782 0.00740633 0.00741484 0.00742335 0.00743186 0.00744037 0.00744888 0.00745739 0.0074659 0.00747441 0.00748292 0.00749143 0.00749994 0.00750845 0.00751696 0.00752547 0.00753398 0.00754249 0.007551 0.00755952 0.00756803 0.00757654 0.00758505 0.00759356 0.00760207 0.00761058 0.00761909 0.0076276 0.00763611 0.00764462 0.00765313 0.00766164 0.00767015 0.00767866 0.00768717 0.00769568 0.00770419 0.0077127 0.00772121 0.00772972 0.00773824 0.00774675 0.00775526 0.00776377 0.00777228 0.00778079 0.0077893 0.00779781 0.00780632 0.00781483 0.00782334 0.00783185 0.00784036 0.00784887 0.00785738 0.00786589 0.0078744 0.00788291 0.00789142 0.00789993 0.00790844 0.00791696 0.00792547 0.00793398 0.00794249 0.007951 0.00795951 0.00796802 0.00797653 0.00798504 0.00799355 0.00800206 0.00801057 0.00801908 0.00802759 0.0080361 0.00804461 0.00805312 0.00806163 0.00807014 0.00807865 0.00808716 0.00809567 0.00810419 0.0081127 0.00812121 0.00812972 0.00813823 0.00814674 0.00815525 0.00816376 0.00817227 0.00818078 0.00818929 0.0081978 0.00820631 0.00821482 0.00822333 0.00823184 0.00824035 0.00824886 0.00825737 0.00826588 0.00827439 0.00828291 +-0.0018904 -0.00176583 -0.00150393 -0.00090436 5.72234E-05 0.00123395 0.0025065 0.00379652 0.00503185 0.0061089 0.00685878 0.00717715 0.00725454 0.00727409 0.00728424 0.007293 0.00730155 0.00731007 0.00731859 0.00732711 0.00733563 0.00734414 0.00735266 0.00736118 0.0073697 0.00737821 0.00738673 0.00739525 0.00740377 0.00741228 0.0074208 0.00742932 0.00743784 0.00744635 0.00745487 0.00746339 0.00747191 0.00748042 0.00748894 0.00749746 0.00750598 0.00751449 0.00752301 0.00753153 0.00754005 0.00754856 0.00755708 0.0075656 0.00757412 0.00758263 0.00759115 0.00759967 0.00760819 0.00761671 0.00762522 0.00763374 0.00764226 0.00765078 0.00765929 0.00766781 0.00767633 0.00768485 0.00769336 0.00770188 0.0077104 0.00771892 0.00772743 0.00773595 0.00774447 0.00775299 0.0077615 0.00777002 0.00777854 0.00778706 0.00779557 0.00780409 0.00781261 0.00782113 0.00782964 0.00783816 0.00784668 0.0078552 0.00786371 0.00787223 0.00788075 0.00788927 0.00789779 0.0079063 0.00791482 0.00792334 0.00793186 0.00794037 0.00794889 0.00795741 0.00796593 0.00797444 0.00798296 0.00799148 0.008 0.00800851 0.00801703 0.00802555 0.00803407 0.00804258 0.0080511 0.00805962 0.00806814 0.00807665 0.00808517 0.00809369 0.00810221 0.00811072 0.00811924 0.00812776 0.00813628 0.0081448 0.00815331 0.00816183 0.00817035 0.00817887 0.00818738 0.0081959 0.00820442 0.00821294 0.00822145 0.00822997 0.00823849 0.00824701 0.00825552 0.00826404 0.00827256 0.00828108 0.00828959 +-0.00189219 -0.00176744 -0.00150509 -0.000904825 5.73046E-05 0.0012344 0.00250727 0.00379765 0.0050335 0.00611145 0.00686281 0.00718248 0.00726029 0.00727991 0.00729008 0.00729885 0.00730741 0.00731594 0.00732447 0.00733299 0.00734151 0.00735004 0.00735856 0.00736709 0.00737561 0.00738414 0.00739266 0.00740119 0.00740971 0.00741824 0.00742676 0.00743529 0.00744381 0.00745234 0.00746086 0.00746939 0.00747791 0.00748643 0.00749496 0.00750348 0.00751201 0.00752053 0.00752906 0.00753758 0.00754611 0.00755463 0.00756316 0.00757168 0.00758021 0.00758873 0.00759726 0.00760578 0.0076143 0.00762283 0.00763135 0.00763988 0.0076484 0.00765693 0.00766545 0.00767398 0.0076825 0.00769103 0.00769955 0.00770808 0.0077166 0.00772513 0.00773365 0.00774218 0.0077507 0.00775922 0.00776775 0.00777627 0.0077848 0.00779332 0.00780185 0.00781037 0.0078189 0.00782742 0.00783595 0.00784447 0.007853 0.00786152 0.00787005 0.00787857 0.00788709 0.00789562 0.00790414 0.00791267 0.00792119 0.00792972 0.00793824 0.00794677 0.00795529 0.00796382 0.00797234 0.00798087 0.00798939 0.00799792 0.00800644 0.00801497 0.00802349 0.00803201 0.00804054 0.00804906 0.00805759 0.00806611 0.00807464 0.00808316 0.00809169 0.00810021 0.00810874 0.00811726 0.00812579 0.00813431 0.00814284 0.00815136 0.00815988 0.00816841 0.00817693 0.00818546 0.00819398 0.00820251 0.00821103 0.00821956 0.00822808 0.00823661 0.00824513 0.00825366 0.00826218 0.00827071 0.00827923 0.00828776 0.00829628 +-0.00189398 -0.00176905 -0.00150624 -0.000905289 5.73859E-05 0.00123485 0.00250803 0.00379877 0.00503514 0.00611399 0.00686684 0.00718781 0.00726604 0.00728574 0.00729593 0.0073047 0.00731327 0.00732181 0.00733034 0.00733887 0.0073474 0.00735593 0.00736447 0.007373 0.00738153 0.00739006 0.00739859 0.00740712 0.00741566 0.00742419 0.00743272 0.00744125 0.00744978 0.00745831 0.00746685 0.00747538 0.00748391 0.00749244 0.00750097 0.00750951 0.00751804 0.00752657 0.0075351 0.00754363 0.00755216 0.0075607 0.00756923 0.00757776 0.00758629 0.00759482 0.00760336 0.00761189 0.00762042 0.00762895 0.00763748 0.00764601 0.00765455 0.00766308 0.00767161 0.00768014 0.00768867 0.00769721 0.00770574 0.00771427 0.0077228 0.00773133 0.00773986 0.0077484 0.00775693 0.00776546 0.00777399 0.00778252 0.00779105 0.00779959 0.00780812 0.00781665 0.00782518 0.00783371 0.00784225 0.00785078 0.00785931 0.00786784 0.00787637 0.0078849 0.00789344 0.00790197 0.0079105 0.00791903 0.00792756 0.0079361 0.00794463 0.00795316 0.00796169 0.00797022 0.00797875 0.00798729 0.00799582 0.00800435 0.00801288 0.00802141 0.00802995 0.00803848 0.00804701 0.00805554 0.00806407 0.0080726 0.00808114 0.00808967 0.0080982 0.00810673 0.00811526 0.00812379 0.00813233 0.00814086 0.00814939 0.00815792 0.00816645 0.00817499 0.00818352 0.00819205 0.00820058 0.00820911 0.00821764 0.00822618 0.00823471 0.00824324 0.00825177 0.0082603 0.00826884 0.00827737 0.0082859 0.00829443 0.00830296 +-0.00189577 -0.00177066 -0.0015074 -0.000905753 5.74672E-05 0.0012353 0.0025088 0.00379989 0.00503678 0.00611653 0.00687086 0.00719313 0.00727178 0.00729156 0.00730177 0.00731055 0.00731912 0.00732767 0.00733621 0.00734475 0.00735329 0.00736182 0.00737036 0.0073789 0.00738744 0.00739598 0.00740452 0.00741306 0.0074216 0.00743014 0.00743867 0.00744721 0.00745575 0.00746429 0.00747283 0.00748137 0.00748991 0.00749845 0.00750699 0.00751552 0.00752406 0.0075326 0.00754114 0.00754968 0.00755822 0.00756676 0.0075753 0.00758384 0.00759237 0.00760091 0.00760945 0.00761799 0.00762653 0.00763507 0.00764361 0.00765215 0.00766069 0.00766923 0.00767776 0.0076863 0.00769484 0.00770338 0.00771192 0.00772046 0.007729 0.00773754 0.00774608 0.00775461 0.00776315 0.00777169 0.00778023 0.00778877 0.00779731 0.00780585 0.00781439 0.00782293 0.00783146 0.00784 0.00784854 0.00785708 0.00786562 0.00787416 0.0078827 0.00789124 0.00789978 0.00790831 0.00791685 0.00792539 0.00793393 0.00794247 0.00795101 0.00795955 0.00796809 0.00797663 0.00798516 0.0079937 0.00800224 0.00801078 0.00801932 0.00802786 0.0080364 0.00804494 0.00805348 0.00806201 0.00807055 0.00807909 0.00808763 0.00809617 0.00810471 0.00811325 0.00812179 0.00813033 0.00813886 0.0081474 0.00815594 0.00816448 0.00817302 0.00818156 0.0081901 0.00819864 0.00820718 0.00821571 0.00822425 0.00823279 0.00824133 0.00824987 0.00825841 0.00826695 0.00827549 0.00828403 0.00829256 0.0083011 0.00830964 +-0.00189756 -0.00177226 -0.00150855 -0.000906216 5.75486E-05 0.00123576 0.00250956 0.003801 0.00503841 0.00611907 0.00687487 0.00719845 0.00727752 0.00729738 0.0073076 0.0073164 0.00732498 0.00733353 0.00734208 0.00735062 0.00735917 0.00736771 0.00737626 0.00738481 0.00739335 0.0074019 0.00741044 0.00741899 0.00742754 0.00743608 0.00744463 0.00745317 0.00746172 0.00747027 0.00747881 0.00748736 0.0074959 0.00750445 0.007513 0.00752154 0.00753009 0.00753863 0.00754718 0.00755573 0.00756427 0.00757282 0.00758136 0.00758991 0.00759846 0.007607 0.00761555 0.00762409 0.00763264 0.00764119 0.00764973 0.00765828 0.00766682 0.00767537 0.00768392 0.00769246 0.00770101 0.00770955 0.0077181 0.00772665 0.00773519 0.00774374 0.00775228 0.00776083 0.00776938 0.00777792 0.00778647 0.00779501 0.00780356 0.00781211 0.00782065 0.0078292 0.00783774 0.00784629 0.00785483 0.00786338 0.00787193 0.00788047 0.00788902 0.00789756 0.00790611 0.00791466 0.0079232 0.00793175 0.00794029 0.00794884 0.00795739 0.00796593 0.00797448 0.00798302 0.00799157 0.00800012 0.00800866 0.00801721 0.00802575 0.0080343 0.00804285 0.00805139 0.00805994 0.00806848 0.00807703 0.00808558 0.00809412 0.00810267 0.00811121 0.00811976 0.00812831 0.00813685 0.0081454 0.00815394 0.00816249 0.00817104 0.00817958 0.00818813 0.00819667 0.00820522 0.00821377 0.00822231 0.00823086 0.0082394 0.00824795 0.0082565 0.00826504 0.00827359 0.00828213 0.00829068 0.00829923 0.00830777 0.00831632 +-0.00189935 -0.00177387 -0.0015097 -0.000906678 5.76299E-05 0.00123621 0.00251032 0.00380212 0.00504005 0.00612159 0.00687888 0.00720376 0.00728325 0.00730319 0.00731344 0.00732224 0.00733083 0.00733939 0.00734794 0.00735649 0.00736505 0.0073736 0.00738215 0.00739071 0.00739926 0.00740781 0.00741636 0.00742492 0.00743347 0.00744202 0.00745058 0.00745913 0.00746768 0.00747624 0.00748479 0.00749334 0.0075019 0.00751045 0.007519 0.00752755 0.00753611 0.00754466 0.00755321 0.00756177 0.00757032 0.00757887 0.00758743 0.00759598 0.00760453 0.00761309 0.00762164 0.00763019 0.00763875 0.0076473 0.00765585 0.0076644 0.00767296 0.00768151 0.00769006 0.00769862 0.00770717 0.00771572 0.00772428 0.00773283 0.00774138 0.00774994 0.00775849 0.00776704 0.00777559 0.00778415 0.0077927 0.00780125 0.00780981 0.00781836 0.00782691 0.00783547 0.00784402 0.00785257 0.00786113 0.00786968 0.00787823 0.00788678 0.00789534 0.00790389 0.00791244 0.007921 0.00792955 0.0079381 0.00794666 0.00795521 0.00796376 0.00797232 0.00798087 0.00798942 0.00799797 0.00800653 0.00801508 0.00802363 0.00803219 0.00804074 0.00804929 0.00805785 0.0080664 0.00807495 0.00808351 0.00809206 0.00810061 0.00810917 0.00811772 0.00812627 0.00813482 0.00814338 0.00815193 0.00816048 0.00816904 0.00817759 0.00818614 0.0081947 0.00820325 0.0082118 0.00822036 0.00822891 0.00823746 0.00824601 0.00825457 0.00826312 0.00827167 0.00828023 0.00828878 0.00829733 0.00830589 0.00831444 0.00832299 +-0.00190114 -0.00177547 -0.00151085 -0.00090714 5.77113E-05 0.00123666 0.00251109 0.00380324 0.00504168 0.00612412 0.00688288 0.00720907 0.00728899 0.00730901 0.00731927 0.00732808 0.00733668 0.00734524 0.0073538 0.00736236 0.00737092 0.00737948 0.00738804 0.0073966 0.00740516 0.00741372 0.00742228 0.00743084 0.0074394 0.00744796 0.00745652 0.00746508 0.00747364 0.0074822 0.00749076 0.00749932 0.00750789 0.00751645 0.00752501 0.00753357 0.00754213 0.00755069 0.00755925 0.00756781 0.00757637 0.00758493 0.00759349 0.00760205 0.00761061 0.00761917 0.00762773 0.00763629 0.00764485 0.00765341 0.00766197 0.00767053 0.00767909 0.00768765 0.00769621 0.00770477 0.00771333 0.00772189 0.00773045 0.00773901 0.00774757 0.00775613 0.00776469 0.00777325 0.00778181 0.00779037 0.00779893 0.00780749 0.00781605 0.00782461 0.00783317 0.00784173 0.00785029 0.00785885 0.00786741 0.00787597 0.00788453 0.00789309 0.00790165 0.00791021 0.00791877 0.00792733 0.00793589 0.00794445 0.00795301 0.00796157 0.00797014 0.0079787 0.00798726 0.00799582 0.00800438 0.00801294 0.0080215 0.00803006 0.00803862 0.00804718 0.00805574 0.0080643 0.00807286 0.00808142 0.00808998 0.00809854 0.0081071 0.00811566 0.00812422 0.00813278 0.00814134 0.0081499 0.00815846 0.00816702 0.00817558 0.00818414 0.0081927 0.00820126 0.00820982 0.00821838 0.00822694 0.0082355 0.00824406 0.00825262 0.00826118 0.00826974 0.0082783 0.00828686 0.00829542 0.00830398 0.00831254 0.0083211 0.00832966 +-0.00190293 -0.00177707 -0.00151201 -0.000907601 5.77926E-05 0.00123711 0.00251185 0.00380435 0.0050433 0.00612664 0.00688687 0.00721437 0.00729471 0.00731482 0.0073251 0.00733392 0.00734252 0.00735109 0.00735966 0.00736823 0.0073768 0.00738536 0.00739393 0.0074025 0.00741106 0.00741963 0.0074282 0.00743677 0.00744533 0.0074539 0.00746247 0.00747104 0.0074796 0.00748817 0.00749674 0.0075053 0.00751387 0.00752244 0.00753101 0.00753957 0.00754814 0.00755671 0.00756528 0.00757384 0.00758241 0.00759098 0.00759954 0.00760811 0.00761668 0.00762525 0.00763381 0.00764238 0.00765095 0.00765952 0.00766808 0.00767665 0.00768522 0.00769378 0.00770235 0.00771092 0.00771949 0.00772805 0.00773662 0.00774519 0.00775376 0.00776232 0.00777089 0.00777946 0.00778802 0.00779659 0.00780516 0.00781373 0.00782229 0.00783086 0.00783943 0.007848 0.00785656 0.00786513 0.0078737 0.00788226 0.00789083 0.0078994 0.00790797 0.00791653 0.0079251 0.00793367 0.00794224 0.0079508 0.00795937 0.00796794 0.0079765 0.00798507 0.00799364 0.00800221 0.00801077 0.00801934 0.00802791 0.00803648 0.00804504 0.00805361 0.00806218 0.00807074 0.00807931 0.00808788 0.00809645 0.00810501 0.00811358 0.00812215 0.00813072 0.00813928 0.00814785 0.00815642 0.00816499 0.00817355 0.00818212 0.00819069 0.00819925 0.00820782 0.00821639 0.00822496 0.00823352 0.00824209 0.00825066 0.00825923 0.00826779 0.00827636 0.00828493 0.00829349 0.00830206 0.00831063 0.0083192 0.00832776 0.00833633 +-0.00190472 -0.00177868 -0.00151315 -0.000908061 5.7874E-05 0.00123756 0.00251261 0.00380546 0.00504493 0.00612915 0.00689085 0.00721966 0.00730044 0.00732063 0.00733092 0.00733975 0.00734836 0.00735694 0.00736552 0.00737409 0.00738267 0.00739124 0.00739981 0.00740839 0.00741696 0.00742554 0.00743411 0.00744269 0.00745126 0.00745984 0.00746841 0.00747698 0.00748556 0.00749413 0.00750271 0.00751128 0.00751986 0.00752843 0.007537 0.00754558 0.00755415 0.00756273 0.0075713 0.00757988 0.00758845 0.00759703 0.0076056 0.00761417 0.00762275 0.00763132 0.0076399 0.00764847 0.00765705 0.00766562 0.00767419 0.00768277 0.00769134 0.00769992 0.00770849 0.00771707 0.00772564 0.00773422 0.00774279 0.00775136 0.00775994 0.00776851 0.00777709 0.00778566 0.00779424 0.00780281 0.00781138 0.00781996 0.00782853 0.00783711 0.00784568 0.00785426 0.00786283 0.0078714 0.00787998 0.00788855 0.00789713 0.0079057 0.00791428 0.00792285 0.00793143 0.00794 0.00794857 0.00795715 0.00796572 0.0079743 0.00798287 0.00799145 0.00800002 0.00800859 0.00801717 0.00802574 0.00803432 0.00804289 0.00805147 0.00806004 0.00806862 0.00807719 0.00808576 0.00809434 0.00810291 0.00811149 0.00812006 0.00812864 0.00813721 0.00814578 0.00815436 0.00816293 0.00817151 0.00818008 0.00818866 0.00819723 0.00820581 0.00821438 0.00822295 0.00823153 0.0082401 0.00824868 0.00825725 0.00826583 0.0082744 0.00828297 0.00829155 0.00830012 0.0083087 0.00831727 0.00832585 0.00833442 0.008343 +-0.00190651 -0.00178028 -0.0015143 -0.000908521 5.79554E-05 0.00123801 0.00251337 0.00380657 0.00504655 0.00613166 0.00689483 0.00722496 0.00730616 0.00732643 0.00733675 0.00734558 0.0073542 0.00736279 0.00737137 0.00737995 0.00738853 0.00739712 0.0074057 0.00741428 0.00742286 0.00743144 0.00744002 0.0074486 0.00745719 0.00746577 0.00747435 0.00748293 0.00749151 0.00750009 0.00750867 0.00751726 0.00752584 0.00753442 0.007543 0.00755158 0.00756016 0.00756874 0.00757733 0.00758591 0.00759449 0.00760307 0.00761165 0.00762023 0.00762881 0.0076374 0.00764598 0.00765456 0.00766314 0.00767172 0.0076803 0.00768888 0.00769747 0.00770605 0.00771463 0.00772321 0.00773179 0.00774037 0.00774896 0.00775754 0.00776612 0.0077747 0.00778328 0.00779186 0.00780044 0.00780903 0.00781761 0.00782619 0.00783477 0.00784335 0.00785193 0.00786051 0.0078691 0.00787768 0.00788626 0.00789484 0.00790342 0.007912 0.00792058 0.00792917 0.00793775 0.00794633 0.00795491 0.00796349 0.00797207 0.00798065 0.00798924 0.00799782 0.0080064 0.00801498 0.00802356 0.00803214 0.00804072 0.00804931 0.00805789 0.00806647 0.00807505 0.00808363 0.00809221 0.00810079 0.00810938 0.00811796 0.00812654 0.00813512 0.0081437 0.00815228 0.00816086 0.00816945 0.00817803 0.00818661 0.00819519 0.00820377 0.00821235 0.00822093 0.00822952 0.0082381 0.00824668 0.00825526 0.00826384 0.00827242 0.00828101 0.00828959 0.00829817 0.00830675 0.00831533 0.00832391 0.00833249 0.00834108 0.00834966 +-0.00190829 -0.00178188 -0.00151545 -0.00090898 5.80368E-05 0.00123845 0.00251412 0.00380768 0.00504817 0.00613416 0.0068988 0.00723024 0.00731188 0.00733223 0.00734257 0.00735141 0.00736004 0.00736863 0.00737722 0.00738581 0.0073944 0.00740299 0.00741158 0.00742016 0.00742875 0.00743734 0.00744593 0.00745452 0.00746311 0.0074717 0.00748028 0.00748887 0.00749746 0.00750605 0.00751464 0.00752323 0.00753182 0.0075404 0.00754899 0.00755758 0.00756617 0.00757476 0.00758335 0.00759194 0.00760052 0.00760911 0.0076177 0.00762629 0.00763488 0.00764347 0.00765206 0.00766064 0.00766923 0.00767782 0.00768641 0.007695 0.00770359 0.00771218 0.00772076 0.00772935 0.00773794 0.00774653 0.00775512 0.00776371 0.00777229 0.00778088 0.00778947 0.00779806 0.00780665 0.00781524 0.00782383 0.00783241 0.007841 0.00784959 0.00785818 0.00786677 0.00787536 0.00788395 0.00789253 0.00790112 0.00790971 0.0079183 0.00792689 0.00793548 0.00794407 0.00795265 0.00796124 0.00796983 0.00797842 0.00798701 0.0079956 0.00800419 0.00801277 0.00802136 0.00802995 0.00803854 0.00804713 0.00805572 0.0080643 0.00807289 0.00808148 0.00809007 0.00809866 0.00810725 0.00811584 0.00812442 0.00813301 0.0081416 0.00815019 0.00815878 0.00816737 0.00817596 0.00818454 0.00819313 0.00820172 0.00821031 0.0082189 0.00822749 0.00823608 0.00824466 0.00825325 0.00826184 0.00827043 0.00827902 0.00828761 0.0082962 0.00830478 0.00831337 0.00832196 0.00833055 0.00833914 0.00834773 0.00835632 +-0.00191008 -0.00178348 -0.0015166 -0.000909438 5.81183E-05 0.0012389 0.00251488 0.00380879 0.00504979 0.00613666 0.00690276 0.00723552 0.0073176 0.00733803 0.00734839 0.00735724 0.00736587 0.00737447 0.00738307 0.00739167 0.00740026 0.00740886 0.00741745 0.00742605 0.00743464 0.00744324 0.00745184 0.00746043 0.00746903 0.00747762 0.00748622 0.00749481 0.00750341 0.007512 0.0075206 0.0075292 0.00753779 0.00754639 0.00755498 0.00756358 0.00757217 0.00758077 0.00758937 0.00759796 0.00760656 0.00761515 0.00762375 0.00763234 0.00764094 0.00764953 0.00765813 0.00766673 0.00767532 0.00768392 0.00769251 0.00770111 0.0077097 0.0077183 0.0077269 0.00773549 0.00774409 0.00775268 0.00776128 0.00776987 0.00777847 0.00778706 0.00779566 0.00780426 0.00781285 0.00782145 0.00783004 0.00783864 0.00784723 0.00785583 0.00786442 0.00787302 0.00788162 0.00789021 0.00789881 0.0079074 0.007916 0.00792459 0.00793319 0.00794179 0.00795038 0.00795898 0.00796757 0.00797617 0.00798476 0.00799336 0.00800195 0.00801055 0.00801915 0.00802774 0.00803634 0.00804493 0.00805353 0.00806212 0.00807072 0.00807932 0.00808791 0.00809651 0.0081051 0.0081137 0.00812229 0.00813089 0.00813948 0.00814808 0.00815668 0.00816527 0.00817387 0.00818246 0.00819106 0.00819965 0.00820825 0.00821685 0.00822544 0.00823404 0.00824263 0.00825123 0.00825982 0.00826842 0.00827701 0.00828561 0.00829421 0.0083028 0.0083114 0.00831999 0.00832859 0.00833718 0.00834578 0.00835438 0.00836297 +-0.00191187 -0.00178508 -0.00151774 -0.000909896 5.81997E-05 0.00123935 0.00251564 0.00380989 0.0050514 0.00613915 0.00690671 0.0072408 0.00732331 0.00734383 0.0073542 0.00736306 0.0073717 0.00738031 0.00738892 0.00739752 0.00740612 0.00741472 0.00742333 0.00743193 0.00744053 0.00744914 0.00745774 0.00746634 0.00747494 0.00748355 0.00749215 0.00750075 0.00750935 0.00751796 0.00752656 0.00753516 0.00754376 0.00755237 0.00756097 0.00756957 0.00757818 0.00758678 0.00759538 0.00760398 0.00761259 0.00762119 0.00762979 0.00763839 0.007647 0.0076556 0.0076642 0.00767281 0.00768141 0.00769001 0.00769861 0.00770722 0.00771582 0.00772442 0.00773302 0.00774163 0.00775023 0.00775883 0.00776743 0.00777604 0.00778464 0.00779324 0.00780185 0.00781045 0.00781905 0.00782765 0.00783626 0.00784486 0.00785346 0.00786206 0.00787067 0.00787927 0.00788787 0.00789648 0.00790508 0.00791368 0.00792228 0.00793089 0.00793949 0.00794809 0.00795669 0.0079653 0.0079739 0.0079825 0.0079911 0.00799971 0.00800831 0.00801691 0.00802552 0.00803412 0.00804272 0.00805132 0.00805993 0.00806853 0.00807713 0.00808573 0.00809434 0.00810294 0.00811154 0.00812015 0.00812875 0.00813735 0.00814595 0.00815456 0.00816316 0.00817176 0.00818036 0.00818897 0.00819757 0.00820617 0.00821477 0.00822338 0.00823198 0.00824058 0.00824919 0.00825779 0.00826639 0.00827499 0.0082836 0.0082922 0.0083008 0.0083094 0.00831801 0.00832661 0.00833521 0.00834381 0.00835242 0.00836102 0.00836962 +-0.00191365 -0.00178668 -0.00151889 -0.000910352 5.82812E-05 0.0012398 0.00251639 0.003811 0.00505301 0.00614164 0.00691066 0.00724607 0.00732902 0.00734963 0.00736002 0.00736889 0.00737753 0.00738615 0.00739476 0.00740337 0.00741198 0.00742059 0.0074292 0.00743781 0.00744642 0.00745503 0.00746364 0.00747225 0.00748086 0.00748947 0.00749808 0.00750669 0.0075153 0.00752391 0.00753252 0.00754113 0.00754974 0.00755835 0.00756695 0.00757556 0.00758417 0.00759278 0.00760139 0.00761 0.00761861 0.00762722 0.00763583 0.00764444 0.00765305 0.00766166 0.00767027 0.00767888 0.00768749 0.0076961 0.00770471 0.00771332 0.00772193 0.00773054 0.00773915 0.00774776 0.00775637 0.00776498 0.00777359 0.0077822 0.00779081 0.00779942 0.00780803 0.00781664 0.00782525 0.00783386 0.00784247 0.00785108 0.00785969 0.0078683 0.00787691 0.00788552 0.00789413 0.00790274 0.00791135 0.00791996 0.00792856 0.00793717 0.00794578 0.00795439 0.007963 0.00797161 0.00798022 0.00798883 0.00799744 0.00800605 0.00801466 0.00802327 0.00803188 0.00804049 0.0080491 0.00805771 0.00806632 0.00807493 0.00808354 0.00809215 0.00810076 0.00810937 0.00811798 0.00812659 0.0081352 0.00814381 0.00815242 0.00816103 0.00816964 0.00817825 0.00818686 0.00819547 0.00820408 0.00821269 0.0082213 0.00822991 0.00823852 0.00824713 0.00825574 0.00826435 0.00827296 0.00828157 0.00829017 0.00829878 0.00830739 0.008316 0.00832461 0.00833322 0.00834183 0.00835044 0.00835905 0.00836766 0.00837627 +-0.00191544 -0.00178828 -0.00152003 -0.000910809 5.83626E-05 0.00124024 0.00251715 0.0038121 0.00505462 0.00614412 0.0069146 0.00725133 0.00733473 0.00735542 0.00736583 0.0073747 0.00738336 0.00739198 0.0074006 0.00740922 0.00741783 0.00742645 0.00743507 0.00744368 0.0074523 0.00746092 0.00746953 0.00747815 0.00748677 0.00749539 0.007504 0.00751262 0.00752124 0.00752985 0.00753847 0.00754709 0.0075557 0.00756432 0.00757294 0.00758155 0.00759017 0.00759879 0.0076074 0.00761602 0.00762464 0.00763325 0.00764187 0.00765049 0.00765911 0.00766772 0.00767634 0.00768496 0.00769357 0.00770219 0.00771081 0.00771942 0.00772804 0.00773666 0.00774527 0.00775389 0.00776251 0.00777112 0.00777974 0.00778836 0.00779697 0.00780559 0.00781421 0.00782282 0.00783144 0.00784006 0.00784868 0.00785729 0.00786591 0.00787453 0.00788314 0.00789176 0.00790038 0.00790899 0.00791761 0.00792623 0.00793484 0.00794346 0.00795208 0.00796069 0.00796931 0.00797793 0.00798654 0.00799516 0.00800378 0.0080124 0.00802101 0.00802963 0.00803825 0.00804686 0.00805548 0.0080641 0.00807271 0.00808133 0.00808995 0.00809856 0.00810718 0.0081158 0.00812441 0.00813303 0.00814165 0.00815026 0.00815888 0.0081675 0.00817611 0.00818473 0.00819335 0.00820197 0.00821058 0.0082192 0.00822782 0.00823643 0.00824505 0.00825367 0.00826228 0.0082709 0.00827952 0.00828813 0.00829675 0.00830537 0.00831398 0.0083226 0.00833122 0.00833983 0.00834845 0.00835707 0.00836569 0.0083743 0.00838292 +-0.00191722 -0.00178988 -0.00152117 -0.000911264 5.84441E-05 0.00124069 0.0025179 0.0038132 0.00505622 0.0061466 0.00691853 0.00725659 0.00734044 0.00736121 0.00737163 0.00738052 0.00738918 0.00739781 0.00740644 0.00741506 0.00742369 0.00743231 0.00744093 0.00744956 0.00745818 0.00746681 0.00747543 0.00748405 0.00749268 0.0075013 0.00750992 0.00751855 0.00752717 0.0075358 0.00754442 0.00755304 0.00756167 0.00757029 0.00757892 0.00758754 0.00759616 0.00760479 0.00761341 0.00762204 0.00763066 0.00763928 0.00764791 0.00765653 0.00766515 0.00767378 0.0076824 0.00769103 0.00769965 0.00770827 0.0077169 0.00772552 0.00773415 0.00774277 0.00775139 0.00776002 0.00776864 0.00777727 0.00778589 0.00779451 0.00780314 0.00781176 0.00782039 0.00782901 0.00783763 0.00784626 0.00785488 0.0078635 0.00787213 0.00788075 0.00788938 0.007898 0.00790662 0.00791525 0.00792387 0.0079325 0.00794112 0.00794974 0.00795837 0.00796699 0.00797562 0.00798424 0.00799286 0.00800149 0.00801011 0.00801873 0.00802736 0.00803598 0.00804461 0.00805323 0.00806185 0.00807048 0.0080791 0.00808773 0.00809635 0.00810497 0.0081136 0.00812222 0.00813085 0.00813947 0.00814809 0.00815672 0.00816534 0.00817396 0.00818259 0.00819121 0.00819984 0.00820846 0.00821708 0.00822571 0.00823433 0.00824296 0.00825158 0.0082602 0.00826883 0.00827745 0.00828608 0.0082947 0.00830332 0.00831195 0.00832057 0.0083292 0.00833782 0.00834644 0.00835507 0.00836369 0.00837231 0.00838094 0.00838956 +-0.00191901 -0.00179147 -0.00152232 -0.000911719 5.85256E-05 0.00124113 0.00251865 0.0038143 0.00505783 0.00614907 0.00692246 0.00726185 0.00734614 0.00736699 0.00737744 0.00738633 0.007395 0.00740364 0.00741227 0.0074209 0.00742954 0.00743817 0.0074468 0.00745543 0.00746406 0.00747269 0.00748132 0.00748995 0.00749858 0.00750721 0.00751584 0.00752448 0.00753311 0.00754174 0.00755037 0.007559 0.00756763 0.00757626 0.00758489 0.00759352 0.00760215 0.00761079 0.00761942 0.00762805 0.00763668 0.00764531 0.00765394 0.00766257 0.0076712 0.00767983 0.00768846 0.00769709 0.00770573 0.00771436 0.00772299 0.00773162 0.00774025 0.00774888 0.00775751 0.00776614 0.00777477 0.0077834 0.00779204 0.00780067 0.0078093 0.00781793 0.00782656 0.00783519 0.00784382 0.00785245 0.00786108 0.00786971 0.00787834 0.00788698 0.00789561 0.00790424 0.00791287 0.0079215 0.00793013 0.00793876 0.00794739 0.00795602 0.00796465 0.00797329 0.00798192 0.00799055 0.00799918 0.00800781 0.00801644 0.00802507 0.0080337 0.00804233 0.00805096 0.0080596 0.00806823 0.00807686 0.00808549 0.00809412 0.00810275 0.00811138 0.00812001 0.00812864 0.00813727 0.0081459 0.00815454 0.00816317 0.0081718 0.00818043 0.00818906 0.00819769 0.00820632 0.00821495 0.00822358 0.00823221 0.00824085 0.00824948 0.00825811 0.00826674 0.00827537 0.008284 0.00829263 0.00830126 0.00830989 0.00831852 0.00832716 0.00833579 0.00834442 0.00835305 0.00836168 0.00837031 0.00837894 0.00838757 0.0083962 +-0.00192079 -0.00179307 -0.00152346 -0.000912173 5.86072E-05 0.00124158 0.0025194 0.00381539 0.00505943 0.00615154 0.00692638 0.0072671 0.00735183 0.00737277 0.00738324 0.00739215 0.00740082 0.00740947 0.00741811 0.00742674 0.00743538 0.00744402 0.00745266 0.0074613 0.00746993 0.00747857 0.00748721 0.00749585 0.00750449 0.00751312 0.00752176 0.0075304 0.00753904 0.00754768 0.00755631 0.00756495 0.00757359 0.00758223 0.00759087 0.0075995 0.00760814 0.00761678 0.00762542 0.00763406 0.00764269 0.00765133 0.00765997 0.00766861 0.00767725 0.00768588 0.00769452 0.00770316 0.0077118 0.00772044 0.00772907 0.00773771 0.00774635 0.00775499 0.00776363 0.00777226 0.0077809 0.00778954 0.00779818 0.00780682 0.00781545 0.00782409 0.00783273 0.00784137 0.00785001 0.00785864 0.00786728 0.00787592 0.00788456 0.0078932 0.00790183 0.00791047 0.00791911 0.00792775 0.00793639 0.00794502 0.00795366 0.0079623 0.00797094 0.00797958 0.00798821 0.00799685 0.00800549 0.00801413 0.00802277 0.00803141 0.00804004 0.00804868 0.00805732 0.00806596 0.0080746 0.00808323 0.00809187 0.00810051 0.00810915 0.00811779 0.00812642 0.00813506 0.0081437 0.00815234 0.00816098 0.00816961 0.00817825 0.00818689 0.00819553 0.00820417 0.0082128 0.00822144 0.00823008 0.00823872 0.00824736 0.00825599 0.00826463 0.00827327 0.00828191 0.00829055 0.00829918 0.00830782 0.00831646 0.0083251 0.00833374 0.00834237 0.00835101 0.00835965 0.00836829 0.00837693 0.00838556 0.0083942 0.00840284 +-0.00192257 -0.00179467 -0.00152459 -0.000912626 5.86887E-05 0.00124202 0.00252015 0.00381649 0.00506102 0.00615401 0.00693029 0.00727234 0.00735753 0.00737856 0.00738904 0.00739795 0.00740664 0.00741529 0.00742394 0.00743258 0.00744123 0.00744987 0.00745852 0.00746716 0.00747581 0.00748445 0.0074931 0.00750174 0.00751039 0.00751903 0.00752768 0.00753632 0.00754497 0.00755361 0.00756226 0.0075709 0.00757955 0.00758819 0.00759684 0.00760548 0.00761413 0.00762277 0.00763142 0.00764006 0.00764871 0.00765735 0.007666 0.00767464 0.00768329 0.00769193 0.00770058 0.00770922 0.00771787 0.00772651 0.00773516 0.0077438 0.00775245 0.00776109 0.00776974 0.00777838 0.00778703 0.00779567 0.00780432 0.00781296 0.00782161 0.00783025 0.0078389 0.00784754 0.00785619 0.00786483 0.00787348 0.00788212 0.00789077 0.00789941 0.00790806 0.0079167 0.00792535 0.007934 0.00794264 0.00795129 0.00795993 0.00796858 0.00797722 0.00798587 0.00799451 0.00800316 0.0080118 0.00802045 0.00802909 0.00803774 0.00804638 0.00805503 0.00806367 0.00807232 0.00808096 0.00808961 0.00809825 0.0081069 0.00811554 0.00812419 0.00813283 0.00814148 0.00815012 0.00815877 0.00816741 0.00817606 0.0081847 0.00819335 0.00820199 0.00821064 0.00821928 0.00822793 0.00823657 0.00824522 0.00825386 0.00826251 0.00827115 0.0082798 0.00828844 0.00829709 0.00830573 0.00831438 0.00832302 0.00833167 0.00834031 0.00834896 0.0083576 0.00836625 0.00837489 0.00838354 0.00839218 0.00840083 0.00840947 +-0.00192435 -0.00179626 -0.00152573 -0.000913079 5.87702E-05 0.00124247 0.0025209 0.00381758 0.00506262 0.00615647 0.00693419 0.00727758 0.00736322 0.00738433 0.00739484 0.00740376 0.00741245 0.00742111 0.00742976 0.00743841 0.00744707 0.00745572 0.00746437 0.00747302 0.00748168 0.00749033 0.00749898 0.00750763 0.00751628 0.00752494 0.00753359 0.00754224 0.00755089 0.00755954 0.0075682 0.00757685 0.0075855 0.00759415 0.00760281 0.00761146 0.00762011 0.00762876 0.00763741 0.00764607 0.00765472 0.00766337 0.00767202 0.00768067 0.00768933 0.00769798 0.00770663 0.00771528 0.00772394 0.00773259 0.00774124 0.00774989 0.00775854 0.0077672 0.00777585 0.0077845 0.00779315 0.0078018 0.00781046 0.00781911 0.00782776 0.00783641 0.00784507 0.00785372 0.00786237 0.00787102 0.00787967 0.00788833 0.00789698 0.00790563 0.00791428 0.00792293 0.00793159 0.00794024 0.00794889 0.00795754 0.00796619 0.00797485 0.0079835 0.00799215 0.0080008 0.00800946 0.00801811 0.00802676 0.00803541 0.00804406 0.00805272 0.00806137 0.00807002 0.00807867 0.00808732 0.00809598 0.00810463 0.00811328 0.00812193 0.00813059 0.00813924 0.00814789 0.00815654 0.00816519 0.00817385 0.0081825 0.00819115 0.0081998 0.00820845 0.00821711 0.00822576 0.00823441 0.00824306 0.00825172 0.00826037 0.00826902 0.00827767 0.00828632 0.00829498 0.00830363 0.00831228 0.00832093 0.00832958 0.00833824 0.00834689 0.00835554 0.00836419 0.00837285 0.0083815 0.00839015 0.0083988 0.00840745 0.00841611 +-0.00192614 -0.00179785 -0.00152687 -0.000913531 5.88518E-05 0.00124291 0.00252165 0.00381868 0.00506421 0.00615892 0.00693809 0.00728281 0.00736891 0.00739011 0.00740063 0.00740956 0.00741826 0.00742693 0.00743559 0.00744425 0.00745291 0.00746156 0.00747022 0.00747888 0.00748754 0.0074962 0.00750486 0.00751352 0.00752218 0.00753084 0.0075395 0.00754816 0.00755682 0.00756547 0.00757413 0.00758279 0.00759145 0.00760011 0.00760877 0.00761743 0.00762609 0.00763475 0.00764341 0.00765207 0.00766073 0.00766939 0.00767804 0.0076867 0.00769536 0.00770402 0.00771268 0.00772134 0.00773 0.00773866 0.00774732 0.00775598 0.00776464 0.0077733 0.00778195 0.00779061 0.00779927 0.00780793 0.00781659 0.00782525 0.00783391 0.00784257 0.00785123 0.00785989 0.00786855 0.00787721 0.00788586 0.00789452 0.00790318 0.00791184 0.0079205 0.00792916 0.00793782 0.00794648 0.00795514 0.0079638 0.00797246 0.00798112 0.00798977 0.00799843 0.00800709 0.00801575 0.00802441 0.00803307 0.00804173 0.00805039 0.00805905 0.00806771 0.00807637 0.00808503 0.00809369 0.00810234 0.008111 0.00811966 0.00812832 0.00813698 0.00814564 0.0081543 0.00816296 0.00817162 0.00818028 0.00818894 0.0081976 0.00820625 0.00821491 0.00822357 0.00823223 0.00824089 0.00824955 0.00825821 0.00826687 0.00827553 0.00828419 0.00829285 0.00830151 0.00831017 0.00831882 0.00832748 0.00833614 0.0083448 0.00835346 0.00836212 0.00837078 0.00837944 0.0083881 0.00839676 0.00840542 0.00841408 0.00842273 +-0.00192792 -0.00179945 -0.00152801 -0.000913983 5.89334E-05 0.00124335 0.0025224 0.00381977 0.0050658 0.00616137 0.00694198 0.00728804 0.00737459 0.00739588 0.00740642 0.00741536 0.00742407 0.00743274 0.00744141 0.00745008 0.00745874 0.00746741 0.00747607 0.00748474 0.00749341 0.00750207 0.00751074 0.00751941 0.00752807 0.00753674 0.0075454 0.00755407 0.00756274 0.0075714 0.00758007 0.00758874 0.0075974 0.00760607 0.00761473 0.0076234 0.00763207 0.00764073 0.0076494 0.00765806 0.00766673 0.0076754 0.00768406 0.00769273 0.0077014 0.00771006 0.00771873 0.00772739 0.00773606 0.00774473 0.00775339 0.00776206 0.00777073 0.00777939 0.00778806 0.00779672 0.00780539 0.00781406 0.00782272 0.00783139 0.00784006 0.00784872 0.00785739 0.00786605 0.00787472 0.00788339 0.00789205 0.00790072 0.00790939 0.00791805 0.00792672 0.00793538 0.00794405 0.00795272 0.00796138 0.00797005 0.00797872 0.00798738 0.00799605 0.00800471 0.00801338 0.00802205 0.00803071 0.00803938 0.00804805 0.00805671 0.00806538 0.00807404 0.00808271 0.00809138 0.00810004 0.00810871 0.00811738 0.00812604 0.00813471 0.00814337 0.00815204 0.00816071 0.00816937 0.00817804 0.00818671 0.00819537 0.00820404 0.0082127 0.00822137 0.00823004 0.0082387 0.00824737 0.00825604 0.0082647 0.00827337 0.00828203 0.0082907 0.00829937 0.00830803 0.0083167 0.00832537 0.00833403 0.0083427 0.00835136 0.00836003 0.0083687 0.00837736 0.00838603 0.0083947 0.00840336 0.00841203 0.00842069 0.00842936 +-0.0019297 -0.00180104 -0.00152914 -0.000914433 5.9015E-05 0.0012438 0.00252315 0.00382086 0.00506738 0.00616381 0.00694586 0.00729327 0.00738028 0.00740165 0.00741221 0.00742116 0.00742987 0.00743855 0.00744723 0.0074559 0.00746457 0.00747325 0.00748192 0.00749059 0.00749927 0.00750794 0.00751661 0.00752529 0.00753396 0.00754263 0.00755131 0.00755998 0.00756865 0.00757733 0.007586 0.00759467 0.00760335 0.00761202 0.00762069 0.00762937 0.00763804 0.00764671 0.00765539 0.00766406 0.00767273 0.00768141 0.00769008 0.00769875 0.00770743 0.0077161 0.00772477 0.00773345 0.00774212 0.00775079 0.00775947 0.00776814 0.00777681 0.00778549 0.00779416 0.00780283 0.00781151 0.00782018 0.00782885 0.00783753 0.0078462 0.00785487 0.00786355 0.00787222 0.00788089 0.00788957 0.00789824 0.00790691 0.00791559 0.00792426 0.00793293 0.00794161 0.00795028 0.00795895 0.00796763 0.0079763 0.00798497 0.00799364 0.00800232 0.00801099 0.00801966 0.00802834 0.00803701 0.00804568 0.00805436 0.00806303 0.0080717 0.00808038 0.00808905 0.00809772 0.0081064 0.00811507 0.00812374 0.00813242 0.00814109 0.00814976 0.00815844 0.00816711 0.00817578 0.00818446 0.00819313 0.0082018 0.00821048 0.00821915 0.00822782 0.0082365 0.00824517 0.00825384 0.00826252 0.00827119 0.00827986 0.00828854 0.00829721 0.00830588 0.00831456 0.00832323 0.0083319 0.00834058 0.00834925 0.00835792 0.0083666 0.00837527 0.00838394 0.00839262 0.00840129 0.00840996 0.00841864 0.00842731 0.00843598 +-0.00193148 -0.00180263 -0.00153028 -0.000914884 5.90966E-05 0.00124424 0.00252389 0.00382194 0.00506897 0.00616625 0.00694974 0.00729849 0.00738595 0.00740742 0.007418 0.00742696 0.00743568 0.00744436 0.00745304 0.00746173 0.00747041 0.00747909 0.00748777 0.00749645 0.00750513 0.00751381 0.00752249 0.00753117 0.00753985 0.00754853 0.00755721 0.00756589 0.00757457 0.00758325 0.00759193 0.00760061 0.00760929 0.00761797 0.00762665 0.00763533 0.00764401 0.00765269 0.00766137 0.00767005 0.00767873 0.00768741 0.00769609 0.00770477 0.00771345 0.00772214 0.00773082 0.0077395 0.00774818 0.00775686 0.00776554 0.00777422 0.0077829 0.00779158 0.00780026 0.00780894 0.00781762 0.0078263 0.00783498 0.00784366 0.00785234 0.00786102 0.0078697 0.00787838 0.00788706 0.00789574 0.00790442 0.0079131 0.00792178 0.00793046 0.00793914 0.00794782 0.0079565 0.00796518 0.00797386 0.00798254 0.00799122 0.00799991 0.00800859 0.00801727 0.00802595 0.00803463 0.00804331 0.00805199 0.00806067 0.00806935 0.00807803 0.00808671 0.00809539 0.00810407 0.00811275 0.00812143 0.00813011 0.00813879 0.00814747 0.00815615 0.00816483 0.00817351 0.00818219 0.00819087 0.00819955 0.00820823 0.00821691 0.00822559 0.00823427 0.00824295 0.00825163 0.00826032 0.008269 0.00827768 0.00828636 0.00829504 0.00830372 0.0083124 0.00832108 0.00832976 0.00833844 0.00834712 0.0083558 0.00836448 0.00837316 0.00838184 0.00839052 0.0083992 0.00840788 0.00841656 0.00842524 0.00843392 0.0084426 +-0.00193326 -0.00180422 -0.00153141 -0.000915333 5.91782E-05 0.00124468 0.00252464 0.00382303 0.00507055 0.00616869 0.0069536 0.0073037 0.00739163 0.00741318 0.00742378 0.00743275 0.00744148 0.00745017 0.00745886 0.00746755 0.00747623 0.00748492 0.00749361 0.0075023 0.00751098 0.00751967 0.00752836 0.00753705 0.00754573 0.00755442 0.00756311 0.00757179 0.00758048 0.00758917 0.00759786 0.00760654 0.00761523 0.00762392 0.00763261 0.00764129 0.00764998 0.00765867 0.00766736 0.00767604 0.00768473 0.00769342 0.00770211 0.00771079 0.00771948 0.00772817 0.00773685 0.00774554 0.00775423 0.00776292 0.0077716 0.00778029 0.00778898 0.00779767 0.00780635 0.00781504 0.00782373 0.00783242 0.0078411 0.00784979 0.00785848 0.00786717 0.00787585 0.00788454 0.00789323 0.00790191 0.0079106 0.00791929 0.00792798 0.00793666 0.00794535 0.00795404 0.00796273 0.00797141 0.0079801 0.00798879 0.00799748 0.00800616 0.00801485 0.00802354 0.00803222 0.00804091 0.0080496 0.00805829 0.00806697 0.00807566 0.00808435 0.00809304 0.00810172 0.00811041 0.0081191 0.00812779 0.00813647 0.00814516 0.00815385 0.00816254 0.00817122 0.00817991 0.0081886 0.00819728 0.00820597 0.00821466 0.00822335 0.00823203 0.00824072 0.00824941 0.0082581 0.00826678 0.00827547 0.00828416 0.00829285 0.00830153 0.00831022 0.00831891 0.0083276 0.00833628 0.00834497 0.00835366 0.00836234 0.00837103 0.00837972 0.00838841 0.00839709 0.00840578 0.00841447 0.00842316 0.00843184 0.00844053 0.00844922 +-0.00193504 -0.00180582 -0.00153254 -0.000915782 5.92599E-05 0.00124512 0.00252538 0.00382411 0.00507213 0.00617112 0.00695747 0.00730891 0.0073973 0.00741894 0.00742956 0.00743854 0.00744727 0.00745597 0.00746467 0.00747336 0.00748206 0.00749075 0.00749945 0.00750814 0.00751684 0.00752553 0.00753423 0.00754292 0.00755161 0.00756031 0.007569 0.0075777 0.00758639 0.00759509 0.00760378 0.00761248 0.00762117 0.00762986 0.00763856 0.00764725 0.00765595 0.00766464 0.00767334 0.00768203 0.00769072 0.00769942 0.00770811 0.00771681 0.0077255 0.0077342 0.00774289 0.00775159 0.00776028 0.00776897 0.00777767 0.00778636 0.00779506 0.00780375 0.00781245 0.00782114 0.00782984 0.00783853 0.00784722 0.00785592 0.00786461 0.00787331 0.007882 0.0078907 0.00789939 0.00790808 0.00791678 0.00792547 0.00793417 0.00794286 0.00795156 0.00796025 0.00796895 0.00797764 0.00798633 0.00799503 0.00800372 0.00801242 0.00802111 0.00802981 0.0080385 0.0080472 0.00805589 0.00806458 0.00807328 0.00808197 0.00809067 0.00809936 0.00810806 0.00811675 0.00812544 0.00813414 0.00814283 0.00815153 0.00816022 0.00816892 0.00817761 0.00818631 0.008195 0.00820369 0.00821239 0.00822108 0.00822978 0.00823847 0.00824717 0.00825586 0.00826456 0.00827325 0.00828194 0.00829064 0.00829933 0.00830803 0.00831672 0.00832542 0.00833411 0.0083428 0.0083515 0.00836019 0.00836889 0.00837758 0.00838628 0.00839497 0.00840367 0.00841236 0.00842105 0.00842975 0.00843844 0.00844714 0.00845583 +-0.00193682 -0.00180741 -0.00153367 -0.00091623 5.93415E-05 0.00124556 0.00252612 0.0038252 0.0050737 0.00617354 0.00696132 0.00731411 0.00740297 0.0074247 0.00743534 0.00744433 0.00745307 0.00746178 0.00747048 0.00747918 0.00748788 0.00749658 0.00750528 0.00751399 0.00752269 0.00753139 0.00754009 0.00754879 0.00755749 0.00756619 0.0075749 0.0075836 0.0075923 0.007601 0.0076097 0.0076184 0.0076271 0.00763581 0.00764451 0.00765321 0.00766191 0.00767061 0.00767931 0.00768802 0.00769672 0.00770542 0.00771412 0.00772282 0.00773152 0.00774022 0.00774893 0.00775763 0.00776633 0.00777503 0.00778373 0.00779243 0.00780113 0.00780984 0.00781854 0.00782724 0.00783594 0.00784464 0.00785334 0.00786204 0.00787075 0.00787945 0.00788815 0.00789685 0.00790555 0.00791425 0.00792295 0.00793165 0.00794036 0.00794906 0.00795776 0.00796646 0.00797516 0.00798386 0.00799257 0.00800127 0.00800997 0.00801867 0.00802737 0.00803607 0.00804477 0.00805348 0.00806218 0.00807088 0.00807958 0.00808828 0.00809698 0.00810568 0.00811439 0.00812309 0.00813179 0.00814049 0.00814919 0.00815789 0.00816659 0.0081753 0.008184 0.0081927 0.0082014 0.0082101 0.0082188 0.0082275 0.00823621 0.00824491 0.00825361 0.00826231 0.00827101 0.00827971 0.00828841 0.00829712 0.00830582 0.00831452 0.00832322 0.00833192 0.00834062 0.00834932 0.00835803 0.00836673 0.00837543 0.00838413 0.00839283 0.00840153 0.00841023 0.00841894 0.00842764 0.00843634 0.00844504 0.00845374 0.00846244 +-0.00193859 -0.00180899 -0.0015348 -0.000916677 5.94232E-05 0.001246 0.00252686 0.00382628 0.00507528 0.00617597 0.00696517 0.00731931 0.00740864 0.00743046 0.00744112 0.00745011 0.00745886 0.00746758 0.00747628 0.00748499 0.0074937 0.00750241 0.00751112 0.00751983 0.00752854 0.00753724 0.00754595 0.00755466 0.00756337 0.00757208 0.00758079 0.0075895 0.0075982 0.00760691 0.00761562 0.00762433 0.00763304 0.00764175 0.00765045 0.00765916 0.00766787 0.00767658 0.00768529 0.007694 0.00770271 0.00771141 0.00772012 0.00772883 0.00773754 0.00774625 0.00775496 0.00776366 0.00777237 0.00778108 0.00778979 0.0077985 0.00780721 0.00781592 0.00782462 0.00783333 0.00784204 0.00785075 0.00785946 0.00786817 0.00787687 0.00788558 0.00789429 0.007903 0.00791171 0.00792042 0.00792913 0.00793783 0.00794654 0.00795525 0.00796396 0.00797267 0.00798138 0.00799008 0.00799879 0.0080075 0.00801621 0.00802492 0.00803363 0.00804234 0.00805104 0.00805975 0.00806846 0.00807717 0.00808588 0.00809459 0.00810329 0.008112 0.00812071 0.00812942 0.00813813 0.00814684 0.00815555 0.00816425 0.00817296 0.00818167 0.00819038 0.00819909 0.0082078 0.0082165 0.00822521 0.00823392 0.00824263 0.00825134 0.00826005 0.00826876 0.00827746 0.00828617 0.00829488 0.00830359 0.0083123 0.00832101 0.00832972 0.00833842 0.00834713 0.00835584 0.00836455 0.00837326 0.00838197 0.00839067 0.00839938 0.00840809 0.0084168 0.00842551 0.00843422 0.00844293 0.00845163 0.00846034 0.00846905 +-0.00194037 -0.00181058 -0.00153593 -0.000917124 5.95049E-05 0.00124644 0.00252761 0.00382736 0.00507685 0.00617838 0.00696901 0.0073245 0.0074143 0.00743621 0.00744689 0.00745589 0.00746465 0.00747337 0.00748209 0.0074908 0.00749952 0.00750824 0.00751695 0.00752567 0.00753438 0.0075431 0.00755181 0.00756053 0.00756924 0.00757796 0.00758667 0.00759539 0.00760411 0.00761282 0.00762154 0.00763025 0.00763897 0.00764768 0.0076564 0.00766511 0.00767383 0.00768255 0.00769126 0.00769998 0.00770869 0.00771741 0.00772612 0.00773484 0.00774355 0.00775227 0.00776098 0.0077697 0.00777842 0.00778713 0.00779585 0.00780456 0.00781328 0.00782199 0.00783071 0.00783942 0.00784814 0.00785686 0.00786557 0.00787429 0.007883 0.00789172 0.00790043 0.00790915 0.00791786 0.00792658 0.00793529 0.00794401 0.00795273 0.00796144 0.00797016 0.00797887 0.00798759 0.0079963 0.00800502 0.00801373 0.00802245 0.00803116 0.00803988 0.0080486 0.00805731 0.00806603 0.00807474 0.00808346 0.00809217 0.00810089 0.0081096 0.00811832 0.00812704 0.00813575 0.00814447 0.00815318 0.0081619 0.00817061 0.00817933 0.00818804 0.00819676 0.00820547 0.00821419 0.00822291 0.00823162 0.00824034 0.00824905 0.00825777 0.00826648 0.0082752 0.00828391 0.00829263 0.00830135 0.00831006 0.00831878 0.00832749 0.00833621 0.00834492 0.00835364 0.00836235 0.00837107 0.00837978 0.0083885 0.00839722 0.00840593 0.00841465 0.00842336 0.00843208 0.00844079 0.00844951 0.00845822 0.00846694 0.00847566 +-0.00194215 -0.00181217 -0.00153706 -0.00091757 5.95866E-05 0.00124688 0.00252835 0.00382844 0.00507842 0.00618079 0.00697284 0.00732969 0.00741996 0.00744196 0.00745266 0.00746167 0.00747044 0.00747917 0.00748789 0.00749661 0.00750533 0.00751406 0.00752278 0.0075315 0.00754022 0.00754895 0.00755767 0.00756639 0.00757511 0.00758384 0.00759256 0.00760128 0.00761 0.00761873 0.00762745 0.00763617 0.00764489 0.00765362 0.00766234 0.00767106 0.00767979 0.00768851 0.00769723 0.00770595 0.00771468 0.0077234 0.00773212 0.00774084 0.00774957 0.00775829 0.00776701 0.00777573 0.00778446 0.00779318 0.0078019 0.00781062 0.00781935 0.00782807 0.00783679 0.00784551 0.00785424 0.00786296 0.00787168 0.0078804 0.00788913 0.00789785 0.00790657 0.00791529 0.00792402 0.00793274 0.00794146 0.00795018 0.00795891 0.00796763 0.00797635 0.00798507 0.0079938 0.00800252 0.00801124 0.00801996 0.00802869 0.00803741 0.00804613 0.00805485 0.00806358 0.0080723 0.00808102 0.00808974 0.00809847 0.00810719 0.00811591 0.00812463 0.00813336 0.00814208 0.0081508 0.00815952 0.00816825 0.00817697 0.00818569 0.00819441 0.00820314 0.00821186 0.00822058 0.0082293 0.00823803 0.00824675 0.00825547 0.00826419 0.00827292 0.00828164 0.00829036 0.00829908 0.00830781 0.00831653 0.00832525 0.00833397 0.0083427 0.00835142 0.00836014 0.00836886 0.00837759 0.00838631 0.00839503 0.00840375 0.00841248 0.0084212 0.00842992 0.00843864 0.00844737 0.00845609 0.00846481 0.00847353 0.00848226 +-0.00194393 -0.00181376 -0.00153819 -0.000918015 5.96683E-05 0.00124732 0.00252909 0.00382952 0.00507998 0.0061832 0.00697667 0.00733487 0.00742562 0.00744771 0.00745843 0.00746745 0.00747622 0.00748496 0.00749369 0.00750242 0.00751115 0.00751988 0.00752861 0.00753734 0.00754607 0.00755479 0.00756352 0.00757225 0.00758098 0.00758971 0.00759844 0.00760717 0.0076159 0.00762463 0.00763336 0.00764209 0.00765082 0.00765955 0.00766828 0.00767701 0.00768574 0.00769447 0.0077032 0.00771193 0.00772066 0.00772939 0.00773812 0.00774684 0.00775557 0.0077643 0.00777303 0.00778176 0.00779049 0.00779922 0.00780795 0.00781668 0.00782541 0.00783414 0.00784287 0.0078516 0.00786033 0.00786906 0.00787779 0.00788652 0.00789525 0.00790398 0.00791271 0.00792144 0.00793017 0.00793889 0.00794762 0.00795635 0.00796508 0.00797381 0.00798254 0.00799127 0.008 0.00800873 0.00801746 0.00802619 0.00803492 0.00804365 0.00805238 0.00806111 0.00806984 0.00807857 0.0080873 0.00809603 0.00810476 0.00811349 0.00812221 0.00813094 0.00813967 0.0081484 0.00815713 0.00816586 0.00817459 0.00818332 0.00819205 0.00820078 0.00820951 0.00821824 0.00822697 0.0082357 0.00824443 0.00825316 0.00826189 0.00827062 0.00827935 0.00828808 0.00829681 0.00830554 0.00831427 0.00832299 0.00833172 0.00834045 0.00834918 0.00835791 0.00836664 0.00837537 0.0083841 0.00839283 0.00840156 0.00841029 0.00841902 0.00842775 0.00843648 0.00844521 0.00845394 0.00846267 0.0084714 0.00848013 0.00848886 +-0.0019457 -0.00181534 -0.00153931 -0.00091846 5.975E-05 0.00124776 0.00252982 0.00383059 0.00508154 0.0061856 0.00698048 0.00734004 0.00743127 0.00745346 0.00746419 0.00747322 0.007482 0.00749075 0.00749948 0.00750822 0.00751696 0.00752569 0.00753443 0.00754317 0.0075519 0.00756064 0.00756938 0.00757811 0.00758685 0.00759559 0.00760432 0.00761306 0.0076218 0.00763053 0.00763927 0.00764801 0.00765674 0.00766548 0.00767421 0.00768295 0.00769169 0.00770042 0.00770916 0.0077179 0.00772663 0.00773537 0.00774411 0.00775284 0.00776158 0.00777032 0.00777905 0.00778779 0.00779653 0.00780526 0.007814 0.00782274 0.00783147 0.00784021 0.00784895 0.00785768 0.00786642 0.00787516 0.00788389 0.00789263 0.00790137 0.0079101 0.00791884 0.00792758 0.00793631 0.00794505 0.00795378 0.00796252 0.00797126 0.00797999 0.00798873 0.00799747 0.0080062 0.00801494 0.00802368 0.00803241 0.00804115 0.00804989 0.00805862 0.00806736 0.0080761 0.00808483 0.00809357 0.00810231 0.00811104 0.00811978 0.00812852 0.00813725 0.00814599 0.00815473 0.00816346 0.0081722 0.00818094 0.00818967 0.00819841 0.00820715 0.00821588 0.00822462 0.00823335 0.00824209 0.00825083 0.00825956 0.0082683 0.00827704 0.00828577 0.00829451 0.00830325 0.00831198 0.00832072 0.00832946 0.00833819 0.00834693 0.00835567 0.0083644 0.00837314 0.00838188 0.00839061 0.00839935 0.00840809 0.00841682 0.00842556 0.0084343 0.00844303 0.00845177 0.00846051 0.00846924 0.00847798 0.00848672 0.00849545 +-0.00194748 -0.00181693 -0.00154044 -0.000918904 5.98317E-05 0.0012482 0.00253056 0.00383166 0.0050831 0.006188 0.0069843 0.00734521 0.00743692 0.0074592 0.00746996 0.007479 0.00748778 0.00749653 0.00750528 0.00751402 0.00752276 0.00753151 0.00754025 0.00754899 0.00755774 0.00756648 0.00757523 0.00758397 0.00759271 0.00760146 0.0076102 0.00761894 0.00762769 0.00763643 0.00764517 0.00765392 0.00766266 0.0076714 0.00768015 0.00768889 0.00769764 0.00770638 0.00771512 0.00772387 0.00773261 0.00774135 0.0077501 0.00775884 0.00776758 0.00777633 0.00778507 0.00779381 0.00780256 0.0078113 0.00782005 0.00782879 0.00783753 0.00784628 0.00785502 0.00786376 0.00787251 0.00788125 0.00788999 0.00789874 0.00790748 0.00791623 0.00792497 0.00793371 0.00794246 0.0079512 0.00795994 0.00796869 0.00797743 0.00798617 0.00799492 0.00800366 0.0080124 0.00802115 0.00802989 0.00803863 0.00804738 0.00805612 0.00806487 0.00807361 0.00808235 0.0080911 0.00809984 0.00810858 0.00811733 0.00812607 0.00813481 0.00814356 0.0081523 0.00816105 0.00816979 0.00817853 0.00818728 0.00819602 0.00820476 0.00821351 0.00822225 0.00823099 0.00823974 0.00824848 0.00825722 0.00826597 0.00827471 0.00828346 0.0082922 0.00830094 0.00830969 0.00831843 0.00832717 0.00833592 0.00834466 0.0083534 0.00836215 0.00837089 0.00837963 0.00838838 0.00839712 0.00840587 0.00841461 0.00842335 0.0084321 0.00844084 0.00844958 0.00845833 0.00846707 0.00847581 0.00848456 0.0084933 0.00850204 +-0.00194925 -0.00181851 -0.00154156 -0.000919347 5.99135E-05 0.00124863 0.0025313 0.00383274 0.00508466 0.00619039 0.0069881 0.00735038 0.00744257 0.00746494 0.00747572 0.00748476 0.00749356 0.00750232 0.00751107 0.00751982 0.00752857 0.00753732 0.00754607 0.00755482 0.00756357 0.00757232 0.00758107 0.00758982 0.00759857 0.00760732 0.00761607 0.00762482 0.00763358 0.00764233 0.00765108 0.00765983 0.00766858 0.00767733 0.00768608 0.00769483 0.00770358 0.00771233 0.00772108 0.00772983 0.00773858 0.00774733 0.00775608 0.00776483 0.00777358 0.00778234 0.00779109 0.00779984 0.00780859 0.00781734 0.00782609 0.00783484 0.00784359 0.00785234 0.00786109 0.00786984 0.00787859 0.00788734 0.00789609 0.00790484 0.00791359 0.00792235 0.0079311 0.00793985 0.0079486 0.00795735 0.0079661 0.00797485 0.0079836 0.00799235 0.0080011 0.00800985 0.0080186 0.00802735 0.0080361 0.00804485 0.0080536 0.00806235 0.0080711 0.00807986 0.00808861 0.00809736 0.00810611 0.00811486 0.00812361 0.00813236 0.00814111 0.00814986 0.00815861 0.00816736 0.00817611 0.00818486 0.00819361 0.00820236 0.00821111 0.00821987 0.00822862 0.00823737 0.00824612 0.00825487 0.00826362 0.00827237 0.00828112 0.00828987 0.00829862 0.00830737 0.00831612 0.00832487 0.00833362 0.00834237 0.00835112 0.00835987 0.00836863 0.00837738 0.00838613 0.00839488 0.00840363 0.00841238 0.00842113 0.00842988 0.00843863 0.00844738 0.00845613 0.00846488 0.00847363 0.00848238 0.00849113 0.00849988 0.00850863 +-0.00195103 -0.0018201 -0.00154269 -0.00091979 5.99953E-05 0.00124907 0.00253203 0.00383381 0.00508622 0.00619278 0.0069919 0.00735554 0.00744821 0.00747068 0.00748147 0.00749053 0.00749933 0.0075081 0.00751685 0.00752561 0.00753437 0.00754313 0.00755189 0.00756064 0.0075694 0.00757816 0.00758692 0.00759567 0.00760443 0.00761319 0.00762195 0.0076307 0.00763946 0.00764822 0.00765698 0.00766573 0.00767449 0.00768325 0.00769201 0.00770076 0.00770952 0.00771828 0.00772704 0.0077358 0.00774455 0.00775331 0.00776207 0.00777083 0.00777958 0.00778834 0.0077971 0.00780586 0.00781461 0.00782337 0.00783213 0.00784089 0.00784964 0.0078584 0.00786716 0.00787592 0.00788467 0.00789343 0.00790219 0.00791095 0.0079197 0.00792846 0.00793722 0.00794598 0.00795474 0.00796349 0.00797225 0.00798101 0.00798977 0.00799852 0.00800728 0.00801604 0.0080248 0.00803355 0.00804231 0.00805107 0.00805983 0.00806858 0.00807734 0.0080861 0.00809486 0.00810361 0.00811237 0.00812113 0.00812989 0.00813864 0.0081474 0.00815616 0.00816492 0.00817368 0.00818243 0.00819119 0.00819995 0.00820871 0.00821746 0.00822622 0.00823498 0.00824374 0.00825249 0.00826125 0.00827001 0.00827877 0.00828752 0.00829628 0.00830504 0.0083138 0.00832255 0.00833131 0.00834007 0.00834883 0.00835759 0.00836634 0.0083751 0.00838386 0.00839262 0.00840137 0.00841013 0.00841889 0.00842765 0.0084364 0.00844516 0.00845392 0.00846268 0.00847143 0.00848019 0.00848895 0.00849771 0.00850646 0.00851522 +-0.0019528 -0.00182168 -0.00154381 -0.000920232 6.00771E-05 0.00124951 0.00253277 0.00383488 0.00508777 0.00619516 0.00699569 0.0073607 0.00745385 0.00747641 0.00748723 0.00749629 0.0075051 0.00751387 0.00752264 0.0075314 0.00754017 0.00754893 0.0075577 0.00756646 0.00757523 0.00758399 0.00759276 0.00760152 0.00761029 0.00761905 0.00762782 0.00763658 0.00764534 0.00765411 0.00766287 0.00767164 0.0076804 0.00768917 0.00769793 0.0077067 0.00771546 0.00772423 0.00773299 0.00774176 0.00775052 0.00775928 0.00776805 0.00777681 0.00778558 0.00779434 0.00780311 0.00781187 0.00782064 0.0078294 0.00783817 0.00784693 0.0078557 0.00786446 0.00787322 0.00788199 0.00789075 0.00789952 0.00790828 0.00791705 0.00792581 0.00793458 0.00794334 0.00795211 0.00796087 0.00796964 0.0079784 0.00798716 0.00799593 0.00800469 0.00801346 0.00802222 0.00803099 0.00803975 0.00804852 0.00805728 0.00806605 0.00807481 0.00808358 0.00809234 0.0081011 0.00810987 0.00811863 0.0081274 0.00813616 0.00814493 0.00815369 0.00816246 0.00817122 0.00817999 0.00818875 0.00819752 0.00820628 0.00821504 0.00822381 0.00823257 0.00824134 0.0082501 0.00825887 0.00826763 0.0082764 0.00828516 0.00829393 0.00830269 0.00831146 0.00832022 0.00832898 0.00833775 0.00834651 0.00835528 0.00836404 0.00837281 0.00838157 0.00839034 0.0083991 0.00840787 0.00841663 0.0084254 0.00843416 0.00844292 0.00845169 0.00846045 0.00846922 0.00847798 0.00848675 0.00849551 0.00850428 0.00851304 0.00852181 +-0.00195457 -0.00182327 -0.00154493 -0.000920674 6.01589E-05 0.00124994 0.0025335 0.00383595 0.00508932 0.00619754 0.00699947 0.00736585 0.00745949 0.00748214 0.00749298 0.00750206 0.00751087 0.00751965 0.00752842 0.00753719 0.00754597 0.00755474 0.00756351 0.00757228 0.00758105 0.00758982 0.0075986 0.00760737 0.00761614 0.00762491 0.00763368 0.00764245 0.00765123 0.00766 0.00766877 0.00767754 0.00768631 0.00769508 0.00770386 0.00771263 0.0077214 0.00773017 0.00773894 0.00774771 0.00775649 0.00776526 0.00777403 0.0077828 0.00779157 0.00780034 0.00780911 0.00781789 0.00782666 0.00783543 0.0078442 0.00785297 0.00786174 0.00787052 0.00787929 0.00788806 0.00789683 0.0079056 0.00791437 0.00792315 0.00793192 0.00794069 0.00794946 0.00795823 0.007967 0.00797578 0.00798455 0.00799332 0.00800209 0.00801086 0.00801963 0.0080284 0.00803718 0.00804595 0.00805472 0.00806349 0.00807226 0.00808103 0.00808981 0.00809858 0.00810735 0.00811612 0.00812489 0.00813366 0.00814244 0.00815121 0.00815998 0.00816875 0.00817752 0.00818629 0.00819507 0.00820384 0.00821261 0.00822138 0.00823015 0.00823892 0.0082477 0.00825647 0.00826524 0.00827401 0.00828278 0.00829155 0.00830033 0.0083091 0.00831787 0.00832664 0.00833541 0.00834418 0.00835296 0.00836173 0.0083705 0.00837927 0.00838804 0.00839681 0.00840558 0.00841436 0.00842313 0.0084319 0.00844067 0.00844944 0.00845821 0.00846699 0.00847576 0.00848453 0.0084933 0.00850207 0.00851084 0.00851962 0.00852839 +-0.00195635 -0.00182485 -0.00154605 -0.000921114 6.02407E-05 0.00125038 0.00253423 0.00383701 0.00509086 0.00619992 0.00700325 0.00737099 0.00746513 0.00748787 0.00749873 0.00750781 0.00751664 0.00752542 0.0075342 0.00754298 0.00755176 0.00756054 0.00756932 0.0075781 0.00758687 0.00759565 0.00760443 0.00761321 0.00762199 0.00763077 0.00763955 0.00764832 0.0076571 0.00766588 0.00767466 0.00768344 0.00769222 0.007701 0.00770978 0.00771855 0.00772733 0.00773611 0.00774489 0.00775367 0.00776245 0.00777123 0.00778 0.00778878 0.00779756 0.00780634 0.00781512 0.0078239 0.00783268 0.00784145 0.00785023 0.00785901 0.00786779 0.00787657 0.00788535 0.00789413 0.00790291 0.00791168 0.00792046 0.00792924 0.00793802 0.0079468 0.00795558 0.00796436 0.00797313 0.00798191 0.00799069 0.00799947 0.00800825 0.00801703 0.00802581 0.00803458 0.00804336 0.00805214 0.00806092 0.0080697 0.00807848 0.00808726 0.00809603 0.00810481 0.00811359 0.00812237 0.00813115 0.00813993 0.00814871 0.00815748 0.00816626 0.00817504 0.00818382 0.0081926 0.00820138 0.00821016 0.00821894 0.00822771 0.00823649 0.00824527 0.00825405 0.00826283 0.00827161 0.00828039 0.00828916 0.00829794 0.00830672 0.0083155 0.00832428 0.00833306 0.00834184 0.00835061 0.00835939 0.00836817 0.00837695 0.00838573 0.00839451 0.00840329 0.00841207 0.00842084 0.00842962 0.0084384 0.00844718 0.00845596 0.00846474 0.00847352 0.00848229 0.00849107 0.00849985 0.00850863 0.00851741 0.00852619 0.00853497 +-0.00195812 -0.00182643 -0.00154717 -0.000921555 6.03225E-05 0.00125081 0.00253497 0.00383808 0.00509241 0.00620228 0.00700702 0.00737613 0.00747076 0.0074936 0.00750448 0.00751357 0.0075224 0.00753119 0.00753998 0.00754877 0.00755755 0.00756634 0.00757512 0.00758391 0.00759269 0.00760148 0.00761027 0.00761905 0.00762784 0.00763662 0.00764541 0.00765419 0.00766298 0.00767176 0.00768055 0.00768934 0.00769812 0.00770691 0.00771569 0.00772448 0.00773326 0.00774205 0.00775084 0.00775962 0.00776841 0.00777719 0.00778598 0.00779476 0.00780355 0.00781233 0.00782112 0.00782991 0.00783869 0.00784748 0.00785626 0.00786505 0.00787383 0.00788262 0.00789141 0.00790019 0.00790898 0.00791776 0.00792655 0.00793533 0.00794412 0.0079529 0.00796169 0.00797048 0.00797926 0.00798805 0.00799683 0.00800562 0.0080144 0.00802319 0.00803197 0.00804076 0.00804955 0.00805833 0.00806712 0.0080759 0.00808469 0.00809347 0.00810226 0.00811105 0.00811983 0.00812862 0.0081374 0.00814619 0.00815497 0.00816376 0.00817254 0.00818133 0.00819012 0.0081989 0.00820769 0.00821647 0.00822526 0.00823404 0.00824283 0.00825162 0.0082604 0.00826919 0.00827797 0.00828676 0.00829554 0.00830433 0.00831312 0.0083219 0.00833069 0.00833947 0.00834826 0.00835704 0.00836583 0.00837461 0.0083834 0.00839219 0.00840097 0.00840976 0.00841854 0.00842733 0.00843611 0.0084449 0.00845369 0.00846247 0.00847126 0.00848004 0.00848883 0.00849761 0.0085064 0.00851518 0.00852397 0.00853276 0.00854154 +-0.00195989 -0.00182801 -0.00154829 -0.000921994 6.04043E-05 0.00125125 0.0025357 0.00383914 0.00509395 0.00620465 0.00701078 0.00738126 0.00747638 0.00749932 0.00751022 0.00751932 0.00752816 0.00753696 0.00754576 0.00755455 0.00756334 0.00757213 0.00758093 0.00758972 0.00759851 0.0076073 0.0076161 0.00762489 0.00763368 0.00764247 0.00765127 0.00766006 0.00766885 0.00767764 0.00768644 0.00769523 0.00770402 0.00771282 0.00772161 0.0077304 0.00773919 0.00774799 0.00775678 0.00776557 0.00777436 0.00778316 0.00779195 0.00780074 0.00780953 0.00781833 0.00782712 0.00783591 0.0078447 0.0078535 0.00786229 0.00787108 0.00787988 0.00788867 0.00789746 0.00790625 0.00791505 0.00792384 0.00793263 0.00794142 0.00795022 0.00795901 0.0079678 0.00797659 0.00798539 0.00799418 0.00800297 0.00801176 0.00802056 0.00802935 0.00803814 0.00804693 0.00805573 0.00806452 0.00807331 0.0080821 0.0080909 0.00809969 0.00810848 0.00811728 0.00812607 0.00813486 0.00814365 0.00815245 0.00816124 0.00817003 0.00817882 0.00818762 0.00819641 0.0082052 0.00821399 0.00822279 0.00823158 0.00824037 0.00824916 0.00825796 0.00826675 0.00827554 0.00828434 0.00829313 0.00830192 0.00831071 0.00831951 0.0083283 0.00833709 0.00834588 0.00835468 0.00836347 0.00837226 0.00838105 0.00838985 0.00839864 0.00840743 0.00841622 0.00842502 0.00843381 0.0084426 0.00845139 0.00846019 0.00846898 0.00847777 0.00848657 0.00849536 0.00850415 0.00851294 0.00852174 0.00853053 0.00853932 0.00854811 +-0.00196166 -0.00182959 -0.0015494 -0.000922433 6.04862E-05 0.00125168 0.00253643 0.0038402 0.00509549 0.00620701 0.00701454 0.00738639 0.00748201 0.00750505 0.00751597 0.00752508 0.00753392 0.00754273 0.00755153 0.00756033 0.00756913 0.00757793 0.00758673 0.00759553 0.00760433 0.00761312 0.00762192 0.00763072 0.00763952 0.00764832 0.00765712 0.00766592 0.00767472 0.00768352 0.00769232 0.00770112 0.00770992 0.00771872 0.00772752 0.00773632 0.00774512 0.00775392 0.00776272 0.00777152 0.00778032 0.00778912 0.00779792 0.00780672 0.00781552 0.00782432 0.00783312 0.00784192 0.00785071 0.00785951 0.00786831 0.00787711 0.00788591 0.00789471 0.00790351 0.00791231 0.00792111 0.00792991 0.00793871 0.00794751 0.00795631 0.00796511 0.00797391 0.00798271 0.00799151 0.00800031 0.00800911 0.00801791 0.00802671 0.00803551 0.00804431 0.00805311 0.0080619 0.0080707 0.0080795 0.0080883 0.0080971 0.0081059 0.0081147 0.0081235 0.0081323 0.0081411 0.0081499 0.0081587 0.0081675 0.0081763 0.0081851 0.0081939 0.0082027 0.0082115 0.0082203 0.0082291 0.0082379 0.0082467 0.0082555 0.0082643 0.0082731 0.0082819 0.00829069 0.00829949 0.00830829 0.00831709 0.00832589 0.00833469 0.00834349 0.00835229 0.00836109 0.00836989 0.00837869 0.00838749 0.00839629 0.00840509 0.00841389 0.00842269 0.00843149 0.00844029 0.00844909 0.00845789 0.00846669 0.00847549 0.00848429 0.00849309 0.00850189 0.00851069 0.00851949 0.00852828 0.00853708 0.00854588 0.00855468 +-0.00196343 -0.00183117 -0.00155052 -0.000922871 6.05681E-05 0.00125212 0.00253716 0.00384126 0.00509703 0.00620937 0.00701828 0.00739151 0.00748763 0.00751076 0.0075217 0.00753082 0.00753968 0.00754849 0.0075573 0.0075661 0.00757491 0.00758372 0.00759252 0.00760133 0.00761014 0.00761894 0.00762775 0.00763656 0.00764536 0.00765417 0.00766298 0.00767178 0.00768059 0.0076894 0.0076982 0.00770701 0.00771582 0.00772462 0.00773343 0.00774224 0.00775104 0.00775985 0.00776866 0.00777746 0.00778627 0.00779508 0.00780388 0.00781269 0.0078215 0.0078303 0.00783911 0.00784792 0.00785672 0.00786553 0.00787434 0.00788314 0.00789195 0.00790076 0.00790956 0.00791837 0.00792717 0.00793598 0.00794479 0.00795359 0.0079624 0.00797121 0.00798001 0.00798882 0.00799763 0.00800643 0.00801524 0.00802405 0.00803285 0.00804166 0.00805047 0.00805927 0.00806808 0.00807689 0.00808569 0.0080945 0.00810331 0.00811211 0.00812092 0.00812973 0.00813853 0.00814734 0.00815615 0.00816495 0.00817376 0.00818257 0.00819137 0.00820018 0.00820899 0.00821779 0.0082266 0.00823541 0.00824421 0.00825302 0.00826183 0.00827063 0.00827944 0.00828825 0.00829705 0.00830586 0.00831467 0.00832347 0.00833228 0.00834108 0.00834989 0.0083587 0.0083675 0.00837631 0.00838512 0.00839392 0.00840273 0.00841154 0.00842034 0.00842915 0.00843796 0.00844676 0.00845557 0.00846438 0.00847318 0.00848199 0.0084908 0.0084996 0.00850841 0.00851722 0.00852602 0.00853483 0.00854364 0.00855244 0.00856125 +-0.0019652 -0.00183275 -0.00155163 -0.000923308 6.065E-05 0.00125255 0.00253788 0.00384232 0.00509856 0.00621172 0.00702203 0.00739663 0.00749325 0.00751648 0.00752744 0.00753657 0.00754543 0.00755425 0.00756306 0.00757188 0.00758069 0.00758951 0.00759832 0.00760713 0.00761595 0.00762476 0.00763357 0.00764239 0.0076512 0.00766001 0.00766883 0.00767764 0.00768645 0.00769527 0.00770408 0.0077129 0.00772171 0.00773052 0.00773934 0.00774815 0.00775696 0.00776578 0.00777459 0.0077834 0.00779222 0.00780103 0.00780985 0.00781866 0.00782747 0.00783629 0.0078451 0.00785391 0.00786273 0.00787154 0.00788035 0.00788917 0.00789798 0.00790679 0.00791561 0.00792442 0.00793324 0.00794205 0.00795086 0.00795968 0.00796849 0.0079773 0.00798612 0.00799493 0.00800374 0.00801256 0.00802137 0.00803018 0.008039 0.00804781 0.00805663 0.00806544 0.00807425 0.00808307 0.00809188 0.00810069 0.00810951 0.00811832 0.00812713 0.00813595 0.00814476 0.00815357 0.00816239 0.0081712 0.00818002 0.00818883 0.00819764 0.00820646 0.00821527 0.00822408 0.0082329 0.00824171 0.00825052 0.00825934 0.00826815 0.00827697 0.00828578 0.00829459 0.00830341 0.00831222 0.00832103 0.00832985 0.00833866 0.00834747 0.00835629 0.0083651 0.00837391 0.00838273 0.00839154 0.00840036 0.00840917 0.00841798 0.0084268 0.00843561 0.00844442 0.00845324 0.00846205 0.00847086 0.00847968 0.00848849 0.00849731 0.00850612 0.00851493 0.00852375 0.00853256 0.00854137 0.00855019 0.008559 0.00856781 +-0.00196697 -0.00183433 -0.00155275 -0.000923745 6.07319E-05 0.00125298 0.00253861 0.00384338 0.00510009 0.00621406 0.00702576 0.00740174 0.00749887 0.00752219 0.00753318 0.00754231 0.00755118 0.00756001 0.00756883 0.00757765 0.00758647 0.00759529 0.00760411 0.00761293 0.00762175 0.00763057 0.00763939 0.00764821 0.00765704 0.00766586 0.00767468 0.0076835 0.00769232 0.00770114 0.00770996 0.00771878 0.0077276 0.00773642 0.00774524 0.00775406 0.00776288 0.0077717 0.00778052 0.00778934 0.00779816 0.00780698 0.00781581 0.00782463 0.00783345 0.00784227 0.00785109 0.00785991 0.00786873 0.00787755 0.00788637 0.00789519 0.00790401 0.00791283 0.00792165 0.00793047 0.00793929 0.00794811 0.00795693 0.00796576 0.00797458 0.0079834 0.00799222 0.00800104 0.00800986 0.00801868 0.0080275 0.00803632 0.00804514 0.00805396 0.00806278 0.0080716 0.00808042 0.00808924 0.00809806 0.00810688 0.0081157 0.00812453 0.00813335 0.00814217 0.00815099 0.00815981 0.00816863 0.00817745 0.00818627 0.00819509 0.00820391 0.00821273 0.00822155 0.00823037 0.00823919 0.00824801 0.00825683 0.00826565 0.00827448 0.0082833 0.00829212 0.00830094 0.00830976 0.00831858 0.0083274 0.00833622 0.00834504 0.00835386 0.00836268 0.0083715 0.00838032 0.00838914 0.00839796 0.00840678 0.0084156 0.00842443 0.00843325 0.00844207 0.00845089 0.00845971 0.00846853 0.00847735 0.00848617 0.00849499 0.00850381 0.00851263 0.00852145 0.00853027 0.00853909 0.00854791 0.00855673 0.00856555 0.00857437 +-0.00196874 -0.0018359 -0.00155386 -0.000924181 6.08138E-05 0.00125342 0.00253934 0.00384443 0.00510162 0.00621641 0.00702949 0.00740685 0.00750448 0.0075279 0.00753891 0.00754805 0.00755693 0.00756576 0.00757459 0.00758342 0.00759225 0.00760107 0.0076099 0.00761873 0.00762756 0.00763638 0.00764521 0.00765404 0.00766287 0.00767169 0.00768052 0.00768935 0.00769818 0.007707 0.00771583 0.00772466 0.00773349 0.00774232 0.00775114 0.00775997 0.0077688 0.00777763 0.00778645 0.00779528 0.00780411 0.00781294 0.00782176 0.00783059 0.00783942 0.00784825 0.00785707 0.0078659 0.00787473 0.00788356 0.00789238 0.00790121 0.00791004 0.00791887 0.00792769 0.00793652 0.00794535 0.00795418 0.007963 0.00797183 0.00798066 0.00798949 0.00799831 0.00800714 0.00801597 0.0080248 0.00803362 0.00804245 0.00805128 0.00806011 0.00806893 0.00807776 0.00808659 0.00809542 0.00810424 0.00811307 0.0081219 0.00813073 0.00813955 0.00814838 0.00815721 0.00816604 0.00817486 0.00818369 0.00819252 0.00820135 0.00821018 0.008219 0.00822783 0.00823666 0.00824549 0.00825431 0.00826314 0.00827197 0.0082808 0.00828962 0.00829845 0.00830728 0.00831611 0.00832493 0.00833376 0.00834259 0.00835142 0.00836024 0.00836907 0.0083779 0.00838673 0.00839555 0.00840438 0.00841321 0.00842204 0.00843086 0.00843969 0.00844852 0.00845735 0.00846617 0.008475 0.00848383 0.00849266 0.00850148 0.00851031 0.00851914 0.00852797 0.0085368 0.00854562 0.00855445 0.00856328 0.00857211 0.00858093 +-0.00197051 -0.00183748 -0.00155497 -0.000924617 6.08957E-05 0.00125385 0.00254006 0.00384549 0.00510315 0.00621874 0.00703321 0.00741195 0.00751009 0.00753361 0.00754464 0.00755379 0.00756267 0.00757152 0.00758035 0.00758919 0.00759802 0.00760685 0.00761569 0.00762452 0.00763336 0.00764219 0.00765103 0.00765986 0.0076687 0.00767753 0.00768637 0.0076952 0.00770403 0.00771287 0.0077217 0.00773054 0.00773937 0.00774821 0.00775704 0.00776588 0.00777471 0.00778355 0.00779238 0.00780121 0.00781005 0.00781888 0.00782772 0.00783655 0.00784539 0.00785422 0.00786306 0.00787189 0.00788073 0.00788956 0.00789839 0.00790723 0.00791606 0.0079249 0.00793373 0.00794257 0.0079514 0.00796024 0.00796907 0.00797791 0.00798674 0.00799557 0.00800441 0.00801324 0.00802208 0.00803091 0.00803975 0.00804858 0.00805742 0.00806625 0.00807508 0.00808392 0.00809275 0.00810159 0.00811042 0.00811926 0.00812809 0.00813693 0.00814576 0.0081546 0.00816343 0.00817226 0.0081811 0.00818993 0.00819877 0.0082076 0.00821644 0.00822527 0.00823411 0.00824294 0.00825178 0.00826061 0.00826944 0.00827828 0.00828711 0.00829595 0.00830478 0.00831362 0.00832245 0.00833129 0.00834012 0.00834896 0.00835779 0.00836662 0.00837546 0.00838429 0.00839313 0.00840196 0.0084108 0.00841963 0.00842847 0.0084373 0.00844614 0.00845497 0.0084638 0.00847264 0.00848147 0.00849031 0.00849914 0.00850798 0.00851681 0.00852565 0.00853448 0.00854332 0.00855215 0.00856098 0.00856982 0.00857865 0.00858749 +-0.00197228 -0.00183905 -0.00155608 -0.000925052 6.09776E-05 0.00125428 0.00254079 0.00384654 0.00510468 0.00622108 0.00703692 0.00741705 0.00751569 0.00753932 0.00755036 0.00755953 0.00756842 0.00757727 0.00758611 0.00759495 0.00760379 0.00761263 0.00762147 0.00763032 0.00763916 0.007648 0.00765684 0.00766568 0.00767452 0.00768336 0.00769221 0.00770105 0.00770989 0.00771873 0.00772757 0.00773641 0.00774526 0.0077541 0.00776294 0.00777178 0.00778062 0.00778946 0.0077983 0.00780715 0.00781599 0.00782483 0.00783367 0.00784251 0.00785135 0.00786019 0.00786904 0.00787788 0.00788672 0.00789556 0.0079044 0.00791324 0.00792209 0.00793093 0.00793977 0.00794861 0.00795745 0.00796629 0.00797513 0.00798398 0.00799282 0.00800166 0.0080105 0.00801934 0.00802818 0.00803702 0.00804587 0.00805471 0.00806355 0.00807239 0.00808123 0.00809007 0.00809892 0.00810776 0.0081166 0.00812544 0.00813428 0.00814312 0.00815196 0.00816081 0.00816965 0.00817849 0.00818733 0.00819617 0.00820501 0.00821385 0.0082227 0.00823154 0.00824038 0.00824922 0.00825806 0.0082669 0.00827575 0.00828459 0.00829343 0.00830227 0.00831111 0.00831995 0.00832879 0.00833764 0.00834648 0.00835532 0.00836416 0.008373 0.00838184 0.00839069 0.00839953 0.00840837 0.00841721 0.00842605 0.00843489 0.00844373 0.00845258 0.00846142 0.00847026 0.0084791 0.00848794 0.00849678 0.00850563 0.00851447 0.00852331 0.00853215 0.00854099 0.00854983 0.00855867 0.00856752 0.00857636 0.0085852 0.00859404 +-0.00197404 -0.00184063 -0.00155719 -0.000925486 6.10596E-05 0.00125471 0.00254151 0.00384759 0.0051062 0.00622341 0.00704063 0.00742214 0.0075213 0.00754502 0.00755609 0.00756526 0.00757416 0.00758301 0.00759186 0.00760071 0.00760956 0.00761841 0.00762726 0.0076361 0.00764495 0.0076538 0.00766265 0.0076715 0.00768035 0.0076892 0.00769804 0.00770689 0.00771574 0.00772459 0.00773344 0.00774229 0.00775114 0.00775998 0.00776883 0.00777768 0.00778653 0.00779538 0.00780423 0.00781307 0.00782192 0.00783077 0.00783962 0.00784847 0.00785732 0.00786617 0.00787501 0.00788386 0.00789271 0.00790156 0.00791041 0.00791926 0.0079281 0.00793695 0.0079458 0.00795465 0.0079635 0.00797235 0.0079812 0.00799004 0.00799889 0.00800774 0.00801659 0.00802544 0.00803429 0.00804313 0.00805198 0.00806083 0.00806968 0.00807853 0.00808738 0.00809623 0.00810507 0.00811392 0.00812277 0.00813162 0.00814047 0.00814932 0.00815817 0.00816701 0.00817586 0.00818471 0.00819356 0.00820241 0.00821126 0.0082201 0.00822895 0.0082378 0.00824665 0.0082555 0.00826435 0.0082732 0.00828204 0.00829089 0.00829974 0.00830859 0.00831744 0.00832629 0.00833513 0.00834398 0.00835283 0.00836168 0.00837053 0.00837938 0.00838823 0.00839707 0.00840592 0.00841477 0.00842362 0.00843247 0.00844132 0.00845017 0.00845901 0.00846786 0.00847671 0.00848556 0.00849441 0.00850326 0.0085121 0.00852095 0.0085298 0.00853865 0.0085475 0.00855635 0.0085652 0.00857404 0.00858289 0.00859174 0.00860059 +-0.00197581 -0.0018422 -0.0015583 -0.00092592 6.11416E-05 0.00125514 0.00254224 0.00384864 0.00510772 0.00622573 0.00704433 0.00742722 0.0075269 0.00755072 0.00756181 0.00757099 0.00757989 0.00758876 0.00759761 0.00760647 0.00761532 0.00762418 0.00763304 0.00764189 0.00765075 0.0076596 0.00766846 0.00767731 0.00768617 0.00769502 0.00770388 0.00771274 0.00772159 0.00773045 0.0077393 0.00774816 0.00775701 0.00776587 0.00777472 0.00778358 0.00779243 0.00780129 0.00781015 0.007819 0.00782786 0.00783671 0.00784557 0.00785442 0.00786328 0.00787213 0.00788099 0.00788984 0.0078987 0.00790756 0.00791641 0.00792527 0.00793412 0.00794298 0.00795183 0.00796069 0.00796954 0.0079784 0.00798725 0.00799611 0.00800497 0.00801382 0.00802268 0.00803153 0.00804039 0.00804924 0.0080581 0.00806695 0.00807581 0.00808466 0.00809352 0.00810237 0.00811123 0.00812009 0.00812894 0.0081378 0.00814665 0.00815551 0.00816436 0.00817322 0.00818207 0.00819093 0.00819978 0.00820864 0.0082175 0.00822635 0.00823521 0.00824406 0.00825292 0.00826177 0.00827063 0.00827948 0.00828834 0.00829719 0.00830605 0.00831491 0.00832376 0.00833262 0.00834147 0.00835033 0.00835918 0.00836804 0.00837689 0.00838575 0.00839461 0.00840346 0.00841232 0.00842117 0.00843003 0.00843888 0.00844774 0.00845659 0.00846545 0.0084743 0.00848316 0.00849202 0.00850087 0.00850973 0.00851858 0.00852744 0.00853629 0.00854515 0.008554 0.00856286 0.00857171 0.00858057 0.00858943 0.00859828 0.00860714 +-0.00197758 -0.00184378 -0.00155941 -0.000926353 6.12236E-05 0.00125557 0.00254296 0.00384969 0.00510923 0.00622805 0.00704802 0.0074323 0.00753249 0.00755642 0.00756753 0.00757672 0.00758563 0.0075945 0.00760336 0.00761223 0.00762109 0.00762995 0.00763881 0.00764768 0.00765654 0.0076654 0.00767426 0.00768313 0.00769199 0.00770085 0.00770971 0.00771857 0.00772744 0.0077363 0.00774516 0.00775402 0.00776289 0.00777175 0.00778061 0.00778947 0.00779834 0.0078072 0.00781606 0.00782492 0.00783379 0.00784265 0.00785151 0.00786037 0.00786924 0.0078781 0.00788696 0.00789582 0.00790469 0.00791355 0.00792241 0.00793127 0.00794014 0.007949 0.00795786 0.00796672 0.00797559 0.00798445 0.00799331 0.00800217 0.00801104 0.0080199 0.00802876 0.00803762 0.00804648 0.00805535 0.00806421 0.00807307 0.00808193 0.0080908 0.00809966 0.00810852 0.00811738 0.00812625 0.00813511 0.00814397 0.00815283 0.0081617 0.00817056 0.00817942 0.00818828 0.00819715 0.00820601 0.00821487 0.00822373 0.0082326 0.00824146 0.00825032 0.00825918 0.00826804 0.00827691 0.00828577 0.00829463 0.00830349 0.00831236 0.00832122 0.00833008 0.00833894 0.00834781 0.00835667 0.00836553 0.00837439 0.00838326 0.00839212 0.00840098 0.00840984 0.00841871 0.00842757 0.00843643 0.00844529 0.00845416 0.00846302 0.00847188 0.00848074 0.00848961 0.00849847 0.00850733 0.00851619 0.00852506 0.00853392 0.00854278 0.00855164 0.00856051 0.00856937 0.00857823 0.00858709 0.00859595 0.00860482 0.00861368 +-0.00197934 -0.00184535 -0.00156052 -0.000926785 6.13056E-05 0.001256 0.00254368 0.00385074 0.00511075 0.00623037 0.00705171 0.00743738 0.00753809 0.00756211 0.00757324 0.00758245 0.00759136 0.00760024 0.00760911 0.00761798 0.00762685 0.00763572 0.00764459 0.00765346 0.00766233 0.0076712 0.00768007 0.00768893 0.0076978 0.00770667 0.00771554 0.00772441 0.00773328 0.00774215 0.00775102 0.00775989 0.00776876 0.00777763 0.0077865 0.00779537 0.00780424 0.00781311 0.00782198 0.00783085 0.00783971 0.00784858 0.00785745 0.00786632 0.00787519 0.00788406 0.00789293 0.0079018 0.00791067 0.00791954 0.00792841 0.00793728 0.00794615 0.00795502 0.00796389 0.00797276 0.00798162 0.00799049 0.00799936 0.00800823 0.0080171 0.00802597 0.00803484 0.00804371 0.00805258 0.00806145 0.00807032 0.00807919 0.00808806 0.00809693 0.0081058 0.00811466 0.00812353 0.0081324 0.00814127 0.00815014 0.00815901 0.00816788 0.00817675 0.00818562 0.00819449 0.00820336 0.00821223 0.0082211 0.00822997 0.00823884 0.00824771 0.00825658 0.00826544 0.00827431 0.00828318 0.00829205 0.00830092 0.00830979 0.00831866 0.00832753 0.0083364 0.00834527 0.00835414 0.00836301 0.00837188 0.00838075 0.00838962 0.00839849 0.00840736 0.00841622 0.00842509 0.00843396 0.00844283 0.0084517 0.00846057 0.00846944 0.00847831 0.00848718 0.00849605 0.00850492 0.00851379 0.00852266 0.00853153 0.0085404 0.00854927 0.00855813 0.008567 0.00857587 0.00858474 0.00859361 0.00860248 0.00861135 0.00862022 +-0.00198111 -0.00184692 -0.00156162 -0.000927217 6.13876E-05 0.00125643 0.0025444 0.00385179 0.00511226 0.00623268 0.00705539 0.00744245 0.00754368 0.00756781 0.00757896 0.00758817 0.00759709 0.00760598 0.00761485 0.00762373 0.00763261 0.00764148 0.00765036 0.00765924 0.00766811 0.00767699 0.00768587 0.00769474 0.00770362 0.00771249 0.00772137 0.00773025 0.00773912 0.007748 0.00775688 0.00776575 0.00777463 0.00778351 0.00779238 0.00780126 0.00781013 0.00781901 0.00782789 0.00783676 0.00784564 0.00785452 0.00786339 0.00787227 0.00788115 0.00789002 0.0078989 0.00790777 0.00791665 0.00792553 0.0079344 0.00794328 0.00795216 0.00796103 0.00796991 0.00797879 0.00798766 0.00799654 0.00800541 0.00801429 0.00802317 0.00803204 0.00804092 0.0080498 0.00805867 0.00806755 0.00807642 0.0080853 0.00809418 0.00810305 0.00811193 0.00812081 0.00812968 0.00813856 0.00814744 0.00815631 0.00816519 0.00817406 0.00818294 0.00819182 0.00820069 0.00820957 0.00821845 0.00822732 0.0082362 0.00824507 0.00825395 0.00826283 0.0082717 0.00828058 0.00828946 0.00829833 0.00830721 0.00831609 0.00832496 0.00833384 0.00834271 0.00835159 0.00836047 0.00836934 0.00837822 0.0083871 0.00839597 0.00840485 0.00841373 0.0084226 0.00843148 0.00844035 0.00844923 0.00845811 0.00846698 0.00847586 0.00848474 0.00849361 0.00850249 0.00851137 0.00852024 0.00852912 0.00853799 0.00854687 0.00855575 0.00856462 0.0085735 0.00858238 0.00859125 0.00860013 0.00860901 0.00861788 0.00862676 +-0.00198287 -0.00184849 -0.00156273 -0.000927648 6.14696E-05 0.00125686 0.00254512 0.00385283 0.00511377 0.00623498 0.00705906 0.00744751 0.00754926 0.0075735 0.00758467 0.00759389 0.00760282 0.00761171 0.0076206 0.00762948 0.00763836 0.00764725 0.00765613 0.00766501 0.0076739 0.00768278 0.00769166 0.00770055 0.00770943 0.00771831 0.0077272 0.00773608 0.00774496 0.00775385 0.00776273 0.00777161 0.0077805 0.00778938 0.00779826 0.00780715 0.00781603 0.00782491 0.0078338 0.00784268 0.00785156 0.00786045 0.00786933 0.00787821 0.0078871 0.00789598 0.00790486 0.00791375 0.00792263 0.00793151 0.0079404 0.00794928 0.00795816 0.00796705 0.00797593 0.00798481 0.0079937 0.00800258 0.00801146 0.00802035 0.00802923 0.00803811 0.00804699 0.00805588 0.00806476 0.00807364 0.00808253 0.00809141 0.00810029 0.00810918 0.00811806 0.00812694 0.00813583 0.00814471 0.00815359 0.00816248 0.00817136 0.00818024 0.00818913 0.00819801 0.00820689 0.00821578 0.00822466 0.00823354 0.00824243 0.00825131 0.00826019 0.00826908 0.00827796 0.00828684 0.00829573 0.00830461 0.00831349 0.00832238 0.00833126 0.00834014 0.00834903 0.00835791 0.00836679 0.00837568 0.00838456 0.00839344 0.00840233 0.00841121 0.00842009 0.00842898 0.00843786 0.00844674 0.00845563 0.00846451 0.00847339 0.00848228 0.00849116 0.00850004 0.00850893 0.00851781 0.00852669 0.00853558 0.00854446 0.00855334 0.00856223 0.00857111 0.00857999 0.00858888 0.00859776 0.00860664 0.00861553 0.00862441 0.00863329 +-0.00198464 -0.00185006 -0.00156383 -0.000928078 6.15517E-05 0.00125729 0.00254584 0.00385387 0.00511528 0.00623729 0.00706273 0.00745257 0.00755485 0.00757918 0.00759038 0.00759961 0.00760855 0.00761744 0.00762633 0.00763523 0.00764412 0.00765301 0.0076619 0.00767079 0.00767968 0.00768857 0.00769746 0.00770635 0.00771524 0.00772413 0.00773302 0.00774191 0.0077508 0.00775969 0.00776858 0.00777747 0.00778636 0.00779525 0.00780414 0.00781303 0.00782192 0.00783081 0.0078397 0.00784859 0.00785748 0.00786637 0.00787526 0.00788415 0.00789304 0.00790193 0.00791082 0.00791971 0.0079286 0.00793749 0.00794639 0.00795528 0.00796417 0.00797306 0.00798195 0.00799084 0.00799973 0.00800862 0.00801751 0.0080264 0.00803529 0.00804418 0.00805307 0.00806196 0.00807085 0.00807974 0.00808863 0.00809752 0.00810641 0.0081153 0.00812419 0.00813308 0.00814197 0.00815086 0.00815975 0.00816864 0.00817753 0.00818642 0.00819531 0.0082042 0.00821309 0.00822198 0.00823087 0.00823976 0.00824865 0.00825754 0.00826643 0.00827532 0.00828421 0.0082931 0.008302 0.00831089 0.00831978 0.00832867 0.00833756 0.00834645 0.00835534 0.00836423 0.00837312 0.00838201 0.0083909 0.00839979 0.00840868 0.00841757 0.00842646 0.00843535 0.00844424 0.00845313 0.00846202 0.00847091 0.0084798 0.00848869 0.00849758 0.00850647 0.00851536 0.00852425 0.00853314 0.00854203 0.00855092 0.00855981 0.0085687 0.00857759 0.00858648 0.00859537 0.00860426 0.00861315 0.00862205 0.00863094 0.00863983 +-0.0019864 -0.00185163 -0.00156493 -0.000928508 6.16337E-05 0.00125771 0.00254656 0.00385491 0.00511678 0.00623958 0.00706639 0.00745763 0.00756043 0.00758487 0.00759608 0.00760532 0.00761427 0.00762317 0.00763207 0.00764097 0.00764987 0.00765876 0.00766766 0.00767656 0.00768546 0.00769435 0.00770325 0.00771215 0.00772104 0.00772994 0.00773884 0.00774774 0.00775663 0.00776553 0.00777443 0.00778332 0.00779222 0.00780112 0.00781002 0.00781891 0.00782781 0.00783671 0.00784561 0.0078545 0.0078634 0.0078723 0.00788119 0.00789009 0.00789899 0.00790789 0.00791678 0.00792568 0.00793458 0.00794347 0.00795237 0.00796127 0.00797017 0.00797906 0.00798796 0.00799686 0.00800576 0.00801465 0.00802355 0.00803245 0.00804134 0.00805024 0.00805914 0.00806804 0.00807693 0.00808583 0.00809473 0.00810362 0.00811252 0.00812142 0.00813032 0.00813921 0.00814811 0.00815701 0.0081659 0.0081748 0.0081837 0.0081926 0.00820149 0.00821039 0.00821929 0.00822819 0.00823708 0.00824598 0.00825488 0.00826377 0.00827267 0.00828157 0.00829047 0.00829936 0.00830826 0.00831716 0.00832605 0.00833495 0.00834385 0.00835275 0.00836164 0.00837054 0.00837944 0.00838834 0.00839723 0.00840613 0.00841503 0.00842392 0.00843282 0.00844172 0.00845062 0.00845951 0.00846841 0.00847731 0.0084862 0.0084951 0.008504 0.0085129 0.00852179 0.00853069 0.00853959 0.00854849 0.00855738 0.00856628 0.00857518 0.00858407 0.00859297 0.00860187 0.00861077 0.00861966 0.00862856 0.00863746 0.00864635 +-0.00198816 -0.0018532 -0.00156603 -0.000928937 6.17158E-05 0.00125814 0.00254727 0.00385595 0.00511828 0.00624188 0.00707004 0.00746268 0.00756601 0.00759055 0.00760179 0.00761103 0.00761999 0.0076289 0.00763781 0.00764671 0.00765561 0.00766452 0.00767342 0.00768233 0.00769123 0.00770014 0.00770904 0.00771794 0.00772685 0.00773575 0.00774466 0.00775356 0.00776246 0.00777137 0.00778027 0.00778918 0.00779808 0.00780699 0.00781589 0.00782479 0.0078337 0.0078426 0.00785151 0.00786041 0.00786931 0.00787822 0.00788712 0.00789603 0.00790493 0.00791384 0.00792274 0.00793164 0.00794055 0.00794945 0.00795836 0.00796726 0.00797616 0.00798507 0.00799397 0.00800288 0.00801178 0.00802069 0.00802959 0.00803849 0.0080474 0.0080563 0.00806521 0.00807411 0.00808301 0.00809192 0.00810082 0.00810973 0.00811863 0.00812753 0.00813644 0.00814534 0.00815425 0.00816315 0.00817206 0.00818096 0.00818986 0.00819877 0.00820767 0.00821658 0.00822548 0.00823438 0.00824329 0.00825219 0.0082611 0.00827 0.00827891 0.00828781 0.00829671 0.00830562 0.00831452 0.00832343 0.00833233 0.00834124 0.00835014 0.00835904 0.00836795 0.00837685 0.00838576 0.00839466 0.00840356 0.00841247 0.00842137 0.00843028 0.00843918 0.00844809 0.00845699 0.00846589 0.0084748 0.0084837 0.00849261 0.00850151 0.00851041 0.00851932 0.00852822 0.00853713 0.00854603 0.00855494 0.00856384 0.00857274 0.00858165 0.00859055 0.00859946 0.00860836 0.00861726 0.00862617 0.00863507 0.00864398 0.00865288 +-0.00198992 -0.00185477 -0.00156714 -0.000929365 6.17979E-05 0.00125857 0.00254799 0.00385699 0.00511978 0.00624417 0.00707369 0.00746772 0.00757158 0.00759623 0.00760749 0.00761674 0.00762571 0.00763462 0.00764354 0.00765245 0.00766136 0.00767027 0.00767918 0.00768809 0.007697 0.00770592 0.00771483 0.00772374 0.00773265 0.00774156 0.00775047 0.00775938 0.00776829 0.0077772 0.00778612 0.00779503 0.00780394 0.00781285 0.00782176 0.00783067 0.00783958 0.00784849 0.0078574 0.00786632 0.00787523 0.00788414 0.00789305 0.00790196 0.00791087 0.00791978 0.00792869 0.0079376 0.00794652 0.00795543 0.00796434 0.00797325 0.00798216 0.00799107 0.00799998 0.00800889 0.0080178 0.00802672 0.00803563 0.00804454 0.00805345 0.00806236 0.00807127 0.00808018 0.00808909 0.008098 0.00810692 0.00811583 0.00812474 0.00813365 0.00814256 0.00815147 0.00816038 0.00816929 0.0081782 0.00818712 0.00819603 0.00820494 0.00821385 0.00822276 0.00823167 0.00824058 0.00824949 0.0082584 0.00826732 0.00827623 0.00828514 0.00829405 0.00830296 0.00831187 0.00832078 0.00832969 0.0083386 0.00834752 0.00835643 0.00836534 0.00837425 0.00838316 0.00839207 0.00840098 0.00840989 0.0084188 0.00842772 0.00843663 0.00844554 0.00845445 0.00846336 0.00847227 0.00848118 0.00849009 0.008499 0.00850792 0.00851683 0.00852574 0.00853465 0.00854356 0.00855247 0.00856138 0.00857029 0.0085792 0.00858812 0.00859703 0.00860594 0.00861485 0.00862376 0.00863267 0.00864158 0.00865049 0.00865941 +-0.00199169 -0.00185634 -0.00156823 -0.000929793 6.188E-05 0.00125899 0.0025487 0.00385803 0.00512128 0.00624645 0.00707733 0.00747276 0.00757715 0.00760191 0.00761319 0.00762245 0.00763142 0.00764035 0.00764927 0.00765818 0.0076671 0.00767602 0.00768494 0.00769386 0.00770277 0.00771169 0.00772061 0.00772953 0.00773845 0.00774737 0.00775628 0.0077652 0.00777412 0.00778304 0.00779196 0.00780087 0.00780979 0.00781871 0.00782763 0.00783655 0.00784546 0.00785438 0.0078633 0.00787222 0.00788114 0.00789005 0.00789897 0.00790789 0.00791681 0.00792573 0.00793464 0.00794356 0.00795248 0.0079614 0.00797032 0.00797924 0.00798815 0.00799707 0.00800599 0.00801491 0.00802383 0.00803274 0.00804166 0.00805058 0.0080595 0.00806841 0.00807733 0.00808625 0.00809517 0.00810409 0.00811301 0.00812192 0.00813084 0.00813976 0.00814868 0.0081576 0.00816651 0.00817543 0.00818435 0.00819327 0.00820219 0.0082111 0.00822002 0.00822894 0.00823786 0.00824678 0.00825569 0.00826461 0.00827353 0.00828245 0.00829137 0.00830028 0.0083092 0.00831812 0.00832704 0.00833596 0.00834488 0.00835379 0.00836271 0.00837163 0.00838055 0.00838947 0.00839838 0.0084073 0.00841622 0.00842514 0.00843406 0.00844297 0.00845189 0.00846081 0.00846973 0.00847865 0.00848756 0.00849648 0.0085054 0.00851432 0.00852324 0.00853215 0.00854107 0.00854999 0.00855891 0.00856783 0.00857675 0.00858566 0.00859458 0.0086035 0.00861242 0.00862134 0.00863025 0.00863917 0.00864809 0.00865701 0.00866593 +-0.00199345 -0.00185791 -0.00156933 -0.00093022 6.19621E-05 0.00125942 0.00254942 0.00385907 0.00512278 0.00624873 0.00708096 0.00747779 0.00758272 0.00760758 0.00761888 0.00762816 0.00763713 0.00764607 0.00765499 0.00766392 0.00767284 0.00768177 0.00769069 0.00769962 0.00770854 0.00771747 0.00772639 0.00773532 0.00774424 0.00775317 0.00776209 0.00777102 0.00777994 0.00778887 0.00779779 0.00780672 0.00781564 0.00782457 0.00783349 0.00784242 0.00785134 0.00786027 0.00786919 0.00787812 0.00788704 0.00789597 0.00790489 0.00791382 0.00792274 0.00793167 0.00794059 0.00794952 0.00795844 0.00796737 0.00797629 0.00798522 0.00799414 0.00800307 0.00801199 0.00802092 0.00802984 0.00803877 0.00804769 0.00805662 0.00806554 0.00807447 0.00808339 0.00809232 0.00810124 0.00811017 0.00811909 0.00812802 0.00813694 0.00814587 0.00815479 0.00816372 0.00817264 0.00818157 0.00819049 0.00819942 0.00820834 0.00821727 0.00822619 0.00823512 0.00824404 0.00825297 0.00826189 0.00827082 0.00827974 0.00828867 0.00829759 0.00830652 0.00831544 0.00832437 0.00833329 0.00834222 0.00835114 0.00836007 0.00836899 0.00837792 0.00838684 0.00839577 0.00840469 0.00841362 0.00842254 0.00843147 0.00844039 0.00844932 0.00845824 0.00846717 0.00847609 0.00848502 0.00849394 0.00850287 0.00851179 0.00852072 0.00852964 0.00853857 0.00854749 0.00855642 0.00856534 0.00857427 0.00858319 0.00859212 0.00860104 0.00860997 0.00861889 0.00862782 0.00863674 0.00864567 0.00865459 0.00866352 0.00867244 +-0.00199521 -0.00185947 -0.00157043 -0.000930647 6.20442E-05 0.00125985 0.00255013 0.0038601 0.00512427 0.00625101 0.00708458 0.00748282 0.00758829 0.00761325 0.00762458 0.00763386 0.00764284 0.00765178 0.00766072 0.00766965 0.00767858 0.00768751 0.00769644 0.00770538 0.00771431 0.00772324 0.00773217 0.0077411 0.00775004 0.00775897 0.0077679 0.00777683 0.00778576 0.0077947 0.00780363 0.00781256 0.00782149 0.00783042 0.00783936 0.00784829 0.00785722 0.00786615 0.00787508 0.00788402 0.00789295 0.00790188 0.00791081 0.00791974 0.00792868 0.00793761 0.00794654 0.00795547 0.0079644 0.00797334 0.00798227 0.0079912 0.00800013 0.00800906 0.008018 0.00802693 0.00803586 0.00804479 0.00805372 0.00806265 0.00807159 0.00808052 0.00808945 0.00809838 0.00810731 0.00811625 0.00812518 0.00813411 0.00814304 0.00815197 0.00816091 0.00816984 0.00817877 0.0081877 0.00819663 0.00820557 0.0082145 0.00822343 0.00823236 0.00824129 0.00825022 0.00825916 0.00826809 0.00827702 0.00828595 0.00829488 0.00830382 0.00831275 0.00832168 0.00833061 0.00833954 0.00834848 0.00835741 0.00836634 0.00837527 0.0083842 0.00839314 0.00840207 0.008411 0.00841993 0.00842886 0.0084378 0.00844673 0.00845566 0.00846459 0.00847352 0.00848246 0.00849139 0.00850032 0.00850925 0.00851818 0.00852712 0.00853605 0.00854498 0.00855391 0.00856284 0.00857178 0.00858071 0.00858964 0.00859857 0.0086075 0.00861644 0.00862537 0.0086343 0.00864323 0.00865216 0.00866109 0.00867003 0.00867896 +-0.00199697 -0.00186104 -0.00157153 -0.000931073 6.21263E-05 0.00126027 0.00255084 0.00386113 0.00512576 0.00625328 0.0070882 0.00748784 0.00759385 0.00761892 0.00763027 0.00763956 0.00764855 0.0076575 0.00766644 0.00767538 0.00768432 0.00769326 0.00770219 0.00771113 0.00772007 0.00772901 0.00773795 0.00774689 0.00775583 0.00776477 0.00777371 0.00778264 0.00779158 0.00780052 0.00780946 0.0078184 0.00782734 0.00783628 0.00784522 0.00785416 0.00786309 0.00787203 0.00788097 0.00788991 0.00789885 0.00790779 0.00791673 0.00792567 0.00793461 0.00794354 0.00795248 0.00796142 0.00797036 0.0079793 0.00798824 0.00799718 0.00800612 0.00801506 0.00802399 0.00803293 0.00804187 0.00805081 0.00805975 0.00806869 0.00807763 0.00808657 0.0080955 0.00810444 0.00811338 0.00812232 0.00813126 0.0081402 0.00814914 0.00815808 0.00816702 0.00817595 0.00818489 0.00819383 0.00820277 0.00821171 0.00822065 0.00822959 0.00823853 0.00824747 0.0082564 0.00826534 0.00827428 0.00828322 0.00829216 0.0083011 0.00831004 0.00831898 0.00832792 0.00833685 0.00834579 0.00835473 0.00836367 0.00837261 0.00838155 0.00839049 0.00839943 0.00840837 0.0084173 0.00842624 0.00843518 0.00844412 0.00845306 0.008462 0.00847094 0.00847988 0.00848882 0.00849775 0.00850669 0.00851563 0.00852457 0.00853351 0.00854245 0.00855139 0.00856033 0.00856927 0.0085782 0.00858714 0.00859608 0.00860502 0.00861396 0.0086229 0.00863184 0.00864078 0.00864972 0.00865865 0.00866759 0.00867653 0.00868547 +-0.00199873 -0.0018626 -0.00157262 -0.000931498 6.22085E-05 0.0012607 0.00255156 0.00386216 0.00512725 0.00625555 0.00709182 0.00749285 0.00759941 0.00762459 0.00763596 0.00764526 0.00765426 0.00766321 0.00767216 0.0076811 0.00769005 0.00769899 0.00770794 0.00771689 0.00772583 0.00773478 0.00774372 0.00775267 0.00776162 0.00777056 0.00777951 0.00778845 0.0077974 0.00780634 0.00781529 0.00782424 0.00783318 0.00784213 0.00785107 0.00786002 0.00786897 0.00787791 0.00788686 0.0078958 0.00790475 0.00791369 0.00792264 0.00793159 0.00794053 0.00794948 0.00795842 0.00796737 0.00797632 0.00798526 0.00799421 0.00800315 0.0080121 0.00802104 0.00802999 0.00803894 0.00804788 0.00805683 0.00806577 0.00807472 0.00808366 0.00809261 0.00810156 0.0081105 0.00811945 0.00812839 0.00813734 0.00814629 0.00815523 0.00816418 0.00817312 0.00818207 0.00819101 0.00819996 0.00820891 0.00821785 0.0082268 0.00823574 0.00824469 0.00825363 0.00826258 0.00827153 0.00828047 0.00828942 0.00829836 0.00830731 0.00831626 0.0083252 0.00833415 0.00834309 0.00835204 0.00836098 0.00836993 0.00837888 0.00838782 0.00839677 0.00840571 0.00841466 0.00842361 0.00843255 0.0084415 0.00845044 0.00845939 0.00846833 0.00847728 0.00848623 0.00849517 0.00850412 0.00851306 0.00852201 0.00853096 0.0085399 0.00854885 0.00855779 0.00856674 0.00857568 0.00858463 0.00859358 0.00860252 0.00861147 0.00862041 0.00862936 0.00863831 0.00864725 0.0086562 0.00866514 0.00867409 0.00868303 0.00869198 +-0.00200049 -0.00186417 -0.00157372 -0.000931923 6.22907E-05 0.00126112 0.00255227 0.00386319 0.00512873 0.00625781 0.00709542 0.00749786 0.00760496 0.00763025 0.00764164 0.00765095 0.00765996 0.00766892 0.00767787 0.00768683 0.00769578 0.00770473 0.00771368 0.00772264 0.00773159 0.00774054 0.0077495 0.00775845 0.0077674 0.00777635 0.00778531 0.00779426 0.00780321 0.00781217 0.00782112 0.00783007 0.00783902 0.00784798 0.00785693 0.00786588 0.00787483 0.00788379 0.00789274 0.00790169 0.00791065 0.0079196 0.00792855 0.0079375 0.00794646 0.00795541 0.00796436 0.00797331 0.00798227 0.00799122 0.00800017 0.00800913 0.00801808 0.00802703 0.00803598 0.00804494 0.00805389 0.00806284 0.0080718 0.00808075 0.0080897 0.00809865 0.00810761 0.00811656 0.00812551 0.00813446 0.00814342 0.00815237 0.00816132 0.00817027 0.00817923 0.00818818 0.00819713 0.00820609 0.00821504 0.00822399 0.00823294 0.0082419 0.00825085 0.0082598 0.00826875 0.00827771 0.00828666 0.00829561 0.00830457 0.00831352 0.00832247 0.00833142 0.00834038 0.00834933 0.00835828 0.00836724 0.00837619 0.00838514 0.00839409 0.00840305 0.008412 0.00842095 0.0084299 0.00843886 0.00844781 0.00845676 0.00846572 0.00847467 0.00848362 0.00849257 0.00850153 0.00851048 0.00851943 0.00852838 0.00853734 0.00854629 0.00855524 0.0085642 0.00857315 0.0085821 0.00859105 0.00860001 0.00860896 0.00861791 0.00862687 0.00863582 0.00864477 0.00865372 0.00866268 0.00867163 0.00868058 0.00868953 0.00869849 +-0.00200225 -0.00186573 -0.00157481 -0.000932347 6.23728E-05 0.00126154 0.00255298 0.00386422 0.00513022 0.00626007 0.00709902 0.00750287 0.00761051 0.00763591 0.00764733 0.00765665 0.00766566 0.00767463 0.00768359 0.00769255 0.00770151 0.00771047 0.00771943 0.00772839 0.00773735 0.00774631 0.00775527 0.00776422 0.00777318 0.00778214 0.0077911 0.00780006 0.00780902 0.00781798 0.00782694 0.0078359 0.00784486 0.00785382 0.00786278 0.00787174 0.0078807 0.00788966 0.00789862 0.00790758 0.00791654 0.0079255 0.00793446 0.00794342 0.00795238 0.00796134 0.0079703 0.00797926 0.00798822 0.00799718 0.00800614 0.0080151 0.00802406 0.00803302 0.00804198 0.00805094 0.00805989 0.00806885 0.00807781 0.00808677 0.00809573 0.00810469 0.00811365 0.00812261 0.00813157 0.00814053 0.00814949 0.00815845 0.00816741 0.00817637 0.00818533 0.00819429 0.00820325 0.00821221 0.00822117 0.00823013 0.00823909 0.00824805 0.00825701 0.00826597 0.00827493 0.00828389 0.00829285 0.0083018 0.00831076 0.00831972 0.00832868 0.00833764 0.0083466 0.00835556 0.00836452 0.00837348 0.00838244 0.0083914 0.00840036 0.00840932 0.00841828 0.00842724 0.0084362 0.00844516 0.00845412 0.00846308 0.00847204 0.008481 0.00848996 0.00849892 0.00850788 0.00851684 0.0085258 0.00853476 0.00854372 0.00855268 0.00856164 0.0085706 0.00857956 0.00858851 0.00859747 0.00860643 0.00861539 0.00862435 0.00863331 0.00864227 0.00865123 0.00866019 0.00866915 0.00867811 0.00868707 0.00869603 0.00870499 +-0.00200401 -0.00186729 -0.0015759 -0.00093277 6.2455E-05 0.00126197 0.00255369 0.00386525 0.0051317 0.00626232 0.00710261 0.00750787 0.00761606 0.00764157 0.00765301 0.00766234 0.00767136 0.00768033 0.0076893 0.00769827 0.00770723 0.0077162 0.00772517 0.00773413 0.0077431 0.00775207 0.00776103 0.00777 0.00777897 0.00778793 0.0077969 0.00780587 0.00781483 0.0078238 0.00783277 0.00784173 0.0078507 0.00785966 0.00786863 0.0078776 0.00788656 0.00789553 0.0079045 0.00791346 0.00792243 0.0079314 0.00794036 0.00794933 0.0079583 0.00796726 0.00797623 0.0079852 0.00799416 0.00800313 0.0080121 0.00802106 0.00803003 0.008039 0.00804796 0.00805693 0.0080659 0.00807486 0.00808383 0.0080928 0.00810176 0.00811073 0.0081197 0.00812866 0.00813763 0.0081466 0.00815556 0.00816453 0.0081735 0.00818246 0.00819143 0.00820039 0.00820936 0.00821833 0.00822729 0.00823626 0.00824523 0.00825419 0.00826316 0.00827213 0.00828109 0.00829006 0.00829903 0.00830799 0.00831696 0.00832593 0.00833489 0.00834386 0.00835283 0.00836179 0.00837076 0.00837973 0.00838869 0.00839766 0.00840663 0.00841559 0.00842456 0.00843353 0.00844249 0.00845146 0.00846043 0.00846939 0.00847836 0.00848733 0.00849629 0.00850526 0.00851423 0.00852319 0.00853216 0.00854113 0.00855009 0.00855906 0.00856803 0.00857699 0.00858596 0.00859493 0.00860389 0.00861286 0.00862183 0.00863079 0.00863976 0.00864873 0.00865769 0.00866666 0.00867563 0.00868459 0.00869356 0.00870253 0.00871149 +-0.00200576 -0.00186886 -0.001577 -0.000933193 6.25372E-05 0.00126239 0.00255439 0.00386628 0.00513318 0.00626457 0.0071062 0.00751286 0.00762161 0.00764723 0.00765869 0.00766803 0.00767705 0.00768603 0.00769501 0.00770398 0.00771296 0.00772193 0.0077309 0.00773988 0.00774885 0.00775782 0.0077668 0.00777577 0.00778474 0.00779372 0.00780269 0.00781166 0.00782064 0.00782961 0.00783858 0.00784756 0.00785653 0.00786551 0.00787448 0.00788345 0.00789243 0.0079014 0.00791037 0.00791935 0.00792832 0.00793729 0.00794627 0.00795524 0.00796421 0.00797319 0.00798216 0.00799113 0.00800011 0.00800908 0.00801806 0.00802703 0.008036 0.00804498 0.00805395 0.00806292 0.0080719 0.00808087 0.00808984 0.00809882 0.00810779 0.00811676 0.00812574 0.00813471 0.00814368 0.00815266 0.00816163 0.0081706 0.00817958 0.00818855 0.00819752 0.0082065 0.00821547 0.00822445 0.00823342 0.00824239 0.00825137 0.00826034 0.00826931 0.00827829 0.00828726 0.00829623 0.00830521 0.00831418 0.00832315 0.00833213 0.0083411 0.00835007 0.00835905 0.00836802 0.008377 0.00838597 0.00839494 0.00840392 0.00841289 0.00842186 0.00843084 0.00843981 0.00844878 0.00845776 0.00846673 0.0084757 0.00848468 0.00849365 0.00850263 0.0085116 0.00852057 0.00852955 0.00853852 0.00854749 0.00855647 0.00856544 0.00857441 0.00858339 0.00859236 0.00860133 0.00861031 0.00861928 0.00862825 0.00863723 0.0086462 0.00865518 0.00866415 0.00867312 0.0086821 0.00869107 0.00870004 0.00870902 0.00871799 +-0.00200752 -0.00187042 -0.00157809 -0.000933615 6.26195E-05 0.00126281 0.0025551 0.0038673 0.00513465 0.00626682 0.00710977 0.00751785 0.00762715 0.00765288 0.00766436 0.00767371 0.00768274 0.00769173 0.00770071 0.0077097 0.00771868 0.00772766 0.00773664 0.00774562 0.0077546 0.00776358 0.00777256 0.00778154 0.00779052 0.0077995 0.00780848 0.00781746 0.00782644 0.00783542 0.0078444 0.00785338 0.00786236 0.00787134 0.00788032 0.0078893 0.00789828 0.00790727 0.00791625 0.00792523 0.00793421 0.00794319 0.00795217 0.00796115 0.00797013 0.00797911 0.00798809 0.00799707 0.00800605 0.00801503 0.00802401 0.00803299 0.00804197 0.00805095 0.00805993 0.00806891 0.00807789 0.00808687 0.00809585 0.00810483 0.00811381 0.00812279 0.00813178 0.00814076 0.00814974 0.00815872 0.0081677 0.00817668 0.00818566 0.00819464 0.00820362 0.0082126 0.00822158 0.00823056 0.00823954 0.00824852 0.0082575 0.00826648 0.00827546 0.00828444 0.00829342 0.0083024 0.00831138 0.00832036 0.00832935 0.00833833 0.00834731 0.00835629 0.00836527 0.00837425 0.00838323 0.00839221 0.00840119 0.00841017 0.00841915 0.00842813 0.00843711 0.00844609 0.00845507 0.00846405 0.00847303 0.00848201 0.00849099 0.00849997 0.00850895 0.00851793 0.00852692 0.0085359 0.00854488 0.00855386 0.00856284 0.00857182 0.0085808 0.00858978 0.00859876 0.00860774 0.00861672 0.0086257 0.00863468 0.00864366 0.00865264 0.00866162 0.0086706 0.00867958 0.00868856 0.00869754 0.00870652 0.0087155 0.00872449 +-0.00200928 -0.00187198 -0.00157918 -0.000934037 6.27017E-05 0.00126323 0.00255581 0.00386832 0.00513613 0.00626906 0.00711335 0.00752284 0.00763269 0.00765853 0.00767004 0.00767939 0.00768843 0.00769743 0.00770642 0.00771541 0.00772439 0.00773338 0.00774237 0.00775136 0.00776034 0.00776933 0.00777832 0.00778731 0.00779629 0.00780528 0.00781427 0.00782325 0.00783224 0.00784123 0.00785022 0.0078592 0.00786819 0.00787718 0.00788617 0.00789515 0.00790414 0.00791313 0.00792212 0.0079311 0.00794009 0.00794908 0.00795807 0.00796705 0.00797604 0.00798503 0.00799401 0.008003 0.00801199 0.00802098 0.00802996 0.00803895 0.00804794 0.00805693 0.00806591 0.0080749 0.00808389 0.00809288 0.00810186 0.00811085 0.00811984 0.00812882 0.00813781 0.0081468 0.00815579 0.00816477 0.00817376 0.00818275 0.00819174 0.00820072 0.00820971 0.0082187 0.00822768 0.00823667 0.00824566 0.00825465 0.00826363 0.00827262 0.00828161 0.0082906 0.00829958 0.00830857 0.00831756 0.00832655 0.00833553 0.00834452 0.00835351 0.0083625 0.00837148 0.00838047 0.00838946 0.00839844 0.00840743 0.00841642 0.00842541 0.00843439 0.00844338 0.00845237 0.00846136 0.00847034 0.00847933 0.00848832 0.00849731 0.00850629 0.00851528 0.00852427 0.00853326 0.00854224 0.00855123 0.00856022 0.00856921 0.00857819 0.00858718 0.00859617 0.00860515 0.00861414 0.00862313 0.00863212 0.0086411 0.00865009 0.00865908 0.00866807 0.00867705 0.00868604 0.00869503 0.00870402 0.008713 0.00872199 0.00873098 +-0.00201103 -0.00187354 -0.00158027 -0.000934458 6.2784E-05 0.00126366 0.00255651 0.00386935 0.0051376 0.0062713 0.00711691 0.00752781 0.00763823 0.00766418 0.00767571 0.00768507 0.00769412 0.00770312 0.00771212 0.00772111 0.00773011 0.0077391 0.0077481 0.00775709 0.00776609 0.00777508 0.00778407 0.00779307 0.00780206 0.00781106 0.00782005 0.00782905 0.00783804 0.00784703 0.00785603 0.00786502 0.00787402 0.00788301 0.00789201 0.007901 0.00790999 0.00791899 0.00792798 0.00793698 0.00794597 0.00795497 0.00796396 0.00797295 0.00798195 0.00799094 0.00799994 0.00800893 0.00801793 0.00802692 0.00803591 0.00804491 0.0080539 0.0080629 0.00807189 0.00808089 0.00808988 0.00809887 0.00810787 0.00811686 0.00812586 0.00813485 0.00814384 0.00815284 0.00816183 0.00817083 0.00817982 0.00818882 0.00819781 0.0082068 0.0082158 0.00822479 0.00823379 0.00824278 0.00825178 0.00826077 0.00826976 0.00827876 0.00828775 0.00829675 0.00830574 0.00831474 0.00832373 0.00833272 0.00834172 0.00835071 0.00835971 0.0083687 0.0083777 0.00838669 0.00839568 0.00840468 0.00841367 0.00842267 0.00843166 0.00844066 0.00844965 0.00845864 0.00846764 0.00847663 0.00848563 0.00849462 0.00850362 0.00851261 0.0085216 0.0085306 0.00853959 0.00854859 0.00855758 0.00856658 0.00857557 0.00858456 0.00859356 0.00860255 0.00861155 0.00862054 0.00862954 0.00863853 0.00864752 0.00865652 0.00866551 0.00867451 0.0086835 0.0086925 0.00870149 0.00871048 0.00871948 0.00872847 0.00873747 +-0.00201279 -0.0018751 -0.00158135 -0.000934878 6.28662E-05 0.00126408 0.00255722 0.00387037 0.00513907 0.00627353 0.00712047 0.00753279 0.00764376 0.00766982 0.00768138 0.00769075 0.00769981 0.00770882 0.00771782 0.00772682 0.00773582 0.00774482 0.00775382 0.00776283 0.00777183 0.00778083 0.00778983 0.00779883 0.00780783 0.00781683 0.00782583 0.00783483 0.00784384 0.00785284 0.00786184 0.00787084 0.00787984 0.00788884 0.00789784 0.00790684 0.00791585 0.00792485 0.00793385 0.00794285 0.00795185 0.00796085 0.00796985 0.00797885 0.00798786 0.00799686 0.00800586 0.00801486 0.00802386 0.00803286 0.00804186 0.00805086 0.00805986 0.00806887 0.00807787 0.00808687 0.00809587 0.00810487 0.00811387 0.00812287 0.00813187 0.00814087 0.00814988 0.00815888 0.00816788 0.00817688 0.00818588 0.00819488 0.00820388 0.00821288 0.00822188 0.00823089 0.00823989 0.00824889 0.00825789 0.00826689 0.00827589 0.00828489 0.00829389 0.0083029 0.0083119 0.0083209 0.0083299 0.0083389 0.0083479 0.0083569 0.0083659 0.00837491 0.00838391 0.00839291 0.00840191 0.00841091 0.00841991 0.00842891 0.00843791 0.00844691 0.00845592 0.00846492 0.00847392 0.00848292 0.00849192 0.00850092 0.00850992 0.00851892 0.00852793 0.00853693 0.00854593 0.00855493 0.00856393 0.00857293 0.00858193 0.00859093 0.00859994 0.00860894 0.00861794 0.00862694 0.00863594 0.00864494 0.00865394 0.00866294 0.00867194 0.00868095 0.00868995 0.00869895 0.00870795 0.00871695 0.00872595 0.00873495 0.00874395 +-0.00201454 -0.00187666 -0.00158244 -0.000935298 6.29485E-05 0.0012645 0.00255792 0.00387138 0.00514053 0.00627576 0.00712402 0.00753775 0.00764929 0.00767547 0.00768704 0.00769643 0.00770549 0.00771451 0.00772352 0.00773252 0.00774153 0.00775054 0.00775955 0.00776856 0.00777756 0.00778657 0.00779558 0.00780459 0.0078136 0.0078226 0.00783161 0.00784062 0.00784963 0.00785864 0.00786765 0.00787665 0.00788566 0.00789467 0.00790368 0.00791269 0.00792169 0.0079307 0.00793971 0.00794872 0.00795773 0.00796673 0.00797574 0.00798475 0.00799376 0.00800277 0.00801178 0.00802078 0.00802979 0.0080388 0.00804781 0.00805682 0.00806582 0.00807483 0.00808384 0.00809285 0.00810186 0.00811086 0.00811987 0.00812888 0.00813789 0.0081469 0.0081559 0.00816491 0.00817392 0.00818293 0.00819194 0.00820094 0.00820995 0.00821896 0.00822797 0.00823698 0.00824598 0.00825499 0.008264 0.00827301 0.00828202 0.00829102 0.00830003 0.00830904 0.00831805 0.00832706 0.00833607 0.00834507 0.00835408 0.00836309 0.0083721 0.00838111 0.00839011 0.00839912 0.00840813 0.00841714 0.00842615 0.00843515 0.00844416 0.00845317 0.00846218 0.00847119 0.0084802 0.0084892 0.00849821 0.00850722 0.00851623 0.00852524 0.00853424 0.00854325 0.00855226 0.00856127 0.00857028 0.00857928 0.00858829 0.0085973 0.00860631 0.00861532 0.00862432 0.00863333 0.00864234 0.00865135 0.00866036 0.00866937 0.00867837 0.00868738 0.00869639 0.0087054 0.00871441 0.00872341 0.00873242 0.00874143 0.00875044 +-0.0020163 -0.00187821 -0.00158353 -0.000935717 6.30308E-05 0.00126492 0.00255863 0.0038724 0.005142 0.00627799 0.00712757 0.00754272 0.00765482 0.00768111 0.00769271 0.0077021 0.00771117 0.00772019 0.00772921 0.00773822 0.00774724 0.00775625 0.00776527 0.00777428 0.0077833 0.00779231 0.00780133 0.00781034 0.00781936 0.00782837 0.00783739 0.00784641 0.00785542 0.00786444 0.00787345 0.00788247 0.00789148 0.0079005 0.00790951 0.00791853 0.00792754 0.00793656 0.00794557 0.00795459 0.0079636 0.00797262 0.00798163 0.00799065 0.00799966 0.00800868 0.00801769 0.00802671 0.00803572 0.00804474 0.00805375 0.00806277 0.00807178 0.0080808 0.00808981 0.00809883 0.00810784 0.00811685 0.00812587 0.00813488 0.0081439 0.00815291 0.00816193 0.00817094 0.00817996 0.00818897 0.00819799 0.008207 0.00821602 0.00822503 0.00823405 0.00824306 0.00825208 0.00826109 0.00827011 0.00827912 0.00828814 0.00829715 0.00830617 0.00831518 0.0083242 0.00833321 0.00834223 0.00835124 0.00836026 0.00836927 0.00837829 0.0083873 0.00839632 0.00840533 0.00841435 0.00842336 0.00843238 0.00844139 0.00845041 0.00845942 0.00846844 0.00847745 0.00848647 0.00849548 0.0085045 0.00851351 0.00852253 0.00853154 0.00854056 0.00854957 0.00855859 0.0085676 0.00857662 0.00858563 0.00859465 0.00860366 0.00861268 0.00862169 0.00863071 0.00863972 0.00864874 0.00865775 0.00866677 0.00867578 0.0086848 0.00869381 0.00870283 0.00871184 0.00872086 0.00872987 0.00873889 0.0087479 0.00875692 +-0.00201805 -0.00187977 -0.00158461 -0.000936135 6.31131E-05 0.00126534 0.00255933 0.00387342 0.00514346 0.00628021 0.00713111 0.00754767 0.00766035 0.00768675 0.00769837 0.00770777 0.00771685 0.00772588 0.0077349 0.00774392 0.00775295 0.00776197 0.00777099 0.00778001 0.00778903 0.00779805 0.00780708 0.0078161 0.00782512 0.00783414 0.00784316 0.00785219 0.00786121 0.00787023 0.00787925 0.00788827 0.0078973 0.00790632 0.00791534 0.00792436 0.00793338 0.00794241 0.00795143 0.00796045 0.00796947 0.00797849 0.00798752 0.00799654 0.00800556 0.00801458 0.0080236 0.00803262 0.00804165 0.00805067 0.00805969 0.00806871 0.00807773 0.00808676 0.00809578 0.0081048 0.00811382 0.00812284 0.00813186 0.00814089 0.00814991 0.00815893 0.00816795 0.00817697 0.008186 0.00819502 0.00820404 0.00821306 0.00822208 0.00823111 0.00824013 0.00824915 0.00825817 0.00826719 0.00827621 0.00828524 0.00829426 0.00830328 0.0083123 0.00832132 0.00833035 0.00833937 0.00834839 0.00835741 0.00836643 0.00837546 0.00838448 0.0083935 0.00840252 0.00841154 0.00842057 0.00842959 0.00843861 0.00844763 0.00845665 0.00846567 0.0084747 0.00848372 0.00849274 0.00850176 0.00851078 0.00851981 0.00852883 0.00853785 0.00854687 0.00855589 0.00856492 0.00857394 0.00858296 0.00859198 0.008601 0.00861003 0.00861905 0.00862807 0.00863709 0.00864611 0.00865514 0.00866416 0.00867318 0.0086822 0.00869122 0.00870024 0.00870927 0.00871829 0.00872731 0.00873633 0.00874535 0.00875438 0.0087634 +-0.0020198 -0.00188133 -0.00158569 -0.000936553 6.31954E-05 0.00126576 0.00256003 0.00387443 0.00514492 0.00628243 0.00713463 0.00755262 0.00766587 0.00769238 0.00770403 0.00771344 0.00772252 0.00773156 0.00774059 0.00774962 0.00775865 0.00776768 0.00777671 0.00778573 0.00779476 0.00780379 0.00781282 0.00782185 0.00783088 0.00783991 0.00784894 0.00785797 0.00786699 0.00787602 0.00788505 0.00789408 0.00790311 0.00791214 0.00792117 0.0079302 0.00793922 0.00794825 0.00795728 0.00796631 0.00797534 0.00798437 0.0079934 0.00800243 0.00801146 0.00802048 0.00802951 0.00803854 0.00804757 0.0080566 0.00806563 0.00807466 0.00808369 0.00809271 0.00810174 0.00811077 0.0081198 0.00812883 0.00813786 0.00814689 0.00815591 0.00816494 0.00817397 0.008183 0.00819203 0.00820106 0.00821009 0.00821912 0.00822814 0.00823717 0.0082462 0.00825523 0.00826426 0.00827329 0.00828232 0.00829135 0.00830038 0.0083094 0.00831843 0.00832746 0.00833649 0.00834552 0.00835455 0.00836358 0.00837261 0.00838163 0.00839066 0.00839969 0.00840872 0.00841775 0.00842678 0.00843581 0.00844484 0.00845387 0.00846289 0.00847192 0.00848095 0.00848998 0.00849901 0.00850804 0.00851707 0.0085261 0.00853512 0.00854415 0.00855318 0.00856221 0.00857124 0.00858027 0.0085893 0.00859833 0.00860736 0.00861638 0.00862541 0.00863444 0.00864347 0.0086525 0.00866153 0.00867056 0.00867959 0.00868861 0.00869764 0.00870667 0.0087157 0.00872473 0.00873376 0.00874279 0.00875182 0.00876085 0.00876987 +-0.00202156 -0.00188288 -0.00158678 -0.00093697 6.32777E-05 0.00126618 0.00256073 0.00387545 0.00514638 0.00628464 0.00713816 0.00755757 0.00767138 0.00769801 0.00770968 0.0077191 0.0077282 0.00773724 0.00774628 0.00775531 0.00776435 0.00777338 0.00778242 0.00779146 0.00780049 0.00780953 0.00781856 0.0078276 0.00783663 0.00784567 0.00785471 0.00786374 0.00787278 0.00788181 0.00789085 0.00789988 0.00790892 0.00791796 0.00792699 0.00793603 0.00794506 0.0079541 0.00796313 0.00797217 0.00798121 0.00799024 0.00799928 0.00800831 0.00801735 0.00802638 0.00803542 0.00804446 0.00805349 0.00806253 0.00807156 0.0080806 0.00808963 0.00809867 0.00810771 0.00811674 0.00812578 0.00813481 0.00814385 0.00815288 0.00816192 0.00817095 0.00817999 0.00818903 0.00819806 0.0082071 0.00821613 0.00822517 0.0082342 0.00824324 0.00825228 0.00826131 0.00827035 0.00827938 0.00828842 0.00829745 0.00830649 0.00831553 0.00832456 0.0083336 0.00834263 0.00835167 0.0083607 0.00836974 0.00837878 0.00838781 0.00839685 0.00840588 0.00841492 0.00842395 0.00843299 0.00844203 0.00845106 0.0084601 0.00846913 0.00847817 0.0084872 0.00849624 0.00850528 0.00851431 0.00852335 0.00853238 0.00854142 0.00855045 0.00855949 0.00856853 0.00857756 0.0085866 0.00859563 0.00860467 0.0086137 0.00862274 0.00863178 0.00864081 0.00864985 0.00865888 0.00866792 0.00867695 0.00868599 0.00869503 0.00870406 0.0087131 0.00872213 0.00873117 0.0087402 0.00874924 0.00875828 0.00876731 0.00877635 +-0.00202331 -0.00188444 -0.00158786 -0.000937387 6.33601E-05 0.0012666 0.00256143 0.00387646 0.00514783 0.00628685 0.00714168 0.00756251 0.0076769 0.00770364 0.00771534 0.00772477 0.00773387 0.00774292 0.00775196 0.007761 0.00777005 0.00777909 0.00778813 0.00779717 0.00780622 0.00781526 0.0078243 0.00783334 0.00784239 0.00785143 0.00786047 0.00786952 0.00787856 0.0078876 0.00789664 0.00790569 0.00791473 0.00792377 0.00793281 0.00794186 0.0079509 0.00795994 0.00796898 0.00797803 0.00798707 0.00799611 0.00800515 0.0080142 0.00802324 0.00803228 0.00804132 0.00805037 0.00805941 0.00806845 0.0080775 0.00808654 0.00809558 0.00810462 0.00811367 0.00812271 0.00813175 0.00814079 0.00814983 0.00815888 0.00816792 0.00817696 0.008186 0.00819505 0.00820409 0.00821313 0.00822218 0.00823122 0.00824026 0.0082493 0.00825835 0.00826739 0.00827643 0.00828547 0.00829452 0.00830356 0.0083126 0.00832164 0.00833069 0.00833973 0.00834877 0.00835781 0.00836686 0.0083759 0.00838494 0.00839398 0.00840303 0.00841207 0.00842111 0.00843016 0.0084392 0.00844824 0.00845728 0.00846633 0.00847537 0.00848441 0.00849345 0.0085025 0.00851154 0.00852058 0.00852962 0.00853867 0.00854771 0.00855675 0.00856579 0.00857484 0.00858388 0.00859292 0.00860196 0.00861101 0.00862005 0.00862909 0.00863814 0.00864718 0.00865622 0.00866526 0.00867431 0.00868335 0.00869239 0.00870143 0.00871048 0.00871952 0.00872856 0.0087376 0.00874665 0.00875569 0.00876473 0.00877377 0.00878282 +-0.00202506 -0.00188599 -0.00158894 -0.000937803 6.34424E-05 0.00126701 0.00256213 0.00387747 0.00514928 0.00628905 0.00714519 0.00756744 0.00768241 0.00770927 0.00772099 0.00773043 0.00773953 0.00774859 0.00775764 0.00776669 0.00777574 0.00778479 0.00779384 0.00780289 0.00781194 0.00782099 0.00783004 0.00783909 0.00784814 0.00785719 0.00786624 0.00787529 0.00788434 0.00789339 0.00790244 0.00791148 0.00792053 0.00792958 0.00793863 0.00794768 0.00795673 0.00796578 0.00797483 0.00798388 0.00799293 0.00800198 0.00801103 0.00802008 0.00802913 0.00803818 0.00804723 0.00805628 0.00806533 0.00807438 0.00808343 0.00809247 0.00810152 0.00811057 0.00811962 0.00812867 0.00813772 0.00814677 0.00815582 0.00816487 0.00817392 0.00818297 0.00819202 0.00820107 0.00821012 0.00821917 0.00822822 0.00823726 0.00824631 0.00825536 0.00826441 0.00827346 0.00828251 0.00829156 0.00830061 0.00830966 0.00831871 0.00832776 0.00833681 0.00834586 0.00835491 0.00836396 0.00837301 0.00838206 0.00839111 0.00840016 0.00840921 0.00841825 0.0084273 0.00843635 0.0084454 0.00845445 0.0084635 0.00847255 0.0084816 0.00849065 0.0084997 0.00850875 0.0085178 0.00852685 0.0085359 0.00854495 0.008554 0.00856305 0.0085721 0.00858115 0.0085902 0.00859924 0.00860829 0.00861734 0.00862639 0.00863544 0.00864449 0.00865354 0.00866259 0.00867164 0.00868069 0.00868974 0.00869879 0.00870784 0.00871689 0.00872594 0.00873499 0.00874404 0.00875309 0.00876214 0.00877119 0.00878023 0.00878928 +-0.00202681 -0.00188755 -0.00159002 -0.000938218 6.35248E-05 0.00126743 0.00256283 0.00387848 0.00515073 0.00629125 0.0071487 0.00757237 0.00768792 0.0077149 0.00772664 0.00773609 0.0077452 0.00775426 0.00776332 0.00777238 0.00778144 0.00779049 0.00779955 0.0078086 0.00781766 0.00782672 0.00783577 0.00784483 0.00785389 0.00786294 0.007872 0.00788106 0.00789011 0.00789917 0.00790822 0.00791728 0.00792634 0.00793539 0.00794445 0.00795351 0.00796256 0.00797162 0.00798068 0.00798973 0.00799879 0.00800784 0.0080169 0.00802596 0.00803501 0.00804407 0.00805313 0.00806218 0.00807124 0.0080803 0.00808935 0.00809841 0.00810747 0.00811652 0.00812558 0.00813463 0.00814369 0.00815275 0.0081618 0.00817086 0.00817991 0.00818897 0.00819803 0.00820708 0.00821614 0.0082252 0.00823425 0.00824331 0.00825237 0.00826142 0.00827048 0.00827953 0.00828859 0.00829765 0.0083067 0.00831576 0.00832482 0.00833387 0.00834293 0.00835199 0.00836104 0.0083701 0.00837916 0.00838821 0.00839727 0.00840632 0.00841538 0.00842444 0.00843349 0.00844255 0.00845161 0.00846066 0.00846972 0.00847878 0.00848783 0.00849689 0.00850594 0.008515 0.00852406 0.00853311 0.00854217 0.00855123 0.00856028 0.00856934 0.0085784 0.00858745 0.00859651 0.00860556 0.00861462 0.00862368 0.00863273 0.00864179 0.00865085 0.0086599 0.00866896 0.00867802 0.00868707 0.00869613 0.00870519 0.00871424 0.0087233 0.00873235 0.00874141 0.00875047 0.00875952 0.00876858 0.00877764 0.00878669 0.00879575 +-0.00202856 -0.0018891 -0.0015911 -0.000938633 6.36072E-05 0.00126785 0.00256353 0.00387949 0.00515218 0.00629345 0.00715219 0.0075773 0.00769342 0.00772052 0.00773228 0.00774174 0.00775086 0.00775993 0.007769 0.00777806 0.00778713 0.00779619 0.00780525 0.00781432 0.00782338 0.00783244 0.00784151 0.00785057 0.00785963 0.0078687 0.00787776 0.00788682 0.00789589 0.00790495 0.00791401 0.00792307 0.00793214 0.0079412 0.00795026 0.00795933 0.00796839 0.00797745 0.00798652 0.00799558 0.00800464 0.00801371 0.00802277 0.00803183 0.0080409 0.00804996 0.00805902 0.00806809 0.00807715 0.00808621 0.00809528 0.00810434 0.0081134 0.00812247 0.00813153 0.00814059 0.00814965 0.00815872 0.00816778 0.00817684 0.00818591 0.00819497 0.00820403 0.0082131 0.00822216 0.00823122 0.00824029 0.00824935 0.00825841 0.00826748 0.00827654 0.0082856 0.00829467 0.00830373 0.00831279 0.00832186 0.00833092 0.00833998 0.00834905 0.00835811 0.00836717 0.00837624 0.0083853 0.00839436 0.00840343 0.00841249 0.00842155 0.00843062 0.00843968 0.00844874 0.00845781 0.00846687 0.00847593 0.008485 0.00849406 0.00850312 0.00851219 0.00852125 0.00853031 0.00853938 0.00854844 0.0085575 0.00856657 0.00857563 0.00858469 0.00859376 0.00860282 0.00861188 0.00862095 0.00863001 0.00863907 0.00864814 0.0086572 0.00866626 0.00867532 0.00868439 0.00869345 0.00870251 0.00871158 0.00872064 0.0087297 0.00873877 0.00874783 0.00875689 0.00876596 0.00877502 0.00878408 0.00879315 0.00880221 +-0.00203031 -0.00189065 -0.00159218 -0.000939047 6.36896E-05 0.00126827 0.00256422 0.00388049 0.00515363 0.00629564 0.00715569 0.00758222 0.00769893 0.00772614 0.00773793 0.00774739 0.00775652 0.0077656 0.00777467 0.00778374 0.00779281 0.00780188 0.00781095 0.00782002 0.00782909 0.00783816 0.00784723 0.0078563 0.00786538 0.00787445 0.00788352 0.00789259 0.00790166 0.00791073 0.0079198 0.00792887 0.00793794 0.00794701 0.00795608 0.00796515 0.00797422 0.00798329 0.00799236 0.00800143 0.0080105 0.00801957 0.00802864 0.00803771 0.00804678 0.00805585 0.00806492 0.00807399 0.00808306 0.00809213 0.0081012 0.00811027 0.00811934 0.00812841 0.00813748 0.00814655 0.00815562 0.00816469 0.00817376 0.00818283 0.0081919 0.00820097 0.00821004 0.00821911 0.00822818 0.00823725 0.00824632 0.00825539 0.00826446 0.00827353 0.0082826 0.00829167 0.00830074 0.00830981 0.00831888 0.00832795 0.00833702 0.00834609 0.00835516 0.00836423 0.0083733 0.00838237 0.00839144 0.00840051 0.00840958 0.00841865 0.00842772 0.00843679 0.00844586 0.00845493 0.008464 0.00847307 0.00848214 0.00849121 0.00850028 0.00850935 0.00851842 0.00852749 0.00853657 0.00854564 0.00855471 0.00856378 0.00857285 0.00858192 0.00859099 0.00860006 0.00860913 0.0086182 0.00862727 0.00863634 0.00864541 0.00865448 0.00866355 0.00867262 0.00868169 0.00869076 0.00869983 0.0087089 0.00871797 0.00872704 0.00873611 0.00874518 0.00875425 0.00876332 0.00877239 0.00878146 0.00879053 0.0087996 0.00880867 +-0.00203206 -0.0018922 -0.00159325 -0.00093946 6.3772E-05 0.00126868 0.00256492 0.0038815 0.00515507 0.00629783 0.00715917 0.00758713 0.00770443 0.00773176 0.00774357 0.00775305 0.00776218 0.00777127 0.00778035 0.00778942 0.0077985 0.00780758 0.00781665 0.00782573 0.00783481 0.00784388 0.00785296 0.00786204 0.00787112 0.00788019 0.00788927 0.00789835 0.00790742 0.0079165 0.00792558 0.00793466 0.00794373 0.00795281 0.00796189 0.00797096 0.00798004 0.00798912 0.00799819 0.00800727 0.00801635 0.00802543 0.0080345 0.00804358 0.00805266 0.00806173 0.00807081 0.00807989 0.00808896 0.00809804 0.00810712 0.0081162 0.00812527 0.00813435 0.00814343 0.0081525 0.00816158 0.00817066 0.00817973 0.00818881 0.00819789 0.00820696 0.00821604 0.00822512 0.0082342 0.00824327 0.00825235 0.00826143 0.0082705 0.00827958 0.00828866 0.00829773 0.00830681 0.00831589 0.00832497 0.00833404 0.00834312 0.0083522 0.00836127 0.00837035 0.00837943 0.00838851 0.00839758 0.00840666 0.00841574 0.00842481 0.00843389 0.00844297 0.00845204 0.00846112 0.0084702 0.00847928 0.00848835 0.00849743 0.00850651 0.00851558 0.00852466 0.00853374 0.00854281 0.00855189 0.00856097 0.00857005 0.00857912 0.0085882 0.00859728 0.00860635 0.00861543 0.00862451 0.00863359 0.00864266 0.00865174 0.00866082 0.00866989 0.00867897 0.00868805 0.00869712 0.0087062 0.00871528 0.00872436 0.00873343 0.00874251 0.00875159 0.00876066 0.00876974 0.00877882 0.0087879 0.00879697 0.00880605 0.00881513 +-0.00203381 -0.00189375 -0.00159433 -0.000939873 6.38544E-05 0.0012691 0.00256561 0.0038825 0.00515651 0.00630002 0.00716265 0.00759204 0.00770992 0.00773737 0.00774921 0.00775869 0.00776784 0.00777693 0.00778601 0.0077951 0.00780418 0.00781327 0.00782235 0.00783143 0.00784052 0.0078496 0.00785869 0.00786777 0.00787685 0.00788594 0.00789502 0.00790411 0.00791319 0.00792227 0.00793136 0.00794044 0.00794953 0.00795861 0.00796769 0.00797678 0.00798586 0.00799495 0.00800403 0.00801311 0.0080222 0.00803128 0.00804036 0.00804945 0.00805853 0.00806762 0.0080767 0.00808578 0.00809487 0.00810395 0.00811304 0.00812212 0.0081312 0.00814029 0.00814937 0.00815845 0.00816754 0.00817662 0.00818571 0.00819479 0.00820387 0.00821296 0.00822204 0.00823112 0.00824021 0.00824929 0.00825838 0.00826746 0.00827654 0.00828563 0.00829471 0.0083038 0.00831288 0.00832196 0.00833105 0.00834013 0.00834922 0.0083583 0.00836738 0.00837647 0.00838555 0.00839464 0.00840372 0.0084128 0.00842189 0.00843097 0.00844006 0.00844914 0.00845822 0.00846731 0.00847639 0.00848547 0.00849456 0.00850364 0.00851273 0.00852181 0.00853089 0.00853998 0.00854906 0.00855815 0.00856723 0.00857631 0.0085854 0.00859448 0.00860357 0.00861265 0.00862173 0.00863082 0.0086399 0.00864899 0.00865807 0.00866715 0.00867624 0.00868532 0.0086944 0.00870349 0.00871257 0.00872166 0.00873074 0.00873982 0.00874891 0.00875799 0.00876708 0.00877616 0.00878524 0.00879433 0.00880341 0.0088125 0.00882158 +-0.00203556 -0.0018953 -0.0015954 -0.000940285 6.39369E-05 0.00126951 0.00256631 0.00388351 0.00515795 0.0063022 0.00716613 0.00759694 0.00771541 0.00774298 0.00775484 0.00776434 0.00777349 0.00778259 0.00779168 0.00780077 0.00780986 0.00781895 0.00782805 0.00783714 0.00784623 0.00785532 0.00786441 0.0078735 0.00788259 0.00789168 0.00790077 0.00790986 0.00791895 0.00792804 0.00793713 0.00794623 0.00795532 0.00796441 0.0079735 0.00798259 0.00799168 0.00800077 0.00800986 0.00801895 0.00802804 0.00803713 0.00804622 0.00805532 0.00806441 0.0080735 0.00808259 0.00809168 0.00810077 0.00810986 0.00811895 0.00812804 0.00813713 0.00814622 0.00815531 0.0081644 0.00817349 0.00818258 0.00819167 0.00820077 0.00820986 0.00821895 0.00822804 0.00823713 0.00824622 0.00825531 0.0082644 0.00827349 0.00828258 0.00829167 0.00830076 0.00830986 0.00831895 0.00832804 0.00833713 0.00834622 0.00835531 0.0083644 0.00837349 0.00838258 0.00839167 0.00840076 0.00840985 0.00841894 0.00842804 0.00843713 0.00844622 0.00845531 0.0084644 0.00847349 0.00848258 0.00849167 0.00850076 0.00850985 0.00851894 0.00852803 0.00853712 0.00854622 0.00855531 0.0085644 0.00857349 0.00858258 0.00859167 0.00860076 0.00860985 0.00861894 0.00862803 0.00863712 0.00864621 0.00865531 0.0086644 0.00867349 0.00868258 0.00869167 0.00870076 0.00870985 0.00871894 0.00872803 0.00873712 0.00874621 0.0087553 0.00876439 0.00877349 0.00878258 0.00879167 0.00880076 0.00880985 0.00881894 0.00882803 +-0.00203731 -0.00189685 -0.00159648 -0.000940697 6.40193E-05 0.00126993 0.002567 0.00388451 0.00515939 0.00630437 0.00716959 0.00760183 0.0077209 0.00774859 0.00776048 0.00776998 0.00777914 0.00778825 0.00779735 0.00780644 0.00781554 0.00782464 0.00783374 0.00784283 0.00785193 0.00786103 0.00787013 0.00787923 0.00788832 0.00789742 0.00790652 0.00791562 0.00792471 0.00793381 0.00794291 0.00795201 0.0079611 0.0079702 0.0079793 0.0079884 0.0079975 0.00800659 0.00801569 0.00802479 0.00803389 0.00804298 0.00805208 0.00806118 0.00807028 0.00807937 0.00808847 0.00809757 0.00810667 0.00811576 0.00812486 0.00813396 0.00814306 0.00815216 0.00816125 0.00817035 0.00817945 0.00818854 0.00819764 0.00820674 0.00821584 0.00822493 0.00823403 0.00824313 0.00825223 0.00826133 0.00827042 0.00827952 0.00828862 0.00829772 0.00830681 0.00831591 0.00832501 0.00833411 0.0083432 0.0083523 0.0083614 0.0083705 0.0083796 0.00838869 0.00839779 0.00840689 0.00841599 0.00842508 0.00843418 0.00844328 0.00845238 0.00846147 0.00847057 0.00847967 0.00848877 0.00849786 0.00850696 0.00851606 0.00852516 0.00853426 0.00854335 0.00855245 0.00856155 0.00857065 0.00857974 0.00858884 0.00859794 0.00860704 0.00861613 0.00862523 0.00863433 0.00864343 0.00865253 0.00866162 0.00867072 0.00867982 0.00868892 0.00869801 0.00870711 0.00871621 0.00872531 0.0087344 0.0087435 0.0087526 0.0087617 0.00877079 0.00877989 0.00878899 0.00879809 0.00880719 0.00881628 0.00882538 0.00883448 +-0.00203906 -0.0018984 -0.00159755 -0.000941108 6.41018E-05 0.00127034 0.00256769 0.00388551 0.00516083 0.00630654 0.00717305 0.00760672 0.00772639 0.0077542 0.00776611 0.00777562 0.00778479 0.0077939 0.00780301 0.00781211 0.00782122 0.00783032 0.00783943 0.00784853 0.00785764 0.00786674 0.00787584 0.00788495 0.00789405 0.00790316 0.00791226 0.00792137 0.00793047 0.00793958 0.00794868 0.00795779 0.00796689 0.00797599 0.0079851 0.0079942 0.00800331 0.00801241 0.00802152 0.00803062 0.00803973 0.00804883 0.00805794 0.00806704 0.00807614 0.00808525 0.00809435 0.00810346 0.00811256 0.00812167 0.00813077 0.00813988 0.00814898 0.00815809 0.00816719 0.00817629 0.0081854 0.0081945 0.00820361 0.00821271 0.00822182 0.00823092 0.00824002 0.00824913 0.00825823 0.00826734 0.00827644 0.00828555 0.00829465 0.00830376 0.00831286 0.00832196 0.00833107 0.00834017 0.00834928 0.00835838 0.00836749 0.00837659 0.0083857 0.0083948 0.00840391 0.00841301 0.00842211 0.00843122 0.00844032 0.00844943 0.00845853 0.00846764 0.00847674 0.00848585 0.00849495 0.00850406 0.00851316 0.00852226 0.00853137 0.00854047 0.00854958 0.00855868 0.00856779 0.00857689 0.008586 0.0085951 0.00860421 0.00861331 0.00862241 0.00863152 0.00864062 0.00864973 0.00865883 0.00866794 0.00867704 0.00868615 0.00869525 0.00870436 0.00871346 0.00872256 0.00873167 0.00874077 0.00874988 0.00875898 0.00876809 0.00877719 0.0087863 0.0087954 0.00880451 0.00881361 0.00882271 0.00883182 0.00884092 +-0.0020408 -0.00189995 -0.00159862 -0.000941518 6.41843E-05 0.00127076 0.00256839 0.00388651 0.00516226 0.00630871 0.00717651 0.00761161 0.00773187 0.00775981 0.00777174 0.00778126 0.00779044 0.00779956 0.00780867 0.00781778 0.00782689 0.007836 0.00784511 0.00785423 0.00786334 0.00787245 0.00788156 0.00789067 0.00789978 0.00790889 0.00791801 0.00792712 0.00793623 0.00794534 0.00795445 0.00796356 0.00797267 0.00798178 0.0079909 0.00800001 0.00800912 0.00801823 0.00802734 0.00803645 0.00804556 0.00805468 0.00806379 0.0080729 0.00808201 0.00809112 0.00810023 0.00810934 0.00811846 0.00812757 0.00813668 0.00814579 0.0081549 0.00816401 0.00817312 0.00818223 0.00819134 0.00820046 0.00820957 0.00821868 0.00822779 0.0082369 0.00824601 0.00825512 0.00826424 0.00827335 0.00828246 0.00829157 0.00830068 0.00830979 0.0083189 0.00832802 0.00833713 0.00834624 0.00835535 0.00836446 0.00837357 0.00838268 0.0083918 0.00840091 0.00841002 0.00841913 0.00842824 0.00843735 0.00844646 0.00845558 0.00846469 0.0084738 0.00848291 0.00849202 0.00850113 0.00851024 0.00851936 0.00852847 0.00853758 0.00854669 0.0085558 0.00856491 0.00857402 0.00858314 0.00859225 0.00860136 0.00861047 0.00861958 0.00862869 0.0086378 0.00864692 0.00865603 0.00866514 0.00867425 0.00868336 0.00869247 0.00870158 0.0087107 0.00871981 0.00872892 0.00873803 0.00874714 0.00875625 0.00876536 0.00877448 0.00878359 0.0087927 0.00880181 0.00881092 0.00882003 0.00882914 0.00883825 0.00884737 +-0.00204255 -0.0019015 -0.00159969 -0.000941928 6.42668E-05 0.00127117 0.00256908 0.0038875 0.00516369 0.00631088 0.00717995 0.00761649 0.00773735 0.00776541 0.00777736 0.0077869 0.00779608 0.00780521 0.00781433 0.00782344 0.00783256 0.00784168 0.0078508 0.00785992 0.00786904 0.00787815 0.00788727 0.00789639 0.00790551 0.00791463 0.00792374 0.00793286 0.00794198 0.0079511 0.00796022 0.00796934 0.00797845 0.00798757 0.00799669 0.00800581 0.00801493 0.00802405 0.00803316 0.00804228 0.0080514 0.00806052 0.00806964 0.00807876 0.00808787 0.00809699 0.00810611 0.00811523 0.00812435 0.00813347 0.00814258 0.0081517 0.00816082 0.00816994 0.00817905 0.00818817 0.00819729 0.00820641 0.00821553 0.00822465 0.00823376 0.00824288 0.008252 0.00826112 0.00827024 0.00827935 0.00828847 0.00829759 0.00830671 0.00831583 0.00832495 0.00833406 0.00834318 0.0083523 0.00836142 0.00837054 0.00837966 0.00838877 0.00839789 0.00840701 0.00841613 0.00842525 0.00843437 0.00844348 0.0084526 0.00846172 0.00847084 0.00847996 0.00848908 0.00849819 0.00850731 0.00851643 0.00852555 0.00853467 0.00854378 0.0085529 0.00856202 0.00857114 0.00858026 0.00858938 0.00859849 0.00860761 0.00861673 0.00862585 0.00863497 0.00864409 0.0086532 0.00866232 0.00867144 0.00868056 0.00868968 0.0086988 0.00870791 0.00871703 0.00872615 0.00873527 0.00874439 0.00875351 0.00876262 0.00877174 0.00878086 0.00878998 0.0087991 0.00880821 0.00881733 0.00882645 0.00883557 0.00884469 0.00885381 +-0.0020443 -0.00190304 -0.00160076 -0.000942337 6.43493E-05 0.00127159 0.00256977 0.0038885 0.00516512 0.00631304 0.00718339 0.00762136 0.00774283 0.00777101 0.00778299 0.00779253 0.00780172 0.00781085 0.00781998 0.00782911 0.00783823 0.00784736 0.00785648 0.00786561 0.00787473 0.00788386 0.00789298 0.00790211 0.00791123 0.00792036 0.00792948 0.00793861 0.00794773 0.00795686 0.00796598 0.00797511 0.00798423 0.00799336 0.00800248 0.00801161 0.00802073 0.00802986 0.00803898 0.00804811 0.00805723 0.00806636 0.00807548 0.00808461 0.00809373 0.00810286 0.00811198 0.00812111 0.00813023 0.00813936 0.00814849 0.00815761 0.00816674 0.00817586 0.00818498 0.00819411 0.00820323 0.00821236 0.00822148 0.00823061 0.00823973 0.00824886 0.00825798 0.00826711 0.00827623 0.00828536 0.00829448 0.00830361 0.00831274 0.00832186 0.00833099 0.00834011 0.00834924 0.00835836 0.00836749 0.00837661 0.00838574 0.00839486 0.00840399 0.00841311 0.00842224 0.00843136 0.00844049 0.00844961 0.00845874 0.00846786 0.00847699 0.00848611 0.00849524 0.00850436 0.00851349 0.00852261 0.00853174 0.00854086 0.00854999 0.00855911 0.00856824 0.00857736 0.00858649 0.00859561 0.00860474 0.00861386 0.00862299 0.00863211 0.00864124 0.00865037 0.00865949 0.00866862 0.00867774 0.00868687 0.00869599 0.00870512 0.00871424 0.00872337 0.00873249 0.00874162 0.00875074 0.00875987 0.00876899 0.00877812 0.00878724 0.00879637 0.00880549 0.00881462 0.00882374 0.00883287 0.00884199 0.00885112 0.00886024 +-0.00204604 -0.00190459 -0.00160183 -0.000942746 6.44318E-05 0.001272 0.00257046 0.00388949 0.00516654 0.00631519 0.00718683 0.00762623 0.0077483 0.0077766 0.00778861 0.00779816 0.00780736 0.0078165 0.00782563 0.00783476 0.0078439 0.00785303 0.00786216 0.00787129 0.00788042 0.00788956 0.00789869 0.00790782 0.00791695 0.00792608 0.00793522 0.00794435 0.00795348 0.00796261 0.00797174 0.00798088 0.00799001 0.00799914 0.00800827 0.0080174 0.00802654 0.00803567 0.0080448 0.00805393 0.00806306 0.0080722 0.00808133 0.00809046 0.00809959 0.00810872 0.00811786 0.00812699 0.00813612 0.00814525 0.00815438 0.00816352 0.00817265 0.00818178 0.00819091 0.00820004 0.00820917 0.00821831 0.00822744 0.00823657 0.0082457 0.00825483 0.00826397 0.0082731 0.00828223 0.00829136 0.00830049 0.00830963 0.00831876 0.00832789 0.00833702 0.00834615 0.00835529 0.00836442 0.00837355 0.00838268 0.00839181 0.00840095 0.00841008 0.00841921 0.00842834 0.00843747 0.00844661 0.00845574 0.00846487 0.008474 0.00848313 0.00849227 0.0085014 0.00851053 0.00851966 0.00852879 0.00853793 0.00854706 0.00855619 0.00856532 0.00857445 0.00858359 0.00859272 0.00860185 0.00861098 0.00862011 0.00862925 0.00863838 0.00864751 0.00865664 0.00866577 0.00867491 0.00868404 0.00869317 0.0087023 0.00871143 0.00872057 0.0087297 0.00873883 0.00874796 0.00875709 0.00876623 0.00877536 0.00878449 0.00879362 0.00880275 0.00881189 0.00882102 0.00883015 0.00883928 0.00884841 0.00885755 0.00886668 +-0.00204779 -0.00190613 -0.0016029 -0.000943154 6.45143E-05 0.00127241 0.00257114 0.00389049 0.00516797 0.00631735 0.00719026 0.0076311 0.00775377 0.0077822 0.00779423 0.00780379 0.00781299 0.00782214 0.00783128 0.00784042 0.00784956 0.0078587 0.00786784 0.00787698 0.00788612 0.00789525 0.00790439 0.00791353 0.00792267 0.00793181 0.00794095 0.00795009 0.00795923 0.00796837 0.0079775 0.00798664 0.00799578 0.00800492 0.00801406 0.0080232 0.00803234 0.00804148 0.00805062 0.00805975 0.00806889 0.00807803 0.00808717 0.00809631 0.00810545 0.00811459 0.00812373 0.00813286 0.008142 0.00815114 0.00816028 0.00816942 0.00817856 0.0081877 0.00819683 0.00820597 0.00821511 0.00822425 0.00823339 0.00824253 0.00825167 0.00826081 0.00826994 0.00827908 0.00828822 0.00829736 0.0083065 0.00831564 0.00832478 0.00833392 0.00834306 0.00835219 0.00836133 0.00837047 0.00837961 0.00838875 0.00839789 0.00840703 0.00841617 0.00842531 0.00843444 0.00844358 0.00845272 0.00846186 0.008471 0.00848014 0.00848928 0.00849842 0.00850755 0.00851669 0.00852583 0.00853497 0.00854411 0.00855325 0.00856239 0.00857153 0.00858067 0.0085898 0.00859894 0.00860808 0.00861722 0.00862636 0.0086355 0.00864464 0.00865378 0.00866292 0.00867205 0.00868119 0.00869033 0.00869947 0.00870861 0.00871775 0.00872689 0.00873603 0.00874517 0.0087543 0.00876344 0.00877258 0.00878172 0.00879086 0.0088 0.00880914 0.00881828 0.00882741 0.00883655 0.00884569 0.00885483 0.00886397 0.00887311 +-0.00204953 -0.00190768 -0.00160396 -0.000943561 6.45969E-05 0.00127282 0.00257183 0.00389148 0.00516939 0.00631949 0.00719368 0.00763595 0.00775924 0.00778779 0.00779985 0.00780942 0.00781863 0.00782778 0.00783693 0.00784608 0.00785522 0.00786437 0.00787351 0.00788266 0.0078918 0.00790095 0.0079101 0.00791924 0.00792839 0.00793753 0.00794668 0.00795582 0.00796497 0.00797412 0.00798326 0.00799241 0.00800155 0.0080107 0.00801984 0.00802899 0.00803814 0.00804728 0.00805643 0.00806557 0.00807472 0.00808386 0.00809301 0.00810216 0.0081113 0.00812045 0.00812959 0.00813874 0.00814788 0.00815703 0.00816618 0.00817532 0.00818447 0.00819361 0.00820276 0.0082119 0.00822105 0.00823019 0.00823934 0.00824848 0.00825763 0.00826678 0.00827592 0.00828507 0.00829421 0.00830336 0.0083125 0.00832165 0.0083308 0.00833994 0.00834909 0.00835823 0.00836738 0.00837652 0.00838567 0.00839482 0.00840396 0.00841311 0.00842225 0.0084314 0.00844054 0.00844969 0.00845884 0.00846798 0.00847713 0.00848627 0.00849542 0.00850456 0.00851371 0.00852286 0.008532 0.00854115 0.00855029 0.00855944 0.00856858 0.00857773 0.00858688 0.00859602 0.00860517 0.00861431 0.00862346 0.0086326 0.00864175 0.0086509 0.00866004 0.00866919 0.00867833 0.00868748 0.00869662 0.00870577 0.00871492 0.00872406 0.00873321 0.00874235 0.0087515 0.00876064 0.00876979 0.00877894 0.00878808 0.00879723 0.00880637 0.00881552 0.00882466 0.00883381 0.00884296 0.0088521 0.00886125 0.00887039 0.00887954 +-0.00205127 -0.00190922 -0.00160503 -0.000943968 6.46794E-05 0.00127323 0.00257252 0.00389247 0.00517081 0.00632164 0.00719709 0.00764081 0.0077647 0.00779338 0.00780546 0.00781504 0.00782426 0.00783342 0.00784258 0.00785173 0.00786088 0.00787003 0.00787919 0.00788834 0.00789749 0.00790664 0.0079158 0.00792495 0.0079341 0.00794325 0.00795241 0.00796156 0.00797071 0.00797986 0.00798902 0.00799817 0.00800732 0.00801647 0.00802563 0.00803478 0.00804393 0.00805308 0.00806224 0.00807139 0.00808054 0.00808969 0.00809885 0.008108 0.00811715 0.0081263 0.00813546 0.00814461 0.00815376 0.00816291 0.00817207 0.00818122 0.00819037 0.00819952 0.00820867 0.00821783 0.00822698 0.00823613 0.00824529 0.00825444 0.00826359 0.00827274 0.0082819 0.00829105 0.0083002 0.00830935 0.00831851 0.00832766 0.00833681 0.00834596 0.00835512 0.00836427 0.00837342 0.00838257 0.00839173 0.00840088 0.00841003 0.00841918 0.00842834 0.00843749 0.00844664 0.00845579 0.00846495 0.0084741 0.00848325 0.0084924 0.00850156 0.00851071 0.00851986 0.00852901 0.00853817 0.00854732 0.00855647 0.00856562 0.00857478 0.00858393 0.00859308 0.00860223 0.00861139 0.00862054 0.00862969 0.00863884 0.008648 0.00865715 0.0086663 0.00867546 0.00868461 0.00869376 0.00870291 0.00871207 0.00872122 0.00873037 0.00873952 0.00874868 0.00875783 0.00876698 0.00877613 0.00878529 0.00879444 0.00880359 0.00881274 0.0088219 0.00883105 0.0088402 0.00884935 0.00885851 0.00886766 0.00887681 0.00888596 +-0.00205302 -0.00191076 -0.00160609 -0.000944374 6.4762E-05 0.00127365 0.0025732 0.00389346 0.00517222 0.00632378 0.0072005 0.00764565 0.00777017 0.00779897 0.00781107 0.00782067 0.00782989 0.00783906 0.00784822 0.00785738 0.00786654 0.0078757 0.00788486 0.00789402 0.00790317 0.00791233 0.00792149 0.00793065 0.00793981 0.00794897 0.00795813 0.00796729 0.00797645 0.00798561 0.00799477 0.00800393 0.00801309 0.00802225 0.00803141 0.00804057 0.00804973 0.00805888 0.00806804 0.0080772 0.00808636 0.00809552 0.00810468 0.00811384 0.008123 0.00813216 0.00814132 0.00815048 0.00815964 0.0081688 0.00817796 0.00818712 0.00819627 0.00820543 0.00821459 0.00822375 0.00823291 0.00824207 0.00825123 0.00826039 0.00826955 0.00827871 0.00828787 0.00829703 0.00830619 0.00831534 0.0083245 0.00833366 0.00834282 0.00835198 0.00836114 0.0083703 0.00837946 0.00838862 0.00839778 0.00840694 0.0084161 0.00842526 0.00843442 0.00844358 0.00845274 0.0084619 0.00847105 0.00848021 0.00848937 0.00849853 0.00850769 0.00851685 0.00852601 0.00853517 0.00854433 0.00855349 0.00856265 0.00857181 0.00858097 0.00859013 0.00859929 0.00860845 0.00861761 0.00862676 0.00863592 0.00864508 0.00865424 0.0086634 0.00867256 0.00868172 0.00869088 0.00870004 0.0087092 0.00871836 0.00872752 0.00873668 0.00874584 0.008755 0.00876416 0.00877332 0.00878247 0.00879163 0.00880079 0.00880995 0.00881911 0.00882827 0.00883743 0.00884659 0.00885575 0.00886491 0.00887407 0.00888323 0.00889239 +-0.00205476 -0.00191231 -0.00160716 -0.00094478 6.48446E-05 0.00127406 0.00257389 0.00389445 0.00517364 0.00632592 0.0072039 0.00765049 0.00777562 0.00780455 0.00781668 0.00782629 0.00783552 0.00784469 0.00785386 0.00786302 0.00787219 0.00788136 0.00789052 0.00789969 0.00790886 0.00791802 0.00792719 0.00793635 0.00794552 0.00795469 0.00796385 0.00797302 0.00798219 0.00799135 0.00800052 0.00800968 0.00801885 0.00802802 0.00803718 0.00804635 0.00805552 0.00806468 0.00807385 0.00808301 0.00809218 0.00810135 0.00811051 0.00811968 0.00812885 0.00813801 0.00814718 0.00815634 0.00816551 0.00817468 0.00818384 0.00819301 0.00820217 0.00821134 0.00822051 0.00822967 0.00823884 0.008248 0.00825717 0.00826634 0.0082755 0.00828467 0.00829384 0.008303 0.00831217 0.00832133 0.0083305 0.00833967 0.00834883 0.008358 0.00836717 0.00837633 0.0083855 0.00839466 0.00840383 0.008413 0.00842216 0.00843133 0.0084405 0.00844966 0.00845883 0.00846799 0.00847716 0.00848633 0.00849549 0.00850466 0.00851383 0.00852299 0.00853216 0.00854132 0.00855049 0.00855966 0.00856882 0.00857799 0.00858716 0.00859632 0.00860549 0.00861465 0.00862382 0.00863299 0.00864215 0.00865132 0.00866049 0.00866965 0.00867882 0.00868798 0.00869715 0.00870632 0.00871548 0.00872465 0.00873382 0.00874298 0.00875215 0.00876131 0.00877048 0.00877965 0.00878881 0.00879798 0.00880715 0.00881631 0.00882548 0.00883464 0.00884381 0.00885298 0.00886214 0.00887131 0.00888048 0.00888964 0.00889881 +-0.0020565 -0.00191385 -0.00160822 -0.000945185 6.49272E-05 0.00127447 0.00257457 0.00389543 0.00517505 0.00632805 0.0072073 0.00765533 0.00778108 0.00781013 0.00782229 0.0078319 0.00784114 0.00785032 0.0078595 0.00786867 0.00787784 0.00788702 0.00789619 0.00790536 0.00791453 0.00792371 0.00793288 0.00794205 0.00795123 0.0079604 0.00796957 0.00797875 0.00798792 0.00799709 0.00800627 0.00801544 0.00802461 0.00803379 0.00804296 0.00805213 0.0080613 0.00807048 0.00807965 0.00808882 0.008098 0.00810717 0.00811634 0.00812552 0.00813469 0.00814386 0.00815304 0.00816221 0.00817138 0.00818055 0.00818973 0.0081989 0.00820807 0.00821724 0.00822642 0.00823559 0.00824476 0.00825394 0.00826311 0.00827228 0.00828146 0.00829063 0.0082998 0.00830897 0.00831815 0.00832732 0.00833649 0.00834567 0.00835484 0.00836401 0.00837319 0.00838236 0.00839153 0.00840071 0.00840988 0.00841905 0.00842823 0.0084374 0.00844657 0.00845574 0.00846492 0.00847409 0.00848326 0.00849244 0.00850161 0.00851078 0.00851996 0.00852913 0.0085383 0.00854748 0.00855665 0.00856582 0.00857499 0.00858417 0.00859334 0.00860251 0.00861169 0.00862086 0.00863003 0.00863921 0.00864838 0.00865755 0.00866673 0.0086759 0.00868507 0.00869424 0.00870342 0.00871259 0.00872176 0.00873094 0.00874011 0.00874928 0.00875846 0.00876763 0.0087768 0.00878598 0.00879515 0.00880432 0.00881349 0.00882267 0.00883184 0.00884101 0.00885019 0.00885936 0.00886853 0.00887771 0.00888688 0.00889605 0.00890523 +-0.00205825 -0.00191539 -0.00160928 -0.000945589 6.50098E-05 0.00127488 0.00257526 0.00389642 0.00517646 0.00633018 0.00721069 0.00766016 0.00778653 0.00781571 0.0078279 0.00783752 0.00784676 0.00785595 0.00786513 0.00787431 0.00788349 0.00789267 0.00790185 0.00791103 0.00792021 0.00792939 0.00793857 0.00794775 0.00795693 0.00796611 0.00797529 0.00798447 0.00799365 0.00800283 0.00801201 0.00802119 0.00803037 0.00803955 0.00804873 0.00805791 0.00806709 0.00807627 0.00808545 0.00809463 0.00810381 0.00811299 0.00812217 0.00813135 0.00814053 0.00814971 0.00815889 0.00816807 0.00817725 0.00818643 0.00819561 0.00820479 0.00821397 0.00822315 0.00823233 0.00824151 0.00825069 0.00825987 0.00826905 0.00827823 0.00828741 0.00829659 0.00830577 0.00831495 0.00832413 0.00833331 0.00834249 0.00835167 0.00836085 0.00837003 0.0083792 0.00838838 0.00839756 0.00840674 0.00841592 0.0084251 0.00843428 0.00844346 0.00845264 0.00846182 0.008471 0.00848018 0.00848936 0.00849854 0.00850772 0.0085169 0.00852608 0.00853526 0.00854444 0.00855362 0.0085628 0.00857198 0.00858116 0.00859034 0.00859952 0.0086087 0.00861788 0.00862706 0.00863624 0.00864542 0.0086546 0.00866378 0.00867296 0.00868214 0.00869132 0.0087005 0.00870968 0.00871886 0.00872804 0.00873722 0.0087464 0.00875558 0.00876476 0.00877394 0.00878312 0.0087923 0.00880148 0.00881066 0.00881984 0.00882902 0.0088382 0.00884738 0.00885656 0.00886574 0.00887492 0.0088841 0.00889328 0.00890246 0.00891164 +-0.00205999 -0.00191693 -0.00161034 -0.000945993 6.50924E-05 0.00127529 0.00257594 0.0038974 0.00517787 0.0063323 0.00721407 0.00766498 0.00779198 0.00782129 0.0078335 0.00784313 0.00785238 0.00786158 0.00787076 0.00787995 0.00788914 0.00789833 0.00790751 0.0079167 0.00792589 0.00793507 0.00794426 0.00795345 0.00796263 0.00797182 0.00798101 0.00799019 0.00799938 0.00800857 0.00801775 0.00802694 0.00803613 0.00804531 0.0080545 0.00806369 0.00807287 0.00808206 0.00809125 0.00810043 0.00810962 0.00811881 0.00812799 0.00813718 0.00814637 0.00815556 0.00816474 0.00817393 0.00818312 0.0081923 0.00820149 0.00821068 0.00821986 0.00822905 0.00823823 0.00824742 0.00825661 0.00826579 0.00827498 0.00828417 0.00829335 0.00830254 0.00831173 0.00832091 0.0083301 0.00833929 0.00834847 0.00835766 0.00836685 0.00837603 0.00838522 0.00839441 0.00840359 0.00841278 0.00842197 0.00843115 0.00844034 0.00844953 0.00845872 0.0084679 0.00847709 0.00848628 0.00849546 0.00850465 0.00851384 0.00852302 0.00853221 0.0085414 0.00855058 0.00855977 0.00856896 0.00857814 0.00858733 0.00859652 0.0086057 0.00861489 0.00862408 0.00863326 0.00864245 0.00865164 0.00866082 0.00867001 0.0086792 0.00868838 0.00869757 0.00870676 0.00871594 0.00872513 0.00873432 0.0087435 0.00875269 0.00876188 0.00877107 0.00878025 0.00878944 0.00879863 0.00880781 0.008817 0.00882619 0.00883537 0.00884456 0.00885375 0.00886293 0.00887212 0.00888131 0.00889049 0.00889968 0.00890887 0.00891805 +-0.00206173 -0.00191847 -0.0016114 -0.000946396 6.5175E-05 0.0012757 0.00257662 0.00389839 0.00517928 0.00633442 0.00721745 0.0076698 0.00779742 0.00782686 0.0078391 0.00784874 0.007858 0.0078672 0.0078764 0.00788559 0.00789478 0.00790398 0.00791317 0.00792236 0.00793156 0.00794075 0.00794994 0.00795914 0.00796833 0.00797753 0.00798672 0.00799591 0.00800511 0.0080143 0.00802349 0.00803269 0.00804188 0.00805107 0.00806027 0.00806946 0.00807866 0.00808785 0.00809704 0.00810624 0.00811543 0.00812462 0.00813382 0.00814301 0.0081522 0.0081614 0.00817059 0.00817978 0.00818898 0.00819817 0.00820737 0.00821656 0.00822575 0.00823494 0.00824414 0.00825333 0.00826252 0.00827172 0.00828091 0.0082901 0.0082993 0.00830849 0.00831769 0.00832688 0.00833607 0.00834527 0.00835446 0.00836365 0.00837285 0.00838204 0.00839123 0.00840043 0.00840962 0.00841882 0.00842801 0.0084372 0.0084464 0.00845559 0.00846478 0.00847398 0.00848317 0.00849236 0.00850156 0.00851075 0.00851994 0.00852914 0.00853833 0.00854753 0.00855672 0.00856591 0.00857511 0.0085843 0.00859349 0.00860269 0.00861188 0.00862107 0.00863027 0.00863946 0.00864866 0.00865785 0.00866704 0.00867624 0.00868543 0.00869462 0.00870382 0.00871301 0.0087222 0.0087314 0.00874059 0.00874978 0.00875898 0.00876817 0.00877737 0.00878656 0.00879575 0.00880495 0.00881414 0.00882333 0.00883253 0.00884172 0.00885091 0.00886011 0.0088693 0.0088785 0.00888769 0.00889688 0.00890608 0.00891527 0.00892446 +-0.00206347 -0.00192 -0.00161246 -0.000946799 6.52577E-05 0.00127611 0.0025773 0.00389937 0.00518068 0.00633654 0.00722082 0.00767462 0.00780287 0.00783244 0.0078447 0.00785435 0.00786361 0.00787282 0.00788202 0.00789122 0.00790042 0.00790963 0.00791883 0.00792803 0.00793723 0.00794643 0.00795563 0.00796483 0.00797403 0.00798323 0.00799243 0.00800163 0.00801083 0.00802003 0.00802923 0.00803843 0.00804763 0.00805683 0.00806603 0.00807523 0.00808443 0.00809363 0.00810283 0.00811204 0.00812124 0.00813044 0.00813964 0.00814884 0.00815804 0.00816724 0.00817644 0.00818564 0.00819484 0.00820404 0.00821324 0.00822244 0.00823164 0.00824084 0.00825004 0.00825924 0.00826844 0.00827764 0.00828684 0.00829604 0.00830524 0.00831444 0.00832364 0.00833284 0.00834204 0.00835124 0.00836044 0.00836964 0.00837884 0.00838804 0.00839725 0.00840645 0.00841565 0.00842485 0.00843405 0.00844325 0.00845245 0.00846165 0.00847085 0.00848005 0.00848925 0.00849845 0.00850765 0.00851685 0.00852605 0.00853525 0.00854445 0.00855365 0.00856285 0.00857205 0.00858125 0.00859045 0.00859965 0.00860886 0.00861806 0.00862726 0.00863646 0.00864566 0.00865486 0.00866406 0.00867326 0.00868246 0.00869166 0.00870086 0.00871006 0.00871926 0.00872846 0.00873766 0.00874686 0.00875606 0.00876526 0.00877446 0.00878366 0.00879286 0.00880206 0.00881126 0.00882047 0.00882967 0.00883887 0.00884807 0.00885727 0.00886647 0.00887567 0.00888487 0.00889407 0.00890327 0.00891247 0.00892167 0.00893087 +-0.00206521 -0.00192154 -0.00161352 -0.000947201 6.53403E-05 0.00127652 0.00257799 0.00390035 0.00518208 0.00633865 0.00722419 0.00767942 0.0078083 0.00783801 0.00785029 0.00785995 0.00786922 0.00787844 0.00788765 0.00789686 0.00790606 0.00791527 0.00792448 0.00793369 0.00794289 0.0079521 0.00796131 0.00797052 0.00797972 0.00798893 0.00799814 0.00800734 0.00801655 0.00802576 0.00803497 0.00804417 0.00805338 0.00806259 0.0080718 0.008081 0.00809021 0.00809942 0.00810862 0.00811783 0.00812704 0.00813625 0.00814545 0.00815466 0.00816387 0.00817308 0.00818228 0.00819149 0.0082007 0.0082099 0.00821911 0.00822832 0.00823752 0.00824673 0.00825594 0.00826514 0.00827435 0.00828356 0.00829277 0.00830197 0.00831118 0.00832039 0.0083296 0.0083388 0.00834801 0.00835722 0.00836642 0.00837563 0.00838484 0.00839405 0.00840325 0.00841246 0.00842167 0.00843088 0.00844008 0.00844929 0.0084585 0.0084677 0.00847691 0.00848612 0.00849533 0.00850453 0.00851374 0.00852295 0.00853216 0.00854136 0.00855057 0.00855978 0.00856898 0.00857819 0.0085874 0.00859661 0.00860581 0.00861502 0.00862423 0.00863344 0.00864264 0.00865185 0.00866106 0.00867026 0.00867947 0.00868868 0.00869789 0.00870709 0.0087163 0.00872551 0.00873472 0.00874392 0.00875313 0.00876234 0.00877154 0.00878075 0.00878996 0.00879917 0.00880837 0.00881758 0.00882679 0.008836 0.0088452 0.00885441 0.00886362 0.00887282 0.00888203 0.00889124 0.00890045 0.00890965 0.00891886 0.00892807 0.00893727 +-0.00206695 -0.00192308 -0.00161458 -0.000947603 6.5423E-05 0.00127692 0.00257867 0.00390133 0.00518348 0.00634076 0.00722754 0.00768423 0.00781374 0.00784357 0.00785588 0.00786555 0.00787483 0.00788406 0.00789327 0.00790249 0.0079117 0.00792092 0.00793013 0.00793934 0.00794856 0.00795777 0.00796699 0.0079762 0.00798541 0.00799463 0.00800384 0.00801306 0.00802227 0.00803148 0.0080407 0.00804991 0.00805913 0.00806834 0.00807756 0.00808677 0.00809598 0.0081052 0.00811441 0.00812363 0.00813284 0.00814205 0.00815127 0.00816048 0.0081697 0.00817891 0.00818812 0.00819734 0.00820655 0.00821577 0.00822498 0.00823419 0.00824341 0.00825262 0.00826183 0.00827105 0.00828026 0.00828948 0.00829869 0.0083079 0.00831712 0.00832633 0.00833555 0.00834476 0.00835397 0.00836319 0.0083724 0.00838162 0.00839083 0.00840005 0.00840926 0.00841847 0.00842769 0.0084369 0.00844612 0.00845533 0.00846454 0.00847376 0.00848297 0.00849219 0.0085014 0.00851061 0.00851983 0.00852904 0.00853826 0.00854747 0.00855668 0.0085659 0.00857511 0.00858433 0.00859354 0.00860276 0.00861197 0.00862118 0.0086304 0.00863961 0.00864883 0.00865804 0.00866725 0.00867647 0.00868568 0.0086949 0.00870411 0.00871332 0.00872254 0.00873175 0.00874097 0.00875018 0.00875939 0.00876861 0.00877782 0.00878704 0.00879625 0.00880547 0.00881468 0.00882389 0.00883311 0.00884232 0.00885154 0.00886075 0.00886996 0.00887918 0.00888839 0.00889761 0.00890682 0.00891603 0.00892525 0.00893446 0.00894368 +-0.00206868 -0.00192462 -0.00161563 -0.000948003 6.55057E-05 0.00127733 0.00257934 0.0039023 0.00518488 0.00634287 0.0072309 0.00768902 0.00781917 0.00784914 0.00786147 0.00787115 0.00788044 0.00788967 0.00789889 0.00790812 0.00791734 0.00792656 0.00793578 0.007945 0.00795422 0.00796344 0.00797266 0.00798188 0.0079911 0.00800032 0.00800955 0.00801877 0.00802799 0.00803721 0.00804643 0.00805565 0.00806487 0.00807409 0.00808331 0.00809253 0.00810175 0.00811098 0.0081202 0.00812942 0.00813864 0.00814786 0.00815708 0.0081663 0.00817552 0.00818474 0.00819396 0.00820319 0.00821241 0.00822163 0.00823085 0.00824006 0.00824929 0.00825851 0.00826773 0.00827695 0.00828617 0.00829539 0.00830461 0.00831383 0.00832305 0.00833227 0.0083415 0.00835072 0.00835994 0.00836916 0.00837838 0.0083876 0.00839682 0.00840604 0.00841526 0.00842448 0.0084337 0.00844293 0.00845215 0.00846137 0.00847059 0.00847981 0.00848903 0.00849825 0.00850747 0.00851669 0.00852591 0.00853513 0.00854436 0.00855358 0.0085628 0.00857202 0.00858124 0.00859046 0.00859968 0.0086089 0.00861812 0.00862734 0.00863656 0.00864579 0.00865501 0.00866423 0.00867345 0.00868267 0.00869189 0.00870111 0.00871033 0.00871955 0.00872877 0.00873799 0.00874722 0.00875644 0.00876566 0.00877488 0.0087841 0.00879332 0.00880254 0.00881176 0.00882098 0.0088302 0.00883942 0.00884865 0.00885787 0.00886709 0.00887631 0.00888553 0.00889475 0.00890397 0.00891319 0.00892241 0.00893163 0.00894085 0.00895008 +-0.00207042 -0.00192615 -0.00161669 -0.000948404 6.55884E-05 0.00127774 0.00258002 0.00390328 0.00518627 0.00634497 0.00723424 0.00769381 0.0078246 0.0078547 0.00786706 0.00787675 0.00788605 0.00789528 0.00790451 0.00791374 0.00792297 0.0079322 0.00794142 0.00795065 0.00795988 0.00796911 0.00797834 0.00798756 0.00799679 0.00800602 0.00801525 0.00802447 0.0080337 0.00804293 0.00805216 0.00806139 0.00807061 0.00807984 0.00808907 0.0080983 0.00810752 0.00811675 0.00812598 0.00813521 0.00814443 0.00815366 0.00816289 0.00817212 0.00818135 0.00819057 0.0081998 0.00820903 0.00821826 0.00822748 0.00823671 0.00824594 0.00825516 0.00826439 0.00827362 0.00828285 0.00829207 0.0083013 0.00831053 0.00831976 0.00832899 0.00833821 0.00834744 0.00835667 0.0083659 0.00837512 0.00838435 0.00839358 0.00840281 0.00841204 0.00842126 0.00843049 0.00843972 0.00844895 0.00845817 0.0084674 0.00847663 0.00848586 0.00849508 0.00850431 0.00851354 0.00852277 0.008532 0.00854122 0.00855045 0.00855968 0.00856891 0.00857813 0.00858736 0.00859659 0.00860582 0.00861505 0.00862427 0.0086335 0.00864273 0.00865196 0.00866118 0.00867041 0.00867964 0.00868887 0.0086981 0.00870732 0.00871655 0.00872578 0.00873501 0.00874423 0.00875346 0.00876269 0.00877192 0.00878114 0.00879037 0.0087996 0.00880883 0.00881806 0.00882728 0.00883651 0.00884574 0.00885497 0.00886419 0.00887342 0.00888265 0.00889188 0.00890111 0.00891033 0.00891956 0.00892879 0.00893802 0.00894724 0.00895647 +-0.00207216 -0.00192769 -0.00161774 -0.000948803 6.56711E-05 0.00127815 0.0025807 0.00390426 0.00518767 0.00634707 0.00723758 0.0076986 0.00783003 0.00786026 0.00787265 0.00788235 0.00789165 0.00790089 0.00791013 0.00791936 0.0079286 0.00793783 0.00794707 0.0079563 0.00796554 0.00797477 0.00798401 0.00799324 0.00800248 0.00801171 0.00802094 0.00803018 0.00803941 0.00804865 0.00805788 0.00806712 0.00807635 0.00808559 0.00809482 0.00810406 0.00811329 0.00812252 0.00813176 0.00814099 0.00815023 0.00815946 0.0081687 0.00817793 0.00818717 0.0081964 0.00820564 0.00821487 0.0082241 0.00823334 0.00824257 0.0082518 0.00826104 0.00827027 0.00827951 0.00828874 0.00829798 0.00830721 0.00831645 0.00832568 0.00833492 0.00834415 0.00835338 0.00836262 0.00837185 0.00838109 0.00839032 0.00839956 0.00840879 0.00841803 0.00842726 0.0084365 0.00844573 0.00845496 0.0084642 0.00847343 0.00848267 0.0084919 0.00850114 0.00851037 0.00851961 0.00852884 0.00853808 0.00854731 0.00855654 0.00856578 0.00857501 0.00858425 0.00859348 0.00860272 0.00861195 0.00862119 0.00863042 0.00863966 0.00864889 0.00865813 0.00866736 0.00867659 0.00868583 0.00869506 0.0087043 0.00871353 0.00872277 0.008732 0.00874124 0.00875047 0.00875971 0.00876894 0.00877817 0.00878741 0.00879664 0.00880588 0.00881511 0.00882435 0.00883358 0.00884282 0.00885205 0.00886129 0.00887052 0.00887975 0.00888899 0.00889822 0.00890746 0.00891669 0.00892593 0.00893516 0.0089444 0.00895363 0.00896287 +-0.0020739 -0.00192922 -0.0016188 -0.000949202 6.57538E-05 0.00127855 0.00258138 0.00390523 0.00518906 0.00634916 0.00724091 0.00770338 0.00783545 0.00786581 0.00787823 0.00788794 0.00789725 0.0079065 0.00791574 0.00792499 0.00793423 0.00794347 0.00795271 0.00796195 0.00797119 0.00798043 0.00798967 0.00799892 0.00800816 0.0080174 0.00802664 0.00803588 0.00804512 0.00805436 0.00806361 0.00807285 0.00808209 0.00809133 0.00810057 0.00810981 0.00811905 0.0081283 0.00813754 0.00814678 0.00815602 0.00816526 0.0081745 0.00818374 0.00819299 0.00820223 0.00821147 0.00822071 0.00822995 0.00823919 0.00824843 0.00825767 0.00826691 0.00827615 0.00828539 0.00829464 0.00830388 0.00831312 0.00832236 0.0083316 0.00834084 0.00835008 0.00835933 0.00836857 0.00837781 0.00838705 0.00839629 0.00840553 0.00841477 0.00842402 0.00843326 0.0084425 0.00845174 0.00846098 0.00847022 0.00847946 0.00848871 0.00849795 0.00850719 0.00851643 0.00852567 0.00853491 0.00854415 0.00855339 0.00856264 0.00857188 0.00858112 0.00859036 0.0085996 0.00860884 0.00861808 0.00862733 0.00863657 0.00864581 0.00865505 0.00866429 0.00867353 0.00868277 0.00869202 0.00870126 0.0087105 0.00871974 0.00872898 0.00873822 0.00874746 0.0087567 0.00876595 0.00877519 0.00878443 0.00879367 0.00880291 0.00881215 0.00882139 0.00883064 0.00883988 0.00884912 0.00885836 0.0088676 0.00887684 0.00888608 0.00889533 0.00890457 0.00891381 0.00892305 0.00893229 0.00894153 0.00895077 0.00896002 0.00896926 +-0.00207563 -0.00193075 -0.00161985 -0.000949601 6.58366E-05 0.00127896 0.00258205 0.0039062 0.00519045 0.00635126 0.00724424 0.00770815 0.00784087 0.00787137 0.00788381 0.00789353 0.00790285 0.00791211 0.00792136 0.0079306 0.00793985 0.0079491 0.00795835 0.0079676 0.00797684 0.00798609 0.00799534 0.00800459 0.00801384 0.00802309 0.00803233 0.00804158 0.00805083 0.00806008 0.00806933 0.00807857 0.00808782 0.00809707 0.00810632 0.00811557 0.00812482 0.00813406 0.00814331 0.00815256 0.00816181 0.00817106 0.0081803 0.00818955 0.0081988 0.00820805 0.0082173 0.00822655 0.00823579 0.00824504 0.00825429 0.00826353 0.00827278 0.00828203 0.00829128 0.00830053 0.00830978 0.00831902 0.00832827 0.00833752 0.00834677 0.00835602 0.00836526 0.00837451 0.00838376 0.00839301 0.00840226 0.00841151 0.00842075 0.00843 0.00843925 0.0084485 0.00845775 0.00846699 0.00847624 0.00848549 0.00849474 0.00850399 0.00851324 0.00852248 0.00853173 0.00854098 0.00855023 0.00855948 0.00856872 0.00857797 0.00858722 0.00859647 0.00860572 0.00861497 0.00862421 0.00863346 0.00864271 0.00865196 0.00866121 0.00867045 0.0086797 0.00868895 0.0086982 0.00870745 0.0087167 0.00872594 0.00873519 0.00874444 0.00875369 0.00876294 0.00877218 0.00878143 0.00879068 0.00879993 0.00880918 0.00881843 0.00882767 0.00883692 0.00884617 0.00885542 0.00886467 0.00887391 0.00888316 0.00889241 0.00890166 0.00891091 0.00892016 0.0089294 0.00893865 0.0089479 0.00895715 0.0089664 0.00897564 +-0.00207737 -0.00193229 -0.0016209 -0.000949999 6.59193E-05 0.00127936 0.00258273 0.00390717 0.00519183 0.00635334 0.00724756 0.00771292 0.00784629 0.00787692 0.00788939 0.00789912 0.00790844 0.00791771 0.00792696 0.00793622 0.00794547 0.00795473 0.00796398 0.00797324 0.00798249 0.00799175 0.008001 0.00801026 0.00801951 0.00802877 0.00803802 0.00804728 0.00805653 0.00806579 0.00807504 0.0080843 0.00809355 0.00810281 0.00811206 0.00812132 0.00813057 0.00813983 0.00814908 0.00815834 0.00816759 0.00817685 0.0081861 0.00819536 0.00820461 0.00821387 0.00822312 0.00823238 0.00824163 0.00825089 0.00826014 0.0082694 0.00827865 0.00828791 0.00829716 0.00830642 0.00831567 0.00832493 0.00833418 0.00834344 0.00835269 0.00836195 0.0083712 0.00838046 0.00838971 0.00839897 0.00840822 0.00841748 0.00842673 0.00843599 0.00844524 0.0084545 0.00846375 0.00847301 0.00848226 0.00849152 0.00850077 0.00851003 0.00851928 0.00852854 0.00853779 0.00854705 0.0085563 0.00856556 0.00857481 0.00858407 0.00859332 0.00860258 0.00861183 0.00862109 0.00863034 0.0086396 0.00864885 0.00865811 0.00866736 0.00867662 0.00868587 0.00869513 0.00870438 0.00871364 0.00872289 0.00873215 0.0087414 0.00875066 0.00875991 0.00876917 0.00877842 0.00878768 0.00879693 0.00880619 0.00881544 0.0088247 0.00883395 0.00884321 0.00885246 0.00886172 0.00887097 0.00888023 0.00888948 0.00889874 0.00890799 0.00891725 0.0089265 0.00893576 0.00894501 0.00895427 0.00896352 0.00897278 0.00898203 +-0.0020791 -0.00193382 -0.00162195 -0.000950396 6.60021E-05 0.00127977 0.0025834 0.00390814 0.00519322 0.00635543 0.00725088 0.00771769 0.0078517 0.00788247 0.00789497 0.0079047 0.00791404 0.00792331 0.00793257 0.00794183 0.0079511 0.00796036 0.00796962 0.00797888 0.00798814 0.0079974 0.00800667 0.00801593 0.00802519 0.00803445 0.00804371 0.00805298 0.00806224 0.0080715 0.00808076 0.00809002 0.00809928 0.00810855 0.00811781 0.00812707 0.00813633 0.00814559 0.00815486 0.00816412 0.00817338 0.00818264 0.0081919 0.00820116 0.00821043 0.00821969 0.00822895 0.00823821 0.00824747 0.00825673 0.00826599 0.00827525 0.00828452 0.00829378 0.00830304 0.0083123 0.00832156 0.00833082 0.00834009 0.00834935 0.00835861 0.00836787 0.00837713 0.0083864 0.00839566 0.00840492 0.00841418 0.00842344 0.0084327 0.00844197 0.00845123 0.00846049 0.00846975 0.00847901 0.00848828 0.00849754 0.0085068 0.00851606 0.00852532 0.00853458 0.00854385 0.00855311 0.00856237 0.00857163 0.00858089 0.00859016 0.00859942 0.00860868 0.00861794 0.0086272 0.00863646 0.00864573 0.00865499 0.00866425 0.00867351 0.00868277 0.00869204 0.0087013 0.00871056 0.00871982 0.00872908 0.00873834 0.00874761 0.00875687 0.00876613 0.00877539 0.00878465 0.00879392 0.00880318 0.00881244 0.0088217 0.00883096 0.00884022 0.00884949 0.00885875 0.00886801 0.00887727 0.00888653 0.0088958 0.00890506 0.00891432 0.00892358 0.00893284 0.0089421 0.00895137 0.00896063 0.00896989 0.00897915 0.00898841 +-0.00208084 -0.00193535 -0.001623 -0.000950793 6.60849E-05 0.00128017 0.00258408 0.00390911 0.0051946 0.0063575 0.00725419 0.00772245 0.00785711 0.00788802 0.00790054 0.00791029 0.00791963 0.00792891 0.00793818 0.00794744 0.00795671 0.00796598 0.00797525 0.00798452 0.00799379 0.00800306 0.00801232 0.00802159 0.00803086 0.00804013 0.0080494 0.00805867 0.00806794 0.00807721 0.00808647 0.00809574 0.00810501 0.00811428 0.00812355 0.00813282 0.00814209 0.00815135 0.00816062 0.00816989 0.00817916 0.00818843 0.0081977 0.00820697 0.00821623 0.0082255 0.00823477 0.00824404 0.00825331 0.00826257 0.00827184 0.00828111 0.00829038 0.00829965 0.00830892 0.00831818 0.00832745 0.00833672 0.00834599 0.00835526 0.00836453 0.0083738 0.00838307 0.00839233 0.0084016 0.00841087 0.00842014 0.00842941 0.00843868 0.00844795 0.00845721 0.00846648 0.00847575 0.00848502 0.00849429 0.00850356 0.00851283 0.00852209 0.00853136 0.00854063 0.0085499 0.00855917 0.00856844 0.00857771 0.00858697 0.00859624 0.00860551 0.00861478 0.00862405 0.00863332 0.00864259 0.00865185 0.00866112 0.00867039 0.00867966 0.00868893 0.0086982 0.00870747 0.00871674 0.008726 0.00873527 0.00874454 0.00875381 0.00876308 0.00877235 0.00878162 0.00879088 0.00880015 0.00880942 0.00881869 0.00882796 0.00883723 0.0088465 0.00885576 0.00886503 0.0088743 0.00888357 0.00889284 0.00890211 0.00891138 0.00892064 0.00892991 0.00893918 0.00894845 0.00895772 0.00896699 0.00897626 0.00898552 0.00899479 +-0.00208257 -0.00193688 -0.00162405 -0.000951189 6.61677E-05 0.00128058 0.00258475 0.00391008 0.00519598 0.00635958 0.00725749 0.0077272 0.00786252 0.00789356 0.00790611 0.00791587 0.00792522 0.0079345 0.00794378 0.00795305 0.00796233 0.0079716 0.00798088 0.00799016 0.00799943 0.00800871 0.00801798 0.00802726 0.00803653 0.00804581 0.00805508 0.00806436 0.00807363 0.00808291 0.00809218 0.00810146 0.00811074 0.00812001 0.00812929 0.00813856 0.00814784 0.00815711 0.00816639 0.00817566 0.00818494 0.00819421 0.00820349 0.00821277 0.00822204 0.00823132 0.00824059 0.00824987 0.00825914 0.00826841 0.00827769 0.00828696 0.00829624 0.00830551 0.00831479 0.00832407 0.00833334 0.00834262 0.00835189 0.00836117 0.00837044 0.00837972 0.00838899 0.00839827 0.00840754 0.00841682 0.0084261 0.00843537 0.00844465 0.00845392 0.0084632 0.00847247 0.00848175 0.00849102 0.0085003 0.00850957 0.00851885 0.00852812 0.0085374 0.00854668 0.00855595 0.00856523 0.0085745 0.00858378 0.00859305 0.00860233 0.0086116 0.00862088 0.00863015 0.00863943 0.00864871 0.00865798 0.00866726 0.00867653 0.00868581 0.00869508 0.00870436 0.00871363 0.00872291 0.00873218 0.00874146 0.00875073 0.00876001 0.00876929 0.00877856 0.00878784 0.00879711 0.00880639 0.00881566 0.00882494 0.00883421 0.00884349 0.00885276 0.00886204 0.00887132 0.00888059 0.00888987 0.00889914 0.00890842 0.00891769 0.00892697 0.00893624 0.00894552 0.00895479 0.00896407 0.00897334 0.00898262 0.0089919 0.00900117 +-0.00208431 -0.00193841 -0.00162509 -0.000951584 6.62505E-05 0.00128098 0.00258542 0.00391105 0.00519736 0.00636165 0.00726078 0.00773194 0.00786792 0.0078991 0.00791168 0.00792145 0.0079308 0.00794009 0.00794938 0.00795866 0.00796794 0.00797722 0.00798651 0.00799579 0.00800507 0.00801435 0.00802364 0.00803292 0.0080422 0.00805148 0.00806076 0.00807005 0.00807933 0.00808861 0.00809789 0.00810718 0.00811646 0.00812574 0.00813502 0.0081443 0.00815359 0.00816287 0.00817215 0.00818143 0.00819072 0.0082 0.00820928 0.00821856 0.00822784 0.00823713 0.00824641 0.00825569 0.00826497 0.00827425 0.00828353 0.00829282 0.0083021 0.00831138 0.00832066 0.00832994 0.00833923 0.00834851 0.00835779 0.00836707 0.00837636 0.00838564 0.00839492 0.0084042 0.00841348 0.00842277 0.00843205 0.00844133 0.00845061 0.0084599 0.00846918 0.00847846 0.00848774 0.00849702 0.00850631 0.00851559 0.00852487 0.00853415 0.00854344 0.00855272 0.008562 0.00857128 0.00858056 0.00858985 0.00859913 0.00860841 0.00861769 0.00862698 0.00863626 0.00864554 0.00865482 0.0086641 0.00867339 0.00868267 0.00869195 0.00870123 0.00871052 0.0087198 0.00872908 0.00873836 0.00874764 0.00875693 0.00876621 0.00877549 0.00878477 0.00879406 0.00880334 0.00881262 0.0088219 0.00883118 0.00884047 0.00884975 0.00885903 0.00886831 0.00887759 0.00888688 0.00889616 0.00890544 0.00891472 0.00892401 0.00893329 0.00894257 0.00895185 0.00896113 0.00897042 0.0089797 0.00898898 0.00899826 0.00900755 +-0.00208604 -0.00193994 -0.00162614 -0.000951979 6.63333E-05 0.00128139 0.00258609 0.00391201 0.00519874 0.00636372 0.00726407 0.00773669 0.00787332 0.00790464 0.00791725 0.00792702 0.00793639 0.00794568 0.00795498 0.00796426 0.00797355 0.00798284 0.00799213 0.00800142 0.00801071 0.00802 0.00802929 0.00803858 0.00804787 0.00805715 0.00806644 0.00807573 0.00808502 0.00809431 0.0081036 0.00811289 0.00812218 0.00813147 0.00814076 0.00815004 0.00815933 0.00816862 0.00817791 0.0081872 0.00819649 0.00820578 0.00821507 0.00822436 0.00823365 0.00824294 0.00825222 0.00826151 0.0082708 0.00828009 0.00828938 0.00829866 0.00830795 0.00831724 0.00832653 0.00833582 0.00834511 0.0083544 0.00836369 0.00837298 0.00838227 0.00839155 0.00840084 0.00841013 0.00841942 0.00842871 0.008438 0.00844729 0.00845658 0.00846587 0.00847516 0.00848444 0.00849373 0.00850302 0.00851231 0.0085216 0.00853089 0.00854018 0.00854947 0.00855876 0.00856805 0.00857733 0.00858662 0.00859591 0.0086052 0.00861449 0.00862378 0.00863307 0.00864236 0.00865165 0.00866094 0.00867022 0.00867951 0.0086888 0.00869809 0.00870738 0.00871667 0.00872596 0.00873525 0.00874454 0.00875383 0.00876311 0.0087724 0.00878169 0.00879098 0.00880027 0.00880956 0.00881885 0.00882814 0.00883743 0.00884672 0.008856 0.00886529 0.00887458 0.00888387 0.00889316 0.00890245 0.00891174 0.00892103 0.00893032 0.00893961 0.0089489 0.00895818 0.00896747 0.00897676 0.00898605 0.00899534 0.00900463 0.00901392 +-0.00208777 -0.00194147 -0.00162718 -0.000952374 6.64161E-05 0.00128179 0.00258676 0.00391298 0.00520011 0.00636578 0.00726736 0.00774142 0.00787872 0.00791018 0.00792281 0.0079326 0.00794197 0.00795127 0.00796057 0.00796987 0.00797916 0.00798846 0.00799775 0.00800705 0.00801635 0.00802564 0.00803494 0.00804423 0.00805353 0.00806282 0.00807212 0.00808142 0.00809071 0.00810001 0.0081093 0.0081186 0.0081279 0.00813719 0.00814649 0.00815578 0.00816508 0.00817437 0.00818367 0.00819297 0.00820226 0.00821156 0.00822085 0.00823015 0.00823944 0.00824874 0.00825804 0.00826733 0.00827663 0.00828592 0.00829521 0.00830451 0.00831381 0.0083231 0.0083324 0.00834169 0.00835099 0.00836029 0.00836958 0.00837888 0.00838817 0.00839747 0.00840676 0.00841606 0.00842536 0.00843465 0.00844395 0.00845324 0.00846254 0.00847184 0.00848113 0.00849043 0.00849972 0.00850902 0.00851831 0.00852761 0.00853691 0.0085462 0.0085555 0.00856479 0.00857409 0.00858338 0.00859268 0.00860198 0.00861127 0.00862057 0.00862986 0.00863916 0.00864846 0.00865775 0.00866705 0.00867634 0.00868564 0.00869493 0.00870423 0.00871353 0.00872282 0.00873212 0.00874141 0.00875071 0.00876001 0.0087693 0.0087786 0.00878789 0.00879719 0.00880648 0.00881578 0.00882508 0.00883437 0.00884367 0.00885296 0.00886226 0.00887155 0.00888085 0.00889015 0.00889944 0.00890874 0.00891803 0.00892733 0.00893663 0.00894592 0.00895522 0.00896451 0.00897381 0.0089831 0.0089924 0.0090017 0.00901099 0.00902029 +-0.00208951 -0.001943 -0.00162823 -0.000952768 6.64989E-05 0.00128219 0.00258743 0.00391394 0.00520148 0.00636785 0.00727064 0.00774615 0.00788412 0.00791571 0.00792838 0.00793817 0.00794755 0.00795686 0.00796616 0.00797547 0.00798477 0.00799407 0.00800337 0.00801268 0.00802198 0.00803128 0.00804058 0.00804989 0.00805919 0.00806849 0.00807779 0.0080871 0.0080964 0.0081057 0.008115 0.00812431 0.00813361 0.00814291 0.00815222 0.00816152 0.00817082 0.00818012 0.00818943 0.00819873 0.00820803 0.00821733 0.00822664 0.00823594 0.00824524 0.00825454 0.00826385 0.00827315 0.00828245 0.00829175 0.00830105 0.00831035 0.00831966 0.00832896 0.00833826 0.00834756 0.00835687 0.00836617 0.00837547 0.00838478 0.00839408 0.00840338 0.00841268 0.00842199 0.00843129 0.00844059 0.00844989 0.0084592 0.0084685 0.0084778 0.0084871 0.00849641 0.00850571 0.00851501 0.00852431 0.00853362 0.00854292 0.00855222 0.00856152 0.00857083 0.00858013 0.00858943 0.00859874 0.00860804 0.00861734 0.00862664 0.00863595 0.00864525 0.00865455 0.00866385 0.00867316 0.00868246 0.00869176 0.00870106 0.00871037 0.00871967 0.00872897 0.00873827 0.00874758 0.00875688 0.00876618 0.00877548 0.00878479 0.00879409 0.00880339 0.00881269 0.008822 0.0088313 0.0088406 0.00884991 0.00885921 0.00886851 0.00887781 0.00888712 0.00889642 0.00890572 0.00891502 0.00892433 0.00893363 0.00894293 0.00895223 0.00896154 0.00897084 0.00898014 0.00898944 0.00899875 0.00900805 0.00901735 0.00902665 +-0.00209124 -0.00194452 -0.00162927 -0.000953161 6.65818E-05 0.0012826 0.0025881 0.0039149 0.00520285 0.0063699 0.00727391 0.00775087 0.00788951 0.00792125 0.00793393 0.00794374 0.00795312 0.00796244 0.00797175 0.00798106 0.00799037 0.00799968 0.00800899 0.0080183 0.00802761 0.00803692 0.00804623 0.00805554 0.00806485 0.00807416 0.00808347 0.00809278 0.00810209 0.00811139 0.0081207 0.00813001 0.00813932 0.00814863 0.00815794 0.00816725 0.00817656 0.00818587 0.00819518 0.00820449 0.0082138 0.00822311 0.00823242 0.00824173 0.00825104 0.00826034 0.00826965 0.00827896 0.00828827 0.00829758 0.00830689 0.0083162 0.00832551 0.00833481 0.00834412 0.00835343 0.00836274 0.00837205 0.00838136 0.00839067 0.00839998 0.00840929 0.0084186 0.00842791 0.00843722 0.00844653 0.00845584 0.00846515 0.00847446 0.00848376 0.00849307 0.00850238 0.00851169 0.008521 0.00853031 0.00853962 0.00854893 0.00855824 0.00856755 0.00857686 0.00858617 0.00859548 0.00860479 0.0086141 0.00862341 0.00863272 0.00864202 0.00865133 0.00866064 0.00866995 0.00867926 0.00868857 0.00869788 0.00870719 0.0087165 0.00872581 0.00873512 0.00874443 0.00875374 0.00876305 0.00877236 0.00878167 0.00879097 0.00880028 0.00880959 0.0088189 0.00882821 0.00883752 0.00884683 0.00885614 0.00886545 0.00887476 0.00888407 0.00889338 0.00890269 0.008912 0.00892131 0.00893062 0.00893993 0.00894923 0.00895854 0.00896785 0.00897716 0.00898647 0.00899578 0.00900509 0.0090144 0.00902371 0.00903302 +-0.00209297 -0.00194605 -0.00163031 -0.000953553 6.66647E-05 0.001283 0.00258877 0.00391586 0.00520422 0.00637196 0.00727717 0.00775559 0.00789489 0.00792678 0.00793949 0.00794931 0.0079587 0.00796802 0.00797734 0.00798666 0.00799597 0.00800529 0.00801461 0.00802392 0.00803324 0.00804255 0.00805187 0.00806119 0.0080705 0.00807982 0.00808914 0.00809845 0.00810777 0.00811708 0.0081264 0.00813572 0.00814503 0.00815435 0.00816367 0.00817298 0.0081823 0.00819161 0.00820093 0.00821025 0.00821956 0.00822888 0.00823819 0.00824751 0.00825683 0.00826614 0.00827546 0.00828478 0.00829409 0.0083034 0.00831272 0.00832203 0.00833135 0.00834067 0.00834998 0.0083593 0.00836862 0.00837793 0.00838725 0.00839656 0.00840588 0.0084152 0.00842451 0.00843383 0.00844315 0.00845246 0.00846178 0.00847109 0.00848041 0.00848973 0.00849904 0.00850836 0.00851767 0.00852699 0.00853631 0.00854562 0.00855494 0.00856426 0.00857357 0.00858289 0.0085922 0.00860152 0.00861084 0.00862015 0.00862947 0.00863878 0.0086481 0.00865742 0.00866673 0.00867605 0.00868537 0.00869468 0.008704 0.00871331 0.00872263 0.00873195 0.00874126 0.00875058 0.0087599 0.00876921 0.00877853 0.00878784 0.00879716 0.00880648 0.00881579 0.00882511 0.00883442 0.00884374 0.00885306 0.00886237 0.00887169 0.00888101 0.00889032 0.00889964 0.00890895 0.00891827 0.00892759 0.0089369 0.00894622 0.00895554 0.00896485 0.00897417 0.00898348 0.0089928 0.00900212 0.00901143 0.00902075 0.00903006 0.00903938 +-0.0020947 -0.00194758 -0.00163136 -0.000953945 6.67475E-05 0.0012834 0.00258944 0.00391682 0.00520559 0.00637401 0.00728043 0.00776031 0.00790028 0.0079323 0.00794505 0.00795487 0.00796427 0.0079736 0.00798293 0.00799225 0.00800157 0.0080109 0.00802022 0.00802954 0.00803887 0.00804819 0.00805751 0.00806683 0.00807616 0.00808548 0.0080948 0.00810413 0.00811345 0.00812277 0.00813209 0.00814142 0.00815074 0.00816006 0.00816939 0.00817871 0.00818803 0.00819736 0.00820668 0.008216 0.00822532 0.00823465 0.00824397 0.00825329 0.00826262 0.00827194 0.00828126 0.00829059 0.0082999 0.00830923 0.00831855 0.00832787 0.00833719 0.00834652 0.00835584 0.00836516 0.00837449 0.00838381 0.00839313 0.00840246 0.00841178 0.0084211 0.00843042 0.00843975 0.00844907 0.00845839 0.00846772 0.00847704 0.00848636 0.00849568 0.00850501 0.00851433 0.00852365 0.00853298 0.0085423 0.00855162 0.00856095 0.00857027 0.00857959 0.00858891 0.00859824 0.00860756 0.00861688 0.00862621 0.00863553 0.00864485 0.00865418 0.0086635 0.00867282 0.00868214 0.00869147 0.00870079 0.00871011 0.00871944 0.00872876 0.00873808 0.0087474 0.00875673 0.00876605 0.00877537 0.0087847 0.00879402 0.00880334 0.00881267 0.00882199 0.00883131 0.00884063 0.00884996 0.00885928 0.0088686 0.00887793 0.00888725 0.00889657 0.0089059 0.00891522 0.00892454 0.00893386 0.00894319 0.00895251 0.00896183 0.00897116 0.00898048 0.0089898 0.00899912 0.00900845 0.00901777 0.00902709 0.00903642 0.00904574 +-0.00209643 -0.0019491 -0.0016324 -0.000954337 6.68304E-05 0.0012838 0.0025901 0.00391778 0.00520695 0.00637605 0.00728369 0.00776501 0.00790566 0.00793783 0.0079506 0.00796043 0.00796984 0.00797918 0.00798851 0.00799784 0.00800717 0.0080165 0.00802583 0.00803516 0.00804449 0.00805382 0.00806315 0.00807248 0.00808181 0.00809114 0.00810047 0.0081098 0.00811913 0.00812846 0.00813779 0.00814712 0.00815645 0.00816578 0.00817511 0.00818444 0.00819377 0.00820309 0.00821242 0.00822175 0.00823108 0.00824041 0.00824974 0.00825907 0.0082684 0.00827773 0.00828706 0.00829639 0.00830572 0.00831505 0.00832438 0.00833371 0.00834304 0.00835237 0.00836169 0.00837102 0.00838035 0.00838968 0.00839901 0.00840834 0.00841767 0.008427 0.00843633 0.00844566 0.00845499 0.00846432 0.00847365 0.00848298 0.00849231 0.00850164 0.00851097 0.0085203 0.00852963 0.00853896 0.00854829 0.00855762 0.00856695 0.00857628 0.00858561 0.00859494 0.00860427 0.0086136 0.00862293 0.00863226 0.00864159 0.00865092 0.00866025 0.00866958 0.00867891 0.00868824 0.00869757 0.0087069 0.00871623 0.00872555 0.00873488 0.00874421 0.00875354 0.00876287 0.0087722 0.00878153 0.00879086 0.00880019 0.00880952 0.00881885 0.00882818 0.00883751 0.00884684 0.00885617 0.0088655 0.00887483 0.00888416 0.00889349 0.00890282 0.00891215 0.00892148 0.00893081 0.00894014 0.00894947 0.0089588 0.00896813 0.00897746 0.00898679 0.00899612 0.00900545 0.00901478 0.00902411 0.00903344 0.00904277 0.0090521 +-0.00209816 -0.00195062 -0.00163344 -0.000954728 6.69133E-05 0.0012842 0.00259077 0.00391873 0.00520831 0.00637809 0.00728693 0.00776972 0.00791104 0.00794335 0.00795615 0.00796599 0.00797541 0.00798475 0.00799409 0.00800343 0.00801276 0.0080221 0.00803144 0.00804077 0.00805011 0.00805945 0.00806878 0.00807812 0.00808746 0.00809679 0.00810613 0.00811547 0.0081248 0.00813414 0.00814348 0.00815281 0.00816215 0.00817149 0.00818082 0.00819016 0.0081995 0.00820883 0.00821817 0.0082275 0.00823684 0.00824618 0.00825551 0.00826485 0.00827419 0.00828352 0.00829286 0.00830219 0.00831153 0.00832086 0.0083302 0.00833954 0.00834887 0.00835821 0.00836755 0.00837688 0.00838622 0.00839556 0.00840489 0.00841423 0.00842357 0.0084329 0.00844224 0.00845158 0.00846091 0.00847025 0.00847959 0.00848892 0.00849826 0.00850759 0.00851693 0.00852627 0.0085356 0.00854494 0.00855428 0.00856361 0.00857295 0.00858229 0.00859162 0.00860096 0.0086103 0.00861963 0.00862897 0.00863831 0.00864764 0.00865698 0.00866632 0.00867565 0.00868499 0.00869433 0.00870366 0.008713 0.00872233 0.00873167 0.00874101 0.00875034 0.00875968 0.00876902 0.00877835 0.00878769 0.00879703 0.00880636 0.0088157 0.00882504 0.00883437 0.00884371 0.00885305 0.00886238 0.00887172 0.00888106 0.00889039 0.00889973 0.00890907 0.0089184 0.00892774 0.00893707 0.00894641 0.00895575 0.00896508 0.00897442 0.00898376 0.00899309 0.00900243 0.00901177 0.0090211 0.00903044 0.00903978 0.00904911 0.00905845 +-0.00209989 -0.00195215 -0.00163447 -0.000955118 6.69963E-05 0.0012846 0.00259143 0.00391969 0.00520967 0.00638013 0.00729017 0.00777441 0.00791642 0.00794887 0.0079617 0.00797155 0.00798097 0.00799033 0.00799967 0.00800901 0.00801836 0.0080277 0.00803704 0.00804639 0.00805573 0.00806507 0.00807442 0.00808376 0.0080931 0.00810245 0.00811179 0.00812113 0.00813048 0.00813982 0.00814916 0.00815851 0.00816785 0.00817719 0.00818654 0.00819588 0.00820522 0.00821457 0.00822391 0.00823325 0.0082426 0.00825194 0.00826128 0.00827063 0.00827997 0.00828931 0.00829866 0.00830799 0.00831734 0.00832668 0.00833602 0.00834537 0.00835471 0.00836405 0.0083734 0.00838274 0.00839208 0.00840143 0.00841077 0.00842011 0.00842946 0.0084388 0.00844814 0.00845749 0.00846683 0.00847617 0.00848552 0.00849486 0.0085042 0.00851355 0.00852289 0.00853223 0.00854158 0.00855092 0.00856026 0.00856961 0.00857895 0.00858829 0.00859764 0.00860698 0.00861632 0.00862567 0.00863501 0.00864435 0.0086537 0.00866304 0.00867238 0.00868173 0.00869107 0.00870041 0.00870976 0.0087191 0.00872844 0.00873779 0.00874713 0.00875647 0.00876582 0.00877516 0.0087845 0.00879384 0.00880319 0.00881253 0.00882187 0.00883122 0.00884056 0.0088499 0.00885925 0.00886859 0.00887793 0.00888728 0.00889662 0.00890596 0.00891531 0.00892465 0.00893399 0.00894334 0.00895268 0.00896202 0.00897137 0.00898071 0.00899005 0.0089994 0.00900874 0.00901808 0.00902743 0.00903677 0.00904611 0.00905546 0.0090648 +-0.00210162 -0.00195367 -0.00163551 -0.000955508 6.70792E-05 0.001285 0.0025921 0.00392064 0.00521103 0.00638217 0.00729341 0.0077791 0.00792179 0.00795439 0.00796724 0.00797711 0.00798653 0.00799589 0.00800525 0.0080146 0.00802395 0.0080333 0.00804265 0.008052 0.00806135 0.0080707 0.00808005 0.0080894 0.00809875 0.0081081 0.00811745 0.0081268 0.00813615 0.0081455 0.00815485 0.0081642 0.00817355 0.0081829 0.00819225 0.0082016 0.00821095 0.0082203 0.00822965 0.008239 0.00824835 0.0082577 0.00826705 0.0082764 0.00828575 0.0082951 0.00830445 0.00831379 0.00832314 0.00833249 0.00834184 0.00835119 0.00836054 0.00836989 0.00837924 0.00838859 0.00839794 0.00840729 0.00841664 0.00842599 0.00843534 0.00844469 0.00845404 0.00846339 0.00847274 0.00848209 0.00849144 0.00850079 0.00851014 0.00851949 0.00852884 0.00853819 0.00854754 0.0085569 0.00856625 0.0085756 0.00858495 0.0085943 0.00860365 0.008613 0.00862235 0.0086317 0.00864105 0.0086504 0.00865975 0.0086691 0.00867845 0.0086878 0.00869715 0.0087065 0.00871585 0.0087252 0.00873455 0.0087439 0.00875325 0.0087626 0.00877195 0.0087813 0.00879065 0.0088 0.00880935 0.0088187 0.00882805 0.0088374 0.00884675 0.0088561 0.00886545 0.0088748 0.00888415 0.0088935 0.00890285 0.0089122 0.00892155 0.0089309 0.00894025 0.0089496 0.00895895 0.0089683 0.00897765 0.008987 0.00899635 0.0090057 0.00901505 0.0090244 0.00903375 0.0090431 0.00905245 0.0090618 0.00907115 +-0.00210334 -0.00195519 -0.00163655 -0.000955897 6.71621E-05 0.0012854 0.00259276 0.0039216 0.00521239 0.0063842 0.00729664 0.00778379 0.00792716 0.0079599 0.00797279 0.00798266 0.00799209 0.00800146 0.00801082 0.00802018 0.00802953 0.00803889 0.00804825 0.00805761 0.00806696 0.00807632 0.00808568 0.00809503 0.00810439 0.00811375 0.0081231 0.00813246 0.00814182 0.00815117 0.00816053 0.00816989 0.00817924 0.0081886 0.00819796 0.00820731 0.00821667 0.00822603 0.00823539 0.00824474 0.0082541 0.00826346 0.00827281 0.00828217 0.00829153 0.00830088 0.00831024 0.00831959 0.00832895 0.0083383 0.00834766 0.00835702 0.00836637 0.00837573 0.00838509 0.00839445 0.0084038 0.00841316 0.00842252 0.00843187 0.00844123 0.00845059 0.00845994 0.0084693 0.00847866 0.00848801 0.00849737 0.00850673 0.00851608 0.00852544 0.0085348 0.00854415 0.00855351 0.00856287 0.00857223 0.00858158 0.00859094 0.0086003 0.00860965 0.00861901 0.00862837 0.00863772 0.00864708 0.00865644 0.00866579 0.00867515 0.00868451 0.00869386 0.00870322 0.00871258 0.00872193 0.00873129 0.00874065 0.00875001 0.00875936 0.00876872 0.00877808 0.00878743 0.00879679 0.00880615 0.0088155 0.00882486 0.00883422 0.00884357 0.00885293 0.00886229 0.00887164 0.008881 0.00889036 0.00889971 0.00890907 0.00891843 0.00892779 0.00893714 0.0089465 0.00895586 0.00896521 0.00897457 0.00898393 0.00899328 0.00900264 0.009012 0.00902135 0.00903071 0.00904007 0.00904942 0.00905878 0.00906814 0.00907749 +-0.00210507 -0.00195671 -0.00163758 -0.000956286 6.72451E-05 0.0012858 0.00259343 0.00392255 0.00521374 0.00638623 0.00729986 0.00778847 0.00793252 0.00796541 0.00797833 0.00798821 0.00799765 0.00800703 0.00801639 0.00802576 0.00803512 0.00804448 0.00805385 0.00806321 0.00807257 0.00808194 0.0080913 0.00810067 0.00811003 0.00811939 0.00812876 0.00813812 0.00814748 0.00815685 0.00816621 0.00817557 0.00818494 0.0081943 0.00820366 0.00821303 0.00822239 0.00823176 0.00824112 0.00825048 0.00825985 0.00826921 0.00827857 0.00828794 0.0082973 0.00830666 0.00831603 0.00832539 0.00833475 0.00834411 0.00835348 0.00836284 0.0083722 0.00838157 0.00839093 0.00840029 0.00840966 0.00841902 0.00842839 0.00843775 0.00844711 0.00845648 0.00846584 0.0084752 0.00848457 0.00849393 0.00850329 0.00851266 0.00852202 0.00853138 0.00854075 0.00855011 0.00855948 0.00856884 0.0085782 0.00858757 0.00859693 0.00860629 0.00861566 0.00862502 0.00863438 0.00864375 0.00865311 0.00866248 0.00867184 0.0086812 0.00869057 0.00869993 0.00870929 0.00871866 0.00872802 0.00873738 0.00874675 0.00875611 0.00876548 0.00877484 0.0087842 0.00879357 0.00880293 0.00881229 0.00882166 0.00883102 0.00884038 0.00884975 0.00885911 0.00886847 0.00887784 0.0088872 0.00889657 0.00890593 0.00891529 0.00892466 0.00893402 0.00894338 0.00895275 0.00896211 0.00897147 0.00898084 0.0089902 0.00899957 0.00900893 0.00901829 0.00902766 0.00903702 0.00904638 0.00905575 0.00906511 0.00907447 0.00908384 +-0.0021068 -0.00195823 -0.00163862 -0.000956674 6.7328E-05 0.0012862 0.00259409 0.0039235 0.00521509 0.00638825 0.00730308 0.00779314 0.00793788 0.00797092 0.00798387 0.00799376 0.00800321 0.00801259 0.00802196 0.00803133 0.0080407 0.00805007 0.00805944 0.00806881 0.00807818 0.00808755 0.00809692 0.0081063 0.00811567 0.00812504 0.00813441 0.00814378 0.00815315 0.00816252 0.00817189 0.00818126 0.00819063 0.0082 0.00820937 0.00821874 0.00822811 0.00823748 0.00824685 0.00825622 0.00826559 0.00827496 0.00828433 0.0082937 0.00830307 0.00831244 0.00832181 0.00833118 0.00834055 0.00834992 0.00835929 0.00836866 0.00837803 0.0083874 0.00839677 0.00840614 0.00841551 0.00842488 0.00843425 0.00844362 0.00845299 0.00846236 0.00847173 0.0084811 0.00849047 0.00849984 0.00850922 0.00851859 0.00852796 0.00853733 0.0085467 0.00855607 0.00856544 0.00857481 0.00858418 0.00859355 0.00860292 0.00861229 0.00862166 0.00863103 0.0086404 0.00864977 0.00865914 0.00866851 0.00867788 0.00868725 0.00869662 0.00870599 0.00871536 0.00872473 0.0087341 0.00874347 0.00875284 0.00876222 0.00877159 0.00878096 0.00879033 0.0087997 0.00880907 0.00881844 0.00882781 0.00883718 0.00884655 0.00885592 0.00886529 0.00887466 0.00888403 0.0088934 0.00890277 0.00891214 0.00892151 0.00893088 0.00894025 0.00894962 0.00895899 0.00896836 0.00897773 0.0089871 0.00899647 0.00900585 0.00901522 0.00902459 0.00903396 0.00904333 0.0090527 0.00906207 0.00907144 0.00908081 0.00909018 +-0.00210852 -0.00195975 -0.00163965 -0.000957061 6.7411E-05 0.0012866 0.00259475 0.00392445 0.00521644 0.00639027 0.00730629 0.00779781 0.00794324 0.00797643 0.0079894 0.00799931 0.00800876 0.00801815 0.00802753 0.00803691 0.00804628 0.00805566 0.00806504 0.00807441 0.00808379 0.00809317 0.00810255 0.00811192 0.0081213 0.00813068 0.00814005 0.00814943 0.00815881 0.00816819 0.00817756 0.00818694 0.00819632 0.00820569 0.00821507 0.00822445 0.00823383 0.0082432 0.00825258 0.00826196 0.00827133 0.00828071 0.00829009 0.00829947 0.00830884 0.00831822 0.00832759 0.00833697 0.00834635 0.00835572 0.0083651 0.00837448 0.00838385 0.00839323 0.00840261 0.00841199 0.00842136 0.00843074 0.00844012 0.00844949 0.00845887 0.00846825 0.00847763 0.008487 0.00849638 0.00850576 0.00851513 0.00852451 0.00853389 0.00854327 0.00855264 0.00856202 0.0085714 0.00858077 0.00859015 0.00859953 0.00860891 0.00861828 0.00862766 0.00863704 0.00864641 0.00865579 0.00866517 0.00867455 0.00868392 0.0086933 0.00870268 0.00871205 0.00872143 0.00873081 0.00874019 0.00874956 0.00875894 0.00876832 0.00877769 0.00878707 0.00879645 0.00880583 0.0088152 0.00882458 0.00883396 0.00884333 0.00885271 0.00886209 0.00887147 0.00888084 0.00889022 0.0088996 0.00890897 0.00891835 0.00892773 0.00893711 0.00894648 0.00895586 0.00896524 0.00897461 0.00898399 0.00899337 0.00900275 0.00901212 0.0090215 0.00903088 0.00904025 0.00904963 0.00905901 0.00906839 0.00907776 0.00908714 0.00909652 +-0.00211025 -0.00196127 -0.00164068 -0.000957448 6.7494E-05 0.001287 0.00259541 0.00392539 0.00521779 0.00639229 0.0073095 0.00780247 0.00794859 0.00798194 0.00799494 0.00800485 0.00801431 0.00802371 0.00803309 0.00804248 0.00805186 0.00806125 0.00807063 0.00808001 0.0080894 0.00809878 0.00810816 0.00811755 0.00812693 0.00813632 0.0081457 0.00815508 0.00816447 0.00817385 0.00818324 0.00819262 0.008202 0.00821139 0.00822077 0.00823016 0.00823954 0.00824892 0.00825831 0.00826769 0.00827708 0.00828646 0.00829584 0.00830523 0.00831461 0.00832399 0.00833337 0.00834276 0.00835214 0.00836152 0.00837091 0.00838029 0.00838968 0.00839906 0.00840844 0.00841783 0.00842721 0.00843659 0.00844598 0.00845536 0.00846475 0.00847413 0.00848351 0.0084929 0.00850228 0.00851167 0.00852105 0.00853043 0.00853982 0.0085492 0.00855859 0.00856797 0.00857735 0.00858674 0.00859612 0.0086055 0.00861489 0.00862427 0.00863366 0.00864304 0.00865242 0.00866181 0.00867119 0.00868058 0.00868996 0.00869934 0.00870873 0.00871811 0.0087275 0.00873688 0.00874626 0.00875565 0.00876503 0.00877442 0.0087838 0.00879318 0.00880257 0.00881195 0.00882133 0.00883072 0.0088401 0.00884949 0.00885887 0.00886825 0.00887764 0.00888702 0.00889641 0.00890579 0.00891517 0.00892456 0.00893394 0.00894333 0.00895271 0.00896209 0.00897148 0.00898086 0.00899024 0.00899963 0.00900901 0.0090184 0.00902778 0.00903716 0.00904655 0.00905593 0.00906532 0.0090747 0.00908408 0.00909347 0.00910285 +-0.00211198 -0.00196279 -0.00164172 -0.000957835 6.7577E-05 0.0012874 0.00259607 0.00392634 0.00521914 0.0063943 0.00731269 0.00780713 0.00795394 0.00798744 0.00800047 0.00801039 0.00801986 0.00802926 0.00803866 0.00804805 0.00805744 0.00806683 0.00807622 0.00808561 0.008095 0.00810439 0.00811378 0.00812317 0.00813256 0.00814195 0.00815134 0.00816073 0.00817013 0.00817952 0.00818891 0.0081983 0.00820769 0.00821708 0.00822647 0.00823586 0.00824525 0.00825464 0.00826403 0.00827342 0.00828281 0.0082922 0.00830159 0.00831099 0.00832038 0.00832977 0.00833915 0.00834854 0.00835793 0.00836732 0.00837671 0.0083861 0.00839549 0.00840488 0.00841428 0.00842367 0.00843306 0.00844245 0.00845184 0.00846123 0.00847062 0.00848001 0.0084894 0.00849879 0.00850818 0.00851757 0.00852696 0.00853635 0.00854574 0.00855514 0.00856453 0.00857392 0.00858331 0.0085927 0.00860209 0.00861148 0.00862087 0.00863026 0.00863965 0.00864904 0.00865843 0.00866782 0.00867721 0.0086866 0.008696 0.00870539 0.00871478 0.00872417 0.00873356 0.00874295 0.00875234 0.00876173 0.00877112 0.00878051 0.0087899 0.00879929 0.00880868 0.00881807 0.00882746 0.00883686 0.00884625 0.00885564 0.00886503 0.00887442 0.00888381 0.0088932 0.00890259 0.00891198 0.00892137 0.00893076 0.00894015 0.00894954 0.00895893 0.00896832 0.00897772 0.00898711 0.0089965 0.00900589 0.00901528 0.00902467 0.00903406 0.00904345 0.00905284 0.00906223 0.00907162 0.00908101 0.0090904 0.00909979 0.00910918 +-0.0021137 -0.00196431 -0.00164275 -0.00095822 6.766E-05 0.00128779 0.00259673 0.00392729 0.00522048 0.00639632 0.00731589 0.00781178 0.00795929 0.00799294 0.008006 0.00801593 0.00802541 0.00803482 0.00804422 0.00805361 0.00806301 0.00807241 0.00808181 0.0080912 0.0081006 0.00811 0.0081194 0.00812879 0.00813819 0.00814759 0.00815699 0.00816638 0.00817578 0.00818518 0.00819457 0.00820397 0.00821337 0.00822277 0.00823216 0.00824156 0.00825096 0.00826036 0.00826975 0.00827915 0.00828855 0.00829795 0.00830734 0.00831674 0.00832614 0.00833554 0.00834493 0.00835432 0.00836372 0.00837312 0.00838252 0.00839191 0.00840131 0.00841071 0.00842011 0.0084295 0.0084389 0.0084483 0.0084577 0.00846709 0.00847649 0.00848589 0.00849529 0.00850468 0.00851408 0.00852348 0.00853287 0.00854227 0.00855167 0.00856107 0.00857046 0.00857986 0.00858926 0.00859866 0.00860805 0.00861745 0.00862685 0.00863625 0.00864564 0.00865504 0.00866444 0.00867384 0.00868323 0.00869263 0.00870203 0.00871143 0.00872082 0.00873022 0.00873962 0.00874902 0.00875841 0.00876781 0.00877721 0.0087866 0.008796 0.0088054 0.0088148 0.00882419 0.00883359 0.00884299 0.00885239 0.00886178 0.00887118 0.00888058 0.00888998 0.00889937 0.00890877 0.00891817 0.00892757 0.00893696 0.00894636 0.00895576 0.00896516 0.00897455 0.00898395 0.00899335 0.00900275 0.00901214 0.00902154 0.00903094 0.00904034 0.00904973 0.00905913 0.00906853 0.00907792 0.00908732 0.00909672 0.00910612 0.00911551 +-0.00211543 -0.00196583 -0.00164378 -0.000958606 6.7743E-05 0.00128819 0.00259739 0.00392823 0.00522182 0.00639832 0.00731908 0.00781642 0.00796464 0.00799844 0.00801152 0.00802147 0.00803095 0.00804037 0.00804977 0.00805918 0.00806858 0.00807799 0.00808739 0.00809679 0.0081062 0.0081156 0.00812501 0.00813441 0.00814382 0.00815322 0.00816262 0.00817203 0.00818143 0.00819084 0.00820024 0.00820964 0.00821905 0.00822845 0.00823786 0.00824726 0.00825667 0.00826607 0.00827547 0.00828488 0.00829428 0.00830369 0.00831309 0.0083225 0.0083319 0.0083413 0.0083507 0.0083601 0.00836951 0.00837891 0.00838832 0.00839772 0.00840713 0.00841653 0.00842593 0.00843534 0.00844474 0.00845415 0.00846355 0.00847295 0.00848236 0.00849176 0.00850117 0.00851057 0.00851998 0.00852938 0.00853878 0.00854819 0.00855759 0.008567 0.0085764 0.0085858 0.00859521 0.00860461 0.00861402 0.00862342 0.00863283 0.00864223 0.00865163 0.00866104 0.00867044 0.00867985 0.00868925 0.00869865 0.00870806 0.00871746 0.00872687 0.00873627 0.00874568 0.00875508 0.00876448 0.00877389 0.00878329 0.0087927 0.0088021 0.0088115 0.00882091 0.00883031 0.00883972 0.00884912 0.00885853 0.00886793 0.00887733 0.00888674 0.00889614 0.00890555 0.00891495 0.00892435 0.00893376 0.00894316 0.00895257 0.00896197 0.00897138 0.00898078 0.00899018 0.00899959 0.00900899 0.0090184 0.0090278 0.0090372 0.00904661 0.00905601 0.00906542 0.00907482 0.00908423 0.00909363 0.00910303 0.00911244 0.00912184 +-0.00211715 -0.00196734 -0.0016448 -0.00095899 6.78261E-05 0.00128859 0.00259805 0.00392917 0.00522316 0.00640032 0.00732226 0.00782106 0.00796998 0.00800393 0.00801705 0.008027 0.00803649 0.00804592 0.00805533 0.00806474 0.00807415 0.00808356 0.00809297 0.00810238 0.0081118 0.00812121 0.00813062 0.00814003 0.00814944 0.00815885 0.00816826 0.00817767 0.00818708 0.00819649 0.0082059 0.00821532 0.00822473 0.00823414 0.00824355 0.00825296 0.00826237 0.00827178 0.00828119 0.0082906 0.00830001 0.00830942 0.00831884 0.00832825 0.00833766 0.00834707 0.00835647 0.00836588 0.00837529 0.0083847 0.00839412 0.00840353 0.00841294 0.00842235 0.00843176 0.00844117 0.00845058 0.00845999 0.0084694 0.00847881 0.00848822 0.00849764 0.00850705 0.00851646 0.00852587 0.00853528 0.00854469 0.0085541 0.00856351 0.00857292 0.00858233 0.00859174 0.00860116 0.00861057 0.00861998 0.00862939 0.0086388 0.00864821 0.00865762 0.00866703 0.00867644 0.00868585 0.00869526 0.00870468 0.00871409 0.0087235 0.00873291 0.00874232 0.00875173 0.00876114 0.00877055 0.00877996 0.00878937 0.00879878 0.0088082 0.00881761 0.00882702 0.00883643 0.00884584 0.00885525 0.00886466 0.00887407 0.00888348 0.00889289 0.0089023 0.00891172 0.00892113 0.00893054 0.00893995 0.00894936 0.00895877 0.00896818 0.00897759 0.008987 0.00899641 0.00900582 0.00901524 0.00902465 0.00903406 0.00904347 0.00905288 0.00906229 0.0090717 0.00908111 0.00909052 0.00909993 0.00910934 0.00911876 0.00912817 +-0.00211887 -0.00196886 -0.00164583 -0.000959374 6.79091E-05 0.00128898 0.0025987 0.00393012 0.0052245 0.00640232 0.00732543 0.0078257 0.00797532 0.00800942 0.00802257 0.00803254 0.00804203 0.00805146 0.00806088 0.0080703 0.00807972 0.00808914 0.00809855 0.00810797 0.00811739 0.00812681 0.00813622 0.00814564 0.00815506 0.00816448 0.00817389 0.00818331 0.00819273 0.00820215 0.00821157 0.00822098 0.0082304 0.00823982 0.00824924 0.00825865 0.00826807 0.00827749 0.00828691 0.00829632 0.00830574 0.00831516 0.00832458 0.008334 0.00834341 0.00835282 0.00836224 0.00837166 0.00838108 0.00839049 0.00839991 0.00840933 0.00841875 0.00842816 0.00843758 0.008447 0.00845642 0.00846583 0.00847525 0.00848467 0.00849409 0.00850351 0.00851292 0.00852234 0.00853176 0.00854118 0.00855059 0.00856001 0.00856943 0.00857885 0.00858826 0.00859768 0.0086071 0.00861652 0.00862594 0.00863535 0.00864477 0.00865419 0.00866361 0.00867302 0.00868244 0.00869186 0.00870128 0.00871069 0.00872011 0.00872953 0.00873895 0.00874836 0.00875778 0.0087672 0.00877662 0.00878604 0.00879545 0.00880487 0.00881429 0.00882371 0.00883312 0.00884254 0.00885196 0.00886138 0.00887079 0.00888021 0.00888963 0.00889905 0.00890847 0.00891788 0.0089273 0.00893672 0.00894614 0.00895555 0.00896497 0.00897439 0.00898381 0.00899322 0.00900264 0.00901206 0.00902148 0.00903089 0.00904031 0.00904973 0.00905915 0.00906857 0.00907798 0.0090874 0.00909682 0.00910624 0.00911565 0.00912507 0.00913449 +-0.0021206 -0.00197037 -0.00164686 -0.000959758 6.79922E-05 0.00128938 0.00259936 0.00393106 0.00522584 0.00640432 0.0073286 0.00783033 0.00798066 0.00801492 0.00802809 0.00803807 0.00804757 0.00805701 0.00806643 0.00807586 0.00808528 0.00809471 0.00810413 0.00811356 0.00812298 0.0081324 0.00814183 0.00815125 0.00816068 0.0081701 0.00817953 0.00818895 0.00819838 0.0082078 0.00821722 0.00822665 0.00823607 0.0082455 0.00825492 0.00826435 0.00827377 0.0082832 0.00829262 0.00830204 0.00831147 0.00832089 0.00833032 0.00833974 0.00834917 0.00835858 0.00836801 0.00837743 0.00838686 0.00839628 0.0084057 0.00841513 0.00842455 0.00843398 0.0084434 0.00845283 0.00846225 0.00847168 0.0084811 0.00849052 0.00849995 0.00850937 0.0085188 0.00852822 0.00853765 0.00854707 0.0085565 0.00856592 0.00857534 0.00858477 0.00859419 0.00860362 0.00861304 0.00862247 0.00863189 0.00864131 0.00865074 0.00866016 0.00866959 0.00867901 0.00868844 0.00869786 0.00870729 0.00871671 0.00872613 0.00873556 0.00874498 0.00875441 0.00876383 0.00877326 0.00878268 0.00879211 0.00880153 0.00881095 0.00882038 0.0088298 0.00883923 0.00884865 0.00885808 0.0088675 0.00887693 0.00888635 0.00889577 0.0089052 0.00891462 0.00892405 0.00893347 0.0089429 0.00895232 0.00896174 0.00897117 0.00898059 0.00899002 0.00899944 0.00900887 0.00901829 0.00902772 0.00903714 0.00904656 0.00905599 0.00906541 0.00907484 0.00908426 0.00909369 0.00910311 0.00911254 0.00912196 0.00913138 0.00914081 +-0.00212232 -0.00197189 -0.00164788 -0.000960141 6.80753E-05 0.00128978 0.00260001 0.003932 0.00522717 0.00640631 0.00733177 0.00783495 0.00798599 0.0080204 0.00803361 0.00804359 0.00805311 0.00806255 0.00807198 0.00808141 0.00809084 0.00810028 0.00810971 0.00811914 0.00812857 0.008138 0.00814743 0.00815686 0.00816629 0.00817572 0.00818516 0.00819459 0.00820402 0.00821345 0.00822288 0.00823231 0.00824174 0.00825117 0.00826061 0.00827004 0.00827947 0.0082889 0.00829833 0.00830776 0.00831719 0.00832662 0.00833605 0.00834549 0.00835492 0.00836434 0.00837377 0.0083832 0.00839263 0.00840206 0.0084115 0.00842093 0.00843036 0.00843979 0.00844922 0.00845865 0.00846808 0.00847751 0.00848694 0.00849638 0.00850581 0.00851524 0.00852467 0.0085341 0.00854353 0.00855296 0.00856239 0.00857183 0.00858126 0.00859069 0.00860012 0.00860955 0.00861898 0.00862841 0.00863784 0.00864727 0.00865671 0.00866614 0.00867557 0.008685 0.00869443 0.00870386 0.00871329 0.00872272 0.00873215 0.00874159 0.00875102 0.00876045 0.00876988 0.00877931 0.00878874 0.00879817 0.0088076 0.00881704 0.00882647 0.0088359 0.00884533 0.00885476 0.00886419 0.00887362 0.00888305 0.00889248 0.00890192 0.00891135 0.00892078 0.00893021 0.00893964 0.00894907 0.0089585 0.00896793 0.00897736 0.0089868 0.00899623 0.00900566 0.00901509 0.00902452 0.00903395 0.00904338 0.00905281 0.00906225 0.00907168 0.00908111 0.00909054 0.00909997 0.0091094 0.00911883 0.00912826 0.00913769 0.00914713 +-0.00212404 -0.0019734 -0.00164891 -0.000960523 6.81584E-05 0.00129017 0.00260067 0.00393293 0.0052285 0.0064083 0.00733492 0.00783957 0.00799132 0.00802589 0.00803912 0.00804912 0.00805864 0.00806809 0.00807753 0.00808697 0.0080964 0.00810584 0.00811528 0.00812472 0.00813416 0.00814359 0.00815303 0.00816247 0.00817191 0.00818135 0.00819078 0.00820022 0.00820966 0.0082191 0.00822853 0.00823797 0.00824741 0.00825685 0.00826629 0.00827572 0.00828516 0.0082946 0.00830404 0.00831348 0.00832291 0.00833235 0.00834179 0.00835123 0.00836067 0.00837009 0.00837953 0.00838897 0.00839841 0.00840785 0.00841728 0.00842672 0.00843616 0.0084456 0.00845504 0.00846447 0.00847391 0.00848335 0.00849279 0.00850223 0.00851166 0.0085211 0.00853054 0.00853998 0.00854941 0.00855885 0.00856829 0.00857773 0.00858717 0.0085966 0.00860604 0.00861548 0.00862492 0.00863436 0.00864379 0.00865323 0.00866267 0.00867211 0.00868155 0.00869098 0.00870042 0.00870986 0.0087193 0.00872873 0.00873817 0.00874761 0.00875705 0.00876649 0.00877592 0.00878536 0.0087948 0.00880424 0.00881368 0.00882311 0.00883255 0.00884199 0.00885143 0.00886087 0.0088703 0.00887974 0.00888918 0.00889862 0.00890805 0.00891749 0.00892693 0.00893637 0.00894581 0.00895524 0.00896468 0.00897412 0.00898356 0.008993 0.00900243 0.00901187 0.00902131 0.00903075 0.00904019 0.00904962 0.00905906 0.0090685 0.00907794 0.00908737 0.00909681 0.00910625 0.00911569 0.00912513 0.00913456 0.009144 0.00915344 +-0.00212576 -0.00197491 -0.00164993 -0.000960905 6.82415E-05 0.00129057 0.00260132 0.00393387 0.00522983 0.00641029 0.00733808 0.00784418 0.00799665 0.00803137 0.00804464 0.00805464 0.00806417 0.00807363 0.00808307 0.00809252 0.00810196 0.00811141 0.00812085 0.0081303 0.00813974 0.00814918 0.00815863 0.00816807 0.00817752 0.00818696 0.00819641 0.00820585 0.0082153 0.00822474 0.00823419 0.00824363 0.00825308 0.00826252 0.00827197 0.00828141 0.00829085 0.0083003 0.00830974 0.00831919 0.00832863 0.00833808 0.00834752 0.00835697 0.00836641 0.00837585 0.00838529 0.00839474 0.00840418 0.00841363 0.00842307 0.00843252 0.00844196 0.0084514 0.00846085 0.00847029 0.00847974 0.00848918 0.00849863 0.00850807 0.00851752 0.00852696 0.00853641 0.00854585 0.0085553 0.00856474 0.00857418 0.00858363 0.00859307 0.00860252 0.00861196 0.00862141 0.00863085 0.0086403 0.00864974 0.00865919 0.00866863 0.00867808 0.00868752 0.00869697 0.00870641 0.00871585 0.0087253 0.00873474 0.00874419 0.00875363 0.00876308 0.00877252 0.00878197 0.00879141 0.00880086 0.0088103 0.00881975 0.00882919 0.00883863 0.00884808 0.00885752 0.00886697 0.00887641 0.00888586 0.0088953 0.00890475 0.00891419 0.00892364 0.00893308 0.00894253 0.00895197 0.00896141 0.00897086 0.0089803 0.00898975 0.00899919 0.00900864 0.00901808 0.00902753 0.00903697 0.00904642 0.00905586 0.00906531 0.00907475 0.0090842 0.00909364 0.00910308 0.00911253 0.00912197 0.00913142 0.00914086 0.00915031 0.00915975 +-0.00212748 -0.00197643 -0.00165096 -0.000961286 6.83246E-05 0.00129096 0.00260198 0.00393481 0.00523116 0.00641227 0.00734122 0.00784879 0.00800197 0.00803685 0.00805015 0.00806016 0.0080697 0.00807916 0.00808861 0.00809807 0.00810752 0.00811697 0.00812642 0.00813587 0.00814532 0.00815477 0.00816423 0.00817368 0.00818313 0.00819258 0.00820203 0.00821148 0.00822093 0.00823038 0.00823984 0.00824929 0.00825874 0.00826819 0.00827764 0.00828709 0.00829654 0.008306 0.00831545 0.0083249 0.00833435 0.0083438 0.00835325 0.0083627 0.00837216 0.0083816 0.00839105 0.0084005 0.00840995 0.0084194 0.00842885 0.00843831 0.00844776 0.00845721 0.00846666 0.00847611 0.00848556 0.00849501 0.00850447 0.00851392 0.00852337 0.00853282 0.00854227 0.00855172 0.00856117 0.00857063 0.00858008 0.00858953 0.00859898 0.00860843 0.00861788 0.00862733 0.00863678 0.00864624 0.00865569 0.00866514 0.00867459 0.00868404 0.00869349 0.00870294 0.0087124 0.00872185 0.0087313 0.00874075 0.0087502 0.00875965 0.0087691 0.00877856 0.00878801 0.00879746 0.00880691 0.00881636 0.00882581 0.00883526 0.00884471 0.00885417 0.00886362 0.00887307 0.00888252 0.00889197 0.00890142 0.00891087 0.00892033 0.00892978 0.00893923 0.00894868 0.00895813 0.00896758 0.00897703 0.00898649 0.00899594 0.00900539 0.00901484 0.00902429 0.00903374 0.00904319 0.00905264 0.0090621 0.00907155 0.009081 0.00909045 0.0090999 0.00910935 0.0091188 0.00912826 0.00913771 0.00914716 0.00915661 0.00916606 +-0.0021292 -0.00197794 -0.00165198 -0.000961667 6.84077E-05 0.00129135 0.00260263 0.00393574 0.00523249 0.00641425 0.00734436 0.00785339 0.0080073 0.00804233 0.00805566 0.00806568 0.00807522 0.00808469 0.00809415 0.00810361 0.00811307 0.00812253 0.00813199 0.00814144 0.0081509 0.00816036 0.00816982 0.00817928 0.00818873 0.00819819 0.00820765 0.00821711 0.00822657 0.00823603 0.00824548 0.00825494 0.0082644 0.00827386 0.00828332 0.00829277 0.00830223 0.00831169 0.00832115 0.00833061 0.00834006 0.00834952 0.00835898 0.00836844 0.00837789 0.00838735 0.0083968 0.00840626 0.00841572 0.00842518 0.00843464 0.00844409 0.00845355 0.00846301 0.00847247 0.00848193 0.00849138 0.00850084 0.0085103 0.00851976 0.00852922 0.00853868 0.00854813 0.00855759 0.00856705 0.00857651 0.00858597 0.00859542 0.00860488 0.00861434 0.0086238 0.00863326 0.00864271 0.00865217 0.00866163 0.00867109 0.00868055 0.00869 0.00869946 0.00870892 0.00871838 0.00872784 0.0087373 0.00874675 0.00875621 0.00876567 0.00877513 0.00878459 0.00879404 0.0088035 0.00881296 0.00882242 0.00883188 0.00884133 0.00885079 0.00886025 0.00886971 0.00887917 0.00888863 0.00889808 0.00890754 0.008917 0.00892646 0.00893592 0.00894537 0.00895483 0.00896429 0.00897375 0.00898321 0.00899266 0.00900212 0.00901158 0.00902104 0.0090305 0.00903995 0.00904941 0.00905887 0.00906833 0.00907779 0.00908725 0.0090967 0.00910616 0.00911562 0.00912508 0.00913454 0.00914399 0.00915345 0.00916291 0.00917237 +-0.00213092 -0.00197945 -0.001653 -0.000962047 6.84908E-05 0.00129175 0.00260328 0.00393668 0.00523381 0.00641622 0.0073475 0.00785798 0.00801261 0.00804781 0.00806116 0.0080712 0.00808075 0.00809022 0.00809969 0.00810916 0.00811862 0.00812809 0.00813755 0.00814701 0.00815648 0.00816594 0.00817541 0.00818487 0.00819434 0.0082038 0.00821327 0.00822273 0.0082322 0.00824166 0.00825113 0.00826059 0.00827006 0.00827952 0.00828899 0.00829845 0.00830792 0.00831738 0.00832685 0.00833631 0.00834578 0.00835524 0.00836471 0.00837417 0.00838363 0.00839309 0.00840256 0.00841202 0.00842149 0.00843095 0.00844042 0.00844988 0.00845935 0.00846881 0.00847827 0.00848774 0.0084972 0.00850667 0.00851613 0.0085256 0.00853506 0.00854453 0.00855399 0.00856346 0.00857292 0.00858239 0.00859185 0.00860132 0.00861078 0.00862025 0.00862971 0.00863918 0.00864864 0.00865811 0.00866757 0.00867704 0.0086865 0.00869597 0.00870543 0.0087149 0.00872436 0.00873383 0.00874329 0.00875275 0.00876222 0.00877168 0.00878115 0.00879061 0.00880008 0.00880954 0.00881901 0.00882847 0.00883794 0.0088474 0.00885687 0.00886633 0.0088758 0.00888526 0.00889473 0.00890419 0.00891366 0.00892312 0.00893259 0.00894205 0.00895152 0.00896098 0.00897045 0.00897991 0.00898938 0.00899884 0.00900831 0.00901777 0.00902723 0.0090367 0.00904616 0.00905563 0.00906509 0.00907456 0.00908402 0.00909349 0.00910295 0.00911242 0.00912188 0.00913135 0.00914081 0.00915028 0.00915974 0.00916921 0.00917867 +-0.00213264 -0.00198096 -0.00165402 -0.000962427 6.8574E-05 0.00129214 0.00260393 0.00393761 0.00523513 0.0064182 0.00735063 0.00786257 0.00801793 0.00805328 0.00806667 0.00807671 0.00808627 0.00809575 0.00810523 0.0081147 0.00812417 0.00813364 0.00814311 0.00815258 0.00816205 0.00817153 0.008181 0.00819047 0.00819994 0.00820941 0.00821888 0.00822836 0.00823783 0.0082473 0.00825677 0.00826624 0.00827571 0.00828519 0.00829466 0.00830413 0.0083136 0.00832307 0.00833254 0.00834201 0.00835149 0.00836096 0.00837043 0.0083799 0.00838936 0.00839883 0.00840831 0.00841778 0.00842725 0.00843672 0.00844619 0.00845566 0.00846514 0.00847461 0.00848408 0.00849355 0.00850302 0.00851249 0.00852196 0.00853144 0.00854091 0.00855038 0.00855985 0.00856932 0.00857879 0.00858827 0.00859774 0.00860721 0.00861668 0.00862615 0.00863562 0.0086451 0.00865457 0.00866404 0.00867351 0.00868298 0.00869245 0.00870192 0.0087114 0.00872087 0.00873034 0.00873981 0.00874928 0.00875875 0.00876823 0.0087777 0.00878717 0.00879664 0.00880611 0.00881558 0.00882505 0.00883453 0.008844 0.00885347 0.00886294 0.00887241 0.00888188 0.00889136 0.00890083 0.0089103 0.00891977 0.00892924 0.00893871 0.00894818 0.00895766 0.00896713 0.0089766 0.00898607 0.00899554 0.00900501 0.00901449 0.00902396 0.00903343 0.0090429 0.00905237 0.00906184 0.00907132 0.00908079 0.00909026 0.00909973 0.0091092 0.00911867 0.00912814 0.00913762 0.00914709 0.00915656 0.00916603 0.0091755 0.00918497 +-0.00213436 -0.00198247 -0.00165504 -0.000962806 6.86571E-05 0.00129253 0.00260458 0.00393854 0.00523645 0.00642016 0.00735375 0.00786715 0.00802324 0.00805875 0.00807217 0.00808222 0.00809179 0.00810128 0.00811076 0.00812024 0.00812971 0.00813919 0.00814867 0.00815815 0.00816763 0.00817711 0.00818658 0.00819606 0.00820554 0.00821502 0.0082245 0.00823398 0.00824345 0.00825293 0.00826241 0.00827189 0.00828137 0.00829085 0.00830032 0.0083098 0.00831928 0.00832876 0.00833824 0.00834772 0.00835719 0.00836667 0.00837615 0.00838563 0.0083951 0.00840458 0.00841405 0.00842353 0.00843301 0.00844249 0.00845197 0.00846145 0.00847092 0.0084804 0.00848988 0.00849936 0.00850884 0.00851831 0.00852779 0.00853727 0.00854675 0.00855623 0.00856571 0.00857518 0.00858466 0.00859414 0.00860362 0.0086131 0.00862258 0.00863205 0.00864153 0.00865101 0.00866049 0.00866997 0.00867945 0.00868892 0.0086984 0.00870788 0.00871736 0.00872684 0.00873632 0.00874579 0.00875527 0.00876475 0.00877423 0.00878371 0.00879318 0.00880266 0.00881214 0.00882162 0.0088311 0.00884058 0.00885005 0.00885953 0.00886901 0.00887849 0.00888797 0.00889745 0.00890692 0.0089164 0.00892588 0.00893536 0.00894484 0.00895432 0.00896379 0.00897327 0.00898275 0.00899223 0.00900171 0.00901119 0.00902066 0.00903014 0.00903962 0.0090491 0.00905858 0.00906806 0.00907753 0.00908701 0.00909649 0.00910597 0.00911545 0.00912492 0.0091344 0.00914388 0.00915336 0.00916284 0.00917232 0.00918179 0.00919127 +-0.00213608 -0.00198397 -0.00165606 -0.000963184 6.87403E-05 0.00129293 0.00260523 0.00393947 0.00523777 0.00642213 0.00735687 0.00787173 0.00802855 0.00806422 0.00807767 0.00808773 0.0080973 0.0081068 0.00811629 0.00812577 0.00813526 0.00814474 0.00815423 0.00816371 0.0081732 0.00818268 0.00819217 0.00820165 0.00821114 0.00822062 0.00823011 0.00823959 0.00824908 0.00825856 0.00826805 0.00827753 0.00828702 0.0082965 0.00830599 0.00831547 0.00832496 0.00833444 0.00834393 0.00835341 0.0083629 0.00837238 0.00838187 0.00839135 0.00840083 0.00841031 0.0084198 0.00842928 0.00843877 0.00844825 0.00845774 0.00846722 0.00847671 0.00848619 0.00849568 0.00850516 0.00851465 0.00852413 0.00853362 0.0085431 0.00855259 0.00856207 0.00857156 0.00858104 0.00859053 0.00860001 0.0086095 0.00861898 0.00862847 0.00863795 0.00864744 0.00865692 0.00866641 0.00867589 0.00868538 0.00869486 0.00870435 0.00871383 0.00872332 0.0087328 0.00874229 0.00875177 0.00876126 0.00877074 0.00878023 0.00878971 0.0087992 0.00880868 0.00881817 0.00882765 0.00883714 0.00884662 0.00885611 0.00886559 0.00887508 0.00888456 0.00889405 0.00890353 0.00891302 0.0089225 0.00893199 0.00894147 0.00895096 0.00896044 0.00896993 0.00897941 0.0089889 0.00899838 0.00900787 0.00901735 0.00902684 0.00903632 0.00904581 0.00905529 0.00906478 0.00907426 0.00908375 0.00909323 0.00910272 0.0091122 0.00912169 0.00913117 0.00914066 0.00915014 0.00915963 0.00916911 0.0091786 0.00918808 0.00919757 +-0.00213779 -0.00198548 -0.00165707 -0.000963562 6.88235E-05 0.00129332 0.00260588 0.0039404 0.00523909 0.00642409 0.00735998 0.0078763 0.00803385 0.00806968 0.00808316 0.00809324 0.00810282 0.00811232 0.00812182 0.00813131 0.0081408 0.00815029 0.00815978 0.00816928 0.00817877 0.00818826 0.00819775 0.00820724 0.00821673 0.00822623 0.00823572 0.00824521 0.0082547 0.00826419 0.00827368 0.00828318 0.00829267 0.00830216 0.00831165 0.00832114 0.00833063 0.00834013 0.00834962 0.00835911 0.0083686 0.00837809 0.00838758 0.00839708 0.00840656 0.00841605 0.00842554 0.00843503 0.00844453 0.00845402 0.00846351 0.008473 0.00848249 0.00849198 0.00850148 0.00851097 0.00852046 0.00852995 0.00853944 0.00854893 0.00855843 0.00856792 0.00857741 0.0085869 0.00859639 0.00860588 0.00861538 0.00862487 0.00863436 0.00864385 0.00865334 0.00866283 0.00867233 0.00868182 0.00869131 0.0087008 0.00871029 0.00871979 0.00872928 0.00873877 0.00874826 0.00875775 0.00876724 0.00877674 0.00878623 0.00879572 0.00880521 0.0088147 0.00882419 0.00883369 0.00884318 0.00885267 0.00886216 0.00887165 0.00888114 0.00889064 0.00890013 0.00890962 0.00891911 0.0089286 0.00893809 0.00894759 0.00895708 0.00896657 0.00897606 0.00898555 0.00899504 0.00900454 0.00901403 0.00902352 0.00903301 0.0090425 0.009052 0.00906149 0.00907098 0.00908047 0.00908996 0.00909945 0.00910895 0.00911844 0.00912793 0.00913742 0.00914691 0.0091564 0.0091659 0.00917539 0.00918488 0.00919437 0.00920386 +-0.00213951 -0.00198699 -0.00165809 -0.000963939 6.89067E-05 0.00129371 0.00260653 0.00394133 0.0052404 0.00642605 0.00736308 0.00788087 0.00803915 0.00807515 0.00808866 0.00809875 0.00810833 0.00811784 0.00812734 0.00813684 0.00814634 0.00815584 0.00816534 0.00817483 0.00818433 0.00819383 0.00820333 0.00821283 0.00822233 0.00823183 0.00824132 0.00825082 0.00826032 0.00826982 0.00827932 0.00828882 0.00829831 0.00830781 0.00831731 0.00832681 0.00833631 0.00834581 0.00835531 0.0083648 0.0083743 0.0083838 0.0083933 0.00840279 0.00841229 0.00842178 0.00843128 0.00844078 0.00845028 0.00845978 0.00846928 0.00847877 0.00848827 0.00849777 0.00850727 0.00851677 0.00852627 0.00853576 0.00854526 0.00855476 0.00856426 0.00857376 0.00858326 0.00859276 0.00860225 0.00861175 0.00862125 0.00863075 0.00864025 0.00864975 0.00865924 0.00866874 0.00867824 0.00868774 0.00869724 0.00870674 0.00871624 0.00872573 0.00873523 0.00874473 0.00875423 0.00876373 0.00877323 0.00878272 0.00879222 0.00880172 0.00881122 0.00882072 0.00883022 0.00883972 0.00884921 0.00885871 0.00886821 0.00887771 0.00888721 0.00889671 0.0089062 0.0089157 0.0089252 0.0089347 0.0089442 0.0089537 0.00896319 0.00897269 0.00898219 0.00899169 0.00900119 0.00901069 0.00902019 0.00902968 0.00903918 0.00904868 0.00905818 0.00906768 0.00907718 0.00908667 0.00909617 0.00910567 0.00911517 0.00912467 0.00913417 0.00914367 0.00915316 0.00916266 0.00917216 0.00918166 0.00919116 0.00920066 0.00921015 +-0.00214123 -0.0019885 -0.0016591 -0.000964316 6.89899E-05 0.0012941 0.00260718 0.00394225 0.00524172 0.006428 0.00736618 0.00788543 0.00804445 0.00808061 0.00809415 0.00810425 0.00811384 0.00812336 0.00813287 0.00814237 0.00815188 0.00816138 0.00817089 0.00818039 0.0081899 0.0081994 0.00820891 0.00821841 0.00822792 0.00823742 0.00824693 0.00825643 0.00826594 0.00827544 0.00828495 0.00829445 0.00830396 0.00831346 0.00832297 0.00833247 0.00834198 0.00835148 0.00836099 0.00837049 0.00838 0.00838951 0.00839901 0.0084085 0.00841801 0.00842752 0.00843702 0.00844653 0.00845603 0.00846554 0.00847504 0.00848455 0.00849405 0.00850356 0.00851306 0.00852257 0.00853207 0.00854158 0.00855108 0.00856059 0.00857009 0.0085796 0.0085891 0.00859861 0.00860811 0.00861762 0.00862712 0.00863663 0.00864613 0.00865564 0.00866514 0.00867465 0.00868415 0.00869366 0.00870316 0.00871267 0.00872217 0.00873168 0.00874119 0.00875069 0.0087602 0.0087697 0.00877921 0.00878871 0.00879822 0.00880772 0.00881723 0.00882673 0.00883624 0.00884574 0.00885525 0.00886475 0.00887426 0.00888376 0.00889327 0.00890277 0.00891228 0.00892178 0.00893129 0.00894079 0.0089503 0.0089598 0.00896931 0.00897881 0.00898832 0.00899782 0.00900733 0.00901683 0.00902634 0.00903584 0.00904535 0.00905486 0.00906436 0.00907387 0.00908337 0.00909288 0.00910238 0.00911189 0.00912139 0.0091309 0.0091404 0.00914991 0.00915941 0.00916892 0.00917842 0.00918793 0.00919743 0.00920694 0.00921644 +-0.00214294 -0.00199 -0.00166012 -0.000964692 6.90731E-05 0.00129449 0.00260783 0.00394318 0.00524303 0.00642996 0.00736928 0.00788998 0.00804975 0.00808607 0.00809964 0.00810975 0.00811935 0.00812887 0.00813839 0.0081479 0.00815741 0.00816692 0.00817643 0.00818595 0.00819546 0.00820497 0.00821448 0.00822399 0.00823351 0.00824302 0.00825253 0.00826204 0.00827155 0.00828107 0.00829058 0.00830009 0.0083096 0.00831911 0.00832862 0.00833814 0.00834765 0.00835716 0.00836667 0.00837618 0.0083857 0.00839521 0.00840472 0.00841422 0.00842373 0.00843324 0.00844276 0.00845227 0.00846178 0.00847129 0.0084808 0.00849032 0.00849983 0.00850934 0.00851885 0.00852836 0.00853787 0.00854739 0.0085569 0.00856641 0.00857592 0.00858543 0.00859495 0.00860446 0.00861397 0.00862348 0.00863299 0.00864251 0.00865202 0.00866153 0.00867104 0.00868055 0.00869006 0.00869958 0.00870909 0.0087186 0.00872811 0.00873762 0.00874714 0.00875665 0.00876616 0.00877567 0.00878518 0.0087947 0.00880421 0.00881372 0.00882323 0.00883274 0.00884225 0.00885177 0.00886128 0.00887079 0.0088803 0.00888981 0.00889933 0.00890884 0.00891835 0.00892786 0.00893737 0.00894688 0.0089564 0.00896591 0.00897542 0.00898493 0.00899444 0.00900396 0.00901347 0.00902298 0.00903249 0.009042 0.00905152 0.00906103 0.00907054 0.00908005 0.00908956 0.00909907 0.00910859 0.0091181 0.00912761 0.00913712 0.00914663 0.00915615 0.00916566 0.00917517 0.00918468 0.00919419 0.00920371 0.00921322 0.00922273 +-0.00214466 -0.00199151 -0.00166113 -0.000965068 6.91564E-05 0.00129488 0.00260847 0.0039441 0.00524434 0.0064319 0.00737236 0.00789453 0.00805504 0.00809153 0.00810513 0.00811525 0.00812485 0.00813439 0.00814391 0.00815342 0.00816294 0.00817246 0.00818198 0.0081915 0.00820102 0.00821054 0.00822005 0.00822957 0.00823909 0.00824861 0.00825813 0.00826765 0.00827717 0.00828668 0.0082962 0.00830572 0.00831524 0.00832476 0.00833428 0.0083438 0.00835331 0.00836283 0.00837235 0.00838187 0.00839139 0.00840091 0.00841043 0.00841993 0.00842945 0.00843897 0.00844849 0.00845801 0.00846753 0.00847705 0.00848656 0.00849608 0.0085056 0.00851512 0.00852464 0.00853416 0.00854368 0.00855319 0.00856271 0.00857223 0.00858175 0.00859127 0.00860079 0.00861031 0.00861982 0.00862934 0.00863886 0.00864838 0.0086579 0.00866742 0.00867694 0.00868645 0.00869597 0.00870549 0.00871501 0.00872453 0.00873405 0.00874357 0.00875308 0.0087626 0.00877212 0.00878164 0.00879116 0.00880068 0.0088102 0.00881971 0.00882923 0.00883875 0.00884827 0.00885779 0.00886731 0.00887683 0.00888634 0.00889586 0.00890538 0.0089149 0.00892442 0.00893394 0.00894346 0.00895297 0.00896249 0.00897201 0.00898153 0.00899105 0.00900057 0.00901009 0.0090196 0.00902912 0.00903864 0.00904816 0.00905768 0.0090672 0.00907672 0.00908623 0.00909575 0.00910527 0.00911479 0.00912431 0.00913383 0.00914335 0.00915286 0.00916238 0.0091719 0.00918142 0.00919094 0.00920046 0.00920998 0.00921949 0.00922901 +-0.00214637 -0.00199301 -0.00166214 -0.000965443 6.92396E-05 0.00129527 0.00260912 0.00394503 0.00524564 0.00643385 0.00737545 0.00789908 0.00806033 0.00809698 0.00811061 0.00812074 0.00813036 0.0081399 0.00814942 0.00815895 0.00816847 0.008178 0.00818752 0.00819705 0.00820657 0.0082161 0.00822562 0.00823515 0.00824468 0.0082542 0.00826373 0.00827325 0.00828278 0.0082923 0.00830183 0.00831135 0.00832088 0.0083304 0.00833993 0.00834945 0.00835898 0.0083685 0.00837803 0.00838755 0.00839708 0.00840661 0.00841613 0.00842564 0.00843517 0.0084447 0.00845422 0.00846375 0.00847327 0.0084828 0.00849232 0.00850185 0.00851137 0.0085209 0.00853042 0.00853995 0.00854947 0.008559 0.00856852 0.00857805 0.00858757 0.0085971 0.00860663 0.00861615 0.00862568 0.0086352 0.00864473 0.00865425 0.00866378 0.0086733 0.00868283 0.00869235 0.00870188 0.0087114 0.00872093 0.00873045 0.00873998 0.0087495 0.00875903 0.00876855 0.00877808 0.00878761 0.00879713 0.00880666 0.00881618 0.00882571 0.00883523 0.00884476 0.00885428 0.00886381 0.00887333 0.00888286 0.00889238 0.00890191 0.00891143 0.00892096 0.00893048 0.00894001 0.00894954 0.00895906 0.00896859 0.00897811 0.00898764 0.00899716 0.00900669 0.00901621 0.00902574 0.00903526 0.00904479 0.00905431 0.00906384 0.00907336 0.00908289 0.00909241 0.00910194 0.00911146 0.00912099 0.00913052 0.00914004 0.00914957 0.00915909 0.00916862 0.00917814 0.00918767 0.00919719 0.00920672 0.00921624 0.00922577 0.00923529 +-0.00214809 -0.00199451 -0.00166316 -0.000965818 6.93229E-05 0.00129566 0.00260976 0.00394595 0.00524695 0.00643579 0.00737852 0.00790362 0.00806561 0.00810243 0.0081161 0.00812624 0.00813586 0.0081454 0.00815494 0.00816447 0.008174 0.00818353 0.00819307 0.0082026 0.00821213 0.00822166 0.00823119 0.00824073 0.00825026 0.00825979 0.00826932 0.00827885 0.00828839 0.00829792 0.00830745 0.00831698 0.00832651 0.00833605 0.00834558 0.00835511 0.00836464 0.00837417 0.00838371 0.00839324 0.00840277 0.0084123 0.00842183 0.00843135 0.00844089 0.00845042 0.00845995 0.00846948 0.00847901 0.00848855 0.00849808 0.00850761 0.00851714 0.00852667 0.00853621 0.00854574 0.00855527 0.0085648 0.00857433 0.00858387 0.0085934 0.00860293 0.00861246 0.00862199 0.00863152 0.00864106 0.00865059 0.00866012 0.00866965 0.00867918 0.00868872 0.00869825 0.00870778 0.00871731 0.00872684 0.00873638 0.00874591 0.00875544 0.00876497 0.0087745 0.00878404 0.00879357 0.0088031 0.00881263 0.00882216 0.0088317 0.00884123 0.00885076 0.00886029 0.00886982 0.00887936 0.00888889 0.00889842 0.00890795 0.00891748 0.00892702 0.00893655 0.00894608 0.00895561 0.00896514 0.00897468 0.00898421 0.00899374 0.00900327 0.0090128 0.00902234 0.00903187 0.0090414 0.00905093 0.00906046 0.00907 0.00907953 0.00908906 0.00909859 0.00910812 0.00911766 0.00912719 0.00913672 0.00914625 0.00915578 0.00916532 0.00917485 0.00918438 0.00919391 0.00920344 0.00921298 0.00922251 0.00923204 0.00924157 +-0.0021498 -0.00199602 -0.00166417 -0.000966192 6.94061E-05 0.00129605 0.00261041 0.00394687 0.00524825 0.00643773 0.00738159 0.00790815 0.00807089 0.00810787 0.00812158 0.00813173 0.00814136 0.00815091 0.00816045 0.00816999 0.00817953 0.00818907 0.0081986 0.00820814 0.00821768 0.00822722 0.00823676 0.0082463 0.00825584 0.00826537 0.00827491 0.00828445 0.00829399 0.00830353 0.00831307 0.00832261 0.00833215 0.00834168 0.00835122 0.00836076 0.0083703 0.00837984 0.00838938 0.00839892 0.00840846 0.00841799 0.00842752 0.00843706 0.0084466 0.00845614 0.00846568 0.00847521 0.00848475 0.00849429 0.00850383 0.00851337 0.00852291 0.00853245 0.00854199 0.00855152 0.00856106 0.0085706 0.00858014 0.00858968 0.00859922 0.00860876 0.00861829 0.00862783 0.00863737 0.00864691 0.00865645 0.00866599 0.00867553 0.00868507 0.0086946 0.00870414 0.00871368 0.00872322 0.00873276 0.0087423 0.00875184 0.00876137 0.00877091 0.00878045 0.00878999 0.00879953 0.00880907 0.00881861 0.00882815 0.00883768 0.00884722 0.00885676 0.0088663 0.00887584 0.00888538 0.00889492 0.00890446 0.00891399 0.00892353 0.00893307 0.00894261 0.00895215 0.00896169 0.00897123 0.00898076 0.0089903 0.00899984 0.00900938 0.00901892 0.00902846 0.009038 0.00904754 0.00905707 0.00906661 0.00907615 0.00908569 0.00909523 0.00910477 0.00911431 0.00912384 0.00913338 0.00914292 0.00915246 0.009162 0.00917154 0.00918108 0.00919062 0.00920015 0.00920969 0.00921923 0.00922877 0.00923831 0.00924785 +-0.00215152 -0.00199752 -0.00166518 -0.000966565 6.94894E-05 0.00129644 0.00261105 0.00394779 0.00524955 0.00643966 0.00738466 0.00791267 0.00807617 0.00811331 0.00812706 0.00813722 0.00814685 0.00815641 0.00816596 0.0081755 0.00818505 0.0081946 0.00820414 0.00821369 0.00822323 0.00823278 0.00824232 0.00825187 0.00826141 0.00827096 0.0082805 0.00829005 0.00829959 0.00830914 0.00831869 0.00832823 0.00833778 0.00834732 0.00835687 0.00836641 0.00837596 0.0083855 0.00839505 0.00840459 0.00841414 0.00842368 0.00843322 0.00844276 0.00845231 0.00846185 0.0084714 0.00848095 0.00849049 0.00850004 0.00850958 0.00851913 0.00852867 0.00853822 0.00854776 0.00855731 0.00856685 0.0085764 0.00858594 0.00859549 0.00860504 0.00861458 0.00862413 0.00863367 0.00864322 0.00865276 0.00866231 0.00867185 0.0086814 0.00869094 0.00870049 0.00871003 0.00871958 0.00872913 0.00873867 0.00874822 0.00875776 0.00876731 0.00877685 0.0087864 0.00879594 0.00880549 0.00881503 0.00882458 0.00883412 0.00884367 0.00885322 0.00886276 0.00887231 0.00888185 0.0088914 0.00890094 0.00891049 0.00892003 0.00892958 0.00893912 0.00894867 0.00895821 0.00896776 0.00897731 0.00898685 0.0089964 0.00900594 0.00901549 0.00902503 0.00903458 0.00904412 0.00905367 0.00906321 0.00907276 0.0090823 0.00909185 0.0091014 0.00911094 0.00912049 0.00913003 0.00913958 0.00914912 0.00915867 0.00916821 0.00917776 0.0091873 0.00919685 0.00920639 0.00921594 0.00922549 0.00923503 0.00924458 0.00925412 +-0.00215323 -0.00199902 -0.00166618 -0.000966938 6.95727E-05 0.00129683 0.00261169 0.00394871 0.00525085 0.00644159 0.00738772 0.00791719 0.00808145 0.00811876 0.00813253 0.0081427 0.00815235 0.00816191 0.00817147 0.00818102 0.00819057 0.00820012 0.00820968 0.00821923 0.00822878 0.00823833 0.00824788 0.00825744 0.00826699 0.00827654 0.00828609 0.00829564 0.0083052 0.00831475 0.0083243 0.00833385 0.0083434 0.00835296 0.00836251 0.00837206 0.00838161 0.00839117 0.00840072 0.00841027 0.00841982 0.00842937 0.00843891 0.00844847 0.00845802 0.00846757 0.00847712 0.00848667 0.00849623 0.00850578 0.00851533 0.00852488 0.00853443 0.00854399 0.00855354 0.00856309 0.00857264 0.00858219 0.00859175 0.0086013 0.00861085 0.0086204 0.00862995 0.00863951 0.00864906 0.00865861 0.00866816 0.00867772 0.00868727 0.00869682 0.00870637 0.00871592 0.00872548 0.00873503 0.00874458 0.00875413 0.00876368 0.00877324 0.00878279 0.00879234 0.00880189 0.00881144 0.008821 0.00883055 0.0088401 0.00884965 0.0088592 0.00886876 0.00887831 0.00888786 0.00889741 0.00890697 0.00891652 0.00892607 0.00893562 0.00894517 0.00895473 0.00896428 0.00897383 0.00898338 0.00899293 0.00900249 0.00901204 0.00902159 0.00903114 0.00904069 0.00905025 0.0090598 0.00906935 0.0090789 0.00908845 0.00909801 0.00910756 0.00911711 0.00912666 0.00913622 0.00914577 0.00915532 0.00916487 0.00917442 0.00918398 0.00919353 0.00920308 0.00921263 0.00922218 0.00923174 0.00924129 0.00925084 0.00926039 +-0.00215494 -0.00200052 -0.00166719 -0.000967311 6.9656E-05 0.00129722 0.00261233 0.00394963 0.00525215 0.00644352 0.00739077 0.00792171 0.00808672 0.0081242 0.00813799 0.00814818 0.00815783 0.0081674 0.00817696 0.00818653 0.00819609 0.00820565 0.00821521 0.00822477 0.00823433 0.00824388 0.00825344 0.008263 0.00827256 0.00828212 0.00829168 0.00830124 0.0083108 0.00832035 0.00832991 0.00833947 0.00834903 0.00835859 0.00836815 0.00837771 0.00838727 0.00839682 0.00840638 0.00841594 0.0084255 0.00843506 0.00844461 0.00845416 0.00846372 0.00847328 0.00848284 0.0084924 0.00850196 0.00851152 0.00852108 0.00853063 0.00854019 0.00854975 0.00855931 0.00856887 0.00857843 0.00858799 0.00859755 0.0086071 0.00861666 0.00862622 0.00863578 0.00864534 0.0086549 0.00866446 0.00867402 0.00868358 0.00869313 0.00870269 0.00871225 0.00872181 0.00873137 0.00874093 0.00875049 0.00876005 0.0087696 0.00877916 0.00878872 0.00879828 0.00880784 0.0088174 0.00882696 0.00883652 0.00884607 0.00885563 0.00886519 0.00887475 0.00888431 0.00889387 0.00890343 0.00891299 0.00892254 0.0089321 0.00894166 0.00895122 0.00896078 0.00897034 0.0089799 0.00898946 0.00899901 0.00900857 0.00901813 0.00902769 0.00903725 0.00904681 0.00905637 0.00906593 0.00907548 0.00908504 0.0090946 0.00910416 0.00911372 0.00912328 0.00913284 0.0091424 0.00915196 0.00916151 0.00917107 0.00918063 0.00919019 0.00919975 0.00920931 0.00921887 0.00922843 0.00923798 0.00924754 0.0092571 0.00926666 +-0.00215665 -0.00200202 -0.0016682 -0.000967683 6.97393E-05 0.00129761 0.00261298 0.00395054 0.00525344 0.00644545 0.00739382 0.00792622 0.00809199 0.00812964 0.00814347 0.00815366 0.00816332 0.0081729 0.00818246 0.00819203 0.00820159 0.00821116 0.00822072 0.00823029 0.00823986 0.00824942 0.00825899 0.00826855 0.00827812 0.00828768 0.00829725 0.00830681 0.00831638 0.00832594 0.00833551 0.00834508 0.00835464 0.00836421 0.00837377 0.00838334 0.0083929 0.00840247 0.00841203 0.0084216 0.00843117 0.00844073 0.0084503 0.00845986 0.00846943 0.00847899 0.00848856 0.00849812 0.00850769 0.00851725 0.00852682 0.00853639 0.00854595 0.00855552 0.00856508 0.00857465 0.00858421 0.00859378 0.00860334 0.00861291 0.00862247 0.00863204 0.00864161 0.00865117 0.00866074 0.0086703 0.00867987 0.00868943 0.008699 0.00870856 0.00871813 0.00872769 0.00873726 0.00874683 0.00875639 0.00876596 0.00877552 0.00878509 0.00879465 0.00880422 0.00881378 0.00882335 0.00883291 0.00884248 0.00885205 0.00886161 0.00887118 0.00888074 0.00889031 0.00889987 0.00890944 0.008919 0.00892857 0.00893813 0.0089477 0.00895727 0.00896683 0.0089764 0.00898596 0.00899553 0.00900509 0.00901466 0.00902422 0.00903379 0.00904335 0.00905292 0.00906249 0.00907205 0.00908162 0.00909118 0.00910075 0.00911031 0.00911988 0.00912944 0.00913901 0.00914858 0.00915814 0.00916771 0.00917727 0.00918684 0.0091964 0.00920597 0.00921553 0.0092251 0.00923466 0.00924423 0.0092538 0.00926336 0.00927293 +-0.00215836 -0.00200352 -0.0016692 -0.000968054 6.98226E-05 0.001298 0.00261362 0.00395146 0.00525474 0.00644737 0.00739687 0.00793072 0.00809726 0.00813508 0.00814894 0.00815914 0.0081688 0.00817839 0.00818796 0.00819754 0.00820711 0.00821668 0.00822625 0.00823582 0.0082454 0.00825497 0.00826454 0.00827411 0.00828369 0.00829326 0.00830283 0.0083124 0.00832197 0.00833155 0.00834112 0.00835069 0.00836026 0.00836983 0.00837941 0.00838898 0.00839855 0.00840812 0.0084177 0.00842727 0.00843684 0.00844641 0.00845598 0.00846556 0.00847513 0.0084847 0.00849427 0.00850384 0.00851342 0.00852299 0.00853256 0.00854213 0.00855171 0.00856128 0.00857085 0.00858042 0.00858999 0.00859957 0.00860914 0.00861871 0.00862828 0.00863785 0.00864743 0.008657 0.00866657 0.00867614 0.00868572 0.00869529 0.00870486 0.00871443 0.008724 0.00873358 0.00874315 0.00875272 0.00876229 0.00877187 0.00878144 0.00879101 0.00880058 0.00881015 0.00881973 0.0088293 0.00883887 0.00884844 0.00885801 0.00886759 0.00887716 0.00888673 0.0088963 0.00890588 0.00891545 0.00892502 0.00893459 0.00894416 0.00895374 0.00896331 0.00897288 0.00898245 0.00899202 0.0090016 0.00901117 0.00902074 0.00903031 0.00903989 0.00904946 0.00905903 0.0090686 0.00907817 0.00908775 0.00909732 0.00910689 0.00911646 0.00912603 0.00913561 0.00914518 0.00915475 0.00916432 0.0091739 0.00918347 0.00919304 0.00920261 0.00921218 0.00922176 0.00923133 0.0092409 0.00925047 0.00926005 0.00926962 0.00927919 +-0.00216007 -0.00200502 -0.00167021 -0.000968425 6.9906E-05 0.00129838 0.00261426 0.00395237 0.00525603 0.00644929 0.0073999 0.00793522 0.00810252 0.00814051 0.0081544 0.00816462 0.00817429 0.00818388 0.00819346 0.00820304 0.00821262 0.0082222 0.00823178 0.00824136 0.00825094 0.00826051 0.00827009 0.00827967 0.00828925 0.00829883 0.00830841 0.00831799 0.00832757 0.00833714 0.00834672 0.0083563 0.00836588 0.00837546 0.00838504 0.00839462 0.0084042 0.00841378 0.00842335 0.00843293 0.00844251 0.00845209 0.00846167 0.00847125 0.00848083 0.00849041 0.00849999 0.00850956 0.00851914 0.00852872 0.0085383 0.00854788 0.00855746 0.00856704 0.00857662 0.00858619 0.00859577 0.00860535 0.00861493 0.00862451 0.00863409 0.00864367 0.00865325 0.00866283 0.0086724 0.00868198 0.00869156 0.00870114 0.00871072 0.0087203 0.00872988 0.00873946 0.00874903 0.00875861 0.00876819 0.00877777 0.00878735 0.00879693 0.00880651 0.00881609 0.00882567 0.00883524 0.00884482 0.0088544 0.00886398 0.00887356 0.00888314 0.00889272 0.0089023 0.00891188 0.00892145 0.00893103 0.00894061 0.00895019 0.00895977 0.00896935 0.00897893 0.00898851 0.00899808 0.00900766 0.00901724 0.00902682 0.0090364 0.00904598 0.00905556 0.00906514 0.00907472 0.00908429 0.00909387 0.00910345 0.00911303 0.00912261 0.00913219 0.00914177 0.00915135 0.00916093 0.0091705 0.00918008 0.00918966 0.00919924 0.00920882 0.0092184 0.00922798 0.00923756 0.00924713 0.00925671 0.00926629 0.00927587 0.00928545 +-0.00216178 -0.00200651 -0.00167121 -0.000968795 6.99893E-05 0.00129877 0.0026149 0.00395329 0.00525732 0.0064512 0.00740293 0.00793971 0.00810778 0.00814594 0.00815987 0.00817009 0.00817977 0.00818937 0.00819896 0.00820854 0.00821813 0.00822771 0.0082373 0.00824689 0.00825647 0.00826606 0.00827564 0.00828523 0.00829481 0.0083044 0.00831398 0.00832357 0.00833316 0.00834274 0.00835233 0.00836191 0.0083715 0.00838108 0.00839067 0.00840025 0.00840984 0.00841943 0.00842901 0.0084386 0.00844818 0.00845777 0.00846735 0.00847694 0.00848652 0.00849611 0.0085057 0.00851528 0.00852487 0.00853445 0.00854404 0.00855362 0.00856321 0.00857279 0.00858238 0.00859196 0.00860155 0.00861114 0.00862072 0.00863031 0.00863989 0.00864948 0.00865906 0.00866865 0.00867823 0.00868782 0.00869741 0.00870699 0.00871658 0.00872616 0.00873575 0.00874533 0.00875492 0.0087645 0.00877409 0.00878368 0.00879326 0.00880285 0.00881243 0.00882202 0.0088316 0.00884119 0.00885077 0.00886036 0.00886995 0.00887953 0.00888912 0.0088987 0.00890829 0.00891787 0.00892746 0.00893704 0.00894663 0.00895621 0.0089658 0.00897539 0.00898497 0.00899456 0.00900414 0.00901373 0.00902331 0.0090329 0.00904248 0.00905207 0.00906166 0.00907124 0.00908083 0.00909041 0.0091 0.00910958 0.00911917 0.00912875 0.00913834 0.00914793 0.00915751 0.0091671 0.00917668 0.00918627 0.00919585 0.00920544 0.00921502 0.00922461 0.0092342 0.00924378 0.00925337 0.00926295 0.00927254 0.00928212 0.00929171 +-0.00216349 -0.00200801 -0.00167222 -0.000969165 7.00727E-05 0.00129916 0.00261553 0.0039542 0.00525861 0.00645311 0.00740596 0.0079442 0.00811304 0.00815137 0.00816533 0.00817557 0.00818525 0.00819486 0.00820445 0.00821404 0.00822364 0.00823323 0.00824282 0.00825241 0.00826201 0.0082716 0.00828119 0.00829078 0.00830037 0.00830997 0.00831956 0.00832915 0.00833874 0.00834834 0.00835793 0.00836752 0.00837711 0.0083867 0.0083963 0.00840589 0.00841548 0.00842507 0.00843467 0.00844426 0.00845385 0.00846344 0.00847303 0.00848263 0.00849222 0.00850181 0.0085114 0.008521 0.00853059 0.00854018 0.00854977 0.00855936 0.00856896 0.00857855 0.00858814 0.00859773 0.00860732 0.00861692 0.00862651 0.0086361 0.00864569 0.00865529 0.00866488 0.00867447 0.00868406 0.00869365 0.00870325 0.00871284 0.00872243 0.00873202 0.00874162 0.00875121 0.0087608 0.00877039 0.00877998 0.00878958 0.00879917 0.00880876 0.00881835 0.00882795 0.00883754 0.00884713 0.00885672 0.00886631 0.00887591 0.0088855 0.00889509 0.00890468 0.00891428 0.00892387 0.00893346 0.00894305 0.00895264 0.00896224 0.00897183 0.00898142 0.00899101 0.00900061 0.0090102 0.00901979 0.00902938 0.00903897 0.00904857 0.00905816 0.00906775 0.00907734 0.00908694 0.00909653 0.00910612 0.00911571 0.0091253 0.0091349 0.00914449 0.00915408 0.00916367 0.00917327 0.00918286 0.00919245 0.00920204 0.00921163 0.00922123 0.00923082 0.00924041 0.00925 0.0092596 0.00926919 0.00927878 0.00928837 0.00929796 +-0.0021652 -0.00200951 -0.00167322 -0.000969534 7.01561E-05 0.00129954 0.00261617 0.00395511 0.0052599 0.00645502 0.00740898 0.00794868 0.00811829 0.0081568 0.00817079 0.00818104 0.00819073 0.00820034 0.00820994 0.00821954 0.00822914 0.00823874 0.00824834 0.00825794 0.00826754 0.00827714 0.00828674 0.00829633 0.00830593 0.00831553 0.00832513 0.00833473 0.00834433 0.00835393 0.00836353 0.00837313 0.00838272 0.00839232 0.00840192 0.00841152 0.00842112 0.00843072 0.00844032 0.00844992 0.00845952 0.00846911 0.00847871 0.00848831 0.00849791 0.00850751 0.00851711 0.00852671 0.00853631 0.00854591 0.0085555 0.0085651 0.0085747 0.0085843 0.0085939 0.0086035 0.0086131 0.0086227 0.00863229 0.00864189 0.00865149 0.00866109 0.00867069 0.00868029 0.00868989 0.00869949 0.00870909 0.00871868 0.00872828 0.00873788 0.00874748 0.00875708 0.00876668 0.00877628 0.00878588 0.00879548 0.00880507 0.00881467 0.00882427 0.00883387 0.00884347 0.00885307 0.00886267 0.00887227 0.00888187 0.00889146 0.00890106 0.00891066 0.00892026 0.00892986 0.00893946 0.00894906 0.00895866 0.00896826 0.00897785 0.00898745 0.00899705 0.00900665 0.00901625 0.00902585 0.00903545 0.00904505 0.00905465 0.00906424 0.00907384 0.00908344 0.00909304 0.00910264 0.00911224 0.00912184 0.00913144 0.00914104 0.00915063 0.00916023 0.00916983 0.00917943 0.00918903 0.00919863 0.00920823 0.00921783 0.00922743 0.00923702 0.00924662 0.00925622 0.00926582 0.00927542 0.00928502 0.00929462 0.00930422 +-0.00216691 -0.002011 -0.00167422 -0.000969902 7.02395E-05 0.00129993 0.00261681 0.00395602 0.00526118 0.00645693 0.007412 0.00795316 0.00812354 0.00816222 0.00817625 0.00818651 0.00819621 0.00820583 0.00821543 0.00822504 0.00823464 0.00824425 0.00825386 0.00826346 0.00827307 0.00828267 0.00829228 0.00830188 0.00831149 0.00832109 0.0083307 0.00834031 0.00834991 0.00835952 0.00836912 0.00837873 0.00838833 0.00839794 0.00840754 0.00841715 0.00842676 0.00843636 0.00844597 0.00845557 0.00846518 0.00847478 0.00848439 0.00849399 0.0085036 0.00851321 0.00852281 0.00853242 0.00854202 0.00855163 0.00856123 0.00857084 0.00858044 0.00859005 0.00859966 0.00860926 0.00861887 0.00862847 0.00863808 0.00864768 0.00865729 0.00866689 0.0086765 0.00868611 0.00869571 0.00870532 0.00871492 0.00872453 0.00873413 0.00874374 0.00875334 0.00876295 0.00877256 0.00878216 0.00879177 0.00880137 0.00881098 0.00882058 0.00883019 0.0088398 0.0088494 0.00885901 0.00886861 0.00887822 0.00888782 0.00889743 0.00890703 0.00891664 0.00892625 0.00893585 0.00894546 0.00895506 0.00896467 0.00897427 0.00898388 0.00899348 0.00900309 0.0090127 0.0090223 0.00903191 0.00904151 0.00905112 0.00906072 0.00907033 0.00907993 0.00908954 0.00909915 0.00910875 0.00911836 0.00912796 0.00913757 0.00914717 0.00915678 0.00916638 0.00917599 0.0091856 0.0091952 0.00920481 0.00921441 0.00922402 0.00923362 0.00924323 0.00925283 0.00926244 0.00927205 0.00928165 0.00929126 0.00930086 0.00931047 +-0.00216862 -0.0020125 -0.00167522 -0.00097027 7.03229E-05 0.00130032 0.00261745 0.00395693 0.00526246 0.00645883 0.00741501 0.00795763 0.00812879 0.00816765 0.00818171 0.00819197 0.00820168 0.00821131 0.00822092 0.00823053 0.00824015 0.00824976 0.00825937 0.00826898 0.00827859 0.00828821 0.00829782 0.00830743 0.00831704 0.00832666 0.00833627 0.00834588 0.00835549 0.0083651 0.00837472 0.00838433 0.00839394 0.00840355 0.00841317 0.00842278 0.00843239 0.008442 0.00845161 0.00846123 0.00847084 0.00848045 0.00849006 0.00849968 0.00850929 0.0085189 0.00852851 0.00853812 0.00854774 0.00855735 0.00856696 0.00857657 0.00858619 0.0085958 0.00860541 0.00861502 0.00862463 0.00863425 0.00864386 0.00865347 0.00866308 0.0086727 0.00868231 0.00869192 0.00870153 0.00871114 0.00872076 0.00873037 0.00873998 0.00874959 0.00875921 0.00876882 0.00877843 0.00878804 0.00879765 0.00880727 0.00881688 0.00882649 0.0088361 0.00884572 0.00885533 0.00886494 0.00887455 0.00888417 0.00889378 0.00890339 0.008913 0.00892261 0.00893223 0.00894184 0.00895145 0.00896106 0.00897068 0.00898029 0.0089899 0.00899951 0.00900912 0.00901874 0.00902835 0.00903796 0.00904757 0.00905719 0.0090668 0.00907641 0.00908602 0.00909563 0.00910525 0.00911486 0.00912447 0.00913408 0.0091437 0.00915331 0.00916292 0.00917253 0.00918214 0.00919176 0.00920137 0.00921098 0.00922059 0.00923021 0.00923982 0.00924943 0.00925904 0.00926865 0.00927827 0.00928788 0.00929749 0.0093071 0.00931672 +-0.00217033 -0.00201399 -0.00167622 -0.000970638 7.04063E-05 0.0013007 0.00261808 0.00395783 0.00526374 0.00646073 0.00741801 0.00796209 0.00813403 0.00817307 0.00818716 0.00819744 0.00820715 0.00821678 0.00822641 0.00823602 0.00824564 0.00825526 0.00826488 0.0082745 0.00828412 0.00829374 0.00830336 0.00831298 0.00832259 0.00833221 0.00834183 0.00835145 0.00836107 0.00837069 0.00838031 0.00838993 0.00839955 0.00840917 0.00841878 0.0084284 0.00843802 0.00844764 0.00845726 0.00846688 0.0084765 0.00848612 0.00849574 0.00850535 0.00851497 0.00852459 0.00853421 0.00854383 0.00855345 0.00856307 0.00857269 0.00858231 0.00859192 0.00860154 0.00861116 0.00862078 0.0086304 0.00864002 0.00864964 0.00865926 0.00866888 0.00867849 0.00868811 0.00869773 0.00870735 0.00871697 0.00872659 0.00873621 0.00874583 0.00875545 0.00876506 0.00877468 0.0087843 0.00879392 0.00880354 0.00881316 0.00882278 0.0088324 0.00884202 0.00885163 0.00886125 0.00887087 0.00888049 0.00889011 0.00889973 0.00890935 0.00891897 0.00892859 0.0089382 0.00894782 0.00895744 0.00896706 0.00897668 0.0089863 0.00899592 0.00900554 0.00901516 0.00902478 0.00903439 0.00904401 0.00905363 0.00906325 0.00907287 0.00908249 0.00909211 0.00910173 0.00911135 0.00912096 0.00913058 0.0091402 0.00914982 0.00915944 0.00916906 0.00917868 0.0091883 0.00919792 0.00920753 0.00921715 0.00922677 0.00923639 0.00924601 0.00925563 0.00926525 0.00927487 0.00928449 0.0092941 0.00930372 0.00931334 0.00932296 +-0.00217203 -0.00201548 -0.00167722 -0.000971005 7.04897E-05 0.00130109 0.00261872 0.00395874 0.00526502 0.00646262 0.00742101 0.00796655 0.00813927 0.00817849 0.00819261 0.0082029 0.00821262 0.00822226 0.00823189 0.00824151 0.00825114 0.00826077 0.00827039 0.00828002 0.00828964 0.00829927 0.00830889 0.00831852 0.00832814 0.00833777 0.0083474 0.00835702 0.00836665 0.00837627 0.0083859 0.00839552 0.00840515 0.00841477 0.0084244 0.00843403 0.00844365 0.00845328 0.0084629 0.00847253 0.00848215 0.00849178 0.0085014 0.00851103 0.00852066 0.00853028 0.00853991 0.00854953 0.00855916 0.00856878 0.00857841 0.00858803 0.00859766 0.00860729 0.00861691 0.00862654 0.00863616 0.00864579 0.00865541 0.00866504 0.00867467 0.00868429 0.00869392 0.00870354 0.00871317 0.00872279 0.00873242 0.00874204 0.00875167 0.0087613 0.00877092 0.00878055 0.00879017 0.0087998 0.00880942 0.00881905 0.00882867 0.0088383 0.00884793 0.00885755 0.00886718 0.0088768 0.00888643 0.00889605 0.00890568 0.0089153 0.00892493 0.00893456 0.00894418 0.00895381 0.00896343 0.00897306 0.00898268 0.00899231 0.00900193 0.00901156 0.00902119 0.00903081 0.00904044 0.00905006 0.00905969 0.00906931 0.00907894 0.00908856 0.00909819 0.00910782 0.00911744 0.00912707 0.00913669 0.00914632 0.00915594 0.00916557 0.0091752 0.00918482 0.00919445 0.00920407 0.0092137 0.00922332 0.00923295 0.00924257 0.0092522 0.00926183 0.00927145 0.00928108 0.0092907 0.00930033 0.00930995 0.00931958 0.0093292 +-0.00217374 -0.00201698 -0.00167821 -0.000971371 7.05731E-05 0.00130147 0.00261935 0.00395965 0.0052663 0.00646452 0.007424 0.007971 0.00814451 0.0081839 0.00819806 0.00820836 0.00821809 0.00822773 0.00823737 0.008247 0.00825663 0.00826627 0.0082759 0.00828553 0.00829516 0.00830479 0.00831443 0.00832406 0.00833369 0.00834332 0.00835296 0.00836259 0.00837222 0.00838185 0.00839149 0.00840112 0.00841075 0.00842038 0.00843001 0.00843965 0.00844928 0.00845891 0.00846854 0.00847818 0.00848781 0.00849744 0.00850707 0.0085167 0.00852634 0.00853597 0.0085456 0.00855523 0.00856487 0.0085745 0.00858413 0.00859376 0.00860339 0.00861303 0.00862266 0.00863229 0.00864192 0.00865156 0.00866119 0.00867082 0.00868045 0.00869008 0.00869972 0.00870935 0.00871898 0.00872861 0.00873825 0.00874788 0.00875751 0.00876714 0.00877677 0.00878641 0.00879604 0.00880567 0.0088153 0.00882494 0.00883457 0.0088442 0.00885383 0.00886346 0.0088731 0.00888273 0.00889236 0.00890199 0.00891163 0.00892126 0.00893089 0.00894052 0.00895016 0.00895979 0.00896942 0.00897905 0.00898868 0.00899832 0.00900795 0.00901758 0.00902721 0.00903685 0.00904648 0.00905611 0.00906574 0.00907537 0.00908501 0.00909464 0.00910427 0.0091139 0.00912354 0.00913317 0.0091428 0.00915243 0.00916206 0.0091717 0.00918133 0.00919096 0.00920059 0.00921023 0.00921986 0.00922949 0.00923912 0.00924875 0.00925839 0.00926802 0.00927765 0.00928728 0.00929692 0.00930655 0.00931618 0.00932581 0.00933544 +-0.00217545 -0.00201847 -0.00167921 -0.000971737 7.06566E-05 0.00130186 0.00261998 0.00396055 0.00526758 0.0064664 0.00742699 0.00797545 0.00814974 0.00818931 0.00820351 0.00821382 0.00822355 0.00823321 0.00824285 0.00825249 0.00826213 0.00827176 0.0082814 0.00829104 0.00830068 0.00831032 0.00831996 0.0083296 0.00833924 0.00834888 0.00835851 0.00836815 0.00837779 0.00838743 0.00839707 0.00840671 0.00841635 0.00842599 0.00843563 0.00844526 0.0084549 0.00846454 0.00847418 0.00848382 0.00849346 0.0085031 0.00851274 0.00852238 0.00853201 0.00854165 0.00855129 0.00856093 0.00857057 0.00858021 0.00858985 0.00859949 0.00860913 0.00861876 0.0086284 0.00863804 0.00864768 0.00865732 0.00866696 0.0086766 0.00868624 0.00869588 0.00870552 0.00871515 0.00872479 0.00873443 0.00874407 0.00875371 0.00876335 0.00877299 0.00878263 0.00879227 0.0088019 0.00881154 0.00882118 0.00883082 0.00884046 0.0088501 0.00885974 0.00886938 0.00887902 0.00888865 0.00889829 0.00890793 0.00891757 0.00892721 0.00893685 0.00894649 0.00895613 0.00896577 0.0089754 0.00898504 0.00899468 0.00900432 0.00901396 0.0090236 0.00903324 0.00904288 0.00905252 0.00906215 0.00907179 0.00908143 0.00909107 0.00910071 0.00911035 0.00911999 0.00912963 0.00913927 0.0091489 0.00915854 0.00916818 0.00917782 0.00918746 0.0091971 0.00920674 0.00921638 0.00922602 0.00923565 0.00924529 0.00925493 0.00926457 0.00927421 0.00928385 0.00929349 0.00930313 0.00931277 0.00932241 0.00933204 0.00934168 +-0.00217715 -0.00201996 -0.0016802 -0.000972103 7.074E-05 0.00130224 0.00262062 0.00396145 0.00526885 0.00646829 0.00742997 0.00797989 0.00815497 0.00819472 0.00820895 0.00821927 0.00822902 0.00823868 0.00824832 0.00825797 0.00826761 0.00827726 0.00828691 0.00829655 0.0083062 0.00831584 0.00832549 0.00833513 0.00834478 0.00835443 0.00836407 0.00837372 0.00838336 0.00839301 0.00840265 0.0084123 0.00842194 0.00843159 0.00844124 0.00845088 0.00846053 0.00847017 0.00847982 0.00848946 0.00849911 0.00850875 0.0085184 0.00852805 0.00853769 0.00854734 0.00855698 0.00856663 0.00857627 0.00858592 0.00859556 0.00860521 0.00861486 0.0086245 0.00863415 0.00864379 0.00865344 0.00866308 0.00867273 0.00868237 0.00869202 0.00870167 0.00871131 0.00872096 0.0087306 0.00874025 0.00874989 0.00875954 0.00876918 0.00877883 0.00878848 0.00879812 0.00880777 0.00881741 0.00882706 0.0088367 0.00884635 0.00885599 0.00886564 0.00887529 0.00888493 0.00889458 0.00890422 0.00891387 0.00892351 0.00893316 0.0089428 0.00895245 0.0089621 0.00897174 0.00898139 0.00899103 0.00900068 0.00901032 0.00901997 0.00902961 0.00903926 0.00904891 0.00905855 0.0090682 0.00907784 0.00908749 0.00909713 0.00910678 0.00911642 0.00912607 0.00913572 0.00914536 0.00915501 0.00916465 0.0091743 0.00918394 0.00919359 0.00920323 0.00921288 0.00922253 0.00923217 0.00924182 0.00925146 0.00926111 0.00927075 0.0092804 0.00929005 0.00929969 0.00930934 0.00931898 0.00932863 0.00933827 0.00934792 +-0.00217886 -0.00202145 -0.0016812 -0.000972468 7.08235E-05 0.00130262 0.00262125 0.00396235 0.00527012 0.00647017 0.00743295 0.00798432 0.0081602 0.00820013 0.00821439 0.00822472 0.00823448 0.00824414 0.0082538 0.00826345 0.0082731 0.00828275 0.00829241 0.00830206 0.00831171 0.00832136 0.00833102 0.00834067 0.00835032 0.00835997 0.00836962 0.00837928 0.00838893 0.00839858 0.00840823 0.00841789 0.00842754 0.00843719 0.00844684 0.00845649 0.00846615 0.0084758 0.00848545 0.0084951 0.00850476 0.00851441 0.00852406 0.00853371 0.00854336 0.00855302 0.00856267 0.00857232 0.00858197 0.00859163 0.00860128 0.00861093 0.00862058 0.00863023 0.00863989 0.00864954 0.00865919 0.00866884 0.0086785 0.00868815 0.0086978 0.00870745 0.0087171 0.00872676 0.00873641 0.00874606 0.00875571 0.00876537 0.00877502 0.00878467 0.00879432 0.00880397 0.00881363 0.00882328 0.00883293 0.00884258 0.00885224 0.00886189 0.00887154 0.00888119 0.00889084 0.0089005 0.00891015 0.0089198 0.00892945 0.00893911 0.00894876 0.00895841 0.00896806 0.00897771 0.00898737 0.00899702 0.00900667 0.00901632 0.00902598 0.00903563 0.00904528 0.00905493 0.00906458 0.00907424 0.00908389 0.00909354 0.00910319 0.00911285 0.0091225 0.00913215 0.0091418 0.00915145 0.00916111 0.00917076 0.00918041 0.00919006 0.00919972 0.00920937 0.00921902 0.00922867 0.00923832 0.00924798 0.00925763 0.00926728 0.00927693 0.00928659 0.00929624 0.00930589 0.00931554 0.00932519 0.00933485 0.0093445 0.00935415 +-0.00218056 -0.00202294 -0.00168219 -0.000972832 7.0907E-05 0.00130301 0.00262188 0.00396326 0.00527139 0.00647205 0.00743592 0.00798875 0.00816542 0.00820554 0.00821983 0.00823018 0.00823993 0.00824961 0.00825927 0.00826893 0.00827859 0.00828825 0.00829791 0.00830756 0.00831722 0.00832688 0.00833654 0.0083462 0.00835586 0.00836552 0.00837518 0.00838483 0.00839449 0.00840415 0.00841381 0.00842347 0.00843313 0.00844279 0.00845245 0.00846211 0.00847176 0.00848142 0.00849108 0.00850074 0.0085104 0.00852006 0.00852972 0.00853938 0.00854904 0.00855869 0.00856835 0.00857801 0.00858767 0.00859733 0.00860699 0.00861665 0.00862631 0.00863597 0.00864562 0.00865528 0.00866494 0.0086746 0.00868426 0.00869392 0.00870358 0.00871324 0.0087229 0.00873255 0.00874221 0.00875187 0.00876153 0.00877119 0.00878085 0.00879051 0.00880017 0.00880983 0.00881948 0.00882914 0.0088388 0.00884846 0.00885812 0.00886778 0.00887744 0.0088871 0.00889676 0.00890641 0.00891607 0.00892573 0.00893539 0.00894505 0.00895471 0.00896437 0.00897403 0.00898369 0.00899334 0.009003 0.00901266 0.00902232 0.00903198 0.00904164 0.0090513 0.00906096 0.00907062 0.00908027 0.00908993 0.00909959 0.00910925 0.00911891 0.00912857 0.00913823 0.00914789 0.00915755 0.0091672 0.00917686 0.00918652 0.00919618 0.00920584 0.0092155 0.00922516 0.00923482 0.00924448 0.00925413 0.00926379 0.00927345 0.00928311 0.00929277 0.00930243 0.00931209 0.00932175 0.00933141 0.00934106 0.00935072 0.00936038 +-0.00218227 -0.00202443 -0.00168318 -0.000973196 7.09904E-05 0.00130339 0.00262251 0.00396415 0.00527266 0.00647393 0.00743888 0.00799318 0.00817064 0.00821094 0.00822527 0.00823562 0.00824539 0.00825507 0.00826474 0.0082744 0.00828407 0.00829374 0.0083034 0.00831307 0.00832273 0.0083324 0.00834206 0.00835173 0.00836139 0.00837106 0.00838073 0.00839039 0.00840006 0.00840972 0.00841939 0.00842905 0.00843872 0.00844838 0.00845805 0.00846772 0.00847738 0.00848705 0.00849671 0.00850638 0.00851604 0.00852571 0.00853537 0.00854504 0.00855471 0.00856437 0.00857404 0.0085837 0.00859337 0.00860303 0.0086127 0.00862236 0.00863203 0.00864169 0.00865136 0.00866103 0.00867069 0.00868036 0.00869002 0.00869969 0.00870935 0.00871902 0.00872868 0.00873835 0.00874802 0.00875768 0.00876735 0.00877701 0.00878668 0.00879634 0.00880601 0.00881567 0.00882534 0.00883501 0.00884467 0.00885434 0.008864 0.00887367 0.00888333 0.008893 0.00890266 0.00891233 0.008922 0.00893166 0.00894133 0.00895099 0.00896066 0.00897032 0.00897999 0.00898965 0.00899932 0.00900899 0.00901865 0.00902832 0.00903798 0.00904765 0.00905731 0.00906698 0.00907664 0.00908631 0.00909598 0.00910564 0.00911531 0.00912497 0.00913464 0.0091443 0.00915397 0.00916363 0.0091733 0.00918296 0.00919263 0.0092023 0.00921196 0.00922163 0.00923129 0.00924096 0.00925062 0.00926029 0.00926995 0.00927962 0.00928929 0.00929895 0.00930862 0.00931828 0.00932795 0.00933761 0.00934728 0.00935694 0.00936661 +-0.00218397 -0.00202592 -0.00168418 -0.000973559 7.10739E-05 0.00130377 0.00262314 0.00396505 0.00527393 0.0064758 0.00744184 0.00799759 0.00817586 0.00821634 0.00823071 0.00824107 0.00825084 0.00826053 0.00827021 0.00827988 0.00828955 0.00829922 0.0083089 0.00831857 0.00832824 0.00833791 0.00834758 0.00835726 0.00836693 0.0083766 0.00838627 0.00839594 0.00840562 0.00841529 0.00842496 0.00843463 0.00844431 0.00845398 0.00846365 0.00847332 0.00848299 0.00849267 0.00850234 0.00851201 0.00852168 0.00853136 0.00854103 0.0085507 0.00856037 0.00857004 0.00857972 0.00858939 0.00859906 0.00860873 0.00861841 0.00862808 0.00863775 0.00864742 0.00865709 0.00866677 0.00867644 0.00868611 0.00869578 0.00870545 0.00871513 0.0087248 0.00873447 0.00874414 0.00875382 0.00876349 0.00877316 0.00878283 0.0087925 0.00880218 0.00881185 0.00882152 0.00883119 0.00884087 0.00885054 0.00886021 0.00886988 0.00887955 0.00888923 0.0088989 0.00890857 0.00891824 0.00892792 0.00893759 0.00894726 0.00895693 0.0089666 0.00897628 0.00898595 0.00899562 0.00900529 0.00901496 0.00902464 0.00903431 0.00904398 0.00905365 0.00906333 0.009073 0.00908267 0.00909234 0.00910201 0.00911169 0.00912136 0.00913103 0.0091407 0.00915038 0.00916005 0.00916972 0.00917939 0.00918906 0.00919874 0.00920841 0.00921808 0.00922775 0.00923743 0.0092471 0.00925677 0.00926644 0.00927611 0.00928579 0.00929546 0.00930513 0.0093148 0.00932447 0.00933415 0.00934382 0.00935349 0.00936316 0.00937284 +-0.00218567 -0.00202741 -0.00168517 -0.000973922 7.11575E-05 0.00130415 0.00262377 0.00396595 0.00527519 0.00647767 0.0074448 0.00800201 0.00818107 0.00822174 0.00823614 0.00824652 0.0082563 0.00826599 0.00827567 0.00828535 0.00829503 0.00830471 0.00831439 0.00832407 0.00833374 0.00834342 0.0083531 0.00836278 0.00837246 0.00838214 0.00839182 0.0084015 0.00841118 0.00842085 0.00843053 0.00844021 0.00844989 0.00845957 0.00846925 0.00847893 0.00848861 0.00849828 0.00850796 0.00851764 0.00852732 0.008537 0.00854668 0.00855636 0.00856604 0.00857572 0.00858539 0.00859507 0.00860475 0.00861443 0.00862411 0.00863379 0.00864347 0.00865315 0.00866282 0.0086725 0.00868218 0.00869186 0.00870154 0.00871122 0.0087209 0.00873058 0.00874026 0.00874993 0.00875961 0.00876929 0.00877897 0.00878865 0.00879833 0.00880801 0.00881769 0.00882737 0.00883704 0.00884672 0.0088564 0.00886608 0.00887576 0.00888544 0.00889512 0.0089048 0.00891447 0.00892415 0.00893383 0.00894351 0.00895319 0.00896287 0.00897255 0.00898223 0.00899191 0.00900158 0.00901126 0.00902094 0.00903062 0.0090403 0.00904998 0.00905966 0.00906934 0.00907901 0.00908869 0.00909837 0.00910805 0.00911773 0.00912741 0.00913709 0.00914677 0.00915645 0.00916612 0.0091758 0.00918548 0.00919516 0.00920484 0.00921452 0.0092242 0.00923388 0.00924356 0.00925323 0.00926291 0.00927259 0.00928227 0.00929195 0.00930163 0.00931131 0.00932099 0.00933066 0.00934034 0.00935002 0.0093597 0.00936938 0.00937906 +-0.00218738 -0.00202889 -0.00168616 -0.000974284 7.1241E-05 0.00130454 0.0026244 0.00396685 0.00527645 0.00647954 0.00744774 0.00800641 0.00818628 0.00822714 0.00824157 0.00825196 0.00826175 0.00827145 0.00828113 0.00829082 0.00830051 0.00831019 0.00831988 0.00832956 0.00833925 0.00834893 0.00835862 0.0083683 0.00837799 0.00838767 0.00839736 0.00840705 0.00841673 0.00842642 0.0084361 0.00844579 0.00845547 0.00846516 0.00847484 0.00848453 0.00849422 0.0085039 0.00851359 0.00852327 0.00853296 0.00854264 0.00855233 0.00856201 0.0085717 0.00858138 0.00859107 0.00860076 0.00861044 0.00862013 0.00862981 0.0086395 0.00864918 0.00865887 0.00866855 0.00867824 0.00868792 0.00869761 0.0087073 0.00871698 0.00872667 0.00873635 0.00874604 0.00875572 0.00876541 0.00877509 0.00878478 0.00879446 0.00880415 0.00881384 0.00882352 0.00883321 0.00884289 0.00885258 0.00886226 0.00887195 0.00888163 0.00889132 0.00890101 0.00891069 0.00892038 0.00893006 0.00893975 0.00894943 0.00895912 0.0089688 0.00897849 0.00898817 0.00899786 0.00900755 0.00901723 0.00902692 0.0090366 0.00904629 0.00905597 0.00906566 0.00907534 0.00908503 0.00909471 0.0091044 0.00911409 0.00912377 0.00913346 0.00914314 0.00915283 0.00916251 0.0091722 0.00918188 0.00919157 0.00920126 0.00921094 0.00922063 0.00923031 0.00924 0.00924968 0.00925937 0.00926905 0.00927874 0.00928842 0.00929811 0.0093078 0.00931748 0.00932717 0.00933685 0.00934654 0.00935622 0.00936591 0.00937559 0.00938528 +-0.00218908 -0.00203038 -0.00168714 -0.000974645 7.13245E-05 0.00130492 0.00262503 0.00396774 0.00527771 0.0064814 0.00745069 0.00801081 0.00819149 0.00823253 0.008247 0.0082574 0.00826719 0.0082769 0.00828659 0.00829629 0.00830598 0.00831567 0.00832536 0.00833506 0.00834475 0.00835444 0.00836413 0.00837382 0.00838352 0.00839321 0.0084029 0.00841259 0.00842228 0.00843198 0.00844167 0.00845136 0.00846105 0.00847075 0.00848044 0.00849013 0.00849982 0.00850951 0.00851921 0.0085289 0.00853859 0.00854828 0.00855797 0.00856767 0.00857736 0.00858705 0.00859674 0.00860644 0.00861613 0.00862582 0.00863551 0.0086452 0.0086549 0.00866459 0.00867428 0.00868397 0.00869366 0.00870336 0.00871305 0.00872274 0.00873243 0.00874213 0.00875182 0.00876151 0.0087712 0.00878089 0.00879059 0.00880028 0.00880997 0.00881966 0.00882935 0.00883905 0.00884874 0.00885843 0.00886812 0.00887781 0.00888751 0.0088972 0.00890689 0.00891658 0.00892628 0.00893597 0.00894566 0.00895535 0.00896504 0.00897474 0.00898443 0.00899412 0.00900381 0.0090135 0.0090232 0.00903289 0.00904258 0.00905227 0.00906197 0.00907166 0.00908135 0.00909104 0.00910073 0.00911043 0.00912012 0.00912981 0.0091395 0.00914919 0.00915889 0.00916858 0.00917827 0.00918796 0.00919765 0.00920735 0.00921704 0.00922673 0.00923642 0.00924612 0.00925581 0.0092655 0.00927519 0.00928488 0.00929458 0.00930427 0.00931396 0.00932365 0.00933334 0.00934304 0.00935273 0.00936242 0.00937211 0.00938181 0.0093915 +-0.00219078 -0.00203186 -0.00168813 -0.000975007 7.14081E-05 0.0013053 0.00262566 0.00396864 0.00527897 0.00648326 0.00745363 0.00801521 0.0081967 0.00823792 0.00825243 0.00826284 0.00827264 0.00828235 0.00829205 0.00830175 0.00831145 0.00832115 0.00833085 0.00834055 0.00835025 0.00835995 0.00836964 0.00837934 0.00838904 0.00839874 0.00840844 0.00841814 0.00842784 0.00843754 0.00844723 0.00845693 0.00846663 0.00847633 0.00848603 0.00849573 0.00850543 0.00851513 0.00852482 0.00853452 0.00854422 0.00855392 0.00856362 0.00857332 0.00858302 0.00859272 0.00860241 0.00861211 0.00862181 0.00863151 0.00864121 0.00865091 0.00866061 0.00867031 0.00868 0.0086897 0.0086994 0.0087091 0.0087188 0.0087285 0.0087382 0.0087479 0.00875759 0.00876729 0.00877699 0.00878669 0.00879639 0.00880609 0.00881579 0.00882549 0.00883518 0.00884488 0.00885458 0.00886428 0.00887398 0.00888368 0.00889338 0.00890308 0.00891277 0.00892247 0.00893217 0.00894187 0.00895157 0.00896127 0.00897097 0.00898067 0.00899036 0.00900006 0.00900976 0.00901946 0.00902916 0.00903886 0.00904856 0.00905826 0.00906796 0.00907765 0.00908735 0.00909705 0.00910675 0.00911645 0.00912615 0.00913585 0.00914555 0.00915524 0.00916494 0.00917464 0.00918434 0.00919404 0.00920374 0.00921344 0.00922314 0.00923283 0.00924253 0.00925223 0.00926193 0.00927163 0.00928133 0.00929103 0.00930073 0.00931042 0.00932012 0.00932982 0.00933952 0.00934922 0.00935892 0.00936862 0.00937832 0.00938801 0.00939771 +-0.00219248 -0.00203335 -0.00168912 -0.000975367 7.14916E-05 0.00130568 0.00262628 0.00396953 0.00528023 0.00648512 0.00745656 0.0080196 0.0082019 0.00824331 0.00825785 0.00826827 0.00827808 0.0082878 0.00829751 0.00830722 0.00831692 0.00832663 0.00833633 0.00834604 0.00835574 0.00836545 0.00837515 0.00838486 0.00839456 0.00840427 0.00841397 0.00842368 0.00843339 0.00844309 0.0084528 0.0084625 0.00847221 0.00848191 0.00849162 0.00850132 0.00851103 0.00852073 0.00853044 0.00854015 0.00854985 0.00855956 0.00856926 0.00857897 0.00858867 0.00859838 0.00860808 0.00861779 0.00862749 0.0086372 0.0086469 0.00865661 0.00866632 0.00867602 0.00868573 0.00869543 0.00870514 0.00871484 0.00872455 0.00873425 0.00874396 0.00875366 0.00876337 0.00877307 0.00878278 0.00879249 0.00880219 0.0088119 0.0088216 0.00883131 0.00884101 0.00885072 0.00886042 0.00887013 0.00887983 0.00888954 0.00889925 0.00890895 0.00891866 0.00892836 0.00893807 0.00894777 0.00895748 0.00896718 0.00897689 0.00898659 0.0089963 0.009006 0.00901571 0.00902542 0.00903512 0.00904483 0.00905453 0.00906424 0.00907394 0.00908365 0.00909335 0.00910306 0.00911276 0.00912247 0.00913217 0.00914188 0.00915159 0.00916129 0.009171 0.0091807 0.00919041 0.00920011 0.00920982 0.00921952 0.00922923 0.00923893 0.00924864 0.00925835 0.00926805 0.00927776 0.00928746 0.00929717 0.00930687 0.00931658 0.00932628 0.00933599 0.00934569 0.0093554 0.0093651 0.00937481 0.00938452 0.00939422 0.00940393 +-0.00219418 -0.00203483 -0.00169011 -0.000975727 7.15752E-05 0.00130606 0.00262691 0.00397042 0.00528149 0.00648697 0.00745949 0.00802398 0.00820709 0.0082487 0.00826328 0.00827371 0.00828352 0.00829325 0.00830296 0.00831268 0.00832239 0.0083321 0.00834181 0.00835152 0.00836124 0.00837095 0.00838066 0.00839037 0.00840008 0.0084098 0.00841951 0.00842922 0.00843893 0.00844864 0.00845836 0.00846807 0.00847778 0.00848749 0.0084972 0.00850692 0.00851663 0.00852634 0.00853605 0.00854577 0.00855548 0.00856519 0.0085749 0.00858461 0.00859433 0.00860404 0.00861375 0.00862346 0.00863317 0.00864289 0.0086526 0.00866231 0.00867202 0.00868173 0.00869145 0.00870116 0.00871087 0.00872058 0.00873029 0.00874001 0.00874972 0.00875943 0.00876914 0.00877885 0.00878857 0.00879828 0.00880799 0.0088177 0.00882741 0.00883713 0.00884684 0.00885655 0.00886626 0.00887597 0.00888569 0.0088954 0.00890511 0.00891482 0.00892453 0.00893425 0.00894396 0.00895367 0.00896338 0.0089731 0.00898281 0.00899252 0.00900223 0.00901194 0.00902166 0.00903137 0.00904108 0.00905079 0.0090605 0.00907022 0.00907993 0.00908964 0.00909935 0.00910906 0.00911878 0.00912849 0.0091382 0.00914791 0.00915762 0.00916734 0.00917705 0.00918676 0.00919647 0.00920618 0.0092159 0.00922561 0.00923532 0.00924503 0.00925474 0.00926446 0.00927417 0.00928388 0.00929359 0.0093033 0.00931302 0.00932273 0.00933244 0.00934215 0.00935186 0.00936158 0.00937129 0.009381 0.00939071 0.00940042 0.00941014 +-0.00219588 -0.00203632 -0.00169109 -0.000976087 7.16588E-05 0.00130644 0.00262754 0.00397131 0.00528274 0.00648882 0.00746241 0.00802836 0.00821229 0.00825408 0.0082687 0.00827914 0.00828896 0.00829869 0.00830842 0.00831813 0.00832785 0.00833757 0.00834729 0.00835701 0.00836673 0.00837645 0.00838617 0.00839588 0.0084056 0.00841532 0.00842504 0.00843476 0.00844448 0.0084542 0.00846391 0.00847363 0.00848335 0.00849307 0.00850279 0.00851251 0.00852223 0.00853195 0.00854166 0.00855138 0.0085611 0.00857082 0.00858054 0.00859026 0.00859998 0.0086097 0.00861941 0.00862913 0.00863885 0.00864857 0.00865829 0.00866801 0.00867773 0.00868744 0.00869716 0.00870688 0.0087166 0.00872632 0.00873604 0.00874576 0.00875548 0.00876519 0.00877491 0.00878463 0.00879435 0.00880407 0.00881379 0.00882351 0.00883322 0.00884294 0.00885266 0.00886238 0.0088721 0.00888182 0.00889154 0.00890126 0.00891097 0.00892069 0.00893041 0.00894013 0.00894985 0.00895957 0.00896929 0.008979 0.00898872 0.00899844 0.00900816 0.00901788 0.0090276 0.00903732 0.00904704 0.00905675 0.00906647 0.00907619 0.00908591 0.00909563 0.00910535 0.00911507 0.00912478 0.0091345 0.00914422 0.00915394 0.00916366 0.00917338 0.0091831 0.00919282 0.00920253 0.00921225 0.00922197 0.00923169 0.00924141 0.00925113 0.00926085 0.00927057 0.00928028 0.00929 0.00929972 0.00930944 0.00931916 0.00932888 0.0093386 0.00934831 0.00935803 0.00936775 0.00937747 0.00938719 0.00939691 0.00940663 0.00941635 +-0.00219758 -0.0020378 -0.00169207 -0.000976446 7.17424E-05 0.00130682 0.00262816 0.0039722 0.00528399 0.00649067 0.00746533 0.00803273 0.00821748 0.00825947 0.00827412 0.00828457 0.0082944 0.00830414 0.00831387 0.00832359 0.00833332 0.00834304 0.00835277 0.00836249 0.00837222 0.00838194 0.00839167 0.00840139 0.00841112 0.00842084 0.00843057 0.00844029 0.00845002 0.00845975 0.00846947 0.0084792 0.00848892 0.00849865 0.00850837 0.0085181 0.00852782 0.00853755 0.00854727 0.008557 0.00856672 0.00857645 0.00858617 0.0085959 0.00860563 0.00861535 0.00862508 0.0086348 0.00864453 0.00865425 0.00866398 0.0086737 0.00868343 0.00869315 0.00870288 0.0087126 0.00872233 0.00873205 0.00874178 0.0087515 0.00876123 0.00877096 0.00878068 0.00879041 0.00880013 0.00880986 0.00881958 0.00882931 0.00883903 0.00884876 0.00885848 0.00886821 0.00887793 0.00888766 0.00889738 0.00890711 0.00891683 0.00892656 0.00893629 0.00894601 0.00895574 0.00896546 0.00897519 0.00898491 0.00899464 0.00900436 0.00901409 0.00902381 0.00903354 0.00904326 0.00905299 0.00906271 0.00907244 0.00908217 0.00909189 0.00910162 0.00911134 0.00912107 0.00913079 0.00914052 0.00915024 0.00915997 0.00916969 0.00917942 0.00918914 0.00919887 0.00920859 0.00921832 0.00922804 0.00923777 0.0092475 0.00925722 0.00926695 0.00927667 0.0092864 0.00929612 0.00930585 0.00931557 0.0093253 0.00933502 0.00934475 0.00935447 0.0093642 0.00937392 0.00938365 0.00939337 0.0094031 0.00941283 0.00942255 +-0.00219928 -0.00203928 -0.00169306 -0.000976804 7.1826E-05 0.0013072 0.00262879 0.00397309 0.00528524 0.00649252 0.00746824 0.0080371 0.00822267 0.00826485 0.00827953 0.00828999 0.00829983 0.00830958 0.00831931 0.00832905 0.00833878 0.00834851 0.00835824 0.00836797 0.00837771 0.00838744 0.00839717 0.0084069 0.00841663 0.00842636 0.0084361 0.00844583 0.00845556 0.00846529 0.00847502 0.00848476 0.00849449 0.00850422 0.00851395 0.00852368 0.00853342 0.00854315 0.00855288 0.00856261 0.00857234 0.00858208 0.00859181 0.00860154 0.00861127 0.008621 0.00863074 0.00864047 0.0086502 0.00865993 0.00866966 0.0086794 0.00868913 0.00869886 0.00870859 0.00871832 0.00872805 0.00873779 0.00874752 0.00875725 0.00876698 0.00877671 0.00878645 0.00879618 0.00880591 0.00881564 0.00882537 0.00883511 0.00884484 0.00885457 0.0088643 0.00887403 0.00888377 0.0088935 0.00890323 0.00891296 0.00892269 0.00893243 0.00894216 0.00895189 0.00896162 0.00897135 0.00898109 0.00899082 0.00900055 0.00901028 0.00902001 0.00902974 0.00903948 0.00904921 0.00905894 0.00906867 0.0090784 0.00908814 0.00909787 0.0091076 0.00911733 0.00912706 0.0091368 0.00914653 0.00915626 0.00916599 0.00917572 0.00918546 0.00919519 0.00920492 0.00921465 0.00922438 0.00923412 0.00924385 0.00925358 0.00926331 0.00927304 0.00928278 0.00929251 0.00930224 0.00931197 0.0093217 0.00933143 0.00934117 0.0093509 0.00936063 0.00937036 0.00938009 0.00938983 0.00939956 0.00940929 0.00941902 0.00942875 +-0.00220098 -0.00204076 -0.00169404 -0.000977162 7.19096E-05 0.00130758 0.00262941 0.00397398 0.00528649 0.00649436 0.00747114 0.00804146 0.00822785 0.00827022 0.00828494 0.00829542 0.00830526 0.00831502 0.00832476 0.0083345 0.00834424 0.00835397 0.00836371 0.00837345 0.00838319 0.00839293 0.00840267 0.00841241 0.00842214 0.00843188 0.00844162 0.00845136 0.0084611 0.00847084 0.00848058 0.00849031 0.00850005 0.00850979 0.00851953 0.00852927 0.00853901 0.00854875 0.00855848 0.00856822 0.00857796 0.0085877 0.00859744 0.00860718 0.00861692 0.00862665 0.00863639 0.00864613 0.00865587 0.00866561 0.00867535 0.00868509 0.00869482 0.00870456 0.0087143 0.00872404 0.00873378 0.00874352 0.00875326 0.00876299 0.00877273 0.00878247 0.00879221 0.00880195 0.00881169 0.00882143 0.00883116 0.0088409 0.00885064 0.00886038 0.00887012 0.00887986 0.0088896 0.00889933 0.00890907 0.00891881 0.00892855 0.00893829 0.00894803 0.00895777 0.0089675 0.00897724 0.00898698 0.00899672 0.00900646 0.0090162 0.00902594 0.00903567 0.00904541 0.00905515 0.00906489 0.00907463 0.00908437 0.00909411 0.00910384 0.00911358 0.00912332 0.00913306 0.0091428 0.00915254 0.00916228 0.00917201 0.00918175 0.00919149 0.00920123 0.00921097 0.00922071 0.00923045 0.00924018 0.00924992 0.00925966 0.0092694 0.00927914 0.00928888 0.00929862 0.00930835 0.00931809 0.00932783 0.00933757 0.00934731 0.00935705 0.00936679 0.00937652 0.00938626 0.009396 0.00940574 0.00941548 0.00942522 0.00943496 +-0.00220267 -0.00204224 -0.00169502 -0.00097752 7.19932E-05 0.00130796 0.00263003 0.00397487 0.00528774 0.0064962 0.00747404 0.00804582 0.00823303 0.0082756 0.00829036 0.00830084 0.00831069 0.00832045 0.0083302 0.00833995 0.00834969 0.00835944 0.00836918 0.00837893 0.00838867 0.00839842 0.00840816 0.00841791 0.00842765 0.0084374 0.00844714 0.00845689 0.00846663 0.00847638 0.00848613 0.00849587 0.00850562 0.00851536 0.00852511 0.00853485 0.0085446 0.00855434 0.00856409 0.00857383 0.00858358 0.00859332 0.00860307 0.00861281 0.00862256 0.0086323 0.00864205 0.00865179 0.00866154 0.00867128 0.00868103 0.00869077 0.00870052 0.00871026 0.00872001 0.00872975 0.0087395 0.00874925 0.00875899 0.00876874 0.00877848 0.00878823 0.00879797 0.00880772 0.00881746 0.00882721 0.00883695 0.0088467 0.00885644 0.00886619 0.00887593 0.00888568 0.00889542 0.00890517 0.00891491 0.00892466 0.0089344 0.00894415 0.00895389 0.00896364 0.00897338 0.00898313 0.00899287 0.00900262 0.00901237 0.00902211 0.00903186 0.0090416 0.00905135 0.00906109 0.00907084 0.00908058 0.00909033 0.00910007 0.00910982 0.00911956 0.00912931 0.00913905 0.0091488 0.00915854 0.00916829 0.00917803 0.00918778 0.00919752 0.00920727 0.00921701 0.00922676 0.0092365 0.00924625 0.00925599 0.00926574 0.00927549 0.00928523 0.00929498 0.00930472 0.00931447 0.00932421 0.00933396 0.0093437 0.00935345 0.00936319 0.00937294 0.00938268 0.00939243 0.00940217 0.00941192 0.00942166 0.00943141 0.00944115 +-0.00220437 -0.00204372 -0.001696 -0.000977877 7.20769E-05 0.00130833 0.00263065 0.00397575 0.00528898 0.00649803 0.00747694 0.00805017 0.00823821 0.00828097 0.00829577 0.00830626 0.00831612 0.00832589 0.00833564 0.00834539 0.00835515 0.0083649 0.00837465 0.0083844 0.00839415 0.00840391 0.00841366 0.00842341 0.00843316 0.00844291 0.00845266 0.00846242 0.00847217 0.00848192 0.00849167 0.00850142 0.00851118 0.00852093 0.00853068 0.00854043 0.00855018 0.00855993 0.00856969 0.00857944 0.00858919 0.00859894 0.00860869 0.00861845 0.0086282 0.00863795 0.0086477 0.00865745 0.0086672 0.00867696 0.00868671 0.00869646 0.00870621 0.00871596 0.00872572 0.00873547 0.00874522 0.00875497 0.00876472 0.00877447 0.00878423 0.00879398 0.00880373 0.00881348 0.00882323 0.00883299 0.00884274 0.00885249 0.00886224 0.00887199 0.00888174 0.0088915 0.00890125 0.008911 0.00892075 0.0089305 0.00894026 0.00895001 0.00895976 0.00896951 0.00897926 0.00898901 0.00899877 0.00900852 0.00901827 0.00902802 0.00903777 0.00904753 0.00905728 0.00906703 0.00907678 0.00908653 0.00909628 0.00910604 0.00911579 0.00912554 0.00913529 0.00914504 0.0091548 0.00916455 0.0091743 0.00918405 0.0091938 0.00920355 0.00921331 0.00922306 0.00923281 0.00924256 0.00925231 0.00926206 0.00927182 0.00928157 0.00929132 0.00930107 0.00931082 0.00932058 0.00933033 0.00934008 0.00934983 0.00935958 0.00936933 0.00937909 0.00938884 0.00939859 0.00940834 0.00941809 0.00942785 0.0094376 0.00944735 +-0.00220607 -0.0020452 -0.00169698 -0.000978233 7.21605E-05 0.00130871 0.00263128 0.00397664 0.00529023 0.00649987 0.00747983 0.00805451 0.00824339 0.00828634 0.00830117 0.00831168 0.00832155 0.00833132 0.00834108 0.00835084 0.0083606 0.00837036 0.00838012 0.00838987 0.00839963 0.00840939 0.00841915 0.00842891 0.00843867 0.00844842 0.00845818 0.00846794 0.0084777 0.00848746 0.00849722 0.00850698 0.00851673 0.00852649 0.00853625 0.00854601 0.00855577 0.00856553 0.00857528 0.00858504 0.0085948 0.00860456 0.00861432 0.00862408 0.00863383 0.00864359 0.00865335 0.00866311 0.00867287 0.00868263 0.00869239 0.00870214 0.0087119 0.00872166 0.00873142 0.00874118 0.00875094 0.00876069 0.00877045 0.00878021 0.00878997 0.00879973 0.00880949 0.00881924 0.008829 0.00883876 0.00884852 0.00885828 0.00886804 0.0088778 0.00888755 0.00889731 0.00890707 0.00891683 0.00892659 0.00893635 0.0089461 0.00895586 0.00896562 0.00897538 0.00898514 0.0089949 0.00900466 0.00901441 0.00902417 0.00903393 0.00904369 0.00905345 0.00906321 0.00907296 0.00908272 0.00909248 0.00910224 0.009112 0.00912176 0.00913151 0.00914127 0.00915103 0.00916079 0.00917055 0.00918031 0.00919007 0.00919982 0.00920958 0.00921934 0.0092291 0.00923886 0.00924862 0.00925837 0.00926813 0.00927789 0.00928765 0.00929741 0.00930717 0.00931692 0.00932668 0.00933644 0.0093462 0.00935596 0.00936572 0.00937548 0.00938523 0.00939499 0.00940475 0.00941451 0.00942427 0.00943403 0.00944378 0.00945354 +-0.00220776 -0.00204668 -0.00169796 -0.000978589 7.22442E-05 0.00130909 0.0026319 0.00397752 0.00529147 0.00650169 0.00748271 0.00805885 0.00824856 0.00829171 0.00830658 0.00831709 0.00832697 0.00833675 0.00834652 0.00835628 0.00836605 0.00837581 0.00838558 0.00839534 0.00840511 0.00841487 0.00842464 0.0084344 0.00844417 0.00845393 0.0084637 0.00847346 0.00848323 0.00849299 0.00850276 0.00851252 0.00852229 0.00853205 0.00854182 0.00855158 0.00856135 0.00857111 0.00858088 0.00859064 0.00860041 0.00861017 0.00861994 0.0086297 0.00863947 0.00864924 0.008659 0.00866877 0.00867853 0.0086883 0.00869806 0.00870783 0.00871759 0.00872736 0.00873712 0.00874689 0.00875665 0.00876642 0.00877618 0.00878595 0.00879571 0.00880548 0.00881524 0.00882501 0.00883477 0.00884454 0.0088543 0.00886407 0.00887383 0.0088836 0.00889336 0.00890313 0.00891289 0.00892266 0.00893242 0.00894219 0.00895195 0.00896172 0.00897148 0.00898125 0.00899101 0.00900078 0.00901054 0.00902031 0.00903007 0.00903984 0.0090496 0.00905937 0.00906913 0.0090789 0.00908866 0.00909843 0.00910819 0.00911796 0.00912772 0.00913749 0.00914725 0.00915702 0.00916678 0.00917655 0.00918631 0.00919608 0.00920584 0.00921561 0.00922537 0.00923514 0.0092449 0.00925467 0.00926443 0.0092742 0.00928396 0.00929373 0.00930349 0.00931326 0.00932302 0.00933279 0.00934255 0.00935232 0.00936208 0.00937185 0.00938161 0.00939138 0.00940114 0.00941091 0.00942067 0.00943044 0.0094402 0.00944997 0.00945973 +-0.00220946 -0.00204816 -0.00169894 -0.000978944 7.23278E-05 0.00130947 0.00263252 0.0039784 0.00529271 0.00650352 0.00748559 0.00806318 0.00825373 0.00829708 0.00831198 0.00832251 0.00833239 0.00834218 0.00835195 0.00836172 0.0083715 0.00838127 0.00839104 0.00840081 0.00841058 0.00842035 0.00843013 0.0084399 0.00844967 0.00845944 0.00846921 0.00847898 0.00848876 0.00849853 0.0085083 0.00851807 0.00852784 0.00853761 0.00854739 0.00855716 0.00856693 0.0085767 0.00858647 0.00859624 0.00860602 0.00861579 0.00862556 0.00863533 0.0086451 0.00865487 0.00866465 0.00867442 0.00868419 0.00869396 0.00870373 0.0087135 0.00872328 0.00873305 0.00874282 0.00875259 0.00876236 0.00877213 0.00878191 0.00879168 0.00880145 0.00881122 0.00882099 0.00883076 0.00884054 0.00885031 0.00886008 0.00886985 0.00887962 0.00888939 0.00889917 0.00890894 0.00891871 0.00892848 0.00893825 0.00894802 0.0089578 0.00896757 0.00897734 0.00898711 0.00899688 0.00900665 0.00901643 0.0090262 0.00903597 0.00904574 0.00905551 0.00906528 0.00907506 0.00908483 0.0090946 0.00910437 0.00911414 0.00912391 0.00913369 0.00914346 0.00915323 0.009163 0.00917277 0.00918254 0.00919232 0.00920209 0.00921186 0.00922163 0.0092314 0.00924117 0.00925095 0.00926072 0.00927049 0.00928026 0.00929003 0.0092998 0.00930958 0.00931935 0.00932912 0.00933889 0.00934866 0.00935843 0.00936821 0.00937798 0.00938775 0.00939752 0.00940729 0.00941706 0.00942684 0.00943661 0.00944638 0.00945615 0.00946592 +-0.00221115 -0.00204963 -0.00169991 -0.000979299 7.24115E-05 0.00130984 0.00263314 0.00397928 0.00529395 0.00650535 0.00748847 0.00806751 0.00825889 0.00830244 0.00831738 0.00832792 0.00833781 0.0083476 0.00835739 0.00836716 0.00837694 0.00838672 0.0083965 0.00840628 0.00841606 0.00842583 0.00843561 0.00844539 0.00845517 0.00846495 0.00847472 0.0084845 0.00849428 0.00850406 0.00851384 0.00852362 0.00853339 0.00854317 0.00855295 0.00856273 0.00857251 0.00858229 0.00859206 0.00860184 0.00861162 0.0086214 0.00863118 0.00864096 0.00865073 0.00866051 0.00867029 0.00868007 0.00868985 0.00869963 0.0087094 0.00871918 0.00872896 0.00873874 0.00874852 0.00875829 0.00876807 0.00877785 0.00878763 0.00879741 0.00880719 0.00881696 0.00882674 0.00883652 0.0088463 0.00885608 0.00886586 0.00887563 0.00888541 0.00889519 0.00890497 0.00891475 0.00892453 0.0089343 0.00894408 0.00895386 0.00896364 0.00897342 0.00898319 0.00899297 0.00900275 0.00901253 0.00902231 0.00903209 0.00904186 0.00905164 0.00906142 0.0090712 0.00908098 0.00909076 0.00910053 0.00911031 0.00912009 0.00912987 0.00913965 0.00914943 0.0091592 0.00916898 0.00917876 0.00918854 0.00919832 0.0092081 0.00921787 0.00922765 0.00923743 0.00924721 0.00925699 0.00926676 0.00927654 0.00928632 0.0092961 0.00930588 0.00931566 0.00932543 0.00933521 0.00934499 0.00935477 0.00936455 0.00937433 0.0093841 0.00939388 0.00940366 0.00941344 0.00942322 0.009433 0.00944277 0.00945255 0.00946233 0.00947211 +-0.00221285 -0.00205111 -0.00170089 -0.000979654 7.24952E-05 0.00131022 0.00263376 0.00398017 0.00529518 0.00650717 0.00749134 0.00807183 0.00826405 0.0083078 0.00832278 0.00833333 0.00834323 0.00835303 0.00836282 0.0083726 0.00838239 0.00839217 0.00840196 0.00841174 0.00842153 0.00843131 0.00844109 0.00845088 0.00846066 0.00847045 0.00848023 0.00849002 0.0084998 0.00850959 0.00851937 0.00852916 0.00853894 0.00854873 0.00855851 0.0085683 0.00857808 0.00858787 0.00859765 0.00860744 0.00861722 0.00862701 0.00863679 0.00864658 0.00865636 0.00866615 0.00867593 0.00868572 0.0086955 0.00870529 0.00871507 0.00872486 0.00873464 0.00874443 0.00875421 0.008764 0.00877378 0.00878357 0.00879335 0.00880314 0.00881292 0.00882271 0.00883249 0.00884227 0.00885206 0.00886184 0.00887163 0.00888141 0.0088912 0.00890098 0.00891077 0.00892055 0.00893034 0.00894012 0.00894991 0.00895969 0.00896948 0.00897926 0.00898905 0.00899883 0.00900862 0.0090184 0.00902819 0.00903797 0.00904776 0.00905754 0.00906733 0.00907711 0.0090869 0.00909668 0.00910647 0.00911625 0.00912604 0.00913582 0.00914561 0.00915539 0.00916518 0.00917496 0.00918475 0.00919453 0.00920432 0.0092141 0.00922389 0.00923367 0.00924345 0.00925324 0.00926302 0.00927281 0.00928259 0.00929238 0.00930216 0.00931195 0.00932173 0.00933152 0.0093413 0.00935109 0.00936087 0.00937066 0.00938044 0.00939023 0.00940001 0.0094098 0.00941958 0.00942937 0.00943915 0.00944894 0.00945872 0.00946851 0.00947829 +-0.00221454 -0.00205258 -0.00170186 -0.000980007 7.25789E-05 0.0013106 0.00263437 0.00398104 0.00529642 0.00650898 0.0074942 0.00807614 0.00826921 0.00831316 0.00832818 0.00833874 0.00834864 0.00835845 0.00836824 0.00837804 0.00838783 0.00839762 0.00840741 0.0084172 0.00842699 0.00843678 0.00844658 0.00845637 0.00846616 0.00847595 0.00848574 0.00849553 0.00850532 0.00851512 0.00852491 0.0085347 0.00854449 0.00855428 0.00856407 0.00857387 0.00858366 0.00859345 0.00860324 0.00861303 0.00862282 0.00863261 0.00864241 0.0086522 0.00866199 0.00867178 0.00868157 0.00869136 0.00870115 0.00871095 0.00872074 0.00873053 0.00874032 0.00875011 0.0087599 0.00876969 0.00877949 0.00878928 0.00879907 0.00880886 0.00881865 0.00882844 0.00883824 0.00884803 0.00885782 0.00886761 0.0088774 0.00888719 0.00889698 0.00890678 0.00891657 0.00892636 0.00893615 0.00894594 0.00895573 0.00896552 0.00897532 0.00898511 0.0089949 0.00900469 0.00901448 0.00902427 0.00903406 0.00904386 0.00905365 0.00906344 0.00907323 0.00908302 0.00909281 0.00910261 0.0091124 0.00912219 0.00913198 0.00914177 0.00915156 0.00916135 0.00917115 0.00918094 0.00919073 0.00920052 0.00921031 0.0092201 0.00922989 0.00923969 0.00924948 0.00925927 0.00926906 0.00927885 0.00928864 0.00929844 0.00930823 0.00931802 0.00932781 0.0093376 0.00934739 0.00935718 0.00936698 0.00937677 0.00938656 0.00939635 0.00940614 0.00941593 0.00942572 0.00943552 0.00944531 0.0094551 0.00946489 0.00947468 0.00948447 +-0.00221624 -0.00205406 -0.00170284 -0.000980361 7.26626E-05 0.00131097 0.00263499 0.00398192 0.00529765 0.0065108 0.00749706 0.00808045 0.00827437 0.00831851 0.00833357 0.00834414 0.00835405 0.00836387 0.00837367 0.00838347 0.00839327 0.00840306 0.00841286 0.00842266 0.00843246 0.00844226 0.00845205 0.00846185 0.00847165 0.00848145 0.00849125 0.00850104 0.00851084 0.00852064 0.00853044 0.00854024 0.00855004 0.00855983 0.00856963 0.00857943 0.00858923 0.00859903 0.00860882 0.00861862 0.00862842 0.00863822 0.00864802 0.00865781 0.00866761 0.00867741 0.00868721 0.00869701 0.0087068 0.0087166 0.0087264 0.0087362 0.008746 0.0087558 0.00876559 0.00877539 0.00878519 0.00879499 0.00880479 0.00881458 0.00882438 0.00883418 0.00884398 0.00885378 0.00886357 0.00887337 0.00888317 0.00889297 0.00890277 0.00891256 0.00892236 0.00893216 0.00894196 0.00895176 0.00896156 0.00897135 0.00898115 0.00899095 0.00900075 0.00901055 0.00902034 0.00903014 0.00903994 0.00904974 0.00905954 0.00906933 0.00907913 0.00908893 0.00909873 0.00910853 0.00911832 0.00912812 0.00913792 0.00914772 0.00915752 0.00916732 0.00917711 0.00918691 0.00919671 0.00920651 0.00921631 0.0092261 0.0092359 0.0092457 0.0092555 0.0092653 0.00927509 0.00928489 0.00929469 0.00930449 0.00931429 0.00932408 0.00933388 0.00934368 0.00935348 0.00936328 0.00937308 0.00938287 0.00939267 0.00940247 0.00941227 0.00942207 0.00943186 0.00944166 0.00945146 0.00946126 0.00947106 0.00948085 0.00949065 +-0.00221793 -0.00205553 -0.00170381 -0.000980714 7.27464E-05 0.00131135 0.00263561 0.0039828 0.00529888 0.00651261 0.00749991 0.00808475 0.00827952 0.00832387 0.00833896 0.00834955 0.00835946 0.00836929 0.00837909 0.0083889 0.0083987 0.00840851 0.00841831 0.00842812 0.00843792 0.00844773 0.00845753 0.00846734 0.00847714 0.00848695 0.00849675 0.00850655 0.00851636 0.00852616 0.00853597 0.00854577 0.00855558 0.00856538 0.00857519 0.00858499 0.0085948 0.0086046 0.00861441 0.00862421 0.00863402 0.00864382 0.00865362 0.00866343 0.00867323 0.00868304 0.00869284 0.00870265 0.00871245 0.00872226 0.00873206 0.00874187 0.00875167 0.00876148 0.00877128 0.00878109 0.00879089 0.0088007 0.0088105 0.0088203 0.00883011 0.00883991 0.00884972 0.00885952 0.00886933 0.00887913 0.00888894 0.00889874 0.00890855 0.00891835 0.00892816 0.00893796 0.00894777 0.00895757 0.00896738 0.00897718 0.00898698 0.00899679 0.00900659 0.0090164 0.0090262 0.00903601 0.00904581 0.00905562 0.00906542 0.00907523 0.00908503 0.00909484 0.00910464 0.00911445 0.00912425 0.00913405 0.00914386 0.00915366 0.00916347 0.00917327 0.00918308 0.00919288 0.00920269 0.00921249 0.0092223 0.0092321 0.00924191 0.00925171 0.00926152 0.00927132 0.00928113 0.00929093 0.00930073 0.00931054 0.00932034 0.00933015 0.00933995 0.00934976 0.00935956 0.00936937 0.00937917 0.00938898 0.00939878 0.00940859 0.00941839 0.0094282 0.009438 0.00944781 0.00945761 0.00946741 0.00947722 0.00948702 0.00949683 +-0.00221962 -0.00205701 -0.00170478 -0.000981066 7.28301E-05 0.00131172 0.00263623 0.00398368 0.00530011 0.00651442 0.00750276 0.00808905 0.00828467 0.00832922 0.00834435 0.00835495 0.00836487 0.0083747 0.00838451 0.00839433 0.00840414 0.00841395 0.00842376 0.00843357 0.00844338 0.00845319 0.00846301 0.00847282 0.00848263 0.00849244 0.00850225 0.00851206 0.00852187 0.00853168 0.0085415 0.00855131 0.00856112 0.00857093 0.00858074 0.00859055 0.00860036 0.00861017 0.00861999 0.0086298 0.00863961 0.00864942 0.00865923 0.00866904 0.00867885 0.00868867 0.00869848 0.00870829 0.0087181 0.00872791 0.00873772 0.00874753 0.00875734 0.00876716 0.00877697 0.00878678 0.00879659 0.0088064 0.00881621 0.00882602 0.00883583 0.00884565 0.00885546 0.00886527 0.00887508 0.00888489 0.0088947 0.00890451 0.00891432 0.00892414 0.00893395 0.00894376 0.00895357 0.00896338 0.00897319 0.008983 0.00899282 0.00900263 0.00901244 0.00902225 0.00903206 0.00904187 0.00905168 0.00906149 0.00907131 0.00908112 0.00909093 0.00910074 0.00911055 0.00912036 0.00913017 0.00913998 0.0091498 0.00915961 0.00916942 0.00917923 0.00918904 0.00919885 0.00920866 0.00921847 0.00922829 0.0092381 0.00924791 0.00925772 0.00926753 0.00927734 0.00928715 0.00929697 0.00930678 0.00931659 0.0093264 0.00933621 0.00934602 0.00935583 0.00936564 0.00937546 0.00938527 0.00939508 0.00940489 0.0094147 0.00942451 0.00943432 0.00944413 0.00945395 0.00946376 0.00947357 0.00948338 0.00949319 0.009503 +-0.00222132 -0.00205848 -0.00170575 -0.000981418 7.29138E-05 0.0013121 0.00263684 0.00398455 0.00530134 0.00651622 0.0075056 0.00809334 0.00828981 0.00833457 0.00834974 0.00836035 0.00837028 0.00838011 0.00838993 0.00839975 0.00840957 0.00841939 0.00842921 0.00843902 0.00844884 0.00845866 0.00846848 0.0084783 0.00848811 0.00849793 0.00850775 0.00851757 0.00852738 0.0085372 0.00854702 0.00855684 0.00856666 0.00857647 0.00858629 0.00859611 0.00860593 0.00861575 0.00862556 0.00863538 0.0086452 0.00865502 0.00866484 0.00867465 0.00868447 0.00869429 0.00870411 0.00871392 0.00872374 0.00873356 0.00874338 0.0087532 0.00876301 0.00877283 0.00878265 0.00879247 0.00880229 0.0088121 0.00882192 0.00883174 0.00884156 0.00885138 0.00886119 0.00887101 0.00888083 0.00889065 0.00890046 0.00891028 0.0089201 0.00892992 0.00893974 0.00894955 0.00895937 0.00896919 0.00897901 0.00898883 0.00899864 0.00900846 0.00901828 0.0090281 0.00903792 0.00904773 0.00905755 0.00906737 0.00907719 0.009087 0.00909682 0.00910664 0.00911646 0.00912628 0.00913609 0.00914591 0.00915573 0.00916555 0.00917537 0.00918518 0.009195 0.00920482 0.00921464 0.00922446 0.00923427 0.00924409 0.00925391 0.00926373 0.00927354 0.00928336 0.00929318 0.009303 0.00931282 0.00932263 0.00933245 0.00934227 0.00935209 0.00936191 0.00937172 0.00938154 0.00939136 0.00940118 0.009411 0.00942081 0.00943063 0.00944045 0.00945027 0.00946008 0.0094699 0.00947972 0.00948954 0.00949936 0.00950917 +-0.00222301 -0.00205995 -0.00170672 -0.000981769 7.29976E-05 0.00131247 0.00263746 0.00398543 0.00530257 0.00651803 0.00750844 0.00809763 0.00829495 0.00833992 0.00835512 0.00836574 0.00837568 0.00838552 0.00839535 0.00840518 0.008415 0.00842483 0.00843465 0.00844447 0.0084543 0.00846412 0.00847395 0.00848377 0.0084936 0.00850342 0.00851325 0.00852307 0.00853289 0.00854272 0.00855254 0.00856237 0.00857219 0.00858202 0.00859184 0.00860167 0.00861149 0.00862131 0.00863114 0.00864096 0.00865079 0.00866061 0.00867044 0.00868026 0.00869009 0.00869991 0.00870974 0.00871956 0.00872938 0.00873921 0.00874903 0.00875886 0.00876868 0.00877851 0.00878833 0.00879816 0.00880798 0.0088178 0.00882763 0.00883745 0.00884728 0.0088571 0.00886693 0.00887675 0.00888658 0.0088964 0.00890622 0.00891605 0.00892587 0.0089357 0.00894552 0.00895535 0.00896517 0.008975 0.00898482 0.00899465 0.00900447 0.00901429 0.00902412 0.00903394 0.00904377 0.00905359 0.00906342 0.00907324 0.00908307 0.00909289 0.00910271 0.00911254 0.00912236 0.00913219 0.00914201 0.00915184 0.00916166 0.00917149 0.00918131 0.00919114 0.00920096 0.00921078 0.00922061 0.00923043 0.00924026 0.00925008 0.00925991 0.00926973 0.00927956 0.00928938 0.0092992 0.00930903 0.00931885 0.00932868 0.0093385 0.00934833 0.00935815 0.00936798 0.0093778 0.00938762 0.00939745 0.00940727 0.0094171 0.00942692 0.00943675 0.00944657 0.0094564 0.00946622 0.00947605 0.00948587 0.00949569 0.00950552 0.00951534 +-0.0022247 -0.00206142 -0.00170769 -0.00098212 7.30814E-05 0.00131285 0.00263807 0.0039863 0.00530379 0.00651983 0.00751127 0.00810191 0.00830009 0.00834526 0.00836051 0.00837114 0.00838108 0.00839093 0.00840077 0.0084106 0.00842043 0.00843026 0.00844009 0.00844992 0.00845975 0.00846958 0.00847942 0.00848925 0.00849908 0.00850891 0.00851874 0.00852857 0.0085384 0.00854823 0.00855806 0.0085679 0.00857773 0.00858756 0.00859739 0.00860722 0.00861705 0.00862688 0.00863671 0.00864654 0.00865637 0.00866621 0.00867604 0.00868587 0.0086957 0.00870553 0.00871536 0.00872519 0.00873502 0.00874485 0.00875469 0.00876452 0.00877435 0.00878418 0.00879401 0.00880384 0.00881367 0.0088235 0.00883333 0.00884317 0.008853 0.00886283 0.00887266 0.00888249 0.00889232 0.00890215 0.00891198 0.00892181 0.00893165 0.00894148 0.00895131 0.00896114 0.00897097 0.0089808 0.00899063 0.00900046 0.00901029 0.00902012 0.00902996 0.00903979 0.00904962 0.00905945 0.00906928 0.00907911 0.00908894 0.00909877 0.0091086 0.00911844 0.00912827 0.0091381 0.00914793 0.00915776 0.00916759 0.00917742 0.00918725 0.00919708 0.00920692 0.00921675 0.00922658 0.00923641 0.00924624 0.00925607 0.0092659 0.00927573 0.00928556 0.00929539 0.00930523 0.00931506 0.00932489 0.00933472 0.00934455 0.00935438 0.00936421 0.00937404 0.00938387 0.00939371 0.00940354 0.00941337 0.0094232 0.00943303 0.00944286 0.00945269 0.00946252 0.00947235 0.00948219 0.00949202 0.00950185 0.00951168 0.00952151 +-0.00222639 -0.00206289 -0.00170866 -0.00098247 7.31652E-05 0.00131322 0.00263868 0.00398717 0.00530502 0.00652162 0.0075141 0.00810619 0.00830523 0.0083506 0.00836589 0.00837653 0.00838648 0.00839634 0.00840618 0.00841602 0.00842586 0.00843569 0.00844553 0.00845537 0.00846521 0.00847504 0.00848488 0.00849472 0.00850456 0.00851439 0.00852423 0.00853407 0.00854391 0.00855374 0.00856358 0.00857342 0.00858326 0.0085931 0.00860293 0.00861277 0.00862261 0.00863245 0.00864228 0.00865212 0.00866196 0.0086718 0.00868163 0.00869147 0.00870131 0.00871115 0.00872099 0.00873082 0.00874066 0.0087505 0.00876034 0.00877017 0.00878001 0.00878985 0.00879969 0.00880952 0.00881936 0.0088292 0.00883904 0.00884887 0.00885871 0.00886855 0.00887839 0.00888823 0.00889806 0.0089079 0.00891774 0.00892758 0.00893741 0.00894725 0.00895709 0.00896693 0.00897676 0.0089866 0.00899644 0.00900628 0.00901612 0.00902595 0.00903579 0.00904563 0.00905547 0.0090653 0.00907514 0.00908498 0.00909482 0.00910465 0.00911449 0.00912433 0.00913417 0.009144 0.00915384 0.00916368 0.00917352 0.00918336 0.00919319 0.00920303 0.00921287 0.00922271 0.00923254 0.00924238 0.00925222 0.00926206 0.00927189 0.00928173 0.00929157 0.00930141 0.00931125 0.00932108 0.00933092 0.00934076 0.0093506 0.00936043 0.00937027 0.00938011 0.00938995 0.00939978 0.00940962 0.00941946 0.0094293 0.00943913 0.00944897 0.00945881 0.00946865 0.00947849 0.00948832 0.00949816 0.009508 0.00951784 0.00952767 +-0.00222808 -0.00206436 -0.00170963 -0.00098282 7.32489E-05 0.00131359 0.0026393 0.00398804 0.00530624 0.00652342 0.00751692 0.00811046 0.00831036 0.00835594 0.00837127 0.00838192 0.00839188 0.00840174 0.00841159 0.00842143 0.00843128 0.00844112 0.00845097 0.00846081 0.00847066 0.0084805 0.00849034 0.00850019 0.00851003 0.00851988 0.00852972 0.00853957 0.00854941 0.00855925 0.0085691 0.00857894 0.00858879 0.00859863 0.00860848 0.00861832 0.00862816 0.00863801 0.00864785 0.0086577 0.00866754 0.00867739 0.00868723 0.00869707 0.00870692 0.00871676 0.00872661 0.00873645 0.0087463 0.00875614 0.00876598 0.00877583 0.00878567 0.00879552 0.00880536 0.00881521 0.00882505 0.00883489 0.00884474 0.00885458 0.00886443 0.00887427 0.00888411 0.00889396 0.0089038 0.00891365 0.00892349 0.00893334 0.00894318 0.00895302 0.00896287 0.00897271 0.00898256 0.0089924 0.00900225 0.00901209 0.00902193 0.00903178 0.00904162 0.00905147 0.00906131 0.00907116 0.009081 0.00909084 0.00910069 0.00911053 0.00912038 0.00913022 0.00914007 0.00914991 0.00915975 0.0091696 0.00917944 0.00918929 0.00919913 0.00920898 0.00921882 0.00922866 0.00923851 0.00924835 0.0092582 0.00926804 0.00927789 0.00928773 0.00929757 0.00930742 0.00931726 0.00932711 0.00933695 0.00934679 0.00935664 0.00936648 0.00937633 0.00938617 0.00939602 0.00940586 0.0094157 0.00942555 0.00943539 0.00944524 0.00945508 0.00946493 0.00947477 0.00948461 0.00949446 0.0095043 0.00951415 0.00952399 0.00953384 +-0.00222977 -0.00206583 -0.00171059 -0.000983169 7.33328E-05 0.00131397 0.00263991 0.00398891 0.00530746 0.00652521 0.00751974 0.00811472 0.00831549 0.00836128 0.00837664 0.00838731 0.00839728 0.00840715 0.008417 0.00842685 0.0084367 0.00844655 0.0084564 0.00846625 0.0084761 0.00848596 0.00849581 0.00850566 0.00851551 0.00852536 0.00853521 0.00854506 0.00855491 0.00856476 0.00857461 0.00858446 0.00859431 0.00860417 0.00861402 0.00862387 0.00863372 0.00864357 0.00865342 0.00866327 0.00867312 0.00868297 0.00869282 0.00870267 0.00871252 0.00872238 0.00873223 0.00874208 0.00875193 0.00876178 0.00877163 0.00878148 0.00879133 0.00880118 0.00881103 0.00882088 0.00883073 0.00884059 0.00885044 0.00886029 0.00887014 0.00887999 0.00888984 0.00889969 0.00890954 0.00891939 0.00892924 0.00893909 0.00894894 0.0089588 0.00896865 0.0089785 0.00898835 0.0089982 0.00900805 0.0090179 0.00902775 0.0090376 0.00904745 0.0090573 0.00906715 0.00907701 0.00908686 0.00909671 0.00910656 0.00911641 0.00912626 0.00913611 0.00914596 0.00915581 0.00916566 0.00917551 0.00918536 0.00919522 0.00920507 0.00921492 0.00922477 0.00923462 0.00924447 0.00925432 0.00926417 0.00927402 0.00928387 0.00929372 0.00930357 0.00931343 0.00932328 0.00933313 0.00934298 0.00935283 0.00936268 0.00937253 0.00938238 0.00939223 0.00940208 0.00941193 0.00942179 0.00943164 0.00944149 0.00945134 0.00946119 0.00947104 0.00948089 0.00949074 0.00950059 0.00951044 0.00952029 0.00953014 0.00954 +-0.00223146 -0.0020673 -0.00171156 -0.000983518 7.34166E-05 0.00131434 0.00264052 0.00398978 0.00530867 0.006527 0.00752255 0.00811898 0.00832061 0.00836662 0.00838202 0.00839269 0.00840267 0.00841255 0.00842241 0.00843226 0.00844212 0.00845198 0.00846184 0.00847169 0.00848155 0.00849141 0.00850127 0.00851112 0.00852098 0.00853084 0.0085407 0.00855055 0.00856041 0.00857027 0.00858012 0.00858998 0.00859984 0.0086097 0.00861955 0.00862941 0.00863927 0.00864913 0.00865898 0.00866884 0.0086787 0.00868856 0.00869841 0.00870827 0.00871813 0.00872799 0.00873784 0.0087477 0.00875756 0.00876742 0.00877727 0.00878713 0.00879699 0.00880685 0.0088167 0.00882656 0.00883642 0.00884628 0.00885613 0.00886599 0.00887585 0.0088857 0.00889556 0.00890542 0.00891528 0.00892513 0.00893499 0.00894485 0.00895471 0.00896456 0.00897442 0.00898428 0.00899414 0.00900399 0.00901385 0.00902371 0.00903357 0.00904342 0.00905328 0.00906314 0.009073 0.00908285 0.00909271 0.00910257 0.00911243 0.00912228 0.00913214 0.009142 0.00915186 0.00916171 0.00917157 0.00918143 0.00919128 0.00920114 0.009211 0.00922086 0.00923071 0.00924057 0.00925043 0.00926029 0.00927014 0.00928 0.00928986 0.00929972 0.00930957 0.00931943 0.00932929 0.00933915 0.009349 0.00935886 0.00936872 0.00937858 0.00938843 0.00939829 0.00940815 0.00941801 0.00942786 0.00943772 0.00944758 0.00945744 0.00946729 0.00947715 0.00948701 0.00949687 0.00950672 0.00951658 0.00952644 0.00953629 0.00954615 +-0.00223315 -0.00206877 -0.00171252 -0.000983866 7.35004E-05 0.00131471 0.00264113 0.00399065 0.00530989 0.00652878 0.00752536 0.00812323 0.00832573 0.00837195 0.00838739 0.00839808 0.00840806 0.00841794 0.00842781 0.00843767 0.00844754 0.0084574 0.00846727 0.00847713 0.00848699 0.00849686 0.00850672 0.00851659 0.00852645 0.00853631 0.00854618 0.00855604 0.00856591 0.00857577 0.00858563 0.0085955 0.00860536 0.00861523 0.00862509 0.00863495 0.00864482 0.00865468 0.00866455 0.00867441 0.00868427 0.00869414 0.008704 0.00871387 0.00872373 0.00873359 0.00874346 0.00875332 0.00876319 0.00877305 0.00878291 0.00879278 0.00880264 0.00881251 0.00882237 0.00883223 0.0088421 0.00885196 0.00886183 0.00887169 0.00888155 0.00889142 0.00890128 0.00891115 0.00892101 0.00893087 0.00894074 0.0089506 0.00896047 0.00897033 0.00898019 0.00899006 0.00899992 0.00900979 0.00901965 0.00902951 0.00903938 0.00904924 0.00905911 0.00906897 0.00907883 0.0090887 0.00909856 0.00910843 0.00911829 0.00912815 0.00913802 0.00914788 0.00915775 0.00916761 0.00917747 0.00918734 0.0091972 0.00920707 0.00921693 0.00922679 0.00923666 0.00924652 0.00925639 0.00926625 0.00927611 0.00928598 0.00929584 0.00930571 0.00931557 0.00932543 0.0093353 0.00934516 0.00935503 0.00936489 0.00937475 0.00938462 0.00939448 0.00940435 0.00941421 0.00942407 0.00943394 0.0094438 0.00945367 0.00946353 0.00947339 0.00948326 0.00949312 0.00950299 0.00951285 0.00952271 0.00953258 0.00954244 0.00955231 +-0.00223483 -0.00207023 -0.00171349 -0.000984213 7.35842E-05 0.00131508 0.00264174 0.00399152 0.00531111 0.00653056 0.00752816 0.00812747 0.00833085 0.00837728 0.00839276 0.00840346 0.00841345 0.00842334 0.00843321 0.00844308 0.00845295 0.00846282 0.00847269 0.00848257 0.00849244 0.00850231 0.00851218 0.00852205 0.00853192 0.00854179 0.00855166 0.00856153 0.0085714 0.00858127 0.00859114 0.00860101 0.00861088 0.00862075 0.00863062 0.00864049 0.00865037 0.00866024 0.00867011 0.00867998 0.00868985 0.00869972 0.00870959 0.00871946 0.00872933 0.0087392 0.00874907 0.00875894 0.00876881 0.00877868 0.00878855 0.00879842 0.00880829 0.00881817 0.00882804 0.00883791 0.00884778 0.00885765 0.00886752 0.00887739 0.00888726 0.00889713 0.008907 0.00891687 0.00892674 0.00893661 0.00894648 0.00895635 0.00896622 0.00897609 0.00898597 0.00899584 0.00900571 0.00901558 0.00902545 0.00903532 0.00904519 0.00905506 0.00906493 0.0090748 0.00908467 0.00909454 0.00910441 0.00911428 0.00912415 0.00913402 0.00914389 0.00915377 0.00916364 0.00917351 0.00918338 0.00919325 0.00920312 0.00921299 0.00922286 0.00923273 0.0092426 0.00925247 0.00926234 0.00927221 0.00928208 0.00929195 0.00930182 0.00931169 0.00932156 0.00933144 0.00934131 0.00935118 0.00936105 0.00937092 0.00938079 0.00939066 0.00940053 0.0094104 0.00942027 0.00943014 0.00944001 0.00944988 0.00945975 0.00946962 0.00947949 0.00948936 0.00949924 0.00950911 0.00951898 0.00952885 0.00953872 0.00954859 0.00955846 +-0.00223652 -0.0020717 -0.00171445 -0.000984561 7.36681E-05 0.00131546 0.00264235 0.00399238 0.00531232 0.00653234 0.00753096 0.00813171 0.00833597 0.00838261 0.00839813 0.00840884 0.00841884 0.00842873 0.00843861 0.00844849 0.00845837 0.00846824 0.00847812 0.008488 0.00849788 0.00850775 0.00851763 0.00852751 0.00853738 0.00854726 0.00855714 0.00856702 0.00857689 0.00858677 0.00859665 0.00860652 0.0086164 0.00862628 0.00863616 0.00864603 0.00865591 0.00866579 0.00867566 0.00868554 0.00869542 0.0087053 0.00871517 0.00872505 0.00873493 0.0087448 0.00875468 0.00876456 0.00877444 0.00878431 0.00879419 0.00880407 0.00881394 0.00882382 0.0088337 0.00884358 0.00885345 0.00886333 0.00887321 0.00888308 0.00889296 0.00890284 0.00891272 0.00892259 0.00893247 0.00894235 0.00895222 0.0089621 0.00897198 0.00898186 0.00899173 0.00900161 0.00901149 0.00902137 0.00903124 0.00904112 0.009051 0.00906087 0.00907075 0.00908063 0.00909051 0.00910038 0.00911026 0.00912014 0.00913001 0.00913989 0.00914977 0.00915965 0.00916952 0.0091794 0.00918928 0.00919915 0.00920903 0.00921891 0.00922879 0.00923866 0.00924854 0.00925842 0.00926829 0.00927817 0.00928805 0.00929793 0.0093078 0.00931768 0.00932756 0.00933743 0.00934731 0.00935719 0.00936707 0.00937694 0.00938682 0.0093967 0.00940657 0.00941645 0.00942633 0.00943621 0.00944608 0.00945596 0.00946584 0.00947571 0.00948559 0.00949547 0.00950535 0.00951522 0.0095251 0.00953498 0.00954485 0.00955473 0.00956461 +-0.00223821 -0.00207316 -0.00171541 -0.000984907 7.37519E-05 0.00131583 0.00264296 0.00399325 0.00531353 0.00653412 0.00753375 0.00813595 0.00834108 0.00838793 0.0084035 0.00841422 0.00842422 0.00843412 0.00844401 0.00845389 0.00846378 0.00847366 0.00848355 0.00849343 0.00850331 0.0085132 0.00852308 0.00853296 0.00854285 0.00855273 0.00856262 0.0085725 0.00858238 0.00859227 0.00860215 0.00861203 0.00862192 0.0086318 0.00864169 0.00865157 0.00866145 0.00867134 0.00868122 0.0086911 0.00870099 0.00871087 0.00872076 0.00873064 0.00874052 0.00875041 0.00876029 0.00877017 0.00878006 0.00878994 0.00879983 0.00880971 0.00881959 0.00882948 0.00883936 0.00884924 0.00885913 0.00886901 0.00887889 0.00888878 0.00889866 0.00890855 0.00891843 0.00892831 0.0089382 0.00894808 0.00895796 0.00896785 0.00897773 0.00898762 0.0089975 0.00900738 0.00901727 0.00902715 0.00903703 0.00904692 0.0090568 0.00906669 0.00907657 0.00908645 0.00909634 0.00910622 0.0091161 0.00912599 0.00913587 0.00914576 0.00915564 0.00916552 0.00917541 0.00918529 0.00919517 0.00920506 0.00921494 0.00922483 0.00923471 0.00924459 0.00925448 0.00926436 0.00927424 0.00928413 0.00929401 0.0093039 0.00931378 0.00932366 0.00933355 0.00934343 0.00935331 0.0093632 0.00937308 0.00938297 0.00939285 0.00940273 0.00941262 0.0094225 0.00943238 0.00944227 0.00945215 0.00946204 0.00947192 0.0094818 0.00949169 0.00950157 0.00951145 0.00952134 0.00953122 0.0095411 0.00955099 0.00956087 0.00957076 +-0.00223989 -0.00207463 -0.00171637 -0.000985253 7.38358E-05 0.0013162 0.00264357 0.00399411 0.00531474 0.00653589 0.00753654 0.00814018 0.00834619 0.00839326 0.00840886 0.00841959 0.00842961 0.00843951 0.00844941 0.0084593 0.00846919 0.00847908 0.00848897 0.00849886 0.00850875 0.00851864 0.00852853 0.00853842 0.00854831 0.0085582 0.00856809 0.00857798 0.00858787 0.00859776 0.00860765 0.00861754 0.00862743 0.00863732 0.00864721 0.0086571 0.00866699 0.00867688 0.00868677 0.00869666 0.00870655 0.00871644 0.00872634 0.00873623 0.00874612 0.00875601 0.0087659 0.00877579 0.00878568 0.00879557 0.00880546 0.00881535 0.00882524 0.00883513 0.00884502 0.00885491 0.0088648 0.00887469 0.00888458 0.00889447 0.00890436 0.00891425 0.00892414 0.00893403 0.00894392 0.00895381 0.0089637 0.00897359 0.00898348 0.00899337 0.00900326 0.00901315 0.00902304 0.00903293 0.00904282 0.00905272 0.00906261 0.0090725 0.00908239 0.00909228 0.00910217 0.00911206 0.00912195 0.00913184 0.00914173 0.00915162 0.00916151 0.0091714 0.00918129 0.00919118 0.00920107 0.00921096 0.00922085 0.00923074 0.00924063 0.00925052 0.00926041 0.0092703 0.00928019 0.00929008 0.00929997 0.00930986 0.00931975 0.00932964 0.00933953 0.00934942 0.00935931 0.0093692 0.0093791 0.00938899 0.00939888 0.00940877 0.00941866 0.00942855 0.00943844 0.00944833 0.00945822 0.00946811 0.009478 0.00948789 0.00949778 0.00950767 0.00951756 0.00952745 0.00953734 0.00954723 0.00955712 0.00956701 0.0095769 +-0.00224158 -0.00207609 -0.00171733 -0.000985599 7.39197E-05 0.00131657 0.00264418 0.00399497 0.00531595 0.00653766 0.00753932 0.0081444 0.00835129 0.00839858 0.00841422 0.00842496 0.00843499 0.0084449 0.0084548 0.0084647 0.00847459 0.00848449 0.00849439 0.00850428 0.00851418 0.00852408 0.00853398 0.00854387 0.00855377 0.00856367 0.00857356 0.00858346 0.00859336 0.00860325 0.00861315 0.00862305 0.00863294 0.00864284 0.00865274 0.00866263 0.00867253 0.00868243 0.00869233 0.00870222 0.00871212 0.00872202 0.00873191 0.00874181 0.00875171 0.0087616 0.0087715 0.0087814 0.00879129 0.00880119 0.00881109 0.00882098 0.00883088 0.00884078 0.00885068 0.00886057 0.00887047 0.00888037 0.00889026 0.00890016 0.00891006 0.00891995 0.00892985 0.00893975 0.00894964 0.00895954 0.00896944 0.00897933 0.00898923 0.00899913 0.00900903 0.00901892 0.00902882 0.00903872 0.00904861 0.00905851 0.00906841 0.0090783 0.0090882 0.0090981 0.00910799 0.00911789 0.00912779 0.00913768 0.00914758 0.00915748 0.00916738 0.00917727 0.00918717 0.00919707 0.00920696 0.00921686 0.00922676 0.00923665 0.00924655 0.00925645 0.00926634 0.00927624 0.00928614 0.00929603 0.00930593 0.00931583 0.00932573 0.00933562 0.00934552 0.00935542 0.00936531 0.00937521 0.00938511 0.009395 0.0094049 0.0094148 0.00942469 0.00943459 0.00944449 0.00945438 0.00946428 0.00947418 0.00948407 0.00949397 0.00950387 0.00951377 0.00952366 0.00953356 0.00954346 0.00955335 0.00956325 0.00957315 0.00958304 +-0.00224327 -0.00207755 -0.00171829 -0.000985944 7.40036E-05 0.00131694 0.00264479 0.00399584 0.00531715 0.00653943 0.00754209 0.00814862 0.00835639 0.0084039 0.00841958 0.00843034 0.00844036 0.00845029 0.00846019 0.0084701 0.00848 0.0084899 0.00849981 0.00850971 0.00851961 0.00852952 0.00853942 0.00854932 0.00855923 0.00856913 0.00857903 0.00858894 0.00859884 0.00860874 0.00861865 0.00862855 0.00863845 0.00864836 0.00865826 0.00866816 0.00867807 0.00868797 0.00869787 0.00870778 0.00871768 0.00872758 0.00873749 0.00874739 0.0087573 0.0087672 0.0087771 0.00878701 0.00879691 0.00880681 0.00881672 0.00882662 0.00883652 0.00884643 0.00885633 0.00886623 0.00887614 0.00888604 0.00889594 0.00890585 0.00891575 0.00892565 0.00893556 0.00894546 0.00895536 0.00896527 0.00897517 0.00898507 0.00899498 0.00900488 0.00901478 0.00902469 0.00903459 0.00904449 0.0090544 0.0090643 0.00907421 0.00908411 0.00909401 0.00910392 0.00911382 0.00912372 0.00913363 0.00914353 0.00915343 0.00916334 0.00917324 0.00918314 0.00919305 0.00920295 0.00921285 0.00922276 0.00923266 0.00924256 0.00925247 0.00926237 0.00927227 0.00928218 0.00929208 0.00930198 0.00931189 0.00932179 0.00933169 0.0093416 0.0093515 0.0093614 0.00937131 0.00938121 0.00939112 0.00940102 0.00941092 0.00942083 0.00943073 0.00944063 0.00945054 0.00946044 0.00947034 0.00948025 0.00949015 0.00950005 0.00950996 0.00951986 0.00952976 0.00953967 0.00954957 0.00955947 0.00956938 0.00957928 0.00958918 +-0.00224495 -0.00207902 -0.00171925 -0.000986289 7.40875E-05 0.00131731 0.0026454 0.0039967 0.00531836 0.0065412 0.00754487 0.00815283 0.00836149 0.00840921 0.00842494 0.0084357 0.00844574 0.00845567 0.00846558 0.00847549 0.0084854 0.00849531 0.00850522 0.00851513 0.00852504 0.00853495 0.00854486 0.00855477 0.00856468 0.00857459 0.0085845 0.00859441 0.00860432 0.00861423 0.00862414 0.00863405 0.00864396 0.00865387 0.00866378 0.00867369 0.0086836 0.00869351 0.00870342 0.00871333 0.00872324 0.00873315 0.00874306 0.00875297 0.00876288 0.00877279 0.0087827 0.00879261 0.00880252 0.00881243 0.00882234 0.00883225 0.00884216 0.00885207 0.00886198 0.00887189 0.0088818 0.00889171 0.00890162 0.00891153 0.00892144 0.00893135 0.00894126 0.00895117 0.00896108 0.00897099 0.0089809 0.00899081 0.00900072 0.00901063 0.00902054 0.00903045 0.00904036 0.00905027 0.00906018 0.00907009 0.00908 0.00908991 0.00909982 0.00910973 0.00911964 0.00912955 0.00913946 0.00914937 0.00915928 0.00916919 0.0091791 0.00918901 0.00919892 0.00920883 0.00921874 0.00922865 0.00923856 0.00924847 0.00925838 0.00926829 0.0092782 0.00928811 0.00929802 0.00930793 0.00931784 0.00932775 0.00933766 0.00934757 0.00935748 0.00936739 0.0093773 0.00938721 0.00939712 0.00940703 0.00941694 0.00942685 0.00943676 0.00944667 0.00945658 0.00946649 0.0094764 0.00948631 0.00949622 0.00950613 0.00951604 0.00952595 0.00953586 0.00954577 0.00955568 0.00956559 0.0095755 0.00958541 0.00959532 +-0.00224663 -0.00208048 -0.0017202 -0.000986633 7.41714E-05 0.00131768 0.002646 0.00399756 0.00531956 0.00654296 0.00754763 0.00815704 0.00836659 0.00841453 0.00843029 0.00844107 0.00845111 0.00846105 0.00847097 0.00848089 0.0084908 0.00850072 0.00851064 0.00852055 0.00853047 0.00854039 0.0085503 0.00856022 0.00857013 0.00858005 0.00858997 0.00859988 0.0086098 0.00861972 0.00862963 0.00863955 0.00864947 0.00865938 0.0086693 0.00867922 0.00868913 0.00869905 0.00870897 0.00871888 0.0087288 0.00873872 0.00874863 0.00875855 0.00876847 0.00877838 0.0087883 0.00879822 0.00880813 0.00881805 0.00882797 0.00883788 0.0088478 0.00885772 0.00886763 0.00887755 0.00888746 0.00889738 0.0089073 0.00891721 0.00892713 0.00893705 0.00894696 0.00895688 0.0089668 0.00897671 0.00898663 0.00899655 0.00900646 0.00901638 0.0090263 0.00903621 0.00904613 0.00905605 0.00906596 0.00907588 0.0090858 0.00909571 0.00910563 0.00911555 0.00912546 0.00913538 0.0091453 0.00915521 0.00916513 0.00917504 0.00918496 0.00919488 0.00920479 0.00921471 0.00922463 0.00923454 0.00924446 0.00925438 0.00926429 0.00927421 0.00928413 0.00929404 0.00930396 0.00931388 0.00932379 0.00933371 0.00934363 0.00935354 0.00936346 0.00937338 0.00938329 0.00939321 0.00940313 0.00941304 0.00942296 0.00943288 0.00944279 0.00945271 0.00946263 0.00947254 0.00948246 0.00949237 0.00950229 0.00951221 0.00952212 0.00953204 0.00954196 0.00955187 0.00956179 0.00957171 0.00958162 0.00959154 0.00960146 +-0.00224832 -0.00208194 -0.00172116 -0.000986977 7.42553E-05 0.00131805 0.00264661 0.00399842 0.00532076 0.00654472 0.00755039 0.00816124 0.00837168 0.00841984 0.00843565 0.00844644 0.00845649 0.00846643 0.00847635 0.00848628 0.0084962 0.00850612 0.00851605 0.00852597 0.00853589 0.00854582 0.00855574 0.00856566 0.00857559 0.00858551 0.00859543 0.00860536 0.00861528 0.0086252 0.00863512 0.00864505 0.00865497 0.00866489 0.00867482 0.00868474 0.00869466 0.00870459 0.00871451 0.00872443 0.00873436 0.00874428 0.0087542 0.00876412 0.00877405 0.00878397 0.00879389 0.00880382 0.00881374 0.00882366 0.00883359 0.00884351 0.00885343 0.00886336 0.00887328 0.0088832 0.00889313 0.00890305 0.00891297 0.00892289 0.00893282 0.00894274 0.00895266 0.00896259 0.00897251 0.00898243 0.00899236 0.00900228 0.0090122 0.00902213 0.00903205 0.00904197 0.0090519 0.00906182 0.00907174 0.00908166 0.00909159 0.00910151 0.00911143 0.00912136 0.00913128 0.0091412 0.00915113 0.00916105 0.00917097 0.0091809 0.00919082 0.00920074 0.00921067 0.00922059 0.00923051 0.00924043 0.00925036 0.00926028 0.0092702 0.00928013 0.00929005 0.00929997 0.0093099 0.00931982 0.00932974 0.00933967 0.00934959 0.00935951 0.00936944 0.00937936 0.00938928 0.0093992 0.00940913 0.00941905 0.00942897 0.0094389 0.00944882 0.00945874 0.00946867 0.00947859 0.00948851 0.00949844 0.00950836 0.00951828 0.00952821 0.00953813 0.00954805 0.00955797 0.0095679 0.00957782 0.00958774 0.00959767 0.00960759 +-0.00225 -0.0020834 -0.00172212 -0.00098732 7.43393E-05 0.00131842 0.00264721 0.00399927 0.00532196 0.00654647 0.00755315 0.00816543 0.00837677 0.00842515 0.008441 0.0084518 0.00846186 0.0084718 0.00848174 0.00849167 0.0085016 0.00851153 0.00852146 0.00853139 0.00854132 0.00855125 0.00856118 0.0085711 0.00858103 0.00859096 0.00860089 0.00861082 0.00862075 0.00863068 0.00864061 0.00865054 0.00866047 0.0086704 0.00868033 0.00869026 0.00870019 0.00871012 0.00872005 0.00872998 0.00873991 0.00874984 0.00875977 0.0087697 0.00877963 0.00878956 0.00879949 0.00880942 0.00881935 0.00882928 0.00883921 0.00884914 0.00885907 0.008869 0.00887892 0.00888885 0.00889878 0.00890871 0.00891864 0.00892857 0.0089385 0.00894843 0.00895836 0.00896829 0.00897822 0.00898815 0.00899808 0.00900801 0.00901794 0.00902787 0.0090378 0.00904773 0.00905766 0.00906759 0.00907752 0.00908745 0.00909738 0.00910731 0.00911724 0.00912717 0.0091371 0.00914703 0.00915696 0.00916689 0.00917681 0.00918674 0.00919667 0.0092066 0.00921653 0.00922646 0.00923639 0.00924632 0.00925625 0.00926618 0.00927611 0.00928604 0.00929597 0.0093059 0.00931583 0.00932576 0.00933569 0.00934562 0.00935555 0.00936548 0.00937541 0.00938534 0.00939527 0.0094052 0.00941513 0.00942506 0.00943499 0.00944492 0.00945485 0.00946478 0.00947471 0.00948463 0.00949456 0.00950449 0.00951442 0.00952435 0.00953428 0.00954421 0.00955414 0.00956407 0.009574 0.00958393 0.00959386 0.00960379 0.00961372 +-0.00225168 -0.00208486 -0.00172307 -0.000987663 7.44232E-05 0.00131879 0.00264782 0.00400013 0.00532316 0.00654823 0.0075559 0.00816962 0.00838185 0.00843046 0.00844635 0.00845716 0.00846722 0.00847718 0.00848712 0.00849706 0.00850699 0.00851693 0.00852686 0.0085368 0.00854674 0.00855667 0.00856661 0.00857654 0.00858648 0.00859642 0.00860635 0.00861629 0.00862623 0.00863616 0.0086461 0.00865603 0.00866597 0.00867591 0.00868584 0.00869578 0.00870572 0.00871565 0.00872559 0.00873552 0.00874546 0.0087554 0.00876533 0.00877527 0.00878521 0.00879514 0.00880508 0.00881501 0.00882495 0.00883489 0.00884482 0.00885476 0.0088647 0.00887463 0.00888457 0.0088945 0.00890444 0.00891438 0.00892431 0.00893425 0.00894419 0.00895412 0.00896406 0.00897399 0.00898393 0.00899387 0.0090038 0.00901374 0.00902368 0.00903361 0.00904355 0.00905348 0.00906342 0.00907336 0.00908329 0.00909323 0.00910317 0.0091131 0.00912304 0.00913297 0.00914291 0.00915285 0.00916278 0.00917272 0.00918265 0.00919259 0.00920253 0.00921246 0.0092224 0.00923234 0.00924227 0.00925221 0.00926214 0.00927208 0.00928202 0.00929195 0.00930189 0.00931183 0.00932176 0.0093317 0.00934163 0.00935157 0.00936151 0.00937144 0.00938138 0.00939132 0.00940125 0.00941119 0.00942112 0.00943106 0.009441 0.00945093 0.00946087 0.00947081 0.00948074 0.00949068 0.00950061 0.00951055 0.00952049 0.00953042 0.00954036 0.0095503 0.00956023 0.00957017 0.0095801 0.00959004 0.00959998 0.00960991 0.00961985 +-0.00225337 -0.00208632 -0.00172402 -0.000988005 7.45072E-05 0.00131916 0.00264842 0.00400099 0.00532436 0.00654998 0.00755865 0.0081738 0.00838693 0.00843576 0.00845169 0.00846252 0.00847259 0.00848255 0.0084925 0.00850244 0.00851238 0.00852233 0.00853227 0.00854221 0.00855215 0.0085621 0.00857204 0.00858198 0.00859193 0.00860187 0.00861181 0.00862175 0.0086317 0.00864164 0.00865158 0.00866153 0.00867147 0.00868141 0.00869135 0.0087013 0.00871124 0.00872118 0.00873112 0.00874107 0.00875101 0.00876095 0.0087709 0.00878084 0.00879078 0.00880072 0.00881067 0.00882061 0.00883055 0.0088405 0.00885044 0.00886038 0.00887032 0.00888027 0.00889021 0.00890015 0.00891009 0.00892004 0.00892998 0.00893992 0.00894987 0.00895981 0.00896975 0.00897969 0.00898964 0.00899958 0.00900952 0.00901947 0.00902941 0.00903935 0.00904929 0.00905924 0.00906918 0.00907912 0.00908906 0.00909901 0.00910895 0.00911889 0.00912884 0.00913878 0.00914872 0.00915866 0.00916861 0.00917855 0.00918849 0.00919844 0.00920838 0.00921832 0.00922826 0.00923821 0.00924815 0.00925809 0.00926803 0.00927798 0.00928792 0.00929786 0.00930781 0.00931775 0.00932769 0.00933763 0.00934758 0.00935752 0.00936746 0.00937741 0.00938735 0.00939729 0.00940723 0.00941718 0.00942712 0.00943706 0.009447 0.00945695 0.00946689 0.00947683 0.00948678 0.00949672 0.00950666 0.0095166 0.00952655 0.00953649 0.00954643 0.00955638 0.00956632 0.00957626 0.0095862 0.00959615 0.00960609 0.00961603 0.00962597 +-0.00225505 -0.00208778 -0.00172498 -0.000988346 7.45911E-05 0.00131952 0.00264902 0.00400184 0.00532555 0.00655172 0.00756139 0.00817798 0.00839201 0.00844107 0.00845704 0.00846787 0.00847795 0.00848792 0.00849787 0.00850782 0.00851777 0.00852772 0.00853767 0.00854762 0.00855757 0.00856752 0.00857747 0.00858742 0.00859737 0.00860732 0.00861727 0.00862722 0.00863717 0.00864711 0.00865706 0.00866701 0.00867696 0.00868691 0.00869686 0.00870681 0.00871676 0.00872671 0.00873666 0.00874661 0.00875656 0.00876651 0.00877646 0.00878641 0.00879635 0.0088063 0.00881625 0.0088262 0.00883615 0.0088461 0.00885605 0.008866 0.00887595 0.0088859 0.00889585 0.0089058 0.00891575 0.0089257 0.00893565 0.00894559 0.00895554 0.00896549 0.00897544 0.00898539 0.00899534 0.00900529 0.00901524 0.00902519 0.00903514 0.00904509 0.00905504 0.00906499 0.00907494 0.00908489 0.00909483 0.00910478 0.00911473 0.00912468 0.00913463 0.00914458 0.00915453 0.00916448 0.00917443 0.00918438 0.00919433 0.00920428 0.00921423 0.00922418 0.00923413 0.00924407 0.00925402 0.00926397 0.00927392 0.00928387 0.00929382 0.00930377 0.00931372 0.00932367 0.00933362 0.00934357 0.00935352 0.00936347 0.00937342 0.00938337 0.00939331 0.00940326 0.00941321 0.00942316 0.00943311 0.00944306 0.00945301 0.00946296 0.00947291 0.00948286 0.00949281 0.00950276 0.00951271 0.00952266 0.00953261 0.00954255 0.0095525 0.00956245 0.0095724 0.00958235 0.0095923 0.00960225 0.0096122 0.00962215 0.0096321 +-0.00225673 -0.00208923 -0.00172593 -0.000988688 7.46751E-05 0.00131989 0.00264963 0.0040027 0.00532675 0.00655347 0.00756413 0.00818215 0.00839709 0.00844637 0.00846238 0.00847323 0.00848332 0.00849329 0.00850325 0.00851321 0.00852316 0.00853312 0.00854307 0.00855303 0.00856298 0.00857294 0.0085829 0.00859285 0.00860281 0.00861276 0.00862272 0.00863268 0.00864263 0.00865259 0.00866254 0.0086725 0.00868246 0.00869241 0.00870237 0.00871232 0.00872228 0.00873223 0.00874219 0.00875215 0.0087621 0.00877206 0.00878201 0.00879197 0.00880193 0.00881188 0.00882184 0.00883179 0.00884175 0.00885171 0.00886166 0.00887162 0.00888157 0.00889153 0.00890148 0.00891144 0.0089214 0.00893135 0.00894131 0.00895126 0.00896122 0.00897118 0.00898113 0.00899109 0.00900104 0.009011 0.00902096 0.00903091 0.00904087 0.00905082 0.00906078 0.00907073 0.00908069 0.00909065 0.0091006 0.00911056 0.00912051 0.00913047 0.00914043 0.00915038 0.00916034 0.00917029 0.00918025 0.00919021 0.00920016 0.00921012 0.00922007 0.00923003 0.00923998 0.00924994 0.0092599 0.00926985 0.00927981 0.00928976 0.00929972 0.00930968 0.00931963 0.00932959 0.00933954 0.0093495 0.00935945 0.00936941 0.00937937 0.00938932 0.00939928 0.00940923 0.00941919 0.00942915 0.0094391 0.00944906 0.00945901 0.00946897 0.00947893 0.00948888 0.00949884 0.00950879 0.00951875 0.0095287 0.00953866 0.00954862 0.00955857 0.00956853 0.00957848 0.00958844 0.0095984 0.00960835 0.00961831 0.00962826 0.00963822 +-0.00225841 -0.00209069 -0.00172688 -0.000989028 7.47591E-05 0.00132026 0.00265023 0.00400355 0.00532794 0.00655521 0.00756686 0.00818632 0.00840216 0.00845166 0.00846772 0.00847858 0.00848867 0.00849866 0.00850862 0.00851858 0.00852855 0.00853851 0.00854847 0.00855843 0.0085684 0.00857836 0.00858832 0.00859828 0.00860825 0.00861821 0.00862817 0.00863813 0.0086481 0.00865806 0.00866802 0.00867798 0.00868795 0.00869791 0.00870787 0.00871783 0.0087278 0.00873776 0.00874772 0.00875768 0.00876765 0.00877761 0.00878757 0.00879753 0.00880749 0.00881746 0.00882742 0.00883738 0.00884734 0.00885731 0.00886727 0.00887723 0.00888719 0.00889716 0.00890712 0.00891708 0.00892704 0.00893701 0.00894697 0.00895693 0.00896689 0.00897686 0.00898682 0.00899678 0.00900674 0.00901671 0.00902667 0.00903663 0.00904659 0.00905656 0.00906652 0.00907648 0.00908644 0.00909641 0.00910637 0.00911633 0.00912629 0.00913625 0.00914622 0.00915618 0.00916614 0.0091761 0.00918607 0.00919603 0.00920599 0.00921595 0.00922592 0.00923588 0.00924584 0.0092558 0.00926577 0.00927573 0.00928569 0.00929565 0.00930562 0.00931558 0.00932554 0.0093355 0.00934547 0.00935543 0.00936539 0.00937535 0.00938532 0.00939528 0.00940524 0.0094152 0.00942516 0.00943513 0.00944509 0.00945505 0.00946501 0.00947498 0.00948494 0.0094949 0.00950486 0.00951483 0.00952479 0.00953475 0.00954471 0.00955468 0.00956464 0.0095746 0.00958456 0.00959453 0.00960449 0.00961445 0.00962441 0.00963438 0.00964434 +-0.00226009 -0.00209215 -0.00172783 -0.000989368 7.48431E-05 0.00132063 0.00265083 0.0040044 0.00532913 0.00655695 0.00756959 0.00819048 0.00840723 0.00845696 0.00847306 0.00848393 0.00849403 0.00850402 0.00851399 0.00852396 0.00853393 0.0085439 0.00855387 0.00856384 0.00857381 0.00858378 0.00859374 0.00860371 0.00861368 0.00862365 0.00863362 0.00864359 0.00865356 0.00866353 0.0086735 0.00868347 0.00869343 0.0087034 0.00871337 0.00872334 0.00873331 0.00874328 0.00875325 0.00876322 0.00877319 0.00878315 0.00879312 0.00880309 0.00881306 0.00882303 0.008833 0.00884297 0.00885294 0.00886291 0.00887288 0.00888284 0.00889281 0.00890278 0.00891275 0.00892272 0.00893269 0.00894266 0.00895263 0.0089626 0.00897257 0.00898253 0.0089925 0.00900247 0.00901244 0.00902241 0.00903238 0.00904235 0.00905232 0.00906229 0.00907225 0.00908222 0.00909219 0.00910216 0.00911213 0.0091221 0.00913207 0.00914204 0.00915201 0.00916198 0.00917194 0.00918191 0.00919188 0.00920185 0.00921182 0.00922179 0.00923176 0.00924173 0.0092517 0.00926167 0.00927163 0.0092816 0.00929157 0.00930154 0.00931151 0.00932148 0.00933145 0.00934142 0.00935139 0.00936135 0.00937132 0.00938129 0.00939126 0.00940123 0.0094112 0.00942117 0.00943114 0.00944111 0.00945108 0.00946104 0.00947101 0.00948098 0.00949095 0.00950092 0.00951089 0.00952086 0.00953083 0.0095408 0.00955077 0.00956073 0.0095707 0.00958067 0.00959064 0.00960061 0.00961058 0.00962055 0.00963052 0.00964049 0.00965045 +-0.00226177 -0.0020936 -0.00172878 -0.000989708 7.49271E-05 0.00132099 0.00265143 0.00400525 0.00533032 0.00655869 0.00757231 0.00819463 0.00841229 0.00846225 0.00847839 0.00848928 0.00849939 0.00850938 0.00851936 0.00852934 0.00853931 0.00854929 0.00855926 0.00856924 0.00857921 0.00858919 0.00859917 0.00860914 0.00861912 0.00862909 0.00863907 0.00864904 0.00865902 0.00866899 0.00867897 0.00868894 0.00869892 0.0087089 0.00871887 0.00872885 0.00873882 0.0087488 0.00875877 0.00876875 0.00877872 0.0087887 0.00879868 0.00880865 0.00881863 0.0088286 0.00883858 0.00884855 0.00885853 0.0088685 0.00887848 0.00888846 0.00889843 0.00890841 0.00891838 0.00892836 0.00893833 0.00894831 0.00895828 0.00896826 0.00897823 0.00898821 0.00899819 0.00900816 0.00901814 0.00902811 0.00903809 0.00904806 0.00905804 0.00906801 0.00907799 0.00908797 0.00909794 0.00910792 0.00911789 0.00912787 0.00913784 0.00914782 0.00915779 0.00916777 0.00917774 0.00918772 0.0091977 0.00920767 0.00921765 0.00922762 0.0092376 0.00924757 0.00925755 0.00926752 0.0092775 0.00928748 0.00929745 0.00930743 0.0093174 0.00932738 0.00933735 0.00934733 0.0093573 0.00936728 0.00937725 0.00938723 0.00939721 0.00940718 0.00941716 0.00942713 0.00943711 0.00944708 0.00945706 0.00946703 0.00947701 0.00948699 0.00949696 0.00950694 0.00951691 0.00952689 0.00953686 0.00954684 0.00955681 0.00956679 0.00957676 0.00958674 0.00959672 0.00960669 0.00961667 0.00962664 0.00963662 0.00964659 0.00965657 +-0.00226345 -0.00209506 -0.00172972 -0.000990047 7.50111E-05 0.00132136 0.00265203 0.0040061 0.0053315 0.00656042 0.00757503 0.00819878 0.00841735 0.00846754 0.00848373 0.00849462 0.00850474 0.00851474 0.00852473 0.00853471 0.00854469 0.00855467 0.00856466 0.00857464 0.00858462 0.0085946 0.00860458 0.00861457 0.00862455 0.00863453 0.00864451 0.00865449 0.00866448 0.00867446 0.00868444 0.00869442 0.0087044 0.00871439 0.00872437 0.00873435 0.00874433 0.00875431 0.0087643 0.00877428 0.00878426 0.00879424 0.00880422 0.00881421 0.00882419 0.00883417 0.00884415 0.00885414 0.00886412 0.0088741 0.00888408 0.00889406 0.00890405 0.00891403 0.00892401 0.00893399 0.00894397 0.00895396 0.00896394 0.00897392 0.0089839 0.00899388 0.00900387 0.00901385 0.00902383 0.00903381 0.00904379 0.00905378 0.00906376 0.00907374 0.00908372 0.0090937 0.00910369 0.00911367 0.00912365 0.00913363 0.00914361 0.0091536 0.00916358 0.00917356 0.00918354 0.00919352 0.00920351 0.00921349 0.00922347 0.00923345 0.00924343 0.00925342 0.0092634 0.00927338 0.00928336 0.00929334 0.00930333 0.00931331 0.00932329 0.00933327 0.00934326 0.00935324 0.00936322 0.0093732 0.00938318 0.00939317 0.00940315 0.00941313 0.00942311 0.00943309 0.00944308 0.00945306 0.00946304 0.00947302 0.009483 0.00949299 0.00950297 0.00951295 0.00952293 0.00953291 0.0095429 0.00955288 0.00956286 0.00957284 0.00958282 0.00959281 0.00960279 0.00961277 0.00962275 0.00963273 0.00964272 0.0096527 0.00966268 +-0.00226513 -0.00209651 -0.00173067 -0.000990386 7.50951E-05 0.00132173 0.00265263 0.00400695 0.00533269 0.00656215 0.00757774 0.00820292 0.00842241 0.00847283 0.00848906 0.00849997 0.00851009 0.0085201 0.00853009 0.00854008 0.00855007 0.00856006 0.00857005 0.00858004 0.00859002 0.00860001 0.00861 0.00861999 0.00862998 0.00863997 0.00864996 0.00865994 0.00866993 0.00867992 0.00868991 0.0086999 0.00870989 0.00871988 0.00872986 0.00873985 0.00874984 0.00875983 0.00876982 0.00877981 0.0087898 0.00879978 0.00880977 0.00881976 0.00882975 0.00883974 0.00884973 0.00885972 0.0088697 0.00887969 0.00888968 0.00889967 0.00890966 0.00891965 0.00892964 0.00893962 0.00894961 0.0089596 0.00896959 0.00897958 0.00898957 0.00899956 0.00900954 0.00901953 0.00902952 0.00903951 0.0090495 0.00905949 0.00906948 0.00907946 0.00908945 0.00909944 0.00910943 0.00911942 0.00912941 0.0091394 0.00914938 0.00915937 0.00916936 0.00917935 0.00918934 0.00919933 0.00920932 0.0092193 0.00922929 0.00923928 0.00924927 0.00925926 0.00926925 0.00927924 0.00928922 0.00929921 0.0093092 0.00931919 0.00932918 0.00933917 0.00934916 0.00935914 0.00936913 0.00937912 0.00938911 0.0093991 0.00940909 0.00941908 0.00942906 0.00943905 0.00944904 0.00945903 0.00946902 0.00947901 0.009489 0.00949898 0.00950897 0.00951896 0.00952895 0.00953894 0.00954893 0.00955892 0.0095689 0.00957889 0.00958888 0.00959887 0.00960886 0.00961885 0.00962884 0.00963882 0.00964881 0.0096588 0.00966879 +-0.00226681 -0.00209796 -0.00173162 -0.000990724 7.51792E-05 0.00132209 0.00265323 0.0040078 0.00533387 0.00656388 0.00758044 0.00820706 0.00842747 0.00847812 0.00849439 0.00850531 0.00851544 0.00852546 0.00853545 0.00854545 0.00855544 0.00856544 0.00857543 0.00858543 0.00859543 0.00860542 0.00861542 0.00862541 0.00863541 0.0086454 0.0086554 0.00866539 0.00867539 0.00868538 0.00869538 0.00870537 0.00871537 0.00872536 0.00873536 0.00874535 0.00875535 0.00876534 0.00877534 0.00878533 0.00879533 0.00880532 0.00881532 0.00882531 0.00883531 0.0088453 0.0088553 0.00886529 0.00887529 0.00888528 0.00889528 0.00890527 0.00891527 0.00892526 0.00893526 0.00894525 0.00895525 0.00896524 0.00897524 0.00898523 0.00899523 0.00900522 0.00901522 0.00902521 0.00903521 0.0090452 0.0090552 0.0090652 0.00907519 0.00908519 0.00909518 0.00910518 0.00911517 0.00912517 0.00913516 0.00914516 0.00915515 0.00916515 0.00917514 0.00918514 0.00919513 0.00920513 0.00921512 0.00922512 0.00923511 0.00924511 0.0092551 0.0092651 0.00927509 0.00928509 0.00929508 0.00930508 0.00931507 0.00932507 0.00933506 0.00934506 0.00935505 0.00936505 0.00937504 0.00938504 0.00939503 0.00940503 0.00941502 0.00942502 0.00943501 0.00944501 0.009455 0.009465 0.00947499 0.00948499 0.00949498 0.00950498 0.00951497 0.00952497 0.00953497 0.00954496 0.00955496 0.00956495 0.00957495 0.00958494 0.00959494 0.00960493 0.00961493 0.00962492 0.00963492 0.00964491 0.00965491 0.0096649 0.0096749 +-0.00226848 -0.00209941 -0.00173256 -0.000991062 7.52632E-05 0.00132246 0.00265383 0.00400864 0.00533505 0.00656561 0.00758315 0.00821119 0.00843252 0.0084834 0.00849972 0.00851065 0.00852079 0.00853081 0.00854081 0.00855082 0.00856082 0.00857082 0.00858082 0.00859082 0.00860082 0.00861083 0.00862083 0.00863083 0.00864083 0.00865083 0.00866083 0.00867084 0.00868084 0.00869084 0.00870084 0.00871084 0.00872084 0.00873085 0.00874085 0.00875085 0.00876085 0.00877085 0.00878085 0.00879086 0.00880086 0.00881086 0.00882086 0.00883086 0.00884086 0.00885087 0.00886087 0.00887087 0.00888087 0.00889087 0.00890087 0.00891088 0.00892088 0.00893088 0.00894088 0.00895088 0.00896088 0.00897088 0.00898089 0.00899089 0.00900089 0.00901089 0.00902089 0.00903089 0.0090409 0.0090509 0.0090609 0.0090709 0.0090809 0.0090909 0.00910091 0.00911091 0.00912091 0.00913091 0.00914091 0.00915091 0.00916092 0.00917092 0.00918092 0.00919092 0.00920092 0.00921092 0.00922093 0.00923093 0.00924093 0.00925093 0.00926093 0.00927093 0.00928094 0.00929094 0.00930094 0.00931094 0.00932094 0.00933094 0.00934095 0.00935095 0.00936095 0.00937095 0.00938095 0.00939095 0.00940096 0.00941096 0.00942096 0.00943096 0.00944096 0.00945096 0.00946097 0.00947097 0.00948097 0.00949097 0.00950097 0.00951097 0.00952098 0.00953098 0.00954098 0.00955098 0.00956098 0.00957098 0.00958098 0.00959099 0.00960099 0.00961099 0.00962099 0.00963099 0.00964099 0.009651 0.009661 0.009671 0.009681 +-0.00227016 -0.00210087 -0.00173351 -0.000991399 7.53473E-05 0.00132282 0.00265442 0.00400949 0.00533624 0.00656733 0.00758584 0.00821532 0.00843757 0.00848869 0.00850504 0.00851599 0.00852613 0.00853616 0.00854617 0.00855618 0.00856619 0.0085762 0.00858621 0.00859621 0.00860622 0.00861623 0.00862624 0.00863625 0.00864625 0.00865626 0.00866627 0.00867628 0.00868629 0.0086963 0.0087063 0.00871631 0.00872632 0.00873633 0.00874634 0.00875634 0.00876635 0.00877636 0.00878637 0.00879638 0.00880638 0.00881639 0.0088264 0.00883641 0.00884642 0.00885643 0.00886643 0.00887644 0.00888645 0.00889646 0.00890647 0.00891647 0.00892648 0.00893649 0.0089465 0.00895651 0.00896652 0.00897652 0.00898653 0.00899654 0.00900655 0.00901656 0.00902656 0.00903657 0.00904658 0.00905659 0.0090666 0.00907661 0.00908661 0.00909662 0.00910663 0.00911664 0.00912665 0.00913665 0.00914666 0.00915667 0.00916668 0.00917669 0.0091867 0.0091967 0.00920671 0.00921672 0.00922673 0.00923674 0.00924674 0.00925675 0.00926676 0.00927677 0.00928678 0.00929679 0.00930679 0.0093168 0.00932681 0.00933682 0.00934683 0.00935683 0.00936684 0.00937685 0.00938686 0.00939687 0.00940687 0.00941688 0.00942689 0.0094369 0.00944691 0.00945692 0.00946692 0.00947693 0.00948694 0.00949695 0.00950696 0.00951696 0.00952697 0.00953698 0.00954699 0.009557 0.00956701 0.00957701 0.00958702 0.00959703 0.00960704 0.00961705 0.00962705 0.00963706 0.00964707 0.00965708 0.00966709 0.0096771 0.0096871 +-0.00227184 -0.00210232 -0.00173445 -0.000991736 7.54314E-05 0.00132319 0.00265502 0.00401034 0.00533741 0.00656905 0.00758854 0.00821944 0.00844261 0.00849397 0.00851037 0.00852132 0.00853148 0.00854151 0.00855153 0.00856154 0.00857156 0.00858157 0.00859159 0.0086016 0.00861162 0.00862163 0.00863165 0.00864166 0.00865168 0.00866169 0.0086717 0.00868172 0.00869173 0.00870175 0.00871176 0.00872178 0.00873179 0.00874181 0.00875182 0.00876184 0.00877185 0.00878187 0.00879188 0.0088019 0.00881191 0.00882193 0.00883194 0.00884195 0.00885197 0.00886198 0.008872 0.00888201 0.00889203 0.00890204 0.00891206 0.00892207 0.00893209 0.0089421 0.00895212 0.00896213 0.00897215 0.00898216 0.00899218 0.00900219 0.0090122 0.00902222 0.00903223 0.00904225 0.00905226 0.00906228 0.00907229 0.00908231 0.00909232 0.00910234 0.00911235 0.00912237 0.00913238 0.0091424 0.00915241 0.00916242 0.00917244 0.00918245 0.00919247 0.00920248 0.0092125 0.00922251 0.00923253 0.00924254 0.00925256 0.00926257 0.00927259 0.0092826 0.00929262 0.00930263 0.00931265 0.00932266 0.00933267 0.00934269 0.0093527 0.00936272 0.00937273 0.00938275 0.00939276 0.00940278 0.00941279 0.00942281 0.00943282 0.00944284 0.00945285 0.00946287 0.00947288 0.00948289 0.00949291 0.00950292 0.00951294 0.00952295 0.00953297 0.00954298 0.009553 0.00956301 0.00957303 0.00958304 0.00959306 0.00960307 0.00961309 0.0096231 0.00963312 0.00964313 0.00965314 0.00966316 0.00967317 0.00968319 0.0096932 +-0.00227351 -0.00210377 -0.00173539 -0.000992072 7.55155E-05 0.00132355 0.00265562 0.00401118 0.00533859 0.00657077 0.00759123 0.00822355 0.00844765 0.00849924 0.00851569 0.00852666 0.00853682 0.00854686 0.00855688 0.0085669 0.00857692 0.00858695 0.00859697 0.00860699 0.00861701 0.00862703 0.00863705 0.00864707 0.00865709 0.00866712 0.00867714 0.00868716 0.00869718 0.0087072 0.00871722 0.00872724 0.00873726 0.00874729 0.00875731 0.00876733 0.00877735 0.00878737 0.00879739 0.00880741 0.00881743 0.00882746 0.00883748 0.0088475 0.00885752 0.00886754 0.00887756 0.00888758 0.0088976 0.00890763 0.00891765 0.00892767 0.00893769 0.00894771 0.00895773 0.00896775 0.00897777 0.00898779 0.00899782 0.00900784 0.00901786 0.00902788 0.0090379 0.00904792 0.00905794 0.00906796 0.00907799 0.00908801 0.00909803 0.00910805 0.00911807 0.00912809 0.00913811 0.00914813 0.00915816 0.00916818 0.0091782 0.00918822 0.00919824 0.00920826 0.00921828 0.0092283 0.00923833 0.00924835 0.00925837 0.00926839 0.00927841 0.00928843 0.00929845 0.00930847 0.00931849 0.00932852 0.00933854 0.00934856 0.00935858 0.0093686 0.00937862 0.00938864 0.00939866 0.00940869 0.00941871 0.00942873 0.00943875 0.00944877 0.00945879 0.00946881 0.00947883 0.00948886 0.00949888 0.0095089 0.00951892 0.00952894 0.00953896 0.00954898 0.009559 0.00956903 0.00957905 0.00958907 0.00959909 0.00960911 0.00961913 0.00962915 0.00963917 0.00964919 0.00965922 0.00966924 0.00967926 0.00968928 0.0096993 +-0.00227519 -0.00210522 -0.00173633 -0.000992408 7.55995E-05 0.00132392 0.00265621 0.00401202 0.00533977 0.00657248 0.00759391 0.00822766 0.00845269 0.00850452 0.00852101 0.00853199 0.00854215 0.0085522 0.00856223 0.00857226 0.00858229 0.00859232 0.00860235 0.00861237 0.0086224 0.00863243 0.00864246 0.00865248 0.00866251 0.00867254 0.00868257 0.00869259 0.00870262 0.00871265 0.00872268 0.00873271 0.00874273 0.00875276 0.00876279 0.00877282 0.00878284 0.00879287 0.0088029 0.00881293 0.00882296 0.00883298 0.00884301 0.00885304 0.00886307 0.00887309 0.00888312 0.00889315 0.00890318 0.00891321 0.00892323 0.00893326 0.00894329 0.00895332 0.00896334 0.00897337 0.0089834 0.00899343 0.00900345 0.00901348 0.00902351 0.00903354 0.00904357 0.00905359 0.00906362 0.00907365 0.00908368 0.0090937 0.00910373 0.00911376 0.00912379 0.00913382 0.00914384 0.00915387 0.0091639 0.00917393 0.00918395 0.00919398 0.00920401 0.00921404 0.00922406 0.00923409 0.00924412 0.00925415 0.00926418 0.0092742 0.00928423 0.00929426 0.00930429 0.00931431 0.00932434 0.00933437 0.0093444 0.00935443 0.00936445 0.00937448 0.00938451 0.00939454 0.00940456 0.00941459 0.00942462 0.00943465 0.00944468 0.0094547 0.00946473 0.00947476 0.00948479 0.00949481 0.00950484 0.00951487 0.0095249 0.00953492 0.00954495 0.00955498 0.00956501 0.00957504 0.00958506 0.00959509 0.00960512 0.00961515 0.00962517 0.0096352 0.00964523 0.00965526 0.00966529 0.00967531 0.00968534 0.00969537 0.0097054 +-0.00227686 -0.00210667 -0.00173728 -0.000992743 7.56837E-05 0.00132428 0.00265681 0.00401287 0.00534094 0.00657419 0.00759659 0.00823176 0.00845773 0.00850979 0.00852632 0.00853732 0.00854749 0.00855755 0.00856758 0.00857762 0.00858765 0.00859769 0.00860772 0.00861776 0.00862779 0.00863782 0.00864786 0.00865789 0.00866793 0.00867796 0.008688 0.00869803 0.00870806 0.0087181 0.00872813 0.00873817 0.0087482 0.00875824 0.00876827 0.0087783 0.00878834 0.00879837 0.00880841 0.00881844 0.00882847 0.00883851 0.00884854 0.00885858 0.00886861 0.00887865 0.00888868 0.00889871 0.00890875 0.00891878 0.00892882 0.00893885 0.00894889 0.00895892 0.00896895 0.00897899 0.00898902 0.00899906 0.00900909 0.00901913 0.00902916 0.00903919 0.00904923 0.00905926 0.0090693 0.00907933 0.00908937 0.0090994 0.00910943 0.00911947 0.0091295 0.00913954 0.00914957 0.00915961 0.00916964 0.00917967 0.00918971 0.00919974 0.00920978 0.00921981 0.00922984 0.00923988 0.00924991 0.00925995 0.00926998 0.00928002 0.00929005 0.00930008 0.00931012 0.00932015 0.00933019 0.00934022 0.00935026 0.00936029 0.00937032 0.00938036 0.00939039 0.00940043 0.00941046 0.0094205 0.00943053 0.00944056 0.0094506 0.00946063 0.00947067 0.0094807 0.00949074 0.00950077 0.0095108 0.00952084 0.00953087 0.00954091 0.00955094 0.00956098 0.00957101 0.00958104 0.00959108 0.00960111 0.00961115 0.00962118 0.00963122 0.00964125 0.00965128 0.00966132 0.00967135 0.00968139 0.00969142 0.00970145 0.00971149 +-0.00227854 -0.00210811 -0.00173822 -0.000993078 7.57678E-05 0.00132465 0.0026574 0.00401371 0.00534212 0.0065759 0.00759926 0.00823586 0.00846276 0.00851506 0.00853164 0.00854264 0.00855283 0.00856289 0.00857293 0.00858297 0.00859301 0.00860305 0.00861309 0.00862314 0.00863318 0.00864322 0.00865326 0.0086633 0.00867334 0.00868338 0.00869342 0.00870346 0.0087135 0.00872354 0.00873358 0.00874362 0.00875367 0.00876371 0.00877375 0.00878379 0.00879383 0.00880387 0.00881391 0.00882395 0.00883399 0.00884403 0.00885407 0.00886411 0.00887415 0.0088842 0.00889424 0.00890428 0.00891432 0.00892436 0.0089344 0.00894444 0.00895448 0.00896452 0.00897456 0.0089846 0.00899464 0.00900469 0.00901473 0.00902477 0.00903481 0.00904485 0.00905489 0.00906493 0.00907497 0.00908501 0.00909505 0.00910509 0.00911513 0.00912517 0.00913522 0.00914526 0.0091553 0.00916534 0.00917538 0.00918542 0.00919546 0.0092055 0.00921554 0.00922558 0.00923562 0.00924566 0.0092557 0.00926575 0.00927579 0.00928583 0.00929587 0.00930591 0.00931595 0.00932599 0.00933603 0.00934607 0.00935611 0.00936615 0.00937619 0.00938623 0.00939628 0.00940632 0.00941636 0.0094264 0.00943644 0.00944648 0.00945652 0.00946656 0.0094766 0.00948664 0.00949668 0.00950672 0.00951676 0.00952681 0.00953685 0.00954689 0.00955693 0.00956697 0.00957701 0.00958705 0.00959709 0.00960713 0.00961717 0.00962721 0.00963725 0.00964729 0.00965734 0.00966738 0.00967742 0.00968746 0.0096975 0.00970754 0.00971758 +-0.00228021 -0.00210956 -0.00173915 -0.000993412 7.58519E-05 0.00132501 0.002658 0.00401455 0.00534329 0.00657761 0.00760193 0.00823995 0.00846778 0.00852033 0.00853695 0.00854797 0.00855816 0.00856823 0.00857828 0.00858832 0.00859837 0.00860842 0.00861847 0.00862851 0.00863856 0.00864861 0.00865866 0.0086687 0.00867875 0.0086888 0.00869884 0.00870889 0.00871894 0.00872899 0.00873903 0.00874908 0.00875913 0.00876918 0.00877922 0.00878927 0.00879932 0.00880937 0.00881941 0.00882946 0.00883951 0.00884955 0.0088596 0.00886965 0.0088797 0.00888974 0.00889979 0.00890984 0.00891989 0.00892993 0.00893998 0.00895003 0.00896007 0.00897012 0.00898017 0.00899022 0.00900026 0.00901031 0.00902036 0.00903041 0.00904045 0.0090505 0.00906055 0.00907059 0.00908064 0.00909069 0.00910074 0.00911078 0.00912083 0.00913088 0.00914093 0.00915097 0.00916102 0.00917107 0.00918111 0.00919116 0.00920121 0.00921126 0.0092213 0.00923135 0.0092414 0.00925145 0.00926149 0.00927154 0.00928159 0.00929163 0.00930168 0.00931173 0.00932178 0.00933182 0.00934187 0.00935192 0.00936197 0.00937201 0.00938206 0.00939211 0.00940215 0.0094122 0.00942225 0.0094323 0.00944234 0.00945239 0.00946244 0.00947249 0.00948253 0.00949258 0.00950263 0.00951267 0.00952272 0.00953277 0.00954282 0.00955286 0.00956291 0.00957296 0.00958301 0.00959305 0.0096031 0.00961315 0.0096232 0.00963324 0.00964329 0.00965334 0.00966338 0.00967343 0.00968348 0.00969353 0.00970357 0.00971362 0.00972367 +-0.00228189 -0.00211101 -0.00174009 -0.000993746 7.5936E-05 0.00132537 0.00265859 0.00401539 0.00534446 0.00657931 0.00760459 0.00824404 0.00847281 0.0085256 0.00854226 0.00855329 0.00856349 0.00857356 0.00858362 0.00859367 0.00860373 0.00861378 0.00862384 0.00863389 0.00864394 0.008654 0.00866405 0.00867411 0.00868416 0.00869421 0.00870427 0.00871432 0.00872437 0.00873443 0.00874448 0.00875454 0.00876459 0.00877464 0.0087847 0.00879475 0.0088048 0.00881486 0.00882491 0.00883497 0.00884502 0.00885507 0.00886513 0.00887518 0.00888523 0.00889529 0.00890534 0.0089154 0.00892545 0.0089355 0.00894556 0.00895561 0.00896567 0.00897572 0.00898577 0.00899583 0.00900588 0.00901593 0.00902599 0.00903604 0.0090461 0.00905615 0.0090662 0.00907626 0.00908631 0.00909636 0.00910642 0.00911647 0.00912653 0.00913658 0.00914663 0.00915669 0.00916674 0.0091768 0.00918685 0.0091969 0.00920696 0.00921701 0.00922706 0.00923712 0.00924717 0.00925723 0.00926728 0.00927733 0.00928739 0.00929744 0.00930749 0.00931755 0.0093276 0.00933766 0.00934771 0.00935776 0.00936782 0.00937787 0.00938792 0.00939798 0.00940803 0.00941809 0.00942814 0.00943819 0.00944825 0.0094583 0.00946836 0.00947841 0.00948846 0.00949852 0.00950857 0.00951862 0.00952868 0.00953873 0.00954879 0.00955884 0.00956889 0.00957895 0.009589 0.00959905 0.00960911 0.00961916 0.00962922 0.00963927 0.00964932 0.00965938 0.00966943 0.00967948 0.00968954 0.00969959 0.00970965 0.0097197 0.00972975 +-0.00228356 -0.00211245 -0.00174103 -0.000994079 7.60202E-05 0.00132574 0.00265918 0.00401622 0.00534562 0.00658101 0.00760725 0.00824812 0.00847783 0.00853086 0.00854757 0.00855861 0.00856882 0.0085789 0.00858896 0.00859902 0.00860908 0.00861914 0.0086292 0.00863926 0.00864932 0.00865938 0.00866945 0.00867951 0.00868957 0.00869963 0.00870969 0.00871975 0.00872981 0.00873987 0.00874993 0.00875999 0.00877005 0.00878011 0.00879017 0.00880023 0.00881029 0.00882035 0.00883041 0.00884047 0.00885053 0.00886059 0.00887065 0.00888071 0.00889077 0.00890083 0.00891089 0.00892095 0.00893101 0.00894107 0.00895113 0.00896119 0.00897125 0.00898131 0.00899137 0.00900144 0.0090115 0.00902156 0.00903162 0.00904168 0.00905174 0.0090618 0.00907186 0.00908192 0.00909198 0.00910204 0.0091121 0.00912216 0.00913222 0.00914228 0.00915234 0.0091624 0.00917246 0.00918252 0.00919258 0.00920264 0.0092127 0.00922276 0.00923282 0.00924288 0.00925294 0.009263 0.00927306 0.00928312 0.00929318 0.00930324 0.0093133 0.00932336 0.00933343 0.00934349 0.00935355 0.00936361 0.00937367 0.00938373 0.00939379 0.00940385 0.00941391 0.00942397 0.00943403 0.00944409 0.00945415 0.00946421 0.00947427 0.00948433 0.00949439 0.00950445 0.00951451 0.00952457 0.00953463 0.00954469 0.00955475 0.00956481 0.00957487 0.00958493 0.00959499 0.00960505 0.00961511 0.00962517 0.00963523 0.00964529 0.00965535 0.00966542 0.00967548 0.00968554 0.0096956 0.00970566 0.00971572 0.00972578 0.00973584 +-0.00228523 -0.0021139 -0.00174197 -0.000994412 7.61043E-05 0.0013261 0.00265978 0.00401706 0.00534679 0.00658271 0.00760991 0.00825219 0.00848285 0.00853612 0.00855288 0.00856393 0.00857414 0.00858423 0.0085943 0.00860437 0.00861444 0.0086245 0.00863457 0.00864464 0.0086547 0.00866477 0.00867484 0.0086849 0.00869497 0.00870504 0.0087151 0.00872517 0.00873524 0.0087453 0.00875537 0.00876544 0.0087755 0.00878557 0.00879564 0.00880571 0.00881577 0.00882584 0.00883591 0.00884597 0.00885604 0.00886611 0.00887617 0.00888624 0.00889631 0.00890637 0.00891644 0.00892651 0.00893657 0.00894664 0.00895671 0.00896677 0.00897684 0.00898691 0.00899697 0.00900704 0.00901711 0.00902717 0.00903724 0.00904731 0.00905738 0.00906744 0.00907751 0.00908758 0.00909764 0.00910771 0.00911778 0.00912784 0.00913791 0.00914798 0.00915804 0.00916811 0.00917818 0.00918824 0.00919831 0.00920838 0.00921844 0.00922851 0.00923858 0.00924864 0.00925871 0.00926878 0.00927885 0.00928891 0.00929898 0.00930905 0.00931911 0.00932918 0.00933925 0.00934931 0.00935938 0.00936945 0.00937951 0.00938958 0.00939965 0.00940971 0.00941978 0.00942985 0.00943991 0.00944998 0.00946005 0.00947011 0.00948018 0.00949025 0.00950032 0.00951038 0.00952045 0.00953052 0.00954058 0.00955065 0.00956072 0.00957078 0.00958085 0.00959092 0.00960098 0.00961105 0.00962112 0.00963118 0.00964125 0.00965132 0.00966138 0.00967145 0.00968152 0.00969158 0.00970165 0.00971172 0.00972178 0.00973185 0.00974192 +-0.0022869 -0.00211534 -0.0017429 -0.000994745 7.61885E-05 0.00132646 0.00266037 0.0040179 0.00534796 0.00658441 0.00761256 0.00825626 0.00848786 0.00854138 0.00855818 0.00856925 0.00857947 0.00858956 0.00859964 0.00860971 0.00861979 0.00862986 0.00863993 0.00865001 0.00866008 0.00867015 0.00868023 0.0086903 0.00870037 0.00871045 0.00872052 0.00873059 0.00874067 0.00875074 0.00876081 0.00877089 0.00878096 0.00879103 0.00880111 0.00881118 0.00882125 0.00883133 0.0088414 0.00885147 0.00886155 0.00887162 0.00888169 0.00889177 0.00890184 0.00891191 0.00892199 0.00893206 0.00894213 0.00895221 0.00896228 0.00897235 0.00898243 0.0089925 0.00900257 0.00901265 0.00902272 0.00903279 0.00904287 0.00905294 0.00906301 0.00907309 0.00908316 0.00909323 0.00910331 0.00911338 0.00912345 0.00913353 0.0091436 0.00915367 0.00916375 0.00917382 0.00918389 0.00919397 0.00920404 0.00921411 0.00922419 0.00923426 0.00924433 0.0092544 0.00926448 0.00927455 0.00928462 0.0092947 0.00930477 0.00931484 0.00932492 0.00933499 0.00934506 0.00935514 0.00936521 0.00937528 0.00938536 0.00939543 0.0094055 0.00941558 0.00942565 0.00943572 0.0094458 0.00945587 0.00946594 0.00947602 0.00948609 0.00949616 0.00950624 0.00951631 0.00952638 0.00953646 0.00954653 0.0095566 0.00956668 0.00957675 0.00958682 0.0095969 0.00960697 0.00961704 0.00962712 0.00963719 0.00964726 0.00965734 0.00966741 0.00967748 0.00968756 0.00969763 0.0097077 0.00971778 0.00972785 0.00973792 0.009748 +-0.00228858 -0.00211679 -0.00174383 -0.000995077 7.62727E-05 0.00132682 0.00266096 0.00401873 0.00534912 0.0065861 0.0076152 0.00826032 0.00849287 0.00854664 0.00856348 0.00857456 0.00858479 0.00859489 0.00860497 0.00861505 0.00862513 0.00863521 0.00864529 0.00865537 0.00866545 0.00867553 0.00868561 0.00869569 0.00870577 0.00871585 0.00872593 0.00873601 0.00874609 0.00875617 0.00876625 0.00877633 0.00878641 0.00879649 0.00880657 0.00881665 0.00882673 0.00883681 0.00884689 0.00885697 0.00886705 0.00887713 0.00888721 0.00889729 0.00890737 0.00891745 0.00892753 0.00893761 0.00894769 0.00895777 0.00896785 0.00897793 0.00898801 0.00899809 0.00900817 0.00901825 0.00902833 0.00903841 0.00904849 0.00905857 0.00906865 0.00907873 0.00908881 0.00909889 0.00910897 0.00911905 0.00912913 0.00913921 0.00914928 0.00915936 0.00916944 0.00917952 0.0091896 0.00919968 0.00920976 0.00921984 0.00922992 0.00924 0.00925008 0.00926016 0.00927024 0.00928032 0.0092904 0.00930048 0.00931056 0.00932064 0.00933072 0.0093408 0.00935088 0.00936096 0.00937104 0.00938112 0.0093912 0.00940128 0.00941136 0.00942144 0.00943152 0.0094416 0.00945168 0.00946176 0.00947184 0.00948192 0.009492 0.00950208 0.00951216 0.00952224 0.00953232 0.0095424 0.00955248 0.00956256 0.00957264 0.00958272 0.0095928 0.00960288 0.00961296 0.00962304 0.00963312 0.0096432 0.00965328 0.00966336 0.00967344 0.00968352 0.0096936 0.00970367 0.00971375 0.00972383 0.00973391 0.00974399 0.00975407 +-0.00229025 -0.00211823 -0.00174477 -0.000995408 7.63569E-05 0.00132718 0.00266155 0.00401957 0.00535028 0.00658779 0.00761784 0.00826438 0.00849788 0.00855189 0.00856878 0.00857988 0.00859011 0.00860022 0.00861031 0.00862039 0.00863048 0.00864057 0.00865065 0.00866074 0.00867083 0.00868091 0.008691 0.00870108 0.00871117 0.00872126 0.00873134 0.00874143 0.00875152 0.0087616 0.00877169 0.00878178 0.00879186 0.00880195 0.00881203 0.00882212 0.00883221 0.00884229 0.00885238 0.00886247 0.00887255 0.00888264 0.00889272 0.00890281 0.0089129 0.00892298 0.00893307 0.00894316 0.00895324 0.00896333 0.00897342 0.0089835 0.00899359 0.00900367 0.00901376 0.00902385 0.00903393 0.00904402 0.00905411 0.00906419 0.00907428 0.00908436 0.00909445 0.00910454 0.00911462 0.00912471 0.0091348 0.00914488 0.00915497 0.00916506 0.00917514 0.00918523 0.00919531 0.0092054 0.00921549 0.00922557 0.00923566 0.00924575 0.00925583 0.00926592 0.00927601 0.00928609 0.00929618 0.00930626 0.00931635 0.00932644 0.00933652 0.00934661 0.0093567 0.00936678 0.00937687 0.00938695 0.00939704 0.00940713 0.00941721 0.0094273 0.00943739 0.00944747 0.00945756 0.00946765 0.00947773 0.00948782 0.0094979 0.00950799 0.00951808 0.00952816 0.00953825 0.00954834 0.00955842 0.00956851 0.00957859 0.00958868 0.00959877 0.00960885 0.00961894 0.00962903 0.00963911 0.0096492 0.00965929 0.00966937 0.00967946 0.00968954 0.00969963 0.00970972 0.0097198 0.00972989 0.00973998 0.00975006 0.00976015 +-0.00229192 -0.00211967 -0.0017457 -0.000995739 7.64411E-05 0.00132754 0.00266214 0.0040204 0.00535144 0.00658948 0.00762048 0.00826843 0.00850288 0.00855714 0.00857408 0.00858519 0.00859543 0.00860554 0.00861564 0.00862573 0.00863582 0.00864592 0.00865601 0.0086661 0.0086762 0.00868629 0.00869638 0.00870647 0.00871657 0.00872666 0.00873675 0.00874685 0.00875694 0.00876703 0.00877712 0.00878722 0.00879731 0.0088074 0.0088175 0.00882759 0.00883768 0.00884777 0.00885787 0.00886796 0.00887805 0.00888815 0.00889824 0.00890833 0.00891842 0.00892852 0.00893861 0.0089487 0.00895879 0.00896889 0.00897898 0.00898907 0.00899917 0.00900926 0.00901935 0.00902944 0.00903954 0.00904963 0.00905972 0.00906982 0.00907991 0.00909 0.00910009 0.00911019 0.00912028 0.00913037 0.00914047 0.00915056 0.00916065 0.00917074 0.00918084 0.00919093 0.00920102 0.00921112 0.00922121 0.0092313 0.00924139 0.00925149 0.00926158 0.00927167 0.00928177 0.00929186 0.00930195 0.00931204 0.00932214 0.00933223 0.00934232 0.00935241 0.00936251 0.0093726 0.00938269 0.00939279 0.00940288 0.00941297 0.00942306 0.00943316 0.00944325 0.00945334 0.00946344 0.00947353 0.00948362 0.00949371 0.00950381 0.0095139 0.00952399 0.00953409 0.00954418 0.00955427 0.00956436 0.00957446 0.00958455 0.00959464 0.00960474 0.00961483 0.00962492 0.00963501 0.00964511 0.0096552 0.00966529 0.00967538 0.00968548 0.00969557 0.00970566 0.00971576 0.00972585 0.00973594 0.00974603 0.00975613 0.00976622 +-0.00229359 -0.00212111 -0.00174663 -0.000996069 7.65253E-05 0.00132791 0.00266273 0.00402123 0.0053526 0.00659116 0.00762311 0.00827248 0.00850788 0.00856239 0.00857938 0.0085905 0.00860074 0.00861087 0.00862097 0.00863107 0.00864117 0.00865127 0.00866137 0.00867146 0.00868156 0.00869166 0.00870176 0.00871186 0.00872196 0.00873206 0.00874216 0.00875226 0.00876236 0.00877246 0.00878256 0.00879266 0.00880276 0.00881286 0.00882295 0.00883305 0.00884315 0.00885325 0.00886335 0.00887345 0.00888355 0.00889365 0.00890375 0.00891385 0.00892395 0.00893405 0.00894415 0.00895425 0.00896434 0.00897444 0.00898454 0.00899464 0.00900474 0.00901484 0.00902494 0.00903504 0.00904514 0.00905524 0.00906534 0.00907544 0.00908554 0.00909564 0.00910574 0.00911583 0.00912593 0.00913603 0.00914613 0.00915623 0.00916633 0.00917643 0.00918653 0.00919663 0.00920673 0.00921683 0.00922693 0.00923703 0.00924713 0.00925723 0.00926732 0.00927742 0.00928752 0.00929762 0.00930772 0.00931782 0.00932792 0.00933802 0.00934812 0.00935822 0.00936832 0.00937842 0.00938852 0.00939862 0.00940871 0.00941881 0.00942891 0.00943901 0.00944911 0.00945921 0.00946931 0.00947941 0.00948951 0.00949961 0.00950971 0.00951981 0.00952991 0.00954001 0.00955011 0.0095602 0.0095703 0.0095804 0.0095905 0.0096006 0.0096107 0.0096208 0.0096309 0.009641 0.0096511 0.0096612 0.0096713 0.0096814 0.0096915 0.00970159 0.00971169 0.00972179 0.00973189 0.00974199 0.00975209 0.00976219 0.00977229 +-0.00229526 -0.00212255 -0.00174756 -0.000996399 7.66095E-05 0.00132827 0.00266332 0.00402207 0.00535376 0.00659285 0.00762573 0.00827652 0.00851288 0.00856764 0.00858467 0.0085958 0.00860606 0.00861619 0.00862629 0.0086364 0.00864651 0.00865661 0.00866672 0.00867682 0.00868693 0.00869704 0.00870714 0.00871725 0.00872735 0.00873746 0.00874757 0.00875767 0.00876778 0.00877788 0.00878799 0.00879809 0.0088082 0.00881831 0.00882841 0.00883852 0.00884862 0.00885873 0.00886883 0.00887894 0.00888905 0.00889915 0.00890926 0.00891936 0.00892947 0.00893958 0.00894968 0.00895979 0.00896989 0.00898 0.0089901 0.00900021 0.00901032 0.00902042 0.00903053 0.00904063 0.00905074 0.00906085 0.00907095 0.00908106 0.00909116 0.00910127 0.00911137 0.00912148 0.00913159 0.00914169 0.0091518 0.0091619 0.00917201 0.00918211 0.00919222 0.00920233 0.00921243 0.00922254 0.00923264 0.00924275 0.00925286 0.00926296 0.00927307 0.00928317 0.00929328 0.00930338 0.00931349 0.0093236 0.0093337 0.00934381 0.00935391 0.00936402 0.00937413 0.00938423 0.00939434 0.00940444 0.00941455 0.00942465 0.00943476 0.00944487 0.00945497 0.00946508 0.00947518 0.00948529 0.00949539 0.0095055 0.00951561 0.00952571 0.00953582 0.00954592 0.00955603 0.00956614 0.00957624 0.00958635 0.00959645 0.00960656 0.00961666 0.00962677 0.00963688 0.00964698 0.00965709 0.00966719 0.0096773 0.0096874 0.00969751 0.00970762 0.00971772 0.00972783 0.00973793 0.00974804 0.00975815 0.00976825 0.00977836 +-0.00229693 -0.00212399 -0.00174849 -0.000996729 7.66937E-05 0.00132863 0.0026639 0.0040229 0.00535491 0.00659453 0.00762836 0.00828055 0.00851788 0.00857289 0.00858997 0.00860111 0.00861137 0.0086215 0.00863162 0.00864173 0.00865185 0.00866196 0.00867207 0.00868218 0.00869229 0.00870241 0.00871252 0.00872263 0.00873274 0.00874286 0.00875297 0.00876308 0.00877319 0.00878331 0.00879342 0.00880353 0.00881364 0.00882375 0.00883387 0.00884398 0.00885409 0.0088642 0.00887432 0.00888443 0.00889454 0.00890465 0.00891476 0.00892488 0.00893499 0.0089451 0.00895521 0.00896533 0.00897544 0.00898555 0.00899566 0.00900578 0.00901589 0.009026 0.00903611 0.00904622 0.00905634 0.00906645 0.00907656 0.00908667 0.00909679 0.0091069 0.00911701 0.00912712 0.00913724 0.00914735 0.00915746 0.00916757 0.00917768 0.0091878 0.00919791 0.00920802 0.00921813 0.00922825 0.00923836 0.00924847 0.00925858 0.0092687 0.00927881 0.00928892 0.00929903 0.00930914 0.00931926 0.00932937 0.00933948 0.00934959 0.00935971 0.00936982 0.00937993 0.00939004 0.00940016 0.00941027 0.00942038 0.00943049 0.0094406 0.00945072 0.00946083 0.00947094 0.00948105 0.00949117 0.00950128 0.00951139 0.0095215 0.00953161 0.00954173 0.00955184 0.00956195 0.00957206 0.00958218 0.00959229 0.0096024 0.00961251 0.00962263 0.00963274 0.00964285 0.00965296 0.00966307 0.00967319 0.0096833 0.00969341 0.00970352 0.00971364 0.00972375 0.00973386 0.00974397 0.00975409 0.0097642 0.00977431 0.00978442 +-0.00229859 -0.00212543 -0.00174942 -0.000997058 7.6778E-05 0.00132899 0.00266449 0.00402373 0.00535607 0.0065962 0.00763097 0.00828458 0.00852287 0.00857813 0.00859526 0.00860641 0.00861668 0.00862682 0.00863694 0.00864706 0.00865718 0.0086673 0.00867742 0.00868754 0.00869766 0.00870778 0.00871789 0.00872801 0.00873813 0.00874825 0.00875837 0.00876849 0.00877861 0.00878873 0.00879884 0.00880896 0.00881908 0.0088292 0.00883932 0.00884944 0.00885956 0.00886968 0.00887979 0.00888991 0.00890003 0.00891015 0.00892027 0.00893039 0.00894051 0.00895063 0.00896074 0.00897086 0.00898098 0.0089911 0.00900122 0.00901134 0.00902146 0.00903158 0.00904169 0.00905181 0.00906193 0.00907205 0.00908217 0.00909229 0.00910241 0.00911253 0.00912265 0.00913276 0.00914288 0.009153 0.00916312 0.00917324 0.00918336 0.00919348 0.0092036 0.00921371 0.00922383 0.00923395 0.00924407 0.00925419 0.00926431 0.00927443 0.00928455 0.00929466 0.00930478 0.0093149 0.00932502 0.00933514 0.00934526 0.00935538 0.0093655 0.00937561 0.00938573 0.00939585 0.00940597 0.00941609 0.00942621 0.00943633 0.00944645 0.00945657 0.00946668 0.0094768 0.00948692 0.00949704 0.00950716 0.00951728 0.0095274 0.00953752 0.00954763 0.00955775 0.00956787 0.00957799 0.00958811 0.00959823 0.00960835 0.00961847 0.00962858 0.0096387 0.00964882 0.00965894 0.00966906 0.00967918 0.0096893 0.00969942 0.00970953 0.00971965 0.00972977 0.00973989 0.00975001 0.00976013 0.00977025 0.00978037 0.00979048 +-0.00230026 -0.00212687 -0.00175035 -0.000997386 7.68622E-05 0.00132935 0.00266508 0.00402456 0.00535722 0.00659788 0.00763358 0.0082886 0.00852785 0.00858337 0.00860054 0.00861171 0.00862199 0.00863214 0.00864226 0.00865239 0.00866252 0.00867264 0.00868277 0.00869289 0.00870302 0.00871314 0.00872327 0.00873339 0.00874352 0.00875364 0.00876377 0.00877389 0.00878402 0.00879414 0.00880427 0.00881439 0.00882452 0.00883464 0.00884477 0.0088549 0.00886502 0.00887515 0.00888527 0.0088954 0.00890552 0.00891565 0.00892577 0.0089359 0.00894602 0.00895615 0.00896627 0.0089764 0.00898652 0.00899665 0.00900677 0.0090169 0.00902702 0.00903715 0.00904728 0.0090574 0.00906753 0.00907765 0.00908778 0.0090979 0.00910803 0.00911815 0.00912828 0.0091384 0.00914853 0.00915865 0.00916878 0.0091789 0.00918903 0.00919915 0.00920928 0.0092194 0.00922953 0.00923966 0.00924978 0.00925991 0.00927003 0.00928016 0.00929028 0.00930041 0.00931053 0.00932066 0.00933078 0.00934091 0.00935103 0.00936116 0.00937128 0.00938141 0.00939153 0.00940166 0.00941179 0.00942191 0.00943204 0.00944216 0.00945229 0.00946241 0.00947254 0.00948266 0.00949279 0.00950291 0.00951304 0.00952316 0.00953329 0.00954341 0.00955354 0.00956366 0.00957379 0.00958391 0.00959404 0.00960417 0.00961429 0.00962442 0.00963454 0.00964467 0.00965479 0.00966492 0.00967504 0.00968517 0.00969529 0.00970542 0.00971554 0.00972567 0.00973579 0.00974592 0.00975604 0.00976617 0.00977629 0.00978642 0.00979655 +-0.00230193 -0.00212831 -0.00175128 -0.000997714 7.69465E-05 0.00132971 0.00266566 0.00402538 0.00535837 0.00659955 0.00763619 0.00829262 0.00853284 0.00858861 0.00860583 0.00861701 0.00862729 0.00863745 0.00864758 0.00865772 0.00866785 0.00867798 0.00868811 0.00869824 0.00870837 0.00871851 0.00872864 0.00873877 0.0087489 0.00875903 0.00876916 0.0087793 0.00878943 0.00879956 0.00880969 0.00881982 0.00882996 0.00884009 0.00885022 0.00886035 0.00887048 0.00888061 0.00889075 0.00890088 0.00891101 0.00892114 0.00893127 0.0089414 0.00895154 0.00896167 0.0089718 0.00898193 0.00899206 0.00900219 0.00901233 0.00902246 0.00903259 0.00904272 0.00905285 0.00906299 0.00907312 0.00908325 0.00909338 0.00910351 0.00911364 0.00912378 0.00913391 0.00914404 0.00915417 0.0091643 0.00917443 0.00918457 0.0091947 0.00920483 0.00921496 0.00922509 0.00923523 0.00924536 0.00925549 0.00926562 0.00927575 0.00928588 0.00929602 0.00930615 0.00931628 0.00932641 0.00933654 0.00934667 0.00935681 0.00936694 0.00937707 0.0093872 0.00939733 0.00940747 0.0094176 0.00942773 0.00943786 0.00944799 0.00945812 0.00946826 0.00947839 0.00948852 0.00949865 0.00950878 0.00951891 0.00952905 0.00953918 0.00954931 0.00955944 0.00956957 0.0095797 0.00958984 0.00959997 0.0096101 0.00962023 0.00963036 0.0096405 0.00965063 0.00966076 0.00967089 0.00968102 0.00969115 0.00970129 0.00971142 0.00972155 0.00973168 0.00974181 0.00975194 0.00976208 0.00977221 0.00978234 0.00979247 0.0098026 +-0.0023036 -0.00212975 -0.0017522 -0.000998042 7.70307E-05 0.00133006 0.00266625 0.00402621 0.00535952 0.00660122 0.0076388 0.00829663 0.00853782 0.00859384 0.00861111 0.0086223 0.0086326 0.00864276 0.0086529 0.00866304 0.00867318 0.00868332 0.00869345 0.00870359 0.00871373 0.00872387 0.00873401 0.00874414 0.00875428 0.00876442 0.00877456 0.0087847 0.00879484 0.00880497 0.00881511 0.00882525 0.00883539 0.00884553 0.00885567 0.0088658 0.00887594 0.00888608 0.00889622 0.00890636 0.00891649 0.00892663 0.00893677 0.00894691 0.00895705 0.00896719 0.00897732 0.00898746 0.0089976 0.00900774 0.00901788 0.00902802 0.00903815 0.00904829 0.00905843 0.00906857 0.00907871 0.00908884 0.00909898 0.00910912 0.00911926 0.0091294 0.00913954 0.00914967 0.00915981 0.00916995 0.00918009 0.00919023 0.00920037 0.0092105 0.00922064 0.00923078 0.00924092 0.00925106 0.00926119 0.00927133 0.00928147 0.00929161 0.00930175 0.00931189 0.00932202 0.00933216 0.0093423 0.00935244 0.00936258 0.00937272 0.00938285 0.00939299 0.00940313 0.00941327 0.00942341 0.00943354 0.00944368 0.00945382 0.00946396 0.0094741 0.00948424 0.00949437 0.00950451 0.00951465 0.00952479 0.00953493 0.00954507 0.0095552 0.00956534 0.00957548 0.00958562 0.00959576 0.00960589 0.00961603 0.00962617 0.00963631 0.00964645 0.00965659 0.00966672 0.00967686 0.009687 0.00969714 0.00970728 0.00971742 0.00972755 0.00973769 0.00974783 0.00975797 0.00976811 0.00977824 0.00978838 0.00979852 0.00980866 +-0.00230526 -0.00213118 -0.00175313 -0.000998369 7.7115E-05 0.00133042 0.00266684 0.00402704 0.00536067 0.00660289 0.00764139 0.00830064 0.00854279 0.00859908 0.00861639 0.0086276 0.0086379 0.00864807 0.00865821 0.00866836 0.0086785 0.00868865 0.00869879 0.00870894 0.00871908 0.00872923 0.00873937 0.00874952 0.00875966 0.00876981 0.00877995 0.0087901 0.00880024 0.00881039 0.00882053 0.00883068 0.00884082 0.00885096 0.00886111 0.00887125 0.0088814 0.00889154 0.00890169 0.00891183 0.00892198 0.00893212 0.00894227 0.00895241 0.00896256 0.0089727 0.00898285 0.00899299 0.00900314 0.00901328 0.00902343 0.00903357 0.00904371 0.00905386 0.009064 0.00907415 0.00908429 0.00909444 0.00910458 0.00911473 0.00912487 0.00913502 0.00914516 0.00915531 0.00916545 0.0091756 0.00918574 0.00919589 0.00920603 0.00921617 0.00922632 0.00923646 0.00924661 0.00925675 0.0092669 0.00927704 0.00928719 0.00929733 0.00930748 0.00931762 0.00932777 0.00933791 0.00934806 0.0093582 0.00936835 0.00937849 0.00938863 0.00939878 0.00940892 0.00941907 0.00942921 0.00943936 0.0094495 0.00945965 0.00946979 0.00947994 0.00949008 0.00950023 0.00951037 0.00952052 0.00953066 0.00954081 0.00955095 0.00956109 0.00957124 0.00958138 0.00959153 0.00960167 0.00961182 0.00962196 0.00963211 0.00964225 0.0096524 0.00966254 0.00967269 0.00968283 0.00969298 0.00970312 0.00971327 0.00972341 0.00973355 0.0097437 0.00975384 0.00976399 0.00977413 0.00978428 0.00979442 0.00980457 0.00981471 +-0.00230693 -0.00213262 -0.00175405 -0.000998696 7.71993E-05 0.00133078 0.00266742 0.00402786 0.00536182 0.00660455 0.00764399 0.00830464 0.00854776 0.00860431 0.00862167 0.00863289 0.0086432 0.00865337 0.00866353 0.00867368 0.00868383 0.00869398 0.00870413 0.00871428 0.00872444 0.00873459 0.00874474 0.00875489 0.00876504 0.00877519 0.00878534 0.00879549 0.00880564 0.0088158 0.00882595 0.0088361 0.00884625 0.0088564 0.00886655 0.0088767 0.00888685 0.00889701 0.00890716 0.00891731 0.00892746 0.00893761 0.00894776 0.00895791 0.00896806 0.00897822 0.00898837 0.00899852 0.00900867 0.00901882 0.00902897 0.00903912 0.00904927 0.00905942 0.00906958 0.00907973 0.00908988 0.00910003 0.00911018 0.00912033 0.00913048 0.00914063 0.00915079 0.00916094 0.00917109 0.00918124 0.00919139 0.00920154 0.00921169 0.00922184 0.00923199 0.00924215 0.0092523 0.00926245 0.0092726 0.00928275 0.0092929 0.00930305 0.0093132 0.00932336 0.00933351 0.00934366 0.00935381 0.00936396 0.00937411 0.00938426 0.00939441 0.00940457 0.00941472 0.00942487 0.00943502 0.00944517 0.00945532 0.00946547 0.00947562 0.00948577 0.00949593 0.00950608 0.00951623 0.00952638 0.00953653 0.00954668 0.00955683 0.00956698 0.00957714 0.00958729 0.00959744 0.00960759 0.00961774 0.00962789 0.00963804 0.00964819 0.00965834 0.0096685 0.00967865 0.0096888 0.00969895 0.0097091 0.00971925 0.0097294 0.00973955 0.00974971 0.00975986 0.00977001 0.00978016 0.00979031 0.00980046 0.00981061 0.00982076 +-0.00230859 -0.00213405 -0.00175498 -0.000999022 7.72836E-05 0.00133114 0.002668 0.00402869 0.00536296 0.00660621 0.00764658 0.00830863 0.00855273 0.00860954 0.00862695 0.00863818 0.0086485 0.00865868 0.00866884 0.008679 0.00868915 0.00869931 0.00870947 0.00871963 0.00872978 0.00873994 0.0087501 0.00876026 0.00877042 0.00878057 0.00879073 0.00880089 0.00881105 0.0088212 0.00883136 0.00884152 0.00885168 0.00886183 0.00887199 0.00888215 0.00889231 0.00890247 0.00891262 0.00892278 0.00893294 0.0089431 0.00895325 0.00896341 0.00897357 0.00898373 0.00899388 0.00900404 0.0090142 0.00902436 0.00903451 0.00904467 0.00905483 0.00906499 0.00907515 0.0090853 0.00909546 0.00910562 0.00911578 0.00912593 0.00913609 0.00914625 0.00915641 0.00916656 0.00917672 0.00918688 0.00919704 0.0092072 0.00921735 0.00922751 0.00923767 0.00924783 0.00925798 0.00926814 0.0092783 0.00928846 0.00929861 0.00930877 0.00931893 0.00932909 0.00933924 0.0093494 0.00935956 0.00936972 0.00937988 0.00939003 0.00940019 0.00941035 0.00942051 0.00943066 0.00944082 0.00945098 0.00946114 0.00947129 0.00948145 0.00949161 0.00950177 0.00951193 0.00952208 0.00953224 0.0095424 0.00955256 0.00956271 0.00957287 0.00958303 0.00959319 0.00960334 0.0096135 0.00962366 0.00963382 0.00964397 0.00965413 0.00966429 0.00967445 0.00968461 0.00969476 0.00970492 0.00971508 0.00972524 0.00973539 0.00974555 0.00975571 0.00976587 0.00977602 0.00978618 0.00979634 0.0098065 0.00981666 0.00982681 +-0.00231026 -0.00213549 -0.0017559 -0.000999348 7.73679E-05 0.0013315 0.00266859 0.00402951 0.00536411 0.00660787 0.00764916 0.00831262 0.0085577 0.00861477 0.00863223 0.00864347 0.00865379 0.00866398 0.00867415 0.00868431 0.00869448 0.00870464 0.0087148 0.00872497 0.00873513 0.0087453 0.00875546 0.00876563 0.00877579 0.00878595 0.00879612 0.00880628 0.00881645 0.00882661 0.00883677 0.00884694 0.0088571 0.00886727 0.00887743 0.00888759 0.00889776 0.00890792 0.00891809 0.00892825 0.00893842 0.00894858 0.00895874 0.00896891 0.00897907 0.00898924 0.0089994 0.00900956 0.00901973 0.00902989 0.00904006 0.00905022 0.00906039 0.00907055 0.00908071 0.00909088 0.00910104 0.00911121 0.00912137 0.00913153 0.0091417 0.00915186 0.00916203 0.00917219 0.00918235 0.00919252 0.00920268 0.00921285 0.00922301 0.00923318 0.00924334 0.0092535 0.00926367 0.00927383 0.009284 0.00929416 0.00930432 0.00931449 0.00932465 0.00933482 0.00934498 0.00935514 0.00936531 0.00937547 0.00938564 0.0093958 0.00940597 0.00941613 0.00942629 0.00943646 0.00944662 0.00945679 0.00946695 0.00947711 0.00948728 0.00949744 0.00950761 0.00951777 0.00952794 0.0095381 0.00954826 0.00955843 0.00956859 0.00957876 0.00958892 0.00959908 0.00960925 0.00961941 0.00962958 0.00963974 0.0096499 0.00966007 0.00967023 0.0096804 0.00969056 0.00970073 0.00971089 0.00972105 0.00973122 0.00974138 0.00975155 0.00976171 0.00977187 0.00978204 0.0097922 0.00980237 0.00981253 0.0098227 0.00983286 +-0.00231192 -0.00213692 -0.00175682 -0.000999673 7.74522E-05 0.00133186 0.00266917 0.00403033 0.00536525 0.00660953 0.00765174 0.0083166 0.00856266 0.00861999 0.0086375 0.00864876 0.00865909 0.00866928 0.00867945 0.00868963 0.0086998 0.00870997 0.00872014 0.00873031 0.00874048 0.00875065 0.00876082 0.00877099 0.00878116 0.00879133 0.0088015 0.00881167 0.00882184 0.00883201 0.00884218 0.00885235 0.00886253 0.0088727 0.00888287 0.00889304 0.00890321 0.00891338 0.00892355 0.00893372 0.00894389 0.00895406 0.00896423 0.0089744 0.00898457 0.00899474 0.00900491 0.00901508 0.00902526 0.00903543 0.0090456 0.00905577 0.00906594 0.00907611 0.00908628 0.00909645 0.00910662 0.00911679 0.00912696 0.00913713 0.0091473 0.00915747 0.00916764 0.00917781 0.00918798 0.00919816 0.00920833 0.0092185 0.00922867 0.00923884 0.00924901 0.00925918 0.00926935 0.00927952 0.00928969 0.00929986 0.00931003 0.0093202 0.00933037 0.00934054 0.00935071 0.00936089 0.00937106 0.00938123 0.0093914 0.00940157 0.00941174 0.00942191 0.00943208 0.00944225 0.00945242 0.00946259 0.00947276 0.00948293 0.0094931 0.00950327 0.00951344 0.00952361 0.00953379 0.00954396 0.00955413 0.0095643 0.00957447 0.00958464 0.00959481 0.00960498 0.00961515 0.00962532 0.00963549 0.00964566 0.00965583 0.009666 0.00967617 0.00968634 0.00969652 0.00970669 0.00971686 0.00972703 0.0097372 0.00974737 0.00975754 0.00976771 0.00977788 0.00978805 0.00979822 0.00980839 0.00981856 0.00982873 0.0098389 +-0.00231359 -0.00213835 -0.00175774 -0.000999998 7.75366E-05 0.00133221 0.00266975 0.00403115 0.00536639 0.00661118 0.00765432 0.00832058 0.00856762 0.00862521 0.00864277 0.00865404 0.00866438 0.00867458 0.00868476 0.00869494 0.00870511 0.00871529 0.00872547 0.00873564 0.00874582 0.008756 0.00876618 0.00877635 0.00878653 0.00879671 0.00880688 0.00881706 0.00882724 0.00883742 0.00884759 0.00885777 0.00886795 0.00887812 0.0088883 0.00889848 0.00890865 0.00891883 0.00892901 0.00893919 0.00894936 0.00895954 0.00896972 0.00897989 0.00899007 0.00900025 0.00901043 0.0090206 0.00903078 0.00904096 0.00905113 0.00906131 0.00907149 0.00908167 0.00909184 0.00910202 0.0091122 0.00912237 0.00913255 0.00914273 0.0091529 0.00916308 0.00917326 0.00918344 0.00919361 0.00920379 0.00921397 0.00922414 0.00923432 0.0092445 0.00925468 0.00926485 0.00927503 0.00928521 0.00929538 0.00930556 0.00931574 0.00932592 0.00933609 0.00934627 0.00935645 0.00936662 0.0093768 0.00938698 0.00939715 0.00940733 0.00941751 0.00942769 0.00943786 0.00944804 0.00945822 0.00946839 0.00947857 0.00948875 0.00949893 0.0095091 0.00951928 0.00952946 0.00953963 0.00954981 0.00955999 0.00957016 0.00958034 0.00959052 0.0096007 0.00961087 0.00962105 0.00963123 0.0096414 0.00965158 0.00966176 0.00967194 0.00968211 0.00969229 0.00970247 0.00971264 0.00972282 0.009733 0.00974318 0.00975335 0.00976353 0.00977371 0.00978388 0.00979406 0.00980424 0.00981441 0.00982459 0.00983477 0.00984495 +-0.00231525 -0.00213979 -0.00175866 -0.00100032 7.76209E-05 0.00133257 0.00267033 0.00403197 0.00536753 0.00661283 0.00765689 0.00832455 0.00857258 0.00863043 0.00864804 0.00865932 0.00866967 0.00867987 0.00869006 0.00870025 0.00871043 0.00872061 0.0087308 0.00874098 0.00875116 0.00876135 0.00877153 0.00878171 0.0087919 0.00880208 0.00881226 0.00882245 0.00883263 0.00884282 0.008853 0.00886318 0.00887337 0.00888355 0.00889373 0.00890392 0.0089141 0.00892428 0.00893447 0.00894465 0.00895483 0.00896502 0.0089752 0.00898538 0.00899557 0.00900575 0.00901594 0.00902612 0.0090363 0.00904649 0.00905667 0.00906685 0.00907704 0.00908722 0.0090974 0.00910759 0.00911777 0.00912795 0.00913814 0.00914832 0.0091585 0.00916869 0.00917887 0.00918906 0.00919924 0.00920942 0.00921961 0.00922979 0.00923997 0.00925016 0.00926034 0.00927052 0.00928071 0.00929089 0.00930107 0.00931126 0.00932144 0.00933163 0.00934181 0.00935199 0.00936218 0.00937236 0.00938254 0.00939273 0.00940291 0.00941309 0.00942328 0.00943346 0.00944364 0.00945383 0.00946401 0.00947419 0.00948438 0.00949456 0.00950475 0.00951493 0.00952511 0.0095353 0.00954548 0.00955566 0.00956585 0.00957603 0.00958621 0.0095964 0.00960658 0.00961676 0.00962695 0.00963713 0.00964731 0.0096575 0.00966768 0.00967787 0.00968805 0.00969823 0.00970842 0.0097186 0.00972878 0.00973897 0.00974915 0.00975933 0.00976952 0.0097797 0.00978988 0.00980007 0.00981025 0.00982043 0.00983062 0.0098408 0.00985099 +-0.00231691 -0.00214122 -0.00175958 -0.00100065 7.77053E-05 0.00133293 0.00267091 0.00403279 0.00536867 0.00661448 0.00765945 0.00832852 0.00857753 0.00863565 0.00865331 0.0086646 0.00867495 0.00868517 0.00869536 0.00870555 0.00871574 0.00872593 0.00873612 0.00874631 0.0087565 0.00876669 0.00877688 0.00878707 0.00879726 0.00880745 0.00881764 0.00882783 0.00883802 0.00884821 0.0088584 0.00886859 0.00887878 0.00888897 0.00889916 0.00890935 0.00891954 0.00892973 0.00893992 0.00895011 0.0089603 0.00897049 0.00898068 0.00899087 0.00900106 0.00901125 0.00902144 0.00903163 0.00904182 0.00905201 0.0090622 0.00907239 0.00908258 0.00909277 0.00910296 0.00911315 0.00912334 0.00913353 0.00914372 0.00915391 0.0091641 0.00917429 0.00918448 0.00919467 0.00920486 0.00921505 0.00922524 0.00923543 0.00924562 0.00925581 0.009266 0.00927619 0.00928638 0.00929657 0.00930676 0.00931695 0.00932714 0.00933733 0.00934752 0.00935771 0.0093679 0.00937809 0.00938828 0.00939847 0.00940866 0.00941885 0.00942904 0.00943923 0.00944942 0.00945961 0.0094698 0.00947999 0.00949018 0.00950037 0.00951056 0.00952075 0.00953094 0.00954113 0.00955132 0.00956151 0.0095717 0.00958189 0.00959208 0.00960227 0.00961246 0.00962265 0.00963284 0.00964303 0.00965322 0.00966341 0.0096736 0.00968379 0.00969398 0.00970417 0.00971436 0.00972455 0.00973474 0.00974493 0.00975512 0.00976531 0.0097755 0.00978569 0.00979588 0.00980607 0.00981626 0.00982645 0.00983664 0.00984683 0.00985702 +-0.00231858 -0.00214265 -0.0017605 -0.00100097 7.77896E-05 0.00133328 0.0026715 0.00403361 0.0053698 0.00661613 0.00766202 0.00833248 0.00858248 0.00864087 0.00865857 0.00866988 0.00868024 0.00869046 0.00870066 0.00871086 0.00872105 0.00873125 0.00874145 0.00875164 0.00876184 0.00877204 0.00878223 0.00879243 0.00880263 0.00881282 0.00882302 0.00883322 0.00884341 0.00885361 0.0088638 0.008874 0.0088842 0.00889439 0.00890459 0.00891479 0.00892498 0.00893518 0.00894538 0.00895557 0.00896577 0.00897597 0.00898616 0.00899636 0.00900656 0.00901675 0.00902695 0.00903714 0.00904734 0.00905754 0.00906773 0.00907793 0.00908813 0.00909832 0.00910852 0.00911872 0.00912891 0.00913911 0.00914931 0.0091595 0.0091697 0.0091799 0.00919009 0.00920029 0.00921048 0.00922068 0.00923088 0.00924107 0.00925127 0.00926147 0.00927166 0.00928186 0.00929206 0.00930225 0.00931245 0.00932265 0.00933284 0.00934304 0.00935324 0.00936343 0.00937363 0.00938382 0.00939402 0.00940422 0.00941441 0.00942461 0.00943481 0.009445 0.0094552 0.0094654 0.00947559 0.00948579 0.00949599 0.00950618 0.00951638 0.00952657 0.00953677 0.00954697 0.00955716 0.00956736 0.00957756 0.00958775 0.00959795 0.00960815 0.00961834 0.00962854 0.00963874 0.00964893 0.00965913 0.00966933 0.00967952 0.00968972 0.00969991 0.00971011 0.00972031 0.0097305 0.0097407 0.0097509 0.00976109 0.00977129 0.00978149 0.00979168 0.00980188 0.00981208 0.00982227 0.00983247 0.00984267 0.00985286 0.00986306 +-0.00232024 -0.00214408 -0.00176142 -0.00100129 7.7874E-05 0.00133364 0.00267208 0.00403443 0.00537094 0.00661777 0.00766457 0.00833643 0.00858742 0.00864608 0.00866384 0.00867516 0.00868552 0.00869575 0.00870596 0.00871616 0.00872636 0.00873657 0.00874677 0.00875697 0.00876718 0.00877738 0.00878758 0.00879778 0.00880799 0.00881819 0.00882839 0.0088386 0.0088488 0.008859 0.0088692 0.00887941 0.00888961 0.00889981 0.00891002 0.00892022 0.00893042 0.00894063 0.00895083 0.00896103 0.00897123 0.00898144 0.00899164 0.00900184 0.00901205 0.00902225 0.00903245 0.00904265 0.00905286 0.00906306 0.00907326 0.00908347 0.00909367 0.00910387 0.00911407 0.00912428 0.00913448 0.00914468 0.00915489 0.00916509 0.00917529 0.0091855 0.0091957 0.0092059 0.0092161 0.00922631 0.00923651 0.00924671 0.00925692 0.00926712 0.00927732 0.00928752 0.00929773 0.00930793 0.00931813 0.00932834 0.00933854 0.00934874 0.00935895 0.00936915 0.00937935 0.00938955 0.00939976 0.00940996 0.00942016 0.00943037 0.00944057 0.00945077 0.00946097 0.00947118 0.00948138 0.00949158 0.00950179 0.00951199 0.00952219 0.00953239 0.0095426 0.0095528 0.009563 0.00957321 0.00958341 0.00959361 0.00960382 0.00961402 0.00962422 0.00963442 0.00964463 0.00965483 0.00966503 0.00967524 0.00968544 0.00969564 0.00970584 0.00971605 0.00972625 0.00973645 0.00974666 0.00975686 0.00976706 0.00977726 0.00978747 0.00979767 0.00980787 0.00981808 0.00982828 0.00983848 0.00984869 0.00985889 0.00986909 +-0.0023219 -0.00214551 -0.00176233 -0.00100161 7.79584E-05 0.00133399 0.00267265 0.00403525 0.00537207 0.00661941 0.00766713 0.00834038 0.00859237 0.00865129 0.0086691 0.00868043 0.00869081 0.00870104 0.00871125 0.00872146 0.00873167 0.00874188 0.00875209 0.0087623 0.00877251 0.00878272 0.00879293 0.00880314 0.00881335 0.00882356 0.00883377 0.00884397 0.00885418 0.00886439 0.0088746 0.00888481 0.00889502 0.00890523 0.00891544 0.00892565 0.00893586 0.00894607 0.00895628 0.00896649 0.0089767 0.00898691 0.00899712 0.00900732 0.00901753 0.00902774 0.00903795 0.00904816 0.00905837 0.00906858 0.00907879 0.009089 0.00909921 0.00910942 0.00911963 0.00912984 0.00914005 0.00915026 0.00916047 0.00917067 0.00918088 0.00919109 0.0092013 0.00921151 0.00922172 0.00923193 0.00924214 0.00925235 0.00926256 0.00927277 0.00928298 0.00929319 0.0093034 0.00931361 0.00932382 0.00933402 0.00934423 0.00935444 0.00936465 0.00937486 0.00938507 0.00939528 0.00940549 0.0094157 0.00942591 0.00943612 0.00944633 0.00945654 0.00946675 0.00947696 0.00948717 0.00949737 0.00950758 0.00951779 0.009528 0.00953821 0.00954842 0.00955863 0.00956884 0.00957905 0.00958926 0.00959947 0.00960968 0.00961989 0.0096301 0.00964031 0.00965052 0.00966072 0.00967093 0.00968114 0.00969135 0.00970156 0.00971177 0.00972198 0.00973219 0.0097424 0.00975261 0.00976282 0.00977303 0.00978324 0.00979345 0.00980366 0.00981387 0.00982408 0.00983428 0.00984449 0.0098547 0.00986491 0.00987512 +-0.00232356 -0.00214694 -0.00176325 -0.00100194 7.80428E-05 0.00133435 0.00267323 0.00403606 0.0053732 0.00662105 0.00766968 0.00834432 0.00859731 0.0086565 0.00867436 0.0086857 0.00869609 0.00870633 0.00871654 0.00872676 0.00873698 0.00874719 0.00875741 0.00876762 0.00877784 0.00878806 0.00879827 0.00880849 0.0088187 0.00882892 0.00883914 0.00884935 0.00885957 0.00886978 0.00888 0.00889021 0.00890043 0.00891065 0.00892086 0.00893108 0.00894129 0.00895151 0.00896173 0.00897194 0.00898216 0.00899237 0.00900259 0.0090128 0.00902302 0.00903324 0.00904345 0.00905367 0.00906388 0.0090741 0.00908432 0.00909453 0.00910475 0.00911496 0.00912518 0.00913539 0.00914561 0.00915583 0.00916604 0.00917626 0.00918647 0.00919669 0.00920691 0.00921712 0.00922734 0.00923755 0.00924777 0.00925798 0.0092682 0.00927842 0.00928863 0.00929885 0.00930906 0.00931928 0.0093295 0.00933971 0.00934993 0.00936014 0.00937036 0.00938057 0.00939079 0.00940101 0.00941122 0.00942144 0.00943165 0.00944187 0.00945209 0.0094623 0.00947252 0.00948273 0.00949295 0.00950316 0.00951338 0.0095236 0.00953381 0.00954403 0.00955424 0.00956446 0.00957468 0.00958489 0.00959511 0.00960532 0.00961554 0.00962575 0.00963597 0.00964619 0.0096564 0.00966662 0.00967683 0.00968705 0.00969727 0.00970748 0.0097177 0.00972791 0.00973813 0.00974834 0.00975856 0.00976878 0.00977899 0.00978921 0.00979942 0.00980964 0.00981986 0.00983007 0.00984029 0.0098505 0.00986072 0.00987093 0.00988115 +-0.00232522 -0.00214836 -0.00176416 -0.00100226 7.81272E-05 0.0013347 0.00267381 0.00403688 0.00537433 0.00662269 0.00767221 0.00834826 0.00860224 0.00866171 0.00867962 0.00869097 0.00870136 0.00871161 0.00872184 0.00873206 0.00874228 0.0087525 0.00876273 0.00877295 0.00878317 0.00879339 0.00880361 0.00881384 0.00882406 0.00883428 0.0088445 0.00885473 0.00886495 0.00887517 0.00888539 0.00889561 0.00890584 0.00891606 0.00892628 0.0089365 0.00894673 0.00895695 0.00896717 0.00897739 0.00898762 0.00899784 0.00900806 0.00901828 0.0090285 0.00903873 0.00904895 0.00905917 0.00906939 0.00907962 0.00908984 0.00910006 0.00911028 0.00912051 0.00913073 0.00914095 0.00915117 0.00916139 0.00917162 0.00918184 0.00919206 0.00920228 0.00921251 0.00922273 0.00923295 0.00924317 0.00925339 0.00926362 0.00927384 0.00928406 0.00929428 0.00930451 0.00931473 0.00932495 0.00933517 0.0093454 0.00935562 0.00936584 0.00937606 0.00938628 0.00939651 0.00940673 0.00941695 0.00942717 0.0094374 0.00944762 0.00945784 0.00946806 0.00947829 0.00948851 0.00949873 0.00950895 0.00951917 0.0095294 0.00953962 0.00954984 0.00956006 0.00957029 0.00958051 0.00959073 0.00960095 0.00961117 0.0096214 0.00963162 0.00964184 0.00965206 0.00966229 0.00967251 0.00968273 0.00969295 0.00970318 0.0097134 0.00972362 0.00973384 0.00974406 0.00975429 0.00976451 0.00977473 0.00978495 0.00979518 0.0098054 0.00981562 0.00982584 0.00983607 0.00984629 0.00985651 0.00986673 0.00987695 0.00988718 +-0.00232688 -0.00214979 -0.00176508 -0.00100258 7.82116E-05 0.00133506 0.00267439 0.00403769 0.00537546 0.00662432 0.00767475 0.00835219 0.00860717 0.00866691 0.00868487 0.00869624 0.00870664 0.00871689 0.00872712 0.00873735 0.00874758 0.00875781 0.00876804 0.00877827 0.0087885 0.00879873 0.00880895 0.00881918 0.00882941 0.00883964 0.00884987 0.0088601 0.00887033 0.00888056 0.00889078 0.00890101 0.00891124 0.00892147 0.0089317 0.00894193 0.00895216 0.00896239 0.00897261 0.00898284 0.00899307 0.0090033 0.00901353 0.00902376 0.00903399 0.00904422 0.00905444 0.00906467 0.0090749 0.00908513 0.00909536 0.00910559 0.00911582 0.00912605 0.00913627 0.0091465 0.00915673 0.00916696 0.00917719 0.00918742 0.00919765 0.00920788 0.0092181 0.00922833 0.00923856 0.00924879 0.00925902 0.00926925 0.00927948 0.0092897 0.00929993 0.00931016 0.00932039 0.00933062 0.00934085 0.00935108 0.00936131 0.00937153 0.00938176 0.00939199 0.00940222 0.00941245 0.00942268 0.00943291 0.00944314 0.00945336 0.00946359 0.00947382 0.00948405 0.00949428 0.00950451 0.00951474 0.00952497 0.00953519 0.00954542 0.00955565 0.00956588 0.00957611 0.00958634 0.00959657 0.0096068 0.00961702 0.00962725 0.00963748 0.00964771 0.00965794 0.00966817 0.0096784 0.00968863 0.00969885 0.00970908 0.00971931 0.00972954 0.00973977 0.00975 0.00976023 0.00977046 0.00978068 0.00979091 0.00980114 0.00981137 0.0098216 0.00983183 0.00984206 0.00985229 0.00986251 0.00987274 0.00988297 0.0098932 +-0.00232854 -0.00215122 -0.00176599 -0.0010029 7.8296E-05 0.00133541 0.00267497 0.00403851 0.00537659 0.00662595 0.00767729 0.00835612 0.0086121 0.00867211 0.00869012 0.00870151 0.00871191 0.00872217 0.00873241 0.00874265 0.00875288 0.00876312 0.00877335 0.00878359 0.00879382 0.00880406 0.00881429 0.00882453 0.00883476 0.008845 0.00885523 0.00886547 0.0088757 0.00888594 0.00889617 0.00890641 0.00891664 0.00892688 0.00893711 0.00894735 0.00895759 0.00896782 0.00897806 0.00898829 0.00899853 0.00900876 0.009019 0.00902923 0.00903947 0.0090497 0.00905994 0.00907017 0.00908041 0.00909064 0.00910088 0.00911111 0.00912135 0.00913158 0.00914182 0.00915205 0.00916229 0.00917252 0.00918276 0.00919299 0.00920323 0.00921346 0.0092237 0.00923394 0.00924417 0.00925441 0.00926464 0.00927488 0.00928511 0.00929535 0.00930558 0.00931582 0.00932605 0.00933629 0.00934652 0.00935676 0.00936699 0.00937723 0.00938746 0.0093977 0.00940793 0.00941817 0.0094284 0.00943864 0.00944887 0.00945911 0.00946934 0.00947958 0.00948981 0.00950005 0.00951029 0.00952052 0.00953076 0.00954099 0.00955123 0.00956146 0.0095717 0.00958193 0.00959217 0.0096024 0.00961264 0.00962287 0.00963311 0.00964334 0.00965358 0.00966381 0.00967405 0.00968428 0.00969452 0.00970475 0.00971499 0.00972522 0.00973546 0.00974569 0.00975593 0.00976616 0.0097764 0.00978663 0.00979687 0.00980711 0.00981734 0.00982758 0.00983781 0.00984805 0.00985828 0.00986852 0.00987875 0.00988899 0.00989922 +-0.0023302 -0.00215264 -0.0017669 -0.00100322 7.83804E-05 0.00133577 0.00267554 0.00403932 0.00537772 0.00662758 0.00767982 0.00836004 0.00861702 0.00867731 0.00869537 0.00870677 0.00871718 0.00872745 0.0087377 0.00874794 0.00875818 0.00876842 0.00877866 0.0087889 0.00879915 0.00880939 0.00881963 0.00882987 0.00884011 0.00885035 0.0088606 0.00887084 0.00888108 0.00889132 0.00890156 0.0089118 0.00892205 0.00893229 0.00894253 0.00895277 0.00896301 0.00897325 0.00898349 0.00899374 0.00900398 0.00901422 0.00902446 0.0090347 0.00904494 0.00905519 0.00906543 0.00907567 0.00908591 0.00909615 0.00910639 0.00911664 0.00912688 0.00913712 0.00914736 0.0091576 0.00916784 0.00917809 0.00918833 0.00919857 0.00920881 0.00921905 0.00922929 0.00923954 0.00924978 0.00926002 0.00927026 0.0092805 0.00929074 0.00930099 0.00931123 0.00932147 0.00933171 0.00934195 0.00935219 0.00936244 0.00937268 0.00938292 0.00939316 0.0094034 0.00941364 0.00942388 0.00943413 0.00944437 0.00945461 0.00946485 0.00947509 0.00948533 0.00949558 0.00950582 0.00951606 0.0095263 0.00953654 0.00954678 0.00955703 0.00956727 0.00957751 0.00958775 0.00959799 0.00960823 0.00961848 0.00962872 0.00963896 0.0096492 0.00965944 0.00966968 0.00967993 0.00969017 0.00970041 0.00971065 0.00972089 0.00973113 0.00974138 0.00975162 0.00976186 0.0097721 0.00978234 0.00979258 0.00980282 0.00981307 0.00982331 0.00983355 0.00984379 0.00985403 0.00986427 0.00987452 0.00988476 0.009895 0.00990524 +-0.00233186 -0.00215407 -0.00176781 -0.00100354 7.84649E-05 0.00133612 0.00267612 0.00404013 0.00537884 0.0066292 0.00768234 0.00836395 0.00862195 0.00868251 0.00870062 0.00871203 0.00872245 0.00873273 0.00874298 0.00875323 0.00876347 0.00877372 0.00878397 0.00879422 0.00880447 0.00881472 0.00882496 0.00883521 0.00884546 0.00885571 0.00886596 0.0088762 0.00888645 0.0088967 0.00890695 0.0089172 0.00892744 0.00893769 0.00894794 0.00895819 0.00896844 0.00897868 0.00898893 0.00899918 0.00900943 0.00901968 0.00902992 0.00904017 0.00905042 0.00906067 0.00907092 0.00908116 0.00909141 0.00910166 0.00911191 0.00912216 0.00913241 0.00914265 0.0091529 0.00916315 0.0091734 0.00918365 0.00919389 0.00920414 0.00921439 0.00922464 0.00923489 0.00924513 0.00925538 0.00926563 0.00927588 0.00928613 0.00929637 0.00930662 0.00931687 0.00932712 0.00933737 0.00934761 0.00935786 0.00936811 0.00937836 0.00938861 0.00939885 0.0094091 0.00941935 0.0094296 0.00943985 0.0094501 0.00946034 0.00947059 0.00948084 0.00949109 0.00950134 0.00951158 0.00952183 0.00953208 0.00954233 0.00955258 0.00956282 0.00957307 0.00958332 0.00959357 0.00960382 0.00961406 0.00962431 0.00963456 0.00964481 0.00965506 0.0096653 0.00967555 0.0096858 0.00969605 0.0097063 0.00971655 0.00972679 0.00973704 0.00974729 0.00975754 0.00976779 0.00977803 0.00978828 0.00979853 0.00980878 0.00981903 0.00982927 0.00983952 0.00984977 0.00986002 0.00987027 0.00988051 0.00989076 0.00990101 0.00991126 +-0.00233351 -0.00215549 -0.00176872 -0.00100386 7.85493E-05 0.00133648 0.00267669 0.00404094 0.00537997 0.00663083 0.00768487 0.00836786 0.00862686 0.00868771 0.00870587 0.00871729 0.00872772 0.008738 0.00874826 0.00875851 0.00876877 0.00877902 0.00878928 0.00879953 0.00880979 0.00882004 0.0088303 0.00884055 0.0088508 0.00886106 0.00887131 0.00888157 0.00889182 0.00890208 0.00891233 0.00892259 0.00893284 0.00894309 0.00895335 0.0089636 0.00897386 0.00898411 0.00899437 0.00900462 0.00901488 0.00902513 0.00903539 0.00904564 0.00905589 0.00906615 0.0090764 0.00908666 0.00909691 0.00910717 0.00911742 0.00912768 0.00913793 0.00914818 0.00915844 0.00916869 0.00917895 0.0091892 0.00919946 0.00920971 0.00921997 0.00923022 0.00924048 0.00925073 0.00926098 0.00927124 0.00928149 0.00929175 0.009302 0.00931226 0.00932251 0.00933277 0.00934302 0.00935328 0.00936353 0.00937378 0.00938404 0.00939429 0.00940455 0.0094148 0.00942506 0.00943531 0.00944557 0.00945582 0.00946607 0.00947633 0.00948658 0.00949684 0.00950709 0.00951735 0.0095276 0.00953786 0.00954811 0.00955837 0.00956862 0.00957887 0.00958913 0.00959938 0.00960964 0.00961989 0.00963015 0.0096404 0.00965066 0.00966091 0.00967116 0.00968142 0.00969167 0.00970193 0.00971218 0.00972244 0.00973269 0.00974295 0.0097532 0.00976346 0.00977371 0.00978396 0.00979422 0.00980447 0.00981473 0.00982498 0.00983524 0.00984549 0.00985575 0.009866 0.00987626 0.00988651 0.00989676 0.00990702 0.00991727 +-0.00233517 -0.00215691 -0.00176963 -0.00100418 7.86338E-05 0.00133683 0.00267727 0.00404175 0.00538109 0.00663245 0.00768738 0.00837177 0.00863178 0.0086929 0.00871112 0.00872255 0.00873299 0.00874327 0.00875354 0.0087638 0.00877406 0.00878432 0.00879458 0.00880484 0.0088151 0.00882536 0.00883563 0.00884589 0.00885615 0.00886641 0.00887667 0.00888693 0.00889719 0.00890745 0.00891771 0.00892797 0.00893823 0.0089485 0.00895876 0.00896902 0.00897928 0.00898954 0.0089998 0.00901006 0.00902032 0.00903058 0.00904084 0.00905111 0.00906137 0.00907163 0.00908189 0.00909215 0.00910241 0.00911267 0.00912293 0.00913319 0.00914345 0.00915371 0.00916398 0.00917424 0.0091845 0.00919476 0.00920502 0.00921528 0.00922554 0.0092358 0.00924606 0.00925632 0.00926659 0.00927685 0.00928711 0.00929737 0.00930763 0.00931789 0.00932815 0.00933841 0.00934867 0.00935893 0.00936919 0.00937946 0.00938972 0.00939998 0.00941024 0.0094205 0.00943076 0.00944102 0.00945128 0.00946154 0.0094718 0.00948207 0.00949233 0.00950259 0.00951285 0.00952311 0.00953337 0.00954363 0.00955389 0.00956415 0.00957441 0.00958467 0.00959494 0.0096052 0.00961546 0.00962572 0.00963598 0.00964624 0.0096565 0.00966676 0.00967702 0.00968728 0.00969754 0.00970781 0.00971807 0.00972833 0.00973859 0.00974885 0.00975911 0.00976937 0.00977963 0.00978989 0.00980015 0.00981042 0.00982068 0.00983094 0.0098412 0.00985146 0.00986172 0.00987198 0.00988224 0.0098925 0.00990276 0.00991302 0.00992329 +-0.00233683 -0.00215834 -0.00177054 -0.0010045 7.87183E-05 0.00133718 0.00267784 0.00404256 0.00538221 0.00663407 0.0076899 0.00837567 0.00863669 0.00869809 0.00871636 0.00872781 0.00873825 0.00874854 0.00875881 0.00876908 0.00877935 0.00878962 0.00879988 0.00881015 0.00882042 0.00883069 0.00884095 0.00885122 0.00886149 0.00887176 0.00888202 0.00889229 0.00890256 0.00891283 0.00892309 0.00893336 0.00894363 0.00895389 0.00896416 0.00897443 0.0089847 0.00899496 0.00900523 0.0090155 0.00902577 0.00903603 0.0090463 0.00905657 0.00906684 0.0090771 0.00908737 0.00909764 0.00910791 0.00911817 0.00912844 0.00913871 0.00914897 0.00915924 0.00916951 0.00917978 0.00919004 0.00920031 0.00921058 0.00922085 0.00923111 0.00924138 0.00925165 0.00926192 0.00927218 0.00928245 0.00929272 0.00930299 0.00931325 0.00932352 0.00933379 0.00934406 0.00935432 0.00936459 0.00937486 0.00938512 0.00939539 0.00940566 0.00941593 0.00942619 0.00943646 0.00944673 0.009457 0.00946726 0.00947753 0.0094878 0.00949807 0.00950833 0.0095186 0.00952887 0.00953914 0.0095494 0.00955967 0.00956994 0.00958021 0.00959047 0.00960074 0.00961101 0.00962127 0.00963154 0.00964181 0.00965208 0.00966234 0.00967261 0.00968288 0.00969315 0.00970341 0.00971368 0.00972395 0.00973422 0.00974448 0.00975475 0.00976502 0.00977529 0.00978555 0.00979582 0.00980609 0.00981635 0.00982662 0.00983689 0.00984716 0.00985742 0.00986769 0.00987796 0.00988823 0.00989849 0.00990876 0.00991903 0.0099293 +-0.00233849 -0.00215976 -0.00177145 -0.00100481 7.88027E-05 0.00133753 0.00267842 0.00404337 0.00538333 0.00663568 0.0076924 0.00837956 0.00864159 0.00870328 0.0087216 0.00873306 0.00874351 0.00875381 0.00876409 0.00877436 0.00878464 0.00879491 0.00880518 0.00881546 0.00882573 0.00883601 0.00884628 0.00885655 0.00886683 0.0088771 0.00888737 0.00889765 0.00890792 0.0089182 0.00892847 0.00893874 0.00894902 0.00895929 0.00896957 0.00897984 0.00899011 0.00900039 0.00901066 0.00902093 0.00903121 0.00904148 0.00905176 0.00906203 0.0090723 0.00908258 0.00909285 0.00910313 0.0091134 0.00912367 0.00913395 0.00914422 0.00915449 0.00916477 0.00917504 0.00918532 0.00919559 0.00920586 0.00921614 0.00922641 0.00923668 0.00924696 0.00925723 0.00926751 0.00927778 0.00928805 0.00929833 0.0093086 0.00931888 0.00932915 0.00933942 0.0093497 0.00935997 0.00937024 0.00938052 0.00939079 0.00940107 0.00941134 0.00942161 0.00943189 0.00944216 0.00945243 0.00946271 0.00947298 0.00948326 0.00949353 0.0095038 0.00951408 0.00952435 0.00953463 0.0095449 0.00955517 0.00956545 0.00957572 0.00958599 0.00959627 0.00960654 0.00961682 0.00962709 0.00963736 0.00964764 0.00965791 0.00966818 0.00967846 0.00968873 0.00969901 0.00970928 0.00971955 0.00972983 0.0097401 0.00975038 0.00976065 0.00977092 0.0097812 0.00979147 0.00980174 0.00981202 0.00982229 0.00983257 0.00984284 0.00985311 0.00986339 0.00987366 0.00988394 0.00989421 0.00990448 0.00991476 0.00992503 0.0099353 +-0.00234014 -0.00216118 -0.00177235 -0.00100513 7.88872E-05 0.00133789 0.00267899 0.00404417 0.00538445 0.0066373 0.00769491 0.00838344 0.0086465 0.00870846 0.00872684 0.00873832 0.00874877 0.00875908 0.00876936 0.00877964 0.00878992 0.0088002 0.00881048 0.00882076 0.00883104 0.00884132 0.0088516 0.00886188 0.00887216 0.00888244 0.00889272 0.008903 0.00891329 0.00892357 0.00893385 0.00894413 0.00895441 0.00896469 0.00897497 0.00898525 0.00899553 0.00900581 0.00901609 0.00902637 0.00903665 0.00904693 0.00905721 0.00906749 0.00907777 0.00908805 0.00909833 0.00910861 0.00911889 0.00912917 0.00913945 0.00914973 0.00916001 0.00917029 0.00918057 0.00919085 0.00920113 0.00921141 0.00922169 0.00923197 0.00924225 0.00925253 0.00926281 0.00927309 0.00928337 0.00929365 0.00930393 0.00931421 0.0093245 0.00933478 0.00934506 0.00935534 0.00936562 0.0093759 0.00938618 0.00939646 0.00940674 0.00941702 0.0094273 0.00943758 0.00944786 0.00945814 0.00946842 0.0094787 0.00948898 0.00949926 0.00950954 0.00951982 0.0095301 0.00954038 0.00955066 0.00956094 0.00957122 0.0095815 0.00959178 0.00960206 0.00961234 0.00962262 0.0096329 0.00964318 0.00965346 0.00966374 0.00967402 0.0096843 0.00969458 0.00970486 0.00971514 0.00972542 0.00973571 0.00974599 0.00975627 0.00976655 0.00977683 0.00978711 0.00979739 0.00980767 0.00981795 0.00982823 0.00983851 0.00984879 0.00985907 0.00986935 0.00987963 0.00988991 0.00990019 0.00991047 0.00992075 0.00993103 0.00994131 +-0.0023418 -0.0021626 -0.00177326 -0.00100545 7.89717E-05 0.00133824 0.00267956 0.00404498 0.00538556 0.00663891 0.00769741 0.00838733 0.0086514 0.00871365 0.00873207 0.00874357 0.00875403 0.00876434 0.00877463 0.00878492 0.00879521 0.00880549 0.00881578 0.00882607 0.00883635 0.00884664 0.00885693 0.00886721 0.0088775 0.00888779 0.00889807 0.00890836 0.00891865 0.00892893 0.00893922 0.00894951 0.00895979 0.00897008 0.00898037 0.00899065 0.00900094 0.00901123 0.00902151 0.0090318 0.00904209 0.00905237 0.00906266 0.00907295 0.00908323 0.00909352 0.00910381 0.00911409 0.00912438 0.00913467 0.00914495 0.00915524 0.00916553 0.00917581 0.0091861 0.00919639 0.00920667 0.00921696 0.00922725 0.00923753 0.00924782 0.00925811 0.00926839 0.00927868 0.00928897 0.00929925 0.00930954 0.00931983 0.00933011 0.0093404 0.00935069 0.00936097 0.00937126 0.00938155 0.00939183 0.00940212 0.00941241 0.00942269 0.00943298 0.00944327 0.00945355 0.00946384 0.00947413 0.00948441 0.0094947 0.00950499 0.00951527 0.00952556 0.00953585 0.00954613 0.00955642 0.00956671 0.00957699 0.00958728 0.00959757 0.00960785 0.00961814 0.00962843 0.00963871 0.009649 0.00965929 0.00966957 0.00967986 0.00969015 0.00970043 0.00971072 0.00972101 0.00973129 0.00974158 0.00975187 0.00976215 0.00977244 0.00978273 0.00979301 0.0098033 0.00981359 0.00982387 0.00983416 0.00984445 0.00985473 0.00986502 0.00987531 0.00988559 0.00989588 0.00990617 0.00991645 0.00992674 0.00993703 0.00994731 +-0.00234345 -0.00216402 -0.00177417 -0.00100576 7.90562E-05 0.00133859 0.00268013 0.00404578 0.00538668 0.00664052 0.0076999 0.0083912 0.00865629 0.00871883 0.00873731 0.00874881 0.00875928 0.0087696 0.0087799 0.00879019 0.00880049 0.00881078 0.00882107 0.00883137 0.00884166 0.00885195 0.00886225 0.00887254 0.00888283 0.00889313 0.00890342 0.00891371 0.008924 0.0089343 0.00894459 0.00895488 0.00896518 0.00897547 0.00898576 0.00899606 0.00900635 0.00901664 0.00902694 0.00903723 0.00904752 0.00905781 0.00906811 0.0090784 0.00908869 0.00909899 0.00910928 0.00911957 0.00912987 0.00914016 0.00915045 0.00916075 0.00917104 0.00918133 0.00919163 0.00920192 0.00921221 0.0092225 0.0092328 0.00924309 0.00925338 0.00926368 0.00927397 0.00928426 0.00929456 0.00930485 0.00931514 0.00932544 0.00933573 0.00934602 0.00935631 0.00936661 0.0093769 0.00938719 0.00939749 0.00940778 0.00941807 0.00942837 0.00943866 0.00944895 0.00945925 0.00946954 0.00947983 0.00949013 0.00950042 0.00951071 0.009521 0.0095313 0.00954159 0.00955188 0.00956218 0.00957247 0.00958276 0.00959306 0.00960335 0.00961364 0.00962394 0.00963423 0.00964452 0.00965481 0.00966511 0.0096754 0.00968569 0.00969599 0.00970628 0.00971657 0.00972687 0.00973716 0.00974745 0.00975775 0.00976804 0.00977833 0.00978863 0.00979892 0.00980921 0.0098195 0.0098298 0.00984009 0.00985038 0.00986068 0.00987097 0.00988126 0.00989156 0.00990185 0.00991214 0.00992244 0.00993273 0.00994302 0.00995331 +-0.00234511 -0.00216544 -0.00177507 -0.00100608 7.91408E-05 0.00133894 0.00268071 0.00404659 0.00538779 0.00664212 0.00770239 0.00839507 0.00866119 0.00872401 0.00874254 0.00875406 0.00876454 0.00877486 0.00878517 0.00879547 0.00880577 0.00881607 0.00882637 0.00883667 0.00884697 0.00885726 0.00886756 0.00887786 0.00888816 0.00889846 0.00890876 0.00891906 0.00892936 0.00893966 0.00894996 0.00896026 0.00897056 0.00898086 0.00899116 0.00900146 0.00901176 0.00902206 0.00903236 0.00904266 0.00905296 0.00906326 0.00907355 0.00908385 0.00909415 0.00910445 0.00911475 0.00912505 0.00913535 0.00914565 0.00915595 0.00916625 0.00917655 0.00918685 0.00919715 0.00920745 0.00921775 0.00922805 0.00923835 0.00924865 0.00925895 0.00926925 0.00927955 0.00928984 0.00930014 0.00931044 0.00932074 0.00933104 0.00934134 0.00935164 0.00936194 0.00937224 0.00938254 0.00939284 0.00940314 0.00941344 0.00942374 0.00943404 0.00944434 0.00945464 0.00946494 0.00947524 0.00948554 0.00949584 0.00950613 0.00951643 0.00952673 0.00953703 0.00954733 0.00955763 0.00956793 0.00957823 0.00958853 0.00959883 0.00960913 0.00961943 0.00962973 0.00964003 0.00965033 0.00966063 0.00967093 0.00968123 0.00969153 0.00970183 0.00971213 0.00972242 0.00973272 0.00974302 0.00975332 0.00976362 0.00977392 0.00978422 0.00979452 0.00980482 0.00981512 0.00982542 0.00983572 0.00984602 0.00985632 0.00986662 0.00987692 0.00988722 0.00989752 0.00990782 0.00991812 0.00992842 0.00993872 0.00994901 0.00995931 +-0.00234676 -0.00216686 -0.00177597 -0.00100639 7.92253E-05 0.00133929 0.00268128 0.00404739 0.0053889 0.00664373 0.00770488 0.00839893 0.00866608 0.00872919 0.00874777 0.0087593 0.00876979 0.00878012 0.00879043 0.00880074 0.00881104 0.00882135 0.00883166 0.00884196 0.00885227 0.00886257 0.00887288 0.00888319 0.00889349 0.0089038 0.0089141 0.00892441 0.00893472 0.00894502 0.00895533 0.00896563 0.00897594 0.00898625 0.00899655 0.00900686 0.00901716 0.00902747 0.00903778 0.00904808 0.00905839 0.00906869 0.009079 0.00908931 0.00909961 0.00910992 0.00912022 0.00913053 0.00914083 0.00915114 0.00916145 0.00917175 0.00918206 0.00919236 0.00920267 0.00921298 0.00922328 0.00923359 0.00924389 0.0092542 0.00926451 0.00927481 0.00928512 0.00929542 0.00930573 0.00931604 0.00932634 0.00933665 0.00934695 0.00935726 0.00936757 0.00937787 0.00938818 0.00939848 0.00940879 0.0094191 0.0094294 0.00943971 0.00945001 0.00946032 0.00947063 0.00948093 0.00949124 0.00950154 0.00951185 0.00952216 0.00953246 0.00954277 0.00955307 0.00956338 0.00957368 0.00958399 0.0095943 0.0096046 0.00961491 0.00962521 0.00963552 0.00964583 0.00965613 0.00966644 0.00967674 0.00968705 0.00969736 0.00970766 0.00971797 0.00972827 0.00973858 0.00974889 0.00975919 0.0097695 0.0097798 0.00979011 0.00980042 0.00981072 0.00982103 0.00983133 0.00984164 0.00985195 0.00986225 0.00987256 0.00988286 0.00989317 0.00990348 0.00991378 0.00992409 0.00993439 0.0099447 0.00995501 0.00996531 +-0.00234841 -0.00216828 -0.00177688 -0.00100671 7.93098E-05 0.00133964 0.00268185 0.00404819 0.00539001 0.00664533 0.00770736 0.00840279 0.00867096 0.00873436 0.008753 0.00876455 0.00877504 0.00878538 0.00879569 0.00880601 0.00881632 0.00882663 0.00883694 0.00884726 0.00885757 0.00886788 0.00887819 0.00888851 0.00889882 0.00890913 0.00891944 0.00892976 0.00894007 0.00895038 0.00896069 0.00897101 0.00898132 0.00899163 0.00900194 0.00901226 0.00902257 0.00903288 0.00904319 0.0090535 0.00906382 0.00907413 0.00908444 0.00909475 0.00910507 0.00911538 0.00912569 0.009136 0.00914632 0.00915663 0.00916694 0.00917725 0.00918757 0.00919788 0.00920819 0.0092185 0.00922881 0.00923913 0.00924944 0.00925975 0.00927006 0.00928038 0.00929069 0.009301 0.00931131 0.00932163 0.00933194 0.00934225 0.00935256 0.00936288 0.00937319 0.0093835 0.00939381 0.00940413 0.00941444 0.00942475 0.00943506 0.00944537 0.00945569 0.009466 0.00947631 0.00948662 0.00949694 0.00950725 0.00951756 0.00952787 0.00953819 0.0095485 0.00955881 0.00956912 0.00957944 0.00958975 0.00960006 0.00961037 0.00962068 0.009631 0.00964131 0.00965162 0.00966193 0.00967225 0.00968256 0.00969287 0.00970318 0.0097135 0.00972381 0.00973412 0.00974443 0.00975475 0.00976506 0.00977537 0.00978568 0.009796 0.00980631 0.00981662 0.00982693 0.00983724 0.00984756 0.00985787 0.00986818 0.00987849 0.00988881 0.00989912 0.00990943 0.00991974 0.00993006 0.00994037 0.00995068 0.00996099 0.00997131 +-0.00235006 -0.00216969 -0.00177778 -0.00100702 7.93944E-05 0.00134 0.00268242 0.004049 0.00539112 0.00664693 0.00770984 0.00840665 0.00867585 0.00873953 0.00875823 0.00876979 0.00878029 0.00879063 0.00880096 0.00881127 0.00882159 0.00883191 0.00884223 0.00885255 0.00886287 0.00887319 0.00888351 0.00889383 0.00890414 0.00891446 0.00892478 0.0089351 0.00894542 0.00895574 0.00896606 0.00897638 0.00898669 0.00899701 0.00900733 0.00901765 0.00902797 0.00903829 0.00904861 0.00905893 0.00906924 0.00907956 0.00908988 0.0091002 0.00911052 0.00912084 0.00913116 0.00914148 0.00915179 0.00916211 0.00917243 0.00918275 0.00919307 0.00920339 0.00921371 0.00922403 0.00923435 0.00924466 0.00925498 0.0092653 0.00927562 0.00928594 0.00929626 0.00930658 0.0093169 0.00932721 0.00933753 0.00934785 0.00935817 0.00936849 0.00937881 0.00938913 0.00939945 0.00940976 0.00942008 0.0094304 0.00944072 0.00945104 0.00946136 0.00947168 0.009482 0.00949231 0.00950263 0.00951295 0.00952327 0.00953359 0.00954391 0.00955423 0.00956455 0.00957487 0.00958518 0.0095955 0.00960582 0.00961614 0.00962646 0.00963678 0.0096471 0.00965742 0.00966773 0.00967805 0.00968837 0.00969869 0.00970901 0.00971933 0.00972965 0.00973997 0.00975028 0.0097606 0.00977092 0.00978124 0.00979156 0.00980188 0.0098122 0.00982252 0.00983283 0.00984315 0.00985347 0.00986379 0.00987411 0.00988443 0.00989475 0.00990507 0.00991539 0.0099257 0.00993602 0.00994634 0.00995666 0.00996698 0.0099773 +-0.00235172 -0.00217111 -0.00177868 -0.00100734 7.94789E-05 0.00134035 0.00268299 0.0040498 0.00539223 0.00664852 0.00771231 0.00841049 0.00868072 0.0087447 0.00876345 0.00877503 0.00878553 0.00879589 0.00880621 0.00881654 0.00882687 0.00883719 0.00884752 0.00885784 0.00886817 0.00887849 0.00888882 0.00889914 0.00890947 0.00891979 0.00893012 0.00894044 0.00895077 0.00896109 0.00897142 0.00898174 0.00899207 0.00900239 0.00901272 0.00902304 0.00903337 0.00904369 0.00905402 0.00906435 0.00907467 0.009085 0.00909532 0.00910565 0.00911597 0.0091263 0.00913662 0.00914695 0.00915727 0.0091676 0.00917792 0.00918825 0.00919857 0.0092089 0.00921922 0.00922955 0.00923987 0.0092502 0.00926052 0.00927085 0.00928117 0.0092915 0.00930182 0.00931215 0.00932248 0.0093328 0.00934313 0.00935345 0.00936378 0.0093741 0.00938443 0.00939475 0.00940508 0.0094154 0.00942573 0.00943605 0.00944638 0.0094567 0.00946703 0.00947735 0.00948768 0.009498 0.00950833 0.00951865 0.00952898 0.0095393 0.00954963 0.00955995 0.00957028 0.00958061 0.00959093 0.00960126 0.00961158 0.00962191 0.00963223 0.00964256 0.00965288 0.00966321 0.00967353 0.00968386 0.00969418 0.00970451 0.00971483 0.00972516 0.00973548 0.00974581 0.00975613 0.00976646 0.00977678 0.00978711 0.00979743 0.00980776 0.00981808 0.00982841 0.00983874 0.00984906 0.00985939 0.00986971 0.00988004 0.00989036 0.00990069 0.00991101 0.00992134 0.00993166 0.00994199 0.00995231 0.00996264 0.00997296 0.00998329 +-0.00235337 -0.00217253 -0.00177958 -0.00100765 7.95635E-05 0.0013407 0.00268355 0.0040506 0.00539334 0.00665012 0.00771478 0.00841433 0.0086856 0.00874987 0.00876868 0.00878026 0.00879078 0.00880114 0.00881147 0.0088218 0.00883213 0.00884247 0.0088528 0.00886313 0.00887346 0.00888379 0.00889412 0.00890446 0.00891479 0.00892512 0.00893545 0.00894578 0.00895611 0.00896645 0.00897678 0.00898711 0.00899744 0.00900777 0.0090181 0.00902844 0.00903877 0.0090491 0.00905943 0.00906976 0.00908009 0.00909043 0.00910076 0.00911109 0.00912142 0.00913175 0.00914208 0.00915242 0.00916275 0.00917308 0.00918341 0.00919374 0.00920407 0.0092144 0.00922474 0.00923507 0.0092454 0.00925573 0.00926606 0.00927639 0.00928673 0.00929706 0.00930739 0.00931772 0.00932805 0.00933838 0.00934872 0.00935905 0.00936938 0.00937971 0.00939004 0.00940037 0.00941071 0.00942104 0.00943137 0.0094417 0.00945203 0.00946236 0.0094727 0.00948303 0.00949336 0.00950369 0.00951402 0.00952435 0.00953468 0.00954502 0.00955535 0.00956568 0.00957601 0.00958634 0.00959667 0.00960701 0.00961734 0.00962767 0.009638 0.00964833 0.00965866 0.009669 0.00967933 0.00968966 0.00969999 0.00971032 0.00972065 0.00973099 0.00974132 0.00975165 0.00976198 0.00977231 0.00978264 0.00979298 0.00980331 0.00981364 0.00982397 0.0098343 0.00984463 0.00985497 0.0098653 0.00987563 0.00988596 0.00989629 0.00990662 0.00991695 0.00992729 0.00993762 0.00994795 0.00995828 0.00996861 0.00997894 0.00998928 +-0.00235502 -0.00217394 -0.00178048 -0.00100797 7.96481E-05 0.00134105 0.00268412 0.0040514 0.00539444 0.00665171 0.00771725 0.00841817 0.00869047 0.00875504 0.0087739 0.0087855 0.00879602 0.00880638 0.00881673 0.00882706 0.0088374 0.00884774 0.00885808 0.00886842 0.00887875 0.00888909 0.00889943 0.00890977 0.00892011 0.00893044 0.00894078 0.00895112 0.00896146 0.0089718 0.00898214 0.00899247 0.00900281 0.00901315 0.00902349 0.00903383 0.00904416 0.0090545 0.00906484 0.00907518 0.00908552 0.00909585 0.00910619 0.00911653 0.00912687 0.00913721 0.00914754 0.00915788 0.00916822 0.00917856 0.0091889 0.00919923 0.00920957 0.00921991 0.00923025 0.00924059 0.00925092 0.00926126 0.0092716 0.00928194 0.00929228 0.00930261 0.00931295 0.00932329 0.00933363 0.00934397 0.0093543 0.00936464 0.00937498 0.00938532 0.00939566 0.00940599 0.00941633 0.00942667 0.00943701 0.00944735 0.00945768 0.00946802 0.00947836 0.0094887 0.00949904 0.00950937 0.00951971 0.00953005 0.00954039 0.00955073 0.00956106 0.0095714 0.00958174 0.00959208 0.00960242 0.00961275 0.00962309 0.00963343 0.00964377 0.00965411 0.00966444 0.00967478 0.00968512 0.00969546 0.0097058 0.00971614 0.00972647 0.00973681 0.00974715 0.00975749 0.00976783 0.00977816 0.0097885 0.00979884 0.00980918 0.00981952 0.00982985 0.00984019 0.00985053 0.00986087 0.00987121 0.00988154 0.00989188 0.00990222 0.00991256 0.0099229 0.00993323 0.00994357 0.00995391 0.00996425 0.00997459 0.00998492 0.00999526 +-0.00235667 -0.00217535 -0.00178137 -0.00100828 7.97327E-05 0.0013414 0.00268469 0.00405219 0.00539554 0.0066533 0.00771971 0.008422 0.00869534 0.0087602 0.00877912 0.00879073 0.00880126 0.00881163 0.00882198 0.00883232 0.00884267 0.00885301 0.00886336 0.0088737 0.00888405 0.00889439 0.00890474 0.00891508 0.00892542 0.00893577 0.00894611 0.00895646 0.0089668 0.00897715 0.00898749 0.00899783 0.00900818 0.00901852 0.00902887 0.00903921 0.00904956 0.0090599 0.00907025 0.00908059 0.00909093 0.00910128 0.00911162 0.00912197 0.00913231 0.00914266 0.009153 0.00916335 0.00917369 0.00918403 0.00919438 0.00920472 0.00921507 0.00922541 0.00923576 0.0092461 0.00925645 0.00926679 0.00927713 0.00928748 0.00929782 0.00930817 0.00931851 0.00932886 0.0093392 0.00934955 0.00935989 0.00937023 0.00938058 0.00939092 0.00940127 0.00941161 0.00942196 0.0094323 0.00944265 0.00945299 0.00946333 0.00947368 0.00948402 0.00949437 0.00950471 0.00951506 0.0095254 0.00953575 0.00954609 0.00955643 0.00956678 0.00957712 0.00958747 0.00959781 0.00960816 0.0096185 0.00962885 0.00963919 0.00964953 0.00965988 0.00967022 0.00968057 0.00969091 0.00970126 0.0097116 0.00972195 0.00973229 0.00974263 0.00975298 0.00976332 0.00977367 0.00978401 0.00979436 0.0098047 0.00981505 0.00982539 0.00983573 0.00984608 0.00985642 0.00986677 0.00987711 0.00988746 0.0098978 0.00990815 0.00991849 0.00992883 0.00993918 0.00994952 0.00995987 0.00997021 0.00998056 0.0099909 0.0100012 +-0.00235832 -0.00217677 -0.00178227 -0.00100859 7.98173E-05 0.00134174 0.00268526 0.00405299 0.00539665 0.00665489 0.00772216 0.00842582 0.0087002 0.00876536 0.00878433 0.00879596 0.0088065 0.00881687 0.00882723 0.00883758 0.00884793 0.00885828 0.00886863 0.00887898 0.00888934 0.00889969 0.00891004 0.00892039 0.00893074 0.00894109 0.00895144 0.00896179 0.00897214 0.00898249 0.00899284 0.00900319 0.00901355 0.0090239 0.00903425 0.0090446 0.00905495 0.0090653 0.00907565 0.009086 0.00909635 0.0091067 0.00911705 0.0091274 0.00913776 0.00914811 0.00915846 0.00916881 0.00917916 0.00918951 0.00919986 0.00921021 0.00922056 0.00923091 0.00924126 0.00925162 0.00926197 0.00927232 0.00928267 0.00929302 0.00930337 0.00931372 0.00932407 0.00933442 0.00934477 0.00935512 0.00936547 0.00937583 0.00938618 0.00939653 0.00940688 0.00941723 0.00942758 0.00943793 0.00944828 0.00945863 0.00946898 0.00947933 0.00948968 0.00950004 0.00951039 0.00952074 0.00953109 0.00954144 0.00955179 0.00956214 0.00957249 0.00958284 0.00959319 0.00960354 0.00961389 0.00962425 0.0096346 0.00964495 0.0096553 0.00966565 0.009676 0.00968635 0.0096967 0.00970705 0.0097174 0.00972775 0.0097381 0.00974846 0.00975881 0.00976916 0.00977951 0.00978986 0.00980021 0.00981056 0.00982091 0.00983126 0.00984161 0.00985196 0.00986231 0.00987267 0.00988302 0.00989337 0.00990372 0.00991407 0.00992442 0.00993477 0.00994512 0.00995547 0.00996582 0.00997617 0.00998653 0.00999688 0.0100072 +-0.00235997 -0.00217818 -0.00178317 -0.0010089 7.99019E-05 0.00134209 0.00268582 0.00405379 0.00539775 0.00665647 0.00772461 0.00842964 0.00870507 0.00877052 0.00878955 0.00880119 0.00881173 0.00882212 0.00883248 0.00884284 0.00885319 0.00886355 0.00887391 0.00888427 0.00889462 0.00890498 0.00891534 0.00892569 0.00893605 0.00894641 0.00895677 0.00896712 0.00897748 0.00898784 0.0089982 0.00900855 0.00901891 0.00902927 0.00903962 0.00904998 0.00906034 0.0090707 0.00908105 0.00909141 0.00910177 0.00911213 0.00912248 0.00913284 0.0091432 0.00915355 0.00916391 0.00917427 0.00918463 0.00919498 0.00920534 0.0092157 0.00922605 0.00923641 0.00924677 0.00925713 0.00926748 0.00927784 0.0092882 0.00929856 0.00930891 0.00931927 0.00932963 0.00933998 0.00935034 0.0093607 0.00937106 0.00938141 0.00939177 0.00940213 0.00941249 0.00942284 0.0094332 0.00944356 0.00945391 0.00946427 0.00947463 0.00948499 0.00949534 0.0095057 0.00951606 0.00952642 0.00953677 0.00954713 0.00955749 0.00956784 0.0095782 0.00958856 0.00959892 0.00960927 0.00961963 0.00962999 0.00964034 0.0096507 0.00966106 0.00967142 0.00968177 0.00969213 0.00970249 0.00971285 0.0097232 0.00973356 0.00974392 0.00975427 0.00976463 0.00977499 0.00978535 0.0097957 0.00980606 0.00981642 0.00982678 0.00983713 0.00984749 0.00985785 0.0098682 0.00987856 0.00988892 0.00989928 0.00990963 0.00991999 0.00993035 0.00994071 0.00995106 0.00996142 0.00997178 0.00998213 0.00999249 0.0100028 0.0100132 +-0.00236162 -0.00217959 -0.00178406 -0.00100921 7.99865E-05 0.00134244 0.00268639 0.00405458 0.00539884 0.00665805 0.00772706 0.00843346 0.00870992 0.00877568 0.00879476 0.00880641 0.00881697 0.00882736 0.00883773 0.00884809 0.00885845 0.00886882 0.00887918 0.00888954 0.00889991 0.00891027 0.00892064 0.008931 0.00894136 0.00895173 0.00896209 0.00897245 0.00898282 0.00899318 0.00900354 0.00901391 0.00902427 0.00903464 0.009045 0.00905536 0.00906573 0.00907609 0.00908645 0.00909682 0.00910718 0.00911755 0.00912791 0.00913827 0.00914864 0.009159 0.00916936 0.00917973 0.00919009 0.00920045 0.00921082 0.00922118 0.00923155 0.00924191 0.00925227 0.00926264 0.009273 0.00928336 0.00929373 0.00930409 0.00931445 0.00932482 0.00933518 0.00934555 0.00935591 0.00936627 0.00937664 0.009387 0.00939736 0.00940773 0.00941809 0.00942845 0.00943882 0.00944918 0.00945955 0.00946991 0.00948027 0.00949064 0.009501 0.00951136 0.00952173 0.00953209 0.00954245 0.00955282 0.00956318 0.00957355 0.00958391 0.00959427 0.00960464 0.009615 0.00962536 0.00963573 0.00964609 0.00965645 0.00966682 0.00967718 0.00968755 0.00969791 0.00970827 0.00971864 0.009729 0.00973936 0.00974973 0.00976009 0.00977046 0.00978082 0.00979118 0.00980155 0.00981191 0.00982227 0.00983264 0.009843 0.00985336 0.00986373 0.00987409 0.00988446 0.00989482 0.00990518 0.00991555 0.00992591 0.00993627 0.00994664 0.009957 0.00996736 0.00997773 0.00998809 0.00999846 0.0100088 0.0100192 +-0.00236327 -0.002181 -0.00178496 -0.00100952 8.00711E-05 0.00134279 0.00268695 0.00405538 0.00539994 0.00665963 0.00772951 0.00843727 0.00871478 0.00878083 0.00879997 0.00881164 0.0088222 0.0088326 0.00884297 0.00885334 0.00886371 0.00887408 0.00888445 0.00889482 0.00890519 0.00891556 0.00892593 0.0089363 0.00894667 0.00895704 0.00896741 0.00897778 0.00898815 0.00899852 0.00900889 0.00901926 0.00902963 0.00904 0.00905037 0.00906074 0.00907111 0.00908148 0.00909185 0.00910222 0.00911259 0.00912296 0.00913333 0.0091437 0.00915407 0.00916444 0.00917481 0.00918518 0.00919555 0.00920592 0.00921629 0.00922666 0.00923703 0.0092474 0.00925777 0.00926814 0.00927851 0.00928888 0.00929925 0.00930962 0.00931999 0.00933036 0.00934073 0.0093511 0.00936147 0.00937184 0.00938221 0.00939258 0.00940295 0.00941332 0.00942369 0.00943406 0.00944443 0.0094548 0.00946517 0.00947554 0.00948591 0.00949628 0.00950665 0.00951702 0.00952739 0.00953776 0.00954813 0.00955851 0.00956888 0.00957925 0.00958962 0.00959999 0.00961036 0.00962073 0.0096311 0.00964147 0.00965184 0.00966221 0.00967258 0.00968295 0.00969332 0.00970369 0.00971406 0.00972443 0.0097348 0.00974517 0.00975554 0.00976591 0.00977628 0.00978665 0.00979702 0.00980739 0.00981776 0.00982813 0.0098385 0.00984887 0.00985924 0.00986961 0.00987998 0.00989035 0.00990072 0.00991109 0.00992146 0.00993183 0.0099422 0.00995257 0.00996294 0.00997331 0.00998368 0.00999405 0.0100044 0.0100148 0.0100252 +-0.00236492 -0.00218241 -0.00178585 -0.00100984 8.01558E-05 0.00134314 0.00268752 0.00405617 0.00540104 0.00666121 0.00773194 0.00844107 0.00871963 0.00878599 0.00880518 0.00881686 0.00882743 0.00883783 0.00884821 0.00885859 0.00886897 0.00887934 0.00888972 0.0089001 0.00891047 0.00892085 0.00893123 0.0089416 0.00895198 0.00896236 0.00897273 0.00898311 0.00899348 0.00900386 0.00901424 0.00902461 0.00903499 0.00904537 0.00905574 0.00906612 0.0090765 0.00908687 0.00909725 0.00910763 0.009118 0.00912838 0.00913876 0.00914913 0.00915951 0.00916988 0.00918026 0.00919064 0.00920101 0.00921139 0.00922177 0.00923214 0.00924252 0.0092529 0.00926327 0.00927365 0.00928403 0.0092944 0.00930478 0.00931515 0.00932553 0.00933591 0.00934628 0.00935666 0.00936704 0.00937741 0.00938779 0.00939817 0.00940854 0.00941892 0.0094293 0.00943967 0.00945005 0.00946043 0.0094708 0.00948118 0.00949155 0.00950193 0.00951231 0.00952268 0.00953306 0.00954344 0.00955381 0.00956419 0.00957457 0.00958494 0.00959532 0.0096057 0.00961607 0.00962645 0.00963682 0.0096472 0.00965758 0.00966795 0.00967833 0.00968871 0.00969908 0.00970946 0.00971984 0.00973021 0.00974059 0.00975097 0.00976134 0.00977172 0.0097821 0.00979247 0.00980285 0.00981322 0.0098236 0.00983398 0.00984435 0.00985473 0.00986511 0.00987548 0.00988586 0.00989624 0.00990661 0.00991699 0.00992737 0.00993774 0.00994812 0.00995849 0.00996887 0.00997925 0.00998962 0.01 0.0100104 0.0100208 0.0100311 +-0.00236656 -0.00218382 -0.00178674 -0.00101015 8.02404E-05 0.00134349 0.00268808 0.00405696 0.00540213 0.00666278 0.00773438 0.00844486 0.00872448 0.00879114 0.00881039 0.00882208 0.00883266 0.00884307 0.00885346 0.00886384 0.00887422 0.0088846 0.00889499 0.00890537 0.00891575 0.00892614 0.00893652 0.0089469 0.00895728 0.00896767 0.00897805 0.00898843 0.00899882 0.0090092 0.00901958 0.00902996 0.00904035 0.00905073 0.00906111 0.0090715 0.00908188 0.00909226 0.00910264 0.00911303 0.00912341 0.00913379 0.00914418 0.00915456 0.00916494 0.00917532 0.00918571 0.00919609 0.00920647 0.00921686 0.00922724 0.00923762 0.009248 0.00925839 0.00926877 0.00927915 0.00928954 0.00929992 0.0093103 0.00932068 0.00933107 0.00934145 0.00935183 0.00936222 0.0093726 0.00938298 0.00939336 0.00940375 0.00941413 0.00942451 0.0094349 0.00944528 0.00945566 0.00946604 0.00947643 0.00948681 0.00949719 0.00950757 0.00951796 0.00952834 0.00953872 0.00954911 0.00955949 0.00956987 0.00958025 0.00959064 0.00960102 0.0096114 0.00962179 0.00963217 0.00964255 0.00965293 0.00966332 0.0096737 0.00968408 0.00969447 0.00970485 0.00971523 0.00972561 0.009736 0.00974638 0.00975676 0.00976715 0.00977753 0.00978791 0.00979829 0.00980868 0.00981906 0.00982944 0.00983983 0.00985021 0.00986059 0.00987097 0.00988136 0.00989174 0.00990212 0.00991251 0.00992289 0.00993327 0.00994365 0.00995404 0.00996442 0.0099748 0.00998519 0.00999557 0.010006 0.0100163 0.0100267 0.0100371 +-0.00236821 -0.00218523 -0.00178763 -0.00101045 8.03251E-05 0.00134383 0.00268865 0.00405776 0.00540323 0.00666436 0.00773681 0.00844866 0.00872932 0.00879629 0.00881559 0.0088273 0.00883788 0.0088483 0.00885869 0.00886908 0.00887947 0.00888986 0.00890025 0.00891064 0.00892103 0.00893142 0.00894181 0.0089522 0.00896259 0.00897298 0.00898337 0.00899375 0.00900414 0.00901453 0.00902492 0.00903531 0.0090457 0.00905609 0.00906648 0.00907687 0.00908726 0.00909765 0.00910804 0.00911843 0.00912882 0.0091392 0.00914959 0.00915998 0.00917037 0.00918076 0.00919115 0.00920154 0.00921193 0.00922232 0.00923271 0.0092431 0.00925349 0.00926388 0.00927426 0.00928465 0.00929504 0.00930543 0.00931582 0.00932621 0.0093366 0.00934699 0.00935738 0.00936777 0.00937816 0.00938855 0.00939894 0.00940932 0.00941971 0.0094301 0.00944049 0.00945088 0.00946127 0.00947166 0.00948205 0.00949244 0.00950283 0.00951322 0.00952361 0.009534 0.00954438 0.00955477 0.00956516 0.00957555 0.00958594 0.00959633 0.00960672 0.00961711 0.0096275 0.00963789 0.00964828 0.00965867 0.00966906 0.00967944 0.00968983 0.00970022 0.00971061 0.009721 0.00973139 0.00974178 0.00975217 0.00976256 0.00977295 0.00978334 0.00979373 0.00980412 0.0098145 0.00982489 0.00983528 0.00984567 0.00985606 0.00986645 0.00987684 0.00988723 0.00989762 0.00990801 0.0099184 0.00992879 0.00993918 0.00994956 0.00995995 0.00997034 0.00998073 0.00999112 0.0100015 0.0100119 0.0100223 0.0100327 0.0100431 +-0.00236986 -0.00218664 -0.00178853 -0.00101076 8.04097E-05 0.00134418 0.00268921 0.00405855 0.00540432 0.00666593 0.00773924 0.00845244 0.00873416 0.00880143 0.00882079 0.00883252 0.00884311 0.00885353 0.00886393 0.00887433 0.00888472 0.00889512 0.00890551 0.00891591 0.00892631 0.0089367 0.0089471 0.00895749 0.00896789 0.00897828 0.00898868 0.00899908 0.00900947 0.00901987 0.00903026 0.00904066 0.00905105 0.00906145 0.00907184 0.00908224 0.00909264 0.00910303 0.00911343 0.00912382 0.00913422 0.00914461 0.00915501 0.00916541 0.0091758 0.0091862 0.00919659 0.00920699 0.00921738 0.00922778 0.00923817 0.00924857 0.00925897 0.00926936 0.00927976 0.00929015 0.00930055 0.00931094 0.00932134 0.00933174 0.00934213 0.00935253 0.00936292 0.00937332 0.00938371 0.00939411 0.0094045 0.0094149 0.0094253 0.00943569 0.00944609 0.00945648 0.00946688 0.00947727 0.00948767 0.00949807 0.00950846 0.00951886 0.00952925 0.00953965 0.00955004 0.00956044 0.00957083 0.00958123 0.00959163 0.00960202 0.00961242 0.00962281 0.00963321 0.0096436 0.009654 0.0096644 0.00967479 0.00968519 0.00969558 0.00970598 0.00971637 0.00972677 0.00973717 0.00974756 0.00975796 0.00976835 0.00977875 0.00978914 0.00979954 0.00980993 0.00982033 0.00983073 0.00984112 0.00985152 0.00986191 0.00987231 0.0098827 0.0098931 0.0099035 0.00991389 0.00992429 0.00993468 0.00994508 0.00995547 0.00996587 0.00997626 0.00998666 0.00999706 0.0100075 0.0100178 0.0100282 0.0100386 0.010049 +-0.0023715 -0.00218805 -0.00178942 -0.00101107 8.04944E-05 0.00134453 0.00268977 0.00405934 0.00540541 0.0066675 0.00774166 0.00845622 0.008739 0.00880657 0.00882599 0.00883773 0.00884833 0.00885876 0.00886917 0.00887957 0.00888997 0.00890037 0.00891078 0.00892118 0.00893158 0.00894198 0.00895238 0.00896279 0.00897319 0.00898359 0.00899399 0.00900439 0.0090148 0.0090252 0.0090356 0.009046 0.0090564 0.00906681 0.00907721 0.00908761 0.00909801 0.00910841 0.00911882 0.00912922 0.00913962 0.00915002 0.00916042 0.00917083 0.00918123 0.00919163 0.00920203 0.00921243 0.00922284 0.00923324 0.00924364 0.00925404 0.00926444 0.00927485 0.00928525 0.00929565 0.00930605 0.00931645 0.00932686 0.00933726 0.00934766 0.00935806 0.00936846 0.00937887 0.00938927 0.00939967 0.00941007 0.00942047 0.00943088 0.00944128 0.00945168 0.00946208 0.00947248 0.00948289 0.00949329 0.00950369 0.00951409 0.00952449 0.0095349 0.0095453 0.0095557 0.0095661 0.0095765 0.00958691 0.00959731 0.00960771 0.00961811 0.00962851 0.00963892 0.00964932 0.00965972 0.00967012 0.00968052 0.00969093 0.00970133 0.00971173 0.00972213 0.00973253 0.00974294 0.00975334 0.00976374 0.00977414 0.00978455 0.00979495 0.00980535 0.00981575 0.00982615 0.00983656 0.00984696 0.00985736 0.00986776 0.00987816 0.00988857 0.00989897 0.00990937 0.00991977 0.00993017 0.00994058 0.00995098 0.00996138 0.00997178 0.00998218 0.00999259 0.010003 0.0100134 0.0100238 0.0100342 0.0100446 0.010055 +-0.00237315 -0.00218945 -0.0017903 -0.00101138 8.05791E-05 0.00134487 0.00269034 0.00406013 0.0054065 0.00666906 0.00774408 0.00845999 0.00874383 0.00881172 0.00883119 0.00884294 0.00885355 0.00886399 0.0088744 0.00888481 0.00889522 0.00890563 0.00891603 0.00892644 0.00893685 0.00894726 0.00895767 0.00896808 0.00897848 0.00898889 0.0089993 0.00900971 0.00902012 0.00903053 0.00904094 0.00905134 0.00906175 0.00907216 0.00908257 0.00909298 0.00910339 0.00911379 0.0091242 0.00913461 0.00914502 0.00915543 0.00916584 0.00917624 0.00918665 0.00919706 0.00920747 0.00921788 0.00922829 0.00923869 0.0092491 0.00925951 0.00926992 0.00928033 0.00929074 0.00930115 0.00931155 0.00932196 0.00933237 0.00934278 0.00935319 0.0093636 0.009374 0.00938441 0.00939482 0.00940523 0.00941564 0.00942605 0.00943645 0.00944686 0.00945727 0.00946768 0.00947809 0.0094885 0.00949891 0.00950931 0.00951972 0.00953013 0.00954054 0.00955095 0.00956136 0.00957176 0.00958217 0.00959258 0.00960299 0.0096134 0.00962381 0.00963421 0.00964462 0.00965503 0.00966544 0.00967585 0.00968626 0.00969666 0.00970707 0.00971748 0.00972789 0.0097383 0.00974871 0.00975912 0.00976952 0.00977993 0.00979034 0.00980075 0.00981116 0.00982157 0.00983197 0.00984238 0.00985279 0.0098632 0.00987361 0.00988402 0.00989442 0.00990483 0.00991524 0.00992565 0.00993606 0.00994647 0.00995687 0.00996728 0.00997769 0.0099881 0.00999851 0.0100089 0.0100193 0.0100297 0.0100401 0.0100506 0.010061 +-0.00237479 -0.00219086 -0.00179119 -0.00101169 8.06638E-05 0.00134522 0.0026909 0.00406092 0.00540759 0.00667062 0.00774649 0.00846376 0.00874866 0.00881685 0.00883639 0.00884816 0.00885877 0.00886921 0.00887963 0.00889005 0.00890046 0.00891088 0.00892129 0.00893171 0.00894212 0.00895254 0.00896295 0.00897337 0.00898378 0.00899419 0.00900461 0.00901502 0.00902544 0.00903585 0.00904627 0.00905668 0.0090671 0.00907751 0.00908793 0.00909834 0.00910876 0.00911917 0.00912959 0.00914 0.00915042 0.00916083 0.00917125 0.00918166 0.00919208 0.00920249 0.00921291 0.00922332 0.00923374 0.00924415 0.00925456 0.00926498 0.00927539 0.00928581 0.00929622 0.00930664 0.00931705 0.00932747 0.00933788 0.0093483 0.00935871 0.00936913 0.00937954 0.00938996 0.00940037 0.00941079 0.0094212 0.00943162 0.00944203 0.00945245 0.00946286 0.00947328 0.00948369 0.0094941 0.00950452 0.00951493 0.00952535 0.00953576 0.00954618 0.00955659 0.00956701 0.00957742 0.00958784 0.00959825 0.00960867 0.00961908 0.0096295 0.00963991 0.00965033 0.00966074 0.00967116 0.00968157 0.00969199 0.0097024 0.00971282 0.00972323 0.00973364 0.00974406 0.00975447 0.00976489 0.0097753 0.00978572 0.00979613 0.00980655 0.00981696 0.00982738 0.00983779 0.00984821 0.00985862 0.00986904 0.00987945 0.00988987 0.00990028 0.0099107 0.00992111 0.00993153 0.00994194 0.00995236 0.00996277 0.00997319 0.0099836 0.00999401 0.0100044 0.0100148 0.0100253 0.0100357 0.0100461 0.0100565 0.0100669 +-0.00237644 -0.00219227 -0.00179208 -0.001012 8.07485E-05 0.00134557 0.00269146 0.0040617 0.00540867 0.00667219 0.0077489 0.00846753 0.00875348 0.00882199 0.00884158 0.00885336 0.00886399 0.00887444 0.00888486 0.00889528 0.0089057 0.00891613 0.00892655 0.00893697 0.00894739 0.00895781 0.00896823 0.00897865 0.00898907 0.00899949 0.00900992 0.00902034 0.00903076 0.00904118 0.0090516 0.00906202 0.00907244 0.00908286 0.00909329 0.00910371 0.00911413 0.00912455 0.00913497 0.00914539 0.00915581 0.00916623 0.00917665 0.00918708 0.0091975 0.00920792 0.00921834 0.00922876 0.00923918 0.0092496 0.00926002 0.00927045 0.00928087 0.00929129 0.00930171 0.00931213 0.00932255 0.00933297 0.00934339 0.00935381 0.00936424 0.00937466 0.00938508 0.0093955 0.00940592 0.00941634 0.00942676 0.00943718 0.0094476 0.00945803 0.00946845 0.00947887 0.00948929 0.00949971 0.00951013 0.00952055 0.00953097 0.0095414 0.00955182 0.00956224 0.00957266 0.00958308 0.0095935 0.00960392 0.00961434 0.00962476 0.00963519 0.00964561 0.00965603 0.00966645 0.00967687 0.00968729 0.00969771 0.00970813 0.00971856 0.00972898 0.0097394 0.00974982 0.00976024 0.00977066 0.00978108 0.0097915 0.00980192 0.00981235 0.00982277 0.00983319 0.00984361 0.00985403 0.00986445 0.00987487 0.00988529 0.00989572 0.00990614 0.00991656 0.00992698 0.0099374 0.00994782 0.00995824 0.00996866 0.00997908 0.00998951 0.00999993 0.0100103 0.0100208 0.0100312 0.0100416 0.010052 0.0100625 0.0100729 +-0.00237808 -0.00219367 -0.00179297 -0.0010123 8.08332E-05 0.00134591 0.00269202 0.00406249 0.00540976 0.00667374 0.00775131 0.00847128 0.0087583 0.00882713 0.00884678 0.00885857 0.0088692 0.00887966 0.00889009 0.00890052 0.00891094 0.00892137 0.0089318 0.00894223 0.00895265 0.00896308 0.00897351 0.00898394 0.00899436 0.00900479 0.00901522 0.00902565 0.00903607 0.0090465 0.00905693 0.00906736 0.00907779 0.00908821 0.00909864 0.00910907 0.0091195 0.00912992 0.00914035 0.00915078 0.00916121 0.00917163 0.00918206 0.00919249 0.00920292 0.00921334 0.00922377 0.0092342 0.00924463 0.00925505 0.00926548 0.00927591 0.00928634 0.00929676 0.00930719 0.00931762 0.00932805 0.00933847 0.0093489 0.00935933 0.00936976 0.00938018 0.00939061 0.00940104 0.00941147 0.00942189 0.00943232 0.00944275 0.00945318 0.0094636 0.00947403 0.00948446 0.00949489 0.00950531 0.00951574 0.00952617 0.0095366 0.00954702 0.00955745 0.00956788 0.00957831 0.00958874 0.00959916 0.00960959 0.00962002 0.00963045 0.00964087 0.0096513 0.00966173 0.00967216 0.00968258 0.00969301 0.00970344 0.00971387 0.00972429 0.00973472 0.00974515 0.00975558 0.009766 0.00977643 0.00978686 0.00979729 0.00980771 0.00981814 0.00982857 0.009839 0.00984942 0.00985985 0.00987028 0.00988071 0.00989113 0.00990156 0.00991199 0.00992242 0.00993284 0.00994327 0.0099537 0.00996413 0.00997455 0.00998498 0.00999541 0.0100058 0.0100163 0.0100267 0.0100371 0.0100475 0.010058 0.0100684 0.0100788 +-0.00237973 -0.00219507 -0.00179385 -0.00101261 8.09179E-05 0.00134626 0.00269258 0.00406328 0.00541084 0.0066753 0.00775371 0.00847503 0.00876312 0.00883226 0.00885197 0.00886378 0.00887441 0.00888488 0.00889531 0.00890575 0.00891618 0.00892662 0.00893705 0.00894748 0.00895792 0.00896835 0.00897879 0.00898922 0.00899965 0.00901009 0.00902052 0.00903096 0.00904139 0.00905182 0.00906226 0.00907269 0.00908313 0.00909356 0.00910399 0.00911443 0.00912486 0.0091353 0.00914573 0.00915616 0.0091666 0.00917703 0.00918746 0.0091979 0.00920833 0.00921877 0.0092292 0.00923963 0.00925007 0.0092605 0.00927094 0.00928137 0.0092918 0.00930224 0.00931267 0.00932311 0.00933354 0.00934397 0.00935441 0.00936484 0.00937528 0.00938571 0.00939614 0.00940658 0.00941701 0.00942745 0.00943788 0.00944831 0.00945875 0.00946918 0.00947961 0.00949005 0.00950048 0.00951092 0.00952135 0.00953178 0.00954222 0.00955265 0.00956309 0.00957352 0.00958395 0.00959439 0.00960482 0.00961526 0.00962569 0.00963612 0.00964656 0.00965699 0.00966743 0.00967786 0.00968829 0.00969873 0.00970916 0.0097196 0.00973003 0.00974046 0.0097509 0.00976133 0.00977176 0.0097822 0.00979263 0.00980307 0.0098135 0.00982393 0.00983437 0.0098448 0.00985524 0.00986567 0.0098761 0.00988654 0.00989697 0.00990741 0.00991784 0.00992827 0.00993871 0.00994914 0.00995958 0.00997001 0.00998044 0.00999088 0.0100013 0.0100117 0.0100222 0.0100326 0.010043 0.0100535 0.0100639 0.0100743 0.0100848 +-0.00238137 -0.00219648 -0.00179474 -0.00101292 8.10027E-05 0.0013466 0.00269314 0.00406406 0.00541193 0.00667685 0.00775611 0.00847878 0.00876794 0.00883739 0.00885716 0.00886898 0.00887962 0.00889009 0.00890054 0.00891098 0.00892142 0.00893186 0.0089423 0.00895274 0.00896318 0.00897362 0.00898406 0.0089945 0.00900494 0.00901538 0.00902582 0.00903626 0.0090467 0.00905714 0.00906758 0.00907802 0.00908846 0.0090989 0.00910934 0.00911978 0.00913023 0.00914067 0.00915111 0.00916155 0.00917199 0.00918243 0.00919287 0.00920331 0.00921375 0.00922419 0.00923463 0.00924507 0.00925551 0.00926595 0.00927639 0.00928683 0.00929727 0.00930771 0.00931815 0.00932859 0.00933903 0.00934947 0.00935991 0.00937035 0.00938079 0.00939123 0.00940167 0.00941211 0.00942255 0.00943299 0.00944343 0.00945387 0.00946431 0.00947476 0.0094852 0.00949564 0.00950608 0.00951652 0.00952696 0.0095374 0.00954784 0.00955828 0.00956872 0.00957916 0.0095896 0.00960004 0.00961048 0.00962092 0.00963136 0.0096418 0.00965224 0.00966268 0.00967312 0.00968356 0.009694 0.00970444 0.00971488 0.00972532 0.00973576 0.0097462 0.00975664 0.00976708 0.00977752 0.00978796 0.0097984 0.00980885 0.00981929 0.00982973 0.00984017 0.00985061 0.00986105 0.00987149 0.00988193 0.00989237 0.00990281 0.00991325 0.00992369 0.00993413 0.00994457 0.00995501 0.00996545 0.00997589 0.00998633 0.00999677 0.0100072 0.0100177 0.0100281 0.0100385 0.010049 0.0100594 0.0100699 0.0100803 0.0100907 +-0.00238301 -0.00219788 -0.00179562 -0.00101322 8.10874E-05 0.00134695 0.0026937 0.00406485 0.00541301 0.00667841 0.0077585 0.00848252 0.00877275 0.00884252 0.00886234 0.00887418 0.00888483 0.00889531 0.00890576 0.00891621 0.00892665 0.0089371 0.00894755 0.00895799 0.00896844 0.00897889 0.00898933 0.00899978 0.00901023 0.00902067 0.00903112 0.00904157 0.00905201 0.00906246 0.00907291 0.00908335 0.0090938 0.00910425 0.00911469 0.00912514 0.00913559 0.00914603 0.00915648 0.00916693 0.00917737 0.00918782 0.00919827 0.00920871 0.00921916 0.00922961 0.00924005 0.0092505 0.00926095 0.00927139 0.00928184 0.00929229 0.00930273 0.00931318 0.00932363 0.00933407 0.00934452 0.00935497 0.00936541 0.00937586 0.00938631 0.00939675 0.0094072 0.00941765 0.00942809 0.00943854 0.00944899 0.00945943 0.00946988 0.00948033 0.00949077 0.00950122 0.00951167 0.00952211 0.00953256 0.00954301 0.00955345 0.0095639 0.00957435 0.00958479 0.00959524 0.00960569 0.00961613 0.00962658 0.00963703 0.00964747 0.00965792 0.00966837 0.00967881 0.00968926 0.00969971 0.00971015 0.0097206 0.00973105 0.00974149 0.00975194 0.00976239 0.00977283 0.00978328 0.00979373 0.00980417 0.00981462 0.00982507 0.00983551 0.00984596 0.00985641 0.00986685 0.0098773 0.00988775 0.00989819 0.00990864 0.00991909 0.00992953 0.00993998 0.00995043 0.00996087 0.00997132 0.00998177 0.00999221 0.0100027 0.0100131 0.0100236 0.010034 0.0100444 0.0100549 0.0100653 0.0100758 0.0100862 0.0100967 +-0.00238465 -0.00219928 -0.0017965 -0.00101353 8.11722E-05 0.00134729 0.00269426 0.00406563 0.00541409 0.00667996 0.00776089 0.00848625 0.00877756 0.00884764 0.00886753 0.00887938 0.00889004 0.00890052 0.00891098 0.00892143 0.00893189 0.00894234 0.00895279 0.00896325 0.0089737 0.00898415 0.0089946 0.00900506 0.00901551 0.00902596 0.00903642 0.00904687 0.00905732 0.00906778 0.00907823 0.00908868 0.00909913 0.00910959 0.00912004 0.00913049 0.00914095 0.0091514 0.00916185 0.00917231 0.00918276 0.00919321 0.00920367 0.00921412 0.00922457 0.00923502 0.00924548 0.00925593 0.00926638 0.00927684 0.00928729 0.00929774 0.0093082 0.00931865 0.0093291 0.00933955 0.00935001 0.00936046 0.00937091 0.00938137 0.00939182 0.00940227 0.00941273 0.00942318 0.00943363 0.00944409 0.00945454 0.00946499 0.00947544 0.0094859 0.00949635 0.0095068 0.00951726 0.00952771 0.00953816 0.00954862 0.00955907 0.00956952 0.00957998 0.00959043 0.00960088 0.00961133 0.00962179 0.00963224 0.00964269 0.00965315 0.0096636 0.00967405 0.00968451 0.00969496 0.00970541 0.00971586 0.00972632 0.00973677 0.00974722 0.00975768 0.00976813 0.00977858 0.00978904 0.00979949 0.00980994 0.0098204 0.00983085 0.0098413 0.00985175 0.00986221 0.00987266 0.00988311 0.00989357 0.00990402 0.00991447 0.00992493 0.00993538 0.00994583 0.00995629 0.00996674 0.00997719 0.00998764 0.0099981 0.0100086 0.010019 0.0100295 0.0100399 0.0100504 0.0100608 0.0100713 0.0100817 0.0100922 0.0101026 +-0.0023863 -0.00220068 -0.00179739 -0.00101383 8.12569E-05 0.00134764 0.00269481 0.00406641 0.00541517 0.0066815 0.00776327 0.00848998 0.00878236 0.00885276 0.00887271 0.00888458 0.00889524 0.00890573 0.0089162 0.00892666 0.00893712 0.00894758 0.00895804 0.00896849 0.00897895 0.00898941 0.00899987 0.00901033 0.00902079 0.00903125 0.00904171 0.00905217 0.00906263 0.00907309 0.00908355 0.00909401 0.00910447 0.00911493 0.00912539 0.00913585 0.0091463 0.00915676 0.00916722 0.00917768 0.00918814 0.0091986 0.00920906 0.00921952 0.00922998 0.00924044 0.0092509 0.00926136 0.00927182 0.00928228 0.00929274 0.0093032 0.00931366 0.00932412 0.00933457 0.00934503 0.00935549 0.00936595 0.00937641 0.00938687 0.00939733 0.00940779 0.00941825 0.00942871 0.00943917 0.00944963 0.00946009 0.00947055 0.00948101 0.00949147 0.00950193 0.00951238 0.00952284 0.0095333 0.00954376 0.00955422 0.00956468 0.00957514 0.0095856 0.00959606 0.00960652 0.00961698 0.00962744 0.0096379 0.00964836 0.00965882 0.00966928 0.00967974 0.00969019 0.00970065 0.00971111 0.00972157 0.00973203 0.00974249 0.00975295 0.00976341 0.00977387 0.00978433 0.00979479 0.00980525 0.00981571 0.00982617 0.00983663 0.00984709 0.00985755 0.009868 0.00987846 0.00988892 0.00989938 0.00990984 0.0099203 0.00993076 0.00994122 0.00995168 0.00996214 0.0099726 0.00998306 0.00999352 0.010004 0.0100144 0.0100249 0.0100354 0.0100458 0.0100563 0.0100667 0.0100772 0.0100877 0.0100981 0.0101086 +-0.00238794 -0.00220208 -0.00179827 -0.00101414 8.13417E-05 0.00134798 0.00269537 0.0040672 0.00541625 0.00668305 0.00776565 0.00849371 0.00878716 0.00885789 0.00887789 0.00888977 0.00890045 0.00891094 0.00892141 0.00893188 0.00894235 0.00895281 0.00896328 0.00897374 0.00898421 0.00899467 0.00900514 0.00901561 0.00902607 0.00903654 0.009047 0.00905747 0.00906793 0.0090784 0.00908887 0.00909933 0.0091098 0.00912026 0.00913073 0.0091412 0.00915166 0.00916213 0.00917259 0.00918306 0.00919352 0.00920399 0.00921446 0.00922492 0.00923539 0.00924585 0.00925632 0.00926678 0.00927725 0.00928772 0.00929818 0.00930865 0.00931911 0.00932958 0.00934005 0.00935051 0.00936098 0.00937144 0.00938191 0.00939237 0.00940284 0.00941331 0.00942377 0.00943424 0.0094447 0.00945517 0.00946563 0.0094761 0.00948657 0.00949703 0.0095075 0.00951796 0.00952843 0.0095389 0.00954936 0.00955983 0.00957029 0.00958076 0.00959122 0.00960169 0.00961216 0.00962262 0.00963309 0.00964355 0.00965402 0.00966448 0.00967495 0.00968542 0.00969588 0.00970635 0.00971681 0.00972728 0.00973775 0.00974821 0.00975868 0.00976914 0.00977961 0.00979007 0.00980054 0.00981101 0.00982147 0.00983194 0.0098424 0.00985287 0.00986333 0.0098738 0.00988427 0.00989473 0.0099052 0.00991566 0.00992613 0.0099366 0.00994706 0.00995753 0.00996799 0.00997846 0.00998892 0.00999939 0.0100099 0.0100203 0.0100308 0.0100413 0.0100517 0.0100622 0.0100727 0.0100831 0.0100936 0.010104 0.0101145 +-0.00238958 -0.00220348 -0.00179915 -0.00101444 8.14265E-05 0.00134833 0.00269593 0.00406798 0.00541732 0.00668459 0.00776803 0.00849742 0.00879196 0.008863 0.00888307 0.00889497 0.00890565 0.00891615 0.00892663 0.0089371 0.00894757 0.00895804 0.00896852 0.00897899 0.00898946 0.00899993 0.0090104 0.00902088 0.00903135 0.00904182 0.00905229 0.00906277 0.00907324 0.00908371 0.00909418 0.00910465 0.00911513 0.0091256 0.00913607 0.00914654 0.00915701 0.00916749 0.00917796 0.00918843 0.0091989 0.00920938 0.00921985 0.00923032 0.00924079 0.00925126 0.00926174 0.00927221 0.00928268 0.00929315 0.00930363 0.0093141 0.00932457 0.00933504 0.00934551 0.00935599 0.00936646 0.00937693 0.0093874 0.00939787 0.00940835 0.00941882 0.00942929 0.00943976 0.00945024 0.00946071 0.00947118 0.00948165 0.00949212 0.0095026 0.00951307 0.00952354 0.00953401 0.00954448 0.00955496 0.00956543 0.0095759 0.00958637 0.00959685 0.00960732 0.00961779 0.00962826 0.00963873 0.00964921 0.00965968 0.00967015 0.00968062 0.00969109 0.00970157 0.00971204 0.00972251 0.00973298 0.00974346 0.00975393 0.0097644 0.00977487 0.00978534 0.00979582 0.00980629 0.00981676 0.00982723 0.0098377 0.00984818 0.00985865 0.00986912 0.00987959 0.00989007 0.00990054 0.00991101 0.00992148 0.00993195 0.00994243 0.0099529 0.00996337 0.00997384 0.00998432 0.00999479 0.0100053 0.0100157 0.0100262 0.0100367 0.0100471 0.0100576 0.0100681 0.0100786 0.010089 0.0100995 0.01011 0.0101205 +-0.00239122 -0.00220488 -0.00180003 -0.00101474 8.15113E-05 0.00134867 0.00269648 0.00406876 0.0054184 0.00668613 0.0077704 0.00850114 0.00879675 0.00886812 0.00888825 0.00890016 0.00891085 0.00892136 0.00893184 0.00894232 0.0089528 0.00896328 0.00897375 0.00898423 0.00899471 0.00900519 0.00901567 0.00902615 0.00903662 0.0090471 0.00905758 0.00906806 0.00907854 0.00908902 0.0090995 0.00910997 0.00912045 0.00913093 0.00914141 0.00915189 0.00916237 0.00917285 0.00918332 0.0091938 0.00920428 0.00921476 0.00922524 0.00923572 0.0092462 0.00925667 0.00926715 0.00927763 0.00928811 0.00929859 0.00930907 0.00931954 0.00933002 0.0093405 0.00935098 0.00936146 0.00937194 0.00938242 0.00939289 0.00940337 0.00941385 0.00942433 0.00943481 0.00944529 0.00945577 0.00946624 0.00947672 0.0094872 0.00949768 0.00950816 0.00951864 0.00952912 0.00953959 0.00955007 0.00956055 0.00957103 0.00958151 0.00959199 0.00960246 0.00961294 0.00962342 0.0096339 0.00964438 0.00965486 0.00966534 0.00967581 0.00968629 0.00969677 0.00970725 0.00971773 0.00972821 0.00973869 0.00974916 0.00975964 0.00977012 0.0097806 0.00979108 0.00980156 0.00981203 0.00982251 0.00983299 0.00984347 0.00985395 0.00986443 0.00987491 0.00988538 0.00989586 0.00990634 0.00991682 0.0099273 0.00993778 0.00994826 0.00995873 0.00996921 0.00997969 0.00999017 0.0100006 0.0100111 0.0100216 0.0100321 0.0100426 0.010053 0.0100635 0.010074 0.0100845 0.010095 0.0101054 0.0101159 0.0101264 +-0.00239286 -0.00220628 -0.00180091 -0.00101505 8.15961E-05 0.00134901 0.00269704 0.00406954 0.00541947 0.00668767 0.00777277 0.00850484 0.00880154 0.00887323 0.00889342 0.00890535 0.00891604 0.00892656 0.00893705 0.00894753 0.00895802 0.0089685 0.00897899 0.00898947 0.00899996 0.00901044 0.00902093 0.00903141 0.0090419 0.00905238 0.00906287 0.00907335 0.00908384 0.00909432 0.00910481 0.00911529 0.00912578 0.00913626 0.00914675 0.00915723 0.00916772 0.0091782 0.00918869 0.00919917 0.00920966 0.00922014 0.00923063 0.00924111 0.0092516 0.00926208 0.00927257 0.00928305 0.00929354 0.00930402 0.00931451 0.00932499 0.00933548 0.00934596 0.00935644 0.00936693 0.00937741 0.0093879 0.00939838 0.00940887 0.00941935 0.00942984 0.00944032 0.00945081 0.00946129 0.00947178 0.00948226 0.00949275 0.00950323 0.00951372 0.0095242 0.00953469 0.00954517 0.00955566 0.00956614 0.00957663 0.00958711 0.0095976 0.00960808 0.00961857 0.00962905 0.00963954 0.00965002 0.00966051 0.00967099 0.00968148 0.00969196 0.00970245 0.00971293 0.00972342 0.0097339 0.00974439 0.00975487 0.00976536 0.00977584 0.00978632 0.00979681 0.00980729 0.00981778 0.00982826 0.00983875 0.00984923 0.00985972 0.0098702 0.00988069 0.00989117 0.00990166 0.00991214 0.00992263 0.00993311 0.0099436 0.00995408 0.00996457 0.00997505 0.00998554 0.00999602 0.0100065 0.010017 0.0100275 0.010038 0.0100484 0.0100589 0.0100694 0.0100799 0.0100904 0.0101009 0.0101114 0.0101218 0.0101323 +-0.0023945 -0.00220768 -0.00180179 -0.00101535 8.16809E-05 0.00134936 0.00269759 0.00407031 0.00542054 0.0066892 0.00777514 0.00850855 0.00880633 0.00887835 0.0088986 0.00891054 0.00892124 0.00893176 0.00894226 0.00895275 0.00896324 0.00897373 0.00898422 0.00899471 0.00900521 0.0090157 0.00902619 0.00903668 0.00904717 0.00905766 0.00906815 0.00907864 0.00908914 0.00909963 0.00911012 0.00912061 0.0091311 0.00914159 0.00915208 0.00916257 0.00917307 0.00918356 0.00919405 0.00920454 0.00921503 0.00922552 0.00923601 0.0092465 0.009257 0.00926749 0.00927798 0.00928847 0.00929896 0.00930945 0.00931994 0.00933043 0.00934092 0.00935142 0.00936191 0.0093724 0.00938289 0.00939338 0.00940387 0.00941436 0.00942485 0.00943535 0.00944584 0.00945633 0.00946682 0.00947731 0.0094878 0.00949829 0.00950878 0.00951928 0.00952977 0.00954026 0.00955075 0.00956124 0.00957173 0.00958222 0.00959271 0.00960321 0.0096137 0.00962419 0.00963468 0.00964517 0.00965566 0.00966615 0.00967664 0.00968714 0.00969763 0.00970812 0.00971861 0.0097291 0.00973959 0.00975008 0.00976057 0.00977107 0.00978156 0.00979205 0.00980254 0.00981303 0.00982352 0.00983401 0.0098445 0.009855 0.00986549 0.00987598 0.00988647 0.00989696 0.00990745 0.00991794 0.00992843 0.00993893 0.00994942 0.00995991 0.0099704 0.00998089 0.00999138 0.0100019 0.0100124 0.0100229 0.0100333 0.0100438 0.0100543 0.0100648 0.0100753 0.0100858 0.0100963 0.0101068 0.0101173 0.0101278 0.0101383 +-0.00239613 -0.00220907 -0.00180266 -0.00101565 8.17657E-05 0.0013497 0.00269815 0.00407109 0.00542161 0.00669074 0.0077775 0.00851224 0.00881111 0.00888346 0.00890377 0.00891572 0.00892643 0.00893696 0.00894746 0.00895796 0.00896846 0.00897896 0.00898945 0.00899995 0.00901045 0.00902095 0.00903145 0.00904194 0.00905244 0.00906294 0.00907344 0.00908393 0.00909443 0.00910493 0.00911543 0.00912592 0.00913642 0.00914692 0.00915742 0.00916791 0.00917841 0.00918891 0.00919941 0.0092099 0.0092204 0.0092309 0.0092414 0.00925189 0.00926239 0.00927289 0.00928339 0.00929388 0.00930438 0.00931488 0.00932538 0.00933588 0.00934637 0.00935687 0.00936737 0.00937787 0.00938836 0.00939886 0.00940936 0.00941986 0.00943035 0.00944085 0.00945135 0.00946185 0.00947234 0.00948284 0.00949334 0.00950384 0.00951433 0.00952483 0.00953533 0.00954583 0.00955632 0.00956682 0.00957732 0.00958782 0.00959831 0.00960881 0.00961931 0.00962981 0.00964031 0.0096508 0.0096613 0.0096718 0.0096823 0.00969279 0.00970329 0.00971379 0.00972429 0.00973478 0.00974528 0.00975578 0.00976628 0.00977677 0.00978727 0.00979777 0.00980827 0.00981876 0.00982926 0.00983976 0.00985026 0.00986075 0.00987125 0.00988175 0.00989225 0.00990275 0.00991324 0.00992374 0.00993424 0.00994474 0.00995523 0.00996573 0.00997623 0.00998673 0.00999722 0.0100077 0.0100182 0.0100287 0.0100392 0.0100497 0.0100602 0.0100707 0.0100812 0.0100917 0.0101022 0.0101127 0.0101232 0.0101337 0.0101442 +-0.00239777 -0.00221047 -0.00180354 -0.00101595 8.18505E-05 0.00135004 0.0026987 0.00407187 0.00542268 0.00669227 0.00777986 0.00851593 0.00881589 0.00888856 0.00890894 0.00892091 0.00893162 0.00894216 0.00895267 0.00896317 0.00897368 0.00898418 0.00899468 0.00900519 0.00901569 0.0090262 0.0090367 0.0090472 0.00905771 0.00906821 0.00907872 0.00908922 0.00909972 0.00911023 0.00912073 0.00913124 0.00914174 0.00915224 0.00916275 0.00917325 0.00918376 0.00919426 0.00920476 0.00921527 0.00922577 0.00923628 0.00924678 0.00925728 0.00926779 0.00927829 0.00928879 0.0092993 0.0093098 0.00932031 0.00933081 0.00934131 0.00935182 0.00936232 0.00937283 0.00938333 0.00939383 0.00940434 0.00941484 0.00942535 0.00943585 0.00944635 0.00945686 0.00946736 0.00947787 0.00948837 0.00949887 0.00950938 0.00951988 0.00953039 0.00954089 0.00955139 0.0095619 0.0095724 0.00958291 0.00959341 0.00960391 0.00961442 0.00962492 0.00963543 0.00964593 0.00965643 0.00966694 0.00967744 0.00968794 0.00969845 0.00970895 0.00971946 0.00972996 0.00974046 0.00975097 0.00976147 0.00977198 0.00978248 0.00979298 0.00980349 0.00981399 0.0098245 0.009835 0.0098455 0.00985601 0.00986651 0.00987702 0.00988752 0.00989802 0.00990853 0.00991903 0.00992954 0.00994004 0.00995054 0.00996105 0.00997155 0.00998206 0.00999256 0.0100031 0.0100136 0.0100241 0.0100346 0.0100451 0.0100556 0.0100661 0.0100766 0.0100871 0.0100976 0.0101081 0.0101186 0.0101291 0.0101396 0.0101501 +-0.00239941 -0.00221187 -0.00180441 -0.00101625 8.19354E-05 0.00135038 0.00269926 0.00407265 0.00542375 0.0066938 0.00778221 0.00851962 0.00882066 0.00889367 0.0089141 0.00892609 0.00893681 0.00894736 0.00895787 0.00896838 0.00897889 0.0089894 0.00899991 0.00901042 0.00902093 0.00903144 0.00904195 0.00905246 0.00906297 0.00907348 0.00908399 0.00909451 0.00910502 0.00911553 0.00912604 0.00913655 0.00914706 0.00915757 0.00916808 0.00917859 0.0091891 0.00919961 0.00921012 0.00922063 0.00923114 0.00924165 0.00925216 0.00926267 0.00927318 0.00928369 0.0092942 0.00930471 0.00931522 0.00932573 0.00933624 0.00934675 0.00935726 0.00936777 0.00937828 0.00938879 0.0093993 0.00940981 0.00942032 0.00943083 0.00944134 0.00945186 0.00946237 0.00947288 0.00948339 0.0094939 0.00950441 0.00951492 0.00952543 0.00953594 0.00954645 0.00955696 0.00956747 0.00957798 0.00958849 0.009599 0.00960951 0.00962002 0.00963053 0.00964104 0.00965155 0.00966206 0.00967257 0.00968308 0.00969359 0.0097041 0.00971461 0.00972512 0.00973563 0.00974614 0.00975665 0.00976716 0.00977767 0.00978818 0.00979869 0.00980921 0.00981972 0.00983023 0.00984074 0.00985125 0.00986176 0.00987227 0.00988278 0.00989329 0.0099038 0.00991431 0.00992482 0.00993533 0.00994584 0.00995635 0.00996686 0.00997737 0.00998788 0.00999839 0.0100089 0.0100194 0.0100299 0.0100404 0.0100509 0.0100615 0.010072 0.0100825 0.010093 0.0101035 0.010114 0.0101245 0.010135 0.0101455 0.010156 +-0.00240105 -0.00221326 -0.00180529 -0.00101655 8.20202E-05 0.00135072 0.00269981 0.00407342 0.00542482 0.00669533 0.00778456 0.0085233 0.00882544 0.00889877 0.00891927 0.00893127 0.008942 0.00895255 0.00896307 0.00897359 0.00898411 0.00899462 0.00900514 0.00901566 0.00902617 0.00903669 0.00904721 0.00905772 0.00906824 0.00907875 0.00908927 0.00909979 0.0091103 0.00912082 0.00913134 0.00914185 0.00915237 0.00916289 0.0091734 0.00918392 0.00919444 0.00920495 0.00921547 0.00922599 0.0092365 0.00924702 0.00925754 0.00926805 0.00927857 0.00928909 0.0092996 0.00931012 0.00932064 0.00933115 0.00934167 0.00935219 0.0093627 0.00937322 0.00938374 0.00939425 0.00940477 0.00941529 0.0094258 0.00943632 0.00944684 0.00945735 0.00946787 0.00947839 0.0094889 0.00949942 0.00950994 0.00952045 0.00953097 0.00954149 0.009552 0.00956252 0.00957304 0.00958355 0.00959407 0.00960459 0.0096151 0.00962562 0.00963614 0.00964665 0.00965717 0.00966769 0.0096782 0.00968872 0.00969924 0.00970975 0.00972027 0.00973079 0.0097413 0.00975182 0.00976234 0.00977285 0.00978337 0.00979389 0.0098044 0.00981492 0.00982544 0.00983595 0.00984647 0.00985699 0.0098675 0.00987802 0.00988854 0.00989905 0.00990957 0.00992009 0.0099306 0.00994112 0.00995164 0.00996215 0.00997267 0.00998319 0.0099937 0.0100042 0.0100147 0.0100253 0.0100358 0.0100463 0.0100568 0.0100673 0.0100778 0.0100884 0.0100989 0.0101094 0.0101199 0.0101304 0.0101409 0.0101515 0.010162 +-0.00240268 -0.00221465 -0.00180616 -0.00101685 8.21051E-05 0.00135107 0.00270036 0.0040742 0.00542588 0.00669685 0.0077869 0.00852697 0.0088302 0.00890387 0.00892443 0.00893645 0.00894719 0.00895774 0.00896827 0.00897879 0.00898932 0.00899984 0.00901036 0.00902089 0.00903141 0.00904193 0.00905245 0.00906298 0.0090735 0.00908402 0.00909455 0.00910507 0.00911559 0.00912612 0.00913664 0.00914716 0.00915768 0.00916821 0.00917873 0.00918925 0.00919978 0.0092103 0.00922082 0.00923135 0.00924187 0.00925239 0.00926291 0.00927344 0.00928396 0.00929448 0.00930501 0.00931553 0.00932605 0.00933658 0.0093471 0.00935762 0.00936814 0.00937867 0.00938919 0.00939971 0.00941024 0.00942076 0.00943128 0.00944181 0.00945233 0.00946285 0.00947337 0.0094839 0.00949442 0.00950494 0.00951547 0.00952599 0.00953651 0.00954704 0.00955756 0.00956808 0.0095786 0.00958913 0.00959965 0.00961017 0.0096207 0.00963122 0.00964174 0.00965227 0.00966279 0.00967331 0.00968383 0.00969436 0.00970488 0.0097154 0.00972593 0.00973645 0.00974697 0.00975749 0.00976802 0.00977854 0.00978906 0.00979959 0.00981011 0.00982063 0.00983116 0.00984168 0.0098522 0.00986272 0.00987325 0.00988377 0.00989429 0.00990482 0.00991534 0.00992586 0.00993639 0.00994691 0.00995743 0.00996795 0.00997848 0.009989 0.00999952 0.01001 0.0100206 0.0100311 0.0100416 0.0100521 0.0100627 0.0100732 0.0100837 0.0100942 0.0101048 0.0101153 0.0101258 0.0101363 0.0101468 0.0101574 0.0101679 +-0.00240432 -0.00221605 -0.00180704 -0.00101715 8.21899E-05 0.00135141 0.00270091 0.00407497 0.00542695 0.00669837 0.00778924 0.00853064 0.00883497 0.00890897 0.00892959 0.00894162 0.00895237 0.00896293 0.00897347 0.008984 0.00899453 0.00900506 0.00901558 0.00902611 0.00903664 0.00904717 0.0090577 0.00906823 0.00907876 0.00908929 0.00909982 0.00911035 0.00912088 0.00913141 0.00914194 0.00915247 0.009163 0.00917352 0.00918405 0.00919458 0.00920511 0.00921564 0.00922617 0.0092367 0.00924723 0.00925776 0.00926829 0.00927882 0.00928935 0.00929988 0.00931041 0.00932094 0.00933146 0.00934199 0.00935252 0.00936305 0.00937358 0.00938411 0.00939464 0.00940517 0.0094157 0.00942623 0.00943676 0.00944729 0.00945782 0.00946835 0.00947888 0.0094894 0.00949993 0.00951046 0.00952099 0.00953152 0.00954205 0.00955258 0.00956311 0.00957364 0.00958417 0.0095947 0.00960523 0.00961576 0.00962629 0.00963682 0.00964734 0.00965787 0.0096684 0.00967893 0.00968946 0.00969999 0.00971052 0.00972105 0.00973158 0.00974211 0.00975264 0.00976317 0.0097737 0.00978423 0.00979476 0.00980529 0.00981581 0.00982634 0.00983687 0.0098474 0.00985793 0.00986846 0.00987899 0.00988952 0.00990005 0.00991058 0.00992111 0.00993164 0.00994217 0.0099527 0.00996323 0.00997375 0.00998428 0.00999481 0.0100053 0.0100159 0.0100264 0.0100369 0.0100475 0.010058 0.0100685 0.010079 0.0100896 0.0101001 0.0101106 0.0101212 0.0101317 0.0101422 0.0101528 0.0101633 0.0101738 +-0.00240595 -0.00221744 -0.00180791 -0.00101745 8.22748E-05 0.00135175 0.00270147 0.00407574 0.00542801 0.00669989 0.00779158 0.0085343 0.00883973 0.00891407 0.00893475 0.0089468 0.00895755 0.00896812 0.00897866 0.0089892 0.00899973 0.00901027 0.0090208 0.00903134 0.00904188 0.00905241 0.00906295 0.00907348 0.00908402 0.00909455 0.00910509 0.00911563 0.00912616 0.0091367 0.00914723 0.00915777 0.0091683 0.00917884 0.00918938 0.00919991 0.00921045 0.00922098 0.00923152 0.00924205 0.00925259 0.00926313 0.00927366 0.0092842 0.00929473 0.00930527 0.0093158 0.00932634 0.00933688 0.00934741 0.00935795 0.00936848 0.00937902 0.00938955 0.00940009 0.00941063 0.00942116 0.0094317 0.00944223 0.00945277 0.0094633 0.00947384 0.00948437 0.00949491 0.00950545 0.00951598 0.00952652 0.00953705 0.00954759 0.00955812 0.00956866 0.0095792 0.00958973 0.00960027 0.0096108 0.00962134 0.00963187 0.00964241 0.00965295 0.00966348 0.00967402 0.00968455 0.00969509 0.00970562 0.00971616 0.0097267 0.00973723 0.00974777 0.0097583 0.00976884 0.00977937 0.00978991 0.00980045 0.00981098 0.00982152 0.00983205 0.00984259 0.00985312 0.00986366 0.0098742 0.00988473 0.00989527 0.0099058 0.00991634 0.00992687 0.00993741 0.00994794 0.00995848 0.00996902 0.00997955 0.00999009 0.0100006 0.0100112 0.0100217 0.0100322 0.0100428 0.0100533 0.0100638 0.0100744 0.0100849 0.0100954 0.010106 0.0101165 0.0101271 0.0101376 0.0101481 0.0101587 0.0101692 0.0101797 +-0.00240759 -0.00221883 -0.00180878 -0.00101775 8.23597E-05 0.00135209 0.00270202 0.00407651 0.00542907 0.00670141 0.00779391 0.00853796 0.00884449 0.00891916 0.00893991 0.00895197 0.00896273 0.00897331 0.00898385 0.0089944 0.00900494 0.00901548 0.00902602 0.00903657 0.00904711 0.00905765 0.00906819 0.00907873 0.00908928 0.00909982 0.00911036 0.0091209 0.00913144 0.00914199 0.00915253 0.00916307 0.00917361 0.00918415 0.0091947 0.00920524 0.00921578 0.00922632 0.00923686 0.00924741 0.00925795 0.00926849 0.00927903 0.00928957 0.00930012 0.00931066 0.0093212 0.00933174 0.00934228 0.00935283 0.00936337 0.00937391 0.00938445 0.00939499 0.00940554 0.00941608 0.00942662 0.00943716 0.0094477 0.00945825 0.00946879 0.00947933 0.00948987 0.00950041 0.00951096 0.0095215 0.00953204 0.00954258 0.00955312 0.00956367 0.00957421 0.00958475 0.00959529 0.00960583 0.00961638 0.00962692 0.00963746 0.009648 0.00965854 0.00966909 0.00967963 0.00969017 0.00970071 0.00971125 0.0097218 0.00973234 0.00974288 0.00975342 0.00976396 0.00977451 0.00978505 0.00979559 0.00980613 0.00981667 0.00982722 0.00983776 0.0098483 0.00985884 0.00986938 0.00987993 0.00989047 0.00990101 0.00991155 0.0099221 0.00993264 0.00994318 0.00995372 0.00996426 0.00997481 0.00998535 0.00999589 0.0100064 0.010017 0.0100275 0.0100381 0.0100486 0.0100591 0.0100697 0.0100802 0.0100908 0.0101013 0.0101119 0.0101224 0.0101329 0.0101435 0.010154 0.0101646 0.0101751 0.0101856 +-0.00240922 -0.00222022 -0.00180965 -0.00101805 8.24446E-05 0.00135243 0.00270257 0.00407728 0.00543013 0.00670293 0.00779624 0.00854161 0.00884924 0.00892425 0.00894507 0.00895714 0.00896791 0.00897849 0.00898905 0.00899959 0.00901014 0.00902069 0.00903124 0.00904179 0.00905234 0.00906288 0.00907343 0.00908398 0.00909453 0.00910508 0.00911563 0.00912617 0.00913672 0.00914727 0.00915782 0.00916837 0.00917892 0.00918946 0.00920001 0.00921056 0.00922111 0.00923166 0.00924221 0.00925276 0.0092633 0.00927385 0.0092844 0.00929495 0.0093055 0.00931605 0.00932659 0.00933714 0.00934769 0.00935824 0.00936879 0.00937934 0.00938988 0.00940043 0.00941098 0.00942153 0.00943208 0.00944263 0.00945317 0.00946372 0.00947427 0.00948482 0.00949537 0.00950592 0.00951646 0.00952701 0.00953756 0.00954811 0.00955866 0.00956921 0.00957975 0.0095903 0.00960085 0.0096114 0.00962195 0.0096325 0.00964304 0.00965359 0.00966414 0.00967469 0.00968524 0.00969579 0.00970633 0.00971688 0.00972743 0.00973798 0.00974853 0.00975908 0.00976962 0.00978017 0.00979072 0.00980127 0.00981182 0.00982237 0.00983292 0.00984346 0.00985401 0.00986456 0.00987511 0.00988566 0.00989621 0.00990675 0.0099173 0.00992785 0.0099384 0.00994895 0.0099595 0.00997004 0.00998059 0.00999114 0.0100017 0.0100122 0.0100228 0.0100333 0.0100439 0.0100544 0.010065 0.0100755 0.0100861 0.0100966 0.0101072 0.0101177 0.0101283 0.0101388 0.0101494 0.0101599 0.0101705 0.010181 0.0101916 +-0.00241086 -0.00222161 -0.00181052 -0.00101835 8.25295E-05 0.00135277 0.00270312 0.00407806 0.00543119 0.00670444 0.00779856 0.00854526 0.00885399 0.00892934 0.00895022 0.00896231 0.00897309 0.00898367 0.00899423 0.00900479 0.00901534 0.0090259 0.00903645 0.00904701 0.00905756 0.00906812 0.00907867 0.00908923 0.00909978 0.00911034 0.00912089 0.00913145 0.009142 0.00915256 0.00916311 0.00917367 0.00918422 0.00919477 0.00920533 0.00921588 0.00922644 0.00923699 0.00924755 0.0092581 0.00926866 0.00927921 0.00928977 0.00930032 0.00931088 0.00932143 0.00933199 0.00934254 0.00935309 0.00936365 0.0093742 0.00938476 0.00939531 0.00940587 0.00941642 0.00942698 0.00943753 0.00944809 0.00945864 0.0094692 0.00947975 0.00949031 0.00950086 0.00951142 0.00952197 0.00953252 0.00954308 0.00955363 0.00956419 0.00957474 0.0095853 0.00959585 0.00960641 0.00961696 0.00962752 0.00963807 0.00964863 0.00965918 0.00966974 0.00968029 0.00969085 0.0097014 0.00971195 0.00972251 0.00973306 0.00974362 0.00975417 0.00976473 0.00977528 0.00978584 0.00979639 0.00980695 0.0098175 0.00982806 0.00983861 0.00984917 0.00985972 0.00987028 0.00988083 0.00989138 0.00990194 0.00991249 0.00992305 0.0099336 0.00994416 0.00995471 0.00996527 0.00997582 0.00998638 0.00999693 0.0100075 0.010018 0.0100286 0.0100392 0.0100497 0.0100603 0.0100708 0.0100814 0.0100919 0.0101025 0.010113 0.0101236 0.0101341 0.0101447 0.0101553 0.0101658 0.0101764 0.0101869 0.0101975 +-0.00241249 -0.002223 -0.00181139 -0.00101865 8.26144E-05 0.00135311 0.00270367 0.00407882 0.00543225 0.00670595 0.00780089 0.0085489 0.00885873 0.00893443 0.00895537 0.00896747 0.00897826 0.00898886 0.00899942 0.00900998 0.00902054 0.00903111 0.00904167 0.00905223 0.00906279 0.00907335 0.00908391 0.00909447 0.00910503 0.00911559 0.00912615 0.00913672 0.00914728 0.00915784 0.0091684 0.00917896 0.00918952 0.00920008 0.00921064 0.0092212 0.00923177 0.00924233 0.00925289 0.00926345 0.00927401 0.00928457 0.00929513 0.00930569 0.00931625 0.00932681 0.00933738 0.00934794 0.0093585 0.00936906 0.00937962 0.00939018 0.00940074 0.0094113 0.00942186 0.00943242 0.00944299 0.00945355 0.00946411 0.00947467 0.00948523 0.00949579 0.00950635 0.00951691 0.00952747 0.00953804 0.0095486 0.00955916 0.00956972 0.00958028 0.00959084 0.0096014 0.00961196 0.00962252 0.00963308 0.00964365 0.00965421 0.00966477 0.00967533 0.00968589 0.00969645 0.00970701 0.00971757 0.00972813 0.00973869 0.00974926 0.00975982 0.00977038 0.00978094 0.0097915 0.00980206 0.00981262 0.00982318 0.00983374 0.00984431 0.00985487 0.00986543 0.00987599 0.00988655 0.00989711 0.00990767 0.00991823 0.00992879 0.00993935 0.00994992 0.00996048 0.00997104 0.0099816 0.00999216 0.0100027 0.0100133 0.0100238 0.0100344 0.010045 0.0100555 0.0100661 0.0100766 0.0100872 0.0100978 0.0101083 0.0101189 0.0101295 0.01014 0.0101506 0.0101611 0.0101717 0.0101823 0.0101928 0.0102034 +-0.00241412 -0.00222439 -0.00181225 -0.00101895 8.26993E-05 0.00135345 0.00270422 0.00407959 0.00543331 0.00670746 0.0078032 0.00855254 0.00886348 0.00893952 0.00896052 0.00897264 0.00898343 0.00899403 0.00900461 0.00901518 0.00902574 0.00903631 0.00904688 0.00905744 0.00906801 0.00907858 0.00908915 0.00909971 0.00911028 0.00912085 0.00913142 0.00914198 0.00915255 0.00916312 0.00917369 0.00918425 0.00919482 0.00920539 0.00921596 0.00922652 0.00923709 0.00924766 0.00925822 0.00926879 0.00927936 0.00928993 0.00930049 0.00931106 0.00932163 0.0093322 0.00934276 0.00935333 0.0093639 0.00937447 0.00938503 0.0093956 0.00940617 0.00941674 0.0094273 0.00943787 0.00944844 0.009459 0.00946957 0.00948014 0.00949071 0.00950127 0.00951184 0.00952241 0.00953298 0.00954354 0.00955411 0.00956468 0.00957525 0.00958581 0.00959638 0.00960695 0.00961752 0.00962808 0.00963865 0.00964922 0.00965978 0.00967035 0.00968092 0.00969149 0.00970205 0.00971262 0.00972319 0.00973376 0.00974432 0.00975489 0.00976546 0.00977603 0.00978659 0.00979716 0.00980773 0.00981829 0.00982886 0.00983943 0.00985 0.00986056 0.00987113 0.0098817 0.00989227 0.00990283 0.0099134 0.00992397 0.00993454 0.0099451 0.00995567 0.00996624 0.00997681 0.00998737 0.00999794 0.0100085 0.0100191 0.0100296 0.0100402 0.0100508 0.0100613 0.0100719 0.0100825 0.010093 0.0101036 0.0101142 0.0101247 0.0101353 0.0101459 0.0101565 0.010167 0.0101776 0.0101882 0.0101987 0.0102093 +-0.00241576 -0.00222578 -0.00181312 -0.00101924 8.27842E-05 0.00135379 0.00270476 0.00408036 0.00543436 0.00670897 0.00780552 0.00855617 0.00886822 0.0089446 0.00896567 0.0089778 0.0089886 0.00899921 0.00900979 0.00902036 0.00903094 0.00904151 0.00905209 0.00906266 0.00907323 0.00908381 0.00909438 0.00910495 0.00911553 0.0091261 0.00913668 0.00914725 0.00915782 0.0091684 0.00917897 0.00918954 0.00920012 0.00921069 0.00922127 0.00923184 0.00924241 0.00925299 0.00926356 0.00927413 0.00928471 0.00929528 0.00930585 0.00931643 0.009327 0.00933758 0.00934815 0.00935872 0.0093693 0.00937987 0.00939044 0.00940102 0.00941159 0.00942217 0.00943274 0.00944331 0.00945389 0.00946446 0.00947503 0.00948561 0.00949618 0.00950676 0.00951733 0.0095279 0.00953848 0.00954905 0.00955962 0.0095702 0.00958077 0.00959134 0.00960192 0.00961249 0.00962307 0.00963364 0.00964421 0.00965479 0.00966536 0.00967593 0.00968651 0.00969708 0.00970766 0.00971823 0.0097288 0.00973938 0.00974995 0.00976052 0.0097711 0.00978167 0.00979224 0.00980282 0.00981339 0.00982397 0.00983454 0.00984511 0.00985569 0.00986626 0.00987683 0.00988741 0.00989798 0.00990856 0.00991913 0.0099297 0.00994028 0.00995085 0.00996142 0.009972 0.00998257 0.00999315 0.0100037 0.0100143 0.0100249 0.0100354 0.010046 0.0100566 0.0100672 0.0100777 0.0100883 0.0100989 0.0101095 0.01012 0.0101306 0.0101412 0.0101518 0.0101623 0.0101729 0.0101835 0.010194 0.0102046 0.0102152 +-0.00241739 -0.00222717 -0.00181399 -0.00101954 8.28692E-05 0.00135413 0.00270531 0.00408113 0.00543542 0.00671047 0.00780782 0.00855979 0.00887295 0.00894968 0.00897082 0.00898296 0.00899377 0.00900439 0.00901497 0.00902555 0.00903613 0.00904671 0.00905729 0.00906787 0.00907845 0.00908903 0.00909961 0.00911019 0.00912077 0.00913135 0.00914193 0.00915251 0.00916309 0.00917367 0.00918425 0.00919483 0.00920541 0.00921599 0.00922657 0.00923715 0.00924773 0.00925831 0.00926889 0.00927947 0.00929005 0.00930063 0.00931121 0.00932179 0.00933237 0.00934295 0.00935353 0.00936411 0.00937469 0.00938527 0.00939585 0.00940643 0.00941701 0.00942759 0.00943817 0.00944875 0.00945933 0.00946991 0.00948049 0.00949107 0.00950165 0.00951223 0.00952281 0.00953339 0.00954397 0.00955455 0.00956513 0.00957571 0.00958629 0.00959687 0.00960745 0.00961803 0.00962861 0.00963919 0.00964977 0.00966035 0.00967093 0.00968151 0.00969209 0.00970267 0.00971325 0.00972383 0.00973441 0.00974499 0.00975557 0.00976615 0.00977673 0.00978731 0.00979789 0.00980847 0.00981905 0.00982963 0.00984021 0.00985079 0.00986137 0.00987195 0.00988253 0.00989311 0.00990369 0.00991427 0.00992485 0.00993543 0.00994601 0.00995659 0.00996718 0.00997776 0.00998834 0.00999892 0.0100095 0.0100201 0.0100307 0.0100412 0.0100518 0.0100624 0.010073 0.0100836 0.0100941 0.0101047 0.0101153 0.0101259 0.0101365 0.010147 0.0101576 0.0101682 0.0101788 0.0101894 0.0101999 0.0102105 0.0102211 +-0.00241902 -0.00222855 -0.00181485 -0.00101984 8.29541E-05 0.00135447 0.00270586 0.0040819 0.00543647 0.00671197 0.00781013 0.00856341 0.00887768 0.00895476 0.00897596 0.00898812 0.00899894 0.00900956 0.00902015 0.00903074 0.00904133 0.00905191 0.0090625 0.00907308 0.00908367 0.00909426 0.00910484 0.00911543 0.00912602 0.0091366 0.00914719 0.00915778 0.00916836 0.00917895 0.00918953 0.00920012 0.00921071 0.00922129 0.00923188 0.00924247 0.00925305 0.00926364 0.00927422 0.00928481 0.0092954 0.00930598 0.00931657 0.00932716 0.00933774 0.00934833 0.00935892 0.0093695 0.00938009 0.00939067 0.00940126 0.00941185 0.00942243 0.00943302 0.00944361 0.00945419 0.00946478 0.00947537 0.00948595 0.00949654 0.00950712 0.00951771 0.0095283 0.00953888 0.00954947 0.00956006 0.00957064 0.00958123 0.00959182 0.0096024 0.00961299 0.00962357 0.00963416 0.00964475 0.00965533 0.00966592 0.00967651 0.00968709 0.00969768 0.00970827 0.00971885 0.00972944 0.00974002 0.00975061 0.0097612 0.00977178 0.00978237 0.00979296 0.00980354 0.00981413 0.00982472 0.0098353 0.00984589 0.00985647 0.00986706 0.00987765 0.00988823 0.00989882 0.00990941 0.00991999 0.00993058 0.00994116 0.00995175 0.00996234 0.00997292 0.00998351 0.0099941 0.0100047 0.0100153 0.0100259 0.0100364 0.010047 0.0100576 0.0100682 0.0100788 0.0100894 0.0101 0.0101105 0.0101211 0.0101317 0.0101423 0.0101529 0.0101635 0.0101741 0.0101847 0.0101952 0.0102058 0.0102164 0.010227 +-0.00242065 -0.00222994 -0.00181572 -0.00102013 8.30391E-05 0.00135481 0.00270641 0.00408266 0.00543752 0.00671347 0.00781243 0.00856702 0.00888241 0.00895983 0.0089811 0.00899328 0.00900411 0.00901473 0.00902533 0.00903592 0.00904652 0.00905711 0.0090677 0.00907829 0.00908889 0.00909948 0.00911007 0.00912066 0.00913126 0.00914185 0.00915244 0.00916304 0.00917363 0.00918422 0.00919481 0.00920541 0.009216 0.00922659 0.00923718 0.00924778 0.00925837 0.00926896 0.00927955 0.00929015 0.00930074 0.00931133 0.00932193 0.00933252 0.00934311 0.0093537 0.0093643 0.00937489 0.00938548 0.00939607 0.00940667 0.00941726 0.00942785 0.00943844 0.00944904 0.00945963 0.00947022 0.00948082 0.00949141 0.009502 0.00951259 0.00952319 0.00953378 0.00954437 0.00955496 0.00956556 0.00957615 0.00958674 0.00959733 0.00960793 0.00961852 0.00962911 0.00963971 0.0096503 0.00966089 0.00967148 0.00968208 0.00969267 0.00970326 0.00971385 0.00972445 0.00973504 0.00974563 0.00975622 0.00976682 0.00977741 0.009788 0.0097986 0.00980919 0.00981978 0.00983037 0.00984097 0.00985156 0.00986215 0.00987274 0.00988334 0.00989393 0.00990452 0.00991511 0.00992571 0.0099363 0.00994689 0.00995749 0.00996808 0.00997867 0.00998926 0.00999986 0.0100104 0.010021 0.0100316 0.0100422 0.0100528 0.0100634 0.010074 0.0100846 0.0100952 0.0101058 0.0101164 0.010127 0.0101376 0.0101482 0.0101587 0.0101693 0.0101799 0.0101905 0.0102011 0.0102117 0.0102223 0.0102329 +-0.00242228 -0.00223132 -0.00181658 -0.00102043 8.3124E-05 0.00135514 0.00270695 0.00408343 0.00543857 0.00671497 0.00781473 0.00857063 0.00888713 0.00896491 0.00898624 0.00899844 0.00900927 0.0090199 0.00903051 0.00904111 0.0090517 0.0090623 0.0090729 0.0090835 0.0090941 0.0091047 0.0091153 0.0091259 0.0091365 0.0091471 0.00915769 0.00916829 0.00917889 0.00918949 0.00920009 0.00921069 0.00922129 0.00923189 0.00924249 0.00925309 0.00926368 0.00927428 0.00928488 0.00929548 0.00930608 0.00931668 0.00932728 0.00933788 0.00934848 0.00935908 0.00936967 0.00938027 0.00939087 0.00940147 0.00941207 0.00942267 0.00943327 0.00944387 0.00945447 0.00946507 0.00947566 0.00948626 0.00949686 0.00950746 0.00951806 0.00952866 0.00953926 0.00954986 0.00956046 0.00957106 0.00958165 0.00959225 0.00960285 0.00961345 0.00962405 0.00963465 0.00964525 0.00965585 0.00966645 0.00967704 0.00968764 0.00969824 0.00970884 0.00971944 0.00973004 0.00974064 0.00975124 0.00976184 0.00977244 0.00978303 0.00979363 0.00980423 0.00981483 0.00982543 0.00983603 0.00984663 0.00985723 0.00986783 0.00987843 0.00988902 0.00989962 0.00991022 0.00992082 0.00993142 0.00994202 0.00995262 0.00996322 0.00997382 0.00998442 0.00999501 0.0100056 0.0100162 0.0100268 0.0100374 0.010048 0.0100586 0.0100692 0.0100798 0.0100904 0.010101 0.0101116 0.0101222 0.0101328 0.0101434 0.010154 0.0101646 0.0101752 0.0101858 0.0101964 0.010207 0.0102176 0.0102282 0.0102388 +-0.00242391 -0.00223271 -0.00181744 -0.00102072 8.3209E-05 0.00135548 0.0027075 0.00408419 0.00543962 0.00671647 0.00781702 0.00857424 0.00889185 0.00896998 0.00899138 0.00900359 0.00901443 0.00902507 0.00903568 0.00904629 0.00905689 0.0090675 0.0090781 0.00908871 0.00909931 0.00910992 0.00912052 0.00913113 0.00914173 0.00915234 0.00916294 0.00917355 0.00918415 0.00919476 0.00920537 0.00921597 0.00922658 0.00923718 0.00924779 0.00925839 0.009269 0.0092796 0.00929021 0.00930081 0.00931142 0.00932202 0.00933263 0.00934323 0.00935384 0.00936445 0.00937505 0.00938566 0.00939626 0.00940687 0.00941747 0.00942808 0.00943868 0.00944929 0.00945989 0.0094705 0.0094811 0.00949171 0.00950231 0.00951292 0.00952352 0.00953413 0.00954474 0.00955534 0.00956595 0.00957655 0.00958716 0.00959776 0.00960837 0.00961897 0.00962958 0.00964018 0.00965079 0.00966139 0.009672 0.0096826 0.00969321 0.00970382 0.00971442 0.00972503 0.00973563 0.00974624 0.00975684 0.00976745 0.00977805 0.00978866 0.00979926 0.00980987 0.00982047 0.00983108 0.00984168 0.00985229 0.00986289 0.0098735 0.00988411 0.00989471 0.00990532 0.00991592 0.00992653 0.00993713 0.00994774 0.00995834 0.00996895 0.00997955 0.00999016 0.0100008 0.0100114 0.010022 0.0100326 0.0100432 0.0100538 0.0100644 0.010075 0.0100856 0.0100962 0.0101068 0.0101174 0.010128 0.0101386 0.0101492 0.0101598 0.0101704 0.0101811 0.0101917 0.0102023 0.0102129 0.0102235 0.0102341 0.0102447 +-0.00242554 -0.00223409 -0.0018183 -0.00102102 8.3294E-05 0.00135582 0.00270804 0.00408495 0.00544067 0.00671796 0.00781931 0.00857783 0.00889657 0.00897505 0.00899652 0.00900874 0.00901959 0.00903023 0.00904085 0.00905146 0.00906208 0.00907269 0.0090833 0.00909391 0.00910452 0.00911513 0.00912575 0.00913636 0.00914697 0.00915758 0.00916819 0.0091788 0.00918942 0.00920003 0.00921064 0.00922125 0.00923186 0.00924247 0.00925309 0.0092637 0.00927431 0.00928492 0.00929553 0.00930614 0.00931675 0.00932737 0.00933798 0.00934859 0.0093592 0.00936981 0.00938042 0.00939104 0.00940165 0.00941226 0.00942287 0.00943348 0.00944409 0.00945471 0.00946532 0.00947593 0.00948654 0.00949715 0.00950776 0.00951838 0.00952899 0.0095396 0.00955021 0.00956082 0.00957143 0.00958205 0.00959266 0.00960327 0.00961388 0.00962449 0.0096351 0.00964572 0.00965633 0.00966694 0.00967755 0.00968816 0.00969877 0.00970939 0.00972 0.00973061 0.00974122 0.00975183 0.00976244 0.00977306 0.00978367 0.00979428 0.00980489 0.0098155 0.00982611 0.00983672 0.00984734 0.00985795 0.00986856 0.00987917 0.00988978 0.00990039 0.00991101 0.00992162 0.00993223 0.00994284 0.00995345 0.00996406 0.00997468 0.00998529 0.0099959 0.0100065 0.0100171 0.0100277 0.0100383 0.010049 0.0100596 0.0100702 0.0100808 0.0100914 0.010102 0.0101126 0.0101232 0.0101339 0.0101445 0.0101551 0.0101657 0.0101763 0.0101869 0.0101975 0.0102081 0.0102187 0.0102294 0.01024 0.0102506 +-0.00242717 -0.00223547 -0.00181917 -0.00102131 8.3379E-05 0.00135616 0.00270859 0.00408571 0.00544171 0.00671945 0.0078216 0.00858142 0.00890128 0.00898012 0.00900165 0.00901389 0.00902475 0.0090354 0.00904602 0.00905664 0.00906726 0.00907788 0.00908849 0.00909911 0.00910973 0.00912035 0.00913097 0.00914158 0.0091522 0.00916282 0.00917344 0.00918406 0.00919467 0.00920529 0.00921591 0.00922653 0.00923715 0.00924776 0.00925838 0.009269 0.00927962 0.00929024 0.00930085 0.00931147 0.00932209 0.00933271 0.00934333 0.00935394 0.00936456 0.00937518 0.0093858 0.00939641 0.00940703 0.00941765 0.00942827 0.00943889 0.0094495 0.00946012 0.00947074 0.00948136 0.00949198 0.00950259 0.00951321 0.00952383 0.00953445 0.00954507 0.00955568 0.0095663 0.00957692 0.00958754 0.00959816 0.00960877 0.00961939 0.00963001 0.00964063 0.00965125 0.00966186 0.00967248 0.0096831 0.00969372 0.00970434 0.00971495 0.00972557 0.00973619 0.00974681 0.00975743 0.00976804 0.00977866 0.00978928 0.0097999 0.00981051 0.00982113 0.00983175 0.00984237 0.00985299 0.0098636 0.00987422 0.00988484 0.00989546 0.00990608 0.00991669 0.00992731 0.00993793 0.00994855 0.00995917 0.00996978 0.0099804 0.00999102 0.0100016 0.0100123 0.0100229 0.0100335 0.0100441 0.0100547 0.0100653 0.010076 0.0100866 0.0100972 0.0101078 0.0101184 0.0101291 0.0101397 0.0101503 0.0101609 0.0101715 0.0101821 0.0101928 0.0102034 0.010214 0.0102246 0.0102352 0.0102459 0.0102565 +-0.0024288 -0.00223686 -0.00182003 -0.0010216 8.3464E-05 0.0013565 0.00270913 0.00408648 0.00544276 0.00672094 0.00782388 0.00858501 0.00890599 0.00898518 0.00900678 0.00901904 0.0090299 0.00904056 0.00905119 0.00906182 0.00907244 0.00908306 0.00909369 0.00910431 0.00911494 0.00912556 0.00913619 0.00914681 0.00915743 0.00916806 0.00917868 0.00918931 0.00919993 0.00921055 0.00922118 0.0092318 0.00924243 0.00925305 0.00926368 0.0092743 0.00928492 0.00929555 0.00930617 0.0093168 0.00932742 0.00933805 0.00934867 0.00935929 0.00936992 0.00938054 0.00939117 0.00940179 0.00941242 0.00942304 0.00943366 0.00944429 0.00945491 0.00946554 0.00947616 0.00948679 0.00949741 0.00950803 0.00951866 0.00952928 0.00953991 0.00955053 0.00956116 0.00957178 0.0095824 0.00959303 0.00960365 0.00961428 0.0096249 0.00963553 0.00964615 0.00965677 0.0096674 0.00967802 0.00968865 0.00969927 0.0097099 0.00972052 0.00973114 0.00974177 0.00975239 0.00976302 0.00977364 0.00978427 0.00979489 0.00980551 0.00981614 0.00982676 0.00983739 0.00984801 0.00985863 0.00986926 0.00987988 0.00989051 0.00990113 0.00991176 0.00992238 0.009933 0.00994363 0.00995425 0.00996488 0.0099755 0.00998613 0.00999675 0.0100074 0.010018 0.0100286 0.0100392 0.0100499 0.0100605 0.0100711 0.0100817 0.0100924 0.010103 0.0101136 0.0101242 0.0101349 0.0101455 0.0101561 0.0101667 0.0101774 0.010188 0.0101986 0.0102092 0.0102199 0.0102305 0.0102411 0.0102517 0.0102624 +-0.00243043 -0.00223824 -0.00182089 -0.0010219 8.3549E-05 0.00135683 0.00270968 0.00408724 0.0054438 0.00672243 0.00782616 0.00858859 0.0089107 0.00899025 0.00901191 0.00902418 0.00903506 0.00904572 0.00905636 0.00906699 0.00907762 0.00908825 0.00909888 0.00910951 0.00912014 0.00913077 0.0091414 0.00915203 0.00916266 0.00917329 0.00918392 0.00919456 0.00920519 0.00921582 0.00922645 0.00923708 0.00924771 0.00925834 0.00926897 0.0092796 0.00929023 0.00930086 0.00931149 0.00932212 0.00933275 0.00934338 0.00935401 0.00936464 0.00937527 0.00938591 0.00939654 0.00940717 0.0094178 0.00942843 0.00943906 0.00944969 0.00946032 0.00947095 0.00948158 0.00949221 0.00950284 0.00951347 0.0095241 0.00953473 0.00954536 0.00955599 0.00956663 0.00957726 0.00958789 0.00959852 0.00960915 0.00961978 0.00963041 0.00964104 0.00965167 0.0096623 0.00967293 0.00968356 0.00969419 0.00970482 0.00971545 0.00972608 0.00973671 0.00974734 0.00975798 0.00976861 0.00977924 0.00978987 0.0098005 0.00981113 0.00982176 0.00983239 0.00984302 0.00985365 0.00986428 0.00987491 0.00988554 0.00989617 0.0099068 0.00991743 0.00992806 0.0099387 0.00994933 0.00995996 0.00997059 0.00998122 0.00999185 0.0100025 0.0100131 0.0100237 0.0100344 0.010045 0.0100556 0.0100663 0.0100769 0.0100875 0.0100982 0.0101088 0.0101194 0.01013 0.0101407 0.0101513 0.0101619 0.0101726 0.0101832 0.0101938 0.0102045 0.0102151 0.0102257 0.0102364 0.010247 0.0102576 0.0102682 +-0.00243205 -0.00223962 -0.00182174 -0.00102219 8.3634E-05 0.00135717 0.00271022 0.004088 0.00544484 0.00672392 0.00782843 0.00859217 0.0089154 0.00899531 0.00901704 0.00902933 0.00904021 0.00905088 0.00906152 0.00907216 0.0090828 0.00909343 0.00910407 0.00911471 0.00912534 0.00913598 0.00914662 0.00915725 0.00916789 0.00917853 0.00918916 0.0091998 0.00921044 0.00922108 0.00923171 0.00924235 0.00925299 0.00926362 0.00927426 0.0092849 0.00929553 0.00930617 0.00931681 0.00932744 0.00933808 0.00934872 0.00935935 0.00936999 0.00938063 0.00939127 0.0094019 0.00941254 0.00942318 0.00943381 0.00944445 0.00945509 0.00946572 0.00947636 0.009487 0.00949763 0.00950827 0.00951891 0.00952954 0.00954018 0.00955082 0.00956146 0.00957209 0.00958273 0.00959337 0.009604 0.00961464 0.00962528 0.00963591 0.00964655 0.00965719 0.00966782 0.00967846 0.0096891 0.00969974 0.00971037 0.00972101 0.00973165 0.00974228 0.00975292 0.00976356 0.00977419 0.00978483 0.00979547 0.0098061 0.00981674 0.00982738 0.00983801 0.00984865 0.00985929 0.00986993 0.00988056 0.0098912 0.00990184 0.00991247 0.00992311 0.00993375 0.00994438 0.00995502 0.00996566 0.00997629 0.00998693 0.00999757 0.0100082 0.0100188 0.0100295 0.0100401 0.0100508 0.0100614 0.010072 0.0100827 0.0100933 0.0101039 0.0101146 0.0101252 0.0101358 0.0101465 0.0101571 0.0101678 0.0101784 0.010189 0.0101997 0.0102103 0.0102209 0.0102316 0.0102422 0.0102529 0.0102635 0.0102741 +-0.00243368 -0.002241 -0.0018226 -0.00102248 8.37191E-05 0.00135751 0.00271076 0.00408876 0.00544589 0.0067254 0.0078307 0.00859574 0.0089201 0.00900036 0.00902217 0.00903447 0.00904536 0.00905604 0.00906668 0.00907733 0.00908797 0.00909861 0.00910926 0.0091199 0.00913054 0.00914119 0.00915183 0.00916247 0.00917312 0.00918376 0.0091944 0.00920505 0.00921569 0.00922633 0.00923698 0.00924762 0.00925826 0.00926891 0.00927955 0.00929019 0.00930084 0.00931148 0.00932212 0.00933276 0.00934341 0.00935405 0.00936469 0.00937534 0.00938598 0.00939662 0.00940727 0.00941791 0.00942855 0.0094392 0.00944984 0.00946048 0.00947113 0.00948177 0.00949241 0.00950306 0.0095137 0.00952434 0.00953499 0.00954563 0.00955627 0.00956691 0.00957756 0.0095882 0.00959884 0.00960949 0.00962013 0.00963077 0.00964142 0.00965206 0.0096627 0.00967335 0.00968399 0.00969463 0.00970528 0.00971592 0.00972656 0.00973721 0.00974785 0.00975849 0.00976914 0.00977978 0.00979042 0.00980106 0.00981171 0.00982235 0.00983299 0.00984364 0.00985428 0.00986492 0.00987557 0.00988621 0.00989685 0.0099075 0.00991814 0.00992878 0.00993943 0.00995007 0.00996071 0.00997136 0.009982 0.00999264 0.0100033 0.0100139 0.0100246 0.0100352 0.0100459 0.0100565 0.0100671 0.0100778 0.0100884 0.0100991 0.0101097 0.0101204 0.010131 0.0101416 0.0101523 0.0101629 0.0101736 0.0101842 0.0101949 0.0102055 0.0102161 0.0102268 0.0102374 0.0102481 0.0102587 0.0102694 0.01028 +-0.00243531 -0.00224238 -0.00182346 -0.00102277 8.38041E-05 0.00135784 0.00271131 0.00408951 0.00544693 0.00672688 0.00783297 0.0085993 0.00892479 0.00900542 0.00902729 0.00903961 0.0090505 0.00906119 0.00907185 0.0090825 0.00909314 0.00910379 0.00911444 0.00912509 0.00913574 0.00914639 0.00915704 0.00916769 0.00917834 0.00918899 0.00919964 0.00921029 0.00922094 0.00923159 0.00924224 0.00925289 0.00926354 0.00927419 0.00928484 0.00929549 0.00930613 0.00931678 0.00932743 0.00933808 0.00934873 0.00935938 0.00937003 0.00938068 0.00939133 0.00940198 0.00941263 0.00942328 0.00943393 0.00944458 0.00945523 0.00946588 0.00947653 0.00948718 0.00949783 0.00950848 0.00951912 0.00952977 0.00954042 0.00955107 0.00956172 0.00957237 0.00958302 0.00959367 0.00960432 0.00961497 0.00962562 0.00963627 0.00964692 0.00965757 0.00966822 0.00967887 0.00968952 0.00970017 0.00971082 0.00972146 0.00973211 0.00974276 0.00975341 0.00976406 0.00977471 0.00978536 0.00979601 0.00980666 0.00981731 0.00982796 0.00983861 0.00984926 0.00985991 0.00987056 0.00988121 0.00989186 0.00990251 0.00991316 0.00992381 0.00993445 0.0099451 0.00995575 0.0099664 0.00997705 0.0099877 0.00999835 0.010009 0.0100197 0.0100303 0.0100409 0.0100516 0.0100622 0.0100729 0.0100835 0.0100942 0.0101048 0.0101155 0.0101261 0.0101368 0.0101474 0.0101581 0.0101687 0.0101794 0.01019 0.0102007 0.0102113 0.010222 0.0102326 0.0102433 0.0102539 0.0102646 0.0102752 0.0102859 +-0.00243693 -0.00224376 -0.00182431 -0.00102306 8.38891E-05 0.00135818 0.00271185 0.00409027 0.00544797 0.00672836 0.00783523 0.00860286 0.00892949 0.00901047 0.00903242 0.00904475 0.00905565 0.00906634 0.009077 0.00908766 0.00909832 0.00910897 0.00911963 0.00913028 0.00914094 0.0091516 0.00916225 0.00917291 0.00918356 0.00919422 0.00920487 0.00921553 0.00922619 0.00923684 0.0092475 0.00925815 0.00926881 0.00927947 0.00929012 0.00930078 0.00931143 0.00932209 0.00933274 0.0093434 0.00935406 0.00936471 0.00937537 0.00938602 0.00939668 0.00940733 0.00941799 0.00942865 0.0094393 0.00944996 0.00946061 0.00947127 0.00948193 0.00949258 0.00950324 0.00951389 0.00952455 0.0095352 0.00954586 0.00955652 0.00956717 0.00957783 0.00958848 0.00959914 0.00960979 0.00962045 0.00963111 0.00964176 0.00965242 0.00966307 0.00967373 0.00968439 0.00969504 0.0097057 0.00971635 0.00972701 0.00973766 0.00974832 0.00975898 0.00976963 0.00978029 0.00979094 0.0098016 0.00981225 0.00982291 0.00983357 0.00984422 0.00985488 0.00986553 0.00987619 0.00988685 0.0098975 0.00990816 0.00991881 0.00992947 0.00994012 0.00995078 0.00996144 0.00997209 0.00998275 0.0099934 0.0100041 0.0100147 0.0100254 0.010036 0.0100467 0.0100573 0.010068 0.0100786 0.0100893 0.0101 0.0101106 0.0101213 0.0101319 0.0101426 0.0101532 0.0101639 0.0101746 0.0101852 0.0101959 0.0102065 0.0102172 0.0102278 0.0102385 0.0102491 0.0102598 0.0102705 0.0102811 0.0102918 +-0.00243856 -0.00224513 -0.00182517 -0.00102336 8.39742E-05 0.00135851 0.00271239 0.00409103 0.005449 0.00672984 0.00783749 0.00860642 0.00893417 0.00901553 0.00903754 0.00904989 0.0090608 0.00907149 0.00908216 0.00909282 0.00910349 0.00911415 0.00912481 0.00913547 0.00914613 0.0091568 0.00916746 0.00917812 0.00918878 0.00919945 0.00921011 0.00922077 0.00923143 0.00924209 0.00925276 0.00926342 0.00927408 0.00928474 0.0092954 0.00930607 0.00931673 0.00932739 0.00933805 0.00934871 0.00935938 0.00937004 0.0093807 0.00939136 0.00940202 0.00941269 0.00942335 0.00943401 0.00944467 0.00945534 0.009466 0.00947666 0.00948732 0.00949798 0.00950865 0.00951931 0.00952997 0.00954063 0.00955129 0.00956196 0.00957262 0.00958328 0.00959394 0.0096046 0.00961527 0.00962593 0.00963659 0.00964725 0.00965792 0.00966858 0.00967924 0.0096899 0.00970056 0.00971123 0.00972189 0.00973255 0.00974321 0.00975387 0.00976454 0.0097752 0.00978586 0.00979652 0.00980718 0.00981785 0.00982851 0.00983917 0.00984983 0.00986049 0.00987116 0.00988182 0.00989248 0.00990314 0.00991381 0.00992447 0.00993513 0.00994579 0.00995645 0.00996712 0.00997778 0.00998844 0.0099991 0.0100098 0.0100204 0.0100311 0.0100418 0.0100524 0.0100631 0.0100737 0.0100844 0.0100951 0.0101057 0.0101164 0.010127 0.0101377 0.0101484 0.010159 0.0101697 0.0101804 0.010191 0.0102017 0.0102123 0.010223 0.0102337 0.0102443 0.010255 0.0102657 0.0102763 0.010287 0.0102976 +-0.00244018 -0.00224651 -0.00182602 -0.00102365 8.40593E-05 0.00135885 0.00271293 0.00409178 0.00545004 0.00673131 0.00783974 0.00860996 0.00893886 0.00902058 0.00904266 0.00905502 0.00906594 0.00907664 0.00908732 0.00909799 0.00910865 0.00911932 0.00912999 0.00914066 0.00915133 0.009162 0.00917266 0.00918333 0.009194 0.00920467 0.00921534 0.00922601 0.00923667 0.00924734 0.00925801 0.00926868 0.00927935 0.00929002 0.00930069 0.00931135 0.00932202 0.00933269 0.00934336 0.00935403 0.0093647 0.00937536 0.00938603 0.0093967 0.00940737 0.00941804 0.00942871 0.00943937 0.00945004 0.00946071 0.00947138 0.00948205 0.00949272 0.00950338 0.00951405 0.00952472 0.00953539 0.00954606 0.00955673 0.0095674 0.00957806 0.00958873 0.0095994 0.00961007 0.00962074 0.00963141 0.00964207 0.00965274 0.00966341 0.00967408 0.00968475 0.00969542 0.00970608 0.00971675 0.00972742 0.00973809 0.00974876 0.00975943 0.00977009 0.00978076 0.00979143 0.0098021 0.00981277 0.00982344 0.0098341 0.00984477 0.00985544 0.00986611 0.00987678 0.00988745 0.00989812 0.00990878 0.00991945 0.00993012 0.00994079 0.00995146 0.00996213 0.00997279 0.00998346 0.00999413 0.0100048 0.0100155 0.0100261 0.0100368 0.0100475 0.0100581 0.0100688 0.0100795 0.0100901 0.0101008 0.0101115 0.0101222 0.0101328 0.0101435 0.0101542 0.0101648 0.0101755 0.0101862 0.0101968 0.0102075 0.0102182 0.0102288 0.0102395 0.0102502 0.0102608 0.0102715 0.0102822 0.0102928 0.0103035 +-0.00244181 -0.00224789 -0.00182688 -0.00102394 8.41443E-05 0.00135918 0.00271347 0.00409254 0.00545107 0.00673278 0.007842 0.00861351 0.00894354 0.00902562 0.00904777 0.00906015 0.00907108 0.00908179 0.00909247 0.00910315 0.00911382 0.00912449 0.00913517 0.00914584 0.00915652 0.00916719 0.00917787 0.00918854 0.00919922 0.00920989 0.00922057 0.00923124 0.00924192 0.00925259 0.00926327 0.00927394 0.00928462 0.00929529 0.00930596 0.00931664 0.00932731 0.00933799 0.00934866 0.00935934 0.00937001 0.00938069 0.00939136 0.00940204 0.00941271 0.00942339 0.00943406 0.00944474 0.00945541 0.00946608 0.00947676 0.00948743 0.00949811 0.00950878 0.00951946 0.00953013 0.00954081 0.00955148 0.00956216 0.00957283 0.00958351 0.00959418 0.00960486 0.00961553 0.00962621 0.00963688 0.00964755 0.00965823 0.0096689 0.00967958 0.00969025 0.00970093 0.0097116 0.00972228 0.00973295 0.00974363 0.0097543 0.00976498 0.00977565 0.00978633 0.009797 0.00980767 0.00981835 0.00982902 0.0098397 0.00985037 0.00986105 0.00987172 0.0098824 0.00989307 0.00990375 0.00991442 0.0099251 0.00993577 0.00994645 0.00995712 0.0099678 0.00997847 0.00998914 0.00999982 0.0100105 0.0100212 0.0100318 0.0100425 0.0100532 0.0100639 0.0100745 0.0100852 0.0100959 0.0101066 0.0101172 0.0101279 0.0101386 0.0101493 0.0101599 0.0101706 0.0101813 0.010192 0.0102026 0.0102133 0.010224 0.0102347 0.0102453 0.010256 0.0102667 0.0102774 0.010288 0.0102987 0.0103094 +-0.00244343 -0.00224926 -0.00182773 -0.00102423 8.42294E-05 0.00135952 0.00271401 0.00409329 0.00545211 0.00673425 0.00784424 0.00861704 0.00894821 0.00903067 0.00905289 0.00906528 0.00907622 0.00908694 0.00909762 0.0091083 0.00911898 0.00912967 0.00914035 0.00915103 0.00916171 0.00917239 0.00918307 0.00919375 0.00920443 0.00921511 0.00922579 0.00923648 0.00924716 0.00925784 0.00926852 0.0092792 0.00928988 0.00930056 0.00931124 0.00932192 0.0093326 0.00934329 0.00935397 0.00936465 0.00937533 0.00938601 0.00939669 0.00940737 0.00941805 0.00942873 0.00943941 0.00945009 0.00946078 0.00947146 0.00948214 0.00949282 0.0095035 0.00951418 0.00952486 0.00953554 0.00954622 0.0095569 0.00956759 0.00957827 0.00958895 0.00959963 0.00961031 0.00962099 0.00963167 0.00964235 0.00965303 0.00966371 0.0096744 0.00968508 0.00969576 0.00970644 0.00971712 0.0097278 0.00973848 0.00974916 0.00975984 0.00977052 0.00978121 0.00979189 0.00980257 0.00981325 0.00982393 0.00983461 0.00984529 0.00985597 0.00986665 0.00987733 0.00988802 0.0098987 0.00990938 0.00992006 0.00993074 0.00994142 0.0099521 0.00996278 0.00997346 0.00998414 0.00999482 0.0100055 0.0100162 0.0100269 0.0100375 0.0100482 0.0100589 0.0100696 0.0100803 0.010091 0.0101016 0.0101123 0.010123 0.0101337 0.0101444 0.010155 0.0101657 0.0101764 0.0101871 0.0101978 0.0102084 0.0102191 0.0102298 0.0102405 0.0102512 0.0102618 0.0102725 0.0102832 0.0102939 0.0103046 0.0103153 +-0.00244506 -0.00225064 -0.00182858 -0.00102452 8.43145E-05 0.00135985 0.00271455 0.00409405 0.00545314 0.00673572 0.00784649 0.00862058 0.00895288 0.00903571 0.009058 0.00907041 0.00908135 0.00909208 0.00910277 0.00911346 0.00912415 0.00913483 0.00914552 0.00915621 0.0091669 0.00917758 0.00918827 0.00919896 0.00920964 0.00922033 0.00923102 0.00924171 0.00925239 0.00926308 0.00927377 0.00928446 0.00929514 0.00930583 0.00931652 0.0093272 0.00933789 0.00934858 0.00935927 0.00936995 0.00938064 0.00939133 0.00940202 0.0094127 0.00942339 0.00943408 0.00944476 0.00945545 0.00946614 0.00947683 0.00948751 0.0094982 0.00950889 0.00951958 0.00953026 0.00954095 0.00955164 0.00956232 0.00957301 0.0095837 0.00959439 0.00960507 0.00961576 0.00962645 0.00963714 0.00964782 0.00965851 0.0096692 0.00967988 0.00969057 0.00970126 0.00971195 0.00972263 0.00973332 0.00974401 0.0097547 0.00976538 0.00977607 0.00978676 0.00979744 0.00980813 0.00981882 0.00982951 0.00984019 0.00985088 0.00986157 0.00987226 0.00988294 0.00989363 0.00990432 0.009915 0.00992569 0.00993638 0.00994707 0.00995775 0.00996844 0.00997913 0.00998982 0.0100005 0.0100112 0.0100219 0.0100326 0.0100433 0.0100539 0.0100646 0.0100753 0.010086 0.0100967 0.0101074 0.0101181 0.0101288 0.0101394 0.0101501 0.0101608 0.0101715 0.0101822 0.0101929 0.0102036 0.0102142 0.0102249 0.0102356 0.0102463 0.010257 0.0102677 0.0102784 0.0102891 0.0102997 0.0103104 0.0103211 +-0.00244668 -0.00225201 -0.00182943 -0.0010248 8.43996E-05 0.00136019 0.00271509 0.0040948 0.00545417 0.00673719 0.00784873 0.0086241 0.00895755 0.00904075 0.00906311 0.00907554 0.00908649 0.00909722 0.00910792 0.00911861 0.00912931 0.00914 0.00915069 0.00916139 0.00917208 0.00918277 0.00919347 0.00920416 0.00921486 0.00922555 0.00923624 0.00924694 0.00925763 0.00926832 0.00927902 0.00928971 0.0093004 0.0093111 0.00932179 0.00933248 0.00934318 0.00935387 0.00936457 0.00937526 0.00938595 0.00939665 0.00940734 0.00941803 0.00942873 0.00943942 0.00945011 0.00946081 0.0094715 0.00948219 0.00949289 0.00950358 0.00951428 0.00952497 0.00953566 0.00954636 0.00955705 0.00956774 0.00957844 0.00958913 0.00959982 0.00961052 0.00962121 0.0096319 0.0096426 0.00965329 0.00966399 0.00967468 0.00968537 0.00969607 0.00970676 0.00971745 0.00972815 0.00973884 0.00974953 0.00976023 0.00977092 0.00978161 0.00979231 0.009803 0.0098137 0.00982439 0.00983508 0.00984578 0.00985647 0.00986716 0.00987786 0.00988855 0.00989924 0.00990994 0.00992063 0.00993132 0.00994202 0.00995271 0.00996341 0.0099741 0.00998479 0.00999549 0.0100062 0.0100169 0.0100276 0.0100383 0.010049 0.0100596 0.0100703 0.010081 0.0100917 0.0101024 0.0101131 0.0101238 0.0101345 0.0101452 0.0101559 0.0101666 0.0101773 0.010188 0.0101987 0.0102094 0.0102201 0.0102307 0.0102414 0.0102521 0.0102628 0.0102735 0.0102842 0.0102949 0.0103056 0.0103163 0.010327 +-0.0024483 -0.00225339 -0.00183028 -0.00102509 8.44847E-05 0.00136052 0.00271563 0.00409555 0.0054552 0.00673865 0.00785096 0.00862763 0.00896222 0.00904579 0.00906822 0.00908067 0.00909162 0.00910236 0.00911307 0.00912377 0.00913447 0.00914517 0.00915587 0.00916657 0.00917727 0.00918796 0.00919866 0.00920936 0.00922006 0.00923076 0.00924146 0.00925216 0.00926286 0.00927356 0.00928426 0.00929496 0.00930566 0.00931636 0.00932706 0.00933776 0.00934846 0.00935916 0.00936986 0.00938056 0.00939126 0.00940196 0.00941266 0.00942336 0.00943406 0.00944476 0.00945546 0.00946616 0.00947686 0.00948756 0.00949826 0.00950896 0.00951966 0.00953036 0.00954106 0.00955176 0.00956246 0.00957316 0.00958386 0.00959456 0.00960526 0.00961596 0.00962666 0.00963736 0.00964806 0.00965876 0.00966946 0.00968016 0.00969086 0.00970156 0.00971226 0.00972296 0.00973366 0.00974436 0.00975506 0.00976576 0.00977646 0.00978716 0.00979786 0.00980856 0.00981926 0.00982996 0.00984066 0.00985136 0.00986206 0.00987276 0.00988346 0.00989416 0.00990486 0.00991555 0.00992625 0.00993695 0.00994765 0.00995835 0.00996905 0.00997975 0.00999045 0.0100012 0.0100119 0.0100226 0.0100333 0.010044 0.0100547 0.0100654 0.0100761 0.0100868 0.0100975 0.0101082 0.0101189 0.0101296 0.0101403 0.010151 0.0101617 0.0101724 0.0101831 0.0101938 0.0102045 0.0102152 0.0102259 0.0102366 0.0102473 0.010258 0.0102687 0.0102793 0.01029 0.0103007 0.0103114 0.0103221 0.0103328 +-0.00244992 -0.00225476 -0.00183113 -0.00102538 8.45698E-05 0.00136086 0.00271617 0.0040963 0.00545623 0.00674012 0.0078532 0.00863114 0.00896688 0.00905083 0.00907333 0.00908579 0.00909675 0.0091075 0.00911821 0.00912892 0.00913962 0.00915033 0.00916103 0.00917174 0.00918245 0.00919315 0.00920386 0.00921457 0.00922527 0.00923598 0.00924668 0.00925739 0.0092681 0.0092788 0.00928951 0.00930021 0.00931092 0.00932163 0.00933233 0.00934304 0.00935375 0.00936445 0.00937516 0.00938586 0.00939657 0.00940728 0.00941798 0.00942869 0.00943939 0.0094501 0.00946081 0.00947151 0.00948222 0.00949292 0.00950363 0.00951434 0.00952504 0.00953575 0.00954646 0.00955716 0.00956787 0.00957857 0.00958928 0.00959999 0.00961069 0.0096214 0.0096321 0.00964281 0.00965352 0.00966422 0.00967493 0.00968564 0.00969634 0.00970705 0.00971775 0.00972846 0.00973917 0.00974987 0.00976058 0.00977128 0.00978199 0.0097927 0.0098034 0.00981411 0.00982482 0.00983552 0.00984623 0.00985693 0.00986764 0.00987835 0.00988905 0.00989976 0.00991046 0.00992117 0.00993188 0.00994258 0.00995329 0.009964 0.0099747 0.00998541 0.00999611 0.0100068 0.0100175 0.0100282 0.0100389 0.0100496 0.0100604 0.0100711 0.0100818 0.0100925 0.0101032 0.0101139 0.0101246 0.0101353 0.010146 0.0101567 0.0101674 0.0101781 0.0101888 0.0101995 0.0102102 0.0102209 0.0102316 0.0102424 0.0102531 0.0102638 0.0102745 0.0102852 0.0102959 0.0103066 0.0103173 0.010328 0.0103387 +-0.00245154 -0.00225613 -0.00183198 -0.00102567 8.4655E-05 0.00136119 0.0027167 0.00409705 0.00545726 0.00674158 0.00785543 0.00863465 0.00897154 0.00905586 0.00907843 0.00909091 0.00910188 0.00911263 0.00912335 0.00913406 0.00914478 0.00915549 0.0091662 0.00917691 0.00918763 0.00919834 0.00920905 0.00921976 0.00923048 0.00924119 0.0092519 0.00926261 0.00927333 0.00928404 0.00929475 0.00930546 0.00931618 0.00932689 0.0093376 0.00934831 0.00935903 0.00936974 0.00938045 0.00939116 0.00940188 0.00941259 0.0094233 0.00943401 0.00944473 0.00945544 0.00946615 0.00947686 0.00948757 0.00949829 0.009509 0.00951971 0.00953042 0.00954114 0.00955185 0.00956256 0.00957327 0.00958399 0.0095947 0.00960541 0.00961612 0.00962684 0.00963755 0.00964826 0.00965897 0.00966969 0.0096804 0.00969111 0.00970182 0.00971254 0.00972325 0.00973396 0.00974467 0.00975539 0.0097661 0.00977681 0.00978752 0.00979823 0.00980895 0.00981966 0.00983037 0.00984108 0.0098518 0.00986251 0.00987322 0.00988393 0.00989465 0.00990536 0.00991607 0.00992678 0.0099375 0.00994821 0.00995892 0.00996963 0.00998035 0.00999106 0.0100018 0.0100125 0.0100232 0.0100339 0.0100446 0.0100553 0.010066 0.0100768 0.0100875 0.0100982 0.0101089 0.0101196 0.0101303 0.010141 0.0101517 0.0101625 0.0101732 0.0101839 0.0101946 0.0102053 0.010216 0.0102267 0.0102374 0.0102482 0.0102589 0.0102696 0.0102803 0.010291 0.0103017 0.0103124 0.0103231 0.0103339 0.0103446 +-0.00245316 -0.0022575 -0.00183283 -0.00102596 8.47401E-05 0.00136152 0.00271724 0.0040978 0.00545829 0.00674303 0.00785765 0.00863816 0.00897619 0.00906089 0.00908354 0.00909603 0.00910701 0.00911777 0.00912849 0.00913921 0.00914993 0.00916065 0.00917137 0.00918209 0.00919281 0.00920352 0.00921424 0.00922496 0.00923568 0.0092464 0.00925712 0.00926784 0.00927855 0.00928927 0.00929999 0.00931071 0.00932143 0.00933215 0.00934287 0.00935359 0.0093643 0.00937502 0.00938574 0.00939646 0.00940718 0.0094179 0.00942862 0.00943934 0.00945005 0.00946077 0.00947149 0.00948221 0.00949293 0.00950365 0.00951437 0.00952508 0.0095358 0.00954652 0.00955724 0.00956796 0.00957868 0.0095894 0.00960012 0.00961083 0.00962155 0.00963227 0.00964299 0.00965371 0.00966443 0.00967515 0.00968587 0.00969658 0.0097073 0.00971802 0.00972874 0.00973946 0.00975018 0.0097609 0.00977162 0.00978233 0.00979305 0.00980377 0.00981449 0.00982521 0.00983593 0.00984665 0.00985736 0.00986808 0.0098788 0.00988952 0.00990024 0.00991096 0.00992168 0.0099324 0.00994311 0.00995383 0.00996455 0.00997527 0.00998599 0.00999671 0.0100074 0.0100181 0.0100289 0.0100396 0.0100503 0.010061 0.0100717 0.0100825 0.0100932 0.0101039 0.0101146 0.0101253 0.0101361 0.0101468 0.0101575 0.0101682 0.0101789 0.0101896 0.0102004 0.0102111 0.0102218 0.0102325 0.0102432 0.010254 0.0102647 0.0102754 0.0102861 0.0102968 0.0103076 0.0103183 0.010329 0.0103397 0.0103504 +-0.00245479 -0.00225887 -0.00183367 -0.00102624 8.48253E-05 0.00136186 0.00271778 0.00409855 0.00545931 0.00674449 0.00785987 0.00864166 0.00898084 0.00906592 0.00908864 0.00910115 0.00911214 0.0091229 0.00913363 0.00914436 0.00915508 0.00916581 0.00917653 0.00918726 0.00919798 0.00920871 0.00921943 0.00923016 0.00924088 0.00925161 0.00926233 0.00927306 0.00928378 0.00929451 0.00930523 0.00931596 0.00932668 0.00933741 0.00934813 0.00935886 0.00936958 0.00938031 0.00939103 0.00940176 0.00941248 0.00942321 0.00943393 0.00944466 0.00945538 0.00946611 0.00947683 0.00948756 0.00949828 0.00950901 0.00951973 0.00953046 0.00954118 0.00955191 0.00956263 0.00957336 0.00958408 0.00959481 0.00960553 0.00961626 0.00962698 0.00963771 0.00964843 0.00965916 0.00966988 0.00968061 0.00969133 0.00970206 0.00971278 0.00972351 0.00973423 0.00974496 0.00975568 0.00976641 0.00977713 0.00978786 0.00979858 0.00980931 0.00982003 0.00983076 0.00984148 0.00985221 0.00986293 0.00987366 0.00988438 0.00989511 0.00990583 0.00991656 0.00992728 0.00993801 0.00994873 0.00995946 0.00997018 0.00998091 0.00999163 0.0100024 0.0100131 0.0100238 0.0100345 0.0100453 0.010056 0.0100667 0.0100774 0.0100882 0.0100989 0.0101096 0.0101203 0.0101311 0.0101418 0.0101525 0.0101632 0.010174 0.0101847 0.0101954 0.0102061 0.0102169 0.0102276 0.0102383 0.010249 0.0102598 0.0102705 0.0102812 0.0102919 0.0103027 0.0103134 0.0103241 0.0103348 0.0103456 0.0103563 +-0.0024564 -0.00226024 -0.00183452 -0.00102653 8.49104E-05 0.00136219 0.00271831 0.0040993 0.00546033 0.00674594 0.00786209 0.00864515 0.00898549 0.00907095 0.00909374 0.00910627 0.00911726 0.00912803 0.00913877 0.0091495 0.00916023 0.00917096 0.00918169 0.00919242 0.00920316 0.00921389 0.00922462 0.00923535 0.00924608 0.00925681 0.00926754 0.00927827 0.00928901 0.00929974 0.00931047 0.0093212 0.00933193 0.00934266 0.00935339 0.00936412 0.00937486 0.00938559 0.00939632 0.00940705 0.00941778 0.00942851 0.00943924 0.00944997 0.00946071 0.00947144 0.00948217 0.0094929 0.00950363 0.00951436 0.00952509 0.00953582 0.00954656 0.00955729 0.00956802 0.00957875 0.00958948 0.00960021 0.00961094 0.00962167 0.00963241 0.00964314 0.00965387 0.0096646 0.00967533 0.00968606 0.00969679 0.00970753 0.00971826 0.00972899 0.00973972 0.00975045 0.00976118 0.00977191 0.00978264 0.00979338 0.00980411 0.00981484 0.00982557 0.0098363 0.00984703 0.00985776 0.00986849 0.00987923 0.00988996 0.00990069 0.00991142 0.00992215 0.00993288 0.00994361 0.00995434 0.00996508 0.00997581 0.00998654 0.00999727 0.010008 0.0100187 0.0100295 0.0100402 0.0100509 0.0100617 0.0100724 0.0100831 0.0100939 0.0101046 0.0101153 0.010126 0.0101368 0.0101475 0.0101582 0.010169 0.0101797 0.0101904 0.0102012 0.0102119 0.0102226 0.0102334 0.0102441 0.0102548 0.0102656 0.0102763 0.010287 0.0102977 0.0103085 0.0103192 0.0103299 0.0103407 0.0103514 0.0103621 +-0.00245802 -0.00226161 -0.00183536 -0.00102682 8.49956E-05 0.00136252 0.00271885 0.00410005 0.00546136 0.00674739 0.0078643 0.00864864 0.00899013 0.00907597 0.00909884 0.00911138 0.00912238 0.00913316 0.0091439 0.00915464 0.00916538 0.00917612 0.00918685 0.00919759 0.00920833 0.00921907 0.0092298 0.00924054 0.00925128 0.00926202 0.00927275 0.00928349 0.00929423 0.00930497 0.0093157 0.00932644 0.00933718 0.00934792 0.00935865 0.00936939 0.00938013 0.00939087 0.0094016 0.00941234 0.00942308 0.00943382 0.00944455 0.00945529 0.00946603 0.00947677 0.0094875 0.00949824 0.00950898 0.00951972 0.00953045 0.00954119 0.00955193 0.00956267 0.0095734 0.00958414 0.00959488 0.00960562 0.00961635 0.00962709 0.00963783 0.00964857 0.0096593 0.00967004 0.00968078 0.00969152 0.00970225 0.00971299 0.00972373 0.00973447 0.00974521 0.00975594 0.00976668 0.00977742 0.00978816 0.00979889 0.00980963 0.00982037 0.00983111 0.00984184 0.00985258 0.00986332 0.00987406 0.00988479 0.00989553 0.00990627 0.00991701 0.00992774 0.00993848 0.00994922 0.00995996 0.00997069 0.00998143 0.00999217 0.0100029 0.0100136 0.0100244 0.0100351 0.0100459 0.0100566 0.0100673 0.0100781 0.0100888 0.0100995 0.0101103 0.010121 0.0101318 0.0101425 0.0101532 0.010164 0.0101747 0.0101854 0.0101962 0.0102069 0.0102177 0.0102284 0.0102391 0.0102499 0.0102606 0.0102713 0.0102821 0.0102928 0.0103036 0.0103143 0.010325 0.0103358 0.0103465 0.0103572 0.010368 +-0.00245964 -0.00226298 -0.00183621 -0.0010271 8.50807E-05 0.00136285 0.00271938 0.0041008 0.00546238 0.00674884 0.00786652 0.00865213 0.00899477 0.009081 0.00910393 0.00911649 0.0091275 0.00913829 0.00914904 0.00915978 0.00917052 0.00918127 0.00919201 0.00920276 0.0092135 0.00922424 0.00923499 0.00924573 0.00925647 0.00926722 0.00927796 0.00928871 0.00929945 0.00931019 0.00932094 0.00933168 0.00934242 0.00935317 0.00936391 0.00937466 0.0093854 0.00939614 0.00940689 0.00941763 0.00942838 0.00943912 0.00944986 0.00946061 0.00947135 0.00948209 0.00949284 0.00950358 0.00951433 0.00952507 0.00953581 0.00954656 0.0095573 0.00956804 0.00957879 0.00958953 0.00960028 0.00961102 0.00962176 0.00963251 0.00964325 0.009654 0.00966474 0.00967548 0.00968623 0.00969697 0.00970771 0.00971846 0.0097292 0.00973995 0.00975069 0.00976143 0.00977218 0.00978292 0.00979366 0.00980441 0.00981515 0.0098259 0.00983664 0.00984738 0.00985813 0.00986887 0.00987962 0.00989036 0.0099011 0.00991185 0.00992259 0.00993333 0.00994408 0.00995482 0.00996557 0.00997631 0.00998705 0.0099978 0.0100085 0.0100193 0.01003 0.0100408 0.0100515 0.0100623 0.010073 0.0100837 0.0100945 0.0101052 0.010116 0.0101267 0.0101375 0.0101482 0.010159 0.0101697 0.0101804 0.0101912 0.0102019 0.0102127 0.0102234 0.0102342 0.0102449 0.0102556 0.0102664 0.0102771 0.0102879 0.0102986 0.0103094 0.0103201 0.0103309 0.0103416 0.0103523 0.0103631 0.0103738 +-0.00246126 -0.00226435 -0.00183705 -0.00102739 8.51659E-05 0.00136319 0.00271992 0.00410154 0.0054634 0.00675029 0.00786872 0.0086556 0.0089994 0.00908602 0.00910903 0.0091216 0.00913262 0.00914341 0.00915417 0.00916492 0.00917567 0.00918642 0.00919717 0.00920792 0.00921867 0.00922942 0.00924017 0.00925092 0.00926167 0.00927242 0.00928317 0.00929392 0.00930467 0.00931542 0.00932617 0.00933692 0.00934767 0.00935842 0.00936917 0.00937992 0.00939067 0.00940142 0.00941217 0.00942292 0.00943367 0.00944442 0.00945517 0.00946592 0.00947667 0.00948742 0.00949817 0.00950892 0.00951967 0.00953042 0.00954117 0.00955192 0.00956267 0.00957342 0.00958417 0.00959492 0.00960567 0.00961642 0.00962717 0.00963792 0.00964867 0.00965942 0.00967017 0.00968092 0.00969167 0.00970242 0.00971317 0.00972392 0.00973467 0.00974542 0.00975617 0.00976692 0.00977767 0.00978842 0.00979917 0.00980992 0.00982067 0.00983142 0.00984217 0.00985292 0.00986367 0.00987442 0.00988517 0.00989592 0.00990667 0.00991742 0.00992817 0.00993892 0.00994967 0.00996042 0.00997117 0.00998192 0.00999267 0.0100034 0.0100142 0.0100249 0.0100357 0.0100464 0.0100572 0.0100679 0.0100787 0.0100894 0.0101002 0.0101109 0.0101217 0.0101324 0.0101432 0.0101539 0.0101647 0.0101754 0.0101862 0.0101969 0.0102077 0.0102184 0.0102292 0.0102399 0.0102507 0.0102614 0.0102722 0.0102829 0.0102937 0.0103044 0.0103152 0.0103259 0.0103367 0.0103474 0.0103582 0.0103689 0.0103797 +-0.00246288 -0.00226572 -0.00183789 -0.00102767 8.52511E-05 0.00136352 0.00272045 0.00410229 0.00546442 0.00675174 0.00787093 0.00865908 0.00900403 0.00909104 0.00911412 0.00912671 0.00913774 0.00914853 0.0091593 0.00917005 0.00918081 0.00919157 0.00920232 0.00921308 0.00922384 0.00923459 0.00924535 0.0092561 0.00926686 0.00927762 0.00928837 0.00929913 0.00930989 0.00932064 0.0093314 0.00934215 0.00935291 0.00936367 0.00937442 0.00938518 0.00939594 0.00940669 0.00941745 0.00942821 0.00943896 0.00944972 0.00946047 0.00947123 0.00948199 0.00949274 0.0095035 0.00951426 0.00952501 0.00953577 0.00954653 0.00955728 0.00956804 0.00957879 0.00958955 0.00960031 0.00961106 0.00962182 0.00963258 0.00964333 0.00965409 0.00966485 0.0096756 0.00968636 0.00969711 0.00970787 0.00971863 0.00972938 0.00974014 0.0097509 0.00976165 0.00977241 0.00978317 0.00979392 0.00980468 0.00981543 0.00982619 0.00983695 0.0098477 0.00985846 0.00986922 0.00987997 0.00989073 0.00990148 0.00991224 0.009923 0.00993375 0.00994451 0.00995527 0.00996602 0.00997678 0.00998754 0.00999829 0.010009 0.0100198 0.0100306 0.0100413 0.0100521 0.0100628 0.0100736 0.0100843 0.0100951 0.0101059 0.0101166 0.0101274 0.0101381 0.0101489 0.0101596 0.0101704 0.0101811 0.0101919 0.0102027 0.0102134 0.0102242 0.0102349 0.0102457 0.0102564 0.0102672 0.010278 0.0102887 0.0102995 0.0103102 0.010321 0.0103317 0.0103425 0.0103533 0.010364 0.0103748 0.0103855 +-0.0024645 -0.00226708 -0.00183874 -0.00102796 8.53363E-05 0.00136385 0.00272098 0.00410303 0.00546544 0.00675318 0.00787313 0.00866254 0.00900866 0.00909605 0.00911921 0.00913182 0.00914285 0.00915366 0.00916442 0.00917519 0.00918595 0.00919671 0.00920747 0.00921824 0.009229 0.00923976 0.00925053 0.00926129 0.00927205 0.00928281 0.00929358 0.00930434 0.0093151 0.00932586 0.00933663 0.00934739 0.00935815 0.00936891 0.00937968 0.00939044 0.0094012 0.00941196 0.00942273 0.00943349 0.00944425 0.00945502 0.00946578 0.00947654 0.0094873 0.00949807 0.00950883 0.00951959 0.00953035 0.00954112 0.00955188 0.00956264 0.0095734 0.00958417 0.00959493 0.00960569 0.00961645 0.00962722 0.00963798 0.00964874 0.0096595 0.00967027 0.00968103 0.00969179 0.00970256 0.00971332 0.00972408 0.00973484 0.00974561 0.00975637 0.00976713 0.00977789 0.00978866 0.00979942 0.00981018 0.00982094 0.00983171 0.00984247 0.00985323 0.00986399 0.00987476 0.00988552 0.00989628 0.00990704 0.00991781 0.00992857 0.00993933 0.0099501 0.00996086 0.00997162 0.00998238 0.00999315 0.0100039 0.0100147 0.0100254 0.0100362 0.010047 0.0100577 0.0100685 0.0100792 0.01009 0.0101008 0.0101115 0.0101223 0.0101331 0.0101438 0.0101546 0.0101653 0.0101761 0.0101869 0.0101976 0.0102084 0.0102192 0.0102299 0.0102407 0.0102514 0.0102622 0.010273 0.0102837 0.0102945 0.0103053 0.010316 0.0103268 0.0103375 0.0103483 0.0103591 0.0103698 0.0103806 0.0103914 +-0.00246611 -0.00226845 -0.00183958 -0.00102824 8.54215E-05 0.00136418 0.00272152 0.00410377 0.00546645 0.00675462 0.00787532 0.00866601 0.00901328 0.00910107 0.0091243 0.00913692 0.00914797 0.00915877 0.00916955 0.00918032 0.00919109 0.00920186 0.00921263 0.00922339 0.00923416 0.00924493 0.0092557 0.00926647 0.00927724 0.00928801 0.00929878 0.00930955 0.00932031 0.00933108 0.00934185 0.00935262 0.00936339 0.00937416 0.00938493 0.0093957 0.00940647 0.00941723 0.009428 0.00943877 0.00944954 0.00946031 0.00947108 0.00948185 0.00949262 0.00950339 0.00951415 0.00952492 0.00953569 0.00954646 0.00955723 0.009568 0.00957877 0.00958954 0.00960031 0.00961107 0.00962184 0.00963261 0.00964338 0.00965415 0.00966492 0.00967569 0.00968646 0.00969723 0.00970799 0.00971876 0.00972953 0.0097403 0.00975107 0.00976184 0.00977261 0.00978338 0.00979415 0.00980491 0.00981568 0.00982645 0.00983722 0.00984799 0.00985876 0.00986953 0.0098803 0.00989107 0.00990183 0.0099126 0.00992337 0.00993414 0.00994491 0.00995568 0.00996645 0.00997722 0.00998799 0.00999875 0.0100095 0.0100203 0.0100311 0.0100418 0.0100526 0.0100634 0.0100741 0.0100849 0.0100957 0.0101064 0.0101172 0.010128 0.0101387 0.0101495 0.0101603 0.0101711 0.0101818 0.0101926 0.0102034 0.0102141 0.0102249 0.0102357 0.0102464 0.0102572 0.010268 0.0102787 0.0102895 0.0103003 0.0103111 0.0103218 0.0103326 0.0103434 0.0103541 0.0103649 0.0103757 0.0103864 0.0103972 +-0.00246773 -0.00226981 -0.00184042 -0.00102852 8.55067E-05 0.00136451 0.00272205 0.00410452 0.00546747 0.00675606 0.00787751 0.00866946 0.0090179 0.00910608 0.00912939 0.00914203 0.00915308 0.00916389 0.00917467 0.00918545 0.00919622 0.009207 0.00921777 0.00922855 0.00923932 0.0092501 0.00926088 0.00927165 0.00928243 0.0092932 0.00930398 0.00931475 0.00932553 0.0093363 0.00934708 0.00935785 0.00936863 0.0093794 0.00939018 0.00940095 0.00941173 0.0094225 0.00943328 0.00944405 0.00945483 0.0094656 0.00947638 0.00948715 0.00949793 0.0095087 0.00951948 0.00953025 0.00954103 0.0095518 0.00956258 0.00957335 0.00958413 0.0095949 0.00960568 0.00961645 0.00962723 0.00963801 0.00964878 0.00965956 0.00967033 0.00968111 0.00969188 0.00970266 0.00971343 0.00972421 0.00973498 0.00974576 0.00975653 0.00976731 0.00977808 0.00978886 0.00979963 0.00981041 0.00982118 0.00983196 0.00984273 0.00985351 0.00986428 0.00987506 0.00988583 0.00989661 0.00990738 0.00991816 0.00992893 0.00993971 0.00995048 0.00996126 0.00997203 0.00998281 0.00999358 0.0100044 0.0100151 0.0100259 0.0100367 0.0100475 0.0100582 0.010069 0.0100798 0.0100906 0.0101013 0.0101121 0.0101229 0.0101337 0.0101444 0.0101552 0.010166 0.0101768 0.0101875 0.0101983 0.0102091 0.0102199 0.0102306 0.0102414 0.0102522 0.010263 0.0102737 0.0102845 0.0102953 0.0103061 0.0103168 0.0103276 0.0103384 0.0103492 0.0103599 0.0103707 0.0103815 0.0103923 0.010403 +-0.00246935 -0.00227118 -0.00184126 -0.00102881 8.5592E-05 0.00136484 0.00272258 0.00410526 0.00546848 0.0067575 0.0078797 0.00867292 0.00902252 0.00911109 0.00913447 0.00914713 0.00915819 0.00916901 0.0091798 0.00919058 0.00920136 0.00921214 0.00922292 0.0092337 0.00924448 0.00925527 0.00926605 0.00927683 0.00928761 0.00929839 0.00930917 0.00931995 0.00933074 0.00934152 0.0093523 0.00936308 0.00937386 0.00938464 0.00939542 0.00940621 0.00941699 0.00942777 0.00943855 0.00944933 0.00946011 0.00947089 0.00948168 0.00949246 0.00950324 0.00951402 0.0095248 0.00953558 0.00954636 0.00955715 0.00956793 0.00957871 0.00958949 0.00960027 0.00961105 0.00962183 0.00963262 0.0096434 0.00965418 0.00966496 0.00967574 0.00968652 0.0096973 0.00970808 0.00971887 0.00972965 0.00974043 0.00975121 0.00976199 0.00977277 0.00978355 0.00979434 0.00980512 0.0098159 0.00982668 0.00983746 0.00984824 0.00985902 0.00986981 0.00988059 0.00989137 0.00990215 0.00991293 0.00992371 0.00993449 0.00994528 0.00995606 0.00996684 0.00997762 0.0099884 0.00999918 0.01001 0.0100207 0.0100315 0.0100423 0.0100531 0.0100639 0.0100747 0.0100854 0.0100962 0.010107 0.0101178 0.0101286 0.0101393 0.0101501 0.0101609 0.0101717 0.0101825 0.0101932 0.010204 0.0102148 0.0102256 0.0102364 0.0102472 0.0102579 0.0102687 0.0102795 0.0102903 0.0103011 0.0103118 0.0103226 0.0103334 0.0103442 0.010355 0.0103658 0.0103765 0.0103873 0.0103981 0.0104089 +-0.00247096 -0.00227254 -0.00184209 -0.00102909 8.56772E-05 0.00136517 0.00272311 0.004106 0.0054695 0.00675894 0.00788189 0.00867636 0.00902713 0.00911609 0.00913955 0.00915223 0.00916329 0.00917412 0.00918492 0.0091957 0.00920649 0.00921728 0.00922807 0.00923885 0.00924964 0.00926043 0.00927122 0.00928201 0.00929279 0.00930358 0.00931437 0.00932516 0.00933594 0.00934673 0.00935752 0.00936831 0.00937909 0.00938988 0.00940067 0.00941146 0.00942224 0.00943303 0.00944382 0.00945461 0.0094654 0.00947618 0.00948697 0.00949776 0.00950855 0.00951933 0.00953012 0.00954091 0.0095517 0.00956248 0.00957327 0.00958406 0.00959485 0.00960564 0.00961642 0.00962721 0.009638 0.00964879 0.00965957 0.00967036 0.00968115 0.00969194 0.00970272 0.00971351 0.0097243 0.00973509 0.00974587 0.00975666 0.00976745 0.00977824 0.00978903 0.00979981 0.0098106 0.00982139 0.00983218 0.00984296 0.00985375 0.00986454 0.00987533 0.00988611 0.0098969 0.00990769 0.00991848 0.00992927 0.00994005 0.00995084 0.00996163 0.00997242 0.0099832 0.00999399 0.0100048 0.0100156 0.0100264 0.0100371 0.0100479 0.0100587 0.0100695 0.0100803 0.0100911 0.0101019 0.0101127 0.0101234 0.0101342 0.010145 0.0101558 0.0101666 0.0101774 0.0101882 0.010199 0.0102097 0.0102205 0.0102313 0.0102421 0.0102529 0.0102637 0.0102745 0.0102853 0.010296 0.0103068 0.0103176 0.0103284 0.0103392 0.01035 0.0103608 0.0103716 0.0103823 0.0103931 0.0104039 0.0104147 +-0.00247258 -0.0022739 -0.00184293 -0.00102937 8.57624E-05 0.0013655 0.00272364 0.00410674 0.00547051 0.00676037 0.00788407 0.0086798 0.00903174 0.0091211 0.00914464 0.00915733 0.0091684 0.00917923 0.00919003 0.00920083 0.00921162 0.00922242 0.00923321 0.009244 0.0092548 0.00926559 0.00927639 0.00928718 0.00929797 0.00930877 0.00931956 0.00933036 0.00934115 0.00935194 0.00936274 0.00937353 0.00938433 0.00939512 0.00940591 0.00941671 0.0094275 0.00943829 0.00944909 0.00945988 0.00947068 0.00948147 0.00949226 0.00950306 0.00951385 0.00952465 0.00953544 0.00954623 0.00955703 0.00956782 0.00957862 0.00958941 0.0096002 0.009611 0.00962179 0.00963259 0.00964338 0.00965417 0.00966497 0.00967576 0.00968656 0.00969735 0.00970814 0.00971894 0.00972973 0.00974052 0.00975132 0.00976211 0.00977291 0.0097837 0.00979449 0.00980529 0.00981608 0.00982688 0.00983767 0.00984846 0.00985926 0.00987005 0.00988085 0.00989164 0.00990243 0.00991323 0.00992402 0.00993482 0.00994561 0.0099564 0.0099672 0.00997799 0.00998878 0.00999958 0.0100104 0.0100212 0.010032 0.0100428 0.0100535 0.0100643 0.0100751 0.0100859 0.0100967 0.0101075 0.0101183 0.0101291 0.0101399 0.0101507 0.0101615 0.0101723 0.0101831 0.0101939 0.0102047 0.0102155 0.0102263 0.010237 0.0102478 0.0102586 0.0102694 0.0102802 0.010291 0.0103018 0.0103126 0.0103234 0.0103342 0.010345 0.0103558 0.0103666 0.0103774 0.0103882 0.010399 0.0104097 0.0104205 +-0.00247419 -0.00227526 -0.00184377 -0.00102965 8.58477E-05 0.00136583 0.00272417 0.00410748 0.00547152 0.0067618 0.00788625 0.00868324 0.00903634 0.0091261 0.00914971 0.00916242 0.0091735 0.00918434 0.00919515 0.00920595 0.00921675 0.00922755 0.00923835 0.00924915 0.00925995 0.00927075 0.00928155 0.00929235 0.00930315 0.00931395 0.00932475 0.00933555 0.00934635 0.00935715 0.00936795 0.00937875 0.00938955 0.00940035 0.00941115 0.00942196 0.00943276 0.00944356 0.00945436 0.00946516 0.00947596 0.00948676 0.00949756 0.00950836 0.00951916 0.00952996 0.00954076 0.00955156 0.00956236 0.00957316 0.00958396 0.00959476 0.00960556 0.00961636 0.00962716 0.00963796 0.00964876 0.00965956 0.00967036 0.00968116 0.00969196 0.00970276 0.00971356 0.00972436 0.00973516 0.00974596 0.00975676 0.00976756 0.00977836 0.00978916 0.00979996 0.00981076 0.00982156 0.00983236 0.00984316 0.00985396 0.00986476 0.00987556 0.00988636 0.00989716 0.00990796 0.00991876 0.00992956 0.00994036 0.00995116 0.00996196 0.00997276 0.00998356 0.00999436 0.0100052 0.010016 0.0100268 0.0100376 0.0100484 0.0100592 0.01007 0.0100808 0.0100916 0.0101024 0.0101132 0.010124 0.0101348 0.0101456 0.0101564 0.0101672 0.010178 0.0101888 0.0101996 0.0102104 0.0102212 0.010232 0.0102428 0.0102536 0.0102644 0.0102752 0.010286 0.0102968 0.0103076 0.0103184 0.0103292 0.01034 0.0103508 0.0103616 0.0103724 0.0103832 0.010394 0.0104048 0.0104156 0.0104264 +-0.0024758 -0.00227663 -0.0018446 -0.00102994 8.5933E-05 0.00136616 0.00272471 0.00410822 0.00547253 0.00676323 0.00788842 0.00868667 0.00904095 0.0091311 0.00915479 0.00916752 0.00917861 0.00918945 0.00920027 0.00921107 0.00922188 0.00923269 0.00924349 0.0092543 0.0092651 0.00927591 0.00928672 0.00929752 0.00930833 0.00931914 0.00932994 0.00934075 0.00935156 0.00936236 0.00937317 0.00938398 0.00939478 0.00940559 0.00941639 0.0094272 0.00943801 0.00944881 0.00945962 0.00947043 0.00948123 0.00949204 0.00950285 0.00951365 0.00952446 0.00953527 0.00954607 0.00955688 0.00956768 0.00957849 0.0095893 0.0096001 0.00961091 0.00962172 0.00963252 0.00964333 0.00965414 0.00966494 0.00967575 0.00968656 0.00969736 0.00970817 0.00971897 0.00972978 0.00974059 0.00975139 0.0097622 0.00977301 0.00978381 0.00979462 0.00980543 0.00981623 0.00982704 0.00983785 0.00984865 0.00985946 0.00987026 0.00988107 0.00989188 0.00990268 0.00991349 0.0099243 0.0099351 0.00994591 0.00995672 0.00996752 0.00997833 0.00998914 0.00999994 0.0100107 0.0100216 0.0100324 0.0100432 0.010054 0.0100648 0.0100756 0.0100864 0.0100972 0.010108 0.0101188 0.0101296 0.0101404 0.0101512 0.010162 0.0101728 0.0101837 0.0101945 0.0102053 0.0102161 0.0102269 0.0102377 0.0102485 0.0102593 0.0102701 0.0102809 0.0102917 0.0103025 0.0103133 0.0103241 0.0103349 0.0103457 0.0103566 0.0103674 0.0103782 0.010389 0.0103998 0.0104106 0.0104214 0.0104322 +-0.00247742 -0.00227799 -0.00184544 -0.00103022 8.60182E-05 0.00136649 0.00272523 0.00410896 0.00547354 0.00676466 0.00789059 0.0086901 0.00904554 0.0091361 0.00915987 0.00917261 0.00918371 0.00919456 0.00920538 0.00921619 0.009227 0.00923782 0.00924863 0.00925944 0.00927026 0.00928107 0.00929188 0.00930269 0.00931351 0.00932432 0.00933513 0.00934594 0.00935676 0.00936757 0.00937838 0.00938919 0.00940001 0.00941082 0.00942163 0.00943245 0.00944326 0.00945407 0.00946488 0.0094757 0.00948651 0.00949732 0.00950813 0.00951895 0.00952976 0.00954057 0.00955138 0.0095622 0.00957301 0.00958382 0.00959464 0.00960545 0.00961626 0.00962707 0.00963789 0.0096487 0.00965951 0.00967032 0.00968114 0.00969195 0.00970276 0.00971357 0.00972439 0.0097352 0.00974601 0.00975683 0.00976764 0.00977845 0.00978926 0.00980008 0.00981089 0.0098217 0.00983251 0.00984333 0.00985414 0.00986495 0.00987576 0.00988658 0.00989739 0.0099082 0.00991902 0.00992983 0.00994064 0.00995145 0.00996227 0.00997308 0.00998389 0.0099947 0.0100055 0.0100163 0.0100271 0.010038 0.0100488 0.0100596 0.0100704 0.0100812 0.010092 0.0101028 0.0101136 0.0101245 0.0101353 0.0101461 0.0101569 0.0101677 0.0101785 0.0101893 0.0102001 0.010211 0.0102218 0.0102326 0.0102434 0.0102542 0.010265 0.0102758 0.0102866 0.0102975 0.0103083 0.0103191 0.0103299 0.0103407 0.0103515 0.0103623 0.0103731 0.010384 0.0103948 0.0104056 0.0104164 0.0104272 0.010438 +-0.00247903 -0.00227935 -0.00184627 -0.0010305 8.61035E-05 0.00136682 0.00272576 0.0041097 0.00547455 0.00676608 0.00789276 0.00869352 0.00905014 0.0091411 0.00916494 0.0091777 0.0091888 0.00919966 0.00921049 0.00922131 0.00923213 0.00924295 0.00925377 0.00926458 0.0092754 0.00928622 0.00929704 0.00930786 0.00931868 0.0093295 0.00934032 0.00935114 0.00936196 0.00937277 0.00938359 0.00939441 0.00940523 0.00941605 0.00942687 0.00943769 0.00944851 0.00945933 0.00947014 0.00948096 0.00949178 0.0095026 0.00951342 0.00952424 0.00953506 0.00954588 0.0095567 0.00956751 0.00957833 0.00958915 0.00959997 0.00961079 0.00962161 0.00963243 0.00964325 0.00965407 0.00966489 0.0096757 0.00968652 0.00969734 0.00970816 0.00971898 0.0097298 0.00974062 0.00975144 0.00976226 0.00977307 0.00978389 0.00979471 0.00980553 0.00981635 0.00982717 0.00983799 0.00984881 0.00985963 0.00987044 0.00988126 0.00989208 0.0099029 0.00991372 0.00992454 0.00993536 0.00994618 0.009957 0.00996781 0.00997863 0.00998945 0.0100003 0.0100111 0.0100219 0.0100327 0.0100435 0.0100544 0.0100652 0.010076 0.0100868 0.0100976 0.0101085 0.0101193 0.0101301 0.0101409 0.0101517 0.0101626 0.0101734 0.0101842 0.010195 0.0102058 0.0102167 0.0102275 0.0102383 0.0102491 0.0102599 0.0102707 0.0102816 0.0102924 0.0103032 0.010314 0.0103248 0.0103357 0.0103465 0.0103573 0.0103681 0.0103789 0.0103898 0.0104006 0.0104114 0.0104222 0.010433 0.0104438 +-0.00248064 -0.00228071 -0.00184711 -0.00103078 8.61888E-05 0.00136715 0.00272629 0.00411043 0.00547555 0.00676751 0.00789492 0.00869693 0.00905473 0.00914609 0.00917001 0.00918279 0.0091939 0.00920477 0.0092156 0.00922642 0.00923725 0.00924808 0.0092589 0.00926973 0.00928055 0.00929138 0.0093022 0.00931303 0.00932385 0.00933468 0.0093455 0.00935633 0.00936715 0.00937798 0.0093888 0.00939963 0.00941045 0.00942128 0.0094321 0.00944293 0.00945375 0.00946458 0.0094754 0.00948623 0.00949705 0.00950788 0.0095187 0.00952953 0.00954035 0.00955118 0.00956201 0.00957283 0.00958366 0.00959448 0.00960531 0.00961613 0.00962696 0.00963778 0.00964861 0.00965943 0.00967026 0.00968108 0.00969191 0.00970273 0.00971356 0.00972438 0.00973521 0.00974603 0.00975686 0.00976768 0.00977851 0.00978933 0.00980016 0.00981098 0.00982181 0.00983263 0.00984346 0.00985428 0.00986511 0.00987593 0.00988676 0.00989759 0.00990841 0.00991924 0.00993006 0.00994089 0.00995171 0.00996254 0.00997336 0.00998419 0.00999501 0.0100058 0.0100167 0.0100275 0.0100383 0.0100491 0.01006 0.0100708 0.0100816 0.0100924 0.0101033 0.0101141 0.0101249 0.0101357 0.0101466 0.0101574 0.0101682 0.010179 0.0101899 0.0102007 0.0102115 0.0102223 0.0102332 0.010244 0.0102548 0.0102656 0.0102765 0.0102873 0.0102981 0.0103089 0.0103198 0.0103306 0.0103414 0.0103522 0.0103631 0.0103739 0.0103847 0.0103955 0.0104064 0.0104172 0.010428 0.0104388 0.0104497 +-0.00248225 -0.00228206 -0.00184794 -0.00103106 8.62741E-05 0.00136748 0.00272682 0.00411117 0.00547656 0.00676893 0.00789708 0.00870034 0.00905931 0.00915108 0.00917508 0.00918788 0.00919899 0.00920987 0.00922071 0.00923154 0.00924237 0.0092532 0.00926403 0.00927486 0.0092857 0.00929653 0.00930736 0.00931819 0.00932902 0.00933985 0.00935068 0.00936152 0.00937235 0.00938318 0.00939401 0.00940484 0.00941567 0.0094265 0.00943734 0.00944817 0.009459 0.00946983 0.00948066 0.00949149 0.00950232 0.00951316 0.00952399 0.00953482 0.00954565 0.00955648 0.00956731 0.00957814 0.00958898 0.00959981 0.00961064 0.00962147 0.0096323 0.00964313 0.00965396 0.0096648 0.00967563 0.00968646 0.00969729 0.00970812 0.00971895 0.00972978 0.00974061 0.00975145 0.00976228 0.00977311 0.00978394 0.00979477 0.0098056 0.00981643 0.00982727 0.0098381 0.00984893 0.00985976 0.00987059 0.00988142 0.00989225 0.00990309 0.00991392 0.00992475 0.00993558 0.00994641 0.00995724 0.00996807 0.00997891 0.00998974 0.0100006 0.0100114 0.0100222 0.0100331 0.0100439 0.0100547 0.0100656 0.0100764 0.0100872 0.0100981 0.0101089 0.0101197 0.0101305 0.0101414 0.0101522 0.010163 0.0101739 0.0101847 0.0101955 0.0102064 0.0102172 0.010228 0.0102389 0.0102497 0.0102605 0.0102714 0.0102822 0.010293 0.0103038 0.0103147 0.0103255 0.0103363 0.0103472 0.010358 0.0103688 0.0103797 0.0103905 0.0104013 0.0104122 0.010423 0.0104338 0.0104447 0.0104555 +-0.00248387 -0.00228342 -0.00184877 -0.00103134 8.63594E-05 0.00136781 0.00272735 0.0041119 0.00547756 0.00677035 0.00789924 0.00870374 0.00906389 0.00915607 0.00918015 0.00919296 0.00920409 0.00921497 0.00922581 0.00923665 0.00924749 0.00925833 0.00926916 0.00928 0.00929084 0.00930168 0.00931251 0.00932335 0.00933419 0.00934503 0.00935586 0.0093667 0.00937754 0.00938838 0.00939922 0.00941005 0.00942089 0.00943173 0.00944257 0.0094534 0.00946424 0.00947508 0.00948592 0.00949675 0.00950759 0.00951843 0.00952927 0.0095401 0.00955094 0.00956178 0.00957262 0.00958346 0.00959429 0.00960513 0.00961597 0.00962681 0.00963764 0.00964848 0.00965932 0.00967016 0.00968099 0.00969183 0.00970267 0.00971351 0.00972434 0.00973518 0.00974602 0.00975686 0.0097677 0.00977853 0.00978937 0.00980021 0.00981105 0.00982188 0.00983272 0.00984356 0.0098544 0.00986523 0.00987607 0.00988691 0.00989775 0.00990859 0.00991942 0.00993026 0.0099411 0.00995194 0.00996277 0.00997361 0.00998445 0.00999529 0.0100061 0.010017 0.0100278 0.0100386 0.0100495 0.0100603 0.0100711 0.010082 0.0100928 0.0101037 0.0101145 0.0101253 0.0101362 0.010147 0.0101579 0.0101687 0.0101795 0.0101904 0.0102012 0.010212 0.0102229 0.0102337 0.0102446 0.0102554 0.0102662 0.0102771 0.0102879 0.0102987 0.0103096 0.0103204 0.0103313 0.0103421 0.0103529 0.0103638 0.0103746 0.0103854 0.0103963 0.0104071 0.010418 0.0104288 0.0104396 0.0104505 0.0104613 +-0.00248548 -0.00228478 -0.0018496 -0.00103162 8.64447E-05 0.00136813 0.00272788 0.00411264 0.00547856 0.00677177 0.00790139 0.00870714 0.00906847 0.00916106 0.00918522 0.00919804 0.00920918 0.00922007 0.00923092 0.00924176 0.0092526 0.00926345 0.00927429 0.00928514 0.00929598 0.00930682 0.00931767 0.00932851 0.00933936 0.0093502 0.00936104 0.00937189 0.00938273 0.00939358 0.00940442 0.00941526 0.00942611 0.00943695 0.00944779 0.00945864 0.00946948 0.00948033 0.00949117 0.00950201 0.00951286 0.0095237 0.00953455 0.00954539 0.00955623 0.00956708 0.00957792 0.00958877 0.00959961 0.00961045 0.0096213 0.00963214 0.00964298 0.00965383 0.00966467 0.00967552 0.00968636 0.0096972 0.00970805 0.00971889 0.00972974 0.00974058 0.00975142 0.00976227 0.00977311 0.00978396 0.0097948 0.00980564 0.00981649 0.00982733 0.00983817 0.00984902 0.00985986 0.00987071 0.00988155 0.00989239 0.00990324 0.00991408 0.00992493 0.00993577 0.00994661 0.00995746 0.0099683 0.00997915 0.00998999 0.0100008 0.0100117 0.0100225 0.0100334 0.0100442 0.0100551 0.0100659 0.0100767 0.0100876 0.0100984 0.0101093 0.0101201 0.010131 0.0101418 0.0101526 0.0101635 0.0101743 0.0101852 0.010196 0.0102069 0.0102177 0.0102286 0.0102394 0.0102502 0.0102611 0.0102719 0.0102828 0.0102936 0.0103045 0.0103153 0.0103261 0.010337 0.0103478 0.0103587 0.0103695 0.0103804 0.0103912 0.0104021 0.0104129 0.0104237 0.0104346 0.0104454 0.0104563 0.0104671 +-0.00248709 -0.00228613 -0.00185043 -0.0010319 8.653E-05 0.00136846 0.0027284 0.00411337 0.00547956 0.00677318 0.00790354 0.00871054 0.00907304 0.00916604 0.00919028 0.00920313 0.00921427 0.00922516 0.00923602 0.00924687 0.00925772 0.00926857 0.00927942 0.00929027 0.00930112 0.00931197 0.00932282 0.00933367 0.00934452 0.00935537 0.00936622 0.00937707 0.00938792 0.00939877 0.00940962 0.00942047 0.00943132 0.00944217 0.00945302 0.00946387 0.00947472 0.00948557 0.00949642 0.00950727 0.00951812 0.00952897 0.00953982 0.00955067 0.00956152 0.00957237 0.00958322 0.00959407 0.00960492 0.00961577 0.00962662 0.00963747 0.00964832 0.00965917 0.00967002 0.00968087 0.00969172 0.00970257 0.00971342 0.00972427 0.00973512 0.00974597 0.00975683 0.00976768 0.00977853 0.00978938 0.00980023 0.00981108 0.00982193 0.00983278 0.00984363 0.00985448 0.00986533 0.00987618 0.00988703 0.00989788 0.00990873 0.00991958 0.00993043 0.00994128 0.00995213 0.00996298 0.00997383 0.00998468 0.00999553 0.0100064 0.0100172 0.0100281 0.0100389 0.0100498 0.0100606 0.0100715 0.0100823 0.0100932 0.010104 0.0101149 0.0101257 0.0101366 0.0101474 0.0101583 0.0101691 0.01018 0.0101908 0.0102017 0.0102125 0.0102234 0.0102342 0.0102451 0.0102559 0.0102668 0.0102776 0.0102885 0.0102993 0.0103102 0.010321 0.0103319 0.0103427 0.0103536 0.0103644 0.0103753 0.0103861 0.010397 0.0104078 0.0104187 0.0104295 0.0104404 0.0104512 0.0104621 0.0104729 +-0.0024887 -0.00228749 -0.00185126 -0.00103217 8.66154E-05 0.00136879 0.00272893 0.00411411 0.00548056 0.0067746 0.00790569 0.00871393 0.00907762 0.00917103 0.00919534 0.0092082 0.00921936 0.00923026 0.00924112 0.00925198 0.00926283 0.00927369 0.00928454 0.0092954 0.00930626 0.00931711 0.00932797 0.00933883 0.00934968 0.00936054 0.0093714 0.00938225 0.00939311 0.00940396 0.00941482 0.00942568 0.00943653 0.00944739 0.00945825 0.0094691 0.00947996 0.00949082 0.00950167 0.00951253 0.00952338 0.00953424 0.0095451 0.00955595 0.00956681 0.00957767 0.00958852 0.00959938 0.00961024 0.00962109 0.00963195 0.0096428 0.00965366 0.00966452 0.00967537 0.00968623 0.00969709 0.00970794 0.0097188 0.00972966 0.00974051 0.00975137 0.00976222 0.00977308 0.00978394 0.00979479 0.00980565 0.00981651 0.00982736 0.00983822 0.00984908 0.00985993 0.00987079 0.00988164 0.0098925 0.00990336 0.00991421 0.00992507 0.00993593 0.00994678 0.00995764 0.0099685 0.00997935 0.00999021 0.0100011 0.0100119 0.0100228 0.0100336 0.0100445 0.0100553 0.0100662 0.0100771 0.0100879 0.0100988 0.0101096 0.0101205 0.0101313 0.0101422 0.0101531 0.0101639 0.0101748 0.0101856 0.0101965 0.0102073 0.0102182 0.010229 0.0102399 0.0102508 0.0102616 0.0102725 0.0102833 0.0102942 0.010305 0.0103159 0.0103268 0.0103376 0.0103485 0.0103593 0.0103702 0.010381 0.0103919 0.0104028 0.0104136 0.0104245 0.0104353 0.0104462 0.010457 0.0104679 0.0104787 +-0.00249031 -0.00228884 -0.00185209 -0.00103245 8.67007E-05 0.00136912 0.00272945 0.00411484 0.00548156 0.00677601 0.00790783 0.00871731 0.00908218 0.00917601 0.0092004 0.00921328 0.00922444 0.00923535 0.00924622 0.00925708 0.00926794 0.00927881 0.00928967 0.00930053 0.00931139 0.00932226 0.00933312 0.00934398 0.00935484 0.00936571 0.00937657 0.00938743 0.00939829 0.00940916 0.00942002 0.00943088 0.00944174 0.00945261 0.00946347 0.00947433 0.00948519 0.00949606 0.00950692 0.00951778 0.00952865 0.00953951 0.00955037 0.00956123 0.0095721 0.00958296 0.00959382 0.00960468 0.00961555 0.00962641 0.00963727 0.00964813 0.009659 0.00966986 0.00968072 0.00969158 0.00970245 0.00971331 0.00972417 0.00973503 0.0097459 0.00975676 0.00976762 0.00977848 0.00978935 0.00980021 0.00981107 0.00982194 0.0098328 0.00984366 0.00985452 0.00986539 0.00987625 0.00988711 0.00989797 0.00990884 0.0099197 0.00993056 0.00994142 0.00995229 0.00996315 0.00997401 0.00998487 0.00999574 0.0100066 0.0100175 0.0100283 0.0100392 0.01005 0.0100609 0.0100718 0.0100826 0.0100935 0.0101044 0.0101152 0.0101261 0.010137 0.0101478 0.0101587 0.0101695 0.0101804 0.0101913 0.0102021 0.010213 0.0102239 0.0102347 0.0102456 0.0102564 0.0102673 0.0102782 0.010289 0.0102999 0.0103108 0.0103216 0.0103325 0.0103433 0.0103542 0.0103651 0.0103759 0.0103868 0.0103977 0.0104085 0.0104194 0.0104302 0.0104411 0.010452 0.0104628 0.0104737 0.0104846 +-0.00249192 -0.0022902 -0.00185292 -0.00103273 8.6786E-05 0.00136945 0.00272998 0.00411557 0.00548256 0.00677742 0.00790997 0.00872069 0.00908674 0.00918098 0.00920546 0.00921836 0.00922953 0.00924044 0.00925131 0.00926218 0.00927305 0.00928392 0.00929479 0.00930566 0.00931653 0.0093274 0.00933826 0.00934913 0.00936 0.00937087 0.00938174 0.00939261 0.00940348 0.00941435 0.00942522 0.00943608 0.00944695 0.00945782 0.00946869 0.00947956 0.00949043 0.0095013 0.00951217 0.00952303 0.0095339 0.00954477 0.00955564 0.00956651 0.00957738 0.00958825 0.00959912 0.00960999 0.00962085 0.00963172 0.00964259 0.00965346 0.00966433 0.0096752 0.00968607 0.00969694 0.00970781 0.00971867 0.00972954 0.00974041 0.00975128 0.00976215 0.00977302 0.00978389 0.00979476 0.00980562 0.00981649 0.00982736 0.00983823 0.0098491 0.00985997 0.00987084 0.00988171 0.00989258 0.00990344 0.00991431 0.00992518 0.00993605 0.00994692 0.00995779 0.00996866 0.00997953 0.00999039 0.0100013 0.0100121 0.010023 0.0100339 0.0100447 0.0100556 0.0100665 0.0100773 0.0100882 0.0100991 0.01011 0.0101208 0.0101317 0.0101426 0.0101534 0.0101643 0.0101752 0.010186 0.0101969 0.0102078 0.0102186 0.0102295 0.0102404 0.0102512 0.0102621 0.010273 0.0102839 0.0102947 0.0103056 0.0103165 0.0103273 0.0103382 0.0103491 0.0103599 0.0103708 0.0103817 0.0103925 0.0104034 0.0104143 0.0104251 0.010436 0.0104469 0.0104578 0.0104686 0.0104795 0.0104904 +-0.00249352 -0.00229155 -0.00185375 -0.00103301 8.68714E-05 0.00136977 0.00273051 0.0041163 0.00548356 0.00677883 0.0079121 0.00872406 0.0090913 0.00918596 0.00921052 0.00922343 0.00923461 0.00924553 0.00925641 0.00926728 0.00927816 0.00928903 0.00929991 0.00931078 0.00932166 0.00933253 0.00934341 0.00935428 0.00936516 0.00937603 0.00938691 0.00939778 0.00940866 0.00941953 0.00943041 0.00944129 0.00945216 0.00946304 0.00947391 0.00948479 0.00949566 0.00950654 0.00951741 0.00952829 0.00953916 0.00955004 0.00956091 0.00957179 0.00958266 0.00959354 0.00960441 0.00961529 0.00962616 0.00963704 0.00964791 0.00965879 0.00966966 0.00968054 0.00969141 0.00970229 0.00971316 0.00972404 0.00973491 0.00974579 0.00975666 0.00976754 0.00977841 0.00978929 0.00980016 0.00981104 0.00982191 0.00983279 0.00984366 0.00985454 0.00986541 0.00987629 0.00988716 0.00989804 0.00990891 0.00991979 0.00993066 0.00994154 0.00995241 0.00996329 0.00997416 0.00998504 0.00999591 0.0100068 0.0100177 0.0100285 0.0100394 0.0100503 0.0100612 0.010072 0.0100829 0.0100938 0.0101047 0.0101155 0.0101264 0.0101373 0.0101482 0.010159 0.0101699 0.0101808 0.0101917 0.0102025 0.0102134 0.0102243 0.0102352 0.010246 0.0102569 0.0102678 0.0102787 0.0102895 0.0103004 0.0103113 0.0103222 0.010333 0.0103439 0.0103548 0.0103657 0.0103765 0.0103874 0.0103983 0.0104092 0.01042 0.0104309 0.0104418 0.0104527 0.0104635 0.0104744 0.0104853 0.0104962 +-0.00249513 -0.0022929 -0.00185457 -0.00103328 8.69568E-05 0.0013701 0.00273103 0.00411703 0.00548455 0.00678023 0.00791424 0.00872743 0.00909586 0.00919093 0.00921557 0.00922851 0.00923969 0.00925061 0.0092615 0.00927238 0.00928326 0.00929415 0.00930503 0.00931591 0.00932679 0.00933767 0.00934855 0.00935943 0.00937031 0.0093812 0.00939208 0.00940296 0.00941384 0.00942472 0.0094356 0.00944648 0.00945737 0.00946825 0.00947913 0.00949001 0.00950089 0.00951177 0.00952265 0.00953353 0.00954442 0.0095553 0.00956618 0.00957706 0.00958794 0.00959882 0.0096097 0.00962058 0.00963147 0.00964235 0.00965323 0.00966411 0.00967499 0.00968587 0.00969675 0.00970763 0.00971852 0.0097294 0.00974028 0.00975116 0.00976204 0.00977292 0.0097838 0.00979469 0.00980557 0.00981645 0.00982733 0.00983821 0.00984909 0.00985997 0.00987085 0.00988174 0.00989262 0.0099035 0.00991438 0.00992526 0.00993614 0.00994702 0.0099579 0.00996879 0.00997967 0.00999055 0.0100014 0.0100123 0.0100232 0.0100341 0.010045 0.0100558 0.0100667 0.0100776 0.0100885 0.0100994 0.0101102 0.0101211 0.010132 0.0101429 0.0101538 0.0101646 0.0101755 0.0101864 0.0101973 0.0102082 0.0102191 0.0102299 0.0102408 0.0102517 0.0102626 0.0102735 0.0102843 0.0102952 0.0103061 0.010317 0.0103279 0.0103387 0.0103496 0.0103605 0.0103714 0.0103823 0.0103932 0.010404 0.0104149 0.0104258 0.0104367 0.0104476 0.0104584 0.0104693 0.0104802 0.0104911 0.010502 +-0.00249674 -0.00229426 -0.0018554 -0.00103356 8.70421E-05 0.00137043 0.00273155 0.00411776 0.00548555 0.00678164 0.00791636 0.00873079 0.00910041 0.00919591 0.00922063 0.00923358 0.00924477 0.0092557 0.00926659 0.00927748 0.00928837 0.00929926 0.00931014 0.00932103 0.00933192 0.00934281 0.00935369 0.00936458 0.00937547 0.00938636 0.00939724 0.00940813 0.00941902 0.00942991 0.00944079 0.00945168 0.00946257 0.00947346 0.00948434 0.00949523 0.00950612 0.00951701 0.00952789 0.00953878 0.00954967 0.00956056 0.00957144 0.00958233 0.00959322 0.00960411 0.00961499 0.00962588 0.00963677 0.00964766 0.00965854 0.00966943 0.00968032 0.00969121 0.00970209 0.00971298 0.00972387 0.00973476 0.00974564 0.00975653 0.00976742 0.00977831 0.00978919 0.00980008 0.00981097 0.00982186 0.00983274 0.00984363 0.00985452 0.00986541 0.00987629 0.00988718 0.00989807 0.00990896 0.00991984 0.00993073 0.00994162 0.00995251 0.00996339 0.00997428 0.00998517 0.00999606 0.0100069 0.0100178 0.0100287 0.0100396 0.0100505 0.0100614 0.0100723 0.0100832 0.010094 0.0101049 0.0101158 0.0101267 0.0101376 0.0101485 0.0101594 0.0101703 0.0101811 0.010192 0.0102029 0.0102138 0.0102247 0.0102356 0.0102465 0.0102574 0.0102682 0.0102791 0.01029 0.0103009 0.0103118 0.0103227 0.0103336 0.0103445 0.0103553 0.0103662 0.0103771 0.010388 0.0103989 0.0104098 0.0104207 0.0104316 0.0104424 0.0104533 0.0104642 0.0104751 0.010486 0.0104969 0.0105078 +-0.00249835 -0.00229561 -0.00185622 -0.00103384 8.71275E-05 0.00137075 0.00273208 0.00411849 0.00548654 0.00678304 0.00791849 0.00873415 0.00910496 0.00920087 0.00922568 0.00923864 0.00924984 0.00926078 0.00927168 0.00928258 0.00929347 0.00930436 0.00931526 0.00932615 0.00933705 0.00934794 0.00935883 0.00936973 0.00938062 0.00939151 0.00940241 0.0094133 0.0094242 0.00943509 0.00944598 0.00945688 0.00946777 0.00947866 0.00948956 0.00950045 0.00951135 0.00952224 0.00953313 0.00954403 0.00955492 0.00956581 0.00957671 0.0095876 0.00959849 0.00960939 0.00962028 0.00963118 0.00964207 0.00965296 0.00966386 0.00967475 0.00968564 0.00969654 0.00970743 0.00971833 0.00972922 0.00974011 0.00975101 0.0097619 0.00977279 0.00978369 0.00979458 0.00980548 0.00981637 0.00982726 0.00983816 0.00984905 0.00985994 0.00987084 0.00988173 0.00989263 0.00990352 0.00991441 0.00992531 0.0099362 0.00994709 0.00995799 0.00996888 0.00997978 0.00999067 0.0100016 0.0100125 0.0100234 0.0100342 0.0100451 0.010056 0.0100669 0.0100778 0.0100887 0.0100996 0.0101105 0.0101214 0.0101323 0.0101432 0.0101541 0.010165 0.0101759 0.0101868 0.0101977 0.0102085 0.0102194 0.0102303 0.0102412 0.0102521 0.010263 0.0102739 0.0102848 0.0102957 0.0103066 0.0103175 0.0103284 0.0103393 0.0103502 0.0103611 0.010372 0.0103828 0.0103937 0.0104046 0.0104155 0.0104264 0.0104373 0.0104482 0.0104591 0.01047 0.0104809 0.0104918 0.0105027 0.0105136 +-0.00249995 -0.00229696 -0.00185704 -0.00103411 8.72129E-05 0.00137108 0.0027326 0.00411922 0.00548753 0.00678444 0.00792061 0.0087375 0.0091095 0.00920584 0.00923073 0.00924371 0.00925492 0.00926586 0.00927677 0.00928767 0.00929857 0.00930947 0.00932037 0.00933127 0.00934217 0.00935307 0.00936397 0.00937487 0.00938577 0.00939667 0.00940757 0.00941847 0.00942937 0.00944027 0.00945117 0.00946207 0.00947297 0.00948387 0.00949477 0.00950567 0.00951657 0.00952747 0.00953837 0.00954927 0.00956017 0.00957107 0.00958197 0.00959287 0.00960377 0.00961467 0.00962557 0.00963647 0.00964737 0.00965827 0.00966917 0.00968007 0.00969097 0.00970187 0.00971277 0.00972367 0.00973457 0.00974547 0.00975637 0.00976727 0.00977817 0.00978907 0.00979997 0.00981087 0.00982177 0.00983267 0.00984357 0.00985447 0.00986537 0.00987627 0.00988717 0.00989807 0.00990897 0.00991987 0.00993077 0.00994167 0.00995257 0.00996347 0.00997437 0.00998527 0.00999617 0.0100071 0.010018 0.0100289 0.0100398 0.0100507 0.0100616 0.0100725 0.0100834 0.0100943 0.0101052 0.0101161 0.010127 0.0101379 0.0101488 0.0101597 0.0101706 0.0101815 0.0101924 0.0102033 0.0102142 0.0102251 0.010236 0.0102469 0.0102578 0.0102687 0.0102796 0.0102905 0.0103014 0.0103123 0.0103232 0.0103341 0.010345 0.0103559 0.0103668 0.0103777 0.0103886 0.0103995 0.0104104 0.0104213 0.0104322 0.0104431 0.010454 0.0104649 0.0104758 0.0104867 0.0104976 0.0105085 0.0105194 +-0.00250156 -0.00229831 -0.00185787 -0.00103439 8.72983E-05 0.0013714 0.00273312 0.00411994 0.00548852 0.00678584 0.00792273 0.00874085 0.00911404 0.00921081 0.00923577 0.00924878 0.00925999 0.00927094 0.00928186 0.00929276 0.00930367 0.00931457 0.00932548 0.00933639 0.00934729 0.0093582 0.00936911 0.00938001 0.00939092 0.00940182 0.00941273 0.00942364 0.00943454 0.00944545 0.00945636 0.00946726 0.00947817 0.00948907 0.00949998 0.00951089 0.00952179 0.0095327 0.0095436 0.00955451 0.00956542 0.00957632 0.00958723 0.00959814 0.00960904 0.00961995 0.00963085 0.00964176 0.00965267 0.00966357 0.00967448 0.00968538 0.00969629 0.0097072 0.0097181 0.00972901 0.00973992 0.00975082 0.00976173 0.00977263 0.00978354 0.00979445 0.00980535 0.00981626 0.00982717 0.00983807 0.00984898 0.00985988 0.00987079 0.0098817 0.0098926 0.00990351 0.00991441 0.00992532 0.00993623 0.00994713 0.00995804 0.00996895 0.00997985 0.00999076 0.0100017 0.0100126 0.0100235 0.0100344 0.0100453 0.0100562 0.0100671 0.010078 0.0100889 0.0100998 0.0101107 0.0101216 0.0101325 0.0101434 0.0101544 0.0101653 0.0101762 0.0101871 0.010198 0.0102089 0.0102198 0.0102307 0.0102416 0.0102525 0.0102634 0.0102743 0.0102852 0.0102961 0.010307 0.0103179 0.0103288 0.0103398 0.0103507 0.0103616 0.0103725 0.0103834 0.0103943 0.0104052 0.0104161 0.010427 0.0104379 0.0104488 0.0104597 0.0104706 0.0104815 0.0104924 0.0105033 0.0105143 0.0105252 +-0.00250316 -0.00229966 -0.00185869 -0.00103466 8.73837E-05 0.00137173 0.00273364 0.00412067 0.00548951 0.00678723 0.00792484 0.00874419 0.00911858 0.00921577 0.00924082 0.00925384 0.00926506 0.00927602 0.00928694 0.00929785 0.00930877 0.00931968 0.00933059 0.0093415 0.00935241 0.00936333 0.00937424 0.00938515 0.00939606 0.00940698 0.00941789 0.0094288 0.00943971 0.00945063 0.00946154 0.00947245 0.00948336 0.00949428 0.00950519 0.0095161 0.00952701 0.00953793 0.00954884 0.00955975 0.00957066 0.00958158 0.00959249 0.0096034 0.00961431 0.00962522 0.00963614 0.00964705 0.00965796 0.00966887 0.00967979 0.0096907 0.00970161 0.00971252 0.00972344 0.00973435 0.00974526 0.00975617 0.00976709 0.009778 0.00978891 0.00979982 0.00981074 0.00982165 0.00983256 0.00984347 0.00985439 0.0098653 0.00987621 0.00988712 0.00989803 0.00990895 0.00991986 0.00993077 0.00994168 0.0099526 0.00996351 0.00997442 0.00998533 0.00999625 0.0100072 0.0100181 0.010029 0.0100399 0.0100508 0.0100617 0.0100726 0.0100835 0.0100945 0.0101054 0.0101163 0.0101272 0.0101381 0.010149 0.0101599 0.0101708 0.0101818 0.0101927 0.0102036 0.0102145 0.0102254 0.0102363 0.0102472 0.0102581 0.0102691 0.01028 0.0102909 0.0103018 0.0103127 0.0103236 0.0103345 0.0103454 0.0103564 0.0103673 0.0103782 0.0103891 0.0104 0.0104109 0.0104218 0.0104327 0.0104437 0.0104546 0.0104655 0.0104764 0.0104873 0.0104982 0.0105091 0.01052 0.010531 +-0.00250477 -0.002301 -0.00185951 -0.00103494 8.74691E-05 0.00137205 0.00273417 0.0041214 0.0054905 0.00678863 0.00792695 0.00874752 0.00912311 0.00922073 0.00924586 0.0092589 0.00927013 0.0092811 0.00929202 0.00930294 0.00931386 0.00932478 0.0093357 0.00934662 0.00935753 0.00936845 0.00937937 0.00939029 0.00940121 0.00941213 0.00942305 0.00943396 0.00944488 0.0094558 0.00946672 0.00947764 0.00948856 0.00949948 0.00951039 0.00952131 0.00953223 0.00954315 0.00955407 0.00956499 0.00957591 0.00958683 0.00959774 0.00960866 0.00961958 0.0096305 0.00964142 0.00965234 0.00966326 0.00967417 0.00968509 0.00969601 0.00970693 0.00971785 0.00972877 0.00973969 0.0097506 0.00976152 0.00977244 0.00978336 0.00979428 0.0098052 0.00981612 0.00982703 0.00983795 0.00984887 0.00985979 0.00987071 0.00988163 0.00989255 0.00990346 0.00991438 0.0099253 0.00993622 0.00994714 0.00995806 0.00996898 0.0099799 0.00999081 0.0100017 0.0100127 0.0100236 0.0100345 0.0100454 0.0100563 0.0100672 0.0100782 0.0100891 0.0101 0.0101109 0.0101218 0.0101328 0.0101437 0.0101546 0.0101655 0.0101764 0.0101873 0.0101983 0.0102092 0.0102201 0.010231 0.0102419 0.0102529 0.0102638 0.0102747 0.0102856 0.0102965 0.0103075 0.0103184 0.0103293 0.0103402 0.0103511 0.010362 0.010373 0.0103839 0.0103948 0.0104057 0.0104166 0.0104276 0.0104385 0.0104494 0.0104603 0.0104712 0.0104822 0.0104931 0.010504 0.0105149 0.0105258 0.0105367 +-0.00250637 -0.00230235 -0.00186033 -0.00103521 8.75545E-05 0.00137238 0.00273469 0.00412212 0.00549149 0.00679002 0.00792906 0.00875085 0.00912764 0.00922569 0.0092509 0.00926396 0.0092752 0.00928617 0.0092971 0.00930803 0.00931895 0.00932988 0.0093408 0.00935173 0.00936265 0.00937358 0.0093845 0.00939543 0.00940635 0.00941728 0.0094282 0.00943913 0.00945005 0.00946098 0.0094719 0.00948283 0.00949375 0.00950467 0.0095156 0.00952652 0.00953745 0.00954837 0.0095593 0.00957022 0.00958115 0.00959207 0.009603 0.00961392 0.00962485 0.00963577 0.0096467 0.00965762 0.00966855 0.00967947 0.0096904 0.00970132 0.00971225 0.00972317 0.0097341 0.00974502 0.00975595 0.00976687 0.0097778 0.00978872 0.00979965 0.00981057 0.00982149 0.00983242 0.00984334 0.00985427 0.00986519 0.00987612 0.00988704 0.00989797 0.00990889 0.00991982 0.00993074 0.00994167 0.00995259 0.00996352 0.00997444 0.00998537 0.00999629 0.0100072 0.0100181 0.0100291 0.01004 0.0100509 0.0100618 0.0100728 0.0100837 0.0100946 0.0101055 0.0101165 0.0101274 0.0101383 0.0101492 0.0101602 0.0101711 0.010182 0.0101929 0.0102039 0.0102148 0.0102257 0.0102366 0.0102476 0.0102585 0.0102694 0.0102803 0.0102913 0.0103022 0.0103131 0.010324 0.010335 0.0103459 0.0103568 0.0103677 0.0103787 0.0103896 0.0104005 0.0104114 0.0104224 0.0104333 0.0104442 0.0104551 0.0104661 0.010477 0.0104879 0.0104988 0.0105098 0.0105207 0.0105316 0.0105425 +-0.00250798 -0.0023037 -0.00186115 -0.00103548 8.764E-05 0.0013727 0.00273521 0.00412285 0.00549248 0.00679141 0.00793117 0.00875418 0.00913216 0.00923064 0.00925594 0.00926902 0.00928027 0.00929124 0.00930218 0.00931311 0.00932404 0.00933498 0.00934591 0.00935684 0.00936777 0.0093787 0.00938963 0.00940056 0.00941149 0.00942242 0.00943335 0.00944429 0.00945522 0.00946615 0.00947708 0.00948801 0.00949894 0.00950987 0.0095208 0.00953173 0.00954266 0.0095536 0.00956453 0.00957546 0.00958639 0.00959732 0.00960825 0.00961918 0.00963011 0.00964104 0.00965198 0.00966291 0.00967384 0.00968477 0.0096957 0.00970663 0.00971756 0.00972849 0.00973942 0.00975035 0.00976129 0.00977222 0.00978315 0.00979408 0.00980501 0.00981594 0.00982687 0.0098378 0.00984873 0.00985966 0.0098706 0.00988153 0.00989246 0.00990339 0.00991432 0.00992525 0.00993618 0.00994711 0.00995804 0.00996898 0.00997991 0.00999084 0.0100018 0.0100127 0.0100236 0.0100346 0.0100455 0.0100564 0.0100674 0.0100783 0.0100892 0.0101001 0.0101111 0.010122 0.0101329 0.0101439 0.0101548 0.0101657 0.0101767 0.0101876 0.0101985 0.0102095 0.0102204 0.0102313 0.0102423 0.0102532 0.0102641 0.010275 0.010286 0.0102969 0.0103078 0.0103188 0.0103297 0.0103406 0.0103516 0.0103625 0.0103734 0.0103844 0.0103953 0.0104062 0.0104171 0.0104281 0.010439 0.0104499 0.0104609 0.0104718 0.0104827 0.0104937 0.0105046 0.0105155 0.0105265 0.0105374 0.0105483 +-0.00250958 -0.00230504 -0.00186197 -0.00103576 8.77254E-05 0.00137303 0.00273573 0.00412357 0.00549346 0.0067928 0.00793327 0.0087575 0.00913668 0.0092356 0.00926098 0.00927408 0.00928533 0.00929631 0.00930726 0.0093182 0.00932913 0.00934007 0.00935101 0.00936195 0.00937288 0.00938382 0.00939476 0.00940569 0.00941663 0.00942757 0.00943851 0.00944944 0.00946038 0.00947132 0.00948225 0.00949319 0.00950413 0.00951507 0.009526 0.00953694 0.00954788 0.00955882 0.00956975 0.00958069 0.00959163 0.00960256 0.0096135 0.00962444 0.00963538 0.00964631 0.00965725 0.00966819 0.00967913 0.00969006 0.009701 0.00971194 0.00972287 0.00973381 0.00974475 0.00975569 0.00976662 0.00977756 0.0097885 0.00979943 0.00981037 0.00982131 0.00983225 0.00984318 0.00985412 0.00986506 0.009876 0.00988693 0.00989787 0.00990881 0.00991974 0.00993068 0.00994162 0.00995256 0.00996349 0.00997443 0.00998537 0.00999631 0.0100072 0.0100182 0.0100291 0.0100401 0.010051 0.0100619 0.0100729 0.0100838 0.0100947 0.0101057 0.0101166 0.0101276 0.0101385 0.0101494 0.0101604 0.0101713 0.0101822 0.0101932 0.0102041 0.0102151 0.010226 0.0102369 0.0102479 0.0102588 0.0102697 0.0102807 0.0102916 0.0103025 0.0103135 0.0103244 0.0103354 0.0103463 0.0103572 0.0103682 0.0103791 0.01039 0.010401 0.0104119 0.0104229 0.0104338 0.0104447 0.0104557 0.0104666 0.0104775 0.0104885 0.0104994 0.0105104 0.0105213 0.0105322 0.0105432 0.0105541 +-0.00251118 -0.00230639 -0.00186279 -0.00103603 8.78109E-05 0.00137335 0.00273625 0.00412429 0.00549445 0.00679419 0.00793537 0.00876082 0.0091412 0.00924055 0.00926602 0.00927913 0.00929039 0.00930138 0.00931233 0.00932328 0.00933422 0.00934516 0.00935611 0.00936705 0.00937799 0.00938894 0.00939988 0.00941083 0.00942177 0.00943271 0.00944366 0.0094546 0.00946554 0.00947649 0.00948743 0.00949837 0.00950932 0.00952026 0.0095312 0.00954215 0.00955309 0.00956403 0.00957498 0.00958592 0.00959686 0.00960781 0.00961875 0.00962969 0.00964064 0.00965158 0.00966252 0.00967347 0.00968441 0.00969535 0.0097063 0.00971724 0.00972819 0.00973913 0.00975007 0.00976102 0.00977196 0.0097829 0.00979385 0.00980479 0.00981573 0.00982668 0.00983762 0.00984856 0.00985951 0.00987045 0.00988139 0.00989234 0.00990328 0.00991422 0.00992517 0.00993611 0.00994705 0.009958 0.00996894 0.00997988 0.00999083 0.0100018 0.0100127 0.0100237 0.0100346 0.0100455 0.0100565 0.0100674 0.0100784 0.0100893 0.0101003 0.0101112 0.0101221 0.0101331 0.010144 0.010155 0.0101659 0.0101769 0.0101878 0.0101988 0.0102097 0.0102206 0.0102316 0.0102425 0.0102535 0.0102644 0.0102754 0.0102863 0.0102972 0.0103082 0.0103191 0.0103301 0.010341 0.010352 0.0103629 0.0103738 0.0103848 0.0103957 0.0104067 0.0104176 0.0104286 0.0104395 0.0104505 0.0104614 0.0104723 0.0104833 0.0104942 0.0105052 0.0105161 0.0105271 0.010538 0.0105489 0.0105599 +-0.00251278 -0.00230773 -0.0018636 -0.0010363 8.78963E-05 0.00137368 0.00273677 0.00412501 0.00549543 0.00679557 0.00793746 0.00876413 0.00914571 0.0092455 0.00927105 0.00928418 0.00929545 0.00930645 0.00931741 0.00932836 0.00933931 0.00935026 0.00936121 0.00937216 0.00938311 0.00939405 0.009405 0.00941595 0.0094269 0.00943785 0.0094488 0.00945975 0.0094707 0.00948165 0.0094926 0.00950355 0.0095145 0.00952545 0.0095364 0.00954735 0.0095583 0.00956925 0.0095802 0.00959115 0.0096021 0.00961305 0.009624 0.00963495 0.0096459 0.00965685 0.0096678 0.00967875 0.0096897 0.00970065 0.0097116 0.00972254 0.00973349 0.00974444 0.00975539 0.00976634 0.00977729 0.00978824 0.00979919 0.00981014 0.00982109 0.00983204 0.00984299 0.00985394 0.00986489 0.00987584 0.00988679 0.00989774 0.00990869 0.00991964 0.00993059 0.00994154 0.00995249 0.00996344 0.00997439 0.00998534 0.00999629 0.0100072 0.0100182 0.0100291 0.0100401 0.010051 0.010062 0.0100729 0.0100839 0.0100948 0.0101058 0.0101167 0.0101277 0.0101386 0.0101496 0.0101605 0.0101715 0.0101824 0.0101934 0.0102043 0.0102153 0.0102262 0.0102372 0.0102481 0.0102591 0.01027 0.010281 0.0102919 0.0103029 0.0103138 0.0103248 0.0103357 0.0103467 0.0103576 0.0103686 0.0103795 0.0103905 0.0104014 0.0104124 0.0104233 0.0104343 0.0104452 0.0104562 0.0104671 0.0104781 0.010489 0.0105 0.0105109 0.0105219 0.0105328 0.0105438 0.0105547 0.0105657 +-0.00251439 -0.00230908 -0.00186442 -0.00103657 8.79818E-05 0.001374 0.00273729 0.00412574 0.00549641 0.00679695 0.00793955 0.00876743 0.00915022 0.00925045 0.00927609 0.00928923 0.00930051 0.00931152 0.00932248 0.00933343 0.00934439 0.00935535 0.0093663 0.00937726 0.00938821 0.00939917 0.00941013 0.00942108 0.00943204 0.00944299 0.00945395 0.00946491 0.00947586 0.00948682 0.00949777 0.00950873 0.00951968 0.00953064 0.0095416 0.00955255 0.00956351 0.00957446 0.00958542 0.00959638 0.00960733 0.00961829 0.00962924 0.0096402 0.00965115 0.00966211 0.00967307 0.00968402 0.00969498 0.00970593 0.00971689 0.00972785 0.0097388 0.00974976 0.00976071 0.00977167 0.00978263 0.00979358 0.00980454 0.00981549 0.00982645 0.0098374 0.00984836 0.00985932 0.00987027 0.00988123 0.00989218 0.00990314 0.0099141 0.00992505 0.00993601 0.00994696 0.00995792 0.00996887 0.00997983 0.00999079 0.0100017 0.0100127 0.0100237 0.0100346 0.0100456 0.0100565 0.0100675 0.0100784 0.0100894 0.0101003 0.0101113 0.0101223 0.0101332 0.0101442 0.0101551 0.0101661 0.010177 0.010188 0.0101989 0.0102099 0.0102209 0.0102318 0.0102428 0.0102537 0.0102647 0.0102756 0.0102866 0.0102976 0.0103085 0.0103195 0.0103304 0.0103414 0.0103523 0.0103633 0.0103742 0.0103852 0.0103962 0.0104071 0.0104181 0.010429 0.01044 0.0104509 0.0104619 0.0104728 0.0104838 0.0104948 0.0105057 0.0105167 0.0105276 0.0105386 0.0105495 0.0105605 0.0105714 +-0.00251599 -0.00231042 -0.00186524 -0.00103685 8.80673E-05 0.00137432 0.0027378 0.00412646 0.00549739 0.00679834 0.00794164 0.00877073 0.00915472 0.00925539 0.00928112 0.00929428 0.00930557 0.00931658 0.00932755 0.00933851 0.00934947 0.00936043 0.0093714 0.00938236 0.00939332 0.00940428 0.00941525 0.00942621 0.00943717 0.00944813 0.00945909 0.00947006 0.00948102 0.00949198 0.00950294 0.0095139 0.00952487 0.00953583 0.00954679 0.00955775 0.00956871 0.00957968 0.00959064 0.0096016 0.00961256 0.00962352 0.00963449 0.00964545 0.00965641 0.00966737 0.00967833 0.0096893 0.00970026 0.00971122 0.00972218 0.00973315 0.00974411 0.00975507 0.00976603 0.00977699 0.00978796 0.00979892 0.00980988 0.00982084 0.0098318 0.00984277 0.00985373 0.00986469 0.00987565 0.00988661 0.00989758 0.00990854 0.0099195 0.00993046 0.00994142 0.00995239 0.00996335 0.00997431 0.00998527 0.00999623 0.0100072 0.0100182 0.0100291 0.0100401 0.010051 0.010062 0.010073 0.0100839 0.0100949 0.0101059 0.0101168 0.0101278 0.0101387 0.0101497 0.0101607 0.0101716 0.0101826 0.0101936 0.0102045 0.0102155 0.0102264 0.0102374 0.0102484 0.0102593 0.0102703 0.0102812 0.0102922 0.0103032 0.0103141 0.0103251 0.0103361 0.010347 0.010358 0.0103689 0.0103799 0.0103909 0.0104018 0.0104128 0.0104238 0.0104347 0.0104457 0.0104566 0.0104676 0.0104786 0.0104895 0.0105005 0.0105115 0.0105224 0.0105334 0.0105443 0.0105553 0.0105663 0.0105772 +-0.00251759 -0.00231176 -0.00186605 -0.00103712 8.81527E-05 0.00137465 0.00273832 0.00412718 0.00549837 0.00679971 0.00794372 0.00877403 0.00915923 0.00926033 0.00928615 0.00929933 0.00931062 0.00932164 0.00933262 0.00934358 0.00935455 0.00936552 0.00937649 0.00938746 0.00939843 0.00940939 0.00942036 0.00943133 0.0094423 0.00945327 0.00946424 0.0094752 0.00948617 0.00949714 0.00950811 0.00951908 0.00953005 0.00954101 0.00955198 0.00956295 0.00957392 0.00958489 0.00959586 0.00960682 0.00961779 0.00962876 0.00963973 0.0096507 0.00966166 0.00967263 0.0096836 0.00969457 0.00970554 0.00971651 0.00972747 0.00973844 0.00974941 0.00976038 0.00977135 0.00978232 0.00979328 0.00980425 0.00981522 0.00982619 0.00983716 0.00984813 0.00985909 0.00987006 0.00988103 0.009892 0.00990297 0.00991393 0.0099249 0.00993587 0.00994684 0.00995781 0.00996878 0.00997974 0.00999071 0.0100017 0.0100126 0.0100236 0.0100346 0.0100456 0.0100565 0.0100675 0.0100785 0.0100894 0.0101004 0.0101114 0.0101223 0.0101333 0.0101443 0.0101552 0.0101662 0.0101772 0.0101881 0.0101991 0.0102101 0.010221 0.010232 0.010243 0.010254 0.0102649 0.0102759 0.0102869 0.0102978 0.0103088 0.0103198 0.0103307 0.0103417 0.0103527 0.0103636 0.0103746 0.0103856 0.0103965 0.0104075 0.0104185 0.0104294 0.0104404 0.0104514 0.0104623 0.0104733 0.0104843 0.0104953 0.0105062 0.0105172 0.0105282 0.0105391 0.0105501 0.0105611 0.010572 0.010583 +-0.00251919 -0.00231311 -0.00186686 -0.00103739 8.82382E-05 0.00137497 0.00273884 0.0041279 0.00549935 0.00680109 0.0079458 0.00877732 0.00916372 0.00926527 0.00929117 0.00930438 0.00931568 0.0093267 0.00933768 0.00934866 0.00935963 0.00937061 0.00938158 0.00939256 0.00940353 0.0094145 0.00942548 0.00943645 0.00944743 0.0094584 0.00946938 0.00948035 0.00949133 0.0095023 0.00951327 0.00952425 0.00953522 0.0095462 0.00955717 0.00956815 0.00957912 0.0095901 0.00960107 0.00961204 0.00962302 0.00963399 0.00964497 0.00965594 0.00966692 0.00967789 0.00968887 0.00969984 0.00971081 0.00972179 0.00973276 0.00974374 0.00975471 0.00976569 0.00977666 0.00978764 0.00979861 0.00980958 0.00982056 0.00983153 0.00984251 0.00985348 0.00986446 0.00987543 0.00988641 0.00989738 0.00990835 0.00991933 0.0099303 0.00994128 0.00995225 0.00996323 0.0099742 0.00998518 0.00999615 0.0100071 0.0100181 0.0100291 0.01004 0.010051 0.010062 0.010073 0.0100839 0.0100949 0.0101059 0.0101169 0.0101278 0.0101388 0.0101498 0.0101608 0.0101717 0.0101827 0.0101937 0.0102047 0.0102156 0.0102266 0.0102376 0.0102486 0.0102595 0.0102705 0.0102815 0.0102925 0.0103034 0.0103144 0.0103254 0.0103364 0.0103473 0.0103583 0.0103693 0.0103803 0.0103912 0.0104022 0.0104132 0.0104242 0.0104351 0.0104461 0.0104571 0.0104681 0.010479 0.01049 0.010501 0.010512 0.0105229 0.0105339 0.0105449 0.0105558 0.0105668 0.0105778 0.0105888 +-0.00252079 -0.00231445 -0.00186768 -0.00103766 8.83237E-05 0.00137529 0.00273936 0.00412861 0.00550033 0.00680247 0.00794788 0.0087806 0.00916822 0.00927021 0.0092962 0.00930942 0.00932073 0.00933176 0.00934275 0.00935373 0.00936471 0.00937569 0.00938667 0.00939765 0.00940863 0.00941961 0.00943059 0.00944157 0.00945255 0.00946353 0.00947452 0.0094855 0.00949648 0.00950746 0.00951844 0.00952942 0.0095404 0.00955138 0.00956236 0.00957334 0.00958432 0.0095953 0.00960628 0.00961726 0.00962824 0.00963923 0.00965021 0.00966119 0.00967217 0.00968315 0.00969413 0.00970511 0.00971609 0.00972707 0.00973805 0.00974903 0.00976001 0.00977099 0.00978197 0.00979295 0.00980394 0.00981492 0.0098259 0.00983688 0.00984786 0.00985884 0.00986982 0.0098808 0.00989178 0.00990276 0.00991374 0.00992472 0.0099357 0.00994668 0.00995766 0.00996864 0.00997963 0.00999061 0.0100016 0.0100126 0.0100235 0.0100345 0.0100455 0.0100565 0.0100675 0.0100785 0.0100894 0.0101004 0.0101114 0.0101224 0.0101334 0.0101443 0.0101553 0.0101663 0.0101773 0.0101883 0.0101992 0.0102102 0.0102212 0.0102322 0.0102432 0.0102541 0.0102651 0.0102761 0.0102871 0.0102981 0.010309 0.01032 0.010331 0.010342 0.010353 0.0103639 0.0103749 0.0103859 0.0103969 0.0104079 0.0104189 0.0104298 0.0104408 0.0104518 0.0104628 0.0104738 0.0104847 0.0104957 0.0105067 0.0105177 0.0105287 0.0105396 0.0105506 0.0105616 0.0105726 0.0105836 0.0105945 +-0.00252239 -0.00231579 -0.00186849 -0.00103793 8.84092E-05 0.00137562 0.00273987 0.00412933 0.00550131 0.00680384 0.00794995 0.00878388 0.0091727 0.00927515 0.00930122 0.00931446 0.00932578 0.00933682 0.00934781 0.0093588 0.00936978 0.00938077 0.00939176 0.00940274 0.00941373 0.00942472 0.00943571 0.00944669 0.00945768 0.00946867 0.00947965 0.00949064 0.00950163 0.00951261 0.0095236 0.00953459 0.00954557 0.00955656 0.00956755 0.00957853 0.00958952 0.00960051 0.00961149 0.00962248 0.00963347 0.00964446 0.00965544 0.00966643 0.00967742 0.0096884 0.00969939 0.00971038 0.00972136 0.00973235 0.00974334 0.00975432 0.00976531 0.0097763 0.00978728 0.00979827 0.00980926 0.00982024 0.00983123 0.00984222 0.00985321 0.00986419 0.00987518 0.00988617 0.00989715 0.00990814 0.00991913 0.00993011 0.0099411 0.00995209 0.00996307 0.00997406 0.00998505 0.00999603 0.010007 0.010018 0.010029 0.01004 0.010051 0.010062 0.0100729 0.0100839 0.0100949 0.0101059 0.0101169 0.0101279 0.0101389 0.0101499 0.0101608 0.0101718 0.0101828 0.0101938 0.0102048 0.0102158 0.0102268 0.0102377 0.0102487 0.0102597 0.0102707 0.0102817 0.0102927 0.0103037 0.0103147 0.0103256 0.0103366 0.0103476 0.0103586 0.0103696 0.0103806 0.0103916 0.0104025 0.0104135 0.0104245 0.0104355 0.0104465 0.0104575 0.0104685 0.0104795 0.0104904 0.0105014 0.0105124 0.0105234 0.0105344 0.0105454 0.0105564 0.0105674 0.0105783 0.0105893 0.0106003 +-0.00252399 -0.00231713 -0.0018693 -0.0010382 8.84948E-05 0.00137594 0.00274039 0.00413005 0.00550228 0.00680521 0.00795203 0.00878716 0.00917719 0.00928008 0.00930624 0.0093195 0.00933083 0.00934187 0.00935287 0.00936386 0.00937486 0.00938585 0.00939684 0.00940784 0.00941883 0.00942982 0.00944082 0.00945181 0.0094628 0.00947379 0.00948479 0.00949578 0.00950677 0.00951777 0.00952876 0.00953975 0.00955075 0.00956174 0.00957273 0.00958373 0.00959472 0.00960571 0.0096167 0.0096277 0.00963869 0.00964968 0.00966068 0.00967167 0.00968266 0.00969366 0.00970465 0.00971564 0.00972663 0.00973763 0.00974862 0.00975961 0.00977061 0.0097816 0.00979259 0.00980359 0.00981458 0.00982557 0.00983656 0.00984756 0.00985855 0.00986954 0.00988054 0.00989153 0.00990252 0.00991352 0.00992451 0.0099355 0.0099465 0.00995749 0.00996848 0.00997947 0.00999047 0.0100015 0.0100125 0.0100234 0.0100344 0.0100454 0.0100564 0.0100674 0.0100784 0.0100894 0.0101004 0.0101114 0.0101224 0.0101334 0.0101444 0.0101554 0.0101664 0.0101773 0.0101883 0.0101993 0.0102103 0.0102213 0.0102323 0.0102433 0.0102543 0.0102653 0.0102763 0.0102873 0.0102983 0.0103093 0.0103203 0.0103313 0.0103422 0.0103532 0.0103642 0.0103752 0.0103862 0.0103972 0.0104082 0.0104192 0.0104302 0.0104412 0.0104522 0.0104632 0.0104742 0.0104852 0.0104961 0.0105071 0.0105181 0.0105291 0.0105401 0.0105511 0.0105621 0.0105731 0.0105841 0.0105951 0.0106061 +-0.00252559 -0.00231847 -0.00187011 -0.00103847 8.85803E-05 0.00137626 0.00274091 0.00413077 0.00550325 0.00680658 0.00795409 0.00879043 0.00918167 0.00928501 0.00931126 0.00932454 0.00933587 0.00934692 0.00935793 0.00936893 0.00937993 0.00939093 0.00940193 0.00941293 0.00942393 0.00943493 0.00944592 0.00945692 0.00946792 0.00947892 0.00948992 0.00950092 0.00951192 0.00952292 0.00953392 0.00954492 0.00955592 0.00956692 0.00957792 0.00958891 0.00959991 0.00961091 0.00962191 0.00963291 0.00964391 0.00965491 0.00966591 0.00967691 0.00968791 0.00969891 0.00970991 0.0097209 0.0097319 0.0097429 0.0097539 0.0097649 0.0097759 0.0097869 0.0097979 0.0098089 0.0098199 0.0098309 0.0098419 0.0098529 0.00986389 0.00987489 0.00988589 0.00989689 0.00990789 0.00991889 0.00992989 0.00994089 0.00995189 0.00996289 0.00997389 0.00998489 0.00999589 0.0100069 0.0100179 0.0100289 0.0100399 0.0100509 0.0100619 0.0100729 0.0100839 0.0100949 0.0101059 0.0101169 0.0101279 0.0101389 0.0101499 0.0101609 0.0101719 0.0101829 0.0101939 0.0102049 0.0102159 0.0102269 0.0102379 0.0102489 0.0102599 0.0102709 0.0102819 0.0102929 0.0103039 0.0103149 0.0103259 0.0103369 0.0103479 0.0103589 0.0103699 0.0103809 0.0103919 0.0104029 0.0104139 0.0104249 0.0104359 0.0104469 0.0104579 0.0104689 0.0104799 0.0104909 0.0105019 0.0105128 0.0105238 0.0105348 0.0105458 0.0105568 0.0105678 0.0105788 0.0105898 0.0106008 0.0106118 +-0.00252718 -0.0023198 -0.00187092 -0.00103874 8.86658E-05 0.00137658 0.00274142 0.00413148 0.00550423 0.00680795 0.00795616 0.00879369 0.00918615 0.00928994 0.00931628 0.00932958 0.00934092 0.00935197 0.00936299 0.00937399 0.009385 0.009396 0.00940701 0.00941801 0.00942902 0.00944003 0.00945103 0.00946204 0.00947304 0.00948405 0.00949505 0.00950606 0.00951706 0.00952807 0.00953907 0.00955008 0.00956109 0.00957209 0.0095831 0.0095941 0.00960511 0.00961611 0.00962712 0.00963812 0.00964913 0.00966013 0.00967114 0.00968214 0.00969315 0.00970416 0.00971516 0.00972617 0.00973717 0.00974818 0.00975918 0.00977019 0.00978119 0.0097922 0.0098032 0.00981421 0.00982522 0.00983622 0.00984723 0.00985823 0.00986924 0.00988024 0.00989125 0.00990225 0.00991326 0.00992426 0.00993527 0.00994627 0.00995728 0.00996829 0.00997929 0.0099903 0.0100013 0.0100123 0.0100233 0.0100343 0.0100453 0.0100563 0.0100673 0.0100783 0.0100893 0.0101004 0.0101114 0.0101224 0.0101334 0.0101444 0.0101554 0.0101664 0.0101774 0.0101884 0.0101994 0.0102104 0.0102214 0.0102324 0.0102434 0.0102544 0.0102654 0.0102764 0.0102874 0.0102984 0.0103095 0.0103205 0.0103315 0.0103425 0.0103535 0.0103645 0.0103755 0.0103865 0.0103975 0.0104085 0.0104195 0.0104305 0.0104415 0.0104525 0.0104635 0.0104745 0.0104855 0.0104965 0.0105076 0.0105186 0.0105296 0.0105406 0.0105516 0.0105626 0.0105736 0.0105846 0.0105956 0.0106066 0.0106176 +-0.00252878 -0.00232114 -0.00187173 -0.00103901 8.87513E-05 0.0013769 0.00274194 0.0041322 0.0055052 0.00680932 0.00795822 0.00879695 0.00919062 0.00929487 0.0093213 0.00933461 0.00934596 0.00935702 0.00936804 0.00937906 0.00939007 0.00940108 0.00941209 0.0094231 0.00943411 0.00944512 0.00945614 0.00946715 0.00947816 0.00948917 0.00950018 0.00951119 0.00952221 0.00953322 0.00954423 0.00955524 0.00956625 0.00957726 0.00958828 0.00959929 0.0096103 0.00962131 0.00963232 0.00964333 0.00965435 0.00966536 0.00967637 0.00968738 0.00969839 0.0097094 0.00972041 0.00973143 0.00974244 0.00975345 0.00976446 0.00977547 0.00978648 0.0097975 0.00980851 0.00981952 0.00983053 0.00984154 0.00985255 0.00986357 0.00987458 0.00988559 0.0098966 0.00990761 0.00991862 0.00992964 0.00994065 0.00995166 0.00996267 0.00997368 0.00998469 0.0099957 0.0100067 0.0100177 0.0100287 0.0100398 0.0100508 0.0100618 0.0100728 0.0100838 0.0100948 0.0101058 0.0101168 0.0101278 0.0101389 0.0101499 0.0101609 0.0101719 0.0101829 0.0101939 0.0102049 0.0102159 0.0102269 0.010238 0.010249 0.01026 0.010271 0.010282 0.010293 0.010304 0.010315 0.0103261 0.0103371 0.0103481 0.0103591 0.0103701 0.0103811 0.0103921 0.0104031 0.0104141 0.0104252 0.0104362 0.0104472 0.0104582 0.0104692 0.0104802 0.0104912 0.0105022 0.0105132 0.0105243 0.0105353 0.0105463 0.0105573 0.0105683 0.0105793 0.0105903 0.0106013 0.0106124 0.0106234 +-0.00253038 -0.00232248 -0.00187254 -0.00103927 8.88369E-05 0.00137722 0.00274245 0.00413291 0.00550617 0.00681068 0.00796027 0.0088002 0.00919509 0.00929979 0.00932631 0.00933965 0.009351 0.00936207 0.0093731 0.00938412 0.00939513 0.00940615 0.00941717 0.00942819 0.0094392 0.00945022 0.00946124 0.00947226 0.00948328 0.00949429 0.00950531 0.00951633 0.00952735 0.00953836 0.00954938 0.0095604 0.00957142 0.00958244 0.00959345 0.00960447 0.00961549 0.00962651 0.00963752 0.00964854 0.00965956 0.00967058 0.0096816 0.00969261 0.00970363 0.00971465 0.00972567 0.00973668 0.0097477 0.00975872 0.00976974 0.00978076 0.00979177 0.00980279 0.00981381 0.00982483 0.00983584 0.00984686 0.00985788 0.0098689 0.00987992 0.00989093 0.00990195 0.00991297 0.00992399 0.009935 0.00994602 0.00995704 0.00996806 0.00997908 0.00999009 0.0100011 0.0100121 0.0100231 0.0100342 0.0100452 0.0100562 0.0100672 0.0100782 0.0100893 0.0101003 0.0101113 0.0101223 0.0101333 0.0101443 0.0101554 0.0101664 0.0101774 0.0101884 0.0101994 0.0102104 0.0102215 0.0102325 0.0102435 0.0102545 0.0102655 0.0102766 0.0102876 0.0102986 0.0103096 0.0103206 0.0103316 0.0103427 0.0103537 0.0103647 0.0103757 0.0103867 0.0103978 0.0104088 0.0104198 0.0104308 0.0104418 0.0104528 0.0104639 0.0104749 0.0104859 0.0104969 0.0105079 0.0105189 0.01053 0.010541 0.010552 0.010563 0.010574 0.0105851 0.0105961 0.0106071 0.0106181 0.0106291 +-0.00253197 -0.00232381 -0.00187335 -0.00103954 8.89225E-05 0.00137755 0.00274296 0.00413363 0.00550714 0.00681204 0.00796233 0.00880345 0.00919956 0.00930472 0.00933132 0.00934468 0.00935604 0.00936712 0.00937815 0.00938917 0.0094002 0.00941122 0.00942225 0.00943327 0.00944429 0.00945532 0.00946634 0.00947737 0.00948839 0.00949941 0.00951044 0.00952146 0.00953249 0.00954351 0.00955453 0.00956556 0.00957658 0.0095876 0.00959863 0.00960965 0.00962068 0.0096317 0.00964272 0.00965375 0.00966477 0.0096758 0.00968682 0.00969784 0.00970887 0.00971989 0.00973092 0.00974194 0.00975296 0.00976399 0.00977501 0.00978604 0.00979706 0.00980808 0.00981911 0.00983013 0.00984116 0.00985218 0.0098632 0.00987423 0.00988525 0.00989628 0.0099073 0.00991832 0.00992935 0.00994037 0.0099514 0.00996242 0.00997344 0.00998447 0.00999549 0.0100065 0.0100175 0.0100286 0.0100396 0.0100506 0.0100616 0.0100727 0.0100837 0.0100947 0.0101057 0.0101168 0.0101278 0.0101388 0.0101498 0.0101609 0.0101719 0.0101829 0.0101939 0.0102049 0.010216 0.010227 0.010238 0.010249 0.0102601 0.0102711 0.0102821 0.0102931 0.0103042 0.0103152 0.0103262 0.0103372 0.0103483 0.0103593 0.0103703 0.0103813 0.0103924 0.0104034 0.0104144 0.0104254 0.0104365 0.0104475 0.0104585 0.0104695 0.0104805 0.0104916 0.0105026 0.0105136 0.0105246 0.0105357 0.0105467 0.0105577 0.0105687 0.0105798 0.0105908 0.0106018 0.0106128 0.0106239 0.0106349 +-0.00253357 -0.00232515 -0.00187415 -0.00103981 8.9008E-05 0.00137787 0.00274348 0.00413434 0.00550811 0.00681341 0.00796438 0.0088067 0.00920402 0.00930964 0.00933633 0.00934971 0.00936108 0.00937216 0.0093832 0.00939423 0.00940526 0.00941629 0.00942732 0.00943835 0.00944938 0.00946041 0.00947144 0.00948247 0.0094935 0.00950453 0.00951556 0.00952659 0.00953762 0.00954865 0.00955968 0.00957071 0.00958174 0.00959277 0.0096038 0.00961483 0.00962586 0.00963689 0.00964792 0.00965895 0.00966998 0.00968101 0.00969204 0.00970307 0.0097141 0.00972513 0.00973616 0.00974719 0.00975822 0.00976925 0.00978029 0.00979132 0.00980235 0.00981338 0.00982441 0.00983544 0.00984647 0.0098575 0.00986853 0.00987956 0.00989059 0.00990162 0.00991265 0.00992368 0.00993471 0.00994574 0.00995677 0.0099678 0.00997883 0.00998986 0.0100009 0.0100119 0.0100229 0.010034 0.010045 0.010056 0.0100671 0.0100781 0.0100891 0.0101002 0.0101112 0.0101222 0.0101332 0.0101443 0.0101553 0.0101663 0.0101774 0.0101884 0.0101994 0.0102105 0.0102215 0.0102325 0.0102436 0.0102546 0.0102656 0.0102766 0.0102877 0.0102987 0.0103097 0.0103208 0.0103318 0.0103428 0.0103539 0.0103649 0.0103759 0.0103869 0.010398 0.010409 0.01042 0.0104311 0.0104421 0.0104531 0.0104642 0.0104752 0.0104862 0.0104972 0.0105083 0.0105193 0.0105303 0.0105414 0.0105524 0.0105634 0.0105745 0.0105855 0.0105965 0.0106075 0.0106186 0.0106296 0.0106406 +-0.00253517 -0.00232648 -0.00187496 -0.00104008 8.90936E-05 0.00137819 0.00274399 0.00413505 0.00550908 0.00681476 0.00796643 0.00880994 0.00920848 0.00931456 0.00934134 0.00935473 0.00936612 0.0093772 0.00938825 0.00939928 0.00941032 0.00942136 0.00943239 0.00944343 0.00945447 0.0094655 0.00947654 0.00948758 0.00949861 0.00950965 0.00952068 0.00953172 0.00954276 0.00955379 0.00956483 0.00957587 0.0095869 0.00959794 0.00960898 0.00962001 0.00963105 0.00964208 0.00965312 0.00966416 0.00967519 0.00968623 0.00969727 0.0097083 0.00971934 0.00973037 0.00974141 0.00975245 0.00976348 0.00977452 0.00978556 0.00979659 0.00980763 0.00981867 0.0098297 0.00984074 0.00985177 0.00986281 0.00987385 0.00988488 0.00989592 0.00990696 0.00991799 0.00992903 0.00994006 0.0099511 0.00996214 0.00997317 0.00998421 0.00999525 0.0100063 0.0100173 0.0100284 0.0100394 0.0100504 0.0100615 0.0100725 0.0100835 0.0100946 0.0101056 0.0101166 0.0101277 0.0101387 0.0101498 0.0101608 0.0101718 0.0101829 0.0101939 0.0102049 0.010216 0.010227 0.010238 0.0102491 0.0102601 0.0102712 0.0102822 0.0102932 0.0103043 0.0103153 0.0103263 0.0103374 0.0103484 0.0103594 0.0103705 0.0103815 0.0103926 0.0104036 0.0104146 0.0104257 0.0104367 0.0104477 0.0104588 0.0104698 0.0104808 0.0104919 0.0105029 0.010514 0.010525 0.010536 0.0105471 0.0105581 0.0105691 0.0105802 0.0105912 0.0106022 0.0106133 0.0106243 0.0106354 0.0106464 +-0.00253676 -0.00232782 -0.00187576 -0.00104034 8.91792E-05 0.00137851 0.0027445 0.00413576 0.00551004 0.00681612 0.00796847 0.00881317 0.00921293 0.00931947 0.00934635 0.00935976 0.00937115 0.00938224 0.00939329 0.00940434 0.00941538 0.00942642 0.00943747 0.00944851 0.00945955 0.00947059 0.00948164 0.00949268 0.00950372 0.00951476 0.00952581 0.00953685 0.00954789 0.00955893 0.00956998 0.00958102 0.00959206 0.0096031 0.00961415 0.00962519 0.00963623 0.00964727 0.00965832 0.00966936 0.0096804 0.00969144 0.00970249 0.00971353 0.00972457 0.00973561 0.00974666 0.0097577 0.00976874 0.00977978 0.00979083 0.00980187 0.00981291 0.00982395 0.009835 0.00984604 0.00985708 0.00986812 0.00987917 0.00989021 0.00990125 0.00991229 0.00992334 0.00993438 0.00994542 0.00995646 0.00996751 0.00997855 0.00998959 0.0100006 0.0100117 0.0100227 0.0100338 0.0100448 0.0100558 0.0100669 0.0100779 0.010089 0.0101 0.0101111 0.0101221 0.0101331 0.0101442 0.0101552 0.0101663 0.0101773 0.0101884 0.0101994 0.0102104 0.0102215 0.0102325 0.0102436 0.0102546 0.0102657 0.0102767 0.0102877 0.0102988 0.0103098 0.0103209 0.0103319 0.0103429 0.010354 0.010365 0.0103761 0.0103871 0.0103982 0.0104092 0.0104202 0.0104313 0.0104423 0.0104534 0.0104644 0.0104755 0.0104865 0.0104975 0.0105086 0.0105196 0.0105307 0.0105417 0.0105528 0.0105638 0.0105748 0.0105859 0.0105969 0.010608 0.010619 0.0106301 0.0106411 0.0106521 +-0.00253835 -0.00232915 -0.00187657 -0.00104061 8.92648E-05 0.00137883 0.00274502 0.00413647 0.00551101 0.00681748 0.00797051 0.0088164 0.00921738 0.00932438 0.00935135 0.00936478 0.00937618 0.00938728 0.00939834 0.00940939 0.00942044 0.00943149 0.00944254 0.00945358 0.00946463 0.00947568 0.00948673 0.00949778 0.00950883 0.00951988 0.00953092 0.00954197 0.00955302 0.00956407 0.00957512 0.00958617 0.00959722 0.00960827 0.00961931 0.00963036 0.00964141 0.00965246 0.00966351 0.00967456 0.00968561 0.00969665 0.0097077 0.00971875 0.0097298 0.00974085 0.0097519 0.00976295 0.009774 0.00978504 0.00979609 0.00980714 0.00981819 0.00982924 0.00984029 0.00985134 0.00986238 0.00987343 0.00988448 0.00989553 0.00990658 0.00991763 0.00992868 0.00993973 0.00995077 0.00996182 0.00997287 0.00998392 0.00999497 0.010006 0.0100171 0.0100281 0.0100392 0.0100502 0.0100613 0.0100723 0.0100834 0.0100944 0.0101055 0.0101165 0.0101276 0.0101386 0.0101496 0.0101607 0.0101717 0.0101828 0.0101938 0.0102049 0.0102159 0.010227 0.010238 0.0102491 0.0102601 0.0102712 0.0102822 0.0102933 0.0103043 0.0103154 0.0103264 0.0103375 0.0103485 0.0103596 0.0103706 0.0103817 0.0103927 0.0104038 0.0104148 0.0104259 0.0104369 0.010448 0.010459 0.0104701 0.0104811 0.0104922 0.0105032 0.0105143 0.0105253 0.0105364 0.0105474 0.0105585 0.0105695 0.0105805 0.0105916 0.0106026 0.0106137 0.0106247 0.0106358 0.0106468 0.0106579 +-0.00253995 -0.00233048 -0.00187737 -0.00104087 8.93504E-05 0.00137915 0.00274553 0.00413718 0.00551197 0.00681883 0.00797255 0.00881962 0.00922183 0.0093293 0.00935636 0.00936981 0.00938121 0.00939232 0.00940338 0.00941444 0.00942549 0.00943655 0.0094476 0.00945866 0.00946971 0.00948077 0.00949182 0.00950288 0.00951393 0.00952499 0.00953604 0.0095471 0.00955815 0.00956921 0.00958026 0.00959132 0.00960237 0.00961343 0.00962448 0.00963554 0.00964659 0.00965765 0.0096687 0.00967976 0.00969081 0.00970186 0.00971292 0.00972397 0.00973503 0.00974608 0.00975714 0.00976819 0.00977925 0.0097903 0.00980136 0.00981241 0.00982347 0.00983452 0.00984558 0.00985663 0.00986769 0.00987874 0.0098898 0.00990085 0.00991191 0.00992296 0.00993402 0.00994507 0.00995613 0.00996718 0.00997824 0.00998929 0.0100003 0.0100114 0.0100225 0.0100335 0.0100446 0.0100556 0.0100667 0.0100777 0.0100888 0.0100998 0.0101109 0.0101219 0.010133 0.0101441 0.0101551 0.0101662 0.0101772 0.0101883 0.0101993 0.0102104 0.0102214 0.0102325 0.0102436 0.0102546 0.0102657 0.0102767 0.0102878 0.0102988 0.0103099 0.0103209 0.010332 0.010343 0.0103541 0.0103652 0.0103762 0.0103873 0.0103983 0.0104094 0.0104204 0.0104315 0.0104425 0.0104536 0.0104646 0.0104757 0.0104868 0.0104978 0.0105089 0.0105199 0.010531 0.010542 0.0105531 0.0105641 0.0105752 0.0105863 0.0105973 0.0106084 0.0106194 0.0106305 0.0106415 0.0106526 0.0106636 +-0.00254154 -0.00233181 -0.00187817 -0.00104114 8.9436E-05 0.00137947 0.00274604 0.00413789 0.00551294 0.00682018 0.00797459 0.00882284 0.00922627 0.00933421 0.00936136 0.00937483 0.00938624 0.00939736 0.00940842 0.00941949 0.00943055 0.00944161 0.00945267 0.00946373 0.00947479 0.00948585 0.00949691 0.00950797 0.00951904 0.0095301 0.00954116 0.00955222 0.00956328 0.00957434 0.0095854 0.00959646 0.00960752 0.00961858 0.00962965 0.00964071 0.00965177 0.00966283 0.00967389 0.00968495 0.00969601 0.00970707 0.00971813 0.00972919 0.00974026 0.00975132 0.00976238 0.00977344 0.0097845 0.00979556 0.00980662 0.00981768 0.00982874 0.0098398 0.00985087 0.00986193 0.00987299 0.00988405 0.00989511 0.00990617 0.00991723 0.00992829 0.00993935 0.00995042 0.00996148 0.00997254 0.0099836 0.00999466 0.0100057 0.0100168 0.0100278 0.0100389 0.01005 0.010061 0.0100721 0.0100831 0.0100942 0.0101053 0.0101163 0.0101274 0.0101385 0.0101495 0.0101606 0.0101716 0.0101827 0.0101938 0.0102048 0.0102159 0.0102269 0.010238 0.0102491 0.0102601 0.0102712 0.0102822 0.0102933 0.0103044 0.0103154 0.0103265 0.0103376 0.0103486 0.0103597 0.0103707 0.0103818 0.0103929 0.0104039 0.010415 0.010426 0.0104371 0.0104482 0.0104592 0.0104703 0.0104813 0.0104924 0.0105035 0.0105145 0.0105256 0.0105366 0.0105477 0.0105588 0.0105698 0.0105809 0.010592 0.010603 0.0106141 0.0106251 0.0106362 0.0106473 0.0106583 0.0106694 +-0.00254314 -0.00233314 -0.00187898 -0.00104141 8.95216E-05 0.00137979 0.00274655 0.0041386 0.0055139 0.00682153 0.00797662 0.00882605 0.00923071 0.00933911 0.00936636 0.00937985 0.00939127 0.00940239 0.00941346 0.00942453 0.0094356 0.00944667 0.00945773 0.0094688 0.00947987 0.00949094 0.009502 0.00951307 0.00952414 0.0095352 0.00954627 0.00955734 0.00956841 0.00957947 0.00959054 0.00960161 0.00961267 0.00962374 0.00963481 0.00964588 0.00965694 0.00966801 0.00967908 0.00969014 0.00970121 0.00971228 0.00972335 0.00973441 0.00974548 0.00975655 0.00976762 0.00977868 0.00978975 0.00980082 0.00981188 0.00982295 0.00983402 0.00984509 0.00985615 0.00986722 0.00987829 0.00988935 0.00990042 0.00991149 0.00992256 0.00993362 0.00994469 0.00995576 0.00996682 0.00997789 0.00998896 0.01 0.0100111 0.0100222 0.0100332 0.0100443 0.0100554 0.0100664 0.0100775 0.0100886 0.0100996 0.0101107 0.0101218 0.0101328 0.0101439 0.010155 0.010166 0.0101771 0.0101882 0.0101992 0.0102103 0.0102214 0.0102324 0.0102435 0.0102546 0.0102656 0.0102767 0.0102878 0.0102988 0.0103099 0.010321 0.010332 0.0103431 0.0103542 0.0103652 0.0103763 0.0103874 0.0103984 0.0104095 0.0104206 0.0104316 0.0104427 0.0104538 0.0104648 0.0104759 0.010487 0.010498 0.0105091 0.0105202 0.0105313 0.0105423 0.0105534 0.0105645 0.0105755 0.0105866 0.0105977 0.0106087 0.0106198 0.0106309 0.0106419 0.010653 0.0106641 0.0106751 +-0.00254473 -0.00233447 -0.00187978 -0.00104167 8.96072E-05 0.00138011 0.00274706 0.00413931 0.00551486 0.00682288 0.00797865 0.00882926 0.00923515 0.00934402 0.00937136 0.00938486 0.0093963 0.00940742 0.0094185 0.00942958 0.00944065 0.00945172 0.0094628 0.00947387 0.00948494 0.00949602 0.00950709 0.00951816 0.00952924 0.00954031 0.00955138 0.00956246 0.00957353 0.0095846 0.00959568 0.00960675 0.00961782 0.0096289 0.00963997 0.00965104 0.00966212 0.00967319 0.00968426 0.00969534 0.00970641 0.00971748 0.00972856 0.00973963 0.0097507 0.00976178 0.00977285 0.00978392 0.009795 0.00980607 0.00981714 0.00982822 0.00983929 0.00985036 0.00986144 0.00987251 0.00988358 0.00989466 0.00990573 0.0099168 0.00992788 0.00993895 0.00995002 0.0099611 0.00997217 0.00998324 0.00999432 0.0100054 0.0100165 0.0100275 0.0100386 0.0100497 0.0100608 0.0100718 0.0100829 0.010094 0.0101051 0.0101161 0.0101272 0.0101383 0.0101493 0.0101604 0.0101715 0.0101826 0.0101936 0.0102047 0.0102158 0.0102269 0.0102379 0.010249 0.0102601 0.0102712 0.0102822 0.0102933 0.0103044 0.0103154 0.0103265 0.0103376 0.0103487 0.0103597 0.0103708 0.0103819 0.010393 0.010404 0.0104151 0.0104262 0.0104373 0.0104483 0.0104594 0.0104705 0.0104815 0.0104926 0.0105037 0.0105148 0.0105258 0.0105369 0.010548 0.0105591 0.0105701 0.0105812 0.0105923 0.0106034 0.0106144 0.0106255 0.0106366 0.0106476 0.0106587 0.0106698 0.0106809 +-0.00254632 -0.0023358 -0.00188058 -0.00104193 8.96928E-05 0.00138042 0.00274757 0.00414002 0.00551582 0.00682423 0.00798067 0.00883247 0.00923958 0.00934892 0.00937635 0.00938988 0.00940132 0.00941245 0.00942354 0.00943462 0.0094457 0.00945678 0.00946786 0.00947894 0.00949002 0.0095011 0.00951218 0.00952326 0.00953434 0.00954541 0.00955649 0.00956757 0.00957865 0.00958973 0.00960081 0.00961189 0.00962297 0.00963405 0.00964513 0.00965621 0.00966729 0.00967837 0.00968945 0.00970053 0.00971161 0.00972269 0.00973377 0.00974485 0.00975593 0.009767 0.00977808 0.00978916 0.00980024 0.00981132 0.0098224 0.00983348 0.00984456 0.00985564 0.00986672 0.0098778 0.00988888 0.00989996 0.00991104 0.00992212 0.0099332 0.00994428 0.00995536 0.00996644 0.00997752 0.00998859 0.00999967 0.0100108 0.0100218 0.0100329 0.010044 0.0100551 0.0100662 0.0100772 0.0100883 0.0100994 0.0101105 0.0101215 0.0101326 0.0101437 0.0101548 0.0101659 0.0101769 0.010188 0.0101991 0.0102102 0.0102213 0.0102323 0.0102434 0.0102545 0.0102656 0.0102767 0.0102877 0.0102988 0.0103099 0.010321 0.0103321 0.0103431 0.0103542 0.0103653 0.0103764 0.0103875 0.0103985 0.0104096 0.0104207 0.0104318 0.0104429 0.0104539 0.010465 0.0104761 0.0104872 0.0104983 0.0105093 0.0105204 0.0105315 0.0105426 0.0105536 0.0105647 0.0105758 0.0105869 0.010598 0.010609 0.0106201 0.0106312 0.0106423 0.0106534 0.0106644 0.0106755 0.0106866 +-0.00254791 -0.00233713 -0.00188138 -0.0010422 8.97785E-05 0.00138074 0.00274808 0.00414072 0.00551678 0.00682557 0.00798269 0.00883567 0.009244 0.00935382 0.00938135 0.00939489 0.00940634 0.00941748 0.00942857 0.00943966 0.00945075 0.00946183 0.00947292 0.009484 0.00949509 0.00950617 0.00951726 0.00952835 0.00953943 0.00955052 0.0095616 0.00957269 0.00958377 0.00959486 0.00960595 0.00961703 0.00962812 0.0096392 0.00965029 0.00966137 0.00967246 0.00968355 0.00969463 0.00970572 0.0097168 0.00972789 0.00973897 0.00975006 0.00976114 0.00977223 0.00978332 0.0097944 0.00980549 0.00981657 0.00982766 0.00983874 0.00984983 0.00986092 0.009872 0.00988309 0.00989417 0.00990526 0.00991634 0.00992743 0.00993852 0.0099496 0.00996069 0.00997177 0.00998286 0.00999394 0.010005 0.0100161 0.0100272 0.0100383 0.0100494 0.0100605 0.0100715 0.0100826 0.0100937 0.0101048 0.0101159 0.010127 0.0101381 0.0101491 0.0101602 0.0101713 0.0101824 0.0101935 0.0102046 0.0102157 0.0102267 0.0102378 0.0102489 0.01026 0.0102711 0.0102822 0.0102933 0.0103043 0.0103154 0.0103265 0.0103376 0.0103487 0.0103598 0.0103709 0.0103819 0.010393 0.0104041 0.0104152 0.0104263 0.0104374 0.0104485 0.0104595 0.0104706 0.0104817 0.0104928 0.0105039 0.010515 0.0105261 0.0105371 0.0105482 0.0105593 0.0105704 0.0105815 0.0105926 0.0106037 0.0106147 0.0106258 0.0106369 0.010648 0.0106591 0.0106702 0.0106813 0.0106923 +-0.0025495 -0.00233846 -0.00188218 -0.00104246 8.98641E-05 0.00138106 0.00274859 0.00414143 0.00551774 0.00682691 0.00798471 0.00883886 0.00924842 0.00935872 0.00938634 0.00939991 0.00941136 0.00942251 0.00943361 0.0094447 0.00945579 0.00946688 0.00947797 0.00948907 0.00950016 0.00951125 0.00952234 0.00953343 0.00954453 0.00955562 0.00956671 0.0095778 0.00958889 0.00959999 0.00961108 0.00962217 0.00963326 0.00964435 0.00965544 0.00966654 0.00967763 0.00968872 0.00969981 0.0097109 0.009722 0.00973309 0.00974418 0.00975527 0.00976636 0.00977745 0.00978855 0.00979964 0.00981073 0.00982182 0.00983291 0.00984401 0.0098551 0.00986619 0.00987728 0.00988837 0.00989946 0.00991056 0.00992165 0.00993274 0.00994383 0.00995492 0.00996602 0.00997711 0.0099882 0.00999929 0.0100104 0.0100215 0.0100326 0.0100437 0.0100547 0.0100658 0.0100769 0.010088 0.0100991 0.0101102 0.0101213 0.0101324 0.0101435 0.0101546 0.0101657 0.0101768 0.0101879 0.0101989 0.01021 0.0102211 0.0102322 0.0102433 0.0102544 0.0102655 0.0102766 0.0102877 0.0102988 0.0103099 0.010321 0.010332 0.0103431 0.0103542 0.0103653 0.0103764 0.0103875 0.0103986 0.0104097 0.0104208 0.0104319 0.010443 0.0104541 0.0104651 0.0104762 0.0104873 0.0104984 0.0105095 0.0105206 0.0105317 0.0105428 0.0105539 0.010565 0.0105761 0.0105872 0.0105982 0.0106093 0.0106204 0.0106315 0.0106426 0.0106537 0.0106648 0.0106759 0.010687 0.0106981 +-0.00255109 -0.00233979 -0.00188297 -0.00104273 8.99498E-05 0.00138138 0.0027491 0.00414213 0.00551869 0.00682825 0.00798673 0.00884205 0.00925284 0.00936361 0.00939133 0.00940492 0.00941638 0.00942753 0.00943864 0.00944974 0.00946083 0.00947193 0.00948303 0.00949413 0.00950523 0.00951632 0.00952742 0.00953852 0.00954962 0.00956072 0.00957181 0.00958291 0.00959401 0.00960511 0.00961621 0.0096273 0.0096384 0.0096495 0.0096606 0.0096717 0.00968279 0.00969389 0.00970499 0.00971609 0.00972719 0.00973828 0.00974938 0.00976048 0.00977158 0.00978268 0.00979377 0.00980487 0.00981597 0.00982707 0.00983817 0.00984926 0.00986036 0.00987146 0.00988256 0.00989366 0.00990475 0.00991585 0.00992695 0.00993805 0.00994915 0.00996024 0.00997134 0.00998244 0.00999354 0.0100046 0.0100157 0.0100268 0.0100379 0.010049 0.0100601 0.0100712 0.0100823 0.0100934 0.0101045 0.0101156 0.0101267 0.0101378 0.0101489 0.01016 0.0101711 0.0101822 0.0101933 0.0102044 0.0102155 0.0102266 0.0102377 0.0102488 0.0102599 0.010271 0.0102821 0.0102932 0.0103043 0.0103154 0.0103265 0.0103376 0.0103487 0.0103598 0.0103709 0.010382 0.0103931 0.0104042 0.0104153 0.0104264 0.0104375 0.0104486 0.0104597 0.0104708 0.0104818 0.0104929 0.010504 0.0105151 0.0105262 0.0105373 0.0105484 0.0105595 0.0105706 0.0105817 0.0105928 0.0106039 0.010615 0.0106261 0.0106372 0.0106483 0.0106594 0.0106705 0.0106816 0.0106927 0.0107038 +-0.00255268 -0.00234111 -0.00188377 -0.00104299 9.00354E-05 0.0013817 0.0027496 0.00414284 0.00551965 0.00682959 0.00798874 0.00884523 0.00925726 0.00936851 0.00939632 0.00940993 0.0094214 0.00943255 0.00944367 0.00945477 0.00946588 0.00947698 0.00948808 0.00949919 0.00951029 0.0095214 0.0095325 0.00954361 0.00955471 0.00956581 0.00957692 0.00958802 0.00959913 0.00961023 0.00962133 0.00963244 0.00964354 0.00965465 0.00966575 0.00967686 0.00968796 0.00969906 0.00971017 0.00972127 0.00973238 0.00974348 0.00975458 0.00976569 0.00977679 0.0097879 0.009799 0.0098101 0.00982121 0.00983231 0.00984342 0.00985452 0.00986563 0.00987673 0.00988783 0.00989894 0.00991004 0.00992115 0.00993225 0.00994335 0.00995446 0.00996556 0.00997667 0.00998777 0.00999888 0.01001 0.0100211 0.0100322 0.0100433 0.0100544 0.0100655 0.0100766 0.0100877 0.0100988 0.0101099 0.010121 0.0101321 0.0101432 0.0101543 0.0101654 0.0101765 0.0101876 0.0101987 0.0102099 0.010221 0.0102321 0.0102432 0.0102543 0.0102654 0.0102765 0.0102876 0.0102987 0.0103098 0.0103209 0.010332 0.0103431 0.0103542 0.0103653 0.0103764 0.0103875 0.0103986 0.0104097 0.0104208 0.0104319 0.010443 0.0104541 0.0104652 0.0104764 0.0104875 0.0104986 0.0105097 0.0105208 0.0105319 0.010543 0.0105541 0.0105652 0.0105763 0.0105874 0.0105985 0.0106096 0.0106207 0.0106318 0.0106429 0.010654 0.0106651 0.0106762 0.0106873 0.0106984 0.0107095 +-0.00255427 -0.00234244 -0.00188457 -0.00104325 9.01211E-05 0.00138202 0.00275011 0.00414354 0.0055206 0.00683093 0.00799075 0.00884841 0.00926167 0.0093734 0.00940131 0.00941493 0.00942641 0.00943758 0.00944869 0.00945981 0.00947092 0.00948203 0.00949314 0.00950425 0.00951536 0.00952647 0.00953758 0.00954869 0.0095598 0.00957091 0.00958202 0.00959313 0.00960424 0.00961535 0.00962646 0.00963757 0.00964868 0.00965979 0.0096709 0.00968201 0.00969312 0.00970423 0.00971534 0.00972645 0.00973756 0.00974867 0.00975978 0.00977089 0.009782 0.00979311 0.00980423 0.00981534 0.00982645 0.00983756 0.00984867 0.00985978 0.00987089 0.009882 0.00989311 0.00990422 0.00991533 0.00992644 0.00993755 0.00994866 0.00995977 0.00997088 0.00998199 0.0099931 0.0100042 0.0100153 0.0100264 0.0100375 0.0100487 0.0100598 0.0100709 0.010082 0.0100931 0.0101042 0.0101153 0.0101264 0.0101375 0.0101486 0.0101598 0.0101709 0.010182 0.0101931 0.0102042 0.0102153 0.0102264 0.0102375 0.0102486 0.0102597 0.0102709 0.010282 0.0102931 0.0103042 0.0103153 0.0103264 0.0103375 0.0103486 0.0103597 0.0103708 0.010382 0.0103931 0.0104042 0.0104153 0.0104264 0.0104375 0.0104486 0.0104597 0.0104708 0.010482 0.0104931 0.0105042 0.0105153 0.0105264 0.0105375 0.0105486 0.0105597 0.0105708 0.0105819 0.0105931 0.0106042 0.0106153 0.0106264 0.0106375 0.0106486 0.0106597 0.0106708 0.0106819 0.010693 0.0107042 0.0107153 +-0.00255586 -0.00234376 -0.00188536 -0.00104351 9.02068E-05 0.00138233 0.00275062 0.00414425 0.00552156 0.00683227 0.00799275 0.00885158 0.00926608 0.00937829 0.00940629 0.00941994 0.00943143 0.0094426 0.00945372 0.00946484 0.00947595 0.00948707 0.00949819 0.0095093 0.00952042 0.00953154 0.00954265 0.00955377 0.00956489 0.009576 0.00958712 0.00959824 0.00960935 0.00962047 0.00963159 0.0096427 0.00965382 0.00966493 0.00967605 0.00968717 0.00969828 0.0097094 0.00972052 0.00973163 0.00974275 0.00975387 0.00976498 0.0097761 0.00978722 0.00979833 0.00980945 0.00982056 0.00983168 0.0098428 0.00985391 0.00986503 0.00987615 0.00988726 0.00989838 0.0099095 0.00992061 0.00993173 0.00994285 0.00995396 0.00996508 0.00997619 0.00998731 0.00999843 0.0100095 0.0100207 0.0100318 0.0100429 0.010054 0.0100651 0.0100762 0.0100874 0.0100985 0.0101096 0.0101207 0.0101318 0.0101429 0.0101541 0.0101652 0.0101763 0.0101874 0.0101985 0.0102096 0.0102208 0.0102319 0.010243 0.0102541 0.0102652 0.0102763 0.0102875 0.0102986 0.0103097 0.0103208 0.0103319 0.010343 0.0103542 0.0103653 0.0103764 0.0103875 0.0103986 0.0104097 0.0104209 0.010432 0.0104431 0.0104542 0.0104653 0.0104764 0.0104876 0.0104987 0.0105098 0.0105209 0.010532 0.0105431 0.0105542 0.0105654 0.0105765 0.0105876 0.0105987 0.0106098 0.0106209 0.0106321 0.0106432 0.0106543 0.0106654 0.0106765 0.0106876 0.0106988 0.0107099 0.010721 +-0.00255745 -0.00234509 -0.00188616 -0.00104378 9.02925E-05 0.00138265 0.00275113 0.00414495 0.00552251 0.0068336 0.00799476 0.00885475 0.00927048 0.00938317 0.00941128 0.00942494 0.00943644 0.00944761 0.00945874 0.00946987 0.00948099 0.00949211 0.00950324 0.00951436 0.00952548 0.0095366 0.00954773 0.00955885 0.00956997 0.00958109 0.00959222 0.00960334 0.00961446 0.00962559 0.00963671 0.00964783 0.00965895 0.00967008 0.0096812 0.00969232 0.00970344 0.00971457 0.00972569 0.00973681 0.00974793 0.00975906 0.00977018 0.0097813 0.00979242 0.00980355 0.00981467 0.00982579 0.00983691 0.00984804 0.00985916 0.00987028 0.0098814 0.00989253 0.00990365 0.00991477 0.00992589 0.00993702 0.00994814 0.00995926 0.00997039 0.00998151 0.00999263 0.0100038 0.0100149 0.010026 0.0100371 0.0100482 0.0100594 0.0100705 0.0100816 0.0100927 0.0101039 0.010115 0.0101261 0.0101372 0.0101483 0.0101595 0.0101706 0.0101817 0.0101928 0.010204 0.0102151 0.0102262 0.0102373 0.0102484 0.0102596 0.0102707 0.0102818 0.0102929 0.0103041 0.0103152 0.0103263 0.0103374 0.0103486 0.0103597 0.0103708 0.0103819 0.010393 0.0104042 0.0104153 0.0104264 0.0104375 0.0104487 0.0104598 0.0104709 0.010482 0.0104931 0.0105043 0.0105154 0.0105265 0.0105376 0.0105488 0.0105599 0.010571 0.0105821 0.0105933 0.0106044 0.0106155 0.0106266 0.0106377 0.0106489 0.01066 0.0106711 0.0106822 0.0106934 0.0107045 0.0107156 0.0107267 +-0.00255904 -0.00234641 -0.00188695 -0.00104404 9.03782E-05 0.00138297 0.00275163 0.00414565 0.00552346 0.00683493 0.00799676 0.00885792 0.00927488 0.00938806 0.00941626 0.00942994 0.00944145 0.00945263 0.00946377 0.0094749 0.00948603 0.00949715 0.00950828 0.00951941 0.00953054 0.00954167 0.0095528 0.00956393 0.00957506 0.00958618 0.00959731 0.00960844 0.00961957 0.0096307 0.00964183 0.00965296 0.00966409 0.00967521 0.00968634 0.00969747 0.0097086 0.00971973 0.00973086 0.00974199 0.00975312 0.00976424 0.00977537 0.0097865 0.00979763 0.00980876 0.00981989 0.00983102 0.00984215 0.00985327 0.0098644 0.00987553 0.00988666 0.00989779 0.00990892 0.00992005 0.00993118 0.0099423 0.00995343 0.00996456 0.00997569 0.00998682 0.00999795 0.0100091 0.0100202 0.0100313 0.0100425 0.0100536 0.0100647 0.0100758 0.010087 0.0100981 0.0101092 0.0101204 0.0101315 0.0101426 0.0101538 0.0101649 0.010176 0.0101871 0.0101983 0.0102094 0.0102205 0.0102317 0.0102428 0.0102539 0.010265 0.0102762 0.0102873 0.0102984 0.0103096 0.0103207 0.0103318 0.0103429 0.0103541 0.0103652 0.0103763 0.0103875 0.0103986 0.0104097 0.0104208 0.010432 0.0104431 0.0104542 0.0104654 0.0104765 0.0104876 0.0104987 0.0105099 0.010521 0.0105321 0.0105433 0.0105544 0.0105655 0.0105766 0.0105878 0.0105989 0.01061 0.0106212 0.0106323 0.0106434 0.0106545 0.0106657 0.0106768 0.0106879 0.0106991 0.0107102 0.0107213 0.0107324 +-0.00256062 -0.00234774 -0.00188775 -0.0010443 9.04639E-05 0.00138328 0.00275214 0.00414635 0.00552441 0.00683626 0.00799875 0.00886107 0.00927927 0.00939294 0.00942124 0.00943494 0.00944645 0.00945765 0.00946879 0.00947992 0.00949106 0.00950219 0.00951333 0.00952446 0.0095356 0.00954673 0.00955787 0.009569 0.00958014 0.00959127 0.00960241 0.00961354 0.00962468 0.00963581 0.00964695 0.00965808 0.00966922 0.00968035 0.00969149 0.00970262 0.00971376 0.00972489 0.00973603 0.00974716 0.0097583 0.00976943 0.00978057 0.0097917 0.00980284 0.00981397 0.00982511 0.00983624 0.00984738 0.00985851 0.00986965 0.00988078 0.00989192 0.00990305 0.00991418 0.00992532 0.00993645 0.00994759 0.00995872 0.00996986 0.00998099 0.00999213 0.0100033 0.0100144 0.0100255 0.0100367 0.0100478 0.0100589 0.0100701 0.0100812 0.0100923 0.0101035 0.0101146 0.0101257 0.0101369 0.010148 0.0101592 0.0101703 0.0101814 0.0101926 0.0102037 0.0102148 0.010226 0.0102371 0.0102482 0.0102594 0.0102705 0.0102816 0.0102928 0.0103039 0.010315 0.0103262 0.0103373 0.0103484 0.0103596 0.0103707 0.0103818 0.010393 0.0104041 0.0104153 0.0104264 0.0104375 0.0104487 0.0104598 0.0104709 0.0104821 0.0104932 0.0105043 0.0105155 0.0105266 0.0105377 0.0105489 0.01056 0.0105711 0.0105823 0.0105934 0.0106045 0.0106157 0.0106268 0.010638 0.0106491 0.0106602 0.0106714 0.0106825 0.0106936 0.0107048 0.0107159 0.010727 0.0107382 +-0.00256221 -0.00234906 -0.00188854 -0.00104456 9.05496E-05 0.0013836 0.00275264 0.00414705 0.00552536 0.00683759 0.00800075 0.00886423 0.00928366 0.00939782 0.00942621 0.00943994 0.00945146 0.00946266 0.00947381 0.00948495 0.00949609 0.00950723 0.00951837 0.00952951 0.00954065 0.0095518 0.00956294 0.00957408 0.00958522 0.00959636 0.0096075 0.00961864 0.00962978 0.00964092 0.00965207 0.00966321 0.00967435 0.00968549 0.00969663 0.00970777 0.00971891 0.00973005 0.00974119 0.00975233 0.00976348 0.00977462 0.00978576 0.0097969 0.00980804 0.00981918 0.00983032 0.00984146 0.0098526 0.00986374 0.00987489 0.00988603 0.00989717 0.00990831 0.00991945 0.00993059 0.00994173 0.00995287 0.00996401 0.00997515 0.0099863 0.00999744 0.0100086 0.0100197 0.0100309 0.010042 0.0100531 0.0100643 0.0100754 0.0100866 0.0100977 0.0101088 0.01012 0.0101311 0.0101423 0.0101534 0.0101646 0.0101757 0.0101868 0.010198 0.0102091 0.0102203 0.0102314 0.0102425 0.0102537 0.0102648 0.010276 0.0102871 0.0102982 0.0103094 0.0103205 0.0103317 0.0103428 0.0103539 0.0103651 0.0103762 0.0103874 0.0103985 0.0104097 0.0104208 0.0104319 0.0104431 0.0104542 0.0104654 0.0104765 0.0104876 0.0104988 0.0105099 0.0105211 0.0105322 0.0105433 0.0105545 0.0105656 0.0105768 0.0105879 0.0105991 0.0106102 0.0106213 0.0106325 0.0106436 0.0106548 0.0106659 0.010677 0.0106882 0.0106993 0.0107105 0.0107216 0.0107327 0.0107439 +-0.0025638 -0.00235038 -0.00188933 -0.00104482 9.06353E-05 0.00138392 0.00275315 0.00414775 0.00552631 0.00683892 0.00800274 0.00886738 0.00928805 0.0094027 0.00943119 0.00944494 0.00945647 0.00946767 0.00947882 0.00948997 0.00950112 0.00951227 0.00952341 0.00953456 0.00954571 0.00955686 0.009568 0.00957915 0.0095903 0.00960144 0.00961259 0.00962374 0.00963489 0.00964603 0.00965718 0.00966833 0.00967947 0.00969062 0.00970177 0.00971292 0.00972406 0.00973521 0.00974636 0.00975751 0.00976865 0.0097798 0.00979095 0.00980209 0.00981324 0.00982439 0.00983554 0.00984668 0.00985783 0.00986898 0.00988012 0.00989127 0.00990242 0.00991357 0.00992471 0.00993586 0.00994701 0.00995815 0.0099693 0.00998045 0.0099916 0.0100027 0.0100139 0.010025 0.0100362 0.0100473 0.0100585 0.0100696 0.0100808 0.0100919 0.0101031 0.0101142 0.0101254 0.0101365 0.0101477 0.0101588 0.01017 0.0101811 0.0101922 0.0102034 0.0102145 0.0102257 0.0102368 0.010248 0.0102591 0.0102703 0.0102814 0.0102926 0.0103037 0.0103149 0.010326 0.0103372 0.0103483 0.0103595 0.0103706 0.0103817 0.0103929 0.010404 0.0104152 0.0104263 0.0104375 0.0104486 0.0104598 0.0104709 0.0104821 0.0104932 0.0105044 0.0105155 0.0105267 0.0105378 0.010549 0.0105601 0.0105712 0.0105824 0.0105935 0.0106047 0.0106158 0.010627 0.0106381 0.0106493 0.0106604 0.0106716 0.0106827 0.0106939 0.010705 0.0107162 0.0107273 0.0107385 0.0107496 +-0.00256538 -0.0023517 -0.00189012 -0.00104508 9.0721E-05 0.00138423 0.00275365 0.00414845 0.00552726 0.00684024 0.00800472 0.00887052 0.00929243 0.00940757 0.00943616 0.00944993 0.00946147 0.00947268 0.00948384 0.00949499 0.00950615 0.0095173 0.00952845 0.00953961 0.00955076 0.00956191 0.00957307 0.00958422 0.00959537 0.00960653 0.00961768 0.00962883 0.00963999 0.00965114 0.00966229 0.00967345 0.0096846 0.00969575 0.00970691 0.00971806 0.00972921 0.00974037 0.00975152 0.00976267 0.00977383 0.00978498 0.00979613 0.00980729 0.00981844 0.00982959 0.00984075 0.0098519 0.00986305 0.00987421 0.00988536 0.00989651 0.00990767 0.00991882 0.00992997 0.00994113 0.00995228 0.00996343 0.00997459 0.00998574 0.00999689 0.010008 0.0100192 0.0100304 0.0100415 0.0100527 0.0100638 0.010075 0.0100861 0.0100973 0.0101084 0.0101196 0.0101307 0.0101419 0.010153 0.0101642 0.0101753 0.0101865 0.0101977 0.0102088 0.01022 0.0102311 0.0102423 0.0102534 0.0102646 0.0102757 0.0102869 0.010298 0.0103092 0.0103203 0.0103315 0.0103426 0.0103538 0.010365 0.0103761 0.0103873 0.0103984 0.0104096 0.0104207 0.0104319 0.010443 0.0104542 0.0104653 0.0104765 0.0104876 0.0104988 0.0105099 0.0105211 0.0105323 0.0105434 0.0105546 0.0105657 0.0105769 0.010588 0.0105992 0.0106103 0.0106215 0.0106326 0.0106438 0.0106549 0.0106661 0.0106772 0.0106884 0.0106996 0.0107107 0.0107219 0.010733 0.0107442 0.0107553 +-0.00256697 -0.00235302 -0.00189091 -0.00104534 9.08068E-05 0.00138455 0.00275416 0.00414915 0.0055282 0.00684157 0.00800671 0.00887366 0.00929681 0.00941245 0.00944114 0.00945492 0.00946647 0.00947769 0.00948885 0.00950001 0.00951117 0.00952233 0.00953349 0.00954465 0.00955581 0.00956697 0.00957813 0.00958929 0.00960045 0.00961161 0.00962277 0.00963393 0.00964509 0.00965625 0.00966741 0.00967857 0.00968973 0.00970088 0.00971204 0.0097232 0.00973436 0.00974552 0.00975668 0.00976784 0.009779 0.00979016 0.00980132 0.00981248 0.00982364 0.0098348 0.00984596 0.00985712 0.00986828 0.00987944 0.0098906 0.00990175 0.00991291 0.00992407 0.00993523 0.00994639 0.00995755 0.00996871 0.00997987 0.00999103 0.0100022 0.0100133 0.0100245 0.0100357 0.0100468 0.010058 0.0100691 0.0100803 0.0100915 0.0101026 0.0101138 0.0101249 0.0101361 0.0101473 0.0101584 0.0101696 0.0101807 0.0101919 0.0102031 0.0102142 0.0102254 0.0102365 0.0102477 0.0102589 0.01027 0.0102812 0.0102923 0.0103035 0.0103147 0.0103258 0.010337 0.0103481 0.0103593 0.0103705 0.0103816 0.0103928 0.0104039 0.0104151 0.0104262 0.0104374 0.0104486 0.0104597 0.0104709 0.010482 0.0104932 0.0105044 0.0105155 0.0105267 0.0105378 0.010549 0.0105602 0.0105713 0.0105825 0.0105936 0.0106048 0.010616 0.0106271 0.0106383 0.0106494 0.0106606 0.0106718 0.0106829 0.0106941 0.0107052 0.0107164 0.0107276 0.0107387 0.0107499 0.010761 +-0.00256855 -0.00235434 -0.0018917 -0.0010456 9.08925E-05 0.00138487 0.00275466 0.00414985 0.00552915 0.00684289 0.00800869 0.00887679 0.00930119 0.00941732 0.00944611 0.00945992 0.00947147 0.00948269 0.00949387 0.00950503 0.0095162 0.00952736 0.00953853 0.0095497 0.00956086 0.00957203 0.00958319 0.00959436 0.00960552 0.00961669 0.00962785 0.00963902 0.00965019 0.00966135 0.00967252 0.00968368 0.00969485 0.00970601 0.00971718 0.00972834 0.00973951 0.00975068 0.00976184 0.00977301 0.00978417 0.00979534 0.0098065 0.00981767 0.00982883 0.00984 0.00985117 0.00986233 0.0098735 0.00988466 0.00989583 0.00990699 0.00991816 0.00992933 0.00994049 0.00995166 0.00996282 0.00997399 0.00998515 0.00999632 0.0100075 0.0100186 0.0100298 0.010041 0.0100521 0.0100633 0.0100745 0.0100856 0.0100968 0.010108 0.0101191 0.0101303 0.0101415 0.0101526 0.0101638 0.010175 0.0101861 0.0101973 0.0102085 0.0102196 0.0102308 0.010242 0.0102531 0.0102643 0.0102755 0.0102866 0.0102978 0.010309 0.0103201 0.0103313 0.0103425 0.0103536 0.0103648 0.0103759 0.0103871 0.0103983 0.0104094 0.0104206 0.0104318 0.0104429 0.0104541 0.0104653 0.0104764 0.0104876 0.0104988 0.0105099 0.0105211 0.0105323 0.0105434 0.0105546 0.0105658 0.0105769 0.0105881 0.0105993 0.0106104 0.0106216 0.0106328 0.0106439 0.0106551 0.0106663 0.0106774 0.0106886 0.0106998 0.0107109 0.0107221 0.0107332 0.0107444 0.0107556 0.0107667 +-0.00257014 -0.00235566 -0.00189249 -0.00104586 9.09783E-05 0.00138518 0.00275516 0.00415055 0.00553009 0.00684421 0.00801066 0.00887992 0.00930556 0.00942219 0.00945108 0.00946491 0.00947647 0.0094877 0.00949888 0.00951005 0.00952122 0.00953239 0.00954356 0.00955474 0.00956591 0.00957708 0.00958825 0.00959942 0.0096106 0.00962177 0.00963294 0.00964411 0.00965528 0.00966645 0.00967763 0.0096888 0.00969997 0.00971114 0.00972231 0.00973348 0.00974466 0.00975583 0.009767 0.00977817 0.00978934 0.00980051 0.00981169 0.00982286 0.00983403 0.0098452 0.00985637 0.00986754 0.00987872 0.00988989 0.00990106 0.00991223 0.0099234 0.00993457 0.00994575 0.00995692 0.00996809 0.00997926 0.00999043 0.0100016 0.0100128 0.0100239 0.0100351 0.0100463 0.0100575 0.0100686 0.0100798 0.010091 0.0101022 0.0101133 0.0101245 0.0101357 0.0101468 0.010158 0.0101692 0.0101804 0.0101915 0.0102027 0.0102139 0.010225 0.0102362 0.0102474 0.0102586 0.0102697 0.0102809 0.0102921 0.0103032 0.0103144 0.0103256 0.0103368 0.0103479 0.0103591 0.0103703 0.0103814 0.0103926 0.0104038 0.010415 0.0104261 0.0104373 0.0104485 0.0104596 0.0104708 0.010482 0.0104932 0.0105043 0.0105155 0.0105267 0.0105378 0.010549 0.0105602 0.0105714 0.0105825 0.0105937 0.0106049 0.010616 0.0106272 0.0106384 0.0106496 0.0106607 0.0106719 0.0106831 0.0106943 0.0107054 0.0107166 0.0107278 0.0107389 0.0107501 0.0107613 0.0107725 +-0.00257172 -0.00235697 -0.00189328 -0.00104611 9.1064E-05 0.0013855 0.00275567 0.00415124 0.00553103 0.00684553 0.00801264 0.00888305 0.00930992 0.00942705 0.00945604 0.00946989 0.00948146 0.0094927 0.00950389 0.00951506 0.00952624 0.00953742 0.0095486 0.00955978 0.00957095 0.00958213 0.00959331 0.00960449 0.00961567 0.00962684 0.00963802 0.0096492 0.00966038 0.00967155 0.00968273 0.00969391 0.00970509 0.00971627 0.00972744 0.00973862 0.0097498 0.00976098 0.00977216 0.00978333 0.00979451 0.00980569 0.00981687 0.00982804 0.00983922 0.0098504 0.00986158 0.00987276 0.00988393 0.00989511 0.00990629 0.00991747 0.00992864 0.00993982 0.009951 0.00996218 0.00997336 0.00998453 0.00999571 0.0100069 0.0100181 0.0100292 0.0100404 0.0100516 0.0100628 0.010074 0.0100851 0.0100963 0.0101075 0.0101187 0.0101298 0.010141 0.0101522 0.0101634 0.0101746 0.0101857 0.0101969 0.0102081 0.0102193 0.0102304 0.0102416 0.0102528 0.010264 0.0102752 0.0102863 0.0102975 0.0103087 0.0103199 0.010331 0.0103422 0.0103534 0.0103646 0.0103758 0.0103869 0.0103981 0.0104093 0.0104205 0.0104316 0.0104428 0.010454 0.0104652 0.0104764 0.0104875 0.0104987 0.0105099 0.0105211 0.0105322 0.0105434 0.0105546 0.0105658 0.010577 0.0105881 0.0105993 0.0106105 0.0106217 0.0106328 0.010644 0.0106552 0.0106664 0.0106776 0.0106887 0.0106999 0.0107111 0.0107223 0.0107334 0.0107446 0.0107558 0.010767 0.0107782 +-0.00257331 -0.00235829 -0.00189406 -0.00104637 9.11498E-05 0.00138581 0.00275617 0.00415194 0.00553198 0.00684684 0.00801461 0.00888617 0.00931429 0.00943192 0.00946101 0.00947488 0.00948646 0.0094977 0.00950889 0.00952008 0.00953126 0.00954245 0.00955363 0.00956481 0.009576 0.00958718 0.00959837 0.00960955 0.00962073 0.00963192 0.0096431 0.00965429 0.00966547 0.00967665 0.00968784 0.00969902 0.00971021 0.00972139 0.00973257 0.00974376 0.00975494 0.00976613 0.00977731 0.00978849 0.00979968 0.00981086 0.00982205 0.00983323 0.00984441 0.0098556 0.00986678 0.00987796 0.00988915 0.00990033 0.00991152 0.0099227 0.00993388 0.00994507 0.00995625 0.00996744 0.00997862 0.0099898 0.010001 0.0100122 0.0100234 0.0100345 0.0100457 0.0100569 0.0100681 0.0100793 0.0100905 0.0101016 0.0101128 0.010124 0.0101352 0.0101464 0.0101576 0.0101687 0.0101799 0.0101911 0.0102023 0.0102135 0.0102247 0.0102359 0.010247 0.0102582 0.0102694 0.0102806 0.0102918 0.010303 0.0103141 0.0103253 0.0103365 0.0103477 0.0103589 0.0103701 0.0103812 0.0103924 0.0104036 0.0104148 0.010426 0.0104372 0.0104483 0.0104595 0.0104707 0.0104819 0.0104931 0.0105043 0.0105155 0.0105266 0.0105378 0.010549 0.0105602 0.0105714 0.0105826 0.0105937 0.0106049 0.0106161 0.0106273 0.0106385 0.0106497 0.0106608 0.010672 0.0106832 0.0106944 0.0107056 0.0107168 0.0107279 0.0107391 0.0107503 0.0107615 0.0107727 0.0107839 +-0.00257489 -0.00235961 -0.00189485 -0.00104663 9.12356E-05 0.00138613 0.00275667 0.00415263 0.00553292 0.00684816 0.00801658 0.00888928 0.00931865 0.00943678 0.00946597 0.00947986 0.00949145 0.0095027 0.0095139 0.00952509 0.00953628 0.00954747 0.00955866 0.00956985 0.00958104 0.00959223 0.00960342 0.00961461 0.0096258 0.00963699 0.00964818 0.00965937 0.00967056 0.00968175 0.00969294 0.00970413 0.00971532 0.00972651 0.0097377 0.00974889 0.00976008 0.00977127 0.00978246 0.00979365 0.00980484 0.00981603 0.00982722 0.00983841 0.0098496 0.00986079 0.00987198 0.00988317 0.00989436 0.00990555 0.00991674 0.00992793 0.00993912 0.00995031 0.0099615 0.00997269 0.00998388 0.00999507 0.0100063 0.0100175 0.0100286 0.0100398 0.010051 0.0100622 0.0100734 0.0100846 0.0100958 0.010107 0.0101182 0.0101294 0.0101405 0.0101517 0.0101629 0.0101741 0.0101853 0.0101965 0.0102077 0.0102189 0.0102301 0.0102413 0.0102524 0.0102636 0.0102748 0.010286 0.0102972 0.0103084 0.0103196 0.0103308 0.010342 0.0103532 0.0103643 0.0103755 0.0103867 0.0103979 0.0104091 0.0104203 0.0104315 0.0104427 0.0104539 0.0104651 0.0104762 0.0104874 0.0104986 0.0105098 0.010521 0.0105322 0.0105434 0.0105546 0.0105658 0.010577 0.0105881 0.0105993 0.0106105 0.0106217 0.0106329 0.0106441 0.0106553 0.0106665 0.0106777 0.0106889 0.0107 0.0107112 0.0107224 0.0107336 0.0107448 0.010756 0.0107672 0.0107784 0.0107896 +-0.00257647 -0.00236092 -0.00189563 -0.00104689 9.13214E-05 0.00138644 0.00275717 0.00415333 0.00553386 0.00684947 0.00801855 0.00889239 0.009323 0.00944164 0.00947094 0.00948485 0.00949644 0.0095077 0.0095189 0.0095301 0.0095413 0.00955249 0.00956369 0.00957488 0.00958608 0.00959728 0.00960847 0.00961967 0.00963087 0.00964206 0.00965326 0.00966445 0.00967565 0.00968685 0.00969804 0.00970924 0.00972043 0.00973163 0.00974283 0.00975402 0.00976522 0.00977642 0.00978761 0.00979881 0.00981 0.0098212 0.0098324 0.00984359 0.00985479 0.00986599 0.00987718 0.00988838 0.00989957 0.00991077 0.00992197 0.00993316 0.00994436 0.00995556 0.00996675 0.00997795 0.00998914 0.0100003 0.0100115 0.0100227 0.0100339 0.0100451 0.0100563 0.0100675 0.0100787 0.0100899 0.0101011 0.0101123 0.0101235 0.0101347 0.0101459 0.0101571 0.0101683 0.0101795 0.0101907 0.0102019 0.0102131 0.0102243 0.0102355 0.0102467 0.0102579 0.010269 0.0102802 0.0102914 0.0103026 0.0103138 0.010325 0.0103362 0.0103474 0.0103586 0.0103698 0.010381 0.0103922 0.0104034 0.0104146 0.0104258 0.010437 0.0104482 0.0104594 0.0104706 0.0104818 0.010493 0.0105042 0.0105154 0.0105266 0.0105378 0.010549 0.0105602 0.0105713 0.0105825 0.0105937 0.0106049 0.0106161 0.0106273 0.0106385 0.0106497 0.0106609 0.0106721 0.0106833 0.0106945 0.0107057 0.0107169 0.0107281 0.0107393 0.0107505 0.0107617 0.0107729 0.0107841 0.0107953 +-0.00257805 -0.00236224 -0.00189642 -0.00104714 9.14072E-05 0.00138675 0.00275767 0.00415402 0.0055348 0.00685078 0.00802051 0.00889549 0.00932735 0.0094465 0.0094759 0.00948983 0.00950143 0.00951269 0.0095239 0.00953511 0.00954631 0.00955751 0.00956871 0.00957992 0.00959112 0.00960232 0.00961352 0.00962473 0.00963593 0.00964713 0.00965833 0.00966954 0.00968074 0.00969194 0.00970314 0.00971434 0.00972555 0.00973675 0.00974795 0.00975915 0.00977036 0.00978156 0.00979276 0.00980396 0.00981517 0.00982637 0.00983757 0.00984877 0.00985998 0.00987118 0.00988238 0.00989358 0.00990478 0.00991599 0.00992719 0.00993839 0.00994959 0.0099608 0.009972 0.0099832 0.0099944 0.0100056 0.0100168 0.010028 0.0100392 0.0100504 0.0100616 0.0100728 0.010084 0.0100952 0.0101064 0.0101176 0.0101288 0.01014 0.0101512 0.0101624 0.0101736 0.0101848 0.010196 0.0102072 0.0102185 0.0102297 0.0102409 0.0102521 0.0102633 0.0102745 0.0102857 0.0102969 0.0103081 0.0103193 0.0103305 0.0103417 0.0103529 0.0103641 0.0103753 0.0103865 0.0103977 0.0104089 0.0104201 0.0104313 0.0104425 0.0104537 0.0104649 0.0104761 0.0104873 0.0104985 0.0105097 0.0105209 0.0105321 0.0105433 0.0105545 0.0105657 0.0105769 0.0105881 0.0105993 0.0106105 0.0106217 0.0106329 0.0106441 0.0106553 0.0106665 0.0106777 0.0106889 0.0107002 0.0107114 0.0107226 0.0107338 0.010745 0.0107562 0.0107674 0.0107786 0.0107898 0.010801 +-0.00257963 -0.00236355 -0.0018972 -0.0010474 9.1493E-05 0.00138707 0.00275818 0.00415471 0.00553573 0.00685209 0.00802247 0.00889859 0.0093317 0.00945135 0.00948085 0.00949481 0.00950642 0.00951769 0.0095289 0.00954011 0.00955132 0.00956253 0.00957374 0.00958495 0.00959616 0.00960736 0.00961857 0.00962978 0.00964099 0.0096522 0.00966341 0.00967462 0.00968582 0.00969703 0.00970824 0.00971945 0.00973066 0.00974187 0.00975307 0.00976428 0.00977549 0.0097867 0.00979791 0.00980912 0.00982033 0.00983153 0.00984274 0.00985395 0.00986516 0.00987637 0.00988758 0.00989878 0.00990999 0.0099212 0.00993241 0.00994362 0.00995483 0.00996604 0.00997724 0.00998845 0.00999966 0.0100109 0.0100221 0.0100333 0.0100445 0.0100557 0.0100669 0.0100781 0.0100893 0.0101005 0.0101117 0.010123 0.0101342 0.0101454 0.0101566 0.0101678 0.010179 0.0101902 0.0102014 0.0102126 0.0102238 0.010235 0.0102462 0.0102575 0.0102687 0.0102799 0.0102911 0.0103023 0.0103135 0.0103247 0.0103359 0.0103471 0.0103583 0.0103695 0.0103807 0.010392 0.0104032 0.0104144 0.0104256 0.0104368 0.010448 0.0104592 0.0104704 0.0104816 0.0104928 0.010504 0.0105153 0.0105265 0.0105377 0.0105489 0.0105601 0.0105713 0.0105825 0.0105937 0.0106049 0.0106161 0.0106273 0.0106385 0.0106498 0.010661 0.0106722 0.0106834 0.0106946 0.0107058 0.010717 0.0107282 0.0107394 0.0107506 0.0107618 0.010773 0.0107843 0.0107955 0.0108067 +-0.00258122 -0.00236487 -0.00189799 -0.00104766 9.15788E-05 0.00138738 0.00275868 0.00415541 0.00553667 0.0068534 0.00802442 0.00890169 0.00933604 0.00945621 0.00948581 0.00949978 0.0095114 0.00952268 0.0095339 0.00954512 0.00955633 0.00956755 0.00957876 0.00958998 0.00960119 0.00961241 0.00962362 0.00963483 0.00964605 0.00965726 0.00966848 0.00967969 0.00969091 0.00970212 0.00971334 0.00972455 0.00973577 0.00974698 0.0097582 0.00976941 0.00978062 0.00979184 0.00980305 0.00981427 0.00982548 0.0098367 0.00984791 0.00985913 0.00987034 0.00988156 0.00989277 0.00990398 0.0099152 0.00992641 0.00993763 0.00994884 0.00996006 0.00997127 0.00998249 0.0099937 0.0100049 0.0100161 0.0100273 0.0100386 0.0100498 0.010061 0.0100722 0.0100834 0.0100946 0.0101058 0.0101171 0.0101283 0.0101395 0.0101507 0.0101619 0.0101731 0.0101843 0.0101956 0.0102068 0.010218 0.0102292 0.0102404 0.0102516 0.0102629 0.0102741 0.0102853 0.0102965 0.0103077 0.0103189 0.0103301 0.0103414 0.0103526 0.0103638 0.010375 0.0103862 0.0103974 0.0104086 0.0104199 0.0104311 0.0104423 0.0104535 0.0104647 0.0104759 0.0104871 0.0104984 0.0105096 0.0105208 0.010532 0.0105432 0.0105544 0.0105656 0.0105769 0.0105881 0.0105993 0.0106105 0.0106217 0.0106329 0.0106441 0.0106554 0.0106666 0.0106778 0.010689 0.0107002 0.0107114 0.0107227 0.0107339 0.0107451 0.0107563 0.0107675 0.0107787 0.0107899 0.0108012 0.0108124 +-0.0025828 -0.00236618 -0.00189877 -0.00104791 9.16646E-05 0.0013877 0.00275918 0.0041561 0.00553761 0.0068547 0.00802638 0.00890478 0.00934038 0.00946106 0.00949076 0.00950476 0.00951639 0.00952767 0.0095389 0.00955012 0.00956134 0.00957256 0.00958378 0.009595 0.00960622 0.00961745 0.00962867 0.00963989 0.00965111 0.00966233 0.00967355 0.00968477 0.00969599 0.00970721 0.00971843 0.00972965 0.00974087 0.00975209 0.00976331 0.00977454 0.00978576 0.00979698 0.0098082 0.00981942 0.00983064 0.00984186 0.00985308 0.0098643 0.00987552 0.00988674 0.00989796 0.00990918 0.0099204 0.00993162 0.00994285 0.00995407 0.00996529 0.00997651 0.00998773 0.00999895 0.0100102 0.0100214 0.0100326 0.0100438 0.0100551 0.0100663 0.0100775 0.0100887 0.0100999 0.0101112 0.0101224 0.0101336 0.0101448 0.010156 0.0101673 0.0101785 0.0101897 0.0102009 0.0102121 0.0102234 0.0102346 0.0102458 0.010257 0.0102682 0.0102795 0.0102907 0.0103019 0.0103131 0.0103243 0.0103356 0.0103468 0.010358 0.0103692 0.0103805 0.0103917 0.0104029 0.0104141 0.0104253 0.0104366 0.0104478 0.010459 0.0104702 0.0104814 0.0104927 0.0105039 0.0105151 0.0105263 0.0105375 0.0105488 0.01056 0.0105712 0.0105824 0.0105936 0.0106049 0.0106161 0.0106273 0.0106385 0.0106498 0.010661 0.0106722 0.0106834 0.0106946 0.0107059 0.0107171 0.0107283 0.0107395 0.0107507 0.010762 0.0107732 0.0107844 0.0107956 0.0108068 0.0108181 +-0.00258438 -0.00236749 -0.00189955 -0.00104817 9.17504E-05 0.00138801 0.00275967 0.00415679 0.00553854 0.00685601 0.00802833 0.00890786 0.00934472 0.00946591 0.00949572 0.00950973 0.00952137 0.00953266 0.00954389 0.00955512 0.00956635 0.00957758 0.0095888 0.00960003 0.00961126 0.00962248 0.00963371 0.00964494 0.00965616 0.00966739 0.00967862 0.00968984 0.00970107 0.0097123 0.00972352 0.00973475 0.00974598 0.0097572 0.00976843 0.00977966 0.00979089 0.00980211 0.00981334 0.00982457 0.00983579 0.00984702 0.00985825 0.00986947 0.0098807 0.00989193 0.00990315 0.00991438 0.00992561 0.00993683 0.00994806 0.00995929 0.00997051 0.00998174 0.00999297 0.0100042 0.0100154 0.0100266 0.0100379 0.0100491 0.0100603 0.0100716 0.0100828 0.010094 0.0101052 0.0101165 0.0101277 0.0101389 0.0101501 0.0101614 0.0101726 0.0101838 0.0101951 0.0102063 0.0102175 0.0102287 0.01024 0.0102512 0.0102624 0.0102736 0.0102849 0.0102961 0.0103073 0.0103185 0.0103298 0.010341 0.0103522 0.0103635 0.0103747 0.0103859 0.0103971 0.0104084 0.0104196 0.0104308 0.010442 0.0104533 0.0104645 0.0104757 0.0104869 0.0104982 0.0105094 0.0105206 0.0105319 0.0105431 0.0105543 0.0105655 0.0105768 0.010588 0.0105992 0.0106104 0.0106217 0.0106329 0.0106441 0.0106554 0.0106666 0.0106778 0.010689 0.0107003 0.0107115 0.0107227 0.0107339 0.0107452 0.0107564 0.0107676 0.0107788 0.0107901 0.0108013 0.0108125 0.0108238 +-0.00258595 -0.0023688 -0.00190033 -0.00104842 9.18362E-05 0.00138832 0.00276017 0.00415748 0.00553947 0.00685731 0.00803027 0.00891094 0.00934905 0.00947075 0.00950067 0.00951471 0.00952635 0.00953765 0.00954889 0.00956012 0.00957135 0.00958259 0.00959382 0.00960505 0.00961629 0.00962752 0.00963875 0.00964999 0.00966122 0.00967245 0.00968368 0.00969492 0.00970615 0.00971738 0.00972862 0.00973985 0.00975108 0.00976231 0.00977355 0.00978478 0.00979601 0.00980725 0.00981848 0.00982971 0.00984095 0.00985218 0.00986341 0.00987464 0.00988588 0.00989711 0.00990834 0.00991958 0.00993081 0.00994204 0.00995327 0.00996451 0.00997574 0.00998697 0.00999821 0.0100094 0.0100207 0.0100319 0.0100431 0.0100544 0.0100656 0.0100768 0.0100881 0.0100993 0.0101105 0.0101218 0.010133 0.0101442 0.0101555 0.0101667 0.0101779 0.0101892 0.0102004 0.0102116 0.0102229 0.0102341 0.0102453 0.0102566 0.0102678 0.010279 0.0102903 0.0103015 0.0103127 0.010324 0.0103352 0.0103464 0.0103577 0.0103689 0.0103801 0.0103914 0.0104026 0.0104138 0.0104251 0.0104363 0.0104475 0.0104588 0.01047 0.0104812 0.0104925 0.0105037 0.0105149 0.0105262 0.0105374 0.0105486 0.0105599 0.0105711 0.0105823 0.0105936 0.0106048 0.010616 0.0106273 0.0106385 0.0106497 0.0106609 0.0106722 0.0106834 0.0106946 0.0107059 0.0107171 0.0107283 0.0107396 0.0107508 0.010762 0.0107733 0.0107845 0.0107957 0.010807 0.0108182 0.0108294 +-0.00258753 -0.00237011 -0.00190111 -0.00104868 9.19221E-05 0.00138864 0.00276067 0.00415817 0.00554041 0.00685861 0.00803222 0.00891402 0.00935337 0.0094756 0.00950562 0.00951968 0.00953133 0.00954263 0.00955388 0.00956512 0.00957636 0.0095876 0.00959884 0.00961008 0.00962131 0.00963255 0.00964379 0.00965503 0.00966627 0.00967751 0.00968875 0.00969999 0.00971123 0.00972247 0.00973371 0.00974494 0.00975618 0.00976742 0.00977866 0.0097899 0.00980114 0.00981238 0.00982362 0.00983486 0.0098461 0.00985733 0.00986857 0.00987981 0.00989105 0.00990229 0.00991353 0.00992477 0.00993601 0.00994725 0.00995849 0.00996973 0.00998096 0.0099922 0.0100034 0.0100147 0.0100259 0.0100372 0.0100484 0.0100596 0.0100709 0.0100821 0.0100934 0.0101046 0.0101158 0.0101271 0.0101383 0.0101495 0.0101608 0.010172 0.0101833 0.0101945 0.0102057 0.010217 0.0102282 0.0102395 0.0102507 0.0102619 0.0102732 0.0102844 0.0102957 0.0103069 0.0103181 0.0103294 0.0103406 0.0103519 0.0103631 0.0103743 0.0103856 0.0103968 0.010408 0.0104193 0.0104305 0.0104418 0.010453 0.0104642 0.0104755 0.0104867 0.010498 0.0105092 0.0105204 0.0105317 0.0105429 0.0105542 0.0105654 0.0105766 0.0105879 0.0105991 0.0106104 0.0106216 0.0106328 0.0106441 0.0106553 0.0106665 0.0106778 0.010689 0.0107003 0.0107115 0.0107227 0.010734 0.0107452 0.0107565 0.0107677 0.0107789 0.0107902 0.0108014 0.0108127 0.0108239 0.0108351 +-0.00258911 -0.00237142 -0.00190189 -0.00104893 9.20079E-05 0.00138895 0.00276117 0.00415886 0.00554134 0.00685991 0.00803416 0.00891709 0.0093577 0.00948044 0.00951057 0.00952465 0.00953631 0.00954761 0.00955887 0.00957012 0.00958136 0.00959261 0.00960385 0.0096151 0.00962634 0.00963759 0.00964883 0.00966008 0.00967132 0.00968257 0.00969381 0.00970506 0.0097163 0.00972755 0.00973879 0.00975004 0.00976128 0.00977253 0.00978377 0.00979502 0.00980626 0.00981751 0.00982875 0.00984 0.00985124 0.00986249 0.00987373 0.00988498 0.00989623 0.00990747 0.00991872 0.00992996 0.00994121 0.00995245 0.0099637 0.00997494 0.00998619 0.00999743 0.0100087 0.0100199 0.0100312 0.0100424 0.0100537 0.0100649 0.0100761 0.0100874 0.0100986 0.0101099 0.0101211 0.0101324 0.0101436 0.0101549 0.0101661 0.0101774 0.0101886 0.0101998 0.0102111 0.0102223 0.0102336 0.0102448 0.0102561 0.0102673 0.0102786 0.0102898 0.0103011 0.0103123 0.0103235 0.0103348 0.010346 0.0103573 0.0103685 0.0103798 0.010391 0.0104023 0.0104135 0.0104247 0.010436 0.0104472 0.0104585 0.0104697 0.010481 0.0104922 0.0105035 0.0105147 0.010526 0.0105372 0.0105484 0.0105597 0.0105709 0.0105822 0.0105934 0.0106047 0.0106159 0.0106272 0.0106384 0.0106497 0.0106609 0.0106721 0.0106834 0.0106946 0.0107059 0.0107171 0.0107284 0.0107396 0.0107509 0.0107621 0.0107733 0.0107846 0.0107958 0.0108071 0.0108183 0.0108296 0.0108408 +-0.00259069 -0.00237273 -0.00190267 -0.00104919 9.20938E-05 0.00138926 0.00276167 0.00415955 0.00554227 0.00686121 0.0080361 0.00892016 0.00936201 0.00948528 0.00951551 0.00952961 0.00954128 0.0095526 0.00956386 0.00957511 0.00958636 0.00959761 0.00960886 0.00962011 0.00963137 0.00964262 0.00965387 0.00966512 0.00967637 0.00968762 0.00969887 0.00971013 0.00972138 0.00973263 0.00974388 0.00975513 0.00976638 0.00977763 0.00978888 0.00980014 0.00981139 0.00982264 0.00983389 0.00984514 0.00985639 0.00986764 0.00987889 0.00989015 0.0099014 0.00991265 0.0099239 0.00993515 0.0099464 0.00995765 0.0099689 0.00998016 0.00999141 0.0100027 0.0100139 0.0100252 0.0100364 0.0100477 0.0100589 0.0100702 0.0100814 0.0100927 0.0101039 0.0101152 0.0101264 0.0101377 0.0101489 0.0101602 0.0101714 0.0101827 0.0101939 0.0102052 0.0102164 0.0102277 0.0102389 0.0102502 0.0102614 0.0102727 0.0102839 0.0102952 0.0103064 0.0103177 0.0103289 0.0103402 0.0103514 0.0103627 0.0103739 0.0103852 0.0103965 0.0104077 0.010419 0.0104302 0.0104415 0.0104527 0.010464 0.0104752 0.0104865 0.0104977 0.010509 0.0105202 0.0105315 0.0105427 0.010554 0.0105652 0.0105765 0.0105877 0.010599 0.0106102 0.0106215 0.0106327 0.010644 0.0106552 0.0106665 0.0106777 0.010689 0.0107002 0.0107115 0.0107227 0.010734 0.0107452 0.0107565 0.0107677 0.010779 0.0107902 0.0108015 0.0108127 0.010824 0.0108353 0.0108465 +-0.00259227 -0.00237404 -0.00190344 -0.00104944 9.21796E-05 0.00138957 0.00276217 0.00416024 0.0055432 0.0068625 0.00803803 0.00892322 0.00936633 0.00949012 0.00952046 0.00953458 0.00954626 0.00955758 0.00956884 0.0095801 0.00959136 0.00960262 0.00961387 0.00962513 0.00963639 0.00964765 0.0096589 0.00967016 0.00968142 0.00969268 0.00970393 0.00971519 0.00972645 0.00973771 0.00974896 0.00976022 0.00977148 0.00978274 0.00979399 0.00980525 0.00981651 0.00982776 0.00983902 0.00985028 0.00986154 0.00987279 0.00988405 0.00989531 0.00990657 0.00991782 0.00992908 0.00994034 0.0099516 0.00996285 0.00997411 0.00998537 0.00999663 0.0100079 0.0100191 0.0100304 0.0100417 0.0100529 0.0100642 0.0100754 0.0100867 0.0100979 0.0101092 0.0101205 0.0101317 0.010143 0.0101542 0.0101655 0.0101767 0.010188 0.0101993 0.0102105 0.0102218 0.010233 0.0102443 0.0102555 0.0102668 0.0102781 0.0102893 0.0103006 0.0103118 0.0103231 0.0103343 0.0103456 0.0103569 0.0103681 0.0103794 0.0103906 0.0104019 0.0104131 0.0104244 0.0104357 0.0104469 0.0104582 0.0104694 0.0104807 0.0104919 0.0105032 0.0105145 0.0105257 0.010537 0.0105482 0.0105595 0.0105708 0.010582 0.0105933 0.0106045 0.0106158 0.010627 0.0106383 0.0106496 0.0106608 0.0106721 0.0106833 0.0106946 0.0107058 0.0107171 0.0107284 0.0107396 0.0107509 0.0107621 0.0107734 0.0107846 0.0107959 0.0108072 0.0108184 0.0108297 0.0108409 0.0108522 +-0.00259384 -0.00237535 -0.00190422 -0.00104969 9.22655E-05 0.00138989 0.00276266 0.00416092 0.00554413 0.0068638 0.00803996 0.00892627 0.00937064 0.00949495 0.0095254 0.00953954 0.00955123 0.00956256 0.00957383 0.00958509 0.00959636 0.00960762 0.00961888 0.00963015 0.00964141 0.00965267 0.00966394 0.0096752 0.00968646 0.00969773 0.00970899 0.00972026 0.00973152 0.00974278 0.00975405 0.00976531 0.00977657 0.00978784 0.0097991 0.00981036 0.00982163 0.00983289 0.00984415 0.00985542 0.00986668 0.00987794 0.00988921 0.00990047 0.00991173 0.009923 0.00993426 0.00994552 0.00995679 0.00996805 0.00997932 0.00999058 0.0100018 0.0100131 0.0100244 0.0100356 0.0100469 0.0100582 0.0100694 0.0100807 0.010092 0.0101032 0.0101145 0.0101257 0.010137 0.0101483 0.0101595 0.0101708 0.0101821 0.0101933 0.0102046 0.0102158 0.0102271 0.0102384 0.0102496 0.0102609 0.0102722 0.0102834 0.0102947 0.010306 0.0103172 0.0103285 0.0103397 0.010351 0.0103623 0.0103735 0.0103848 0.0103961 0.0104073 0.0104186 0.0104299 0.0104411 0.0104524 0.0104636 0.0104749 0.0104862 0.0104974 0.0105087 0.01052 0.0105312 0.0105425 0.0105538 0.010565 0.0105763 0.0105875 0.0105988 0.0106101 0.0106213 0.0106326 0.0106439 0.0106551 0.0106664 0.0106777 0.0106889 0.0107002 0.0107114 0.0107227 0.010734 0.0107452 0.0107565 0.0107678 0.010779 0.0107903 0.0108015 0.0108128 0.0108241 0.0108353 0.0108466 0.0108579 +-0.00259542 -0.00237665 -0.001905 -0.00104995 9.23514E-05 0.0013902 0.00276316 0.00416161 0.00554506 0.00686509 0.00804189 0.00892932 0.00937495 0.00949978 0.00953034 0.00954451 0.0095562 0.00956753 0.00957881 0.00959008 0.00960135 0.00961262 0.00962389 0.00963516 0.00964643 0.0096577 0.00966897 0.00968024 0.00969151 0.00970278 0.00971405 0.00972532 0.00973659 0.00974786 0.00975913 0.0097704 0.00978167 0.00979294 0.0098042 0.00981547 0.00982674 0.00983801 0.00984928 0.00986055 0.00987182 0.00988309 0.00989436 0.00990563 0.0099169 0.00992817 0.00993944 0.00995071 0.00996198 0.00997325 0.00998452 0.00999579 0.0100071 0.0100183 0.0100296 0.0100409 0.0100521 0.0100634 0.0100747 0.0100859 0.0100972 0.0101085 0.0101198 0.010131 0.0101423 0.0101536 0.0101648 0.0101761 0.0101874 0.0101986 0.0102099 0.0102212 0.0102324 0.0102437 0.010255 0.0102663 0.0102775 0.0102888 0.0103001 0.0103113 0.0103226 0.0103339 0.0103451 0.0103564 0.0103677 0.010379 0.0103902 0.0104015 0.0104128 0.010424 0.0104353 0.0104466 0.0104578 0.0104691 0.0104804 0.0104916 0.0105029 0.0105142 0.0105255 0.0105367 0.010548 0.0105593 0.0105705 0.0105818 0.0105931 0.0106043 0.0106156 0.0106269 0.0106382 0.0106494 0.0106607 0.010672 0.0106832 0.0106945 0.0107058 0.010717 0.0107283 0.0107396 0.0107508 0.0107621 0.0107734 0.0107847 0.0107959 0.0108072 0.0108185 0.0108297 0.010841 0.0108523 0.0108635 +-0.002597 -0.00237796 -0.00190577 -0.0010502 9.24373E-05 0.00139051 0.00276366 0.0041623 0.00554598 0.00686638 0.00804381 0.00893237 0.00937925 0.00950462 0.00953528 0.00954947 0.00956117 0.00957251 0.00958379 0.00959507 0.00960635 0.00961762 0.0096289 0.00964017 0.00965145 0.00966272 0.009674 0.00968528 0.00969655 0.00970783 0.0097191 0.00973038 0.00974165 0.00975293 0.00976421 0.00977548 0.00978676 0.00979803 0.00980931 0.00982058 0.00983186 0.00984314 0.00985441 0.00986569 0.00987696 0.00988824 0.00989951 0.00991079 0.00992207 0.00993334 0.00994462 0.00995589 0.00996717 0.00997844 0.00998972 0.010001 0.0100123 0.0100235 0.0100348 0.0100461 0.0100574 0.0100686 0.0100799 0.0100912 0.0101025 0.0101138 0.010125 0.0101363 0.0101476 0.0101589 0.0101701 0.0101814 0.0101927 0.010204 0.0102152 0.0102265 0.0102378 0.0102491 0.0102603 0.0102716 0.0102829 0.0102942 0.0103054 0.0103167 0.010328 0.0103393 0.0103505 0.0103618 0.0103731 0.0103844 0.0103956 0.0104069 0.0104182 0.0104295 0.0104407 0.010452 0.0104633 0.0104746 0.0104858 0.0104971 0.0105084 0.0105197 0.010531 0.0105422 0.0105535 0.0105648 0.0105761 0.0105873 0.0105986 0.0106099 0.0106212 0.0106324 0.0106437 0.010655 0.0106663 0.0106775 0.0106888 0.0107001 0.0107114 0.0107226 0.0107339 0.0107452 0.0107565 0.0107677 0.010779 0.0107903 0.0108016 0.0108128 0.0108241 0.0108354 0.0108467 0.0108579 0.0108692 +-0.00259857 -0.00237927 -0.00190655 -0.00105045 9.25232E-05 0.00139082 0.00276415 0.00416298 0.00554691 0.00686767 0.00804574 0.00893541 0.00938355 0.00950944 0.00954021 0.00955442 0.00956614 0.00957748 0.00958877 0.00960006 0.00961134 0.00962262 0.0096339 0.00964518 0.00965647 0.00966775 0.00967903 0.00969031 0.00970159 0.00971287 0.00972416 0.00973544 0.00974672 0.009758 0.00976928 0.00978056 0.00979185 0.00980313 0.00981441 0.00982569 0.00983697 0.00984826 0.00985954 0.00987082 0.0098821 0.00989338 0.00990466 0.00991595 0.00992723 0.00993851 0.00994979 0.00996107 0.00997236 0.00998364 0.00999492 0.0100062 0.0100175 0.0100288 0.01004 0.0100513 0.0100626 0.0100739 0.0100852 0.0100965 0.0101077 0.010119 0.0101303 0.0101416 0.0101529 0.0101641 0.0101754 0.0101867 0.010198 0.0102093 0.0102206 0.0102318 0.0102431 0.0102544 0.0102657 0.010277 0.0102882 0.0102995 0.0103108 0.0103221 0.0103334 0.0103447 0.0103559 0.0103672 0.0103785 0.0103898 0.0104011 0.0104123 0.0104236 0.0104349 0.0104462 0.0104575 0.0104688 0.01048 0.0104913 0.0105026 0.0105139 0.0105252 0.0105364 0.0105477 0.010559 0.0105703 0.0105816 0.0105929 0.0106041 0.0106154 0.0106267 0.010638 0.0106493 0.0106605 0.0106718 0.0106831 0.0106944 0.0107057 0.010717 0.0107282 0.0107395 0.0107508 0.0107621 0.0107734 0.0107846 0.0107959 0.0108072 0.0108185 0.0108298 0.0108411 0.0108523 0.0108636 0.0108749 +-0.00260015 -0.00238057 -0.00190732 -0.0010507 9.26091E-05 0.00139113 0.00276465 0.00416367 0.00554783 0.00686896 0.00804766 0.00893845 0.00938784 0.00951427 0.00954515 0.00955938 0.0095711 0.00958245 0.00959375 0.00960504 0.00961633 0.00962762 0.0096389 0.00965019 0.00966148 0.00967277 0.00968406 0.00969534 0.00970663 0.00971792 0.00972921 0.0097405 0.00975178 0.00976307 0.00977436 0.00978565 0.00979693 0.00980822 0.00981951 0.0098308 0.00984209 0.00985337 0.00986466 0.00987595 0.00988724 0.00989853 0.00990981 0.0099211 0.00993239 0.00994368 0.00995496 0.00996625 0.00997754 0.00998883 0.0100001 0.0100114 0.0100227 0.010034 0.0100453 0.0100566 0.0100678 0.0100791 0.0100904 0.0101017 0.010113 0.0101243 0.0101356 0.0101469 0.0101581 0.0101694 0.0101807 0.010192 0.0102033 0.0102146 0.0102259 0.0102372 0.0102484 0.0102597 0.010271 0.0102823 0.0102936 0.0103049 0.0103162 0.0103275 0.0103388 0.01035 0.0103613 0.0103726 0.0103839 0.0103952 0.0104065 0.0104178 0.0104291 0.0104403 0.0104516 0.0104629 0.0104742 0.0104855 0.0104968 0.0105081 0.0105194 0.0105306 0.0105419 0.0105532 0.0105645 0.0105758 0.0105871 0.0105984 0.0106097 0.0106209 0.0106322 0.0106435 0.0106548 0.0106661 0.0106774 0.0106887 0.0107 0.0107113 0.0107225 0.0107338 0.0107451 0.0107564 0.0107677 0.010779 0.0107903 0.0108016 0.0108128 0.0108241 0.0108354 0.0108467 0.010858 0.0108693 0.0108806 +-0.00260172 -0.00238187 -0.00190809 -0.00105096 9.2695E-05 0.00139144 0.00276514 0.00416435 0.00554876 0.00687025 0.00804957 0.00894148 0.00939213 0.00951909 0.00955008 0.00956434 0.00957607 0.00958742 0.00959873 0.00961002 0.00962132 0.00963261 0.00964391 0.0096552 0.00966649 0.00967779 0.00968908 0.00970037 0.00971167 0.00972296 0.00973426 0.00974555 0.00975684 0.00976814 0.00977943 0.00979073 0.00980202 0.00981331 0.00982461 0.0098359 0.0098472 0.00985849 0.00986978 0.00988108 0.00989237 0.00990367 0.00991496 0.00992625 0.00993755 0.00994884 0.00996014 0.00997143 0.00998272 0.00999402 0.0100053 0.0100166 0.0100279 0.0100392 0.0100505 0.0100618 0.0100731 0.0100844 0.0100957 0.010107 0.0101183 0.0101295 0.0101408 0.0101521 0.0101634 0.0101747 0.010186 0.0101973 0.0102086 0.0102199 0.0102312 0.0102425 0.0102538 0.0102651 0.0102764 0.0102877 0.010299 0.0103102 0.0103215 0.0103328 0.0103441 0.0103554 0.0103667 0.010378 0.0103893 0.0104006 0.0104119 0.0104232 0.0104345 0.0104458 0.0104571 0.0104684 0.0104797 0.010491 0.0105022 0.0105135 0.0105248 0.0105361 0.0105474 0.0105587 0.01057 0.0105813 0.0105926 0.0106039 0.0106152 0.0106265 0.0106378 0.0106491 0.0106604 0.0106717 0.010683 0.0106942 0.0107055 0.0107168 0.0107281 0.0107394 0.0107507 0.010762 0.0107733 0.0107846 0.0107959 0.0108072 0.0108185 0.0108298 0.0108411 0.0108524 0.0108637 0.0108749 0.0108862 +-0.0026033 -0.00238318 -0.00190887 -0.00105121 9.27809E-05 0.00139175 0.00276564 0.00416503 0.00554968 0.00687153 0.00805149 0.00894451 0.00939642 0.00952392 0.00955501 0.00956929 0.00958103 0.00959239 0.0096037 0.009615 0.0096263 0.0096376 0.0096489 0.0096602 0.0096715 0.0096828 0.0096941 0.0097054 0.0097167 0.009728 0.0097393 0.0097506 0.0097619 0.0097732 0.00978451 0.00979581 0.00980711 0.00981841 0.00982971 0.00984101 0.00985231 0.00986361 0.00987491 0.00988621 0.00989751 0.00990881 0.00992011 0.00993141 0.00994271 0.00995401 0.00996531 0.00997661 0.00998791 0.00999921 0.0100105 0.0100218 0.0100331 0.0100444 0.0100557 0.010067 0.0100783 0.0100896 0.0101009 0.0101122 0.0101235 0.0101348 0.0101461 0.0101574 0.0101687 0.01018 0.0101913 0.0102026 0.0102139 0.0102252 0.0102365 0.0102478 0.0102591 0.0102704 0.0102817 0.010293 0.0103043 0.0103156 0.0103269 0.0103382 0.0103495 0.0103608 0.0103721 0.0103834 0.0103947 0.010406 0.0104173 0.0104286 0.0104399 0.0104512 0.0104625 0.0104738 0.0104851 0.0104964 0.0105077 0.010519 0.0105303 0.0105416 0.0105529 0.0105642 0.0105755 0.0105868 0.0105981 0.0106094 0.0106207 0.010632 0.0106433 0.0106546 0.0106659 0.0106772 0.0106885 0.0106998 0.0107111 0.0107224 0.0107337 0.010745 0.0107563 0.0107676 0.0107789 0.0107902 0.0108015 0.0108128 0.0108241 0.0108354 0.0108467 0.010858 0.0108693 0.0108806 0.0108919 +-0.00260487 -0.00238448 -0.00190964 -0.00105146 9.28668E-05 0.00139206 0.00276613 0.00416572 0.0055506 0.00687281 0.0080534 0.00894753 0.0094007 0.00952874 0.00955994 0.00957424 0.00958599 0.00959736 0.00960868 0.00961998 0.00963129 0.0096426 0.0096539 0.00966521 0.00967651 0.00968782 0.00969913 0.00971043 0.00972174 0.00973304 0.00974435 0.00975566 0.00976696 0.00977827 0.00978958 0.00980088 0.00981219 0.00982349 0.0098348 0.00984611 0.00985741 0.00986872 0.00988002 0.00989133 0.00990264 0.00991394 0.00992525 0.00993656 0.00994786 0.00995917 0.00997047 0.00998178 0.00999309 0.0100044 0.0100157 0.010027 0.0100383 0.0100496 0.0100609 0.0100722 0.0100835 0.0100948 0.0101061 0.0101175 0.0101288 0.0101401 0.0101514 0.0101627 0.010174 0.0101853 0.0101966 0.0102079 0.0102192 0.0102305 0.0102418 0.0102531 0.0102644 0.0102757 0.010287 0.0102984 0.0103097 0.010321 0.0103323 0.0103436 0.0103549 0.0103662 0.0103775 0.0103888 0.0104001 0.0104114 0.0104227 0.010434 0.0104453 0.0104566 0.0104679 0.0104793 0.0104906 0.0105019 0.0105132 0.0105245 0.0105358 0.0105471 0.0105584 0.0105697 0.010581 0.0105923 0.0106036 0.0106149 0.0106262 0.0106375 0.0106488 0.0106601 0.0106715 0.0106828 0.0106941 0.0107054 0.0107167 0.010728 0.0107393 0.0107506 0.0107619 0.0107732 0.0107845 0.0107958 0.0108071 0.0108184 0.0108297 0.010841 0.0108524 0.0108637 0.010875 0.0108863 0.0108976 +-0.00260644 -0.00238578 -0.00191041 -0.00105171 9.29528E-05 0.00139237 0.00276662 0.0041664 0.00555152 0.00687409 0.00805531 0.00895055 0.00940498 0.00953355 0.00956487 0.00957919 0.00959095 0.00960233 0.00961365 0.00962496 0.00963627 0.00964759 0.0096589 0.00967021 0.00968152 0.00969283 0.00970415 0.00971546 0.00972677 0.00973808 0.0097494 0.00976071 0.00977202 0.00978333 0.00979464 0.00980596 0.00981727 0.00982858 0.00983989 0.00985121 0.00986252 0.00987383 0.00988514 0.00989645 0.00990777 0.00991908 0.00993039 0.0099417 0.00995302 0.00996433 0.00997564 0.00998695 0.00999826 0.0100096 0.0100209 0.0100322 0.0100435 0.0100548 0.0100661 0.0100775 0.0100888 0.0101001 0.0101114 0.0101227 0.010134 0.0101453 0.0101566 0.0101679 0.0101793 0.0101906 0.0102019 0.0102132 0.0102245 0.0102358 0.0102471 0.0102584 0.0102698 0.0102811 0.0102924 0.0103037 0.010315 0.0103263 0.0103376 0.0103489 0.0103603 0.0103716 0.0103829 0.0103942 0.0104055 0.0104168 0.0104281 0.0104394 0.0104508 0.0104621 0.0104734 0.0104847 0.010496 0.0105073 0.0105186 0.0105299 0.0105413 0.0105526 0.0105639 0.0105752 0.0105865 0.0105978 0.0106091 0.0106204 0.0106318 0.0106431 0.0106544 0.0106657 0.010677 0.0106883 0.0106996 0.0107109 0.0107222 0.0107336 0.0107449 0.0107562 0.0107675 0.0107788 0.0107901 0.0108014 0.0108127 0.0108241 0.0108354 0.0108467 0.010858 0.0108693 0.0108806 0.0108919 0.0109032 +-0.00260802 -0.00238708 -0.00191118 -0.00105196 9.30387E-05 0.00139268 0.00276712 0.00416708 0.00555244 0.00687537 0.00805721 0.00895356 0.00940925 0.00953837 0.0095698 0.00958414 0.00959591 0.00960729 0.00961862 0.00962994 0.00964125 0.00965257 0.00966389 0.00967521 0.00968653 0.00969785 0.00970916 0.00972048 0.0097318 0.00974312 0.00975444 0.00976576 0.00977707 0.00978839 0.00979971 0.00981103 0.00982235 0.00983367 0.00984498 0.0098563 0.00986762 0.00987894 0.00989026 0.00990158 0.00991289 0.00992421 0.00993553 0.00994685 0.00995817 0.00996949 0.0099808 0.00999212 0.0100034 0.0100148 0.0100261 0.0100374 0.0100487 0.01006 0.0100714 0.0100827 0.010094 0.0101053 0.0101166 0.0101279 0.0101393 0.0101506 0.0101619 0.0101732 0.0101845 0.0101959 0.0102072 0.0102185 0.0102298 0.0102411 0.0102524 0.0102638 0.0102751 0.0102864 0.0102977 0.010309 0.0103204 0.0103317 0.010343 0.0103543 0.0103656 0.0103769 0.0103883 0.0103996 0.0104109 0.0104222 0.0104335 0.0104449 0.0104562 0.0104675 0.0104788 0.0104901 0.0105014 0.0105128 0.0105241 0.0105354 0.0105467 0.010558 0.0105694 0.0105807 0.010592 0.0106033 0.0106146 0.0106259 0.0106373 0.0106486 0.0106599 0.0106712 0.0106825 0.0106939 0.0107052 0.0107165 0.0107278 0.0107391 0.0107505 0.0107618 0.0107731 0.0107844 0.0107957 0.010807 0.0108184 0.0108297 0.010841 0.0108523 0.0108636 0.010875 0.0108863 0.0108976 0.0109089 +-0.00260959 -0.00238838 -0.00191195 -0.00105221 9.31247E-05 0.00139299 0.00276761 0.00416776 0.00555336 0.00687665 0.00805912 0.00895657 0.00941352 0.00954318 0.00957472 0.00958909 0.00960086 0.00961225 0.00962358 0.00963491 0.00964624 0.00965756 0.00966888 0.00968021 0.00969153 0.00970286 0.00971418 0.00972551 0.00973683 0.00974815 0.00975948 0.0097708 0.00978213 0.00979345 0.00980478 0.0098161 0.00982743 0.00983875 0.00985007 0.0098614 0.00987272 0.00988405 0.00989537 0.0099067 0.00991802 0.00992935 0.00994067 0.00995199 0.00996332 0.00997464 0.00998597 0.00999729 0.0100086 0.0100199 0.0100313 0.0100426 0.0100539 0.0100652 0.0100766 0.0100879 0.0100992 0.0101105 0.0101219 0.0101332 0.0101445 0.0101558 0.0101672 0.0101785 0.0101898 0.0102011 0.0102125 0.0102238 0.0102351 0.0102464 0.0102578 0.0102691 0.0102804 0.0102917 0.0103031 0.0103144 0.0103257 0.010337 0.0103483 0.0103597 0.010371 0.0103823 0.0103936 0.010405 0.0104163 0.0104276 0.0104389 0.0104503 0.0104616 0.0104729 0.0104842 0.0104956 0.0105069 0.0105182 0.0105295 0.0105409 0.0105522 0.0105635 0.0105748 0.0105862 0.0105975 0.0106088 0.0106201 0.0106315 0.0106428 0.0106541 0.0106654 0.0106768 0.0106881 0.0106994 0.0107107 0.0107221 0.0107334 0.0107447 0.010756 0.0107674 0.0107787 0.01079 0.0108013 0.0108127 0.010824 0.0108353 0.0108466 0.0108579 0.0108693 0.0108806 0.0108919 0.0109032 0.0109146 +-0.00261116 -0.00238968 -0.00191271 -0.00105246 9.32106E-05 0.0013933 0.0027681 0.00416844 0.00555428 0.00687793 0.00806102 0.00895957 0.00941779 0.00954799 0.00957965 0.00959403 0.00960581 0.00961721 0.00962855 0.00963988 0.00965121 0.00966254 0.00967387 0.00968521 0.00969654 0.00970787 0.0097192 0.00973053 0.00974186 0.00975319 0.00976452 0.00977585 0.00978718 0.00979851 0.00980984 0.00982117 0.0098325 0.00984383 0.00985516 0.00986649 0.00987782 0.00988915 0.00990048 0.00991182 0.00992315 0.00993448 0.00994581 0.00995714 0.00996847 0.0099798 0.00999113 0.0100025 0.0100138 0.0100251 0.0100365 0.0100478 0.0100591 0.0100704 0.0100818 0.0100931 0.0101044 0.0101158 0.0101271 0.0101384 0.0101498 0.0101611 0.0101724 0.0101837 0.0101951 0.0102064 0.0102177 0.0102291 0.0102404 0.0102517 0.0102631 0.0102744 0.0102857 0.0102971 0.0103084 0.0103197 0.010331 0.0103424 0.0103537 0.010365 0.0103764 0.0103877 0.010399 0.0104104 0.0104217 0.010433 0.0104443 0.0104557 0.010467 0.0104783 0.0104897 0.010501 0.0105123 0.0105237 0.010535 0.0105463 0.0105577 0.010569 0.0105803 0.0105916 0.010603 0.0106143 0.0106256 0.010637 0.0106483 0.0106596 0.010671 0.0106823 0.0106936 0.010705 0.0107163 0.0107276 0.0107389 0.0107503 0.0107616 0.0107729 0.0107843 0.0107956 0.0108069 0.0108183 0.0108296 0.0108409 0.0108522 0.0108636 0.0108749 0.0108862 0.0108976 0.0109089 0.0109202 +-0.00261273 -0.00239098 -0.00191348 -0.00105271 9.32966E-05 0.00139361 0.00276859 0.00416912 0.00555519 0.0068792 0.00806291 0.00896257 0.00942205 0.0095528 0.00958457 0.00959898 0.00961077 0.00962217 0.00963352 0.00964485 0.00965619 0.00966753 0.00967886 0.0096902 0.00970154 0.00971287 0.00972421 0.00973555 0.00974688 0.00975822 0.00976956 0.00978089 0.00979223 0.00980357 0.0098149 0.00982624 0.00983758 0.00984891 0.00986025 0.00987159 0.00988292 0.00989426 0.0099056 0.00991693 0.00992827 0.00993961 0.00995094 0.00996228 0.00997361 0.00998495 0.00999629 0.0100076 0.010019 0.0100303 0.0100416 0.010053 0.0100643 0.0100756 0.010087 0.0100983 0.0101097 0.010121 0.0101323 0.0101437 0.010155 0.0101663 0.0101777 0.010189 0.0102003 0.0102117 0.010223 0.0102344 0.0102457 0.010257 0.0102684 0.0102797 0.010291 0.0103024 0.0103137 0.010325 0.0103364 0.0103477 0.0103591 0.0103704 0.0103817 0.0103931 0.0104044 0.0104157 0.0104271 0.0104384 0.0104498 0.0104611 0.0104724 0.0104838 0.0104951 0.0105064 0.0105178 0.0105291 0.0105404 0.0105518 0.0105631 0.0105745 0.0105858 0.0105971 0.0106085 0.0106198 0.0106311 0.0106425 0.0106538 0.0106651 0.0106765 0.0106878 0.0106992 0.0107105 0.0107218 0.0107332 0.0107445 0.0107558 0.0107672 0.0107785 0.0107898 0.0108012 0.0108125 0.0108239 0.0108352 0.0108465 0.0108579 0.0108692 0.0108805 0.0108919 0.0109032 0.0109146 0.0109259 +-0.0026143 -0.00239228 -0.00191425 -0.00105296 9.33826E-05 0.00139392 0.00276909 0.0041698 0.00555611 0.00688047 0.00806481 0.00896557 0.00942631 0.0095576 0.00958949 0.00960392 0.00961572 0.00962713 0.00963848 0.00964982 0.00966117 0.00967251 0.00968385 0.00969519 0.00970654 0.00971788 0.00972922 0.00974056 0.00975191 0.00976325 0.00977459 0.00978594 0.00979728 0.00980862 0.00981996 0.00983131 0.00984265 0.00985399 0.00986533 0.00987668 0.00988802 0.00989936 0.0099107 0.00992205 0.00993339 0.00994473 0.00995608 0.00996742 0.00997876 0.0099901 0.0100014 0.0100128 0.0100241 0.0100355 0.0100468 0.0100582 0.0100695 0.0100808 0.0100922 0.0101035 0.0101149 0.0101262 0.0101376 0.0101489 0.0101602 0.0101716 0.0101829 0.0101943 0.0102056 0.010217 0.0102283 0.0102396 0.010251 0.0102623 0.0102737 0.010285 0.0102964 0.0103077 0.010319 0.0103304 0.0103417 0.0103531 0.0103644 0.0103758 0.0103871 0.0103984 0.0104098 0.0104211 0.0104325 0.0104438 0.0104552 0.0104665 0.0104778 0.0104892 0.0105005 0.0105119 0.0105232 0.0105346 0.0105459 0.0105572 0.0105686 0.0105799 0.0105913 0.0106026 0.0106139 0.0106253 0.0106366 0.010648 0.0106593 0.0106707 0.010682 0.0106933 0.0107047 0.010716 0.0107274 0.0107387 0.0107501 0.0107614 0.0107727 0.0107841 0.0107954 0.0108068 0.0108181 0.0108295 0.0108408 0.0108521 0.0108635 0.0108748 0.0108862 0.0108975 0.0109089 0.0109202 0.0109315 +-0.00261587 -0.00239358 -0.00191502 -0.0010532 9.34685E-05 0.00139423 0.00276958 0.00417048 0.00555702 0.00688174 0.0080667 0.00896856 0.00943056 0.00956241 0.0095944 0.00960886 0.00962067 0.00963208 0.00964344 0.00965479 0.00966614 0.00967749 0.00968884 0.00970019 0.00971153 0.00972288 0.00973423 0.00974558 0.00975693 0.00976828 0.00977963 0.00979098 0.00980232 0.00981367 0.00982502 0.00983637 0.00984772 0.00985907 0.00987042 0.00988177 0.00989311 0.00990446 0.00991581 0.00992716 0.00993851 0.00994986 0.00996121 0.00997256 0.0099839 0.00999525 0.0100066 0.010018 0.0100293 0.0100406 0.010052 0.0100633 0.0100747 0.010086 0.0100974 0.0101087 0.0101201 0.0101314 0.0101428 0.0101541 0.0101655 0.0101768 0.0101882 0.0101995 0.0102109 0.0102222 0.0102336 0.0102449 0.0102563 0.0102676 0.010279 0.0102903 0.0103017 0.010313 0.0103244 0.0103357 0.0103471 0.0103584 0.0103698 0.0103811 0.0103925 0.0104038 0.0104152 0.0104265 0.0104379 0.0104492 0.0104606 0.0104719 0.0104832 0.0104946 0.0105059 0.0105173 0.0105286 0.01054 0.0105513 0.0105627 0.010574 0.0105854 0.0105967 0.0106081 0.0106194 0.0106308 0.0106421 0.0106535 0.0106648 0.0106762 0.0106875 0.0106989 0.0107102 0.0107216 0.0107329 0.0107443 0.0107556 0.010767 0.0107783 0.0107897 0.010801 0.0108124 0.0108237 0.0108351 0.0108464 0.0108578 0.0108691 0.0108805 0.0108918 0.0109032 0.0109145 0.0109258 0.0109372 +-0.00261744 -0.00239488 -0.00191578 -0.00105345 9.35545E-05 0.00139454 0.00277007 0.00417115 0.00555794 0.00688301 0.00806858 0.00897154 0.00943481 0.00956721 0.00959932 0.0096138 0.00962561 0.00963704 0.0096484 0.00965976 0.00967111 0.00968247 0.00969382 0.00970518 0.00971653 0.00972789 0.00973924 0.00975059 0.00976195 0.0097733 0.00978466 0.00979601 0.00980737 0.00981872 0.00983008 0.00984143 0.00985279 0.00986414 0.0098755 0.00988685 0.00989821 0.00990956 0.00992092 0.00993227 0.00994363 0.00995498 0.00996634 0.00997769 0.00998905 0.0100004 0.0100118 0.0100231 0.0100345 0.0100458 0.0100572 0.0100685 0.0100799 0.0100912 0.0101026 0.0101139 0.0101253 0.0101367 0.010148 0.0101594 0.0101707 0.0101821 0.0101934 0.0102048 0.0102161 0.0102275 0.0102389 0.0102502 0.0102616 0.0102729 0.0102843 0.0102956 0.010307 0.0103183 0.0103297 0.010341 0.0103524 0.0103638 0.0103751 0.0103865 0.0103978 0.0104092 0.0104205 0.0104319 0.0104432 0.0104546 0.0104659 0.0104773 0.0104887 0.0105 0.0105114 0.0105227 0.0105341 0.0105454 0.0105568 0.0105681 0.0105795 0.0105909 0.0106022 0.0106136 0.0106249 0.0106363 0.0106476 0.010659 0.0106703 0.0106817 0.010693 0.0107044 0.0107158 0.0107271 0.0107385 0.0107498 0.0107612 0.0107725 0.0107839 0.0107952 0.0108066 0.0108179 0.0108293 0.0108407 0.010852 0.0108634 0.0108747 0.0108861 0.0108974 0.0109088 0.0109201 0.0109315 0.0109429 +-0.00261901 -0.00239617 -0.00191655 -0.0010537 9.36405E-05 0.00139485 0.00277056 0.00417183 0.00555885 0.00688428 0.00807047 0.00897452 0.00943906 0.00957201 0.00960423 0.00961874 0.00963056 0.00964199 0.00965336 0.00966472 0.00967608 0.00968744 0.0096988 0.00971016 0.00972152 0.00973289 0.00974425 0.00975561 0.00976697 0.00977833 0.00978969 0.00980105 0.00981241 0.00982377 0.00983513 0.00984649 0.00985786 0.00986922 0.00988058 0.00989194 0.0099033 0.00991466 0.00992602 0.00993738 0.00994874 0.0099601 0.00997146 0.00998283 0.00999419 0.0100055 0.0100169 0.0100283 0.0100396 0.010051 0.0100624 0.0100737 0.0100851 0.0100964 0.0101078 0.0101192 0.0101305 0.0101419 0.0101532 0.0101646 0.010176 0.0101873 0.0101987 0.01021 0.0102214 0.0102328 0.0102441 0.0102555 0.0102668 0.0102782 0.0102896 0.0103009 0.0103123 0.0103237 0.010335 0.0103464 0.0103577 0.0103691 0.0103805 0.0103918 0.0104032 0.0104145 0.0104259 0.0104373 0.0104486 0.01046 0.0104713 0.0104827 0.0104941 0.0105054 0.0105168 0.0105281 0.0105395 0.0105509 0.0105622 0.0105736 0.010585 0.0105963 0.0106077 0.010619 0.0106304 0.0106418 0.0106531 0.0106645 0.0106758 0.0106872 0.0106986 0.0107099 0.0107213 0.0107326 0.010744 0.0107554 0.0107667 0.0107781 0.0107894 0.0108008 0.0108122 0.0108235 0.0108349 0.0108463 0.0108576 0.010869 0.0108803 0.0108917 0.0109031 0.0109144 0.0109258 0.0109371 0.0109485 +-0.00262058 -0.00239747 -0.00191731 -0.00105395 9.37265E-05 0.00139516 0.00277105 0.00417251 0.00555976 0.00688555 0.00807235 0.0089775 0.0094433 0.00957681 0.00960915 0.00962367 0.0096355 0.00964694 0.00965831 0.00966968 0.00968105 0.00969242 0.00970378 0.00971515 0.00972652 0.00973788 0.00974925 0.00976062 0.00977199 0.00978335 0.00979472 0.00980609 0.00981745 0.00982882 0.00984019 0.00985155 0.00986292 0.00987429 0.00988566 0.00989702 0.00990839 0.00991976 0.00993112 0.00994249 0.00995386 0.00996522 0.00997659 0.00998796 0.00999932 0.0100107 0.0100221 0.0100334 0.0100448 0.0100562 0.0100675 0.0100789 0.0100903 0.0101016 0.010113 0.0101244 0.0101357 0.0101471 0.0101585 0.0101698 0.0101812 0.0101926 0.0102039 0.0102153 0.0102267 0.010238 0.0102494 0.0102608 0.0102721 0.0102835 0.0102949 0.0103062 0.0103176 0.010329 0.0103403 0.0103517 0.0103631 0.0103744 0.0103858 0.0103972 0.0104085 0.0104199 0.0104313 0.0104426 0.010454 0.0104654 0.0104767 0.0104881 0.0104995 0.0105108 0.0105222 0.0105336 0.0105449 0.0105563 0.0105677 0.010579 0.0105904 0.0106018 0.0106131 0.0106245 0.0106359 0.0106472 0.0106586 0.01067 0.0106813 0.0106927 0.0107041 0.0107154 0.0107268 0.0107382 0.0107495 0.0107609 0.0107723 0.0107836 0.010795 0.0108064 0.0108177 0.0108291 0.0108405 0.0108518 0.0108632 0.0108746 0.0108859 0.0108973 0.0109087 0.01092 0.0109314 0.0109428 0.0109541 +-0.00262215 -0.00239876 -0.00191807 -0.00105419 9.38125E-05 0.00139547 0.00277154 0.00417318 0.00556067 0.00688681 0.00807423 0.00898047 0.00944754 0.0095816 0.00961406 0.0096286 0.00964044 0.00965189 0.00966327 0.00967464 0.00968602 0.00969739 0.00970876 0.00972014 0.00973151 0.00974288 0.00975425 0.00976563 0.009777 0.00978837 0.00979975 0.00981112 0.00982249 0.00983387 0.00984524 0.00985661 0.00986799 0.00987936 0.00989073 0.0099021 0.00991348 0.00992485 0.00993622 0.0099476 0.00995897 0.00997034 0.00998172 0.00999309 0.0100045 0.0100158 0.0100272 0.0100386 0.01005 0.0100613 0.0100727 0.0100841 0.0100954 0.0101068 0.0101182 0.0101296 0.0101409 0.0101523 0.0101637 0.0101751 0.0101864 0.0101978 0.0102092 0.0102205 0.0102319 0.0102433 0.0102547 0.010266 0.0102774 0.0102888 0.0103002 0.0103115 0.0103229 0.0103343 0.0103457 0.010357 0.0103684 0.0103798 0.0103911 0.0104025 0.0104139 0.0104253 0.0104366 0.010448 0.0104594 0.0104708 0.0104821 0.0104935 0.0105049 0.0105162 0.0105276 0.010539 0.0105504 0.0105617 0.0105731 0.0105845 0.0105959 0.0106072 0.0106186 0.01063 0.0106414 0.0106527 0.0106641 0.0106755 0.0106868 0.0106982 0.0107096 0.010721 0.0107323 0.0107437 0.0107551 0.0107665 0.0107778 0.0107892 0.0108006 0.0108119 0.0108233 0.0108347 0.0108461 0.0108574 0.0108688 0.0108802 0.0108916 0.0109029 0.0109143 0.0109257 0.0109371 0.0109484 0.0109598 +-0.00262371 -0.00240005 -0.00191883 -0.00105444 9.38985E-05 0.00139577 0.00277203 0.00417386 0.00556158 0.00688808 0.00807611 0.00898343 0.00945177 0.00958639 0.00961896 0.00963354 0.00964538 0.00965683 0.00966822 0.0096796 0.00969098 0.00970236 0.00971374 0.00972512 0.0097365 0.00974788 0.00975926 0.00977064 0.00978201 0.00979339 0.00980477 0.00981615 0.00982753 0.00983891 0.00985029 0.00986167 0.00987305 0.00988443 0.00989581 0.00990718 0.00991856 0.00992994 0.00994132 0.0099527 0.00996408 0.00997546 0.00998684 0.00999822 0.0100096 0.010021 0.0100324 0.0100437 0.0100551 0.0100665 0.0100779 0.0100893 0.0101006 0.010112 0.0101234 0.0101348 0.0101461 0.0101575 0.0101689 0.0101803 0.0101917 0.010203 0.0102144 0.0102258 0.0102372 0.0102486 0.0102599 0.0102713 0.0102827 0.0102941 0.0103055 0.0103168 0.0103282 0.0103396 0.010351 0.0103623 0.0103737 0.0103851 0.0103965 0.0104079 0.0104192 0.0104306 0.010442 0.0104534 0.0104648 0.0104761 0.0104875 0.0104989 0.0105103 0.0105217 0.010533 0.0105444 0.0105558 0.0105672 0.0105786 0.0105899 0.0106013 0.0106127 0.0106241 0.0106354 0.0106468 0.0106582 0.0106696 0.010681 0.0106923 0.0107037 0.0107151 0.0107265 0.0107379 0.0107492 0.0107606 0.010772 0.0107834 0.0107948 0.0108061 0.0108175 0.0108289 0.0108403 0.0108517 0.010863 0.0108744 0.0108858 0.0108972 0.0109085 0.0109199 0.0109313 0.0109427 0.0109541 0.0109654 +-0.00262528 -0.00240135 -0.0019196 -0.00105469 9.39846E-05 0.00139608 0.00277251 0.00417453 0.00556249 0.00688934 0.00807798 0.00898639 0.009456 0.00959118 0.00962387 0.00963847 0.00965032 0.00966178 0.00967317 0.00968456 0.00969595 0.00970733 0.00971872 0.0097301 0.00974149 0.00975287 0.00976426 0.00977564 0.00978703 0.00979841 0.0098098 0.00982118 0.00983257 0.00984395 0.00985534 0.00986672 0.00987811 0.00988949 0.00990088 0.00991226 0.00992365 0.00993503 0.00994642 0.0099578 0.00996919 0.00998057 0.00999196 0.0100033 0.0100147 0.0100261 0.0100375 0.0100489 0.0100603 0.0100717 0.010083 0.0100944 0.0101058 0.0101172 0.0101286 0.01014 0.0101514 0.0101627 0.0101741 0.0101855 0.0101969 0.0102083 0.0102197 0.010231 0.0102424 0.0102538 0.0102652 0.0102766 0.010288 0.0102994 0.0103107 0.0103221 0.0103335 0.0103449 0.0103563 0.0103677 0.0103791 0.0103904 0.0104018 0.0104132 0.0104246 0.010436 0.0104474 0.0104588 0.0104701 0.0104815 0.0104929 0.0105043 0.0105157 0.0105271 0.0105384 0.0105498 0.0105612 0.0105726 0.010584 0.0105954 0.0106068 0.0106181 0.0106295 0.0106409 0.0106523 0.0106637 0.0106751 0.0106865 0.0106978 0.0107092 0.0107206 0.010732 0.0107434 0.0107548 0.0107662 0.0107775 0.0107889 0.0108003 0.0108117 0.0108231 0.0108345 0.0108458 0.0108572 0.0108686 0.01088 0.0108914 0.0109028 0.0109142 0.0109255 0.0109369 0.0109483 0.0109597 0.0109711 +-0.00262685 -0.00240264 -0.00192036 -0.00105493 9.40706E-05 0.00139639 0.002773 0.00417521 0.0055634 0.0068906 0.00807985 0.00898935 0.00946022 0.00959597 0.00962878 0.00964339 0.00965526 0.00966672 0.00967812 0.00968952 0.00970091 0.0097123 0.00972369 0.00973508 0.00974647 0.00975786 0.00976925 0.00978065 0.00979204 0.00980343 0.00981482 0.00982621 0.0098376 0.00984899 0.00986038 0.00987178 0.00988317 0.00989456 0.00990595 0.00991734 0.00992873 0.00994012 0.00995151 0.00996291 0.0099743 0.00998569 0.00999708 0.0100085 0.0100199 0.0100313 0.0100426 0.010054 0.0100654 0.0100768 0.0100882 0.0100996 0.010111 0.0101224 0.0101338 0.0101452 0.0101566 0.0101679 0.0101793 0.0101907 0.0102021 0.0102135 0.0102249 0.0102363 0.0102477 0.0102591 0.0102705 0.0102819 0.0102933 0.0103046 0.010316 0.0103274 0.0103388 0.0103502 0.0103616 0.010373 0.0103844 0.0103958 0.0104072 0.0104186 0.0104299 0.0104413 0.0104527 0.0104641 0.0104755 0.0104869 0.0104983 0.0105097 0.0105211 0.0105325 0.0105439 0.0105552 0.0105666 0.010578 0.0105894 0.0106008 0.0106122 0.0106236 0.010635 0.0106464 0.0106578 0.0106692 0.0106806 0.0106919 0.0107033 0.0107147 0.0107261 0.0107375 0.0107489 0.0107603 0.0107717 0.0107831 0.0107945 0.0108059 0.0108172 0.0108286 0.01084 0.0108514 0.0108628 0.0108742 0.0108856 0.010897 0.0109084 0.0109198 0.0109312 0.0109426 0.0109539 0.0109653 0.0109767 +-0.00262841 -0.00240393 -0.00192112 -0.00105518 9.41566E-05 0.0013967 0.00277349 0.00417588 0.00556431 0.00689186 0.00808172 0.0089923 0.00946444 0.00960076 0.00963368 0.00964832 0.0096602 0.00967166 0.00968307 0.00969447 0.00970587 0.00971726 0.00972866 0.00974006 0.00975146 0.00976285 0.00977425 0.00978565 0.00979705 0.00980844 0.00981984 0.00983124 0.00984264 0.00985403 0.00986543 0.00987683 0.00988822 0.00989962 0.00991102 0.00992242 0.00993381 0.00994521 0.00995661 0.00996801 0.0099794 0.0099908 0.0100022 0.0100136 0.010025 0.0100364 0.0100478 0.0100592 0.0100706 0.010082 0.0100934 0.0101048 0.0101162 0.0101276 0.010139 0.0101504 0.0101618 0.0101732 0.0101846 0.010196 0.0102073 0.0102187 0.0102301 0.0102415 0.0102529 0.0102643 0.0102757 0.0102871 0.0102985 0.0103099 0.0103213 0.0103327 0.0103441 0.0103555 0.0103669 0.0103783 0.0103897 0.0104011 0.0104125 0.0104239 0.0104353 0.0104467 0.0104581 0.0104695 0.0104809 0.0104923 0.0105037 0.0105151 0.0105265 0.0105379 0.0105493 0.0105607 0.0105721 0.0105835 0.0105949 0.0106063 0.0106177 0.010629 0.0106404 0.0106518 0.0106632 0.0106746 0.010686 0.0106974 0.0107088 0.0107202 0.0107316 0.010743 0.0107544 0.0107658 0.0107772 0.0107886 0.0108 0.0108114 0.0108228 0.0108342 0.0108456 0.010857 0.0108684 0.0108798 0.0108912 0.0109026 0.010914 0.0109254 0.0109368 0.0109482 0.0109596 0.010971 0.0109824 +-0.00262998 -0.00240522 -0.00192188 -0.00105542 9.42427E-05 0.001397 0.00277398 0.00417655 0.00556521 0.00689311 0.00808358 0.00899525 0.00946866 0.00960554 0.00963858 0.00965325 0.00966513 0.0096766 0.00968802 0.00969942 0.00971083 0.00972223 0.00973363 0.00974504 0.00975644 0.00976784 0.00977925 0.00979065 0.00980205 0.00981346 0.00982486 0.00983626 0.00984767 0.00985907 0.00987047 0.00988188 0.00989328 0.00990468 0.00991609 0.00992749 0.00993889 0.0099503 0.0099617 0.0099731 0.00998451 0.00999591 0.0100073 0.0100187 0.0100301 0.0100415 0.0100529 0.0100643 0.0100757 0.0100871 0.0100985 0.0101099 0.0101213 0.0101328 0.0101442 0.0101556 0.010167 0.0101784 0.0101898 0.0102012 0.0102126 0.010224 0.0102354 0.0102468 0.0102582 0.0102696 0.010281 0.0102924 0.0103038 0.0103152 0.0103266 0.010338 0.0103494 0.0103608 0.0103722 0.0103836 0.010395 0.0104064 0.0104178 0.0104292 0.0104406 0.010452 0.0104634 0.0104749 0.0104863 0.0104977 0.0105091 0.0105205 0.0105319 0.0105433 0.0105547 0.0105661 0.0105775 0.0105889 0.0106003 0.0106117 0.0106231 0.0106345 0.0106459 0.0106573 0.0106687 0.0106801 0.0106915 0.0107029 0.0107143 0.0107257 0.0107371 0.0107485 0.0107599 0.0107713 0.0107827 0.0107941 0.0108055 0.010817 0.0108284 0.0108398 0.0108512 0.0108626 0.010874 0.0108854 0.0108968 0.0109082 0.0109196 0.010931 0.0109424 0.0109538 0.0109652 0.0109766 0.010988 +-0.00263154 -0.00240651 -0.00192263 -0.00105567 9.43287E-05 0.00139731 0.00277447 0.00417722 0.00556612 0.00689437 0.00808545 0.00899819 0.00947287 0.00961032 0.00964348 0.00965817 0.00967006 0.00968154 0.00969296 0.00970437 0.00971578 0.00972719 0.0097386 0.00975001 0.00976142 0.00977283 0.00978424 0.00979565 0.00980706 0.00981847 0.00982988 0.00984129 0.0098527 0.00986411 0.00987551 0.00988692 0.00989833 0.00990974 0.00992115 0.00993256 0.00994397 0.00995538 0.00996679 0.0099782 0.00998961 0.010001 0.0100124 0.0100238 0.0100352 0.0100467 0.0100581 0.0100695 0.0100809 0.0100923 0.0101037 0.0101151 0.0101265 0.0101379 0.0101493 0.0101608 0.0101722 0.0101836 0.010195 0.0102064 0.0102178 0.0102292 0.0102406 0.010252 0.0102634 0.0102748 0.0102863 0.0102977 0.0103091 0.0103205 0.0103319 0.0103433 0.0103547 0.0103661 0.0103775 0.0103889 0.0104003 0.0104118 0.0104232 0.0104346 0.010446 0.0104574 0.0104688 0.0104802 0.0104916 0.010503 0.0105144 0.0105259 0.0105373 0.0105487 0.0105601 0.0105715 0.0105829 0.0105943 0.0106057 0.0106171 0.0106285 0.0106399 0.0106514 0.0106628 0.0106742 0.0106856 0.010697 0.0107084 0.0107198 0.0107312 0.0107426 0.010754 0.0107654 0.0107769 0.0107883 0.0107997 0.0108111 0.0108225 0.0108339 0.0108453 0.0108567 0.0108681 0.0108795 0.010891 0.0109024 0.0109138 0.0109252 0.0109366 0.010948 0.0109594 0.0109708 0.0109822 0.0109936 +-0.00263311 -0.0024078 -0.00192339 -0.00105591 9.44148E-05 0.00139762 0.00277495 0.0041779 0.00556702 0.00689562 0.00808731 0.00900113 0.00947708 0.0096151 0.00964838 0.00966309 0.00967499 0.00968648 0.00969791 0.00970932 0.00972074 0.00973215 0.00974357 0.00975498 0.0097664 0.00977782 0.00978923 0.00980065 0.00981206 0.00982348 0.00983489 0.00984631 0.00985772 0.00986914 0.00988055 0.00989197 0.00990339 0.0099148 0.00992622 0.00993763 0.00994905 0.00996046 0.00997188 0.00998329 0.00999471 0.0100061 0.0100175 0.010029 0.0100404 0.0100518 0.0100632 0.0100746 0.010086 0.0100974 0.0101089 0.0101203 0.0101317 0.0101431 0.0101545 0.0101659 0.0101774 0.0101888 0.0102002 0.0102116 0.010223 0.0102344 0.0102458 0.0102573 0.0102687 0.0102801 0.0102915 0.0103029 0.0103143 0.0103258 0.0103372 0.0103486 0.01036 0.0103714 0.0103828 0.0103943 0.0104057 0.0104171 0.0104285 0.0104399 0.0104513 0.0104627 0.0104742 0.0104856 0.010497 0.0105084 0.0105198 0.0105312 0.0105427 0.0105541 0.0105655 0.0105769 0.0105883 0.0105997 0.0106111 0.0106226 0.010634 0.0106454 0.0106568 0.0106682 0.0106796 0.0106911 0.0107025 0.0107139 0.0107253 0.0107367 0.0107481 0.0107595 0.010771 0.0107824 0.0107938 0.0108052 0.0108166 0.010828 0.0108395 0.0108509 0.0108623 0.0108737 0.0108851 0.0108965 0.0109079 0.0109194 0.0109308 0.0109422 0.0109536 0.010965 0.0109764 0.0109879 0.0109993 +-0.00263467 -0.00240909 -0.00192415 -0.00105616 9.45009E-05 0.00139792 0.00277544 0.00417857 0.00556792 0.00689687 0.00808916 0.00900406 0.00948129 0.00961987 0.00965328 0.00966801 0.00967992 0.00969141 0.00970285 0.00971427 0.00972569 0.00973711 0.00974853 0.00975996 0.00977138 0.0097828 0.00979422 0.00980564 0.00981706 0.00982849 0.00983991 0.00985133 0.00986275 0.00987417 0.00988559 0.00989701 0.00990844 0.00991986 0.00993128 0.0099427 0.00995412 0.00996554 0.00997697 0.00998839 0.00999981 0.0100112 0.0100227 0.0100341 0.0100455 0.0100569 0.0100683 0.0100798 0.0100912 0.0101026 0.010114 0.0101254 0.0101369 0.0101483 0.0101597 0.0101711 0.0101826 0.010194 0.0102054 0.0102168 0.0102282 0.0102397 0.0102511 0.0102625 0.0102739 0.0102853 0.0102968 0.0103082 0.0103196 0.010331 0.0103425 0.0103539 0.0103653 0.0103767 0.0103881 0.0103996 0.010411 0.0104224 0.0104338 0.0104452 0.0104567 0.0104681 0.0104795 0.0104909 0.0105024 0.0105138 0.0105252 0.0105366 0.010548 0.0105595 0.0105709 0.0105823 0.0105937 0.0106051 0.0106166 0.010628 0.0106394 0.0106508 0.0106623 0.0106737 0.0106851 0.0106965 0.0107079 0.0107194 0.0107308 0.0107422 0.0107536 0.0107651 0.0107765 0.0107879 0.0107993 0.0108107 0.0108222 0.0108336 0.010845 0.0108564 0.0108678 0.0108793 0.0108907 0.0109021 0.0109135 0.010925 0.0109364 0.0109478 0.0109592 0.0109706 0.0109821 0.0109935 0.0110049 +-0.00263624 -0.00241038 -0.0019249 -0.0010564 9.4587E-05 0.00139823 0.00277592 0.00417924 0.00556883 0.00689812 0.00809102 0.00900699 0.00948549 0.00962465 0.00965817 0.00967293 0.00968485 0.00969635 0.00970779 0.00971922 0.00973064 0.00974207 0.0097535 0.00976493 0.00977635 0.00978778 0.00979921 0.00981064 0.00982206 0.00983349 0.00984492 0.00985635 0.00986777 0.0098792 0.00989063 0.00990206 0.00991348 0.00992491 0.00993634 0.00994777 0.0099592 0.00997062 0.00998205 0.00999348 0.0100049 0.0100163 0.0100278 0.0100392 0.0100506 0.010062 0.0100735 0.0100849 0.0100963 0.0101078 0.0101192 0.0101306 0.010142 0.0101535 0.0101649 0.0101763 0.0101877 0.0101992 0.0102106 0.010222 0.0102335 0.0102449 0.0102563 0.0102677 0.0102792 0.0102906 0.010302 0.0103135 0.0103249 0.0103363 0.0103477 0.0103592 0.0103706 0.010382 0.0103934 0.0104049 0.0104163 0.0104277 0.0104392 0.0104506 0.010462 0.0104734 0.0104849 0.0104963 0.0105077 0.0105191 0.0105306 0.010542 0.0105534 0.0105649 0.0105763 0.0105877 0.0105991 0.0106106 0.010622 0.0106334 0.0106448 0.0106563 0.0106677 0.0106791 0.0106906 0.010702 0.0107134 0.0107248 0.0107363 0.0107477 0.0107591 0.0107706 0.010782 0.0107934 0.0108048 0.0108163 0.0108277 0.0108391 0.0108505 0.010862 0.0108734 0.0108848 0.0108963 0.0109077 0.0109191 0.0109305 0.010942 0.0109534 0.0109648 0.0109762 0.0109877 0.0109991 0.0110105 +-0.0026378 -0.00241167 -0.00192566 -0.00105664 9.4673E-05 0.00139853 0.00277641 0.00417991 0.00556973 0.00689937 0.00809287 0.00900992 0.00948968 0.00962942 0.00966306 0.00967785 0.00968977 0.00970128 0.00971272 0.00972416 0.00973559 0.00974703 0.00975846 0.00976989 0.00978133 0.00979276 0.0098042 0.00981563 0.00982706 0.0098385 0.00984993 0.00986136 0.0098728 0.00988423 0.00989566 0.0099071 0.00991853 0.00992997 0.0099414 0.00995283 0.00996427 0.0099757 0.00998713 0.00999857 0.01001 0.0100214 0.0100329 0.0100443 0.0100557 0.0100672 0.0100786 0.01009 0.0101015 0.0101129 0.0101243 0.0101358 0.0101472 0.0101586 0.0101701 0.0101815 0.0101929 0.0102044 0.0102158 0.0102272 0.0102387 0.0102501 0.0102615 0.010273 0.0102844 0.0102958 0.0103073 0.0103187 0.0103301 0.0103416 0.010353 0.0103644 0.0103759 0.0103873 0.0103987 0.0104102 0.0104216 0.010433 0.0104445 0.0104559 0.0104673 0.0104788 0.0104902 0.0105016 0.0105131 0.0105245 0.0105359 0.0105474 0.0105588 0.0105702 0.0105817 0.0105931 0.0106045 0.010616 0.0106274 0.0106389 0.0106503 0.0106617 0.0106732 0.0106846 0.010696 0.0107075 0.0107189 0.0107303 0.0107418 0.0107532 0.0107646 0.0107761 0.0107875 0.0107989 0.0108104 0.0108218 0.0108332 0.0108447 0.0108561 0.0108675 0.010879 0.0108904 0.0109018 0.0109133 0.0109247 0.0109361 0.0109476 0.010959 0.0109704 0.0109819 0.0109933 0.0110047 0.0110162 +-0.00263936 -0.00241295 -0.00192641 -0.00105689 9.47591E-05 0.00139884 0.00277689 0.00418057 0.00557063 0.00690062 0.00809472 0.00901284 0.00949387 0.00963419 0.00966796 0.00968276 0.0096947 0.00970621 0.00971766 0.0097291 0.00974054 0.00975198 0.00976342 0.00977486 0.0097863 0.00979774 0.00980918 0.00982062 0.00983206 0.0098435 0.00985494 0.00986638 0.00987782 0.00988926 0.0099007 0.00991214 0.00992358 0.00993502 0.00994646 0.0099579 0.00996934 0.00998078 0.00999222 0.0100037 0.0100151 0.0100265 0.010038 0.0100494 0.0100609 0.0100723 0.0100837 0.0100952 0.0101066 0.0101181 0.0101295 0.0101409 0.0101524 0.0101638 0.0101753 0.0101867 0.0101981 0.0102096 0.010221 0.0102324 0.0102439 0.0102553 0.0102668 0.0102782 0.0102896 0.0103011 0.0103125 0.010324 0.0103354 0.0103468 0.0103583 0.0103697 0.0103812 0.0103926 0.010404 0.0104155 0.0104269 0.0104384 0.0104498 0.0104612 0.0104727 0.0104841 0.0104956 0.010507 0.0105184 0.0105299 0.0105413 0.0105528 0.0105642 0.0105756 0.0105871 0.0105985 0.01061 0.0106214 0.0106328 0.0106443 0.0106557 0.0106672 0.0106786 0.01069 0.0107015 0.0107129 0.0107244 0.0107358 0.0107472 0.0107587 0.0107701 0.0107816 0.010793 0.0108044 0.0108159 0.0108273 0.0108388 0.0108502 0.0108616 0.0108731 0.0108845 0.0108959 0.0109074 0.0109188 0.0109303 0.0109417 0.0109531 0.0109646 0.010976 0.0109875 0.0109989 0.0110103 0.0110218 +-0.00264092 -0.00241424 -0.00192717 -0.00105713 9.48452E-05 0.00139915 0.00277738 0.00418124 0.00557153 0.00690187 0.00809656 0.00901575 0.00949806 0.00963896 0.00967285 0.00968768 0.00969962 0.00971114 0.0097226 0.00973404 0.00974549 0.00975694 0.00976838 0.00977983 0.00979127 0.00980272 0.00981416 0.00982561 0.00983706 0.0098485 0.00985995 0.00987139 0.00988284 0.00989428 0.00990573 0.00991718 0.00992862 0.00994007 0.00995151 0.00996296 0.0099744 0.00998585 0.0099973 0.0100087 0.0100202 0.0100316 0.0100431 0.0100545 0.010066 0.0100774 0.0100889 0.0101003 0.0101118 0.0101232 0.0101346 0.0101461 0.0101575 0.010169 0.0101804 0.0101919 0.0102033 0.0102148 0.0102262 0.0102377 0.0102491 0.0102605 0.010272 0.0102834 0.0102949 0.0103063 0.0103178 0.0103292 0.0103407 0.0103521 0.0103636 0.010375 0.0103865 0.0103979 0.0104093 0.0104208 0.0104322 0.0104437 0.0104551 0.0104666 0.010478 0.0104895 0.0105009 0.0105124 0.0105238 0.0105352 0.0105467 0.0105581 0.0105696 0.010581 0.0105925 0.0106039 0.0106154 0.0106268 0.0106383 0.0106497 0.0106611 0.0106726 0.010684 0.0106955 0.0107069 0.0107184 0.0107298 0.0107413 0.0107527 0.0107642 0.0107756 0.0107871 0.0107985 0.0108099 0.0108214 0.0108328 0.0108443 0.0108557 0.0108672 0.0108786 0.0108901 0.0109015 0.010913 0.0109244 0.0109358 0.0109473 0.0109587 0.0109702 0.0109816 0.0109931 0.0110045 0.011016 0.0110274 +-0.00264249 -0.00241552 -0.00192792 -0.00105737 9.49313E-05 0.00139945 0.00277786 0.00418191 0.00557242 0.00690311 0.0080984 0.00901866 0.00950225 0.00964372 0.00967773 0.00969259 0.00970454 0.00971607 0.00972753 0.00973898 0.00975043 0.00976189 0.00977334 0.00978479 0.00979624 0.00980769 0.00981915 0.0098306 0.00984205 0.0098535 0.00986495 0.0098764 0.00988786 0.00989931 0.00991076 0.00992221 0.00993366 0.00994512 0.00995657 0.00996802 0.00997947 0.00999092 0.0100024 0.0100138 0.0100253 0.0100367 0.0100482 0.0100596 0.0100711 0.0100825 0.010094 0.0101054 0.0101169 0.0101283 0.0101398 0.0101512 0.0101627 0.0101742 0.0101856 0.0101971 0.0102085 0.01022 0.0102314 0.0102429 0.0102543 0.0102658 0.0102772 0.0102887 0.0103001 0.0103116 0.010323 0.0103345 0.0103459 0.0103574 0.0103688 0.0103803 0.0103917 0.0104032 0.0104146 0.0104261 0.0104375 0.010449 0.0104604 0.0104719 0.0104833 0.0104948 0.0105063 0.0105177 0.0105292 0.0105406 0.0105521 0.0105635 0.010575 0.0105864 0.0105979 0.0106093 0.0106208 0.0106322 0.0106437 0.0106551 0.0106666 0.010678 0.0106895 0.0107009 0.0107124 0.0107238 0.0107353 0.0107467 0.0107582 0.0107696 0.0107811 0.0107925 0.010804 0.0108154 0.0108269 0.0108384 0.0108498 0.0108613 0.0108727 0.0108842 0.0108956 0.0109071 0.0109185 0.01093 0.0109414 0.0109529 0.0109643 0.0109758 0.0109872 0.0109987 0.0110101 0.0110216 0.011033 +-0.00264405 -0.00241681 -0.00192867 -0.00105761 9.50175E-05 0.00139976 0.00277835 0.00418258 0.00557332 0.00690435 0.00810024 0.00902157 0.00950643 0.00964849 0.00968262 0.0096975 0.00970946 0.00972099 0.00973246 0.00974392 0.00975538 0.00976684 0.00977829 0.00978975 0.00980121 0.00981267 0.00982413 0.00983558 0.00984704 0.0098585 0.00986996 0.00988141 0.00989287 0.00990433 0.00991579 0.00992725 0.0099387 0.00995016 0.00996162 0.00997308 0.00998453 0.00999599 0.0100075 0.0100189 0.0100304 0.0100418 0.0100533 0.0100647 0.0100762 0.0100877 0.0100991 0.0101106 0.010122 0.0101335 0.0101449 0.0101564 0.0101679 0.0101793 0.0101908 0.0102022 0.0102137 0.0102251 0.0102366 0.0102481 0.0102595 0.010271 0.0102824 0.0102939 0.0103054 0.0103168 0.0103283 0.0103397 0.0103512 0.0103626 0.0103741 0.0103856 0.010397 0.0104085 0.0104199 0.0104314 0.0104428 0.0104543 0.0104658 0.0104772 0.0104887 0.0105001 0.0105116 0.0105231 0.0105345 0.010546 0.0105574 0.0105689 0.0105803 0.0105918 0.0106033 0.0106147 0.0106262 0.0106376 0.0106491 0.0106605 0.010672 0.0106835 0.0106949 0.0107064 0.0107178 0.0107293 0.0107408 0.0107522 0.0107637 0.0107751 0.0107866 0.010798 0.0108095 0.010821 0.0108324 0.0108439 0.0108553 0.0108668 0.0108782 0.0108897 0.0109012 0.0109126 0.0109241 0.0109355 0.010947 0.0109584 0.0109699 0.0109814 0.0109928 0.0110043 0.0110157 0.0110272 0.0110387 +-0.00264561 -0.00241809 -0.00192943 -0.00105786 9.51036E-05 0.00140006 0.00277883 0.00418324 0.00557422 0.00690559 0.00810208 0.00902447 0.0095106 0.00965325 0.0096875 0.00970241 0.00971438 0.00972592 0.00973739 0.00974886 0.00976032 0.00977178 0.00978325 0.00979471 0.00980618 0.00981764 0.0098291 0.00984057 0.00985203 0.0098635 0.00987496 0.00988642 0.00989789 0.00990935 0.00992081 0.00993228 0.00994374 0.00995521 0.00996667 0.00997813 0.0099896 0.0100011 0.0100125 0.010024 0.0100355 0.0100469 0.0100584 0.0100698 0.0100813 0.0100928 0.0101042 0.0101157 0.0101272 0.0101386 0.0101501 0.0101616 0.010173 0.0101845 0.0101959 0.0102074 0.0102189 0.0102303 0.0102418 0.0102533 0.0102647 0.0102762 0.0102877 0.0102991 0.0103106 0.010322 0.0103335 0.010345 0.0103564 0.0103679 0.0103794 0.0103908 0.0104023 0.0104138 0.0104252 0.0104367 0.0104482 0.0104596 0.0104711 0.0104825 0.010494 0.0105055 0.0105169 0.0105284 0.0105399 0.0105513 0.0105628 0.0105743 0.0105857 0.0105972 0.0106086 0.0106201 0.0106316 0.010643 0.0106545 0.010666 0.0106774 0.0106889 0.0107004 0.0107118 0.0107233 0.0107347 0.0107462 0.0107577 0.0107691 0.0107806 0.0107921 0.0108035 0.010815 0.0108265 0.0108379 0.0108494 0.0108609 0.0108723 0.0108838 0.0108952 0.0109067 0.0109182 0.0109296 0.0109411 0.0109526 0.010964 0.0109755 0.010987 0.0109984 0.0110099 0.0110213 0.0110328 0.0110443 +-0.00264717 -0.00241938 -0.00193018 -0.0010581 9.51897E-05 0.00140037 0.00277931 0.00418391 0.00557511 0.00690683 0.00810392 0.00902737 0.00951477 0.009658 0.00969239 0.00970731 0.00971929 0.00973084 0.00974232 0.00975379 0.00976526 0.00977673 0.0097882 0.00979967 0.00981114 0.00982261 0.00983408 0.00984555 0.00985702 0.00986849 0.00987996 0.00989143 0.0099029 0.00991437 0.00992584 0.00993731 0.00994878 0.00996025 0.00997172 0.00998319 0.00999466 0.0100061 0.0100176 0.0100291 0.0100405 0.010052 0.0100635 0.0100749 0.0100864 0.0100979 0.0101094 0.0101208 0.0101323 0.0101438 0.0101552 0.0101667 0.0101782 0.0101896 0.0102011 0.0102126 0.0102241 0.0102355 0.010247 0.0102585 0.0102699 0.0102814 0.0102929 0.0103043 0.0103158 0.0103273 0.0103388 0.0103502 0.0103617 0.0103732 0.0103846 0.0103961 0.0104076 0.010419 0.0104305 0.010442 0.0104535 0.0104649 0.0104764 0.0104879 0.0104993 0.0105108 0.0105223 0.0105337 0.0105452 0.0105567 0.0105682 0.0105796 0.0105911 0.0106026 0.010614 0.0106255 0.010637 0.0106484 0.0106599 0.0106714 0.0106829 0.0106943 0.0107058 0.0107173 0.0107287 0.0107402 0.0107517 0.0107631 0.0107746 0.0107861 0.0107976 0.010809 0.0108205 0.010832 0.0108434 0.0108549 0.0108664 0.0108778 0.0108893 0.0109008 0.0109123 0.0109237 0.0109352 0.0109467 0.0109581 0.0109696 0.0109811 0.0109925 0.011004 0.0110155 0.0110269 0.0110384 0.0110499 +-0.00264873 -0.00242066 -0.00193093 -0.00105834 9.52759E-05 0.00140067 0.0027798 0.00418457 0.00557601 0.00690807 0.00810575 0.00903026 0.00951894 0.00966276 0.00969727 0.00971222 0.00972421 0.00973576 0.00974725 0.00975872 0.0097702 0.00978168 0.00979315 0.00980463 0.0098161 0.00982758 0.00983906 0.00985053 0.00986201 0.00987348 0.00988496 0.00989644 0.00990791 0.00991939 0.00993086 0.00994234 0.00995381 0.00996529 0.00997677 0.00998824 0.00999972 0.0100112 0.0100227 0.0100341 0.0100456 0.0100571 0.0100686 0.0100801 0.0100915 0.010103 0.0101145 0.010126 0.0101374 0.0101489 0.0101604 0.0101719 0.0101833 0.0101948 0.0102063 0.0102178 0.0102292 0.0102407 0.0102522 0.0102637 0.0102751 0.0102866 0.0102981 0.0103096 0.010321 0.0103325 0.010344 0.0103555 0.0103669 0.0103784 0.0103899 0.0104014 0.0104129 0.0104243 0.0104358 0.0104473 0.0104588 0.0104702 0.0104817 0.0104932 0.0105047 0.0105161 0.0105276 0.0105391 0.0105506 0.010562 0.0105735 0.010585 0.0105965 0.0106079 0.0106194 0.0106309 0.0106424 0.0106538 0.0106653 0.0106768 0.0106883 0.0106998 0.0107112 0.0107227 0.0107342 0.0107457 0.0107571 0.0107686 0.0107801 0.0107916 0.010803 0.0108145 0.010826 0.0108375 0.0108489 0.0108604 0.0108719 0.0108834 0.0108948 0.0109063 0.0109178 0.0109293 0.0109407 0.0109522 0.0109637 0.0109752 0.0109866 0.0109981 0.0110096 0.0110211 0.0110326 0.011044 0.0110555 +-0.00265029 -0.00242194 -0.00193168 -0.00105858 9.5362E-05 0.00140097 0.00278028 0.00418524 0.0055769 0.00690931 0.00810758 0.00903314 0.0095231 0.00966751 0.00970215 0.00971712 0.00972912 0.00974068 0.00975217 0.00976365 0.00977514 0.00978662 0.0097981 0.00980958 0.00982106 0.00983255 0.00984403 0.00985551 0.00986699 0.00987847 0.00988996 0.00990144 0.00991292 0.0099244 0.00993588 0.00994737 0.00995885 0.00997033 0.00998181 0.00999329 0.0100048 0.0100163 0.0100277 0.0100392 0.0100507 0.0100622 0.0100737 0.0100852 0.0100966 0.0101081 0.0101196 0.0101311 0.0101426 0.010154 0.0101655 0.010177 0.0101885 0.0102 0.0102115 0.0102229 0.0102344 0.0102459 0.0102574 0.0102689 0.0102803 0.0102918 0.0103033 0.0103148 0.0103263 0.0103378 0.0103492 0.0103607 0.0103722 0.0103837 0.0103952 0.0104066 0.0104181 0.0104296 0.0104411 0.0104526 0.0104641 0.0104755 0.010487 0.0104985 0.01051 0.0105215 0.0105329 0.0105444 0.0105559 0.0105674 0.0105789 0.0105904 0.0106018 0.0106133 0.0106248 0.0106363 0.0106478 0.0106592 0.0106707 0.0106822 0.0106937 0.0107052 0.0107167 0.0107281 0.0107396 0.0107511 0.0107626 0.0107741 0.0107856 0.010797 0.0108085 0.01082 0.0108315 0.010843 0.0108544 0.0108659 0.0108774 0.0108889 0.0109004 0.0109119 0.0109233 0.0109348 0.0109463 0.0109578 0.0109693 0.0109807 0.0109922 0.0110037 0.0110152 0.0110267 0.0110382 0.0110496 0.0110611 +-0.00265184 -0.00242322 -0.00193242 -0.00105882 9.54482E-05 0.00140128 0.00278076 0.0041859 0.00557779 0.00691054 0.0081094 0.00903603 0.00952726 0.00967226 0.00970702 0.00972203 0.00973403 0.0097456 0.00975709 0.00976858 0.00978007 0.00979156 0.00980305 0.00981454 0.00982602 0.00983751 0.009849 0.00986049 0.00987198 0.00988346 0.00989495 0.00990644 0.00991793 0.00992942 0.0099409 0.00995239 0.00996388 0.00997537 0.00998686 0.00999834 0.0100098 0.0100213 0.0100328 0.0100443 0.0100558 0.0100673 0.0100788 0.0100902 0.0101017 0.0101132 0.0101247 0.0101362 0.0101477 0.0101592 0.0101707 0.0101822 0.0101936 0.0102051 0.0102166 0.0102281 0.0102396 0.0102511 0.0102626 0.0102741 0.0102855 0.010297 0.0103085 0.01032 0.0103315 0.010343 0.0103545 0.010366 0.0103774 0.0103889 0.0104004 0.0104119 0.0104234 0.0104349 0.0104464 0.0104579 0.0104694 0.0104808 0.0104923 0.0105038 0.0105153 0.0105268 0.0105383 0.0105498 0.0105613 0.0105727 0.0105842 0.0105957 0.0106072 0.0106187 0.0106302 0.0106417 0.0106532 0.0106646 0.0106761 0.0106876 0.0106991 0.0107106 0.0107221 0.0107336 0.0107451 0.0107566 0.010768 0.0107795 0.010791 0.0108025 0.010814 0.0108255 0.010837 0.0108485 0.0108599 0.0108714 0.0108829 0.0108944 0.0109059 0.0109174 0.0109289 0.0109404 0.0109518 0.0109633 0.0109748 0.0109863 0.0109978 0.0110093 0.0110208 0.0110323 0.0110438 0.0110552 0.0110667 +-0.0026534 -0.0024245 -0.00193317 -0.00105906 9.55343E-05 0.00140158 0.00278124 0.00418657 0.00557869 0.00691178 0.00811123 0.00903891 0.00953142 0.00967701 0.0097119 0.00972693 0.00973894 0.00975051 0.00976202 0.00977351 0.00978501 0.0097965 0.00980799 0.00981949 0.00983098 0.00984248 0.00985397 0.00986546 0.00987696 0.00988845 0.00989995 0.00991144 0.00992293 0.00993443 0.00994592 0.00995742 0.00996891 0.0099804 0.0099919 0.0100034 0.0100149 0.0100264 0.0100379 0.0100494 0.0100609 0.0100724 0.0100839 0.0100953 0.0101068 0.0101183 0.0101298 0.0101413 0.0101528 0.0101643 0.0101758 0.0101873 0.0101988 0.0102103 0.0102218 0.0102333 0.0102448 0.0102563 0.0102678 0.0102792 0.0102907 0.0103022 0.0103137 0.0103252 0.0103367 0.0103482 0.0103597 0.0103712 0.0103827 0.0103942 0.0104057 0.0104172 0.0104287 0.0104402 0.0104517 0.0104632 0.0104746 0.0104861 0.0104976 0.0105091 0.0105206 0.0105321 0.0105436 0.0105551 0.0105666 0.0105781 0.0105896 0.0106011 0.0106126 0.0106241 0.0106356 0.0106471 0.0106586 0.01067 0.0106815 0.010693 0.0107045 0.010716 0.0107275 0.010739 0.0107505 0.010762 0.0107735 0.010785 0.0107965 0.010808 0.0108195 0.010831 0.0108425 0.010854 0.0108654 0.0108769 0.0108884 0.0108999 0.0109114 0.0109229 0.0109344 0.0109459 0.0109574 0.0109689 0.0109804 0.0109919 0.0110034 0.0110149 0.0110264 0.0110379 0.0110493 0.0110608 0.0110723 +-0.00265496 -0.00242578 -0.00193392 -0.0010593 9.56205E-05 0.00140189 0.00278172 0.00418723 0.00557958 0.00691301 0.00811305 0.00904178 0.00953557 0.00968176 0.00971677 0.00973183 0.00974385 0.00975543 0.00976694 0.00977844 0.00978994 0.00980144 0.00981294 0.00982444 0.00983594 0.00984744 0.00985894 0.00987044 0.00988194 0.00989344 0.00990494 0.00991644 0.00992794 0.00993944 0.00995094 0.00996244 0.00997394 0.00998544 0.00999694 0.0100084 0.0100199 0.0100314 0.0100429 0.0100544 0.0100659 0.0100774 0.0100889 0.0101004 0.0101119 0.0101234 0.0101349 0.0101464 0.0101579 0.0101694 0.0101809 0.0101924 0.0102039 0.0102154 0.0102269 0.0102384 0.0102499 0.0102614 0.0102729 0.0102844 0.0102959 0.0103074 0.0103189 0.0103304 0.0103419 0.0103534 0.0103649 0.0103764 0.0103879 0.0103994 0.0104109 0.0104224 0.0104339 0.0104454 0.0104569 0.0104684 0.0104799 0.0104914 0.0105029 0.0105144 0.0105259 0.0105374 0.0105489 0.0105604 0.0105719 0.0105834 0.0105949 0.0106064 0.0106179 0.0106294 0.0106409 0.0106524 0.0106639 0.0106754 0.0106869 0.0106984 0.0107099 0.0107214 0.0107329 0.0107444 0.0107559 0.0107674 0.0107789 0.0107904 0.0108019 0.0108134 0.0108249 0.0108364 0.0108479 0.0108594 0.0108709 0.0108824 0.0108939 0.0109054 0.0109169 0.0109284 0.0109399 0.0109514 0.0109629 0.0109744 0.0109859 0.0109974 0.0110089 0.0110204 0.0110319 0.0110434 0.0110549 0.0110664 0.0110779 +-0.00265652 -0.00242706 -0.00193467 -0.00105954 9.57067E-05 0.00140219 0.0027822 0.00418789 0.00558047 0.00691424 0.00811486 0.00904465 0.00953971 0.0096865 0.00972164 0.00973672 0.00974875 0.00976034 0.00977185 0.00978336 0.00979487 0.00980638 0.00981788 0.00982939 0.00984089 0.0098524 0.00986391 0.00987541 0.00988692 0.00989842 0.00990993 0.00992144 0.00993294 0.00994445 0.00995595 0.00996746 0.00997897 0.00999047 0.010002 0.0100135 0.010025 0.0100365 0.010048 0.0100595 0.010071 0.0100825 0.010094 0.0101055 0.010117 0.0101285 0.0101401 0.0101516 0.0101631 0.0101746 0.0101861 0.0101976 0.0102091 0.0102206 0.0102321 0.0102436 0.0102551 0.0102666 0.0102781 0.0102896 0.0103011 0.0103126 0.0103241 0.0103357 0.0103472 0.0103587 0.0103702 0.0103817 0.0103932 0.0104047 0.0104162 0.0104277 0.0104392 0.0104507 0.0104622 0.0104737 0.0104852 0.0104967 0.0105082 0.0105198 0.0105313 0.0105428 0.0105543 0.0105658 0.0105773 0.0105888 0.0106003 0.0106118 0.0106233 0.0106348 0.0106463 0.0106578 0.0106693 0.0106808 0.0106923 0.0107039 0.0107154 0.0107269 0.0107384 0.0107499 0.0107614 0.0107729 0.0107844 0.0107959 0.0108074 0.0108189 0.0108304 0.0108419 0.0108534 0.0108649 0.0108764 0.0108879 0.0108995 0.010911 0.0109225 0.010934 0.0109455 0.010957 0.0109685 0.01098 0.0109915 0.011003 0.0110145 0.011026 0.0110375 0.011049 0.0110605 0.011072 0.0110836 +-0.00265807 -0.00242834 -0.00193541 -0.00105978 9.57928E-05 0.00140249 0.00278268 0.00418855 0.00558135 0.00691547 0.00811668 0.00904751 0.00954385 0.00969125 0.00972652 0.00974162 0.00975366 0.00976525 0.00977677 0.00978829 0.0097998 0.00981131 0.00982282 0.00983433 0.00984585 0.00985736 0.00986887 0.00988038 0.0098919 0.00990341 0.00991492 0.00992643 0.00993794 0.00994946 0.00996097 0.00997248 0.00998399 0.0099955 0.010007 0.0100185 0.01003 0.0100416 0.0100531 0.0100646 0.0100761 0.0100876 0.0100991 0.0101106 0.0101221 0.0101336 0.0101452 0.0101567 0.0101682 0.0101797 0.0101912 0.0102027 0.0102142 0.0102257 0.0102373 0.0102488 0.0102603 0.0102718 0.0102833 0.0102948 0.0103063 0.0103178 0.0103294 0.0103409 0.0103524 0.0103639 0.0103754 0.0103869 0.0103984 0.0104099 0.0104215 0.010433 0.0104445 0.010456 0.0104675 0.010479 0.0104905 0.010502 0.0105135 0.0105251 0.0105366 0.0105481 0.0105596 0.0105711 0.0105826 0.0105941 0.0106056 0.0106172 0.0106287 0.0106402 0.0106517 0.0106632 0.0106747 0.0106862 0.0106977 0.0107093 0.0107208 0.0107323 0.0107438 0.0107553 0.0107668 0.0107783 0.0107898 0.0108014 0.0108129 0.0108244 0.0108359 0.0108474 0.0108589 0.0108704 0.0108819 0.0108934 0.010905 0.0109165 0.010928 0.0109395 0.010951 0.0109625 0.010974 0.0109855 0.0109971 0.0110086 0.0110201 0.0110316 0.0110431 0.0110546 0.0110661 0.0110776 0.0110892 +-0.00265963 -0.00242961 -0.00193616 -0.00106002 9.5879E-05 0.0014028 0.00278316 0.00418921 0.00558224 0.00691669 0.00811849 0.00905037 0.00954799 0.00969599 0.00973138 0.00974651 0.00975856 0.00977016 0.00978169 0.00979321 0.00980473 0.00981624 0.00982776 0.00983928 0.0098508 0.00986232 0.00987383 0.00988535 0.00989687 0.00990839 0.00991991 0.00993143 0.00994294 0.00995446 0.00996598 0.0099775 0.00998902 0.0100005 0.0100121 0.0100236 0.0100351 0.0100466 0.0100581 0.0100696 0.0100812 0.0100927 0.0101042 0.0101157 0.0101272 0.0101388 0.0101503 0.0101618 0.0101733 0.0101848 0.0101963 0.0102079 0.0102194 0.0102309 0.0102424 0.0102539 0.0102655 0.010277 0.0102885 0.0103 0.0103115 0.010323 0.0103346 0.0103461 0.0103576 0.0103691 0.0103806 0.0103922 0.0104037 0.0104152 0.0104267 0.0104382 0.0104497 0.0104613 0.0104728 0.0104843 0.0104958 0.0105073 0.0105189 0.0105304 0.0105419 0.0105534 0.0105649 0.0105764 0.010588 0.0105995 0.010611 0.0106225 0.010634 0.0106456 0.0106571 0.0106686 0.0106801 0.0106916 0.0107031 0.0107147 0.0107262 0.0107377 0.0107492 0.0107607 0.0107722 0.0107838 0.0107953 0.0108068 0.0108183 0.0108298 0.0108414 0.0108529 0.0108644 0.0108759 0.0108874 0.0108989 0.0109105 0.010922 0.0109335 0.010945 0.0109565 0.0109681 0.0109796 0.0109911 0.0110026 0.0110141 0.0110256 0.0110372 0.0110487 0.0110602 0.0110717 0.0110832 0.0110948 +-0.00266119 -0.00243089 -0.0019369 -0.00106025 9.59652E-05 0.0014031 0.00278364 0.00418987 0.00558313 0.00691792 0.0081203 0.00905323 0.00955212 0.00970072 0.00973625 0.0097514 0.00976346 0.00977507 0.0097866 0.00979813 0.00980965 0.00982118 0.0098327 0.00984422 0.00985575 0.00986727 0.0098788 0.00989032 0.00990184 0.00991337 0.00992489 0.00993642 0.00994794 0.00995947 0.00997099 0.00998251 0.00999404 0.0100056 0.0100171 0.0100286 0.0100401 0.0100517 0.0100632 0.0100747 0.0100862 0.0100978 0.0101093 0.0101208 0.0101323 0.0101439 0.0101554 0.0101669 0.0101784 0.0101899 0.0102015 0.010213 0.0102245 0.010236 0.0102476 0.0102591 0.0102706 0.0102821 0.0102937 0.0103052 0.0103167 0.0103282 0.0103398 0.0103513 0.0103628 0.0103743 0.0103859 0.0103974 0.0104089 0.0104204 0.010432 0.0104435 0.010455 0.0104665 0.0104781 0.0104896 0.0105011 0.0105126 0.0105241 0.0105357 0.0105472 0.0105587 0.0105702 0.0105818 0.0105933 0.0106048 0.0106163 0.0106279 0.0106394 0.0106509 0.0106624 0.010674 0.0106855 0.010697 0.0107085 0.0107201 0.0107316 0.0107431 0.0107546 0.0107662 0.0107777 0.0107892 0.0108007 0.0108123 0.0108238 0.0108353 0.0108468 0.0108584 0.0108699 0.0108814 0.0108929 0.0109044 0.010916 0.0109275 0.010939 0.0109505 0.0109621 0.0109736 0.0109851 0.0109966 0.0110082 0.0110197 0.0110312 0.0110427 0.0110543 0.0110658 0.0110773 0.0110888 0.0111004 +-0.00266274 -0.00243217 -0.00193764 -0.00106049 9.60514E-05 0.0014034 0.00278412 0.00419053 0.00558402 0.00691914 0.00812211 0.00905608 0.00955625 0.00970546 0.00974112 0.00975629 0.00976836 0.00977997 0.00979151 0.00980304 0.00981458 0.00982611 0.00983764 0.00984917 0.0098607 0.00987223 0.00988376 0.00989529 0.00990682 0.00991835 0.00992988 0.00994141 0.00995294 0.00996447 0.009976 0.00998753 0.00999906 0.0100106 0.0100221 0.0100336 0.0100452 0.0100567 0.0100682 0.0100798 0.0100913 0.0101028 0.0101144 0.0101259 0.0101374 0.010149 0.0101605 0.010172 0.0101835 0.0101951 0.0102066 0.0102181 0.0102297 0.0102412 0.0102527 0.0102643 0.0102758 0.0102873 0.0102988 0.0103104 0.0103219 0.0103334 0.010345 0.0103565 0.010368 0.0103796 0.0103911 0.0104026 0.0104141 0.0104257 0.0104372 0.0104487 0.0104603 0.0104718 0.0104833 0.0104949 0.0105064 0.0105179 0.0105294 0.010541 0.0105525 0.010564 0.0105756 0.0105871 0.0105986 0.0106102 0.0106217 0.0106332 0.0106447 0.0106563 0.0106678 0.0106793 0.0106909 0.0107024 0.0107139 0.0107255 0.010737 0.0107485 0.0107601 0.0107716 0.0107831 0.0107946 0.0108062 0.0108177 0.0108292 0.0108408 0.0108523 0.0108638 0.0108754 0.0108869 0.0108984 0.0109099 0.0109215 0.010933 0.0109445 0.0109561 0.0109676 0.0109791 0.0109907 0.0110022 0.0110137 0.0110252 0.0110368 0.0110483 0.0110598 0.0110714 0.0110829 0.0110944 0.011106 +-0.0026643 -0.00243344 -0.00193839 -0.00106073 9.61376E-05 0.0014037 0.0027846 0.00419119 0.0055849 0.00692037 0.00812391 0.00905893 0.00956038 0.00971019 0.00974598 0.00976118 0.00977326 0.00978488 0.00979642 0.00980796 0.0098195 0.00983103 0.00984257 0.00985411 0.00986564 0.00987718 0.00988871 0.00990025 0.00991179 0.00992332 0.00993486 0.0099464 0.00995793 0.00996947 0.009981 0.00999254 0.0100041 0.0100156 0.0100271 0.0100387 0.0100502 0.0100618 0.0100733 0.0100848 0.0100964 0.0101079 0.0101194 0.010131 0.0101425 0.010154 0.0101656 0.0101771 0.0101887 0.0102002 0.0102117 0.0102233 0.0102348 0.0102463 0.0102579 0.0102694 0.0102809 0.0102925 0.010304 0.0103156 0.0103271 0.0103386 0.0103502 0.0103617 0.0103732 0.0103848 0.0103963 0.0104078 0.0104194 0.0104309 0.0104425 0.010454 0.0104655 0.0104771 0.0104886 0.0105001 0.0105117 0.0105232 0.0105347 0.0105463 0.0105578 0.0105694 0.0105809 0.0105924 0.010604 0.0106155 0.010627 0.0106386 0.0106501 0.0106616 0.0106732 0.0106847 0.0106962 0.0107078 0.0107193 0.0107309 0.0107424 0.0107539 0.0107655 0.010777 0.0107885 0.0108001 0.0108116 0.0108231 0.0108347 0.0108462 0.0108578 0.0108693 0.0108808 0.0108924 0.0109039 0.0109154 0.010927 0.0109385 0.01095 0.0109616 0.0109731 0.0109847 0.0109962 0.0110077 0.0110193 0.0110308 0.0110423 0.0110539 0.0110654 0.0110769 0.0110885 0.0111 0.0111116 +-0.00266585 -0.00243472 -0.00193913 -0.00106097 9.62239E-05 0.00140401 0.00278508 0.00419185 0.00558578 0.00692159 0.00812572 0.00906177 0.0095645 0.00971492 0.00975084 0.00976607 0.00977816 0.00978978 0.00980133 0.00981288 0.00982442 0.00983596 0.0098475 0.00985905 0.00987059 0.00988213 0.00989367 0.00990521 0.00991676 0.0099283 0.00993984 0.00995138 0.00996293 0.00997447 0.00998601 0.00999755 0.0100091 0.0100206 0.0100322 0.0100437 0.0100553 0.0100668 0.0100783 0.0100899 0.0101014 0.010113 0.0101245 0.0101361 0.0101476 0.0101591 0.0101707 0.0101822 0.0101938 0.0102053 0.0102169 0.0102284 0.0102399 0.0102515 0.010263 0.0102746 0.0102861 0.0102976 0.0103092 0.0103207 0.0103323 0.0103438 0.0103554 0.0103669 0.0103784 0.01039 0.0104015 0.0104131 0.0104246 0.0104362 0.0104477 0.0104592 0.0104708 0.0104823 0.0104939 0.0105054 0.010517 0.0105285 0.01054 0.0105516 0.0105631 0.0105747 0.0105862 0.0105977 0.0106093 0.0106208 0.0106324 0.0106439 0.0106555 0.010667 0.0106785 0.0106901 0.0107016 0.0107132 0.0107247 0.0107363 0.0107478 0.0107593 0.0107709 0.0107824 0.010794 0.0108055 0.0108171 0.0108286 0.0108401 0.0108517 0.0108632 0.0108748 0.0108863 0.0108978 0.0109094 0.0109209 0.0109325 0.010944 0.0109556 0.0109671 0.0109786 0.0109902 0.0110017 0.0110133 0.0110248 0.0110364 0.0110479 0.0110594 0.011071 0.0110825 0.0110941 0.0111056 0.0111171 +-0.0026674 -0.00243599 -0.00193987 -0.0010612 9.63101E-05 0.00140431 0.00278556 0.00419251 0.00558667 0.00692281 0.00812752 0.00906461 0.00956862 0.00971965 0.0097557 0.00977096 0.00978305 0.00979468 0.00980624 0.00981779 0.00982934 0.00984089 0.00985243 0.00986398 0.00987553 0.00988708 0.00989863 0.00991018 0.00992172 0.00993327 0.00994482 0.00995637 0.00996792 0.00997946 0.00999101 0.0100026 0.0100141 0.0100257 0.0100372 0.0100488 0.0100603 0.0100719 0.0100834 0.0100949 0.0101065 0.010118 0.0101296 0.0101411 0.0101527 0.0101642 0.0101758 0.0101873 0.0101989 0.0102104 0.010222 0.0102335 0.0102451 0.0102566 0.0102682 0.0102797 0.0102913 0.0103028 0.0103144 0.0103259 0.0103375 0.010349 0.0103606 0.0103721 0.0103837 0.0103952 0.0104067 0.0104183 0.0104298 0.0104414 0.0104529 0.0104645 0.010476 0.0104876 0.0104991 0.0105107 0.0105222 0.0105338 0.0105453 0.0105569 0.0105684 0.01058 0.0105915 0.0106031 0.0106146 0.0106262 0.0106377 0.0106493 0.0106608 0.0106724 0.0106839 0.0106955 0.010707 0.0107186 0.0107301 0.0107416 0.0107532 0.0107647 0.0107763 0.0107878 0.0107994 0.0108109 0.0108225 0.010834 0.0108456 0.0108571 0.0108687 0.0108802 0.0108918 0.0109033 0.0109149 0.0109264 0.010938 0.0109495 0.0109611 0.0109726 0.0109842 0.0109957 0.0110073 0.0110188 0.0110304 0.0110419 0.0110535 0.011065 0.0110765 0.0110881 0.0110996 0.0111112 0.0111227 +-0.00266896 -0.00243726 -0.00194061 -0.00106144 9.63963E-05 0.00140461 0.00278604 0.00419317 0.00558755 0.00692402 0.00812931 0.00906744 0.00957273 0.00972438 0.00976056 0.00977584 0.00978794 0.00979958 0.00981114 0.0098227 0.00983426 0.00984581 0.00985736 0.00986892 0.00988047 0.00989203 0.00990358 0.00991514 0.00992669 0.00993824 0.0099498 0.00996135 0.00997291 0.00998446 0.00999601 0.0100076 0.0100191 0.0100307 0.0100422 0.0100538 0.0100653 0.0100769 0.0100884 0.0101 0.0101116 0.0101231 0.0101347 0.0101462 0.0101578 0.0101693 0.0101809 0.0101924 0.010204 0.0102155 0.0102271 0.0102387 0.0102502 0.0102618 0.0102733 0.0102849 0.0102964 0.010308 0.0103195 0.0103311 0.0103426 0.0103542 0.0103658 0.0103773 0.0103889 0.0104004 0.010412 0.0104235 0.0104351 0.0104466 0.0104582 0.0104697 0.0104813 0.0104928 0.0105044 0.010516 0.0105275 0.0105391 0.0105506 0.0105622 0.0105737 0.0105853 0.0105968 0.0106084 0.0106199 0.0106315 0.0106431 0.0106546 0.0106662 0.0106777 0.0106893 0.0107008 0.0107124 0.0107239 0.0107355 0.010747 0.0107586 0.0107702 0.0107817 0.0107933 0.0108048 0.0108164 0.0108279 0.0108395 0.010851 0.0108626 0.0108741 0.0108857 0.0108972 0.0109088 0.0109204 0.0109319 0.0109435 0.010955 0.0109666 0.0109781 0.0109897 0.0110012 0.0110128 0.0110243 0.0110359 0.0110475 0.011059 0.0110706 0.0110821 0.0110937 0.0111052 0.0111168 0.0111283 +-0.00267051 -0.00243853 -0.00194135 -0.00106168 9.64826E-05 0.00140491 0.00278651 0.00419382 0.00558843 0.00692524 0.00813111 0.00907027 0.00957684 0.0097291 0.00976542 0.00978072 0.00979284 0.00980448 0.00981605 0.00982761 0.00983917 0.00985073 0.00986229 0.00987385 0.00988541 0.00989697 0.00990853 0.00992009 0.00993165 0.00994321 0.00995477 0.00996633 0.00997789 0.00998945 0.010001 0.0100126 0.0100241 0.0100357 0.0100473 0.0100588 0.0100704 0.0100819 0.0100935 0.0101051 0.0101166 0.0101282 0.0101397 0.0101513 0.0101629 0.0101744 0.010186 0.0101975 0.0102091 0.0102207 0.0102322 0.0102438 0.0102553 0.0102669 0.0102785 0.01029 0.0103016 0.0103131 0.0103247 0.0103363 0.0103478 0.0103594 0.0103709 0.0103825 0.0103941 0.0104056 0.0104172 0.0104287 0.0104403 0.0104519 0.0104634 0.010475 0.0104865 0.0104981 0.0105097 0.0105212 0.0105328 0.0105443 0.0105559 0.0105675 0.010579 0.0105906 0.0106021 0.0106137 0.0106253 0.0106368 0.0106484 0.01066 0.0106715 0.0106831 0.0106946 0.0107062 0.0107178 0.0107293 0.0107409 0.0107524 0.010764 0.0107756 0.0107871 0.0107987 0.0108102 0.0108218 0.0108334 0.0108449 0.0108565 0.010868 0.0108796 0.0108912 0.0109027 0.0109143 0.0109258 0.0109374 0.010949 0.0109605 0.0109721 0.0109836 0.0109952 0.0110068 0.0110183 0.0110299 0.0110414 0.011053 0.0110646 0.0110761 0.0110877 0.0110992 0.0111108 0.0111224 0.0111339 +-0.00267206 -0.00243981 -0.00194209 -0.00106191 9.65688E-05 0.00140521 0.00278699 0.00419448 0.00558931 0.00692646 0.0081329 0.0090731 0.00958094 0.00973382 0.00977027 0.0097856 0.00979773 0.00980937 0.00982095 0.00983252 0.00984409 0.00985565 0.00986722 0.00987878 0.00989035 0.00990192 0.00991348 0.00992505 0.00993662 0.00994818 0.00995975 0.00997131 0.00998288 0.00999445 0.010006 0.0100176 0.0100291 0.0100407 0.0100523 0.0100638 0.0100754 0.010087 0.0100985 0.0101101 0.0101217 0.0101332 0.0101448 0.0101564 0.0101679 0.0101795 0.0101911 0.0102026 0.0102142 0.0102258 0.0102373 0.0102489 0.0102605 0.010272 0.0102836 0.0102952 0.0103067 0.0103183 0.0103299 0.0103414 0.010353 0.0103646 0.0103761 0.0103877 0.0103993 0.0104108 0.0104224 0.010434 0.0104455 0.0104571 0.0104687 0.0104802 0.0104918 0.0105034 0.0105149 0.0105265 0.0105381 0.0105496 0.0105612 0.0105728 0.0105843 0.0105959 0.0106075 0.010619 0.0106306 0.0106422 0.0106537 0.0106653 0.0106769 0.0106884 0.0107 0.0107116 0.0107231 0.0107347 0.0107463 0.0107578 0.0107694 0.010781 0.0107925 0.0108041 0.0108157 0.0108272 0.0108388 0.0108504 0.0108619 0.0108735 0.0108851 0.0108966 0.0109082 0.0109197 0.0109313 0.0109429 0.0109544 0.010966 0.0109776 0.0109891 0.0110007 0.0110123 0.0110238 0.0110354 0.011047 0.0110585 0.0110701 0.0110817 0.0110932 0.0111048 0.0111164 0.0111279 0.0111395 +-0.00267361 -0.00244108 -0.00194283 -0.00106215 9.66551E-05 0.00140551 0.00278747 0.00419513 0.00559019 0.00692767 0.00813469 0.00907592 0.00958504 0.00973854 0.00977512 0.00979048 0.00980261 0.00981427 0.00982585 0.00983743 0.009849 0.00986057 0.00987214 0.00988372 0.00989529 0.00990686 0.00991843 0.00993 0.00994158 0.00995315 0.00996472 0.00997629 0.00998787 0.00999944 0.010011 0.0100226 0.0100342 0.0100457 0.0100573 0.0100689 0.0100804 0.010092 0.0101036 0.0101152 0.0101267 0.0101383 0.0101499 0.0101615 0.010173 0.0101846 0.0101962 0.0102077 0.0102193 0.0102309 0.0102425 0.010254 0.0102656 0.0102772 0.0102887 0.0103003 0.0103119 0.0103235 0.010335 0.0103466 0.0103582 0.0103698 0.0103813 0.0103929 0.0104045 0.010416 0.0104276 0.0104392 0.0104508 0.0104623 0.0104739 0.0104855 0.010497 0.0105086 0.0105202 0.0105318 0.0105433 0.0105549 0.0105665 0.0105781 0.0105896 0.0106012 0.0106128 0.0106243 0.0106359 0.0106475 0.0106591 0.0106706 0.0106822 0.0106938 0.0107053 0.0107169 0.0107285 0.0107401 0.0107516 0.0107632 0.0107748 0.0107864 0.0107979 0.0108095 0.0108211 0.0108326 0.0108442 0.0108558 0.0108674 0.0108789 0.0108905 0.0109021 0.0109136 0.0109252 0.0109368 0.0109484 0.0109599 0.0109715 0.0109831 0.0109947 0.0110062 0.0110178 0.0110294 0.0110409 0.0110525 0.0110641 0.0110757 0.0110872 0.0110988 0.0111104 0.0111219 0.0111335 0.0111451 +-0.00267516 -0.00244235 -0.00194357 -0.00106238 9.67413E-05 0.00140581 0.00278794 0.00419579 0.00559107 0.00692888 0.00813647 0.00907873 0.00958914 0.00974326 0.00977998 0.00979536 0.0098075 0.00981916 0.00983075 0.00984233 0.00985391 0.00986549 0.00987707 0.00988864 0.00990022 0.0099118 0.00992338 0.00993496 0.00994654 0.00995811 0.00996969 0.00998127 0.00999285 0.0100044 0.010016 0.0100276 0.0100392 0.0100507 0.0100623 0.0100739 0.0100855 0.0100971 0.0101086 0.0101202 0.0101318 0.0101434 0.0101549 0.0101665 0.0101781 0.0101897 0.0102013 0.0102128 0.0102244 0.010236 0.0102476 0.0102591 0.0102707 0.0102823 0.0102939 0.0103055 0.010317 0.0103286 0.0103402 0.0103518 0.0103634 0.0103749 0.0103865 0.0103981 0.0104097 0.0104212 0.0104328 0.0104444 0.010456 0.0104676 0.0104791 0.0104907 0.0105023 0.0105139 0.0105255 0.010537 0.0105486 0.0105602 0.0105718 0.0105833 0.0105949 0.0106065 0.0106181 0.0106297 0.0106412 0.0106528 0.0106644 0.010676 0.0106875 0.0106991 0.0107107 0.0107223 0.0107339 0.0107454 0.010757 0.0107686 0.0107802 0.0107918 0.0108033 0.0108149 0.0108265 0.0108381 0.0108496 0.0108612 0.0108728 0.0108844 0.010896 0.0109075 0.0109191 0.0109307 0.0109423 0.0109538 0.0109654 0.010977 0.0109886 0.0110002 0.0110117 0.0110233 0.0110349 0.0110465 0.0110581 0.0110696 0.0110812 0.0110928 0.0111044 0.0111159 0.0111275 0.0111391 0.0111507 +-0.00267672 -0.00244362 -0.0019443 -0.00106262 9.68276E-05 0.00140612 0.00278842 0.00419644 0.00559195 0.00693009 0.00813825 0.00908154 0.00959323 0.00974797 0.00978483 0.00980024 0.00981238 0.00982405 0.00983565 0.00984723 0.00985882 0.0098704 0.00988199 0.00989357 0.00990516 0.00991674 0.00992832 0.00993991 0.00995149 0.00996308 0.00997466 0.00998625 0.00999783 0.0100094 0.010021 0.0100326 0.0100442 0.0100558 0.0100673 0.0100789 0.0100905 0.0101021 0.0101137 0.0101253 0.0101368 0.0101484 0.01016 0.0101716 0.0101832 0.0101948 0.0102063 0.0102179 0.0102295 0.0102411 0.0102527 0.0102643 0.0102759 0.0102874 0.010299 0.0103106 0.0103222 0.0103338 0.0103454 0.0103569 0.0103685 0.0103801 0.0103917 0.0104033 0.0104149 0.0104264 0.010438 0.0104496 0.0104612 0.0104728 0.0104844 0.010496 0.0105075 0.0105191 0.0105307 0.0105423 0.0105539 0.0105655 0.010577 0.0105886 0.0106002 0.0106118 0.0106234 0.010635 0.0106466 0.0106581 0.0106697 0.0106813 0.0106929 0.0107045 0.0107161 0.0107276 0.0107392 0.0107508 0.0107624 0.010774 0.0107856 0.0107971 0.0108087 0.0108203 0.0108319 0.0108435 0.0108551 0.0108667 0.0108782 0.0108898 0.0109014 0.010913 0.0109246 0.0109362 0.0109477 0.0109593 0.0109709 0.0109825 0.0109941 0.0110057 0.0110172 0.0110288 0.0110404 0.011052 0.0110636 0.0110752 0.0110868 0.0110983 0.0111099 0.0111215 0.0111331 0.0111447 0.0111563 +-0.00267827 -0.00244488 -0.00194504 -0.00106285 9.69139E-05 0.00140642 0.00278889 0.0041971 0.00559283 0.0069313 0.00814004 0.00908435 0.00959732 0.00975269 0.00978967 0.00980511 0.00981727 0.00982894 0.00984054 0.00985214 0.00986373 0.00987532 0.00988691 0.0098985 0.00991009 0.00992168 0.00993327 0.00994486 0.00995645 0.00996804 0.00997963 0.00999122 0.0100028 0.0100144 0.010026 0.0100376 0.0100492 0.0100608 0.0100724 0.0100839 0.0100955 0.0101071 0.0101187 0.0101303 0.0101419 0.0101535 0.0101651 0.0101767 0.0101883 0.0101998 0.0102114 0.010223 0.0102346 0.0102462 0.0102578 0.0102694 0.010281 0.0102926 0.0103042 0.0103157 0.0103273 0.0103389 0.0103505 0.0103621 0.0103737 0.0103853 0.0103969 0.0104085 0.0104201 0.0104317 0.0104432 0.0104548 0.0104664 0.010478 0.0104896 0.0105012 0.0105128 0.0105244 0.010536 0.0105476 0.0105591 0.0105707 0.0105823 0.0105939 0.0106055 0.0106171 0.0106287 0.0106403 0.0106519 0.0106635 0.010675 0.0106866 0.0106982 0.0107098 0.0107214 0.010733 0.0107446 0.0107562 0.0107678 0.0107794 0.010791 0.0108025 0.0108141 0.0108257 0.0108373 0.0108489 0.0108605 0.0108721 0.0108837 0.0108953 0.0109069 0.0109184 0.01093 0.0109416 0.0109532 0.0109648 0.0109764 0.010988 0.0109996 0.0110112 0.0110228 0.0110343 0.0110459 0.0110575 0.0110691 0.0110807 0.0110923 0.0111039 0.0111155 0.0111271 0.0111387 0.0111502 0.0111618 +-0.00267982 -0.00244615 -0.00194577 -0.00106309 9.70002E-05 0.00140672 0.00278937 0.00419775 0.0055937 0.00693251 0.00814181 0.00908715 0.0096014 0.0097574 0.00979452 0.00980998 0.00982215 0.00983383 0.00984544 0.00985704 0.00986863 0.00988023 0.00989183 0.00990342 0.00991502 0.00992661 0.00993821 0.00994981 0.0099614 0.009973 0.0099846 0.00999619 0.0100078 0.0100194 0.010031 0.0100426 0.0100542 0.0100658 0.0100774 0.010089 0.0101006 0.0101122 0.0101238 0.0101353 0.0101469 0.0101585 0.0101701 0.0101817 0.0101933 0.0102049 0.0102165 0.0102281 0.0102397 0.0102513 0.0102629 0.0102745 0.0102861 0.0102977 0.0103093 0.0103209 0.0103325 0.0103441 0.0103557 0.0103673 0.0103789 0.0103905 0.0104021 0.0104137 0.0104253 0.0104369 0.0104484 0.01046 0.0104716 0.0104832 0.0104948 0.0105064 0.010518 0.0105296 0.0105412 0.0105528 0.0105644 0.010576 0.0105876 0.0105992 0.0106108 0.0106224 0.010634 0.0106456 0.0106572 0.0106688 0.0106804 0.010692 0.0107036 0.0107152 0.0107268 0.0107384 0.01075 0.0107615 0.0107731 0.0107847 0.0107963 0.0108079 0.0108195 0.0108311 0.0108427 0.0108543 0.0108659 0.0108775 0.0108891 0.0109007 0.0109123 0.0109239 0.0109355 0.0109471 0.0109587 0.0109703 0.0109819 0.0109935 0.0110051 0.0110167 0.0110283 0.0110399 0.0110515 0.0110631 0.0110746 0.0110862 0.0110978 0.0111094 0.011121 0.0111326 0.0111442 0.0111558 0.0111674 +-0.00268136 -0.00244742 -0.00194651 -0.00106332 9.70865E-05 0.00140702 0.00278984 0.0041984 0.00559458 0.00693372 0.00814359 0.00908995 0.00960548 0.0097621 0.00979937 0.00981486 0.00982703 0.00983872 0.00985033 0.00986194 0.00987354 0.00988514 0.00989674 0.00990834 0.00991995 0.00993155 0.00994315 0.00995475 0.00996636 0.00997796 0.00998956 0.0100012 0.0100128 0.0100244 0.010036 0.0100476 0.0100592 0.0100708 0.0100824 0.010094 0.0101056 0.0101172 0.0101288 0.0101404 0.010152 0.0101636 0.0101752 0.0101868 0.0101984 0.01021 0.0102216 0.0102332 0.0102448 0.0102564 0.010268 0.0102796 0.0102912 0.0103028 0.0103144 0.010326 0.0103376 0.0103492 0.0103608 0.0103724 0.010384 0.0103956 0.0104072 0.0104188 0.0104304 0.0104421 0.0104537 0.0104653 0.0104769 0.0104885 0.0105001 0.0105117 0.0105233 0.0105349 0.0105465 0.0105581 0.0105697 0.0105813 0.0105929 0.0106045 0.0106161 0.0106277 0.0106393 0.0106509 0.0106625 0.0106741 0.0106857 0.0106973 0.0107089 0.0107205 0.0107321 0.0107437 0.0107553 0.0107669 0.0107785 0.0107901 0.0108017 0.0108133 0.0108249 0.0108365 0.0108481 0.0108597 0.0108713 0.0108829 0.0108945 0.0109061 0.0109177 0.0109293 0.0109409 0.0109526 0.0109642 0.0109758 0.0109874 0.010999 0.0110106 0.0110222 0.0110338 0.0110454 0.011057 0.0110686 0.0110802 0.0110918 0.0111034 0.011115 0.0111266 0.0111382 0.0111498 0.0111614 0.011173 +-0.00268291 -0.00244869 -0.00194724 -0.00106355 9.71728E-05 0.00140732 0.00279032 0.00419905 0.00559545 0.00693492 0.00814536 0.00909275 0.00960956 0.00976681 0.00980421 0.00981972 0.00983191 0.0098436 0.00985522 0.00986683 0.00987844 0.00989005 0.00990166 0.00991327 0.00992487 0.00993648 0.00994809 0.0099597 0.00997131 0.00998292 0.00999452 0.0100061 0.0100177 0.0100293 0.010041 0.0100526 0.0100642 0.0100758 0.0100874 0.010099 0.0101106 0.0101222 0.0101338 0.0101454 0.010157 0.0101686 0.0101803 0.0101919 0.0102035 0.0102151 0.0102267 0.0102383 0.0102499 0.0102615 0.0102731 0.0102847 0.0102963 0.0103079 0.0103196 0.0103312 0.0103428 0.0103544 0.010366 0.0103776 0.0103892 0.0104008 0.0104124 0.010424 0.0104356 0.0104472 0.0104589 0.0104705 0.0104821 0.0104937 0.0105053 0.0105169 0.0105285 0.0105401 0.0105517 0.0105633 0.0105749 0.0105865 0.0105982 0.0106098 0.0106214 0.010633 0.0106446 0.0106562 0.0106678 0.0106794 0.010691 0.0107026 0.0107142 0.0107258 0.0107375 0.0107491 0.0107607 0.0107723 0.0107839 0.0107955 0.0108071 0.0108187 0.0108303 0.0108419 0.0108535 0.0108651 0.0108768 0.0108884 0.0109 0.0109116 0.0109232 0.0109348 0.0109464 0.010958 0.0109696 0.0109812 0.0109928 0.0110044 0.0110161 0.0110277 0.0110393 0.0110509 0.0110625 0.0110741 0.0110857 0.0110973 0.0111089 0.0111205 0.0111321 0.0111437 0.0111554 0.011167 0.0111786 +-0.00268446 -0.00244995 -0.00194798 -0.00106379 9.72591E-05 0.00140762 0.00279079 0.00419971 0.00559632 0.00693612 0.00814713 0.00909554 0.00961363 0.00977151 0.00980905 0.00982459 0.00983679 0.00984848 0.00986011 0.00987173 0.00988334 0.00989496 0.00990657 0.00991819 0.0099298 0.00994141 0.00995303 0.00996464 0.00997626 0.00998787 0.00999949 0.0100111 0.0100227 0.0100343 0.0100459 0.0100576 0.0100692 0.0100808 0.0100924 0.010104 0.0101156 0.0101272 0.0101389 0.0101505 0.0101621 0.0101737 0.0101853 0.0101969 0.0102085 0.0102202 0.0102318 0.0102434 0.010255 0.0102666 0.0102782 0.0102898 0.0103015 0.0103131 0.0103247 0.0103363 0.0103479 0.0103595 0.0103711 0.0103828 0.0103944 0.010406 0.0104176 0.0104292 0.0104408 0.0104524 0.0104641 0.0104757 0.0104873 0.0104989 0.0105105 0.0105221 0.0105337 0.0105454 0.010557 0.0105686 0.0105802 0.0105918 0.0106034 0.010615 0.0106267 0.0106383 0.0106499 0.0106615 0.0106731 0.0106847 0.0106963 0.010708 0.0107196 0.0107312 0.0107428 0.0107544 0.010766 0.0107776 0.0107893 0.0108009 0.0108125 0.0108241 0.0108357 0.0108473 0.0108589 0.0108706 0.0108822 0.0108938 0.0109054 0.010917 0.0109286 0.0109402 0.0109519 0.0109635 0.0109751 0.0109867 0.0109983 0.0110099 0.0110215 0.0110332 0.0110448 0.0110564 0.011068 0.0110796 0.0110912 0.0111028 0.0111145 0.0111261 0.0111377 0.0111493 0.0111609 0.0111725 0.0111841 +-0.00268601 -0.00245122 -0.00194871 -0.00106402 9.73454E-05 0.00140792 0.00279126 0.00420036 0.0055972 0.00693733 0.0081489 0.00909832 0.00961769 0.00977621 0.00981389 0.00982946 0.00984166 0.00985337 0.009865 0.00987662 0.00988824 0.00989986 0.00991148 0.0099231 0.00993472 0.00994634 0.00995796 0.00996958 0.0099812 0.00999282 0.0100044 0.0100161 0.0100277 0.0100393 0.0100509 0.0100625 0.0100742 0.0100858 0.0100974 0.010109 0.0101206 0.0101323 0.0101439 0.0101555 0.0101671 0.0101787 0.0101904 0.010202 0.0102136 0.0102252 0.0102369 0.0102485 0.0102601 0.0102717 0.0102833 0.010295 0.0103066 0.0103182 0.0103298 0.0103414 0.0103531 0.0103647 0.0103763 0.0103879 0.0103995 0.0104112 0.0104228 0.0104344 0.010446 0.0104576 0.0104693 0.0104809 0.0104925 0.0105041 0.0105157 0.0105274 0.010539 0.0105506 0.0105622 0.0105738 0.0105855 0.0105971 0.0106087 0.0106203 0.0106319 0.0106436 0.0106552 0.0106668 0.0106784 0.01069 0.0107017 0.0107133 0.0107249 0.0107365 0.0107481 0.0107598 0.0107714 0.010783 0.0107946 0.0108062 0.0108179 0.0108295 0.0108411 0.0108527 0.0108643 0.010876 0.0108876 0.0108992 0.0109108 0.0109224 0.0109341 0.0109457 0.0109573 0.0109689 0.0109805 0.0109922 0.0110038 0.0110154 0.011027 0.0110387 0.0110503 0.0110619 0.0110735 0.0110851 0.0110968 0.0111084 0.01112 0.0111316 0.0111432 0.0111549 0.0111665 0.0111781 0.0111897 +-0.00268756 -0.00245248 -0.00194944 -0.00106425 9.74317E-05 0.00140821 0.00279174 0.00420101 0.00559807 0.00693853 0.00815066 0.0091011 0.00962176 0.00978091 0.00981873 0.00983432 0.00984653 0.00985825 0.00986989 0.00988151 0.00989314 0.00990477 0.00991639 0.00992802 0.00993965 0.00995127 0.0099629 0.00997452 0.00998615 0.00999778 0.0100094 0.010021 0.0100327 0.0100443 0.0100559 0.0100675 0.0100792 0.0100908 0.0101024 0.010114 0.0101257 0.0101373 0.0101489 0.0101605 0.0101722 0.0101838 0.0101954 0.0102071 0.0102187 0.0102303 0.0102419 0.0102536 0.0102652 0.0102768 0.0102884 0.0103001 0.0103117 0.0103233 0.0103349 0.0103466 0.0103582 0.0103698 0.0103814 0.0103931 0.0104047 0.0104163 0.0104279 0.0104396 0.0104512 0.0104628 0.0104745 0.0104861 0.0104977 0.0105093 0.010521 0.0105326 0.0105442 0.0105558 0.0105675 0.0105791 0.0105907 0.0106023 0.010614 0.0106256 0.0106372 0.0106488 0.0106605 0.0106721 0.0106837 0.0106954 0.010707 0.0107186 0.0107302 0.0107419 0.0107535 0.0107651 0.0107767 0.0107884 0.0108 0.0108116 0.0108232 0.0108349 0.0108465 0.0108581 0.0108697 0.0108814 0.010893 0.0109046 0.0109163 0.0109279 0.0109395 0.0109511 0.0109628 0.0109744 0.010986 0.0109976 0.0110093 0.0110209 0.0110325 0.0110441 0.0110558 0.0110674 0.011079 0.0110906 0.0111023 0.0111139 0.0111255 0.0111372 0.0111488 0.0111604 0.011172 0.0111837 0.0111953 +-0.0026891 -0.00245374 -0.00195017 -0.00106449 9.7518E-05 0.00140851 0.00279221 0.00420166 0.00559894 0.00693972 0.00815243 0.00910388 0.00962582 0.00978561 0.00982356 0.00983919 0.00985141 0.00986313 0.00987477 0.0098864 0.00989804 0.00990967 0.0099213 0.00993293 0.00994457 0.0099562 0.00996783 0.00997946 0.0099911 0.0100027 0.0100144 0.010026 0.0100376 0.0100493 0.0100609 0.0100725 0.0100842 0.0100958 0.0101074 0.0101191 0.0101307 0.0101423 0.0101539 0.0101656 0.0101772 0.0101888 0.0102005 0.0102121 0.0102237 0.0102354 0.010247 0.0102586 0.0102703 0.0102819 0.0102935 0.0103052 0.0103168 0.0103284 0.0103401 0.0103517 0.0103633 0.010375 0.0103866 0.0103982 0.0104099 0.0104215 0.0104331 0.0104448 0.0104564 0.010468 0.0104797 0.0104913 0.0105029 0.0105145 0.0105262 0.0105378 0.0105494 0.0105611 0.0105727 0.0105843 0.010596 0.0106076 0.0106192 0.0106309 0.0106425 0.0106541 0.0106658 0.0106774 0.010689 0.0107007 0.0107123 0.0107239 0.0107356 0.0107472 0.0107588 0.0107705 0.0107821 0.0107937 0.0108054 0.010817 0.0108286 0.0108403 0.0108519 0.0108635 0.0108751 0.0108868 0.0108984 0.01091 0.0109217 0.0109333 0.0109449 0.0109566 0.0109682 0.0109798 0.0109915 0.0110031 0.0110147 0.0110264 0.011038 0.0110496 0.0110613 0.0110729 0.0110845 0.0110962 0.0111078 0.0111194 0.0111311 0.0111427 0.0111543 0.011166 0.0111776 0.0111892 0.0112009 +-0.00269065 -0.00245501 -0.0019509 -0.00106472 9.76044E-05 0.00140881 0.00279268 0.00420231 0.00559981 0.00694092 0.00815419 0.00910664 0.00962987 0.0097903 0.0098284 0.00984405 0.00985628 0.009868 0.00987965 0.00989129 0.00990293 0.00991457 0.00992621 0.00993785 0.00994949 0.00996112 0.00997276 0.0099844 0.00999604 0.0100077 0.0100193 0.010031 0.0100426 0.0100542 0.0100659 0.0100775 0.0100891 0.0101008 0.0101124 0.0101241 0.0101357 0.0101473 0.010159 0.0101706 0.0101823 0.0101939 0.0102055 0.0102172 0.0102288 0.0102404 0.0102521 0.0102637 0.0102754 0.010287 0.0102986 0.0103103 0.0103219 0.0103335 0.0103452 0.0103568 0.0103685 0.0103801 0.0103917 0.0104034 0.010415 0.0104267 0.0104383 0.0104499 0.0104616 0.0104732 0.0104848 0.0104965 0.0105081 0.0105198 0.0105314 0.010543 0.0105547 0.0105663 0.010578 0.0105896 0.0106012 0.0106129 0.0106245 0.0106361 0.0106478 0.0106594 0.0106711 0.0106827 0.0106943 0.010706 0.0107176 0.0107292 0.0107409 0.0107525 0.0107642 0.0107758 0.0107874 0.0107991 0.0108107 0.0108224 0.010834 0.0108456 0.0108573 0.0108689 0.0108805 0.0108922 0.0109038 0.0109155 0.0109271 0.0109387 0.0109504 0.010962 0.0109737 0.0109853 0.0109969 0.0110086 0.0110202 0.0110318 0.0110435 0.0110551 0.0110668 0.0110784 0.01109 0.0111017 0.0111133 0.0111249 0.0111366 0.0111482 0.0111599 0.0111715 0.0111831 0.0111948 0.0112064 +-0.0026922 -0.00245627 -0.00195163 -0.00106495 9.76907E-05 0.00140911 0.00279315 0.00420295 0.00560068 0.00694212 0.00815594 0.00910941 0.00963392 0.00979499 0.00983323 0.00984891 0.00986115 0.00987288 0.00988454 0.00989618 0.00990783 0.00991947 0.00993111 0.00994276 0.0099544 0.00996605 0.00997769 0.00998934 0.010001 0.0100126 0.0100243 0.0100359 0.0100476 0.0100592 0.0100708 0.0100825 0.0100941 0.0101058 0.0101174 0.0101291 0.0101407 0.0101524 0.010164 0.0101756 0.0101873 0.0101989 0.0102106 0.0102222 0.0102339 0.0102455 0.0102572 0.0102688 0.0102804 0.0102921 0.0103037 0.0103154 0.010327 0.0103387 0.0103503 0.010362 0.0103736 0.0103852 0.0103969 0.0104085 0.0104202 0.0104318 0.0104435 0.0104551 0.0104667 0.0104784 0.01049 0.0105017 0.0105133 0.010525 0.0105366 0.0105483 0.0105599 0.0105715 0.0105832 0.0105948 0.0106065 0.0106181 0.0106298 0.0106414 0.0106531 0.0106647 0.0106763 0.010688 0.0106996 0.0107113 0.0107229 0.0107346 0.0107462 0.0107579 0.0107695 0.0107811 0.0107928 0.0108044 0.0108161 0.0108277 0.0108394 0.010851 0.0108627 0.0108743 0.0108859 0.0108976 0.0109092 0.0109209 0.0109325 0.0109442 0.0109558 0.0109675 0.0109791 0.0109907 0.0110024 0.011014 0.0110257 0.0110373 0.011049 0.0110606 0.0110723 0.0110839 0.0110955 0.0111072 0.0111188 0.0111305 0.0111421 0.0111538 0.0111654 0.011177 0.0111887 0.0112003 0.011212 +-0.00269374 -0.00245753 -0.00195236 -0.00106518 9.77771E-05 0.00140941 0.00279363 0.0042036 0.00560154 0.00694331 0.0081577 0.00911217 0.00963796 0.00979968 0.00983806 0.00985377 0.00986601 0.00987775 0.00988941 0.00990107 0.00991272 0.00992437 0.00993602 0.00994767 0.00995932 0.00997097 0.00998262 0.00999427 0.0100059 0.0100176 0.0100292 0.0100409 0.0100525 0.0100642 0.0100758 0.0100875 0.0100991 0.0101108 0.0101224 0.0101341 0.0101457 0.0101574 0.010169 0.0101807 0.0101923 0.010204 0.0102156 0.0102273 0.0102389 0.0102506 0.0102622 0.0102739 0.0102855 0.0102972 0.0103088 0.0103205 0.0103321 0.0103438 0.0103554 0.0103671 0.0103787 0.0103904 0.010402 0.0104137 0.0104253 0.010437 0.0104486 0.0104603 0.0104719 0.0104836 0.0104952 0.0105069 0.0105185 0.0105302 0.0105418 0.0105535 0.0105651 0.0105768 0.0105884 0.0106001 0.0106117 0.0106234 0.010635 0.0106467 0.0106583 0.01067 0.0106816 0.0106933 0.0107049 0.0107166 0.0107282 0.0107399 0.0107515 0.0107632 0.0107748 0.0107865 0.0107981 0.0108098 0.0108214 0.0108331 0.0108447 0.0108564 0.010868 0.0108797 0.0108913 0.010903 0.0109146 0.0109263 0.0109379 0.0109496 0.0109612 0.0109729 0.0109845 0.0109962 0.0110078 0.0110195 0.0110311 0.0110428 0.0110544 0.0110661 0.0110777 0.0110894 0.011101 0.0111127 0.0111243 0.011136 0.0111476 0.0111593 0.0111709 0.0111826 0.0111942 0.0112059 0.0112175 +-0.00269529 -0.00245879 -0.00195309 -0.00106541 9.78634E-05 0.00140971 0.0027941 0.00420425 0.00560241 0.00694451 0.00815945 0.00911493 0.00964201 0.00980437 0.00984289 0.00985862 0.00987088 0.00988262 0.00989429 0.00990595 0.00991761 0.00992926 0.00994092 0.00995258 0.00996423 0.00997589 0.00998755 0.0099992 0.0100109 0.0100225 0.0100342 0.0100458 0.0100575 0.0100691 0.0100808 0.0100925 0.0101041 0.0101158 0.0101274 0.0101391 0.0101507 0.0101624 0.010174 0.0101857 0.0101974 0.010209 0.0102207 0.0102323 0.010244 0.0102556 0.0102673 0.010279 0.0102906 0.0103023 0.0103139 0.0103256 0.0103372 0.0103489 0.0103605 0.0103722 0.0103839 0.0103955 0.0104072 0.0104188 0.0104305 0.0104421 0.0104538 0.0104654 0.0104771 0.0104888 0.0105004 0.0105121 0.0105237 0.0105354 0.010547 0.0105587 0.0105704 0.010582 0.0105937 0.0106053 0.010617 0.0106286 0.0106403 0.0106519 0.0106636 0.0106753 0.0106869 0.0106986 0.0107102 0.0107219 0.0107335 0.0107452 0.0107569 0.0107685 0.0107802 0.0107918 0.0108035 0.0108151 0.0108268 0.0108384 0.0108501 0.0108618 0.0108734 0.0108851 0.0108967 0.0109084 0.01092 0.0109317 0.0109434 0.010955 0.0109667 0.0109783 0.01099 0.0110016 0.0110133 0.0110249 0.0110366 0.0110483 0.0110599 0.0110716 0.0110832 0.0110949 0.0111065 0.0111182 0.0111299 0.0111415 0.0111532 0.0111648 0.0111765 0.0111881 0.0111998 0.0112114 0.0112231 +-0.00269683 -0.00246005 -0.00195381 -0.00106564 9.79498E-05 0.00141001 0.00279457 0.0042049 0.00560328 0.0069457 0.0081612 0.00911769 0.00964604 0.00980905 0.00984772 0.00986348 0.00987574 0.00988749 0.00989917 0.00991083 0.0099225 0.00993416 0.00994582 0.00995748 0.00996915 0.00998081 0.00999247 0.0100041 0.0100158 0.0100275 0.0100391 0.0100508 0.0100624 0.0100741 0.0100858 0.0100974 0.0101091 0.0101208 0.0101324 0.0101441 0.0101557 0.0101674 0.0101791 0.0101907 0.0102024 0.0102141 0.0102257 0.0102374 0.010249 0.0102607 0.0102724 0.010284 0.0102957 0.0103073 0.010319 0.0103307 0.0103423 0.010354 0.0103657 0.0103773 0.010389 0.0104006 0.0104123 0.010424 0.0104356 0.0104473 0.010459 0.0104706 0.0104823 0.0104939 0.0105056 0.0105173 0.0105289 0.0105406 0.0105523 0.0105639 0.0105756 0.0105872 0.0105989 0.0106106 0.0106222 0.0106339 0.0106456 0.0106572 0.0106689 0.0106805 0.0106922 0.0107039 0.0107155 0.0107272 0.0107389 0.0107505 0.0107622 0.0107738 0.0107855 0.0107972 0.0108088 0.0108205 0.0108321 0.0108438 0.0108555 0.0108671 0.0108788 0.0108905 0.0109021 0.0109138 0.0109254 0.0109371 0.0109488 0.0109604 0.0109721 0.0109838 0.0109954 0.0110071 0.0110187 0.0110304 0.0110421 0.0110537 0.0110654 0.0110771 0.0110887 0.0111004 0.011112 0.0111237 0.0111354 0.011147 0.0111587 0.0111704 0.011182 0.0111937 0.0112053 0.011217 0.0112287 +-0.00269837 -0.00246131 -0.00195454 -0.00106587 9.80362E-05 0.0014103 0.00279504 0.00420554 0.00560414 0.00694689 0.00816295 0.00912044 0.00965008 0.00981374 0.00985254 0.00986833 0.00988061 0.00989236 0.00990405 0.00991572 0.00992738 0.00993905 0.00995072 0.00996239 0.00997406 0.00998572 0.00999739 0.0100091 0.0100207 0.0100324 0.0100441 0.0100557 0.0100674 0.0100791 0.0100907 0.0101024 0.0101141 0.0101257 0.0101374 0.0101491 0.0101607 0.0101724 0.0101841 0.0101958 0.0102074 0.0102191 0.0102308 0.0102424 0.0102541 0.0102658 0.0102774 0.0102891 0.0103008 0.0103124 0.0103241 0.0103358 0.0103474 0.0103591 0.0103708 0.0103824 0.0103941 0.0104058 0.0104174 0.0104291 0.0104408 0.0104525 0.0104641 0.0104758 0.0104875 0.0104991 0.0105108 0.0105225 0.0105341 0.0105458 0.0105575 0.0105691 0.0105808 0.0105925 0.0106041 0.0106158 0.0106275 0.0106391 0.0106508 0.0106625 0.0106741 0.0106858 0.0106975 0.0107092 0.0107208 0.0107325 0.0107442 0.0107558 0.0107675 0.0107792 0.0107908 0.0108025 0.0108142 0.0108258 0.0108375 0.0108492 0.0108608 0.0108725 0.0108842 0.0108958 0.0109075 0.0109192 0.0109308 0.0109425 0.0109542 0.0109659 0.0109775 0.0109892 0.0110009 0.0110125 0.0110242 0.0110359 0.0110475 0.0110592 0.0110709 0.0110825 0.0110942 0.0111059 0.0111175 0.0111292 0.0111409 0.0111525 0.0111642 0.0111759 0.0111875 0.0111992 0.0112109 0.0112226 0.0112342 +-0.00269992 -0.00246257 -0.00195527 -0.0010661 9.81225E-05 0.0014106 0.00279551 0.00420619 0.00560501 0.00694808 0.00816469 0.00912318 0.00965411 0.00981842 0.00985737 0.00987318 0.00988547 0.00989723 0.00990892 0.00992059 0.00993227 0.00994394 0.00995562 0.00996729 0.00997897 0.00999064 0.0100023 0.010014 0.0100257 0.0100373 0.010049 0.0100607 0.0100724 0.010084 0.0100957 0.0101074 0.0101191 0.0101307 0.0101424 0.0101541 0.0101658 0.0101774 0.0101891 0.0102008 0.0102124 0.0102241 0.0102358 0.0102475 0.0102591 0.0102708 0.0102825 0.0102942 0.0103058 0.0103175 0.0103292 0.0103409 0.0103525 0.0103642 0.0103759 0.0103876 0.0103992 0.0104109 0.0104226 0.0104343 0.0104459 0.0104576 0.0104693 0.010481 0.0104926 0.0105043 0.010516 0.0105277 0.0105393 0.010551 0.0105627 0.0105743 0.010586 0.0105977 0.0106094 0.010621 0.0106327 0.0106444 0.0106561 0.0106677 0.0106794 0.0106911 0.0107028 0.0107144 0.0107261 0.0107378 0.0107495 0.0107611 0.0107728 0.0107845 0.0107962 0.0108078 0.0108195 0.0108312 0.0108429 0.0108545 0.0108662 0.0108779 0.0108895 0.0109012 0.0109129 0.0109246 0.0109362 0.0109479 0.0109596 0.0109713 0.0109829 0.0109946 0.0110063 0.011018 0.0110296 0.0110413 0.011053 0.0110647 0.0110763 0.011088 0.0110997 0.0111114 0.011123 0.0111347 0.0111464 0.0111581 0.0111697 0.0111814 0.0111931 0.0112048 0.0112164 0.0112281 0.0112398 +-0.00270146 -0.00246383 -0.00195599 -0.00106633 9.82089E-05 0.0014109 0.00279598 0.00420683 0.00560587 0.00694926 0.00816643 0.00912592 0.00965813 0.00982309 0.00986219 0.00987803 0.00989033 0.0099021 0.00991379 0.00992547 0.00993715 0.00994883 0.00996051 0.00997219 0.00998387 0.00999555 0.0100072 0.0100189 0.0100306 0.0100423 0.010054 0.0100656 0.0100773 0.010089 0.0101007 0.0101124 0.010124 0.0101357 0.0101474 0.0101591 0.0101708 0.0101824 0.0101941 0.0102058 0.0102175 0.0102292 0.0102408 0.0102525 0.0102642 0.0102759 0.0102876 0.0102992 0.0103109 0.0103226 0.0103343 0.010346 0.0103576 0.0103693 0.010381 0.0103927 0.0104044 0.010416 0.0104277 0.0104394 0.0104511 0.0104628 0.0104744 0.0104861 0.0104978 0.0105095 0.0105212 0.0105328 0.0105445 0.0105562 0.0105679 0.0105796 0.0105912 0.0106029 0.0106146 0.0106263 0.010638 0.0106496 0.0106613 0.010673 0.0106847 0.0106964 0.010708 0.0107197 0.0107314 0.0107431 0.0107548 0.0107664 0.0107781 0.0107898 0.0108015 0.0108132 0.0108248 0.0108365 0.0108482 0.0108599 0.0108716 0.0108832 0.0108949 0.0109066 0.0109183 0.01093 0.0109416 0.0109533 0.010965 0.0109767 0.0109884 0.011 0.0110117 0.0110234 0.0110351 0.0110468 0.0110584 0.0110701 0.0110818 0.0110935 0.0111052 0.0111168 0.0111285 0.0111402 0.0111519 0.0111636 0.0111752 0.0111869 0.0111986 0.0112103 0.011222 0.0112336 0.0112453 +-0.002703 -0.00246508 -0.00195672 -0.00106656 9.82953E-05 0.0014112 0.00279645 0.00420748 0.00560673 0.00695045 0.00816817 0.00912866 0.00966215 0.00982777 0.00986701 0.00988288 0.00989518 0.00990696 0.00991866 0.00993035 0.00994204 0.00995372 0.00996541 0.00997709 0.00998878 0.0100005 0.0100122 0.0100238 0.0100355 0.0100472 0.0100589 0.0100706 0.0100823 0.010094 0.0101056 0.0101173 0.010129 0.0101407 0.0101524 0.0101641 0.0101758 0.0101874 0.0101991 0.0102108 0.0102225 0.0102342 0.0102459 0.0102576 0.0102692 0.0102809 0.0102926 0.0103043 0.010316 0.0103277 0.0103394 0.010351 0.0103627 0.0103744 0.0103861 0.0103978 0.0104095 0.0104212 0.0104329 0.0104445 0.0104562 0.0104679 0.0104796 0.0104913 0.010503 0.0105147 0.0105263 0.010538 0.0105497 0.0105614 0.0105731 0.0105848 0.0105965 0.0106081 0.0106198 0.0106315 0.0106432 0.0106549 0.0106666 0.0106783 0.0106899 0.0107016 0.0107133 0.010725 0.0107367 0.0107484 0.0107601 0.0107717 0.0107834 0.0107951 0.0108068 0.0108185 0.0108302 0.0108419 0.0108536 0.0108652 0.0108769 0.0108886 0.0109003 0.010912 0.0109237 0.0109354 0.010947 0.0109587 0.0109704 0.0109821 0.0109938 0.0110055 0.0110172 0.0110288 0.0110405 0.0110522 0.0110639 0.0110756 0.0110873 0.011099 0.0111106 0.0111223 0.011134 0.0111457 0.0111574 0.0111691 0.0111808 0.0111924 0.0112041 0.0112158 0.0112275 0.0112392 0.0112509 +-0.00270454 -0.00246634 -0.00195744 -0.00106679 9.83817E-05 0.00141149 0.00279692 0.00420812 0.00560759 0.00695163 0.00816991 0.00913139 0.00966617 0.00983244 0.00987183 0.00988773 0.00990004 0.00991182 0.00992353 0.00993522 0.00994692 0.00995861 0.0099703 0.00998199 0.00999368 0.0100054 0.0100171 0.0100288 0.0100405 0.0100521 0.0100638 0.0100755 0.0100872 0.0100989 0.0101106 0.0101223 0.010134 0.0101457 0.0101574 0.0101691 0.0101808 0.0101924 0.0102041 0.0102158 0.0102275 0.0102392 0.0102509 0.0102626 0.0102743 0.010286 0.0102977 0.0103094 0.0103211 0.0103328 0.0103444 0.0103561 0.0103678 0.0103795 0.0103912 0.0104029 0.0104146 0.0104263 0.010438 0.0104497 0.0104614 0.0104731 0.0104848 0.0104964 0.0105081 0.0105198 0.0105315 0.0105432 0.0105549 0.0105666 0.0105783 0.01059 0.0106017 0.0106134 0.0106251 0.0106367 0.0106484 0.0106601 0.0106718 0.0106835 0.0106952 0.0107069 0.0107186 0.0107303 0.010742 0.0107537 0.0107654 0.0107771 0.0107887 0.0108004 0.0108121 0.0108238 0.0108355 0.0108472 0.0108589 0.0108706 0.0108823 0.010894 0.0109057 0.0109174 0.0109291 0.0109407 0.0109524 0.0109641 0.0109758 0.0109875 0.0109992 0.0110109 0.0110226 0.0110343 0.011046 0.0110577 0.0110694 0.011081 0.0110927 0.0111044 0.0111161 0.0111278 0.0111395 0.0111512 0.0111629 0.0111746 0.0111863 0.011198 0.0112097 0.0112214 0.011233 0.0112447 0.0112564 +-0.00270609 -0.00246759 -0.00195816 -0.00106702 9.84681E-05 0.00141179 0.00279738 0.00420876 0.00560846 0.00695282 0.00817164 0.00913412 0.00967018 0.00983711 0.00987665 0.00989257 0.0099049 0.00991669 0.0099284 0.0099401 0.0099518 0.00996349 0.00997519 0.00998689 0.00999859 0.0100103 0.010022 0.0100337 0.0100454 0.0100571 0.0100688 0.0100805 0.0100922 0.0101039 0.0101156 0.0101273 0.010139 0.0101507 0.0101624 0.0101741 0.0101858 0.0101975 0.0102092 0.0102209 0.0102325 0.0102442 0.0102559 0.0102676 0.0102793 0.010291 0.0103027 0.0103144 0.0103261 0.0103378 0.0103495 0.0103612 0.0103729 0.0103846 0.0103963 0.010408 0.0104197 0.0104314 0.0104431 0.0104548 0.0104665 0.0104782 0.0104899 0.0105016 0.0105133 0.010525 0.0105367 0.0105484 0.0105601 0.0105718 0.0105835 0.0105952 0.0106069 0.0106186 0.0106303 0.010642 0.0106537 0.0106654 0.0106771 0.0106888 0.0107005 0.0107122 0.0107239 0.0107356 0.0107473 0.010759 0.0107707 0.0107824 0.0107941 0.0108058 0.0108175 0.0108291 0.0108408 0.0108525 0.0108642 0.0108759 0.0108876 0.0108993 0.010911 0.0109227 0.0109344 0.0109461 0.0109578 0.0109695 0.0109812 0.0109929 0.0110046 0.0110163 0.011028 0.0110397 0.0110514 0.0110631 0.0110748 0.0110865 0.0110982 0.0111099 0.0111216 0.0111333 0.011145 0.0111567 0.0111684 0.0111801 0.0111918 0.0112035 0.0112152 0.0112269 0.0112386 0.0112503 0.011262 +-0.00270763 -0.00246885 -0.00195888 -0.00106725 9.85545E-05 0.00141209 0.00279785 0.00420941 0.00560931 0.006954 0.00817338 0.00913685 0.00967419 0.00984178 0.00988146 0.00989742 0.00990975 0.00992155 0.00993326 0.00994497 0.00995667 0.00996838 0.00998008 0.00999178 0.0100035 0.0100152 0.0100269 0.0100386 0.0100503 0.010062 0.0100737 0.0100854 0.0100971 0.0101088 0.0101205 0.0101322 0.0101439 0.0101556 0.0101673 0.010179 0.0101908 0.0102025 0.0102142 0.0102259 0.0102376 0.0102493 0.010261 0.0102727 0.0102844 0.0102961 0.0103078 0.0103195 0.0103312 0.0103429 0.0103546 0.0103663 0.010378 0.0103897 0.0104014 0.0104131 0.0104248 0.0104365 0.0104482 0.0104599 0.0104716 0.0104834 0.0104951 0.0105068 0.0105185 0.0105302 0.0105419 0.0105536 0.0105653 0.010577 0.0105887 0.0106004 0.0106121 0.0106238 0.0106355 0.0106472 0.0106589 0.0106706 0.0106823 0.010694 0.0107057 0.0107174 0.0107291 0.0107408 0.0107525 0.0107642 0.010776 0.0107877 0.0107994 0.0108111 0.0108228 0.0108345 0.0108462 0.0108579 0.0108696 0.0108813 0.010893 0.0109047 0.0109164 0.0109281 0.0109398 0.0109515 0.0109632 0.0109749 0.0109866 0.0109983 0.01101 0.0110217 0.0110334 0.0110451 0.0110568 0.0110686 0.0110803 0.011092 0.0111037 0.0111154 0.0111271 0.0111388 0.0111505 0.0111622 0.0111739 0.0111856 0.0111973 0.011209 0.0112207 0.0112324 0.0112441 0.0112558 0.0112675 +-0.00270917 -0.0024701 -0.00195961 -0.00106748 9.8641E-05 0.00141238 0.00279832 0.00421005 0.00561017 0.00695518 0.00817511 0.00913957 0.00967819 0.00984645 0.00988628 0.00990226 0.0099146 0.0099264 0.00993813 0.00994984 0.00996155 0.00997326 0.00998497 0.00999668 0.0100084 0.0100201 0.0100318 0.0100435 0.0100552 0.0100669 0.0100786 0.0100904 0.0101021 0.0101138 0.0101255 0.0101372 0.0101489 0.0101606 0.0101723 0.010184 0.0101957 0.0102075 0.0102192 0.0102309 0.0102426 0.0102543 0.010266 0.0102777 0.0102894 0.0103011 0.0103128 0.0103246 0.0103363 0.010348 0.0103597 0.0103714 0.0103831 0.0103948 0.0104065 0.0104182 0.0104299 0.0104417 0.0104534 0.0104651 0.0104768 0.0104885 0.0105002 0.0105119 0.0105236 0.0105353 0.010547 0.0105588 0.0105705 0.0105822 0.0105939 0.0106056 0.0106173 0.010629 0.0106407 0.0106524 0.0106641 0.0106759 0.0106876 0.0106993 0.010711 0.0107227 0.0107344 0.0107461 0.0107578 0.0107695 0.0107812 0.010793 0.0108047 0.0108164 0.0108281 0.0108398 0.0108515 0.0108632 0.0108749 0.0108866 0.0108983 0.0109101 0.0109218 0.0109335 0.0109452 0.0109569 0.0109686 0.0109803 0.010992 0.0110037 0.0110154 0.0110272 0.0110389 0.0110506 0.0110623 0.011074 0.0110857 0.0110974 0.0111091 0.0111208 0.0111325 0.0111443 0.011156 0.0111677 0.0111794 0.0111911 0.0112028 0.0112145 0.0112262 0.0112379 0.0112496 0.0112614 0.0112731 +-0.00271071 -0.00247136 -0.00196033 -0.0010677 9.87274E-05 0.00141268 0.00279879 0.00421069 0.00561103 0.00695636 0.00817683 0.00914228 0.00968219 0.00985111 0.00989109 0.0099071 0.00991945 0.00993126 0.00994299 0.00995471 0.00996642 0.00997814 0.00998986 0.0100016 0.0100133 0.010025 0.0100367 0.0100484 0.0100602 0.0100719 0.0100836 0.0100953 0.010107 0.0101187 0.0101304 0.0101422 0.0101539 0.0101656 0.0101773 0.010189 0.0102007 0.0102125 0.0102242 0.0102359 0.0102476 0.0102593 0.010271 0.0102828 0.0102945 0.0103062 0.0103179 0.0103296 0.0103413 0.010353 0.0103648 0.0103765 0.0103882 0.0103999 0.0104116 0.0104233 0.0104351 0.0104468 0.0104585 0.0104702 0.0104819 0.0104936 0.0105054 0.0105171 0.0105288 0.0105405 0.0105522 0.0105639 0.0105757 0.0105874 0.0105991 0.0106108 0.0106225 0.0106342 0.0106459 0.0106577 0.0106694 0.0106811 0.0106928 0.0107045 0.0107162 0.010728 0.0107397 0.0107514 0.0107631 0.0107748 0.0107865 0.0107983 0.01081 0.0108217 0.0108334 0.0108451 0.0108568 0.0108686 0.0108803 0.010892 0.0109037 0.0109154 0.0109271 0.0109388 0.0109506 0.0109623 0.010974 0.0109857 0.0109974 0.0110091 0.0110209 0.0110326 0.0110443 0.011056 0.0110677 0.0110794 0.0110912 0.0111029 0.0111146 0.0111263 0.011138 0.0111497 0.0111614 0.0111732 0.0111849 0.0111966 0.0112083 0.01122 0.0112317 0.0112435 0.0112552 0.0112669 0.0112786 +-0.00271225 -0.00247261 -0.00196105 -0.00106793 9.88138E-05 0.00141298 0.00279925 0.00421133 0.00561189 0.00695753 0.00817856 0.00914499 0.00968618 0.00985577 0.0098959 0.00991194 0.0099243 0.00993611 0.00994785 0.00995957 0.0099713 0.00998302 0.00999474 0.0100065 0.0100182 0.0100299 0.0100416 0.0100533 0.0100651 0.0100768 0.0100885 0.0101002 0.010112 0.0101237 0.0101354 0.0101471 0.0101588 0.0101706 0.0101823 0.010194 0.0102057 0.0102175 0.0102292 0.0102409 0.0102526 0.0102643 0.0102761 0.0102878 0.0102995 0.0103112 0.010323 0.0103347 0.0103464 0.0103581 0.0103698 0.0103816 0.0103933 0.010405 0.0104167 0.0104285 0.0104402 0.0104519 0.0104636 0.0104753 0.0104871 0.0104988 0.0105105 0.0105222 0.0105339 0.0105457 0.0105574 0.0105691 0.0105808 0.0105926 0.0106043 0.010616 0.0106277 0.0106394 0.0106512 0.0106629 0.0106746 0.0106863 0.0106981 0.0107098 0.0107215 0.0107332 0.0107449 0.0107567 0.0107684 0.0107801 0.0107918 0.0108036 0.0108153 0.010827 0.0108387 0.0108504 0.0108622 0.0108739 0.0108856 0.0108973 0.010909 0.0109208 0.0109325 0.0109442 0.0109559 0.0109677 0.0109794 0.0109911 0.0110028 0.0110145 0.0110263 0.011038 0.0110497 0.0110614 0.0110732 0.0110849 0.0110966 0.0111083 0.01112 0.0111318 0.0111435 0.0111552 0.0111669 0.0111787 0.0111904 0.0112021 0.0112138 0.0112255 0.0112373 0.011249 0.0112607 0.0112724 0.0112841 +-0.00271379 -0.00247386 -0.00196177 -0.00106816 9.89003E-05 0.00141327 0.00279972 0.00421197 0.00561275 0.00695871 0.00818028 0.0091477 0.00969018 0.00986043 0.00990071 0.00991678 0.00992915 0.00994097 0.00995271 0.00996444 0.00997617 0.0099879 0.00999962 0.0100114 0.0100231 0.0100348 0.0100465 0.0100583 0.01007 0.0100817 0.0100934 0.0101052 0.0101169 0.0101286 0.0101404 0.0101521 0.0101638 0.0101755 0.0101873 0.010199 0.0102107 0.0102225 0.0102342 0.0102459 0.0102576 0.0102694 0.0102811 0.0102928 0.0103045 0.0103163 0.010328 0.0103397 0.0103515 0.0103632 0.0103749 0.0103866 0.0103984 0.0104101 0.0104218 0.0104336 0.0104453 0.010457 0.0104687 0.0104805 0.0104922 0.0105039 0.0105156 0.0105274 0.0105391 0.0105508 0.0105626 0.0105743 0.010586 0.0105977 0.0106095 0.0106212 0.0106329 0.0106447 0.0106564 0.0106681 0.0106798 0.0106916 0.0107033 0.010715 0.0107268 0.0107385 0.0107502 0.0107619 0.0107737 0.0107854 0.0107971 0.0108088 0.0108206 0.0108323 0.010844 0.0108558 0.0108675 0.0108792 0.0108909 0.0109027 0.0109144 0.0109261 0.0109379 0.0109496 0.0109613 0.010973 0.0109848 0.0109965 0.0110082 0.0110199 0.0110317 0.0110434 0.0110551 0.0110669 0.0110786 0.0110903 0.011102 0.0111138 0.0111255 0.0111372 0.011149 0.0111607 0.0111724 0.0111841 0.0111959 0.0112076 0.0112193 0.011231 0.0112428 0.0112545 0.0112662 0.011278 0.0112897 +-0.00271532 -0.00247511 -0.00196248 -0.00106838 9.89867E-05 0.00141357 0.00280019 0.00421261 0.0056136 0.00695988 0.008182 0.00915041 0.00969416 0.00986509 0.00990552 0.00992161 0.00993399 0.00994582 0.00995757 0.0099693 0.00998104 0.00999277 0.0100045 0.0100162 0.010028 0.0100397 0.0100514 0.0100632 0.0100749 0.0100866 0.0100984 0.0101101 0.0101218 0.0101336 0.0101453 0.010157 0.0101688 0.0101805 0.0101922 0.010204 0.0102157 0.0102274 0.0102392 0.0102509 0.0102626 0.0102744 0.0102861 0.0102979 0.0103096 0.0103213 0.0103331 0.0103448 0.0103565 0.0103683 0.01038 0.0103917 0.0104035 0.0104152 0.0104269 0.0104387 0.0104504 0.0104621 0.0104739 0.0104856 0.0104973 0.0105091 0.0105208 0.0105325 0.0105443 0.010556 0.0105677 0.0105795 0.0105912 0.0106029 0.0106147 0.0106264 0.0106381 0.0106499 0.0106616 0.0106733 0.0106851 0.0106968 0.0107085 0.0107203 0.010732 0.0107437 0.0107555 0.0107672 0.0107789 0.0107907 0.0108024 0.0108141 0.0108259 0.0108376 0.0108493 0.0108611 0.0108728 0.0108845 0.0108963 0.010908 0.0109197 0.0109315 0.0109432 0.0109549 0.0109667 0.0109784 0.0109901 0.0110019 0.0110136 0.0110253 0.0110371 0.0110488 0.0110605 0.0110723 0.011084 0.0110958 0.0111075 0.0111192 0.011131 0.0111427 0.0111544 0.0111662 0.0111779 0.0111896 0.0112014 0.0112131 0.0112248 0.0112366 0.0112483 0.01126 0.0112718 0.0112835 0.0112952 +-0.00271686 -0.00247636 -0.0019632 -0.00106861 9.90732E-05 0.00141386 0.00280065 0.00421325 0.00561446 0.00696106 0.00818372 0.0091531 0.00969814 0.00986974 0.00991032 0.00992645 0.00993883 0.00995067 0.00996242 0.00997417 0.00998591 0.00999765 0.0100094 0.0100211 0.0100329 0.0100446 0.0100563 0.0100681 0.0100798 0.0100916 0.0101033 0.010115 0.0101268 0.0101385 0.0101503 0.010162 0.0101737 0.0101855 0.0101972 0.010209 0.0102207 0.0102324 0.0102442 0.0102559 0.0102677 0.0102794 0.0102911 0.0103029 0.0103146 0.0103264 0.0103381 0.0103498 0.0103616 0.0103733 0.0103851 0.0103968 0.0104085 0.0104203 0.010432 0.0104438 0.0104555 0.0104672 0.010479 0.0104907 0.0105025 0.0105142 0.0105259 0.0105377 0.0105494 0.0105612 0.0105729 0.0105846 0.0105964 0.0106081 0.0106199 0.0106316 0.0106433 0.0106551 0.0106668 0.0106786 0.0106903 0.010702 0.0107138 0.0107255 0.0107373 0.010749 0.0107607 0.0107725 0.0107842 0.010796 0.0108077 0.0108194 0.0108312 0.0108429 0.0108546 0.0108664 0.0108781 0.0108899 0.0109016 0.0109133 0.0109251 0.0109368 0.0109486 0.0109603 0.010972 0.0109838 0.0109955 0.0110073 0.011019 0.0110307 0.0110425 0.0110542 0.011066 0.0110777 0.0110894 0.0111012 0.0111129 0.0111247 0.0111364 0.0111481 0.0111599 0.0111716 0.0111834 0.0111951 0.0112068 0.0112186 0.0112303 0.0112421 0.0112538 0.0112655 0.0112773 0.011289 0.0113008 +-0.0027184 -0.00247761 -0.00196392 -0.00106884 9.91596E-05 0.00141416 0.00280112 0.00421389 0.00561531 0.00696223 0.00818543 0.0091558 0.00970212 0.00987439 0.00991512 0.00993128 0.00994368 0.00995552 0.00996728 0.00997903 0.00999077 0.0100025 0.0100143 0.010026 0.0100378 0.0100495 0.0100612 0.010073 0.0100847 0.0100965 0.0101082 0.01012 0.0101317 0.0101435 0.0101552 0.010167 0.0101787 0.0101904 0.0102022 0.0102139 0.0102257 0.0102374 0.0102492 0.0102609 0.0102727 0.0102844 0.0102962 0.0103079 0.0103197 0.0103314 0.0103431 0.0103549 0.0103666 0.0103784 0.0103901 0.0104019 0.0104136 0.0104254 0.0104371 0.0104489 0.0104606 0.0104723 0.0104841 0.0104958 0.0105076 0.0105193 0.0105311 0.0105428 0.0105546 0.0105663 0.0105781 0.0105898 0.0106016 0.0106133 0.010625 0.0106368 0.0106485 0.0106603 0.010672 0.0106838 0.0106955 0.0107073 0.010719 0.0107308 0.0107425 0.0107542 0.010766 0.0107777 0.0107895 0.0108012 0.010813 0.0108247 0.0108365 0.0108482 0.01086 0.0108717 0.0108834 0.0108952 0.0109069 0.0109187 0.0109304 0.0109422 0.0109539 0.0109657 0.0109774 0.0109892 0.0110009 0.0110127 0.0110244 0.0110361 0.0110479 0.0110596 0.0110714 0.0110831 0.0110949 0.0111066 0.0111184 0.0111301 0.0111419 0.0111536 0.0111653 0.0111771 0.0111888 0.0112006 0.0112123 0.0112241 0.0112358 0.0112476 0.0112593 0.0112711 0.0112828 0.0112945 0.0113063 +-0.00271994 -0.00247886 -0.00196464 -0.00106906 9.92461E-05 0.00141445 0.00280158 0.00421453 0.00561616 0.0069634 0.00818714 0.00915849 0.0097061 0.00987904 0.00991993 0.00993611 0.00994852 0.00996037 0.00997213 0.00998388 0.00999564 0.0100074 0.0100191 0.0100309 0.0100426 0.0100544 0.0100661 0.0100779 0.0100897 0.0101014 0.0101132 0.0101249 0.0101367 0.0101484 0.0101602 0.0101719 0.0101837 0.0101954 0.0102072 0.0102189 0.0102307 0.0102424 0.0102542 0.0102659 0.0102777 0.0102894 0.0103012 0.0103129 0.0103247 0.0103364 0.0103482 0.0103599 0.0103717 0.0103834 0.0103952 0.0104069 0.0104187 0.0104304 0.0104422 0.010454 0.0104657 0.0104775 0.0104892 0.010501 0.0105127 0.0105245 0.0105362 0.010548 0.0105597 0.0105715 0.0105832 0.010595 0.0106067 0.0106185 0.0106302 0.010642 0.0106537 0.0106655 0.0106772 0.010689 0.0107007 0.0107125 0.0107242 0.010736 0.0107477 0.0107595 0.0107712 0.010783 0.0107948 0.0108065 0.0108183 0.01083 0.0108418 0.0108535 0.0108653 0.010877 0.0108888 0.0109005 0.0109123 0.010924 0.0109358 0.0109475 0.0109593 0.010971 0.0109828 0.0109945 0.0110063 0.011018 0.0110298 0.0110415 0.0110533 0.011065 0.0110768 0.0110885 0.0111003 0.011112 0.0111238 0.0111356 0.0111473 0.0111591 0.0111708 0.0111826 0.0111943 0.0112061 0.0112178 0.0112296 0.0112413 0.0112531 0.0112648 0.0112766 0.0112883 0.0113001 0.0113118 +-0.00272147 -0.00248011 -0.00196535 -0.00106929 9.93326E-05 0.00141475 0.00280205 0.00421516 0.00561702 0.00696457 0.00818885 0.00916117 0.00971007 0.00988369 0.00992473 0.00994094 0.00995336 0.00996521 0.00997698 0.00998874 0.0100005 0.0100123 0.010024 0.0100358 0.0100475 0.0100593 0.010071 0.0100828 0.0100946 0.0101063 0.0101181 0.0101298 0.0101416 0.0101533 0.0101651 0.0101769 0.0101886 0.0102004 0.0102121 0.0102239 0.0102357 0.0102474 0.0102592 0.0102709 0.0102827 0.0102944 0.0103062 0.010318 0.0103297 0.0103415 0.0103532 0.010365 0.0103767 0.0103885 0.0104003 0.010412 0.0104238 0.0104355 0.0104473 0.010459 0.0104708 0.0104826 0.0104943 0.0105061 0.0105178 0.0105296 0.0105414 0.0105531 0.0105649 0.0105766 0.0105884 0.0106001 0.0106119 0.0106237 0.0106354 0.0106472 0.0106589 0.0106707 0.0106824 0.0106942 0.010706 0.0107177 0.0107295 0.0107412 0.010753 0.0107647 0.0107765 0.0107883 0.0108 0.0108118 0.0108235 0.0108353 0.0108471 0.0108588 0.0108706 0.0108823 0.0108941 0.0109058 0.0109176 0.0109294 0.0109411 0.0109529 0.0109646 0.0109764 0.0109881 0.0109999 0.0110117 0.0110234 0.0110352 0.0110469 0.0110587 0.0110704 0.0110822 0.011094 0.0111057 0.0111175 0.0111292 0.011141 0.0111527 0.0111645 0.0111763 0.011188 0.0111998 0.0112115 0.0112233 0.0112351 0.0112468 0.0112586 0.0112703 0.0112821 0.0112938 0.0113056 0.0113174 +-0.00272301 -0.00248136 -0.00196607 -0.00106951 9.94191E-05 0.00141504 0.00280251 0.0042158 0.00561787 0.00696574 0.00819056 0.00916386 0.00971403 0.00988834 0.00992953 0.00994577 0.00995819 0.00997005 0.00998183 0.0099936 0.0100054 0.0100171 0.0100289 0.0100407 0.0100524 0.0100642 0.0100759 0.0100877 0.0100995 0.0101112 0.010123 0.0101348 0.0101465 0.0101583 0.0101701 0.0101818 0.0101936 0.0102053 0.0102171 0.0102289 0.0102406 0.0102524 0.0102642 0.0102759 0.0102877 0.0102995 0.0103112 0.010323 0.0103347 0.0103465 0.0103583 0.01037 0.0103818 0.0103936 0.0104053 0.0104171 0.0104289 0.0104406 0.0104524 0.0104641 0.0104759 0.0104877 0.0104994 0.0105112 0.010523 0.0105347 0.0105465 0.0105583 0.01057 0.0105818 0.0105935 0.0106053 0.0106171 0.0106288 0.0106406 0.0106524 0.0106641 0.0106759 0.0106877 0.0106994 0.0107112 0.0107229 0.0107347 0.0107465 0.0107582 0.01077 0.0107818 0.0107935 0.0108053 0.010817 0.0108288 0.0108406 0.0108523 0.0108641 0.0108759 0.0108876 0.0108994 0.0109112 0.0109229 0.0109347 0.0109464 0.0109582 0.01097 0.0109817 0.0109935 0.0110053 0.011017 0.0110288 0.0110406 0.0110523 0.0110641 0.0110758 0.0110876 0.0110994 0.0111111 0.0111229 0.0111347 0.0111464 0.0111582 0.01117 0.0111817 0.0111935 0.0112052 0.011217 0.0112288 0.0112405 0.0112523 0.0112641 0.0112758 0.0112876 0.0112994 0.0113111 0.0113229 +-0.00272454 -0.0024826 -0.00196678 -0.00106974 9.95056E-05 0.00141534 0.00280298 0.00421644 0.00561872 0.0069669 0.00819226 0.00916653 0.00971799 0.00989298 0.00993432 0.0099506 0.00996303 0.0099749 0.00998668 0.00999845 0.0100102 0.010022 0.0100338 0.0100455 0.0100573 0.0100691 0.0100808 0.0100926 0.0101044 0.0101161 0.0101279 0.0101397 0.0101515 0.0101632 0.010175 0.0101868 0.0101985 0.0102103 0.0102221 0.0102338 0.0102456 0.0102574 0.0102692 0.0102809 0.0102927 0.0103045 0.0103162 0.010328 0.0103398 0.0103515 0.0103633 0.0103751 0.0103868 0.0103986 0.0104104 0.0104222 0.0104339 0.0104457 0.0104575 0.0104692 0.010481 0.0104928 0.0105045 0.0105163 0.0105281 0.0105399 0.0105516 0.0105634 0.0105752 0.0105869 0.0105987 0.0106105 0.0106222 0.010634 0.0106458 0.0106575 0.0106693 0.0106811 0.0106929 0.0107046 0.0107164 0.0107282 0.0107399 0.0107517 0.0107635 0.0107752 0.010787 0.0107988 0.0108106 0.0108223 0.0108341 0.0108459 0.0108576 0.0108694 0.0108812 0.0108929 0.0109047 0.0109165 0.0109282 0.01094 0.0109518 0.0109636 0.0109753 0.0109871 0.0109989 0.0110106 0.0110224 0.0110342 0.0110459 0.0110577 0.0110695 0.0110813 0.011093 0.0111048 0.0111166 0.0111283 0.0111401 0.0111519 0.0111636 0.0111754 0.0111872 0.0111989 0.0112107 0.0112225 0.0112343 0.011246 0.0112578 0.0112696 0.0112813 0.0112931 0.0113049 0.0113166 0.0113284 +-0.00272608 -0.00248385 -0.00196749 -0.00106996 9.95921E-05 0.00141563 0.00280344 0.00421707 0.00561957 0.00696807 0.00819396 0.00916921 0.00972195 0.00989762 0.00993912 0.00995542 0.00996786 0.00997974 0.00999153 0.0100033 0.0100151 0.0100269 0.0100386 0.0100504 0.0100622 0.010074 0.0100857 0.0100975 0.0101093 0.0101211 0.0101328 0.0101446 0.0101564 0.0101682 0.0101799 0.0101917 0.0102035 0.0102153 0.010227 0.0102388 0.0102506 0.0102624 0.0102741 0.0102859 0.0102977 0.0103095 0.0103212 0.010333 0.0103448 0.0103566 0.0103683 0.0103801 0.0103919 0.0104037 0.0104154 0.0104272 0.010439 0.0104508 0.0104625 0.0104743 0.0104861 0.0104979 0.0105097 0.0105214 0.0105332 0.010545 0.0105568 0.0105685 0.0105803 0.0105921 0.0106039 0.0106156 0.0106274 0.0106392 0.010651 0.0106627 0.0106745 0.0106863 0.0106981 0.0107098 0.0107216 0.0107334 0.0107452 0.0107569 0.0107687 0.0107805 0.0107923 0.010804 0.0108158 0.0108276 0.0108394 0.0108511 0.0108629 0.0108747 0.0108865 0.0108982 0.01091 0.0109218 0.0109336 0.0109453 0.0109571 0.0109689 0.0109807 0.0109924 0.0110042 0.011016 0.0110278 0.0110395 0.0110513 0.0110631 0.0110749 0.0110867 0.0110984 0.0111102 0.011122 0.0111338 0.0111455 0.0111573 0.0111691 0.0111809 0.0111926 0.0112044 0.0112162 0.011228 0.0112397 0.0112515 0.0112633 0.0112751 0.0112868 0.0112986 0.0113104 0.0113222 0.0113339 +-0.00272761 -0.0024851 -0.00196821 -0.00107019 9.96786E-05 0.00141593 0.0028039 0.00421771 0.00562041 0.00696923 0.00819566 0.00917188 0.0097259 0.00990226 0.00994391 0.00996024 0.0099727 0.00998458 0.00999637 0.0100082 0.0100199 0.0100317 0.0100435 0.0100553 0.0100671 0.0100788 0.0100906 0.0101024 0.0101142 0.010126 0.0101378 0.0101495 0.0101613 0.0101731 0.0101849 0.0101967 0.0102084 0.0102202 0.010232 0.0102438 0.0102556 0.0102673 0.0102791 0.0102909 0.0103027 0.0103145 0.0103263 0.010338 0.0103498 0.0103616 0.0103734 0.0103852 0.0103969 0.0104087 0.0104205 0.0104323 0.0104441 0.0104559 0.0104676 0.0104794 0.0104912 0.010503 0.0105148 0.0105265 0.0105383 0.0105501 0.0105619 0.0105737 0.0105854 0.0105972 0.010609 0.0106208 0.0106326 0.0106444 0.0106561 0.0106679 0.0106797 0.0106915 0.0107033 0.010715 0.0107268 0.0107386 0.0107504 0.0107622 0.0107739 0.0107857 0.0107975 0.0108093 0.0108211 0.0108329 0.0108446 0.0108564 0.0108682 0.01088 0.0108918 0.0109035 0.0109153 0.0109271 0.0109389 0.0109507 0.0109625 0.0109742 0.010986 0.0109978 0.0110096 0.0110214 0.0110331 0.0110449 0.0110567 0.0110685 0.0110803 0.011092 0.0111038 0.0111156 0.0111274 0.0111392 0.011151 0.0111627 0.0111745 0.0111863 0.0111981 0.0112099 0.0112216 0.0112334 0.0112452 0.011257 0.0112688 0.0112806 0.0112923 0.0113041 0.0113159 0.0113277 0.0113395 +-0.00272915 -0.00248634 -0.00196892 -0.00107041 9.97651E-05 0.00141622 0.00280437 0.00421834 0.00562126 0.00697039 0.00819736 0.00917454 0.00972985 0.00990689 0.0099487 0.00996507 0.00997753 0.00998941 0.0100012 0.010013 0.0100248 0.0100366 0.0100484 0.0100602 0.0100719 0.0100837 0.0100955 0.0101073 0.0101191 0.0101309 0.0101427 0.0101545 0.0101662 0.010178 0.0101898 0.0102016 0.0102134 0.0102252 0.010237 0.0102488 0.0102605 0.0102723 0.0102841 0.0102959 0.0103077 0.0103195 0.0103313 0.0103431 0.0103548 0.0103666 0.0103784 0.0103902 0.010402 0.0104138 0.0104256 0.0104374 0.0104491 0.0104609 0.0104727 0.0104845 0.0104963 0.0105081 0.0105199 0.0105317 0.0105434 0.0105552 0.010567 0.0105788 0.0105906 0.0106024 0.0106142 0.010626 0.0106377 0.0106495 0.0106613 0.0106731 0.0106849 0.0106967 0.0107085 0.0107202 0.010732 0.0107438 0.0107556 0.0107674 0.0107792 0.010791 0.0108028 0.0108145 0.0108263 0.0108381 0.0108499 0.0108617 0.0108735 0.0108853 0.0108971 0.0109088 0.0109206 0.0109324 0.0109442 0.010956 0.0109678 0.0109796 0.0109914 0.0110031 0.0110149 0.0110267 0.0110385 0.0110503 0.0110621 0.0110739 0.0110857 0.0110974 0.0111092 0.011121 0.0111328 0.0111446 0.0111564 0.0111682 0.01118 0.0111917 0.0112035 0.0112153 0.0112271 0.0112389 0.0112507 0.0112625 0.0112743 0.011286 0.0112978 0.0113096 0.0113214 0.0113332 0.011345 +-0.00273068 -0.00248758 -0.00196963 -0.00107063 9.98516E-05 0.00141651 0.00280483 0.00421898 0.00562211 0.00697155 0.00819906 0.0091772 0.00973379 0.00991153 0.00995349 0.00996989 0.00998236 0.00999425 0.0100061 0.0100179 0.0100296 0.0100414 0.0100532 0.010065 0.0100768 0.0100886 0.0101004 0.0101122 0.010124 0.0101358 0.0101476 0.0101594 0.0101712 0.010183 0.0101948 0.0102065 0.0102183 0.0102301 0.0102419 0.0102537 0.0102655 0.0102773 0.0102891 0.0103009 0.0103127 0.0103245 0.0103363 0.0103481 0.0103599 0.0103717 0.0103834 0.0103952 0.010407 0.0104188 0.0104306 0.0104424 0.0104542 0.010466 0.0104778 0.0104896 0.0105014 0.0105132 0.010525 0.0105368 0.0105486 0.0105603 0.0105721 0.0105839 0.0105957 0.0106075 0.0106193 0.0106311 0.0106429 0.0106547 0.0106665 0.0106783 0.0106901 0.0107019 0.0107137 0.0107255 0.0107372 0.010749 0.0107608 0.0107726 0.0107844 0.0107962 0.010808 0.0108198 0.0108316 0.0108434 0.0108552 0.010867 0.0108788 0.0108906 0.0109024 0.0109141 0.0109259 0.0109377 0.0109495 0.0109613 0.0109731 0.0109849 0.0109967 0.0110085 0.0110203 0.0110321 0.0110439 0.0110557 0.0110675 0.0110793 0.011091 0.0111028 0.0111146 0.0111264 0.0111382 0.01115 0.0111618 0.0111736 0.0111854 0.0111972 0.011209 0.0112208 0.0112326 0.0112444 0.0112562 0.0112679 0.0112797 0.0112915 0.0113033 0.0113151 0.0113269 0.0113387 0.0113505 +-0.00273221 -0.00248883 -0.00197034 -0.00107086 9.99381E-05 0.00141681 0.00280529 0.00421961 0.00562296 0.00697271 0.00820075 0.00917986 0.00973773 0.00991616 0.00995828 0.0099747 0.00998719 0.00999909 0.0100109 0.0100227 0.0100345 0.0100463 0.0100581 0.0100699 0.0100817 0.0100935 0.0101053 0.0101171 0.0101289 0.0101407 0.0101525 0.0101643 0.0101761 0.0101879 0.0101997 0.0102115 0.0102233 0.0102351 0.0102469 0.0102587 0.0102705 0.0102823 0.0102941 0.0103059 0.0103177 0.0103295 0.0103413 0.0103531 0.0103649 0.0103767 0.0103885 0.0104003 0.0104121 0.0104239 0.0104357 0.0104475 0.0104593 0.0104711 0.0104829 0.0104947 0.0105065 0.0105183 0.0105301 0.0105419 0.0105537 0.0105655 0.0105773 0.0105891 0.0106009 0.0106127 0.0106245 0.0106363 0.0106481 0.0106599 0.0106717 0.0106835 0.0106953 0.0107071 0.0107189 0.0107307 0.0107425 0.0107543 0.0107661 0.0107779 0.0107897 0.0108015 0.0108133 0.0108251 0.0108368 0.0108486 0.0108604 0.0108722 0.010884 0.0108958 0.0109076 0.0109194 0.0109312 0.010943 0.0109548 0.0109666 0.0109784 0.0109902 0.011002 0.0110138 0.0110256 0.0110374 0.0110492 0.011061 0.0110728 0.0110846 0.0110964 0.0111082 0.01112 0.0111318 0.0111436 0.0111554 0.0111672 0.011179 0.0111908 0.0112026 0.0112144 0.0112262 0.011238 0.0112498 0.0112616 0.0112734 0.0112852 0.011297 0.0113088 0.0113206 0.0113324 0.0113442 0.011356 +-0.00273375 -0.00249007 -0.00197105 -0.00107108 0.000100025 0.0014171 0.00280575 0.00422024 0.0056238 0.00697387 0.00820244 0.00918251 0.00974167 0.00992079 0.00996307 0.00997952 0.00999201 0.0100039 0.0100157 0.0100275 0.0100394 0.0100512 0.010063 0.0100748 0.0100866 0.0100984 0.0101102 0.010122 0.0101338 0.0101456 0.0101574 0.0101692 0.010181 0.0101928 0.0102046 0.0102164 0.0102282 0.01024 0.0102518 0.0102636 0.0102755 0.0102873 0.0102991 0.0103109 0.0103227 0.0103345 0.0103463 0.0103581 0.0103699 0.0103817 0.0103935 0.0104053 0.0104171 0.0104289 0.0104407 0.0104525 0.0104643 0.0104761 0.0104879 0.0104998 0.0105116 0.0105234 0.0105352 0.010547 0.0105588 0.0105706 0.0105824 0.0105942 0.010606 0.0106178 0.0106296 0.0106414 0.0106532 0.010665 0.0106768 0.0106886 0.0107004 0.0107122 0.0107241 0.0107359 0.0107477 0.0107595 0.0107713 0.0107831 0.0107949 0.0108067 0.0108185 0.0108303 0.0108421 0.0108539 0.0108657 0.0108775 0.0108893 0.0109011 0.0109129 0.0109247 0.0109365 0.0109484 0.0109602 0.010972 0.0109838 0.0109956 0.0110074 0.0110192 0.011031 0.0110428 0.0110546 0.0110664 0.0110782 0.01109 0.0111018 0.0111136 0.0111254 0.0111372 0.011149 0.0111608 0.0111726 0.0111845 0.0111963 0.0112081 0.0112199 0.0112317 0.0112435 0.0112553 0.0112671 0.0112789 0.0112907 0.0113025 0.0113143 0.0113261 0.0113379 0.0113497 0.0113615 +-0.00273528 -0.00249131 -0.00197176 -0.0010713 0.000100111 0.00141739 0.00280622 0.00422088 0.00562465 0.00697503 0.00820413 0.00918516 0.0097456 0.00992541 0.00996785 0.00998434 0.00999684 0.0100087 0.0100206 0.0100324 0.0100442 0.010056 0.0100678 0.0100796 0.0100914 0.0101033 0.0101151 0.0101269 0.0101387 0.0101505 0.0101623 0.0101741 0.0101859 0.0101977 0.0102096 0.0102214 0.0102332 0.010245 0.0102568 0.0102686 0.0102804 0.0102922 0.010304 0.0103159 0.0103277 0.0103395 0.0103513 0.0103631 0.0103749 0.0103867 0.0103985 0.0104103 0.0104222 0.010434 0.0104458 0.0104576 0.0104694 0.0104812 0.010493 0.0105048 0.0105166 0.0105285 0.0105403 0.0105521 0.0105639 0.0105757 0.0105875 0.0105993 0.0106111 0.0106229 0.0106348 0.0106466 0.0106584 0.0106702 0.010682 0.0106938 0.0107056 0.0107174 0.0107292 0.0107411 0.0107529 0.0107647 0.0107765 0.0107883 0.0108001 0.0108119 0.0108237 0.0108355 0.0108474 0.0108592 0.010871 0.0108828 0.0108946 0.0109064 0.0109182 0.01093 0.0109418 0.0109537 0.0109655 0.0109773 0.0109891 0.0110009 0.0110127 0.0110245 0.0110363 0.0110481 0.01106 0.0110718 0.0110836 0.0110954 0.0111072 0.011119 0.0111308 0.0111426 0.0111544 0.0111663 0.0111781 0.0111899 0.0112017 0.0112135 0.0112253 0.0112371 0.0112489 0.0112607 0.0112726 0.0112844 0.0112962 0.011308 0.0113198 0.0113316 0.0113434 0.0113552 0.011367 +-0.00273681 -0.00249255 -0.00197247 -0.00107153 0.000100198 0.00141769 0.00280668 0.00422151 0.00562549 0.00697618 0.00820581 0.00918781 0.00974953 0.00993004 0.00997264 0.00998915 0.0100017 0.0100136 0.0100254 0.0100372 0.010049 0.0100609 0.0100727 0.0100845 0.0100963 0.0101081 0.01012 0.0101318 0.0101436 0.0101554 0.0101672 0.010179 0.0101909 0.0102027 0.0102145 0.0102263 0.0102381 0.0102499 0.0102618 0.0102736 0.0102854 0.0102972 0.010309 0.0103208 0.0103327 0.0103445 0.0103563 0.0103681 0.0103799 0.0103917 0.0104036 0.0104154 0.0104272 0.010439 0.0104508 0.0104626 0.0104745 0.0104863 0.0104981 0.0105099 0.0105217 0.0105335 0.0105454 0.0105572 0.010569 0.0105808 0.0105926 0.0106045 0.0106163 0.0106281 0.0106399 0.0106517 0.0106635 0.0106754 0.0106872 0.010699 0.0107108 0.0107226 0.0107344 0.0107463 0.0107581 0.0107699 0.0107817 0.0107935 0.0108053 0.0108172 0.010829 0.0108408 0.0108526 0.0108644 0.0108762 0.0108881 0.0108999 0.0109117 0.0109235 0.0109353 0.0109471 0.010959 0.0109708 0.0109826 0.0109944 0.0110062 0.011018 0.0110299 0.0110417 0.0110535 0.0110653 0.0110771 0.011089 0.0111008 0.0111126 0.0111244 0.0111362 0.011148 0.0111599 0.0111717 0.0111835 0.0111953 0.0112071 0.0112189 0.0112308 0.0112426 0.0112544 0.0112662 0.011278 0.0112898 0.0113017 0.0113135 0.0113253 0.0113371 0.0113489 0.0113607 0.0113726 +-0.00273834 -0.00249379 -0.00197318 -0.00107175 0.000100284 0.00141798 0.00280714 0.00422214 0.00562633 0.00697733 0.0082075 0.00919045 0.00975345 0.00993466 0.00997742 0.00999396 0.0100065 0.0100184 0.0100302 0.0100421 0.0100539 0.0100657 0.0100775 0.0100894 0.0101012 0.010113 0.0101248 0.0101367 0.0101485 0.0101603 0.0101721 0.0101839 0.0101958 0.0102076 0.0102194 0.0102312 0.0102431 0.0102549 0.0102667 0.0102785 0.0102904 0.0103022 0.010314 0.0103258 0.0103376 0.0103495 0.0103613 0.0103731 0.0103849 0.0103968 0.0104086 0.0104204 0.0104322 0.0104441 0.0104559 0.0104677 0.0104795 0.0104913 0.0105032 0.010515 0.0105268 0.0105386 0.0105505 0.0105623 0.0105741 0.0105859 0.0105978 0.0106096 0.0106214 0.0106332 0.010645 0.0106569 0.0106687 0.0106805 0.0106923 0.0107042 0.010716 0.0107278 0.0107396 0.0107515 0.0107633 0.0107751 0.0107869 0.0107987 0.0108106 0.0108224 0.0108342 0.010846 0.0108579 0.0108697 0.0108815 0.0108933 0.0109052 0.010917 0.0109288 0.0109406 0.0109524 0.0109643 0.0109761 0.0109879 0.0109997 0.0110116 0.0110234 0.0110352 0.011047 0.0110588 0.0110707 0.0110825 0.0110943 0.0111061 0.011118 0.0111298 0.0111416 0.0111534 0.0111653 0.0111771 0.0111889 0.0112007 0.0112125 0.0112244 0.0112362 0.011248 0.0112598 0.0112717 0.0112835 0.0112953 0.0113071 0.011319 0.0113308 0.0113426 0.0113544 0.0113662 0.0113781 +-0.00273987 -0.00249503 -0.00197388 -0.00107197 0.000100371 0.00141827 0.0028076 0.00422277 0.00562717 0.00697849 0.00820918 0.00919308 0.00975737 0.00993928 0.0099822 0.00999877 0.0100113 0.0100232 0.0100351 0.0100469 0.0100587 0.0100706 0.0100824 0.0100942 0.0101061 0.0101179 0.0101297 0.0101415 0.0101534 0.0101652 0.010177 0.0101889 0.0102007 0.0102125 0.0102243 0.0102362 0.010248 0.0102598 0.0102717 0.0102835 0.0102953 0.0103071 0.010319 0.0103308 0.0103426 0.0103545 0.0103663 0.0103781 0.0103899 0.0104018 0.0104136 0.0104254 0.0104373 0.0104491 0.0104609 0.0104728 0.0104846 0.0104964 0.0105082 0.0105201 0.0105319 0.0105437 0.0105556 0.0105674 0.0105792 0.010591 0.0106029 0.0106147 0.0106265 0.0106384 0.0106502 0.010662 0.0106738 0.0106857 0.0106975 0.0107093 0.0107212 0.010733 0.0107448 0.0107566 0.0107685 0.0107803 0.0107921 0.010804 0.0108158 0.0108276 0.0108394 0.0108513 0.0108631 0.0108749 0.0108868 0.0108986 0.0109104 0.0109223 0.0109341 0.0109459 0.0109577 0.0109696 0.0109814 0.0109932 0.0110051 0.0110169 0.0110287 0.0110405 0.0110524 0.0110642 0.011076 0.0110879 0.0110997 0.0111115 0.0111233 0.0111352 0.011147 0.0111588 0.0111707 0.0111825 0.0111943 0.0112061 0.011218 0.0112298 0.0112416 0.0112535 0.0112653 0.0112771 0.0112889 0.0113008 0.0113126 0.0113244 0.0113363 0.0113481 0.0113599 0.0113717 0.0113836 +-0.0027414 -0.00249627 -0.00197459 -0.00107219 0.000100457 0.00141856 0.00280806 0.0042234 0.00562801 0.00697964 0.00821085 0.00919572 0.00976128 0.00994389 0.00998698 0.0100036 0.0100161 0.0100281 0.0100399 0.0100517 0.0100636 0.0100754 0.0100873 0.0100991 0.0101109 0.0101228 0.0101346 0.0101464 0.0101583 0.0101701 0.0101819 0.0101938 0.0102056 0.0102174 0.0102293 0.0102411 0.0102529 0.0102648 0.0102766 0.0102884 0.0103003 0.0103121 0.0103239 0.0103358 0.0103476 0.0103595 0.0103713 0.0103831 0.010395 0.0104068 0.0104186 0.0104305 0.0104423 0.0104541 0.010466 0.0104778 0.0104896 0.0105015 0.0105133 0.0105251 0.010537 0.0105488 0.0105606 0.0105725 0.0105843 0.0105962 0.010608 0.0106198 0.0106317 0.0106435 0.0106553 0.0106672 0.010679 0.0106908 0.0107027 0.0107145 0.0107263 0.0107382 0.01075 0.0107618 0.0107737 0.0107855 0.0107973 0.0108092 0.010821 0.0108328 0.0108447 0.0108565 0.0108684 0.0108802 0.010892 0.0109039 0.0109157 0.0109275 0.0109394 0.0109512 0.010963 0.0109749 0.0109867 0.0109985 0.0110104 0.0110222 0.011034 0.0110459 0.0110577 0.0110695 0.0110814 0.0110932 0.011105 0.0111169 0.0111287 0.0111406 0.0111524 0.0111642 0.0111761 0.0111879 0.0111997 0.0112116 0.0112234 0.0112352 0.0112471 0.0112589 0.0112707 0.0112826 0.0112944 0.0113062 0.0113181 0.0113299 0.0113417 0.0113536 0.0113654 0.0113773 0.0113891 +-0.00274293 -0.00249751 -0.0019753 -0.00107241 0.000100544 0.00141886 0.00280852 0.00422403 0.00562885 0.00698079 0.00821253 0.00919834 0.00976519 0.00994851 0.00999176 0.0100084 0.0100209 0.0100329 0.0100447 0.0100566 0.0100684 0.0100803 0.0100921 0.0101039 0.0101158 0.0101276 0.0101395 0.0101513 0.0101632 0.010175 0.0101868 0.0101987 0.0102105 0.0102224 0.0102342 0.010246 0.0102579 0.0102697 0.0102816 0.0102934 0.0103052 0.0103171 0.0103289 0.0103408 0.0103526 0.0103644 0.0103763 0.0103881 0.0104 0.0104118 0.0104236 0.0104355 0.0104473 0.0104592 0.010471 0.0104829 0.0104947 0.0105065 0.0105184 0.0105302 0.0105421 0.0105539 0.0105657 0.0105776 0.0105894 0.0106013 0.0106131 0.0106249 0.0106368 0.0106486 0.0106605 0.0106723 0.0106841 0.010696 0.0107078 0.0107197 0.0107315 0.0107433 0.0107552 0.010767 0.0107789 0.0107907 0.0108026 0.0108144 0.0108262 0.0108381 0.0108499 0.0108618 0.0108736 0.0108854 0.0108973 0.0109091 0.010921 0.0109328 0.0109446 0.0109565 0.0109683 0.0109802 0.010992 0.0110038 0.0110157 0.0110275 0.0110394 0.0110512 0.0110631 0.0110749 0.0110867 0.0110986 0.0111104 0.0111223 0.0111341 0.0111459 0.0111578 0.0111696 0.0111815 0.0111933 0.0112051 0.011217 0.0112288 0.0112407 0.0112525 0.0112643 0.0112762 0.011288 0.0112999 0.0113117 0.0113235 0.0113354 0.0113472 0.0113591 0.0113709 0.0113828 0.0113946 +-0.00274446 -0.00249875 -0.001976 -0.00107263 0.000100631 0.00141915 0.00280898 0.00422466 0.00562969 0.00698194 0.0082142 0.00920097 0.0097691 0.00995312 0.00999653 0.0100132 0.0100258 0.0100377 0.0100496 0.0100614 0.0100733 0.0100851 0.010097 0.0101088 0.0101207 0.0101325 0.0101443 0.0101562 0.010168 0.0101799 0.0101917 0.0102036 0.0102154 0.0102273 0.0102391 0.010251 0.0102628 0.0102747 0.0102865 0.0102984 0.0103102 0.010322 0.0103339 0.0103457 0.0103576 0.0103694 0.0103813 0.0103931 0.010405 0.0104168 0.0104287 0.0104405 0.0104524 0.0104642 0.0104761 0.0104879 0.0104997 0.0105116 0.0105234 0.0105353 0.0105471 0.010559 0.0105708 0.0105827 0.0105945 0.0106064 0.0106182 0.0106301 0.0106419 0.0106538 0.0106656 0.0106774 0.0106893 0.0107011 0.010713 0.0107248 0.0107367 0.0107485 0.0107604 0.0107722 0.0107841 0.0107959 0.0108078 0.0108196 0.0108315 0.0108433 0.0108551 0.010867 0.0108788 0.0108907 0.0109025 0.0109144 0.0109262 0.0109381 0.0109499 0.0109618 0.0109736 0.0109855 0.0109973 0.0110092 0.011021 0.0110328 0.0110447 0.0110565 0.0110684 0.0110802 0.0110921 0.0111039 0.0111158 0.0111276 0.0111395 0.0111513 0.0111632 0.011175 0.0111869 0.0111987 0.0112105 0.0112224 0.0112342 0.0112461 0.0112579 0.0112698 0.0112816 0.0112935 0.0113053 0.0113172 0.011329 0.0113409 0.0113527 0.0113646 0.0113764 0.0113882 0.0114001 +-0.00274599 -0.00249998 -0.00197671 -0.00107285 0.000100717 0.00141944 0.00280944 0.00422529 0.00563053 0.00698308 0.00821587 0.00920359 0.009773 0.00995773 0.0100013 0.010018 0.0100306 0.0100425 0.0100544 0.0100662 0.0100781 0.01009 0.0101018 0.0101137 0.0101255 0.0101374 0.0101492 0.0101611 0.0101729 0.0101848 0.0101966 0.0102085 0.0102203 0.0102322 0.010244 0.0102559 0.0102677 0.0102796 0.0102915 0.0103033 0.0103152 0.010327 0.0103389 0.0103507 0.0103626 0.0103744 0.0103863 0.0103981 0.01041 0.0104218 0.0104337 0.0104455 0.0104574 0.0104692 0.0104811 0.0104929 0.0105048 0.0105167 0.0105285 0.0105404 0.0105522 0.0105641 0.0105759 0.0105878 0.0105996 0.0106115 0.0106233 0.0106352 0.010647 0.0106589 0.0106707 0.0106826 0.0106944 0.0107063 0.0107181 0.01073 0.0107419 0.0107537 0.0107656 0.0107774 0.0107893 0.0108011 0.010813 0.0108248 0.0108367 0.0108485 0.0108604 0.0108722 0.0108841 0.0108959 0.0109078 0.0109196 0.0109315 0.0109433 0.0109552 0.0109671 0.0109789 0.0109908 0.0110026 0.0110145 0.0110263 0.0110382 0.01105 0.0110619 0.0110737 0.0110856 0.0110974 0.0111093 0.0111211 0.011133 0.0111448 0.0111567 0.0111685 0.0111804 0.0111922 0.0112041 0.011216 0.0112278 0.0112397 0.0112515 0.0112634 0.0112752 0.0112871 0.0112989 0.0113108 0.0113226 0.0113345 0.0113463 0.0113582 0.01137 0.0113819 0.0113937 0.0114056 +-0.00274752 -0.00250122 -0.00197741 -0.00107307 0.000100804 0.00141973 0.0028099 0.00422592 0.00563137 0.00698423 0.00821754 0.0092062 0.0097769 0.00996234 0.0100061 0.0100228 0.0100354 0.0100473 0.0100592 0.0100711 0.0100829 0.0100948 0.0101067 0.0101185 0.0101304 0.0101422 0.0101541 0.0101659 0.0101778 0.0101897 0.0102015 0.0102134 0.0102252 0.0102371 0.010249 0.0102608 0.0102727 0.0102845 0.0102964 0.0103083 0.0103201 0.010332 0.0103438 0.0103557 0.0103675 0.0103794 0.0103913 0.0104031 0.010415 0.0104268 0.0104387 0.0104506 0.0104624 0.0104743 0.0104861 0.010498 0.0105098 0.0105217 0.0105336 0.0105454 0.0105573 0.0105691 0.010581 0.0105929 0.0106047 0.0106166 0.0106284 0.0106403 0.0106522 0.010664 0.0106759 0.0106877 0.0106996 0.0107114 0.0107233 0.0107352 0.010747 0.0107589 0.0107707 0.0107826 0.0107945 0.0108063 0.0108182 0.01083 0.0108419 0.0108537 0.0108656 0.0108775 0.0108893 0.0109012 0.010913 0.0109249 0.0109368 0.0109486 0.0109605 0.0109723 0.0109842 0.010996 0.0110079 0.0110198 0.0110316 0.0110435 0.0110553 0.0110672 0.0110791 0.0110909 0.0111028 0.0111146 0.0111265 0.0111384 0.0111502 0.0111621 0.0111739 0.0111858 0.0111976 0.0112095 0.0112214 0.0112332 0.0112451 0.0112569 0.0112688 0.0112807 0.0112925 0.0113044 0.0113162 0.0113281 0.0113399 0.0113518 0.0113637 0.0113755 0.0113874 0.0113992 0.0114111 +-0.00274904 -0.00250246 -0.00197811 -0.00107329 0.00010089 0.00142002 0.00281035 0.00422654 0.00563221 0.00698537 0.00821921 0.00920881 0.00978079 0.00996694 0.0100108 0.0100276 0.0100402 0.0100522 0.010064 0.0100759 0.0100878 0.0100996 0.0101115 0.0101234 0.0101352 0.0101471 0.010159 0.0101708 0.0101827 0.0101946 0.0102064 0.0102183 0.0102301 0.010242 0.0102539 0.0102657 0.0102776 0.0102895 0.0103013 0.0103132 0.0103251 0.0103369 0.0103488 0.0103607 0.0103725 0.0103844 0.0103963 0.0104081 0.01042 0.0104318 0.0104437 0.0104556 0.0104674 0.0104793 0.0104912 0.010503 0.0105149 0.0105268 0.0105386 0.0105505 0.0105624 0.0105742 0.0105861 0.0105979 0.0106098 0.0106217 0.0106335 0.0106454 0.0106573 0.0106691 0.010681 0.0106929 0.0107047 0.0107166 0.0107285 0.0107403 0.0107522 0.0107641 0.0107759 0.0107878 0.0107996 0.0108115 0.0108234 0.0108352 0.0108471 0.010859 0.0108708 0.0108827 0.0108946 0.0109064 0.0109183 0.0109302 0.010942 0.0109539 0.0109657 0.0109776 0.0109895 0.0110013 0.0110132 0.0110251 0.0110369 0.0110488 0.0110607 0.0110725 0.0110844 0.0110963 0.0111081 0.01112 0.0111318 0.0111437 0.0111556 0.0111674 0.0111793 0.0111912 0.011203 0.0112149 0.0112268 0.0112386 0.0112505 0.0112624 0.0112742 0.0112861 0.011298 0.0113098 0.0113217 0.0113335 0.0113454 0.0113573 0.0113691 0.011381 0.0113929 0.0114047 0.0114166 +-0.00275057 -0.00250369 -0.00197881 -0.00107351 0.000100977 0.00142031 0.00281081 0.00422717 0.00563304 0.00698652 0.00822087 0.00921142 0.00978468 0.00997154 0.0100156 0.0100324 0.010045 0.010057 0.0100689 0.0100807 0.0100926 0.0101045 0.0101163 0.0101282 0.0101401 0.010152 0.0101638 0.0101757 0.0101876 0.0101994 0.0102113 0.0102232 0.0102351 0.0102469 0.0102588 0.0102707 0.0102825 0.0102944 0.0103063 0.0103181 0.01033 0.0103419 0.0103538 0.0103656 0.0103775 0.0103894 0.0104012 0.0104131 0.010425 0.0104369 0.0104487 0.0104606 0.0104725 0.0104843 0.0104962 0.0105081 0.0105199 0.0105318 0.0105437 0.0105556 0.0105674 0.0105793 0.0105912 0.010603 0.0106149 0.0106268 0.0106386 0.0106505 0.0106624 0.0106743 0.0106861 0.010698 0.0107099 0.0107217 0.0107336 0.0107455 0.0107574 0.0107692 0.0107811 0.010793 0.0108048 0.0108167 0.0108286 0.0108404 0.0108523 0.0108642 0.0108761 0.0108879 0.0108998 0.0109117 0.0109235 0.0109354 0.0109473 0.0109591 0.010971 0.0109829 0.0109948 0.0110066 0.0110185 0.0110304 0.0110422 0.0110541 0.011066 0.0110779 0.0110897 0.0111016 0.0111135 0.0111253 0.0111372 0.0111491 0.0111609 0.0111728 0.0111847 0.0111966 0.0112084 0.0112203 0.0112322 0.011244 0.0112559 0.0112678 0.0112796 0.0112915 0.0113034 0.0113153 0.0113271 0.011339 0.0113509 0.0113627 0.0113746 0.0113865 0.0113984 0.0114102 0.0114221 +-0.0027521 -0.00250492 -0.00197952 -0.00107373 0.000101064 0.00142061 0.00281127 0.0042278 0.00563388 0.00698766 0.00822253 0.00921403 0.00978856 0.00997614 0.0100204 0.0100372 0.0100498 0.0100618 0.0100737 0.0100856 0.0100974 0.0101093 0.0101212 0.0101331 0.0101449 0.0101568 0.0101687 0.0101806 0.0101925 0.0102043 0.0102162 0.0102281 0.01024 0.0102518 0.0102637 0.0102756 0.0102875 0.0102993 0.0103112 0.0103231 0.010335 0.0103468 0.0103587 0.0103706 0.0103825 0.0103943 0.0104062 0.0104181 0.01043 0.0104419 0.0104537 0.0104656 0.0104775 0.0104894 0.0105012 0.0105131 0.010525 0.0105369 0.0105487 0.0105606 0.0105725 0.0105844 0.0105962 0.0106081 0.01062 0.0106319 0.0106438 0.0106556 0.0106675 0.0106794 0.0106913 0.0107031 0.010715 0.0107269 0.0107388 0.0107506 0.0107625 0.0107744 0.0107863 0.0107981 0.01081 0.0108219 0.0108338 0.0108456 0.0108575 0.0108694 0.0108813 0.0108932 0.010905 0.0109169 0.0109288 0.0109407 0.0109525 0.0109644 0.0109763 0.0109882 0.011 0.0110119 0.0110238 0.0110357 0.0110475 0.0110594 0.0110713 0.0110832 0.0110951 0.0111069 0.0111188 0.0111307 0.0111426 0.0111544 0.0111663 0.0111782 0.0111901 0.0112019 0.0112138 0.0112257 0.0112376 0.0112494 0.0112613 0.0112732 0.0112851 0.0112969 0.0113088 0.0113207 0.0113326 0.0113445 0.0113563 0.0113682 0.0113801 0.011392 0.0114038 0.0114157 0.0114276 +-0.00275362 -0.00250616 -0.00198022 -0.00107395 0.00010115 0.0014209 0.00281173 0.00422842 0.00563471 0.0069888 0.00822419 0.00921663 0.00979244 0.00998074 0.0100251 0.010042 0.0100546 0.0100666 0.0100785 0.0100904 0.0101023 0.0101142 0.010126 0.0101379 0.0101498 0.0101617 0.0101736 0.0101854 0.0101973 0.0102092 0.0102211 0.010233 0.0102449 0.0102567 0.0102686 0.0102805 0.0102924 0.0103043 0.0103162 0.010328 0.0103399 0.0103518 0.0103637 0.0103756 0.0103874 0.0103993 0.0104112 0.0104231 0.010435 0.0104469 0.0104587 0.0104706 0.0104825 0.0104944 0.0105063 0.0105181 0.01053 0.0105419 0.0105538 0.0105657 0.0105776 0.0105894 0.0106013 0.0106132 0.0106251 0.010637 0.0106489 0.0106607 0.0106726 0.0106845 0.0106964 0.0107083 0.0107201 0.010732 0.0107439 0.0107558 0.0107677 0.0107796 0.0107914 0.0108033 0.0108152 0.0108271 0.010839 0.0108509 0.0108627 0.0108746 0.0108865 0.0108984 0.0109103 0.0109221 0.010934 0.0109459 0.0109578 0.0109697 0.0109816 0.0109934 0.0110053 0.0110172 0.0110291 0.011041 0.0110529 0.0110647 0.0110766 0.0110885 0.0111004 0.0111123 0.0111241 0.011136 0.0111479 0.0111598 0.0111717 0.0111836 0.0111954 0.0112073 0.0112192 0.0112311 0.011243 0.0112548 0.0112667 0.0112786 0.0112905 0.0113024 0.0113143 0.0113261 0.011338 0.0113499 0.0113618 0.0113737 0.0113856 0.0113974 0.0114093 0.0114212 0.0114331 +-0.00275515 -0.00250739 -0.00198092 -0.00107417 0.000101237 0.00142119 0.00281218 0.00422905 0.00563555 0.00698994 0.00822585 0.00921922 0.00979632 0.00998534 0.0100299 0.0100468 0.0100594 0.0100714 0.0100833 0.0100952 0.0101071 0.010119 0.0101309 0.0101428 0.0101547 0.0101665 0.0101784 0.0101903 0.0102022 0.0102141 0.010226 0.0102379 0.0102498 0.0102616 0.0102735 0.0102854 0.0102973 0.0103092 0.0103211 0.010333 0.0103449 0.0103568 0.0103686 0.0103805 0.0103924 0.0104043 0.0104162 0.0104281 0.01044 0.0104519 0.0104637 0.0104756 0.0104875 0.0104994 0.0105113 0.0105232 0.0105351 0.010547 0.0105589 0.0105707 0.0105826 0.0105945 0.0106064 0.0106183 0.0106302 0.0106421 0.010654 0.0106658 0.0106777 0.0106896 0.0107015 0.0107134 0.0107253 0.0107372 0.0107491 0.0107609 0.0107728 0.0107847 0.0107966 0.0108085 0.0108204 0.0108323 0.0108442 0.0108561 0.0108679 0.0108798 0.0108917 0.0109036 0.0109155 0.0109274 0.0109393 0.0109512 0.010963 0.0109749 0.0109868 0.0109987 0.0110106 0.0110225 0.0110344 0.0110463 0.0110582 0.01107 0.0110819 0.0110938 0.0111057 0.0111176 0.0111295 0.0111414 0.0111533 0.0111651 0.011177 0.0111889 0.0112008 0.0112127 0.0112246 0.0112365 0.0112484 0.0112602 0.0112721 0.011284 0.0112959 0.0113078 0.0113197 0.0113316 0.0113435 0.0113554 0.0113672 0.0113791 0.011391 0.0114029 0.0114148 0.0114267 0.0114386 +-0.00275667 -0.00250862 -0.00198162 -0.00107439 0.000101324 0.00142148 0.00281264 0.00422967 0.00563638 0.00699107 0.0082275 0.00922181 0.00980019 0.00998993 0.0100347 0.0100516 0.0100642 0.0100762 0.0100881 0.0101 0.0101119 0.0101238 0.0101357 0.0101476 0.0101595 0.0101714 0.0101833 0.0101952 0.0102071 0.010219 0.0102309 0.0102428 0.0102547 0.0102666 0.0102784 0.0102903 0.0103022 0.0103141 0.010326 0.0103379 0.0103498 0.0103617 0.0103736 0.0103855 0.0103974 0.0104093 0.0104212 0.0104331 0.010445 0.0104569 0.0104688 0.0104806 0.0104925 0.0105044 0.0105163 0.0105282 0.0105401 0.010552 0.0105639 0.0105758 0.0105877 0.0105996 0.0106115 0.0106234 0.0106353 0.0106472 0.0106591 0.0106709 0.0106828 0.0106947 0.0107066 0.0107185 0.0107304 0.0107423 0.0107542 0.0107661 0.010778 0.0107899 0.0108018 0.0108137 0.0108256 0.0108375 0.0108494 0.0108613 0.0108731 0.010885 0.0108969 0.0109088 0.0109207 0.0109326 0.0109445 0.0109564 0.0109683 0.0109802 0.0109921 0.011004 0.0110159 0.0110278 0.0110397 0.0110516 0.0110635 0.0110753 0.0110872 0.0110991 0.011111 0.0111229 0.0111348 0.0111467 0.0111586 0.0111705 0.0111824 0.0111943 0.0112062 0.0112181 0.01123 0.0112419 0.0112538 0.0112657 0.0112775 0.0112894 0.0113013 0.0113132 0.0113251 0.011337 0.0113489 0.0113608 0.0113727 0.0113846 0.0113965 0.0114084 0.0114203 0.0114322 0.0114441 +-0.0027582 -0.00250985 -0.00198231 -0.0010746 0.00010141 0.00142177 0.0028131 0.0042303 0.00563721 0.00699221 0.00822916 0.0092244 0.00980406 0.00999452 0.0100394 0.0100564 0.010069 0.010081 0.010093 0.0101049 0.0101168 0.0101287 0.0101406 0.0101525 0.0101644 0.0101763 0.0101882 0.0102001 0.010212 0.0102239 0.0102358 0.0102477 0.0102596 0.0102715 0.0102834 0.0102953 0.0103072 0.0103191 0.010331 0.0103429 0.0103548 0.0103667 0.0103786 0.0103905 0.0104024 0.0104143 0.0104262 0.0104381 0.01045 0.0104619 0.0104738 0.0104857 0.0104976 0.0105095 0.0105214 0.0105333 0.0105452 0.0105571 0.010569 0.0105809 0.0105928 0.0106047 0.0106166 0.0106285 0.0106404 0.0106523 0.0106642 0.0106761 0.010688 0.0106999 0.0107118 0.0107237 0.0107356 0.0107475 0.0107594 0.0107713 0.0107832 0.0107951 0.010807 0.0108189 0.0108308 0.0108427 0.0108546 0.0108665 0.0108784 0.0108903 0.0109022 0.0109141 0.010926 0.0109379 0.0109498 0.0109617 0.0109736 0.0109855 0.0109974 0.0110093 0.0110212 0.0110331 0.011045 0.0110569 0.0110688 0.0110807 0.0110926 0.0111045 0.0111164 0.0111283 0.0111402 0.0111521 0.011164 0.0111759 0.0111878 0.0111997 0.0112116 0.0112235 0.0112354 0.0112473 0.0112592 0.0112711 0.011283 0.0112949 0.0113068 0.0113187 0.0113306 0.0113425 0.0113544 0.0113662 0.0113781 0.01139 0.0114019 0.0114138 0.0114257 0.0114376 0.0114495 +-0.00275972 -0.00251108 -0.00198301 -0.00107482 0.000101497 0.00142206 0.00281355 0.00423092 0.00563804 0.00699335 0.00823081 0.00922698 0.00980792 0.00999911 0.0100442 0.0100612 0.0100738 0.0100858 0.0100978 0.0101097 0.0101216 0.0101335 0.0101454 0.0101573 0.0101692 0.0101811 0.010193 0.0102049 0.0102168 0.0102287 0.0102406 0.0102525 0.0102645 0.0102764 0.0102883 0.0103002 0.0103121 0.010324 0.0103359 0.0103478 0.0103597 0.0103716 0.0103835 0.0103954 0.0104073 0.0104192 0.0104311 0.010443 0.0104549 0.0104669 0.0104788 0.0104907 0.0105026 0.0105145 0.0105264 0.0105383 0.0105502 0.0105621 0.010574 0.0105859 0.0105978 0.0106097 0.0106216 0.0106335 0.0106454 0.0106573 0.0106692 0.0106812 0.0106931 0.010705 0.0107169 0.0107288 0.0107407 0.0107526 0.0107645 0.0107764 0.0107883 0.0108002 0.0108121 0.010824 0.0108359 0.0108478 0.0108597 0.0108716 0.0108836 0.0108955 0.0109074 0.0109193 0.0109312 0.0109431 0.010955 0.0109669 0.0109788 0.0109907 0.0110026 0.0110145 0.0110264 0.0110383 0.0110502 0.0110621 0.011074 0.011086 0.0110979 0.0111098 0.0111217 0.0111336 0.0111455 0.0111574 0.0111693 0.0111812 0.0111931 0.011205 0.0112169 0.0112288 0.0112407 0.0112526 0.0112645 0.0112764 0.0112884 0.0113003 0.0113122 0.0113241 0.011336 0.0113479 0.0113598 0.0113717 0.0113836 0.0113955 0.0114074 0.0114193 0.0114312 0.0114431 0.011455 +-0.00276125 -0.00251231 -0.00198371 -0.00107504 0.000101583 0.00142235 0.00281401 0.00423155 0.00563887 0.00699448 0.00823245 0.00922956 0.00981178 0.0100037 0.0100489 0.010066 0.0100786 0.0100906 0.0101026 0.0101145 0.0101264 0.0101383 0.0101502 0.0101621 0.0101741 0.010186 0.0101979 0.0102098 0.0102217 0.0102336 0.0102455 0.0102574 0.0102693 0.0102813 0.0102932 0.0103051 0.010317 0.0103289 0.0103408 0.0103527 0.0103646 0.0103766 0.0103885 0.0104004 0.0104123 0.0104242 0.0104361 0.010448 0.0104599 0.0104718 0.0104838 0.0104957 0.0105076 0.0105195 0.0105314 0.0105433 0.0105552 0.0105671 0.0105791 0.010591 0.0106029 0.0106148 0.0106267 0.0106386 0.0106505 0.0106624 0.0106743 0.0106863 0.0106982 0.0107101 0.010722 0.0107339 0.0107458 0.0107577 0.0107696 0.0107816 0.0107935 0.0108054 0.0108173 0.0108292 0.0108411 0.010853 0.0108649 0.0108768 0.0108888 0.0109007 0.0109126 0.0109245 0.0109364 0.0109483 0.0109602 0.0109721 0.0109841 0.010996 0.0110079 0.0110198 0.0110317 0.0110436 0.0110555 0.0110674 0.0110793 0.0110913 0.0111032 0.0111151 0.011127 0.0111389 0.0111508 0.0111627 0.0111746 0.0111866 0.0111985 0.0112104 0.0112223 0.0112342 0.0112461 0.011258 0.0112699 0.0112818 0.0112938 0.0113057 0.0113176 0.0113295 0.0113414 0.0113533 0.0113652 0.0113771 0.011389 0.011401 0.0114129 0.0114248 0.0114367 0.0114486 0.0114605 +-0.00276277 -0.00251354 -0.00198441 -0.00107526 0.00010167 0.00142264 0.00281446 0.00423217 0.0056397 0.00699561 0.0082341 0.00923214 0.00981563 0.0100083 0.0100537 0.0100707 0.0100834 0.0100955 0.0101074 0.0101193 0.0101312 0.0101431 0.0101551 0.010167 0.0101789 0.0101908 0.0102027 0.0102146 0.0102266 0.0102385 0.0102504 0.0102623 0.0102742 0.0102862 0.0102981 0.01031 0.0103219 0.0103338 0.0103457 0.0103577 0.0103696 0.0103815 0.0103934 0.0104053 0.0104172 0.0104292 0.0104411 0.010453 0.0104649 0.0104768 0.0104888 0.0105007 0.0105126 0.0105245 0.0105364 0.0105483 0.0105603 0.0105722 0.0105841 0.010596 0.0106079 0.0106198 0.0106318 0.0106437 0.0106556 0.0106675 0.0106794 0.0106914 0.0107033 0.0107152 0.0107271 0.010739 0.0107509 0.0107629 0.0107748 0.0107867 0.0107986 0.0108105 0.0108224 0.0108344 0.0108463 0.0108582 0.0108701 0.010882 0.010894 0.0109059 0.0109178 0.0109297 0.0109416 0.0109535 0.0109655 0.0109774 0.0109893 0.0110012 0.0110131 0.0110251 0.011037 0.0110489 0.0110608 0.0110727 0.0110846 0.0110966 0.0111085 0.0111204 0.0111323 0.0111442 0.0111561 0.0111681 0.01118 0.0111919 0.0112038 0.0112157 0.0112276 0.0112396 0.0112515 0.0112634 0.0112753 0.0112872 0.0112992 0.0113111 0.011323 0.0113349 0.0113468 0.0113587 0.0113707 0.0113826 0.0113945 0.0114064 0.0114183 0.0114303 0.0114422 0.0114541 0.011466 +-0.00276429 -0.00251477 -0.0019851 -0.00107547 0.000101757 0.00142293 0.00281492 0.00423279 0.00564053 0.00699674 0.00823574 0.00923471 0.00981948 0.0100129 0.0100585 0.0100755 0.0100882 0.0101003 0.0101122 0.0101241 0.010136 0.010148 0.0101599 0.0101718 0.0101837 0.0101957 0.0102076 0.0102195 0.0102314 0.0102434 0.0102553 0.0102672 0.0102791 0.0102911 0.010303 0.0103149 0.0103268 0.0103387 0.0103507 0.0103626 0.0103745 0.0103864 0.0103984 0.0104103 0.0104222 0.0104341 0.0104461 0.010458 0.0104699 0.0104818 0.0104938 0.0105057 0.0105176 0.0105295 0.0105414 0.0105534 0.0105653 0.0105772 0.0105891 0.0106011 0.010613 0.0106249 0.0106368 0.0106488 0.0106607 0.0106726 0.0106845 0.0106965 0.0107084 0.0107203 0.0107322 0.0107441 0.0107561 0.010768 0.0107799 0.0107918 0.0108038 0.0108157 0.0108276 0.0108395 0.0108515 0.0108634 0.0108753 0.0108872 0.0108992 0.0109111 0.010923 0.0109349 0.0109468 0.0109588 0.0109707 0.0109826 0.0109945 0.0110065 0.0110184 0.0110303 0.0110422 0.0110542 0.0110661 0.011078 0.0110899 0.0111019 0.0111138 0.0111257 0.0111376 0.0111495 0.0111615 0.0111734 0.0111853 0.0111972 0.0112092 0.0112211 0.011233 0.0112449 0.0112569 0.0112688 0.0112807 0.0112926 0.0113046 0.0113165 0.0113284 0.0113403 0.0113522 0.0113642 0.0113761 0.011388 0.0113999 0.0114119 0.0114238 0.0114357 0.0114476 0.0114596 0.0114715 +-0.00276581 -0.002516 -0.0019858 -0.00107569 0.000101843 0.00142322 0.00281537 0.00423341 0.00564136 0.00699787 0.00823738 0.00923728 0.00982333 0.0100174 0.0100632 0.0100803 0.010093 0.0101051 0.010117 0.0101289 0.0101409 0.0101528 0.0101647 0.0101767 0.0101886 0.0102005 0.0102124 0.0102244 0.0102363 0.0102482 0.0102602 0.0102721 0.010284 0.0102959 0.0103079 0.0103198 0.0103317 0.0103437 0.0103556 0.0103675 0.0103795 0.0103914 0.0104033 0.0104152 0.0104272 0.0104391 0.010451 0.010463 0.0104749 0.0104868 0.0104987 0.0105107 0.0105226 0.0105345 0.0105465 0.0105584 0.0105703 0.0105823 0.0105942 0.0106061 0.010618 0.01063 0.0106419 0.0106538 0.0106658 0.0106777 0.0106896 0.0107015 0.0107135 0.0107254 0.0107373 0.0107493 0.0107612 0.0107731 0.0107851 0.010797 0.0108089 0.0108208 0.0108328 0.0108447 0.0108566 0.0108686 0.0108805 0.0108924 0.0109044 0.0109163 0.0109282 0.0109401 0.0109521 0.010964 0.0109759 0.0109879 0.0109998 0.0110117 0.0110236 0.0110356 0.0110475 0.0110594 0.0110714 0.0110833 0.0110952 0.0111072 0.0111191 0.011131 0.0111429 0.0111549 0.0111668 0.0111787 0.0111907 0.0112026 0.0112145 0.0112264 0.0112384 0.0112503 0.0112622 0.0112742 0.0112861 0.011298 0.01131 0.0113219 0.0113338 0.0113457 0.0113577 0.0113696 0.0113815 0.0113935 0.0114054 0.0114173 0.0114292 0.0114412 0.0114531 0.011465 0.011477 +-0.00276734 -0.00251722 -0.00198649 -0.00107591 0.00010193 0.00142351 0.00281583 0.00423403 0.00564219 0.006999 0.00823902 0.00923984 0.00982717 0.010022 0.010068 0.0100851 0.0100978 0.0101099 0.0101218 0.0101337 0.0101457 0.0101576 0.0101696 0.0101815 0.0101934 0.0102054 0.0102173 0.0102292 0.0102412 0.0102531 0.010265 0.010277 0.0102889 0.0103008 0.0103128 0.0103247 0.0103366 0.0103486 0.0103605 0.0103725 0.0103844 0.0103963 0.0104083 0.0104202 0.0104321 0.0104441 0.010456 0.0104679 0.0104799 0.0104918 0.0105037 0.0105157 0.0105276 0.0105395 0.0105515 0.0105634 0.0105754 0.0105873 0.0105992 0.0106112 0.0106231 0.010635 0.010647 0.0106589 0.0106708 0.0106828 0.0106947 0.0107066 0.0107186 0.0107305 0.0107424 0.0107544 0.0107663 0.0107783 0.0107902 0.0108021 0.0108141 0.010826 0.0108379 0.0108499 0.0108618 0.0108737 0.0108857 0.0108976 0.0109095 0.0109215 0.0109334 0.0109454 0.0109573 0.0109692 0.0109812 0.0109931 0.011005 0.011017 0.0110289 0.0110408 0.0110528 0.0110647 0.0110766 0.0110886 0.0111005 0.0111124 0.0111244 0.0111363 0.0111483 0.0111602 0.0111721 0.0111841 0.011196 0.0112079 0.0112199 0.0112318 0.0112437 0.0112557 0.0112676 0.0112795 0.0112915 0.0113034 0.0113153 0.0113273 0.0113392 0.0113512 0.0113631 0.011375 0.011387 0.0113989 0.0114108 0.0114228 0.0114347 0.0114466 0.0114586 0.0114705 0.0114824 +-0.00276886 -0.00251845 -0.00198719 -0.00107612 0.000102017 0.0014238 0.00281628 0.00423465 0.00564301 0.00700013 0.00824066 0.0092424 0.00983101 0.0100266 0.0100727 0.0100899 0.0101026 0.0101147 0.0101266 0.0101386 0.0101505 0.0101624 0.0101744 0.0101863 0.0101983 0.0102102 0.0102221 0.0102341 0.010246 0.010258 0.0102699 0.0102818 0.0102938 0.0103057 0.0103177 0.0103296 0.0103416 0.0103535 0.0103654 0.0103774 0.0103893 0.0104013 0.0104132 0.0104251 0.0104371 0.010449 0.010461 0.0104729 0.0104849 0.0104968 0.0105087 0.0105207 0.0105326 0.0105446 0.0105565 0.0105684 0.0105804 0.0105923 0.0106043 0.0106162 0.0106281 0.0106401 0.010652 0.010664 0.0106759 0.0106879 0.0106998 0.0107117 0.0107237 0.0107356 0.0107476 0.0107595 0.0107714 0.0107834 0.0107953 0.0108073 0.0108192 0.0108311 0.0108431 0.010855 0.010867 0.0108789 0.0108909 0.0109028 0.0109147 0.0109267 0.0109386 0.0109506 0.0109625 0.0109744 0.0109864 0.0109983 0.0110103 0.0110222 0.0110342 0.0110461 0.011058 0.01107 0.0110819 0.0110939 0.0111058 0.0111177 0.0111297 0.0111416 0.0111536 0.0111655 0.0111774 0.0111894 0.0112013 0.0112133 0.0112252 0.0112372 0.0112491 0.011261 0.011273 0.0112849 0.0112969 0.0113088 0.0113207 0.0113327 0.0113446 0.0113566 0.0113685 0.0113804 0.0113924 0.0114043 0.0114163 0.0114282 0.0114402 0.0114521 0.011464 0.011476 0.0114879 +-0.00277038 -0.00251967 -0.00198788 -0.00107634 0.000102104 0.00142408 0.00281673 0.00423527 0.00564384 0.00700125 0.00824229 0.00924495 0.00983484 0.0100312 0.0100775 0.0100947 0.0101074 0.0101194 0.0101314 0.0101434 0.0101553 0.0101673 0.0101792 0.0101912 0.0102031 0.010215 0.010227 0.0102389 0.0102509 0.0102628 0.0102748 0.0102867 0.0102987 0.0103106 0.0103226 0.0103345 0.0103465 0.0103584 0.0103704 0.0103823 0.0103943 0.0104062 0.0104181 0.0104301 0.010442 0.010454 0.0104659 0.0104779 0.0104898 0.0105018 0.0105137 0.0105257 0.0105376 0.0105496 0.0105615 0.0105735 0.0105854 0.0105974 0.0106093 0.0106212 0.0106332 0.0106451 0.0106571 0.010669 0.010681 0.0106929 0.0107049 0.0107168 0.0107288 0.0107407 0.0107527 0.0107646 0.0107766 0.0107885 0.0108005 0.0108124 0.0108244 0.0108363 0.0108482 0.0108602 0.0108721 0.0108841 0.010896 0.010908 0.0109199 0.0109319 0.0109438 0.0109558 0.0109677 0.0109797 0.0109916 0.0110036 0.0110155 0.0110275 0.0110394 0.0110513 0.0110633 0.0110752 0.0110872 0.0110991 0.0111111 0.011123 0.011135 0.0111469 0.0111589 0.0111708 0.0111828 0.0111947 0.0112067 0.0112186 0.0112306 0.0112425 0.0112544 0.0112664 0.0112783 0.0112903 0.0113022 0.0113142 0.0113261 0.0113381 0.01135 0.011362 0.0113739 0.0113859 0.0113978 0.0114098 0.0114217 0.0114337 0.0114456 0.0114576 0.0114695 0.0114814 0.0114934 +-0.0027719 -0.0025209 -0.00198857 -0.00107655 0.00010219 0.00142437 0.00281719 0.00423589 0.00564466 0.00700238 0.00824392 0.00924751 0.00983867 0.0100357 0.0100822 0.0100994 0.0101122 0.0101242 0.0101362 0.0101482 0.0101601 0.0101721 0.010184 0.010196 0.0102079 0.0102199 0.0102318 0.0102438 0.0102557 0.0102677 0.0102797 0.0102916 0.0103036 0.0103155 0.0103275 0.0103394 0.0103514 0.0103633 0.0103753 0.0103872 0.0103992 0.0104111 0.0104231 0.010435 0.010447 0.0104589 0.0104709 0.0104829 0.0104948 0.0105068 0.0105187 0.0105307 0.0105426 0.0105546 0.0105665 0.0105785 0.0105904 0.0106024 0.0106143 0.0106263 0.0106382 0.0106502 0.0106622 0.0106741 0.0106861 0.010698 0.01071 0.0107219 0.0107339 0.0107458 0.0107578 0.0107697 0.0107817 0.0107936 0.0108056 0.0108175 0.0108295 0.0108414 0.0108534 0.0108654 0.0108773 0.0108893 0.0109012 0.0109132 0.0109251 0.0109371 0.010949 0.010961 0.0109729 0.0109849 0.0109968 0.0110088 0.0110207 0.0110327 0.0110446 0.0110566 0.0110686 0.0110805 0.0110925 0.0111044 0.0111164 0.0111283 0.0111403 0.0111522 0.0111642 0.0111761 0.0111881 0.0112 0.011212 0.0112239 0.0112359 0.0112479 0.0112598 0.0112718 0.0112837 0.0112957 0.0113076 0.0113196 0.0113315 0.0113435 0.0113554 0.0113674 0.0113793 0.0113913 0.0114032 0.0114152 0.0114271 0.0114391 0.0114511 0.011463 0.011475 0.0114869 0.0114989 +-0.00277342 -0.00252212 -0.00198926 -0.00107677 0.000102277 0.00142466 0.00281764 0.00423651 0.00564549 0.0070035 0.00824555 0.00925005 0.00984249 0.0100403 0.0100869 0.0101042 0.010117 0.010129 0.010141 0.010153 0.0101649 0.0101769 0.0101889 0.0102008 0.0102128 0.0102247 0.0102367 0.0102486 0.0102606 0.0102726 0.0102845 0.0102965 0.0103084 0.0103204 0.0103324 0.0103443 0.0103563 0.0103682 0.0103802 0.0103922 0.0104041 0.0104161 0.010428 0.01044 0.0104519 0.0104639 0.0104759 0.0104878 0.0104998 0.0105117 0.0105237 0.0105357 0.0105476 0.0105596 0.0105715 0.0105835 0.0105955 0.0106074 0.0106194 0.0106313 0.0106433 0.0106553 0.0106672 0.0106792 0.0106911 0.0107031 0.010715 0.010727 0.010739 0.0107509 0.0107629 0.0107748 0.0107868 0.0107988 0.0108107 0.0108227 0.0108346 0.0108466 0.0108586 0.0108705 0.0108825 0.0108944 0.0109064 0.0109183 0.0109303 0.0109423 0.0109542 0.0109662 0.0109781 0.0109901 0.0110021 0.011014 0.011026 0.0110379 0.0110499 0.0110619 0.0110738 0.0110858 0.0110977 0.0111097 0.0111216 0.0111336 0.0111456 0.0111575 0.0111695 0.0111814 0.0111934 0.0112054 0.0112173 0.0112293 0.0112412 0.0112532 0.0112652 0.0112771 0.0112891 0.011301 0.011313 0.011325 0.0113369 0.0113489 0.0113608 0.0113728 0.0113847 0.0113967 0.0114087 0.0114206 0.0114326 0.0114445 0.0114565 0.0114685 0.0114804 0.0114924 0.0115043 +-0.00277494 -0.00252335 -0.00198995 -0.00107698 0.000102364 0.00142495 0.00281809 0.00423713 0.00564631 0.00700462 0.00824718 0.0092526 0.00984631 0.0100449 0.0100917 0.010109 0.0101217 0.0101338 0.0101458 0.0101578 0.0101697 0.0101817 0.0101937 0.0102056 0.0102176 0.0102296 0.0102415 0.0102535 0.0102655 0.0102774 0.0102894 0.0103014 0.0103133 0.0103253 0.0103373 0.0103492 0.0103612 0.0103731 0.0103851 0.0103971 0.010409 0.010421 0.010433 0.0104449 0.0104569 0.0104689 0.0104808 0.0104928 0.0105048 0.0105167 0.0105287 0.0105407 0.0105526 0.0105646 0.0105765 0.0105885 0.0106005 0.0106124 0.0106244 0.0106364 0.0106483 0.0106603 0.0106723 0.0106842 0.0106962 0.0107082 0.0107201 0.0107321 0.0107441 0.010756 0.010768 0.0107799 0.0107919 0.0108039 0.0108158 0.0108278 0.0108398 0.0108517 0.0108637 0.0108757 0.0108876 0.0108996 0.0109116 0.0109235 0.0109355 0.0109475 0.0109594 0.0109714 0.0109834 0.0109953 0.0110073 0.0110192 0.0110312 0.0110432 0.0110551 0.0110671 0.0110791 0.011091 0.011103 0.011115 0.0111269 0.0111389 0.0111509 0.0111628 0.0111748 0.0111868 0.0111987 0.0112107 0.0112226 0.0112346 0.0112466 0.0112585 0.0112705 0.0112825 0.0112944 0.0113064 0.0113184 0.0113303 0.0113423 0.0113543 0.0113662 0.0113782 0.0113902 0.0114021 0.0114141 0.0114261 0.011438 0.01145 0.0114619 0.0114739 0.0114859 0.0114978 0.0115098 +-0.00277646 -0.00252457 -0.00199064 -0.0010772 0.00010245 0.00142524 0.00281854 0.00423775 0.00564713 0.00700574 0.0082488 0.00925514 0.00985013 0.0100494 0.0100964 0.0101138 0.0101265 0.0101386 0.0101506 0.0101626 0.0101746 0.0101865 0.0101985 0.0102105 0.0102224 0.0102344 0.0102464 0.0102583 0.0102703 0.0102823 0.0102943 0.0103062 0.0103182 0.0103302 0.0103421 0.0103541 0.0103661 0.0103781 0.01039 0.010402 0.010414 0.0104259 0.0104379 0.0104499 0.0104618 0.0104738 0.0104858 0.0104978 0.0105097 0.0105217 0.0105337 0.0105456 0.0105576 0.0105696 0.0105816 0.0105935 0.0106055 0.0106175 0.0106294 0.0106414 0.0106534 0.0106654 0.0106773 0.0106893 0.0107013 0.0107132 0.0107252 0.0107372 0.0107491 0.0107611 0.0107731 0.0107851 0.010797 0.010809 0.010821 0.0108329 0.0108449 0.0108569 0.0108689 0.0108808 0.0108928 0.0109048 0.0109167 0.0109287 0.0109407 0.0109526 0.0109646 0.0109766 0.0109886 0.0110005 0.0110125 0.0110245 0.0110364 0.0110484 0.0110604 0.0110724 0.0110843 0.0110963 0.0111083 0.0111202 0.0111322 0.0111442 0.0111562 0.0111681 0.0111801 0.0111921 0.011204 0.011216 0.011228 0.0112399 0.0112519 0.0112639 0.0112759 0.0112878 0.0112998 0.0113118 0.0113237 0.0113357 0.0113477 0.0113597 0.0113716 0.0113836 0.0113956 0.0114075 0.0114195 0.0114315 0.0114434 0.0114554 0.0114674 0.0114794 0.0114913 0.0115033 0.0115153 +-0.00277797 -0.00252579 -0.00199133 -0.00107741 0.000102537 0.00142553 0.002819 0.00423837 0.00564795 0.00700686 0.00825043 0.00925767 0.00985394 0.010054 0.0101012 0.0101185 0.0101313 0.0101434 0.0101554 0.0101674 0.0101794 0.0101913 0.0102033 0.0102153 0.0102273 0.0102392 0.0102512 0.0102632 0.0102752 0.0102871 0.0102991 0.0103111 0.0103231 0.0103351 0.010347 0.010359 0.010371 0.010383 0.0103949 0.0104069 0.0104189 0.0104309 0.0104428 0.0104548 0.0104668 0.0104788 0.0104907 0.0105027 0.0105147 0.0105267 0.0105387 0.0105506 0.0105626 0.0105746 0.0105866 0.0105985 0.0106105 0.0106225 0.0106345 0.0106464 0.0106584 0.0106704 0.0106824 0.0106944 0.0107063 0.0107183 0.0107303 0.0107423 0.0107542 0.0107662 0.0107782 0.0107902 0.0108021 0.0108141 0.0108261 0.0108381 0.01085 0.010862 0.010874 0.010886 0.010898 0.0109099 0.0109219 0.0109339 0.0109459 0.0109578 0.0109698 0.0109818 0.0109938 0.0110057 0.0110177 0.0110297 0.0110417 0.0110537 0.0110656 0.0110776 0.0110896 0.0111016 0.0111135 0.0111255 0.0111375 0.0111495 0.0111614 0.0111734 0.0111854 0.0111974 0.0112093 0.0112213 0.0112333 0.0112453 0.0112573 0.0112692 0.0112812 0.0112932 0.0113052 0.0113171 0.0113291 0.0113411 0.0113531 0.011365 0.011377 0.011389 0.011401 0.0114129 0.0114249 0.0114369 0.0114489 0.0114609 0.0114728 0.0114848 0.0114968 0.0115088 0.0115207 +-0.00277949 -0.00252701 -0.00199202 -0.00107762 0.000102624 0.00142581 0.00281945 0.00423898 0.00564877 0.00700798 0.00825205 0.0092602 0.00985775 0.0100585 0.0101059 0.0101233 0.0101361 0.0101482 0.0101602 0.0101722 0.0101842 0.0101961 0.0102081 0.0102201 0.0102321 0.0102441 0.0102561 0.010268 0.01028 0.010292 0.010304 0.010316 0.010328 0.0103399 0.0103519 0.0103639 0.0103759 0.0103879 0.0103998 0.0104118 0.0104238 0.0104358 0.0104478 0.0104598 0.0104717 0.0104837 0.0104957 0.0105077 0.0105197 0.0105317 0.0105436 0.0105556 0.0105676 0.0105796 0.0105916 0.0106035 0.0106155 0.0106275 0.0106395 0.0106515 0.0106635 0.0106754 0.0106874 0.0106994 0.0107114 0.0107234 0.0107354 0.0107473 0.0107593 0.0107713 0.0107833 0.0107953 0.0108073 0.0108192 0.0108312 0.0108432 0.0108552 0.0108672 0.0108791 0.0108911 0.0109031 0.0109151 0.0109271 0.0109391 0.010951 0.010963 0.010975 0.010987 0.010999 0.011011 0.0110229 0.0110349 0.0110469 0.0110589 0.0110709 0.0110828 0.0110948 0.0111068 0.0111188 0.0111308 0.0111428 0.0111547 0.0111667 0.0111787 0.0111907 0.0112027 0.0112147 0.0112266 0.0112386 0.0112506 0.0112626 0.0112746 0.0112866 0.0112985 0.0113105 0.0113225 0.0113345 0.0113465 0.0113584 0.0113704 0.0113824 0.0113944 0.0114064 0.0114184 0.0114303 0.0114423 0.0114543 0.0114663 0.0114783 0.0114903 0.0115022 0.0115142 0.0115262 +-0.00278101 -0.00252823 -0.00199271 -0.00107784 0.000102711 0.0014261 0.0028199 0.0042396 0.00564959 0.0070091 0.00825367 0.00926273 0.00986155 0.0100631 0.0101106 0.0101281 0.0101409 0.010153 0.010165 0.010177 0.010189 0.010201 0.0102129 0.0102249 0.0102369 0.0102489 0.0102609 0.0102729 0.0102849 0.0102969 0.0103088 0.0103208 0.0103328 0.0103448 0.0103568 0.0103688 0.0103808 0.0103928 0.0104048 0.0104167 0.0104287 0.0104407 0.0104527 0.0104647 0.0104767 0.0104887 0.0105007 0.0105127 0.0105246 0.0105366 0.0105486 0.0105606 0.0105726 0.0105846 0.0105966 0.0106086 0.0106205 0.0106325 0.0106445 0.0106565 0.0106685 0.0106805 0.0106925 0.0107045 0.0107165 0.0107284 0.0107404 0.0107524 0.0107644 0.0107764 0.0107884 0.0108004 0.0108124 0.0108243 0.0108363 0.0108483 0.0108603 0.0108723 0.0108843 0.0108963 0.0109083 0.0109203 0.0109322 0.0109442 0.0109562 0.0109682 0.0109802 0.0109922 0.0110042 0.0110162 0.0110282 0.0110401 0.0110521 0.0110641 0.0110761 0.0110881 0.0111001 0.0111121 0.0111241 0.011136 0.011148 0.01116 0.011172 0.011184 0.011196 0.011208 0.01122 0.011232 0.0112439 0.0112559 0.0112679 0.0112799 0.0112919 0.0113039 0.0113159 0.0113279 0.0113398 0.0113518 0.0113638 0.0113758 0.0113878 0.0113998 0.0114118 0.0114238 0.0114358 0.0114477 0.0114597 0.0114717 0.0114837 0.0114957 0.0115077 0.0115197 0.0115317 +-0.00278253 -0.00252945 -0.0019934 -0.00107805 0.000102797 0.00142639 0.00282035 0.00424021 0.00565041 0.00701021 0.00825528 0.00926526 0.00986535 0.0100676 0.0101154 0.0101328 0.0101457 0.0101578 0.0101698 0.0101818 0.0101938 0.0102058 0.0102178 0.0102297 0.0102417 0.0102537 0.0102657 0.0102777 0.0102897 0.0103017 0.0103137 0.0103257 0.0103377 0.0103497 0.0103617 0.0103737 0.0103857 0.0103977 0.0104097 0.0104217 0.0104337 0.0104456 0.0104576 0.0104696 0.0104816 0.0104936 0.0105056 0.0105176 0.0105296 0.0105416 0.0105536 0.0105656 0.0105776 0.0105896 0.0106016 0.0106136 0.0106256 0.0106376 0.0106495 0.0106615 0.0106735 0.0106855 0.0106975 0.0107095 0.0107215 0.0107335 0.0107455 0.0107575 0.0107695 0.0107815 0.0107935 0.0108055 0.0108175 0.0108295 0.0108415 0.0108535 0.0108654 0.0108774 0.0108894 0.0109014 0.0109134 0.0109254 0.0109374 0.0109494 0.0109614 0.0109734 0.0109854 0.0109974 0.0110094 0.0110214 0.0110334 0.0110454 0.0110574 0.0110693 0.0110813 0.0110933 0.0111053 0.0111173 0.0111293 0.0111413 0.0111533 0.0111653 0.0111773 0.0111893 0.0112013 0.0112133 0.0112253 0.0112373 0.0112493 0.0112613 0.0112733 0.0112852 0.0112972 0.0113092 0.0113212 0.0113332 0.0113452 0.0113572 0.0113692 0.0113812 0.0113932 0.0114052 0.0114172 0.0114292 0.0114412 0.0114532 0.0114652 0.0114772 0.0114891 0.0115011 0.0115131 0.0115251 0.0115371 +-0.00278404 -0.00253067 -0.00199409 -0.00107826 0.000102884 0.00142667 0.0028208 0.00424083 0.00565123 0.00701133 0.00825689 0.00926778 0.00986914 0.0100722 0.0101201 0.0101376 0.0101504 0.0101625 0.0101746 0.0101866 0.0101986 0.0102106 0.0102226 0.0102346 0.0102466 0.0102586 0.0102706 0.0102826 0.0102946 0.0103066 0.0103186 0.0103306 0.0103426 0.0103546 0.0103666 0.0103786 0.0103906 0.0104026 0.0104146 0.0104266 0.0104386 0.0104506 0.0104626 0.0104746 0.0104866 0.0104986 0.0105106 0.0105226 0.0105346 0.0105466 0.0105586 0.0105706 0.0105826 0.0105946 0.0106066 0.0106186 0.0106306 0.0106426 0.0106546 0.0106666 0.0106786 0.0106906 0.0107026 0.0107146 0.0107266 0.0107386 0.0107506 0.0107626 0.0107746 0.0107866 0.0107986 0.0108106 0.0108226 0.0108346 0.0108466 0.0108586 0.0108706 0.0108826 0.0108946 0.0109066 0.0109186 0.0109306 0.0109426 0.0109546 0.0109666 0.0109786 0.0109906 0.0110026 0.0110146 0.0110266 0.0110386 0.0110506 0.0110626 0.0110746 0.0110866 0.0110986 0.0111106 0.0111226 0.0111346 0.0111466 0.0111586 0.0111706 0.0111826 0.0111946 0.0112066 0.0112186 0.0112306 0.0112426 0.0112546 0.0112666 0.0112786 0.0112906 0.0113026 0.0113146 0.0113266 0.0113386 0.0113506 0.0113626 0.0113746 0.0113866 0.0113986 0.0114106 0.0114226 0.0114346 0.0114466 0.0114586 0.0114706 0.0114826 0.0114946 0.0115066 0.0115186 0.0115306 0.0115426 +-0.00278556 -0.00253189 -0.00199477 -0.00107847 0.000102971 0.00142696 0.00282125 0.00424144 0.00565205 0.00701244 0.00825851 0.00927029 0.00987293 0.0100767 0.0101248 0.0101424 0.0101552 0.0101673 0.0101794 0.0101914 0.0102034 0.0102154 0.0102274 0.0102394 0.0102514 0.0102634 0.0102754 0.0102874 0.0102994 0.0103114 0.0103234 0.0103354 0.0103474 0.0103594 0.0103715 0.0103835 0.0103955 0.0104075 0.0104195 0.0104315 0.0104435 0.0104555 0.0104675 0.0104795 0.0104915 0.0105035 0.0105155 0.0105275 0.0105395 0.0105515 0.0105635 0.0105756 0.0105876 0.0105996 0.0106116 0.0106236 0.0106356 0.0106476 0.0106596 0.0106716 0.0106836 0.0106956 0.0107076 0.0107196 0.0107316 0.0107436 0.0107556 0.0107676 0.0107797 0.0107917 0.0108037 0.0108157 0.0108277 0.0108397 0.0108517 0.0108637 0.0108757 0.0108877 0.0108997 0.0109117 0.0109237 0.0109357 0.0109477 0.0109597 0.0109718 0.0109838 0.0109958 0.0110078 0.0110198 0.0110318 0.0110438 0.0110558 0.0110678 0.0110798 0.0110918 0.0111038 0.0111158 0.0111278 0.0111398 0.0111518 0.0111638 0.0111759 0.0111879 0.0111999 0.0112119 0.0112239 0.0112359 0.0112479 0.0112599 0.0112719 0.0112839 0.0112959 0.0113079 0.0113199 0.0113319 0.0113439 0.0113559 0.0113679 0.01138 0.011392 0.011404 0.011416 0.011428 0.01144 0.011452 0.011464 0.011476 0.011488 0.0115 0.011512 0.011524 0.011536 0.011548 +-0.00278707 -0.0025331 -0.00199546 -0.00107869 0.000103058 0.00142725 0.0028217 0.00424206 0.00565286 0.00701355 0.00826012 0.00927281 0.00987672 0.0100813 0.0101296 0.0101471 0.01016 0.0101721 0.0101841 0.0101962 0.0102082 0.0102202 0.0102322 0.0102442 0.0102562 0.0102682 0.0102802 0.0102922 0.0103043 0.0103163 0.0103283 0.0103403 0.0103523 0.0103643 0.0103763 0.0103883 0.0104004 0.0104124 0.0104244 0.0104364 0.0104484 0.0104604 0.0104724 0.0104844 0.0104964 0.0105085 0.0105205 0.0105325 0.0105445 0.0105565 0.0105685 0.0105805 0.0105925 0.0106046 0.0106166 0.0106286 0.0106406 0.0106526 0.0106646 0.0106766 0.0106886 0.0107007 0.0107127 0.0107247 0.0107367 0.0107487 0.0107607 0.0107727 0.0107847 0.0107967 0.0108088 0.0108208 0.0108328 0.0108448 0.0108568 0.0108688 0.0108808 0.0108928 0.0109049 0.0109169 0.0109289 0.0109409 0.0109529 0.0109649 0.0109769 0.0109889 0.0110009 0.011013 0.011025 0.011037 0.011049 0.011061 0.011073 0.011085 0.011097 0.0111091 0.0111211 0.0111331 0.0111451 0.0111571 0.0111691 0.0111811 0.0111931 0.0112052 0.0112172 0.0112292 0.0112412 0.0112532 0.0112652 0.0112772 0.0112892 0.0113012 0.0113133 0.0113253 0.0113373 0.0113493 0.0113613 0.0113733 0.0113853 0.0113973 0.0114094 0.0114214 0.0114334 0.0114454 0.0114574 0.0114694 0.0114814 0.0114934 0.0115054 0.0115175 0.0115295 0.0115415 0.0115535 +-0.00278859 -0.00253432 -0.00199614 -0.0010789 0.000103144 0.00142754 0.00282215 0.00424267 0.00565368 0.00701466 0.00826172 0.00927531 0.0098805 0.0100858 0.0101343 0.0101519 0.0101647 0.0101769 0.0101889 0.0102009 0.010213 0.010225 0.010237 0.010249 0.010261 0.010273 0.0102851 0.0102971 0.0103091 0.0103211 0.0103331 0.0103452 0.0103572 0.0103692 0.0103812 0.0103932 0.0104052 0.0104173 0.0104293 0.0104413 0.0104533 0.0104653 0.0104774 0.0104894 0.0105014 0.0105134 0.0105254 0.0105374 0.0105495 0.0105615 0.0105735 0.0105855 0.0105975 0.0106095 0.0106216 0.0106336 0.0106456 0.0106576 0.0106696 0.0106817 0.0106937 0.0107057 0.0107177 0.0107297 0.0107417 0.0107538 0.0107658 0.0107778 0.0107898 0.0108018 0.0108138 0.0108259 0.0108379 0.0108499 0.0108619 0.0108739 0.010886 0.010898 0.01091 0.010922 0.010934 0.010946 0.0109581 0.0109701 0.0109821 0.0109941 0.0110061 0.0110182 0.0110302 0.0110422 0.0110542 0.0110662 0.0110782 0.0110903 0.0111023 0.0111143 0.0111263 0.0111383 0.0111503 0.0111624 0.0111744 0.0111864 0.0111984 0.0112104 0.0112225 0.0112345 0.0112465 0.0112585 0.0112705 0.0112825 0.0112946 0.0113066 0.0113186 0.0113306 0.0113426 0.0113546 0.0113667 0.0113787 0.0113907 0.0114027 0.0114147 0.0114268 0.0114388 0.0114508 0.0114628 0.0114748 0.0114868 0.0114989 0.0115109 0.0115229 0.0115349 0.0115469 0.0115589 +-0.0027901 -0.00253554 -0.00199683 -0.00107911 0.000103231 0.00142782 0.0028226 0.00424329 0.00565449 0.00701577 0.00826333 0.00927782 0.00988428 0.0100904 0.010139 0.0101567 0.0101695 0.0101817 0.0101937 0.0102057 0.0102178 0.0102298 0.0102418 0.0102538 0.0102658 0.0102779 0.0102899 0.0103019 0.0103139 0.010326 0.010338 0.01035 0.010362 0.0103741 0.0103861 0.0103981 0.0104101 0.0104222 0.0104342 0.0104462 0.0104582 0.0104703 0.0104823 0.0104943 0.0105063 0.0105183 0.0105304 0.0105424 0.0105544 0.0105664 0.0105785 0.0105905 0.0106025 0.0106145 0.0106266 0.0106386 0.0106506 0.0106626 0.0106747 0.0106867 0.0106987 0.0107107 0.0107227 0.0107348 0.0107468 0.0107588 0.0107708 0.0107829 0.0107949 0.0108069 0.0108189 0.010831 0.010843 0.010855 0.010867 0.0108791 0.0108911 0.0109031 0.0109151 0.0109271 0.0109392 0.0109512 0.0109632 0.0109752 0.0109873 0.0109993 0.0110113 0.0110233 0.0110354 0.0110474 0.0110594 0.0110714 0.0110835 0.0110955 0.0111075 0.0111195 0.0111316 0.0111436 0.0111556 0.0111676 0.0111796 0.0111917 0.0112037 0.0112157 0.0112277 0.0112398 0.0112518 0.0112638 0.0112758 0.0112879 0.0112999 0.0113119 0.0113239 0.011336 0.011348 0.01136 0.011372 0.011384 0.0113961 0.0114081 0.0114201 0.0114321 0.0114442 0.0114562 0.0114682 0.0114802 0.0114923 0.0115043 0.0115163 0.0115283 0.0115404 0.0115524 0.0115644 +-0.00279162 -0.00253675 -0.00199751 -0.00107932 0.000103318 0.00142811 0.00282305 0.0042439 0.00565531 0.00701688 0.00826493 0.00928032 0.00988805 0.0100949 0.0101437 0.0101614 0.0101743 0.0101864 0.0101985 0.0102105 0.0102225 0.0102346 0.0102466 0.0102586 0.0102707 0.0102827 0.0102947 0.0103068 0.0103188 0.0103308 0.0103428 0.0103549 0.0103669 0.0103789 0.010391 0.010403 0.010415 0.010427 0.0104391 0.0104511 0.0104631 0.0104752 0.0104872 0.0104992 0.0105113 0.0105233 0.0105353 0.0105473 0.0105594 0.0105714 0.0105834 0.0105955 0.0106075 0.0106195 0.0106316 0.0106436 0.0106556 0.0106676 0.0106797 0.0106917 0.0107037 0.0107158 0.0107278 0.0107398 0.0107518 0.0107639 0.0107759 0.0107879 0.0108 0.010812 0.010824 0.0108361 0.0108481 0.0108601 0.0108721 0.0108842 0.0108962 0.0109082 0.0109203 0.0109323 0.0109443 0.0109563 0.0109684 0.0109804 0.0109924 0.0110045 0.0110165 0.0110285 0.0110406 0.0110526 0.0110646 0.0110766 0.0110887 0.0111007 0.0111127 0.0111248 0.0111368 0.0111488 0.0111608 0.0111729 0.0111849 0.0111969 0.011209 0.011221 0.011233 0.0112451 0.0112571 0.0112691 0.0112811 0.0112932 0.0113052 0.0113172 0.0113293 0.0113413 0.0113533 0.0113653 0.0113774 0.0113894 0.0114014 0.0114135 0.0114255 0.0114375 0.0114496 0.0114616 0.0114736 0.0114856 0.0114977 0.0115097 0.0115217 0.0115338 0.0115458 0.0115578 0.0115699 +-0.00279313 -0.00253797 -0.00199819 -0.00107953 0.000103405 0.00142839 0.00282349 0.00424451 0.00565612 0.00701798 0.00826653 0.00928282 0.00989182 0.0100994 0.0101485 0.0101662 0.0101791 0.0101912 0.0102033 0.0102153 0.0102273 0.0102394 0.0102514 0.0102634 0.0102755 0.0102875 0.0102995 0.0103116 0.0103236 0.0103357 0.0103477 0.0103597 0.0103718 0.0103838 0.0103958 0.0104079 0.0104199 0.0104319 0.010444 0.010456 0.010468 0.0104801 0.0104921 0.0105042 0.0105162 0.0105282 0.0105403 0.0105523 0.0105643 0.0105764 0.0105884 0.0106004 0.0106125 0.0106245 0.0106365 0.0106486 0.0106606 0.0106726 0.0106847 0.0106967 0.0107088 0.0107208 0.0107328 0.0107449 0.0107569 0.0107689 0.010781 0.010793 0.010805 0.0108171 0.0108291 0.0108411 0.0108532 0.0108652 0.0108772 0.0108893 0.0109013 0.0109134 0.0109254 0.0109374 0.0109495 0.0109615 0.0109735 0.0109856 0.0109976 0.0110096 0.0110217 0.0110337 0.0110457 0.0110578 0.0110698 0.0110819 0.0110939 0.0111059 0.011118 0.01113 0.011142 0.0111541 0.0111661 0.0111781 0.0111902 0.0112022 0.0112142 0.0112263 0.0112383 0.0112503 0.0112624 0.0112744 0.0112865 0.0112985 0.0113105 0.0113226 0.0113346 0.0113466 0.0113587 0.0113707 0.0113827 0.0113948 0.0114068 0.0114188 0.0114309 0.0114429 0.0114549 0.011467 0.011479 0.0114911 0.0115031 0.0115151 0.0115272 0.0115392 0.0115512 0.0115633 0.0115753 +-0.00279464 -0.00253918 -0.00199888 -0.00107974 0.000103492 0.00142868 0.00282394 0.00424512 0.00565693 0.00701909 0.00826813 0.00928531 0.00989558 0.010104 0.0101532 0.0101709 0.0101838 0.010196 0.010208 0.0102201 0.0102321 0.0102442 0.0102562 0.0102683 0.0102803 0.0102923 0.0103044 0.0103164 0.0103285 0.0103405 0.0103525 0.0103646 0.0103766 0.0103887 0.0104007 0.0104127 0.0104248 0.0104368 0.0104489 0.0104609 0.010473 0.010485 0.010497 0.0105091 0.0105211 0.0105332 0.0105452 0.0105572 0.0105693 0.0105813 0.0105934 0.0106054 0.0106174 0.0106295 0.0106415 0.0106536 0.0106656 0.0106777 0.0106897 0.0107017 0.0107138 0.0107258 0.0107379 0.0107499 0.0107619 0.010774 0.010786 0.0107981 0.0108101 0.0108221 0.0108342 0.0108462 0.0108583 0.0108703 0.0108824 0.0108944 0.0109064 0.0109185 0.0109305 0.0109426 0.0109546 0.0109666 0.0109787 0.0109907 0.0110028 0.0110148 0.0110269 0.0110389 0.0110509 0.011063 0.011075 0.0110871 0.0110991 0.0111111 0.0111232 0.0111352 0.0111473 0.0111593 0.0111713 0.0111834 0.0111954 0.0112075 0.0112195 0.0112316 0.0112436 0.0112556 0.0112677 0.0112797 0.0112918 0.0113038 0.0113158 0.0113279 0.0113399 0.011352 0.011364 0.011376 0.0113881 0.0114001 0.0114122 0.0114242 0.0114363 0.0114483 0.0114603 0.0114724 0.0114844 0.0114965 0.0115085 0.0115205 0.0115326 0.0115446 0.0115567 0.0115687 0.0115807 +-0.00279615 -0.00254039 -0.00199956 -0.00107995 0.000103578 0.00142897 0.00282439 0.00424573 0.00565775 0.00702019 0.00826972 0.0092878 0.00989934 0.0101085 0.0101579 0.0101757 0.0101886 0.0102008 0.0102128 0.0102249 0.0102369 0.010249 0.010261 0.0102731 0.0102851 0.0102972 0.0103092 0.0103212 0.0103333 0.0103453 0.0103574 0.0103694 0.0103815 0.0103935 0.0104056 0.0104176 0.0104297 0.0104417 0.0104538 0.0104658 0.0104779 0.0104899 0.010502 0.010514 0.010526 0.0105381 0.0105501 0.0105622 0.0105742 0.0105863 0.0105983 0.0106104 0.0106224 0.0106345 0.0106465 0.0106586 0.0106706 0.0106827 0.0106947 0.0107068 0.0107188 0.0107308 0.0107429 0.0107549 0.010767 0.010779 0.0107911 0.0108031 0.0108152 0.0108272 0.0108393 0.0108513 0.0108634 0.0108754 0.0108875 0.0108995 0.0109116 0.0109236 0.0109356 0.0109477 0.0109597 0.0109718 0.0109838 0.0109959 0.0110079 0.01102 0.011032 0.0110441 0.0110561 0.0110682 0.0110802 0.0110923 0.0111043 0.0111164 0.0111284 0.0111405 0.0111525 0.0111645 0.0111766 0.0111886 0.0112007 0.0112127 0.0112248 0.0112368 0.0112489 0.0112609 0.011273 0.011285 0.0112971 0.0113091 0.0113212 0.0113332 0.0113453 0.0113573 0.0113693 0.0113814 0.0113934 0.0114055 0.0114175 0.0114296 0.0114416 0.0114537 0.0114657 0.0114778 0.0114898 0.0115019 0.0115139 0.011526 0.011538 0.0115501 0.0115621 0.0115741 0.0115862 +-0.00279767 -0.00254161 -0.00200024 -0.00108016 0.000103665 0.00142925 0.00282484 0.00424634 0.00565856 0.0070213 0.00827132 0.00929028 0.0099031 0.010113 0.0101626 0.0101804 0.0101933 0.0102055 0.0102176 0.0102296 0.0102417 0.0102538 0.0102658 0.0102779 0.0102899 0.010302 0.010314 0.0103261 0.0103381 0.0103502 0.0103622 0.0103743 0.0103863 0.0103984 0.0104104 0.0104225 0.0104346 0.0104466 0.0104587 0.0104707 0.0104828 0.0104948 0.0105069 0.0105189 0.010531 0.010543 0.0105551 0.0105671 0.0105792 0.0105912 0.0106033 0.0106153 0.0106274 0.0106395 0.0106515 0.0106636 0.0106756 0.0106877 0.0106997 0.0107118 0.0107238 0.0107359 0.0107479 0.01076 0.010772 0.0107841 0.0107961 0.0108082 0.0108202 0.0108323 0.0108444 0.0108564 0.0108685 0.0108805 0.0108926 0.0109046 0.0109167 0.0109287 0.0109408 0.0109528 0.0109649 0.0109769 0.010989 0.011001 0.0110131 0.0110251 0.0110372 0.0110493 0.0110613 0.0110734 0.0110854 0.0110975 0.0111095 0.0111216 0.0111336 0.0111457 0.0111577 0.0111698 0.0111818 0.0111939 0.0112059 0.011218 0.01123 0.0112421 0.0112542 0.0112662 0.0112783 0.0112903 0.0113024 0.0113144 0.0113265 0.0113385 0.0113506 0.0113626 0.0113747 0.0113867 0.0113988 0.0114108 0.0114229 0.0114349 0.011447 0.0114591 0.0114711 0.0114832 0.0114952 0.0115073 0.0115193 0.0115314 0.0115434 0.0115555 0.0115675 0.0115796 0.0115916 +-0.00279918 -0.00254282 -0.00200092 -0.00108037 0.000103752 0.00142954 0.00282528 0.00424695 0.00565937 0.0070224 0.00827291 0.00929277 0.00990685 0.0101176 0.0101673 0.0101852 0.0101981 0.0102103 0.0102224 0.0102344 0.0102465 0.0102585 0.0102706 0.0102827 0.0102947 0.0103068 0.0103188 0.0103309 0.010343 0.010355 0.0103671 0.0103791 0.0103912 0.0104033 0.0104153 0.0104274 0.0104394 0.0104515 0.0104635 0.0104756 0.0104877 0.0104997 0.0105118 0.0105238 0.0105359 0.010548 0.01056 0.0105721 0.0105841 0.0105962 0.0106083 0.0106203 0.0106324 0.0106444 0.0106565 0.0106685 0.0106806 0.0106927 0.0107047 0.0107168 0.0107288 0.0107409 0.010753 0.010765 0.0107771 0.0107891 0.0108012 0.0108133 0.0108253 0.0108374 0.0108494 0.0108615 0.0108735 0.0108856 0.0108977 0.0109097 0.0109218 0.0109338 0.0109459 0.010958 0.01097 0.0109821 0.0109941 0.0110062 0.0110183 0.0110303 0.0110424 0.0110544 0.0110665 0.0110785 0.0110906 0.0111027 0.0111147 0.0111268 0.0111388 0.0111509 0.011163 0.011175 0.0111871 0.0111991 0.0112112 0.0112233 0.0112353 0.0112474 0.0112594 0.0112715 0.0112835 0.0112956 0.0113077 0.0113197 0.0113318 0.0113438 0.0113559 0.011368 0.01138 0.0113921 0.0114041 0.0114162 0.0114283 0.0114403 0.0114524 0.0114644 0.0114765 0.0114885 0.0115006 0.0115127 0.0115247 0.0115368 0.0115488 0.0115609 0.011573 0.011585 0.0115971 +-0.00280069 -0.00254403 -0.0020016 -0.00108058 0.000103839 0.00142982 0.00282573 0.00424756 0.00566018 0.0070235 0.0082745 0.00929524 0.00991059 0.0101221 0.010172 0.0101899 0.0102029 0.0102151 0.0102271 0.0102392 0.0102513 0.0102633 0.0102754 0.0102875 0.0102995 0.0103116 0.0103237 0.0103357 0.0103478 0.0103599 0.0103719 0.010384 0.010396 0.0104081 0.0104202 0.0104322 0.0104443 0.0104564 0.0104684 0.0104805 0.0104926 0.0105046 0.0105167 0.0105288 0.0105408 0.0105529 0.010565 0.010577 0.0105891 0.0106011 0.0106132 0.0106253 0.0106373 0.0106494 0.0106615 0.0106735 0.0106856 0.0106977 0.0107097 0.0107218 0.0107339 0.0107459 0.010758 0.0107701 0.0107821 0.0107942 0.0108062 0.0108183 0.0108304 0.0108424 0.0108545 0.0108666 0.0108786 0.0108907 0.0109028 0.0109148 0.0109269 0.010939 0.010951 0.0109631 0.0109752 0.0109872 0.0109993 0.0110113 0.0110234 0.0110355 0.0110475 0.0110596 0.0110717 0.0110837 0.0110958 0.0111079 0.0111199 0.011132 0.0111441 0.0111561 0.0111682 0.0111803 0.0111923 0.0112044 0.0112164 0.0112285 0.0112406 0.0112526 0.0112647 0.0112768 0.0112888 0.0113009 0.011313 0.011325 0.0113371 0.0113492 0.0113612 0.0113733 0.0113854 0.0113974 0.0114095 0.0114215 0.0114336 0.0114457 0.0114577 0.0114698 0.0114819 0.0114939 0.011506 0.0115181 0.0115301 0.0115422 0.0115543 0.0115663 0.0115784 0.0115905 0.0116025 +-0.0028022 -0.00254524 -0.00200228 -0.00108079 0.000103926 0.00143011 0.00282618 0.00424817 0.00566099 0.0070246 0.00827608 0.00929772 0.00991434 0.0101266 0.0101768 0.0101947 0.0102076 0.0102198 0.0102319 0.010244 0.0102561 0.0102681 0.0102802 0.0102923 0.0103043 0.0103164 0.0103285 0.0103405 0.0103526 0.0103647 0.0103768 0.0103888 0.0104009 0.010413 0.010425 0.0104371 0.0104492 0.0104613 0.0104733 0.0104854 0.0104975 0.0105095 0.0105216 0.0105337 0.0105457 0.0105578 0.0105699 0.010582 0.010594 0.0106061 0.0106182 0.0106302 0.0106423 0.0106544 0.0106665 0.0106785 0.0106906 0.0107027 0.0107147 0.0107268 0.0107389 0.0107509 0.010763 0.0107751 0.0107872 0.0107992 0.0108113 0.0108234 0.0108354 0.0108475 0.0108596 0.0108717 0.0108837 0.0108958 0.0109079 0.0109199 0.010932 0.0109441 0.0109561 0.0109682 0.0109803 0.0109924 0.0110044 0.0110165 0.0110286 0.0110406 0.0110527 0.0110648 0.0110769 0.0110889 0.011101 0.0111131 0.0111251 0.0111372 0.0111493 0.0111613 0.0111734 0.0111855 0.0111976 0.0112096 0.0112217 0.0112338 0.0112458 0.0112579 0.01127 0.0112821 0.0112941 0.0113062 0.0113183 0.0113303 0.0113424 0.0113545 0.0113665 0.0113786 0.0113907 0.0114028 0.0114148 0.0114269 0.011439 0.011451 0.0114631 0.0114752 0.0114873 0.0114993 0.0115114 0.0115235 0.0115355 0.0115476 0.0115597 0.0115717 0.0115838 0.0115959 0.011608 +-0.00280371 -0.00254645 -0.00200295 -0.001081 0.000104013 0.00143039 0.00282662 0.00424878 0.00566179 0.0070257 0.00827767 0.00930019 0.00991808 0.0101311 0.0101815 0.0101994 0.0102124 0.0102246 0.0102367 0.0102488 0.0102608 0.0102729 0.010285 0.0102971 0.0103091 0.0103212 0.0103333 0.0103454 0.0103574 0.0103695 0.0103816 0.0103937 0.0104058 0.0104178 0.0104299 0.010442 0.0104541 0.0104661 0.0104782 0.0104903 0.0105024 0.0105144 0.0105265 0.0105386 0.0105507 0.0105627 0.0105748 0.0105869 0.010599 0.0106111 0.0106231 0.0106352 0.0106473 0.0106594 0.0106714 0.0106835 0.0106956 0.0107077 0.0107197 0.0107318 0.0107439 0.010756 0.010768 0.0107801 0.0107922 0.0108043 0.0108164 0.0108284 0.0108405 0.0108526 0.0108647 0.0108767 0.0108888 0.0109009 0.010913 0.010925 0.0109371 0.0109492 0.0109613 0.0109733 0.0109854 0.0109975 0.0110096 0.0110217 0.0110337 0.0110458 0.0110579 0.01107 0.011082 0.0110941 0.0111062 0.0111183 0.0111303 0.0111424 0.0111545 0.0111666 0.0111786 0.0111907 0.0112028 0.0112149 0.0112269 0.011239 0.0112511 0.0112632 0.0112753 0.0112873 0.0112994 0.0113115 0.0113236 0.0113356 0.0113477 0.0113598 0.0113719 0.0113839 0.011396 0.0114081 0.0114202 0.0114322 0.0114443 0.0114564 0.0114685 0.0114806 0.0114926 0.0115047 0.0115168 0.0115289 0.0115409 0.011553 0.0115651 0.0115772 0.0115892 0.0116013 0.0116134 +-0.00280522 -0.00254766 -0.00200363 -0.00108121 0.000104099 0.00143068 0.00282707 0.00424939 0.0056626 0.00702679 0.00827925 0.00930265 0.00992181 0.0101356 0.0101862 0.0102042 0.0102171 0.0102293 0.0102414 0.0102535 0.0102656 0.0102777 0.0102898 0.0103019 0.0103139 0.010326 0.0103381 0.0103502 0.0103623 0.0103744 0.0103864 0.0103985 0.0104106 0.0104227 0.0104348 0.0104468 0.0104589 0.010471 0.0104831 0.0104952 0.0105073 0.0105193 0.0105314 0.0105435 0.0105556 0.0105677 0.0105798 0.0105918 0.0106039 0.010616 0.0106281 0.0106402 0.0106522 0.0106643 0.0106764 0.0106885 0.0107006 0.0107127 0.0107247 0.0107368 0.0107489 0.010761 0.0107731 0.0107852 0.0107972 0.0108093 0.0108214 0.0108335 0.0108456 0.0108576 0.0108697 0.0108818 0.0108939 0.010906 0.0109181 0.0109301 0.0109422 0.0109543 0.0109664 0.0109785 0.0109906 0.0110026 0.0110147 0.0110268 0.0110389 0.011051 0.011063 0.0110751 0.0110872 0.0110993 0.0111114 0.0111235 0.0111355 0.0111476 0.0111597 0.0111718 0.0111839 0.011196 0.011208 0.0112201 0.0112322 0.0112443 0.0112564 0.0112684 0.0112805 0.0112926 0.0113047 0.0113168 0.0113289 0.0113409 0.011353 0.0113651 0.0113772 0.0113893 0.0114013 0.0114134 0.0114255 0.0114376 0.0114497 0.0114618 0.0114738 0.0114859 0.011498 0.0115101 0.0115222 0.0115343 0.0115463 0.0115584 0.0115705 0.0115826 0.0115947 0.0116067 0.0116188 +-0.00280673 -0.00254886 -0.00200431 -0.00108142 0.000104186 0.00143096 0.00282751 0.00425 0.00566341 0.00702789 0.00828083 0.00930512 0.00992554 0.0101402 0.0101909 0.0102089 0.0102219 0.0102341 0.0102462 0.0102583 0.0102704 0.0102825 0.0102946 0.0103067 0.0103187 0.0103308 0.0103429 0.010355 0.0103671 0.0103792 0.0103913 0.0104034 0.0104154 0.0104275 0.0104396 0.0104517 0.0104638 0.0104759 0.010488 0.0105001 0.0105122 0.0105242 0.0105363 0.0105484 0.0105605 0.0105726 0.0105847 0.0105968 0.0106089 0.0106209 0.010633 0.0106451 0.0106572 0.0106693 0.0106814 0.0106935 0.0107056 0.0107177 0.0107297 0.0107418 0.0107539 0.010766 0.0107781 0.0107902 0.0108023 0.0108144 0.0108264 0.0108385 0.0108506 0.0108627 0.0108748 0.0108869 0.010899 0.0109111 0.0109232 0.0109352 0.0109473 0.0109594 0.0109715 0.0109836 0.0109957 0.0110078 0.0110199 0.0110319 0.011044 0.0110561 0.0110682 0.0110803 0.0110924 0.0111045 0.0111166 0.0111287 0.0111407 0.0111528 0.0111649 0.011177 0.0111891 0.0112012 0.0112133 0.0112254 0.0112374 0.0112495 0.0112616 0.0112737 0.0112858 0.0112979 0.01131 0.0113221 0.0113341 0.0113462 0.0113583 0.0113704 0.0113825 0.0113946 0.0114067 0.0114188 0.0114309 0.0114429 0.011455 0.0114671 0.0114792 0.0114913 0.0115034 0.0115155 0.0115276 0.0115396 0.0115517 0.0115638 0.0115759 0.011588 0.0116001 0.0116122 0.0116243 +-0.00280823 -0.00255007 -0.00200498 -0.00108162 0.000104273 0.00143124 0.00282796 0.0042506 0.00566421 0.00702898 0.00828241 0.00930757 0.00992926 0.0101447 0.0101956 0.0102137 0.0102266 0.0102389 0.010251 0.0102631 0.0102752 0.0102873 0.0102994 0.0103114 0.0103235 0.0103356 0.0103477 0.0103598 0.0103719 0.010384 0.0103961 0.0104082 0.0104203 0.0104324 0.0104445 0.0104566 0.0104687 0.0104808 0.0104929 0.010505 0.010517 0.0105291 0.0105412 0.0105533 0.0105654 0.0105775 0.0105896 0.0106017 0.0106138 0.0106259 0.010638 0.0106501 0.0106622 0.0106743 0.0106864 0.0106985 0.0107106 0.0107226 0.0107347 0.0107468 0.0107589 0.010771 0.0107831 0.0107952 0.0108073 0.0108194 0.0108315 0.0108436 0.0108557 0.0108678 0.0108799 0.010892 0.0109041 0.0109161 0.0109282 0.0109403 0.0109524 0.0109645 0.0109766 0.0109887 0.0110008 0.0110129 0.011025 0.0110371 0.0110492 0.0110613 0.0110734 0.0110855 0.0110976 0.0111097 0.0111217 0.0111338 0.0111459 0.011158 0.0111701 0.0111822 0.0111943 0.0112064 0.0112185 0.0112306 0.0112427 0.0112548 0.0112669 0.011279 0.0112911 0.0113032 0.0113153 0.0113273 0.0113394 0.0113515 0.0113636 0.0113757 0.0113878 0.0113999 0.011412 0.0114241 0.0114362 0.0114483 0.0114604 0.0114725 0.0114846 0.0114967 0.0115088 0.0115208 0.0115329 0.011545 0.0115571 0.0115692 0.0115813 0.0115934 0.0116055 0.0116176 0.0116297 +-0.00280974 -0.00255128 -0.00200566 -0.00108183 0.00010436 0.00143153 0.0028284 0.00425121 0.00566502 0.00703007 0.00828399 0.00931003 0.00993299 0.0101492 0.0102003 0.0102184 0.0102314 0.0102436 0.0102557 0.0102678 0.0102799 0.010292 0.0103041 0.0103162 0.0103283 0.0103404 0.0103525 0.0103646 0.0103767 0.0103888 0.0104009 0.010413 0.0104251 0.0104372 0.0104493 0.0104614 0.0104735 0.0104856 0.0104977 0.0105098 0.0105219 0.010534 0.0105461 0.0105582 0.0105703 0.0105824 0.0105945 0.0106066 0.0106187 0.0106308 0.0106429 0.010655 0.0106671 0.0106792 0.0106913 0.0107034 0.0107155 0.0107276 0.0107397 0.0107518 0.0107639 0.010776 0.0107881 0.0108002 0.0108123 0.0108244 0.0108365 0.0108486 0.0108607 0.0108728 0.0108849 0.010897 0.0109091 0.0109212 0.0109333 0.0109454 0.0109575 0.0109696 0.0109817 0.0109938 0.0110059 0.011018 0.0110301 0.0110422 0.0110543 0.0110664 0.0110785 0.0110906 0.0111027 0.0111148 0.0111269 0.011139 0.0111511 0.0111632 0.0111753 0.0111874 0.0111995 0.0112116 0.0112237 0.0112358 0.0112479 0.01126 0.0112721 0.0112842 0.0112963 0.0113084 0.0113205 0.0113326 0.0113447 0.0113568 0.0113689 0.011381 0.0113931 0.0114052 0.0114173 0.0114294 0.0114415 0.0114536 0.0114657 0.0114778 0.0114899 0.011502 0.0115141 0.0115262 0.0115383 0.0115504 0.0115625 0.0115746 0.0115867 0.0115988 0.0116109 0.011623 0.0116351 +-0.00281125 -0.00255248 -0.00200633 -0.00108204 0.000104447 0.00143181 0.00282885 0.00425182 0.00566582 0.00703117 0.00828556 0.00931248 0.0099367 0.0101537 0.010205 0.0102231 0.0102361 0.0102484 0.0102605 0.0102726 0.0102847 0.0102968 0.0103089 0.010321 0.0103331 0.0103452 0.0103574 0.0103695 0.0103816 0.0103937 0.0104058 0.0104179 0.01043 0.0104421 0.0104542 0.0104663 0.0104784 0.0104905 0.0105026 0.0105147 0.0105268 0.0105389 0.010551 0.0105631 0.0105753 0.0105874 0.0105995 0.0106116 0.0106237 0.0106358 0.0106479 0.01066 0.0106721 0.0106842 0.0106963 0.0107084 0.0107205 0.0107326 0.0107447 0.0107568 0.0107689 0.010781 0.0107932 0.0108053 0.0108174 0.0108295 0.0108416 0.0108537 0.0108658 0.0108779 0.01089 0.0109021 0.0109142 0.0109263 0.0109384 0.0109505 0.0109626 0.0109747 0.0109868 0.010999 0.0110111 0.0110232 0.0110353 0.0110474 0.0110595 0.0110716 0.0110837 0.0110958 0.0111079 0.01112 0.0111321 0.0111442 0.0111563 0.0111684 0.0111805 0.0111926 0.0112047 0.0112169 0.011229 0.0112411 0.0112532 0.0112653 0.0112774 0.0112895 0.0113016 0.0113137 0.0113258 0.0113379 0.01135 0.0113621 0.0113742 0.0113863 0.0113984 0.0114105 0.0114227 0.0114348 0.0114469 0.011459 0.0114711 0.0114832 0.0114953 0.0115074 0.0115195 0.0115316 0.0115437 0.0115558 0.0115679 0.01158 0.0115921 0.0116042 0.0116163 0.0116284 0.0116406 +-0.00281276 -0.00255369 -0.00200701 -0.00108225 0.000104534 0.0014321 0.00282929 0.00425242 0.00566663 0.00703226 0.00828713 0.00931493 0.00994041 0.0101582 0.0102097 0.0102279 0.0102409 0.0102531 0.0102653 0.0102774 0.0102895 0.0103016 0.0103137 0.0103258 0.0103379 0.01035 0.0103622 0.0103743 0.0103864 0.0103985 0.0104106 0.0104227 0.0104348 0.0104469 0.010459 0.0104712 0.0104833 0.0104954 0.0105075 0.0105196 0.0105317 0.0105438 0.0105559 0.0105681 0.0105802 0.0105923 0.0106044 0.0106165 0.0106286 0.0106407 0.0106528 0.0106649 0.0106771 0.0106892 0.0107013 0.0107134 0.0107255 0.0107376 0.0107497 0.0107618 0.0107739 0.0107861 0.0107982 0.0108103 0.0108224 0.0108345 0.0108466 0.0108587 0.0108708 0.010883 0.0108951 0.0109072 0.0109193 0.0109314 0.0109435 0.0109556 0.0109677 0.0109798 0.010992 0.0110041 0.0110162 0.0110283 0.0110404 0.0110525 0.0110646 0.0110767 0.0110889 0.011101 0.0111131 0.0111252 0.0111373 0.0111494 0.0111615 0.0111736 0.0111857 0.0111979 0.01121 0.0112221 0.0112342 0.0112463 0.0112584 0.0112705 0.0112826 0.0112947 0.0113069 0.011319 0.0113311 0.0113432 0.0113553 0.0113674 0.0113795 0.0113916 0.0114037 0.0114159 0.011428 0.0114401 0.0114522 0.0114643 0.0114764 0.0114885 0.0115006 0.0115128 0.0115249 0.011537 0.0115491 0.0115612 0.0115733 0.0115854 0.0115975 0.0116096 0.0116218 0.0116339 0.011646 +-0.00281426 -0.00255489 -0.00200768 -0.00108245 0.000104621 0.00143238 0.00282973 0.00425303 0.00566743 0.00703335 0.0082887 0.00931737 0.00994412 0.0101627 0.0102144 0.0102326 0.0102456 0.0102579 0.01027 0.0102821 0.0102943 0.0103064 0.0103185 0.0103306 0.0103427 0.0103548 0.010367 0.0103791 0.0103912 0.0104033 0.0104154 0.0104275 0.0104397 0.0104518 0.0104639 0.010476 0.0104881 0.0105003 0.0105124 0.0105245 0.0105366 0.0105487 0.0105608 0.010573 0.0105851 0.0105972 0.0106093 0.0106214 0.0106335 0.0106457 0.0106578 0.0106699 0.010682 0.0106941 0.0107062 0.0107184 0.0107305 0.0107426 0.0107547 0.0107668 0.010779 0.0107911 0.0108032 0.0108153 0.0108274 0.0108395 0.0108517 0.0108638 0.0108759 0.010888 0.0109001 0.0109122 0.0109244 0.0109365 0.0109486 0.0109607 0.0109728 0.0109849 0.0109971 0.0110092 0.0110213 0.0110334 0.0110455 0.0110577 0.0110698 0.0110819 0.011094 0.0111061 0.0111182 0.0111304 0.0111425 0.0111546 0.0111667 0.0111788 0.0111909 0.0112031 0.0112152 0.0112273 0.0112394 0.0112515 0.0112636 0.0112758 0.0112879 0.0113 0.0113121 0.0113242 0.0113364 0.0113485 0.0113606 0.0113727 0.0113848 0.0113969 0.0114091 0.0114212 0.0114333 0.0114454 0.0114575 0.0114696 0.0114818 0.0114939 0.011506 0.0115181 0.0115302 0.0115423 0.0115545 0.0115666 0.0115787 0.0115908 0.0116029 0.0116151 0.0116272 0.0116393 0.0116514 +-0.00281577 -0.0025561 -0.00200835 -0.00108266 0.000104708 0.00143266 0.00283018 0.00425363 0.00566823 0.00703443 0.00829027 0.00931981 0.00994783 0.0101672 0.0102191 0.0102373 0.0102504 0.0102626 0.0102748 0.0102869 0.010299 0.0103112 0.0103233 0.0103354 0.0103475 0.0103596 0.0103718 0.0103839 0.010396 0.0104081 0.0104203 0.0104324 0.0104445 0.0104566 0.0104688 0.0104809 0.010493 0.0105051 0.0105172 0.0105294 0.0105415 0.0105536 0.0105657 0.0105779 0.01059 0.0106021 0.0106142 0.0106264 0.0106385 0.0106506 0.0106627 0.0106748 0.010687 0.0106991 0.0107112 0.0107233 0.0107355 0.0107476 0.0107597 0.0107718 0.010784 0.0107961 0.0108082 0.0108203 0.0108324 0.0108446 0.0108567 0.0108688 0.0108809 0.0108931 0.0109052 0.0109173 0.0109294 0.0109416 0.0109537 0.0109658 0.0109779 0.0109901 0.0110022 0.0110143 0.0110264 0.0110385 0.0110507 0.0110628 0.0110749 0.011087 0.0110992 0.0111113 0.0111234 0.0111355 0.0111477 0.0111598 0.0111719 0.011184 0.0111961 0.0112083 0.0112204 0.0112325 0.0112446 0.0112568 0.0112689 0.011281 0.0112931 0.0113053 0.0113174 0.0113295 0.0113416 0.0113537 0.0113659 0.011378 0.0113901 0.0114022 0.0114144 0.0114265 0.0114386 0.0114507 0.0114629 0.011475 0.0114871 0.0114992 0.0115113 0.0115235 0.0115356 0.0115477 0.0115598 0.011572 0.0115841 0.0115962 0.0116083 0.0116205 0.0116326 0.0116447 0.0116568 +-0.00281727 -0.0025573 -0.00200902 -0.00108287 0.000104794 0.00143295 0.00283062 0.00425423 0.00566903 0.00703552 0.00829183 0.00932225 0.00995153 0.0101717 0.0102238 0.0102421 0.0102551 0.0102674 0.0102795 0.0102917 0.0103038 0.0103159 0.0103281 0.0103402 0.0103523 0.0103644 0.0103766 0.0103887 0.0104008 0.010413 0.0104251 0.0104372 0.0104493 0.0104615 0.0104736 0.0104857 0.0104979 0.01051 0.0105221 0.0105342 0.0105464 0.0105585 0.0105706 0.0105828 0.0105949 0.010607 0.0106192 0.0106313 0.0106434 0.0106555 0.0106677 0.0106798 0.0106919 0.0107041 0.0107162 0.0107283 0.0107404 0.0107526 0.0107647 0.0107768 0.010789 0.0108011 0.0108132 0.0108253 0.0108375 0.0108496 0.0108617 0.0108739 0.010886 0.0108981 0.0109102 0.0109224 0.0109345 0.0109466 0.0109588 0.0109709 0.010983 0.0109952 0.0110073 0.0110194 0.0110315 0.0110437 0.0110558 0.0110679 0.0110801 0.0110922 0.0111043 0.0111164 0.0111286 0.0111407 0.0111528 0.011165 0.0111771 0.0111892 0.0112013 0.0112135 0.0112256 0.0112377 0.0112499 0.011262 0.0112741 0.0112863 0.0112984 0.0113105 0.0113226 0.0113348 0.0113469 0.011359 0.0113712 0.0113833 0.0113954 0.0114075 0.0114197 0.0114318 0.0114439 0.0114561 0.0114682 0.0114803 0.0114924 0.0115046 0.0115167 0.0115288 0.011541 0.0115531 0.0115652 0.0115773 0.0115895 0.0116016 0.0116137 0.0116259 0.011638 0.0116501 0.0116622 +-0.00281878 -0.0025585 -0.0020097 -0.00108307 0.000104881 0.00143323 0.00283106 0.00425484 0.00566983 0.00703661 0.0082934 0.00932468 0.00995522 0.0101762 0.0102285 0.0102468 0.0102599 0.0102721 0.0102843 0.0102964 0.0103086 0.0103207 0.0103328 0.010345 0.0103571 0.0103692 0.0103814 0.0103935 0.0104056 0.0104178 0.0104299 0.010442 0.0104542 0.0104663 0.0104784 0.0104906 0.0105027 0.0105149 0.010527 0.0105391 0.0105513 0.0105634 0.0105755 0.0105877 0.0105998 0.0106119 0.0106241 0.0106362 0.0106483 0.0106605 0.0106726 0.0106847 0.0106969 0.010709 0.0107211 0.0107333 0.0107454 0.0107576 0.0107697 0.0107818 0.010794 0.0108061 0.0108182 0.0108304 0.0108425 0.0108546 0.0108668 0.0108789 0.010891 0.0109032 0.0109153 0.0109274 0.0109396 0.0109517 0.0109638 0.010976 0.0109881 0.0110003 0.0110124 0.0110245 0.0110367 0.0110488 0.0110609 0.0110731 0.0110852 0.0110973 0.0111095 0.0111216 0.0111337 0.0111459 0.011158 0.0111701 0.0111823 0.0111944 0.0112065 0.0112187 0.0112308 0.0112429 0.0112551 0.0112672 0.0112794 0.0112915 0.0113036 0.0113158 0.0113279 0.01134 0.0113522 0.0113643 0.0113764 0.0113886 0.0114007 0.0114128 0.011425 0.0114371 0.0114492 0.0114614 0.0114735 0.0114856 0.0114978 0.0115099 0.0115221 0.0115342 0.0115463 0.0115585 0.0115706 0.0115827 0.0115949 0.011607 0.0116191 0.0116313 0.0116434 0.0116555 0.0116677 +-0.00282028 -0.0025597 -0.00201037 -0.00108328 0.000104968 0.00143351 0.0028315 0.00425544 0.00567063 0.00703769 0.00829496 0.00932711 0.00995891 0.0101807 0.0102332 0.0102515 0.0102646 0.0102769 0.010289 0.0103012 0.0103133 0.0103255 0.0103376 0.0103497 0.0103619 0.010374 0.0103862 0.0103983 0.0104105 0.0104226 0.0104347 0.0104469 0.010459 0.0104712 0.0104833 0.0104954 0.0105076 0.0105197 0.0105319 0.010544 0.0105561 0.0105683 0.0105804 0.0105926 0.0106047 0.0106168 0.010629 0.0106411 0.0106533 0.0106654 0.0106775 0.0106897 0.0107018 0.010714 0.0107261 0.0107383 0.0107504 0.0107625 0.0107747 0.0107868 0.010799 0.0108111 0.0108232 0.0108354 0.0108475 0.0108597 0.0108718 0.0108839 0.0108961 0.0109082 0.0109204 0.0109325 0.0109446 0.0109568 0.0109689 0.0109811 0.0109932 0.0110053 0.0110175 0.0110296 0.0110418 0.0110539 0.0110661 0.0110782 0.0110903 0.0111025 0.0111146 0.0111268 0.0111389 0.011151 0.0111632 0.0111753 0.0111875 0.0111996 0.0112117 0.0112239 0.011236 0.0112482 0.0112603 0.0112724 0.0112846 0.0112967 0.0113089 0.011321 0.0113331 0.0113453 0.0113574 0.0113696 0.0113817 0.0113939 0.011406 0.0114181 0.0114303 0.0114424 0.0114546 0.0114667 0.0114788 0.011491 0.0115031 0.0115153 0.0115274 0.0115395 0.0115517 0.0115638 0.011576 0.0115881 0.0116002 0.0116124 0.0116245 0.0116367 0.0116488 0.0116609 0.0116731 +-0.00282179 -0.0025609 -0.00201104 -0.00108348 0.000105055 0.00143379 0.00283195 0.00425604 0.00567143 0.00703877 0.00829652 0.00932953 0.0099626 0.0101851 0.0102379 0.0102563 0.0102693 0.0102816 0.0102938 0.0103059 0.0103181 0.0103302 0.0103424 0.0103545 0.0103667 0.0103788 0.010391 0.0104031 0.0104153 0.0104274 0.0104396 0.0104517 0.0104638 0.010476 0.0104881 0.0105003 0.0105124 0.0105246 0.0105367 0.0105489 0.010561 0.0105732 0.0105853 0.0105975 0.0106096 0.0106218 0.0106339 0.010646 0.0106582 0.0106703 0.0106825 0.0106946 0.0107068 0.0107189 0.0107311 0.0107432 0.0107554 0.0107675 0.0107797 0.0107918 0.010804 0.0108161 0.0108282 0.0108404 0.0108525 0.0108647 0.0108768 0.010889 0.0109011 0.0109133 0.0109254 0.0109376 0.0109497 0.0109619 0.010974 0.0109862 0.0109983 0.0110104 0.0110226 0.0110347 0.0110469 0.011059 0.0110712 0.0110833 0.0110955 0.0111076 0.0111198 0.0111319 0.0111441 0.0111562 0.0111683 0.0111805 0.0111926 0.0112048 0.0112169 0.0112291 0.0112412 0.0112534 0.0112655 0.0112777 0.0112898 0.011302 0.0113141 0.0113263 0.0113384 0.0113505 0.0113627 0.0113748 0.011387 0.0113991 0.0114113 0.0114234 0.0114356 0.0114477 0.0114599 0.011472 0.0114842 0.0114963 0.0115085 0.0115206 0.0115327 0.0115449 0.011557 0.0115692 0.0115813 0.0115935 0.0116056 0.0116178 0.0116299 0.0116421 0.0116542 0.0116664 0.0116785 +-0.00282329 -0.0025621 -0.00201171 -0.00108369 0.000105142 0.00143408 0.00283239 0.00425664 0.00567223 0.00703985 0.00829807 0.00933196 0.00996628 0.0101896 0.0102425 0.010261 0.0102741 0.0102864 0.0102985 0.0103107 0.0103228 0.010335 0.0103472 0.0103593 0.0103715 0.0103836 0.0103958 0.0104079 0.0104201 0.0104322 0.0104444 0.0104565 0.0104687 0.0104808 0.010493 0.0105051 0.0105173 0.0105294 0.0105416 0.0105537 0.0105659 0.0105781 0.0105902 0.0106024 0.0106145 0.0106267 0.0106388 0.010651 0.0106631 0.0106753 0.0106874 0.0106996 0.0107117 0.0107239 0.010736 0.0107482 0.0107603 0.0107725 0.0107846 0.0107968 0.0108089 0.0108211 0.0108333 0.0108454 0.0108576 0.0108697 0.0108819 0.010894 0.0109062 0.0109183 0.0109305 0.0109426 0.0109548 0.0109669 0.0109791 0.0109912 0.0110034 0.0110155 0.0110277 0.0110398 0.011052 0.0110641 0.0110763 0.0110885 0.0111006 0.0111128 0.0111249 0.0111371 0.0111492 0.0111614 0.0111735 0.0111857 0.0111978 0.01121 0.0112221 0.0112343 0.0112464 0.0112586 0.0112707 0.0112829 0.011295 0.0113072 0.0113193 0.0113315 0.0113437 0.0113558 0.011368 0.0113801 0.0113923 0.0114044 0.0114166 0.0114287 0.0114409 0.011453 0.0114652 0.0114773 0.0114895 0.0115016 0.0115138 0.0115259 0.0115381 0.0115502 0.0115624 0.0115745 0.0115867 0.0115989 0.011611 0.0116232 0.0116353 0.0116475 0.0116596 0.0116718 0.0116839 +-0.00282479 -0.0025633 -0.00201237 -0.00108389 0.000105229 0.00143436 0.00283283 0.00425725 0.00567302 0.00704093 0.00829963 0.00933437 0.00996996 0.0101941 0.0102472 0.0102657 0.0102788 0.0102911 0.0103033 0.0103155 0.0103276 0.0103398 0.0103519 0.0103641 0.0103762 0.0103884 0.0104006 0.0104127 0.0104249 0.010437 0.0104492 0.0104614 0.0104735 0.0104857 0.0104978 0.01051 0.0105221 0.0105343 0.0105465 0.0105586 0.0105708 0.0105829 0.0105951 0.0106072 0.0106194 0.0106316 0.0106437 0.0106559 0.010668 0.0106802 0.0106924 0.0107045 0.0107167 0.0107288 0.010741 0.0107531 0.0107653 0.0107775 0.0107896 0.0108018 0.0108139 0.0108261 0.0108383 0.0108504 0.0108626 0.0108747 0.0108869 0.010899 0.0109112 0.0109234 0.0109355 0.0109477 0.0109598 0.010972 0.0109842 0.0109963 0.0110085 0.0110206 0.0110328 0.0110449 0.0110571 0.0110693 0.0110814 0.0110936 0.0111057 0.0111179 0.0111301 0.0111422 0.0111544 0.0111665 0.0111787 0.0111908 0.011203 0.0112152 0.0112273 0.0112395 0.0112516 0.0112638 0.011276 0.0112881 0.0113003 0.0113124 0.0113246 0.0113367 0.0113489 0.0113611 0.0113732 0.0113854 0.0113975 0.0114097 0.0114219 0.011434 0.0114462 0.0114583 0.0114705 0.0114826 0.0114948 0.011507 0.0115191 0.0115313 0.0115434 0.0115556 0.0115678 0.0115799 0.0115921 0.0116042 0.0116164 0.0116285 0.0116407 0.0116529 0.011665 0.0116772 0.0116893 +-0.0028263 -0.0025645 -0.00201304 -0.0010841 0.000105316 0.00143464 0.00283327 0.00425785 0.00567382 0.00704201 0.00830118 0.00933679 0.00997363 0.0101986 0.0102519 0.0102704 0.0102835 0.0102959 0.010308 0.0103202 0.0103324 0.0103445 0.0103567 0.0103689 0.010381 0.0103932 0.0104054 0.0104175 0.0104297 0.0104418 0.010454 0.0104662 0.0104783 0.0104905 0.0105027 0.0105148 0.010527 0.0105392 0.0105513 0.0105635 0.0105757 0.0105878 0.0106 0.0106121 0.0106243 0.0106365 0.0106486 0.0106608 0.010673 0.0106851 0.0106973 0.0107095 0.0107216 0.0107338 0.0107459 0.0107581 0.0107703 0.0107824 0.0107946 0.0108068 0.0108189 0.0108311 0.0108433 0.0108554 0.0108676 0.0108798 0.0108919 0.0109041 0.0109162 0.0109284 0.0109406 0.0109527 0.0109649 0.0109771 0.0109892 0.0110014 0.0110136 0.0110257 0.0110379 0.0110501 0.0110622 0.0110744 0.0110865 0.0110987 0.0111109 0.011123 0.0111352 0.0111474 0.0111595 0.0111717 0.0111839 0.011196 0.0112082 0.0112203 0.0112325 0.0112447 0.0112568 0.011269 0.0112812 0.0112933 0.0113055 0.0113177 0.0113298 0.011342 0.0113542 0.0113663 0.0113785 0.0113906 0.0114028 0.011415 0.0114271 0.0114393 0.0114515 0.0114636 0.0114758 0.011488 0.0115001 0.0115123 0.0115244 0.0115366 0.0115488 0.0115609 0.0115731 0.0115853 0.0115974 0.0116096 0.0116218 0.0116339 0.0116461 0.0116583 0.0116704 0.0116826 0.0116947 +-0.0028278 -0.0025657 -0.00201371 -0.0010843 0.000105403 0.00143492 0.00283371 0.00425845 0.00567462 0.00704309 0.00830273 0.0093392 0.0099773 0.0102031 0.0102566 0.0102752 0.0102883 0.0103006 0.0103128 0.010325 0.0103371 0.0103493 0.0103615 0.0103736 0.0103858 0.010398 0.0104101 0.0104223 0.0104345 0.0104467 0.0104588 0.010471 0.0104832 0.0104953 0.0105075 0.0105197 0.0105318 0.010544 0.0105562 0.0105684 0.0105805 0.0105927 0.0106049 0.010617 0.0106292 0.0106414 0.0106535 0.0106657 0.0106779 0.0106901 0.0107022 0.0107144 0.0107266 0.0107387 0.0107509 0.0107631 0.0107752 0.0107874 0.0107996 0.0108118 0.0108239 0.0108361 0.0108483 0.0108604 0.0108726 0.0108848 0.0108969 0.0109091 0.0109213 0.0109335 0.0109456 0.0109578 0.01097 0.0109821 0.0109943 0.0110065 0.0110186 0.0110308 0.011043 0.0110552 0.0110673 0.0110795 0.0110917 0.0111038 0.011116 0.0111282 0.0111403 0.0111525 0.0111647 0.0111769 0.011189 0.0112012 0.0112134 0.0112255 0.0112377 0.0112499 0.011262 0.0112742 0.0112864 0.0112985 0.0113107 0.0113229 0.0113351 0.0113472 0.0113594 0.0113716 0.0113837 0.0113959 0.0114081 0.0114202 0.0114324 0.0114446 0.0114568 0.0114689 0.0114811 0.0114933 0.0115054 0.0115176 0.0115298 0.0115419 0.0115541 0.0115663 0.0115785 0.0115906 0.0116028 0.011615 0.0116271 0.0116393 0.0116515 0.0116636 0.0116758 0.011688 0.0117002 +-0.0028293 -0.0025669 -0.00201438 -0.00108451 0.00010549 0.0014352 0.00283415 0.00425905 0.00567541 0.00704417 0.00830428 0.0093416 0.00998097 0.0102076 0.0102613 0.0102799 0.010293 0.0103053 0.0103175 0.0103297 0.0103419 0.0103541 0.0103662 0.0103784 0.0103906 0.0104028 0.0104149 0.0104271 0.0104393 0.0104515 0.0104636 0.0104758 0.010488 0.0105002 0.0105123 0.0105245 0.0105367 0.0105489 0.010561 0.0105732 0.0105854 0.0105976 0.0106097 0.0106219 0.0106341 0.0106463 0.0106585 0.0106706 0.0106828 0.010695 0.0107072 0.0107193 0.0107315 0.0107437 0.0107559 0.010768 0.0107802 0.0107924 0.0108046 0.0108167 0.0108289 0.0108411 0.0108533 0.0108654 0.0108776 0.0108898 0.010902 0.0109141 0.0109263 0.0109385 0.0109507 0.0109628 0.010975 0.0109872 0.0109994 0.0110115 0.0110237 0.0110359 0.0110481 0.0110603 0.0110724 0.0110846 0.0110968 0.011109 0.0111211 0.0111333 0.0111455 0.0111577 0.0111698 0.011182 0.0111942 0.0112064 0.0112185 0.0112307 0.0112429 0.0112551 0.0112672 0.0112794 0.0112916 0.0113038 0.0113159 0.0113281 0.0113403 0.0113525 0.0113646 0.0113768 0.011389 0.0114012 0.0114133 0.0114255 0.0114377 0.0114499 0.011462 0.0114742 0.0114864 0.0114986 0.0115108 0.0115229 0.0115351 0.0115473 0.0115595 0.0115716 0.0115838 0.011596 0.0116082 0.0116203 0.0116325 0.0116447 0.0116569 0.011669 0.0116812 0.0116934 0.0117056 +-0.0028308 -0.00256809 -0.00201504 -0.00108471 0.000105577 0.00143549 0.00283459 0.00425965 0.00567621 0.00704525 0.00830583 0.00934401 0.00998463 0.010212 0.010266 0.0102846 0.0102977 0.0103101 0.0103223 0.0103345 0.0103466 0.0103588 0.010371 0.0103832 0.0103954 0.0104075 0.0104197 0.0104319 0.0104441 0.0104563 0.0104685 0.0104806 0.0104928 0.010505 0.0105172 0.0105294 0.0105415 0.0105537 0.0105659 0.0105781 0.0105903 0.0106024 0.0106146 0.0106268 0.010639 0.0106512 0.0106634 0.0106755 0.0106877 0.0106999 0.0107121 0.0107243 0.0107364 0.0107486 0.0107608 0.010773 0.0107852 0.0107974 0.0108095 0.0108217 0.0108339 0.0108461 0.0108583 0.0108704 0.0108826 0.0108948 0.010907 0.0109192 0.0109314 0.0109435 0.0109557 0.0109679 0.0109801 0.0109923 0.0110044 0.0110166 0.0110288 0.011041 0.0110532 0.0110653 0.0110775 0.0110897 0.0111019 0.0111141 0.0111263 0.0111384 0.0111506 0.0111628 0.011175 0.0111872 0.0111993 0.0112115 0.0112237 0.0112359 0.0112481 0.0112603 0.0112724 0.0112846 0.0112968 0.011309 0.0113212 0.0113333 0.0113455 0.0113577 0.0113699 0.0113821 0.0113942 0.0114064 0.0114186 0.0114308 0.011443 0.0114552 0.0114673 0.0114795 0.0114917 0.0115039 0.0115161 0.0115282 0.0115404 0.0115526 0.0115648 0.011577 0.0115892 0.0116013 0.0116135 0.0116257 0.0116379 0.0116501 0.0116622 0.0116744 0.0116866 0.0116988 0.011711 +-0.0028323 -0.00256929 -0.00201571 -0.00108491 0.000105664 0.00143577 0.00283503 0.00426025 0.005677 0.00704632 0.00830737 0.00934641 0.00998828 0.0102165 0.0102706 0.0102893 0.0103025 0.0103148 0.010327 0.0103392 0.0103514 0.0103636 0.0103758 0.0103879 0.0104001 0.0104123 0.0104245 0.0104367 0.0104489 0.0104611 0.0104733 0.0104854 0.0104976 0.0105098 0.010522 0.0105342 0.0105464 0.0105586 0.0105708 0.0105829 0.0105951 0.0106073 0.0106195 0.0106317 0.0106439 0.0106561 0.0106683 0.0106804 0.0106926 0.0107048 0.010717 0.0107292 0.0107414 0.0107536 0.0107658 0.0107779 0.0107901 0.0108023 0.0108145 0.0108267 0.0108389 0.0108511 0.0108633 0.0108754 0.0108876 0.0108998 0.010912 0.0109242 0.0109364 0.0109486 0.0109608 0.0109729 0.0109851 0.0109973 0.0110095 0.0110217 0.0110339 0.0110461 0.0110583 0.0110704 0.0110826 0.0110948 0.011107 0.0111192 0.0111314 0.0111436 0.0111558 0.0111679 0.0111801 0.0111923 0.0112045 0.0112167 0.0112289 0.0112411 0.0112533 0.0112654 0.0112776 0.0112898 0.011302 0.0113142 0.0113264 0.0113386 0.0113508 0.0113629 0.0113751 0.0113873 0.0113995 0.0114117 0.0114239 0.0114361 0.0114483 0.0114604 0.0114726 0.0114848 0.011497 0.0115092 0.0115214 0.0115336 0.0115458 0.0115579 0.0115701 0.0115823 0.0115945 0.0116067 0.0116189 0.0116311 0.0116433 0.0116554 0.0116676 0.0116798 0.011692 0.0117042 0.0117164 +-0.0028338 -0.00257048 -0.00201637 -0.00108512 0.000105751 0.00143605 0.00283547 0.00426084 0.00567779 0.00704739 0.00830892 0.0093488 0.00999194 0.010221 0.0102753 0.010294 0.0103072 0.0103195 0.0103317 0.0103439 0.0103561 0.0103683 0.0103805 0.0103927 0.0104049 0.0104171 0.0104293 0.0104415 0.0104537 0.0104659 0.0104781 0.0104903 0.0105025 0.0105147 0.0105268 0.010539 0.0105512 0.0105634 0.0105756 0.0105878 0.0106 0.0106122 0.0106244 0.0106366 0.0106488 0.010661 0.0106732 0.0106854 0.0106975 0.0107097 0.0107219 0.0107341 0.0107463 0.0107585 0.0107707 0.0107829 0.0107951 0.0108073 0.0108195 0.0108317 0.0108439 0.0108561 0.0108683 0.0108804 0.0108926 0.0109048 0.010917 0.0109292 0.0109414 0.0109536 0.0109658 0.010978 0.0109902 0.0110024 0.0110146 0.0110268 0.011039 0.0110512 0.0110633 0.0110755 0.0110877 0.0110999 0.0111121 0.0111243 0.0111365 0.0111487 0.0111609 0.0111731 0.0111853 0.0111975 0.0112097 0.0112219 0.0112341 0.0112462 0.0112584 0.0112706 0.0112828 0.011295 0.0113072 0.0113194 0.0113316 0.0113438 0.011356 0.0113682 0.0113804 0.0113926 0.0114048 0.0114169 0.0114291 0.0114413 0.0114535 0.0114657 0.0114779 0.0114901 0.0115023 0.0115145 0.0115267 0.0115389 0.0115511 0.0115633 0.0115755 0.0115877 0.0115998 0.011612 0.0116242 0.0116364 0.0116486 0.0116608 0.011673 0.0116852 0.0116974 0.0117096 0.0117218 +-0.0028353 -0.00257168 -0.00201703 -0.00108532 0.000105838 0.00143633 0.00283591 0.00426144 0.00567858 0.00704847 0.00831046 0.00935119 0.00999558 0.0102254 0.01028 0.0102988 0.0103119 0.0103243 0.0103365 0.0103487 0.0103609 0.0103731 0.0103853 0.0103975 0.0104097 0.0104219 0.0104341 0.0104463 0.0104585 0.0104707 0.0104829 0.0104951 0.0105073 0.0105195 0.0105317 0.0105439 0.0105561 0.0105683 0.0105805 0.0105927 0.0106049 0.0106171 0.0106293 0.0106415 0.0106537 0.0106659 0.0106781 0.0106903 0.0107025 0.0107147 0.0107269 0.0107391 0.0107513 0.0107635 0.0107757 0.0107879 0.0108001 0.0108123 0.0108245 0.0108367 0.0108489 0.0108611 0.0108732 0.0108854 0.0108976 0.0109098 0.010922 0.0109342 0.0109464 0.0109586 0.0109708 0.010983 0.0109952 0.0110074 0.0110196 0.0110318 0.011044 0.0110562 0.0110684 0.0110806 0.0110928 0.011105 0.0111172 0.0111294 0.0111416 0.0111538 0.011166 0.0111782 0.0111904 0.0112026 0.0112148 0.011227 0.0112392 0.0112514 0.0112636 0.0112758 0.011288 0.0113002 0.0113124 0.0113246 0.0113368 0.011349 0.0113612 0.0113734 0.0113856 0.0113978 0.01141 0.0114222 0.0114344 0.0114466 0.0114588 0.011471 0.0114832 0.0114954 0.0115076 0.0115198 0.011532 0.0115442 0.0115564 0.0115686 0.0115808 0.011593 0.0116052 0.0116174 0.0116296 0.0116418 0.011654 0.0116662 0.0116784 0.0116906 0.0117028 0.011715 0.0117272 +-0.0028368 -0.00257287 -0.0020177 -0.00108552 0.000105925 0.00143661 0.00283635 0.00426204 0.00567938 0.00704954 0.00831199 0.00935358 0.00999923 0.0102299 0.0102847 0.0103035 0.0103166 0.010329 0.0103412 0.0103534 0.0103656 0.0103778 0.01039 0.0104023 0.0104145 0.0104267 0.0104389 0.0104511 0.0104633 0.0104755 0.0104877 0.0104999 0.0105121 0.0105243 0.0105365 0.0105487 0.0105609 0.0105731 0.0105853 0.0105975 0.0106097 0.0106219 0.0106341 0.0106463 0.0106586 0.0106708 0.010683 0.0106952 0.0107074 0.0107196 0.0107318 0.010744 0.0107562 0.0107684 0.0107806 0.0107928 0.010805 0.0108172 0.0108294 0.0108416 0.0108538 0.010866 0.0108782 0.0108904 0.0109027 0.0109149 0.0109271 0.0109393 0.0109515 0.0109637 0.0109759 0.0109881 0.0110003 0.0110125 0.0110247 0.0110369 0.0110491 0.0110613 0.0110735 0.0110857 0.0110979 0.0111101 0.0111223 0.0111345 0.0111467 0.011159 0.0111712 0.0111834 0.0111956 0.0112078 0.01122 0.0112322 0.0112444 0.0112566 0.0112688 0.011281 0.0112932 0.0113054 0.0113176 0.0113298 0.011342 0.0113542 0.0113664 0.0113786 0.0113908 0.011403 0.0114153 0.0114275 0.0114397 0.0114519 0.0114641 0.0114763 0.0114885 0.0115007 0.0115129 0.0115251 0.0115373 0.0115495 0.0115617 0.0115739 0.0115861 0.0115983 0.0116105 0.0116227 0.0116349 0.0116471 0.0116594 0.0116716 0.0116838 0.011696 0.0117082 0.0117204 0.0117326 +-0.0028383 -0.00257407 -0.00201836 -0.00108572 0.000106012 0.00143689 0.00283679 0.00426264 0.00568017 0.00705061 0.00831353 0.00935597 0.0100029 0.0102344 0.0102893 0.0103082 0.0103214 0.0103337 0.010346 0.0103582 0.0103704 0.0103826 0.0103948 0.010407 0.0104192 0.0104314 0.0104436 0.0104559 0.0104681 0.0104803 0.0104925 0.0105047 0.0105169 0.0105291 0.0105413 0.0105535 0.0105658 0.010578 0.0105902 0.0106024 0.0106146 0.0106268 0.010639 0.0106512 0.0106634 0.0106757 0.0106879 0.0107001 0.0107123 0.0107245 0.0107367 0.0107489 0.0107611 0.0107733 0.0107855 0.0107978 0.01081 0.0108222 0.0108344 0.0108466 0.0108588 0.010871 0.0108832 0.0108954 0.0109077 0.0109199 0.0109321 0.0109443 0.0109565 0.0109687 0.0109809 0.0109931 0.0110053 0.0110176 0.0110298 0.011042 0.0110542 0.0110664 0.0110786 0.0110908 0.011103 0.0111152 0.0111274 0.0111397 0.0111519 0.0111641 0.0111763 0.0111885 0.0112007 0.0112129 0.0112251 0.0112373 0.0112496 0.0112618 0.011274 0.0112862 0.0112984 0.0113106 0.0113228 0.011335 0.0113472 0.0113595 0.0113717 0.0113839 0.0113961 0.0114083 0.0114205 0.0114327 0.0114449 0.0114571 0.0114693 0.0114816 0.0114938 0.011506 0.0115182 0.0115304 0.0115426 0.0115548 0.011567 0.0115792 0.0115915 0.0116037 0.0116159 0.0116281 0.0116403 0.0116525 0.0116647 0.0116769 0.0116891 0.0117013 0.0117136 0.0117258 0.011738 +-0.0028398 -0.00257526 -0.00201902 -0.00108592 0.000106099 0.00143717 0.00283722 0.00426323 0.00568096 0.00705167 0.00831507 0.00935835 0.0100065 0.0102388 0.010294 0.0103129 0.0103261 0.0103385 0.0103507 0.0103629 0.0103751 0.0103873 0.0103996 0.0104118 0.010424 0.0104362 0.0104484 0.0104606 0.0104729 0.0104851 0.0104973 0.0105095 0.0105217 0.0105339 0.0105462 0.0105584 0.0105706 0.0105828 0.010595 0.0106072 0.0106195 0.0106317 0.0106439 0.0106561 0.0106683 0.0106805 0.0106928 0.010705 0.0107172 0.0107294 0.0107416 0.0107538 0.0107661 0.0107783 0.0107905 0.0108027 0.0108149 0.0108271 0.0108394 0.0108516 0.0108638 0.010876 0.0108882 0.0109004 0.0109127 0.0109249 0.0109371 0.0109493 0.0109615 0.0109737 0.010986 0.0109982 0.0110104 0.0110226 0.0110348 0.011047 0.0110593 0.0110715 0.0110837 0.0110959 0.0111081 0.0111203 0.0111326 0.0111448 0.011157 0.0111692 0.0111814 0.0111936 0.0112059 0.0112181 0.0112303 0.0112425 0.0112547 0.0112669 0.0112792 0.0112914 0.0113036 0.0113158 0.011328 0.0113402 0.0113525 0.0113647 0.0113769 0.0113891 0.0114013 0.0114135 0.0114257 0.011438 0.0114502 0.0114624 0.0114746 0.0114868 0.011499 0.0115113 0.0115235 0.0115357 0.0115479 0.0115601 0.0115723 0.0115846 0.0115968 0.011609 0.0116212 0.0116334 0.0116456 0.0116579 0.0116701 0.0116823 0.0116945 0.0117067 0.0117189 0.0117312 0.0117434 +-0.00284129 -0.00257645 -0.00201968 -0.00108613 0.000106186 0.00143745 0.00283766 0.00426383 0.00568174 0.00705274 0.0083166 0.00936072 0.0100101 0.0102433 0.0102987 0.0103176 0.0103308 0.0103432 0.0103554 0.0103677 0.0103799 0.0103921 0.0104043 0.0104165 0.0104288 0.010441 0.0104532 0.0104654 0.0104777 0.0104899 0.0105021 0.0105143 0.0105265 0.0105388 0.010551 0.0105632 0.0105754 0.0105877 0.0105999 0.0106121 0.0106243 0.0106365 0.0106488 0.010661 0.0106732 0.0106854 0.0106977 0.0107099 0.0107221 0.0107343 0.0107465 0.0107588 0.010771 0.0107832 0.0107954 0.0108077 0.0108199 0.0108321 0.0108443 0.0108565 0.0108688 0.010881 0.0108932 0.0109054 0.0109177 0.0109299 0.0109421 0.0109543 0.0109665 0.0109788 0.010991 0.0110032 0.0110154 0.0110277 0.0110399 0.0110521 0.0110643 0.0110765 0.0110888 0.011101 0.0111132 0.0111254 0.0111377 0.0111499 0.0111621 0.0111743 0.0111865 0.0111988 0.011211 0.0112232 0.0112354 0.0112477 0.0112599 0.0112721 0.0112843 0.0112965 0.0113088 0.011321 0.0113332 0.0113454 0.0113577 0.0113699 0.0113821 0.0113943 0.0114065 0.0114188 0.011431 0.0114432 0.0114554 0.0114677 0.0114799 0.0114921 0.0115043 0.0115165 0.0115288 0.011541 0.0115532 0.0115654 0.0115777 0.0115899 0.0116021 0.0116143 0.0116265 0.0116388 0.011651 0.0116632 0.0116754 0.0116877 0.0116999 0.0117121 0.0117243 0.0117365 0.0117488 +-0.00284279 -0.00257764 -0.00202034 -0.00108633 0.000106273 0.00143773 0.0028381 0.00426442 0.00568253 0.00705381 0.00831813 0.0093631 0.0100138 0.0102477 0.0103034 0.0103223 0.0103355 0.0103479 0.0103602 0.0103724 0.0103846 0.0103968 0.0104091 0.0104213 0.0104335 0.0104458 0.010458 0.0104702 0.0104824 0.0104947 0.0105069 0.0105191 0.0105314 0.0105436 0.0105558 0.010568 0.0105803 0.0105925 0.0106047 0.010617 0.0106292 0.0106414 0.0106536 0.0106659 0.0106781 0.0106903 0.0107025 0.0107148 0.010727 0.0107392 0.0107515 0.0107637 0.0107759 0.0107881 0.0108004 0.0108126 0.0108248 0.0108371 0.0108493 0.0108615 0.0108737 0.010886 0.0108982 0.0109104 0.0109227 0.0109349 0.0109471 0.0109593 0.0109716 0.0109838 0.010996 0.0110083 0.0110205 0.0110327 0.0110449 0.0110572 0.0110694 0.0110816 0.0110938 0.0111061 0.0111183 0.0111305 0.0111428 0.011155 0.0111672 0.0111794 0.0111917 0.0112039 0.0112161 0.0112284 0.0112406 0.0112528 0.011265 0.0112773 0.0112895 0.0113017 0.011314 0.0113262 0.0113384 0.0113506 0.0113629 0.0113751 0.0113873 0.0113995 0.0114118 0.011424 0.0114362 0.0114485 0.0114607 0.0114729 0.0114851 0.0114974 0.0115096 0.0115218 0.0115341 0.0115463 0.0115585 0.0115707 0.011583 0.0115952 0.0116074 0.0116197 0.0116319 0.0116441 0.0116563 0.0116686 0.0116808 0.011693 0.0117053 0.0117175 0.0117297 0.0117419 0.0117542 +-0.00284429 -0.00257883 -0.002021 -0.00108653 0.00010636 0.00143801 0.00283854 0.00426502 0.00568332 0.00705487 0.00831966 0.00936547 0.0100174 0.0102522 0.010308 0.010327 0.0103402 0.0103526 0.0103649 0.0103771 0.0103894 0.0104016 0.0104138 0.0104261 0.0104383 0.0104505 0.0104628 0.010475 0.0104872 0.0104995 0.0105117 0.0105239 0.0105362 0.0105484 0.0105606 0.0105729 0.0105851 0.0105973 0.0106096 0.0106218 0.010634 0.0106463 0.0106585 0.0106707 0.010683 0.0106952 0.0107074 0.0107197 0.0107319 0.0107441 0.0107564 0.0107686 0.0107808 0.0107931 0.0108053 0.0108175 0.0108298 0.010842 0.0108542 0.0108665 0.0108787 0.0108909 0.0109032 0.0109154 0.0109277 0.0109399 0.0109521 0.0109644 0.0109766 0.0109888 0.0110011 0.0110133 0.0110255 0.0110378 0.01105 0.0110622 0.0110745 0.0110867 0.0110989 0.0111112 0.0111234 0.0111356 0.0111479 0.0111601 0.0111723 0.0111846 0.0111968 0.011209 0.0112213 0.0112335 0.0112457 0.011258 0.0112702 0.0112824 0.0112947 0.0113069 0.0113191 0.0113314 0.0113436 0.0113558 0.0113681 0.0113803 0.0113925 0.0114048 0.011417 0.0114292 0.0114415 0.0114537 0.0114659 0.0114782 0.0114904 0.0115026 0.0115149 0.0115271 0.0115393 0.0115516 0.0115638 0.011576 0.0115883 0.0116005 0.0116127 0.011625 0.0116372 0.0116495 0.0116617 0.0116739 0.0116862 0.0116984 0.0117106 0.0117229 0.0117351 0.0117473 0.0117596 +-0.00284578 -0.00258002 -0.00202166 -0.00108673 0.000106447 0.00143829 0.00283897 0.00426561 0.00568411 0.00705594 0.00832118 0.00936783 0.010021 0.0102566 0.0103127 0.0103317 0.010345 0.0103574 0.0103696 0.0103819 0.0103941 0.0104063 0.0104186 0.0104308 0.0104431 0.0104553 0.0104675 0.0104798 0.010492 0.0105043 0.0105165 0.0105287 0.010541 0.0105532 0.0105655 0.0105777 0.0105899 0.0106022 0.0106144 0.0106267 0.0106389 0.0106511 0.0106634 0.0106756 0.0106879 0.0107001 0.0107123 0.0107246 0.0107368 0.010749 0.0107613 0.0107735 0.0107858 0.010798 0.0108102 0.0108225 0.0108347 0.010847 0.0108592 0.0108714 0.0108837 0.0108959 0.0109082 0.0109204 0.0109326 0.0109449 0.0109571 0.0109694 0.0109816 0.0109938 0.0110061 0.0110183 0.0110306 0.0110428 0.011055 0.0110673 0.0110795 0.0110918 0.011104 0.0111162 0.0111285 0.0111407 0.011153 0.0111652 0.0111774 0.0111897 0.0112019 0.0112142 0.0112264 0.0112386 0.0112509 0.0112631 0.0112754 0.0112876 0.0112998 0.0113121 0.0113243 0.0113366 0.0113488 0.011361 0.0113733 0.0113855 0.0113978 0.01141 0.0114222 0.0114345 0.0114467 0.011459 0.0114712 0.0114834 0.0114957 0.0115079 0.0115202 0.0115324 0.0115446 0.0115569 0.0115691 0.0115814 0.0115936 0.0116058 0.0116181 0.0116303 0.0116425 0.0116548 0.011667 0.0116793 0.0116915 0.0117037 0.011716 0.0117282 0.0117405 0.0117527 0.0117649 +-0.00284728 -0.00258121 -0.00202232 -0.00108693 0.000106534 0.00143857 0.00283941 0.00426621 0.00568489 0.007057 0.00832271 0.0093702 0.0100246 0.0102611 0.0103173 0.0103364 0.0103497 0.0103621 0.0103743 0.0103866 0.0103988 0.0104111 0.0104233 0.0104356 0.0104478 0.0104601 0.0104723 0.0104846 0.0104968 0.010509 0.0105213 0.0105335 0.0105458 0.010558 0.0105703 0.0105825 0.0105948 0.010607 0.0106193 0.0106315 0.0106437 0.010656 0.0106682 0.0106805 0.0106927 0.010705 0.0107172 0.0107295 0.0107417 0.010754 0.0107662 0.0107784 0.0107907 0.0108029 0.0108152 0.0108274 0.0108397 0.0108519 0.0108642 0.0108764 0.0108887 0.0109009 0.0109131 0.0109254 0.0109376 0.0109499 0.0109621 0.0109744 0.0109866 0.0109989 0.0110111 0.0110234 0.0110356 0.0110478 0.0110601 0.0110723 0.0110846 0.0110968 0.0111091 0.0111213 0.0111336 0.0111458 0.0111581 0.0111703 0.0111826 0.0111948 0.011207 0.0112193 0.0112315 0.0112438 0.011256 0.0112683 0.0112805 0.0112928 0.011305 0.0113173 0.0113295 0.0113417 0.011354 0.0113662 0.0113785 0.0113907 0.011403 0.0114152 0.0114275 0.0114397 0.011452 0.0114642 0.0114764 0.0114887 0.0115009 0.0115132 0.0115254 0.0115377 0.0115499 0.0115622 0.0115744 0.0115867 0.0115989 0.0116111 0.0116234 0.0116356 0.0116479 0.0116601 0.0116724 0.0116846 0.0116969 0.0117091 0.0117214 0.0117336 0.0117458 0.0117581 0.0117703 +-0.00284877 -0.0025824 -0.00202298 -0.00108713 0.000106621 0.00143885 0.00283985 0.0042668 0.00568568 0.00705806 0.00832423 0.00937256 0.0100282 0.0102655 0.010322 0.0103411 0.0103544 0.0103668 0.0103791 0.0103913 0.0104036 0.0104158 0.0104281 0.0104403 0.0104526 0.0104648 0.0104771 0.0104893 0.0105016 0.0105138 0.0105261 0.0105383 0.0105506 0.0105628 0.0105751 0.0105873 0.0105996 0.0106118 0.0106241 0.0106363 0.0106486 0.0106608 0.0106731 0.0106854 0.0106976 0.0107099 0.0107221 0.0107344 0.0107466 0.0107589 0.0107711 0.0107834 0.0107956 0.0108079 0.0108201 0.0108324 0.0108446 0.0108569 0.0108691 0.0108814 0.0108936 0.0109059 0.0109181 0.0109304 0.0109426 0.0109549 0.0109671 0.0109794 0.0109916 0.0110039 0.0110161 0.0110284 0.0110406 0.0110529 0.0110651 0.0110774 0.0110896 0.0111019 0.0111142 0.0111264 0.0111387 0.0111509 0.0111632 0.0111754 0.0111877 0.0111999 0.0112122 0.0112244 0.0112367 0.0112489 0.0112612 0.0112734 0.0112857 0.0112979 0.0113102 0.0113224 0.0113347 0.0113469 0.0113592 0.0113714 0.0113837 0.0113959 0.0114082 0.0114204 0.0114327 0.0114449 0.0114572 0.0114694 0.0114817 0.0114939 0.0115062 0.0115184 0.0115307 0.0115429 0.0115552 0.0115674 0.0115797 0.011592 0.0116042 0.0116165 0.0116287 0.011641 0.0116532 0.0116655 0.0116777 0.01169 0.0117022 0.0117145 0.0117267 0.011739 0.0117512 0.0117635 0.0117757 +-0.00285027 -0.00258358 -0.00202364 -0.00108733 0.000106708 0.00143913 0.00284028 0.00426739 0.00568646 0.00705912 0.00832575 0.00937491 0.0100318 0.01027 0.0103267 0.0103458 0.0103591 0.0103715 0.0103838 0.010396 0.0104083 0.0104206 0.0104328 0.0104451 0.0104573 0.0104696 0.0104818 0.0104941 0.0105064 0.0105186 0.0105309 0.0105431 0.0105554 0.0105676 0.0105799 0.0105922 0.0106044 0.0106167 0.0106289 0.0106412 0.0106534 0.0106657 0.010678 0.0106902 0.0107025 0.0107147 0.010727 0.0107392 0.0107515 0.0107638 0.010776 0.0107883 0.0108005 0.0108128 0.0108251 0.0108373 0.0108496 0.0108618 0.0108741 0.0108863 0.0108986 0.0109109 0.0109231 0.0109354 0.0109476 0.0109599 0.0109721 0.0109844 0.0109967 0.0110089 0.0110212 0.0110334 0.0110457 0.0110579 0.0110702 0.0110825 0.0110947 0.011107 0.0111192 0.0111315 0.0111437 0.011156 0.0111683 0.0111805 0.0111928 0.011205 0.0112173 0.0112295 0.0112418 0.0112541 0.0112663 0.0112786 0.0112908 0.0113031 0.0113153 0.0113276 0.0113399 0.0113521 0.0113644 0.0113766 0.0113889 0.0114011 0.0114134 0.0114256 0.0114379 0.0114502 0.0114624 0.0114747 0.0114869 0.0114992 0.0115115 0.0115237 0.011536 0.0115482 0.0115605 0.0115727 0.011585 0.0115973 0.0116095 0.0116218 0.011634 0.0116463 0.0116585 0.0116708 0.0116831 0.0116953 0.0117076 0.0117198 0.0117321 0.0117443 0.0117566 0.0117689 0.0117811 +-0.00285176 -0.00258477 -0.00202429 -0.00108753 0.000106795 0.00143941 0.00284072 0.00426799 0.00568725 0.00706018 0.00832727 0.00937727 0.0100354 0.0102744 0.0103313 0.0103505 0.0103638 0.0103762 0.0103885 0.0104008 0.010413 0.0104253 0.0104376 0.0104498 0.0104621 0.0104744 0.0104866 0.0104989 0.0105111 0.0105234 0.0105357 0.0105479 0.0105602 0.0105725 0.0105847 0.010597 0.0106092 0.0106215 0.0106338 0.010646 0.0106583 0.0106706 0.0106828 0.0106951 0.0107074 0.0107196 0.0107319 0.0107441 0.0107564 0.0107687 0.0107809 0.0107932 0.0108055 0.0108177 0.01083 0.0108422 0.0108545 0.0108668 0.010879 0.0108913 0.0109036 0.0109158 0.0109281 0.0109403 0.0109526 0.0109649 0.0109771 0.0109894 0.0110017 0.0110139 0.0110262 0.0110385 0.0110507 0.011063 0.0110752 0.0110875 0.0110998 0.011112 0.0111243 0.0111366 0.0111488 0.0111611 0.0111733 0.0111856 0.0111979 0.0112101 0.0112224 0.0112347 0.0112469 0.0112592 0.0112714 0.0112837 0.011296 0.0113082 0.0113205 0.0113328 0.011345 0.0113573 0.0113696 0.0113818 0.0113941 0.0114063 0.0114186 0.0114309 0.0114431 0.0114554 0.0114677 0.0114799 0.0114922 0.0115044 0.0115167 0.011529 0.0115412 0.0115535 0.0115658 0.011578 0.0115903 0.0116025 0.0116148 0.0116271 0.0116393 0.0116516 0.0116639 0.0116761 0.0116884 0.0117007 0.0117129 0.0117252 0.0117374 0.0117497 0.011762 0.0117742 0.0117865 +-0.00285326 -0.00258595 -0.00202495 -0.00108773 0.000106882 0.00143969 0.00284115 0.00426858 0.00568803 0.00706124 0.00832878 0.00937961 0.010039 0.0102788 0.010336 0.0103552 0.0103685 0.0103809 0.0103932 0.0104055 0.0104178 0.01043 0.0104423 0.0104546 0.0104668 0.0104791 0.0104914 0.0105037 0.0105159 0.0105282 0.0105405 0.0105527 0.010565 0.0105773 0.0105895 0.0106018 0.0106141 0.0106263 0.0106386 0.0106509 0.0106631 0.0106754 0.0106877 0.0107 0.0107122 0.0107245 0.0107368 0.010749 0.0107613 0.0107736 0.0107858 0.0107981 0.0108104 0.0108226 0.0108349 0.0108472 0.0108594 0.0108717 0.010884 0.0108963 0.0109085 0.0109208 0.0109331 0.0109453 0.0109576 0.0109699 0.0109821 0.0109944 0.0110067 0.0110189 0.0110312 0.0110435 0.0110557 0.011068 0.0110803 0.0110926 0.0111048 0.0111171 0.0111294 0.0111416 0.0111539 0.0111662 0.0111784 0.0111907 0.011203 0.0112152 0.0112275 0.0112398 0.011252 0.0112643 0.0112766 0.0112889 0.0113011 0.0113134 0.0113257 0.0113379 0.0113502 0.0113625 0.0113747 0.011387 0.0113993 0.0114115 0.0114238 0.0114361 0.0114483 0.0114606 0.0114729 0.0114852 0.0114974 0.0115097 0.011522 0.0115342 0.0115465 0.0115588 0.011571 0.0115833 0.0115956 0.0116078 0.0116201 0.0116324 0.0116446 0.0116569 0.0116692 0.0116815 0.0116937 0.011706 0.0117183 0.0117305 0.0117428 0.0117551 0.0117673 0.0117796 0.0117919 +-0.00285475 -0.00258714 -0.0020256 -0.00108793 0.000106969 0.00143997 0.00284159 0.00426917 0.00568881 0.0070623 0.0083303 0.00938196 0.0100426 0.0102833 0.0103406 0.0103599 0.0103732 0.0103857 0.0103979 0.0104102 0.0104225 0.0104348 0.0104471 0.0104593 0.0104716 0.0104839 0.0104962 0.0105084 0.0105207 0.010533 0.0105452 0.0105575 0.0105698 0.0105821 0.0105943 0.0106066 0.0106189 0.0106312 0.0106434 0.0106557 0.010668 0.0106803 0.0106925 0.0107048 0.0107171 0.0107294 0.0107416 0.0107539 0.0107662 0.0107785 0.0107907 0.010803 0.0108153 0.0108276 0.0108398 0.0108521 0.0108644 0.0108767 0.0108889 0.0109012 0.0109135 0.0109258 0.010938 0.0109503 0.0109626 0.0109749 0.0109871 0.0109994 0.0110117 0.011024 0.0110362 0.0110485 0.0110608 0.0110731 0.0110853 0.0110976 0.0111099 0.0111222 0.0111344 0.0111467 0.011159 0.0111713 0.0111835 0.0111958 0.0112081 0.0112204 0.0112326 0.0112449 0.0112572 0.0112694 0.0112817 0.011294 0.0113063 0.0113185 0.0113308 0.0113431 0.0113554 0.0113676 0.0113799 0.0113922 0.0114045 0.0114167 0.011429 0.0114413 0.0114536 0.0114658 0.0114781 0.0114904 0.0115027 0.0115149 0.0115272 0.0115395 0.0115518 0.011564 0.0115763 0.0115886 0.0116009 0.0116131 0.0116254 0.0116377 0.01165 0.0116622 0.0116745 0.0116868 0.0116991 0.0117113 0.0117236 0.0117359 0.0117482 0.0117604 0.0117727 0.011785 0.0117973 +-0.00285624 -0.00258832 -0.00202626 -0.00108813 0.000107056 0.00144025 0.00284202 0.00426976 0.00568959 0.00706335 0.00833181 0.0093843 0.0100462 0.0102877 0.0103453 0.0103646 0.0103779 0.0103904 0.0104027 0.010415 0.0104272 0.0104395 0.0104518 0.0104641 0.0104764 0.0104886 0.0105009 0.0105132 0.0105255 0.0105378 0.01055 0.0105623 0.0105746 0.0105869 0.0105992 0.0106114 0.0106237 0.010636 0.0106483 0.0106606 0.0106728 0.0106851 0.0106974 0.0107097 0.010722 0.0107342 0.0107465 0.0107588 0.0107711 0.0107834 0.0107956 0.0108079 0.0108202 0.0108325 0.0108448 0.010857 0.0108693 0.0108816 0.0108939 0.0109062 0.0109184 0.0109307 0.010943 0.0109553 0.0109676 0.0109798 0.0109921 0.0110044 0.0110167 0.011029 0.0110413 0.0110535 0.0110658 0.0110781 0.0110904 0.0111027 0.0111149 0.0111272 0.0111395 0.0111518 0.0111641 0.0111763 0.0111886 0.0112009 0.0112132 0.0112255 0.0112377 0.01125 0.0112623 0.0112746 0.0112869 0.0112991 0.0113114 0.0113237 0.011336 0.0113483 0.0113605 0.0113728 0.0113851 0.0113974 0.0114097 0.0114219 0.0114342 0.0114465 0.0114588 0.0114711 0.0114833 0.0114956 0.0115079 0.0115202 0.0115325 0.0115447 0.011557 0.0115693 0.0115816 0.0115939 0.0116061 0.0116184 0.0116307 0.011643 0.0116553 0.0116675 0.0116798 0.0116921 0.0117044 0.0117167 0.011729 0.0117412 0.0117535 0.0117658 0.0117781 0.0117904 0.0118026 +-0.00285773 -0.00258951 -0.00202691 -0.00108832 0.000107143 0.00144053 0.00284246 0.00427035 0.00569037 0.00706441 0.00833332 0.00938664 0.0100498 0.0102921 0.0103499 0.0103693 0.0103826 0.0103951 0.0104074 0.0104197 0.010432 0.0104442 0.0104565 0.0104688 0.0104811 0.0104934 0.0105057 0.010518 0.0105302 0.0105425 0.0105548 0.0105671 0.0105794 0.0105917 0.010604 0.0106163 0.0106285 0.0106408 0.0106531 0.0106654 0.0106777 0.01069 0.0107023 0.0107145 0.0107268 0.0107391 0.0107514 0.0107637 0.010776 0.0107883 0.0108005 0.0108128 0.0108251 0.0108374 0.0108497 0.010862 0.0108743 0.0108865 0.0108988 0.0109111 0.0109234 0.0109357 0.010948 0.0109603 0.0109726 0.0109848 0.0109971 0.0110094 0.0110217 0.011034 0.0110463 0.0110586 0.0110708 0.0110831 0.0110954 0.0111077 0.01112 0.0111323 0.0111446 0.0111568 0.0111691 0.0111814 0.0111937 0.011206 0.0112183 0.0112306 0.0112428 0.0112551 0.0112674 0.0112797 0.011292 0.0113043 0.0113166 0.0113289 0.0113411 0.0113534 0.0113657 0.011378 0.0113903 0.0114026 0.0114149 0.0114271 0.0114394 0.0114517 0.011464 0.0114763 0.0114886 0.0115009 0.0115131 0.0115254 0.0115377 0.01155 0.0115623 0.0115746 0.0115869 0.0115991 0.0116114 0.0116237 0.011636 0.0116483 0.0116606 0.0116729 0.0116851 0.0116974 0.0117097 0.011722 0.0117343 0.0117466 0.0117589 0.0117712 0.0117834 0.0117957 0.011808 +-0.00285923 -0.00259069 -0.00202757 -0.00108852 0.00010723 0.0014408 0.00284289 0.00427094 0.00569115 0.00706546 0.00833483 0.00938897 0.0100534 0.0102966 0.0103546 0.010374 0.0103873 0.0103998 0.0104121 0.0104244 0.0104367 0.010449 0.0104613 0.0104736 0.0104859 0.0104981 0.0105104 0.0105227 0.010535 0.0105473 0.0105596 0.0105719 0.0105842 0.0105965 0.0106088 0.0106211 0.0106334 0.0106457 0.0106579 0.0106702 0.0106825 0.0106948 0.0107071 0.0107194 0.0107317 0.010744 0.0107563 0.0107686 0.0107809 0.0107932 0.0108054 0.0108177 0.01083 0.0108423 0.0108546 0.0108669 0.0108792 0.0108915 0.0109038 0.0109161 0.0109284 0.0109407 0.0109529 0.0109652 0.0109775 0.0109898 0.0110021 0.0110144 0.0110267 0.011039 0.0110513 0.0110636 0.0110759 0.0110882 0.0111005 0.0111127 0.011125 0.0111373 0.0111496 0.0111619 0.0111742 0.0111865 0.0111988 0.0112111 0.0112234 0.0112357 0.011248 0.0112602 0.0112725 0.0112848 0.0112971 0.0113094 0.0113217 0.011334 0.0113463 0.0113586 0.0113709 0.0113832 0.0113955 0.0114078 0.01142 0.0114323 0.0114446 0.0114569 0.0114692 0.0114815 0.0114938 0.0115061 0.0115184 0.0115307 0.011543 0.0115553 0.0115675 0.0115798 0.0115921 0.0116044 0.0116167 0.011629 0.0116413 0.0116536 0.0116659 0.0116782 0.0116905 0.0117028 0.011715 0.0117273 0.0117396 0.0117519 0.0117642 0.0117765 0.0117888 0.0118011 0.0118134 +-0.00286072 -0.00259187 -0.00202822 -0.00108872 0.000107317 0.00144108 0.00284332 0.00427153 0.00569193 0.00706651 0.00833633 0.0093913 0.0100569 0.010301 0.0103592 0.0103787 0.010392 0.0104045 0.0104168 0.0104291 0.0104414 0.0104537 0.010466 0.0104783 0.0104906 0.0105029 0.0105152 0.0105275 0.0105398 0.0105521 0.0105644 0.0105767 0.010589 0.0106013 0.0106136 0.0106259 0.0106382 0.0106505 0.0106628 0.0106751 0.0106874 0.0106997 0.010712 0.0107243 0.0107366 0.0107489 0.0107612 0.0107735 0.0107857 0.010798 0.0108103 0.0108226 0.0108349 0.0108472 0.0108595 0.0108718 0.0108841 0.0108964 0.0109087 0.010921 0.0109333 0.0109456 0.0109579 0.0109702 0.0109825 0.0109948 0.0110071 0.0110194 0.0110317 0.011044 0.0110563 0.0110686 0.0110809 0.0110932 0.0111055 0.0111178 0.0111301 0.0111424 0.0111547 0.011167 0.0111793 0.0111916 0.0112039 0.0112162 0.0112285 0.0112408 0.0112531 0.0112654 0.0112777 0.01129 0.0113023 0.0113146 0.0113269 0.0113391 0.0113514 0.0113637 0.011376 0.0113883 0.0114006 0.0114129 0.0114252 0.0114375 0.0114498 0.0114621 0.0114744 0.0114867 0.011499 0.0115113 0.0115236 0.0115359 0.0115482 0.0115605 0.0115728 0.0115851 0.0115974 0.0116097 0.011622 0.0116343 0.0116466 0.0116589 0.0116712 0.0116835 0.0116958 0.0117081 0.0117204 0.0117327 0.011745 0.0117573 0.0117696 0.0117819 0.0117942 0.0118065 0.0118188 +-0.00286221 -0.00259305 -0.00202887 -0.00108892 0.000107404 0.00144136 0.00284376 0.00427212 0.00569271 0.00706756 0.00833784 0.00939363 0.0100605 0.0103054 0.0103639 0.0103834 0.0103967 0.0104092 0.0104215 0.0104338 0.0104461 0.0104584 0.0104707 0.010483 0.0104953 0.0105077 0.01052 0.0105323 0.0105446 0.0105569 0.0105692 0.0105815 0.0105938 0.0106061 0.0106184 0.0106307 0.010643 0.0106553 0.0106676 0.0106799 0.0106922 0.0107045 0.0107168 0.0107291 0.0107414 0.0107537 0.010766 0.0107783 0.0107906 0.0108029 0.0108152 0.0108275 0.0108398 0.0108522 0.0108645 0.0108768 0.0108891 0.0109014 0.0109137 0.010926 0.0109383 0.0109506 0.0109629 0.0109752 0.0109875 0.0109998 0.0110121 0.0110244 0.0110367 0.011049 0.0110613 0.0110736 0.0110859 0.0110982 0.0111105 0.0111228 0.0111351 0.0111474 0.0111597 0.011172 0.0111843 0.0111967 0.011209 0.0112213 0.0112336 0.0112459 0.0112582 0.0112705 0.0112828 0.0112951 0.0113074 0.0113197 0.011332 0.0113443 0.0113566 0.0113689 0.0113812 0.0113935 0.0114058 0.0114181 0.0114304 0.0114427 0.011455 0.0114673 0.0114796 0.0114919 0.0115042 0.0115165 0.0115288 0.0115411 0.0115535 0.0115658 0.0115781 0.0115904 0.0116027 0.011615 0.0116273 0.0116396 0.0116519 0.0116642 0.0116765 0.0116888 0.0117011 0.0117134 0.0117257 0.011738 0.0117503 0.0117626 0.0117749 0.0117872 0.0117995 0.0118118 0.0118241 +-0.0028637 -0.00259423 -0.00202952 -0.00108912 0.000107492 0.00144164 0.00284419 0.00427271 0.00569349 0.00706861 0.00833934 0.00939596 0.0100641 0.0103098 0.0103685 0.0103881 0.0104014 0.0104139 0.0104262 0.0104385 0.0104509 0.0104632 0.0104755 0.0104878 0.0105001 0.0105124 0.0105247 0.010537 0.0105493 0.0105616 0.010574 0.0105863 0.0105986 0.0106109 0.0106232 0.0106355 0.0106478 0.0106601 0.0106724 0.0106847 0.010697 0.0107094 0.0107217 0.010734 0.0107463 0.0107586 0.0107709 0.0107832 0.0107955 0.0108078 0.0108201 0.0108324 0.0108448 0.0108571 0.0108694 0.0108817 0.010894 0.0109063 0.0109186 0.0109309 0.0109432 0.0109555 0.0109679 0.0109802 0.0109925 0.0110048 0.0110171 0.0110294 0.0110417 0.011054 0.0110663 0.0110786 0.0110909 0.0111033 0.0111156 0.0111279 0.0111402 0.0111525 0.0111648 0.0111771 0.0111894 0.0112017 0.011214 0.0112263 0.0112387 0.011251 0.0112633 0.0112756 0.0112879 0.0113002 0.0113125 0.0113248 0.0113371 0.0113494 0.0113618 0.0113741 0.0113864 0.0113987 0.011411 0.0114233 0.0114356 0.0114479 0.0114602 0.0114725 0.0114848 0.0114971 0.0115095 0.0115218 0.0115341 0.0115464 0.0115587 0.011571 0.0115833 0.0115956 0.0116079 0.0116202 0.0116326 0.0116449 0.0116572 0.0116695 0.0116818 0.0116941 0.0117064 0.0117187 0.011731 0.0117433 0.0117556 0.011768 0.0117803 0.0117926 0.0118049 0.0118172 0.0118295 +-0.00286519 -0.00259541 -0.00203017 -0.00108931 0.000107579 0.00144192 0.00284462 0.0042733 0.00569427 0.00706966 0.00834084 0.00939828 0.0100676 0.0103142 0.0103732 0.0103927 0.0104061 0.0104186 0.0104309 0.0104433 0.0104556 0.0104679 0.0104802 0.0104925 0.0105048 0.0105172 0.0105295 0.0105418 0.0105541 0.0105664 0.0105787 0.010591 0.0106034 0.0106157 0.010628 0.0106403 0.0106526 0.0106649 0.0106773 0.0106896 0.0107019 0.0107142 0.0107265 0.0107388 0.0107511 0.0107635 0.0107758 0.0107881 0.0108004 0.0108127 0.010825 0.0108373 0.0108497 0.010862 0.0108743 0.0108866 0.0108989 0.0109112 0.0109236 0.0109359 0.0109482 0.0109605 0.0109728 0.0109851 0.0109974 0.0110098 0.0110221 0.0110344 0.0110467 0.011059 0.0110713 0.0110837 0.011096 0.0111083 0.0111206 0.0111329 0.0111452 0.0111575 0.0111699 0.0111822 0.0111945 0.0112068 0.0112191 0.0112314 0.0112437 0.0112561 0.0112684 0.0112807 0.011293 0.0113053 0.0113176 0.01133 0.0113423 0.0113546 0.0113669 0.0113792 0.0113915 0.0114038 0.0114162 0.0114285 0.0114408 0.0114531 0.0114654 0.0114777 0.01149 0.0115024 0.0115147 0.011527 0.0115393 0.0115516 0.0115639 0.0115763 0.0115886 0.0116009 0.0116132 0.0116255 0.0116378 0.0116501 0.0116625 0.0116748 0.0116871 0.0116994 0.0117117 0.011724 0.0117364 0.0117487 0.011761 0.0117733 0.0117856 0.0117979 0.0118102 0.0118226 0.0118349 +-0.00286668 -0.00259659 -0.00203082 -0.00108951 0.000107666 0.00144219 0.00284505 0.00427388 0.00569504 0.00707071 0.00834234 0.00940059 0.0100712 0.0103187 0.0103778 0.0103974 0.0104108 0.0104233 0.0104357 0.010448 0.0104603 0.0104726 0.0104849 0.0104973 0.0105096 0.0105219 0.0105342 0.0105465 0.0105589 0.0105712 0.0105835 0.0105958 0.0106081 0.0106205 0.0106328 0.0106451 0.0106574 0.0106698 0.0106821 0.0106944 0.0107067 0.010719 0.0107314 0.0107437 0.010756 0.0107683 0.0107806 0.010793 0.0108053 0.0108176 0.0108299 0.0108422 0.0108546 0.0108669 0.0108792 0.0108915 0.0109039 0.0109162 0.0109285 0.0109408 0.0109531 0.0109655 0.0109778 0.0109901 0.0110024 0.0110147 0.0110271 0.0110394 0.0110517 0.011064 0.0110763 0.0110887 0.011101 0.0111133 0.0111256 0.0111379 0.0111503 0.0111626 0.0111749 0.0111872 0.0111996 0.0112119 0.0112242 0.0112365 0.0112488 0.0112612 0.0112735 0.0112858 0.0112981 0.0113104 0.0113228 0.0113351 0.0113474 0.0113597 0.011372 0.0113844 0.0113967 0.011409 0.0114213 0.0114337 0.011446 0.0114583 0.0114706 0.0114829 0.0114953 0.0115076 0.0115199 0.0115322 0.0115445 0.0115569 0.0115692 0.0115815 0.0115938 0.0116061 0.0116185 0.0116308 0.0116431 0.0116554 0.0116677 0.0116801 0.0116924 0.0117047 0.011717 0.0117294 0.0117417 0.011754 0.0117663 0.0117786 0.011791 0.0118033 0.0118156 0.0118279 0.0118402 +-0.00286817 -0.00259777 -0.00203147 -0.00108971 0.000107753 0.00144247 0.00284549 0.00427447 0.00569582 0.00707176 0.00834383 0.00940291 0.0100747 0.0103231 0.0103824 0.0104021 0.0104155 0.010428 0.0104404 0.0104527 0.010465 0.0104773 0.0104897 0.010502 0.0105143 0.0105266 0.010539 0.0105513 0.0105636 0.010576 0.0105883 0.0106006 0.0106129 0.0106253 0.0106376 0.0106499 0.0106622 0.0106746 0.0106869 0.0106992 0.0107115 0.0107239 0.0107362 0.0107485 0.0107609 0.0107732 0.0107855 0.0107978 0.0108102 0.0108225 0.0108348 0.0108471 0.0108595 0.0108718 0.0108841 0.0108965 0.0109088 0.0109211 0.0109334 0.0109458 0.0109581 0.0109704 0.0109827 0.0109951 0.0110074 0.0110197 0.011032 0.0110444 0.0110567 0.011069 0.0110814 0.0110937 0.011106 0.0111183 0.0111307 0.011143 0.0111553 0.0111676 0.01118 0.0111923 0.0112046 0.0112169 0.0112293 0.0112416 0.0112539 0.0112663 0.0112786 0.0112909 0.0113032 0.0113156 0.0113279 0.0113402 0.0113525 0.0113649 0.0113772 0.0113895 0.0114018 0.0114142 0.0114265 0.0114388 0.0114512 0.0114635 0.0114758 0.0114881 0.0115005 0.0115128 0.0115251 0.0115374 0.0115498 0.0115621 0.0115744 0.0115867 0.0115991 0.0116114 0.0116237 0.0116361 0.0116484 0.0116607 0.011673 0.0116854 0.0116977 0.01171 0.0117223 0.0117347 0.011747 0.0117593 0.0117716 0.011784 0.0117963 0.0118086 0.011821 0.0118333 0.0118456 +-0.00286965 -0.00259895 -0.00203212 -0.0010899 0.00010784 0.00144275 0.00284592 0.00427506 0.00569659 0.0070728 0.00834533 0.00940522 0.0100783 0.0103275 0.0103871 0.0104068 0.0104202 0.0104327 0.0104451 0.0104574 0.0104697 0.0104821 0.0104944 0.0105067 0.0105191 0.0105314 0.0105437 0.0105561 0.0105684 0.0105807 0.0105931 0.0106054 0.0106177 0.0106301 0.0106424 0.0106547 0.0106671 0.0106794 0.0106917 0.010704 0.0107164 0.0107287 0.010741 0.0107534 0.0107657 0.010778 0.0107904 0.0108027 0.010815 0.0108274 0.0108397 0.010852 0.0108644 0.0108767 0.010889 0.0109014 0.0109137 0.010926 0.0109384 0.0109507 0.010963 0.0109754 0.0109877 0.011 0.0110124 0.0110247 0.011037 0.0110494 0.0110617 0.011074 0.0110864 0.0110987 0.011111 0.0111234 0.0111357 0.011148 0.0111604 0.0111727 0.011185 0.0111973 0.0112097 0.011222 0.0112343 0.0112467 0.011259 0.0112713 0.0112837 0.011296 0.0113083 0.0113207 0.011333 0.0113453 0.0113577 0.01137 0.0113823 0.0113947 0.011407 0.0114193 0.0114317 0.011444 0.0114563 0.0114687 0.011481 0.0114933 0.0115057 0.011518 0.0115303 0.0115427 0.011555 0.0115673 0.0115797 0.011592 0.0116043 0.0116167 0.011629 0.0116413 0.0116536 0.011666 0.0116783 0.0116906 0.011703 0.0117153 0.0117276 0.01174 0.0117523 0.0117646 0.011777 0.0117893 0.0118016 0.011814 0.0118263 0.0118386 0.011851 +-0.00287114 -0.00260013 -0.00203277 -0.0010901 0.000107927 0.00144302 0.00284635 0.00427565 0.00569737 0.00707385 0.00834682 0.00940752 0.0100818 0.0103319 0.0103917 0.0104115 0.0104249 0.0104374 0.0104498 0.0104621 0.0104744 0.0104868 0.0104991 0.0105115 0.0105238 0.0105361 0.0105485 0.0105608 0.0105732 0.0105855 0.0105978 0.0106102 0.0106225 0.0106348 0.0106472 0.0106595 0.0106719 0.0106842 0.0106965 0.0107089 0.0107212 0.0107336 0.0107459 0.0107582 0.0107706 0.0107829 0.0107952 0.0108076 0.0108199 0.0108323 0.0108446 0.0108569 0.0108693 0.0108816 0.0108939 0.0109063 0.0109186 0.010931 0.0109433 0.0109556 0.010968 0.0109803 0.0109927 0.011005 0.0110173 0.0110297 0.011042 0.0110543 0.0110667 0.011079 0.0110914 0.0111037 0.011116 0.0111284 0.0111407 0.0111531 0.0111654 0.0111777 0.0111901 0.0112024 0.0112147 0.0112271 0.0112394 0.0112518 0.0112641 0.0112764 0.0112888 0.0113011 0.0113135 0.0113258 0.0113381 0.0113505 0.0113628 0.0113751 0.0113875 0.0113998 0.0114122 0.0114245 0.0114368 0.0114492 0.0114615 0.0114738 0.0114862 0.0114985 0.0115109 0.0115232 0.0115355 0.0115479 0.0115602 0.0115726 0.0115849 0.0115972 0.0116096 0.0116219 0.0116342 0.0116466 0.0116589 0.0116713 0.0116836 0.0116959 0.0117083 0.0117206 0.0117329 0.0117453 0.0117576 0.01177 0.0117823 0.0117946 0.011807 0.0118193 0.0118317 0.011844 0.0118563 +-0.00287263 -0.0026013 -0.00203342 -0.00109029 0.000108014 0.0014433 0.00284678 0.00427623 0.00569814 0.00707489 0.00834831 0.00940983 0.0100854 0.0103363 0.0103964 0.0104161 0.0104296 0.0104421 0.0104545 0.0104668 0.0104792 0.0104915 0.0105038 0.0105162 0.0105285 0.0105409 0.0105532 0.0105656 0.0105779 0.0105903 0.0106026 0.0106149 0.0106273 0.0106396 0.010652 0.0106643 0.0106767 0.010689 0.0107014 0.0107137 0.010726 0.0107384 0.0107507 0.0107631 0.0107754 0.0107878 0.0108001 0.0108124 0.0108248 0.0108371 0.0108495 0.0108618 0.0108742 0.0108865 0.0108989 0.0109112 0.0109235 0.0109359 0.0109482 0.0109606 0.0109729 0.0109853 0.0109976 0.01101 0.0110223 0.0110346 0.011047 0.0110593 0.0110717 0.011084 0.0110964 0.0111087 0.0111211 0.0111334 0.0111457 0.0111581 0.0111704 0.0111828 0.0111951 0.0112075 0.0112198 0.0112321 0.0112445 0.0112568 0.0112692 0.0112815 0.0112939 0.0113062 0.0113186 0.0113309 0.0113432 0.0113556 0.0113679 0.0113803 0.0113926 0.011405 0.0114173 0.0114297 0.011442 0.0114543 0.0114667 0.011479 0.0114914 0.0115037 0.0115161 0.0115284 0.0115407 0.0115531 0.0115654 0.0115778 0.0115901 0.0116025 0.0116148 0.0116272 0.0116395 0.0116518 0.0116642 0.0116765 0.0116889 0.0117012 0.0117136 0.0117259 0.0117383 0.0117506 0.0117629 0.0117753 0.0117876 0.0118 0.0118123 0.0118247 0.011837 0.0118493 0.0118617 +-0.00287412 -0.00260248 -0.00203406 -0.00109049 0.000108101 0.00144358 0.00284721 0.00427682 0.00569892 0.00707593 0.0083498 0.00941212 0.0100889 0.0103407 0.010401 0.0104208 0.0104343 0.0104468 0.0104592 0.0104715 0.0104839 0.0104962 0.0105086 0.0105209 0.0105333 0.0105456 0.010558 0.0105703 0.0105827 0.010595 0.0106074 0.0106197 0.0106321 0.0106444 0.0106568 0.0106691 0.0106815 0.0106938 0.0107062 0.0107185 0.0107309 0.0107432 0.0107556 0.0107679 0.0107803 0.0107926 0.010805 0.0108173 0.0108297 0.010842 0.0108544 0.0108667 0.0108791 0.0108914 0.0109038 0.0109161 0.0109285 0.0109408 0.0109532 0.0109655 0.0109779 0.0109902 0.0110026 0.0110149 0.0110273 0.0110396 0.011052 0.0110643 0.0110767 0.011089 0.0111014 0.0111137 0.0111261 0.0111384 0.0111508 0.0111631 0.0111755 0.0111878 0.0112002 0.0112125 0.0112249 0.0112372 0.0112496 0.0112619 0.0112743 0.0112866 0.011299 0.0113113 0.0113237 0.011336 0.0113484 0.0113607 0.0113731 0.0113854 0.0113978 0.0114101 0.0114225 0.0114348 0.0114472 0.0114595 0.0114719 0.0114842 0.0114966 0.0115089 0.0115213 0.0115336 0.011546 0.0115583 0.0115707 0.011583 0.0115954 0.0116077 0.0116201 0.0116324 0.0116448 0.0116571 0.0116695 0.0116818 0.0116942 0.0117065 0.0117189 0.0117312 0.0117436 0.0117559 0.0117683 0.0117806 0.011793 0.0118053 0.0118177 0.01183 0.0118424 0.0118547 0.0118671 +-0.0028756 -0.00260365 -0.00203471 -0.00109068 0.000108189 0.00144385 0.00284764 0.0042774 0.00569969 0.00707697 0.00835128 0.00941442 0.0100924 0.0103451 0.0104056 0.0104255 0.010439 0.0104515 0.0104639 0.0104762 0.0104886 0.0105009 0.0105133 0.0105256 0.010538 0.0105504 0.0105627 0.0105751 0.0105874 0.0105998 0.0106121 0.0106245 0.0106369 0.0106492 0.0106616 0.0106739 0.0106863 0.0106986 0.010711 0.0107233 0.0107357 0.0107481 0.0107604 0.0107728 0.0107851 0.0107975 0.0108098 0.0108222 0.0108345 0.0108469 0.0108593 0.0108716 0.010884 0.0108963 0.0109087 0.010921 0.0109334 0.0109457 0.0109581 0.0109705 0.0109828 0.0109952 0.0110075 0.0110199 0.0110322 0.0110446 0.0110569 0.0110693 0.0110817 0.011094 0.0111064 0.0111187 0.0111311 0.0111434 0.0111558 0.0111681 0.0111805 0.0111929 0.0112052 0.0112176 0.0112299 0.0112423 0.0112546 0.011267 0.0112793 0.0112917 0.0113041 0.0113164 0.0113288 0.0113411 0.0113535 0.0113658 0.0113782 0.0113905 0.0114029 0.0114153 0.0114276 0.01144 0.0114523 0.0114647 0.011477 0.0114894 0.0115017 0.0115141 0.0115265 0.0115388 0.0115512 0.0115635 0.0115759 0.0115882 0.0116006 0.0116129 0.0116253 0.0116377 0.01165 0.0116624 0.0116747 0.0116871 0.0116994 0.0117118 0.0117241 0.0117365 0.0117489 0.0117612 0.0117736 0.0117859 0.0117983 0.0118106 0.011823 0.0118353 0.0118477 0.0118601 0.0118724 +-0.00287709 -0.00260483 -0.00203535 -0.00109088 0.000108276 0.00144413 0.00284807 0.00427799 0.00570046 0.00707801 0.00835277 0.00941671 0.010096 0.0103495 0.0104103 0.0104302 0.0104437 0.0104562 0.0104686 0.0104809 0.0104933 0.0105057 0.010518 0.0105304 0.0105427 0.0105551 0.0105675 0.0105798 0.0105922 0.0106045 0.0106169 0.0106293 0.0106416 0.010654 0.0106664 0.0106787 0.0106911 0.0107034 0.0107158 0.0107282 0.0107405 0.0107529 0.0107652 0.0107776 0.01079 0.0108023 0.0108147 0.010827 0.0108394 0.0108518 0.0108641 0.0108765 0.0108889 0.0109012 0.0109136 0.0109259 0.0109383 0.0109507 0.010963 0.0109754 0.0109877 0.0110001 0.0110125 0.0110248 0.0110372 0.0110496 0.0110619 0.0110743 0.0110866 0.011099 0.0111114 0.0111237 0.0111361 0.0111484 0.0111608 0.0111732 0.0111855 0.0111979 0.0112103 0.0112226 0.011235 0.0112473 0.0112597 0.0112721 0.0112844 0.0112968 0.0113091 0.0113215 0.0113339 0.0113462 0.0113586 0.011371 0.0113833 0.0113957 0.011408 0.0114204 0.0114328 0.0114451 0.0114575 0.0114698 0.0114822 0.0114946 0.0115069 0.0115193 0.0115316 0.011544 0.0115564 0.0115687 0.0115811 0.0115935 0.0116058 0.0116182 0.0116305 0.0116429 0.0116553 0.0116676 0.01168 0.0116923 0.0117047 0.0117171 0.0117294 0.0117418 0.0117542 0.0117665 0.0117789 0.0117912 0.0118036 0.011816 0.0118283 0.0118407 0.011853 0.0118654 0.0118778 +-0.00287857 -0.002606 -0.002036 -0.00109107 0.000108363 0.00144441 0.0028485 0.00427857 0.00570123 0.00707905 0.00835425 0.009419 0.0100995 0.0103539 0.0104149 0.0104348 0.0104483 0.0104609 0.0104733 0.0104856 0.010498 0.0105104 0.0105227 0.0105351 0.0105475 0.0105598 0.0105722 0.0105846 0.0105969 0.0106093 0.0106217 0.010634 0.0106464 0.0106588 0.0106711 0.0106835 0.0106959 0.0107082 0.0107206 0.010733 0.0107453 0.0107577 0.0107701 0.0107824 0.0107948 0.0108072 0.0108195 0.0108319 0.0108443 0.0108566 0.010869 0.0108814 0.0108937 0.0109061 0.0109185 0.0109309 0.0109432 0.0109556 0.010968 0.0109803 0.0109927 0.0110051 0.0110174 0.0110298 0.0110422 0.0110545 0.0110669 0.0110793 0.0110916 0.011104 0.0111164 0.0111287 0.0111411 0.0111535 0.0111658 0.0111782 0.0111906 0.0112029 0.0112153 0.0112277 0.01124 0.0112524 0.0112648 0.0112771 0.0112895 0.0113019 0.0113142 0.0113266 0.011339 0.0113513 0.0113637 0.0113761 0.0113884 0.0114008 0.0114132 0.0114255 0.0114379 0.0114503 0.0114626 0.011475 0.0114874 0.0114997 0.0115121 0.0115245 0.0115368 0.0115492 0.0115616 0.0115739 0.0115863 0.0115987 0.011611 0.0116234 0.0116358 0.0116481 0.0116605 0.0116729 0.0116852 0.0116976 0.01171 0.0117223 0.0117347 0.0117471 0.0117594 0.0117718 0.0117842 0.0117965 0.0118089 0.0118213 0.0118337 0.011846 0.0118584 0.0118708 0.0118831 +-0.00288006 -0.00260718 -0.00203664 -0.00109127 0.00010845 0.00144468 0.00284893 0.00427915 0.005702 0.00708009 0.00835573 0.00942129 0.010103 0.0103583 0.0104195 0.0104395 0.010453 0.0104656 0.010478 0.0104903 0.0105027 0.0105151 0.0105275 0.0105398 0.0105522 0.0105646 0.0105769 0.0105893 0.0106017 0.0106141 0.0106264 0.0106388 0.0106512 0.0106636 0.0106759 0.0106883 0.0107007 0.010713 0.0107254 0.0107378 0.0107502 0.0107625 0.0107749 0.0107873 0.0107997 0.010812 0.0108244 0.0108368 0.0108491 0.0108615 0.0108739 0.0108863 0.0108986 0.010911 0.0109234 0.0109358 0.0109481 0.0109605 0.0109729 0.0109853 0.0109976 0.01101 0.0110224 0.0110347 0.0110471 0.0110595 0.0110719 0.0110842 0.0110966 0.011109 0.0111214 0.0111337 0.0111461 0.0111585 0.0111708 0.0111832 0.0111956 0.011208 0.0112203 0.0112327 0.0112451 0.0112575 0.0112698 0.0112822 0.0112946 0.0113069 0.0113193 0.0113317 0.0113441 0.0113564 0.0113688 0.0113812 0.0113936 0.0114059 0.0114183 0.0114307 0.0114431 0.0114554 0.0114678 0.0114802 0.0114925 0.0115049 0.0115173 0.0115297 0.011542 0.0115544 0.0115668 0.0115791 0.0115915 0.0116039 0.0116163 0.0116286 0.011641 0.0116534 0.0116658 0.0116781 0.0116905 0.0117029 0.0117153 0.0117276 0.01174 0.0117524 0.0117647 0.0117771 0.0117895 0.0118019 0.0118142 0.0118266 0.011839 0.0118514 0.0118637 0.0118761 0.0118885 +-0.00288154 -0.00260835 -0.00203729 -0.00109146 0.000108537 0.00144496 0.00284936 0.00427974 0.00570277 0.00708113 0.00835721 0.00942357 0.0101065 0.0103627 0.0104241 0.0104442 0.0104577 0.0104702 0.0104826 0.010495 0.0105074 0.0105198 0.0105322 0.0105445 0.0105569 0.0105693 0.0105817 0.0105941 0.0106064 0.0106188 0.0106312 0.0106436 0.010656 0.0106683 0.0106807 0.0106931 0.0107055 0.0107178 0.0107302 0.0107426 0.010755 0.0107674 0.0107797 0.0107921 0.0108045 0.0108169 0.0108293 0.0108416 0.010854 0.0108664 0.0108788 0.0108912 0.0109035 0.0109159 0.0109283 0.0109407 0.010953 0.0109654 0.0109778 0.0109902 0.0110026 0.0110149 0.0110273 0.0110397 0.0110521 0.0110645 0.0110768 0.0110892 0.0111016 0.011114 0.0111263 0.0111387 0.0111511 0.0111635 0.0111759 0.0111882 0.0112006 0.011213 0.0112254 0.0112378 0.0112501 0.0112625 0.0112749 0.0112873 0.0112996 0.011312 0.0113244 0.0113368 0.0113492 0.0113615 0.0113739 0.0113863 0.0113987 0.0114111 0.0114234 0.0114358 0.0114482 0.0114606 0.011473 0.0114853 0.0114977 0.0115101 0.0115225 0.0115348 0.0115472 0.0115596 0.011572 0.0115844 0.0115967 0.0116091 0.0116215 0.0116339 0.0116462 0.0116586 0.011671 0.0116834 0.0116958 0.0117081 0.0117205 0.0117329 0.0117453 0.0117577 0.01177 0.0117824 0.0117948 0.0118072 0.0118196 0.0118319 0.0118443 0.0118567 0.0118691 0.0118814 0.0118938 +-0.00288303 -0.00260952 -0.00203793 -0.00109165 0.000108624 0.00144523 0.00284979 0.00428032 0.00570354 0.00708216 0.00835868 0.00942585 0.01011 0.010367 0.0104288 0.0104489 0.0104624 0.0104749 0.0104873 0.0104997 0.0105121 0.0105245 0.0105369 0.0105493 0.0105617 0.010574 0.0105864 0.0105988 0.0106112 0.0106236 0.010636 0.0106483 0.0106607 0.0106731 0.0106855 0.0106979 0.0107103 0.0107227 0.010735 0.0107474 0.0107598 0.0107722 0.0107846 0.010797 0.0108093 0.0108217 0.0108341 0.0108465 0.0108589 0.0108713 0.0108836 0.010896 0.0109084 0.0109208 0.0109332 0.0109456 0.010958 0.0109703 0.0109827 0.0109951 0.0110075 0.0110199 0.0110323 0.0110446 0.011057 0.0110694 0.0110818 0.0110942 0.0111066 0.011119 0.0111313 0.0111437 0.0111561 0.0111685 0.0111809 0.0111933 0.0112056 0.011218 0.0112304 0.0112428 0.0112552 0.0112676 0.01128 0.0112923 0.0113047 0.0113171 0.0113295 0.0113419 0.0113543 0.0113666 0.011379 0.0113914 0.0114038 0.0114162 0.0114286 0.011441 0.0114533 0.0114657 0.0114781 0.0114905 0.0115029 0.0115153 0.0115276 0.01154 0.0115524 0.0115648 0.0115772 0.0115896 0.0116019 0.0116143 0.0116267 0.0116391 0.0116515 0.0116639 0.0116763 0.0116886 0.011701 0.0117134 0.0117258 0.0117382 0.0117506 0.0117629 0.0117753 0.0117877 0.0118001 0.0118125 0.0118249 0.0118373 0.0118496 0.011862 0.0118744 0.0118868 0.0118992 +-0.00288451 -0.00261069 -0.00203857 -0.00109185 0.000108712 0.00144551 0.00285022 0.0042809 0.00570431 0.00708319 0.00836016 0.00942812 0.0101136 0.0103714 0.0104334 0.0104535 0.0104671 0.0104796 0.010492 0.0105044 0.0105168 0.0105292 0.0105416 0.010554 0.0105664 0.0105788 0.0105912 0.0106035 0.0106159 0.0106283 0.0106407 0.0106531 0.0106655 0.0106779 0.0106903 0.0107027 0.0107151 0.0107275 0.0107398 0.0107522 0.0107646 0.010777 0.0107894 0.0108018 0.0108142 0.0108266 0.010839 0.0108514 0.0108637 0.0108761 0.0108885 0.0109009 0.0109133 0.0109257 0.0109381 0.0109505 0.0109629 0.0109753 0.0109876 0.011 0.0110124 0.0110248 0.0110372 0.0110496 0.011062 0.0110744 0.0110868 0.0110992 0.0111115 0.0111239 0.0111363 0.0111487 0.0111611 0.0111735 0.0111859 0.0111983 0.0112107 0.0112231 0.0112355 0.0112478 0.0112602 0.0112726 0.011285 0.0112974 0.0113098 0.0113222 0.0113346 0.011347 0.0113594 0.0113717 0.0113841 0.0113965 0.0114089 0.0114213 0.0114337 0.0114461 0.0114585 0.0114709 0.0114833 0.0114956 0.011508 0.0115204 0.0115328 0.0115452 0.0115576 0.01157 0.0115824 0.0115948 0.0116072 0.0116195 0.0116319 0.0116443 0.0116567 0.0116691 0.0116815 0.0116939 0.0117063 0.0117187 0.0117311 0.0117434 0.0117558 0.0117682 0.0117806 0.011793 0.0118054 0.0118178 0.0118302 0.0118426 0.011855 0.0118674 0.0118797 0.0118921 0.0119045 +-0.00288599 -0.00261186 -0.00203921 -0.00109204 0.000108799 0.00144578 0.00285065 0.00428148 0.00570507 0.00708422 0.00836163 0.0094304 0.0101171 0.0103758 0.010438 0.0104582 0.0104717 0.0104843 0.0104967 0.0105091 0.0105215 0.0105339 0.0105463 0.0105587 0.0105711 0.0105835 0.0105959 0.0106083 0.0106207 0.0106331 0.0106455 0.0106579 0.0106703 0.0106827 0.0106951 0.0107075 0.0107199 0.0107322 0.0107446 0.010757 0.0107694 0.0107818 0.0107942 0.0108066 0.010819 0.0108314 0.0108438 0.0108562 0.0108686 0.010881 0.0108934 0.0109058 0.0109182 0.0109306 0.010943 0.0109554 0.0109678 0.0109802 0.0109926 0.011005 0.0110174 0.0110298 0.0110422 0.0110545 0.0110669 0.0110793 0.0110917 0.0111041 0.0111165 0.0111289 0.0111413 0.0111537 0.0111661 0.0111785 0.0111909 0.0112033 0.0112157 0.0112281 0.0112405 0.0112529 0.0112653 0.0112777 0.0112901 0.0113025 0.0113149 0.0113273 0.0113397 0.0113521 0.0113644 0.0113768 0.0113892 0.0114016 0.011414 0.0114264 0.0114388 0.0114512 0.0114636 0.011476 0.0114884 0.0115008 0.0115132 0.0115256 0.011538 0.0115504 0.0115628 0.0115752 0.0115876 0.0116 0.0116124 0.0116248 0.0116372 0.0116496 0.0116619 0.0116743 0.0116867 0.0116991 0.0117115 0.0117239 0.0117363 0.0117487 0.0117611 0.0117735 0.0117859 0.0117983 0.0118107 0.0118231 0.0118355 0.0118479 0.0118603 0.0118727 0.0118851 0.0118975 0.0119099 +-0.00288747 -0.00261303 -0.00203985 -0.00109223 0.000108886 0.00144606 0.00285107 0.00428206 0.00570584 0.00708526 0.0083631 0.00943267 0.0101205 0.0103802 0.0104426 0.0104628 0.0104764 0.010489 0.0105014 0.0105138 0.0105262 0.0105386 0.010551 0.0105634 0.0105758 0.0105882 0.0106006 0.010613 0.0106254 0.0106378 0.0106502 0.0106626 0.010675 0.0106874 0.0106998 0.0107122 0.0107246 0.010737 0.0107494 0.0107619 0.0107743 0.0107867 0.0107991 0.0108115 0.0108239 0.0108363 0.0108487 0.0108611 0.0108735 0.0108859 0.0108983 0.0109107 0.0109231 0.0109355 0.0109479 0.0109603 0.0109727 0.0109851 0.0109975 0.0110099 0.0110223 0.0110347 0.0110471 0.0110595 0.0110719 0.0110843 0.0110967 0.0111091 0.0111215 0.0111339 0.0111463 0.0111587 0.0111711 0.0111835 0.0111959 0.0112083 0.0112207 0.0112331 0.0112455 0.0112579 0.0112703 0.0112827 0.0112951 0.0113075 0.0113199 0.0113323 0.0113447 0.0113571 0.0113695 0.0113819 0.0113943 0.0114067 0.0114191 0.0114315 0.0114439 0.0114564 0.0114688 0.0114812 0.0114936 0.011506 0.0115184 0.0115308 0.0115432 0.0115556 0.011568 0.0115804 0.0115928 0.0116052 0.0116176 0.01163 0.0116424 0.0116548 0.0116672 0.0116796 0.011692 0.0117044 0.0117168 0.0117292 0.0117416 0.011754 0.0117664 0.0117788 0.0117912 0.0118036 0.011816 0.0118284 0.0118408 0.0118532 0.0118656 0.011878 0.0118904 0.0119028 0.0119152 +-0.00288896 -0.0026142 -0.00204049 -0.00109243 0.000108973 0.00144633 0.0028515 0.00428264 0.00570661 0.00708629 0.00836457 0.00943493 0.010124 0.0103846 0.0104472 0.0104675 0.0104811 0.0104937 0.0105061 0.0105185 0.0105309 0.0105433 0.0105557 0.0105681 0.0105805 0.010593 0.0106054 0.0106178 0.0106302 0.0106426 0.010655 0.0106674 0.0106798 0.0106922 0.0107046 0.010717 0.0107294 0.0107418 0.0107543 0.0107667 0.0107791 0.0107915 0.0108039 0.0108163 0.0108287 0.0108411 0.0108535 0.0108659 0.0108783 0.0108907 0.0109031 0.0109155 0.010928 0.0109404 0.0109528 0.0109652 0.0109776 0.01099 0.0110024 0.0110148 0.0110272 0.0110396 0.011052 0.0110644 0.0110768 0.0110893 0.0111017 0.0111141 0.0111265 0.0111389 0.0111513 0.0111637 0.0111761 0.0111885 0.0112009 0.0112133 0.0112257 0.0112381 0.0112506 0.011263 0.0112754 0.0112878 0.0113002 0.0113126 0.011325 0.0113374 0.0113498 0.0113622 0.0113746 0.011387 0.0113994 0.0114119 0.0114243 0.0114367 0.0114491 0.0114615 0.0114739 0.0114863 0.0114987 0.0115111 0.0115235 0.0115359 0.0115483 0.0115607 0.0115731 0.0115856 0.011598 0.0116104 0.0116228 0.0116352 0.0116476 0.01166 0.0116724 0.0116848 0.0116972 0.0117096 0.011722 0.0117344 0.0117469 0.0117593 0.0117717 0.0117841 0.0117965 0.0118089 0.0118213 0.0118337 0.0118461 0.0118585 0.0118709 0.0118833 0.0118957 0.0119081 0.0119206 +-0.00289044 -0.00261537 -0.00204113 -0.00109262 0.00010906 0.00144661 0.00285193 0.00428322 0.00570737 0.00708732 0.00836604 0.00943719 0.0101275 0.0103889 0.0104519 0.0104722 0.0104858 0.0104983 0.0105108 0.0105232 0.0105356 0.010548 0.0105604 0.0105729 0.0105853 0.0105977 0.0106101 0.0106225 0.0106349 0.0106473 0.0106597 0.0106722 0.0106846 0.010697 0.0107094 0.0107218 0.0107342 0.0107466 0.0107591 0.0107715 0.0107839 0.0107963 0.0108087 0.0108211 0.0108335 0.0108459 0.0108584 0.0108708 0.0108832 0.0108956 0.010908 0.0109204 0.0109328 0.0109453 0.0109577 0.0109701 0.0109825 0.0109949 0.0110073 0.0110197 0.0110321 0.0110446 0.011057 0.0110694 0.0110818 0.0110942 0.0111066 0.011119 0.0111315 0.0111439 0.0111563 0.0111687 0.0111811 0.0111935 0.0112059 0.0112183 0.0112308 0.0112432 0.0112556 0.011268 0.0112804 0.0112928 0.0113052 0.0113176 0.0113301 0.0113425 0.0113549 0.0113673 0.0113797 0.0113921 0.0114045 0.011417 0.0114294 0.0114418 0.0114542 0.0114666 0.011479 0.0114914 0.0115038 0.0115163 0.0115287 0.0115411 0.0115535 0.0115659 0.0115783 0.0115907 0.0116032 0.0116156 0.011628 0.0116404 0.0116528 0.0116652 0.0116776 0.01169 0.0117025 0.0117149 0.0117273 0.0117397 0.0117521 0.0117645 0.0117769 0.0117894 0.0118018 0.0118142 0.0118266 0.011839 0.0118514 0.0118638 0.0118762 0.0118887 0.0119011 0.0119135 0.0119259 +-0.00289192 -0.00261653 -0.00204177 -0.00109281 0.000109148 0.00144688 0.00285236 0.0042838 0.00570814 0.00708835 0.0083675 0.00943945 0.010131 0.0103933 0.0104565 0.0104768 0.0104904 0.010503 0.0105155 0.0105279 0.0105403 0.0105527 0.0105651 0.0105776 0.01059 0.0106024 0.0106148 0.0106272 0.0106397 0.0106521 0.0106645 0.0106769 0.0106893 0.0107018 0.0107142 0.0107266 0.010739 0.0107514 0.0107638 0.0107763 0.0107887 0.0108011 0.0108135 0.0108259 0.0108384 0.0108508 0.0108632 0.0108756 0.010888 0.0109005 0.0109129 0.0109253 0.0109377 0.0109501 0.0109626 0.010975 0.0109874 0.0109998 0.0110122 0.0110247 0.0110371 0.0110495 0.0110619 0.0110743 0.0110867 0.0110992 0.0111116 0.011124 0.0111364 0.0111488 0.0111613 0.0111737 0.0111861 0.0111985 0.0112109 0.0112234 0.0112358 0.0112482 0.0112606 0.011273 0.0112855 0.0112979 0.0113103 0.0113227 0.0113351 0.0113475 0.01136 0.0113724 0.0113848 0.0113972 0.0114096 0.0114221 0.0114345 0.0114469 0.0114593 0.0114717 0.0114842 0.0114966 0.011509 0.0115214 0.0115338 0.0115462 0.0115587 0.0115711 0.0115835 0.0115959 0.0116083 0.0116208 0.0116332 0.0116456 0.011658 0.0116704 0.0116829 0.0116953 0.0117077 0.0117201 0.0117325 0.011745 0.0117574 0.0117698 0.0117822 0.0117946 0.011807 0.0118195 0.0118319 0.0118443 0.0118567 0.0118691 0.0118816 0.011894 0.0119064 0.0119188 0.0119312 +-0.0028934 -0.0026177 -0.00204241 -0.001093 0.000109235 0.00144716 0.00285278 0.00428438 0.0057089 0.00708937 0.00836897 0.00944171 0.0101345 0.0103977 0.0104611 0.0104815 0.0104951 0.0105077 0.0105201 0.0105326 0.010545 0.0105574 0.0105698 0.0105823 0.0105947 0.0106071 0.0106195 0.010632 0.0106444 0.0106568 0.0106692 0.0106817 0.0106941 0.0107065 0.0107189 0.0107314 0.0107438 0.0107562 0.0107686 0.0107811 0.0107935 0.0108059 0.0108183 0.0108308 0.0108432 0.0108556 0.010868 0.0108805 0.0108929 0.0109053 0.0109177 0.0109302 0.0109426 0.010955 0.0109674 0.0109799 0.0109923 0.0110047 0.0110171 0.0110296 0.011042 0.0110544 0.0110668 0.0110793 0.0110917 0.0111041 0.0111165 0.011129 0.0111414 0.0111538 0.0111662 0.0111787 0.0111911 0.0112035 0.0112159 0.0112284 0.0112408 0.0112532 0.0112656 0.0112781 0.0112905 0.0113029 0.0113153 0.0113278 0.0113402 0.0113526 0.011365 0.0113775 0.0113899 0.0114023 0.0114147 0.0114272 0.0114396 0.011452 0.0114644 0.0114769 0.0114893 0.0115017 0.0115141 0.0115266 0.011539 0.0115514 0.0115638 0.0115763 0.0115887 0.0116011 0.0116135 0.011626 0.0116384 0.0116508 0.0116632 0.0116757 0.0116881 0.0117005 0.0117129 0.0117254 0.0117378 0.0117502 0.0117626 0.0117751 0.0117875 0.0117999 0.0118123 0.0118248 0.0118372 0.0118496 0.011862 0.0118745 0.0118869 0.0118993 0.0119117 0.0119242 0.0119366 +-0.00289488 -0.00261886 -0.00204305 -0.00109319 0.000109322 0.00144743 0.00285321 0.00428496 0.00570966 0.0070904 0.00837043 0.00944396 0.010138 0.010402 0.0104657 0.0104861 0.0104998 0.0105124 0.0105248 0.0105373 0.0105497 0.0105621 0.0105746 0.010587 0.0105994 0.0106118 0.0106243 0.0106367 0.0106491 0.0106616 0.010674 0.0106864 0.0106989 0.0107113 0.0107237 0.0107362 0.0107486 0.010761 0.0107734 0.0107859 0.0107983 0.0108107 0.0108232 0.0108356 0.010848 0.0108605 0.0108729 0.0108853 0.0108977 0.0109102 0.0109226 0.010935 0.0109475 0.0109599 0.0109723 0.0109848 0.0109972 0.0110096 0.0110221 0.0110345 0.0110469 0.0110593 0.0110718 0.0110842 0.0110966 0.0111091 0.0111215 0.0111339 0.0111464 0.0111588 0.0111712 0.0111837 0.0111961 0.0112085 0.0112209 0.0112334 0.0112458 0.0112582 0.0112707 0.0112831 0.0112955 0.011308 0.0113204 0.0113328 0.0113452 0.0113577 0.0113701 0.0113825 0.011395 0.0114074 0.0114198 0.0114323 0.0114447 0.0114571 0.0114696 0.011482 0.0114944 0.0115068 0.0115193 0.0115317 0.0115441 0.0115566 0.011569 0.0115814 0.0115939 0.0116063 0.0116187 0.0116311 0.0116436 0.011656 0.0116684 0.0116809 0.0116933 0.0117057 0.0117182 0.0117306 0.011743 0.0117555 0.0117679 0.0117803 0.0117927 0.0118052 0.0118176 0.01183 0.0118425 0.0118549 0.0118673 0.0118798 0.0118922 0.0119046 0.0119171 0.0119295 0.0119419 +-0.00289636 -0.00262003 -0.00204368 -0.00109339 0.000109409 0.00144771 0.00285363 0.00428554 0.00571043 0.00709142 0.00837189 0.00944621 0.0101414 0.0104064 0.0104703 0.0104908 0.0105044 0.010517 0.0105295 0.0105419 0.0105544 0.0105668 0.0105793 0.0105917 0.0106041 0.0106166 0.010629 0.0106414 0.0106539 0.0106663 0.0106787 0.0106912 0.0107036 0.0107161 0.0107285 0.0107409 0.0107534 0.0107658 0.0107782 0.0107907 0.0108031 0.0108155 0.010828 0.0108404 0.0108529 0.0108653 0.0108777 0.0108902 0.0109026 0.010915 0.0109275 0.0109399 0.0109523 0.0109648 0.0109772 0.0109897 0.0110021 0.0110145 0.011027 0.0110394 0.0110518 0.0110643 0.0110767 0.0110891 0.0111016 0.011114 0.0111265 0.0111389 0.0111513 0.0111638 0.0111762 0.0111886 0.0112011 0.0112135 0.0112259 0.0112384 0.0112508 0.0112633 0.0112757 0.0112881 0.0113006 0.011313 0.0113254 0.0113379 0.0113503 0.0113627 0.0113752 0.0113876 0.0114001 0.0114125 0.0114249 0.0114374 0.0114498 0.0114622 0.0114747 0.0114871 0.0114995 0.011512 0.0115244 0.0115368 0.0115493 0.0115617 0.0115742 0.0115866 0.011599 0.0116115 0.0116239 0.0116363 0.0116488 0.0116612 0.0116736 0.0116861 0.0116985 0.011711 0.0117234 0.0117358 0.0117483 0.0117607 0.0117731 0.0117856 0.011798 0.0118104 0.0118229 0.0118353 0.0118478 0.0118602 0.0118726 0.0118851 0.0118975 0.0119099 0.0119224 0.0119348 0.0119472 +-0.00289784 -0.00262119 -0.00204432 -0.00109358 0.000109496 0.00144798 0.00285406 0.00428612 0.00571119 0.00709245 0.00837335 0.00944845 0.0101449 0.0104108 0.0104749 0.0104955 0.0105091 0.0105217 0.0105342 0.0105466 0.0105591 0.0105715 0.010584 0.0105964 0.0106088 0.0106213 0.0106337 0.0106462 0.0106586 0.0106711 0.0106835 0.0106959 0.0107084 0.0107208 0.0107333 0.0107457 0.0107581 0.0107706 0.010783 0.0107955 0.0108079 0.0108204 0.0108328 0.0108452 0.0108577 0.0108701 0.0108826 0.010895 0.0109075 0.0109199 0.0109323 0.0109448 0.0109572 0.0109697 0.0109821 0.0109945 0.011007 0.0110194 0.0110319 0.0110443 0.0110568 0.0110692 0.0110816 0.0110941 0.0111065 0.011119 0.0111314 0.0111439 0.0111563 0.0111687 0.0111812 0.0111936 0.0112061 0.0112185 0.0112309 0.0112434 0.0112558 0.0112683 0.0112807 0.0112932 0.0113056 0.011318 0.0113305 0.0113429 0.0113554 0.0113678 0.0113803 0.0113927 0.0114051 0.0114176 0.01143 0.0114425 0.0114549 0.0114673 0.0114798 0.0114922 0.0115047 0.0115171 0.0115296 0.011542 0.0115544 0.0115669 0.0115793 0.0115918 0.0116042 0.0116166 0.0116291 0.0116415 0.011654 0.0116664 0.0116789 0.0116913 0.0117037 0.0117162 0.0117286 0.0117411 0.0117535 0.011766 0.0117784 0.0117908 0.0118033 0.0118157 0.0118282 0.0118406 0.011853 0.0118655 0.0118779 0.0118904 0.0119028 0.0119153 0.0119277 0.0119401 0.0119526 +-0.00289932 -0.00262236 -0.00204496 -0.00109377 0.000109584 0.00144825 0.00285449 0.00428669 0.00571195 0.00709347 0.0083748 0.00945069 0.0101484 0.0104151 0.0104795 0.0105001 0.0105138 0.0105264 0.0105389 0.0105513 0.0105638 0.0105762 0.0105887 0.0106011 0.0106136 0.010626 0.0106384 0.0106509 0.0106633 0.0106758 0.0106882 0.0107007 0.0107131 0.0107256 0.010738 0.0107505 0.0107629 0.0107754 0.0107878 0.0108003 0.0108127 0.0108252 0.0108376 0.0108501 0.0108625 0.010875 0.0108874 0.0108999 0.0109123 0.0109247 0.0109372 0.0109496 0.0109621 0.0109745 0.010987 0.0109994 0.0110119 0.0110243 0.0110368 0.0110492 0.0110617 0.0110741 0.0110866 0.011099 0.0111115 0.0111239 0.0111364 0.0111488 0.0111613 0.0111737 0.0111862 0.0111986 0.011211 0.0112235 0.0112359 0.0112484 0.0112608 0.0112733 0.0112857 0.0112982 0.0113106 0.0113231 0.0113355 0.011348 0.0113604 0.0113729 0.0113853 0.0113978 0.0114102 0.0114227 0.0114351 0.0114476 0.01146 0.0114725 0.0114849 0.0114973 0.0115098 0.0115222 0.0115347 0.0115471 0.0115596 0.011572 0.0115845 0.0115969 0.0116094 0.0116218 0.0116343 0.0116467 0.0116592 0.0116716 0.0116841 0.0116965 0.011709 0.0117214 0.0117339 0.0117463 0.0117587 0.0117712 0.0117836 0.0117961 0.0118085 0.011821 0.0118334 0.0118459 0.0118583 0.0118708 0.0118832 0.0118957 0.0119081 0.0119206 0.011933 0.0119455 0.0119579 +-0.00290079 -0.00262352 -0.00204559 -0.00109396 0.000109671 0.00144853 0.00285491 0.00428727 0.00571271 0.00709449 0.00837625 0.00945293 0.0101518 0.0104195 0.0104841 0.0105048 0.0105184 0.0105311 0.0105435 0.010556 0.0105684 0.0105809 0.0105934 0.0106058 0.0106183 0.0106307 0.0106432 0.0106556 0.0106681 0.0106805 0.010693 0.0107054 0.0107179 0.0107303 0.0107428 0.0107553 0.0107677 0.0107802 0.0107926 0.0108051 0.0108175 0.01083 0.0108424 0.0108549 0.0108673 0.0108798 0.0108922 0.0109047 0.0109171 0.0109296 0.0109421 0.0109545 0.010967 0.0109794 0.0109919 0.0110043 0.0110168 0.0110292 0.0110417 0.0110541 0.0110666 0.011079 0.0110915 0.011104 0.0111164 0.0111289 0.0111413 0.0111538 0.0111662 0.0111787 0.0111911 0.0112036 0.011216 0.0112285 0.0112409 0.0112534 0.0112658 0.0112783 0.0112908 0.0113032 0.0113157 0.0113281 0.0113406 0.011353 0.0113655 0.0113779 0.0113904 0.0114028 0.0114153 0.0114277 0.0114402 0.0114527 0.0114651 0.0114776 0.01149 0.0115025 0.0115149 0.0115274 0.0115398 0.0115523 0.0115647 0.0115772 0.0115896 0.0116021 0.0116145 0.011627 0.0116395 0.0116519 0.0116644 0.0116768 0.0116893 0.0117017 0.0117142 0.0117266 0.0117391 0.0117515 0.011764 0.0117764 0.0117889 0.0118013 0.0118138 0.0118263 0.0118387 0.0118512 0.0118636 0.0118761 0.0118885 0.011901 0.0119134 0.0119259 0.0119383 0.0119508 0.0119632 +-0.00290227 -0.00262468 -0.00204623 -0.00109415 0.000109758 0.0014488 0.00285534 0.00428785 0.00571347 0.00709552 0.00837771 0.00945517 0.0101553 0.0104238 0.0104887 0.0105094 0.0105231 0.0105357 0.0105482 0.0105607 0.0105731 0.0105856 0.0105981 0.0106105 0.010623 0.0106354 0.0106479 0.0106603 0.0106728 0.0106853 0.0106977 0.0107102 0.0107226 0.0107351 0.0107476 0.01076 0.0107725 0.0107849 0.0107974 0.0108099 0.0108223 0.0108348 0.0108472 0.0108597 0.0108722 0.0108846 0.0108971 0.0109095 0.010922 0.0109345 0.0109469 0.0109594 0.0109718 0.0109843 0.0109967 0.0110092 0.0110217 0.0110341 0.0110466 0.011059 0.0110715 0.011084 0.0110964 0.0111089 0.0111213 0.0111338 0.0111463 0.0111587 0.0111712 0.0111836 0.0111961 0.0112086 0.011221 0.0112335 0.0112459 0.0112584 0.0112709 0.0112833 0.0112958 0.0113082 0.0113207 0.0113332 0.0113456 0.0113581 0.0113705 0.011383 0.0113954 0.0114079 0.0114204 0.0114328 0.0114453 0.0114577 0.0114702 0.0114827 0.0114951 0.0115076 0.01152 0.0115325 0.011545 0.0115574 0.0115699 0.0115823 0.0115948 0.0116073 0.0116197 0.0116322 0.0116446 0.0116571 0.0116695 0.011682 0.0116945 0.0117069 0.0117194 0.0117318 0.0117443 0.0117568 0.0117692 0.0117817 0.0117941 0.0118066 0.0118191 0.0118315 0.011844 0.0118564 0.0118689 0.0118814 0.0118938 0.0119063 0.0119187 0.0119312 0.0119437 0.0119561 0.0119686 +-0.00290375 -0.00262584 -0.00204686 -0.00109434 0.000109845 0.00144907 0.00285576 0.00428842 0.00571423 0.00709653 0.00837916 0.0094574 0.0101587 0.0104282 0.0104933 0.0105141 0.0105277 0.0105404 0.0105529 0.0105653 0.0105778 0.0105903 0.0106027 0.0106152 0.0106277 0.0106401 0.0106526 0.0106651 0.0106775 0.01069 0.0107025 0.0107149 0.0107274 0.0107399 0.0107523 0.0107648 0.0107773 0.0107897 0.0108022 0.0108147 0.0108271 0.0108396 0.010852 0.0108645 0.010877 0.0108894 0.0109019 0.0109144 0.0109268 0.0109393 0.0109518 0.0109642 0.0109767 0.0109892 0.0110016 0.0110141 0.0110266 0.011039 0.0110515 0.011064 0.0110764 0.0110889 0.0111013 0.0111138 0.0111263 0.0111387 0.0111512 0.0111637 0.0111761 0.0111886 0.0112011 0.0112135 0.011226 0.0112385 0.0112509 0.0112634 0.0112759 0.0112883 0.0113008 0.0113133 0.0113257 0.0113382 0.0113507 0.0113631 0.0113756 0.011388 0.0114005 0.011413 0.0114254 0.0114379 0.0114504 0.0114628 0.0114753 0.0114878 0.0115002 0.0115127 0.0115252 0.0115376 0.0115501 0.0115626 0.011575 0.0115875 0.0115999 0.0116124 0.0116249 0.0116373 0.0116498 0.0116623 0.0116747 0.0116872 0.0116997 0.0117121 0.0117246 0.0117371 0.0117495 0.011762 0.0117745 0.0117869 0.0117994 0.0118119 0.0118243 0.0118368 0.0118492 0.0118617 0.0118742 0.0118866 0.0118991 0.0119116 0.011924 0.0119365 0.011949 0.0119614 0.0119739 +-0.00290522 -0.002627 -0.00204749 -0.00109453 0.000109933 0.00144935 0.00285619 0.004289 0.00571498 0.00709755 0.00838061 0.00945963 0.0101622 0.0104325 0.0104979 0.0105187 0.0105324 0.0105451 0.0105576 0.01057 0.0105825 0.010595 0.0106074 0.0106199 0.0106324 0.0106449 0.0106573 0.0106698 0.0106823 0.0106947 0.0107072 0.0107197 0.0107321 0.0107446 0.0107571 0.0107696 0.010782 0.0107945 0.010807 0.0108194 0.0108319 0.0108444 0.0108569 0.0108693 0.0108818 0.0108943 0.0109067 0.0109192 0.0109317 0.0109442 0.0109566 0.0109691 0.0109816 0.010994 0.0110065 0.011019 0.0110314 0.0110439 0.0110564 0.0110689 0.0110813 0.0110938 0.0111063 0.0111187 0.0111312 0.0111437 0.0111562 0.0111686 0.0111811 0.0111936 0.011206 0.0112185 0.011231 0.0112435 0.0112559 0.0112684 0.0112809 0.0112933 0.0113058 0.0113183 0.0113307 0.0113432 0.0113557 0.0113682 0.0113806 0.0113931 0.0114056 0.011418 0.0114305 0.011443 0.0114555 0.0114679 0.0114804 0.0114929 0.0115053 0.0115178 0.0115303 0.0115428 0.0115552 0.0115677 0.0115802 0.0115926 0.0116051 0.0116176 0.01163 0.0116425 0.011655 0.0116675 0.0116799 0.0116924 0.0117049 0.0117173 0.0117298 0.0117423 0.0117548 0.0117672 0.0117797 0.0117922 0.0118046 0.0118171 0.0118296 0.011842 0.0118545 0.011867 0.0118795 0.0118919 0.0119044 0.0119169 0.0119293 0.0119418 0.0119543 0.0119668 0.0119792 +-0.0029067 -0.00262816 -0.00204813 -0.00109472 0.00011002 0.00144962 0.00285661 0.00428957 0.00571574 0.00709857 0.00838205 0.00946185 0.0101656 0.0104369 0.0105025 0.0105233 0.0105371 0.0105497 0.0105622 0.0105747 0.0105872 0.0105997 0.0106121 0.0106246 0.0106371 0.0106496 0.010662 0.0106745 0.010687 0.0106995 0.0107119 0.0107244 0.0107369 0.0107494 0.0107619 0.0107743 0.0107868 0.0107993 0.0108118 0.0108242 0.0108367 0.0108492 0.0108617 0.0108741 0.0108866 0.0108991 0.0109116 0.010924 0.0109365 0.010949 0.0109615 0.010974 0.0109864 0.0109989 0.0110114 0.0110239 0.0110363 0.0110488 0.0110613 0.0110738 0.0110862 0.0110987 0.0111112 0.0111237 0.0111361 0.0111486 0.0111611 0.0111736 0.0111861 0.0111985 0.011211 0.0112235 0.011236 0.0112484 0.0112609 0.0112734 0.0112859 0.0112983 0.0113108 0.0113233 0.0113358 0.0113483 0.0113607 0.0113732 0.0113857 0.0113982 0.0114106 0.0114231 0.0114356 0.0114481 0.0114605 0.011473 0.0114855 0.011498 0.0115104 0.0115229 0.0115354 0.0115479 0.0115603 0.0115728 0.0115853 0.0115978 0.0116103 0.0116227 0.0116352 0.0116477 0.0116602 0.0116726 0.0116851 0.0116976 0.0117101 0.0117225 0.011735 0.0117475 0.01176 0.0117724 0.0117849 0.0117974 0.0118099 0.0118224 0.0118348 0.0118473 0.0118598 0.0118723 0.0118847 0.0118972 0.0119097 0.0119222 0.0119346 0.0119471 0.0119596 0.0119721 0.0119846 +-0.00290818 -0.00262932 -0.00204876 -0.00109491 0.000110107 0.00144989 0.00285703 0.00429015 0.0057165 0.00709959 0.0083835 0.00946407 0.0101691 0.0104412 0.0105071 0.010528 0.0105417 0.0105544 0.0105669 0.0105794 0.0105919 0.0106043 0.0106168 0.0106293 0.0106418 0.0106543 0.0106668 0.0106792 0.0106917 0.0107042 0.0107167 0.0107292 0.0107416 0.0107541 0.0107666 0.0107791 0.0107916 0.0108041 0.0108165 0.010829 0.0108415 0.010854 0.0108665 0.010879 0.0108914 0.0109039 0.0109164 0.0109289 0.0109414 0.0109538 0.0109663 0.0109788 0.0109913 0.0110038 0.0110163 0.0110287 0.0110412 0.0110537 0.0110662 0.0110787 0.0110912 0.0111036 0.0111161 0.0111286 0.0111411 0.0111536 0.011166 0.0111785 0.011191 0.0112035 0.011216 0.0112285 0.0112409 0.0112534 0.0112659 0.0112784 0.0112909 0.0113034 0.0113158 0.0113283 0.0113408 0.0113533 0.0113658 0.0113782 0.0113907 0.0114032 0.0114157 0.0114282 0.0114407 0.0114531 0.0114656 0.0114781 0.0114906 0.0115031 0.0115156 0.011528 0.0115405 0.011553 0.0115655 0.011578 0.0115904 0.0116029 0.0116154 0.0116279 0.0116404 0.0116529 0.0116653 0.0116778 0.0116903 0.0117028 0.0117153 0.0117277 0.0117402 0.0117527 0.0117652 0.0117777 0.0117902 0.0118026 0.0118151 0.0118276 0.0118401 0.0118526 0.011865 0.0118775 0.01189 0.0119025 0.011915 0.0119275 0.0119399 0.0119524 0.0119649 0.0119774 0.0119899 +-0.00290965 -0.00263048 -0.00204939 -0.00109509 0.000110195 0.00145017 0.00285746 0.00429072 0.00571726 0.0071006 0.00838494 0.00946629 0.0101725 0.0104455 0.0105117 0.0105326 0.0105464 0.010559 0.0105716 0.010584 0.0105965 0.010609 0.0106215 0.010634 0.0106465 0.010659 0.0106715 0.010684 0.0106964 0.0107089 0.0107214 0.0107339 0.0107464 0.0107589 0.0107714 0.0107839 0.0107963 0.0108088 0.0108213 0.0108338 0.0108463 0.0108588 0.0108713 0.0108838 0.0108962 0.0109087 0.0109212 0.0109337 0.0109462 0.0109587 0.0109712 0.0109837 0.0109962 0.0110086 0.0110211 0.0110336 0.0110461 0.0110586 0.0110711 0.0110836 0.0110961 0.0111085 0.011121 0.0111335 0.011146 0.0111585 0.011171 0.0111835 0.011196 0.0112085 0.0112209 0.0112334 0.0112459 0.0112584 0.0112709 0.0112834 0.0112959 0.0113084 0.0113208 0.0113333 0.0113458 0.0113583 0.0113708 0.0113833 0.0113958 0.0114083 0.0114207 0.0114332 0.0114457 0.0114582 0.0114707 0.0114832 0.0114957 0.0115082 0.0115207 0.0115331 0.0115456 0.0115581 0.0115706 0.0115831 0.0115956 0.0116081 0.0116206 0.011633 0.0116455 0.011658 0.0116705 0.011683 0.0116955 0.011708 0.0117205 0.0117329 0.0117454 0.0117579 0.0117704 0.0117829 0.0117954 0.0118079 0.0118204 0.0118328 0.0118453 0.0118578 0.0118703 0.0118828 0.0118953 0.0119078 0.0119203 0.0119328 0.0119452 0.0119577 0.0119702 0.0119827 0.0119952 +-0.00291113 -0.00263164 -0.00205002 -0.00109528 0.000110282 0.00145044 0.00285788 0.0042913 0.00571801 0.00710162 0.00838638 0.00946851 0.0101759 0.0104499 0.0105163 0.0105373 0.010551 0.0105637 0.0105762 0.0105887 0.0106012 0.0106137 0.0106262 0.0106387 0.0106512 0.0106637 0.0106762 0.0106887 0.0107012 0.0107137 0.0107262 0.0107386 0.0107511 0.0107636 0.0107761 0.0107886 0.0108011 0.0108136 0.0108261 0.0108386 0.0108511 0.0108636 0.0108761 0.0108886 0.0109011 0.0109136 0.0109261 0.0109385 0.010951 0.0109635 0.010976 0.0109885 0.011001 0.0110135 0.011026 0.0110385 0.011051 0.0110635 0.011076 0.0110885 0.011101 0.0111135 0.011126 0.0111384 0.0111509 0.0111634 0.0111759 0.0111884 0.0112009 0.0112134 0.0112259 0.0112384 0.0112509 0.0112634 0.0112759 0.0112884 0.0113009 0.0113134 0.0113259 0.0113383 0.0113508 0.0113633 0.0113758 0.0113883 0.0114008 0.0114133 0.0114258 0.0114383 0.0114508 0.0114633 0.0114758 0.0114883 0.0115008 0.0115133 0.0115258 0.0115382 0.0115507 0.0115632 0.0115757 0.0115882 0.0116007 0.0116132 0.0116257 0.0116382 0.0116507 0.0116632 0.0116757 0.0116882 0.0117007 0.0117132 0.0117256 0.0117381 0.0117506 0.0117631 0.0117756 0.0117881 0.0118006 0.0118131 0.0118256 0.0118381 0.0118506 0.0118631 0.0118756 0.0118881 0.0119006 0.0119131 0.0119256 0.011938 0.0119505 0.011963 0.0119755 0.011988 0.0120005 +-0.0029126 -0.0026328 -0.00205065 -0.00109547 0.000110369 0.00145071 0.0028583 0.00429187 0.00571877 0.00710263 0.00838782 0.00947072 0.0101794 0.0104542 0.0105209 0.0105419 0.0105557 0.0105684 0.0105809 0.0105934 0.0106059 0.0106184 0.0106309 0.0106434 0.0106559 0.0106684 0.0106809 0.0106934 0.0107059 0.0107184 0.0107309 0.0107434 0.0107559 0.0107684 0.0107809 0.0107934 0.0108059 0.0108184 0.0108309 0.0108434 0.0108559 0.0108684 0.0108809 0.0108934 0.0109059 0.0109184 0.0109309 0.0109434 0.0109559 0.0109684 0.0109809 0.0109934 0.0110059 0.0110184 0.0110309 0.0110434 0.0110559 0.0110684 0.0110809 0.0110934 0.0111059 0.0111184 0.0111309 0.0111434 0.0111559 0.0111684 0.0111809 0.0111934 0.0112059 0.0112184 0.0112309 0.0112434 0.0112559 0.0112684 0.0112809 0.0112934 0.0113059 0.0113184 0.0113309 0.0113434 0.0113559 0.0113684 0.0113809 0.0113934 0.0114059 0.0114184 0.0114309 0.0114434 0.0114559 0.0114684 0.0114809 0.0114934 0.0115059 0.0115184 0.0115309 0.0115434 0.0115559 0.0115683 0.0115808 0.0115933 0.0116058 0.0116183 0.0116308 0.0116433 0.0116558 0.0116683 0.0116808 0.0116933 0.0117058 0.0117183 0.0117308 0.0117433 0.0117558 0.0117683 0.0117808 0.0117933 0.0118058 0.0118183 0.0118308 0.0118433 0.0118558 0.0118683 0.0118808 0.0118933 0.0119058 0.0119183 0.0119308 0.0119433 0.0119558 0.0119683 0.0119808 0.0119933 0.0120058 +-0.00291407 -0.00263395 -0.00205128 -0.00109566 0.000110456 0.00145098 0.00285872 0.00429244 0.00571952 0.00710364 0.00838926 0.00947293 0.0101828 0.0104585 0.0105255 0.0105465 0.0105603 0.010573 0.0105855 0.0105981 0.0106106 0.0106231 0.0106356 0.0106481 0.0106606 0.0106731 0.0106856 0.0106981 0.0107106 0.0107231 0.0107356 0.0107481 0.0107606 0.0107731 0.0107856 0.0107981 0.0108106 0.0108232 0.0108357 0.0108482 0.0108607 0.0108732 0.0108857 0.0108982 0.0109107 0.0109232 0.0109357 0.0109482 0.0109607 0.0109732 0.0109857 0.0109982 0.0110107 0.0110232 0.0110357 0.0110482 0.0110608 0.0110733 0.0110858 0.0110983 0.0111108 0.0111233 0.0111358 0.0111483 0.0111608 0.0111733 0.0111858 0.0111983 0.0112108 0.0112233 0.0112358 0.0112483 0.0112608 0.0112733 0.0112858 0.0112984 0.0113109 0.0113234 0.0113359 0.0113484 0.0113609 0.0113734 0.0113859 0.0113984 0.0114109 0.0114234 0.0114359 0.0114484 0.0114609 0.0114734 0.0114859 0.0114984 0.0115109 0.0115234 0.011536 0.0115485 0.011561 0.0115735 0.011586 0.0115985 0.011611 0.0116235 0.011636 0.0116485 0.011661 0.0116735 0.011686 0.0116985 0.011711 0.0117235 0.011736 0.0117485 0.011761 0.0117735 0.0117861 0.0117986 0.0118111 0.0118236 0.0118361 0.0118486 0.0118611 0.0118736 0.0118861 0.0118986 0.0119111 0.0119236 0.0119361 0.0119486 0.0119611 0.0119736 0.0119861 0.0119986 0.0120111 +-0.00291555 -0.00263511 -0.00205191 -0.00109585 0.000110544 0.00145126 0.00285915 0.00429301 0.00572027 0.00710465 0.00839069 0.00947513 0.0101862 0.0104629 0.0105301 0.0105512 0.010565 0.0105777 0.0105902 0.0106027 0.0106152 0.0106277 0.0106403 0.0106528 0.0106653 0.0106778 0.0106903 0.0107028 0.0107153 0.0107278 0.0107403 0.0107529 0.0107654 0.0107779 0.0107904 0.0108029 0.0108154 0.0108279 0.0108404 0.0108529 0.0108655 0.010878 0.0108905 0.010903 0.0109155 0.010928 0.0109405 0.010953 0.0109655 0.0109781 0.0109906 0.0110031 0.0110156 0.0110281 0.0110406 0.0110531 0.0110656 0.0110781 0.0110907 0.0111032 0.0111157 0.0111282 0.0111407 0.0111532 0.0111657 0.0111782 0.0111907 0.0112033 0.0112158 0.0112283 0.0112408 0.0112533 0.0112658 0.0112783 0.0112908 0.0113033 0.0113159 0.0113284 0.0113409 0.0113534 0.0113659 0.0113784 0.0113909 0.0114034 0.0114159 0.0114285 0.011441 0.0114535 0.011466 0.0114785 0.011491 0.0115035 0.011516 0.0115285 0.011541 0.0115536 0.0115661 0.0115786 0.0115911 0.0116036 0.0116161 0.0116286 0.0116411 0.0116536 0.0116662 0.0116787 0.0116912 0.0117037 0.0117162 0.0117287 0.0117412 0.0117537 0.0117662 0.0117788 0.0117913 0.0118038 0.0118163 0.0118288 0.0118413 0.0118538 0.0118663 0.0118788 0.0118914 0.0119039 0.0119164 0.0119289 0.0119414 0.0119539 0.0119664 0.0119789 0.0119914 0.012004 0.0120165 +-0.00291702 -0.00263626 -0.00205254 -0.00109603 0.000110631 0.00145153 0.00285957 0.00429359 0.00572103 0.00710566 0.00839212 0.00947733 0.0101896 0.0104672 0.0105347 0.0105558 0.0105696 0.0105823 0.0105949 0.0106074 0.0106199 0.0106324 0.0106449 0.0106575 0.01067 0.0106825 0.010695 0.0107075 0.01072 0.0107326 0.0107451 0.0107576 0.0107701 0.0107826 0.0107951 0.0108077 0.0108202 0.0108327 0.0108452 0.0108577 0.0108702 0.0108828 0.0108953 0.0109078 0.0109203 0.0109328 0.0109453 0.0109579 0.0109704 0.0109829 0.0109954 0.0110079 0.0110204 0.011033 0.0110455 0.011058 0.0110705 0.011083 0.0110955 0.0111081 0.0111206 0.0111331 0.0111456 0.0111581 0.0111706 0.0111832 0.0111957 0.0112082 0.0112207 0.0112332 0.0112457 0.0112583 0.0112708 0.0112833 0.0112958 0.0113083 0.0113208 0.0113334 0.0113459 0.0113584 0.0113709 0.0113834 0.0113959 0.0114085 0.011421 0.0114335 0.011446 0.0114585 0.011471 0.0114836 0.0114961 0.0115086 0.0115211 0.0115336 0.0115461 0.0115587 0.0115712 0.0115837 0.0115962 0.0116087 0.0116212 0.0116338 0.0116463 0.0116588 0.0116713 0.0116838 0.0116963 0.0117089 0.0117214 0.0117339 0.0117464 0.0117589 0.0117714 0.011784 0.0117965 0.011809 0.0118215 0.011834 0.0118465 0.0118591 0.0118716 0.0118841 0.0118966 0.0119091 0.0119216 0.0119342 0.0119467 0.0119592 0.0119717 0.0119842 0.0119967 0.0120093 0.0120218 +-0.00291849 -0.00263742 -0.00205316 -0.00109622 0.000110718 0.0014518 0.00285999 0.00429416 0.00572178 0.00710667 0.00839356 0.00947953 0.010193 0.0104715 0.0105392 0.0105605 0.0105743 0.010587 0.0105995 0.0106121 0.0106246 0.0106371 0.0106496 0.0106621 0.0106747 0.0106872 0.0106997 0.0107122 0.0107248 0.0107373 0.0107498 0.0107623 0.0107748 0.0107874 0.0107999 0.0108124 0.0108249 0.0108375 0.01085 0.0108625 0.010875 0.0108875 0.0109001 0.0109126 0.0109251 0.0109376 0.0109502 0.0109627 0.0109752 0.0109877 0.0110002 0.0110128 0.0110253 0.0110378 0.0110503 0.0110629 0.0110754 0.0110879 0.0111004 0.011113 0.0111255 0.011138 0.0111505 0.011163 0.0111756 0.0111881 0.0112006 0.0112131 0.0112257 0.0112382 0.0112507 0.0112632 0.0112757 0.0112883 0.0113008 0.0113133 0.0113258 0.0113384 0.0113509 0.0113634 0.0113759 0.0113884 0.011401 0.0114135 0.011426 0.0114385 0.0114511 0.0114636 0.0114761 0.0114886 0.0115011 0.0115137 0.0115262 0.0115387 0.0115512 0.0115638 0.0115763 0.0115888 0.0116013 0.0116138 0.0116264 0.0116389 0.0116514 0.0116639 0.0116765 0.011689 0.0117015 0.011714 0.0117265 0.0117391 0.0117516 0.0117641 0.0117766 0.0117892 0.0118017 0.0118142 0.0118267 0.0118392 0.0118518 0.0118643 0.0118768 0.0118893 0.0119019 0.0119144 0.0119269 0.0119394 0.011952 0.0119645 0.011977 0.0119895 0.012002 0.0120146 0.0120271 +-0.00291996 -0.00263857 -0.00205379 -0.00109641 0.000110806 0.00145207 0.00286041 0.00429473 0.00572253 0.00710768 0.00839499 0.00948173 0.0101964 0.0104758 0.0105438 0.0105651 0.0105789 0.0105916 0.0106042 0.0106167 0.0106292 0.0106418 0.0106543 0.0106668 0.0106794 0.0106919 0.0107044 0.0107169 0.0107295 0.010742 0.0107545 0.0107671 0.0107796 0.0107921 0.0108046 0.0108172 0.0108297 0.0108422 0.0108548 0.0108673 0.0108798 0.0108923 0.0109049 0.0109174 0.0109299 0.0109424 0.010955 0.0109675 0.01098 0.0109926 0.0110051 0.0110176 0.0110301 0.0110427 0.0110552 0.0110677 0.0110803 0.0110928 0.0111053 0.0111178 0.0111304 0.0111429 0.0111554 0.011168 0.0111805 0.011193 0.0112055 0.0112181 0.0112306 0.0112431 0.0112557 0.0112682 0.0112807 0.0112932 0.0113058 0.0113183 0.0113308 0.0113434 0.0113559 0.0113684 0.0113809 0.0113935 0.011406 0.0114185 0.011431 0.0114436 0.0114561 0.0114686 0.0114812 0.0114937 0.0115062 0.0115187 0.0115313 0.0115438 0.0115563 0.0115689 0.0115814 0.0115939 0.0116064 0.011619 0.0116315 0.011644 0.0116566 0.0116691 0.0116816 0.0116941 0.0117067 0.0117192 0.0117317 0.0117442 0.0117568 0.0117693 0.0117818 0.0117944 0.0118069 0.0118194 0.0118319 0.0118445 0.011857 0.0118695 0.0118821 0.0118946 0.0119071 0.0119196 0.0119322 0.0119447 0.0119572 0.0119698 0.0119823 0.0119948 0.0120073 0.0120199 0.0120324 +-0.00292143 -0.00263972 -0.00205442 -0.0010966 0.000110893 0.00145234 0.00286083 0.0042953 0.00572328 0.00710869 0.00839641 0.00948392 0.0101998 0.0104802 0.0105484 0.0105697 0.0105836 0.0105963 0.0106088 0.0106214 0.0106339 0.0106464 0.010659 0.0106715 0.010684 0.0106966 0.0107091 0.0107216 0.0107342 0.0107467 0.0107593 0.0107718 0.0107843 0.0107969 0.0108094 0.0108219 0.0108345 0.010847 0.0108595 0.0108721 0.0108846 0.0108971 0.0109097 0.0109222 0.0109347 0.0109473 0.0109598 0.0109723 0.0109849 0.0109974 0.0110099 0.0110225 0.011035 0.0110475 0.0110601 0.0110726 0.0110851 0.0110977 0.0111102 0.0111227 0.0111353 0.0111478 0.0111603 0.0111729 0.0111854 0.0111979 0.0112105 0.011223 0.0112355 0.0112481 0.0112606 0.0112731 0.0112857 0.0112982 0.0113107 0.0113233 0.0113358 0.0113483 0.0113609 0.0113734 0.0113859 0.0113985 0.011411 0.0114235 0.0114361 0.0114486 0.0114612 0.0114737 0.0114862 0.0114988 0.0115113 0.0115238 0.0115364 0.0115489 0.0115614 0.011574 0.0115865 0.011599 0.0116116 0.0116241 0.0116366 0.0116492 0.0116617 0.0116742 0.0116868 0.0116993 0.0117118 0.0117244 0.0117369 0.0117494 0.011762 0.0117745 0.011787 0.0117996 0.0118121 0.0118246 0.0118372 0.0118497 0.0118622 0.0118748 0.0118873 0.0118998 0.0119124 0.0119249 0.0119374 0.01195 0.0119625 0.011975 0.0119876 0.0120001 0.0120126 0.0120252 0.0120377 +-0.0029229 -0.00264088 -0.00205504 -0.00109678 0.00011098 0.00145261 0.00286125 0.00429587 0.00572403 0.00710969 0.00839784 0.00948611 0.0102032 0.0104845 0.010553 0.0105743 0.0105882 0.0106009 0.0106135 0.010626 0.0106386 0.0106511 0.0106637 0.0106762 0.0106887 0.0107013 0.0107138 0.0107264 0.0107389 0.0107514 0.010764 0.0107765 0.0107891 0.0108016 0.0108141 0.0108267 0.0108392 0.0108518 0.0108643 0.0108768 0.0108894 0.0109019 0.0109144 0.010927 0.0109395 0.0109521 0.0109646 0.0109771 0.0109897 0.0110022 0.0110148 0.0110273 0.0110398 0.0110524 0.0110649 0.0110775 0.01109 0.0111025 0.0111151 0.0111276 0.0111402 0.0111527 0.0111652 0.0111778 0.0111903 0.0112029 0.0112154 0.0112279 0.0112405 0.011253 0.0112656 0.0112781 0.0112906 0.0113032 0.0113157 0.0113283 0.0113408 0.0113533 0.0113659 0.0113784 0.011391 0.0114035 0.011416 0.0114286 0.0114411 0.0114537 0.0114662 0.0114787 0.0114913 0.0115038 0.0115164 0.0115289 0.0115414 0.011554 0.0115665 0.0115791 0.0115916 0.0116041 0.0116167 0.0116292 0.0116417 0.0116543 0.0116668 0.0116794 0.0116919 0.0117044 0.011717 0.0117295 0.0117421 0.0117546 0.0117671 0.0117797 0.0117922 0.0118048 0.0118173 0.0118298 0.0118424 0.0118549 0.0118675 0.01188 0.0118925 0.0119051 0.0119176 0.0119302 0.0119427 0.0119552 0.0119678 0.0119803 0.0119929 0.0120054 0.0120179 0.0120305 0.012043 +-0.00292437 -0.00264203 -0.00205567 -0.00109697 0.000111068 0.00145288 0.00286167 0.00429644 0.00572478 0.0071107 0.00839926 0.0094883 0.0102066 0.0104888 0.0105576 0.010579 0.0105928 0.0106056 0.0106181 0.0106307 0.0106432 0.0106558 0.0106683 0.0106809 0.0106934 0.010706 0.0107185 0.0107311 0.0107436 0.0107561 0.0107687 0.0107812 0.0107938 0.0108063 0.0108189 0.0108314 0.010844 0.0108565 0.0108691 0.0108816 0.0108941 0.0109067 0.0109192 0.0109318 0.0109443 0.0109569 0.0109694 0.010982 0.0109945 0.0110071 0.0110196 0.0110321 0.0110447 0.0110572 0.0110698 0.0110823 0.0110949 0.0111074 0.01112 0.0111325 0.0111451 0.0111576 0.0111701 0.0111827 0.0111952 0.0112078 0.0112203 0.0112329 0.0112454 0.011258 0.0112705 0.0112831 0.0112956 0.0113081 0.0113207 0.0113332 0.0113458 0.0113583 0.0113709 0.0113834 0.011396 0.0114085 0.0114211 0.0114336 0.0114461 0.0114587 0.0114712 0.0114838 0.0114963 0.0115089 0.0115214 0.011534 0.0115465 0.0115591 0.0115716 0.0115841 0.0115967 0.0116092 0.0116218 0.0116343 0.0116469 0.0116594 0.011672 0.0116845 0.011697 0.0117096 0.0117221 0.0117347 0.0117472 0.0117598 0.0117723 0.0117849 0.0117974 0.01181 0.0118225 0.011835 0.0118476 0.0118601 0.0118727 0.0118852 0.0118978 0.0119103 0.0119229 0.0119354 0.011948 0.0119605 0.011973 0.0119856 0.0119981 0.0120107 0.0120232 0.0120358 0.0120483 +-0.00292584 -0.00264318 -0.00205629 -0.00109715 0.000111155 0.00145315 0.00286209 0.00429701 0.00572553 0.0071117 0.00840069 0.00949048 0.01021 0.0104931 0.0105621 0.0105836 0.0105975 0.0106102 0.0106228 0.0106354 0.0106479 0.0106605 0.010673 0.0106856 0.0106981 0.0107107 0.0107232 0.0107358 0.0107483 0.0107609 0.0107734 0.010786 0.0107985 0.0108111 0.0108236 0.0108362 0.0108487 0.0108613 0.0108738 0.0108864 0.0108989 0.0109115 0.010924 0.0109366 0.0109491 0.0109617 0.0109742 0.0109868 0.0109993 0.0110119 0.0110244 0.011037 0.0110495 0.0110621 0.0110746 0.0110872 0.0110997 0.0111123 0.0111248 0.0111374 0.0111499 0.0111625 0.011175 0.0111876 0.0112002 0.0112127 0.0112253 0.0112378 0.0112504 0.0112629 0.0112755 0.011288 0.0113006 0.0113131 0.0113257 0.0113382 0.0113508 0.0113633 0.0113759 0.0113884 0.011401 0.0114135 0.0114261 0.0114386 0.0114512 0.0114637 0.0114763 0.0114888 0.0115014 0.0115139 0.0115265 0.011539 0.0115516 0.0115641 0.0115767 0.0115892 0.0116018 0.0116143 0.0116269 0.0116394 0.011652 0.0116645 0.0116771 0.0116896 0.0117022 0.0117147 0.0117273 0.0117398 0.0117524 0.0117649 0.0117775 0.01179 0.0118026 0.0118151 0.0118277 0.0118403 0.0118528 0.0118654 0.0118779 0.0118905 0.011903 0.0119156 0.0119281 0.0119407 0.0119532 0.0119658 0.0119783 0.0119909 0.0120034 0.012016 0.0120285 0.0120411 0.0120536 +-0.00292731 -0.00264433 -0.00205692 -0.00109734 0.000111242 0.00145343 0.00286251 0.00429758 0.00572628 0.00711271 0.00840211 0.00949266 0.0102134 0.0104974 0.0105667 0.0105882 0.0106021 0.0106149 0.0106274 0.01064 0.0106526 0.0106651 0.0106777 0.0106902 0.0107028 0.0107153 0.0107279 0.0107405 0.010753 0.0107656 0.0107781 0.0107907 0.0108032 0.0108158 0.0108284 0.0108409 0.0108535 0.010866 0.0108786 0.0108911 0.0109037 0.0109163 0.0109288 0.0109414 0.0109539 0.0109665 0.010979 0.0109916 0.0110042 0.0110167 0.0110293 0.0110418 0.0110544 0.0110669 0.0110795 0.0110921 0.0111046 0.0111172 0.0111297 0.0111423 0.0111548 0.0111674 0.01118 0.0111925 0.0112051 0.0112176 0.0112302 0.0112427 0.0112553 0.0112678 0.0112804 0.011293 0.0113055 0.0113181 0.0113306 0.0113432 0.0113557 0.0113683 0.0113809 0.0113934 0.011406 0.0114185 0.0114311 0.0114436 0.0114562 0.0114688 0.0114813 0.0114939 0.0115064 0.011519 0.0115315 0.0115441 0.0115567 0.0115692 0.0115818 0.0115943 0.0116069 0.0116194 0.011632 0.0116445 0.0116571 0.0116697 0.0116822 0.0116948 0.0117073 0.0117199 0.0117324 0.011745 0.0117576 0.0117701 0.0117827 0.0117952 0.0118078 0.0118203 0.0118329 0.0118455 0.011858 0.0118706 0.0118831 0.0118957 0.0119082 0.0119208 0.0119334 0.0119459 0.0119585 0.011971 0.0119836 0.0119961 0.0120087 0.0120213 0.0120338 0.0120464 0.0120589 +-0.00292878 -0.00264548 -0.00205754 -0.00109753 0.00011133 0.0014537 0.00286293 0.00429814 0.00572702 0.00711371 0.00840353 0.00949483 0.0102167 0.0105017 0.0105713 0.0105928 0.0106067 0.0106195 0.0106321 0.0106447 0.0106572 0.0106698 0.0106823 0.0106949 0.0107075 0.01072 0.0107326 0.0107452 0.0107577 0.0107703 0.0107829 0.0107954 0.010808 0.0108205 0.0108331 0.0108457 0.0108582 0.0108708 0.0108834 0.0108959 0.0109085 0.010921 0.0109336 0.0109462 0.0109587 0.0109713 0.0109839 0.0109964 0.011009 0.0110215 0.0110341 0.0110467 0.0110592 0.0110718 0.0110844 0.0110969 0.0111095 0.011122 0.0111346 0.0111472 0.0111597 0.0111723 0.0111849 0.0111974 0.01121 0.0112225 0.0112351 0.0112477 0.0112602 0.0112728 0.0112854 0.0112979 0.0113105 0.011323 0.0113356 0.0113482 0.0113607 0.0113733 0.0113859 0.0113984 0.011411 0.0114235 0.0114361 0.0114487 0.0114612 0.0114738 0.0114864 0.0114989 0.0115115 0.011524 0.0115366 0.0115492 0.0115617 0.0115743 0.0115869 0.0115994 0.011612 0.0116245 0.0116371 0.0116497 0.0116622 0.0116748 0.0116873 0.0116999 0.0117125 0.011725 0.0117376 0.0117502 0.0117627 0.0117753 0.0117878 0.0118004 0.011813 0.0118255 0.0118381 0.0118507 0.0118632 0.0118758 0.0118883 0.0119009 0.0119135 0.011926 0.0119386 0.0119512 0.0119637 0.0119763 0.0119888 0.0120014 0.012014 0.0120265 0.0120391 0.0120517 0.0120642 +-0.00293025 -0.00264663 -0.00205816 -0.00109771 0.000111417 0.00145397 0.00286335 0.00429871 0.00572777 0.00711471 0.00840494 0.00949701 0.0102201 0.010506 0.0105759 0.0105975 0.0106114 0.0106241 0.0106367 0.0106493 0.0106619 0.0106745 0.010687 0.0106996 0.0107122 0.0107247 0.0107373 0.0107499 0.0107624 0.010775 0.0107876 0.0108001 0.0108127 0.0108253 0.0108378 0.0108504 0.010863 0.0108755 0.0108881 0.0109007 0.0109132 0.0109258 0.0109384 0.010951 0.0109635 0.0109761 0.0109887 0.0110012 0.0110138 0.0110264 0.0110389 0.0110515 0.0110641 0.0110766 0.0110892 0.0111018 0.0111143 0.0111269 0.0111395 0.011152 0.0111646 0.0111772 0.0111898 0.0112023 0.0112149 0.0112275 0.01124 0.0112526 0.0112652 0.0112777 0.0112903 0.0113029 0.0113154 0.011328 0.0113406 0.0113531 0.0113657 0.0113783 0.0113908 0.0114034 0.011416 0.0114285 0.0114411 0.0114537 0.0114663 0.0114788 0.0114914 0.011504 0.0115165 0.0115291 0.0115417 0.0115542 0.0115668 0.0115794 0.0115919 0.0116045 0.0116171 0.0116296 0.0116422 0.0116548 0.0116673 0.0116799 0.0116925 0.011705 0.0117176 0.0117302 0.0117427 0.0117553 0.0117679 0.0117805 0.011793 0.0118056 0.0118182 0.0118307 0.0118433 0.0118559 0.0118684 0.011881 0.0118936 0.0119061 0.0119187 0.0119313 0.0119438 0.0119564 0.011969 0.0119815 0.0119941 0.0120067 0.0120192 0.0120318 0.0120444 0.012057 0.0120695 +-0.00293172 -0.00264777 -0.00205878 -0.0010979 0.000111505 0.00145424 0.00286377 0.00429928 0.00572852 0.00711571 0.00840636 0.00949918 0.0102235 0.0105103 0.0105804 0.0106021 0.010616 0.0106288 0.0106414 0.010654 0.0106665 0.0106791 0.0106917 0.0107043 0.0107168 0.0107294 0.010742 0.0107546 0.0107671 0.0107797 0.0107923 0.0108049 0.0108174 0.01083 0.0108426 0.0108552 0.0108677 0.0108803 0.0108929 0.0109054 0.010918 0.0109306 0.0109432 0.0109557 0.0109683 0.0109809 0.0109935 0.011006 0.0110186 0.0110312 0.0110438 0.0110563 0.0110689 0.0110815 0.0110941 0.0111066 0.0111192 0.0111318 0.0111444 0.0111569 0.0111695 0.0111821 0.0111946 0.0112072 0.0112198 0.0112324 0.0112449 0.0112575 0.0112701 0.0112827 0.0112952 0.0113078 0.0113204 0.011333 0.0113455 0.0113581 0.0113707 0.0113833 0.0113958 0.0114084 0.011421 0.0114336 0.0114461 0.0114587 0.0114713 0.0114838 0.0114964 0.011509 0.0115216 0.0115341 0.0115467 0.0115593 0.0115719 0.0115844 0.011597 0.0116096 0.0116222 0.0116347 0.0116473 0.0116599 0.0116725 0.011685 0.0116976 0.0117102 0.0117227 0.0117353 0.0117479 0.0117605 0.011773 0.0117856 0.0117982 0.0118108 0.0118233 0.0118359 0.0118485 0.0118611 0.0118736 0.0118862 0.0118988 0.0119114 0.0119239 0.0119365 0.0119491 0.0119617 0.0119742 0.0119868 0.0119994 0.0120119 0.0120245 0.0120371 0.0120497 0.0120622 0.0120748 +-0.00293318 -0.00264892 -0.0020594 -0.00109808 0.000111592 0.00145451 0.00286419 0.00429985 0.00572926 0.00711671 0.00840777 0.00950134 0.0102269 0.0105146 0.010585 0.0106067 0.0106206 0.0106334 0.010646 0.0106586 0.0106712 0.0106838 0.0106964 0.0107089 0.0107215 0.0107341 0.0107467 0.0107593 0.0107718 0.0107844 0.010797 0.0108096 0.0108222 0.0108347 0.0108473 0.0108599 0.0108725 0.0108851 0.0108976 0.0109102 0.0109228 0.0109354 0.0109479 0.0109605 0.0109731 0.0109857 0.0109983 0.0110108 0.0110234 0.011036 0.0110486 0.0110612 0.0110737 0.0110863 0.0110989 0.0111115 0.0111241 0.0111366 0.0111492 0.0111618 0.0111744 0.011187 0.0111995 0.0112121 0.0112247 0.0112373 0.0112499 0.0112624 0.011275 0.0112876 0.0113002 0.0113128 0.0113253 0.0113379 0.0113505 0.0113631 0.0113757 0.0113882 0.0114008 0.0114134 0.011426 0.0114386 0.0114511 0.0114637 0.0114763 0.0114889 0.0115015 0.011514 0.0115266 0.0115392 0.0115518 0.0115644 0.0115769 0.0115895 0.0116021 0.0116147 0.0116272 0.0116398 0.0116524 0.011665 0.0116776 0.0116901 0.0117027 0.0117153 0.0117279 0.0117405 0.011753 0.0117656 0.0117782 0.0117908 0.0118034 0.0118159 0.0118285 0.0118411 0.0118537 0.0118663 0.0118788 0.0118914 0.011904 0.0119166 0.0119292 0.0119417 0.0119543 0.0119669 0.0119795 0.0119921 0.0120046 0.0120172 0.0120298 0.0120424 0.012055 0.0120675 0.0120801 +-0.00293465 -0.00265007 -0.00206002 -0.00109826 0.000111679 0.00145478 0.00286461 0.00430041 0.00573001 0.0071177 0.00840918 0.00950351 0.0102302 0.0105189 0.0105896 0.0106113 0.0106253 0.0106381 0.0106507 0.0106633 0.0106759 0.0106884 0.010701 0.0107136 0.0107262 0.0107388 0.0107514 0.0107639 0.0107765 0.0107891 0.0108017 0.0108143 0.0108269 0.0108395 0.010852 0.0108646 0.0108772 0.0108898 0.0109024 0.010915 0.0109276 0.0109401 0.0109527 0.0109653 0.0109779 0.0109905 0.0110031 0.0110157 0.0110282 0.0110408 0.0110534 0.011066 0.0110786 0.0110912 0.0111038 0.0111163 0.0111289 0.0111415 0.0111541 0.0111667 0.0111793 0.0111919 0.0112044 0.011217 0.0112296 0.0112422 0.0112548 0.0112674 0.01128 0.0112925 0.0113051 0.0113177 0.0113303 0.0113429 0.0113555 0.011368 0.0113806 0.0113932 0.0114058 0.0114184 0.011431 0.0114436 0.0114561 0.0114687 0.0114813 0.0114939 0.0115065 0.0115191 0.0115317 0.0115442 0.0115568 0.0115694 0.011582 0.0115946 0.0116072 0.0116197 0.0116323 0.0116449 0.0116575 0.0116701 0.0116827 0.0116953 0.0117078 0.0117204 0.011733 0.0117456 0.0117582 0.0117708 0.0117834 0.0117959 0.0118085 0.0118211 0.0118337 0.0118463 0.0118589 0.0118715 0.011884 0.0118966 0.0119092 0.0119218 0.0119344 0.011947 0.0119596 0.0119721 0.0119847 0.0119973 0.0120099 0.0120225 0.0120351 0.0120477 0.0120602 0.0120728 0.0120854 +-0.00293612 -0.00265121 -0.00206064 -0.00109845 0.000111767 0.00145505 0.00286503 0.00430098 0.00573075 0.0071187 0.00841059 0.00950567 0.0102336 0.0105232 0.0105941 0.0106159 0.0106299 0.0106427 0.0106553 0.0106679 0.0106805 0.0106931 0.0107057 0.0107183 0.0107309 0.0107435 0.0107561 0.0107686 0.0107812 0.0107938 0.0108064 0.010819 0.0108316 0.0108442 0.0108568 0.0108694 0.010882 0.0108946 0.0109071 0.0109197 0.0109323 0.0109449 0.0109575 0.0109701 0.0109827 0.0109953 0.0110079 0.0110205 0.0110331 0.0110456 0.0110582 0.0110708 0.0110834 0.011096 0.0111086 0.0111212 0.0111338 0.0111464 0.011159 0.0111716 0.0111841 0.0111967 0.0112093 0.0112219 0.0112345 0.0112471 0.0112597 0.0112723 0.0112849 0.0112975 0.0113101 0.0113227 0.0113352 0.0113478 0.0113604 0.011373 0.0113856 0.0113982 0.0114108 0.0114234 0.011436 0.0114486 0.0114612 0.0114737 0.0114863 0.0114989 0.0115115 0.0115241 0.0115367 0.0115493 0.0115619 0.0115745 0.0115871 0.0115997 0.0116122 0.0116248 0.0116374 0.01165 0.0116626 0.0116752 0.0116878 0.0117004 0.011713 0.0117256 0.0117382 0.0117507 0.0117633 0.0117759 0.0117885 0.0118011 0.0118137 0.0118263 0.0118389 0.0118515 0.0118641 0.0118767 0.0118892 0.0119018 0.0119144 0.011927 0.0119396 0.0119522 0.0119648 0.0119774 0.01199 0.0120026 0.0120152 0.0120277 0.0120403 0.0120529 0.0120655 0.0120781 0.0120907 +-0.00293758 -0.00265236 -0.00206126 -0.00109863 0.000111854 0.00145532 0.00286544 0.00430154 0.00573149 0.0071197 0.008412 0.00950782 0.0102369 0.0105275 0.0105987 0.0106206 0.0106345 0.0106473 0.01066 0.0106726 0.0106852 0.0106978 0.0107103 0.0107229 0.0107355 0.0107481 0.0107607 0.0107733 0.0107859 0.0107985 0.0108111 0.0108237 0.0108363 0.0108489 0.0108615 0.0108741 0.0108867 0.0108993 0.0109119 0.0109245 0.0109371 0.0109497 0.0109623 0.0109749 0.0109875 0.0110001 0.0110127 0.0110253 0.0110379 0.0110505 0.0110631 0.0110757 0.0110883 0.0111009 0.0111134 0.011126 0.0111386 0.0111512 0.0111638 0.0111764 0.011189 0.0112016 0.0112142 0.0112268 0.0112394 0.011252 0.0112646 0.0112772 0.0112898 0.0113024 0.011315 0.0113276 0.0113402 0.0113528 0.0113654 0.011378 0.0113906 0.0114032 0.0114158 0.0114284 0.011441 0.0114536 0.0114662 0.0114788 0.0114914 0.0115039 0.0115165 0.0115291 0.0115417 0.0115543 0.0115669 0.0115795 0.0115921 0.0116047 0.0116173 0.0116299 0.0116425 0.0116551 0.0116677 0.0116803 0.0116929 0.0117055 0.0117181 0.0117307 0.0117433 0.0117559 0.0117685 0.0117811 0.0117937 0.0118063 0.0118189 0.0118315 0.0118441 0.0118567 0.0118692 0.0118818 0.0118944 0.011907 0.0119196 0.0119322 0.0119448 0.0119574 0.01197 0.0119826 0.0119952 0.0120078 0.0120204 0.012033 0.0120456 0.0120582 0.0120708 0.0120834 0.012096 +-0.00293905 -0.0026535 -0.00206188 -0.00109882 0.000111942 0.00145559 0.00286586 0.00430211 0.00573224 0.00712069 0.00841341 0.00950998 0.0102403 0.0105318 0.0106033 0.0106252 0.0106392 0.010652 0.0106646 0.0106772 0.0106898 0.0107024 0.010715 0.0107276 0.0107402 0.0107528 0.0107654 0.010778 0.0107906 0.0108032 0.0108158 0.0108284 0.010841 0.0108536 0.0108662 0.0108788 0.0108914 0.010904 0.0109167 0.0109293 0.0109419 0.0109545 0.0109671 0.0109797 0.0109923 0.0110049 0.0110175 0.0110301 0.0110427 0.0110553 0.0110679 0.0110805 0.0110931 0.0111057 0.0111183 0.0111309 0.0111435 0.0111561 0.0111687 0.0111813 0.0111939 0.0112065 0.0112191 0.0112317 0.0112443 0.0112569 0.0112695 0.0112821 0.0112947 0.0113073 0.0113199 0.0113325 0.0113451 0.0113577 0.0113703 0.0113829 0.0113955 0.0114082 0.0114208 0.0114334 0.011446 0.0114586 0.0114712 0.0114838 0.0114964 0.011509 0.0115216 0.0115342 0.0115468 0.0115594 0.011572 0.0115846 0.0115972 0.0116098 0.0116224 0.011635 0.0116476 0.0116602 0.0116728 0.0116854 0.011698 0.0117106 0.0117232 0.0117358 0.0117484 0.011761 0.0117736 0.0117862 0.0117988 0.0118114 0.011824 0.0118366 0.0118492 0.0118618 0.0118744 0.011887 0.0118996 0.0119122 0.0119248 0.0119374 0.0119501 0.0119627 0.0119753 0.0119879 0.0120005 0.0120131 0.0120257 0.0120383 0.0120509 0.0120635 0.0120761 0.0120887 0.0121013 +-0.00294051 -0.00265465 -0.0020625 -0.001099 0.000112029 0.00145586 0.00286628 0.00430267 0.00573298 0.00712168 0.00841481 0.00951213 0.0102436 0.0105361 0.0106078 0.0106298 0.0106438 0.0106566 0.0106692 0.0106818 0.0106945 0.0107071 0.0107197 0.0107323 0.0107449 0.0107575 0.0107701 0.0107827 0.0107953 0.0108079 0.0108205 0.0108331 0.0108458 0.0108584 0.010871 0.0108836 0.0108962 0.0109088 0.0109214 0.010934 0.0109466 0.0109592 0.0109718 0.0109844 0.0109971 0.0110097 0.0110223 0.0110349 0.0110475 0.0110601 0.0110727 0.0110853 0.0110979 0.0111105 0.0111231 0.0111357 0.0111484 0.011161 0.0111736 0.0111862 0.0111988 0.0112114 0.011224 0.0112366 0.0112492 0.0112618 0.0112744 0.011287 0.0112997 0.0113123 0.0113249 0.0113375 0.0113501 0.0113627 0.0113753 0.0113879 0.0114005 0.0114131 0.0114257 0.0114383 0.0114509 0.0114636 0.0114762 0.0114888 0.0115014 0.011514 0.0115266 0.0115392 0.0115518 0.0115644 0.011577 0.0115896 0.0116022 0.0116149 0.0116275 0.0116401 0.0116527 0.0116653 0.0116779 0.0116905 0.0117031 0.0117157 0.0117283 0.0117409 0.0117535 0.0117661 0.0117788 0.0117914 0.011804 0.0118166 0.0118292 0.0118418 0.0118544 0.011867 0.0118796 0.0118922 0.0119048 0.0119174 0.0119301 0.0119427 0.0119553 0.0119679 0.0119805 0.0119931 0.0120057 0.0120183 0.0120309 0.0120435 0.0120561 0.0120687 0.0120814 0.012094 0.0121066 +-0.00294198 -0.00265579 -0.00206312 -0.00109918 0.000112116 0.00145612 0.0028667 0.00430324 0.00573372 0.00712268 0.00841622 0.00951428 0.010247 0.0105403 0.0106124 0.0106344 0.0106484 0.0106612 0.0106739 0.0106865 0.0106991 0.0107117 0.0107243 0.0107369 0.0107496 0.0107622 0.0107748 0.0107874 0.0108 0.0108126 0.0108252 0.0108379 0.0108505 0.0108631 0.0108757 0.0108883 0.0109009 0.0109135 0.0109262 0.0109388 0.0109514 0.010964 0.0109766 0.0109892 0.0110018 0.0110145 0.0110271 0.0110397 0.0110523 0.0110649 0.0110775 0.0110901 0.0111027 0.0111154 0.011128 0.0111406 0.0111532 0.0111658 0.0111784 0.011191 0.0112037 0.0112163 0.0112289 0.0112415 0.0112541 0.0112667 0.0112793 0.011292 0.0113046 0.0113172 0.0113298 0.0113424 0.011355 0.0113676 0.0113803 0.0113929 0.0114055 0.0114181 0.0114307 0.0114433 0.0114559 0.0114686 0.0114812 0.0114938 0.0115064 0.011519 0.0115316 0.0115442 0.0115569 0.0115695 0.0115821 0.0115947 0.0116073 0.0116199 0.0116325 0.0116451 0.0116578 0.0116704 0.011683 0.0116956 0.0117082 0.0117208 0.0117334 0.0117461 0.0117587 0.0117713 0.0117839 0.0117965 0.0118091 0.0118217 0.0118343 0.011847 0.0118596 0.0118722 0.0118848 0.0118974 0.01191 0.0119226 0.0119353 0.0119479 0.0119605 0.0119731 0.0119857 0.0119983 0.0120109 0.0120236 0.0120362 0.0120488 0.0120614 0.012074 0.0120866 0.0120992 0.0121119 +-0.00294344 -0.00265693 -0.00206374 -0.00109936 0.000112204 0.00145639 0.00286711 0.0043038 0.00573446 0.00712367 0.00841762 0.00951642 0.0102503 0.0105446 0.0106169 0.010639 0.010653 0.0106659 0.0106785 0.0106911 0.0107037 0.0107164 0.010729 0.0107416 0.0107542 0.0107668 0.0107795 0.0107921 0.0108047 0.0108173 0.0108299 0.0108426 0.0108552 0.0108678 0.0108804 0.010893 0.0109057 0.0109183 0.0109309 0.0109435 0.0109561 0.0109688 0.0109814 0.010994 0.0110066 0.0110192 0.0110319 0.0110445 0.0110571 0.0110697 0.0110823 0.011095 0.0111076 0.0111202 0.0111328 0.0111454 0.0111581 0.0111707 0.0111833 0.0111959 0.0112085 0.0112212 0.0112338 0.0112464 0.011259 0.0112716 0.0112843 0.0112969 0.0113095 0.0113221 0.0113347 0.0113474 0.01136 0.0113726 0.0113852 0.0113978 0.0114104 0.0114231 0.0114357 0.0114483 0.0114609 0.0114735 0.0114862 0.0114988 0.0115114 0.011524 0.0115366 0.0115493 0.0115619 0.0115745 0.0115871 0.0115997 0.0116124 0.011625 0.0116376 0.0116502 0.0116628 0.0116755 0.0116881 0.0117007 0.0117133 0.0117259 0.0117386 0.0117512 0.0117638 0.0117764 0.011789 0.0118017 0.0118143 0.0118269 0.0118395 0.0118521 0.0118647 0.0118774 0.01189 0.0119026 0.0119152 0.0119278 0.0119405 0.0119531 0.0119657 0.0119783 0.0119909 0.0120036 0.0120162 0.0120288 0.0120414 0.012054 0.0120667 0.0120793 0.0120919 0.0121045 0.0121171 +-0.0029449 -0.00265807 -0.00206435 -0.00109955 0.000112291 0.00145666 0.00286753 0.00430437 0.0057352 0.00712466 0.00841902 0.00951856 0.0102536 0.0105489 0.0106215 0.0106436 0.0106576 0.0106705 0.0106831 0.0106958 0.0107084 0.010721 0.0107336 0.0107463 0.0107589 0.0107715 0.0107841 0.0107968 0.0108094 0.010822 0.0108346 0.0108473 0.0108599 0.0108725 0.0108851 0.0108978 0.0109104 0.010923 0.0109356 0.0109483 0.0109609 0.0109735 0.0109862 0.0109988 0.0110114 0.011024 0.0110367 0.0110493 0.0110619 0.0110745 0.0110872 0.0110998 0.0111124 0.011125 0.0111377 0.0111503 0.0111629 0.0111755 0.0111882 0.0112008 0.0112134 0.011226 0.0112387 0.0112513 0.0112639 0.0112765 0.0112892 0.0113018 0.0113144 0.011327 0.0113397 0.0113523 0.0113649 0.0113775 0.0113902 0.0114028 0.0114154 0.011428 0.0114407 0.0114533 0.0114659 0.0114785 0.0114912 0.0115038 0.0115164 0.011529 0.0115417 0.0115543 0.0115669 0.0115795 0.0115922 0.0116048 0.0116174 0.01163 0.0116427 0.0116553 0.0116679 0.0116805 0.0116932 0.0117058 0.0117184 0.011731 0.0117437 0.0117563 0.0117689 0.0117815 0.0117942 0.0118068 0.0118194 0.011832 0.0118447 0.0118573 0.0118699 0.0118825 0.0118952 0.0119078 0.0119204 0.011933 0.0119457 0.0119583 0.0119709 0.0119835 0.0119962 0.0120088 0.0120214 0.012034 0.0120467 0.0120593 0.0120719 0.0120845 0.0120972 0.0121098 0.0121224 +-0.00294637 -0.00265921 -0.00206497 -0.00109973 0.000112379 0.00145693 0.00286794 0.00430493 0.00573594 0.00712565 0.00842041 0.00952069 0.0102569 0.0105532 0.010626 0.0106482 0.0106623 0.0106751 0.0106878 0.0107004 0.010713 0.0107257 0.0107383 0.0107509 0.0107636 0.0107762 0.0107888 0.0108015 0.0108141 0.0108267 0.0108393 0.010852 0.0108646 0.0108772 0.0108899 0.0109025 0.0109151 0.0109278 0.0109404 0.010953 0.0109657 0.0109783 0.0109909 0.0110036 0.0110162 0.0110288 0.0110414 0.0110541 0.0110667 0.0110793 0.011092 0.0111046 0.0111172 0.0111299 0.0111425 0.0111551 0.0111678 0.0111804 0.011193 0.0112056 0.0112183 0.0112309 0.0112435 0.0112562 0.0112688 0.0112814 0.0112941 0.0113067 0.0113193 0.011332 0.0113446 0.0113572 0.0113699 0.0113825 0.0113951 0.0114077 0.0114204 0.011433 0.0114456 0.0114583 0.0114709 0.0114835 0.0114962 0.0115088 0.0115214 0.0115341 0.0115467 0.0115593 0.0115719 0.0115846 0.0115972 0.0116098 0.0116225 0.0116351 0.0116477 0.0116604 0.011673 0.0116856 0.0116983 0.0117109 0.0117235 0.0117361 0.0117488 0.0117614 0.011774 0.0117867 0.0117993 0.0118119 0.0118246 0.0118372 0.0118498 0.0118625 0.0118751 0.0118877 0.0119003 0.011913 0.0119256 0.0119382 0.0119509 0.0119635 0.0119761 0.0119888 0.0120014 0.012014 0.0120267 0.0120393 0.0120519 0.0120646 0.0120772 0.0120898 0.0121024 0.0121151 0.0121277 +-0.00294783 -0.00266035 -0.00206558 -0.00109991 0.000112466 0.0014572 0.00286836 0.00430549 0.00573668 0.00712663 0.00842181 0.00952283 0.0102603 0.0105574 0.0106306 0.0106528 0.0106669 0.0106797 0.0106924 0.010705 0.0107177 0.0107303 0.010743 0.0107556 0.0107682 0.0107809 0.0107935 0.0108061 0.0108188 0.0108314 0.010844 0.0108567 0.0108693 0.010882 0.0108946 0.0109072 0.0109199 0.0109325 0.0109451 0.0109578 0.0109704 0.0109831 0.0109957 0.0110083 0.011021 0.0110336 0.0110462 0.0110589 0.0110715 0.0110841 0.0110968 0.0111094 0.0111221 0.0111347 0.0111473 0.01116 0.0111726 0.0111852 0.0111979 0.0112105 0.0112231 0.0112358 0.0112484 0.0112611 0.0112737 0.0112863 0.011299 0.0113116 0.0113242 0.0113369 0.0113495 0.0113622 0.0113748 0.0113874 0.0114001 0.0114127 0.0114253 0.011438 0.0114506 0.0114632 0.0114759 0.0114885 0.0115012 0.0115138 0.0115264 0.0115391 0.0115517 0.0115643 0.011577 0.0115896 0.0116023 0.0116149 0.0116275 0.0116402 0.0116528 0.0116654 0.0116781 0.0116907 0.0117033 0.011716 0.0117286 0.0117412 0.0117539 0.0117665 0.0117792 0.0117918 0.0118044 0.0118171 0.0118297 0.0118423 0.011855 0.0118676 0.0118803 0.0118929 0.0119055 0.0119182 0.0119308 0.0119434 0.0119561 0.0119687 0.0119813 0.011994 0.0120066 0.0120193 0.0120319 0.0120445 0.0120572 0.0120698 0.0120824 0.0120951 0.0121077 0.0121203 0.012133 +-0.00294929 -0.00266149 -0.0020662 -0.00110009 0.000112554 0.00145747 0.00286878 0.00430605 0.00573742 0.00712762 0.0084232 0.00952496 0.0102636 0.0105617 0.0106351 0.0106574 0.0106715 0.0106844 0.010697 0.0107097 0.0107223 0.010735 0.0107476 0.0107602 0.0107729 0.0107855 0.0107982 0.0108108 0.0108235 0.0108361 0.0108487 0.0108614 0.010874 0.0108867 0.0108993 0.010912 0.0109246 0.0109372 0.0109499 0.0109625 0.0109752 0.0109878 0.0110005 0.0110131 0.0110257 0.0110384 0.011051 0.0110637 0.0110763 0.011089 0.0111016 0.0111142 0.0111269 0.0111395 0.0111522 0.0111648 0.0111774 0.0111901 0.0112027 0.0112154 0.011228 0.0112407 0.0112533 0.0112659 0.0112786 0.0112912 0.0113039 0.0113165 0.0113292 0.0113418 0.0113544 0.0113671 0.0113797 0.0113924 0.011405 0.0114177 0.0114303 0.0114429 0.0114556 0.0114682 0.0114809 0.0114935 0.0115062 0.0115188 0.0115314 0.0115441 0.0115567 0.0115694 0.011582 0.0115946 0.0116073 0.0116199 0.0116326 0.0116452 0.0116579 0.0116705 0.0116831 0.0116958 0.0117084 0.0117211 0.0117337 0.0117463 0.011759 0.0117716 0.0117843 0.0117969 0.0118096 0.0118222 0.0118348 0.0118475 0.0118601 0.0118728 0.0118854 0.0118981 0.0119107 0.0119233 0.011936 0.0119486 0.0119613 0.0119739 0.0119866 0.0119992 0.0120118 0.0120245 0.0120371 0.0120498 0.0120624 0.0120751 0.0120877 0.0121003 0.012113 0.0121256 0.0121383 +-0.00295075 -0.00266263 -0.00206681 -0.00110027 0.000112641 0.00145774 0.00286919 0.00430661 0.00573816 0.00712861 0.0084246 0.00952709 0.0102669 0.010566 0.0106397 0.010662 0.0106761 0.010689 0.0107017 0.0107143 0.010727 0.0107396 0.0107523 0.0107649 0.0107776 0.0107902 0.0108028 0.0108155 0.0108281 0.0108408 0.0108534 0.0108661 0.0108787 0.0108914 0.010904 0.0109167 0.0109293 0.010942 0.0109546 0.0109673 0.0109799 0.0109926 0.0110052 0.0110179 0.0110305 0.0110432 0.0110558 0.0110685 0.0110811 0.0110938 0.0111064 0.0111191 0.0111317 0.0111443 0.011157 0.0111696 0.0111823 0.0111949 0.0112076 0.0112202 0.0112329 0.0112455 0.0112582 0.0112708 0.0112835 0.0112961 0.0113088 0.0113214 0.0113341 0.0113467 0.0113594 0.011372 0.0113847 0.0113973 0.01141 0.0114226 0.0114353 0.0114479 0.0114606 0.0114732 0.0114858 0.0114985 0.0115111 0.0115238 0.0115364 0.0115491 0.0115617 0.0115744 0.011587 0.0115997 0.0116123 0.011625 0.0116376 0.0116503 0.0116629 0.0116756 0.0116882 0.0117009 0.0117135 0.0117262 0.0117388 0.0117515 0.0117641 0.0117767 0.0117894 0.011802 0.0118147 0.0118273 0.01184 0.0118526 0.0118653 0.0118779 0.0118906 0.0119032 0.0119159 0.0119285 0.0119412 0.0119538 0.0119665 0.0119791 0.0119918 0.0120044 0.0120171 0.0120297 0.0120424 0.012055 0.0120677 0.0120803 0.0120929 0.0121056 0.0121182 0.0121309 0.0121435 +-0.00295221 -0.00266377 -0.00206742 -0.00110046 0.000112728 0.001458 0.00286961 0.00430718 0.00573889 0.00712959 0.00842599 0.00952922 0.0102702 0.0105702 0.0106442 0.0106666 0.0106807 0.0106936 0.0107063 0.0107189 0.0107316 0.0107443 0.0107569 0.0107696 0.0107822 0.0107949 0.0108075 0.0108202 0.0108328 0.0108455 0.0108581 0.0108708 0.0108834 0.0108961 0.0109088 0.0109214 0.0109341 0.0109467 0.0109594 0.010972 0.0109847 0.0109973 0.01101 0.0110226 0.0110353 0.0110479 0.0110606 0.0110733 0.0110859 0.0110986 0.0111112 0.0111239 0.0111365 0.0111492 0.0111618 0.0111745 0.0111871 0.0111998 0.0112124 0.0112251 0.0112378 0.0112504 0.0112631 0.0112757 0.0112884 0.011301 0.0113137 0.0113263 0.011339 0.0113516 0.0113643 0.0113769 0.0113896 0.0114023 0.0114149 0.0114276 0.0114402 0.0114529 0.0114655 0.0114782 0.0114908 0.0115035 0.0115161 0.0115288 0.0115414 0.0115541 0.0115668 0.0115794 0.0115921 0.0116047 0.0116174 0.01163 0.0116427 0.0116553 0.011668 0.0116806 0.0116933 0.0117059 0.0117186 0.0117312 0.0117439 0.0117565 0.0117692 0.0117819 0.0117945 0.0118072 0.0118198 0.0118325 0.0118451 0.0118578 0.0118704 0.0118831 0.0118957 0.0119084 0.011921 0.0119337 0.0119464 0.011959 0.0119717 0.0119843 0.011997 0.0120096 0.0120223 0.0120349 0.0120476 0.0120602 0.0120729 0.0120855 0.0120982 0.0121109 0.0121235 0.0121362 0.0121488 +-0.00295367 -0.00266491 -0.00206804 -0.00110064 0.000112816 0.00145827 0.00287002 0.00430774 0.00573963 0.00713058 0.00842738 0.00953134 0.0102735 0.0105745 0.0106488 0.0106712 0.0106853 0.0106982 0.0107109 0.0107236 0.0107362 0.0107489 0.0107616 0.0107742 0.0107869 0.0107995 0.0108122 0.0108249 0.0108375 0.0108502 0.0108628 0.0108755 0.0108881 0.0109008 0.0109135 0.0109261 0.0109388 0.0109514 0.0109641 0.0109768 0.0109894 0.0110021 0.0110147 0.0110274 0.0110401 0.0110527 0.0110654 0.011078 0.0110907 0.0111034 0.011116 0.0111287 0.0111413 0.011154 0.0111667 0.0111793 0.011192 0.0112046 0.0112173 0.01123 0.0112426 0.0112553 0.0112679 0.0112806 0.0112933 0.0113059 0.0113186 0.0113312 0.0113439 0.0113566 0.0113692 0.0113819 0.0113945 0.0114072 0.0114198 0.0114325 0.0114452 0.0114578 0.0114705 0.0114831 0.0114958 0.0115085 0.0115211 0.0115338 0.0115464 0.0115591 0.0115718 0.0115844 0.0115971 0.0116097 0.0116224 0.0116351 0.0116477 0.0116604 0.011673 0.0116857 0.0116983 0.011711 0.0117237 0.0117363 0.011749 0.0117616 0.0117743 0.011787 0.0117996 0.0118123 0.0118249 0.0118376 0.0118503 0.0118629 0.0118756 0.0118882 0.0119009 0.0119136 0.0119262 0.0119389 0.0119515 0.0119642 0.0119769 0.0119895 0.0120022 0.0120148 0.0120275 0.0120402 0.0120528 0.0120655 0.0120781 0.0120908 0.0121035 0.0121161 0.0121288 0.0121414 0.0121541 +-0.00295513 -0.00266604 -0.00206865 -0.00110082 0.000112903 0.00145854 0.00287043 0.0043083 0.00574036 0.00713156 0.00842876 0.00953346 0.0102768 0.0105788 0.0106533 0.0106758 0.01069 0.0107028 0.0107155 0.0107282 0.0107409 0.0107535 0.0107662 0.0107789 0.0107915 0.0108042 0.0108169 0.0108295 0.0108422 0.0108549 0.0108675 0.0108802 0.0108929 0.0109055 0.0109182 0.0109308 0.0109435 0.0109562 0.0109688 0.0109815 0.0109942 0.0110068 0.0110195 0.0110322 0.0110448 0.0110575 0.0110702 0.0110828 0.0110955 0.0111082 0.0111208 0.0111335 0.0111462 0.0111588 0.0111715 0.0111842 0.0111968 0.0112095 0.0112221 0.0112348 0.0112475 0.0112601 0.0112728 0.0112855 0.0112981 0.0113108 0.0113235 0.0113361 0.0113488 0.0113615 0.0113741 0.0113868 0.0113995 0.0114121 0.0114248 0.0114375 0.0114501 0.0114628 0.0114755 0.0114881 0.0115008 0.0115134 0.0115261 0.0115388 0.0115514 0.0115641 0.0115768 0.0115894 0.0116021 0.0116148 0.0116274 0.0116401 0.0116528 0.0116654 0.0116781 0.0116908 0.0117034 0.0117161 0.0117287 0.0117414 0.0117541 0.0117667 0.0117794 0.0117921 0.0118047 0.0118174 0.0118301 0.0118427 0.0118554 0.0118681 0.0118807 0.0118934 0.0119061 0.0119187 0.0119314 0.0119441 0.0119567 0.0119694 0.0119821 0.0119947 0.0120074 0.01202 0.0120327 0.0120454 0.012058 0.0120707 0.0120834 0.012096 0.0121087 0.0121214 0.012134 0.0121467 0.0121594 +-0.00295659 -0.00266718 -0.00206926 -0.001101 0.000112991 0.00145881 0.00287085 0.00430886 0.0057411 0.00713254 0.00843015 0.00953557 0.0102801 0.010583 0.0106579 0.0106804 0.0106946 0.0107075 0.0107202 0.0107328 0.0107455 0.0107582 0.0107708 0.0107835 0.0107962 0.0108089 0.0108215 0.0108342 0.0108469 0.0108595 0.0108722 0.0108849 0.0108976 0.0109102 0.0109229 0.0109356 0.0109482 0.0109609 0.0109736 0.0109863 0.0109989 0.0110116 0.0110243 0.0110369 0.0110496 0.0110623 0.0110749 0.0110876 0.0111003 0.011113 0.0111256 0.0111383 0.011151 0.0111636 0.0111763 0.011189 0.0112017 0.0112143 0.011227 0.0112397 0.0112523 0.011265 0.0112777 0.0112904 0.011303 0.0113157 0.0113284 0.011341 0.0113537 0.0113664 0.011379 0.0113917 0.0114044 0.0114171 0.0114297 0.0114424 0.0114551 0.0114677 0.0114804 0.0114931 0.0115058 0.0115184 0.0115311 0.0115438 0.0115564 0.0115691 0.0115818 0.0115945 0.0116071 0.0116198 0.0116325 0.0116451 0.0116578 0.0116705 0.0116831 0.0116958 0.0117085 0.0117212 0.0117338 0.0117465 0.0117592 0.0117718 0.0117845 0.0117972 0.0118099 0.0118225 0.0118352 0.0118479 0.0118605 0.0118732 0.0118859 0.0118985 0.0119112 0.0119239 0.0119366 0.0119492 0.0119619 0.0119746 0.0119872 0.0119999 0.0120126 0.0120253 0.0120379 0.0120506 0.0120633 0.0120759 0.0120886 0.0121013 0.012114 0.0121266 0.0121393 0.012152 0.0121646 +-0.00295805 -0.00266832 -0.00206987 -0.00110118 0.000113078 0.00145907 0.00287126 0.00430942 0.00574183 0.00713352 0.00843153 0.00953769 0.0102834 0.0105873 0.0106624 0.010685 0.0106992 0.0107121 0.0107248 0.0107375 0.0107501 0.0107628 0.0107755 0.0107882 0.0108008 0.0108135 0.0108262 0.0108389 0.0108515 0.0108642 0.0108769 0.0108896 0.0109023 0.0109149 0.0109276 0.0109403 0.010953 0.0109656 0.0109783 0.010991 0.0110037 0.0110163 0.011029 0.0110417 0.0110544 0.0110671 0.0110797 0.0110924 0.0111051 0.0111178 0.0111304 0.0111431 0.0111558 0.0111685 0.0111811 0.0111938 0.0112065 0.0112192 0.0112318 0.0112445 0.0112572 0.0112699 0.0112826 0.0112952 0.0113079 0.0113206 0.0113333 0.0113459 0.0113586 0.0113713 0.011384 0.0113966 0.0114093 0.011422 0.0114347 0.0114473 0.01146 0.0114727 0.0114854 0.0114981 0.0115107 0.0115234 0.0115361 0.0115488 0.0115614 0.0115741 0.0115868 0.0115995 0.0116121 0.0116248 0.0116375 0.0116502 0.0116629 0.0116755 0.0116882 0.0117009 0.0117135 0.0117262 0.0117389 0.0117516 0.0117643 0.0117769 0.0117896 0.0118023 0.011815 0.0118276 0.0118403 0.011853 0.0118657 0.0118783 0.011891 0.0119037 0.0119164 0.011929 0.0119417 0.0119544 0.0119671 0.0119798 0.0119924 0.0120051 0.0120178 0.0120305 0.0120431 0.0120558 0.0120685 0.0120812 0.0120938 0.0121065 0.0121192 0.0121319 0.0121446 0.0121572 0.0121699 +-0.00295951 -0.00266945 -0.00207048 -0.00110136 0.000113166 0.00145934 0.00287168 0.00430998 0.00574257 0.0071345 0.00843292 0.0095398 0.0102867 0.0105915 0.0106669 0.0106896 0.0107038 0.0107167 0.0107294 0.0107421 0.0107548 0.0107674 0.0107801 0.0107928 0.0108055 0.0108182 0.0108309 0.0108435 0.0108562 0.0108689 0.0108816 0.0108943 0.010907 0.0109196 0.0109323 0.010945 0.0109577 0.0109704 0.010983 0.0109957 0.0110084 0.0110211 0.0110338 0.0110465 0.0110591 0.0110718 0.0110845 0.0110972 0.0111099 0.0111226 0.0111352 0.0111479 0.0111606 0.0111733 0.011186 0.0111986 0.0112113 0.011224 0.0112367 0.0112494 0.0112621 0.0112747 0.0112874 0.0113001 0.0113128 0.0113255 0.0113382 0.0113508 0.0113635 0.0113762 0.0113889 0.0114016 0.0114142 0.0114269 0.0114396 0.0114523 0.011465 0.0114777 0.0114903 0.011503 0.0115157 0.0115284 0.0115411 0.0115538 0.0115664 0.0115791 0.0115918 0.0116045 0.0116172 0.0116298 0.0116425 0.0116552 0.0116679 0.0116806 0.0116932 0.0117059 0.0117186 0.0117313 0.011744 0.0117567 0.0117693 0.011782 0.0117947 0.0118074 0.0118201 0.0118328 0.0118454 0.0118581 0.0118708 0.0118835 0.0118962 0.0119088 0.0119215 0.0119342 0.0119469 0.0119596 0.0119723 0.0119849 0.0119976 0.0120103 0.012023 0.0120357 0.0120484 0.012061 0.0120737 0.0120864 0.0120991 0.0121118 0.0121244 0.0121371 0.0121498 0.0121625 0.0121752 +-0.00296097 -0.00267058 -0.00207109 -0.00110154 0.000113253 0.00145961 0.00287209 0.00431053 0.0057433 0.00713548 0.0084343 0.0095419 0.01029 0.0105958 0.0106715 0.0106942 0.0107084 0.0107213 0.010734 0.0107467 0.0107594 0.0107721 0.0107848 0.0107975 0.0108101 0.0108228 0.0108355 0.0108482 0.0108609 0.0108736 0.0108863 0.010899 0.0109117 0.0109243 0.010937 0.0109497 0.0109624 0.0109751 0.0109878 0.0110005 0.0110132 0.0110258 0.0110385 0.0110512 0.0110639 0.0110766 0.0110893 0.011102 0.0111147 0.0111273 0.01114 0.0111527 0.0111654 0.0111781 0.0111908 0.0112035 0.0112162 0.0112289 0.0112415 0.0112542 0.0112669 0.0112796 0.0112923 0.011305 0.0113177 0.0113304 0.011343 0.0113557 0.0113684 0.0113811 0.0113938 0.0114065 0.0114192 0.0114319 0.0114445 0.0114572 0.0114699 0.0114826 0.0114953 0.011508 0.0115207 0.0115334 0.0115461 0.0115587 0.0115714 0.0115841 0.0115968 0.0116095 0.0116222 0.0116349 0.0116476 0.0116602 0.0116729 0.0116856 0.0116983 0.011711 0.0117237 0.0117364 0.011749 0.0117617 0.0117744 0.0117871 0.0117998 0.0118125 0.0118252 0.0118379 0.0118506 0.0118632 0.0118759 0.0118886 0.0119013 0.011914 0.0119267 0.0119394 0.0119521 0.0119647 0.0119774 0.0119901 0.0120028 0.0120155 0.0120282 0.0120409 0.0120536 0.0120662 0.0120789 0.0120916 0.0121043 0.012117 0.0121297 0.0121424 0.0121551 0.0121678 0.0121804 +-0.00296242 -0.00267172 -0.0020717 -0.00110172 0.000113341 0.00145988 0.0028725 0.00431109 0.00574403 0.00713646 0.00843567 0.00954401 0.0102933 0.0106 0.010676 0.0106988 0.010713 0.0107259 0.0107386 0.0107513 0.010764 0.0107767 0.0107894 0.0108021 0.0108148 0.0108275 0.0108402 0.0108529 0.0108656 0.0108783 0.010891 0.0109037 0.0109163 0.010929 0.0109417 0.0109544 0.0109671 0.0109798 0.0109925 0.0110052 0.0110179 0.0110306 0.0110433 0.011056 0.0110687 0.0110814 0.0110941 0.0111068 0.0111194 0.0111321 0.0111448 0.0111575 0.0111702 0.0111829 0.0111956 0.0112083 0.011221 0.0112337 0.0112464 0.0112591 0.0112718 0.0112845 0.0112972 0.0113099 0.0113225 0.0113352 0.0113479 0.0113606 0.0113733 0.011386 0.0113987 0.0114114 0.0114241 0.0114368 0.0114495 0.0114622 0.0114749 0.0114876 0.0115003 0.011513 0.0115256 0.0115383 0.011551 0.0115637 0.0115764 0.0115891 0.0116018 0.0116145 0.0116272 0.0116399 0.0116526 0.0116653 0.011678 0.0116907 0.0117033 0.011716 0.0117287 0.0117414 0.0117541 0.0117668 0.0117795 0.0117922 0.0118049 0.0118176 0.0118303 0.011843 0.0118557 0.0118684 0.0118811 0.0118938 0.0119064 0.0119191 0.0119318 0.0119445 0.0119572 0.0119699 0.0119826 0.0119953 0.012008 0.0120207 0.0120334 0.0120461 0.0120588 0.0120715 0.0120842 0.0120968 0.0121095 0.0121222 0.0121349 0.0121476 0.0121603 0.012173 0.0121857 +-0.00296388 -0.00267285 -0.00207231 -0.0011019 0.000113428 0.00146014 0.00287291 0.00431165 0.00574476 0.00713744 0.00843705 0.00954611 0.0102965 0.0106043 0.0106806 0.0107034 0.0107176 0.0107305 0.0107432 0.010756 0.0107687 0.0107814 0.0107941 0.0108067 0.0108194 0.0108321 0.0108448 0.0108575 0.0108702 0.0108829 0.0108956 0.0109083 0.010921 0.0109337 0.0109464 0.0109591 0.0109718 0.0109845 0.0109972 0.0110099 0.0110226 0.0110353 0.011048 0.0110607 0.0110734 0.0110861 0.0110988 0.0111115 0.0111242 0.0111369 0.0111496 0.0111623 0.011175 0.0111877 0.0112004 0.0112131 0.0112258 0.0112385 0.0112512 0.0112639 0.0112766 0.0112893 0.011302 0.0113147 0.0113274 0.0113401 0.0113528 0.0113655 0.0113782 0.0113909 0.0114036 0.0114163 0.011429 0.0114417 0.0114544 0.0114671 0.0114798 0.0114925 0.0115052 0.0115179 0.0115306 0.0115433 0.011556 0.0115687 0.0115814 0.0115941 0.0116068 0.0116195 0.0116322 0.0116449 0.0116576 0.0116703 0.011683 0.0116957 0.0117084 0.0117211 0.0117338 0.0117465 0.0117592 0.0117719 0.0117846 0.0117973 0.01181 0.0118227 0.0118354 0.0118481 0.0118608 0.0118735 0.0118862 0.0118989 0.0119116 0.0119243 0.011937 0.0119497 0.0119624 0.0119751 0.0119878 0.0120005 0.0120132 0.0120259 0.0120386 0.0120513 0.012064 0.0120767 0.0120894 0.0121021 0.0121148 0.0121275 0.0121402 0.0121529 0.0121656 0.0121783 0.012191 +-0.00296534 -0.00267398 -0.00207291 -0.00110207 0.000113516 0.00146041 0.00287333 0.00431221 0.00574549 0.00713841 0.00843843 0.00954821 0.0102998 0.0106085 0.0106851 0.010708 0.0107222 0.0107351 0.0107479 0.0107606 0.0107733 0.010786 0.0107987 0.0108114 0.0108241 0.0108368 0.0108495 0.0108622 0.0108749 0.0108876 0.0109003 0.010913 0.0109257 0.0109384 0.0109511 0.0109639 0.0109766 0.0109893 0.011002 0.0110147 0.0110274 0.0110401 0.0110528 0.0110655 0.0110782 0.0110909 0.0111036 0.0111163 0.011129 0.0111417 0.0111544 0.0111671 0.0111798 0.0111925 0.0112052 0.011218 0.0112307 0.0112434 0.0112561 0.0112688 0.0112815 0.0112942 0.0113069 0.0113196 0.0113323 0.011345 0.0113577 0.0113704 0.0113831 0.0113958 0.0114085 0.0114212 0.0114339 0.0114466 0.0114593 0.0114721 0.0114848 0.0114975 0.0115102 0.0115229 0.0115356 0.0115483 0.011561 0.0115737 0.0115864 0.0115991 0.0116118 0.0116245 0.0116372 0.0116499 0.0116626 0.0116753 0.011688 0.0117007 0.0117134 0.0117261 0.0117388 0.0117516 0.0117643 0.011777 0.0117897 0.0118024 0.0118151 0.0118278 0.0118405 0.0118532 0.0118659 0.0118786 0.0118913 0.011904 0.0119167 0.0119294 0.0119421 0.0119548 0.0119675 0.0119802 0.0119929 0.0120057 0.0120184 0.0120311 0.0120438 0.0120565 0.0120692 0.0120819 0.0120946 0.0121073 0.01212 0.0121327 0.0121454 0.0121581 0.0121708 0.0121835 0.0121962 +-0.00296679 -0.00267511 -0.00207352 -0.00110225 0.000113603 0.00146068 0.00287374 0.00431276 0.00574622 0.00713939 0.0084398 0.0095503 0.0103031 0.0106127 0.0106896 0.0107126 0.0107268 0.0107397 0.0107525 0.0107652 0.0107779 0.0107906 0.0108033 0.010816 0.0108287 0.0108415 0.0108542 0.0108669 0.0108796 0.0108923 0.010905 0.0109177 0.0109304 0.0109431 0.0109559 0.0109686 0.0109813 0.010994 0.0110067 0.0110194 0.0110321 0.0110448 0.0110575 0.0110702 0.011083 0.0110957 0.0111084 0.0111211 0.0111338 0.0111465 0.0111592 0.0111719 0.0111846 0.0111974 0.0112101 0.0112228 0.0112355 0.0112482 0.0112609 0.0112736 0.0112863 0.011299 0.0113118 0.0113245 0.0113372 0.0113499 0.0113626 0.0113753 0.011388 0.0114007 0.0114134 0.0114261 0.0114389 0.0114516 0.0114643 0.011477 0.0114897 0.0115024 0.0115151 0.0115278 0.0115405 0.0115533 0.011566 0.0115787 0.0115914 0.0116041 0.0116168 0.0116295 0.0116422 0.0116549 0.0116677 0.0116804 0.0116931 0.0117058 0.0117185 0.0117312 0.0117439 0.0117566 0.0117693 0.011782 0.0117947 0.0118075 0.0118202 0.0118329 0.0118456 0.0118583 0.011871 0.0118837 0.0118964 0.0119091 0.0119219 0.0119346 0.0119473 0.01196 0.0119727 0.0119854 0.0119981 0.0120108 0.0120235 0.0120363 0.012049 0.0120617 0.0120744 0.0120871 0.0120998 0.0121125 0.0121252 0.0121379 0.0121506 0.0121634 0.0121761 0.0121888 0.0122015 +-0.00296825 -0.00267624 -0.00207413 -0.00110243 0.000113691 0.00146094 0.00287415 0.00431332 0.00574695 0.00714036 0.00844117 0.00955239 0.0103064 0.010617 0.0106941 0.0107172 0.0107314 0.0107443 0.0107571 0.0107698 0.0107825 0.0107952 0.010808 0.0108207 0.0108334 0.0108461 0.0108588 0.0108715 0.0108843 0.010897 0.0109097 0.0109224 0.0109351 0.0109478 0.0109606 0.0109733 0.010986 0.0109987 0.0110114 0.0110241 0.0110369 0.0110496 0.0110623 0.011075 0.0110877 0.0111004 0.0111132 0.0111259 0.0111386 0.0111513 0.011164 0.0111767 0.0111894 0.0112022 0.0112149 0.0112276 0.0112403 0.011253 0.0112657 0.0112785 0.0112912 0.0113039 0.0113166 0.0113293 0.011342 0.0113548 0.0113675 0.0113802 0.0113929 0.0114056 0.0114183 0.0114311 0.0114438 0.0114565 0.0114692 0.0114819 0.0114946 0.0115074 0.0115201 0.0115328 0.0115455 0.0115582 0.0115709 0.0115837 0.0115964 0.0116091 0.0116218 0.0116345 0.0116472 0.01166 0.0116727 0.0116854 0.0116981 0.0117108 0.0117235 0.0117362 0.011749 0.0117617 0.0117744 0.0117871 0.0117998 0.0118125 0.0118253 0.011838 0.0118507 0.0118634 0.0118761 0.0118888 0.0119016 0.0119143 0.011927 0.0119397 0.0119524 0.0119651 0.0119779 0.0119906 0.0120033 0.012016 0.0120287 0.0120414 0.0120542 0.0120669 0.0120796 0.0120923 0.012105 0.0121177 0.0121304 0.0121432 0.0121559 0.0121686 0.0121813 0.012194 0.0122067 +-0.0029697 -0.00267737 -0.00207473 -0.00110261 0.000113778 0.00146121 0.00287456 0.00431388 0.00574768 0.00714134 0.00844254 0.00955448 0.0103096 0.0106212 0.0106987 0.0107217 0.010736 0.0107489 0.0107617 0.0107744 0.0107871 0.0107999 0.0108126 0.0108253 0.010838 0.0108508 0.0108635 0.0108762 0.0108889 0.0109016 0.0109144 0.0109271 0.0109398 0.0109525 0.0109653 0.010978 0.0109907 0.0110034 0.0110161 0.0110289 0.0110416 0.0110543 0.011067 0.0110798 0.0110925 0.0111052 0.0111179 0.0111306 0.0111434 0.0111561 0.0111688 0.0111815 0.0111943 0.011207 0.0112197 0.0112324 0.0112451 0.0112579 0.0112706 0.0112833 0.011296 0.0113088 0.0113215 0.0113342 0.0113469 0.0113596 0.0113724 0.0113851 0.0113978 0.0114105 0.0114232 0.011436 0.0114487 0.0114614 0.0114741 0.0114869 0.0114996 0.0115123 0.011525 0.0115377 0.0115505 0.0115632 0.0115759 0.0115886 0.0116014 0.0116141 0.0116268 0.0116395 0.0116522 0.011665 0.0116777 0.0116904 0.0117031 0.0117158 0.0117286 0.0117413 0.011754 0.0117667 0.0117795 0.0117922 0.0118049 0.0118176 0.0118303 0.0118431 0.0118558 0.0118685 0.0118812 0.011894 0.0119067 0.0119194 0.0119321 0.0119448 0.0119576 0.0119703 0.011983 0.0119957 0.0120085 0.0120212 0.0120339 0.0120466 0.0120593 0.0120721 0.0120848 0.0120975 0.0121102 0.012123 0.0121357 0.0121484 0.0121611 0.0121738 0.0121866 0.0121993 0.012212 +-0.00297116 -0.0026785 -0.00207534 -0.00110279 0.000113866 0.00146147 0.00287497 0.00431443 0.00574841 0.00714231 0.00844391 0.00955657 0.0103129 0.0106254 0.0107032 0.0107263 0.0107406 0.0107535 0.0107663 0.010779 0.0107918 0.0108045 0.0108172 0.0108299 0.0108427 0.0108554 0.0108681 0.0108809 0.0108936 0.0109063 0.010919 0.0109318 0.0109445 0.0109572 0.01097 0.0109827 0.0109954 0.0110081 0.0110209 0.0110336 0.0110463 0.011059 0.0110718 0.0110845 0.0110972 0.01111 0.0111227 0.0111354 0.0111481 0.0111609 0.0111736 0.0111863 0.0111991 0.0112118 0.0112245 0.0112372 0.01125 0.0112627 0.0112754 0.0112881 0.0113009 0.0113136 0.0113263 0.0113391 0.0113518 0.0113645 0.0113772 0.01139 0.0114027 0.0114154 0.0114282 0.0114409 0.0114536 0.0114663 0.0114791 0.0114918 0.0115045 0.0115172 0.01153 0.0115427 0.0115554 0.0115682 0.0115809 0.0115936 0.0116063 0.0116191 0.0116318 0.0116445 0.0116573 0.01167 0.0116827 0.0116954 0.0117082 0.0117209 0.0117336 0.0117463 0.0117591 0.0117718 0.0117845 0.0117972 0.01181 0.0118227 0.0118354 0.0118482 0.0118609 0.0118736 0.0118863 0.0118991 0.0119118 0.0119245 0.0119373 0.01195 0.0119627 0.0119754 0.0119882 0.0120009 0.0120136 0.0120263 0.0120391 0.0120518 0.0120645 0.0120773 0.01209 0.0121027 0.0121154 0.0121282 0.0121409 0.0121536 0.0121663 0.0121791 0.0121918 0.0122045 0.0122173 +-0.00297261 -0.00267963 -0.00207594 -0.00110297 0.000113953 0.00146174 0.00287538 0.00431499 0.00574914 0.00714328 0.00844528 0.00955865 0.0103161 0.0106296 0.0107077 0.0107309 0.0107452 0.0107581 0.0107709 0.0107837 0.0107964 0.0108091 0.0108219 0.0108346 0.0108473 0.0108601 0.0108728 0.0108855 0.0108983 0.010911 0.0109237 0.0109365 0.0109492 0.0109619 0.0109747 0.0109874 0.0110001 0.0110129 0.0110256 0.0110383 0.0110511 0.0110638 0.0110765 0.0110893 0.011102 0.0111147 0.0111275 0.0111402 0.0111529 0.0111657 0.0111784 0.0111911 0.0112039 0.0112166 0.0112293 0.0112421 0.0112548 0.0112675 0.0112803 0.011293 0.0113057 0.0113185 0.0113312 0.0113439 0.0113567 0.0113694 0.0113821 0.0113949 0.0114076 0.0114203 0.0114331 0.0114458 0.0114585 0.0114713 0.011484 0.0114967 0.0115095 0.0115222 0.0115349 0.0115477 0.0115604 0.0115731 0.0115859 0.0115986 0.0116113 0.0116241 0.0116368 0.0116495 0.0116623 0.011675 0.0116877 0.0117005 0.0117132 0.0117259 0.0117386 0.0117514 0.0117641 0.0117768 0.0117896 0.0118023 0.011815 0.0118278 0.0118405 0.0118532 0.011866 0.0118787 0.0118914 0.0119042 0.0119169 0.0119296 0.0119424 0.0119551 0.0119678 0.0119806 0.0119933 0.012006 0.0120188 0.0120315 0.0120442 0.012057 0.0120697 0.0120824 0.0120952 0.0121079 0.0121206 0.0121334 0.0121461 0.0121588 0.0121716 0.0121843 0.012197 0.0122098 0.0122225 +-0.00297406 -0.00268075 -0.00207655 -0.00110314 0.000114041 0.00146201 0.00287579 0.00431554 0.00574987 0.00714425 0.00844664 0.00956073 0.0103194 0.0106339 0.0107123 0.0107355 0.0107498 0.0107627 0.0107755 0.0107883 0.010801 0.0108137 0.0108265 0.0108392 0.010852 0.0108647 0.0108774 0.0108902 0.0109029 0.0109157 0.0109284 0.0109411 0.0109539 0.0109666 0.0109794 0.0109921 0.0110048 0.0110176 0.0110303 0.011043 0.0110558 0.0110685 0.0110813 0.011094 0.0111067 0.0111195 0.0111322 0.011145 0.0111577 0.0111704 0.0111832 0.0111959 0.0112087 0.0112214 0.0112341 0.0112469 0.0112596 0.0112723 0.0112851 0.0112978 0.0113106 0.0113233 0.011336 0.0113488 0.0113615 0.0113743 0.011387 0.0113997 0.0114125 0.0114252 0.011438 0.0114507 0.0114634 0.0114762 0.0114889 0.0115017 0.0115144 0.0115271 0.0115399 0.0115526 0.0115653 0.0115781 0.0115908 0.0116036 0.0116163 0.011629 0.0116418 0.0116545 0.0116673 0.01168 0.0116927 0.0117055 0.0117182 0.0117309 0.0117437 0.0117564 0.0117692 0.0117819 0.0117946 0.0118074 0.0118201 0.0118329 0.0118456 0.0118583 0.0118711 0.0118838 0.0118966 0.0119093 0.011922 0.0119348 0.0119475 0.0119602 0.011973 0.0119857 0.0119985 0.0120112 0.0120239 0.0120367 0.0120494 0.0120622 0.0120749 0.0120876 0.0121004 0.0121131 0.0121259 0.0121386 0.0121513 0.0121641 0.0121768 0.0121896 0.0122023 0.012215 0.0122278 +-0.00297552 -0.00268188 -0.00207715 -0.00110332 0.000114129 0.00146227 0.0028762 0.0043161 0.00575059 0.00714522 0.00844801 0.0095628 0.0103226 0.0106381 0.0107168 0.0107401 0.0107544 0.0107673 0.0107801 0.0107929 0.0108056 0.0108184 0.0108311 0.0108439 0.0108566 0.0108693 0.0108821 0.0108948 0.0109076 0.0109203 0.0109331 0.0109458 0.0109586 0.0109713 0.010984 0.0109968 0.0110095 0.0110223 0.011035 0.0110478 0.0110605 0.0110733 0.011086 0.0110987 0.0111115 0.0111242 0.011137 0.0111497 0.0111625 0.0111752 0.011188 0.0112007 0.0112135 0.0112262 0.0112389 0.0112517 0.0112644 0.0112772 0.0112899 0.0113027 0.0113154 0.0113282 0.0113409 0.0113536 0.0113664 0.0113791 0.0113919 0.0114046 0.0114174 0.0114301 0.0114429 0.0114556 0.0114683 0.0114811 0.0114938 0.0115066 0.0115193 0.0115321 0.0115448 0.0115576 0.0115703 0.011583 0.0115958 0.0116085 0.0116213 0.011634 0.0116468 0.0116595 0.0116723 0.011685 0.0116978 0.0117105 0.0117232 0.011736 0.0117487 0.0117615 0.0117742 0.011787 0.0117997 0.0118124 0.0118252 0.0118379 0.0118507 0.0118634 0.0118762 0.0118889 0.0119017 0.0119144 0.0119271 0.0119399 0.0119526 0.0119654 0.0119781 0.0119909 0.0120036 0.0120164 0.0120291 0.0120418 0.0120546 0.0120673 0.0120801 0.0120928 0.0121056 0.0121183 0.0121311 0.0121438 0.0121566 0.0121693 0.012182 0.0121948 0.0122075 0.0122203 0.012233 +-0.00297697 -0.00268301 -0.00207775 -0.0011035 0.000114216 0.00146254 0.00287661 0.00431665 0.00575132 0.00714619 0.00844937 0.00956488 0.0103259 0.0106423 0.0107213 0.0107446 0.010759 0.0107719 0.0107847 0.0107975 0.0108102 0.010823 0.0108357 0.0108485 0.0108612 0.010874 0.0108867 0.0108995 0.0109122 0.010925 0.0109377 0.0109505 0.0109632 0.010976 0.0109887 0.0110015 0.0110142 0.011027 0.0110397 0.0110525 0.0110652 0.011078 0.0110907 0.0111035 0.0111162 0.011129 0.0111417 0.0111545 0.0111672 0.01118 0.0111927 0.0112055 0.0112182 0.011231 0.0112437 0.0112565 0.0112692 0.011282 0.0112947 0.0113075 0.0113203 0.011333 0.0113458 0.0113585 0.0113713 0.011384 0.0113968 0.0114095 0.0114223 0.011435 0.0114478 0.0114605 0.0114733 0.011486 0.0114988 0.0115115 0.0115243 0.011537 0.0115498 0.0115625 0.0115753 0.011588 0.0116008 0.0116135 0.0116263 0.011639 0.0116518 0.0116645 0.0116773 0.01169 0.0117028 0.0117155 0.0117283 0.011741 0.0117538 0.0117665 0.0117793 0.011792 0.0118048 0.0118175 0.0118303 0.011843 0.0118558 0.0118685 0.0118813 0.011894 0.0119068 0.0119195 0.0119323 0.011945 0.0119578 0.0119705 0.0119833 0.011996 0.0120088 0.0120215 0.0120343 0.012047 0.0120598 0.0120725 0.0120853 0.012098 0.0121108 0.0121235 0.0121363 0.012149 0.0121618 0.0121745 0.0121873 0.0122 0.0122128 0.0122255 0.0122383 +-0.00297842 -0.00268413 -0.00207836 -0.00110367 0.000114304 0.0014628 0.00287702 0.0043172 0.00575204 0.00714715 0.00845073 0.00956695 0.0103291 0.0106465 0.0107258 0.0107492 0.0107636 0.0107765 0.0107893 0.0108021 0.0108148 0.0108276 0.0108404 0.0108531 0.0108659 0.0108786 0.0108914 0.0109041 0.0109169 0.0109297 0.0109424 0.0109552 0.0109679 0.0109807 0.0109934 0.0110062 0.0110189 0.0110317 0.0110445 0.0110572 0.01107 0.0110827 0.0110955 0.0111082 0.011121 0.0111337 0.0111465 0.0111593 0.011172 0.0111848 0.0111975 0.0112103 0.011223 0.0112358 0.0112486 0.0112613 0.0112741 0.0112868 0.0112996 0.0113123 0.0113251 0.0113378 0.0113506 0.0113634 0.0113761 0.0113889 0.0114016 0.0114144 0.0114271 0.0114399 0.0114527 0.0114654 0.0114782 0.0114909 0.0115037 0.0115164 0.0115292 0.0115419 0.0115547 0.0115675 0.0115802 0.011593 0.0116057 0.0116185 0.0116312 0.011644 0.0116567 0.0116695 0.0116823 0.011695 0.0117078 0.0117205 0.0117333 0.011746 0.0117588 0.0117715 0.0117843 0.0117971 0.0118098 0.0118226 0.0118353 0.0118481 0.0118608 0.0118736 0.0118863 0.0118991 0.0119119 0.0119246 0.0119374 0.0119501 0.0119629 0.0119756 0.0119884 0.0120012 0.0120139 0.0120267 0.0120394 0.0120522 0.0120649 0.0120777 0.0120904 0.0121032 0.012116 0.0121287 0.0121415 0.0121542 0.012167 0.0121797 0.0121925 0.0122052 0.012218 0.0122308 0.0122435 +-0.00297987 -0.00268526 -0.00207896 -0.00110385 0.000114391 0.00146307 0.00287743 0.00431776 0.00575277 0.00714812 0.00845209 0.00956902 0.0103323 0.0106507 0.0107303 0.0107538 0.0107681 0.0107811 0.0107939 0.0108067 0.0108195 0.0108322 0.010845 0.0108577 0.0108705 0.0108833 0.010896 0.0109088 0.0109216 0.0109343 0.0109471 0.0109598 0.0109726 0.0109854 0.0109981 0.0110109 0.0110236 0.0110364 0.0110492 0.0110619 0.0110747 0.0110875 0.0111002 0.011113 0.0111257 0.0111385 0.0111513 0.011164 0.0111768 0.0111896 0.0112023 0.0112151 0.0112278 0.0112406 0.0112534 0.0112661 0.0112789 0.0112916 0.0113044 0.0113172 0.0113299 0.0113427 0.0113555 0.0113682 0.011381 0.0113937 0.0114065 0.0114193 0.011432 0.0114448 0.0114575 0.0114703 0.0114831 0.0114958 0.0115086 0.0115214 0.0115341 0.0115469 0.0115596 0.0115724 0.0115852 0.0115979 0.0116107 0.0116234 0.0116362 0.011649 0.0116617 0.0116745 0.0116873 0.0117 0.0117128 0.0117255 0.0117383 0.0117511 0.0117638 0.0117766 0.0117893 0.0118021 0.0118149 0.0118276 0.0118404 0.0118531 0.0118659 0.0118787 0.0118914 0.0119042 0.011917 0.0119297 0.0119425 0.0119552 0.011968 0.0119808 0.0119935 0.0120063 0.0120191 0.0120318 0.0120446 0.0120573 0.0120701 0.0120829 0.0120956 0.0121084 0.0121211 0.0121339 0.0121467 0.0121594 0.0121722 0.012185 0.0121977 0.0122105 0.0122232 0.012236 0.0122488 +-0.00298132 -0.00268638 -0.00207956 -0.00110403 0.000114479 0.00146333 0.00287784 0.00431831 0.00575349 0.00714908 0.00845344 0.00957108 0.0103355 0.0106549 0.0107348 0.0107584 0.0107727 0.0107857 0.0107985 0.0108113 0.0108241 0.0108368 0.0108496 0.0108624 0.0108751 0.0108879 0.0109007 0.0109134 0.0109262 0.010939 0.0109517 0.0109645 0.0109773 0.01099 0.0110028 0.0110156 0.0110283 0.0110411 0.0110539 0.0110667 0.0110794 0.0110922 0.011105 0.0111177 0.0111305 0.0111433 0.011156 0.0111688 0.0111816 0.0111943 0.0112071 0.0112199 0.0112326 0.0112454 0.0112582 0.0112709 0.0112837 0.0112965 0.0113092 0.011322 0.0113348 0.0113475 0.0113603 0.0113731 0.0113858 0.0113986 0.0114114 0.0114241 0.0114369 0.0114497 0.0114624 0.0114752 0.011488 0.0115007 0.0115135 0.0115263 0.011539 0.0115518 0.0115646 0.0115773 0.0115901 0.0116029 0.0116156 0.0116284 0.0116412 0.011654 0.0116667 0.0116795 0.0116923 0.011705 0.0117178 0.0117306 0.0117433 0.0117561 0.0117688 0.0117816 0.0117944 0.0118071 0.0118199 0.0118327 0.0118455 0.0118582 0.011871 0.0118838 0.0118965 0.0119093 0.0119221 0.0119348 0.0119476 0.0119604 0.0119731 0.0119859 0.0119987 0.0120114 0.0120242 0.012037 0.0120497 0.0120625 0.0120753 0.012088 0.0121008 0.0121136 0.0121263 0.0121391 0.0121519 0.0121646 0.0121774 0.0121902 0.0122029 0.0122157 0.0122285 0.0122412 0.012254 +-0.00298277 -0.0026875 -0.00208016 -0.0011042 0.000114566 0.0014636 0.00287825 0.00431886 0.00575422 0.00715005 0.0084548 0.00957314 0.0103388 0.0106591 0.0107394 0.0107629 0.0107773 0.0107903 0.0108031 0.0108159 0.0108287 0.0108415 0.0108542 0.010867 0.0108798 0.0108925 0.0109053 0.0109181 0.0109309 0.0109436 0.0109564 0.0109692 0.010982 0.0109947 0.0110075 0.0110203 0.011033 0.0110458 0.0110586 0.0110714 0.0110841 0.0110969 0.0111097 0.0111225 0.0111352 0.011148 0.0111608 0.0111736 0.0111863 0.0111991 0.0112119 0.0112246 0.0112374 0.0112502 0.011263 0.0112757 0.0112885 0.0113013 0.0113141 0.0113268 0.0113396 0.0113524 0.0113651 0.0113779 0.0113907 0.0114035 0.0114162 0.011429 0.0114418 0.0114546 0.0114673 0.0114801 0.0114929 0.0115057 0.0115184 0.0115312 0.011544 0.0115567 0.0115695 0.0115823 0.0115951 0.0116078 0.0116206 0.0116334 0.0116462 0.0116589 0.0116717 0.0116845 0.0116972 0.01171 0.0117228 0.0117356 0.0117483 0.0117611 0.0117739 0.0117866 0.0117994 0.0118122 0.011825 0.0118377 0.0118505 0.0118633 0.0118761 0.0118888 0.0119016 0.0119144 0.0119272 0.0119399 0.0119527 0.0119655 0.0119782 0.011991 0.0120038 0.0120166 0.0120293 0.0120421 0.0120549 0.0120677 0.0120804 0.0120932 0.012106 0.0121187 0.0121315 0.0121443 0.0121571 0.0121698 0.0121826 0.0121954 0.0122082 0.0122209 0.0122337 0.0122465 0.0122593 +-0.00298422 -0.00268863 -0.00208076 -0.00110438 0.000114654 0.00146386 0.00287866 0.00431941 0.00575494 0.00715101 0.00845615 0.0095752 0.010342 0.0106633 0.0107439 0.0107675 0.0107819 0.0107949 0.0108077 0.0108205 0.0108333 0.0108461 0.0108588 0.0108716 0.0108844 0.0108972 0.01091 0.0109227 0.0109355 0.0109483 0.0109611 0.0109739 0.0109866 0.0109994 0.0110122 0.011025 0.0110377 0.0110505 0.0110633 0.0110761 0.0110889 0.0111016 0.0111144 0.0111272 0.01114 0.0111528 0.0111655 0.0111783 0.0111911 0.0112039 0.0112167 0.0112294 0.0112422 0.011255 0.0112678 0.0112805 0.0112933 0.0113061 0.0113189 0.0113317 0.0113444 0.0113572 0.01137 0.0113828 0.0113956 0.0114083 0.0114211 0.0114339 0.0114467 0.0114594 0.0114722 0.011485 0.0114978 0.0115106 0.0115233 0.0115361 0.0115489 0.0115617 0.0115745 0.0115872 0.0116 0.0116128 0.0116256 0.0116383 0.0116511 0.0116639 0.0116767 0.0116895 0.0117022 0.011715 0.0117278 0.0117406 0.0117533 0.0117661 0.0117789 0.0117917 0.0118045 0.0118172 0.01183 0.0118428 0.0118556 0.0118684 0.0118811 0.0118939 0.0119067 0.0119195 0.0119322 0.011945 0.0119578 0.0119706 0.0119834 0.0119961 0.0120089 0.0120217 0.0120345 0.0120473 0.01206 0.0120728 0.0120856 0.0120984 0.0121111 0.0121239 0.0121367 0.0121495 0.0121623 0.012175 0.0121878 0.0122006 0.0122134 0.0122262 0.0122389 0.0122517 0.0122645 +-0.00298567 -0.00268975 -0.00208136 -0.00110455 0.000114742 0.00146413 0.00287907 0.00431996 0.00575566 0.00715197 0.0084575 0.00957726 0.0103452 0.0106675 0.0107484 0.0107721 0.0107865 0.0107995 0.0108123 0.0108251 0.0108379 0.0108507 0.0108635 0.0108762 0.010889 0.0109018 0.0109146 0.0109274 0.0109402 0.010953 0.0109657 0.0109785 0.0109913 0.0110041 0.0110169 0.0110297 0.0110424 0.0110552 0.011068 0.0110808 0.0110936 0.0111064 0.0111192 0.0111319 0.0111447 0.0111575 0.0111703 0.0111831 0.0111959 0.0112086 0.0112214 0.0112342 0.011247 0.0112598 0.0112726 0.0112853 0.0112981 0.0113109 0.0113237 0.0113365 0.0113493 0.0113621 0.0113748 0.0113876 0.0114004 0.0114132 0.011426 0.0114388 0.0114515 0.0114643 0.0114771 0.0114899 0.0115027 0.0115155 0.0115283 0.011541 0.0115538 0.0115666 0.0115794 0.0115922 0.011605 0.0116177 0.0116305 0.0116433 0.0116561 0.0116689 0.0116817 0.0116944 0.0117072 0.01172 0.0117328 0.0117456 0.0117584 0.0117711 0.0117839 0.0117967 0.0118095 0.0118223 0.0118351 0.0118478 0.0118606 0.0118734 0.0118862 0.011899 0.0119118 0.0119246 0.0119373 0.0119501 0.0119629 0.0119757 0.0119885 0.0120013 0.012014 0.0120268 0.0120396 0.0120524 0.0120652 0.012078 0.0120908 0.0121035 0.0121163 0.0121291 0.0121419 0.0121547 0.0121675 0.0121802 0.012193 0.0122058 0.0122186 0.0122314 0.0122442 0.0122569 0.0122697 +-0.00298712 -0.00269087 -0.00208196 -0.00110473 0.000114829 0.00146439 0.00287948 0.00432051 0.00575638 0.00715293 0.00845885 0.00957931 0.0103484 0.0106717 0.0107529 0.0107766 0.0107911 0.0108041 0.0108169 0.0108297 0.0108425 0.0108553 0.0108681 0.0108809 0.0108937 0.0109065 0.0109192 0.010932 0.0109448 0.0109576 0.0109704 0.0109832 0.010996 0.0110088 0.0110216 0.0110344 0.0110471 0.0110599 0.0110727 0.0110855 0.0110983 0.0111111 0.0111239 0.0111367 0.0111495 0.0111623 0.011175 0.0111878 0.0112006 0.0112134 0.0112262 0.011239 0.0112518 0.0112646 0.0112774 0.0112902 0.0113029 0.0113157 0.0113285 0.0113413 0.0113541 0.0113669 0.0113797 0.0113925 0.0114053 0.0114181 0.0114308 0.0114436 0.0114564 0.0114692 0.011482 0.0114948 0.0115076 0.0115204 0.0115332 0.011546 0.0115587 0.0115715 0.0115843 0.0115971 0.0116099 0.0116227 0.0116355 0.0116483 0.0116611 0.0116739 0.0116866 0.0116994 0.0117122 0.011725 0.0117378 0.0117506 0.0117634 0.0117762 0.011789 0.0118017 0.0118145 0.0118273 0.0118401 0.0118529 0.0118657 0.0118785 0.0118913 0.0119041 0.0119169 0.0119296 0.0119424 0.0119552 0.011968 0.0119808 0.0119936 0.0120064 0.0120192 0.012032 0.0120448 0.0120575 0.0120703 0.0120831 0.0120959 0.0121087 0.0121215 0.0121343 0.0121471 0.0121599 0.0121727 0.0121854 0.0121982 0.012211 0.0122238 0.0122366 0.0122494 0.0122622 0.012275 +-0.00298857 -0.00269199 -0.00208255 -0.0011049 0.000114917 0.00146466 0.00287989 0.00432107 0.0057571 0.0071539 0.0084602 0.00958136 0.0103516 0.0106759 0.0107574 0.0107812 0.0107956 0.0108087 0.0108215 0.0108343 0.0108471 0.0108599 0.0108727 0.0108855 0.0108983 0.0109111 0.0109239 0.0109367 0.0109495 0.0109623 0.0109751 0.0109879 0.0110007 0.0110134 0.0110262 0.011039 0.0110518 0.0110646 0.0110774 0.0110902 0.011103 0.0111158 0.0111286 0.0111414 0.0111542 0.011167 0.0111798 0.0111926 0.0112054 0.0112182 0.011231 0.0112438 0.0112566 0.0112694 0.0112822 0.011295 0.0113078 0.0113205 0.0113333 0.0113461 0.0113589 0.0113717 0.0113845 0.0113973 0.0114101 0.0114229 0.0114357 0.0114485 0.0114613 0.0114741 0.0114869 0.0114997 0.0115125 0.0115253 0.0115381 0.0115509 0.0115637 0.0115765 0.0115893 0.0116021 0.0116148 0.0116276 0.0116404 0.0116532 0.011666 0.0116788 0.0116916 0.0117044 0.0117172 0.01173 0.0117428 0.0117556 0.0117684 0.0117812 0.011794 0.0118068 0.0118196 0.0118324 0.0118452 0.011858 0.0118707 0.0118835 0.0118963 0.0119091 0.0119219 0.0119347 0.0119475 0.0119603 0.0119731 0.0119859 0.0119987 0.0120115 0.0120243 0.0120371 0.0120499 0.0120627 0.0120755 0.0120883 0.0121011 0.0121139 0.0121267 0.0121395 0.0121523 0.012165 0.0121778 0.0121906 0.0122034 0.0122162 0.012229 0.0122418 0.0122546 0.0122674 0.0122802 +-0.00299002 -0.00269311 -0.00208315 -0.00110508 0.000115004 0.00146492 0.00288029 0.00432162 0.00575782 0.00715485 0.00846155 0.00958341 0.0103548 0.0106801 0.0107619 0.0107858 0.0108002 0.0108133 0.0108261 0.0108389 0.0108517 0.0108645 0.0108773 0.0108901 0.0109029 0.0109157 0.0109285 0.0109413 0.0109541 0.0109669 0.0109797 0.0109925 0.0110053 0.0110181 0.0110309 0.0110437 0.0110565 0.0110693 0.0110821 0.0110949 0.0111077 0.0111205 0.0111333 0.0111461 0.0111589 0.0111717 0.0111845 0.0111973 0.0112101 0.0112229 0.0112357 0.0112485 0.0112614 0.0112742 0.011287 0.0112998 0.0113126 0.0113254 0.0113382 0.011351 0.0113638 0.0113766 0.0113894 0.0114022 0.011415 0.0114278 0.0114406 0.0114534 0.0114662 0.011479 0.0114918 0.0115046 0.0115174 0.0115302 0.011543 0.0115558 0.0115686 0.0115814 0.0115942 0.011607 0.0116198 0.0116326 0.0116454 0.0116582 0.011671 0.0116838 0.0116966 0.0117094 0.0117222 0.011735 0.0117478 0.0117606 0.0117734 0.0117862 0.011799 0.0118118 0.0118246 0.0118374 0.0118502 0.011863 0.0118758 0.0118886 0.0119014 0.0119142 0.011927 0.0119398 0.0119526 0.0119654 0.0119782 0.011991 0.0120038 0.0120166 0.0120294 0.0120422 0.012055 0.0120678 0.0120806 0.0120934 0.0121062 0.012119 0.0121318 0.0121446 0.0121574 0.0121702 0.012183 0.0121958 0.0122086 0.0122214 0.0122342 0.012247 0.0122598 0.0122726 0.0122854 +-0.00299147 -0.00269423 -0.00208375 -0.00110525 0.000115092 0.00146518 0.0028807 0.00432217 0.00575854 0.00715581 0.00846289 0.00958545 0.010358 0.0106843 0.0107664 0.0107903 0.0108048 0.0108178 0.0108307 0.0108435 0.0108563 0.0108691 0.0108819 0.0108947 0.0109075 0.0109203 0.0109332 0.010946 0.0109588 0.0109716 0.0109844 0.0109972 0.01101 0.0110228 0.0110356 0.0110484 0.0110612 0.011074 0.0110868 0.0110996 0.0111124 0.0111253 0.0111381 0.0111509 0.0111637 0.0111765 0.0111893 0.0112021 0.0112149 0.0112277 0.0112405 0.0112533 0.0112661 0.0112789 0.0112917 0.0113046 0.0113174 0.0113302 0.011343 0.0113558 0.0113686 0.0113814 0.0113942 0.011407 0.0114198 0.0114326 0.0114454 0.0114582 0.011471 0.0114839 0.0114967 0.0115095 0.0115223 0.0115351 0.0115479 0.0115607 0.0115735 0.0115863 0.0115991 0.0116119 0.0116247 0.0116375 0.0116503 0.0116632 0.011676 0.0116888 0.0117016 0.0117144 0.0117272 0.01174 0.0117528 0.0117656 0.0117784 0.0117912 0.011804 0.0118168 0.0118296 0.0118424 0.0118552 0.011868 0.0118809 0.0118937 0.0119065 0.0119193 0.0119321 0.0119449 0.0119577 0.0119705 0.0119833 0.0119961 0.0120089 0.0120217 0.0120345 0.0120473 0.0120602 0.012073 0.0120858 0.0120986 0.0121114 0.0121242 0.012137 0.0121498 0.0121626 0.0121754 0.0121882 0.012201 0.0122138 0.0122266 0.0122395 0.0122523 0.0122651 0.0122779 0.0122907 +-0.00299291 -0.00269535 -0.00208434 -0.00110543 0.00011518 0.00146545 0.00288111 0.00432271 0.00575926 0.00715677 0.00846424 0.00958749 0.0103612 0.0106885 0.0107709 0.0107949 0.0108094 0.0108224 0.0108353 0.0108481 0.0108609 0.0108737 0.0108865 0.0108993 0.0109122 0.010925 0.0109378 0.0109506 0.0109634 0.0109762 0.010989 0.0110018 0.0110147 0.0110275 0.0110403 0.0110531 0.0110659 0.0110787 0.0110915 0.0111044 0.0111172 0.01113 0.0111428 0.0111556 0.0111684 0.0111812 0.011194 0.0112069 0.0112197 0.0112325 0.0112453 0.0112581 0.0112709 0.0112837 0.0112965 0.0113094 0.0113222 0.011335 0.0113478 0.0113606 0.0113734 0.0113862 0.011399 0.0114119 0.0114247 0.0114375 0.0114503 0.0114631 0.0114759 0.0114887 0.0115015 0.0115144 0.0115272 0.01154 0.0115528 0.0115656 0.0115784 0.0115912 0.011604 0.0116169 0.0116297 0.0116425 0.0116553 0.0116681 0.0116809 0.0116937 0.0117065 0.0117194 0.0117322 0.011745 0.0117578 0.0117706 0.0117834 0.0117962 0.011809 0.0118218 0.0118347 0.0118475 0.0118603 0.0118731 0.0118859 0.0118987 0.0119115 0.0119243 0.0119372 0.01195 0.0119628 0.0119756 0.0119884 0.0120012 0.012014 0.0120268 0.0120397 0.0120525 0.0120653 0.0120781 0.0120909 0.0121037 0.0121165 0.0121293 0.0121422 0.012155 0.0121678 0.0121806 0.0121934 0.0122062 0.012219 0.0122318 0.0122447 0.0122575 0.0122703 0.0122831 0.0122959 +-0.00299436 -0.00269646 -0.00208494 -0.0011056 0.000115267 0.00146571 0.00288151 0.00432326 0.00575998 0.00715773 0.00846558 0.00958953 0.0103644 0.0106927 0.0107754 0.0107995 0.0108139 0.010827 0.0108399 0.0108527 0.0108655 0.0108783 0.0108911 0.010904 0.0109168 0.0109296 0.0109424 0.0109552 0.0109681 0.0109809 0.0109937 0.0110065 0.0110193 0.0110321 0.011045 0.0110578 0.0110706 0.0110834 0.0110962 0.0111091 0.0111219 0.0111347 0.0111475 0.0111603 0.0111731 0.011186 0.0111988 0.0112116 0.0112244 0.0112372 0.0112501 0.0112629 0.0112757 0.0112885 0.0113013 0.0113141 0.011327 0.0113398 0.0113526 0.0113654 0.0113782 0.0113911 0.0114039 0.0114167 0.0114295 0.0114423 0.0114552 0.011468 0.0114808 0.0114936 0.0115064 0.0115192 0.0115321 0.0115449 0.0115577 0.0115705 0.0115833 0.0115962 0.011609 0.0116218 0.0116346 0.0116474 0.0116602 0.0116731 0.0116859 0.0116987 0.0117115 0.0117243 0.0117372 0.01175 0.0117628 0.0117756 0.0117884 0.0118012 0.011814 0.0118269 0.0118397 0.0118525 0.0118653 0.0118781 0.011891 0.0119038 0.0119166 0.0119294 0.0119422 0.0119551 0.0119679 0.0119807 0.0119935 0.0120063 0.0120191 0.012032 0.0120448 0.0120576 0.0120704 0.0120832 0.0120961 0.0121089 0.0121217 0.0121345 0.0121473 0.0121601 0.012173 0.0121858 0.0121986 0.0122114 0.0122242 0.0122371 0.0122499 0.0122627 0.0122755 0.0122883 0.0123011 +-0.00299581 -0.00269758 -0.00208553 -0.00110577 0.000115355 0.00146598 0.00288192 0.00432381 0.0057607 0.00715868 0.00846692 0.00959156 0.0103676 0.0106969 0.0107799 0.010804 0.0108185 0.0108316 0.0108445 0.0108573 0.0108701 0.0108829 0.0108958 0.0109086 0.0109214 0.0109342 0.010947 0.0109599 0.0109727 0.0109855 0.0109983 0.0110112 0.011024 0.0110368 0.0110496 0.0110625 0.0110753 0.0110881 0.0111009 0.0111138 0.0111266 0.0111394 0.0111522 0.0111651 0.0111779 0.0111907 0.0112035 0.0112164 0.0112292 0.011242 0.0112548 0.0112676 0.0112805 0.0112933 0.0113061 0.0113189 0.0113318 0.0113446 0.0113574 0.0113702 0.0113831 0.0113959 0.0114087 0.0114215 0.0114344 0.0114472 0.01146 0.0114728 0.0114857 0.0114985 0.0115113 0.0115241 0.011537 0.0115498 0.0115626 0.0115754 0.0115882 0.0116011 0.0116139 0.0116267 0.0116395 0.0116524 0.0116652 0.011678 0.0116908 0.0117037 0.0117165 0.0117293 0.0117421 0.011755 0.0117678 0.0117806 0.0117934 0.0118062 0.0118191 0.0118319 0.0118447 0.0118575 0.0118704 0.0118832 0.011896 0.0119088 0.0119217 0.0119345 0.0119473 0.0119601 0.011973 0.0119858 0.0119986 0.0120114 0.0120242 0.0120371 0.0120499 0.0120627 0.0120755 0.0120884 0.0121012 0.012114 0.0121268 0.0121397 0.0121525 0.0121653 0.0121781 0.012191 0.0122038 0.0122166 0.0122294 0.0122423 0.0122551 0.0122679 0.0122807 0.0122935 0.0123064 +-0.00299725 -0.0026987 -0.00208613 -0.00110595 0.000115442 0.00146624 0.00288233 0.00432436 0.00576142 0.00715964 0.00846826 0.0095936 0.0103708 0.0107011 0.0107844 0.0108086 0.0108231 0.0108362 0.010849 0.0108619 0.0108747 0.0108875 0.0109004 0.0109132 0.010926 0.0109389 0.0109517 0.0109645 0.0109773 0.0109902 0.011003 0.0110158 0.0110287 0.0110415 0.0110543 0.0110671 0.01108 0.0110928 0.0111056 0.0111185 0.0111313 0.0111441 0.011157 0.0111698 0.0111826 0.0111954 0.0112083 0.0112211 0.0112339 0.0112468 0.0112596 0.0112724 0.0112852 0.0112981 0.0113109 0.0113237 0.0113366 0.0113494 0.0113622 0.0113751 0.0113879 0.0114007 0.0114135 0.0114264 0.0114392 0.011452 0.0114649 0.0114777 0.0114905 0.0115034 0.0115162 0.011529 0.0115418 0.0115547 0.0115675 0.0115803 0.0115932 0.011606 0.0116188 0.0116316 0.0116445 0.0116573 0.0116701 0.011683 0.0116958 0.0117086 0.0117215 0.0117343 0.0117471 0.0117599 0.0117728 0.0117856 0.0117984 0.0118112 0.0118241 0.0118369 0.0118497 0.0118626 0.0118754 0.0118882 0.0119011 0.0119139 0.0119267 0.0119395 0.0119524 0.0119652 0.011978 0.0119909 0.0120037 0.0120165 0.0120294 0.0120422 0.012055 0.0120678 0.0120807 0.0120935 0.0121063 0.0121192 0.012132 0.0121448 0.0121576 0.0121705 0.0121833 0.0121961 0.012209 0.0122218 0.0122346 0.0122475 0.0122603 0.0122731 0.0122859 0.0122988 0.0123116 +-0.0029987 -0.00269981 -0.00208672 -0.00110612 0.00011553 0.0014665 0.00288273 0.00432491 0.00576213 0.00716059 0.00846959 0.00959562 0.0103739 0.0107052 0.0107889 0.0108131 0.0108277 0.0108407 0.0108536 0.0108665 0.0108793 0.0108921 0.010905 0.0109178 0.0109306 0.0109435 0.0109563 0.0109691 0.010982 0.0109948 0.0110076 0.0110205 0.0110333 0.0110462 0.011059 0.0110718 0.0110847 0.0110975 0.0111103 0.0111232 0.011136 0.0111488 0.0111617 0.0111745 0.0111873 0.0112002 0.011213 0.0112258 0.0112387 0.0112515 0.0112644 0.0112772 0.01129 0.0113029 0.0113157 0.0113285 0.0113414 0.0113542 0.011367 0.0113799 0.0113927 0.0114055 0.0114184 0.0114312 0.011444 0.0114569 0.0114697 0.0114826 0.0114954 0.0115082 0.0115211 0.0115339 0.0115467 0.0115596 0.0115724 0.0115852 0.0115981 0.0116109 0.0116237 0.0116366 0.0116494 0.0116622 0.0116751 0.0116879 0.0117008 0.0117136 0.0117264 0.0117393 0.0117521 0.0117649 0.0117778 0.0117906 0.0118034 0.0118163 0.0118291 0.0118419 0.0118548 0.0118676 0.0118804 0.0118933 0.0119061 0.0119189 0.0119318 0.0119446 0.0119574 0.0119703 0.0119831 0.0119959 0.0120088 0.0120216 0.0120345 0.0120473 0.0120601 0.012073 0.0120858 0.0120986 0.0121115 0.0121243 0.0121371 0.01215 0.0121628 0.0121756 0.0121885 0.0122013 0.0122141 0.012227 0.0122398 0.0122527 0.0122655 0.0122783 0.0122912 0.012304 0.0123168 +-0.00300014 -0.00270093 -0.00208732 -0.00110629 0.000115618 0.00146676 0.00288314 0.00432545 0.00576285 0.00716154 0.00847093 0.00959765 0.0103771 0.0107094 0.0107934 0.0108177 0.0108322 0.0108453 0.0108582 0.010871 0.0108839 0.0108967 0.0109096 0.0109224 0.0109353 0.0109481 0.0109609 0.0109738 0.0109866 0.0109995 0.0110123 0.0110251 0.011038 0.0110508 0.0110637 0.0110765 0.0110893 0.0111022 0.011115 0.0111279 0.0111407 0.0111535 0.0111664 0.0111792 0.0111921 0.0112049 0.0112178 0.0112306 0.0112434 0.0112563 0.0112691 0.011282 0.0112948 0.0113076 0.0113205 0.0113333 0.0113462 0.011359 0.0113718 0.0113847 0.0113975 0.0114104 0.0114232 0.011436 0.0114489 0.0114617 0.0114746 0.0114874 0.0115003 0.0115131 0.0115259 0.0115388 0.0115516 0.0115645 0.0115773 0.0115901 0.011603 0.0116158 0.0116287 0.0116415 0.0116543 0.0116672 0.01168 0.0116929 0.0117057 0.0117185 0.0117314 0.0117442 0.0117571 0.0117699 0.0117827 0.0117956 0.0118084 0.0118213 0.0118341 0.0118469 0.0118598 0.0118726 0.0118855 0.0118983 0.0119111 0.011924 0.0119368 0.0119497 0.0119625 0.0119754 0.0119882 0.012001 0.0120139 0.0120267 0.0120396 0.0120524 0.0120652 0.0120781 0.0120909 0.0121038 0.0121166 0.0121294 0.0121423 0.0121551 0.012168 0.0121808 0.0121936 0.0122065 0.0122193 0.0122322 0.012245 0.0122579 0.0122707 0.0122835 0.0122964 0.0123092 0.0123221 +-0.00300159 -0.00270204 -0.00208791 -0.00110646 0.000115705 0.00146703 0.00288354 0.004326 0.00576356 0.00716249 0.00847226 0.00959967 0.0103803 0.0107136 0.0107979 0.0108222 0.0108368 0.0108499 0.0108628 0.0108756 0.0108885 0.0109013 0.0109142 0.010927 0.0109399 0.0109527 0.0109656 0.0109784 0.0109913 0.0110041 0.0110169 0.0110298 0.0110426 0.0110555 0.0110683 0.0110812 0.011094 0.0111069 0.0111197 0.0111326 0.0111454 0.0111583 0.0111711 0.011184 0.0111968 0.0112096 0.0112225 0.0112353 0.0112482 0.011261 0.0112739 0.0112867 0.0112996 0.0113124 0.0113253 0.0113381 0.011351 0.0113638 0.0113767 0.0113895 0.0114023 0.0114152 0.011428 0.0114409 0.0114537 0.0114666 0.0114794 0.0114923 0.0115051 0.011518 0.0115308 0.0115437 0.0115565 0.0115693 0.0115822 0.011595 0.0116079 0.0116207 0.0116336 0.0116464 0.0116593 0.0116721 0.011685 0.0116978 0.0117107 0.0117235 0.0117364 0.0117492 0.011762 0.0117749 0.0117877 0.0118006 0.0118134 0.0118263 0.0118391 0.011852 0.0118648 0.0118777 0.0118905 0.0119033 0.0119162 0.011929 0.0119419 0.0119547 0.0119676 0.0119804 0.0119933 0.0120061 0.012019 0.0120318 0.0120447 0.0120575 0.0120703 0.0120832 0.012096 0.0121089 0.0121217 0.0121346 0.0121474 0.0121603 0.0121731 0.012186 0.0121988 0.0122117 0.0122245 0.0122374 0.0122502 0.012263 0.0122759 0.0122887 0.0123016 0.0123144 0.0123273 +-0.00300303 -0.00270315 -0.0020885 -0.00110664 0.000115793 0.00146729 0.00288395 0.00432655 0.00576428 0.00716344 0.0084736 0.00960169 0.0103834 0.0107177 0.0108024 0.0108268 0.0108414 0.0108545 0.0108674 0.0108802 0.0108931 0.0109059 0.0109188 0.0109316 0.0109445 0.0109573 0.0109702 0.010983 0.0109959 0.0110087 0.0110216 0.0110344 0.0110473 0.0110602 0.011073 0.0110859 0.0110987 0.0111116 0.0111244 0.0111373 0.0111501 0.011163 0.0111758 0.0111887 0.0112015 0.0112144 0.0112272 0.0112401 0.0112529 0.0112658 0.0112786 0.0112915 0.0113043 0.0113172 0.01133 0.0113429 0.0113558 0.0113686 0.0113815 0.0113943 0.0114072 0.01142 0.0114329 0.0114457 0.0114586 0.0114714 0.0114843 0.0114971 0.01151 0.0115228 0.0115357 0.0115485 0.0115614 0.0115742 0.0115871 0.0115999 0.0116128 0.0116256 0.0116385 0.0116514 0.0116642 0.0116771 0.0116899 0.0117028 0.0117156 0.0117285 0.0117413 0.0117542 0.011767 0.0117799 0.0117927 0.0118056 0.0118184 0.0118313 0.0118441 0.011857 0.0118698 0.0118827 0.0118955 0.0119084 0.0119212 0.0119341 0.0119469 0.0119598 0.0119726 0.0119855 0.0119983 0.0120112 0.012024 0.0120369 0.0120498 0.0120626 0.0120755 0.0120883 0.0121012 0.012114 0.0121269 0.0121397 0.0121526 0.0121654 0.0121783 0.0121911 0.012204 0.0122168 0.0122297 0.0122425 0.0122554 0.0122682 0.0122811 0.0122939 0.0123068 0.0123196 0.0123325 +-0.00300447 -0.00270426 -0.00208909 -0.00110681 0.000115881 0.00146755 0.00288435 0.00432709 0.00576499 0.00716439 0.00847493 0.00960371 0.0103866 0.0107219 0.0108069 0.0108313 0.0108459 0.010859 0.0108719 0.0108848 0.0108977 0.0109105 0.0109234 0.0109362 0.0109491 0.010962 0.0109748 0.0109877 0.0110005 0.0110134 0.0110262 0.0110391 0.011052 0.0110648 0.0110777 0.0110905 0.0111034 0.0111162 0.0111291 0.011142 0.0111548 0.0111677 0.0111805 0.0111934 0.0112063 0.0112191 0.011232 0.0112448 0.0112577 0.0112705 0.0112834 0.0112963 0.0113091 0.011322 0.0113348 0.0113477 0.0113605 0.0113734 0.0113863 0.0113991 0.011412 0.0114248 0.0114377 0.0114505 0.0114634 0.0114763 0.0114891 0.011502 0.0115148 0.0115277 0.0115406 0.0115534 0.0115663 0.0115791 0.011592 0.0116048 0.0116177 0.0116306 0.0116434 0.0116563 0.0116691 0.011682 0.0116948 0.0117077 0.0117206 0.0117334 0.0117463 0.0117591 0.011772 0.0117849 0.0117977 0.0118106 0.0118234 0.0118363 0.0118491 0.011862 0.0118748 0.0118877 0.0119006 0.0119134 0.0119263 0.0119391 0.011952 0.0119648 0.0119777 0.0119906 0.0120034 0.0120163 0.0120291 0.012042 0.0120549 0.0120677 0.0120806 0.0120934 0.0121063 0.0121191 0.012132 0.0121449 0.0121577 0.0121706 0.0121834 0.0121963 0.0122091 0.012222 0.0122349 0.0122477 0.0122606 0.0122734 0.0122863 0.0122991 0.012312 0.0123249 0.0123377 +-0.00300591 -0.00270538 -0.00208968 -0.00110698 0.000115968 0.00146782 0.00288476 0.00432764 0.00576571 0.00716534 0.00847625 0.00960573 0.0103898 0.0107261 0.0108114 0.0108359 0.0108505 0.0108636 0.0108765 0.0108894 0.0109023 0.0109151 0.010928 0.0109408 0.0109537 0.0109666 0.0109794 0.0109923 0.0110052 0.011018 0.0110309 0.0110437 0.0110566 0.0110695 0.0110823 0.0110952 0.0111081 0.0111209 0.0111338 0.0111467 0.0111595 0.0111724 0.0111852 0.0111981 0.011211 0.0112238 0.0112367 0.0112496 0.0112624 0.0112753 0.0112882 0.011301 0.0113139 0.0113267 0.0113396 0.0113525 0.0113653 0.0113782 0.0113911 0.0114039 0.0114168 0.0114297 0.0114425 0.0114554 0.0114682 0.0114811 0.011494 0.0115068 0.0115197 0.0115326 0.0115454 0.0115583 0.0115711 0.011584 0.0115969 0.0116097 0.0116226 0.0116355 0.0116483 0.0116612 0.0116741 0.0116869 0.0116998 0.0117126 0.0117255 0.0117384 0.0117512 0.0117641 0.011777 0.0117898 0.0118027 0.0118155 0.0118284 0.0118413 0.0118541 0.011867 0.0118799 0.0118927 0.0119056 0.0119184 0.0119313 0.0119442 0.011957 0.0119699 0.0119828 0.0119956 0.0120085 0.0120214 0.0120342 0.0120471 0.0120599 0.0120728 0.0120857 0.0120985 0.0121114 0.0121243 0.0121371 0.01215 0.0121629 0.0121757 0.0121886 0.0122014 0.0122143 0.0122272 0.01224 0.0122529 0.0122658 0.0122786 0.0122915 0.0123044 0.0123172 0.0123301 0.0123429 +-0.00300736 -0.00270649 -0.00209027 -0.00110715 0.000116056 0.00146808 0.00288516 0.00432818 0.00576642 0.00716629 0.00847758 0.00960774 0.0103929 0.0107302 0.0108158 0.0108404 0.0108551 0.0108682 0.0108811 0.010894 0.0109068 0.0109197 0.0109326 0.0109454 0.0109583 0.0109712 0.0109841 0.0109969 0.0110098 0.0110227 0.0110355 0.0110484 0.0110613 0.0110741 0.011087 0.0110999 0.0111127 0.0111256 0.0111385 0.0111514 0.0111642 0.0111771 0.01119 0.0112028 0.0112157 0.0112286 0.0112414 0.0112543 0.0112672 0.01128 0.0112929 0.0113058 0.0113186 0.0113315 0.0113444 0.0113573 0.0113701 0.011383 0.0113959 0.0114087 0.0114216 0.0114345 0.0114473 0.0114602 0.0114731 0.0114859 0.0114988 0.0115117 0.0115246 0.0115374 0.0115503 0.0115632 0.011576 0.0115889 0.0116018 0.0116146 0.0116275 0.0116404 0.0116532 0.0116661 0.011679 0.0116919 0.0117047 0.0117176 0.0117305 0.0117433 0.0117562 0.0117691 0.0117819 0.0117948 0.0118077 0.0118205 0.0118334 0.0118463 0.0118591 0.011872 0.0118849 0.0118977 0.0119106 0.0119235 0.0119363 0.0119492 0.0119621 0.011975 0.0119878 0.0120007 0.0120136 0.0120264 0.0120393 0.0120522 0.012065 0.0120779 0.0120908 0.0121036 0.0121165 0.0121294 0.0121423 0.0121551 0.012168 0.0121809 0.0121937 0.0122066 0.0122195 0.0122323 0.0122452 0.0122581 0.0122709 0.0122838 0.0122967 0.0123096 0.0123224 0.0123353 0.0123482 +-0.0030088 -0.0027076 -0.00209086 -0.00110732 0.000116144 0.00146834 0.00288557 0.00432873 0.00576713 0.00716724 0.00847891 0.00960975 0.0103961 0.0107344 0.0108203 0.010845 0.0108596 0.0108728 0.0108857 0.0108985 0.0109114 0.0109243 0.0109372 0.01095 0.0109629 0.0109758 0.0109887 0.0110015 0.0110144 0.0110273 0.0110402 0.011053 0.0110659 0.0110788 0.0110917 0.0111045 0.0111174 0.0111303 0.0111432 0.011156 0.0111689 0.0111818 0.0111947 0.0112075 0.0112204 0.0112333 0.0112462 0.011259 0.0112719 0.0112848 0.0112977 0.0113105 0.0113234 0.0113363 0.0113492 0.011362 0.0113749 0.0113878 0.0114007 0.0114135 0.0114264 0.0114393 0.0114522 0.011465 0.0114779 0.0114908 0.0115037 0.0115165 0.0115294 0.0115423 0.0115552 0.011568 0.0115809 0.0115938 0.0116067 0.0116195 0.0116324 0.0116453 0.0116582 0.011671 0.0116839 0.0116968 0.0117097 0.0117225 0.0117354 0.0117483 0.0117612 0.011774 0.0117869 0.0117998 0.0118126 0.0118255 0.0118384 0.0118513 0.0118641 0.011877 0.0118899 0.0119028 0.0119156 0.0119285 0.0119414 0.0119543 0.0119671 0.01198 0.0119929 0.0120058 0.0120186 0.0120315 0.0120444 0.0120573 0.0120701 0.012083 0.0120959 0.0121088 0.0121216 0.0121345 0.0121474 0.0121603 0.0121731 0.012186 0.0121989 0.0122118 0.0122246 0.0122375 0.0122504 0.0122633 0.0122761 0.012289 0.0123019 0.0123148 0.0123276 0.0123405 0.0123534 +-0.00301024 -0.00270871 -0.00209145 -0.0011075 0.000116231 0.0014686 0.00288597 0.00432927 0.00576784 0.00716818 0.00848023 0.00961175 0.0103992 0.0107385 0.0108248 0.0108495 0.0108642 0.0108773 0.0108902 0.0109031 0.010916 0.0109289 0.0109418 0.0109546 0.0109675 0.0109804 0.0109933 0.0110062 0.0110191 0.0110319 0.0110448 0.0110577 0.0110706 0.0110835 0.0110963 0.0111092 0.0111221 0.011135 0.0111479 0.0111607 0.0111736 0.0111865 0.0111994 0.0112123 0.0112251 0.011238 0.0112509 0.0112638 0.0112767 0.0112895 0.0113024 0.0113153 0.0113282 0.0113411 0.0113539 0.0113668 0.0113797 0.0113926 0.0114055 0.0114183 0.0114312 0.0114441 0.011457 0.0114699 0.0114827 0.0114956 0.0115085 0.0115214 0.0115343 0.0115471 0.01156 0.0115729 0.0115858 0.0115987 0.0116115 0.0116244 0.0116373 0.0116502 0.0116631 0.0116759 0.0116888 0.0117017 0.0117146 0.0117275 0.0117403 0.0117532 0.0117661 0.011779 0.0117919 0.0118047 0.0118176 0.0118305 0.0118434 0.0118563 0.0118691 0.011882 0.0118949 0.0119078 0.0119207 0.0119335 0.0119464 0.0119593 0.0119722 0.0119851 0.0119979 0.0120108 0.0120237 0.0120366 0.0120495 0.0120623 0.0120752 0.0120881 0.012101 0.0121139 0.0121267 0.0121396 0.0121525 0.0121654 0.0121783 0.0121911 0.012204 0.0122169 0.0122298 0.0122427 0.0122555 0.0122684 0.0122813 0.0122942 0.0123071 0.0123199 0.0123328 0.0123457 0.0123586 +-0.00301168 -0.00270982 -0.00209204 -0.00110767 0.000116319 0.00146886 0.00288637 0.00432982 0.00576855 0.00716913 0.00848155 0.00961376 0.0104023 0.0107427 0.0108293 0.0108541 0.0108687 0.0108819 0.0108948 0.0109077 0.0109206 0.0109335 0.0109464 0.0109592 0.0109721 0.010985 0.0109979 0.0110108 0.0110237 0.0110366 0.0110495 0.0110623 0.0110752 0.0110881 0.011101 0.0111139 0.0111268 0.0111397 0.0111525 0.0111654 0.0111783 0.0111912 0.0112041 0.011217 0.0112299 0.0112427 0.0112556 0.0112685 0.0112814 0.0112943 0.0113072 0.0113201 0.0113329 0.0113458 0.0113587 0.0113716 0.0113845 0.0113974 0.0114103 0.0114231 0.011436 0.0114489 0.0114618 0.0114747 0.0114876 0.0115005 0.0115133 0.0115262 0.0115391 0.011552 0.0115649 0.0115778 0.0115907 0.0116035 0.0116164 0.0116293 0.0116422 0.0116551 0.011668 0.0116809 0.0116937 0.0117066 0.0117195 0.0117324 0.0117453 0.0117582 0.0117711 0.011784 0.0117968 0.0118097 0.0118226 0.0118355 0.0118484 0.0118613 0.0118741 0.011887 0.0118999 0.0119128 0.0119257 0.0119386 0.0119515 0.0119643 0.0119772 0.0119901 0.012003 0.0120159 0.0120288 0.0120417 0.0120545 0.0120674 0.0120803 0.0120932 0.0121061 0.012119 0.0121319 0.0121447 0.0121576 0.0121705 0.0121834 0.0121963 0.0122092 0.0122221 0.0122349 0.0122478 0.0122607 0.0122736 0.0122865 0.0122994 0.0123123 0.0123251 0.012338 0.0123509 0.0123638 +-0.00301312 -0.00271092 -0.00209263 -0.00110784 0.000116407 0.00146913 0.00288678 0.00433036 0.00576927 0.00717007 0.00848288 0.00961576 0.0104055 0.0107468 0.0108338 0.0108586 0.0108733 0.0108865 0.0108994 0.0109123 0.0109252 0.0109381 0.010951 0.0109638 0.0109767 0.0109896 0.0110025 0.0110154 0.0110283 0.0110412 0.0110541 0.011067 0.0110799 0.0110928 0.0111057 0.0111185 0.0111314 0.0111443 0.0111572 0.0111701 0.011183 0.0111959 0.0112088 0.0112217 0.0112346 0.0112475 0.0112604 0.0112732 0.0112861 0.011299 0.0113119 0.0113248 0.0113377 0.0113506 0.0113635 0.0113764 0.0113893 0.0114022 0.0114151 0.0114279 0.0114408 0.0114537 0.0114666 0.0114795 0.0114924 0.0115053 0.0115182 0.0115311 0.011544 0.0115569 0.0115698 0.0115826 0.0115955 0.0116084 0.0116213 0.0116342 0.0116471 0.01166 0.0116729 0.0116858 0.0116987 0.0117116 0.0117245 0.0117373 0.0117502 0.0117631 0.011776 0.0117889 0.0118018 0.0118147 0.0118276 0.0118405 0.0118534 0.0118662 0.0118791 0.011892 0.0119049 0.0119178 0.0119307 0.0119436 0.0119565 0.0119694 0.0119823 0.0119952 0.0120081 0.0120209 0.0120338 0.0120467 0.0120596 0.0120725 0.0120854 0.0120983 0.0121112 0.0121241 0.012137 0.0121499 0.0121627 0.0121756 0.0121885 0.0122014 0.0122143 0.0122272 0.0122401 0.012253 0.0122659 0.0122788 0.0122917 0.0123046 0.0123174 0.0123303 0.0123432 0.0123561 0.012369 +-0.00301456 -0.00271203 -0.00209321 -0.00110801 0.000116494 0.00146939 0.00288718 0.0043309 0.00576997 0.00717102 0.00848419 0.00961776 0.0104086 0.010751 0.0108382 0.0108632 0.0108779 0.010891 0.010904 0.0109169 0.0109298 0.0109427 0.0109555 0.0109684 0.0109813 0.0109942 0.0110071 0.01102 0.0110329 0.0110458 0.0110587 0.0110716 0.0110845 0.0110974 0.0111103 0.0111232 0.0111361 0.011149 0.0111619 0.0111748 0.0111877 0.0112006 0.0112135 0.0112264 0.0112393 0.0112522 0.0112651 0.011278 0.0112909 0.0113038 0.0113167 0.0113296 0.0113425 0.0113554 0.0113683 0.0113812 0.0113941 0.011407 0.0114198 0.0114327 0.0114456 0.0114585 0.0114714 0.0114843 0.0114972 0.0115101 0.011523 0.0115359 0.0115488 0.0115617 0.0115746 0.0115875 0.0116004 0.0116133 0.0116262 0.0116391 0.011652 0.0116649 0.0116778 0.0116907 0.0117036 0.0117165 0.0117294 0.0117423 0.0117552 0.0117681 0.011781 0.0117939 0.0118068 0.0118196 0.0118325 0.0118454 0.0118583 0.0118712 0.0118841 0.011897 0.0119099 0.0119228 0.0119357 0.0119486 0.0119615 0.0119744 0.0119873 0.0120002 0.0120131 0.012026 0.0120389 0.0120518 0.0120647 0.0120776 0.0120905 0.0121034 0.0121163 0.0121292 0.0121421 0.012155 0.0121679 0.0121808 0.0121937 0.0122066 0.0122195 0.0122324 0.0122453 0.0122582 0.012271 0.0122839 0.0122968 0.0123097 0.0123226 0.0123355 0.0123484 0.0123613 0.0123742 +-0.003016 -0.00271314 -0.0020938 -0.00110818 0.000116582 0.00146965 0.00288758 0.00433145 0.00577068 0.00717196 0.00848551 0.00961975 0.0104117 0.0107551 0.0108427 0.0108677 0.0108824 0.0108956 0.0109085 0.0109214 0.0109343 0.0109472 0.0109601 0.010973 0.0109859 0.0109988 0.0110117 0.0110247 0.0110376 0.0110505 0.0110634 0.0110763 0.0110892 0.0111021 0.011115 0.0111279 0.0111408 0.0111537 0.0111666 0.0111795 0.0111924 0.0112053 0.0112182 0.0112311 0.011244 0.0112569 0.0112698 0.0112827 0.0112956 0.0113085 0.0113214 0.0113343 0.0113472 0.0113601 0.011373 0.0113859 0.0113988 0.0114117 0.0114246 0.0114375 0.0114504 0.0114633 0.0114763 0.0114892 0.0115021 0.011515 0.0115279 0.0115408 0.0115537 0.0115666 0.0115795 0.0115924 0.0116053 0.0116182 0.0116311 0.011644 0.0116569 0.0116698 0.0116827 0.0116956 0.0117085 0.0117214 0.0117343 0.0117472 0.0117601 0.011773 0.0117859 0.0117988 0.0118117 0.0118246 0.0118375 0.0118504 0.0118633 0.0118762 0.0118891 0.011902 0.0119149 0.0119278 0.0119407 0.0119536 0.0119665 0.0119794 0.0119923 0.0120053 0.0120182 0.0120311 0.012044 0.0120569 0.0120698 0.0120827 0.0120956 0.0121085 0.0121214 0.0121343 0.0121472 0.0121601 0.012173 0.0121859 0.0121988 0.0122117 0.0122246 0.0122375 0.0122504 0.0122633 0.0122762 0.0122891 0.012302 0.0123149 0.0123278 0.0123407 0.0123536 0.0123665 0.0123794 +-0.00301744 -0.00271425 -0.00209439 -0.00110835 0.00011667 0.00146991 0.00288798 0.00433199 0.00577139 0.0071729 0.00848683 0.00962174 0.0104149 0.0107593 0.0108472 0.0108722 0.010887 0.0109001 0.0109131 0.010926 0.0109389 0.0109518 0.0109647 0.0109776 0.0109905 0.0110035 0.0110164 0.0110293 0.0110422 0.0110551 0.011068 0.0110809 0.0110938 0.0111067 0.0111196 0.0111325 0.0111454 0.0111584 0.0111713 0.0111842 0.0111971 0.01121 0.0112229 0.0112358 0.0112487 0.0112616 0.0112745 0.0112874 0.0113003 0.0113133 0.0113262 0.0113391 0.011352 0.0113649 0.0113778 0.0113907 0.0114036 0.0114165 0.0114294 0.0114423 0.0114552 0.0114682 0.0114811 0.011494 0.0115069 0.0115198 0.0115327 0.0115456 0.0115585 0.0115714 0.0115843 0.0115972 0.0116102 0.0116231 0.011636 0.0116489 0.0116618 0.0116747 0.0116876 0.0117005 0.0117134 0.0117263 0.0117392 0.0117521 0.0117651 0.011778 0.0117909 0.0118038 0.0118167 0.0118296 0.0118425 0.0118554 0.0118683 0.0118812 0.0118941 0.011907 0.0119199 0.0119328 0.0119458 0.0119587 0.0119716 0.0119845 0.0119974 0.0120103 0.0120232 0.0120361 0.012049 0.0120619 0.0120748 0.0120877 0.0121007 0.0121136 0.0121265 0.0121394 0.0121523 0.0121652 0.0121781 0.012191 0.0122039 0.0122168 0.0122297 0.0122426 0.0122556 0.0122685 0.0122814 0.0122943 0.0123072 0.0123201 0.012333 0.0123459 0.0123588 0.0123717 0.0123846 +-0.00301888 -0.00271535 -0.00209497 -0.00110852 0.000116758 0.00147017 0.00288839 0.00433253 0.0057721 0.00717384 0.00848814 0.00962373 0.010418 0.0107634 0.0108517 0.0108768 0.0108915 0.0109047 0.0109177 0.0109306 0.0109435 0.0109564 0.0109693 0.0109822 0.0109951 0.0110081 0.011021 0.0110339 0.0110468 0.0110597 0.0110726 0.0110855 0.0110985 0.0111114 0.0111243 0.0111372 0.0111501 0.011163 0.0111759 0.0111889 0.0112018 0.0112147 0.0112276 0.0112405 0.0112534 0.0112663 0.0112793 0.0112922 0.0113051 0.011318 0.0113309 0.0113438 0.0113567 0.0113697 0.0113826 0.0113955 0.0114084 0.0114213 0.0114342 0.0114471 0.01146 0.011473 0.0114859 0.0114988 0.0115117 0.0115246 0.0115375 0.0115504 0.0115634 0.0115763 0.0115892 0.0116021 0.011615 0.0116279 0.0116408 0.0116538 0.0116667 0.0116796 0.0116925 0.0117054 0.0117183 0.0117312 0.0117442 0.0117571 0.01177 0.0117829 0.0117958 0.0118087 0.0118216 0.0118345 0.0118475 0.0118604 0.0118733 0.0118862 0.0118991 0.011912 0.0119249 0.0119379 0.0119508 0.0119637 0.0119766 0.0119895 0.0120024 0.0120153 0.0120283 0.0120412 0.0120541 0.012067 0.0120799 0.0120928 0.0121057 0.0121187 0.0121316 0.0121445 0.0121574 0.0121703 0.0121832 0.0121961 0.0122091 0.012222 0.0122349 0.0122478 0.0122607 0.0122736 0.0122865 0.0122994 0.0123124 0.0123253 0.0123382 0.0123511 0.012364 0.0123769 0.0123898 +-0.00302031 -0.00271646 -0.00209556 -0.00110869 0.000116845 0.00147043 0.00288879 0.00433307 0.00577281 0.00717478 0.00848946 0.00962572 0.0104211 0.0107675 0.0108561 0.0108813 0.0108961 0.0109093 0.0109222 0.0109351 0.0109481 0.010961 0.0109739 0.0109868 0.0109997 0.0110127 0.0110256 0.0110385 0.0110514 0.0110643 0.0110773 0.0110902 0.0111031 0.011116 0.0111289 0.0111419 0.0111548 0.0111677 0.0111806 0.0111935 0.0112065 0.0112194 0.0112323 0.0112452 0.0112581 0.0112711 0.011284 0.0112969 0.0113098 0.0113227 0.0113357 0.0113486 0.0113615 0.0113744 0.0113873 0.0114003 0.0114132 0.0114261 0.011439 0.0114519 0.0114648 0.0114778 0.0114907 0.0115036 0.0115165 0.0115294 0.0115424 0.0115553 0.0115682 0.0115811 0.011594 0.011607 0.0116199 0.0116328 0.0116457 0.0116586 0.0116716 0.0116845 0.0116974 0.0117103 0.0117232 0.0117362 0.0117491 0.011762 0.0117749 0.0117878 0.0118008 0.0118137 0.0118266 0.0118395 0.0118524 0.0118653 0.0118783 0.0118912 0.0119041 0.011917 0.0119299 0.0119429 0.0119558 0.0119687 0.0119816 0.0119945 0.0120075 0.0120204 0.0120333 0.0120462 0.0120591 0.0120721 0.012085 0.0120979 0.0121108 0.0121237 0.0121367 0.0121496 0.0121625 0.0121754 0.0121883 0.0122013 0.0122142 0.0122271 0.01224 0.0122529 0.0122659 0.0122788 0.0122917 0.0123046 0.0123175 0.0123305 0.0123434 0.0123563 0.0123692 0.0123821 0.0123951 +-0.00302175 -0.00271756 -0.00209614 -0.00110886 0.000116933 0.00147069 0.00288919 0.00433361 0.00577352 0.00717572 0.00849077 0.0096277 0.0104242 0.0107717 0.0108606 0.0108858 0.0109006 0.0109138 0.0109268 0.0109397 0.0109526 0.0109656 0.0109785 0.0109914 0.0110043 0.0110173 0.0110302 0.0110431 0.011056 0.011069 0.0110819 0.0110948 0.0111077 0.0111207 0.0111336 0.0111465 0.0111594 0.0111724 0.0111853 0.0111982 0.0112111 0.0112241 0.011237 0.0112499 0.0112628 0.0112758 0.0112887 0.0113016 0.0113145 0.0113275 0.0113404 0.0113533 0.0113662 0.0113792 0.0113921 0.011405 0.0114179 0.0114309 0.0114438 0.0114567 0.0114696 0.0114826 0.0114955 0.0115084 0.0115213 0.0115343 0.0115472 0.0115601 0.0115731 0.011586 0.0115989 0.0116118 0.0116248 0.0116377 0.0116506 0.0116635 0.0116765 0.0116894 0.0117023 0.0117152 0.0117282 0.0117411 0.011754 0.0117669 0.0117799 0.0117928 0.0118057 0.0118186 0.0118316 0.0118445 0.0118574 0.0118703 0.0118832 0.0118962 0.0119091 0.011922 0.0119349 0.0119479 0.0119608 0.0119737 0.0119866 0.0119996 0.0120125 0.0120254 0.0120383 0.0120513 0.0120642 0.0120771 0.01209 0.012103 0.0121159 0.0121288 0.0121417 0.0121547 0.0121676 0.0121805 0.0121934 0.0122064 0.0122193 0.0122322 0.0122452 0.0122581 0.012271 0.0122839 0.0122969 0.0123098 0.0123227 0.0123356 0.0123486 0.0123615 0.0123744 0.0123873 0.0124003 +-0.00302319 -0.00271866 -0.00209673 -0.00110903 0.000117021 0.00147095 0.00288959 0.00433415 0.00577422 0.00717665 0.00849208 0.00962968 0.0104273 0.0107758 0.0108651 0.0108904 0.0109052 0.0109184 0.0109313 0.0109443 0.0109572 0.0109701 0.0109831 0.010996 0.0110089 0.0110219 0.0110348 0.0110477 0.0110607 0.0110736 0.0110865 0.0110994 0.0111124 0.0111253 0.0111382 0.0111512 0.0111641 0.011177 0.01119 0.0112029 0.0112158 0.0112288 0.0112417 0.0112546 0.0112675 0.0112805 0.0112934 0.0113063 0.0113193 0.0113322 0.0113451 0.0113581 0.011371 0.0113839 0.0113969 0.0114098 0.0114227 0.0114357 0.0114486 0.0114615 0.0114744 0.0114874 0.0115003 0.0115132 0.0115262 0.0115391 0.011552 0.011565 0.0115779 0.0115908 0.0116038 0.0116167 0.0116296 0.0116425 0.0116555 0.0116684 0.0116813 0.0116943 0.0117072 0.0117201 0.0117331 0.011746 0.0117589 0.0117719 0.0117848 0.0117977 0.0118107 0.0118236 0.0118365 0.0118494 0.0118624 0.0118753 0.0118882 0.0119011 0.0119141 0.011927 0.0119399 0.0119529 0.0119658 0.0119787 0.0119917 0.0120046 0.0120175 0.0120305 0.0120434 0.0120563 0.0120693 0.0120822 0.0120951 0.012108 0.012121 0.0121339 0.0121468 0.0121598 0.0121727 0.0121856 0.0121986 0.0122115 0.0122244 0.0122374 0.0122503 0.0122632 0.0122761 0.0122891 0.012302 0.0123149 0.0123279 0.0123408 0.0123537 0.0123667 0.0123796 0.0123925 0.0124055 +-0.00302462 -0.00271977 -0.00209731 -0.00110919 0.000117108 0.00147121 0.00288999 0.00433469 0.00577493 0.00717759 0.00849339 0.00963166 0.0104304 0.0107799 0.0108696 0.0108949 0.0109097 0.0109229 0.0109359 0.0109488 0.0109618 0.0109747 0.0109877 0.0110006 0.0110135 0.0110265 0.0110394 0.0110523 0.0110653 0.0110782 0.0110911 0.0111041 0.011117 0.01113 0.0111429 0.0111558 0.0111688 0.0111817 0.0111946 0.0112076 0.0112205 0.0112334 0.0112464 0.0112593 0.0112723 0.0112852 0.0112981 0.0113111 0.011324 0.0113369 0.0113499 0.0113628 0.0113757 0.0113887 0.0114016 0.0114146 0.0114275 0.0114404 0.0114534 0.0114663 0.0114792 0.0114922 0.0115051 0.0115181 0.011531 0.0115439 0.0115569 0.0115698 0.0115827 0.0115957 0.0116086 0.0116215 0.0116345 0.0116474 0.0116604 0.0116733 0.0116862 0.0116992 0.0117121 0.011725 0.011738 0.0117509 0.0117638 0.0117768 0.0117897 0.0118027 0.0118156 0.0118285 0.0118414 0.0118544 0.0118673 0.0118803 0.0118932 0.0119061 0.0119191 0.011932 0.0119449 0.0119579 0.0119708 0.0119838 0.0119967 0.0120096 0.0120226 0.0120355 0.0120484 0.0120614 0.0120743 0.0120872 0.0121002 0.0121131 0.0121261 0.012139 0.0121519 0.0121649 0.0121778 0.0121907 0.0122037 0.0122166 0.0122295 0.0122425 0.0122554 0.0122684 0.0122813 0.0122942 0.0123072 0.0123201 0.012333 0.012346 0.0123589 0.0123718 0.0123848 0.0123977 0.0124107 +-0.00302606 -0.00272087 -0.00209789 -0.00110936 0.000117196 0.00147147 0.00289039 0.00433523 0.00577563 0.00717853 0.00849469 0.00963363 0.0104335 0.010784 0.010874 0.0108994 0.0109143 0.0109275 0.0109405 0.0109534 0.0109663 0.0109793 0.0109922 0.0110052 0.0110181 0.0110311 0.011044 0.0110569 0.0110699 0.0110828 0.0110958 0.0111087 0.0111217 0.0111346 0.0111475 0.0111605 0.0111734 0.0111864 0.0111993 0.0112122 0.0112252 0.0112381 0.0112511 0.011264 0.011277 0.0112899 0.0113028 0.0113158 0.0113287 0.0113417 0.0113546 0.0113676 0.0113805 0.0113934 0.0114064 0.0114193 0.0114323 0.0114452 0.0114582 0.0114711 0.011484 0.011497 0.0115099 0.0115229 0.0115358 0.0115487 0.0115617 0.0115746 0.0115876 0.0116005 0.0116135 0.0116264 0.0116393 0.0116523 0.0116652 0.0116782 0.0116911 0.0117041 0.011717 0.0117299 0.0117429 0.0117558 0.0117688 0.0117817 0.0117946 0.0118076 0.0118205 0.0118335 0.0118464 0.0118593 0.0118723 0.0118852 0.0118982 0.0119111 0.0119241 0.011937 0.0119499 0.0119629 0.0119758 0.0119888 0.0120017 0.0120146 0.0120276 0.0120405 0.0120535 0.0120664 0.0120794 0.0120923 0.0121052 0.0121182 0.0121311 0.0121441 0.012157 0.01217 0.0121829 0.0121958 0.0122088 0.0122217 0.0122347 0.0122476 0.0122605 0.0122735 0.0122864 0.0122994 0.0123123 0.0123253 0.0123382 0.0123511 0.0123641 0.012377 0.01239 0.0124029 0.0124159 +-0.00302749 -0.00272197 -0.00209847 -0.00110953 0.000117284 0.00147174 0.00289079 0.00433577 0.00577634 0.00717946 0.008496 0.00963561 0.0104366 0.0107882 0.0108785 0.010904 0.0109188 0.010932 0.010945 0.010958 0.0109709 0.0109839 0.0109968 0.0110098 0.0110227 0.0110357 0.0110486 0.0110616 0.0110745 0.0110874 0.0111004 0.0111133 0.0111263 0.0111392 0.0111522 0.0111651 0.0111781 0.011191 0.011204 0.0112169 0.0112299 0.0112428 0.0112558 0.0112687 0.0112817 0.0112946 0.0113076 0.0113205 0.0113335 0.0113464 0.0113594 0.0113723 0.0113852 0.0113982 0.0114111 0.0114241 0.011437 0.01145 0.0114629 0.0114759 0.0114888 0.0115018 0.0115147 0.0115277 0.0115406 0.0115536 0.0115665 0.0115795 0.0115924 0.0116054 0.0116183 0.0116313 0.0116442 0.0116571 0.0116701 0.011683 0.011696 0.0117089 0.0117219 0.0117348 0.0117478 0.0117607 0.0117737 0.0117866 0.0117996 0.0118125 0.0118255 0.0118384 0.0118513 0.0118643 0.0118772 0.0118902 0.0119031 0.0119161 0.011929 0.011942 0.0119549 0.0119679 0.0119808 0.0119938 0.0120067 0.0120197 0.0120326 0.0120456 0.0120585 0.0120715 0.0120844 0.0120974 0.0121103 0.0121233 0.0121362 0.0121491 0.0121621 0.012175 0.012188 0.0122009 0.0122139 0.0122268 0.0122398 0.0122527 0.0122657 0.0122786 0.0122916 0.0123045 0.0123175 0.0123304 0.0123434 0.0123563 0.0123693 0.0123822 0.0123952 0.0124081 0.0124211 +-0.00302893 -0.00272307 -0.00209905 -0.0011097 0.000117372 0.001472 0.00289119 0.00433631 0.00577704 0.00718039 0.0084973 0.00963758 0.0104397 0.0107923 0.0108829 0.0109085 0.0109233 0.0109366 0.0109496 0.0109625 0.0109755 0.0109884 0.0110014 0.0110143 0.0110273 0.0110403 0.0110532 0.0110662 0.0110791 0.0110921 0.011105 0.011118 0.0111309 0.0111439 0.0111568 0.0111698 0.0111827 0.0111957 0.0112086 0.0112216 0.0112346 0.0112475 0.0112605 0.0112734 0.0112864 0.0112993 0.0113123 0.0113252 0.0113382 0.0113511 0.0113641 0.011377 0.01139 0.0114029 0.0114159 0.0114289 0.0114418 0.0114548 0.0114677 0.0114807 0.0114936 0.0115066 0.0115195 0.0115325 0.0115454 0.0115584 0.0115713 0.0115843 0.0115972 0.0116102 0.0116232 0.0116361 0.0116491 0.011662 0.011675 0.0116879 0.0117009 0.0117138 0.0117268 0.0117397 0.0117527 0.0117656 0.0117786 0.0117915 0.0118045 0.0118174 0.0118304 0.0118433 0.0118563 0.0118693 0.0118822 0.0118952 0.0119081 0.0119211 0.011934 0.011947 0.0119599 0.0119729 0.0119858 0.0119988 0.0120117 0.0120247 0.0120376 0.0120506 0.0120636 0.0120765 0.0120895 0.0121024 0.0121154 0.0121283 0.0121413 0.0121542 0.0121672 0.0121801 0.0121931 0.012206 0.012219 0.0122319 0.0122449 0.0122579 0.0122708 0.0122838 0.0122967 0.0123097 0.0123226 0.0123356 0.0123485 0.0123615 0.0123744 0.0123874 0.0124003 0.0124133 0.0124262 +-0.00303036 -0.00272417 -0.00209964 -0.00110987 0.000117459 0.00147226 0.00289159 0.00433685 0.00577774 0.00718133 0.0084986 0.00963954 0.0104428 0.0107964 0.0108874 0.010913 0.0109279 0.0109411 0.0109541 0.0109671 0.01098 0.010993 0.011006 0.0110189 0.0110319 0.0110448 0.0110578 0.0110707 0.0110837 0.0110967 0.0111096 0.0111226 0.0111355 0.0111485 0.0111615 0.0111744 0.0111874 0.0112003 0.0112133 0.0112263 0.0112392 0.0112522 0.0112651 0.0112781 0.011291 0.011304 0.011317 0.0113299 0.0113429 0.0113558 0.0113688 0.0113818 0.0113947 0.0114077 0.0114206 0.0114336 0.0114466 0.0114595 0.0114725 0.0114854 0.0114984 0.0115114 0.0115243 0.0115373 0.0115502 0.0115632 0.0115761 0.0115891 0.0116021 0.011615 0.011628 0.0116409 0.0116539 0.0116669 0.0116798 0.0116928 0.0117057 0.0117187 0.0117317 0.0117446 0.0117576 0.0117705 0.0117835 0.0117965 0.0118094 0.0118224 0.0118353 0.0118483 0.0118612 0.0118742 0.0118872 0.0119001 0.0119131 0.011926 0.011939 0.011952 0.0119649 0.0119779 0.0119908 0.0120038 0.0120168 0.0120297 0.0120427 0.0120556 0.0120686 0.0120815 0.0120945 0.0121075 0.0121204 0.0121334 0.0121463 0.0121593 0.0121723 0.0121852 0.0121982 0.0122111 0.0122241 0.0122371 0.01225 0.012263 0.0122759 0.0122889 0.0123019 0.0123148 0.0123278 0.0123407 0.0123537 0.0123666 0.0123796 0.0123926 0.0124055 0.0124185 0.0124314 +-0.0030318 -0.00272527 -0.00210022 -0.00111003 0.000117547 0.00147252 0.00289199 0.00433739 0.00577845 0.00718226 0.0084999 0.00964151 0.0104459 0.0108005 0.0108919 0.0109175 0.0109324 0.0109457 0.0109587 0.0109716 0.0109846 0.0109976 0.0110105 0.0110235 0.0110365 0.0110494 0.0110624 0.0110753 0.0110883 0.0111013 0.0111142 0.0111272 0.0111402 0.0111531 0.0111661 0.0111791 0.011192 0.011205 0.011218 0.0112309 0.0112439 0.0112569 0.0112698 0.0112828 0.0112957 0.0113087 0.0113217 0.0113346 0.0113476 0.0113606 0.0113735 0.0113865 0.0113995 0.0114124 0.0114254 0.0114384 0.0114513 0.0114643 0.0114773 0.0114902 0.0115032 0.0115161 0.0115291 0.0115421 0.011555 0.011568 0.011581 0.0115939 0.0116069 0.0116199 0.0116328 0.0116458 0.0116588 0.0116717 0.0116847 0.0116977 0.0117106 0.0117236 0.0117365 0.0117495 0.0117625 0.0117754 0.0117884 0.0118014 0.0118143 0.0118273 0.0118403 0.0118532 0.0118662 0.0118792 0.0118921 0.0119051 0.011918 0.011931 0.011944 0.0119569 0.0119699 0.0119829 0.0119958 0.0120088 0.0120218 0.0120347 0.0120477 0.0120607 0.0120736 0.0120866 0.0120996 0.0121125 0.0121255 0.0121384 0.0121514 0.0121644 0.0121773 0.0121903 0.0122033 0.0122162 0.0122292 0.0122422 0.0122551 0.0122681 0.0122811 0.012294 0.012307 0.01232 0.0123329 0.0123459 0.0123588 0.0123718 0.0123848 0.0123977 0.0124107 0.0124237 0.0124366 +-0.00303323 -0.00272637 -0.0021008 -0.0011102 0.000117635 0.00147277 0.00289239 0.00433792 0.00577915 0.00718319 0.0085012 0.00964347 0.010449 0.0108046 0.0108963 0.0109221 0.010937 0.0109502 0.0109632 0.0109762 0.0109892 0.0110021 0.0110151 0.0110281 0.011041 0.011054 0.011067 0.01108 0.0110929 0.0111059 0.0111189 0.0111318 0.0111448 0.0111578 0.0111707 0.0111837 0.0111967 0.0112097 0.0112226 0.0112356 0.0112486 0.0112615 0.0112745 0.0112875 0.0113004 0.0113134 0.0113264 0.0113394 0.0113523 0.0113653 0.0113783 0.0113912 0.0114042 0.0114172 0.0114301 0.0114431 0.0114561 0.0114691 0.011482 0.011495 0.011508 0.0115209 0.0115339 0.0115469 0.0115598 0.0115728 0.0115858 0.0115988 0.0116117 0.0116247 0.0116377 0.0116506 0.0116636 0.0116766 0.0116896 0.0117025 0.0117155 0.0117285 0.0117414 0.0117544 0.0117674 0.0117803 0.0117933 0.0118063 0.0118193 0.0118322 0.0118452 0.0118582 0.0118711 0.0118841 0.0118971 0.01191 0.011923 0.011936 0.011949 0.0119619 0.0119749 0.0119879 0.0120008 0.0120138 0.0120268 0.0120397 0.0120527 0.0120657 0.0120787 0.0120916 0.0121046 0.0121176 0.0121305 0.0121435 0.0121565 0.0121695 0.0121824 0.0121954 0.0122084 0.0122213 0.0122343 0.0122473 0.0122602 0.0122732 0.0122862 0.0122992 0.0123121 0.0123251 0.0123381 0.012351 0.012364 0.012377 0.0123899 0.0124029 0.0124159 0.0124289 0.0124418 +-0.00303466 -0.00272746 -0.00210137 -0.00111037 0.000117723 0.00147303 0.00289279 0.00433846 0.00577985 0.00718412 0.0085025 0.00964543 0.010452 0.0108087 0.0109008 0.0109266 0.0109415 0.0109547 0.0109678 0.0109807 0.0109937 0.0110067 0.0110197 0.0110326 0.0110456 0.0110586 0.0110716 0.0110846 0.0110975 0.0111105 0.0111235 0.0111365 0.0111494 0.0111624 0.0111754 0.0111884 0.0112013 0.0112143 0.0112273 0.0112403 0.0112532 0.0112662 0.0112792 0.0112922 0.0113051 0.0113181 0.0113311 0.0113441 0.011357 0.01137 0.011383 0.011396 0.0114089 0.0114219 0.0114349 0.0114479 0.0114609 0.0114738 0.0114868 0.0114998 0.0115128 0.0115257 0.0115387 0.0115517 0.0115647 0.0115776 0.0115906 0.0116036 0.0116166 0.0116295 0.0116425 0.0116555 0.0116685 0.0116814 0.0116944 0.0117074 0.0117204 0.0117333 0.0117463 0.0117593 0.0117723 0.0117852 0.0117982 0.0118112 0.0118242 0.0118372 0.0118501 0.0118631 0.0118761 0.0118891 0.011902 0.011915 0.011928 0.011941 0.0119539 0.0119669 0.0119799 0.0119929 0.0120058 0.0120188 0.0120318 0.0120448 0.0120577 0.0120707 0.0120837 0.0120967 0.0121096 0.0121226 0.0121356 0.0121486 0.0121615 0.0121745 0.0121875 0.0122005 0.0122135 0.0122264 0.0122394 0.0122524 0.0122654 0.0122783 0.0122913 0.0123043 0.0123173 0.0123302 0.0123432 0.0123562 0.0123692 0.0123821 0.0123951 0.0124081 0.0124211 0.012434 0.012447 +-0.0030361 -0.00272856 -0.00210195 -0.00111054 0.000117811 0.00147329 0.00289319 0.004339 0.00578055 0.00718505 0.0085038 0.00964738 0.0104551 0.0108128 0.0109052 0.0109311 0.010946 0.0109593 0.0109723 0.0109853 0.0109983 0.0110113 0.0110242 0.0110372 0.0110502 0.0110632 0.0110762 0.0110892 0.0111021 0.0111151 0.0111281 0.0111411 0.0111541 0.011167 0.01118 0.011193 0.011206 0.011219 0.0112319 0.0112449 0.0112579 0.0112709 0.0112839 0.0112969 0.0113098 0.0113228 0.0113358 0.0113488 0.0113618 0.0113747 0.0113877 0.0114007 0.0114137 0.0114267 0.0114397 0.0114526 0.0114656 0.0114786 0.0114916 0.0115046 0.0115175 0.0115305 0.0115435 0.0115565 0.0115695 0.0115824 0.0115954 0.0116084 0.0116214 0.0116344 0.0116474 0.0116603 0.0116733 0.0116863 0.0116993 0.0117123 0.0117252 0.0117382 0.0117512 0.0117642 0.0117772 0.0117901 0.0118031 0.0118161 0.0118291 0.0118421 0.0118551 0.011868 0.011881 0.011894 0.011907 0.01192 0.0119329 0.0119459 0.0119589 0.0119719 0.0119849 0.0119979 0.0120108 0.0120238 0.0120368 0.0120498 0.0120628 0.0120757 0.0120887 0.0121017 0.0121147 0.0121277 0.0121406 0.0121536 0.0121666 0.0121796 0.0121926 0.0122056 0.0122185 0.0122315 0.0122445 0.0122575 0.0122705 0.0122834 0.0122964 0.0123094 0.0123224 0.0123354 0.0123484 0.0123613 0.0123743 0.0123873 0.0124003 0.0124133 0.0124262 0.0124392 0.0124522 +-0.00303753 -0.00272966 -0.00210253 -0.0011107 0.000117898 0.00147355 0.00289359 0.00433954 0.00578125 0.00718598 0.00850509 0.00964933 0.0104582 0.0108169 0.0109097 0.0109356 0.0109506 0.0109638 0.0109769 0.0109899 0.0110028 0.0110158 0.0110288 0.0110418 0.0110548 0.0110678 0.0110808 0.0110938 0.0111067 0.0111197 0.0111327 0.0111457 0.0111587 0.0111717 0.0111847 0.0111976 0.0112106 0.0112236 0.0112366 0.0112496 0.0112626 0.0112756 0.0112886 0.0113015 0.0113145 0.0113275 0.0113405 0.0113535 0.0113665 0.0113795 0.0113925 0.0114054 0.0114184 0.0114314 0.0114444 0.0114574 0.0114704 0.0114834 0.0114963 0.0115093 0.0115223 0.0115353 0.0115483 0.0115613 0.0115743 0.0115873 0.0116002 0.0116132 0.0116262 0.0116392 0.0116522 0.0116652 0.0116782 0.0116912 0.0117041 0.0117171 0.0117301 0.0117431 0.0117561 0.0117691 0.0117821 0.0117951 0.011808 0.011821 0.011834 0.011847 0.01186 0.011873 0.011886 0.0118989 0.0119119 0.0119249 0.0119379 0.0119509 0.0119639 0.0119769 0.0119899 0.0120028 0.0120158 0.0120288 0.0120418 0.0120548 0.0120678 0.0120808 0.0120938 0.0121067 0.0121197 0.0121327 0.0121457 0.0121587 0.0121717 0.0121847 0.0121976 0.0122106 0.0122236 0.0122366 0.0122496 0.0122626 0.0122756 0.0122886 0.0123015 0.0123145 0.0123275 0.0123405 0.0123535 0.0123665 0.0123795 0.0123925 0.0124054 0.0124184 0.0124314 0.0124444 0.0124574 +-0.00303896 -0.00273075 -0.00210311 -0.00111087 0.000117986 0.00147381 0.00289399 0.00434007 0.00578195 0.00718691 0.00850638 0.00965128 0.0104612 0.010821 0.0109141 0.0109402 0.0109551 0.0109684 0.0109814 0.0109944 0.0110074 0.0110204 0.0110334 0.0110464 0.0110594 0.0110724 0.0110854 0.0110983 0.0111113 0.0111243 0.0111373 0.0111503 0.0111633 0.0111763 0.0111893 0.0112023 0.0112153 0.0112283 0.0112413 0.0112543 0.0112673 0.0112802 0.0112932 0.0113062 0.0113192 0.0113322 0.0113452 0.0113582 0.0113712 0.0113842 0.0113972 0.0114102 0.0114232 0.0114362 0.0114491 0.0114621 0.0114751 0.0114881 0.0115011 0.0115141 0.0115271 0.0115401 0.0115531 0.0115661 0.0115791 0.0115921 0.0116051 0.0116181 0.011631 0.011644 0.011657 0.01167 0.011683 0.011696 0.011709 0.011722 0.011735 0.011748 0.011761 0.011774 0.011787 0.0118 0.0118129 0.0118259 0.0118389 0.0118519 0.0118649 0.0118779 0.0118909 0.0119039 0.0119169 0.0119299 0.0119429 0.0119559 0.0119689 0.0119818 0.0119948 0.0120078 0.0120208 0.0120338 0.0120468 0.0120598 0.0120728 0.0120858 0.0120988 0.0121118 0.0121248 0.0121378 0.0121508 0.0121637 0.0121767 0.0121897 0.0122027 0.0122157 0.0122287 0.0122417 0.0122547 0.0122677 0.0122807 0.0122937 0.0123067 0.0123197 0.0123326 0.0123456 0.0123586 0.0123716 0.0123846 0.0123976 0.0124106 0.0124236 0.0124366 0.0124496 0.0124626 +-0.00304039 -0.00273185 -0.00210368 -0.00111103 0.000118074 0.00147407 0.00289438 0.00434061 0.00578265 0.00718783 0.00850768 0.00965323 0.0104643 0.0108251 0.0109186 0.0109447 0.0109596 0.0109729 0.010986 0.010999 0.011012 0.011025 0.011038 0.011051 0.0110639 0.0110769 0.0110899 0.0111029 0.0111159 0.0111289 0.0111419 0.0111549 0.0111679 0.0111809 0.0111939 0.0112069 0.0112199 0.0112329 0.0112459 0.0112589 0.0112719 0.0112849 0.0112979 0.0113109 0.0113239 0.0113369 0.0113499 0.0113629 0.0113759 0.0113889 0.0114019 0.0114149 0.0114279 0.0114409 0.0114539 0.0114669 0.0114799 0.0114929 0.0115059 0.0115189 0.0115319 0.0115449 0.0115579 0.0115709 0.0115839 0.0115969 0.0116099 0.0116229 0.0116359 0.0116489 0.0116619 0.0116749 0.0116879 0.0117009 0.0117139 0.0117269 0.0117399 0.0117529 0.0117659 0.0117789 0.0117919 0.0118048 0.0118178 0.0118308 0.0118438 0.0118568 0.0118698 0.0118828 0.0118958 0.0119088 0.0119218 0.0119348 0.0119478 0.0119608 0.0119738 0.0119868 0.0119998 0.0120128 0.0120258 0.0120388 0.0120518 0.0120648 0.0120778 0.0120908 0.0121038 0.0121168 0.0121298 0.0121428 0.0121558 0.0121688 0.0121818 0.0121948 0.0122078 0.0122208 0.0122338 0.0122468 0.0122598 0.0122728 0.0122858 0.0122988 0.0123118 0.0123248 0.0123378 0.0123508 0.0123638 0.0123768 0.0123898 0.0124028 0.0124158 0.0124288 0.0124418 0.0124548 0.0124678 +-0.00304182 -0.00273294 -0.00210426 -0.0011112 0.000118162 0.00147433 0.00289478 0.00434114 0.00578335 0.00718876 0.00850897 0.00965518 0.0104673 0.0108292 0.010923 0.0109492 0.0109642 0.0109774 0.0109905 0.0110035 0.0110165 0.0110295 0.0110425 0.0110555 0.0110685 0.0110815 0.0110945 0.0111075 0.0111205 0.0111335 0.0111465 0.0111596 0.0111726 0.0111856 0.0111986 0.0112116 0.0112246 0.0112376 0.0112506 0.0112636 0.0112766 0.0112896 0.0113026 0.0113156 0.0113286 0.0113416 0.0113546 0.0113676 0.0113806 0.0113936 0.0114066 0.0114196 0.0114326 0.0114456 0.0114586 0.0114716 0.0114846 0.0114977 0.0115107 0.0115237 0.0115367 0.0115497 0.0115627 0.0115757 0.0115887 0.0116017 0.0116147 0.0116277 0.0116407 0.0116537 0.0116667 0.0116797 0.0116927 0.0117057 0.0117187 0.0117317 0.0117447 0.0117577 0.0117707 0.0117837 0.0117967 0.0118097 0.0118227 0.0118358 0.0118488 0.0118618 0.0118748 0.0118878 0.0119008 0.0119138 0.0119268 0.0119398 0.0119528 0.0119658 0.0119788 0.0119918 0.0120048 0.0120178 0.0120308 0.0120438 0.0120568 0.0120698 0.0120828 0.0120958 0.0121088 0.0121218 0.0121348 0.0121478 0.0121608 0.0121739 0.0121869 0.0121999 0.0122129 0.0122259 0.0122389 0.0122519 0.0122649 0.0122779 0.0122909 0.0123039 0.0123169 0.0123299 0.0123429 0.0123559 0.0123689 0.0123819 0.0123949 0.0124079 0.0124209 0.0124339 0.0124469 0.0124599 0.0124729 +-0.00304325 -0.00273404 -0.00210484 -0.00111137 0.000118249 0.00147459 0.00289518 0.00434168 0.00578405 0.00718968 0.00851025 0.00965712 0.0104704 0.0108333 0.0109275 0.0109537 0.0109687 0.010982 0.010995 0.0110081 0.0110211 0.0110341 0.0110471 0.0110601 0.0110731 0.0110861 0.0110991 0.0111121 0.0111251 0.0111381 0.0111512 0.0111642 0.0111772 0.0111902 0.0112032 0.0112162 0.0112292 0.0112422 0.0112552 0.0112682 0.0112813 0.0112943 0.0113073 0.0113203 0.0113333 0.0113463 0.0113593 0.0113723 0.0113853 0.0113983 0.0114113 0.0114244 0.0114374 0.0114504 0.0114634 0.0114764 0.0114894 0.0115024 0.0115154 0.0115284 0.0115414 0.0115545 0.0115675 0.0115805 0.0115935 0.0116065 0.0116195 0.0116325 0.0116455 0.0116585 0.0116715 0.0116845 0.0116976 0.0117106 0.0117236 0.0117366 0.0117496 0.0117626 0.0117756 0.0117886 0.0118016 0.0118146 0.0118276 0.0118407 0.0118537 0.0118667 0.0118797 0.0118927 0.0119057 0.0119187 0.0119317 0.0119447 0.0119577 0.0119708 0.0119838 0.0119968 0.0120098 0.0120228 0.0120358 0.0120488 0.0120618 0.0120748 0.0120878 0.0121008 0.0121139 0.0121269 0.0121399 0.0121529 0.0121659 0.0121789 0.0121919 0.0122049 0.0122179 0.0122309 0.012244 0.012257 0.01227 0.012283 0.012296 0.012309 0.012322 0.012335 0.012348 0.012361 0.012374 0.0123871 0.0124001 0.0124131 0.0124261 0.0124391 0.0124521 0.0124651 0.0124781 +-0.00304468 -0.00273513 -0.00210541 -0.00111153 0.000118337 0.00147485 0.00289558 0.00434221 0.00578474 0.00719061 0.00851154 0.00965906 0.0104734 0.0108374 0.0109319 0.0109582 0.0109732 0.0109865 0.0109996 0.0110126 0.0110256 0.0110386 0.0110516 0.0110647 0.0110777 0.0110907 0.0111037 0.0111167 0.0111297 0.0111428 0.0111558 0.0111688 0.0111818 0.0111948 0.0112078 0.0112208 0.0112339 0.0112469 0.0112599 0.0112729 0.0112859 0.0112989 0.0113119 0.011325 0.011338 0.011351 0.011364 0.011377 0.01139 0.0114031 0.0114161 0.0114291 0.0114421 0.0114551 0.0114681 0.0114811 0.0114942 0.0115072 0.0115202 0.0115332 0.0115462 0.0115592 0.0115722 0.0115853 0.0115983 0.0116113 0.0116243 0.0116373 0.0116503 0.0116634 0.0116764 0.0116894 0.0117024 0.0117154 0.0117284 0.0117414 0.0117545 0.0117675 0.0117805 0.0117935 0.0118065 0.0118195 0.0118325 0.0118456 0.0118586 0.0118716 0.0118846 0.0118976 0.0119106 0.0119237 0.0119367 0.0119497 0.0119627 0.0119757 0.0119887 0.0120017 0.0120148 0.0120278 0.0120408 0.0120538 0.0120668 0.0120798 0.0120929 0.0121059 0.0121189 0.0121319 0.0121449 0.0121579 0.0121709 0.012184 0.012197 0.01221 0.012223 0.012236 0.012249 0.012262 0.0122751 0.0122881 0.0123011 0.0123141 0.0123271 0.0123401 0.0123532 0.0123662 0.0123792 0.0123922 0.0124052 0.0124182 0.0124312 0.0124443 0.0124573 0.0124703 0.0124833 +-0.00304611 -0.00273622 -0.00210599 -0.0011117 0.000118425 0.00147511 0.00289597 0.00434275 0.00578544 0.00719153 0.00851283 0.00966099 0.0104765 0.0108415 0.0109364 0.0109627 0.0109777 0.0109911 0.0110041 0.0110171 0.0110302 0.0110432 0.0110562 0.0110692 0.0110823 0.0110953 0.0111083 0.0111213 0.0111343 0.0111474 0.0111604 0.0111734 0.0111864 0.0111994 0.0112125 0.0112255 0.0112385 0.0112515 0.0112645 0.0112776 0.0112906 0.0113036 0.0113166 0.0113296 0.0113427 0.0113557 0.0113687 0.0113817 0.0113947 0.0114078 0.0114208 0.0114338 0.0114468 0.0114598 0.0114729 0.0114859 0.0114989 0.0115119 0.011525 0.011538 0.011551 0.011564 0.011577 0.0115901 0.0116031 0.0116161 0.0116291 0.0116421 0.0116552 0.0116682 0.0116812 0.0116942 0.0117072 0.0117203 0.0117333 0.0117463 0.0117593 0.0117723 0.0117854 0.0117984 0.0118114 0.0118244 0.0118374 0.0118505 0.0118635 0.0118765 0.0118895 0.0119026 0.0119156 0.0119286 0.0119416 0.0119546 0.0119677 0.0119807 0.0119937 0.0120067 0.0120197 0.0120328 0.0120458 0.0120588 0.0120718 0.0120848 0.0120979 0.0121109 0.0121239 0.0121369 0.0121499 0.012163 0.012176 0.012189 0.012202 0.012215 0.0122281 0.0122411 0.0122541 0.0122671 0.0122801 0.0122932 0.0123062 0.0123192 0.0123322 0.0123453 0.0123583 0.0123713 0.0123843 0.0123973 0.0124104 0.0124234 0.0124364 0.0124494 0.0124624 0.0124755 0.0124885 +-0.00304754 -0.00273731 -0.00210656 -0.00111186 0.000118513 0.00147536 0.00289637 0.00434328 0.00578614 0.00719245 0.00851411 0.00966293 0.0104795 0.0108455 0.0109408 0.0109672 0.0109823 0.0109956 0.0110087 0.0110217 0.0110347 0.0110477 0.0110608 0.0110738 0.0110868 0.0110998 0.0111129 0.0111259 0.0111389 0.011152 0.011165 0.011178 0.011191 0.0112041 0.0112171 0.0112301 0.0112431 0.0112562 0.0112692 0.0112822 0.0112952 0.0113083 0.0113213 0.0113343 0.0113473 0.0113604 0.0113734 0.0113864 0.0113995 0.0114125 0.0114255 0.0114385 0.0114516 0.0114646 0.0114776 0.0114906 0.0115037 0.0115167 0.0115297 0.0115427 0.0115558 0.0115688 0.0115818 0.0115948 0.0116079 0.0116209 0.0116339 0.011647 0.01166 0.011673 0.011686 0.0116991 0.0117121 0.0117251 0.0117381 0.0117512 0.0117642 0.0117772 0.0117902 0.0118033 0.0118163 0.0118293 0.0118423 0.0118554 0.0118684 0.0118814 0.0118944 0.0119075 0.0119205 0.0119335 0.0119466 0.0119596 0.0119726 0.0119856 0.0119987 0.0120117 0.0120247 0.0120377 0.0120508 0.0120638 0.0120768 0.0120898 0.0121029 0.0121159 0.0121289 0.0121419 0.012155 0.012168 0.012181 0.0121941 0.0122071 0.0122201 0.0122331 0.0122462 0.0122592 0.0122722 0.0122852 0.0122983 0.0123113 0.0123243 0.0123373 0.0123504 0.0123634 0.0123764 0.0123894 0.0124025 0.0124155 0.0124285 0.0124416 0.0124546 0.0124676 0.0124806 0.0124937 +-0.00304896 -0.0027384 -0.00210713 -0.00111203 0.000118601 0.00147562 0.00289677 0.00434381 0.00578683 0.00719337 0.00851539 0.00966486 0.0104825 0.0108496 0.0109452 0.0109717 0.0109868 0.0110001 0.0110132 0.0110262 0.0110393 0.0110523 0.0110653 0.0110784 0.0110914 0.0111044 0.0111175 0.0111305 0.0111435 0.0111566 0.0111696 0.0111826 0.0111956 0.0112087 0.0112217 0.0112347 0.0112478 0.0112608 0.0112738 0.0112869 0.0112999 0.0113129 0.011326 0.011339 0.011352 0.0113651 0.0113781 0.0113911 0.0114042 0.0114172 0.0114302 0.0114433 0.0114563 0.0114693 0.0114823 0.0114954 0.0115084 0.0115214 0.0115345 0.0115475 0.0115605 0.0115736 0.0115866 0.0115996 0.0116127 0.0116257 0.0116387 0.0116518 0.0116648 0.0116778 0.0116909 0.0117039 0.0117169 0.01173 0.011743 0.011756 0.011769 0.0117821 0.0117951 0.0118081 0.0118212 0.0118342 0.0118472 0.0118603 0.0118733 0.0118863 0.0118994 0.0119124 0.0119254 0.0119385 0.0119515 0.0119645 0.0119776 0.0119906 0.0120036 0.0120167 0.0120297 0.0120427 0.0120557 0.0120688 0.0120818 0.0120948 0.0121079 0.0121209 0.0121339 0.012147 0.01216 0.012173 0.0121861 0.0121991 0.0122121 0.0122252 0.0122382 0.0122512 0.0122643 0.0122773 0.0122903 0.0123034 0.0123164 0.0123294 0.0123424 0.0123555 0.0123685 0.0123815 0.0123946 0.0124076 0.0124206 0.0124337 0.0124467 0.0124597 0.0124728 0.0124858 0.0124988 +-0.00305039 -0.00273949 -0.00210771 -0.00111219 0.000118689 0.00147588 0.00289716 0.00434435 0.00578753 0.00719429 0.00851667 0.00966679 0.0104856 0.0108537 0.0109497 0.0109763 0.0109913 0.0110047 0.0110177 0.0110308 0.0110438 0.0110569 0.0110699 0.0110829 0.011096 0.011109 0.011122 0.0111351 0.0111481 0.0111612 0.0111742 0.0111872 0.0112003 0.0112133 0.0112263 0.0112394 0.0112524 0.0112655 0.0112785 0.0112915 0.0113046 0.0113176 0.0113306 0.0113437 0.0113567 0.0113697 0.0113828 0.0113958 0.0114089 0.0114219 0.0114349 0.011448 0.011461 0.011474 0.0114871 0.0115001 0.0115132 0.0115262 0.0115392 0.0115523 0.0115653 0.0115783 0.0115914 0.0116044 0.0116175 0.0116305 0.0116435 0.0116566 0.0116696 0.0116826 0.0116957 0.0117087 0.0117218 0.0117348 0.0117478 0.0117609 0.0117739 0.0117869 0.0118 0.011813 0.0118261 0.0118391 0.0118521 0.0118652 0.0118782 0.0118912 0.0119043 0.0119173 0.0119304 0.0119434 0.0119564 0.0119695 0.0119825 0.0119955 0.0120086 0.0120216 0.0120347 0.0120477 0.0120607 0.0120738 0.0120868 0.0120998 0.0121129 0.0121259 0.012139 0.012152 0.012165 0.0121781 0.0121911 0.0122041 0.0122172 0.0122302 0.0122433 0.0122563 0.0122693 0.0122824 0.0122954 0.0123084 0.0123215 0.0123345 0.0123476 0.0123606 0.0123736 0.0123867 0.0123997 0.0124127 0.0124258 0.0124388 0.0124519 0.0124649 0.0124779 0.012491 0.012504 +-0.00305182 -0.00274058 -0.00210828 -0.00111235 0.000118776 0.00147614 0.00289756 0.00434488 0.00578822 0.00719521 0.00851795 0.00966871 0.0104886 0.0108578 0.0109541 0.0109808 0.0109958 0.0110092 0.0110223 0.0110353 0.0110484 0.0110614 0.0110744 0.0110875 0.0111005 0.0111136 0.0111266 0.0111397 0.0111527 0.0111657 0.0111788 0.0111918 0.0112049 0.0112179 0.011231 0.011244 0.011257 0.0112701 0.0112831 0.0112962 0.0113092 0.0113223 0.0113353 0.0113483 0.0113614 0.0113744 0.0113875 0.0114005 0.0114136 0.0114266 0.0114397 0.0114527 0.0114657 0.0114788 0.0114918 0.0115049 0.0115179 0.011531 0.011544 0.011557 0.0115701 0.0115831 0.0115962 0.0116092 0.0116223 0.0116353 0.0116483 0.0116614 0.0116744 0.0116875 0.0117005 0.0117136 0.0117266 0.0117396 0.0117527 0.0117657 0.0117788 0.0117918 0.0118049 0.0118179 0.0118309 0.011844 0.011857 0.0118701 0.0118831 0.0118962 0.0119092 0.0119222 0.0119353 0.0119483 0.0119614 0.0119744 0.0119875 0.0120005 0.0120135 0.0120266 0.0120396 0.0120527 0.0120657 0.0120788 0.0120918 0.0121048 0.0121179 0.0121309 0.012144 0.012157 0.0121701 0.0121831 0.0121961 0.0122092 0.0122222 0.0122353 0.0122483 0.0122614 0.0122744 0.0122874 0.0123005 0.0123135 0.0123266 0.0123396 0.0123527 0.0123657 0.0123787 0.0123918 0.0124048 0.0124179 0.0124309 0.012444 0.012457 0.01247 0.0124831 0.0124961 0.0125092 +-0.00305324 -0.00274167 -0.00210885 -0.00111252 0.000118864 0.0014764 0.00289796 0.00434541 0.00578892 0.00719613 0.00851923 0.00967064 0.0104916 0.0108618 0.0109585 0.0109853 0.0110004 0.0110137 0.0110268 0.0110399 0.0110529 0.011066 0.011079 0.0110921 0.0111051 0.0111181 0.0111312 0.0111442 0.0111573 0.0111703 0.0111834 0.0111964 0.0112095 0.0112225 0.0112356 0.0112486 0.0112617 0.0112747 0.0112878 0.0113008 0.0113139 0.0113269 0.01134 0.011353 0.0113661 0.0113791 0.0113922 0.0114052 0.0114183 0.0114313 0.0114444 0.0114574 0.0114705 0.0114835 0.0114966 0.0115096 0.0115227 0.0115357 0.0115488 0.0115618 0.0115748 0.0115879 0.0116009 0.011614 0.011627 0.0116401 0.0116531 0.0116662 0.0116792 0.0116923 0.0117053 0.0117184 0.0117314 0.0117445 0.0117575 0.0117706 0.0117836 0.0117967 0.0118097 0.0118228 0.0118358 0.0118489 0.0118619 0.011875 0.011888 0.0119011 0.0119141 0.0119272 0.0119402 0.0119533 0.0119663 0.0119794 0.0119924 0.0120055 0.0120185 0.0120315 0.0120446 0.0120576 0.0120707 0.0120837 0.0120968 0.0121098 0.0121229 0.0121359 0.012149 0.012162 0.0121751 0.0121881 0.0122012 0.0122142 0.0122273 0.0122403 0.0122534 0.0122664 0.0122795 0.0122925 0.0123056 0.0123186 0.0123317 0.0123447 0.0123578 0.0123708 0.0123839 0.0123969 0.01241 0.012423 0.0124361 0.0124491 0.0124622 0.0124752 0.0124882 0.0125013 0.0125143 +-0.00305467 -0.00274276 -0.00210942 -0.00111268 0.000118952 0.00147665 0.00289835 0.00434594 0.00578961 0.00719705 0.00852051 0.00967256 0.0104946 0.0108659 0.010963 0.0109898 0.0110049 0.0110182 0.0110313 0.0110444 0.0110574 0.0110705 0.0110836 0.0110966 0.0111097 0.0111227 0.0111358 0.0111488 0.0111619 0.0111749 0.011188 0.011201 0.0112141 0.0112272 0.0112402 0.0112533 0.0112663 0.0112794 0.0112924 0.0113055 0.0113185 0.0113316 0.0113446 0.0113577 0.0113707 0.0113838 0.0113969 0.0114099 0.011423 0.011436 0.0114491 0.0114621 0.0114752 0.0114882 0.0115013 0.0115143 0.0115274 0.0115405 0.0115535 0.0115666 0.0115796 0.0115927 0.0116057 0.0116188 0.0116318 0.0116449 0.0116579 0.011671 0.011684 0.0116971 0.0117102 0.0117232 0.0117363 0.0117493 0.0117624 0.0117754 0.0117885 0.0118015 0.0118146 0.0118276 0.0118407 0.0118538 0.0118668 0.0118799 0.0118929 0.011906 0.011919 0.0119321 0.0119451 0.0119582 0.0119712 0.0119843 0.0119973 0.0120104 0.0120235 0.0120365 0.0120496 0.0120626 0.0120757 0.0120887 0.0121018 0.0121148 0.0121279 0.0121409 0.012154 0.0121671 0.0121801 0.0121932 0.0122062 0.0122193 0.0122323 0.0122454 0.0122584 0.0122715 0.0122845 0.0122976 0.0123106 0.0123237 0.0123368 0.0123498 0.0123629 0.0123759 0.012389 0.012402 0.0124151 0.0124281 0.0124412 0.0124542 0.0124673 0.0124804 0.0124934 0.0125065 0.0125195 +-0.0030561 -0.00274385 -0.00210999 -0.00111285 0.00011904 0.00147691 0.00289875 0.00434648 0.0057903 0.00719796 0.00852178 0.00967447 0.0104977 0.01087 0.0109674 0.0109943 0.0110094 0.0110228 0.0110359 0.0110489 0.011062 0.0110751 0.0110881 0.0111012 0.0111142 0.0111273 0.0111404 0.0111534 0.0111665 0.0111795 0.0111926 0.0112056 0.0112187 0.0112318 0.0112448 0.0112579 0.0112709 0.011284 0.0112971 0.0113101 0.0113232 0.0113362 0.0113493 0.0113624 0.0113754 0.0113885 0.0114015 0.0114146 0.0114277 0.0114407 0.0114538 0.0114668 0.0114799 0.011493 0.011506 0.0115191 0.0115321 0.0115452 0.0115583 0.0115713 0.0115844 0.0115974 0.0116105 0.0116236 0.0116366 0.0116497 0.0116627 0.0116758 0.0116889 0.0117019 0.011715 0.011728 0.0117411 0.0117542 0.0117672 0.0117803 0.0117933 0.0118064 0.0118195 0.0118325 0.0118456 0.0118586 0.0118717 0.0118848 0.0118978 0.0119109 0.0119239 0.011937 0.0119501 0.0119631 0.0119762 0.0119892 0.0120023 0.0120154 0.0120284 0.0120415 0.0120545 0.0120676 0.0120807 0.0120937 0.0121068 0.0121198 0.0121329 0.012146 0.012159 0.0121721 0.0121851 0.0121982 0.0122112 0.0122243 0.0122374 0.0122504 0.0122635 0.0122765 0.0122896 0.0123027 0.0123157 0.0123288 0.0123418 0.0123549 0.012368 0.012381 0.0123941 0.0124071 0.0124202 0.0124333 0.0124463 0.0124594 0.0124724 0.0124855 0.0124986 0.0125116 0.0125247 +-0.00305752 -0.00274493 -0.00211056 -0.00111301 0.000119128 0.00147717 0.00289914 0.00434701 0.00579099 0.00719888 0.00852305 0.00967639 0.0105007 0.010874 0.0109718 0.0109988 0.0110139 0.0110273 0.0110404 0.0110535 0.0110665 0.0110796 0.0110927 0.0111057 0.0111188 0.0111319 0.0111449 0.011158 0.0111711 0.0111841 0.0111972 0.0112103 0.0112233 0.0112364 0.0112494 0.0112625 0.0112756 0.0112886 0.0113017 0.0113148 0.0113278 0.0113409 0.011354 0.011367 0.0113801 0.0113932 0.0114062 0.0114193 0.0114324 0.0114454 0.0114585 0.0114716 0.0114846 0.0114977 0.0115108 0.0115238 0.0115369 0.0115499 0.011563 0.0115761 0.0115891 0.0116022 0.0116153 0.0116283 0.0116414 0.0116545 0.0116675 0.0116806 0.0116937 0.0117067 0.0117198 0.0117329 0.0117459 0.011759 0.0117721 0.0117851 0.0117982 0.0118113 0.0118243 0.0118374 0.0118505 0.0118635 0.0118766 0.0118896 0.0119027 0.0119158 0.0119288 0.0119419 0.011955 0.011968 0.0119811 0.0119942 0.0120072 0.0120203 0.0120334 0.0120464 0.0120595 0.0120726 0.0120856 0.0120987 0.0121118 0.0121248 0.0121379 0.012151 0.012164 0.0121771 0.0121902 0.0122032 0.0122163 0.0122293 0.0122424 0.0122555 0.0122685 0.0122816 0.0122947 0.0123077 0.0123208 0.0123339 0.0123469 0.01236 0.0123731 0.0123861 0.0123992 0.0124123 0.0124253 0.0124384 0.0124515 0.0124645 0.0124776 0.0124907 0.0125037 0.0125168 0.0125298 +-0.00305894 -0.00274602 -0.00211113 -0.00111317 0.000119216 0.00147743 0.00289954 0.00434754 0.00579169 0.00719979 0.00852433 0.0096783 0.0105037 0.0108781 0.0109763 0.0110033 0.0110184 0.0110318 0.0110449 0.011058 0.0110711 0.0110841 0.0110972 0.0111103 0.0111234 0.0111364 0.0111495 0.0111626 0.0111756 0.0111887 0.0112018 0.0112149 0.0112279 0.011241 0.0112541 0.0112671 0.0112802 0.0112933 0.0113063 0.0113194 0.0113325 0.0113456 0.0113586 0.0113717 0.0113848 0.0113978 0.0114109 0.011424 0.0114371 0.0114501 0.0114632 0.0114763 0.0114893 0.0115024 0.0115155 0.0115286 0.0115416 0.0115547 0.0115678 0.0115808 0.0115939 0.011607 0.0116201 0.0116331 0.0116462 0.0116593 0.0116723 0.0116854 0.0116985 0.0117115 0.0117246 0.0117377 0.0117508 0.0117638 0.0117769 0.01179 0.011803 0.0118161 0.0118292 0.0118423 0.0118553 0.0118684 0.0118815 0.0118945 0.0119076 0.0119207 0.0119338 0.0119468 0.0119599 0.011973 0.011986 0.0119991 0.0120122 0.0120252 0.0120383 0.0120514 0.0120645 0.0120775 0.0120906 0.0121037 0.0121167 0.0121298 0.0121429 0.012156 0.012169 0.0121821 0.0121952 0.0122082 0.0122213 0.0122344 0.0122475 0.0122605 0.0122736 0.0122867 0.0122997 0.0123128 0.0123259 0.012339 0.012352 0.0123651 0.0123782 0.0123912 0.0124043 0.0124174 0.0124304 0.0124435 0.0124566 0.0124697 0.0124827 0.0124958 0.0125089 0.0125219 0.012535 +-0.00306037 -0.0027471 -0.0021117 -0.00111333 0.000119304 0.00147768 0.00289993 0.00434807 0.00579238 0.00720071 0.0085256 0.00968021 0.0105067 0.0108821 0.0109807 0.0110078 0.0110229 0.0110363 0.0110494 0.0110625 0.0110756 0.0110887 0.0111018 0.0111148 0.0111279 0.011141 0.0111541 0.0111671 0.0111802 0.0111933 0.0112064 0.0112195 0.0112325 0.0112456 0.0112587 0.0112718 0.0112848 0.0112979 0.011311 0.0113241 0.0113371 0.0113502 0.0113633 0.0113764 0.0113894 0.0114025 0.0114156 0.0114287 0.0114418 0.0114548 0.0114679 0.011481 0.0114941 0.0115071 0.0115202 0.0115333 0.0115464 0.0115594 0.0115725 0.0115856 0.0115987 0.0116117 0.0116248 0.0116379 0.011651 0.0116641 0.0116771 0.0116902 0.0117033 0.0117164 0.0117294 0.0117425 0.0117556 0.0117687 0.0117817 0.0117948 0.0118079 0.011821 0.011834 0.0118471 0.0118602 0.0118733 0.0118864 0.0118994 0.0119125 0.0119256 0.0119387 0.0119517 0.0119648 0.0119779 0.011991 0.012004 0.0120171 0.0120302 0.0120433 0.0120563 0.0120694 0.0120825 0.0120956 0.0121087 0.0121217 0.0121348 0.0121479 0.012161 0.012174 0.0121871 0.0122002 0.0122133 0.0122263 0.0122394 0.0122525 0.0122656 0.0122786 0.0122917 0.0123048 0.0123179 0.012331 0.012344 0.0123571 0.0123702 0.0123833 0.0123963 0.0124094 0.0124225 0.0124356 0.0124486 0.0124617 0.0124748 0.0124879 0.0125009 0.012514 0.0125271 0.0125402 +-0.00306179 -0.00274819 -0.00211227 -0.0011135 0.000119391 0.00147794 0.00290033 0.0043486 0.00579307 0.00720162 0.00852687 0.00968212 0.0105097 0.0108862 0.0109851 0.0110123 0.0110275 0.0110408 0.011054 0.0110671 0.0110801 0.0110932 0.0111063 0.0111194 0.0111325 0.0111456 0.0111586 0.0111717 0.0111848 0.0111979 0.011211 0.0112241 0.0112371 0.0112502 0.0112633 0.0112764 0.0112895 0.0113025 0.0113156 0.0113287 0.0113418 0.0113549 0.011368 0.011381 0.0113941 0.0114072 0.0114203 0.0114334 0.0114464 0.0114595 0.0114726 0.0114857 0.0114988 0.0115119 0.0115249 0.011538 0.0115511 0.0115642 0.0115773 0.0115903 0.0116034 0.0116165 0.0116296 0.0116427 0.0116558 0.0116688 0.0116819 0.011695 0.0117081 0.0117212 0.0117343 0.0117473 0.0117604 0.0117735 0.0117866 0.0117997 0.0118127 0.0118258 0.0118389 0.011852 0.0118651 0.0118782 0.0118912 0.0119043 0.0119174 0.0119305 0.0119436 0.0119566 0.0119697 0.0119828 0.0119959 0.012009 0.0120221 0.0120351 0.0120482 0.0120613 0.0120744 0.0120875 0.0121005 0.0121136 0.0121267 0.0121398 0.0121529 0.012166 0.012179 0.0121921 0.0122052 0.0122183 0.0122314 0.0122445 0.0122575 0.0122706 0.0122837 0.0122968 0.0123099 0.0123229 0.012336 0.0123491 0.0123622 0.0123753 0.0123884 0.0124014 0.0124145 0.0124276 0.0124407 0.0124538 0.0124668 0.0124799 0.012493 0.0125061 0.0125192 0.0125323 0.0125453 +-0.00306322 -0.00274927 -0.00211283 -0.00111366 0.000119479 0.0014782 0.00290072 0.00434913 0.00579376 0.00720253 0.00852813 0.00968402 0.0105127 0.0108902 0.0109895 0.0110168 0.011032 0.0110454 0.0110585 0.0110716 0.0110847 0.0110978 0.0111109 0.0111239 0.011137 0.0111501 0.0111632 0.0111763 0.0111894 0.0112025 0.0112156 0.0112286 0.0112417 0.0112548 0.0112679 0.011281 0.0112941 0.0113072 0.0113203 0.0113333 0.0113464 0.0113595 0.0113726 0.0113857 0.0113988 0.0114119 0.011425 0.0114381 0.0114511 0.0114642 0.0114773 0.0114904 0.0115035 0.0115166 0.0115297 0.0115428 0.0115558 0.0115689 0.011582 0.0115951 0.0116082 0.0116213 0.0116344 0.0116475 0.0116605 0.0116736 0.0116867 0.0116998 0.0117129 0.011726 0.0117391 0.0117522 0.0117652 0.0117783 0.0117914 0.0118045 0.0118176 0.0118307 0.0118438 0.0118569 0.0118699 0.011883 0.0118961 0.0119092 0.0119223 0.0119354 0.0119485 0.0119616 0.0119746 0.0119877 0.0120008 0.0120139 0.012027 0.0120401 0.0120532 0.0120663 0.0120793 0.0120924 0.0121055 0.0121186 0.0121317 0.0121448 0.0121579 0.012171 0.012184 0.0121971 0.0122102 0.0122233 0.0122364 0.0122495 0.0122626 0.0122757 0.0122887 0.0123018 0.0123149 0.012328 0.0123411 0.0123542 0.0123673 0.0123804 0.0123934 0.0124065 0.0124196 0.0124327 0.0124458 0.0124589 0.012472 0.0124851 0.0124981 0.0125112 0.0125243 0.0125374 0.0125505 +-0.00306464 -0.00275035 -0.0021134 -0.00111382 0.000119567 0.00147845 0.00290111 0.00434966 0.00579445 0.00720344 0.0085294 0.00968592 0.0105157 0.0108943 0.010994 0.0110213 0.0110365 0.0110499 0.011063 0.0110761 0.0110892 0.0111023 0.0111154 0.0111285 0.0111416 0.0111547 0.0111678 0.0111809 0.011194 0.0112071 0.0112202 0.0112332 0.0112463 0.0112594 0.0112725 0.0112856 0.0112987 0.0113118 0.0113249 0.011338 0.0113511 0.0113642 0.0113773 0.0113904 0.0114035 0.0114165 0.0114296 0.0114427 0.0114558 0.0114689 0.011482 0.0114951 0.0115082 0.0115213 0.0115344 0.0115475 0.0115606 0.0115737 0.0115868 0.0115999 0.0116129 0.011626 0.0116391 0.0116522 0.0116653 0.0116784 0.0116915 0.0117046 0.0117177 0.0117308 0.0117439 0.011757 0.0117701 0.0117832 0.0117963 0.0118093 0.0118224 0.0118355 0.0118486 0.0118617 0.0118748 0.0118879 0.011901 0.0119141 0.0119272 0.0119403 0.0119534 0.0119665 0.0119796 0.0119927 0.0120057 0.0120188 0.0120319 0.012045 0.0120581 0.0120712 0.0120843 0.0120974 0.0121105 0.0121236 0.0121367 0.0121498 0.0121629 0.012176 0.012189 0.0122021 0.0122152 0.0122283 0.0122414 0.0122545 0.0122676 0.0122807 0.0122938 0.0123069 0.01232 0.0123331 0.0123462 0.0123593 0.0123724 0.0123854 0.0123985 0.0124116 0.0124247 0.0124378 0.0124509 0.012464 0.0124771 0.0124902 0.0125033 0.0125164 0.0125295 0.0125426 0.0125557 +-0.00306606 -0.00275144 -0.00211397 -0.00111398 0.000119655 0.00147871 0.00290151 0.00435018 0.00579513 0.00720435 0.00853066 0.00968782 0.0105186 0.0108983 0.0109984 0.0110258 0.011041 0.0110544 0.0110675 0.0110807 0.0110938 0.0111069 0.0111199 0.011133 0.0111461 0.0111592 0.0111723 0.0111854 0.0111985 0.0112116 0.0112247 0.0112378 0.0112509 0.011264 0.0112771 0.0112902 0.0113033 0.0113164 0.0113295 0.0113426 0.0113557 0.0113688 0.0113819 0.011395 0.0114081 0.0114212 0.0114343 0.0114474 0.0114605 0.0114736 0.0114867 0.0114998 0.0115129 0.011526 0.0115391 0.0115522 0.0115653 0.0115784 0.0115915 0.0116046 0.0116177 0.0116308 0.0116439 0.011657 0.0116701 0.0116832 0.0116963 0.0117094 0.0117225 0.0117356 0.0117487 0.0117618 0.0117749 0.011788 0.0118011 0.0118142 0.0118273 0.0118404 0.0118535 0.0118666 0.0118797 0.0118928 0.0119059 0.011919 0.0119321 0.0119452 0.0119583 0.0119714 0.0119845 0.0119976 0.0120107 0.0120238 0.0120369 0.01205 0.0120631 0.0120762 0.0120893 0.0121024 0.0121155 0.0121286 0.0121417 0.0121548 0.0121679 0.012181 0.0121941 0.0122071 0.0122202 0.0122333 0.0122464 0.0122595 0.0122726 0.0122857 0.0122988 0.0123119 0.012325 0.0123381 0.0123512 0.0123643 0.0123774 0.0123905 0.0124036 0.0124167 0.0124298 0.0124429 0.012456 0.0124691 0.0124822 0.0124953 0.0125084 0.0125215 0.0125346 0.0125477 0.0125608 +-0.00306748 -0.00275252 -0.00211453 -0.00111415 0.000119743 0.00147897 0.0029019 0.00435071 0.00579582 0.00720526 0.00853193 0.00968972 0.0105216 0.0109024 0.0110028 0.0110302 0.0110455 0.0110589 0.0110721 0.0110852 0.0110983 0.0111114 0.0111245 0.0111376 0.0111507 0.0111638 0.0111769 0.01119 0.0112031 0.0112162 0.0112293 0.0112424 0.0112555 0.0112686 0.0112817 0.0112948 0.011308 0.0113211 0.0113342 0.0113473 0.0113604 0.0113735 0.0113866 0.0113997 0.0114128 0.0114259 0.011439 0.0114521 0.0114652 0.0114783 0.0114914 0.0115045 0.0115176 0.0115307 0.0115438 0.0115569 0.01157 0.0115831 0.0115962 0.0116094 0.0116225 0.0116356 0.0116487 0.0116618 0.0116749 0.011688 0.0117011 0.0117142 0.0117273 0.0117404 0.0117535 0.0117666 0.0117797 0.0117928 0.0118059 0.011819 0.0118321 0.0118452 0.0118583 0.0118714 0.0118845 0.0118977 0.0119108 0.0119239 0.011937 0.0119501 0.0119632 0.0119763 0.0119894 0.0120025 0.0120156 0.0120287 0.0120418 0.0120549 0.012068 0.0120811 0.0120942 0.0121073 0.0121204 0.0121335 0.0121466 0.0121597 0.0121728 0.0121859 0.0121991 0.0122122 0.0122253 0.0122384 0.0122515 0.0122646 0.0122777 0.0122908 0.0123039 0.012317 0.0123301 0.0123432 0.0123563 0.0123694 0.0123825 0.0123956 0.0124087 0.0124218 0.0124349 0.012448 0.0124611 0.0124742 0.0124873 0.0125005 0.0125136 0.0125267 0.0125398 0.0125529 0.012566 +-0.0030689 -0.0027536 -0.0021151 -0.00111431 0.000119831 0.00147922 0.00290229 0.00435124 0.00579651 0.00720617 0.00853319 0.00969161 0.0105246 0.0109064 0.0110072 0.0110347 0.01105 0.0110634 0.0110766 0.0110897 0.0111028 0.0111159 0.011129 0.0111421 0.0111553 0.0111684 0.0111815 0.0111946 0.0112077 0.0112208 0.0112339 0.011247 0.0112601 0.0112732 0.0112864 0.0112995 0.0113126 0.0113257 0.0113388 0.0113519 0.011365 0.0113781 0.0113912 0.0114043 0.0114175 0.0114306 0.0114437 0.0114568 0.0114699 0.011483 0.0114961 0.0115092 0.0115223 0.0115354 0.0115486 0.0115617 0.0115748 0.0115879 0.011601 0.0116141 0.0116272 0.0116403 0.0116534 0.0116665 0.0116797 0.0116928 0.0117059 0.011719 0.0117321 0.0117452 0.0117583 0.0117714 0.0117845 0.0117976 0.0118108 0.0118239 0.011837 0.0118501 0.0118632 0.0118763 0.0118894 0.0119025 0.0119156 0.0119287 0.0119419 0.011955 0.0119681 0.0119812 0.0119943 0.0120074 0.0120205 0.0120336 0.0120467 0.0120598 0.0120729 0.0120861 0.0120992 0.0121123 0.0121254 0.0121385 0.0121516 0.0121647 0.0121778 0.0121909 0.012204 0.0122172 0.0122303 0.0122434 0.0122565 0.0122696 0.0122827 0.0122958 0.0123089 0.012322 0.0123351 0.0123483 0.0123614 0.0123745 0.0123876 0.0124007 0.0124138 0.0124269 0.01244 0.0124531 0.0124662 0.0124794 0.0124925 0.0125056 0.0125187 0.0125318 0.0125449 0.012558 0.0125711 +-0.00307032 -0.00275468 -0.00211566 -0.00111447 0.000119919 0.00147948 0.00290268 0.00435177 0.0057972 0.00720708 0.00853445 0.0096935 0.0105276 0.0109104 0.0110116 0.0110392 0.0110545 0.0110679 0.0110811 0.0110942 0.0111073 0.0111205 0.0111336 0.0111467 0.0111598 0.0111729 0.011186 0.0111992 0.0112123 0.0112254 0.0112385 0.0112516 0.0112647 0.0112778 0.011291 0.0113041 0.0113172 0.0113303 0.0113434 0.0113565 0.0113697 0.0113828 0.0113959 0.011409 0.0114221 0.0114352 0.0114483 0.0114615 0.0114746 0.0114877 0.0115008 0.0115139 0.011527 0.0115402 0.0115533 0.0115664 0.0115795 0.0115926 0.0116057 0.0116188 0.011632 0.0116451 0.0116582 0.0116713 0.0116844 0.0116975 0.0117107 0.0117238 0.0117369 0.01175 0.0117631 0.0117762 0.0117894 0.0118025 0.0118156 0.0118287 0.0118418 0.0118549 0.011868 0.0118812 0.0118943 0.0119074 0.0119205 0.0119336 0.0119467 0.0119599 0.011973 0.0119861 0.0119992 0.0120123 0.0120254 0.0120385 0.0120517 0.0120648 0.0120779 0.012091 0.0121041 0.0121172 0.0121304 0.0121435 0.0121566 0.0121697 0.0121828 0.0121959 0.012209 0.0122222 0.0122353 0.0122484 0.0122615 0.0122746 0.0122877 0.0123009 0.012314 0.0123271 0.0123402 0.0123533 0.0123664 0.0123795 0.0123927 0.0124058 0.0124189 0.012432 0.0124451 0.0124582 0.0124714 0.0124845 0.0124976 0.0125107 0.0125238 0.0125369 0.01255 0.0125632 0.0125763 +-0.00307174 -0.00275576 -0.00211623 -0.00111463 0.000120007 0.00147973 0.00290308 0.0043523 0.00579788 0.00720799 0.00853571 0.00969539 0.0105306 0.0109145 0.011016 0.0110437 0.011059 0.0110725 0.0110856 0.0110987 0.0111119 0.011125 0.0111381 0.0111512 0.0111644 0.0111775 0.0111906 0.0112037 0.0112168 0.01123 0.0112431 0.0112562 0.0112693 0.0112824 0.0112956 0.0113087 0.0113218 0.0113349 0.0113481 0.0113612 0.0113743 0.0113874 0.0114005 0.0114137 0.0114268 0.0114399 0.011453 0.0114661 0.0114793 0.0114924 0.0115055 0.0115186 0.0115317 0.0115449 0.011558 0.0115711 0.0115842 0.0115974 0.0116105 0.0116236 0.0116367 0.0116498 0.011663 0.0116761 0.0116892 0.0117023 0.0117154 0.0117286 0.0117417 0.0117548 0.0117679 0.011781 0.0117942 0.0118073 0.0118204 0.0118335 0.0118467 0.0118598 0.0118729 0.011886 0.0118991 0.0119123 0.0119254 0.0119385 0.0119516 0.0119647 0.0119779 0.011991 0.0120041 0.0120172 0.0120303 0.0120435 0.0120566 0.0120697 0.0120828 0.012096 0.0121091 0.0121222 0.0121353 0.0121484 0.0121616 0.0121747 0.0121878 0.0122009 0.012214 0.0122272 0.0122403 0.0122534 0.0122665 0.0122796 0.0122928 0.0123059 0.012319 0.0123321 0.0123453 0.0123584 0.0123715 0.0123846 0.0123977 0.0124109 0.012424 0.0124371 0.0124502 0.0124633 0.0124765 0.0124896 0.0125027 0.0125158 0.0125289 0.0125421 0.0125552 0.0125683 0.0125814 +-0.00307316 -0.00275684 -0.00211679 -0.00111479 0.000120095 0.00147999 0.00290347 0.00435282 0.00579857 0.00720889 0.00853696 0.00969728 0.0105335 0.0109185 0.0110205 0.0110482 0.0110635 0.011077 0.0110901 0.0111033 0.0111164 0.0111295 0.0111427 0.0111558 0.0111689 0.011182 0.0111952 0.0112083 0.0112214 0.0112345 0.0112477 0.0112608 0.0112739 0.011287 0.0113002 0.0113133 0.0113264 0.0113396 0.0113527 0.0113658 0.0113789 0.0113921 0.0114052 0.0114183 0.0114314 0.0114446 0.0114577 0.0114708 0.0114839 0.0114971 0.0115102 0.0115233 0.0115365 0.0115496 0.0115627 0.0115758 0.011589 0.0116021 0.0116152 0.0116283 0.0116415 0.0116546 0.0116677 0.0116808 0.011694 0.0117071 0.0117202 0.0117334 0.0117465 0.0117596 0.0117727 0.0117859 0.011799 0.0118121 0.0118252 0.0118384 0.0118515 0.0118646 0.0118777 0.0118909 0.011904 0.0119171 0.0119303 0.0119434 0.0119565 0.0119696 0.0119828 0.0119959 0.012009 0.0120221 0.0120353 0.0120484 0.0120615 0.0120746 0.0120878 0.0121009 0.012114 0.0121272 0.0121403 0.0121534 0.0121665 0.0121797 0.0121928 0.0122059 0.012219 0.0122322 0.0122453 0.0122584 0.0122715 0.0122847 0.0122978 0.0123109 0.0123241 0.0123372 0.0123503 0.0123634 0.0123766 0.0123897 0.0124028 0.0124159 0.0124291 0.0124422 0.0124553 0.0124684 0.0124816 0.0124947 0.0125078 0.0125209 0.0125341 0.0125472 0.0125603 0.0125735 0.0125866 +-0.00307458 -0.00275792 -0.00211735 -0.00111495 0.000120183 0.00148025 0.00290386 0.00435335 0.00579926 0.0072098 0.00853822 0.00969916 0.0105365 0.0109225 0.0110249 0.0110527 0.011068 0.0110815 0.0110947 0.0111078 0.0111209 0.0111341 0.0111472 0.0111603 0.0111735 0.0111866 0.0111997 0.0112128 0.011226 0.0112391 0.0112522 0.0112654 0.0112785 0.0112916 0.0113048 0.0113179 0.011331 0.0113442 0.0113573 0.0113704 0.0113836 0.0113967 0.0114098 0.011423 0.0114361 0.0114492 0.0114624 0.0114755 0.0114886 0.0115018 0.0115149 0.011528 0.0115412 0.0115543 0.0115674 0.0115806 0.0115937 0.0116068 0.0116199 0.0116331 0.0116462 0.0116593 0.0116725 0.0116856 0.0116987 0.0117119 0.011725 0.0117381 0.0117513 0.0117644 0.0117775 0.0117907 0.0118038 0.0118169 0.0118301 0.0118432 0.0118563 0.0118695 0.0118826 0.0118957 0.0119089 0.011922 0.0119351 0.0119483 0.0119614 0.0119745 0.0119877 0.0120008 0.0120139 0.012027 0.0120402 0.0120533 0.0120664 0.0120796 0.0120927 0.0121058 0.012119 0.0121321 0.0121452 0.0121584 0.0121715 0.0121846 0.0121978 0.0122109 0.012224 0.0122372 0.0122503 0.0122634 0.0122766 0.0122897 0.0123028 0.012316 0.0123291 0.0123422 0.0123554 0.0123685 0.0123816 0.0123947 0.0124079 0.012421 0.0124341 0.0124473 0.0124604 0.0124735 0.0124867 0.0124998 0.0125129 0.0125261 0.0125392 0.0125523 0.0125655 0.0125786 0.0125917 +-0.003076 -0.00275899 -0.00211792 -0.00111511 0.00012027 0.0014805 0.00290425 0.00435387 0.00579994 0.0072107 0.00853947 0.00970104 0.0105394 0.0109265 0.0110293 0.0110572 0.0110725 0.011086 0.0110992 0.0111123 0.0111254 0.0111386 0.0111517 0.0111649 0.011178 0.0111911 0.0112043 0.0112174 0.0112306 0.0112437 0.0112568 0.01127 0.0112831 0.0112962 0.0113094 0.0113225 0.0113357 0.0113488 0.0113619 0.0113751 0.0113882 0.0114013 0.0114145 0.0114276 0.0114408 0.0114539 0.011467 0.0114802 0.0114933 0.0115064 0.0115196 0.0115327 0.0115459 0.011559 0.0115721 0.0115853 0.0115984 0.0116115 0.0116247 0.0116378 0.011651 0.0116641 0.0116772 0.0116904 0.0117035 0.0117166 0.0117298 0.0117429 0.0117561 0.0117692 0.0117823 0.0117955 0.0118086 0.0118218 0.0118349 0.011848 0.0118612 0.0118743 0.0118874 0.0119006 0.0119137 0.0119269 0.01194 0.0119531 0.0119663 0.0119794 0.0119925 0.0120057 0.0120188 0.012032 0.0120451 0.0120582 0.0120714 0.0120845 0.0120976 0.0121108 0.0121239 0.0121371 0.0121502 0.0121633 0.0121765 0.0121896 0.0122027 0.0122159 0.012229 0.0122422 0.0122553 0.0122684 0.0122816 0.0122947 0.0123078 0.012321 0.0123341 0.0123473 0.0123604 0.0123735 0.0123867 0.0123998 0.012413 0.0124261 0.0124392 0.0124524 0.0124655 0.0124786 0.0124918 0.0125049 0.0125181 0.0125312 0.0125443 0.0125575 0.0125706 0.0125837 0.0125969 +-0.00307742 -0.00276007 -0.00211848 -0.00111527 0.000120358 0.00148076 0.00290464 0.0043544 0.00580062 0.0072116 0.00854073 0.00970292 0.0105424 0.0109306 0.0110337 0.0110617 0.011077 0.0110905 0.0111037 0.0111168 0.01113 0.0111431 0.0111563 0.0111694 0.0111825 0.0111957 0.0112088 0.011222 0.0112351 0.0112483 0.0112614 0.0112745 0.0112877 0.0113008 0.011314 0.0113271 0.0113403 0.0113534 0.0113666 0.0113797 0.0113928 0.011406 0.0114191 0.0114323 0.0114454 0.0114586 0.0114717 0.0114848 0.011498 0.0115111 0.0115243 0.0115374 0.0115506 0.0115637 0.0115768 0.01159 0.0116031 0.0116163 0.0116294 0.0116426 0.0116557 0.0116688 0.011682 0.0116951 0.0117083 0.0117214 0.0117346 0.0117477 0.0117609 0.011774 0.0117871 0.0118003 0.0118134 0.0118266 0.0118397 0.0118529 0.011866 0.0118791 0.0118923 0.0119054 0.0119186 0.0119317 0.0119449 0.011958 0.0119711 0.0119843 0.0119974 0.0120106 0.0120237 0.0120369 0.01205 0.0120631 0.0120763 0.0120894 0.0121026 0.0121157 0.0121289 0.012142 0.0121552 0.0121683 0.0121814 0.0121946 0.0122077 0.0122209 0.012234 0.0122472 0.0122603 0.0122734 0.0122866 0.0122997 0.0123129 0.012326 0.0123392 0.0123523 0.0123654 0.0123786 0.0123917 0.0124049 0.012418 0.0124312 0.0124443 0.0124574 0.0124706 0.0124837 0.0124969 0.01251 0.0125232 0.0125363 0.0125495 0.0125626 0.0125757 0.0125889 0.012602 +-0.00307884 -0.00276115 -0.00211904 -0.00111543 0.000120446 0.00148101 0.00290504 0.00435493 0.00580131 0.00721251 0.00854198 0.00970479 0.0105453 0.0109346 0.0110381 0.0110661 0.0110815 0.011095 0.0111082 0.0111213 0.0111345 0.0111476 0.0111608 0.0111739 0.0111871 0.0112002 0.0112134 0.0112265 0.0112397 0.0112528 0.011266 0.0112791 0.0112923 0.0113054 0.0113186 0.0113317 0.0113449 0.011358 0.0113712 0.0113843 0.0113975 0.0114106 0.0114238 0.0114369 0.0114501 0.0114632 0.0114764 0.0114895 0.0115027 0.0115158 0.011529 0.0115421 0.0115553 0.0115684 0.0115816 0.0115947 0.0116079 0.011621 0.0116342 0.0116473 0.0116604 0.0116736 0.0116867 0.0116999 0.011713 0.0117262 0.0117393 0.0117525 0.0117656 0.0117788 0.0117919 0.0118051 0.0118182 0.0118314 0.0118445 0.0118577 0.0118708 0.011884 0.0118971 0.0119103 0.0119234 0.0119366 0.0119497 0.0119629 0.011976 0.0119892 0.0120023 0.0120155 0.0120286 0.0120418 0.0120549 0.0120681 0.0120812 0.0120944 0.0121075 0.0121207 0.0121338 0.012147 0.0121601 0.0121733 0.0121864 0.0121996 0.0122127 0.0122259 0.012239 0.0122521 0.0122653 0.0122784 0.0122916 0.0123047 0.0123179 0.012331 0.0123442 0.0123573 0.0123705 0.0123836 0.0123968 0.0124099 0.0124231 0.0124362 0.0124494 0.0124625 0.0124757 0.0124888 0.012502 0.0125151 0.0125283 0.0125414 0.0125546 0.0125677 0.0125809 0.012594 0.0126072 +-0.00308025 -0.00276222 -0.0021196 -0.00111559 0.000120534 0.00148127 0.00290543 0.00435545 0.00580199 0.00721341 0.00854323 0.00970667 0.0105483 0.0109386 0.0110425 0.0110706 0.011086 0.0110995 0.0111127 0.0111259 0.011139 0.0111522 0.0111653 0.0111785 0.0111916 0.0112048 0.0112179 0.0112311 0.0112442 0.0112574 0.0112706 0.0112837 0.0112969 0.01131 0.0113232 0.0113363 0.0113495 0.0113626 0.0113758 0.0113889 0.0114021 0.0114153 0.0114284 0.0114416 0.0114547 0.0114679 0.011481 0.0114942 0.0115073 0.0115205 0.0115336 0.0115468 0.01156 0.0115731 0.0115863 0.0115994 0.0116126 0.0116257 0.0116389 0.011652 0.0116652 0.0116783 0.0116915 0.0117047 0.0117178 0.011731 0.0117441 0.0117573 0.0117704 0.0117836 0.0117967 0.0118099 0.011823 0.0118362 0.0118494 0.0118625 0.0118757 0.0118888 0.011902 0.0119151 0.0119283 0.0119414 0.0119546 0.0119677 0.0119809 0.0119941 0.0120072 0.0120204 0.0120335 0.0120467 0.0120598 0.012073 0.0120861 0.0120993 0.0121124 0.0121256 0.0121388 0.0121519 0.0121651 0.0121782 0.0121914 0.0122045 0.0122177 0.0122308 0.012244 0.0122571 0.0122703 0.0122835 0.0122966 0.0123098 0.0123229 0.0123361 0.0123492 0.0123624 0.0123755 0.0123887 0.0124018 0.012415 0.0124282 0.0124413 0.0124545 0.0124676 0.0124808 0.0124939 0.0125071 0.0125202 0.0125334 0.0125465 0.0125597 0.0125728 0.012586 0.0125992 0.0126123 +-0.00308167 -0.0027633 -0.00212016 -0.00111575 0.000120622 0.00148152 0.00290582 0.00435597 0.00580267 0.00721431 0.00854448 0.00970854 0.0105512 0.0109426 0.0110469 0.0110751 0.0110905 0.011104 0.0111172 0.0111304 0.0111435 0.0111567 0.0111699 0.011183 0.0111962 0.0112093 0.0112225 0.0112357 0.0112488 0.011262 0.0112751 0.0112883 0.0113015 0.0113146 0.0113278 0.0113409 0.0113541 0.0113673 0.0113804 0.0113936 0.0114067 0.0114199 0.0114331 0.0114462 0.0114594 0.0114725 0.0114857 0.0114989 0.011512 0.0115252 0.0115383 0.0115515 0.0115647 0.0115778 0.011591 0.0116041 0.0116173 0.0116305 0.0116436 0.0116568 0.0116699 0.0116831 0.0116963 0.0117094 0.0117226 0.0117357 0.0117489 0.0117621 0.0117752 0.0117884 0.0118015 0.0118147 0.0118279 0.011841 0.0118542 0.0118673 0.0118805 0.0118937 0.0119068 0.01192 0.0119331 0.0119463 0.0119595 0.0119726 0.0119858 0.0119989 0.0120121 0.0120253 0.0120384 0.0120516 0.0120647 0.0120779 0.0120911 0.0121042 0.0121174 0.0121305 0.0121437 0.0121569 0.01217 0.0121832 0.0121963 0.0122095 0.0122227 0.0122358 0.012249 0.0122621 0.0122753 0.0122885 0.0123016 0.0123148 0.0123279 0.0123411 0.0123543 0.0123674 0.0123806 0.0123937 0.0124069 0.0124201 0.0124332 0.0124464 0.0124595 0.0124727 0.0124859 0.012499 0.0125122 0.0125253 0.0125385 0.0125517 0.0125648 0.012578 0.0125911 0.0126043 0.0126175 +-0.00308308 -0.00276437 -0.00212072 -0.00111591 0.00012071 0.00148178 0.00290621 0.0043565 0.00580336 0.00721521 0.00854572 0.00971041 0.0105542 0.0109466 0.0110513 0.0110796 0.011095 0.0111085 0.0111217 0.0111349 0.0111481 0.0111612 0.0111744 0.0111875 0.0112007 0.0112139 0.011227 0.0112402 0.0112534 0.0112665 0.0112797 0.0112929 0.011306 0.0113192 0.0113324 0.0113455 0.0113587 0.0113719 0.011385 0.0113982 0.0114114 0.0114245 0.0114377 0.0114509 0.011464 0.0114772 0.0114904 0.0115035 0.0115167 0.0115299 0.011543 0.0115562 0.0115693 0.0115825 0.0115957 0.0116088 0.011622 0.0116352 0.0116483 0.0116615 0.0116747 0.0116878 0.011701 0.0117142 0.0117273 0.0117405 0.0117537 0.0117668 0.01178 0.0117932 0.0118063 0.0118195 0.0118327 0.0118458 0.011859 0.0118722 0.0118853 0.0118985 0.0119117 0.0119248 0.011938 0.0119512 0.0119643 0.0119775 0.0119906 0.0120038 0.012017 0.0120301 0.0120433 0.0120565 0.0120696 0.0120828 0.012096 0.0121091 0.0121223 0.0121355 0.0121486 0.0121618 0.012175 0.0121881 0.0122013 0.0122145 0.0122276 0.0122408 0.012254 0.0122671 0.0122803 0.0122935 0.0123066 0.0123198 0.012333 0.0123461 0.0123593 0.0123724 0.0123856 0.0123988 0.0124119 0.0124251 0.0124383 0.0124514 0.0124646 0.0124778 0.0124909 0.0125041 0.0125173 0.0125304 0.0125436 0.0125568 0.0125699 0.0125831 0.0125963 0.0126094 0.0126226 +-0.0030845 -0.00276544 -0.00212128 -0.00111607 0.000120798 0.00148203 0.0029066 0.00435702 0.00580404 0.00721611 0.00854697 0.00971227 0.0105571 0.0109506 0.0110557 0.011084 0.0110995 0.011113 0.0111262 0.0111394 0.0111526 0.0111657 0.0111789 0.0111921 0.0112053 0.0112184 0.0112316 0.0112448 0.0112579 0.0112711 0.0112843 0.0112975 0.0113106 0.0113238 0.011337 0.0113501 0.0113633 0.0113765 0.0113896 0.0114028 0.011416 0.0114292 0.0114423 0.0114555 0.0114687 0.0114818 0.011495 0.0115082 0.0115214 0.0115345 0.0115477 0.0115609 0.011574 0.0115872 0.0116004 0.0116136 0.0116267 0.0116399 0.0116531 0.0116662 0.0116794 0.0116926 0.0117058 0.0117189 0.0117321 0.0117453 0.0117584 0.0117716 0.0117848 0.011798 0.0118111 0.0118243 0.0118375 0.0118506 0.0118638 0.011877 0.0118902 0.0119033 0.0119165 0.0119297 0.0119428 0.011956 0.0119692 0.0119823 0.0119955 0.0120087 0.0120219 0.012035 0.0120482 0.0120614 0.0120745 0.0120877 0.0121009 0.0121141 0.0121272 0.0121404 0.0121536 0.0121667 0.0121799 0.0121931 0.0122063 0.0122194 0.0122326 0.0122458 0.0122589 0.0122721 0.0122853 0.0122985 0.0123116 0.0123248 0.012338 0.0123511 0.0123643 0.0123775 0.0123907 0.0124038 0.012417 0.0124302 0.0124433 0.0124565 0.0124697 0.0124829 0.012496 0.0125092 0.0125224 0.0125355 0.0125487 0.0125619 0.012575 0.0125882 0.0126014 0.0126146 0.0126277 +-0.00308592 -0.00276652 -0.00212184 -0.00111623 0.000120886 0.00148229 0.00290699 0.00435755 0.00580472 0.00721701 0.00854821 0.00971413 0.01056 0.0109546 0.0110601 0.0110885 0.011104 0.0111175 0.0111307 0.0111439 0.0111571 0.0111703 0.0111834 0.0111966 0.0112098 0.011223 0.0112361 0.0112493 0.0112625 0.0112757 0.0112888 0.011302 0.0113152 0.0113284 0.0113416 0.0113547 0.0113679 0.0113811 0.0113943 0.0114074 0.0114206 0.0114338 0.011447 0.0114601 0.0114733 0.0114865 0.0114997 0.0115129 0.011526 0.0115392 0.0115524 0.0115656 0.0115787 0.0115919 0.0116051 0.0116183 0.0116314 0.0116446 0.0116578 0.011671 0.0116842 0.0116973 0.0117105 0.0117237 0.0117369 0.01175 0.0117632 0.0117764 0.0117896 0.0118027 0.0118159 0.0118291 0.0118423 0.0118554 0.0118686 0.0118818 0.011895 0.0119082 0.0119213 0.0119345 0.0119477 0.0119609 0.011974 0.0119872 0.0120004 0.0120136 0.0120267 0.0120399 0.0120531 0.0120663 0.0120795 0.0120926 0.0121058 0.012119 0.0121322 0.0121453 0.0121585 0.0121717 0.0121849 0.012198 0.0122112 0.0122244 0.0122376 0.0122507 0.0122639 0.0122771 0.0122903 0.0123035 0.0123166 0.0123298 0.012343 0.0123562 0.0123693 0.0123825 0.0123957 0.0124089 0.012422 0.0124352 0.0124484 0.0124616 0.0124748 0.0124879 0.0125011 0.0125143 0.0125275 0.0125406 0.0125538 0.012567 0.0125802 0.0125933 0.0126065 0.0126197 0.0126329 +-0.00308733 -0.00276759 -0.00212239 -0.00111638 0.000120974 0.00148254 0.00290738 0.00435807 0.0058054 0.0072179 0.00854945 0.00971599 0.010563 0.0109586 0.0110645 0.011093 0.0111085 0.011122 0.0111352 0.0111484 0.0111616 0.0111748 0.011188 0.0112011 0.0112143 0.0112275 0.0112407 0.0112539 0.0112671 0.0112802 0.0112934 0.0113066 0.0113198 0.011333 0.0113461 0.0113593 0.0113725 0.0113857 0.0113989 0.0114121 0.0114252 0.0114384 0.0114516 0.0114648 0.011478 0.0114912 0.0115043 0.0115175 0.0115307 0.0115439 0.0115571 0.0115702 0.0115834 0.0115966 0.0116098 0.011623 0.0116362 0.0116493 0.0116625 0.0116757 0.0116889 0.0117021 0.0117153 0.0117284 0.0117416 0.0117548 0.011768 0.0117812 0.0117943 0.0118075 0.0118207 0.0118339 0.0118471 0.0118603 0.0118734 0.0118866 0.0118998 0.011913 0.0119262 0.0119393 0.0119525 0.0119657 0.0119789 0.0119921 0.0120053 0.0120184 0.0120316 0.0120448 0.012058 0.0120712 0.0120844 0.0120975 0.0121107 0.0121239 0.0121371 0.0121503 0.0121634 0.0121766 0.0121898 0.012203 0.0122162 0.0122294 0.0122425 0.0122557 0.0122689 0.0122821 0.0122953 0.0123085 0.0123216 0.0123348 0.012348 0.0123612 0.0123744 0.0123875 0.0124007 0.0124139 0.0124271 0.0124403 0.0124535 0.0124666 0.0124798 0.012493 0.0125062 0.0125194 0.0125325 0.0125457 0.0125589 0.0125721 0.0125853 0.0125985 0.0126116 0.0126248 0.012638 +-0.00308874 -0.00276866 -0.00212295 -0.00111654 0.000121062 0.00148279 0.00290777 0.00435859 0.00580608 0.0072188 0.0085507 0.00971785 0.0105659 0.0109626 0.0110689 0.0110975 0.011113 0.0111265 0.0111397 0.0111529 0.0111661 0.0111793 0.0111925 0.0112057 0.0112189 0.011232 0.0112452 0.0112584 0.0112716 0.0112848 0.011298 0.0113112 0.0113244 0.0113376 0.0113507 0.0113639 0.0113771 0.0113903 0.0114035 0.0114167 0.0114299 0.0114431 0.0114562 0.0114694 0.0114826 0.0114958 0.011509 0.0115222 0.0115354 0.0115486 0.0115617 0.0115749 0.0115881 0.0116013 0.0116145 0.0116277 0.0116409 0.0116541 0.0116672 0.0116804 0.0116936 0.0117068 0.01172 0.0117332 0.0117464 0.0117596 0.0117727 0.0117859 0.0117991 0.0118123 0.0118255 0.0118387 0.0118519 0.0118651 0.0118783 0.0118914 0.0119046 0.0119178 0.011931 0.0119442 0.0119574 0.0119706 0.0119838 0.0119969 0.0120101 0.0120233 0.0120365 0.0120497 0.0120629 0.0120761 0.0120893 0.0121024 0.0121156 0.0121288 0.012142 0.0121552 0.0121684 0.0121816 0.0121948 0.0122079 0.0122211 0.0122343 0.0122475 0.0122607 0.0122739 0.0122871 0.0123003 0.0123134 0.0123266 0.0123398 0.012353 0.0123662 0.0123794 0.0123926 0.0124058 0.0124189 0.0124321 0.0124453 0.0124585 0.0124717 0.0124849 0.0124981 0.0125113 0.0125245 0.0125376 0.0125508 0.012564 0.0125772 0.0125904 0.0126036 0.0126168 0.01263 0.0126431 +-0.00309016 -0.00276973 -0.00212351 -0.0011167 0.00012115 0.00148305 0.00290816 0.00435911 0.00580676 0.0072197 0.00855194 0.00971971 0.0105688 0.0109666 0.0110733 0.0111019 0.0111174 0.011131 0.0111442 0.0111574 0.0111706 0.0111838 0.011197 0.0112102 0.0112234 0.0112366 0.0112498 0.011263 0.0112762 0.0112894 0.0113026 0.0113157 0.0113289 0.0113421 0.0113553 0.0113685 0.0113817 0.0113949 0.0114081 0.0114213 0.0114345 0.0114477 0.0114609 0.0114741 0.0114873 0.0115005 0.0115136 0.0115268 0.01154 0.0115532 0.0115664 0.0115796 0.0115928 0.011606 0.0116192 0.0116324 0.0116456 0.0116588 0.011672 0.0116852 0.0116984 0.0117115 0.0117247 0.0117379 0.0117511 0.0117643 0.0117775 0.0117907 0.0118039 0.0118171 0.0118303 0.0118435 0.0118567 0.0118699 0.0118831 0.0118963 0.0119094 0.0119226 0.0119358 0.011949 0.0119622 0.0119754 0.0119886 0.0120018 0.012015 0.0120282 0.0120414 0.0120546 0.0120678 0.012081 0.0120942 0.0121073 0.0121205 0.0121337 0.0121469 0.0121601 0.0121733 0.0121865 0.0121997 0.0122129 0.0122261 0.0122393 0.0122525 0.0122657 0.0122789 0.0122921 0.0123052 0.0123184 0.0123316 0.0123448 0.012358 0.0123712 0.0123844 0.0123976 0.0124108 0.012424 0.0124372 0.0124504 0.0124636 0.0124768 0.01249 0.0125031 0.0125163 0.0125295 0.0125427 0.0125559 0.0125691 0.0125823 0.0125955 0.0126087 0.0126219 0.0126351 0.0126483 +-0.00309157 -0.0027708 -0.00212406 -0.00111686 0.000121238 0.0014833 0.00290854 0.00435964 0.00580743 0.00722059 0.00855317 0.00972156 0.0105717 0.0109706 0.0110777 0.0111064 0.0111219 0.0111355 0.0111487 0.0111619 0.0111751 0.0111883 0.0112015 0.0112147 0.0112279 0.0112411 0.0112543 0.0112675 0.0112807 0.0112939 0.0113071 0.0113203 0.0113335 0.0113467 0.0113599 0.0113731 0.0113863 0.0113995 0.0114127 0.0114259 0.0114391 0.0114523 0.0114655 0.0114787 0.0114919 0.0115051 0.0115183 0.0115315 0.0115447 0.0115579 0.0115711 0.0115843 0.0115975 0.0116107 0.0116239 0.0116371 0.0116503 0.0116635 0.0116767 0.0116899 0.0117031 0.0117163 0.0117295 0.0117427 0.0117559 0.0117691 0.0117823 0.0117955 0.0118087 0.0118219 0.0118351 0.0118483 0.0118615 0.0118747 0.0118879 0.0119011 0.0119143 0.0119275 0.0119407 0.0119539 0.0119671 0.0119803 0.0119935 0.0120067 0.0120199 0.0120331 0.0120463 0.0120595 0.0120727 0.0120859 0.0120991 0.0121123 0.0121255 0.0121387 0.0121518 0.012165 0.0121782 0.0121914 0.0122046 0.0122178 0.012231 0.0122442 0.0122574 0.0122706 0.0122838 0.012297 0.0123102 0.0123234 0.0123366 0.0123498 0.012363 0.0123762 0.0123894 0.0124026 0.0124158 0.012429 0.0124422 0.0124554 0.0124686 0.0124818 0.012495 0.0125082 0.0125214 0.0125346 0.0125478 0.012561 0.0125742 0.0125874 0.0126006 0.0126138 0.012627 0.0126402 0.0126534 +-0.00309298 -0.00277187 -0.00212462 -0.00111702 0.000121326 0.00148356 0.00290893 0.00436016 0.00580811 0.00722149 0.00855441 0.00972341 0.0105746 0.0109746 0.0110821 0.0111109 0.0111264 0.01114 0.0111532 0.0111664 0.0111796 0.0111928 0.0112061 0.0112193 0.0112325 0.0112457 0.0112589 0.0112721 0.0112853 0.0112985 0.0113117 0.0113249 0.0113381 0.0113513 0.0113645 0.0113777 0.0113909 0.0114041 0.0114173 0.0114305 0.0114437 0.0114569 0.0114701 0.0114833 0.0114965 0.0115098 0.011523 0.0115362 0.0115494 0.0115626 0.0115758 0.011589 0.0116022 0.0116154 0.0116286 0.0116418 0.011655 0.0116682 0.0116814 0.0116946 0.0117078 0.011721 0.0117342 0.0117474 0.0117606 0.0117738 0.011787 0.0118002 0.0118135 0.0118267 0.0118399 0.0118531 0.0118663 0.0118795 0.0118927 0.0119059 0.0119191 0.0119323 0.0119455 0.0119587 0.0119719 0.0119851 0.0119983 0.0120115 0.0120247 0.0120379 0.0120511 0.0120643 0.0120775 0.0120907 0.012104 0.0121172 0.0121304 0.0121436 0.0121568 0.01217 0.0121832 0.0121964 0.0122096 0.0122228 0.012236 0.0122492 0.0122624 0.0122756 0.0122888 0.012302 0.0123152 0.0123284 0.0123416 0.0123548 0.012368 0.0123812 0.0123944 0.0124077 0.0124209 0.0124341 0.0124473 0.0124605 0.0124737 0.0124869 0.0125001 0.0125133 0.0125265 0.0125397 0.0125529 0.0125661 0.0125793 0.0125925 0.0126057 0.0126189 0.0126321 0.0126453 0.0126585 +-0.0030944 -0.00277294 -0.00212518 -0.00111717 0.000121414 0.00148381 0.00290932 0.00436068 0.00580879 0.00722238 0.00855565 0.00972526 0.0105775 0.0109786 0.0110864 0.0111153 0.0111309 0.0111445 0.0111577 0.0111709 0.0111841 0.0111974 0.0112106 0.0112238 0.011237 0.0112502 0.0112634 0.0112766 0.0112898 0.011303 0.0113162 0.0113295 0.0113427 0.0113559 0.0113691 0.0113823 0.0113955 0.0114087 0.0114219 0.0114351 0.0114483 0.0114616 0.0114748 0.011488 0.0115012 0.0115144 0.0115276 0.0115408 0.011554 0.0115672 0.0115804 0.0115937 0.0116069 0.0116201 0.0116333 0.0116465 0.0116597 0.0116729 0.0116861 0.0116993 0.0117125 0.0117258 0.011739 0.0117522 0.0117654 0.0117786 0.0117918 0.011805 0.0118182 0.0118314 0.0118446 0.0118579 0.0118711 0.0118843 0.0118975 0.0119107 0.0119239 0.0119371 0.0119503 0.0119635 0.0119767 0.01199 0.0120032 0.0120164 0.0120296 0.0120428 0.012056 0.0120692 0.0120824 0.0120956 0.0121088 0.0121221 0.0121353 0.0121485 0.0121617 0.0121749 0.0121881 0.0122013 0.0122145 0.0122277 0.0122409 0.0122542 0.0122674 0.0122806 0.0122938 0.012307 0.0123202 0.0123334 0.0123466 0.0123598 0.012373 0.0123863 0.0123995 0.0124127 0.0124259 0.0124391 0.0124523 0.0124655 0.0124787 0.0124919 0.0125051 0.0125184 0.0125316 0.0125448 0.012558 0.0125712 0.0125844 0.0125976 0.0126108 0.012624 0.0126372 0.0126505 0.0126637 +-0.00309581 -0.002774 -0.00212573 -0.00111733 0.000121502 0.00148406 0.00290971 0.0043612 0.00580947 0.00722327 0.00855688 0.0097271 0.0105804 0.0109825 0.0110908 0.0111198 0.0111354 0.0111489 0.0111622 0.0111754 0.0111887 0.0112019 0.0112151 0.0112283 0.0112415 0.0112547 0.0112679 0.0112812 0.0112944 0.0113076 0.0113208 0.011334 0.0113472 0.0113605 0.0113737 0.0113869 0.0114001 0.0114133 0.0114265 0.0114398 0.011453 0.0114662 0.0114794 0.0114926 0.0115058 0.011519 0.0115323 0.0115455 0.0115587 0.0115719 0.0115851 0.0115983 0.0116116 0.0116248 0.011638 0.0116512 0.0116644 0.0116776 0.0116908 0.0117041 0.0117173 0.0117305 0.0117437 0.0117569 0.0117701 0.0117834 0.0117966 0.0118098 0.011823 0.0118362 0.0118494 0.0118626 0.0118759 0.0118891 0.0119023 0.0119155 0.0119287 0.0119419 0.0119552 0.0119684 0.0119816 0.0119948 0.012008 0.0120212 0.0120344 0.0120477 0.0120609 0.0120741 0.0120873 0.0121005 0.0121137 0.012127 0.0121402 0.0121534 0.0121666 0.0121798 0.012193 0.0122063 0.0122195 0.0122327 0.0122459 0.0122591 0.0122723 0.0122855 0.0122988 0.012312 0.0123252 0.0123384 0.0123516 0.0123648 0.0123781 0.0123913 0.0124045 0.0124177 0.0124309 0.0124441 0.0124573 0.0124706 0.0124838 0.012497 0.0125102 0.0125234 0.0125366 0.0125499 0.0125631 0.0125763 0.0125895 0.0126027 0.0126159 0.0126291 0.0126424 0.0126556 0.0126688 +-0.00309722 -0.00277507 -0.00212628 -0.00111749 0.00012159 0.00148432 0.0029101 0.00436172 0.00581014 0.00722416 0.00855811 0.00972894 0.0105833 0.0109865 0.0110952 0.0111243 0.0111399 0.0111534 0.0111667 0.0111799 0.0111932 0.0112064 0.0112196 0.0112328 0.011246 0.0112593 0.0112725 0.0112857 0.0112989 0.0113122 0.0113254 0.0113386 0.0113518 0.011365 0.0113783 0.0113915 0.0114047 0.0114179 0.0114311 0.0114444 0.0114576 0.0114708 0.011484 0.0114972 0.0115105 0.0115237 0.0115369 0.0115501 0.0115634 0.0115766 0.0115898 0.011603 0.0116162 0.0116295 0.0116427 0.0116559 0.0116691 0.0116823 0.0116956 0.0117088 0.011722 0.0117352 0.0117484 0.0117617 0.0117749 0.0117881 0.0118013 0.0118146 0.0118278 0.011841 0.0118542 0.0118674 0.0118807 0.0118939 0.0119071 0.0119203 0.0119335 0.0119468 0.01196 0.0119732 0.0119864 0.0119996 0.0120129 0.0120261 0.0120393 0.0120525 0.0120658 0.012079 0.0120922 0.0121054 0.0121186 0.0121319 0.0121451 0.0121583 0.0121715 0.0121847 0.012198 0.0122112 0.0122244 0.0122376 0.0122508 0.0122641 0.0122773 0.0122905 0.0123037 0.012317 0.0123302 0.0123434 0.0123566 0.0123698 0.0123831 0.0123963 0.0124095 0.0124227 0.0124359 0.0124492 0.0124624 0.0124756 0.0124888 0.012502 0.0125153 0.0125285 0.0125417 0.0125549 0.0125682 0.0125814 0.0125946 0.0126078 0.012621 0.0126343 0.0126475 0.0126607 0.0126739 +-0.00309863 -0.00277614 -0.00212684 -0.00111764 0.000121678 0.00148457 0.00291048 0.00436224 0.00581082 0.00722505 0.00855935 0.00973078 0.0105862 0.0109905 0.0110996 0.0111287 0.0111443 0.0111579 0.0111712 0.0111844 0.0111977 0.0112109 0.0112241 0.0112373 0.0112506 0.0112638 0.011277 0.0112903 0.0113035 0.0113167 0.0113299 0.0113432 0.0113564 0.0113696 0.0113828 0.0113961 0.0114093 0.0114225 0.0114357 0.011449 0.0114622 0.0114754 0.0114887 0.0115019 0.0115151 0.0115283 0.0115416 0.0115548 0.011568 0.0115812 0.0115945 0.0116077 0.0116209 0.0116341 0.0116474 0.0116606 0.0116738 0.011687 0.0117003 0.0117135 0.0117267 0.01174 0.0117532 0.0117664 0.0117796 0.0117929 0.0118061 0.0118193 0.0118325 0.0118458 0.011859 0.0118722 0.0118854 0.0118987 0.0119119 0.0119251 0.0119384 0.0119516 0.0119648 0.011978 0.0119913 0.0120045 0.0120177 0.0120309 0.0120442 0.0120574 0.0120706 0.0120838 0.0120971 0.0121103 0.0121235 0.0121368 0.01215 0.0121632 0.0121764 0.0121897 0.0122029 0.0122161 0.0122293 0.0122426 0.0122558 0.012269 0.0122822 0.0122955 0.0123087 0.0123219 0.0123352 0.0123484 0.0123616 0.0123748 0.0123881 0.0124013 0.0124145 0.0124277 0.012441 0.0124542 0.0124674 0.0124806 0.0124939 0.0125071 0.0125203 0.0125336 0.0125468 0.01256 0.0125732 0.0125865 0.0125997 0.0126129 0.0126261 0.0126394 0.0126526 0.0126658 0.012679 +-0.00310004 -0.0027772 -0.00212739 -0.0011178 0.000121766 0.00148482 0.00291087 0.00436276 0.00581149 0.00722594 0.00856058 0.00973262 0.0105891 0.0109945 0.011104 0.0111332 0.0111488 0.0111624 0.0111757 0.0111889 0.0112022 0.0112154 0.0112286 0.0112419 0.0112551 0.0112683 0.0112816 0.0112948 0.011308 0.0113213 0.0113345 0.0113477 0.011361 0.0113742 0.0113874 0.0114006 0.0114139 0.0114271 0.0114403 0.0114536 0.0114668 0.01148 0.0114933 0.0115065 0.0115197 0.011533 0.0115462 0.0115594 0.0115727 0.0115859 0.0115991 0.0116124 0.0116256 0.0116388 0.0116521 0.0116653 0.0116785 0.0116918 0.011705 0.0117182 0.0117315 0.0117447 0.0117579 0.0117711 0.0117844 0.0117976 0.0118108 0.0118241 0.0118373 0.0118505 0.0118638 0.011877 0.0118902 0.0119035 0.0119167 0.0119299 0.0119432 0.0119564 0.0119696 0.0119829 0.0119961 0.0120093 0.0120226 0.0120358 0.012049 0.0120623 0.0120755 0.0120887 0.012102 0.0121152 0.0121284 0.0121416 0.0121549 0.0121681 0.0121813 0.0121946 0.0122078 0.012221 0.0122343 0.0122475 0.0122607 0.012274 0.0122872 0.0123004 0.0123137 0.0123269 0.0123401 0.0123534 0.0123666 0.0123798 0.0123931 0.0124063 0.0124195 0.0124328 0.012446 0.0124592 0.0124725 0.0124857 0.0124989 0.0125121 0.0125254 0.0125386 0.0125518 0.0125651 0.0125783 0.0125915 0.0126048 0.012618 0.0126312 0.0126445 0.0126577 0.0126709 0.0126842 +-0.00310145 -0.00277827 -0.00212794 -0.00111796 0.000121854 0.00148508 0.00291126 0.00436328 0.00581217 0.00722683 0.0085618 0.00973445 0.010592 0.0109984 0.0111084 0.0111377 0.0111533 0.0111669 0.0111802 0.0111934 0.0112067 0.0112199 0.0112331 0.0112464 0.0112596 0.0112729 0.0112861 0.0112993 0.0113126 0.0113258 0.011339 0.0113523 0.0113655 0.0113788 0.011392 0.0114052 0.0114185 0.0114317 0.0114449 0.0114582 0.0114714 0.0114847 0.0114979 0.0115111 0.0115244 0.0115376 0.0115508 0.0115641 0.0115773 0.0115906 0.0116038 0.011617 0.0116303 0.0116435 0.0116568 0.01167 0.0116832 0.0116965 0.0117097 0.0117229 0.0117362 0.0117494 0.0117627 0.0117759 0.0117891 0.0118024 0.0118156 0.0118288 0.0118421 0.0118553 0.0118686 0.0118818 0.011895 0.0119083 0.0119215 0.0119347 0.011948 0.0119612 0.0119745 0.0119877 0.0120009 0.0120142 0.0120274 0.0120406 0.0120539 0.0120671 0.0120804 0.0120936 0.0121068 0.0121201 0.0121333 0.0121465 0.0121598 0.012173 0.0121863 0.0121995 0.0122127 0.012226 0.0122392 0.0122524 0.0122657 0.0122789 0.0122922 0.0123054 0.0123186 0.0123319 0.0123451 0.0123583 0.0123716 0.0123848 0.0123981 0.0124113 0.0124245 0.0124378 0.012451 0.0124642 0.0124775 0.0124907 0.012504 0.0125172 0.0125304 0.0125437 0.0125569 0.0125701 0.0125834 0.0125966 0.0126099 0.0126231 0.0126363 0.0126496 0.0126628 0.0126761 0.0126893 +-0.00310286 -0.00277933 -0.00212849 -0.00111811 0.000121942 0.00148533 0.00291165 0.0043638 0.00581284 0.00722772 0.00856303 0.00973629 0.0105949 0.0110024 0.0111127 0.0111421 0.0111578 0.0111714 0.0111847 0.0111979 0.0112112 0.0112244 0.0112377 0.0112509 0.0112641 0.0112774 0.0112906 0.0113039 0.0113171 0.0113304 0.0113436 0.0113568 0.0113701 0.0113833 0.0113966 0.0114098 0.0114231 0.0114363 0.0114495 0.0114628 0.011476 0.0114893 0.0115025 0.0115158 0.011529 0.0115422 0.0115555 0.0115687 0.011582 0.0115952 0.0116085 0.0116217 0.011635 0.0116482 0.0116614 0.0116747 0.0116879 0.0117012 0.0117144 0.0117277 0.0117409 0.0117541 0.0117674 0.0117806 0.0117939 0.0118071 0.0118204 0.0118336 0.0118468 0.0118601 0.0118733 0.0118866 0.0118998 0.0119131 0.0119263 0.0119395 0.0119528 0.011966 0.0119793 0.0119925 0.0120058 0.012019 0.0120322 0.0120455 0.0120587 0.012072 0.0120852 0.0120985 0.0121117 0.012125 0.0121382 0.0121514 0.0121647 0.0121779 0.0121912 0.0122044 0.0122177 0.0122309 0.0122441 0.0122574 0.0122706 0.0122839 0.0122971 0.0123104 0.0123236 0.0123368 0.0123501 0.0123633 0.0123766 0.0123898 0.0124031 0.0124163 0.0124295 0.0124428 0.012456 0.0124693 0.0124825 0.0124958 0.012509 0.0125222 0.0125355 0.0125487 0.012562 0.0125752 0.0125885 0.0126017 0.0126149 0.0126282 0.0126414 0.0126547 0.0126679 0.0126812 0.0126944 +-0.00310427 -0.0027804 -0.00212905 -0.00111827 0.00012203 0.00148558 0.00291203 0.00436432 0.00581352 0.00722861 0.00856426 0.00973812 0.0105978 0.0110064 0.0111171 0.0111466 0.0111623 0.0111759 0.0111892 0.0112024 0.0112157 0.0112289 0.0112422 0.0112554 0.0112687 0.0112819 0.0112952 0.0113084 0.0113217 0.0113349 0.0113482 0.0113614 0.0113747 0.0113879 0.0114012 0.0114144 0.0114276 0.0114409 0.0114541 0.0114674 0.0114806 0.0114939 0.0115071 0.0115204 0.0115336 0.0115469 0.0115601 0.0115734 0.0115866 0.0115999 0.0116131 0.0116264 0.0116396 0.0116529 0.0116661 0.0116794 0.0116926 0.0117059 0.0117191 0.0117324 0.0117456 0.0117589 0.0117721 0.0117854 0.0117986 0.0118119 0.0118251 0.0118384 0.0118516 0.0118649 0.0118781 0.0118914 0.0119046 0.0119179 0.0119311 0.0119443 0.0119576 0.0119708 0.0119841 0.0119973 0.0120106 0.0120238 0.0120371 0.0120503 0.0120636 0.0120768 0.0120901 0.0121033 0.0121166 0.0121298 0.0121431 0.0121563 0.0121696 0.0121828 0.0121961 0.0122093 0.0122226 0.0122358 0.0122491 0.0122623 0.0122756 0.0122888 0.0123021 0.0123153 0.0123286 0.0123418 0.0123551 0.0123683 0.0123816 0.0123948 0.0124081 0.0124213 0.0124346 0.0124478 0.0124611 0.0124743 0.0124875 0.0125008 0.012514 0.0125273 0.0125405 0.0125538 0.012567 0.0125803 0.0125935 0.0126068 0.01262 0.0126333 0.0126465 0.0126598 0.012673 0.0126863 0.0126995 +-0.00310568 -0.00278146 -0.0021296 -0.00111842 0.000122118 0.00148584 0.00291242 0.00436483 0.00581419 0.00722949 0.00856548 0.00973994 0.0106007 0.0110103 0.0111215 0.011151 0.0111667 0.0111803 0.0111936 0.0112069 0.0112202 0.0112334 0.0112467 0.0112599 0.0112732 0.0112864 0.0112997 0.0113129 0.0113262 0.0113395 0.0113527 0.011366 0.0113792 0.0113925 0.0114057 0.011419 0.0114322 0.0114455 0.0114587 0.011472 0.0114853 0.0114985 0.0115118 0.011525 0.0115383 0.0115515 0.0115648 0.011578 0.0115913 0.0116045 0.0116178 0.011631 0.0116443 0.0116576 0.0116708 0.0116841 0.0116973 0.0117106 0.0117238 0.0117371 0.0117503 0.0117636 0.0117768 0.0117901 0.0118034 0.0118166 0.0118299 0.0118431 0.0118564 0.0118696 0.0118829 0.0118961 0.0119094 0.0119226 0.0119359 0.0119492 0.0119624 0.0119757 0.0119889 0.0120022 0.0120154 0.0120287 0.0120419 0.0120552 0.0120684 0.0120817 0.0120949 0.0121082 0.0121215 0.0121347 0.012148 0.0121612 0.0121745 0.0121877 0.012201 0.0122142 0.0122275 0.0122407 0.012254 0.0122673 0.0122805 0.0122938 0.012307 0.0123203 0.0123335 0.0123468 0.01236 0.0123733 0.0123865 0.0123998 0.0124131 0.0124263 0.0124396 0.0124528 0.0124661 0.0124793 0.0124926 0.0125058 0.0125191 0.0125323 0.0125456 0.0125588 0.0125721 0.0125854 0.0125986 0.0126119 0.0126251 0.0126384 0.0126516 0.0126649 0.0126781 0.0126914 0.0127046 +-0.00310708 -0.00278252 -0.00213015 -0.00111858 0.000122206 0.00148609 0.00291281 0.00436535 0.00581486 0.00723038 0.0085667 0.00974177 0.0106035 0.0110143 0.0111259 0.0111555 0.0111712 0.0111848 0.0111981 0.0112114 0.0112247 0.0112379 0.0112512 0.0112644 0.0112777 0.011291 0.0113042 0.0113175 0.0113307 0.011344 0.0113573 0.0113705 0.0113838 0.011397 0.0114103 0.0114236 0.0114368 0.0114501 0.0114633 0.0114766 0.0114899 0.0115031 0.0115164 0.0115296 0.0115429 0.0115562 0.0115694 0.0115827 0.0115959 0.0116092 0.0116225 0.0116357 0.011649 0.0116622 0.0116755 0.0116888 0.011702 0.0117153 0.0117285 0.0117418 0.0117551 0.0117683 0.0117816 0.0117948 0.0118081 0.0118214 0.0118346 0.0118479 0.0118611 0.0118744 0.0118877 0.0119009 0.0119142 0.0119274 0.0119407 0.011954 0.0119672 0.0119805 0.0119937 0.012007 0.0120203 0.0120335 0.0120468 0.01206 0.0120733 0.0120866 0.0120998 0.0121131 0.0121263 0.0121396 0.0121528 0.0121661 0.0121794 0.0121926 0.0122059 0.0122191 0.0122324 0.0122457 0.0122589 0.0122722 0.0122854 0.0122987 0.012312 0.0123252 0.0123385 0.0123517 0.012365 0.0123783 0.0123915 0.0124048 0.012418 0.0124313 0.0124446 0.0124578 0.0124711 0.0124843 0.0124976 0.0125109 0.0125241 0.0125374 0.0125506 0.0125639 0.0125772 0.0125904 0.0126037 0.0126169 0.0126302 0.0126435 0.0126567 0.01267 0.0126832 0.0126965 0.0127098 +-0.00310849 -0.00278358 -0.0021307 -0.00111873 0.000122294 0.00148634 0.00291319 0.00436587 0.00581554 0.00723126 0.00856793 0.00974359 0.0106064 0.0110182 0.0111302 0.0111599 0.0111757 0.0111893 0.0112026 0.0112159 0.0112292 0.0112424 0.0112557 0.011269 0.0112822 0.0112955 0.0113088 0.011322 0.0113353 0.0113485 0.0113618 0.0113751 0.0113883 0.0114016 0.0114149 0.0114281 0.0114414 0.0114547 0.0114679 0.0114812 0.0114945 0.0115077 0.011521 0.0115343 0.0115475 0.0115608 0.0115741 0.0115873 0.0116006 0.0116139 0.0116271 0.0116404 0.0116536 0.0116669 0.0116802 0.0116934 0.0117067 0.01172 0.0117332 0.0117465 0.0117598 0.011773 0.0117863 0.0117996 0.0118128 0.0118261 0.0118394 0.0118526 0.0118659 0.0118792 0.0118924 0.0119057 0.011919 0.0119322 0.0119455 0.0119588 0.011972 0.0119853 0.0119985 0.0120118 0.0120251 0.0120383 0.0120516 0.0120649 0.0120781 0.0120914 0.0121047 0.0121179 0.0121312 0.0121445 0.0121577 0.012171 0.0121843 0.0121975 0.0122108 0.0122241 0.0122373 0.0122506 0.0122639 0.0122771 0.0122904 0.0123037 0.0123169 0.0123302 0.0123434 0.0123567 0.01237 0.0123832 0.0123965 0.0124098 0.012423 0.0124363 0.0124496 0.0124628 0.0124761 0.0124894 0.0125026 0.0125159 0.0125292 0.0125424 0.0125557 0.012569 0.0125822 0.0125955 0.0126088 0.012622 0.0126353 0.0126485 0.0126618 0.0126751 0.0126883 0.0127016 0.0127149 +-0.0031099 -0.00278464 -0.00213125 -0.00111889 0.000122382 0.00148659 0.00291358 0.00436639 0.00581621 0.00723215 0.00856915 0.00974541 0.0106093 0.0110222 0.0111346 0.0111644 0.0111801 0.0111938 0.0112071 0.0112204 0.0112337 0.0112469 0.0112602 0.0112735 0.0112867 0.0113 0.0113133 0.0113265 0.0113398 0.0113531 0.0113664 0.0113796 0.0113929 0.0114062 0.0114194 0.0114327 0.011446 0.0114593 0.0114725 0.0114858 0.0114991 0.0115123 0.0115256 0.0115389 0.0115522 0.0115654 0.0115787 0.011592 0.0116052 0.0116185 0.0116318 0.011645 0.0116583 0.0116716 0.0116849 0.0116981 0.0117114 0.0117247 0.0117379 0.0117512 0.0117645 0.0117778 0.011791 0.0118043 0.0118176 0.0118308 0.0118441 0.0118574 0.0118707 0.0118839 0.0118972 0.0119105 0.0119237 0.011937 0.0119503 0.0119635 0.0119768 0.0119901 0.0120034 0.0120166 0.0120299 0.0120432 0.0120564 0.0120697 0.012083 0.0120963 0.0121095 0.0121228 0.0121361 0.0121493 0.0121626 0.0121759 0.0121892 0.0122024 0.0122157 0.012229 0.0122422 0.0122555 0.0122688 0.0122821 0.0122953 0.0123086 0.0123219 0.0123351 0.0123484 0.0123617 0.0123749 0.0123882 0.0124015 0.0124148 0.012428 0.0124413 0.0124546 0.0124678 0.0124811 0.0124944 0.0125077 0.0125209 0.0125342 0.0125475 0.0125607 0.012574 0.0125873 0.0126006 0.0126138 0.0126271 0.0126404 0.0126536 0.0126669 0.0126802 0.0126934 0.0127067 0.01272 +-0.0031113 -0.0027857 -0.00213179 -0.00111904 0.00012247 0.00148685 0.00291396 0.0043669 0.00581688 0.00723303 0.00857037 0.00974723 0.0106121 0.0110261 0.011139 0.0111688 0.0111846 0.0111983 0.0112116 0.0112249 0.0112381 0.0112514 0.0112647 0.011278 0.0112913 0.0113045 0.0113178 0.0113311 0.0113444 0.0113576 0.0113709 0.0113842 0.0113975 0.0114107 0.011424 0.0114373 0.0114506 0.0114638 0.0114771 0.0114904 0.0115037 0.0115169 0.0115302 0.0115435 0.0115568 0.0115701 0.0115833 0.0115966 0.0116099 0.0116232 0.0116364 0.0116497 0.011663 0.0116763 0.0116895 0.0117028 0.0117161 0.0117294 0.0117426 0.0117559 0.0117692 0.0117825 0.0117958 0.011809 0.0118223 0.0118356 0.0118489 0.0118621 0.0118754 0.0118887 0.011902 0.0119152 0.0119285 0.0119418 0.0119551 0.0119683 0.0119816 0.0119949 0.0120082 0.0120215 0.0120347 0.012048 0.0120613 0.0120746 0.0120878 0.0121011 0.0121144 0.0121277 0.0121409 0.0121542 0.0121675 0.0121808 0.012194 0.0122073 0.0122206 0.0122339 0.0122472 0.0122604 0.0122737 0.012287 0.0123003 0.0123135 0.0123268 0.0123401 0.0123534 0.0123666 0.0123799 0.0123932 0.0124065 0.0124197 0.012433 0.0124463 0.0124596 0.0124728 0.0124861 0.0124994 0.0125127 0.012526 0.0125392 0.0125525 0.0125658 0.0125791 0.0125923 0.0126056 0.0126189 0.0126322 0.0126454 0.0126587 0.012672 0.0126853 0.0126985 0.0127118 0.0127251 +-0.00311271 -0.00278676 -0.00213234 -0.0011192 0.000122558 0.0014871 0.00291435 0.00436742 0.00581755 0.00723391 0.00857158 0.00974904 0.010615 0.0110301 0.0111433 0.0111733 0.0111891 0.0112027 0.0112161 0.0112294 0.0112426 0.0112559 0.0112692 0.0112825 0.0112958 0.011309 0.0113223 0.0113356 0.0113489 0.0113622 0.0113755 0.0113887 0.011402 0.0114153 0.0114286 0.0114419 0.0114551 0.0114684 0.0114817 0.011495 0.0115083 0.0115216 0.0115348 0.0115481 0.0115614 0.0115747 0.011588 0.0116012 0.0116145 0.0116278 0.0116411 0.0116544 0.0116677 0.0116809 0.0116942 0.0117075 0.0117208 0.0117341 0.0117473 0.0117606 0.0117739 0.0117872 0.0118005 0.0118138 0.011827 0.0118403 0.0118536 0.0118669 0.0118802 0.0118935 0.0119067 0.01192 0.0119333 0.0119466 0.0119599 0.0119731 0.0119864 0.0119997 0.012013 0.0120263 0.0120396 0.0120528 0.0120661 0.0120794 0.0120927 0.012106 0.0121192 0.0121325 0.0121458 0.0121591 0.0121724 0.0121857 0.0121989 0.0122122 0.0122255 0.0122388 0.0122521 0.0122653 0.0122786 0.0122919 0.0123052 0.0123185 0.0123318 0.012345 0.0123583 0.0123716 0.0123849 0.0123982 0.0124114 0.0124247 0.012438 0.0124513 0.0124646 0.0124779 0.0124911 0.0125044 0.0125177 0.012531 0.0125443 0.0125575 0.0125708 0.0125841 0.0125974 0.0126107 0.012624 0.0126372 0.0126505 0.0126638 0.0126771 0.0126904 0.0127036 0.0127169 0.0127302 +-0.00311411 -0.00278782 -0.00213289 -0.00111935 0.000122646 0.00148735 0.00291473 0.00436793 0.00581822 0.00723479 0.0085728 0.00975085 0.0106178 0.011034 0.0111477 0.0111777 0.0111935 0.0112072 0.0112205 0.0112338 0.0112471 0.0112604 0.0112737 0.011287 0.0113003 0.0113136 0.0113269 0.0113401 0.0113534 0.0113667 0.01138 0.0113933 0.0114066 0.0114199 0.0114332 0.0114464 0.0114597 0.011473 0.0114863 0.0114996 0.0115129 0.0115262 0.0115395 0.0115527 0.011566 0.0115793 0.0115926 0.0116059 0.0116192 0.0116325 0.0116458 0.011659 0.0116723 0.0116856 0.0116989 0.0117122 0.0117255 0.0117388 0.011752 0.0117653 0.0117786 0.0117919 0.0118052 0.0118185 0.0118318 0.0118451 0.0118583 0.0118716 0.0118849 0.0118982 0.0119115 0.0119248 0.0119381 0.0119514 0.0119646 0.0119779 0.0119912 0.0120045 0.0120178 0.0120311 0.0120444 0.0120577 0.0120709 0.0120842 0.0120975 0.0121108 0.0121241 0.0121374 0.0121507 0.012164 0.0121772 0.0121905 0.0122038 0.0122171 0.0122304 0.0122437 0.012257 0.0122703 0.0122835 0.0122968 0.0123101 0.0123234 0.0123367 0.01235 0.0123633 0.0123766 0.0123898 0.0124031 0.0124164 0.0124297 0.012443 0.0124563 0.0124696 0.0124829 0.0124961 0.0125094 0.0125227 0.012536 0.0125493 0.0125626 0.0125759 0.0125892 0.0126024 0.0126157 0.012629 0.0126423 0.0126556 0.0126689 0.0126822 0.0126955 0.0127087 0.012722 0.0127353 +-0.00311552 -0.00278888 -0.00213344 -0.00111951 0.000122735 0.0014876 0.00291512 0.00436845 0.00581889 0.00723567 0.00857401 0.00975266 0.0106207 0.011038 0.0111521 0.0111822 0.011198 0.0112117 0.011225 0.0112383 0.0112516 0.0112649 0.0112782 0.0112915 0.0113048 0.0113181 0.0113314 0.0113447 0.011358 0.0113713 0.0113845 0.0113978 0.0114111 0.0114244 0.0114377 0.011451 0.0114643 0.0114776 0.0114909 0.0115042 0.0115175 0.0115308 0.0115441 0.0115574 0.0115706 0.0115839 0.0115972 0.0116105 0.0116238 0.0116371 0.0116504 0.0116637 0.011677 0.0116903 0.0117036 0.0117169 0.0117302 0.0117435 0.0117567 0.01177 0.0117833 0.0117966 0.0118099 0.0118232 0.0118365 0.0118498 0.0118631 0.0118764 0.0118897 0.011903 0.0119163 0.0119296 0.0119429 0.0119561 0.0119694 0.0119827 0.011996 0.0120093 0.0120226 0.0120359 0.0120492 0.0120625 0.0120758 0.0120891 0.0121024 0.0121157 0.012129 0.0121422 0.0121555 0.0121688 0.0121821 0.0121954 0.0122087 0.012222 0.0122353 0.0122486 0.0122619 0.0122752 0.0122885 0.0123018 0.0123151 0.0123283 0.0123416 0.0123549 0.0123682 0.0123815 0.0123948 0.0124081 0.0124214 0.0124347 0.012448 0.0124613 0.0124746 0.0124879 0.0125012 0.0125144 0.0125277 0.012541 0.0125543 0.0125676 0.0125809 0.0125942 0.0126075 0.0126208 0.0126341 0.0126474 0.0126607 0.012674 0.0126873 0.0127005 0.0127138 0.0127271 0.0127404 +-0.00311692 -0.00278994 -0.00213398 -0.00111966 0.000122823 0.00148785 0.0029155 0.00436897 0.00581956 0.00723655 0.00857523 0.00975447 0.0106235 0.0110419 0.0111564 0.0111866 0.0112025 0.0112161 0.0112295 0.0112428 0.0112561 0.0112694 0.0112827 0.011296 0.0113093 0.0113226 0.0113359 0.0113492 0.0113625 0.0113758 0.0113891 0.0114024 0.0114157 0.011429 0.0114423 0.0114556 0.0114689 0.0114822 0.0114955 0.0115088 0.0115221 0.0115354 0.0115487 0.011562 0.0115753 0.0115886 0.0116019 0.0116152 0.0116285 0.0116418 0.0116551 0.0116684 0.0116817 0.011695 0.0117083 0.0117216 0.0117348 0.0117481 0.0117614 0.0117747 0.011788 0.0118013 0.0118146 0.0118279 0.0118412 0.0118545 0.0118678 0.0118811 0.0118944 0.0119077 0.011921 0.0119343 0.0119476 0.0119609 0.0119742 0.0119875 0.0120008 0.0120141 0.0120274 0.0120407 0.012054 0.0120673 0.0120806 0.0120939 0.0121072 0.0121205 0.0121338 0.0121471 0.0121604 0.0121737 0.012187 0.0122003 0.0122136 0.0122269 0.0122402 0.0122535 0.0122668 0.0122801 0.0122934 0.0123067 0.01232 0.0123333 0.0123466 0.0123599 0.0123732 0.0123865 0.0123998 0.0124131 0.0124264 0.0124397 0.012453 0.0124663 0.0124796 0.0124929 0.0125062 0.0125195 0.0125328 0.0125461 0.0125594 0.0125727 0.012586 0.0125993 0.0126125 0.0126258 0.0126391 0.0126524 0.0126657 0.012679 0.0126923 0.0127056 0.0127189 0.0127322 0.0127455 +-0.00311833 -0.00279099 -0.00213453 -0.00111981 0.000122911 0.0014881 0.00291589 0.00436948 0.00582022 0.00723743 0.00857644 0.00975628 0.0106264 0.0110458 0.0111608 0.0111911 0.0112069 0.0112206 0.011234 0.0112473 0.0112606 0.0112739 0.0112872 0.0113005 0.0113138 0.0113271 0.0113404 0.0113537 0.011367 0.0113803 0.0113936 0.0114069 0.0114202 0.0114335 0.0114468 0.0114602 0.0114735 0.0114868 0.0115001 0.0115134 0.0115267 0.01154 0.0115533 0.0115666 0.0115799 0.0115932 0.0116065 0.0116198 0.0116331 0.0116464 0.0116597 0.011673 0.0116863 0.0116996 0.0117129 0.0117262 0.0117395 0.0117528 0.0117661 0.0117794 0.0117928 0.0118061 0.0118194 0.0118327 0.011846 0.0118593 0.0118726 0.0118859 0.0118992 0.0119125 0.0119258 0.0119391 0.0119524 0.0119657 0.011979 0.0119923 0.0120056 0.0120189 0.0120322 0.0120455 0.0120588 0.0120721 0.0120854 0.0120987 0.012112 0.0121254 0.0121387 0.012152 0.0121653 0.0121786 0.0121919 0.0122052 0.0122185 0.0122318 0.0122451 0.0122584 0.0122717 0.012285 0.0122983 0.0123116 0.0123249 0.0123382 0.0123515 0.0123648 0.0123781 0.0123914 0.0124047 0.012418 0.0124313 0.0124446 0.012458 0.0124713 0.0124846 0.0124979 0.0125112 0.0125245 0.0125378 0.0125511 0.0125644 0.0125777 0.012591 0.0126043 0.0126176 0.0126309 0.0126442 0.0126575 0.0126708 0.0126841 0.0126974 0.0127107 0.012724 0.0127373 0.0127506 +-0.00311973 -0.00279205 -0.00213507 -0.00111997 0.000122999 0.00148836 0.00291627 0.00436999 0.00582089 0.00723831 0.00857765 0.00975808 0.0106292 0.0110498 0.0111651 0.0111955 0.0112114 0.0112251 0.0112384 0.0112518 0.0112651 0.0112784 0.0112917 0.011305 0.0113183 0.0113316 0.0113449 0.0113582 0.0113716 0.0113849 0.0113982 0.0114115 0.0114248 0.0114381 0.0114514 0.0114647 0.011478 0.0114913 0.0115046 0.011518 0.0115313 0.0115446 0.0115579 0.0115712 0.0115845 0.0115978 0.0116111 0.0116244 0.0116377 0.0116511 0.0116644 0.0116777 0.011691 0.0117043 0.0117176 0.0117309 0.0117442 0.0117575 0.0117708 0.0117841 0.0117975 0.0118108 0.0118241 0.0118374 0.0118507 0.011864 0.0118773 0.0118906 0.0119039 0.0119172 0.0119306 0.0119439 0.0119572 0.0119705 0.0119838 0.0119971 0.0120104 0.0120237 0.012037 0.0120503 0.0120636 0.012077 0.0120903 0.0121036 0.0121169 0.0121302 0.0121435 0.0121568 0.0121701 0.0121834 0.0121967 0.0122101 0.0122234 0.0122367 0.01225 0.0122633 0.0122766 0.0122899 0.0123032 0.0123165 0.0123298 0.0123431 0.0123565 0.0123698 0.0123831 0.0123964 0.0124097 0.012423 0.0124363 0.0124496 0.0124629 0.0124762 0.0124896 0.0125029 0.0125162 0.0125295 0.0125428 0.0125561 0.0125694 0.0125827 0.012596 0.0126093 0.0126226 0.012636 0.0126493 0.0126626 0.0126759 0.0126892 0.0127025 0.0127158 0.0127291 0.0127424 0.0127557 +-0.00312113 -0.0027931 -0.00213562 -0.00112012 0.000123087 0.00148861 0.00291665 0.00437051 0.00582156 0.00723919 0.00857886 0.00975988 0.0106321 0.0110537 0.0111695 0.0112 0.0112159 0.0112295 0.0112429 0.0112562 0.0112696 0.0112829 0.0112962 0.0113095 0.0113228 0.0113361 0.0113495 0.0113628 0.0113761 0.0113894 0.0114027 0.011416 0.0114293 0.0114427 0.011456 0.0114693 0.0114826 0.0114959 0.0115092 0.0115225 0.0115359 0.0115492 0.0115625 0.0115758 0.0115891 0.0116024 0.0116158 0.0116291 0.0116424 0.0116557 0.011669 0.0116823 0.0116956 0.011709 0.0117223 0.0117356 0.0117489 0.0117622 0.0117755 0.0117888 0.0118022 0.0118155 0.0118288 0.0118421 0.0118554 0.0118687 0.0118821 0.0118954 0.0119087 0.011922 0.0119353 0.0119486 0.0119619 0.0119753 0.0119886 0.0120019 0.0120152 0.0120285 0.0120418 0.0120551 0.0120685 0.0120818 0.0120951 0.0121084 0.0121217 0.012135 0.0121484 0.0121617 0.012175 0.0121883 0.0122016 0.0122149 0.0122282 0.0122416 0.0122549 0.0122682 0.0122815 0.0122948 0.0123081 0.0123214 0.0123348 0.0123481 0.0123614 0.0123747 0.012388 0.0124013 0.0124147 0.012428 0.0124413 0.0124546 0.0124679 0.0124812 0.0124945 0.0125079 0.0125212 0.0125345 0.0125478 0.0125611 0.0125744 0.0125877 0.0126011 0.0126144 0.0126277 0.012641 0.0126543 0.0126676 0.012681 0.0126943 0.0127076 0.0127209 0.0127342 0.0127475 0.0127608 +-0.00312254 -0.00279416 -0.00213616 -0.00112027 0.000123175 0.00148886 0.00291704 0.00437102 0.00582223 0.00724006 0.00858007 0.00976168 0.0106349 0.0110576 0.0111738 0.0112044 0.0112203 0.011234 0.0112474 0.0112607 0.011274 0.0112874 0.0113007 0.011314 0.0113273 0.0113406 0.011354 0.0113673 0.0113806 0.0113939 0.0114072 0.0114206 0.0114339 0.0114472 0.0114605 0.0114739 0.0114872 0.0115005 0.0115138 0.0115271 0.0115405 0.0115538 0.0115671 0.0115804 0.0115937 0.0116071 0.0116204 0.0116337 0.011647 0.0116603 0.0116737 0.011687 0.0117003 0.0117136 0.0117269 0.0117403 0.0117536 0.0117669 0.0117802 0.0117935 0.0118069 0.0118202 0.0118335 0.0118468 0.0118601 0.0118735 0.0118868 0.0119001 0.0119134 0.0119267 0.0119401 0.0119534 0.0119667 0.01198 0.0119934 0.0120067 0.01202 0.0120333 0.0120466 0.01206 0.0120733 0.0120866 0.0120999 0.0121132 0.0121266 0.0121399 0.0121532 0.0121665 0.0121798 0.0121932 0.0122065 0.0122198 0.0122331 0.0122464 0.0122598 0.0122731 0.0122864 0.0122997 0.012313 0.0123264 0.0123397 0.012353 0.0123663 0.0123796 0.012393 0.0124063 0.0124196 0.0124329 0.0124463 0.0124596 0.0124729 0.0124862 0.0124995 0.0125129 0.0125262 0.0125395 0.0125528 0.0125661 0.0125795 0.0125928 0.0126061 0.0126194 0.0126327 0.0126461 0.0126594 0.0126727 0.012686 0.0126993 0.0127127 0.012726 0.0127393 0.0127526 0.0127659 +-0.00312394 -0.00279521 -0.00213671 -0.00112043 0.000123263 0.00148911 0.00291742 0.00437154 0.00582289 0.00724094 0.00858127 0.00976347 0.0106377 0.0110615 0.0111782 0.0112088 0.0112248 0.0112385 0.0112519 0.0112652 0.0112785 0.0112919 0.0113052 0.0113185 0.0113318 0.0113452 0.0113585 0.0113718 0.0113851 0.0113985 0.0114118 0.0114251 0.0114384 0.0114518 0.0114651 0.0114784 0.0114917 0.0115051 0.0115184 0.0115317 0.011545 0.0115584 0.0115717 0.011585 0.0115983 0.0116117 0.011625 0.0116383 0.0116517 0.011665 0.0116783 0.0116916 0.011705 0.0117183 0.0117316 0.0117449 0.0117583 0.0117716 0.0117849 0.0117982 0.0118116 0.0118249 0.0118382 0.0118515 0.0118649 0.0118782 0.0118915 0.0119048 0.0119182 0.0119315 0.0119448 0.0119582 0.0119715 0.0119848 0.0119981 0.0120115 0.0120248 0.0120381 0.0120514 0.0120648 0.0120781 0.0120914 0.0121047 0.0121181 0.0121314 0.0121447 0.012158 0.0121714 0.0121847 0.012198 0.0122113 0.0122247 0.012238 0.0122513 0.0122647 0.012278 0.0122913 0.0123046 0.012318 0.0123313 0.0123446 0.0123579 0.0123713 0.0123846 0.0123979 0.0124112 0.0124246 0.0124379 0.0124512 0.0124645 0.0124779 0.0124912 0.0125045 0.0125178 0.0125312 0.0125445 0.0125578 0.0125712 0.0125845 0.0125978 0.0126111 0.0126245 0.0126378 0.0126511 0.0126644 0.0126778 0.0126911 0.0127044 0.0127177 0.0127311 0.0127444 0.0127577 0.012771 +-0.00312534 -0.00279627 -0.00213725 -0.00112058 0.000123351 0.00148936 0.0029178 0.00437205 0.00582356 0.00724181 0.00858248 0.00976527 0.0106405 0.0110655 0.0111826 0.0112133 0.0112292 0.0112429 0.0112563 0.0112697 0.011283 0.0112963 0.0113097 0.011323 0.0113363 0.0113497 0.011363 0.0113763 0.0113897 0.011403 0.0114163 0.0114297 0.011443 0.0114563 0.0114696 0.011483 0.0114963 0.0115096 0.011523 0.0115363 0.0115496 0.011563 0.0115763 0.0115896 0.011603 0.0116163 0.0116296 0.011643 0.0116563 0.0116696 0.011683 0.0116963 0.0117096 0.0117229 0.0117363 0.0117496 0.0117629 0.0117763 0.0117896 0.0118029 0.0118163 0.0118296 0.0118429 0.0118563 0.0118696 0.0118829 0.0118963 0.0119096 0.0119229 0.0119363 0.0119496 0.0119629 0.0119762 0.0119896 0.0120029 0.0120162 0.0120296 0.0120429 0.0120562 0.0120696 0.0120829 0.0120962 0.0121096 0.0121229 0.0121362 0.0121496 0.0121629 0.0121762 0.0121896 0.0122029 0.0122162 0.0122295 0.0122429 0.0122562 0.0122695 0.0122829 0.0122962 0.0123095 0.0123229 0.0123362 0.0123495 0.0123629 0.0123762 0.0123895 0.0124029 0.0124162 0.0124295 0.0124429 0.0124562 0.0124695 0.0124828 0.0124962 0.0125095 0.0125228 0.0125362 0.0125495 0.0125628 0.0125762 0.0125895 0.0126028 0.0126162 0.0126295 0.0126428 0.0126562 0.0126695 0.0126828 0.0126962 0.0127095 0.0127228 0.0127361 0.0127495 0.0127628 0.0127761 +-0.00312674 -0.00279732 -0.00213779 -0.00112073 0.000123439 0.00148961 0.00291819 0.00437256 0.00582422 0.00724269 0.00858368 0.00976706 0.0106434 0.0110694 0.0111869 0.0112177 0.0112337 0.0112474 0.0112608 0.0112741 0.0112875 0.0113008 0.0113142 0.0113275 0.0113408 0.0113542 0.0113675 0.0113808 0.0113942 0.0114075 0.0114209 0.0114342 0.0114475 0.0114609 0.0114742 0.0114875 0.0115009 0.0115142 0.0115276 0.0115409 0.0115542 0.0115676 0.0115809 0.0115942 0.0116076 0.0116209 0.0116342 0.0116476 0.0116609 0.0116743 0.0116876 0.0117009 0.0117143 0.0117276 0.0117409 0.0117543 0.0117676 0.011781 0.0117943 0.0118076 0.011821 0.0118343 0.0118476 0.011861 0.0118743 0.0118877 0.011901 0.0119143 0.0119277 0.011941 0.0119543 0.0119677 0.011981 0.0119943 0.0120077 0.012021 0.0120344 0.0120477 0.012061 0.0120744 0.0120877 0.012101 0.0121144 0.0121277 0.0121411 0.0121544 0.0121677 0.0121811 0.0121944 0.0122077 0.0122211 0.0122344 0.0122478 0.0122611 0.0122744 0.0122878 0.0123011 0.0123144 0.0123278 0.0123411 0.0123545 0.0123678 0.0123811 0.0123945 0.0124078 0.0124211 0.0124345 0.0124478 0.0124611 0.0124745 0.0124878 0.0125012 0.0125145 0.0125278 0.0125412 0.0125545 0.0125678 0.0125812 0.0125945 0.0126079 0.0126212 0.0126345 0.0126479 0.0126612 0.0126745 0.0126879 0.0127012 0.0127146 0.0127279 0.0127412 0.0127546 0.0127679 0.0127812 +-0.00312814 -0.00279837 -0.00213833 -0.00112088 0.000123527 0.00148986 0.00291857 0.00437307 0.00582489 0.00724356 0.00858489 0.00976884 0.0106462 0.0110733 0.0111912 0.0112222 0.0112381 0.0112519 0.0112653 0.0112786 0.011292 0.0113053 0.0113186 0.011332 0.0113453 0.0113587 0.011372 0.0113854 0.0113987 0.011412 0.0114254 0.0114387 0.0114521 0.0114654 0.0114788 0.0114921 0.0115054 0.0115188 0.0115321 0.0115455 0.0115588 0.0115722 0.0115855 0.0115988 0.0116122 0.0116255 0.0116389 0.0116522 0.0116656 0.0116789 0.0116922 0.0117056 0.0117189 0.0117323 0.0117456 0.011759 0.0117723 0.0117856 0.011799 0.0118123 0.0118257 0.011839 0.0118524 0.0118657 0.011879 0.0118924 0.0119057 0.0119191 0.0119324 0.0119457 0.0119591 0.0119724 0.0119858 0.0119991 0.0120125 0.0120258 0.0120391 0.0120525 0.0120658 0.0120792 0.0120925 0.0121059 0.0121192 0.0121325 0.0121459 0.0121592 0.0121726 0.0121859 0.0121993 0.0122126 0.0122259 0.0122393 0.0122526 0.012266 0.0122793 0.0122927 0.012306 0.0123193 0.0123327 0.012346 0.0123594 0.0123727 0.0123861 0.0123994 0.0124127 0.0124261 0.0124394 0.0124528 0.0124661 0.0124795 0.0124928 0.0125061 0.0125195 0.0125328 0.0125462 0.0125595 0.0125729 0.0125862 0.0125995 0.0126129 0.0126262 0.0126396 0.0126529 0.0126663 0.0126796 0.0126929 0.0127063 0.0127196 0.012733 0.0127463 0.0127596 0.012773 0.0127863 +-0.00312954 -0.00279942 -0.00213887 -0.00112103 0.000123616 0.00149011 0.00291895 0.00437359 0.00582555 0.00724443 0.00858609 0.00977063 0.010649 0.0110772 0.0111956 0.0112266 0.0112426 0.0112563 0.0112697 0.0112831 0.0112964 0.0113098 0.0113231 0.0113365 0.0113498 0.0113632 0.0113765 0.0113899 0.0114032 0.0114166 0.0114299 0.0114433 0.0114566 0.01147 0.0114833 0.0114967 0.01151 0.0115234 0.0115367 0.0115501 0.0115634 0.0115767 0.0115901 0.0116034 0.0116168 0.0116301 0.0116435 0.0116568 0.0116702 0.0116835 0.0116969 0.0117102 0.0117236 0.0117369 0.0117503 0.0117636 0.011777 0.0117903 0.0118037 0.011817 0.0118304 0.0118437 0.0118571 0.0118704 0.0118838 0.0118971 0.0119105 0.0119238 0.0119371 0.0119505 0.0119638 0.0119772 0.0119905 0.0120039 0.0120172 0.0120306 0.0120439 0.0120573 0.0120706 0.012084 0.0120973 0.0121107 0.012124 0.0121374 0.0121507 0.0121641 0.0121774 0.0121908 0.0122041 0.0122175 0.0122308 0.0122442 0.0122575 0.0122709 0.0122842 0.0122975 0.0123109 0.0123242 0.0123376 0.0123509 0.0123643 0.0123776 0.012391 0.0124043 0.0124177 0.012431 0.0124444 0.0124577 0.0124711 0.0124844 0.0124978 0.0125111 0.0125245 0.0125378 0.0125512 0.0125645 0.0125779 0.0125912 0.0126046 0.0126179 0.0126312 0.0126446 0.0126579 0.0126713 0.0126846 0.012698 0.0127113 0.0127247 0.012738 0.0127514 0.0127647 0.0127781 0.0127914 +-0.00313094 -0.00280047 -0.00213942 -0.00112119 0.000123704 0.00149036 0.00291933 0.0043741 0.00582621 0.00724531 0.00858729 0.00977241 0.0106518 0.0110811 0.0111999 0.011231 0.011247 0.0112608 0.0112742 0.0112876 0.0113009 0.0113143 0.0113276 0.011341 0.0113543 0.0113677 0.011381 0.0113944 0.0114077 0.0114211 0.0114344 0.0114478 0.0114612 0.0114745 0.0114879 0.0115012 0.0115146 0.0115279 0.0115413 0.0115546 0.011568 0.0115813 0.0115947 0.011608 0.0116214 0.0116348 0.0116481 0.0116615 0.0116748 0.0116882 0.0117015 0.0117149 0.0117282 0.0117416 0.0117549 0.0117683 0.0117816 0.011795 0.0118084 0.0118217 0.0118351 0.0118484 0.0118618 0.0118751 0.0118885 0.0119018 0.0119152 0.0119285 0.0119419 0.0119552 0.0119686 0.0119819 0.0119953 0.0120087 0.012022 0.0120354 0.0120487 0.0120621 0.0120754 0.0120888 0.0121021 0.0121155 0.0121288 0.0121422 0.0121555 0.0121689 0.0121823 0.0121956 0.012209 0.0122223 0.0122357 0.012249 0.0122624 0.0122757 0.0122891 0.0123024 0.0123158 0.0123291 0.0123425 0.0123558 0.0123692 0.0123826 0.0123959 0.0124093 0.0124226 0.012436 0.0124493 0.0124627 0.012476 0.0124894 0.0125027 0.0125161 0.0125294 0.0125428 0.0125562 0.0125695 0.0125829 0.0125962 0.0126096 0.0126229 0.0126363 0.0126496 0.012663 0.0126763 0.0126897 0.012703 0.0127164 0.0127298 0.0127431 0.0127565 0.0127698 0.0127832 0.0127965 +-0.00313234 -0.00280152 -0.00213996 -0.00112134 0.000123792 0.00149061 0.00291971 0.00437461 0.00582688 0.00724618 0.00858848 0.00977419 0.0106546 0.011085 0.0112043 0.0112355 0.0112515 0.0112652 0.0112787 0.011292 0.0113054 0.0113187 0.0113321 0.0113455 0.0113588 0.0113722 0.0113855 0.0113989 0.0114123 0.0114256 0.011439 0.0114523 0.0114657 0.0114791 0.0114924 0.0115058 0.0115191 0.0115325 0.0115459 0.0115592 0.0115726 0.0115859 0.0115993 0.0116126 0.011626 0.0116394 0.0116527 0.0116661 0.0116794 0.0116928 0.0117062 0.0117195 0.0117329 0.0117462 0.0117596 0.011773 0.0117863 0.0117997 0.011813 0.0118264 0.0118398 0.0118531 0.0118665 0.0118798 0.0118932 0.0119065 0.0119199 0.0119333 0.0119466 0.01196 0.0119733 0.0119867 0.0120001 0.0120134 0.0120268 0.0120401 0.0120535 0.0120669 0.0120802 0.0120936 0.0121069 0.0121203 0.0121337 0.012147 0.0121604 0.0121737 0.0121871 0.0122004 0.0122138 0.0122272 0.0122405 0.0122539 0.0122672 0.0122806 0.012294 0.0123073 0.0123207 0.012334 0.0123474 0.0123608 0.0123741 0.0123875 0.0124008 0.0124142 0.0124276 0.0124409 0.0124543 0.0124676 0.012481 0.0124944 0.0125077 0.0125211 0.0125344 0.0125478 0.0125611 0.0125745 0.0125879 0.0126012 0.0126146 0.0126279 0.0126413 0.0126547 0.012668 0.0126814 0.0126947 0.0127081 0.0127215 0.0127348 0.0127482 0.0127615 0.0127749 0.0127883 0.0128016 +-0.00313374 -0.00280257 -0.0021405 -0.00112149 0.00012388 0.00149086 0.0029201 0.00437512 0.00582754 0.00724705 0.00858968 0.00977597 0.0106574 0.0110889 0.0112086 0.0112399 0.0112559 0.0112697 0.0112831 0.0112965 0.0113099 0.0113232 0.0113366 0.01135 0.0113633 0.0113767 0.01139 0.0114034 0.0114168 0.0114301 0.0114435 0.0114569 0.0114702 0.0114836 0.011497 0.0115103 0.0115237 0.0115371 0.0115504 0.0115638 0.0115772 0.0115905 0.0116039 0.0116172 0.0116306 0.011644 0.0116573 0.0116707 0.0116841 0.0116974 0.0117108 0.0117242 0.0117375 0.0117509 0.0117643 0.0117776 0.011791 0.0118044 0.0118177 0.0118311 0.0118444 0.0118578 0.0118712 0.0118845 0.0118979 0.0119113 0.0119246 0.011938 0.0119514 0.0119647 0.0119781 0.0119915 0.0120048 0.0120182 0.0120316 0.0120449 0.0120583 0.0120716 0.012085 0.0120984 0.0121117 0.0121251 0.0121385 0.0121518 0.0121652 0.0121786 0.0121919 0.0122053 0.0122187 0.012232 0.0122454 0.0122587 0.0122721 0.0122855 0.0122988 0.0123122 0.0123256 0.0123389 0.0123523 0.0123657 0.012379 0.0123924 0.0124058 0.0124191 0.0124325 0.0124459 0.0124592 0.0124726 0.0124859 0.0124993 0.0125127 0.012526 0.0125394 0.0125528 0.0125661 0.0125795 0.0125929 0.0126062 0.0126196 0.012633 0.0126463 0.0126597 0.0126731 0.0126864 0.0126998 0.0127131 0.0127265 0.0127399 0.0127532 0.0127666 0.01278 0.0127933 0.0128067 +-0.00313513 -0.00280362 -0.00214103 -0.00112164 0.000123968 0.00149111 0.00292048 0.00437563 0.0058282 0.00724792 0.00859088 0.00977775 0.0106602 0.0110928 0.011213 0.0112443 0.0112604 0.0112742 0.0112876 0.011301 0.0113143 0.0113277 0.0113411 0.0113544 0.0113678 0.0113812 0.0113946 0.0114079 0.0114213 0.0114347 0.011448 0.0114614 0.0114748 0.0114881 0.0115015 0.0115149 0.0115283 0.0115416 0.011555 0.0115684 0.0115817 0.0115951 0.0116085 0.0116218 0.0116352 0.0116486 0.011662 0.0116753 0.0116887 0.0117021 0.0117154 0.0117288 0.0117422 0.0117555 0.0117689 0.0117823 0.0117957 0.011809 0.0118224 0.0118358 0.0118491 0.0118625 0.0118759 0.0118892 0.0119026 0.011916 0.0119294 0.0119427 0.0119561 0.0119695 0.0119828 0.0119962 0.0120096 0.0120229 0.0120363 0.0120497 0.0120631 0.0120764 0.0120898 0.0121032 0.0121165 0.0121299 0.0121433 0.0121567 0.01217 0.0121834 0.0121968 0.0122101 0.0122235 0.0122369 0.0122502 0.0122636 0.012277 0.0122904 0.0123037 0.0123171 0.0123305 0.0123438 0.0123572 0.0123706 0.0123839 0.0123973 0.0124107 0.0124241 0.0124374 0.0124508 0.0124642 0.0124775 0.0124909 0.0125043 0.0125176 0.012531 0.0125444 0.0125578 0.0125711 0.0125845 0.0125979 0.0126112 0.0126246 0.012638 0.0126513 0.0126647 0.0126781 0.0126915 0.0127048 0.0127182 0.0127316 0.0127449 0.0127583 0.0127717 0.012785 0.0127984 0.0128118 +-0.00313653 -0.00280467 -0.00214157 -0.00112179 0.000124056 0.00149136 0.00292086 0.00437614 0.00582886 0.00724878 0.00859207 0.00977952 0.010663 0.0110967 0.0112173 0.0112487 0.0112648 0.0112786 0.011292 0.0113054 0.0113188 0.0113322 0.0113456 0.0113589 0.0113723 0.0113857 0.0113991 0.0114124 0.0114258 0.0114392 0.0114526 0.0114659 0.0114793 0.0114927 0.0115061 0.0115194 0.0115328 0.0115462 0.0115596 0.0115729 0.0115863 0.0115997 0.0116131 0.0116264 0.0116398 0.0116532 0.0116666 0.0116799 0.0116933 0.0117067 0.0117201 0.0117334 0.0117468 0.0117602 0.0117736 0.011787 0.0118003 0.0118137 0.0118271 0.0118405 0.0118538 0.0118672 0.0118806 0.011894 0.0119073 0.0119207 0.0119341 0.0119475 0.0119608 0.0119742 0.0119876 0.012001 0.0120143 0.0120277 0.0120411 0.0120545 0.0120678 0.0120812 0.0120946 0.012108 0.0121213 0.0121347 0.0121481 0.0121615 0.0121748 0.0121882 0.0122016 0.012215 0.0122283 0.0122417 0.0122551 0.0122685 0.0122818 0.0122952 0.0123086 0.012322 0.0123354 0.0123487 0.0123621 0.0123755 0.0123889 0.0124022 0.0124156 0.012429 0.0124424 0.0124557 0.0124691 0.0124825 0.0124959 0.0125092 0.0125226 0.012536 0.0125494 0.0125627 0.0125761 0.0125895 0.0126029 0.0126162 0.0126296 0.012643 0.0126564 0.0126697 0.0126831 0.0126965 0.0127099 0.0127232 0.0127366 0.01275 0.0127634 0.0127767 0.0127901 0.0128035 0.0128169 +-0.00313793 -0.00280571 -0.00214211 -0.00112194 0.000124144 0.00149161 0.00292124 0.00437665 0.00582952 0.00724965 0.00859327 0.00978129 0.0106658 0.0111006 0.0112216 0.0112532 0.0112693 0.0112831 0.0112965 0.0113099 0.0113233 0.0113367 0.01135 0.0113634 0.0113768 0.0113902 0.0114036 0.0114169 0.0114303 0.0114437 0.0114571 0.0114705 0.0114838 0.0114972 0.0115106 0.011524 0.0115374 0.0115508 0.0115641 0.0115775 0.0115909 0.0116043 0.0116177 0.011631 0.0116444 0.0116578 0.0116712 0.0116846 0.0116979 0.0117113 0.0117247 0.0117381 0.0117515 0.0117648 0.0117782 0.0117916 0.011805 0.0118184 0.0118318 0.0118451 0.0118585 0.0118719 0.0118853 0.0118987 0.011912 0.0119254 0.0119388 0.0119522 0.0119656 0.0119789 0.0119923 0.0120057 0.0120191 0.0120325 0.0120459 0.0120592 0.0120726 0.012086 0.0120994 0.0121128 0.0121261 0.0121395 0.0121529 0.0121663 0.0121797 0.012193 0.0122064 0.0122198 0.0122332 0.0122466 0.01226 0.0122733 0.0122867 0.0123001 0.0123135 0.0123269 0.0123402 0.0123536 0.012367 0.0123804 0.0123938 0.0124071 0.0124205 0.0124339 0.0124473 0.0124607 0.0124741 0.0124874 0.0125008 0.0125142 0.0125276 0.012541 0.0125543 0.0125677 0.0125811 0.0125945 0.0126079 0.0126212 0.0126346 0.012648 0.0126614 0.0126748 0.0126881 0.0127015 0.0127149 0.0127283 0.0127417 0.0127551 0.0127684 0.0127818 0.0127952 0.0128086 0.012822 +-0.00313932 -0.00280676 -0.00214265 -0.00112209 0.000124233 0.00149186 0.00292162 0.00437716 0.00583018 0.00725052 0.00859446 0.00978306 0.0106686 0.0111045 0.011226 0.0112576 0.0112737 0.0112875 0.011301 0.0113144 0.0113277 0.0113411 0.0113545 0.0113679 0.0113813 0.0113947 0.0114081 0.0114214 0.0114348 0.0114482 0.0114616 0.011475 0.0114884 0.0115018 0.0115152 0.0115285 0.0115419 0.0115553 0.0115687 0.0115821 0.0115955 0.0116089 0.0116222 0.0116356 0.011649 0.0116624 0.0116758 0.0116892 0.0117026 0.011716 0.0117293 0.0117427 0.0117561 0.0117695 0.0117829 0.0117963 0.0118097 0.011823 0.0118364 0.0118498 0.0118632 0.0118766 0.01189 0.0119034 0.0119168 0.0119301 0.0119435 0.0119569 0.0119703 0.0119837 0.0119971 0.0120105 0.0120238 0.0120372 0.0120506 0.012064 0.0120774 0.0120908 0.0121042 0.0121176 0.0121309 0.0121443 0.0121577 0.0121711 0.0121845 0.0121979 0.0122113 0.0122246 0.012238 0.0122514 0.0122648 0.0122782 0.0122916 0.012305 0.0123184 0.0123317 0.0123451 0.0123585 0.0123719 0.0123853 0.0123987 0.0124121 0.0124254 0.0124388 0.0124522 0.0124656 0.012479 0.0124924 0.0125058 0.0125192 0.0125325 0.0125459 0.0125593 0.0125727 0.0125861 0.0125995 0.0126129 0.0126262 0.0126396 0.012653 0.0126664 0.0126798 0.0126932 0.0127066 0.01272 0.0127333 0.0127467 0.0127601 0.0127735 0.0127869 0.0128003 0.0128137 0.012827 +-0.00314072 -0.0028078 -0.00214319 -0.00112224 0.000124321 0.00149211 0.002922 0.00437767 0.00583084 0.00725138 0.00859565 0.00978483 0.0106713 0.0111084 0.0112303 0.011262 0.0112782 0.011292 0.0113054 0.0113188 0.0113322 0.0113456 0.011359 0.0113724 0.0113858 0.0113992 0.0114126 0.011426 0.0114393 0.0114527 0.0114661 0.0114795 0.0114929 0.0115063 0.0115197 0.0115331 0.0115465 0.0115599 0.0115733 0.0115867 0.0116 0.0116134 0.0116268 0.0116402 0.0116536 0.011667 0.0116804 0.0116938 0.0117072 0.0117206 0.011734 0.0117474 0.0117608 0.0117741 0.0117875 0.0118009 0.0118143 0.0118277 0.0118411 0.0118545 0.0118679 0.0118813 0.0118947 0.0119081 0.0119215 0.0119349 0.0119482 0.0119616 0.011975 0.0119884 0.0120018 0.0120152 0.0120286 0.012042 0.0120554 0.0120688 0.0120822 0.0120956 0.012109 0.0121223 0.0121357 0.0121491 0.0121625 0.0121759 0.0121893 0.0122027 0.0122161 0.0122295 0.0122429 0.0122563 0.0122697 0.012283 0.0122964 0.0123098 0.0123232 0.0123366 0.01235 0.0123634 0.0123768 0.0123902 0.0124036 0.012417 0.0124304 0.0124438 0.0124571 0.0124705 0.0124839 0.0124973 0.0125107 0.0125241 0.0125375 0.0125509 0.0125643 0.0125777 0.0125911 0.0126045 0.0126179 0.0126312 0.0126446 0.012658 0.0126714 0.0126848 0.0126982 0.0127116 0.012725 0.0127384 0.0127518 0.0127652 0.0127786 0.0127919 0.0128053 0.0128187 0.0128321 +-0.00314212 -0.00280885 -0.00214372 -0.00112239 0.000124409 0.00149236 0.00292238 0.00437818 0.0058315 0.00725225 0.00859684 0.00978659 0.0106741 0.0111123 0.0112346 0.0112664 0.0112826 0.0112964 0.0113099 0.0113233 0.0113367 0.0113501 0.0113635 0.0113769 0.0113903 0.0114037 0.0114171 0.0114305 0.0114439 0.0114573 0.0114706 0.011484 0.0114974 0.0115108 0.0115242 0.0115376 0.011551 0.0115644 0.0115778 0.0115912 0.0116046 0.011618 0.0116314 0.0116448 0.0116582 0.0116716 0.011685 0.0116984 0.0117118 0.0117252 0.0117386 0.011752 0.0117654 0.0117788 0.0117922 0.0118056 0.011819 0.0118324 0.0118458 0.0118592 0.0118726 0.011886 0.0118994 0.0119128 0.0119262 0.0119396 0.011953 0.0119664 0.0119798 0.0119932 0.0120066 0.01202 0.0120333 0.0120467 0.0120601 0.0120735 0.0120869 0.0121003 0.0121137 0.0121271 0.0121405 0.0121539 0.0121673 0.0121807 0.0121941 0.0122075 0.0122209 0.0122343 0.0122477 0.0122611 0.0122745 0.0122879 0.0123013 0.0123147 0.0123281 0.0123415 0.0123549 0.0123683 0.0123817 0.0123951 0.0124085 0.0124219 0.0124353 0.0124487 0.0124621 0.0124755 0.0124889 0.0125023 0.0125157 0.0125291 0.0125425 0.0125559 0.0125693 0.0125827 0.012596 0.0126094 0.0126228 0.0126362 0.0126496 0.012663 0.0126764 0.0126898 0.0127032 0.0127166 0.01273 0.0127434 0.0127568 0.0127702 0.0127836 0.012797 0.0128104 0.0128238 0.0128372 +-0.00314351 -0.00280989 -0.00214426 -0.00112254 0.000124497 0.00149261 0.00292276 0.00437868 0.00583216 0.00725311 0.00859803 0.00978836 0.0106769 0.0111161 0.011239 0.0112709 0.011287 0.0113009 0.0113143 0.0113277 0.0113411 0.0113545 0.0113679 0.0113813 0.0113947 0.0114082 0.0114216 0.011435 0.0114484 0.0114618 0.0114752 0.0114886 0.011502 0.0115154 0.0115288 0.0115422 0.0115556 0.011569 0.0115824 0.0115958 0.0116092 0.0116226 0.011636 0.0116494 0.0116628 0.0116762 0.0116896 0.011703 0.0117164 0.0117298 0.0117432 0.0117566 0.01177 0.0117834 0.0117968 0.0118102 0.0118236 0.0118371 0.0118505 0.0118639 0.0118773 0.0118907 0.0119041 0.0119175 0.0119309 0.0119443 0.0119577 0.0119711 0.0119845 0.0119979 0.0120113 0.0120247 0.0120381 0.0120515 0.0120649 0.0120783 0.0120917 0.0121051 0.0121185 0.0121319 0.0121453 0.0121587 0.0121721 0.0121855 0.0121989 0.0122123 0.0122257 0.0122391 0.0122525 0.012266 0.0122794 0.0122928 0.0123062 0.0123196 0.012333 0.0123464 0.0123598 0.0123732 0.0123866 0.0124 0.0124134 0.0124268 0.0124402 0.0124536 0.012467 0.0124804 0.0124938 0.0125072 0.0125206 0.012534 0.0125474 0.0125608 0.0125742 0.0125876 0.012601 0.0126144 0.0126278 0.0126412 0.0126546 0.012668 0.0126814 0.0126949 0.0127083 0.0127217 0.0127351 0.0127485 0.0127619 0.0127753 0.0127887 0.0128021 0.0128155 0.0128289 0.0128423 +-0.0031449 -0.00281094 -0.00214479 -0.00112269 0.000124585 0.00149286 0.00292314 0.00437919 0.00583282 0.00725398 0.00859921 0.00979012 0.0106797 0.01112 0.0112433 0.0112753 0.0112915 0.0113053 0.0113188 0.0113322 0.0113456 0.011359 0.0113724 0.0113858 0.0113992 0.0114126 0.0114261 0.0114395 0.0114529 0.0114663 0.0114797 0.0114931 0.0115065 0.0115199 0.0115333 0.0115467 0.0115601 0.0115735 0.011587 0.0116004 0.0116138 0.0116272 0.0116406 0.011654 0.0116674 0.0116808 0.0116942 0.0117076 0.011721 0.0117344 0.0117479 0.0117613 0.0117747 0.0117881 0.0118015 0.0118149 0.0118283 0.0118417 0.0118551 0.0118685 0.0118819 0.0118954 0.0119088 0.0119222 0.0119356 0.011949 0.0119624 0.0119758 0.0119892 0.0120026 0.012016 0.0120294 0.0120428 0.0120563 0.0120697 0.0120831 0.0120965 0.0121099 0.0121233 0.0121367 0.0121501 0.0121635 0.0121769 0.0121903 0.0122038 0.0122172 0.0122306 0.012244 0.0122574 0.0122708 0.0122842 0.0122976 0.012311 0.0123244 0.0123378 0.0123512 0.0123647 0.0123781 0.0123915 0.0124049 0.0124183 0.0124317 0.0124451 0.0124585 0.0124719 0.0124853 0.0124987 0.0125121 0.0125256 0.012539 0.0125524 0.0125658 0.0125792 0.0125926 0.012606 0.0126194 0.0126328 0.0126462 0.0126596 0.0126731 0.0126865 0.0126999 0.0127133 0.0127267 0.0127401 0.0127535 0.0127669 0.0127803 0.0127937 0.0128071 0.0128205 0.012834 0.0128474 +-0.0031463 -0.00281198 -0.00214533 -0.00112284 0.000124673 0.00149311 0.00292352 0.0043797 0.00583348 0.00725484 0.0086004 0.00979187 0.0106824 0.0111239 0.0112476 0.0112797 0.0112959 0.0113097 0.0113232 0.0113366 0.0113501 0.0113635 0.0113769 0.0113903 0.0114037 0.0114171 0.0114305 0.011444 0.0114574 0.0114708 0.0114842 0.0114976 0.011511 0.0115244 0.0115379 0.0115513 0.0115647 0.0115781 0.0115915 0.0116049 0.0116183 0.0116318 0.0116452 0.0116586 0.011672 0.0116854 0.0116988 0.0117122 0.0117257 0.0117391 0.0117525 0.0117659 0.0117793 0.0117927 0.0118061 0.0118196 0.011833 0.0118464 0.0118598 0.0118732 0.0118866 0.0119 0.0119135 0.0119269 0.0119403 0.0119537 0.0119671 0.0119805 0.0119939 0.0120074 0.0120208 0.0120342 0.0120476 0.012061 0.0120744 0.0120878 0.0121013 0.0121147 0.0121281 0.0121415 0.0121549 0.0121683 0.0121817 0.0121952 0.0122086 0.012222 0.0122354 0.0122488 0.0122622 0.0122756 0.012289 0.0123025 0.0123159 0.0123293 0.0123427 0.0123561 0.0123695 0.0123829 0.0123964 0.0124098 0.0124232 0.0124366 0.01245 0.0124634 0.0124768 0.0124903 0.0125037 0.0125171 0.0125305 0.0125439 0.0125573 0.0125707 0.0125842 0.0125976 0.012611 0.0126244 0.0126378 0.0126512 0.0126646 0.0126781 0.0126915 0.0127049 0.0127183 0.0127317 0.0127451 0.0127585 0.012772 0.0127854 0.0127988 0.0128122 0.0128256 0.012839 0.0128524 +-0.00314769 -0.00281302 -0.00214586 -0.00112299 0.000124762 0.00149335 0.0029239 0.00438021 0.00583413 0.0072557 0.00860158 0.00979363 0.0106852 0.0111278 0.011252 0.0112841 0.0113004 0.0113142 0.0113277 0.0113411 0.0113545 0.0113679 0.0113814 0.0113948 0.0114082 0.0114216 0.011435 0.0114485 0.0114619 0.0114753 0.0114887 0.0115021 0.0115156 0.011529 0.0115424 0.0115558 0.0115692 0.0115827 0.0115961 0.0116095 0.0116229 0.0116363 0.0116498 0.0116632 0.0116766 0.01169 0.0117034 0.0117169 0.0117303 0.0117437 0.0117571 0.0117705 0.0117839 0.0117974 0.0118108 0.0118242 0.0118376 0.011851 0.0118645 0.0118779 0.0118913 0.0119047 0.0119181 0.0119316 0.011945 0.0119584 0.0119718 0.0119852 0.0119987 0.0120121 0.0120255 0.0120389 0.0120523 0.0120658 0.0120792 0.0120926 0.012106 0.0121194 0.0121329 0.0121463 0.0121597 0.0121731 0.0121865 0.0122 0.0122134 0.0122268 0.0122402 0.0122536 0.0122671 0.0122805 0.0122939 0.0123073 0.0123207 0.0123342 0.0123476 0.012361 0.0123744 0.0123878 0.0124013 0.0124147 0.0124281 0.0124415 0.0124549 0.0124683 0.0124818 0.0124952 0.0125086 0.012522 0.0125354 0.0125489 0.0125623 0.0125757 0.0125891 0.0126025 0.012616 0.0126294 0.0126428 0.0126562 0.0126696 0.0126831 0.0126965 0.0127099 0.0127233 0.0127367 0.0127502 0.0127636 0.012777 0.0127904 0.0128038 0.0128173 0.0128307 0.0128441 0.0128575 +-0.00314909 -0.00281406 -0.0021464 -0.00112314 0.00012485 0.0014936 0.00292428 0.00438071 0.00583479 0.00725656 0.00860276 0.00979538 0.0106879 0.0111316 0.0112563 0.0112885 0.0113048 0.0113186 0.0113321 0.0113456 0.011359 0.0113724 0.0113858 0.0113993 0.0114127 0.0114261 0.0114395 0.011453 0.0114664 0.0114798 0.0114932 0.0115067 0.0115201 0.0115335 0.0115469 0.0115604 0.0115738 0.0115872 0.0116006 0.0116141 0.0116275 0.0116409 0.0116543 0.0116678 0.0116812 0.0116946 0.011708 0.0117215 0.0117349 0.0117483 0.0117617 0.0117752 0.0117886 0.011802 0.0118154 0.0118289 0.0118423 0.0118557 0.0118691 0.0118826 0.011896 0.0119094 0.0119228 0.0119363 0.0119497 0.0119631 0.0119765 0.01199 0.0120034 0.0120168 0.0120302 0.0120437 0.0120571 0.0120705 0.0120839 0.0120974 0.0121108 0.0121242 0.0121376 0.0121511 0.0121645 0.0121779 0.0121913 0.0122048 0.0122182 0.0122316 0.012245 0.0122585 0.0122719 0.0122853 0.0122987 0.0123122 0.0123256 0.012339 0.0123524 0.0123659 0.0123793 0.0123927 0.0124061 0.0124196 0.012433 0.0124464 0.0124598 0.0124733 0.0124867 0.0125001 0.0125135 0.012527 0.0125404 0.0125538 0.0125672 0.0125807 0.0125941 0.0126075 0.0126209 0.0126344 0.0126478 0.0126612 0.0126746 0.0126881 0.0127015 0.0127149 0.0127283 0.0127418 0.0127552 0.0127686 0.012782 0.0127955 0.0128089 0.0128223 0.0128357 0.0128492 0.0128626 +-0.00315048 -0.0028151 -0.00214693 -0.00112328 0.000124938 0.00149385 0.00292466 0.00438122 0.00583545 0.00725742 0.00860394 0.00979713 0.0106907 0.0111355 0.0112606 0.0112929 0.0113092 0.0113231 0.0113366 0.01135 0.0113634 0.0113769 0.0113903 0.0114037 0.0114172 0.0114306 0.011444 0.0114575 0.0114709 0.0114843 0.0114977 0.0115112 0.0115246 0.011538 0.0115515 0.0115649 0.0115783 0.0115918 0.0116052 0.0116186 0.0116321 0.0116455 0.0116589 0.0116723 0.0116858 0.0116992 0.0117126 0.0117261 0.0117395 0.0117529 0.0117664 0.0117798 0.0117932 0.0118066 0.0118201 0.0118335 0.0118469 0.0118604 0.0118738 0.0118872 0.0119007 0.0119141 0.0119275 0.011941 0.0119544 0.0119678 0.0119812 0.0119947 0.0120081 0.0120215 0.012035 0.0120484 0.0120618 0.0120753 0.0120887 0.0121021 0.0121156 0.012129 0.0121424 0.0121558 0.0121693 0.0121827 0.0121961 0.0122096 0.012223 0.0122364 0.0122499 0.0122633 0.0122767 0.0122901 0.0123036 0.012317 0.0123304 0.0123439 0.0123573 0.0123707 0.0123842 0.0123976 0.012411 0.0124245 0.0124379 0.0124513 0.0124647 0.0124782 0.0124916 0.012505 0.0125185 0.0125319 0.0125453 0.0125588 0.0125722 0.0125856 0.0125991 0.0126125 0.0126259 0.0126393 0.0126528 0.0126662 0.0126796 0.0126931 0.0127065 0.0127199 0.0127334 0.0127468 0.0127602 0.0127737 0.0127871 0.0128005 0.0128139 0.0128274 0.0128408 0.0128542 0.0128677 +-0.00315187 -0.00281614 -0.00214746 -0.00112343 0.000125026 0.0014941 0.00292503 0.00438173 0.0058361 0.00725828 0.00860512 0.00979888 0.0106935 0.0111393 0.0112649 0.0112974 0.0113137 0.0113275 0.011341 0.0113545 0.0113679 0.0113813 0.0113948 0.0114082 0.0114216 0.0114351 0.0114485 0.0114619 0.0114754 0.0114888 0.0115023 0.0115157 0.0115291 0.0115426 0.011556 0.0115694 0.0115829 0.0115963 0.0116097 0.0116232 0.0116366 0.0116501 0.0116635 0.0116769 0.0116904 0.0117038 0.0117172 0.0117307 0.0117441 0.0117575 0.011771 0.0117844 0.0117979 0.0118113 0.0118247 0.0118382 0.0118516 0.011865 0.0118785 0.0118919 0.0119053 0.0119188 0.0119322 0.0119456 0.0119591 0.0119725 0.011986 0.0119994 0.0120128 0.0120263 0.0120397 0.0120531 0.0120666 0.01208 0.0120934 0.0121069 0.0121203 0.0121338 0.0121472 0.0121606 0.0121741 0.0121875 0.0122009 0.0122144 0.0122278 0.0122412 0.0122547 0.0122681 0.0122815 0.012295 0.0123084 0.0123219 0.0123353 0.0123487 0.0123622 0.0123756 0.012389 0.0124025 0.0124159 0.0124293 0.0124428 0.0124562 0.0124697 0.0124831 0.0124965 0.01251 0.0125234 0.0125368 0.0125503 0.0125637 0.0125771 0.0125906 0.012604 0.0126175 0.0126309 0.0126443 0.0126578 0.0126712 0.0126846 0.0126981 0.0127115 0.0127249 0.0127384 0.0127518 0.0127652 0.0127787 0.0127921 0.0128056 0.012819 0.0128324 0.0128459 0.0128593 0.0128727 +-0.00315326 -0.00281718 -0.002148 -0.00112358 0.000125114 0.00149435 0.00292541 0.00438223 0.00583676 0.00725914 0.0086063 0.00980062 0.0106962 0.0111432 0.0112692 0.0113018 0.0113181 0.011332 0.0113455 0.0113589 0.0113724 0.0113858 0.0113992 0.0114127 0.0114261 0.0114396 0.011453 0.0114664 0.0114799 0.0114933 0.0115068 0.0115202 0.0115337 0.0115471 0.0115605 0.011574 0.0115874 0.0116009 0.0116143 0.0116277 0.0116412 0.0116546 0.0116681 0.0116815 0.0116949 0.0117084 0.0117218 0.0117353 0.0117487 0.0117622 0.0117756 0.011789 0.0118025 0.0118159 0.0118294 0.0118428 0.0118562 0.0118697 0.0118831 0.0118966 0.01191 0.0119235 0.0119369 0.0119503 0.0119638 0.0119772 0.0119907 0.0120041 0.0120175 0.012031 0.0120444 0.0120579 0.0120713 0.0120848 0.0120982 0.0121116 0.0121251 0.0121385 0.012152 0.0121654 0.0121788 0.0121923 0.0122057 0.0122192 0.0122326 0.0122461 0.0122595 0.0122729 0.0122864 0.0122998 0.0123133 0.0123267 0.0123401 0.0123536 0.012367 0.0123805 0.0123939 0.0124074 0.0124208 0.0124342 0.0124477 0.0124611 0.0124746 0.012488 0.0125014 0.0125149 0.0125283 0.0125418 0.0125552 0.0125687 0.0125821 0.0125955 0.012609 0.0126224 0.0126359 0.0126493 0.0126627 0.0126762 0.0126896 0.0127031 0.0127165 0.0127299 0.0127434 0.0127568 0.0127703 0.0127837 0.0127972 0.0128106 0.012824 0.0128375 0.0128509 0.0128644 0.0128778 +-0.00315465 -0.00281822 -0.00214853 -0.00112373 0.000125203 0.0014946 0.00292579 0.00438274 0.00583741 0.00726 0.00860748 0.00980237 0.0106989 0.0111471 0.0112736 0.0113062 0.0113225 0.0113364 0.0113499 0.0113634 0.0113768 0.0113903 0.0114037 0.0114171 0.0114306 0.011444 0.0114575 0.0114709 0.0114844 0.0114978 0.0115113 0.0115247 0.0115382 0.0115516 0.0115651 0.0115785 0.011592 0.0116054 0.0116189 0.0116323 0.0116457 0.0116592 0.0116726 0.0116861 0.0116995 0.011713 0.0117264 0.0117399 0.0117533 0.0117668 0.0117802 0.0117937 0.0118071 0.0118206 0.011834 0.0118475 0.0118609 0.0118743 0.0118878 0.0119012 0.0119147 0.0119281 0.0119416 0.011955 0.0119685 0.0119819 0.0119954 0.0120088 0.0120223 0.0120357 0.0120492 0.0120626 0.0120761 0.0120895 0.0121029 0.0121164 0.0121298 0.0121433 0.0121567 0.0121702 0.0121836 0.0121971 0.0122105 0.012224 0.0122374 0.0122509 0.0122643 0.0122778 0.0122912 0.0123047 0.0123181 0.0123315 0.012345 0.0123584 0.0123719 0.0123853 0.0123988 0.0124122 0.0124257 0.0124391 0.0124526 0.012466 0.0124795 0.0124929 0.0125064 0.0125198 0.0125333 0.0125467 0.0125601 0.0125736 0.012587 0.0126005 0.0126139 0.0126274 0.0126408 0.0126543 0.0126677 0.0126812 0.0126946 0.0127081 0.0127215 0.012735 0.0127484 0.0127619 0.0127753 0.0127887 0.0128022 0.0128156 0.0128291 0.0128425 0.012856 0.0128694 0.0128829 +-0.00315604 -0.00281926 -0.00214906 -0.00112388 0.000125291 0.00149484 0.00292617 0.00438324 0.00583807 0.00726086 0.00860866 0.00980411 0.0107017 0.0111509 0.0112779 0.0113106 0.0113269 0.0113408 0.0113543 0.0113678 0.0113813 0.0113947 0.0114082 0.0114216 0.0114351 0.0114485 0.011462 0.0114754 0.0114889 0.0115023 0.0115158 0.0115292 0.0115427 0.0115561 0.0115696 0.011583 0.0115965 0.01161 0.0116234 0.0116369 0.0116503 0.0116638 0.0116772 0.0116907 0.0117041 0.0117176 0.011731 0.0117445 0.0117579 0.0117714 0.0117848 0.0117983 0.0118117 0.0118252 0.0118386 0.0118521 0.0118656 0.011879 0.0118925 0.0119059 0.0119194 0.0119328 0.0119463 0.0119597 0.0119732 0.0119866 0.0120001 0.0120135 0.012027 0.0120404 0.0120539 0.0120673 0.0120808 0.0120942 0.0121077 0.0121211 0.0121346 0.0121481 0.0121615 0.012175 0.0121884 0.0122019 0.0122153 0.0122288 0.0122422 0.0122557 0.0122691 0.0122826 0.012296 0.0123095 0.0123229 0.0123364 0.0123498 0.0123633 0.0123767 0.0123902 0.0124037 0.0124171 0.0124306 0.012444 0.0124575 0.0124709 0.0124844 0.0124978 0.0125113 0.0125247 0.0125382 0.0125516 0.0125651 0.0125785 0.012592 0.0126054 0.0126189 0.0126323 0.0126458 0.0126592 0.0126727 0.0126862 0.0126996 0.0127131 0.0127265 0.01274 0.0127534 0.0127669 0.0127803 0.0127938 0.0128072 0.0128207 0.0128341 0.0128476 0.012861 0.0128745 0.0128879 +-0.00315743 -0.0028203 -0.00214959 -0.00112402 0.000125379 0.00149509 0.00292654 0.00438375 0.00583872 0.00726171 0.00860983 0.00980585 0.0107044 0.0111548 0.0112822 0.011315 0.0113314 0.0113453 0.0113588 0.0113723 0.0113857 0.0113992 0.0114126 0.0114261 0.0114395 0.011453 0.0114665 0.0114799 0.0114934 0.0115068 0.0115203 0.0115338 0.0115472 0.0115607 0.0115741 0.0115876 0.011601 0.0116145 0.011628 0.0116414 0.0116549 0.0116683 0.0116818 0.0116952 0.0117087 0.0117222 0.0117356 0.0117491 0.0117625 0.011776 0.0117895 0.0118029 0.0118164 0.0118298 0.0118433 0.0118567 0.0118702 0.0118837 0.0118971 0.0119106 0.011924 0.0119375 0.0119509 0.0119644 0.0119779 0.0119913 0.0120048 0.0120182 0.0120317 0.0120452 0.0120586 0.0120721 0.0120855 0.012099 0.0121124 0.0121259 0.0121394 0.0121528 0.0121663 0.0121797 0.0121932 0.0122067 0.0122201 0.0122336 0.012247 0.0122605 0.0122739 0.0122874 0.0123009 0.0123143 0.0123278 0.0123412 0.0123547 0.0123681 0.0123816 0.0123951 0.0124085 0.012422 0.0124354 0.0124489 0.0124624 0.0124758 0.0124893 0.0125027 0.0125162 0.0125296 0.0125431 0.0125566 0.01257 0.0125835 0.0125969 0.0126104 0.0126238 0.0126373 0.0126508 0.0126642 0.0126777 0.0126911 0.0127046 0.0127181 0.0127315 0.012745 0.0127584 0.0127719 0.0127853 0.0127988 0.0128123 0.0128257 0.0128392 0.0128526 0.0128661 0.0128796 0.012893 +-0.00315882 -0.00282133 -0.00215012 -0.00112417 0.000125467 0.00149534 0.00292692 0.00438425 0.00583937 0.00726257 0.00861101 0.00980758 0.0107072 0.0111586 0.0112865 0.0113194 0.0113358 0.0113497 0.0113632 0.0113767 0.0113902 0.0114036 0.0114171 0.0114306 0.011444 0.0114575 0.0114709 0.0114844 0.0114979 0.0115113 0.0115248 0.0115383 0.0115517 0.0115652 0.0115787 0.0115921 0.0116056 0.011619 0.0116325 0.011646 0.0116594 0.0116729 0.0116864 0.0116998 0.0117133 0.0117268 0.0117402 0.0117537 0.0117671 0.0117806 0.0117941 0.0118075 0.011821 0.0118345 0.0118479 0.0118614 0.0118748 0.0118883 0.0119018 0.0119152 0.0119287 0.0119422 0.0119556 0.0119691 0.0119826 0.011996 0.0120095 0.0120229 0.0120364 0.0120499 0.0120633 0.0120768 0.0120903 0.0121037 0.0121172 0.0121307 0.0121441 0.0121576 0.012171 0.0121845 0.012198 0.0122114 0.0122249 0.0122384 0.0122518 0.0122653 0.0122788 0.0122922 0.0123057 0.0123191 0.0123326 0.0123461 0.0123595 0.012373 0.0123865 0.0123999 0.0124134 0.0124269 0.0124403 0.0124538 0.0124672 0.0124807 0.0124942 0.0125076 0.0125211 0.0125346 0.012548 0.0125615 0.0125749 0.0125884 0.0126019 0.0126153 0.0126288 0.0126423 0.0126557 0.0126692 0.0126827 0.0126961 0.0127096 0.012723 0.0127365 0.01275 0.0127634 0.0127769 0.0127904 0.0128038 0.0128173 0.0128308 0.0128442 0.0128577 0.0128711 0.0128846 0.0128981 +-0.00316021 -0.00282237 -0.00215065 -0.00112432 0.000125555 0.00149559 0.0029273 0.00438476 0.00584003 0.00726342 0.00861218 0.00980932 0.0107099 0.0111625 0.0112908 0.0113238 0.0113402 0.0113541 0.0113677 0.0113811 0.0113946 0.0114081 0.0114216 0.011435 0.0114485 0.011462 0.0114754 0.0114889 0.0115024 0.0115158 0.0115293 0.0115428 0.0115562 0.0115697 0.0115832 0.0115966 0.0116101 0.0116236 0.0116371 0.0116505 0.011664 0.0116775 0.0116909 0.0117044 0.0117179 0.0117313 0.0117448 0.0117583 0.0117717 0.0117852 0.0117987 0.0118122 0.0118256 0.0118391 0.0118526 0.011866 0.0118795 0.011893 0.0119064 0.0119199 0.0119334 0.0119468 0.0119603 0.0119738 0.0119872 0.0120007 0.0120142 0.0120277 0.0120411 0.0120546 0.0120681 0.0120815 0.012095 0.0121085 0.0121219 0.0121354 0.0121489 0.0121623 0.0121758 0.0121893 0.0122028 0.0122162 0.0122297 0.0122432 0.0122566 0.0122701 0.0122836 0.012297 0.0123105 0.012324 0.0123374 0.0123509 0.0123644 0.0123778 0.0123913 0.0124048 0.0124183 0.0124317 0.0124452 0.0124587 0.0124721 0.0124856 0.0124991 0.0125125 0.012526 0.0125395 0.0125529 0.0125664 0.0125799 0.0125933 0.0126068 0.0126203 0.0126338 0.0126472 0.0126607 0.0126742 0.0126876 0.0127011 0.0127146 0.012728 0.0127415 0.012755 0.0127684 0.0127819 0.0127954 0.0128089 0.0128223 0.0128358 0.0128493 0.0128627 0.0128762 0.0128897 0.0129031 +-0.0031616 -0.00282341 -0.00215118 -0.00112447 0.000125644 0.00149584 0.00292768 0.00438526 0.00584068 0.00726428 0.00861335 0.00981105 0.0107126 0.0111663 0.0112951 0.0113282 0.0113447 0.0113586 0.0113721 0.0113856 0.0113991 0.0114125 0.011426 0.0114395 0.011453 0.0114664 0.0114799 0.0114934 0.0115069 0.0115203 0.0115338 0.0115473 0.0115608 0.0115742 0.0115877 0.0116012 0.0116147 0.0116281 0.0116416 0.0116551 0.0116686 0.011682 0.0116955 0.011709 0.0117224 0.0117359 0.0117494 0.0117629 0.0117763 0.0117898 0.0118033 0.0118168 0.0118302 0.0118437 0.0118572 0.0118707 0.0118841 0.0118976 0.0119111 0.0119246 0.011938 0.0119515 0.011965 0.0119785 0.0119919 0.0120054 0.0120189 0.0120324 0.0120458 0.0120593 0.0120728 0.0120863 0.0120997 0.0121132 0.0121267 0.0121402 0.0121536 0.0121671 0.0121806 0.0121941 0.0122075 0.012221 0.0122345 0.012248 0.0122614 0.0122749 0.0122884 0.0123018 0.0123153 0.0123288 0.0123423 0.0123557 0.0123692 0.0123827 0.0123962 0.0124096 0.0124231 0.0124366 0.0124501 0.0124635 0.012477 0.0124905 0.012504 0.0125174 0.0125309 0.0125444 0.0125579 0.0125713 0.0125848 0.0125983 0.0126118 0.0126252 0.0126387 0.0126522 0.0126657 0.0126791 0.0126926 0.0127061 0.0127196 0.012733 0.0127465 0.01276 0.0127735 0.0127869 0.0128004 0.0128139 0.0128274 0.0128408 0.0128543 0.0128678 0.0128812 0.0128947 0.0129082 +-0.00316299 -0.00282444 -0.00215171 -0.00112461 0.000125732 0.00149608 0.00292805 0.00438576 0.00584133 0.00726513 0.00861452 0.00981278 0.0107153 0.0111701 0.0112994 0.0113326 0.0113491 0.011363 0.0113765 0.01139 0.0114035 0.011417 0.0114305 0.0114439 0.0114574 0.0114709 0.0114844 0.0114979 0.0115113 0.0115248 0.0115383 0.0115518 0.0115653 0.0115787 0.0115922 0.0116057 0.0116192 0.0116327 0.0116461 0.0116596 0.0116731 0.0116866 0.0117001 0.0117135 0.011727 0.0117405 0.011754 0.0117675 0.0117809 0.0117944 0.0118079 0.0118214 0.0118349 0.0118483 0.0118618 0.0118753 0.0118888 0.0119023 0.0119157 0.0119292 0.0119427 0.0119562 0.0119697 0.0119831 0.0119966 0.0120101 0.0120236 0.0120371 0.0120505 0.012064 0.0120775 0.012091 0.0121045 0.0121179 0.0121314 0.0121449 0.0121584 0.0121719 0.0121853 0.0121988 0.0122123 0.0122258 0.0122393 0.0122527 0.0122662 0.0122797 0.0122932 0.0123067 0.0123201 0.0123336 0.0123471 0.0123606 0.0123741 0.0123875 0.012401 0.0124145 0.012428 0.0124415 0.0124549 0.0124684 0.0124819 0.0124954 0.0125089 0.0125223 0.0125358 0.0125493 0.0125628 0.0125763 0.0125897 0.0126032 0.0126167 0.0126302 0.0126437 0.0126571 0.0126706 0.0126841 0.0126976 0.0127111 0.0127245 0.012738 0.0127515 0.012765 0.0127785 0.0127919 0.0128054 0.0128189 0.0128324 0.0128459 0.0128593 0.0128728 0.0128863 0.0128998 0.0129133 +-0.00316438 -0.00282547 -0.00215223 -0.00112476 0.00012582 0.00149633 0.00292843 0.00438627 0.00584198 0.00726598 0.00861569 0.00981451 0.010718 0.011174 0.0113037 0.011337 0.0113535 0.0113674 0.011381 0.0113945 0.011408 0.0114214 0.0114349 0.0114484 0.0114619 0.0114754 0.0114889 0.0115024 0.0115158 0.0115293 0.0115428 0.0115563 0.0115698 0.0115833 0.0115968 0.0116102 0.0116237 0.0116372 0.0116507 0.0116642 0.0116777 0.0116911 0.0117046 0.0117181 0.0117316 0.0117451 0.0117586 0.0117721 0.0117855 0.011799 0.0118125 0.011826 0.0118395 0.011853 0.0118665 0.0118799 0.0118934 0.0119069 0.0119204 0.0119339 0.0119474 0.0119609 0.0119743 0.0119878 0.0120013 0.0120148 0.0120283 0.0120418 0.0120553 0.0120687 0.0120822 0.0120957 0.0121092 0.0121227 0.0121362 0.0121497 0.0121631 0.0121766 0.0121901 0.0122036 0.0122171 0.0122306 0.012244 0.0122575 0.012271 0.0122845 0.012298 0.0123115 0.012325 0.0123384 0.0123519 0.0123654 0.0123789 0.0123924 0.0124059 0.0124194 0.0124328 0.0124463 0.0124598 0.0124733 0.0124868 0.0125003 0.0125138 0.0125272 0.0125407 0.0125542 0.0125677 0.0125812 0.0125947 0.0126082 0.0126216 0.0126351 0.0126486 0.0126621 0.0126756 0.0126891 0.0127026 0.012716 0.0127295 0.012743 0.0127565 0.01277 0.0127835 0.0127969 0.0128104 0.0128239 0.0128374 0.0128509 0.0128644 0.0128779 0.0128913 0.0129048 0.0129183 +-0.00316576 -0.00282651 -0.00215276 -0.0011249 0.000125908 0.00149658 0.0029288 0.00438677 0.00584263 0.00726684 0.00861685 0.00981623 0.0107208 0.0111778 0.011308 0.0113414 0.0113579 0.0113719 0.0113854 0.0113989 0.0114124 0.0114259 0.0114394 0.0114529 0.0114664 0.0114799 0.0114933 0.0115068 0.0115203 0.0115338 0.0115473 0.0115608 0.0115743 0.0115878 0.0116013 0.0116148 0.0116283 0.0116417 0.0116552 0.0116687 0.0116822 0.0116957 0.0117092 0.0117227 0.0117362 0.0117497 0.0117632 0.0117767 0.0117901 0.0118036 0.0118171 0.0118306 0.0118441 0.0118576 0.0118711 0.0118846 0.0118981 0.0119116 0.0119251 0.0119385 0.011952 0.0119655 0.011979 0.0119925 0.012006 0.0120195 0.012033 0.0120465 0.01206 0.0120735 0.0120869 0.0121004 0.0121139 0.0121274 0.0121409 0.0121544 0.0121679 0.0121814 0.0121949 0.0122084 0.0122219 0.0122353 0.0122488 0.0122623 0.0122758 0.0122893 0.0123028 0.0123163 0.0123298 0.0123433 0.0123568 0.0123703 0.0123837 0.0123972 0.0124107 0.0124242 0.0124377 0.0124512 0.0124647 0.0124782 0.0124917 0.0125052 0.0125186 0.0125321 0.0125456 0.0125591 0.0125726 0.0125861 0.0125996 0.0126131 0.0126266 0.0126401 0.0126536 0.012667 0.0126805 0.012694 0.0127075 0.012721 0.0127345 0.012748 0.0127615 0.012775 0.0127885 0.012802 0.0128154 0.0128289 0.0128424 0.0128559 0.0128694 0.0128829 0.0128964 0.0129099 0.0129234 +-0.00316715 -0.00282754 -0.00215329 -0.00112505 0.000125997 0.00149682 0.00292918 0.00438727 0.00584328 0.00726769 0.00861802 0.00981795 0.0107235 0.0111816 0.0113123 0.0113458 0.0113623 0.0113763 0.0113898 0.0114033 0.0114168 0.0114303 0.0114438 0.0114573 0.0114708 0.0114843 0.0114978 0.0115113 0.0115248 0.0115383 0.0115518 0.0115653 0.0115788 0.0115923 0.0116058 0.0116193 0.0116328 0.0116463 0.0116598 0.0116733 0.0116868 0.0117003 0.0117138 0.0117273 0.0117408 0.0117543 0.0117677 0.0117812 0.0117947 0.0118082 0.0118217 0.0118352 0.0118487 0.0118622 0.0118757 0.0118892 0.0119027 0.0119162 0.0119297 0.0119432 0.0119567 0.0119702 0.0119837 0.0119972 0.0120107 0.0120242 0.0120377 0.0120512 0.0120647 0.0120782 0.0120917 0.0121052 0.0121187 0.0121321 0.0121456 0.0121591 0.0121726 0.0121861 0.0121996 0.0122131 0.0122266 0.0122401 0.0122536 0.0122671 0.0122806 0.0122941 0.0123076 0.0123211 0.0123346 0.0123481 0.0123616 0.0123751 0.0123886 0.0124021 0.0124156 0.0124291 0.0124426 0.0124561 0.0124696 0.0124831 0.0124965 0.01251 0.0125235 0.012537 0.0125505 0.012564 0.0125775 0.012591 0.0126045 0.012618 0.0126315 0.012645 0.0126585 0.012672 0.0126855 0.012699 0.0127125 0.012726 0.0127395 0.012753 0.0127665 0.01278 0.0127935 0.012807 0.0128205 0.012834 0.0128475 0.0128609 0.0128744 0.0128879 0.0129014 0.0129149 0.0129284 +-0.00316853 -0.00282857 -0.00215382 -0.0011252 0.000126085 0.00149707 0.00292956 0.00438777 0.00584393 0.00726854 0.00861919 0.00981967 0.0107262 0.0111854 0.0113166 0.0113502 0.0113668 0.0113807 0.0113943 0.0114078 0.0114213 0.0114348 0.0114483 0.0114618 0.0114753 0.0114888 0.0115023 0.0115158 0.0115293 0.0115428 0.0115563 0.0115698 0.0115833 0.0115968 0.0116103 0.0116238 0.0116373 0.0116508 0.0116643 0.0116778 0.0116913 0.0117048 0.0117183 0.0117318 0.0117453 0.0117588 0.0117723 0.0117858 0.0117993 0.0118128 0.0118263 0.0118398 0.0118533 0.0118668 0.0118803 0.0118938 0.0119074 0.0119209 0.0119344 0.0119479 0.0119614 0.0119749 0.0119884 0.0120019 0.0120154 0.0120289 0.0120424 0.0120559 0.0120694 0.0120829 0.0120964 0.0121099 0.0121234 0.0121369 0.0121504 0.0121639 0.0121774 0.0121909 0.0122044 0.0122179 0.0122314 0.0122449 0.0122584 0.0122719 0.0122854 0.0122989 0.0123124 0.0123259 0.0123394 0.0123529 0.0123664 0.0123799 0.0123934 0.0124069 0.0124204 0.0124339 0.0124474 0.0124609 0.0124744 0.0124879 0.0125014 0.0125149 0.0125284 0.0125419 0.0125554 0.0125689 0.0125824 0.0125959 0.0126094 0.0126229 0.0126364 0.0126499 0.0126635 0.012677 0.0126905 0.012704 0.0127175 0.012731 0.0127445 0.012758 0.0127715 0.012785 0.0127985 0.012812 0.0128255 0.012839 0.0128525 0.012866 0.0128795 0.012893 0.0129065 0.01292 0.0129335 +-0.00316992 -0.0028296 -0.00215434 -0.00112534 0.000126173 0.00149732 0.00292993 0.00438828 0.00584458 0.00726939 0.00862035 0.00982139 0.0107289 0.0111893 0.0113209 0.0113546 0.0113712 0.0113851 0.0113987 0.0114122 0.0114257 0.0114392 0.0114527 0.0114662 0.0114798 0.0114933 0.0115068 0.0115203 0.0115338 0.0115473 0.0115608 0.0115743 0.0115878 0.0116013 0.0116148 0.0116283 0.0116418 0.0116554 0.0116689 0.0116824 0.0116959 0.0117094 0.0117229 0.0117364 0.0117499 0.0117634 0.0117769 0.0117904 0.0118039 0.0118174 0.0118309 0.0118445 0.011858 0.0118715 0.011885 0.0118985 0.011912 0.0119255 0.011939 0.0119525 0.011966 0.0119795 0.011993 0.0120065 0.01202 0.0120336 0.0120471 0.0120606 0.0120741 0.0120876 0.0121011 0.0121146 0.0121281 0.0121416 0.0121551 0.0121686 0.0121821 0.0121956 0.0122091 0.0122227 0.0122362 0.0122497 0.0122632 0.0122767 0.0122902 0.0123037 0.0123172 0.0123307 0.0123442 0.0123577 0.0123712 0.0123847 0.0123982 0.0124118 0.0124253 0.0124388 0.0124523 0.0124658 0.0124793 0.0124928 0.0125063 0.0125198 0.0125333 0.0125468 0.0125603 0.0125738 0.0125874 0.0126009 0.0126144 0.0126279 0.0126414 0.0126549 0.0126684 0.0126819 0.0126954 0.0127089 0.0127224 0.0127359 0.0127494 0.0127629 0.0127765 0.01279 0.0128035 0.012817 0.0128305 0.012844 0.0128575 0.012871 0.0128845 0.012898 0.0129115 0.012925 0.0129385 +-0.00317131 -0.00283063 -0.00215487 -0.00112549 0.000126261 0.00149756 0.00293031 0.00438878 0.00584523 0.00727023 0.00862151 0.00982311 0.0107316 0.0111931 0.0113252 0.011359 0.0113756 0.0113896 0.0114031 0.0114167 0.0114302 0.0114437 0.0114572 0.0114707 0.0114842 0.0114977 0.0115112 0.0115248 0.0115383 0.0115518 0.0115653 0.0115788 0.0115923 0.0116058 0.0116193 0.0116329 0.0116464 0.0116599 0.0116734 0.0116869 0.0117004 0.0117139 0.0117274 0.011741 0.0117545 0.011768 0.0117815 0.011795 0.0118085 0.011822 0.0118355 0.0118491 0.0118626 0.0118761 0.0118896 0.0119031 0.0119166 0.0119301 0.0119437 0.0119572 0.0119707 0.0119842 0.0119977 0.0120112 0.0120247 0.0120382 0.0120518 0.0120653 0.0120788 0.0120923 0.0121058 0.0121193 0.0121328 0.0121463 0.0121599 0.0121734 0.0121869 0.0122004 0.0122139 0.0122274 0.0122409 0.0122544 0.012268 0.0122815 0.012295 0.0123085 0.012322 0.0123355 0.012349 0.0123625 0.0123761 0.0123896 0.0124031 0.0124166 0.0124301 0.0124436 0.0124571 0.0124706 0.0124842 0.0124977 0.0125112 0.0125247 0.0125382 0.0125517 0.0125652 0.0125787 0.0125923 0.0126058 0.0126193 0.0126328 0.0126463 0.0126598 0.0126733 0.0126869 0.0127004 0.0127139 0.0127274 0.0127409 0.0127544 0.0127679 0.0127814 0.012795 0.0128085 0.012822 0.0128355 0.012849 0.0128625 0.012876 0.0128895 0.0129031 0.0129166 0.0129301 0.0129436 +-0.00317269 -0.00283166 -0.00215539 -0.00112563 0.00012635 0.00149781 0.00293068 0.00438928 0.00584587 0.00727108 0.00862267 0.00982482 0.0107343 0.0111969 0.0113295 0.0113634 0.01138 0.011394 0.0114076 0.0114211 0.0114346 0.0114481 0.0114616 0.0114752 0.0114887 0.0115022 0.0115157 0.0115292 0.0115428 0.0115563 0.0115698 0.0115833 0.0115968 0.0116103 0.0116239 0.0116374 0.0116509 0.0116644 0.0116779 0.0116915 0.011705 0.0117185 0.011732 0.0117455 0.011759 0.0117726 0.0117861 0.0117996 0.0118131 0.0118266 0.0118402 0.0118537 0.0118672 0.0118807 0.0118942 0.0119077 0.0119213 0.0119348 0.0119483 0.0119618 0.0119753 0.0119889 0.0120024 0.0120159 0.0120294 0.0120429 0.0120564 0.01207 0.0120835 0.012097 0.0121105 0.012124 0.0121376 0.0121511 0.0121646 0.0121781 0.0121916 0.0122051 0.0122187 0.0122322 0.0122457 0.0122592 0.0122727 0.0122863 0.0122998 0.0123133 0.0123268 0.0123403 0.0123538 0.0123674 0.0123809 0.0123944 0.0124079 0.0124214 0.012435 0.0124485 0.012462 0.0124755 0.012489 0.0125025 0.0125161 0.0125296 0.0125431 0.0125566 0.0125701 0.0125837 0.0125972 0.0126107 0.0126242 0.0126377 0.0126512 0.0126648 0.0126783 0.0126918 0.0127053 0.0127188 0.0127324 0.0127459 0.0127594 0.0127729 0.0127864 0.0127999 0.0128135 0.012827 0.0128405 0.012854 0.0128675 0.0128811 0.0128946 0.0129081 0.0129216 0.0129351 0.0129486 +-0.00317407 -0.00283269 -0.00215592 -0.00112578 0.000126438 0.00149806 0.00293106 0.00438978 0.00584652 0.00727193 0.00862383 0.00982653 0.010737 0.0112007 0.0113338 0.0113678 0.0113844 0.0113984 0.011412 0.0114255 0.011439 0.0114526 0.0114661 0.0114796 0.0114931 0.0115067 0.0115202 0.0115337 0.0115472 0.0115608 0.0115743 0.0115878 0.0116013 0.0116149 0.0116284 0.0116419 0.0116554 0.0116689 0.0116825 0.011696 0.0117095 0.011723 0.0117366 0.0117501 0.0117636 0.0117771 0.0117907 0.0118042 0.0118177 0.0118312 0.0118448 0.0118583 0.0118718 0.0118853 0.0118988 0.0119124 0.0119259 0.0119394 0.0119529 0.0119665 0.01198 0.0119935 0.012007 0.0120206 0.0120341 0.0120476 0.0120611 0.0120747 0.0120882 0.0121017 0.0121152 0.0121287 0.0121423 0.0121558 0.0121693 0.0121828 0.0121964 0.0122099 0.0122234 0.0122369 0.0122505 0.012264 0.0122775 0.012291 0.0123046 0.0123181 0.0123316 0.0123451 0.0123587 0.0123722 0.0123857 0.0123992 0.0124127 0.0124263 0.0124398 0.0124533 0.0124668 0.0124804 0.0124939 0.0125074 0.0125209 0.0125345 0.012548 0.0125615 0.012575 0.0125886 0.0126021 0.0126156 0.0126291 0.0126426 0.0126562 0.0126697 0.0126832 0.0126967 0.0127103 0.0127238 0.0127373 0.0127508 0.0127644 0.0127779 0.0127914 0.0128049 0.0128185 0.012832 0.0128455 0.012859 0.0128726 0.0128861 0.0128996 0.0129131 0.0129266 0.0129402 0.0129537 +-0.00317546 -0.00283372 -0.00215644 -0.00112592 0.000126526 0.0014983 0.00293143 0.00439028 0.00584717 0.00727278 0.00862499 0.00982824 0.0107397 0.0112045 0.0113381 0.0113722 0.0113888 0.0114028 0.0114164 0.0114299 0.0114435 0.011457 0.0114705 0.0114841 0.0114976 0.0115111 0.0115247 0.0115382 0.0115517 0.0115652 0.0115788 0.0115923 0.0116058 0.0116194 0.0116329 0.0116464 0.0116599 0.0116735 0.011687 0.0117005 0.0117141 0.0117276 0.0117411 0.0117546 0.0117682 0.0117817 0.0117952 0.0118088 0.0118223 0.0118358 0.0118494 0.0118629 0.0118764 0.0118899 0.0119035 0.011917 0.0119305 0.0119441 0.0119576 0.0119711 0.0119846 0.0119982 0.0120117 0.0120252 0.0120388 0.0120523 0.0120658 0.0120793 0.0120929 0.0121064 0.0121199 0.0121335 0.012147 0.0121605 0.0121741 0.0121876 0.0122011 0.0122146 0.0122282 0.0122417 0.0122552 0.0122688 0.0122823 0.0122958 0.0123093 0.0123229 0.0123364 0.0123499 0.0123635 0.012377 0.0123905 0.012404 0.0124176 0.0124311 0.0124446 0.0124582 0.0124717 0.0124852 0.0124988 0.0125123 0.0125258 0.0125393 0.0125529 0.0125664 0.0125799 0.0125935 0.012607 0.0126205 0.012634 0.0126476 0.0126611 0.0126746 0.0126882 0.0127017 0.0127152 0.0127287 0.0127423 0.0127558 0.0127693 0.0127829 0.0127964 0.0128099 0.0128234 0.012837 0.0128505 0.012864 0.0128776 0.0128911 0.0129046 0.0129182 0.0129317 0.0129452 0.0129587 +-0.00317684 -0.00283475 -0.00215696 -0.00112607 0.000126615 0.00149855 0.00293181 0.00439078 0.00584782 0.00727362 0.00862615 0.00982995 0.0107423 0.0112083 0.0113424 0.0113766 0.0113932 0.0114072 0.0114208 0.0114344 0.0114479 0.0114614 0.011475 0.0114885 0.0115021 0.0115156 0.0115291 0.0115427 0.0115562 0.0115697 0.0115833 0.0115968 0.0116103 0.0116239 0.0116374 0.0116509 0.0116645 0.011678 0.0116915 0.0117051 0.0117186 0.0117321 0.0117457 0.0117592 0.0117727 0.0117863 0.0117998 0.0118133 0.0118269 0.0118404 0.011854 0.0118675 0.011881 0.0118946 0.0119081 0.0119216 0.0119352 0.0119487 0.0119622 0.0119758 0.0119893 0.0120028 0.0120164 0.0120299 0.0120434 0.012057 0.0120705 0.012084 0.0120976 0.0121111 0.0121246 0.0121382 0.0121517 0.0121652 0.0121788 0.0121923 0.0122059 0.0122194 0.0122329 0.0122465 0.01226 0.0122735 0.0122871 0.0123006 0.0123141 0.0123277 0.0123412 0.0123547 0.0123683 0.0123818 0.0123953 0.0124089 0.0124224 0.0124359 0.0124495 0.012463 0.0124765 0.0124901 0.0125036 0.0125171 0.0125307 0.0125442 0.0125578 0.0125713 0.0125848 0.0125984 0.0126119 0.0126254 0.012639 0.0126525 0.012666 0.0126796 0.0126931 0.0127066 0.0127202 0.0127337 0.0127472 0.0127608 0.0127743 0.0127878 0.0128014 0.0128149 0.0128284 0.012842 0.0128555 0.012869 0.0128826 0.0128961 0.0129096 0.0129232 0.0129367 0.0129503 0.0129638 +-0.00317822 -0.00283577 -0.00215749 -0.00112621 0.000126703 0.0014988 0.00293218 0.00439128 0.00584846 0.00727447 0.0086273 0.00983165 0.010745 0.0112121 0.0113467 0.011381 0.0113976 0.0114116 0.0114253 0.0114388 0.0114523 0.0114659 0.0114794 0.011493 0.0115065 0.01152 0.0115336 0.0115471 0.0115607 0.0115742 0.0115877 0.0116013 0.0116148 0.0116284 0.0116419 0.0116554 0.011669 0.0116825 0.0116961 0.0117096 0.0117231 0.0117367 0.0117502 0.0117638 0.0117773 0.0117908 0.0118044 0.0118179 0.0118315 0.011845 0.0118586 0.0118721 0.0118856 0.0118992 0.0119127 0.0119263 0.0119398 0.0119533 0.0119669 0.0119804 0.011994 0.0120075 0.012021 0.0120346 0.0120481 0.0120617 0.0120752 0.0120887 0.0121023 0.0121158 0.0121294 0.0121429 0.0121564 0.01217 0.0121835 0.0121971 0.0122106 0.0122241 0.0122377 0.0122512 0.0122648 0.0122783 0.0122918 0.0123054 0.0123189 0.0123325 0.012346 0.0123595 0.0123731 0.0123866 0.0124002 0.0124137 0.0124272 0.0124408 0.0124543 0.0124679 0.0124814 0.0124949 0.0125085 0.012522 0.0125356 0.0125491 0.0125626 0.0125762 0.0125897 0.0126033 0.0126168 0.0126303 0.0126439 0.0126574 0.012671 0.0126845 0.012698 0.0127116 0.0127251 0.0127387 0.0127522 0.0127657 0.0127793 0.0127928 0.0128064 0.0128199 0.0128334 0.012847 0.0128605 0.0128741 0.0128876 0.0129011 0.0129147 0.0129282 0.0129418 0.0129553 0.0129688 +-0.00317961 -0.0028368 -0.00215801 -0.00112635 0.000126791 0.00149904 0.00293255 0.00439178 0.00584911 0.00727531 0.00862846 0.00983336 0.0107477 0.0112159 0.011351 0.0113854 0.0114021 0.0114161 0.0114297 0.0114432 0.0114568 0.0114703 0.0114839 0.0114974 0.011511 0.0115245 0.0115381 0.0115516 0.0115651 0.0115787 0.0115922 0.0116058 0.0116193 0.0116329 0.0116464 0.01166 0.0116735 0.0116871 0.0117006 0.0117141 0.0117277 0.0117412 0.0117548 0.0117683 0.0117819 0.0117954 0.011809 0.0118225 0.0118361 0.0118496 0.0118631 0.0118767 0.0118902 0.0119038 0.0119173 0.0119309 0.0119444 0.011958 0.0119715 0.0119851 0.0119986 0.0120121 0.0120257 0.0120392 0.0120528 0.0120663 0.0120799 0.0120934 0.012107 0.0121205 0.0121341 0.0121476 0.0121611 0.0121747 0.0121882 0.0122018 0.0122153 0.0122289 0.0122424 0.012256 0.0122695 0.0122831 0.0122966 0.0123101 0.0123237 0.0123372 0.0123508 0.0123643 0.0123779 0.0123914 0.012405 0.0124185 0.0124321 0.0124456 0.0124591 0.0124727 0.0124862 0.0124998 0.0125133 0.0125269 0.0125404 0.012554 0.0125675 0.0125811 0.0125946 0.0126081 0.0126217 0.0126352 0.0126488 0.0126623 0.0126759 0.0126894 0.012703 0.0127165 0.0127301 0.0127436 0.0127571 0.0127707 0.0127842 0.0127978 0.0128113 0.0128249 0.0128384 0.012852 0.0128655 0.0128791 0.0128926 0.0129061 0.0129197 0.0129332 0.0129468 0.0129603 0.0129739 +-0.00318099 -0.00283783 -0.00215853 -0.0011265 0.000126879 0.00149929 0.00293293 0.00439228 0.00584975 0.00727615 0.00862961 0.00983506 0.0107504 0.0112197 0.0113553 0.0113898 0.0114065 0.0114205 0.0114341 0.0114477 0.0114612 0.0114748 0.0114883 0.0115019 0.0115154 0.011529 0.0115425 0.0115561 0.0115696 0.0115832 0.0115967 0.0116103 0.0116238 0.0116374 0.0116509 0.0116645 0.011678 0.0116916 0.0117051 0.0117187 0.0117322 0.0117458 0.0117593 0.0117729 0.0117864 0.0118 0.0118135 0.0118271 0.0118406 0.0118542 0.0118677 0.0118813 0.0118948 0.0119084 0.0119219 0.0119355 0.011949 0.0119626 0.0119761 0.0119897 0.0120033 0.0120168 0.0120304 0.0120439 0.0120575 0.012071 0.0120846 0.0120981 0.0121117 0.0121252 0.0121388 0.0121523 0.0121659 0.0121794 0.012193 0.0122065 0.0122201 0.0122336 0.0122472 0.0122607 0.0122743 0.0122878 0.0123014 0.0123149 0.0123285 0.012342 0.0123556 0.0123691 0.0123827 0.0123962 0.0124098 0.0124233 0.0124369 0.0124504 0.012464 0.0124775 0.0124911 0.0125046 0.0125182 0.0125317 0.0125453 0.0125588 0.0125724 0.0125859 0.0125995 0.012613 0.0126266 0.0126401 0.0126537 0.0126672 0.0126808 0.0126943 0.0127079 0.0127215 0.012735 0.0127486 0.0127621 0.0127757 0.0127892 0.0128028 0.0128163 0.0128299 0.0128434 0.012857 0.0128705 0.0128841 0.0128976 0.0129112 0.0129247 0.0129383 0.0129518 0.0129654 0.0129789 +-0.00318237 -0.00283885 -0.00215905 -0.00112664 0.000126968 0.00149953 0.0029333 0.00439277 0.0058504 0.007277 0.00863076 0.00983675 0.010753 0.0112235 0.0113595 0.0113941 0.0114109 0.0114249 0.0114385 0.0114521 0.0114656 0.0114792 0.0114928 0.0115063 0.0115199 0.0115334 0.011547 0.0115605 0.0115741 0.0115877 0.0116012 0.0116148 0.0116283 0.0116419 0.0116554 0.011669 0.0116825 0.0116961 0.0117097 0.0117232 0.0117368 0.0117503 0.0117639 0.0117774 0.011791 0.0118046 0.0118181 0.0118317 0.0118452 0.0118588 0.0118723 0.0118859 0.0118994 0.011913 0.0119266 0.0119401 0.0119537 0.0119672 0.0119808 0.0119943 0.0120079 0.0120215 0.012035 0.0120486 0.0120621 0.0120757 0.0120892 0.0121028 0.0121164 0.0121299 0.0121435 0.012157 0.0121706 0.0121841 0.0121977 0.0122112 0.0122248 0.0122384 0.0122519 0.0122655 0.012279 0.0122926 0.0123061 0.0123197 0.0123333 0.0123468 0.0123604 0.0123739 0.0123875 0.012401 0.0124146 0.0124281 0.0124417 0.0124553 0.0124688 0.0124824 0.0124959 0.0125095 0.012523 0.0125366 0.0125502 0.0125637 0.0125773 0.0125908 0.0126044 0.0126179 0.0126315 0.0126451 0.0126586 0.0126722 0.0126857 0.0126993 0.0127128 0.0127264 0.0127399 0.0127535 0.0127671 0.0127806 0.0127942 0.0128077 0.0128213 0.0128348 0.0128484 0.012862 0.0128755 0.0128891 0.0129026 0.0129162 0.0129297 0.0129433 0.0129568 0.0129704 0.012984 +-0.00318375 -0.00283988 -0.00215957 -0.00112679 0.000127056 0.00149978 0.00293367 0.00439327 0.00585104 0.00727784 0.00863191 0.00983845 0.0107557 0.0112273 0.0113638 0.0113985 0.0114153 0.0114293 0.0114429 0.0114565 0.0114701 0.0114836 0.0114972 0.0115108 0.0115243 0.0115379 0.0115514 0.011565 0.0115786 0.0115921 0.0116057 0.0116193 0.0116328 0.0116464 0.0116599 0.0116735 0.0116871 0.0117006 0.0117142 0.0117277 0.0117413 0.0117549 0.0117684 0.011782 0.0117956 0.0118091 0.0118227 0.0118362 0.0118498 0.0118634 0.0118769 0.0118905 0.0119041 0.0119176 0.0119312 0.0119447 0.0119583 0.0119719 0.0119854 0.011999 0.0120125 0.0120261 0.0120397 0.0120532 0.0120668 0.0120804 0.0120939 0.0121075 0.012121 0.0121346 0.0121482 0.0121617 0.0121753 0.0121889 0.0122024 0.012216 0.0122295 0.0122431 0.0122567 0.0122702 0.0122838 0.0122973 0.0123109 0.0123245 0.012338 0.0123516 0.0123652 0.0123787 0.0123923 0.0124058 0.0124194 0.012433 0.0124465 0.0124601 0.0124737 0.0124872 0.0125008 0.0125143 0.0125279 0.0125415 0.012555 0.0125686 0.0125821 0.0125957 0.0126093 0.0126228 0.0126364 0.01265 0.0126635 0.0126771 0.0126906 0.0127042 0.0127178 0.0127313 0.0127449 0.0127584 0.012772 0.0127856 0.0127991 0.0128127 0.0128263 0.0128398 0.0128534 0.0128669 0.0128805 0.0128941 0.0129076 0.0129212 0.0129348 0.0129483 0.0129619 0.0129754 0.012989 +-0.00318513 -0.0028409 -0.00216009 -0.00112693 0.000127144 0.00150002 0.00293405 0.00439377 0.00585168 0.00727868 0.00863306 0.00984014 0.0107584 0.0112311 0.0113681 0.0114029 0.0114197 0.0114337 0.0114474 0.0114609 0.0114745 0.0114881 0.0115016 0.0115152 0.0115288 0.0115423 0.0115559 0.0115695 0.011583 0.0115966 0.0116102 0.0116237 0.0116373 0.0116509 0.0116644 0.011678 0.0116916 0.0117051 0.0117187 0.0117323 0.0117458 0.0117594 0.011773 0.0117865 0.0118001 0.0118137 0.0118273 0.0118408 0.0118544 0.011868 0.0118815 0.0118951 0.0119087 0.0119222 0.0119358 0.0119494 0.0119629 0.0119765 0.0119901 0.0120036 0.0120172 0.0120308 0.0120443 0.0120579 0.0120715 0.012085 0.0120986 0.0121122 0.0121257 0.0121393 0.0121529 0.0121664 0.01218 0.0121936 0.0122071 0.0122207 0.0122343 0.0122478 0.0122614 0.012275 0.0122885 0.0123021 0.0123157 0.0123292 0.0123428 0.0123564 0.0123699 0.0123835 0.0123971 0.0124106 0.0124242 0.0124378 0.0124513 0.0124649 0.0124785 0.012492 0.0125056 0.0125192 0.0125328 0.0125463 0.0125599 0.0125735 0.012587 0.0126006 0.0126142 0.0126277 0.0126413 0.0126549 0.0126684 0.012682 0.0126956 0.0127091 0.0127227 0.0127363 0.0127498 0.0127634 0.012777 0.0127905 0.0128041 0.0128177 0.0128312 0.0128448 0.0128584 0.0128719 0.0128855 0.0128991 0.0129126 0.0129262 0.0129398 0.0129533 0.0129669 0.0129805 0.012994 +-0.00318651 -0.00284192 -0.00216061 -0.00112707 0.000127233 0.00150027 0.00293442 0.00439427 0.00585233 0.00727952 0.00863421 0.00984183 0.010761 0.0112349 0.0113724 0.0114073 0.0114241 0.0114381 0.0114518 0.0114654 0.0114789 0.0114925 0.0115061 0.0115196 0.0115332 0.0115468 0.0115604 0.0115739 0.0115875 0.0116011 0.0116147 0.0116282 0.0116418 0.0116554 0.0116689 0.0116825 0.0116961 0.0117097 0.0117232 0.0117368 0.0117504 0.011764 0.0117775 0.0117911 0.0118047 0.0118182 0.0118318 0.0118454 0.011859 0.0118725 0.0118861 0.0118997 0.0119133 0.0119268 0.0119404 0.011954 0.0119675 0.0119811 0.0119947 0.0120083 0.0120218 0.0120354 0.012049 0.0120626 0.0120761 0.0120897 0.0121033 0.0121168 0.0121304 0.012144 0.0121576 0.0121711 0.0121847 0.0121983 0.0122119 0.0122254 0.012239 0.0122526 0.0122661 0.0122797 0.0122933 0.0123069 0.0123204 0.012334 0.0123476 0.0123612 0.0123747 0.0123883 0.0124019 0.0124154 0.012429 0.0124426 0.0124562 0.0124697 0.0124833 0.0124969 0.0125105 0.012524 0.0125376 0.0125512 0.0125647 0.0125783 0.0125919 0.0126055 0.012619 0.0126326 0.0126462 0.0126598 0.0126733 0.0126869 0.0127005 0.012714 0.0127276 0.0127412 0.0127548 0.0127683 0.0127819 0.0127955 0.0128091 0.0128226 0.0128362 0.0128498 0.0128633 0.0128769 0.0128905 0.0129041 0.0129176 0.0129312 0.0129448 0.0129584 0.0129719 0.0129855 0.0129991 +-0.00318789 -0.00284294 -0.00216113 -0.00112722 0.000127321 0.00150051 0.00293479 0.00439476 0.00585297 0.00728036 0.00863536 0.00984352 0.0107637 0.0112387 0.0113767 0.0114117 0.0114285 0.0114425 0.0114562 0.0114698 0.0114834 0.0114969 0.0115105 0.0115241 0.0115377 0.0115512 0.0115648 0.0115784 0.011592 0.0116056 0.0116191 0.0116327 0.0116463 0.0116599 0.0116734 0.011687 0.0117006 0.0117142 0.0117278 0.0117413 0.0117549 0.0117685 0.0117821 0.0117957 0.0118092 0.0118228 0.0118364 0.01185 0.0118635 0.0118771 0.0118907 0.0119043 0.0119179 0.0119314 0.011945 0.0119586 0.0119722 0.0119857 0.0119993 0.0120129 0.0120265 0.0120401 0.0120536 0.0120672 0.0120808 0.0120944 0.012108 0.0121215 0.0121351 0.0121487 0.0121623 0.0121758 0.0121894 0.012203 0.0122166 0.0122302 0.0122437 0.0122573 0.0122709 0.0122845 0.012298 0.0123116 0.0123252 0.0123388 0.0123524 0.0123659 0.0123795 0.0123931 0.0124067 0.0124202 0.0124338 0.0124474 0.012461 0.0124746 0.0124881 0.0125017 0.0125153 0.0125289 0.0125425 0.012556 0.0125696 0.0125832 0.0125968 0.0126103 0.0126239 0.0126375 0.0126511 0.0126647 0.0126782 0.0126918 0.0127054 0.012719 0.0127325 0.0127461 0.0127597 0.0127733 0.0127869 0.0128004 0.012814 0.0128276 0.0128412 0.0128548 0.0128683 0.0128819 0.0128955 0.0129091 0.0129226 0.0129362 0.0129498 0.0129634 0.012977 0.0129905 0.0130041 +-0.00318927 -0.00284397 -0.00216165 -0.00112736 0.000127409 0.00150076 0.00293516 0.00439526 0.00585361 0.0072812 0.0086365 0.00984521 0.0107663 0.0112424 0.0113809 0.011416 0.0114329 0.0114469 0.0114606 0.0114742 0.0114878 0.0115014 0.0115149 0.0115285 0.0115421 0.0115557 0.0115693 0.0115829 0.0115964 0.01161 0.0116236 0.0116372 0.0116508 0.0116644 0.0116779 0.0116915 0.0117051 0.0117187 0.0117323 0.0117459 0.0117595 0.011773 0.0117866 0.0118002 0.0118138 0.0118274 0.011841 0.0118545 0.0118681 0.0118817 0.0118953 0.0119089 0.0119225 0.011936 0.0119496 0.0119632 0.0119768 0.0119904 0.012004 0.0120175 0.0120311 0.0120447 0.0120583 0.0120719 0.0120855 0.012099 0.0121126 0.0121262 0.0121398 0.0121534 0.012167 0.0121805 0.0121941 0.0122077 0.0122213 0.0122349 0.0122485 0.012262 0.0122756 0.0122892 0.0123028 0.0123164 0.01233 0.0123435 0.0123571 0.0123707 0.0123843 0.0123979 0.0124115 0.0124251 0.0124386 0.0124522 0.0124658 0.0124794 0.012493 0.0125066 0.0125201 0.0125337 0.0125473 0.0125609 0.0125745 0.0125881 0.0126016 0.0126152 0.0126288 0.0126424 0.012656 0.0126696 0.0126831 0.0126967 0.0127103 0.0127239 0.0127375 0.0127511 0.0127646 0.0127782 0.0127918 0.0128054 0.012819 0.0128326 0.0128461 0.0128597 0.0128733 0.0128869 0.0129005 0.0129141 0.0129276 0.0129412 0.0129548 0.0129684 0.012982 0.0129956 0.0130091 +-0.00319064 -0.00284499 -0.00216217 -0.0011275 0.000127498 0.001501 0.00293554 0.00439576 0.00585425 0.00728204 0.00863765 0.0098469 0.010769 0.0112462 0.0113852 0.0114204 0.0114373 0.0114514 0.011465 0.0114786 0.0114922 0.0115058 0.0115194 0.011533 0.0115466 0.0115601 0.0115737 0.0115873 0.0116009 0.0116145 0.0116281 0.0116417 0.0116553 0.0116689 0.0116824 0.011696 0.0117096 0.0117232 0.0117368 0.0117504 0.011764 0.0117776 0.0117912 0.0118048 0.0118183 0.0118319 0.0118455 0.0118591 0.0118727 0.0118863 0.0118999 0.0119135 0.0119271 0.0119406 0.0119542 0.0119678 0.0119814 0.011995 0.0120086 0.0120222 0.0120358 0.0120494 0.0120629 0.0120765 0.0120901 0.0121037 0.0121173 0.0121309 0.0121445 0.0121581 0.0121717 0.0121852 0.0121988 0.0122124 0.012226 0.0122396 0.0122532 0.0122668 0.0122804 0.012294 0.0123075 0.0123211 0.0123347 0.0123483 0.0123619 0.0123755 0.0123891 0.0124027 0.0124163 0.0124298 0.0124434 0.012457 0.0124706 0.0124842 0.0124978 0.0125114 0.012525 0.0125386 0.0125522 0.0125657 0.0125793 0.0125929 0.0126065 0.0126201 0.0126337 0.0126473 0.0126609 0.0126745 0.012688 0.0127016 0.0127152 0.0127288 0.0127424 0.012756 0.0127696 0.0127832 0.0127968 0.0128103 0.0128239 0.0128375 0.0128511 0.0128647 0.0128783 0.0128919 0.0129055 0.0129191 0.0129326 0.0129462 0.0129598 0.0129734 0.012987 0.0130006 0.0130142 +-0.00319202 -0.00284601 -0.00216268 -0.00112764 0.000127586 0.00150125 0.00293591 0.00439625 0.00585489 0.00728287 0.00863879 0.00984858 0.0107716 0.01125 0.0113895 0.0114248 0.0114417 0.0114558 0.0114694 0.011483 0.0114966 0.0115102 0.0115238 0.0115374 0.011551 0.0115646 0.0115782 0.0115918 0.0116054 0.011619 0.0116326 0.0116462 0.0116598 0.0116734 0.0116869 0.0117005 0.0117141 0.0117277 0.0117413 0.0117549 0.0117685 0.0117821 0.0117957 0.0118093 0.0118229 0.0118365 0.0118501 0.0118637 0.0118773 0.0118909 0.0119045 0.0119181 0.0119316 0.0119452 0.0119588 0.0119724 0.011986 0.0119996 0.0120132 0.0120268 0.0120404 0.012054 0.0120676 0.0120812 0.0120948 0.0121084 0.012122 0.0121356 0.0121492 0.0121628 0.0121764 0.0121899 0.0122035 0.0122171 0.0122307 0.0122443 0.0122579 0.0122715 0.0122851 0.0122987 0.0123123 0.0123259 0.0123395 0.0123531 0.0123667 0.0123803 0.0123939 0.0124075 0.0124211 0.0124346 0.0124482 0.0124618 0.0124754 0.012489 0.0125026 0.0125162 0.0125298 0.0125434 0.012557 0.0125706 0.0125842 0.0125978 0.0126114 0.012625 0.0126386 0.0126522 0.0126658 0.0126793 0.0126929 0.0127065 0.0127201 0.0127337 0.0127473 0.0127609 0.0127745 0.0127881 0.0128017 0.0128153 0.0128289 0.0128425 0.0128561 0.0128697 0.0128833 0.0128969 0.0129105 0.0129241 0.0129376 0.0129512 0.0129648 0.0129784 0.012992 0.0130056 0.0130192 +-0.0031934 -0.00284703 -0.0021632 -0.00112778 0.000127674 0.00150149 0.00293628 0.00439675 0.00585553 0.00728371 0.00863993 0.00985026 0.0107743 0.0112537 0.0113937 0.0114292 0.0114461 0.0114602 0.0114738 0.0114874 0.011501 0.0115146 0.0115282 0.0115418 0.0115554 0.011569 0.0115826 0.0115962 0.0116098 0.0116234 0.011637 0.0116506 0.0116642 0.0116778 0.0116914 0.011705 0.0117186 0.0117322 0.0117458 0.0117594 0.011773 0.0117866 0.0118002 0.0118138 0.0118274 0.011841 0.0118546 0.0118682 0.0118818 0.0118954 0.011909 0.0119226 0.0119362 0.0119498 0.0119634 0.011977 0.0119906 0.0120042 0.0120178 0.0120314 0.012045 0.0120586 0.0120722 0.0120858 0.0120994 0.012113 0.0121266 0.0121402 0.0121538 0.0121674 0.012181 0.0121946 0.0122082 0.0122218 0.0122354 0.012249 0.0122626 0.0122762 0.0122898 0.0123034 0.012317 0.0123306 0.0123442 0.0123578 0.0123714 0.012385 0.0123986 0.0124122 0.0124258 0.0124394 0.012453 0.0124666 0.0124802 0.0124938 0.0125074 0.012521 0.0125346 0.0125482 0.0125618 0.0125754 0.012589 0.0126026 0.0126162 0.0126298 0.0126434 0.012657 0.0126706 0.0126842 0.0126978 0.0127114 0.012725 0.0127386 0.0127522 0.0127658 0.0127794 0.012793 0.0128066 0.0128202 0.0128338 0.0128474 0.012861 0.0128746 0.0128882 0.0129018 0.0129154 0.012929 0.0129426 0.0129562 0.0129698 0.0129834 0.012997 0.0130106 0.0130242 +-0.00319478 -0.00284805 -0.00216372 -0.00112793 0.000127763 0.00150174 0.00293665 0.00439725 0.00585617 0.00728455 0.00864107 0.00985194 0.0107769 0.0112575 0.011398 0.0114336 0.0114505 0.0114646 0.0114782 0.0114919 0.0115055 0.0115191 0.0115327 0.0115463 0.0115599 0.0115735 0.0115871 0.0116007 0.0116143 0.0116279 0.0116415 0.0116551 0.0116687 0.0116823 0.0116959 0.0117095 0.0117232 0.0117368 0.0117504 0.011764 0.0117776 0.0117912 0.0118048 0.0118184 0.011832 0.0118456 0.0118592 0.0118728 0.0118864 0.0119 0.0119136 0.0119272 0.0119408 0.0119544 0.011968 0.0119817 0.0119953 0.0120089 0.0120225 0.0120361 0.0120497 0.0120633 0.0120769 0.0120905 0.0121041 0.0121177 0.0121313 0.0121449 0.0121585 0.0121721 0.0121857 0.0121993 0.0122129 0.0122266 0.0122402 0.0122538 0.0122674 0.012281 0.0122946 0.0123082 0.0123218 0.0123354 0.012349 0.0123626 0.0123762 0.0123898 0.0124034 0.012417 0.0124306 0.0124442 0.0124578 0.0124714 0.0124851 0.0124987 0.0125123 0.0125259 0.0125395 0.0125531 0.0125667 0.0125803 0.0125939 0.0126075 0.0126211 0.0126347 0.0126483 0.0126619 0.0126755 0.0126891 0.0127027 0.0127163 0.01273 0.0127436 0.0127572 0.0127708 0.0127844 0.012798 0.0128116 0.0128252 0.0128388 0.0128524 0.012866 0.0128796 0.0128932 0.0129068 0.0129204 0.012934 0.0129476 0.0129612 0.0129749 0.0129885 0.0130021 0.0130157 0.0130293 +-0.00319615 -0.00284906 -0.00216423 -0.00112807 0.000127851 0.00150198 0.00293702 0.00439774 0.00585681 0.00728538 0.00864221 0.00985361 0.0107796 0.0112613 0.0114023 0.0114379 0.0114549 0.011469 0.0114826 0.0114963 0.0115099 0.0115235 0.0115371 0.0115507 0.0115643 0.0115779 0.0115915 0.0116052 0.0116188 0.0116324 0.011646 0.0116596 0.0116732 0.0116868 0.0117004 0.011714 0.0117277 0.0117413 0.0117549 0.0117685 0.0117821 0.0117957 0.0118093 0.0118229 0.0118365 0.0118502 0.0118638 0.0118774 0.011891 0.0119046 0.0119182 0.0119318 0.0119454 0.011959 0.0119727 0.0119863 0.0119999 0.0120135 0.0120271 0.0120407 0.0120543 0.0120679 0.0120815 0.0120951 0.0121088 0.0121224 0.012136 0.0121496 0.0121632 0.0121768 0.0121904 0.012204 0.0122176 0.0122313 0.0122449 0.0122585 0.0122721 0.0122857 0.0122993 0.0123129 0.0123265 0.0123401 0.0123538 0.0123674 0.012381 0.0123946 0.0124082 0.0124218 0.0124354 0.012449 0.0124626 0.0124763 0.0124899 0.0125035 0.0125171 0.0125307 0.0125443 0.0125579 0.0125715 0.0125851 0.0125988 0.0126124 0.012626 0.0126396 0.0126532 0.0126668 0.0126804 0.012694 0.0127076 0.0127213 0.0127349 0.0127485 0.0127621 0.0127757 0.0127893 0.0128029 0.0128165 0.0128301 0.0128437 0.0128574 0.012871 0.0128846 0.0128982 0.0129118 0.0129254 0.012939 0.0129526 0.0129662 0.0129799 0.0129935 0.0130071 0.0130207 0.0130343 +-0.00319753 -0.00285008 -0.00216475 -0.00112821 0.000127939 0.00150223 0.00293739 0.00439824 0.00585745 0.00728621 0.00864335 0.00985529 0.0107822 0.011265 0.0114065 0.0114423 0.0114593 0.0114734 0.0114871 0.0115007 0.0115143 0.0115279 0.0115415 0.0115551 0.0115688 0.0115824 0.011596 0.0116096 0.0116232 0.0116368 0.0116505 0.0116641 0.0116777 0.0116913 0.0117049 0.0117185 0.0117322 0.0117458 0.0117594 0.011773 0.0117866 0.0118002 0.0118139 0.0118275 0.0118411 0.0118547 0.0118683 0.0118819 0.0118956 0.0119092 0.0119228 0.0119364 0.01195 0.0119636 0.0119773 0.0119909 0.0120045 0.0120181 0.0120317 0.0120453 0.012059 0.0120726 0.0120862 0.0120998 0.0121134 0.012127 0.0121406 0.0121543 0.0121679 0.0121815 0.0121951 0.0122087 0.0122223 0.012236 0.0122496 0.0122632 0.0122768 0.0122904 0.012304 0.0123177 0.0123313 0.0123449 0.0123585 0.0123721 0.0123857 0.0123994 0.012413 0.0124266 0.0124402 0.0124538 0.0124674 0.0124811 0.0124947 0.0125083 0.0125219 0.0125355 0.0125491 0.0125628 0.0125764 0.01259 0.0126036 0.0126172 0.0126308 0.0126445 0.0126581 0.0126717 0.0126853 0.0126989 0.0127125 0.0127262 0.0127398 0.0127534 0.012767 0.0127806 0.0127942 0.0128078 0.0128215 0.0128351 0.0128487 0.0128623 0.0128759 0.0128895 0.0129032 0.0129168 0.0129304 0.012944 0.0129576 0.0129712 0.0129849 0.0129985 0.0130121 0.0130257 0.0130393 +-0.0031989 -0.0028511 -0.00216526 -0.00112835 0.000128028 0.00150247 0.00293776 0.00439873 0.00585809 0.00728705 0.00864449 0.00985696 0.0107848 0.0112688 0.0114108 0.0114467 0.0114636 0.0114778 0.0114915 0.0115051 0.0115187 0.0115323 0.011546 0.0115596 0.0115732 0.0115868 0.0116004 0.0116141 0.0116277 0.0116413 0.0116549 0.0116686 0.0116822 0.0116958 0.0117094 0.011723 0.0117367 0.0117503 0.0117639 0.0117775 0.0117912 0.0118048 0.0118184 0.011832 0.0118456 0.0118593 0.0118729 0.0118865 0.0119001 0.0119137 0.0119274 0.011941 0.0119546 0.0119682 0.0119819 0.0119955 0.0120091 0.0120227 0.0120363 0.01205 0.0120636 0.0120772 0.0120908 0.0121045 0.0121181 0.0121317 0.0121453 0.0121589 0.0121726 0.0121862 0.0121998 0.0122134 0.012227 0.0122407 0.0122543 0.0122679 0.0122815 0.0122952 0.0123088 0.0123224 0.012336 0.0123496 0.0123633 0.0123769 0.0123905 0.0124041 0.0124178 0.0124314 0.012445 0.0124586 0.0124722 0.0124859 0.0124995 0.0125131 0.0125267 0.0125403 0.012554 0.0125676 0.0125812 0.0125948 0.0126085 0.0126221 0.0126357 0.0126493 0.0126629 0.0126766 0.0126902 0.0127038 0.0127174 0.0127311 0.0127447 0.0127583 0.0127719 0.0127855 0.0127992 0.0128128 0.0128264 0.01284 0.0128536 0.0128673 0.0128809 0.0128945 0.0129081 0.0129218 0.0129354 0.012949 0.0129626 0.0129762 0.0129899 0.0130035 0.0130171 0.0130307 0.0130444 +-0.00320028 -0.00285211 -0.00216578 -0.00112849 0.000128116 0.00150271 0.00293813 0.00439922 0.00585873 0.00728788 0.00864563 0.00985863 0.0107874 0.0112725 0.0114151 0.011451 0.011468 0.0114822 0.0114959 0.0115095 0.0115231 0.0115368 0.0115504 0.011564 0.0115776 0.0115913 0.0116049 0.0116185 0.0116321 0.0116458 0.0116594 0.011673 0.0116867 0.0117003 0.0117139 0.0117275 0.0117412 0.0117548 0.0117684 0.011782 0.0117957 0.0118093 0.0118229 0.0118366 0.0118502 0.0118638 0.0118774 0.0118911 0.0119047 0.0119183 0.0119319 0.0119456 0.0119592 0.0119728 0.0119865 0.0120001 0.0120137 0.0120273 0.012041 0.0120546 0.0120682 0.0120818 0.0120955 0.0121091 0.0121227 0.0121364 0.01215 0.0121636 0.0121772 0.0121909 0.0122045 0.0122181 0.0122317 0.0122454 0.012259 0.0122726 0.0122863 0.0122999 0.0123135 0.0123271 0.0123408 0.0123544 0.012368 0.0123816 0.0123953 0.0124089 0.0124225 0.0124362 0.0124498 0.0124634 0.012477 0.0124907 0.0125043 0.0125179 0.0125315 0.0125452 0.0125588 0.0125724 0.0125861 0.0125997 0.0126133 0.0126269 0.0126406 0.0126542 0.0126678 0.0126814 0.0126951 0.0127087 0.0127223 0.012736 0.0127496 0.0127632 0.0127768 0.0127905 0.0128041 0.0128177 0.0128313 0.012845 0.0128586 0.0128722 0.0128858 0.0128995 0.0129131 0.0129267 0.0129404 0.012954 0.0129676 0.0129812 0.0129949 0.0130085 0.0130221 0.0130357 0.0130494 +-0.00320165 -0.00285313 -0.00216629 -0.00112863 0.000128205 0.00150296 0.0029385 0.00439972 0.00585937 0.00728871 0.00864676 0.00986029 0.0107901 0.0112763 0.0114193 0.0114554 0.0114724 0.0114866 0.0115003 0.0115139 0.0115275 0.0115412 0.0115548 0.0115684 0.0115821 0.0115957 0.0116093 0.011623 0.0116366 0.0116502 0.0116639 0.0116775 0.0116911 0.0117048 0.0117184 0.011732 0.0117457 0.0117593 0.0117729 0.0117866 0.0118002 0.0118138 0.0118275 0.0118411 0.0118547 0.0118684 0.011882 0.0118956 0.0119093 0.0119229 0.0119365 0.0119502 0.0119638 0.0119774 0.0119911 0.0120047 0.0120183 0.012032 0.0120456 0.0120592 0.0120728 0.0120865 0.0121001 0.0121137 0.0121274 0.012141 0.0121546 0.0121683 0.0121819 0.0121955 0.0122092 0.0122228 0.0122364 0.0122501 0.0122637 0.0122773 0.012291 0.0123046 0.0123182 0.0123319 0.0123455 0.0123591 0.0123728 0.0123864 0.0124 0.0124137 0.0124273 0.0124409 0.0124546 0.0124682 0.0124818 0.0124955 0.0125091 0.0125227 0.0125364 0.01255 0.0125636 0.0125773 0.0125909 0.0126045 0.0126182 0.0126318 0.0126454 0.0126591 0.0126727 0.0126863 0.0127 0.0127136 0.0127272 0.0127408 0.0127545 0.0127681 0.0127817 0.0127954 0.012809 0.0128226 0.0128363 0.0128499 0.0128635 0.0128772 0.0128908 0.0129044 0.0129181 0.0129317 0.0129453 0.012959 0.0129726 0.0129862 0.0129999 0.0130135 0.0130271 0.0130408 0.0130544 +-0.00320303 -0.00285414 -0.00216681 -0.00112877 0.000128293 0.0015032 0.00293887 0.00440021 0.00586 0.00728954 0.00864789 0.00986196 0.0107927 0.01128 0.0114236 0.0114598 0.0114768 0.011491 0.0115047 0.0115183 0.011532 0.0115456 0.0115592 0.0115729 0.0115865 0.0116001 0.0116138 0.0116274 0.0116411 0.0116547 0.0116683 0.011682 0.0116956 0.0117093 0.0117229 0.0117365 0.0117502 0.0117638 0.0117774 0.0117911 0.0118047 0.0118184 0.011832 0.0118456 0.0118593 0.0118729 0.0118865 0.0119002 0.0119138 0.0119275 0.0119411 0.0119547 0.0119684 0.011982 0.0119957 0.0120093 0.0120229 0.0120366 0.0120502 0.0120638 0.0120775 0.0120911 0.0121048 0.0121184 0.012132 0.0121457 0.0121593 0.0121729 0.0121866 0.0122002 0.0122139 0.0122275 0.0122411 0.0122548 0.0122684 0.012282 0.0122957 0.0123093 0.012323 0.0123366 0.0123502 0.0123639 0.0123775 0.0123912 0.0124048 0.0124184 0.0124321 0.0124457 0.0124593 0.012473 0.0124866 0.0125003 0.0125139 0.0125275 0.0125412 0.0125548 0.0125684 0.0125821 0.0125957 0.0126094 0.012623 0.0126366 0.0126503 0.0126639 0.0126776 0.0126912 0.0127048 0.0127185 0.0127321 0.0127457 0.0127594 0.012773 0.0127867 0.0128003 0.0128139 0.0128276 0.0128412 0.0128548 0.0128685 0.0128821 0.0128958 0.0129094 0.012923 0.0129367 0.0129503 0.012964 0.0129776 0.0129912 0.0130049 0.0130185 0.0130321 0.0130458 0.0130594 +-0.0032044 -0.00285516 -0.00216732 -0.00112891 0.000128381 0.00150345 0.00293924 0.0044007 0.00586064 0.00729038 0.00864903 0.00986362 0.0107953 0.0112838 0.0114278 0.0114641 0.0114812 0.0114953 0.0115091 0.0115227 0.0115364 0.01155 0.0115637 0.0115773 0.0115909 0.0116046 0.0116182 0.0116319 0.0116455 0.0116592 0.0116728 0.0116864 0.0117001 0.0117137 0.0117274 0.011741 0.0117547 0.0117683 0.011782 0.0117956 0.0118092 0.0118229 0.0118365 0.0118502 0.0118638 0.0118775 0.0118911 0.0119047 0.0119184 0.011932 0.0119457 0.0119593 0.011973 0.0119866 0.0120002 0.0120139 0.0120275 0.0120412 0.0120548 0.0120685 0.0120821 0.0120958 0.0121094 0.012123 0.0121367 0.0121503 0.012164 0.0121776 0.0121913 0.0122049 0.0122185 0.0122322 0.0122458 0.0122595 0.0122731 0.0122868 0.0123004 0.012314 0.0123277 0.0123413 0.012355 0.0123686 0.0123823 0.0123959 0.0124096 0.0124232 0.0124368 0.0124505 0.0124641 0.0124778 0.0124914 0.0125051 0.0125187 0.0125323 0.012546 0.0125596 0.0125733 0.0125869 0.0126006 0.0126142 0.0126278 0.0126415 0.0126551 0.0126688 0.0126824 0.0126961 0.0127097 0.0127234 0.012737 0.0127506 0.0127643 0.0127779 0.0127916 0.0128052 0.0128189 0.0128325 0.0128461 0.0128598 0.0128734 0.0128871 0.0129007 0.0129144 0.012928 0.0129416 0.0129553 0.0129689 0.0129826 0.0129962 0.0130099 0.0130235 0.0130372 0.0130508 0.0130644 +-0.00320577 -0.00285617 -0.00216783 -0.00112905 0.00012847 0.00150369 0.00293961 0.0044012 0.00586128 0.00729121 0.00865016 0.00986528 0.0107979 0.0112875 0.0114321 0.0114685 0.0114856 0.0114997 0.0115135 0.0115271 0.0115408 0.0115544 0.0115681 0.0115817 0.0115954 0.011609 0.0116227 0.0116363 0.01165 0.0116636 0.0116773 0.0116909 0.0117046 0.0117182 0.0117319 0.0117455 0.0117592 0.0117728 0.0117865 0.0118001 0.0118138 0.0118274 0.0118411 0.0118547 0.0118684 0.011882 0.0118956 0.0119093 0.0119229 0.0119366 0.0119502 0.0119639 0.0119775 0.0119912 0.0120048 0.0120185 0.0120321 0.0120458 0.0120594 0.0120731 0.0120867 0.0121004 0.012114 0.0121277 0.0121413 0.012155 0.0121686 0.0121823 0.0121959 0.0122096 0.0122232 0.0122369 0.0122505 0.0122642 0.0122778 0.0122915 0.0123051 0.0123188 0.0123324 0.0123461 0.0123597 0.0123734 0.012387 0.0124007 0.0124143 0.012428 0.0124416 0.0124553 0.0124689 0.0124826 0.0124962 0.0125099 0.0125235 0.0125371 0.0125508 0.0125644 0.0125781 0.0125917 0.0126054 0.012619 0.0126327 0.0126463 0.01266 0.0126736 0.0126873 0.0127009 0.0127146 0.0127282 0.0127419 0.0127555 0.0127692 0.0127828 0.0127965 0.0128101 0.0128238 0.0128374 0.0128511 0.0128647 0.0128784 0.012892 0.0129057 0.0129193 0.012933 0.0129466 0.0129603 0.0129739 0.0129876 0.0130012 0.0130149 0.0130285 0.0130422 0.0130558 0.0130695 +-0.00320714 -0.00285718 -0.00216834 -0.00112919 0.000128558 0.00150393 0.00293998 0.00440169 0.00586191 0.00729203 0.00865129 0.00986694 0.0108005 0.0112913 0.0114364 0.0114729 0.01149 0.0115041 0.0115179 0.0115315 0.0115452 0.0115588 0.0115725 0.0115861 0.0115998 0.0116135 0.0116271 0.0116408 0.0116544 0.0116681 0.0116817 0.0116954 0.011709 0.0117227 0.0117363 0.01175 0.0117637 0.0117773 0.011791 0.0118046 0.0118183 0.0118319 0.0118456 0.0118592 0.0118729 0.0118865 0.0119002 0.0119139 0.0119275 0.0119412 0.0119548 0.0119685 0.0119821 0.0119958 0.0120094 0.0120231 0.0120367 0.0120504 0.0120641 0.0120777 0.0120914 0.012105 0.0121187 0.0121323 0.012146 0.0121596 0.0121733 0.0121869 0.0122006 0.0122143 0.0122279 0.0122416 0.0122552 0.0122689 0.0122825 0.0122962 0.0123098 0.0123235 0.0123371 0.0123508 0.0123644 0.0123781 0.0123918 0.0124054 0.0124191 0.0124327 0.0124464 0.01246 0.0124737 0.0124873 0.012501 0.0125146 0.0125283 0.012542 0.0125556 0.0125693 0.0125829 0.0125966 0.0126102 0.0126239 0.0126375 0.0126512 0.0126648 0.0126785 0.0126922 0.0127058 0.0127195 0.0127331 0.0127468 0.0127604 0.0127741 0.0127877 0.0128014 0.012815 0.0128287 0.0128424 0.012856 0.0128697 0.0128833 0.012897 0.0129106 0.0129243 0.0129379 0.0129516 0.0129652 0.0129789 0.0129925 0.0130062 0.0130199 0.0130335 0.0130472 0.0130608 0.0130745 +-0.00320852 -0.0028582 -0.00216885 -0.00112933 0.000128646 0.00150418 0.00294035 0.00440218 0.00586255 0.00729286 0.00865242 0.0098686 0.0108031 0.011295 0.0114406 0.0114772 0.0114944 0.0115085 0.0115223 0.0115359 0.0115496 0.0115633 0.0115769 0.0115906 0.0116042 0.0116179 0.0116316 0.0116452 0.0116589 0.0116725 0.0116862 0.0116999 0.0117135 0.0117272 0.0117408 0.0117545 0.0117682 0.0117818 0.0117955 0.0118091 0.0118228 0.0118364 0.0118501 0.0118638 0.0118774 0.0118911 0.0119047 0.0119184 0.0119321 0.0119457 0.0119594 0.011973 0.0119867 0.0120004 0.012014 0.0120277 0.0120413 0.012055 0.0120687 0.0120823 0.012096 0.0121096 0.0121233 0.012137 0.0121506 0.0121643 0.0121779 0.0121916 0.0122053 0.0122189 0.0122326 0.0122462 0.0122599 0.0122736 0.0122872 0.0123009 0.0123145 0.0123282 0.0123419 0.0123555 0.0123692 0.0123828 0.0123965 0.0124102 0.0124238 0.0124375 0.0124511 0.0124648 0.0124785 0.0124921 0.0125058 0.0125194 0.0125331 0.0125468 0.0125604 0.0125741 0.0125877 0.0126014 0.0126151 0.0126287 0.0126424 0.012656 0.0126697 0.0126834 0.012697 0.0127107 0.0127243 0.012738 0.0127517 0.0127653 0.012779 0.0127926 0.0128063 0.01282 0.0128336 0.0128473 0.0128609 0.0128746 0.0128883 0.0129019 0.0129156 0.0129292 0.0129429 0.0129566 0.0129702 0.0129839 0.0129975 0.0130112 0.0130249 0.0130385 0.0130522 0.0130658 0.0130795 +-0.00320989 -0.00285921 -0.00216937 -0.00112947 0.000128735 0.00150442 0.00294072 0.00440267 0.00586318 0.00729369 0.00865355 0.00987025 0.0108057 0.0112987 0.0114449 0.0114816 0.0114987 0.0115129 0.0115267 0.0115403 0.011554 0.0115677 0.0115813 0.011595 0.0116087 0.0116223 0.011636 0.0116497 0.0116633 0.011677 0.0116907 0.0117043 0.011718 0.0117316 0.0117453 0.011759 0.0117726 0.0117863 0.0118 0.0118136 0.0118273 0.011841 0.0118546 0.0118683 0.011882 0.0118956 0.0119093 0.011923 0.0119366 0.0119503 0.011964 0.0119776 0.0119913 0.012005 0.0120186 0.0120323 0.0120459 0.0120596 0.0120733 0.0120869 0.0121006 0.0121143 0.0121279 0.0121416 0.0121553 0.0121689 0.0121826 0.0121963 0.0122099 0.0122236 0.0122373 0.0122509 0.0122646 0.0122783 0.0122919 0.0123056 0.0123193 0.0123329 0.0123466 0.0123602 0.0123739 0.0123876 0.0124012 0.0124149 0.0124286 0.0124422 0.0124559 0.0124696 0.0124832 0.0124969 0.0125106 0.0125242 0.0125379 0.0125516 0.0125652 0.0125789 0.0125926 0.0126062 0.0126199 0.0126336 0.0126472 0.0126609 0.0126745 0.0126882 0.0127019 0.0127155 0.0127292 0.0127429 0.0127565 0.0127702 0.0127839 0.0127975 0.0128112 0.0128249 0.0128385 0.0128522 0.0128659 0.0128795 0.0128932 0.0129069 0.0129205 0.0129342 0.0129479 0.0129615 0.0129752 0.0129888 0.0130025 0.0130162 0.0130298 0.0130435 0.0130572 0.0130708 0.0130845 +-0.00321126 -0.00286022 -0.00216988 -0.00112961 0.000128823 0.00150466 0.00294109 0.00440316 0.00586381 0.00729452 0.00865467 0.00987191 0.0108083 0.0113025 0.0114491 0.0114859 0.0115031 0.0115173 0.0115311 0.0115447 0.0115584 0.0115721 0.0115857 0.0115994 0.0116131 0.0116268 0.0116404 0.0116541 0.0116678 0.0116814 0.0116951 0.0117088 0.0117225 0.0117361 0.0117498 0.0117635 0.0117771 0.0117908 0.0118045 0.0118181 0.0118318 0.0118455 0.0118592 0.0118728 0.0118865 0.0119002 0.0119138 0.0119275 0.0119412 0.0119549 0.0119685 0.0119822 0.0119959 0.0120095 0.0120232 0.0120369 0.0120505 0.0120642 0.0120779 0.0120916 0.0121052 0.0121189 0.0121326 0.0121462 0.0121599 0.0121736 0.0121873 0.0122009 0.0122146 0.0122283 0.0122419 0.0122556 0.0122693 0.012283 0.0122966 0.0123103 0.012324 0.0123376 0.0123513 0.012365 0.0123786 0.0123923 0.012406 0.0124197 0.0124333 0.012447 0.0124607 0.0124743 0.012488 0.0125017 0.0125154 0.012529 0.0125427 0.0125564 0.01257 0.0125837 0.0125974 0.012611 0.0126247 0.0126384 0.0126521 0.0126657 0.0126794 0.0126931 0.0127067 0.0127204 0.0127341 0.0127478 0.0127614 0.0127751 0.0127888 0.0128024 0.0128161 0.0128298 0.0128434 0.0128571 0.0128708 0.0128845 0.0128981 0.0129118 0.0129255 0.0129391 0.0129528 0.0129665 0.0129802 0.0129938 0.0130075 0.0130212 0.0130348 0.0130485 0.0130622 0.0130758 0.0130895 +-0.00321263 -0.00286123 -0.00217039 -0.00112975 0.000128912 0.00150491 0.00294146 0.00440366 0.00586445 0.00729534 0.0086558 0.00987356 0.0108109 0.0113062 0.0114534 0.0114903 0.0115075 0.0115217 0.0115354 0.0115491 0.0115628 0.0115765 0.0115902 0.0116038 0.0116175 0.0116312 0.0116449 0.0116585 0.0116722 0.0116859 0.0116996 0.0117132 0.0117269 0.0117406 0.0117543 0.011768 0.0117816 0.0117953 0.011809 0.0118227 0.0118363 0.01185 0.0118637 0.0118774 0.011891 0.0119047 0.0119184 0.0119321 0.0119457 0.0119594 0.0119731 0.0119868 0.0120004 0.0120141 0.0120278 0.0120415 0.0120551 0.0120688 0.0120825 0.0120962 0.0121099 0.0121235 0.0121372 0.0121509 0.0121646 0.0121782 0.0121919 0.0122056 0.0122193 0.0122329 0.0122466 0.0122603 0.012274 0.0122876 0.0123013 0.012315 0.0123287 0.0123423 0.012356 0.0123697 0.0123834 0.0123971 0.0124107 0.0124244 0.0124381 0.0124518 0.0124654 0.0124791 0.0124928 0.0125065 0.0125201 0.0125338 0.0125475 0.0125612 0.0125748 0.0125885 0.0126022 0.0126159 0.0126295 0.0126432 0.0126569 0.0126706 0.0126842 0.0126979 0.0127116 0.0127253 0.012739 0.0127526 0.0127663 0.01278 0.0127937 0.0128073 0.012821 0.0128347 0.0128484 0.012862 0.0128757 0.0128894 0.0129031 0.0129167 0.0129304 0.0129441 0.0129578 0.0129714 0.0129851 0.0129988 0.0130125 0.0130262 0.0130398 0.0130535 0.0130672 0.0130809 0.0130945 +-0.003214 -0.00286224 -0.00217089 -0.00112989 0.000129 0.00150515 0.00294182 0.00440415 0.00586508 0.00729617 0.00865692 0.0098752 0.0108135 0.0113099 0.0114576 0.0114947 0.0115119 0.0115261 0.0115398 0.0115535 0.0115672 0.0115809 0.0115946 0.0116083 0.0116219 0.0116356 0.0116493 0.011663 0.0116767 0.0116903 0.011704 0.0117177 0.0117314 0.0117451 0.0117588 0.0117724 0.0117861 0.0117998 0.0118135 0.0118272 0.0118408 0.0118545 0.0118682 0.0118819 0.0118956 0.0119093 0.0119229 0.0119366 0.0119503 0.011964 0.0119777 0.0119913 0.012005 0.0120187 0.0120324 0.0120461 0.0120597 0.0120734 0.0120871 0.0121008 0.0121145 0.0121282 0.0121418 0.0121555 0.0121692 0.0121829 0.0121966 0.0122102 0.0122239 0.0122376 0.0122513 0.012265 0.0122787 0.0122923 0.012306 0.0123197 0.0123334 0.0123471 0.0123607 0.0123744 0.0123881 0.0124018 0.0124155 0.0124291 0.0124428 0.0124565 0.0124702 0.0124839 0.0124976 0.0125112 0.0125249 0.0125386 0.0125523 0.012566 0.0125796 0.0125933 0.012607 0.0126207 0.0126344 0.0126481 0.0126617 0.0126754 0.0126891 0.0127028 0.0127165 0.0127301 0.0127438 0.0127575 0.0127712 0.0127849 0.0127985 0.0128122 0.0128259 0.0128396 0.0128533 0.012867 0.0128806 0.0128943 0.012908 0.0129217 0.0129354 0.012949 0.0129627 0.0129764 0.0129901 0.0130038 0.0130175 0.0130311 0.0130448 0.0130585 0.0130722 0.0130859 0.0130995 +-0.00321537 -0.00286325 -0.0021714 -0.00113003 0.000129089 0.00150539 0.00294219 0.00440464 0.00586571 0.00729699 0.00865804 0.00987685 0.0108161 0.0113136 0.0114618 0.011499 0.0115163 0.0115305 0.0115442 0.0115579 0.0115716 0.0115853 0.011599 0.0116127 0.0116264 0.01164 0.0116537 0.0116674 0.0116811 0.0116948 0.0117085 0.0117222 0.0117359 0.0117495 0.0117632 0.0117769 0.0117906 0.0118043 0.011818 0.0118317 0.0118454 0.011859 0.0118727 0.0118864 0.0119001 0.0119138 0.0119275 0.0119412 0.0119548 0.0119685 0.0119822 0.0119959 0.0120096 0.0120233 0.012037 0.0120507 0.0120643 0.012078 0.0120917 0.0121054 0.0121191 0.0121328 0.0121465 0.0121602 0.0121738 0.0121875 0.0122012 0.0122149 0.0122286 0.0122423 0.012256 0.0122696 0.0122833 0.012297 0.0123107 0.0123244 0.0123381 0.0123518 0.0123655 0.0123791 0.0123928 0.0124065 0.0124202 0.0124339 0.0124476 0.0124613 0.012475 0.0124886 0.0125023 0.012516 0.0125297 0.0125434 0.0125571 0.0125708 0.0125844 0.0125981 0.0126118 0.0126255 0.0126392 0.0126529 0.0126666 0.0126803 0.0126939 0.0127076 0.0127213 0.012735 0.0127487 0.0127624 0.0127761 0.0127898 0.0128034 0.0128171 0.0128308 0.0128445 0.0128582 0.0128719 0.0128856 0.0128992 0.0129129 0.0129266 0.0129403 0.012954 0.0129677 0.0129814 0.0129951 0.0130087 0.0130224 0.0130361 0.0130498 0.0130635 0.0130772 0.0130909 0.0131046 +-0.00321674 -0.00286425 -0.00217191 -0.00113017 0.000129177 0.00150563 0.00294256 0.00440513 0.00586635 0.00729782 0.00865917 0.0098785 0.0108187 0.0113173 0.0114661 0.0115034 0.0115206 0.0115348 0.0115486 0.0115623 0.011576 0.0115897 0.0116034 0.0116171 0.0116308 0.0116445 0.0116582 0.0116719 0.0116856 0.0116992 0.0117129 0.0117266 0.0117403 0.011754 0.0117677 0.0117814 0.0117951 0.0118088 0.0118225 0.0118362 0.0118499 0.0118636 0.0118772 0.0118909 0.0119046 0.0119183 0.011932 0.0119457 0.0119594 0.0119731 0.0119868 0.0120005 0.0120142 0.0120279 0.0120416 0.0120552 0.0120689 0.0120826 0.0120963 0.01211 0.0121237 0.0121374 0.0121511 0.0121648 0.0121785 0.0121922 0.0122059 0.0122196 0.0122332 0.0122469 0.0122606 0.0122743 0.012288 0.0123017 0.0123154 0.0123291 0.0123428 0.0123565 0.0123702 0.0123839 0.0123976 0.0124112 0.0124249 0.0124386 0.0124523 0.012466 0.0124797 0.0124934 0.0125071 0.0125208 0.0125345 0.0125482 0.0125619 0.0125756 0.0125892 0.0126029 0.0126166 0.0126303 0.012644 0.0126577 0.0126714 0.0126851 0.0126988 0.0127125 0.0127262 0.0127399 0.0127536 0.0127672 0.0127809 0.0127946 0.0128083 0.012822 0.0128357 0.0128494 0.0128631 0.0128768 0.0128905 0.0129042 0.0129179 0.0129316 0.0129452 0.0129589 0.0129726 0.0129863 0.013 0.0130137 0.0130274 0.0130411 0.0130548 0.0130685 0.0130822 0.0130959 0.0131096 +-0.0032181 -0.00286526 -0.00217242 -0.00113031 0.000129265 0.00150588 0.00294293 0.00440562 0.00586698 0.00729864 0.00866029 0.00988014 0.0108212 0.011321 0.0114703 0.0115077 0.011525 0.0115392 0.011553 0.0115667 0.0115804 0.0115941 0.0116078 0.0116215 0.0116352 0.0116489 0.0116626 0.0116763 0.01169 0.0117037 0.0117174 0.0117311 0.0117448 0.0117585 0.0117722 0.0117859 0.0117996 0.0118133 0.011827 0.0118407 0.0118544 0.0118681 0.0118818 0.0118955 0.0119092 0.0119229 0.0119366 0.0119503 0.011964 0.0119777 0.0119913 0.012005 0.0120187 0.0120324 0.0120461 0.0120598 0.0120735 0.0120872 0.0121009 0.0121146 0.0121283 0.012142 0.0121557 0.0121694 0.0121831 0.0121968 0.0122105 0.0122242 0.0122379 0.0122516 0.0122653 0.012279 0.0122927 0.0123064 0.0123201 0.0123338 0.0123475 0.0123612 0.0123749 0.0123886 0.0124023 0.012416 0.0124297 0.0124434 0.0124571 0.0124708 0.0124845 0.0124982 0.0125119 0.0125256 0.0125393 0.012553 0.0125667 0.0125804 0.012594 0.0126077 0.0126214 0.0126351 0.0126488 0.0126625 0.0126762 0.0126899 0.0127036 0.0127173 0.012731 0.0127447 0.0127584 0.0127721 0.0127858 0.0127995 0.0128132 0.0128269 0.0128406 0.0128543 0.012868 0.0128817 0.0128954 0.0129091 0.0129228 0.0129365 0.0129502 0.0129639 0.0129776 0.0129913 0.013005 0.0130187 0.0130324 0.0130461 0.0130598 0.0130735 0.0130872 0.0131009 0.0131146 +-0.00321947 -0.00286627 -0.00217293 -0.00113044 0.000129354 0.00150612 0.00294329 0.00440611 0.00586761 0.00729946 0.00866141 0.00988178 0.0108238 0.0113247 0.0114746 0.0115121 0.0115294 0.0115436 0.0115574 0.0115711 0.0115848 0.0115985 0.0116122 0.0116259 0.0116396 0.0116533 0.011667 0.0116807 0.0116944 0.0117081 0.0117218 0.0117355 0.0117493 0.011763 0.0117767 0.0117904 0.0118041 0.0118178 0.0118315 0.0118452 0.0118589 0.0118726 0.0118863 0.0119 0.0119137 0.0119274 0.0119411 0.0119548 0.0119685 0.0119822 0.0119959 0.0120096 0.0120233 0.012037 0.0120507 0.0120644 0.0120781 0.0120918 0.0121055 0.0121192 0.0121329 0.0121466 0.0121603 0.0121741 0.0121878 0.0122015 0.0122152 0.0122289 0.0122426 0.0122563 0.01227 0.0122837 0.0122974 0.0123111 0.0123248 0.0123385 0.0123522 0.0123659 0.0123796 0.0123933 0.012407 0.0124207 0.0124344 0.0124481 0.0124618 0.0124755 0.0124892 0.0125029 0.0125166 0.0125303 0.012544 0.0125577 0.0125714 0.0125851 0.0125988 0.0126126 0.0126263 0.01264 0.0126537 0.0126674 0.0126811 0.0126948 0.0127085 0.0127222 0.0127359 0.0127496 0.0127633 0.012777 0.0127907 0.0128044 0.0128181 0.0128318 0.0128455 0.0128592 0.0128729 0.0128866 0.0129003 0.012914 0.0129277 0.0129414 0.0129551 0.0129688 0.0129825 0.0129962 0.0130099 0.0130236 0.0130374 0.0130511 0.0130648 0.0130785 0.0130922 0.0131059 0.0131196 +-0.00322084 -0.00286727 -0.00217343 -0.00113058 0.000129442 0.00150636 0.00294366 0.0044066 0.00586824 0.00730029 0.00866252 0.00988341 0.0108264 0.0113285 0.0114788 0.0115164 0.0115337 0.011548 0.0115618 0.0115755 0.0115892 0.0116029 0.0116166 0.0116303 0.011644 0.0116578 0.0116715 0.0116852 0.0116989 0.0117126 0.0117263 0.01174 0.0117537 0.0117674 0.0117811 0.0117948 0.0118085 0.0118223 0.011836 0.0118497 0.0118634 0.0118771 0.0118908 0.0119045 0.0119182 0.0119319 0.0119456 0.0119593 0.0119731 0.0119868 0.0120005 0.0120142 0.0120279 0.0120416 0.0120553 0.012069 0.0120827 0.0120964 0.0121101 0.0121238 0.0121376 0.0121513 0.012165 0.0121787 0.0121924 0.0122061 0.0122198 0.0122335 0.0122472 0.0122609 0.0122746 0.0122883 0.0123021 0.0123158 0.0123295 0.0123432 0.0123569 0.0123706 0.0123843 0.012398 0.0124117 0.0124254 0.0124391 0.0124529 0.0124666 0.0124803 0.012494 0.0125077 0.0125214 0.0125351 0.0125488 0.0125625 0.0125762 0.0125899 0.0126036 0.0126174 0.0126311 0.0126448 0.0126585 0.0126722 0.0126859 0.0126996 0.0127133 0.012727 0.0127407 0.0127544 0.0127682 0.0127819 0.0127956 0.0128093 0.012823 0.0128367 0.0128504 0.0128641 0.0128778 0.0128915 0.0129052 0.0129189 0.0129327 0.0129464 0.0129601 0.0129738 0.0129875 0.0130012 0.0130149 0.0130286 0.0130423 0.013056 0.0130697 0.0130834 0.0130972 0.0131109 0.0131246 +-0.00322221 -0.00286828 -0.00217394 -0.00113072 0.000129531 0.0015066 0.00294403 0.00440708 0.00586887 0.00730111 0.00866364 0.00988505 0.0108289 0.0113322 0.011483 0.0115208 0.0115381 0.0115524 0.0115662 0.0115799 0.0115936 0.0116073 0.011621 0.0116347 0.0116485 0.0116622 0.0116759 0.0116896 0.0117033 0.011717 0.0117307 0.0117445 0.0117582 0.0117719 0.0117856 0.0117993 0.011813 0.0118267 0.0118405 0.0118542 0.0118679 0.0118816 0.0118953 0.011909 0.0119227 0.0119365 0.0119502 0.0119639 0.0119776 0.0119913 0.012005 0.0120187 0.0120325 0.0120462 0.0120599 0.0120736 0.0120873 0.012101 0.0121147 0.0121285 0.0121422 0.0121559 0.0121696 0.0121833 0.012197 0.0122107 0.0122245 0.0122382 0.0122519 0.0122656 0.0122793 0.012293 0.0123067 0.0123204 0.0123342 0.0123479 0.0123616 0.0123753 0.012389 0.0124027 0.0124164 0.0124302 0.0124439 0.0124576 0.0124713 0.012485 0.0124987 0.0125124 0.0125262 0.0125399 0.0125536 0.0125673 0.012581 0.0125947 0.0126084 0.0126222 0.0126359 0.0126496 0.0126633 0.012677 0.0126907 0.0127044 0.0127182 0.0127319 0.0127456 0.0127593 0.012773 0.0127867 0.0128004 0.0128142 0.0128279 0.0128416 0.0128553 0.012869 0.0128827 0.0128964 0.0129102 0.0129239 0.0129376 0.0129513 0.012965 0.0129787 0.0129924 0.0130062 0.0130199 0.0130336 0.0130473 0.013061 0.0130747 0.0130884 0.0131021 0.0131159 0.0131296 +-0.00322357 -0.00286928 -0.00217445 -0.00113086 0.000129619 0.00150684 0.0029444 0.00440757 0.0058695 0.00730193 0.00866476 0.00988668 0.0108315 0.0113359 0.0114873 0.0115251 0.0115425 0.0115568 0.0115705 0.0115843 0.011598 0.0116117 0.0116254 0.0116392 0.0116529 0.0116666 0.0116803 0.011694 0.0117078 0.0117215 0.0117352 0.0117489 0.0117626 0.0117764 0.0117901 0.0118038 0.0118175 0.0118312 0.011845 0.0118587 0.0118724 0.0118861 0.0118998 0.0119135 0.0119273 0.011941 0.0119547 0.0119684 0.0119821 0.0119959 0.0120096 0.0120233 0.012037 0.0120507 0.0120645 0.0120782 0.0120919 0.0121056 0.0121193 0.0121331 0.0121468 0.0121605 0.0121742 0.0121879 0.0122017 0.0122154 0.0122291 0.0122428 0.0122565 0.0122703 0.012284 0.0122977 0.0123114 0.0123251 0.0123389 0.0123526 0.0123663 0.01238 0.0123937 0.0124074 0.0124212 0.0124349 0.0124486 0.0124623 0.012476 0.0124898 0.0125035 0.0125172 0.0125309 0.0125446 0.0125584 0.0125721 0.0125858 0.0125995 0.0126132 0.012627 0.0126407 0.0126544 0.0126681 0.0126818 0.0126956 0.0127093 0.012723 0.0127367 0.0127504 0.0127642 0.0127779 0.0127916 0.0128053 0.012819 0.0128327 0.0128465 0.0128602 0.0128739 0.0128876 0.0129013 0.0129151 0.0129288 0.0129425 0.0129562 0.0129699 0.0129837 0.0129974 0.0130111 0.0130248 0.0130385 0.0130523 0.013066 0.0130797 0.0130934 0.0131071 0.0131209 0.0131346 +-0.00322494 -0.00287029 -0.00217495 -0.001131 0.000129708 0.00150709 0.00294476 0.00440806 0.00587013 0.00730275 0.00866587 0.00988832 0.0108341 0.0113396 0.0114915 0.0115295 0.0115469 0.0115611 0.0115749 0.0115887 0.0116024 0.0116161 0.0116298 0.0116436 0.0116573 0.011671 0.0116847 0.0116985 0.0117122 0.0117259 0.0117396 0.0117534 0.0117671 0.0117808 0.0117945 0.0118083 0.011822 0.0118357 0.0118494 0.0118632 0.0118769 0.0118906 0.0119043 0.0119181 0.0119318 0.0119455 0.0119592 0.011973 0.0119867 0.0120004 0.0120141 0.0120279 0.0120416 0.0120553 0.012069 0.0120828 0.0120965 0.0121102 0.0121239 0.0121377 0.0121514 0.0121651 0.0121788 0.0121926 0.0122063 0.01222 0.0122337 0.0122475 0.0122612 0.0122749 0.0122886 0.0123024 0.0123161 0.0123298 0.0123435 0.0123573 0.012371 0.0123847 0.0123984 0.0124122 0.0124259 0.0124396 0.0124533 0.0124671 0.0124808 0.0124945 0.0125082 0.012522 0.0125357 0.0125494 0.0125631 0.0125769 0.0125906 0.0126043 0.012618 0.0126318 0.0126455 0.0126592 0.0126729 0.0126867 0.0127004 0.0127141 0.0127278 0.0127416 0.0127553 0.012769 0.0127827 0.0127965 0.0128102 0.0128239 0.0128376 0.0128514 0.0128651 0.0128788 0.0128925 0.0129063 0.01292 0.0129337 0.0129474 0.0129612 0.0129749 0.0129886 0.0130023 0.0130161 0.0130298 0.0130435 0.0130572 0.013071 0.0130847 0.0130984 0.0131121 0.0131259 0.0131396 +-0.0032263 -0.00287129 -0.00217546 -0.00113113 0.000129796 0.00150733 0.00294513 0.00440855 0.00587076 0.00730357 0.00866698 0.00988994 0.0108366 0.0113432 0.0114957 0.0115338 0.0115512 0.0115655 0.0115793 0.0115931 0.0116068 0.0116205 0.0116342 0.011648 0.0116617 0.0116754 0.0116892 0.0117029 0.0117166 0.0117304 0.0117441 0.0117578 0.0117716 0.0117853 0.011799 0.0118127 0.0118265 0.0118402 0.0118539 0.0118677 0.0118814 0.0118951 0.0119089 0.0119226 0.0119363 0.01195 0.0119638 0.0119775 0.0119912 0.012005 0.0120187 0.0120324 0.0120462 0.0120599 0.0120736 0.0120873 0.0121011 0.0121148 0.0121285 0.0121423 0.012156 0.0121697 0.0121835 0.0121972 0.0122109 0.0122246 0.0122384 0.0122521 0.0122658 0.0122796 0.0122933 0.012307 0.0123208 0.0123345 0.0123482 0.012362 0.0123757 0.0123894 0.0124031 0.0124169 0.0124306 0.0124443 0.0124581 0.0124718 0.0124855 0.0124993 0.012513 0.0125267 0.0125404 0.0125542 0.0125679 0.0125816 0.0125954 0.0126091 0.0126228 0.0126366 0.0126503 0.012664 0.0126777 0.0126915 0.0127052 0.0127189 0.0127327 0.0127464 0.0127601 0.0127739 0.0127876 0.0128013 0.012815 0.0128288 0.0128425 0.0128562 0.01287 0.0128837 0.0128974 0.0129112 0.0129249 0.0129386 0.0129524 0.0129661 0.0129798 0.0129935 0.0130073 0.013021 0.0130347 0.0130485 0.0130622 0.0130759 0.0130897 0.0131034 0.0131171 0.0131308 0.0131446 +-0.00322767 -0.00287229 -0.00217596 -0.00113127 0.000129885 0.00150757 0.00294549 0.00440904 0.00587139 0.00730438 0.0086681 0.00989157 0.0108392 0.0113469 0.0115 0.0115382 0.0115556 0.0115699 0.0115837 0.0115974 0.0116112 0.0116249 0.0116387 0.0116524 0.0116661 0.0116799 0.0116936 0.0117073 0.0117211 0.0117348 0.0117485 0.0117623 0.011776 0.0117897 0.0118035 0.0118172 0.0118309 0.0118447 0.0118584 0.0118722 0.0118859 0.0118996 0.0119134 0.0119271 0.0119408 0.0119546 0.0119683 0.011982 0.0119958 0.0120095 0.0120232 0.012037 0.0120507 0.0120645 0.0120782 0.0120919 0.0121057 0.0121194 0.0121331 0.0121469 0.0121606 0.0121743 0.0121881 0.0122018 0.0122155 0.0122293 0.012243 0.0122568 0.0122705 0.0122842 0.012298 0.0123117 0.0123254 0.0123392 0.0123529 0.0123666 0.0123804 0.0123941 0.0124078 0.0124216 0.0124353 0.0124491 0.0124628 0.0124765 0.0124903 0.012504 0.0125177 0.0125315 0.0125452 0.0125589 0.0125727 0.0125864 0.0126001 0.0126139 0.0126276 0.0126414 0.0126551 0.0126688 0.0126826 0.0126963 0.01271 0.0127238 0.0127375 0.0127512 0.012765 0.0127787 0.0127924 0.0128062 0.0128199 0.0128337 0.0128474 0.0128611 0.0128749 0.0128886 0.0129023 0.0129161 0.0129298 0.0129435 0.0129573 0.012971 0.0129847 0.0129985 0.0130122 0.013026 0.0130397 0.0130534 0.0130672 0.0130809 0.0130946 0.0131084 0.0131221 0.0131358 0.0131496 +-0.00322903 -0.0028733 -0.00217646 -0.00113141 0.000129973 0.00150781 0.00294586 0.00440952 0.00587201 0.0073052 0.00866921 0.0098932 0.0108417 0.0113506 0.0115042 0.0115425 0.01156 0.0115743 0.0115881 0.0116018 0.0116156 0.0116293 0.0116431 0.0116568 0.0116705 0.0116843 0.011698 0.0117118 0.0117255 0.0117392 0.011753 0.0117667 0.0117805 0.0117942 0.0118079 0.0118217 0.0118354 0.0118492 0.0118629 0.0118766 0.0118904 0.0119041 0.0119179 0.0119316 0.0119454 0.0119591 0.0119728 0.0119866 0.0120003 0.0120141 0.0120278 0.0120415 0.0120553 0.012069 0.0120828 0.0120965 0.0121102 0.012124 0.0121377 0.0121515 0.0121652 0.012179 0.0121927 0.0122064 0.0122202 0.0122339 0.0122477 0.0122614 0.0122751 0.0122889 0.0123026 0.0123164 0.0123301 0.0123438 0.0123576 0.0123713 0.0123851 0.0123988 0.0124126 0.0124263 0.01244 0.0124538 0.0124675 0.0124813 0.012495 0.0125087 0.0125225 0.0125362 0.01255 0.0125637 0.0125774 0.0125912 0.0126049 0.0126187 0.0126324 0.0126461 0.0126599 0.0126736 0.0126874 0.0127011 0.0127149 0.0127286 0.0127423 0.0127561 0.0127698 0.0127836 0.0127973 0.012811 0.0128248 0.0128385 0.0128523 0.012866 0.0128797 0.0128935 0.0129072 0.012921 0.0129347 0.0129485 0.0129622 0.0129759 0.0129897 0.0130034 0.0130172 0.0130309 0.0130446 0.0130584 0.0130721 0.0130859 0.0130996 0.0131133 0.0131271 0.0131408 0.0131546 +-0.0032304 -0.0028743 -0.00217697 -0.00113154 0.000130061 0.00150805 0.00294622 0.00441001 0.00587264 0.00730602 0.00867032 0.00989482 0.0108443 0.0113543 0.0115084 0.0115468 0.0115643 0.0115786 0.0115925 0.0116062 0.01162 0.0116337 0.0116475 0.0116612 0.0116749 0.0116887 0.0117024 0.0117162 0.0117299 0.0117437 0.0117574 0.0117712 0.0117849 0.0117987 0.0118124 0.0118262 0.0118399 0.0118536 0.0118674 0.0118811 0.0118949 0.0119086 0.0119224 0.0119361 0.0119499 0.0119636 0.0119774 0.0119911 0.0120049 0.0120186 0.0120324 0.0120461 0.0120598 0.0120736 0.0120873 0.0121011 0.0121148 0.0121286 0.0121423 0.0121561 0.0121698 0.0121836 0.0121973 0.0122111 0.0122248 0.0122385 0.0122523 0.012266 0.0122798 0.0122935 0.0123073 0.012321 0.0123348 0.0123485 0.0123623 0.012376 0.0123898 0.0124035 0.0124173 0.012431 0.0124447 0.0124585 0.0124722 0.012486 0.0124997 0.0125135 0.0125272 0.012541 0.0125547 0.0125685 0.0125822 0.012596 0.0126097 0.0126235 0.0126372 0.0126509 0.0126647 0.0126784 0.0126922 0.0127059 0.0127197 0.0127334 0.0127472 0.0127609 0.0127747 0.0127884 0.0128022 0.0128159 0.0128296 0.0128434 0.0128571 0.0128709 0.0128846 0.0128984 0.0129121 0.0129259 0.0129396 0.0129534 0.0129671 0.0129809 0.0129946 0.0130084 0.0130221 0.0130358 0.0130496 0.0130633 0.0130771 0.0130908 0.0131046 0.0131183 0.0131321 0.0131458 0.0131596 +-0.00323176 -0.0028753 -0.00217747 -0.00113168 0.00013015 0.00150829 0.00294659 0.0044105 0.00587327 0.00730683 0.00867143 0.00989644 0.0108468 0.011358 0.0115126 0.0115512 0.0115687 0.011583 0.0115968 0.0116106 0.0116243 0.0116381 0.0116518 0.0116656 0.0116794 0.0116931 0.0117069 0.0117206 0.0117344 0.0117481 0.0117619 0.0117756 0.0117894 0.0118031 0.0118169 0.0118306 0.0118444 0.0118581 0.0118719 0.0118856 0.0118994 0.0119131 0.0119269 0.0119406 0.0119544 0.0119681 0.0119819 0.0119956 0.0120094 0.0120232 0.0120369 0.0120507 0.0120644 0.0120782 0.0120919 0.0121057 0.0121194 0.0121332 0.0121469 0.0121607 0.0121744 0.0121882 0.0122019 0.0122157 0.0122294 0.0122432 0.0122569 0.0122707 0.0122844 0.0122982 0.0123119 0.0123257 0.0123394 0.0123532 0.0123669 0.0123807 0.0123945 0.0124082 0.012422 0.0124357 0.0124495 0.0124632 0.012477 0.0124907 0.0125045 0.0125182 0.012532 0.0125457 0.0125595 0.0125732 0.012587 0.0126007 0.0126145 0.0126282 0.012642 0.0126557 0.0126695 0.0126832 0.012697 0.0127107 0.0127245 0.0127382 0.012752 0.0127658 0.0127795 0.0127933 0.012807 0.0128208 0.0128345 0.0128483 0.012862 0.0128758 0.0128895 0.0129033 0.012917 0.0129308 0.0129445 0.0129583 0.012972 0.0129858 0.0129995 0.0130133 0.013027 0.0130408 0.0130545 0.0130683 0.013082 0.0130958 0.0131095 0.0131233 0.0131371 0.0131508 0.0131646 +-0.00323312 -0.0028763 -0.00217797 -0.00113182 0.000130238 0.00150853 0.00294696 0.00441098 0.00587389 0.00730765 0.00867253 0.00989806 0.0108494 0.0113617 0.0115169 0.0115555 0.011573 0.0115874 0.0116012 0.011615 0.0116287 0.0116425 0.0116562 0.01167 0.0116838 0.0116975 0.0117113 0.011725 0.0117388 0.0117525 0.0117663 0.0117801 0.0117938 0.0118076 0.0118213 0.0118351 0.0118488 0.0118626 0.0118764 0.0118901 0.0119039 0.0119176 0.0119314 0.0119452 0.0119589 0.0119727 0.0119864 0.0120002 0.0120139 0.0120277 0.0120415 0.0120552 0.012069 0.0120827 0.0120965 0.0121102 0.012124 0.0121378 0.0121515 0.0121653 0.012179 0.0121928 0.0122065 0.0122203 0.0122341 0.0122478 0.0122616 0.0122753 0.0122891 0.0123028 0.0123166 0.0123304 0.0123441 0.0123579 0.0123716 0.0123854 0.0123991 0.0124129 0.0124267 0.0124404 0.0124542 0.0124679 0.0124817 0.0124954 0.0125092 0.012523 0.0125367 0.0125505 0.0125642 0.012578 0.0125917 0.0126055 0.0126193 0.012633 0.0126468 0.0126605 0.0126743 0.012688 0.0127018 0.0127156 0.0127293 0.0127431 0.0127568 0.0127706 0.0127843 0.0127981 0.0128119 0.0128256 0.0128394 0.0128531 0.0128669 0.0128806 0.0128944 0.0129082 0.0129219 0.0129357 0.0129494 0.0129632 0.0129769 0.0129907 0.0130045 0.0130182 0.013032 0.0130457 0.0130595 0.0130732 0.013087 0.0131008 0.0131145 0.0131283 0.013142 0.0131558 0.0131695 +-0.00323449 -0.0028773 -0.00217847 -0.00113195 0.000130327 0.00150878 0.00294732 0.00441147 0.00587452 0.00730846 0.00867364 0.00989967 0.0108519 0.0113653 0.0115211 0.0115599 0.0115774 0.0115917 0.0116056 0.0116194 0.0116331 0.0116469 0.0116606 0.0116744 0.0116882 0.0117019 0.0117157 0.0117295 0.0117432 0.011757 0.0117707 0.0117845 0.0117983 0.011812 0.0118258 0.0118396 0.0118533 0.0118671 0.0118808 0.0118946 0.0119084 0.0119221 0.0119359 0.0119497 0.0119634 0.0119772 0.0119909 0.0120047 0.0120185 0.0120322 0.012046 0.0120598 0.0120735 0.0120873 0.012101 0.0121148 0.0121286 0.0121423 0.0121561 0.0121699 0.0121836 0.0121974 0.0122112 0.0122249 0.0122387 0.0122524 0.0122662 0.01228 0.0122937 0.0123075 0.0123213 0.012335 0.0123488 0.0123625 0.0123763 0.0123901 0.0124038 0.0124176 0.0124314 0.0124451 0.0124589 0.0124726 0.0124864 0.0125002 0.0125139 0.0125277 0.0125415 0.0125552 0.012569 0.0125827 0.0125965 0.0126103 0.012624 0.0126378 0.0126516 0.0126653 0.0126791 0.0126928 0.0127066 0.0127204 0.0127341 0.0127479 0.0127617 0.0127754 0.0127892 0.0128029 0.0128167 0.0128305 0.0128442 0.012858 0.0128718 0.0128855 0.0128993 0.012913 0.0129268 0.0129406 0.0129543 0.0129681 0.0129819 0.0129956 0.0130094 0.0130231 0.0130369 0.0130507 0.0130644 0.0130782 0.013092 0.0131057 0.0131195 0.0131333 0.013147 0.0131608 0.0131745 +-0.00323585 -0.0028783 -0.00217897 -0.00113209 0.000130415 0.00150902 0.00294768 0.00441195 0.00587515 0.00730928 0.00867475 0.00990129 0.0108544 0.011369 0.0115253 0.0115642 0.0115818 0.0115961 0.01161 0.0116237 0.0116375 0.0116513 0.011665 0.0116788 0.0116926 0.0117063 0.0117201 0.0117339 0.0117476 0.0117614 0.0117752 0.011789 0.0118027 0.0118165 0.0118303 0.011844 0.0118578 0.0118716 0.0118853 0.0118991 0.0119129 0.0119266 0.0119404 0.0119542 0.0119679 0.0119817 0.0119955 0.0120092 0.012023 0.0120368 0.0120505 0.0120643 0.0120781 0.0120918 0.0121056 0.0121194 0.0121332 0.0121469 0.0121607 0.0121745 0.0121882 0.012202 0.0122158 0.0122295 0.0122433 0.0122571 0.0122708 0.0122846 0.0122984 0.0123121 0.0123259 0.0123397 0.0123534 0.0123672 0.012381 0.0123947 0.0124085 0.0124223 0.0124361 0.0124498 0.0124636 0.0124774 0.0124911 0.0125049 0.0125187 0.0125324 0.0125462 0.01256 0.0125737 0.0125875 0.0126013 0.012615 0.0126288 0.0126426 0.0126563 0.0126701 0.0126839 0.0126976 0.0127114 0.0127252 0.0127389 0.0127527 0.0127665 0.0127803 0.012794 0.0128078 0.0128216 0.0128353 0.0128491 0.0128629 0.0128766 0.0128904 0.0129042 0.0129179 0.0129317 0.0129455 0.0129592 0.012973 0.0129868 0.0130005 0.0130143 0.0130281 0.0130418 0.0130556 0.0130694 0.0130832 0.0130969 0.0131107 0.0131245 0.0131382 0.013152 0.0131658 0.0131795 +-0.00323721 -0.00287929 -0.00217948 -0.00113222 0.000130504 0.00150926 0.00294805 0.00441244 0.00587577 0.00731009 0.00867585 0.0099029 0.010857 0.0113727 0.0115295 0.0115685 0.0115861 0.0116005 0.0116143 0.0116281 0.0116419 0.0116557 0.0116694 0.0116832 0.011697 0.0117108 0.0117245 0.0117383 0.0117521 0.0117658 0.0117796 0.0117934 0.0118072 0.0118209 0.0118347 0.0118485 0.0118623 0.011876 0.0118898 0.0119036 0.0119174 0.0119311 0.0119449 0.0119587 0.0119724 0.0119862 0.012 0.0120138 0.0120275 0.0120413 0.0120551 0.0120689 0.0120826 0.0120964 0.0121102 0.012124 0.0121377 0.0121515 0.0121653 0.0121791 0.0121928 0.0122066 0.0122204 0.0122341 0.0122479 0.0122617 0.0122755 0.0122892 0.012303 0.0123168 0.0123306 0.0123443 0.0123581 0.0123719 0.0123857 0.0123994 0.0124132 0.012427 0.0124407 0.0124545 0.0124683 0.0124821 0.0124958 0.0125096 0.0125234 0.0125372 0.0125509 0.0125647 0.0125785 0.0125923 0.012606 0.0126198 0.0126336 0.0126474 0.0126611 0.0126749 0.0126887 0.0127024 0.0127162 0.01273 0.0127438 0.0127575 0.0127713 0.0127851 0.0127989 0.0128126 0.0128264 0.0128402 0.012854 0.0128677 0.0128815 0.0128953 0.012909 0.0129228 0.0129366 0.0129504 0.0129641 0.0129779 0.0129917 0.0130055 0.0130192 0.013033 0.0130468 0.0130606 0.0130743 0.0130881 0.0131019 0.0131156 0.0131294 0.0131432 0.013157 0.0131707 0.0131845 +-0.00323857 -0.00288029 -0.00217998 -0.00113236 0.000130592 0.0015095 0.00294841 0.00441292 0.0058764 0.0073109 0.00867695 0.00990451 0.0108595 0.0113763 0.0115337 0.0115729 0.0115905 0.0116048 0.0116187 0.0116325 0.0116463 0.01166 0.0116738 0.0116876 0.0117014 0.0117152 0.0117289 0.0117427 0.0117565 0.0117703 0.0117841 0.0117978 0.0118116 0.0118254 0.0118392 0.011853 0.0118667 0.0118805 0.0118943 0.0119081 0.0119218 0.0119356 0.0119494 0.0119632 0.011977 0.0119907 0.0120045 0.0120183 0.0120321 0.0120459 0.0120596 0.0120734 0.0120872 0.012101 0.0121147 0.0121285 0.0121423 0.0121561 0.0121699 0.0121836 0.0121974 0.0122112 0.012225 0.0122388 0.0122525 0.0122663 0.0122801 0.0122939 0.0123077 0.0123214 0.0123352 0.012349 0.0123628 0.0123765 0.0123903 0.0124041 0.0124179 0.0124317 0.0124454 0.0124592 0.012473 0.0124868 0.0125006 0.0125143 0.0125281 0.0125419 0.0125557 0.0125695 0.0125832 0.012597 0.0126108 0.0126246 0.0126383 0.0126521 0.0126659 0.0126797 0.0126935 0.0127072 0.012721 0.0127348 0.0127486 0.0127624 0.0127761 0.0127899 0.0128037 0.0128175 0.0128313 0.012845 0.0128588 0.0128726 0.0128864 0.0129001 0.0129139 0.0129277 0.0129415 0.0129553 0.012969 0.0129828 0.0129966 0.0130104 0.0130242 0.0130379 0.0130517 0.0130655 0.0130793 0.0130931 0.0131068 0.0131206 0.0131344 0.0131482 0.0131619 0.0131757 0.0131895 +-0.00323993 -0.00288129 -0.00218048 -0.00113249 0.000130681 0.00150974 0.00294878 0.00441341 0.00587702 0.00731172 0.00867805 0.00990612 0.010862 0.01138 0.0115379 0.0115772 0.0115948 0.0116092 0.0116231 0.0116369 0.0116506 0.0116644 0.0116782 0.011692 0.0117058 0.0117196 0.0117334 0.0117471 0.0117609 0.0117747 0.0117885 0.0118023 0.0118161 0.0118298 0.0118436 0.0118574 0.0118712 0.011885 0.0118988 0.0119125 0.0119263 0.0119401 0.0119539 0.0119677 0.0119815 0.0119953 0.012009 0.0120228 0.0120366 0.0120504 0.0120642 0.012078 0.0120917 0.0121055 0.0121193 0.0121331 0.0121469 0.0121607 0.0121745 0.0121882 0.012202 0.0122158 0.0122296 0.0122434 0.0122572 0.0122709 0.0122847 0.0122985 0.0123123 0.0123261 0.0123399 0.0123536 0.0123674 0.0123812 0.012395 0.0124088 0.0124226 0.0124364 0.0124501 0.0124639 0.0124777 0.0124915 0.0125053 0.0125191 0.0125328 0.0125466 0.0125604 0.0125742 0.012588 0.0126018 0.0126155 0.0126293 0.0126431 0.0126569 0.0126707 0.0126845 0.0126983 0.012712 0.0127258 0.0127396 0.0127534 0.0127672 0.012781 0.0127947 0.0128085 0.0128223 0.0128361 0.0128499 0.0128637 0.0128775 0.0128912 0.012905 0.0129188 0.0129326 0.0129464 0.0129602 0.0129739 0.0129877 0.0130015 0.0130153 0.0130291 0.0130429 0.0130566 0.0130704 0.0130842 0.013098 0.0131118 0.0131256 0.0131394 0.0131531 0.0131669 0.0131807 0.0131945 +-0.00324129 -0.00288228 -0.00218097 -0.00113263 0.000130769 0.00150999 0.00294914 0.00441389 0.00587764 0.00731253 0.00867915 0.00990773 0.0108645 0.0113837 0.0115421 0.0115815 0.0115992 0.0116136 0.0116274 0.0116412 0.011655 0.0116688 0.0116826 0.0116964 0.0117102 0.011724 0.0117378 0.0117516 0.0117653 0.0117791 0.0117929 0.0118067 0.0118205 0.0118343 0.0118481 0.0118619 0.0118757 0.0118895 0.0119032 0.011917 0.0119308 0.0119446 0.0119584 0.0119722 0.011986 0.0119998 0.0120136 0.0120273 0.0120411 0.0120549 0.0120687 0.0120825 0.0120963 0.0121101 0.0121239 0.0121377 0.0121515 0.0121652 0.012179 0.0121928 0.0122066 0.0122204 0.0122342 0.012248 0.0122618 0.0122756 0.0122894 0.0123031 0.0123169 0.0123307 0.0123445 0.0123583 0.0123721 0.0123859 0.0123997 0.0124135 0.0124273 0.012441 0.0124548 0.0124686 0.0124824 0.0124962 0.01251 0.0125238 0.0125376 0.0125514 0.0125651 0.0125789 0.0125927 0.0126065 0.0126203 0.0126341 0.0126479 0.0126617 0.0126755 0.0126893 0.012703 0.0127168 0.0127306 0.0127444 0.0127582 0.012772 0.0127858 0.0127996 0.0128134 0.0128272 0.0128409 0.0128547 0.0128685 0.0128823 0.0128961 0.0129099 0.0129237 0.0129375 0.0129513 0.012965 0.0129788 0.0129926 0.0130064 0.0130202 0.013034 0.0130478 0.0130616 0.0130754 0.0130892 0.0131029 0.0131167 0.0131305 0.0131443 0.0131581 0.0131719 0.0131857 0.0131995 +-0.00324265 -0.00288328 -0.00218147 -0.00113276 0.000130858 0.00151023 0.0029495 0.00441438 0.00587827 0.00731334 0.00868025 0.00990933 0.010867 0.0113873 0.0115464 0.0115859 0.0116036 0.0116179 0.0116318 0.0116456 0.0116594 0.0116732 0.011687 0.0117008 0.0117146 0.0117284 0.0117422 0.011756 0.0117698 0.0117836 0.0117974 0.0118112 0.0118249 0.0118387 0.0118525 0.0118663 0.0118801 0.0118939 0.0119077 0.0119215 0.0119353 0.0119491 0.0119629 0.0119767 0.0119905 0.0120043 0.0120181 0.0120319 0.0120457 0.0120595 0.0120733 0.0120871 0.0121008 0.0121146 0.0121284 0.0121422 0.012156 0.0121698 0.0121836 0.0121974 0.0122112 0.012225 0.0122388 0.0122526 0.0122664 0.0122802 0.012294 0.0123078 0.0123216 0.0123354 0.0123492 0.012363 0.0123768 0.0123905 0.0124043 0.0124181 0.0124319 0.0124457 0.0124595 0.0124733 0.0124871 0.0125009 0.0125147 0.0125285 0.0125423 0.0125561 0.0125699 0.0125837 0.0125975 0.0126113 0.0126251 0.0126389 0.0126527 0.0126664 0.0126802 0.012694 0.0127078 0.0127216 0.0127354 0.0127492 0.012763 0.0127768 0.0127906 0.0128044 0.0128182 0.012832 0.0128458 0.0128596 0.0128734 0.0128872 0.012901 0.0129148 0.0129286 0.0129423 0.0129561 0.0129699 0.0129837 0.0129975 0.0130113 0.0130251 0.0130389 0.0130527 0.0130665 0.0130803 0.0130941 0.0131079 0.0131217 0.0131355 0.0131493 0.0131631 0.0131769 0.0131907 0.0132045 +-0.00324401 -0.00288427 -0.00218197 -0.0011329 0.000130946 0.00151047 0.00294987 0.00441486 0.00587889 0.00731415 0.00868135 0.00991093 0.0108696 0.011391 0.0115506 0.0115902 0.0116079 0.0116223 0.0116362 0.01165 0.0116638 0.0116776 0.0116914 0.0117052 0.011719 0.0117328 0.0117466 0.0117604 0.0117742 0.011788 0.0118018 0.0118156 0.0118294 0.0118432 0.011857 0.0118708 0.0118846 0.0118984 0.0119122 0.011926 0.0119398 0.0119536 0.0119674 0.0119812 0.011995 0.0120088 0.0120226 0.0120364 0.0120502 0.012064 0.0120778 0.0120916 0.0121054 0.0121192 0.012133 0.0121468 0.0121606 0.0121744 0.0121882 0.012202 0.0122158 0.0122296 0.0122434 0.0122572 0.012271 0.0122848 0.0122986 0.0123124 0.0123262 0.01234 0.0123538 0.0123676 0.0123814 0.0123952 0.012409 0.0124228 0.0124366 0.0124504 0.0124642 0.012478 0.0124918 0.0125056 0.0125194 0.0125332 0.012547 0.0125608 0.0125746 0.0125884 0.0126022 0.012616 0.0126298 0.0126436 0.0126574 0.0126712 0.012685 0.0126988 0.0127126 0.0127264 0.0127402 0.012754 0.0127678 0.0127816 0.0127954 0.0128092 0.012823 0.0128368 0.0128506 0.0128644 0.0128782 0.012892 0.0129058 0.0129196 0.0129334 0.0129472 0.012961 0.0129748 0.0129886 0.0130024 0.0130162 0.01303 0.0130438 0.0130576 0.0130714 0.0130852 0.013099 0.0131128 0.0131266 0.0131404 0.0131542 0.013168 0.0131818 0.0131956 0.0132094 +-0.00324537 -0.00288527 -0.00218247 -0.00113303 0.000131035 0.00151071 0.00295023 0.00441534 0.00587951 0.00731496 0.00868245 0.00991253 0.0108721 0.0113946 0.0115548 0.0115945 0.0116123 0.0116266 0.0116405 0.0116544 0.0116682 0.011682 0.0116958 0.0117096 0.0117234 0.0117372 0.011751 0.0117648 0.0117786 0.0117924 0.0118062 0.01182 0.0118338 0.0118476 0.0118614 0.0118752 0.0118891 0.0119029 0.0119167 0.0119305 0.0119443 0.0119581 0.0119719 0.0119857 0.0119995 0.0120133 0.0120271 0.0120409 0.0120547 0.0120685 0.0120823 0.0120961 0.0121099 0.0121238 0.0121376 0.0121514 0.0121652 0.012179 0.0121928 0.0122066 0.0122204 0.0122342 0.012248 0.0122618 0.0122756 0.0122894 0.0123032 0.012317 0.0123308 0.0123446 0.0123585 0.0123723 0.0123861 0.0123999 0.0124137 0.0124275 0.0124413 0.0124551 0.0124689 0.0124827 0.0124965 0.0125103 0.0125241 0.0125379 0.0125517 0.0125655 0.0125793 0.0125932 0.012607 0.0126208 0.0126346 0.0126484 0.0126622 0.012676 0.0126898 0.0127036 0.0127174 0.0127312 0.012745 0.0127588 0.0127726 0.0127864 0.0128002 0.012814 0.0128279 0.0128417 0.0128555 0.0128693 0.0128831 0.0128969 0.0129107 0.0129245 0.0129383 0.0129521 0.0129659 0.0129797 0.0129935 0.0130073 0.0130211 0.0130349 0.0130487 0.0130626 0.0130764 0.0130902 0.013104 0.0131178 0.0131316 0.0131454 0.0131592 0.013173 0.0131868 0.0132006 0.0132144 +-0.00324673 -0.00288626 -0.00218297 -0.00113317 0.000131123 0.00151094 0.00295059 0.00441583 0.00588013 0.00731576 0.00868355 0.00991413 0.0108746 0.0113982 0.011559 0.0115988 0.0116166 0.011631 0.0116449 0.0116587 0.0116725 0.0116863 0.0117002 0.011714 0.0117278 0.0117416 0.0117554 0.0117692 0.011783 0.0117968 0.0118106 0.0118245 0.0118383 0.0118521 0.0118659 0.0118797 0.0118935 0.0119073 0.0119211 0.0119349 0.0119488 0.0119626 0.0119764 0.0119902 0.012004 0.0120178 0.0120316 0.0120454 0.0120593 0.0120731 0.0120869 0.0121007 0.0121145 0.0121283 0.0121421 0.0121559 0.0121697 0.0121836 0.0121974 0.0122112 0.012225 0.0122388 0.0122526 0.0122664 0.0122802 0.012294 0.0123079 0.0123217 0.0123355 0.0123493 0.0123631 0.0123769 0.0123907 0.0124045 0.0124183 0.0124322 0.012446 0.0124598 0.0124736 0.0124874 0.0125012 0.012515 0.0125288 0.0125426 0.0125565 0.0125703 0.0125841 0.0125979 0.0126117 0.0126255 0.0126393 0.0126531 0.0126669 0.0126808 0.0126946 0.0127084 0.0127222 0.012736 0.0127498 0.0127636 0.0127774 0.0127912 0.0128051 0.0128189 0.0128327 0.0128465 0.0128603 0.0128741 0.0128879 0.0129017 0.0129155 0.0129294 0.0129432 0.012957 0.0129708 0.0129846 0.0129984 0.0130122 0.013026 0.0130398 0.0130537 0.0130675 0.0130813 0.0130951 0.0131089 0.0131227 0.0131365 0.0131503 0.0131642 0.013178 0.0131918 0.0132056 0.0132194 +-0.00324808 -0.00288725 -0.00218346 -0.0011333 0.000131212 0.00151118 0.00295096 0.00441631 0.00588075 0.00731657 0.00868464 0.00991573 0.0108771 0.0114019 0.0115632 0.0116032 0.011621 0.0116354 0.0116493 0.0116631 0.0116769 0.0116907 0.0117045 0.0117184 0.0117322 0.011746 0.0117598 0.0117736 0.0117874 0.0118013 0.0118151 0.0118289 0.0118427 0.0118565 0.0118703 0.0118842 0.011898 0.0119118 0.0119256 0.0119394 0.0119532 0.0119671 0.0119809 0.0119947 0.0120085 0.0120223 0.0120361 0.01205 0.0120638 0.0120776 0.0120914 0.0121052 0.012119 0.0121329 0.0121467 0.0121605 0.0121743 0.0121881 0.0122019 0.0122158 0.0122296 0.0122434 0.0122572 0.012271 0.0122848 0.0122987 0.0123125 0.0123263 0.0123401 0.0123539 0.0123677 0.0123816 0.0123954 0.0124092 0.012423 0.0124368 0.0124506 0.0124645 0.0124783 0.0124921 0.0125059 0.0125197 0.0125335 0.0125474 0.0125612 0.012575 0.0125888 0.0126026 0.0126164 0.0126303 0.0126441 0.0126579 0.0126717 0.0126855 0.0126993 0.0127132 0.012727 0.0127408 0.0127546 0.0127684 0.0127822 0.0127961 0.0128099 0.0128237 0.0128375 0.0128513 0.0128651 0.012879 0.0128928 0.0129066 0.0129204 0.0129342 0.012948 0.0129619 0.0129757 0.0129895 0.0130033 0.0130171 0.0130309 0.0130448 0.0130586 0.0130724 0.0130862 0.0131 0.0131138 0.0131277 0.0131415 0.0131553 0.0131691 0.0131829 0.0131967 0.0132106 0.0132244 +-0.00324944 -0.00288824 -0.00218396 -0.00113343 0.000131301 0.00151142 0.00295132 0.00441679 0.00588137 0.00731738 0.00868573 0.00991732 0.0108796 0.0114055 0.0115674 0.0116075 0.0116253 0.0116397 0.0116536 0.0116675 0.0116813 0.0116951 0.0117089 0.0117227 0.0117366 0.0117504 0.0117642 0.011778 0.0117919 0.0118057 0.0118195 0.0118333 0.0118471 0.011861 0.0118748 0.0118886 0.0119024 0.0119163 0.0119301 0.0119439 0.0119577 0.0119715 0.0119854 0.0119992 0.012013 0.0120268 0.0120407 0.0120545 0.0120683 0.0120821 0.0120959 0.0121098 0.0121236 0.0121374 0.0121512 0.0121651 0.0121789 0.0121927 0.0122065 0.0122203 0.0122342 0.012248 0.0122618 0.0122756 0.0122895 0.0123033 0.0123171 0.0123309 0.0123447 0.0123586 0.0123724 0.0123862 0.0124 0.0124138 0.0124277 0.0124415 0.0124553 0.0124691 0.012483 0.0124968 0.0125106 0.0125244 0.0125382 0.0125521 0.0125659 0.0125797 0.0125935 0.0126074 0.0126212 0.012635 0.0126488 0.0126626 0.0126765 0.0126903 0.0127041 0.0127179 0.0127318 0.0127456 0.0127594 0.0127732 0.012787 0.0128009 0.0128147 0.0128285 0.0128423 0.0128562 0.01287 0.0128838 0.0128976 0.0129114 0.0129253 0.0129391 0.0129529 0.0129667 0.0129806 0.0129944 0.0130082 0.013022 0.0130358 0.0130497 0.0130635 0.0130773 0.0130911 0.013105 0.0131188 0.0131326 0.0131464 0.0131602 0.0131741 0.0131879 0.0132017 0.0132155 0.0132294 +-0.0032508 -0.00288923 -0.00218446 -0.00113357 0.000131389 0.00151166 0.00295168 0.00441727 0.00588199 0.00731818 0.00868683 0.00991891 0.0108821 0.0114092 0.0115716 0.0116118 0.0116296 0.0116441 0.011658 0.0116718 0.0116857 0.0116995 0.0117133 0.0117271 0.011741 0.0117548 0.0117686 0.0117824 0.0117963 0.0118101 0.0118239 0.0118378 0.0118516 0.0118654 0.0118792 0.0118931 0.0119069 0.0119207 0.0119345 0.0119484 0.0119622 0.011976 0.0119899 0.0120037 0.0120175 0.0120313 0.0120452 0.012059 0.0120728 0.0120866 0.0121005 0.0121143 0.0121281 0.012142 0.0121558 0.0121696 0.0121834 0.0121973 0.0122111 0.0122249 0.0122388 0.0122526 0.0122664 0.0122802 0.0122941 0.0123079 0.0123217 0.0123355 0.0123494 0.0123632 0.012377 0.0123909 0.0124047 0.0124185 0.0124323 0.0124462 0.01246 0.0124738 0.0124876 0.0125015 0.0125153 0.0125291 0.012543 0.0125568 0.0125706 0.0125844 0.0125983 0.0126121 0.0126259 0.0126397 0.0126536 0.0126674 0.0126812 0.0126951 0.0127089 0.0127227 0.0127365 0.0127504 0.0127642 0.012778 0.0127918 0.0128057 0.0128195 0.0128333 0.0128472 0.012861 0.0128748 0.0128886 0.0129025 0.0129163 0.0129301 0.0129439 0.0129578 0.0129716 0.0129854 0.0129993 0.0130131 0.0130269 0.0130407 0.0130546 0.0130684 0.0130822 0.0130961 0.0131099 0.0131237 0.0131375 0.0131514 0.0131652 0.013179 0.0131928 0.0132067 0.0132205 0.0132343 +-0.00325215 -0.00289022 -0.00218495 -0.0011337 0.000131478 0.0015119 0.00295204 0.00441776 0.00588261 0.00731899 0.00868792 0.00992051 0.0108846 0.0114128 0.0115758 0.0116161 0.011634 0.0116484 0.0116623 0.0116762 0.01169 0.0117039 0.0117177 0.0117315 0.0117454 0.0117592 0.011773 0.0117869 0.0118007 0.0118145 0.0118284 0.0118422 0.011856 0.0118698 0.0118837 0.0118975 0.0119113 0.0119252 0.011939 0.0119528 0.0119667 0.0119805 0.0119943 0.0120082 0.012022 0.0120358 0.0120497 0.0120635 0.0120773 0.0120912 0.012105 0.0121188 0.0121327 0.0121465 0.0121603 0.0121742 0.012188 0.0122018 0.0122157 0.0122295 0.0122433 0.0122572 0.012271 0.0122848 0.0122987 0.0123125 0.0123263 0.0123402 0.012354 0.0123678 0.0123817 0.0123955 0.0124093 0.0124232 0.012437 0.0124508 0.0124647 0.0124785 0.0124923 0.0125062 0.01252 0.0125338 0.0125477 0.0125615 0.0125753 0.0125892 0.012603 0.0126168 0.0126307 0.0126445 0.0126583 0.0126722 0.012686 0.0126998 0.0127137 0.0127275 0.0127413 0.0127552 0.012769 0.0127828 0.0127966 0.0128105 0.0128243 0.0128381 0.012852 0.0128658 0.0128796 0.0128935 0.0129073 0.0129211 0.012935 0.0129488 0.0129626 0.0129765 0.0129903 0.0130041 0.013018 0.0130318 0.0130456 0.0130595 0.0130733 0.0130871 0.013101 0.0131148 0.0131286 0.0131425 0.0131563 0.0131701 0.013184 0.0131978 0.0132116 0.0132255 0.0132393 +-0.00325351 -0.00289121 -0.00218545 -0.00113383 0.000131566 0.00151214 0.00295241 0.00441824 0.00588323 0.00731979 0.00868901 0.00992209 0.0108871 0.0114164 0.01158 0.0116205 0.0116383 0.0116528 0.0116667 0.0116806 0.0116944 0.0117082 0.0117221 0.0117359 0.0117497 0.0117636 0.0117774 0.0117913 0.0118051 0.0118189 0.0118328 0.0118466 0.0118605 0.0118743 0.0118881 0.011902 0.0119158 0.0119296 0.0119435 0.0119573 0.0119712 0.011985 0.0119988 0.0120127 0.0120265 0.0120403 0.0120542 0.012068 0.0120819 0.0120957 0.0121095 0.0121234 0.0121372 0.0121511 0.0121649 0.0121787 0.0121926 0.0122064 0.0122202 0.0122341 0.0122479 0.0122618 0.0122756 0.0122894 0.0123033 0.0123171 0.0123309 0.0123448 0.0123586 0.0123725 0.0123863 0.0124001 0.012414 0.0124278 0.0124417 0.0124555 0.0124693 0.0124832 0.012497 0.0125108 0.0125247 0.0125385 0.0125524 0.0125662 0.01258 0.0125939 0.0126077 0.0126216 0.0126354 0.0126492 0.0126631 0.0126769 0.0126907 0.0127046 0.0127184 0.0127323 0.0127461 0.0127599 0.0127738 0.0127876 0.0128014 0.0128153 0.0128291 0.012843 0.0128568 0.0128706 0.0128845 0.0128983 0.0129122 0.012926 0.0129398 0.0129537 0.0129675 0.0129813 0.0129952 0.013009 0.0130229 0.0130367 0.0130505 0.0130644 0.0130782 0.0130921 0.0131059 0.0131197 0.0131336 0.0131474 0.0131612 0.0131751 0.0131889 0.0132028 0.0132166 0.0132304 0.0132443 +-0.00325486 -0.0028922 -0.00218594 -0.00113397 0.000131655 0.00151238 0.00295277 0.00441872 0.00588385 0.0073206 0.0086901 0.00992368 0.0108895 0.01142 0.0115842 0.0116248 0.0116427 0.0116571 0.0116711 0.0116849 0.0116988 0.0117126 0.0117264 0.0117403 0.0117541 0.011768 0.0117818 0.0117957 0.0118095 0.0118234 0.0118372 0.011851 0.0118649 0.0118787 0.0118926 0.0119064 0.0119203 0.0119341 0.0119479 0.0119618 0.0119756 0.0119895 0.0120033 0.0120172 0.012031 0.0120449 0.0120587 0.0120725 0.0120864 0.0121002 0.0121141 0.0121279 0.0121418 0.0121556 0.0121694 0.0121833 0.0121971 0.012211 0.0122248 0.0122387 0.0122525 0.0122663 0.0122802 0.012294 0.0123079 0.0123217 0.0123356 0.0123494 0.0123633 0.0123771 0.0123909 0.0124048 0.0124186 0.0124325 0.0124463 0.0124602 0.012474 0.0124878 0.0125017 0.0125155 0.0125294 0.0125432 0.0125571 0.0125709 0.0125847 0.0125986 0.0126124 0.0126263 0.0126401 0.012654 0.0126678 0.0126817 0.0126955 0.0127093 0.0127232 0.012737 0.0127509 0.0127647 0.0127786 0.0127924 0.0128062 0.0128201 0.0128339 0.0128478 0.0128616 0.0128755 0.0128893 0.0129032 0.012917 0.0129308 0.0129447 0.0129585 0.0129724 0.0129862 0.0130001 0.0130139 0.0130277 0.0130416 0.0130554 0.0130693 0.0130831 0.013097 0.0131108 0.0131246 0.0131385 0.0131523 0.0131662 0.01318 0.0131939 0.0132077 0.0132216 0.0132354 0.0132492 +-0.00325622 -0.00289319 -0.00218643 -0.0011341 0.000131743 0.00151262 0.00295313 0.0044192 0.00588447 0.0073214 0.00869119 0.00992526 0.010892 0.0114237 0.0115884 0.0116291 0.011647 0.0116615 0.0116754 0.0116893 0.0117031 0.011717 0.0117308 0.0117447 0.0117585 0.0117724 0.0117862 0.0118001 0.0118139 0.0118278 0.0118416 0.0118555 0.0118693 0.0118832 0.011897 0.0119109 0.0119247 0.0119386 0.0119524 0.0119663 0.0119801 0.011994 0.0120078 0.0120217 0.0120355 0.0120494 0.0120632 0.012077 0.0120909 0.0121047 0.0121186 0.0121324 0.0121463 0.0121601 0.012174 0.0121878 0.0122017 0.0122155 0.0122294 0.0122432 0.0122571 0.0122709 0.0122848 0.0122986 0.0123125 0.0123263 0.0123402 0.012354 0.0123679 0.0123817 0.0123956 0.0124094 0.0124233 0.0124371 0.012451 0.0124648 0.0124787 0.0124925 0.0125064 0.0125202 0.0125341 0.0125479 0.0125618 0.0125756 0.0125895 0.0126033 0.0126172 0.012631 0.0126449 0.0126587 0.0126726 0.0126864 0.0127003 0.0127141 0.012728 0.0127418 0.0127556 0.0127695 0.0127833 0.0127972 0.012811 0.0128249 0.0128387 0.0128526 0.0128664 0.0128803 0.0128941 0.012908 0.0129218 0.0129357 0.0129495 0.0129634 0.0129772 0.0129911 0.0130049 0.0130188 0.0130326 0.0130465 0.0130603 0.0130742 0.013088 0.0131019 0.0131157 0.0131296 0.0131434 0.0131573 0.0131711 0.013185 0.0131988 0.0132127 0.0132265 0.0132404 0.0132542 +-0.00325757 -0.00289418 -0.00218693 -0.00113423 0.000131832 0.00151286 0.00295349 0.00441968 0.00588509 0.0073222 0.00869227 0.00992685 0.0108945 0.0114273 0.0115925 0.0116334 0.0116514 0.0116658 0.0116798 0.0116936 0.0117075 0.0117213 0.0117352 0.0117491 0.0117629 0.0117768 0.0117906 0.0118045 0.0118183 0.0118322 0.011846 0.0118599 0.0118737 0.0118876 0.0119015 0.0119153 0.0119292 0.011943 0.0119569 0.0119707 0.0119846 0.0119984 0.0120123 0.0120261 0.01204 0.0120539 0.0120677 0.0120816 0.0120954 0.0121093 0.0121231 0.012137 0.0121508 0.0121647 0.0121785 0.0121924 0.0122062 0.0122201 0.012234 0.0122478 0.0122617 0.0122755 0.0122894 0.0123032 0.0123171 0.0123309 0.0123448 0.0123586 0.0123725 0.0123864 0.0124002 0.0124141 0.0124279 0.0124418 0.0124556 0.0124695 0.0124833 0.0124972 0.012511 0.0125249 0.0125388 0.0125526 0.0125665 0.0125803 0.0125942 0.012608 0.0126219 0.0126357 0.0126496 0.0126634 0.0126773 0.0126912 0.012705 0.0127189 0.0127327 0.0127466 0.0127604 0.0127743 0.0127881 0.012802 0.0128158 0.0128297 0.0128435 0.0128574 0.0128713 0.0128851 0.012899 0.0129128 0.0129267 0.0129405 0.0129544 0.0129682 0.0129821 0.0129959 0.0130098 0.0130237 0.0130375 0.0130514 0.0130652 0.0130791 0.0130929 0.0131068 0.0131206 0.0131345 0.0131483 0.0131622 0.0131761 0.0131899 0.0132038 0.0132176 0.0132315 0.0132453 0.0132592 +-0.00325892 -0.00289517 -0.00218742 -0.00113437 0.00013192 0.0015131 0.00295385 0.00442016 0.00588571 0.00732301 0.00869336 0.00992843 0.010897 0.0114309 0.0115967 0.0116377 0.0116557 0.0116702 0.0116841 0.011698 0.0117119 0.0117257 0.0117396 0.0117534 0.0117673 0.0117812 0.011795 0.0118089 0.0118227 0.0118366 0.0118505 0.0118643 0.0118782 0.011892 0.0119059 0.0119198 0.0119336 0.0119475 0.0119613 0.0119752 0.0119891 0.0120029 0.0120168 0.0120306 0.0120445 0.0120584 0.0120722 0.0120861 0.0120999 0.0121138 0.0121276 0.0121415 0.0121554 0.0121692 0.0121831 0.0121969 0.0122108 0.0122247 0.0122385 0.0122524 0.0122662 0.0122801 0.012294 0.0123078 0.0123217 0.0123355 0.0123494 0.0123633 0.0123771 0.012391 0.0124048 0.0124187 0.0124326 0.0124464 0.0124603 0.0124741 0.012488 0.0125019 0.0125157 0.0125296 0.0125434 0.0125573 0.0125712 0.012585 0.0125989 0.0126127 0.0126266 0.0126405 0.0126543 0.0126682 0.012682 0.0126959 0.0127098 0.0127236 0.0127375 0.0127513 0.0127652 0.0127791 0.0127929 0.0128068 0.0128206 0.0128345 0.0128484 0.0128622 0.0128761 0.0128899 0.0129038 0.0129177 0.0129315 0.0129454 0.0129592 0.0129731 0.012987 0.0130008 0.0130147 0.0130285 0.0130424 0.0130563 0.0130701 0.013084 0.0130978 0.0131117 0.0131256 0.0131394 0.0131533 0.0131671 0.013181 0.0131948 0.0132087 0.0132226 0.0132364 0.0132503 0.0132641 +-0.00326028 -0.00289615 -0.00218791 -0.0011345 0.000132009 0.00151334 0.00295421 0.00442064 0.00588632 0.00732381 0.00869444 0.00993001 0.0108994 0.0114345 0.0116009 0.011642 0.01166 0.0116745 0.0116885 0.0117024 0.0117162 0.0117301 0.011744 0.0117578 0.0117717 0.0117855 0.0117994 0.0118133 0.0118271 0.011841 0.0118549 0.0118687 0.0118826 0.0118965 0.0119103 0.0119242 0.0119381 0.0119519 0.0119658 0.0119797 0.0119935 0.0120074 0.0120213 0.0120351 0.012049 0.0120628 0.0120767 0.0120906 0.0121044 0.0121183 0.0121322 0.012146 0.0121599 0.0121738 0.0121876 0.0122015 0.0122154 0.0122292 0.0122431 0.012257 0.0122708 0.0122847 0.0122986 0.0123124 0.0123263 0.0123402 0.012354 0.0123679 0.0123817 0.0123956 0.0124095 0.0124233 0.0124372 0.0124511 0.0124649 0.0124788 0.0124927 0.0125065 0.0125204 0.0125343 0.0125481 0.012562 0.0125759 0.0125897 0.0126036 0.0126175 0.0126313 0.0126452 0.012659 0.0126729 0.0126868 0.0127006 0.0127145 0.0127284 0.0127422 0.0127561 0.01277 0.0127838 0.0127977 0.0128116 0.0128254 0.0128393 0.0128532 0.012867 0.0128809 0.0128948 0.0129086 0.0129225 0.0129364 0.0129502 0.0129641 0.0129779 0.0129918 0.0130057 0.0130195 0.0130334 0.0130473 0.0130611 0.013075 0.0130889 0.0131027 0.0131166 0.0131305 0.0131443 0.0131582 0.0131721 0.0131859 0.0131998 0.0132137 0.0132275 0.0132414 0.0132552 0.0132691 +-0.00326163 -0.00289714 -0.0021884 -0.00113463 0.000132098 0.00151358 0.00295457 0.00442112 0.00588694 0.00732461 0.00869553 0.00993158 0.0109019 0.0114381 0.0116051 0.0116463 0.0116644 0.0116789 0.0116928 0.0117067 0.0117206 0.0117345 0.0117483 0.0117622 0.0117761 0.0117899 0.0118038 0.0118177 0.0118315 0.0118454 0.0118593 0.0118732 0.011887 0.0119009 0.0119148 0.0119286 0.0119425 0.0119564 0.0119703 0.0119841 0.011998 0.0120119 0.0120257 0.0120396 0.0120535 0.0120673 0.0120812 0.0120951 0.012109 0.0121228 0.0121367 0.0121506 0.0121644 0.0121783 0.0121922 0.0122061 0.0122199 0.0122338 0.0122477 0.0122615 0.0122754 0.0122893 0.0123031 0.012317 0.0123309 0.0123448 0.0123586 0.0123725 0.0123864 0.0124002 0.0124141 0.012428 0.0124418 0.0124557 0.0124696 0.0124835 0.0124973 0.0125112 0.0125251 0.0125389 0.0125528 0.0125667 0.0125806 0.0125944 0.0126083 0.0126222 0.012636 0.0126499 0.0126638 0.0126776 0.0126915 0.0127054 0.0127193 0.0127331 0.012747 0.0127609 0.0127747 0.0127886 0.0128025 0.0128164 0.0128302 0.0128441 0.012858 0.0128718 0.0128857 0.0128996 0.0129134 0.0129273 0.0129412 0.0129551 0.0129689 0.0129828 0.0129967 0.0130105 0.0130244 0.0130383 0.0130522 0.013066 0.0130799 0.0130938 0.0131076 0.0131215 0.0131354 0.0131492 0.0131631 0.013177 0.0131909 0.0132047 0.0132186 0.0132325 0.0132463 0.0132602 0.0132741 +-0.00326298 -0.00289812 -0.0021889 -0.00113476 0.000132186 0.00151381 0.00295493 0.0044216 0.00588756 0.00732541 0.00869661 0.00993316 0.0109044 0.0114417 0.0116093 0.0116507 0.0116687 0.0116832 0.0116972 0.0117111 0.0117249 0.0117388 0.0117527 0.0117666 0.0117804 0.0117943 0.0118082 0.0118221 0.011836 0.0118498 0.0118637 0.0118776 0.0118915 0.0119053 0.0119192 0.0119331 0.011947 0.0119608 0.0119747 0.0119886 0.0120025 0.0120163 0.0120302 0.0120441 0.012058 0.0120718 0.0120857 0.0120996 0.0121135 0.0121273 0.0121412 0.0121551 0.012169 0.0121828 0.0121967 0.0122106 0.0122245 0.0122384 0.0122522 0.0122661 0.01228 0.0122939 0.0123077 0.0123216 0.0123355 0.0123494 0.0123632 0.0123771 0.012391 0.0124049 0.0124187 0.0124326 0.0124465 0.0124604 0.0124742 0.0124881 0.012502 0.0125159 0.0125297 0.0125436 0.0125575 0.0125714 0.0125852 0.0125991 0.012613 0.0126269 0.0126408 0.0126546 0.0126685 0.0126824 0.0126963 0.0127101 0.012724 0.0127379 0.0127518 0.0127656 0.0127795 0.0127934 0.0128073 0.0128211 0.012835 0.0128489 0.0128628 0.0128766 0.0128905 0.0129044 0.0129183 0.0129321 0.012946 0.0129599 0.0129738 0.0129876 0.0130015 0.0130154 0.0130293 0.0130432 0.013057 0.0130709 0.0130848 0.0130987 0.0131125 0.0131264 0.0131403 0.0131542 0.013168 0.0131819 0.0131958 0.0132097 0.0132235 0.0132374 0.0132513 0.0132652 0.013279 +-0.00326433 -0.00289911 -0.00218939 -0.00113489 0.000132275 0.00151405 0.00295529 0.00442208 0.00588817 0.00732621 0.00869769 0.00993473 0.0109068 0.0114453 0.0116135 0.011655 0.0116731 0.0116876 0.0117015 0.0117154 0.0117293 0.0117432 0.0117571 0.0117709 0.0117848 0.0117987 0.0118126 0.0118265 0.0118404 0.0118542 0.0118681 0.011882 0.0118959 0.0119098 0.0119236 0.0119375 0.0119514 0.0119653 0.0119792 0.011993 0.0120069 0.0120208 0.0120347 0.0120486 0.0120625 0.0120763 0.0120902 0.0121041 0.012118 0.0121319 0.0121457 0.0121596 0.0121735 0.0121874 0.0122013 0.0122151 0.012229 0.0122429 0.0122568 0.0122707 0.0122846 0.0122984 0.0123123 0.0123262 0.0123401 0.012354 0.0123678 0.0123817 0.0123956 0.0124095 0.0124234 0.0124372 0.0124511 0.012465 0.0124789 0.0124928 0.0125067 0.0125205 0.0125344 0.0125483 0.0125622 0.0125761 0.0125899 0.0126038 0.0126177 0.0126316 0.0126455 0.0126593 0.0126732 0.0126871 0.012701 0.0127149 0.0127288 0.0127426 0.0127565 0.0127704 0.0127843 0.0127982 0.012812 0.0128259 0.0128398 0.0128537 0.0128676 0.0128814 0.0128953 0.0129092 0.0129231 0.012937 0.0129509 0.0129647 0.0129786 0.0129925 0.0130064 0.0130203 0.0130341 0.013048 0.0130619 0.0130758 0.0130897 0.0131035 0.0131174 0.0131313 0.0131452 0.0131591 0.013173 0.0131868 0.0132007 0.0132146 0.0132285 0.0132424 0.0132562 0.0132701 0.013284 +-0.00326568 -0.00290009 -0.00218988 -0.00113502 0.000132363 0.00151429 0.00295565 0.00442255 0.00588879 0.00732701 0.00869877 0.0099363 0.0109093 0.0114489 0.0116176 0.0116593 0.0116774 0.0116919 0.0117059 0.0117198 0.0117337 0.0117476 0.0117614 0.0117753 0.0117892 0.0118031 0.011817 0.0118309 0.0118448 0.0118586 0.0118725 0.0118864 0.0119003 0.0119142 0.0119281 0.011942 0.0119558 0.0119697 0.0119836 0.0119975 0.0120114 0.0120253 0.0120392 0.0120531 0.0120669 0.0120808 0.0120947 0.0121086 0.0121225 0.0121364 0.0121503 0.0121641 0.012178 0.0121919 0.0122058 0.0122197 0.0122336 0.0122475 0.0122614 0.0122752 0.0122891 0.012303 0.0123169 0.0123308 0.0123447 0.0123586 0.0123724 0.0123863 0.0124002 0.0124141 0.012428 0.0124419 0.0124558 0.0124697 0.0124835 0.0124974 0.0125113 0.0125252 0.0125391 0.012553 0.0125669 0.0125807 0.0125946 0.0126085 0.0126224 0.0126363 0.0126502 0.0126641 0.012678 0.0126918 0.0127057 0.0127196 0.0127335 0.0127474 0.0127613 0.0127752 0.012789 0.0128029 0.0128168 0.0128307 0.0128446 0.0128585 0.0128724 0.0128863 0.0129001 0.012914 0.0129279 0.0129418 0.0129557 0.0129696 0.0129835 0.0129973 0.0130112 0.0130251 0.013039 0.0130529 0.0130668 0.0130807 0.0130946 0.0131084 0.0131223 0.0131362 0.0131501 0.013164 0.0131779 0.0131918 0.0132056 0.0132195 0.0132334 0.0132473 0.0132612 0.0132751 0.013289 +-0.00326704 -0.00290107 -0.00219037 -0.00113516 0.000132452 0.00151453 0.00295601 0.00442303 0.0058894 0.0073278 0.00869985 0.00993787 0.0109118 0.0114525 0.0116218 0.0116636 0.0116817 0.0116962 0.0117102 0.0117241 0.011738 0.0117519 0.0117658 0.0117797 0.0117936 0.0118075 0.0118214 0.0118353 0.0118492 0.011863 0.0118769 0.0118908 0.0119047 0.0119186 0.0119325 0.0119464 0.0119603 0.0119742 0.0119881 0.012002 0.0120159 0.0120298 0.0120436 0.0120575 0.0120714 0.0120853 0.0120992 0.0121131 0.012127 0.0121409 0.0121548 0.0121687 0.0121826 0.0121965 0.0122103 0.0122242 0.0122381 0.012252 0.0122659 0.0122798 0.0122937 0.0123076 0.0123215 0.0123354 0.0123493 0.0123632 0.0123771 0.0123909 0.0124048 0.0124187 0.0124326 0.0124465 0.0124604 0.0124743 0.0124882 0.0125021 0.012516 0.0125299 0.0125438 0.0125576 0.0125715 0.0125854 0.0125993 0.0126132 0.0126271 0.012641 0.0126549 0.0126688 0.0126827 0.0126966 0.0127105 0.0127244 0.0127382 0.0127521 0.012766 0.0127799 0.0127938 0.0128077 0.0128216 0.0128355 0.0128494 0.0128633 0.0128772 0.0128911 0.0129049 0.0129188 0.0129327 0.0129466 0.0129605 0.0129744 0.0129883 0.0130022 0.0130161 0.01303 0.0130439 0.0130578 0.0130717 0.0130855 0.0130994 0.0131133 0.0131272 0.0131411 0.013155 0.0131689 0.0131828 0.0131967 0.0132106 0.0132245 0.0132384 0.0132522 0.0132661 0.01328 0.0132939 +-0.00326839 -0.00290206 -0.00219086 -0.00113529 0.00013254 0.00151477 0.00295637 0.00442351 0.00589002 0.0073286 0.00870093 0.00993944 0.0109142 0.0114561 0.011626 0.0116679 0.0116861 0.0117006 0.0117146 0.0117285 0.0117424 0.0117563 0.0117702 0.0117841 0.011798 0.0118119 0.0118258 0.0118397 0.0118536 0.0118675 0.0118814 0.0118952 0.0119091 0.011923 0.0119369 0.0119508 0.0119647 0.0119786 0.0119925 0.0120064 0.0120203 0.0120342 0.0120481 0.012062 0.0120759 0.0120898 0.0121037 0.0121176 0.0121315 0.0121454 0.0121593 0.0121732 0.0121871 0.012201 0.0122149 0.0122288 0.0122427 0.0122566 0.0122705 0.0122844 0.0122983 0.0123122 0.0123261 0.01234 0.0123539 0.0123678 0.0123817 0.0123956 0.0124095 0.0124233 0.0124372 0.0124511 0.012465 0.0124789 0.0124928 0.0125067 0.0125206 0.0125345 0.0125484 0.0125623 0.0125762 0.0125901 0.012604 0.0126179 0.0126318 0.0126457 0.0126596 0.0126735 0.0126874 0.0127013 0.0127152 0.0127291 0.012743 0.0127569 0.0127708 0.0127847 0.0127986 0.0128125 0.0128264 0.0128403 0.0128542 0.0128681 0.012882 0.0128959 0.0129098 0.0129237 0.0129376 0.0129514 0.0129653 0.0129792 0.0129931 0.013007 0.0130209 0.0130348 0.0130487 0.0130626 0.0130765 0.0130904 0.0131043 0.0131182 0.0131321 0.013146 0.0131599 0.0131738 0.0131877 0.0132016 0.0132155 0.0132294 0.0132433 0.0132572 0.0132711 0.013285 0.0132989 +-0.00326973 -0.00290304 -0.00219135 -0.00113542 0.000132629 0.001515 0.00295673 0.00442399 0.00589063 0.0073294 0.00870201 0.009941 0.0109167 0.0114597 0.0116302 0.0116722 0.0116904 0.0117049 0.0117189 0.0117328 0.0117467 0.0117606 0.0117745 0.0117884 0.0118023 0.0118162 0.0118301 0.0118441 0.011858 0.0118719 0.0118858 0.0118997 0.0119136 0.0119275 0.0119414 0.0119553 0.0119692 0.0119831 0.011997 0.0120109 0.0120248 0.0120387 0.0120526 0.0120665 0.0120804 0.0120943 0.0121082 0.0121221 0.012136 0.0121499 0.0121638 0.0121777 0.0121916 0.0122055 0.0122194 0.0122333 0.0122472 0.0122611 0.012275 0.0122889 0.0123028 0.0123167 0.0123306 0.0123446 0.0123585 0.0123724 0.0123863 0.0124002 0.0124141 0.012428 0.0124419 0.0124558 0.0124697 0.0124836 0.0124975 0.0125114 0.0125253 0.0125392 0.0125531 0.012567 0.0125809 0.0125948 0.0126087 0.0126226 0.0126365 0.0126504 0.0126643 0.0126782 0.0126921 0.012706 0.0127199 0.0127338 0.0127477 0.0127616 0.0127755 0.0127894 0.0128033 0.0128172 0.0128311 0.012845 0.012859 0.0128729 0.0128868 0.0129007 0.0129146 0.0129285 0.0129424 0.0129563 0.0129702 0.0129841 0.012998 0.0130119 0.0130258 0.0130397 0.0130536 0.0130675 0.0130814 0.0130953 0.0131092 0.0131231 0.013137 0.0131509 0.0131648 0.0131787 0.0131926 0.0132065 0.0132204 0.0132343 0.0132482 0.0132621 0.013276 0.0132899 0.0133038 +-0.00327108 -0.00290402 -0.00219183 -0.00113555 0.000132718 0.00151524 0.00295709 0.00442447 0.00589124 0.00733019 0.00870308 0.00994256 0.0109191 0.0114633 0.0116344 0.0116765 0.0116947 0.0117093 0.0117233 0.0117372 0.0117511 0.011765 0.0117789 0.0117928 0.0118067 0.0118206 0.0118345 0.0118484 0.0118624 0.0118763 0.0118902 0.0119041 0.011918 0.0119319 0.0119458 0.0119597 0.0119736 0.0119875 0.0120014 0.0120153 0.0120292 0.0120432 0.0120571 0.012071 0.0120849 0.0120988 0.0121127 0.0121266 0.0121405 0.0121544 0.0121683 0.0121822 0.0121961 0.0122101 0.012224 0.0122379 0.0122518 0.0122657 0.0122796 0.0122935 0.0123074 0.0123213 0.0123352 0.0123491 0.012363 0.012377 0.0123909 0.0124048 0.0124187 0.0124326 0.0124465 0.0124604 0.0124743 0.0124882 0.0125021 0.012516 0.0125299 0.0125438 0.0125578 0.0125717 0.0125856 0.0125995 0.0126134 0.0126273 0.0126412 0.0126551 0.012669 0.0126829 0.0126968 0.0127107 0.0127247 0.0127386 0.0127525 0.0127664 0.0127803 0.0127942 0.0128081 0.012822 0.0128359 0.0128498 0.0128637 0.0128776 0.0128916 0.0129055 0.0129194 0.0129333 0.0129472 0.0129611 0.012975 0.0129889 0.0130028 0.0130167 0.0130306 0.0130445 0.0130584 0.0130724 0.0130863 0.0131002 0.0131141 0.013128 0.0131419 0.0131558 0.0131697 0.0131836 0.0131975 0.0132114 0.0132253 0.0132393 0.0132532 0.0132671 0.013281 0.0132949 0.0133088 +-0.00327243 -0.002905 -0.00219232 -0.00113568 0.000132806 0.00151548 0.00295745 0.00442494 0.00589186 0.00733099 0.00870416 0.00994412 0.0109215 0.0114669 0.0116385 0.0116808 0.011699 0.0117136 0.0117276 0.0117415 0.0117554 0.0117694 0.0117833 0.0117972 0.0118111 0.011825 0.0118389 0.0118528 0.0118667 0.0118807 0.0118946 0.0119085 0.0119224 0.0119363 0.0119502 0.0119641 0.0119781 0.011992 0.0120059 0.0120198 0.0120337 0.0120476 0.0120615 0.0120755 0.0120894 0.0121033 0.0121172 0.0121311 0.012145 0.0121589 0.0121728 0.0121868 0.0122007 0.0122146 0.0122285 0.0122424 0.0122563 0.0122702 0.0122842 0.0122981 0.012312 0.0123259 0.0123398 0.0123537 0.0123676 0.0123815 0.0123955 0.0124094 0.0124233 0.0124372 0.0124511 0.012465 0.0124789 0.0124929 0.0125068 0.0125207 0.0125346 0.0125485 0.0125624 0.0125763 0.0125902 0.0126042 0.0126181 0.012632 0.0126459 0.0126598 0.0126737 0.0126876 0.0127016 0.0127155 0.0127294 0.0127433 0.0127572 0.0127711 0.012785 0.0127989 0.0128129 0.0128268 0.0128407 0.0128546 0.0128685 0.0128824 0.0128963 0.0129103 0.0129242 0.0129381 0.012952 0.0129659 0.0129798 0.0129937 0.0130077 0.0130216 0.0130355 0.0130494 0.0130633 0.0130772 0.0130911 0.013105 0.013119 0.0131329 0.0131468 0.0131607 0.0131746 0.0131885 0.0132024 0.0132164 0.0132303 0.0132442 0.0132581 0.013272 0.0132859 0.0132998 0.0133137 +-0.00327378 -0.00290598 -0.00219281 -0.00113581 0.000132895 0.00151572 0.00295781 0.00442542 0.00589247 0.00733178 0.00870523 0.00994568 0.010924 0.0114705 0.0116427 0.0116851 0.0117034 0.0117179 0.0117319 0.0117459 0.0117598 0.0117737 0.0117876 0.0118015 0.0118155 0.0118294 0.0118433 0.0118572 0.0118711 0.0118851 0.011899 0.0119129 0.0119268 0.0119407 0.0119547 0.0119686 0.0119825 0.0119964 0.0120103 0.0120243 0.0120382 0.0120521 0.012066 0.0120799 0.0120938 0.0121078 0.0121217 0.0121356 0.0121495 0.0121634 0.0121774 0.0121913 0.0122052 0.0122191 0.012233 0.012247 0.0122609 0.0122748 0.0122887 0.0123026 0.0123165 0.0123305 0.0123444 0.0123583 0.0123722 0.0123861 0.0124001 0.012414 0.0124279 0.0124418 0.0124557 0.0124697 0.0124836 0.0124975 0.0125114 0.0125253 0.0125392 0.0125532 0.0125671 0.012581 0.0125949 0.0126088 0.0126228 0.0126367 0.0126506 0.0126645 0.0126784 0.0126924 0.0127063 0.0127202 0.0127341 0.012748 0.0127619 0.0127759 0.0127898 0.0128037 0.0128176 0.0128315 0.0128455 0.0128594 0.0128733 0.0128872 0.0129011 0.0129151 0.012929 0.0129429 0.0129568 0.0129707 0.0129846 0.0129986 0.0130125 0.0130264 0.0130403 0.0130542 0.0130682 0.0130821 0.013096 0.0131099 0.0131238 0.0131378 0.0131517 0.0131656 0.0131795 0.0131934 0.0132073 0.0132213 0.0132352 0.0132491 0.013263 0.0132769 0.0132909 0.0133048 0.0133187 +-0.00327513 -0.00290696 -0.0021933 -0.00113594 0.000132984 0.00151595 0.00295817 0.0044259 0.00589308 0.00733258 0.0087063 0.00994724 0.0109264 0.011474 0.0116469 0.0116894 0.0117077 0.0117223 0.0117363 0.0117502 0.0117641 0.0117781 0.011792 0.0118059 0.0118198 0.0118338 0.0118477 0.0118616 0.0118755 0.0118895 0.0119034 0.0119173 0.0119312 0.0119452 0.0119591 0.011973 0.0119869 0.0120009 0.0120148 0.0120287 0.0120426 0.0120566 0.0120705 0.0120844 0.0120983 0.0121122 0.0121262 0.0121401 0.012154 0.0121679 0.0121819 0.0121958 0.0122097 0.0122236 0.0122376 0.0122515 0.0122654 0.0122793 0.0122933 0.0123072 0.0123211 0.012335 0.012349 0.0123629 0.0123768 0.0123907 0.0124047 0.0124186 0.0124325 0.0124464 0.0124604 0.0124743 0.0124882 0.0125021 0.012516 0.01253 0.0125439 0.0125578 0.0125717 0.0125857 0.0125996 0.0126135 0.0126274 0.0126414 0.0126553 0.0126692 0.0126831 0.0126971 0.012711 0.0127249 0.0127388 0.0127528 0.0127667 0.0127806 0.0127945 0.0128085 0.0128224 0.0128363 0.0128502 0.0128642 0.0128781 0.012892 0.0129059 0.0129199 0.0129338 0.0129477 0.0129616 0.0129755 0.0129895 0.0130034 0.0130173 0.0130312 0.0130452 0.0130591 0.013073 0.0130869 0.0131009 0.0131148 0.0131287 0.0131426 0.0131566 0.0131705 0.0131844 0.0131983 0.0132123 0.0132262 0.0132401 0.013254 0.013268 0.0132819 0.0132958 0.0133097 0.0133237 +-0.00327648 -0.00290794 -0.00219378 -0.00113607 0.000133072 0.00151619 0.00295852 0.00442637 0.00589369 0.00733337 0.00870738 0.0099488 0.0109288 0.0114776 0.011651 0.0116937 0.011712 0.0117266 0.0117406 0.0117546 0.0117685 0.0117824 0.0117964 0.0118103 0.0118242 0.0118381 0.0118521 0.011866 0.0118799 0.0118939 0.0119078 0.0119217 0.0119356 0.0119496 0.0119635 0.0119774 0.0119914 0.0120053 0.0120192 0.0120332 0.0120471 0.012061 0.0120749 0.0120889 0.0121028 0.0121167 0.0121307 0.0121446 0.0121585 0.0121725 0.0121864 0.0122003 0.0122142 0.0122282 0.0122421 0.012256 0.01227 0.0122839 0.0122978 0.0123117 0.0123257 0.0123396 0.0123535 0.0123675 0.0123814 0.0123953 0.0124093 0.0124232 0.0124371 0.012451 0.012465 0.0124789 0.0124928 0.0125068 0.0125207 0.0125346 0.0125485 0.0125625 0.0125764 0.0125903 0.0126043 0.0126182 0.0126321 0.0126461 0.01266 0.0126739 0.0126878 0.0127018 0.0127157 0.0127296 0.0127436 0.0127575 0.0127714 0.0127854 0.0127993 0.0128132 0.0128271 0.0128411 0.012855 0.0128689 0.0128829 0.0128968 0.0129107 0.0129246 0.0129386 0.0129525 0.0129664 0.0129804 0.0129943 0.0130082 0.0130222 0.0130361 0.01305 0.0130639 0.0130779 0.0130918 0.0131057 0.0131197 0.0131336 0.0131475 0.0131614 0.0131754 0.0131893 0.0132032 0.0132172 0.0132311 0.013245 0.013259 0.0132729 0.0132868 0.0133007 0.0133147 0.0133286 +-0.00327782 -0.00290892 -0.00219427 -0.0011362 0.000133161 0.00151643 0.00295888 0.00442685 0.00589431 0.00733416 0.00870845 0.00995035 0.0109313 0.0114812 0.0116552 0.011698 0.0117163 0.0117309 0.011745 0.0117589 0.0117728 0.0117868 0.0118007 0.0118146 0.0118286 0.0118425 0.0118565 0.0118704 0.0118843 0.0118983 0.0119122 0.0119261 0.0119401 0.011954 0.0119679 0.0119819 0.0119958 0.0120097 0.0120237 0.0120376 0.0120515 0.0120655 0.0120794 0.0120933 0.0121073 0.0121212 0.0121351 0.0121491 0.012163 0.012177 0.0121909 0.0122048 0.0122188 0.0122327 0.0122466 0.0122606 0.0122745 0.0122884 0.0123024 0.0123163 0.0123302 0.0123442 0.0123581 0.012372 0.012386 0.0123999 0.0124138 0.0124278 0.0124417 0.0124557 0.0124696 0.0124835 0.0124975 0.0125114 0.0125253 0.0125393 0.0125532 0.0125671 0.0125811 0.012595 0.0126089 0.0126229 0.0126368 0.0126507 0.0126647 0.0126786 0.0126925 0.0127065 0.0127204 0.0127344 0.0127483 0.0127622 0.0127762 0.0127901 0.012804 0.012818 0.0128319 0.0128458 0.0128598 0.0128737 0.0128876 0.0129016 0.0129155 0.0129294 0.0129434 0.0129573 0.0129712 0.0129852 0.0129991 0.013013 0.013027 0.0130409 0.0130549 0.0130688 0.0130827 0.0130967 0.0131106 0.0131245 0.0131385 0.0131524 0.0131663 0.0131803 0.0131942 0.0132081 0.0132221 0.013236 0.0132499 0.0132639 0.0132778 0.0132917 0.0133057 0.0133196 0.0133336 +-0.00327917 -0.00290989 -0.00219475 -0.00113633 0.000133249 0.00151667 0.00295924 0.00442732 0.00589492 0.00733495 0.00870952 0.0099519 0.0109337 0.0114848 0.0116594 0.0117023 0.0117207 0.0117353 0.0117493 0.0117632 0.0117772 0.0117911 0.0118051 0.011819 0.011833 0.0118469 0.0118608 0.0118748 0.0118887 0.0119027 0.0119166 0.0119305 0.0119445 0.0119584 0.0119724 0.0119863 0.0120002 0.0120142 0.0120281 0.0120421 0.012056 0.0120699 0.0120839 0.0120978 0.0121118 0.0121257 0.0121396 0.0121536 0.0121675 0.0121815 0.0121954 0.0122093 0.0122233 0.0122372 0.0122512 0.0122651 0.012279 0.012293 0.0123069 0.0123209 0.0123348 0.0123487 0.0123627 0.0123766 0.0123906 0.0124045 0.0124184 0.0124324 0.0124463 0.0124603 0.0124742 0.0124881 0.0125021 0.012516 0.01253 0.0125439 0.0125578 0.0125718 0.0125857 0.0125997 0.0126136 0.0126275 0.0126415 0.0126554 0.0126694 0.0126833 0.0126972 0.0127112 0.0127251 0.0127391 0.012753 0.0127669 0.0127809 0.0127948 0.0128088 0.0128227 0.0128366 0.0128506 0.0128645 0.0128785 0.0128924 0.0129064 0.0129203 0.0129342 0.0129482 0.0129621 0.0129761 0.01299 0.0130039 0.0130179 0.0130318 0.0130458 0.0130597 0.0130736 0.0130876 0.0131015 0.0131155 0.0131294 0.0131433 0.0131573 0.0131712 0.0131852 0.0131991 0.013213 0.013227 0.0132409 0.0132549 0.0132688 0.0132827 0.0132967 0.0133106 0.0133246 0.0133385 +-0.00328051 -0.00291087 -0.00219524 -0.00113646 0.000133338 0.0015169 0.0029596 0.0044278 0.00589553 0.00733575 0.00871058 0.00995345 0.0109361 0.0114883 0.0116635 0.0117066 0.011725 0.0117396 0.0117536 0.0117676 0.0117815 0.0117955 0.0118094 0.0118234 0.0118373 0.0118513 0.0118652 0.0118792 0.0118931 0.011907 0.011921 0.0119349 0.0119489 0.0119628 0.0119768 0.0119907 0.0120047 0.0120186 0.0120326 0.0120465 0.0120604 0.0120744 0.0120883 0.0121023 0.0121162 0.0121302 0.0121441 0.0121581 0.012172 0.012186 0.0121999 0.0122139 0.0122278 0.0122417 0.0122557 0.0122696 0.0122836 0.0122975 0.0123115 0.0123254 0.0123394 0.0123533 0.0123673 0.0123812 0.0123951 0.0124091 0.012423 0.012437 0.0124509 0.0124649 0.0124788 0.0124928 0.0125067 0.0125207 0.0125346 0.0125485 0.0125625 0.0125764 0.0125904 0.0126043 0.0126183 0.0126322 0.0126462 0.0126601 0.0126741 0.012688 0.0127019 0.0127159 0.0127298 0.0127438 0.0127577 0.0127717 0.0127856 0.0127996 0.0128135 0.0128275 0.0128414 0.0128553 0.0128693 0.0128832 0.0128972 0.0129111 0.0129251 0.012939 0.012953 0.0129669 0.0129809 0.0129948 0.0130088 0.0130227 0.0130366 0.0130506 0.0130645 0.0130785 0.0130924 0.0131064 0.0131203 0.0131343 0.0131482 0.0131622 0.0131761 0.01319 0.013204 0.0132179 0.0132319 0.0132458 0.0132598 0.0132737 0.0132877 0.0133016 0.0133156 0.0133295 0.0133434 +-0.00328186 -0.00291184 -0.00219572 -0.00113659 0.000133427 0.00151714 0.00295996 0.00442827 0.00589614 0.00733654 0.00871165 0.009955 0.0109385 0.0114919 0.0116677 0.0117109 0.0117293 0.0117439 0.011758 0.0117719 0.0117859 0.0117998 0.0118138 0.0118277 0.0118417 0.0118556 0.0118696 0.0118835 0.0118975 0.0119114 0.0119254 0.0119393 0.0119533 0.0119672 0.0119812 0.0119951 0.0120091 0.012023 0.012037 0.012051 0.0120649 0.0120789 0.0120928 0.0121068 0.0121207 0.0121347 0.0121486 0.0121626 0.0121765 0.0121905 0.0122044 0.0122184 0.0122323 0.0122463 0.0122602 0.0122742 0.0122881 0.0123021 0.012316 0.01233 0.0123439 0.0123579 0.0123718 0.0123858 0.0123997 0.0124137 0.0124276 0.0124416 0.0124555 0.0124695 0.0124834 0.0124974 0.0125113 0.0125253 0.0125392 0.0125532 0.0125671 0.0125811 0.012595 0.012609 0.0126229 0.0126369 0.0126508 0.0126648 0.0126787 0.0126927 0.0127066 0.0127206 0.0127345 0.0127485 0.0127625 0.0127764 0.0127904 0.0128043 0.0128183 0.0128322 0.0128462 0.0128601 0.0128741 0.012888 0.012902 0.0129159 0.0129299 0.0129438 0.0129578 0.0129717 0.0129857 0.0129996 0.0130136 0.0130275 0.0130415 0.0130554 0.0130694 0.0130833 0.0130973 0.0131112 0.0131252 0.0131391 0.0131531 0.013167 0.013181 0.0131949 0.0132089 0.0132228 0.0132368 0.0132507 0.0132647 0.0132786 0.0132926 0.0133065 0.0133205 0.0133344 0.0133484 +-0.0032832 -0.00291282 -0.00219621 -0.00113672 0.000133515 0.00151738 0.00296031 0.00442875 0.00589675 0.00733733 0.00871272 0.00995654 0.010941 0.0114954 0.0116718 0.0117152 0.0117336 0.0117482 0.0117623 0.0117763 0.0117902 0.0118042 0.0118181 0.0118321 0.0118461 0.01186 0.011874 0.0118879 0.0119019 0.0119158 0.0119298 0.0119437 0.0119577 0.0119717 0.0119856 0.0119996 0.0120135 0.0120275 0.0120414 0.0120554 0.0120694 0.0120833 0.0120973 0.0121112 0.0121252 0.0121391 0.0121531 0.012167 0.012181 0.012195 0.0122089 0.0122229 0.0122368 0.0122508 0.0122647 0.0122787 0.0122927 0.0123066 0.0123206 0.0123345 0.0123485 0.0123624 0.0123764 0.0123903 0.0124043 0.0124183 0.0124322 0.0124462 0.0124601 0.0124741 0.012488 0.012502 0.012516 0.0125299 0.0125439 0.0125578 0.0125718 0.0125857 0.0125997 0.0126136 0.0126276 0.0126416 0.0126555 0.0126695 0.0126834 0.0126974 0.0127113 0.0127253 0.0127393 0.0127532 0.0127672 0.0127811 0.0127951 0.012809 0.012823 0.012837 0.0128509 0.0128649 0.0128788 0.0128928 0.0129067 0.0129207 0.0129346 0.0129486 0.0129626 0.0129765 0.0129905 0.0130044 0.0130184 0.0130323 0.0130463 0.0130603 0.0130742 0.0130882 0.0131021 0.0131161 0.01313 0.013144 0.0131579 0.0131719 0.0131859 0.0131998 0.0132138 0.0132277 0.0132417 0.0132556 0.0132696 0.0132836 0.0132975 0.0133115 0.0133254 0.0133394 0.0133533 +-0.00328455 -0.00291379 -0.00219669 -0.00113685 0.000133604 0.00151761 0.00296067 0.00442922 0.00589735 0.00733812 0.00871378 0.00995809 0.0109434 0.011499 0.011676 0.0117195 0.0117379 0.0117526 0.0117666 0.0117806 0.0117946 0.0118085 0.0118225 0.0118365 0.0118504 0.0118644 0.0118783 0.0118923 0.0119063 0.0119202 0.0119342 0.0119481 0.0119621 0.0119761 0.01199 0.012004 0.012018 0.0120319 0.0120459 0.0120598 0.0120738 0.0120878 0.0121017 0.0121157 0.0121296 0.0121436 0.0121576 0.0121715 0.0121855 0.0121995 0.0122134 0.0122274 0.0122413 0.0122553 0.0122693 0.0122832 0.0122972 0.0123112 0.0123251 0.0123391 0.012353 0.012367 0.012381 0.0123949 0.0124089 0.0124228 0.0124368 0.0124508 0.0124647 0.0124787 0.0124927 0.0125066 0.0125206 0.0125345 0.0125485 0.0125625 0.0125764 0.0125904 0.0126043 0.0126183 0.0126323 0.0126462 0.0126602 0.0126742 0.0126881 0.0127021 0.012716 0.01273 0.012744 0.0127579 0.0127719 0.0127858 0.0127998 0.0128138 0.0128277 0.0128417 0.0128557 0.0128696 0.0128836 0.0128975 0.0129115 0.0129255 0.0129394 0.0129534 0.0129674 0.0129813 0.0129953 0.0130092 0.0130232 0.0130372 0.0130511 0.0130651 0.013079 0.013093 0.013107 0.0131209 0.0131349 0.0131489 0.0131628 0.0131768 0.0131907 0.0132047 0.0132187 0.0132326 0.0132466 0.0132605 0.0132745 0.0132885 0.0133024 0.0133164 0.0133304 0.0133443 0.0133583 +-0.00328589 -0.00291477 -0.00219717 -0.00113697 0.000133693 0.00151785 0.00296103 0.00442969 0.00589796 0.0073389 0.00871485 0.00995963 0.0109458 0.0115025 0.0116801 0.0117238 0.0117423 0.0117569 0.011771 0.0117849 0.0117989 0.0118129 0.0118268 0.0118408 0.0118548 0.0118687 0.0118827 0.0118967 0.0119106 0.0119246 0.0119386 0.0119525 0.0119665 0.0119805 0.0119944 0.0120084 0.0120224 0.0120364 0.0120503 0.0120643 0.0120783 0.0120922 0.0121062 0.0121202 0.0121341 0.0121481 0.0121621 0.012176 0.01219 0.012204 0.0122179 0.0122319 0.0122459 0.0122598 0.0122738 0.0122878 0.0123017 0.0123157 0.0123297 0.0123436 0.0123576 0.0123716 0.0123855 0.0123995 0.0124135 0.0124274 0.0124414 0.0124554 0.0124693 0.0124833 0.0124973 0.0125112 0.0125252 0.0125392 0.0125531 0.0125671 0.0125811 0.012595 0.012609 0.012623 0.0126369 0.0126509 0.0126649 0.0126788 0.0126928 0.0127068 0.0127207 0.0127347 0.0127487 0.0127626 0.0127766 0.0127906 0.0128045 0.0128185 0.0128325 0.0128464 0.0128604 0.0128744 0.0128883 0.0129023 0.0129163 0.0129302 0.0129442 0.0129582 0.0129721 0.0129861 0.0130001 0.013014 0.013028 0.013042 0.0130559 0.0130699 0.0130839 0.0130978 0.0131118 0.0131258 0.0131397 0.0131537 0.0131677 0.0131816 0.0131956 0.0132096 0.0132235 0.0132375 0.0132515 0.0132654 0.0132794 0.0132934 0.0133074 0.0133213 0.0133353 0.0133493 0.0133632 +-0.00328723 -0.00291574 -0.00219766 -0.0011371 0.000133781 0.00151809 0.00296138 0.00443017 0.00589857 0.00733969 0.00871591 0.00996117 0.0109482 0.0115061 0.0116843 0.0117281 0.0117466 0.0117612 0.0117753 0.0117893 0.0118033 0.0118172 0.0118312 0.0118452 0.0118591 0.0118731 0.0118871 0.0119011 0.011915 0.011929 0.011943 0.0119569 0.0119709 0.0119849 0.0119989 0.0120128 0.0120268 0.0120408 0.0120548 0.0120687 0.0120827 0.0120967 0.0121106 0.0121246 0.0121386 0.0121526 0.0121665 0.0121805 0.0121945 0.0122085 0.0122224 0.0122364 0.0122504 0.0122643 0.0122783 0.0122923 0.0123063 0.0123202 0.0123342 0.0123482 0.0123621 0.0123761 0.0123901 0.0124041 0.012418 0.012432 0.012446 0.01246 0.0124739 0.0124879 0.0125019 0.0125158 0.0125298 0.0125438 0.0125578 0.0125717 0.0125857 0.0125997 0.0126136 0.0126276 0.0126416 0.0126556 0.0126695 0.0126835 0.0126975 0.0127115 0.0127254 0.0127394 0.0127534 0.0127673 0.0127813 0.0127953 0.0128093 0.0128232 0.0128372 0.0128512 0.0128652 0.0128791 0.0128931 0.0129071 0.012921 0.012935 0.012949 0.012963 0.0129769 0.0129909 0.0130049 0.0130188 0.0130328 0.0130468 0.0130608 0.0130747 0.0130887 0.0131027 0.0131167 0.0131306 0.0131446 0.0131586 0.0131725 0.0131865 0.0132005 0.0132145 0.0132284 0.0132424 0.0132564 0.0132704 0.0132843 0.0132983 0.0133123 0.0133262 0.0133402 0.0133542 0.0133682 +-0.00328858 -0.00291671 -0.00219814 -0.00113723 0.00013387 0.00151832 0.00296174 0.00443064 0.00589918 0.00734048 0.00871697 0.00996271 0.0109506 0.0115096 0.0116884 0.0117323 0.0117509 0.0117655 0.0117796 0.0117936 0.0118076 0.0118216 0.0118355 0.0118495 0.0118635 0.0118775 0.0118915 0.0119054 0.0119194 0.0119334 0.0119474 0.0119613 0.0119753 0.0119893 0.0120033 0.0120173 0.0120312 0.0120452 0.0120592 0.0120732 0.0120871 0.0121011 0.0121151 0.0121291 0.0121431 0.012157 0.012171 0.012185 0.012199 0.0122129 0.0122269 0.0122409 0.0122549 0.0122689 0.0122828 0.0122968 0.0123108 0.0123248 0.0123387 0.0123527 0.0123667 0.0123807 0.0123947 0.0124086 0.0124226 0.0124366 0.0124506 0.0124645 0.0124785 0.0124925 0.0125065 0.0125205 0.0125344 0.0125484 0.0125624 0.0125764 0.0125903 0.0126043 0.0126183 0.0126323 0.0126463 0.0126602 0.0126742 0.0126882 0.0127022 0.0127161 0.0127301 0.0127441 0.0127581 0.0127721 0.012786 0.0128 0.012814 0.012828 0.0128419 0.0128559 0.0128699 0.0128839 0.0128979 0.0129118 0.0129258 0.0129398 0.0129538 0.0129677 0.0129817 0.0129957 0.0130097 0.0130237 0.0130376 0.0130516 0.0130656 0.0130796 0.0130935 0.0131075 0.0131215 0.0131355 0.0131495 0.0131634 0.0131774 0.0131914 0.0132054 0.0132193 0.0132333 0.0132473 0.0132613 0.0132753 0.0132892 0.0133032 0.0133172 0.0133312 0.0133451 0.0133591 0.0133731 +-0.00328992 -0.00291768 -0.00219862 -0.00113736 0.000133959 0.00151856 0.0029621 0.00443111 0.00589979 0.00734127 0.00871803 0.00996424 0.010953 0.0115132 0.0116926 0.0117366 0.0117552 0.0117699 0.0117839 0.0117979 0.0118119 0.0118259 0.0118399 0.0118539 0.0118679 0.0118818 0.0118958 0.0119098 0.0119238 0.0119378 0.0119518 0.0119657 0.0119797 0.0119937 0.0120077 0.0120217 0.0120357 0.0120496 0.0120636 0.0120776 0.0120916 0.0121056 0.0121196 0.0121335 0.0121475 0.0121615 0.0121755 0.0121895 0.0122035 0.0122174 0.0122314 0.0122454 0.0122594 0.0122734 0.0122874 0.0123013 0.0123153 0.0123293 0.0123433 0.0123573 0.0123713 0.0123852 0.0123992 0.0124132 0.0124272 0.0124412 0.0124552 0.0124691 0.0124831 0.0124971 0.0125111 0.0125251 0.012539 0.012553 0.012567 0.012581 0.012595 0.012609 0.0126229 0.0126369 0.0126509 0.0126649 0.0126789 0.0126929 0.0127068 0.0127208 0.0127348 0.0127488 0.0127628 0.0127768 0.0127907 0.0128047 0.0128187 0.0128327 0.0128467 0.0128607 0.0128746 0.0128886 0.0129026 0.0129166 0.0129306 0.0129446 0.0129585 0.0129725 0.0129865 0.0130005 0.0130145 0.0130285 0.0130424 0.0130564 0.0130704 0.0130844 0.0130984 0.0131124 0.0131263 0.0131403 0.0131543 0.0131683 0.0131823 0.0131963 0.0132102 0.0132242 0.0132382 0.0132522 0.0132662 0.0132802 0.0132941 0.0133081 0.0133221 0.0133361 0.0133501 0.0133641 0.013378 +-0.00329126 -0.00291866 -0.0021991 -0.00113749 0.000134047 0.00151879 0.00296245 0.00443159 0.00590039 0.00734205 0.00871909 0.00996578 0.0109554 0.0115167 0.0116967 0.0117409 0.0117595 0.0117742 0.0117883 0.0118023 0.0118163 0.0118303 0.0118442 0.0118582 0.0118722 0.0118862 0.0119002 0.0119142 0.0119282 0.0119422 0.0119562 0.0119701 0.0119841 0.0119981 0.0120121 0.0120261 0.0120401 0.0120541 0.0120681 0.012082 0.012096 0.01211 0.012124 0.012138 0.012152 0.012166 0.01218 0.012194 0.0122079 0.0122219 0.0122359 0.0122499 0.0122639 0.0122779 0.0122919 0.0123059 0.0123199 0.0123338 0.0123478 0.0123618 0.0123758 0.0123898 0.0124038 0.0124178 0.0124318 0.0124457 0.0124597 0.0124737 0.0124877 0.0125017 0.0125157 0.0125297 0.0125437 0.0125577 0.0125716 0.0125856 0.0125996 0.0126136 0.0126276 0.0126416 0.0126556 0.0126696 0.0126835 0.0126975 0.0127115 0.0127255 0.0127395 0.0127535 0.0127675 0.0127815 0.0127955 0.0128094 0.0128234 0.0128374 0.0128514 0.0128654 0.0128794 0.0128934 0.0129074 0.0129214 0.0129353 0.0129493 0.0129633 0.0129773 0.0129913 0.0130053 0.0130193 0.0130333 0.0130472 0.0130612 0.0130752 0.0130892 0.0131032 0.0131172 0.0131312 0.0131452 0.0131592 0.0131731 0.0131871 0.0132011 0.0132151 0.0132291 0.0132431 0.0132571 0.0132711 0.0132851 0.013299 0.013313 0.013327 0.013341 0.013355 0.013369 0.013383 +-0.0032926 -0.00291963 -0.00219958 -0.00113761 0.000134136 0.00151903 0.00296281 0.00443206 0.005901 0.00734284 0.00872015 0.00996731 0.0109578 0.0115202 0.0117009 0.0117452 0.0117638 0.0117785 0.0117926 0.0118066 0.0118206 0.0118346 0.0118486 0.0118626 0.0118766 0.0118906 0.0119046 0.0119186 0.0119326 0.0119465 0.0119605 0.0119745 0.0119885 0.0120025 0.0120165 0.0120305 0.0120445 0.0120585 0.0120725 0.0120865 0.0121005 0.0121145 0.0121285 0.0121425 0.0121565 0.0121704 0.0121844 0.0121984 0.0122124 0.0122264 0.0122404 0.0122544 0.0122684 0.0122824 0.0122964 0.0123104 0.0123244 0.0123384 0.0123524 0.0123664 0.0123804 0.0123943 0.0124083 0.0124223 0.0124363 0.0124503 0.0124643 0.0124783 0.0124923 0.0125063 0.0125203 0.0125343 0.0125483 0.0125623 0.0125763 0.0125903 0.0126043 0.0126182 0.0126322 0.0126462 0.0126602 0.0126742 0.0126882 0.0127022 0.0127162 0.0127302 0.0127442 0.0127582 0.0127722 0.0127862 0.0128002 0.0128142 0.0128282 0.0128421 0.0128561 0.0128701 0.0128841 0.0128981 0.0129121 0.0129261 0.0129401 0.0129541 0.0129681 0.0129821 0.0129961 0.0130101 0.0130241 0.0130381 0.0130521 0.013066 0.01308 0.013094 0.013108 0.013122 0.013136 0.01315 0.013164 0.013178 0.013192 0.013206 0.01322 0.013234 0.013248 0.013262 0.013276 0.01329 0.0133039 0.0133179 0.0133319 0.0133459 0.0133599 0.0133739 0.0133879 +-0.00329394 -0.0029206 -0.00220006 -0.00113774 0.000134225 0.00151927 0.00296316 0.00443253 0.0059016 0.00734362 0.00872121 0.00996884 0.0109602 0.0115238 0.011705 0.0117495 0.0117681 0.0117828 0.0117969 0.0118109 0.0118249 0.0118389 0.0118529 0.0118669 0.0118809 0.0118949 0.0119089 0.0119229 0.0119369 0.0119509 0.0119649 0.0119789 0.0119929 0.0120069 0.0120209 0.0120349 0.0120489 0.0120629 0.0120769 0.0120909 0.0121049 0.0121189 0.0121329 0.0121469 0.0121609 0.0121749 0.0121889 0.0122029 0.0122169 0.0122309 0.0122449 0.0122589 0.0122729 0.0122869 0.0123009 0.0123149 0.0123289 0.0123429 0.0123569 0.0123709 0.0123849 0.0123989 0.0124129 0.0124269 0.0124409 0.0124549 0.0124689 0.0124829 0.0124969 0.0125109 0.0125249 0.0125389 0.0125529 0.0125669 0.0125809 0.0125949 0.0126089 0.0126229 0.0126369 0.0126509 0.0126649 0.0126789 0.0126929 0.0127069 0.0127209 0.0127349 0.0127489 0.0127629 0.0127769 0.0127909 0.0128049 0.0128189 0.0128329 0.0128469 0.0128609 0.0128749 0.0128889 0.0129029 0.0129169 0.0129309 0.0129449 0.0129589 0.0129729 0.0129869 0.0130009 0.0130149 0.0130289 0.0130429 0.0130569 0.0130709 0.0130849 0.0130989 0.0131129 0.0131269 0.0131409 0.0131549 0.0131689 0.0131829 0.0131969 0.0132109 0.0132249 0.0132389 0.0132528 0.0132668 0.0132808 0.0132948 0.0133088 0.0133228 0.0133368 0.0133508 0.0133648 0.0133788 0.0133928 +-0.00329528 -0.00292156 -0.00220054 -0.00113787 0.000134313 0.0015195 0.00296352 0.004433 0.00590221 0.0073444 0.00872226 0.00997037 0.0109626 0.0115273 0.0117092 0.0117538 0.0117724 0.0117871 0.0118012 0.0118153 0.0118293 0.0118433 0.0118573 0.0118713 0.0118853 0.0118993 0.0119133 0.0119273 0.0119413 0.0119553 0.0119693 0.0119833 0.0119973 0.0120113 0.0120253 0.0120393 0.0120533 0.0120673 0.0120814 0.0120954 0.0121094 0.0121234 0.0121374 0.0121514 0.0121654 0.0121794 0.0121934 0.0122074 0.0122214 0.0122354 0.0122494 0.0122634 0.0122774 0.0122914 0.0123054 0.0123194 0.0123334 0.0123474 0.0123614 0.0123754 0.0123895 0.0124035 0.0124175 0.0124315 0.0124455 0.0124595 0.0124735 0.0124875 0.0125015 0.0125155 0.0125295 0.0125435 0.0125575 0.0125715 0.0125855 0.0125995 0.0126135 0.0126275 0.0126415 0.0126555 0.0126695 0.0126835 0.0126975 0.0127116 0.0127256 0.0127396 0.0127536 0.0127676 0.0127816 0.0127956 0.0128096 0.0128236 0.0128376 0.0128516 0.0128656 0.0128796 0.0128936 0.0129076 0.0129216 0.0129356 0.0129496 0.0129636 0.0129776 0.0129916 0.0130056 0.0130197 0.0130337 0.0130477 0.0130617 0.0130757 0.0130897 0.0131037 0.0131177 0.0131317 0.0131457 0.0131597 0.0131737 0.0131877 0.0132017 0.0132157 0.0132297 0.0132437 0.0132577 0.0132717 0.0132857 0.0132997 0.0133137 0.0133278 0.0133418 0.0133558 0.0133698 0.0133838 0.0133978 +-0.00329662 -0.00292253 -0.00220102 -0.001138 0.000134402 0.00151974 0.00296387 0.00443347 0.00590282 0.00734519 0.00872332 0.00997189 0.0109649 0.0115308 0.0117133 0.011758 0.0117768 0.0117915 0.0118056 0.0118196 0.0118336 0.0118476 0.0118616 0.0118756 0.0118896 0.0119037 0.0119177 0.0119317 0.0119457 0.0119597 0.0119737 0.0119877 0.0120017 0.0120157 0.0120297 0.0120438 0.0120578 0.0120718 0.0120858 0.0120998 0.0121138 0.0121278 0.0121418 0.0121558 0.0121698 0.0121838 0.0121979 0.0122119 0.0122259 0.0122399 0.0122539 0.0122679 0.0122819 0.0122959 0.0123099 0.0123239 0.012338 0.012352 0.012366 0.01238 0.012394 0.012408 0.012422 0.012436 0.01245 0.012464 0.0124781 0.0124921 0.0125061 0.0125201 0.0125341 0.0125481 0.0125621 0.0125761 0.0125901 0.0126041 0.0126182 0.0126322 0.0126462 0.0126602 0.0126742 0.0126882 0.0127022 0.0127162 0.0127302 0.0127442 0.0127583 0.0127723 0.0127863 0.0128003 0.0128143 0.0128283 0.0128423 0.0128563 0.0128703 0.0128843 0.0128984 0.0129124 0.0129264 0.0129404 0.0129544 0.0129684 0.0129824 0.0129964 0.0130104 0.0130244 0.0130384 0.0130525 0.0130665 0.0130805 0.0130945 0.0131085 0.0131225 0.0131365 0.0131505 0.0131645 0.0131785 0.0131926 0.0132066 0.0132206 0.0132346 0.0132486 0.0132626 0.0132766 0.0132906 0.0133046 0.0133186 0.0133327 0.0133467 0.0133607 0.0133747 0.0133887 0.0134027 +-0.00329796 -0.0029235 -0.0022015 -0.00113812 0.000134491 0.00151997 0.00296423 0.00443395 0.00590342 0.00734597 0.00872437 0.00997342 0.0109673 0.0115343 0.0117174 0.0117623 0.0117811 0.0117958 0.0118099 0.0118239 0.0118379 0.011852 0.011866 0.01188 0.011894 0.011908 0.011922 0.011936 0.0119501 0.0119641 0.0119781 0.0119921 0.0120061 0.0120201 0.0120341 0.0120482 0.0120622 0.0120762 0.0120902 0.0121042 0.0121182 0.0121323 0.0121463 0.0121603 0.0121743 0.0121883 0.0122023 0.0122163 0.0122304 0.0122444 0.0122584 0.0122724 0.0122864 0.0123004 0.0123145 0.0123285 0.0123425 0.0123565 0.0123705 0.0123845 0.0123985 0.0124126 0.0124266 0.0124406 0.0124546 0.0124686 0.0124826 0.0124966 0.0125107 0.0125247 0.0125387 0.0125527 0.0125667 0.0125807 0.0125948 0.0126088 0.0126228 0.0126368 0.0126508 0.0126648 0.0126788 0.0126929 0.0127069 0.0127209 0.0127349 0.0127489 0.0127629 0.012777 0.012791 0.012805 0.012819 0.012833 0.012847 0.012861 0.0128751 0.0128891 0.0129031 0.0129171 0.0129311 0.0129451 0.0129591 0.0129732 0.0129872 0.0130012 0.0130152 0.0130292 0.0130432 0.0130573 0.0130713 0.0130853 0.0130993 0.0131133 0.0131273 0.0131413 0.0131554 0.0131694 0.0131834 0.0131974 0.0132114 0.0132254 0.0132395 0.0132535 0.0132675 0.0132815 0.0132955 0.0133095 0.0133235 0.0133376 0.0133516 0.0133656 0.0133796 0.0133936 0.0134076 +-0.0032993 -0.00292447 -0.00220198 -0.00113825 0.000134579 0.00152021 0.00296458 0.00443442 0.00590402 0.00734675 0.00872543 0.00997494 0.0109697 0.0115379 0.0117216 0.0117666 0.0117854 0.0118001 0.0118142 0.0118282 0.0118423 0.0118563 0.0118703 0.0118843 0.0118983 0.0119124 0.0119264 0.0119404 0.0119544 0.0119685 0.0119825 0.0119965 0.0120105 0.0120245 0.0120386 0.0120526 0.0120666 0.0120806 0.0120946 0.0121087 0.0121227 0.0121367 0.0121507 0.0121647 0.0121788 0.0121928 0.0122068 0.0122208 0.0122348 0.0122489 0.0122629 0.0122769 0.0122909 0.0123049 0.012319 0.012333 0.012347 0.012361 0.012375 0.0123891 0.0124031 0.0124171 0.0124311 0.0124451 0.0124592 0.0124732 0.0124872 0.0125012 0.0125153 0.0125293 0.0125433 0.0125573 0.0125713 0.0125854 0.0125994 0.0126134 0.0126274 0.0126414 0.0126555 0.0126695 0.0126835 0.0126975 0.0127115 0.0127256 0.0127396 0.0127536 0.0127676 0.0127816 0.0127957 0.0128097 0.0128237 0.0128377 0.0128517 0.0128658 0.0128798 0.0128938 0.0129078 0.0129218 0.0129359 0.0129499 0.0129639 0.0129779 0.0129919 0.013006 0.01302 0.013034 0.013048 0.0130621 0.0130761 0.0130901 0.0131041 0.0131181 0.0131322 0.0131462 0.0131602 0.0131742 0.0131882 0.0132023 0.0132163 0.0132303 0.0132443 0.0132583 0.0132724 0.0132864 0.0133004 0.0133144 0.0133284 0.0133425 0.0133565 0.0133705 0.0133845 0.0133985 0.0134126 +-0.00330064 -0.00292543 -0.00220246 -0.00113838 0.000134668 0.00152044 0.00296494 0.00443489 0.00590463 0.00734753 0.00872648 0.00997646 0.0109721 0.0115414 0.0117257 0.0117709 0.0117897 0.0118044 0.0118185 0.0118326 0.0118466 0.0118606 0.0118746 0.0118887 0.0119027 0.0119167 0.0119308 0.0119448 0.0119588 0.0119728 0.0119869 0.0120009 0.0120149 0.0120289 0.012043 0.012057 0.012071 0.012085 0.0120991 0.0121131 0.0121271 0.0121411 0.0121552 0.0121692 0.0121832 0.0121972 0.0122113 0.0122253 0.0122393 0.0122533 0.0122674 0.0122814 0.0122954 0.0123094 0.0123235 0.0123375 0.0123515 0.0123656 0.0123796 0.0123936 0.0124076 0.0124217 0.0124357 0.0124497 0.0124637 0.0124778 0.0124918 0.0125058 0.0125198 0.0125339 0.0125479 0.0125619 0.0125759 0.01259 0.012604 0.012618 0.012632 0.0126461 0.0126601 0.0126741 0.0126881 0.0127022 0.0127162 0.0127302 0.0127442 0.0127583 0.0127723 0.0127863 0.0128004 0.0128144 0.0128284 0.0128424 0.0128565 0.0128705 0.0128845 0.0128985 0.0129126 0.0129266 0.0129406 0.0129546 0.0129687 0.0129827 0.0129967 0.0130107 0.0130248 0.0130388 0.0130528 0.0130668 0.0130809 0.0130949 0.0131089 0.0131229 0.013137 0.013151 0.013165 0.0131791 0.0131931 0.0132071 0.0132211 0.0132352 0.0132492 0.0132632 0.0132772 0.0132913 0.0133053 0.0133193 0.0133333 0.0133474 0.0133614 0.0133754 0.0133894 0.0134035 0.0134175 +-0.00330198 -0.0029264 -0.00220293 -0.0011385 0.000134757 0.00152068 0.00296529 0.00443536 0.00590523 0.00734831 0.00872753 0.00997798 0.0109744 0.0115449 0.0117299 0.0117752 0.011794 0.0118087 0.0118228 0.0118369 0.0118509 0.011865 0.011879 0.011893 0.011907 0.0119211 0.0119351 0.0119491 0.0119632 0.0119772 0.0119912 0.0120053 0.0120193 0.0120333 0.0120474 0.0120614 0.0120754 0.0120895 0.0121035 0.0121175 0.0121315 0.0121456 0.0121596 0.0121736 0.0121877 0.0122017 0.0122157 0.0122298 0.0122438 0.0122578 0.0122719 0.0122859 0.0122999 0.012314 0.012328 0.012342 0.012356 0.0123701 0.0123841 0.0123981 0.0124122 0.0124262 0.0124402 0.0124543 0.0124683 0.0124823 0.0124964 0.0125104 0.0125244 0.0125385 0.0125525 0.0125665 0.0125805 0.0125946 0.0126086 0.0126226 0.0126367 0.0126507 0.0126647 0.0126788 0.0126928 0.0127068 0.0127209 0.0127349 0.0127489 0.012763 0.012777 0.012791 0.012805 0.0128191 0.0128331 0.0128471 0.0128612 0.0128752 0.0128892 0.0129033 0.0129173 0.0129313 0.0129454 0.0129594 0.0129734 0.0129874 0.0130015 0.0130155 0.0130295 0.0130436 0.0130576 0.0130716 0.0130857 0.0130997 0.0131137 0.0131278 0.0131418 0.0131558 0.0131699 0.0131839 0.0131979 0.0132119 0.013226 0.01324 0.013254 0.0132681 0.0132821 0.0132961 0.0133102 0.0133242 0.0133382 0.0133523 0.0133663 0.0133803 0.0133944 0.0134084 0.0134224 +-0.00330331 -0.00292736 -0.00220341 -0.00113863 0.000134846 0.00152091 0.00296565 0.00443583 0.00590583 0.00734909 0.00872858 0.0099795 0.0109768 0.0115484 0.011734 0.0117794 0.0117983 0.011813 0.0118272 0.0118412 0.0118553 0.0118693 0.0118833 0.0118974 0.0119114 0.0119254 0.0119395 0.0119535 0.0119675 0.0119816 0.0119956 0.0120097 0.0120237 0.0120377 0.0120518 0.0120658 0.0120798 0.0120939 0.0121079 0.0121219 0.012136 0.01215 0.0121641 0.0121781 0.0121921 0.0122062 0.0122202 0.0122342 0.0122483 0.0122623 0.0122763 0.0122904 0.0123044 0.0123185 0.0123325 0.0123465 0.0123606 0.0123746 0.0123886 0.0124027 0.0124167 0.0124307 0.0124448 0.0124588 0.0124729 0.0124869 0.0125009 0.012515 0.012529 0.012543 0.0125571 0.0125711 0.0125852 0.0125992 0.0126132 0.0126273 0.0126413 0.0126553 0.0126694 0.0126834 0.0126974 0.0127115 0.0127255 0.0127396 0.0127536 0.0127676 0.0127817 0.0127957 0.0128097 0.0128238 0.0128378 0.0128518 0.0128659 0.0128799 0.012894 0.012908 0.012922 0.0129361 0.0129501 0.0129641 0.0129782 0.0129922 0.0130062 0.0130203 0.0130343 0.0130484 0.0130624 0.0130764 0.0130905 0.0131045 0.0131185 0.0131326 0.0131466 0.0131606 0.0131747 0.0131887 0.0132028 0.0132168 0.0132308 0.0132449 0.0132589 0.0132729 0.013287 0.013301 0.013315 0.0133291 0.0133431 0.0133572 0.0133712 0.0133852 0.0133993 0.0134133 0.0134273 +-0.00330465 -0.00292833 -0.00220389 -0.00113876 0.000134934 0.00152115 0.002966 0.0044363 0.00590644 0.00734987 0.00872963 0.00998101 0.0109792 0.0115519 0.0117381 0.0117837 0.0118026 0.0118173 0.0118315 0.0118455 0.0118596 0.0118736 0.0118877 0.0119017 0.0119157 0.0119298 0.0119438 0.0119579 0.0119719 0.011986 0.012 0.012014 0.0120281 0.0120421 0.0120562 0.0120702 0.0120842 0.0120983 0.0121123 0.0121264 0.0121404 0.0121545 0.0121685 0.0121825 0.0121966 0.0122106 0.0122247 0.0122387 0.0122527 0.0122668 0.0122808 0.0122949 0.0123089 0.012323 0.012337 0.012351 0.0123651 0.0123791 0.0123932 0.0124072 0.0124213 0.0124353 0.0124493 0.0124634 0.0124774 0.0124915 0.0125055 0.0125195 0.0125336 0.0125476 0.0125617 0.0125757 0.0125898 0.0126038 0.0126178 0.0126319 0.0126459 0.01266 0.012674 0.012688 0.0127021 0.0127161 0.0127302 0.0127442 0.0127583 0.0127723 0.0127863 0.0128004 0.0128144 0.0128285 0.0128425 0.0128565 0.0128706 0.0128846 0.0128987 0.0129127 0.0129268 0.0129408 0.0129548 0.0129689 0.0129829 0.012997 0.013011 0.0130251 0.0130391 0.0130531 0.0130672 0.0130812 0.0130953 0.0131093 0.0131233 0.0131374 0.0131514 0.0131655 0.0131795 0.0131936 0.0132076 0.0132216 0.0132357 0.0132497 0.0132638 0.0132778 0.0132918 0.0133059 0.0133199 0.013334 0.013348 0.0133621 0.0133761 0.0133901 0.0134042 0.0134182 0.0134323 +-0.00330599 -0.00292929 -0.00220436 -0.00113888 0.000135023 0.00152139 0.00296635 0.00443677 0.00590704 0.00735065 0.00873068 0.00998253 0.0109815 0.0115554 0.0117422 0.011788 0.0118069 0.0118216 0.0118358 0.0118499 0.0118639 0.0118779 0.011892 0.011906 0.0119201 0.0119341 0.0119482 0.0119622 0.0119763 0.0119903 0.0120044 0.0120184 0.0120325 0.0120465 0.0120606 0.0120746 0.0120887 0.0121027 0.0121168 0.0121308 0.0121448 0.0121589 0.0121729 0.012187 0.012201 0.0122151 0.0122291 0.0122432 0.0122572 0.0122713 0.0122853 0.0122994 0.0123134 0.0123275 0.0123415 0.0123556 0.0123696 0.0123836 0.0123977 0.0124117 0.0124258 0.0124398 0.0124539 0.0124679 0.012482 0.012496 0.0125101 0.0125241 0.0125382 0.0125522 0.0125663 0.0125803 0.0125944 0.0126084 0.0126225 0.0126365 0.0126505 0.0126646 0.0126786 0.0126927 0.0127067 0.0127208 0.0127348 0.0127489 0.0127629 0.012777 0.012791 0.0128051 0.0128191 0.0128332 0.0128472 0.0128613 0.0128753 0.0128893 0.0129034 0.0129174 0.0129315 0.0129455 0.0129596 0.0129736 0.0129877 0.0130017 0.0130158 0.0130298 0.0130439 0.0130579 0.013072 0.013086 0.0131001 0.0131141 0.0131281 0.0131422 0.0131562 0.0131703 0.0131843 0.0131984 0.0132124 0.0132265 0.0132405 0.0132546 0.0132686 0.0132827 0.0132967 0.0133108 0.0133248 0.0133389 0.0133529 0.013367 0.013381 0.013395 0.0134091 0.0134231 0.0134372 +-0.00330732 -0.00293026 -0.00220484 -0.00113901 0.000135112 0.00152162 0.00296671 0.00443723 0.00590764 0.00735143 0.00873172 0.00998404 0.0109839 0.0115589 0.0117464 0.0117922 0.0118112 0.0118259 0.0118401 0.0118542 0.0118682 0.0118823 0.0118963 0.0119104 0.0119244 0.0119385 0.0119525 0.0119666 0.0119806 0.0119947 0.0120088 0.0120228 0.0120369 0.0120509 0.012065 0.012079 0.0120931 0.0121071 0.0121212 0.0121352 0.0121493 0.0121633 0.0121774 0.0121914 0.0122055 0.0122195 0.0122336 0.0122476 0.0122617 0.0122757 0.0122898 0.0123039 0.0123179 0.012332 0.012346 0.0123601 0.0123741 0.0123882 0.0124022 0.0124163 0.0124303 0.0124444 0.0124584 0.0124725 0.0124865 0.0125006 0.0125146 0.0125287 0.0125427 0.0125568 0.0125709 0.0125849 0.012599 0.012613 0.0126271 0.0126411 0.0126552 0.0126692 0.0126833 0.0126973 0.0127114 0.0127254 0.0127395 0.0127535 0.0127676 0.0127816 0.0127957 0.0128097 0.0128238 0.0128378 0.0128519 0.012866 0.01288 0.0128941 0.0129081 0.0129222 0.0129362 0.0129503 0.0129643 0.0129784 0.0129924 0.0130065 0.0130205 0.0130346 0.0130486 0.0130627 0.0130767 0.0130908 0.0131048 0.0131189 0.013133 0.013147 0.0131611 0.0131751 0.0131892 0.0132032 0.0132173 0.0132313 0.0132454 0.0132594 0.0132735 0.0132875 0.0133016 0.0133156 0.0133297 0.0133437 0.0133578 0.0133718 0.0133859 0.0134 0.013414 0.0134281 0.0134421 +-0.00330866 -0.00293122 -0.00220531 -0.00113913 0.0001352 0.00152185 0.00296706 0.0044377 0.00590824 0.00735221 0.00873277 0.00998555 0.0109862 0.0115624 0.0117505 0.0117965 0.0118155 0.0118303 0.0118444 0.0118585 0.0118725 0.0118866 0.0119007 0.0119147 0.0119288 0.0119428 0.0119569 0.011971 0.011985 0.0119991 0.0120131 0.0120272 0.0120412 0.0120553 0.0120694 0.0120834 0.0120975 0.0121115 0.0121256 0.0121396 0.0121537 0.0121678 0.0121818 0.0121959 0.0122099 0.012224 0.0122381 0.0122521 0.0122662 0.0122802 0.0122943 0.0123083 0.0123224 0.0123365 0.0123505 0.0123646 0.0123786 0.0123927 0.0124067 0.0124208 0.0124349 0.0124489 0.012463 0.012477 0.0124911 0.0125052 0.0125192 0.0125333 0.0125473 0.0125614 0.0125754 0.0125895 0.0126036 0.0126176 0.0126317 0.0126457 0.0126598 0.0126738 0.0126879 0.012702 0.012716 0.0127301 0.0127441 0.0127582 0.0127723 0.0127863 0.0128004 0.0128144 0.0128285 0.0128425 0.0128566 0.0128707 0.0128847 0.0128988 0.0129128 0.0129269 0.0129409 0.012955 0.0129691 0.0129831 0.0129972 0.0130112 0.0130253 0.0130394 0.0130534 0.0130675 0.0130815 0.0130956 0.0131096 0.0131237 0.0131378 0.0131518 0.0131659 0.0131799 0.013194 0.013208 0.0132221 0.0132362 0.0132502 0.0132643 0.0132783 0.0132924 0.0133064 0.0133205 0.0133346 0.0133486 0.0133627 0.0133767 0.0133908 0.0134049 0.0134189 0.013433 0.013447 +-0.00330999 -0.00293218 -0.00220579 -0.00113926 0.000135289 0.00152209 0.00296741 0.00443817 0.00590884 0.00735298 0.00873382 0.00998706 0.0109886 0.0115659 0.0117546 0.0118008 0.0118198 0.0118346 0.0118487 0.0118628 0.0118769 0.0118909 0.011905 0.0119191 0.0119331 0.0119472 0.0119612 0.0119753 0.0119894 0.0120034 0.0120175 0.0120316 0.0120456 0.0120597 0.0120738 0.0120878 0.0121019 0.0121159 0.01213 0.0121441 0.0121581 0.0121722 0.0121863 0.0122003 0.0122144 0.0122285 0.0122425 0.0122566 0.0122706 0.0122847 0.0122988 0.0123128 0.0123269 0.012341 0.012355 0.0123691 0.0123831 0.0123972 0.0124113 0.0124253 0.0124394 0.0124535 0.0124675 0.0124816 0.0124957 0.0125097 0.0125238 0.0125378 0.0125519 0.012566 0.01258 0.0125941 0.0126082 0.0126222 0.0126363 0.0126503 0.0126644 0.0126785 0.0126925 0.0127066 0.0127207 0.0127347 0.0127488 0.0127629 0.0127769 0.012791 0.012805 0.0128191 0.0128332 0.0128472 0.0128613 0.0128754 0.0128894 0.0129035 0.0129175 0.0129316 0.0129457 0.0129597 0.0129738 0.0129879 0.0130019 0.013016 0.0130301 0.0130441 0.0130582 0.0130722 0.0130863 0.0131004 0.0131144 0.0131285 0.0131426 0.0131566 0.0131707 0.0131847 0.0131988 0.0132129 0.0132269 0.013241 0.0132551 0.0132691 0.0132832 0.0132973 0.0133113 0.0133254 0.0133394 0.0133535 0.0133676 0.0133816 0.0133957 0.0134098 0.0134238 0.0134379 0.0134519 +-0.00331133 -0.00293314 -0.00220626 -0.00113938 0.000135378 0.00152232 0.00296777 0.00443864 0.00590944 0.00735376 0.00873486 0.00998856 0.0109909 0.0115694 0.0117587 0.0118051 0.0118241 0.0118389 0.011853 0.0118671 0.0118812 0.0118953 0.0119093 0.0119234 0.0119375 0.0119515 0.0119656 0.0119797 0.0119937 0.0120078 0.0120219 0.0120359 0.01205 0.0120641 0.0120782 0.0120922 0.0121063 0.0121204 0.0121344 0.0121485 0.0121626 0.0121766 0.0121907 0.0122048 0.0122188 0.0122329 0.012247 0.012261 0.0122751 0.0122892 0.0123032 0.0123173 0.0123314 0.0123455 0.0123595 0.0123736 0.0123877 0.0124017 0.0124158 0.0124299 0.0124439 0.012458 0.0124721 0.0124861 0.0125002 0.0125143 0.0125283 0.0125424 0.0125565 0.0125705 0.0125846 0.0125987 0.0126128 0.0126268 0.0126409 0.012655 0.012669 0.0126831 0.0126972 0.0127112 0.0127253 0.0127394 0.0127534 0.0127675 0.0127816 0.0127956 0.0128097 0.0128238 0.0128378 0.0128519 0.012866 0.0128801 0.0128941 0.0129082 0.0129223 0.0129363 0.0129504 0.0129645 0.0129785 0.0129926 0.0130067 0.0130207 0.0130348 0.0130489 0.0130629 0.013077 0.0130911 0.0131052 0.0131192 0.0131333 0.0131474 0.0131614 0.0131755 0.0131896 0.0132036 0.0132177 0.0132318 0.0132458 0.0132599 0.013274 0.013288 0.0133021 0.0133162 0.0133302 0.0133443 0.0133584 0.0133725 0.0133865 0.0134006 0.0134147 0.0134287 0.0134428 0.0134569 +-0.00331266 -0.0029341 -0.00220674 -0.00113951 0.000135467 0.00152256 0.00296812 0.00443911 0.00591004 0.00735453 0.0087359 0.00999007 0.0109933 0.0115729 0.0117629 0.0118093 0.0118284 0.0118432 0.0118573 0.0118714 0.0118855 0.0118996 0.0119137 0.0119277 0.0119418 0.0119559 0.01197 0.011984 0.0119981 0.0120122 0.0120262 0.0120403 0.0120544 0.0120685 0.0120825 0.0120966 0.0121107 0.0121248 0.0121388 0.0121529 0.012167 0.0121811 0.0121951 0.0122092 0.0122233 0.0122374 0.0122514 0.0122655 0.0122796 0.0122937 0.0123077 0.0123218 0.0123359 0.0123499 0.012364 0.0123781 0.0123922 0.0124062 0.0124203 0.0124344 0.0124485 0.0124625 0.0124766 0.0124907 0.0125048 0.0125188 0.0125329 0.012547 0.0125611 0.0125751 0.0125892 0.0126033 0.0126173 0.0126314 0.0126455 0.0126596 0.0126736 0.0126877 0.0127018 0.0127159 0.0127299 0.012744 0.0127581 0.0127722 0.0127862 0.0128003 0.0128144 0.0128285 0.0128425 0.0128566 0.0128707 0.0128848 0.0128988 0.0129129 0.012927 0.012941 0.0129551 0.0129692 0.0129833 0.0129973 0.0130114 0.0130255 0.0130396 0.0130536 0.0130677 0.0130818 0.0130959 0.0131099 0.013124 0.0131381 0.0131522 0.0131662 0.0131803 0.0131944 0.0132085 0.0132225 0.0132366 0.0132507 0.0132647 0.0132788 0.0132929 0.013307 0.013321 0.0133351 0.0133492 0.0133633 0.0133773 0.0133914 0.0134055 0.0134196 0.0134336 0.0134477 0.0134618 +-0.00331399 -0.00293506 -0.00220721 -0.00113963 0.000135555 0.00152279 0.00296847 0.00443957 0.00591064 0.00735531 0.00873694 0.00999157 0.0109956 0.0115763 0.011767 0.0118136 0.0118326 0.0118475 0.0118617 0.0118757 0.0118898 0.0119039 0.011918 0.0119321 0.0119461 0.0119602 0.0119743 0.0119884 0.0120025 0.0120165 0.0120306 0.0120447 0.0120588 0.0120729 0.0120869 0.012101 0.0121151 0.0121292 0.0121433 0.0121573 0.0121714 0.0121855 0.0121996 0.0122136 0.0122277 0.0122418 0.0122559 0.01227 0.012284 0.0122981 0.0123122 0.0123263 0.0123404 0.0123544 0.0123685 0.0123826 0.0123967 0.0124108 0.0124248 0.0124389 0.012453 0.0124671 0.0124812 0.0124952 0.0125093 0.0125234 0.0125375 0.0125515 0.0125656 0.0125797 0.0125938 0.0126079 0.0126219 0.012636 0.0126501 0.0126642 0.0126783 0.0126923 0.0127064 0.0127205 0.0127346 0.0127487 0.0127627 0.0127768 0.0127909 0.012805 0.0128191 0.0128331 0.0128472 0.0128613 0.0128754 0.0128894 0.0129035 0.0129176 0.0129317 0.0129458 0.0129598 0.0129739 0.012988 0.0130021 0.0130162 0.0130302 0.0130443 0.0130584 0.0130725 0.0130866 0.0131006 0.0131147 0.0131288 0.0131429 0.013157 0.013171 0.0131851 0.0131992 0.0132133 0.0132273 0.0132414 0.0132555 0.0132696 0.0132837 0.0132977 0.0133118 0.0133259 0.01334 0.0133541 0.0133681 0.0133822 0.0133963 0.0134104 0.0134245 0.0134385 0.0134526 0.0134667 +-0.00331533 -0.00293602 -0.00220768 -0.00113976 0.000135644 0.00152303 0.00296883 0.00444004 0.00591124 0.00735608 0.00873798 0.00999307 0.010998 0.0115798 0.0117711 0.0118178 0.0118369 0.0118518 0.011866 0.0118801 0.0118941 0.0119082 0.0119223 0.0119364 0.0119505 0.0119646 0.0119787 0.0119927 0.0120068 0.0120209 0.012035 0.0120491 0.0120632 0.0120772 0.0120913 0.0121054 0.0121195 0.0121336 0.0121477 0.0121618 0.0121758 0.0121899 0.012204 0.0122181 0.0122322 0.0122463 0.0122603 0.0122744 0.0122885 0.0123026 0.0123167 0.0123308 0.0123448 0.0123589 0.012373 0.0123871 0.0124012 0.0124153 0.0124294 0.0124434 0.0124575 0.0124716 0.0124857 0.0124998 0.0125139 0.0125279 0.012542 0.0125561 0.0125702 0.0125843 0.0125984 0.0126125 0.0126265 0.0126406 0.0126547 0.0126688 0.0126829 0.012697 0.012711 0.0127251 0.0127392 0.0127533 0.0127674 0.0127815 0.0127956 0.0128096 0.0128237 0.0128378 0.0128519 0.012866 0.0128801 0.0128941 0.0129082 0.0129223 0.0129364 0.0129505 0.0129646 0.0129787 0.0129927 0.0130068 0.0130209 0.013035 0.0130491 0.0130632 0.0130772 0.0130913 0.0131054 0.0131195 0.0131336 0.0131477 0.0131617 0.0131758 0.0131899 0.013204 0.0132181 0.0132322 0.0132463 0.0132603 0.0132744 0.0132885 0.0133026 0.0133167 0.0133308 0.0133448 0.0133589 0.013373 0.0133871 0.0134012 0.0134153 0.0134294 0.0134434 0.0134575 0.0134716 +-0.00331666 -0.00293698 -0.00220815 -0.00113988 0.000135733 0.00152326 0.00296918 0.00444051 0.00591184 0.00735686 0.00873902 0.00999457 0.0110003 0.0115833 0.0117752 0.0118221 0.0118412 0.0118561 0.0118703 0.0118844 0.0118985 0.0119126 0.0119266 0.0119407 0.0119548 0.0119689 0.011983 0.0119971 0.0120112 0.0120253 0.0120394 0.0120534 0.0120675 0.0120816 0.0120957 0.0121098 0.0121239 0.012138 0.0121521 0.0121662 0.0121803 0.0121943 0.0122084 0.0122225 0.0122366 0.0122507 0.0122648 0.0122789 0.012293 0.0123071 0.0123212 0.0123352 0.0123493 0.0123634 0.0123775 0.0123916 0.0124057 0.0124198 0.0124339 0.012448 0.0124621 0.0124761 0.0124902 0.0125043 0.0125184 0.0125325 0.0125466 0.0125607 0.0125748 0.0125889 0.012603 0.012617 0.0126311 0.0126452 0.0126593 0.0126734 0.0126875 0.0127016 0.0127157 0.0127298 0.0127439 0.0127579 0.012772 0.0127861 0.0128002 0.0128143 0.0128284 0.0128425 0.0128566 0.0128707 0.0128847 0.0128988 0.0129129 0.012927 0.0129411 0.0129552 0.0129693 0.0129834 0.0129975 0.0130116 0.0130256 0.0130397 0.0130538 0.0130679 0.013082 0.0130961 0.0131102 0.0131243 0.0131384 0.0131525 0.0131665 0.0131806 0.0131947 0.0132088 0.0132229 0.013237 0.0132511 0.0132652 0.0132793 0.0132934 0.0133074 0.0133215 0.0133356 0.0133497 0.0133638 0.0133779 0.013392 0.0134061 0.0134202 0.0134343 0.0134483 0.0134624 0.0134765 +-0.00331799 -0.00293794 -0.00220863 -0.00114001 0.000135822 0.00152349 0.00296953 0.00444097 0.00591244 0.00735763 0.00874006 0.00999607 0.0110026 0.0115868 0.0117793 0.0118264 0.0118455 0.0118604 0.0118746 0.0118887 0.0119028 0.0119169 0.011931 0.0119451 0.0119592 0.0119733 0.0119873 0.0120014 0.0120155 0.0120296 0.0120437 0.0120578 0.0120719 0.012086 0.0121001 0.0121142 0.0121283 0.0121424 0.0121565 0.0121706 0.0121847 0.0121988 0.0122129 0.012227 0.0122411 0.0122552 0.0122693 0.0122833 0.0122974 0.0123115 0.0123256 0.0123397 0.0123538 0.0123679 0.012382 0.0123961 0.0124102 0.0124243 0.0124384 0.0124525 0.0124666 0.0124807 0.0124948 0.0125089 0.012523 0.0125371 0.0125512 0.0125652 0.0125793 0.0125934 0.0126075 0.0126216 0.0126357 0.0126498 0.0126639 0.012678 0.0126921 0.0127062 0.0127203 0.0127344 0.0127485 0.0127626 0.0127767 0.0127908 0.0128049 0.012819 0.0128331 0.0128472 0.0128612 0.0128753 0.0128894 0.0129035 0.0129176 0.0129317 0.0129458 0.0129599 0.012974 0.0129881 0.0130022 0.0130163 0.0130304 0.0130445 0.0130586 0.0130727 0.0130868 0.0131009 0.013115 0.0131291 0.0131431 0.0131572 0.0131713 0.0131854 0.0131995 0.0132136 0.0132277 0.0132418 0.0132559 0.01327 0.0132841 0.0132982 0.0133123 0.0133264 0.0133405 0.0133546 0.0133687 0.0133828 0.0133969 0.013411 0.0134251 0.0134391 0.0134532 0.0134673 0.0134814 +-0.00331932 -0.00293889 -0.0022091 -0.00114013 0.00013591 0.00152373 0.00296988 0.00444144 0.00591303 0.0073584 0.0087411 0.00999756 0.011005 0.0115902 0.0117834 0.0118306 0.0118498 0.0118647 0.0118789 0.011893 0.0119071 0.0119212 0.0119353 0.0119494 0.0119635 0.0119776 0.0119917 0.0120058 0.0120199 0.012034 0.0120481 0.0120622 0.0120763 0.0120904 0.0121045 0.0121186 0.0121327 0.0121468 0.0121609 0.012175 0.0121891 0.0122032 0.0122173 0.0122314 0.0122455 0.0122596 0.0122737 0.0122878 0.0123019 0.012316 0.0123301 0.0123442 0.0123583 0.0123724 0.0123865 0.0124006 0.0124147 0.0124288 0.0124429 0.012457 0.0124711 0.0124852 0.0124993 0.0125134 0.0125275 0.0125416 0.0125557 0.0125698 0.0125839 0.012598 0.0126121 0.0126262 0.0126403 0.0126544 0.0126685 0.0126826 0.0126967 0.0127108 0.0127249 0.012739 0.0127531 0.0127672 0.0127813 0.0127954 0.0128095 0.0128236 0.0128377 0.0128518 0.0128659 0.01288 0.0128941 0.0129082 0.0129223 0.0129364 0.0129505 0.0129646 0.0129787 0.0129928 0.0130069 0.013021 0.0130351 0.0130492 0.0130633 0.0130774 0.0130915 0.0131056 0.0131197 0.0131338 0.0131479 0.013162 0.0131761 0.0131902 0.0132043 0.0132184 0.0132325 0.0132466 0.0132607 0.0132748 0.0132889 0.013303 0.0133171 0.0133312 0.0133453 0.0133594 0.0133735 0.0133876 0.0134017 0.0134158 0.0134299 0.013444 0.0134581 0.0134722 0.0134863 +-0.00332065 -0.00293985 -0.00220957 -0.00114025 0.000135999 0.00152396 0.00297023 0.00444191 0.00591363 0.00735917 0.00874214 0.00999906 0.0110073 0.0115937 0.0117875 0.0118349 0.0118541 0.011869 0.0118832 0.0118973 0.0119114 0.0119255 0.0119396 0.0119537 0.0119678 0.0119819 0.011996 0.0120101 0.0120242 0.0120384 0.0120525 0.0120666 0.0120807 0.0120948 0.0121089 0.012123 0.0121371 0.0121512 0.0121653 0.0121794 0.0121935 0.0122076 0.0122217 0.0122358 0.0122499 0.012264 0.0122782 0.0122923 0.0123064 0.0123205 0.0123346 0.0123487 0.0123628 0.0123769 0.012391 0.0124051 0.0124192 0.0124333 0.0124474 0.0124615 0.0124756 0.0124897 0.0125038 0.012518 0.0125321 0.0125462 0.0125603 0.0125744 0.0125885 0.0126026 0.0126167 0.0126308 0.0126449 0.012659 0.0126731 0.0126872 0.0127013 0.0127154 0.0127295 0.0127436 0.0127577 0.0127719 0.012786 0.0128001 0.0128142 0.0128283 0.0128424 0.0128565 0.0128706 0.0128847 0.0128988 0.0129129 0.012927 0.0129411 0.0129552 0.0129693 0.0129834 0.0129975 0.0130117 0.0130258 0.0130399 0.013054 0.0130681 0.0130822 0.0130963 0.0131104 0.0131245 0.0131386 0.0131527 0.0131668 0.0131809 0.013195 0.0132091 0.0132232 0.0132373 0.0132515 0.0132656 0.0132797 0.0132938 0.0133079 0.013322 0.0133361 0.0133502 0.0133643 0.0133784 0.0133925 0.0134066 0.0134207 0.0134348 0.0134489 0.013463 0.0134771 0.0134912 +-0.00332198 -0.00294081 -0.00221004 -0.00114038 0.000136088 0.0015242 0.00297058 0.00444237 0.00591423 0.00735994 0.00874317 0.0100005 0.0110096 0.0115972 0.0117916 0.0118391 0.0118584 0.0118733 0.0118875 0.0119016 0.0119157 0.0119298 0.0119439 0.011958 0.0119722 0.0119863 0.0120004 0.0120145 0.0120286 0.0120427 0.0120568 0.0120709 0.012085 0.0120992 0.0121133 0.0121274 0.0121415 0.0121556 0.0121697 0.0121838 0.0121979 0.012212 0.0122262 0.0122403 0.0122544 0.0122685 0.0122826 0.0122967 0.0123108 0.0123249 0.012339 0.0123532 0.0123673 0.0123814 0.0123955 0.0124096 0.0124237 0.0124378 0.0124519 0.012466 0.0124802 0.0124943 0.0125084 0.0125225 0.0125366 0.0125507 0.0125648 0.0125789 0.012593 0.0126072 0.0126213 0.0126354 0.0126495 0.0126636 0.0126777 0.0126918 0.0127059 0.01272 0.0127342 0.0127483 0.0127624 0.0127765 0.0127906 0.0128047 0.0128188 0.0128329 0.012847 0.0128612 0.0128753 0.0128894 0.0129035 0.0129176 0.0129317 0.0129458 0.0129599 0.012974 0.0129882 0.0130023 0.0130164 0.0130305 0.0130446 0.0130587 0.0130728 0.0130869 0.013101 0.0131152 0.0131293 0.0131434 0.0131575 0.0131716 0.0131857 0.0131998 0.0132139 0.013228 0.0132422 0.0132563 0.0132704 0.0132845 0.0132986 0.0133127 0.0133268 0.0133409 0.013355 0.0133692 0.0133833 0.0133974 0.0134115 0.0134256 0.0134397 0.0134538 0.0134679 0.013482 0.0134962 +-0.00332331 -0.00294176 -0.00221051 -0.0011405 0.000136177 0.00152443 0.00297093 0.00444284 0.00591482 0.00736071 0.00874421 0.010002 0.0110119 0.0116006 0.0117957 0.0118434 0.0118627 0.0118775 0.0118918 0.0119059 0.01192 0.0119341 0.0119483 0.0119624 0.0119765 0.0119906 0.0120047 0.0120188 0.012033 0.0120471 0.0120612 0.0120753 0.0120894 0.0121035 0.0121177 0.0121318 0.0121459 0.01216 0.0121741 0.0121882 0.0122024 0.0122165 0.0122306 0.0122447 0.0122588 0.0122729 0.0122871 0.0123012 0.0123153 0.0123294 0.0123435 0.0123576 0.0123718 0.0123859 0.0124 0.0124141 0.0124282 0.0124423 0.0124564 0.0124706 0.0124847 0.0124988 0.0125129 0.012527 0.0125411 0.0125553 0.0125694 0.0125835 0.0125976 0.0126117 0.0126258 0.01264 0.0126541 0.0126682 0.0126823 0.0126964 0.0127105 0.0127247 0.0127388 0.0127529 0.012767 0.0127811 0.0127952 0.0128094 0.0128235 0.0128376 0.0128517 0.0128658 0.0128799 0.0128941 0.0129082 0.0129223 0.0129364 0.0129505 0.0129646 0.0129788 0.0129929 0.013007 0.0130211 0.0130352 0.0130493 0.0130635 0.0130776 0.0130917 0.0131058 0.0131199 0.013134 0.0131482 0.0131623 0.0131764 0.0131905 0.0132046 0.0132187 0.0132329 0.013247 0.0132611 0.0132752 0.0132893 0.0133034 0.0133175 0.0133317 0.0133458 0.0133599 0.013374 0.0133881 0.0134022 0.0134164 0.0134305 0.0134446 0.0134587 0.0134728 0.0134869 0.0135011 +-0.00332464 -0.00294272 -0.00221098 -0.00114062 0.000136266 0.00152466 0.00297129 0.0044433 0.00591542 0.00736148 0.00874524 0.0100035 0.0110143 0.0116041 0.0117998 0.0118477 0.011867 0.0118818 0.0118961 0.0119102 0.0119243 0.0119385 0.0119526 0.0119667 0.0119808 0.0119949 0.0120091 0.0120232 0.0120373 0.0120514 0.0120656 0.0120797 0.0120938 0.0121079 0.012122 0.0121362 0.0121503 0.0121644 0.0121785 0.0121926 0.0122068 0.0122209 0.012235 0.0122491 0.0122633 0.0122774 0.0122915 0.0123056 0.0123197 0.0123339 0.012348 0.0123621 0.0123762 0.0123904 0.0124045 0.0124186 0.0124327 0.0124468 0.012461 0.0124751 0.0124892 0.0125033 0.0125174 0.0125316 0.0125457 0.0125598 0.0125739 0.0125881 0.0126022 0.0126163 0.0126304 0.0126445 0.0126587 0.0126728 0.0126869 0.012701 0.0127152 0.0127293 0.0127434 0.0127575 0.0127716 0.0127858 0.0127999 0.012814 0.0128281 0.0128422 0.0128564 0.0128705 0.0128846 0.0128987 0.0129129 0.012927 0.0129411 0.0129552 0.0129693 0.0129835 0.0129976 0.0130117 0.0130258 0.01304 0.0130541 0.0130682 0.0130823 0.0130964 0.0131106 0.0131247 0.0131388 0.0131529 0.013167 0.0131812 0.0131953 0.0132094 0.0132235 0.0132377 0.0132518 0.0132659 0.01328 0.0132941 0.0133083 0.0133224 0.0133365 0.0133506 0.0133647 0.0133789 0.013393 0.0134071 0.0134212 0.0134354 0.0134495 0.0134636 0.0134777 0.0134918 0.013506 +-0.00332597 -0.00294367 -0.00221145 -0.00114075 0.000136354 0.0015249 0.00297164 0.00444377 0.00591601 0.00736225 0.00874627 0.010005 0.0110166 0.0116075 0.0118039 0.0118519 0.0118712 0.0118861 0.0119004 0.0119145 0.0119286 0.0119428 0.0119569 0.011971 0.0119852 0.0119993 0.0120134 0.0120275 0.0120417 0.0120558 0.0120699 0.012084 0.0120982 0.0121123 0.0121264 0.0121405 0.0121547 0.0121688 0.0121829 0.0121971 0.0122112 0.0122253 0.0122394 0.0122536 0.0122677 0.0122818 0.0122959 0.0123101 0.0123242 0.0123383 0.0123525 0.0123666 0.0123807 0.0123948 0.012409 0.0124231 0.0124372 0.0124513 0.0124655 0.0124796 0.0124937 0.0125079 0.012522 0.0125361 0.0125502 0.0125644 0.0125785 0.0125926 0.0126067 0.0126209 0.012635 0.0126491 0.0126632 0.0126774 0.0126915 0.0127056 0.0127198 0.0127339 0.012748 0.0127621 0.0127763 0.0127904 0.0128045 0.0128186 0.0128328 0.0128469 0.012861 0.0128752 0.0128893 0.0129034 0.0129175 0.0129317 0.0129458 0.0129599 0.012974 0.0129882 0.0130023 0.0130164 0.0130306 0.0130447 0.0130588 0.0130729 0.0130871 0.0131012 0.0131153 0.0131294 0.0131436 0.0131577 0.0131718 0.0131859 0.0132001 0.0132142 0.0132283 0.0132425 0.0132566 0.0132707 0.0132848 0.013299 0.0133131 0.0133272 0.0133413 0.0133555 0.0133696 0.0133837 0.0133979 0.013412 0.0134261 0.0134402 0.0134544 0.0134685 0.0134826 0.0134967 0.0135109 +-0.0033273 -0.00294462 -0.00221191 -0.00114087 0.000136443 0.00152513 0.00297199 0.00444423 0.00591661 0.00736302 0.0087473 0.0100065 0.0110189 0.011611 0.011808 0.0118562 0.0118755 0.0118904 0.0119047 0.0119188 0.0119329 0.0119471 0.0119612 0.0119753 0.0119895 0.0120036 0.0120177 0.0120319 0.012046 0.0120601 0.0120743 0.0120884 0.0121025 0.0121167 0.0121308 0.0121449 0.0121591 0.0121732 0.0121873 0.0122015 0.0122156 0.0122297 0.0122439 0.012258 0.0122721 0.0122863 0.0123004 0.0123145 0.0123287 0.0123428 0.0123569 0.0123711 0.0123852 0.0123993 0.0124134 0.0124276 0.0124417 0.0124558 0.01247 0.0124841 0.0124982 0.0125124 0.0125265 0.0125406 0.0125548 0.0125689 0.012583 0.0125972 0.0126113 0.0126254 0.0126396 0.0126537 0.0126678 0.012682 0.0126961 0.0127102 0.0127244 0.0127385 0.0127526 0.0127668 0.0127809 0.012795 0.0128092 0.0128233 0.0128374 0.0128516 0.0128657 0.0128798 0.0128939 0.0129081 0.0129222 0.0129363 0.0129505 0.0129646 0.0129787 0.0129929 0.013007 0.0130211 0.0130353 0.0130494 0.0130635 0.0130777 0.0130918 0.0131059 0.0131201 0.0131342 0.0131483 0.0131625 0.0131766 0.0131907 0.0132049 0.013219 0.0132331 0.0132473 0.0132614 0.0132755 0.0132897 0.0133038 0.0133179 0.0133321 0.0133462 0.0133603 0.0133744 0.0133886 0.0134027 0.0134168 0.013431 0.0134451 0.0134592 0.0134734 0.0134875 0.0135016 0.0135158 +-0.00332863 -0.00294557 -0.00221238 -0.00114099 0.000136532 0.00152536 0.00297234 0.0044447 0.0059172 0.00736379 0.00874834 0.010008 0.0110212 0.0116144 0.0118121 0.0118604 0.0118798 0.0118947 0.011909 0.0119231 0.0119373 0.0119514 0.0119655 0.0119797 0.0119938 0.0120079 0.0120221 0.0120362 0.0120504 0.0120645 0.0120786 0.0120928 0.0121069 0.012121 0.0121352 0.0121493 0.0121635 0.0121776 0.0121917 0.0122059 0.01222 0.0122341 0.0122483 0.0122624 0.0122766 0.0122907 0.0123048 0.012319 0.0123331 0.0123472 0.0123614 0.0123755 0.0123897 0.0124038 0.0124179 0.0124321 0.0124462 0.0124603 0.0124745 0.0124886 0.0125028 0.0125169 0.012531 0.0125452 0.0125593 0.0125735 0.0125876 0.0126017 0.0126159 0.01263 0.0126441 0.0126583 0.0126724 0.0126866 0.0127007 0.0127148 0.012729 0.0127431 0.0127572 0.0127714 0.0127855 0.0127997 0.0128138 0.0128279 0.0128421 0.0128562 0.0128703 0.0128845 0.0128986 0.0129128 0.0129269 0.012941 0.0129552 0.0129693 0.0129834 0.0129976 0.0130117 0.0130259 0.01304 0.0130541 0.0130683 0.0130824 0.0130965 0.0131107 0.0131248 0.013139 0.0131531 0.0131672 0.0131814 0.0131955 0.0132096 0.0132238 0.0132379 0.0132521 0.0132662 0.0132803 0.0132945 0.0133086 0.0133227 0.0133369 0.013351 0.0133652 0.0133793 0.0133934 0.0134076 0.0134217 0.0134358 0.01345 0.0134641 0.0134783 0.0134924 0.0135065 0.0135207 +-0.00332995 -0.00294653 -0.00221285 -0.00114112 0.000136621 0.0015256 0.00297269 0.00444516 0.0059178 0.00736455 0.00874936 0.0100095 0.0110235 0.0116179 0.0118162 0.0118647 0.0118841 0.011899 0.0119133 0.0119274 0.0119416 0.0119557 0.0119698 0.011984 0.0119981 0.0120123 0.0120264 0.0120406 0.0120547 0.0120688 0.012083 0.0120971 0.0121113 0.0121254 0.0121396 0.0121537 0.0121678 0.012182 0.0121961 0.0122103 0.0122244 0.0122386 0.0122527 0.0122668 0.012281 0.0122951 0.0123093 0.0123234 0.0123376 0.0123517 0.0123659 0.01238 0.0123941 0.0124083 0.0124224 0.0124366 0.0124507 0.0124649 0.012479 0.0124931 0.0125073 0.0125214 0.0125356 0.0125497 0.0125639 0.012578 0.0125921 0.0126063 0.0126204 0.0126346 0.0126487 0.0126629 0.012677 0.0126911 0.0127053 0.0127194 0.0127336 0.0127477 0.0127619 0.012776 0.0127901 0.0128043 0.0128184 0.0128326 0.0128467 0.0128609 0.012875 0.0128891 0.0129033 0.0129174 0.0129316 0.0129457 0.0129599 0.012974 0.0129881 0.0130023 0.0130164 0.0130306 0.0130447 0.0130589 0.013073 0.0130871 0.0131013 0.0131154 0.0131296 0.0131437 0.0131579 0.013172 0.0131861 0.0132003 0.0132144 0.0132286 0.0132427 0.0132569 0.013271 0.0132851 0.0132993 0.0133134 0.0133276 0.0133417 0.0133559 0.01337 0.0133841 0.0133983 0.0134124 0.0134266 0.0134407 0.0134549 0.013469 0.0134831 0.0134973 0.0135114 0.0135256 +-0.00333128 -0.00294748 -0.00221332 -0.00114124 0.00013671 0.00152583 0.00297304 0.00444562 0.00591839 0.00736532 0.00875039 0.0100109 0.0110258 0.0116213 0.0118203 0.0118689 0.0118884 0.0119033 0.0119175 0.0119317 0.0119459 0.01196 0.0119742 0.0119883 0.0120025 0.0120166 0.0120308 0.0120449 0.0120591 0.0120732 0.0120873 0.0121015 0.0121156 0.0121298 0.0121439 0.0121581 0.0121722 0.0121864 0.0122005 0.0122147 0.0122288 0.012243 0.0122571 0.0122713 0.0122854 0.0122996 0.0123137 0.0123279 0.012342 0.0123562 0.0123703 0.0123845 0.0123986 0.0124128 0.0124269 0.0124411 0.0124552 0.0124694 0.0124835 0.0124976 0.0125118 0.0125259 0.0125401 0.0125542 0.0125684 0.0125825 0.0125967 0.0126108 0.012625 0.0126391 0.0126533 0.0126674 0.0126816 0.0126957 0.0127099 0.012724 0.0127382 0.0127523 0.0127665 0.0127806 0.0127948 0.0128089 0.0128231 0.0128372 0.0128514 0.0128655 0.0128797 0.0128938 0.0129079 0.0129221 0.0129362 0.0129504 0.0129645 0.0129787 0.0129928 0.013007 0.0130211 0.0130353 0.0130494 0.0130636 0.0130777 0.0130919 0.013106 0.0131202 0.0131343 0.0131485 0.0131626 0.0131768 0.0131909 0.0132051 0.0132192 0.0132334 0.0132475 0.0132617 0.0132758 0.01329 0.0133041 0.0133182 0.0133324 0.0133465 0.0133607 0.0133748 0.013389 0.0134031 0.0134173 0.0134314 0.0134456 0.0134597 0.0134739 0.013488 0.0135022 0.0135163 0.0135305 +-0.00333261 -0.00294843 -0.00221378 -0.00114136 0.000136798 0.00152606 0.00297339 0.00444609 0.00591898 0.00736609 0.00875142 0.0100124 0.0110281 0.0116247 0.0118244 0.0118732 0.0118926 0.0119076 0.0119218 0.011936 0.0119502 0.0119643 0.0119785 0.0119926 0.0120068 0.0120209 0.0120351 0.0120492 0.0120634 0.0120775 0.0120917 0.0121059 0.01212 0.0121342 0.0121483 0.0121625 0.0121766 0.0121908 0.0122049 0.0122191 0.0122332 0.0122474 0.0122615 0.0122757 0.0122899 0.012304 0.0123182 0.0123323 0.0123465 0.0123606 0.0123748 0.0123889 0.0124031 0.0124172 0.0124314 0.0124455 0.0124597 0.0124739 0.012488 0.0125022 0.0125163 0.0125305 0.0125446 0.0125588 0.0125729 0.0125871 0.0126012 0.0126154 0.0126295 0.0126437 0.0126578 0.012672 0.0126862 0.0127003 0.0127145 0.0127286 0.0127428 0.0127569 0.0127711 0.0127852 0.0127994 0.0128135 0.0128277 0.0128418 0.012856 0.0128702 0.0128843 0.0128985 0.0129126 0.0129268 0.0129409 0.0129551 0.0129692 0.0129834 0.0129975 0.0130117 0.0130258 0.01304 0.0130541 0.0130683 0.0130825 0.0130966 0.0131108 0.0131249 0.0131391 0.0131532 0.0131674 0.0131815 0.0131957 0.0132098 0.013224 0.0132381 0.0132523 0.0132665 0.0132806 0.0132948 0.0133089 0.0133231 0.0133372 0.0133514 0.0133655 0.0133797 0.0133938 0.013408 0.0134221 0.0134363 0.0134504 0.0134646 0.0134788 0.0134929 0.0135071 0.0135212 0.0135354 +-0.00333393 -0.00294938 -0.00221425 -0.00114148 0.000136887 0.00152629 0.00297374 0.00444655 0.00591958 0.00736685 0.00875245 0.0100139 0.0110304 0.0116282 0.0118285 0.0118774 0.0118969 0.0119119 0.0119261 0.0119403 0.0119545 0.0119686 0.0119828 0.0119969 0.0120111 0.0120253 0.0120394 0.0120536 0.0120677 0.0120819 0.0120961 0.0121102 0.0121244 0.0121385 0.0121527 0.0121669 0.012181 0.0121952 0.0122093 0.0122235 0.0122376 0.0122518 0.012266 0.0122801 0.0122943 0.0123084 0.0123226 0.0123368 0.0123509 0.0123651 0.0123792 0.0123934 0.0124076 0.0124217 0.0124359 0.01245 0.0124642 0.0124783 0.0124925 0.0125067 0.0125208 0.012535 0.0125491 0.0125633 0.0125775 0.0125916 0.0126058 0.0126199 0.0126341 0.0126483 0.0126624 0.0126766 0.0126907 0.0127049 0.012719 0.0127332 0.0127474 0.0127615 0.0127757 0.0127898 0.012804 0.0128182 0.0128323 0.0128465 0.0128606 0.0128748 0.012889 0.0129031 0.0129173 0.0129314 0.0129456 0.0129598 0.0129739 0.0129881 0.0130022 0.0130164 0.0130305 0.0130447 0.0130589 0.013073 0.0130872 0.0131013 0.0131155 0.0131297 0.0131438 0.013158 0.0131721 0.0131863 0.0132005 0.0132146 0.0132288 0.0132429 0.0132571 0.0132712 0.0132854 0.0132996 0.0133137 0.0133279 0.013342 0.0133562 0.0133704 0.0133845 0.0133987 0.0134128 0.013427 0.0134412 0.0134553 0.0134695 0.0134836 0.0134978 0.0135119 0.0135261 0.0135403 +-0.00333526 -0.00295033 -0.00221471 -0.0011416 0.000136976 0.00152653 0.00297409 0.00444701 0.00592017 0.00736762 0.00875347 0.0100154 0.0110327 0.0116316 0.0118326 0.0118817 0.0119012 0.0119161 0.0119304 0.0119446 0.0119588 0.0119729 0.0119871 0.0120013 0.0120154 0.0120296 0.0120438 0.0120579 0.0120721 0.0120862 0.0121004 0.0121146 0.0121287 0.0121429 0.0121571 0.0121712 0.0121854 0.0121996 0.0122137 0.0122279 0.0122421 0.0122562 0.0122704 0.0122845 0.0122987 0.0123129 0.012327 0.0123412 0.0123554 0.0123695 0.0123837 0.0123979 0.012412 0.0124262 0.0124404 0.0124545 0.0124687 0.0124828 0.012497 0.0125112 0.0125253 0.0125395 0.0125537 0.0125678 0.012582 0.0125962 0.0126103 0.0126245 0.0126387 0.0126528 0.012667 0.0126811 0.0126953 0.0127095 0.0127236 0.0127378 0.012752 0.0127661 0.0127803 0.0127945 0.0128086 0.0128228 0.0128369 0.0128511 0.0128653 0.0128794 0.0128936 0.0129078 0.0129219 0.0129361 0.0129503 0.0129644 0.0129786 0.0129928 0.0130069 0.0130211 0.0130352 0.0130494 0.0130636 0.0130777 0.0130919 0.0131061 0.0131202 0.0131344 0.0131486 0.0131627 0.0131769 0.0131911 0.0132052 0.0132194 0.0132335 0.0132477 0.0132619 0.013276 0.0132902 0.0133044 0.0133185 0.0133327 0.0133469 0.013361 0.0133752 0.0133894 0.0134035 0.0134177 0.0134318 0.013446 0.0134602 0.0134743 0.0134885 0.0135027 0.0135168 0.013531 0.0135452 +-0.00333658 -0.00295128 -0.00221518 -0.00114173 0.000137065 0.00152676 0.00297444 0.00444748 0.00592076 0.00736838 0.0087545 0.0100168 0.011035 0.011635 0.0118367 0.0118859 0.0119055 0.0119204 0.0119347 0.0119489 0.0119631 0.0119772 0.0119914 0.0120056 0.0120197 0.0120339 0.0120481 0.0120623 0.0120764 0.0120906 0.0121048 0.0121189 0.0121331 0.0121473 0.0121614 0.0121756 0.0121898 0.012204 0.0122181 0.0122323 0.0122465 0.0122606 0.0122748 0.012289 0.0123031 0.0123173 0.0123315 0.0123456 0.0123598 0.012374 0.0123882 0.0124023 0.0124165 0.0124307 0.0124448 0.012459 0.0124732 0.0124873 0.0125015 0.0125157 0.0125298 0.012544 0.0125582 0.0125724 0.0125865 0.0126007 0.0126149 0.012629 0.0126432 0.0126574 0.0126715 0.0126857 0.0126999 0.0127141 0.0127282 0.0127424 0.0127566 0.0127707 0.0127849 0.0127991 0.0128132 0.0128274 0.0128416 0.0128557 0.0128699 0.0128841 0.0128983 0.0129124 0.0129266 0.0129408 0.0129549 0.0129691 0.0129833 0.0129974 0.0130116 0.0130258 0.01304 0.0130541 0.0130683 0.0130825 0.0130966 0.0131108 0.013125 0.0131391 0.0131533 0.0131675 0.0131816 0.0131958 0.01321 0.0132242 0.0132383 0.0132525 0.0132667 0.0132808 0.013295 0.0133092 0.0133233 0.0133375 0.0133517 0.0133658 0.01338 0.0133942 0.0134084 0.0134225 0.0134367 0.0134509 0.013465 0.0134792 0.0134934 0.0135075 0.0135217 0.0135359 0.0135501 +-0.00333791 -0.00295222 -0.00221564 -0.00114185 0.000137154 0.00152699 0.00297478 0.00444794 0.00592135 0.00736914 0.00875552 0.0100183 0.0110373 0.0116385 0.0118408 0.0118901 0.0119097 0.0119247 0.011939 0.0119532 0.0119674 0.0119815 0.0119957 0.0120099 0.0120241 0.0120382 0.0120524 0.0120666 0.0120808 0.0120949 0.0121091 0.0121233 0.0121375 0.0121516 0.0121658 0.01218 0.0121942 0.0122083 0.0122225 0.0122367 0.0122509 0.012265 0.0122792 0.0122934 0.0123076 0.0123217 0.0123359 0.0123501 0.0123643 0.0123784 0.0123926 0.0124068 0.012421 0.0124351 0.0124493 0.0124635 0.0124777 0.0124918 0.012506 0.0125202 0.0125344 0.0125485 0.0125627 0.0125769 0.0125911 0.0126052 0.0126194 0.0126336 0.0126478 0.0126619 0.0126761 0.0126903 0.0127045 0.0127186 0.0127328 0.012747 0.0127612 0.0127753 0.0127895 0.0128037 0.0128179 0.012832 0.0128462 0.0128604 0.0128746 0.0128887 0.0129029 0.0129171 0.0129313 0.0129454 0.0129596 0.0129738 0.012988 0.0130021 0.0130163 0.0130305 0.0130447 0.0130588 0.013073 0.0130872 0.0131014 0.0131155 0.0131297 0.0131439 0.0131581 0.0131722 0.0131864 0.0132006 0.0132148 0.0132289 0.0132431 0.0132573 0.0132714 0.0132856 0.0132998 0.013314 0.0133281 0.0133423 0.0133565 0.0133707 0.0133848 0.013399 0.0134132 0.0134274 0.0134415 0.0134557 0.0134699 0.0134841 0.0134982 0.0135124 0.0135266 0.0135408 0.0135549 +-0.00333923 -0.00295317 -0.00221611 -0.00114197 0.000137242 0.00152722 0.00297513 0.0044484 0.00592194 0.00736991 0.00875654 0.0100198 0.0110395 0.0116419 0.0118449 0.0118944 0.011914 0.011929 0.0119433 0.0119575 0.0119717 0.0119858 0.012 0.0120142 0.0120284 0.0120426 0.0120567 0.0120709 0.0120851 0.0120993 0.0121135 0.0121276 0.0121418 0.012156 0.0121702 0.0121844 0.0121985 0.0122127 0.0122269 0.0122411 0.0122553 0.0122694 0.0122836 0.0122978 0.012312 0.0123262 0.0123403 0.0123545 0.0123687 0.0123829 0.0123971 0.0124112 0.0124254 0.0124396 0.0124538 0.012468 0.0124821 0.0124963 0.0125105 0.0125247 0.0125389 0.012553 0.0125672 0.0125814 0.0125956 0.0126098 0.0126239 0.0126381 0.0126523 0.0126665 0.0126807 0.0126949 0.012709 0.0127232 0.0127374 0.0127516 0.0127658 0.0127799 0.0127941 0.0128083 0.0128225 0.0128367 0.0128508 0.012865 0.0128792 0.0128934 0.0129076 0.0129217 0.0129359 0.0129501 0.0129643 0.0129785 0.0129926 0.0130068 0.013021 0.0130352 0.0130494 0.0130635 0.0130777 0.0130919 0.0131061 0.0131203 0.0131344 0.0131486 0.0131628 0.013177 0.0131912 0.0132053 0.0132195 0.0132337 0.0132479 0.0132621 0.0132762 0.0132904 0.0133046 0.0133188 0.013333 0.0133471 0.0133613 0.0133755 0.0133897 0.0134039 0.013418 0.0134322 0.0134464 0.0134606 0.0134748 0.0134889 0.0135031 0.0135173 0.0135315 0.0135457 0.0135598 +-0.00334055 -0.00295412 -0.00221657 -0.00114209 0.000137331 0.00152746 0.00297548 0.00444886 0.00592254 0.00737067 0.00875756 0.0100212 0.0110418 0.0116453 0.0118489 0.0118986 0.0119183 0.0119333 0.0119476 0.0119618 0.011976 0.0119901 0.0120043 0.0120185 0.0120327 0.0120469 0.0120611 0.0120753 0.0120894 0.0121036 0.0121178 0.012132 0.0121462 0.0121604 0.0121746 0.0121887 0.0122029 0.0122171 0.0122313 0.0122455 0.0122597 0.0122739 0.012288 0.0123022 0.0123164 0.0123306 0.0123448 0.012359 0.0123732 0.0123873 0.0124015 0.0124157 0.0124299 0.0124441 0.0124583 0.0124725 0.0124866 0.0125008 0.012515 0.0125292 0.0125434 0.0125576 0.0125717 0.0125859 0.0126001 0.0126143 0.0126285 0.0126427 0.0126569 0.012671 0.0126852 0.0126994 0.0127136 0.0127278 0.012742 0.0127562 0.0127703 0.0127845 0.0127987 0.0128129 0.0128271 0.0128413 0.0128555 0.0128696 0.0128838 0.012898 0.0129122 0.0129264 0.0129406 0.0129548 0.0129689 0.0129831 0.0129973 0.0130115 0.0130257 0.0130399 0.0130541 0.0130682 0.0130824 0.0130966 0.0131108 0.013125 0.0131392 0.0131533 0.0131675 0.0131817 0.0131959 0.0132101 0.0132243 0.0132385 0.0132526 0.0132668 0.013281 0.0132952 0.0133094 0.0133236 0.0133378 0.0133519 0.0133661 0.0133803 0.0133945 0.0134087 0.0134229 0.0134371 0.0134512 0.0134654 0.0134796 0.0134938 0.013508 0.0135222 0.0135364 0.0135505 0.0135647 +-0.00334188 -0.00295506 -0.00221704 -0.00114221 0.00013742 0.00152769 0.00297583 0.00444932 0.00592313 0.00737143 0.00875858 0.0100227 0.0110441 0.0116487 0.011853 0.0119029 0.0119225 0.0119375 0.0119519 0.0119661 0.0119803 0.0119944 0.0120086 0.0120228 0.012037 0.0120512 0.0120654 0.0120796 0.0120938 0.012108 0.0121222 0.0121364 0.0121505 0.0121647 0.0121789 0.0121931 0.0122073 0.0122215 0.0122357 0.0122499 0.0122641 0.0122783 0.0122925 0.0123066 0.0123208 0.012335 0.0123492 0.0123634 0.0123776 0.0123918 0.012406 0.0124202 0.0124344 0.0124485 0.0124627 0.0124769 0.0124911 0.0125053 0.0125195 0.0125337 0.0125479 0.0125621 0.0125763 0.0125905 0.0126046 0.0126188 0.012633 0.0126472 0.0126614 0.0126756 0.0126898 0.012704 0.0127182 0.0127324 0.0127466 0.0127607 0.0127749 0.0127891 0.0128033 0.0128175 0.0128317 0.0128459 0.0128601 0.0128743 0.0128885 0.0129027 0.0129168 0.012931 0.0129452 0.0129594 0.0129736 0.0129878 0.013002 0.0130162 0.0130304 0.0130446 0.0130587 0.0130729 0.0130871 0.0131013 0.0131155 0.0131297 0.0131439 0.0131581 0.0131723 0.0131865 0.0132007 0.0132148 0.013229 0.0132432 0.0132574 0.0132716 0.0132858 0.0133 0.0133142 0.0133284 0.0133426 0.0133568 0.0133709 0.0133851 0.0133993 0.0134135 0.0134277 0.0134419 0.0134561 0.0134703 0.0134845 0.0134987 0.0135129 0.013527 0.0135412 0.0135554 0.0135696 +-0.0033432 -0.00295601 -0.0022175 -0.00114233 0.000137509 0.00152792 0.00297618 0.00444978 0.00592372 0.00737219 0.0087596 0.0100242 0.0110464 0.0116521 0.0118571 0.0119071 0.0119268 0.0119418 0.0119561 0.0119704 0.0119845 0.0119987 0.0120129 0.0120271 0.0120413 0.0120555 0.0120697 0.0120839 0.0120981 0.0121123 0.0121265 0.0121407 0.0121549 0.0121691 0.0121833 0.0121975 0.0122117 0.0122259 0.0122401 0.0122543 0.0122685 0.0122827 0.0122969 0.0123111 0.0123253 0.0123394 0.0123536 0.0123678 0.012382 0.0123962 0.0124104 0.0124246 0.0124388 0.012453 0.0124672 0.0124814 0.0124956 0.0125098 0.012524 0.0125382 0.0125524 0.0125666 0.0125808 0.012595 0.0126092 0.0126234 0.0126376 0.0126518 0.012666 0.0126802 0.0126943 0.0127085 0.0127227 0.0127369 0.0127511 0.0127653 0.0127795 0.0127937 0.0128079 0.0128221 0.0128363 0.0128505 0.0128647 0.0128789 0.0128931 0.0129073 0.0129215 0.0129357 0.0129499 0.0129641 0.0129783 0.0129925 0.0130067 0.0130209 0.0130351 0.0130492 0.0130634 0.0130776 0.0130918 0.013106 0.0131202 0.0131344 0.0131486 0.0131628 0.013177 0.0131912 0.0132054 0.0132196 0.0132338 0.013248 0.0132622 0.0132764 0.0132906 0.0133048 0.013319 0.0133332 0.0133474 0.0133616 0.0133758 0.01339 0.0134042 0.0134183 0.0134325 0.0134467 0.0134609 0.0134751 0.0134893 0.0135035 0.0135177 0.0135319 0.0135461 0.0135603 0.0135745 +-0.00334452 -0.00295695 -0.00221796 -0.00114245 0.000137598 0.00152815 0.00297653 0.00445024 0.00592431 0.00737295 0.00876062 0.0100256 0.0110486 0.0116555 0.0118612 0.0119113 0.0119311 0.0119461 0.0119604 0.0119746 0.0119888 0.012003 0.0120172 0.0120314 0.0120456 0.0120598 0.0120741 0.0120883 0.0121025 0.0121167 0.0121309 0.0121451 0.0121593 0.0121735 0.0121877 0.0122019 0.0122161 0.0122303 0.0122445 0.0122587 0.0122729 0.0122871 0.0123013 0.0123155 0.0123297 0.0123439 0.0123581 0.0123723 0.0123865 0.0124007 0.0124149 0.0124291 0.0124433 0.0124575 0.0124717 0.0124859 0.0125001 0.0125143 0.0125285 0.0125427 0.0125569 0.0125711 0.0125853 0.0125995 0.0126137 0.0126279 0.0126421 0.0126563 0.0126705 0.0126847 0.0126989 0.0127131 0.0127273 0.0127415 0.0127557 0.0127699 0.0127841 0.0127983 0.0128125 0.0128267 0.0128409 0.0128551 0.0128693 0.0128835 0.0128977 0.0129119 0.0129261 0.0129403 0.0129545 0.0129687 0.0129829 0.0129971 0.0130113 0.0130255 0.0130397 0.0130539 0.0130681 0.0130823 0.0130965 0.0131107 0.0131249 0.0131391 0.0131533 0.0131676 0.0131818 0.013196 0.0132102 0.0132244 0.0132386 0.0132528 0.013267 0.0132812 0.0132954 0.0133096 0.0133238 0.013338 0.0133522 0.0133664 0.0133806 0.0133948 0.013409 0.0134232 0.0134374 0.0134516 0.0134658 0.01348 0.0134942 0.0135084 0.0135226 0.0135368 0.013551 0.0135652 0.0135794 +-0.00334584 -0.0029579 -0.00221842 -0.00114257 0.000137687 0.00152838 0.00297687 0.0044507 0.00592489 0.00737371 0.00876164 0.0100271 0.0110509 0.0116589 0.0118652 0.0119156 0.0119353 0.0119504 0.0119647 0.0119789 0.0119931 0.0120073 0.0120215 0.0120358 0.01205 0.0120642 0.0120784 0.0120926 0.0121068 0.012121 0.0121352 0.0121494 0.0121636 0.0121778 0.012192 0.0122062 0.0122204 0.0122346 0.0122489 0.0122631 0.0122773 0.0122915 0.0123057 0.0123199 0.0123341 0.0123483 0.0123625 0.0123767 0.0123909 0.0124051 0.0124193 0.0124335 0.0124477 0.012462 0.0124762 0.0124904 0.0125046 0.0125188 0.012533 0.0125472 0.0125614 0.0125756 0.0125898 0.012604 0.0126182 0.0126324 0.0126466 0.0126608 0.0126751 0.0126893 0.0127035 0.0127177 0.0127319 0.0127461 0.0127603 0.0127745 0.0127887 0.0128029 0.0128171 0.0128313 0.0128455 0.0128597 0.0128739 0.0128881 0.0129024 0.0129166 0.0129308 0.012945 0.0129592 0.0129734 0.0129876 0.0130018 0.013016 0.0130302 0.0130444 0.0130586 0.0130728 0.013087 0.0131012 0.0131155 0.0131297 0.0131439 0.0131581 0.0131723 0.0131865 0.0132007 0.0132149 0.0132291 0.0132433 0.0132575 0.0132717 0.0132859 0.0133001 0.0133143 0.0133286 0.0133428 0.013357 0.0133712 0.0133854 0.0133996 0.0134138 0.013428 0.0134422 0.0134564 0.0134706 0.0134848 0.013499 0.0135132 0.0135274 0.0135417 0.0135559 0.0135701 0.0135843 +-0.00334716 -0.00295884 -0.00221888 -0.00114269 0.000137775 0.00152862 0.00297722 0.00445116 0.00592548 0.00737447 0.00876266 0.0100286 0.0110532 0.0116623 0.0118693 0.0119198 0.0119396 0.0119546 0.011969 0.0119832 0.0119974 0.0120116 0.0120258 0.0120401 0.0120543 0.0120685 0.0120827 0.0120969 0.0121111 0.0121253 0.0121395 0.0121538 0.012168 0.0121822 0.0121964 0.0122106 0.0122248 0.012239 0.0122532 0.0122675 0.0122817 0.0122959 0.0123101 0.0123243 0.0123385 0.0123527 0.0123669 0.0123811 0.0123954 0.0124096 0.0124238 0.012438 0.0124522 0.0124664 0.0124806 0.0124948 0.0125091 0.0125233 0.0125375 0.0125517 0.0125659 0.0125801 0.0125943 0.0126085 0.0126227 0.012637 0.0126512 0.0126654 0.0126796 0.0126938 0.012708 0.0127222 0.0127364 0.0127507 0.0127649 0.0127791 0.0127933 0.0128075 0.0128217 0.0128359 0.0128501 0.0128644 0.0128786 0.0128928 0.012907 0.0129212 0.0129354 0.0129496 0.0129638 0.012978 0.0129923 0.0130065 0.0130207 0.0130349 0.0130491 0.0130633 0.0130775 0.0130917 0.013106 0.0131202 0.0131344 0.0131486 0.0131628 0.013177 0.0131912 0.0132054 0.0132196 0.0132339 0.0132481 0.0132623 0.0132765 0.0132907 0.0133049 0.0133191 0.0133333 0.0133476 0.0133618 0.013376 0.0133902 0.0134044 0.0134186 0.0134328 0.013447 0.0134612 0.0134755 0.0134897 0.0135039 0.0135181 0.0135323 0.0135465 0.0135607 0.0135749 0.0135892 +-0.00334848 -0.00295978 -0.00221935 -0.00114281 0.000137864 0.00152885 0.00297757 0.00445162 0.00592607 0.00737523 0.00876367 0.01003 0.0110554 0.0116657 0.0118734 0.011924 0.0119439 0.0119589 0.0119733 0.0119875 0.0120017 0.0120159 0.0120301 0.0120444 0.0120586 0.0120728 0.012087 0.0121012 0.0121155 0.0121297 0.0121439 0.0121581 0.0121723 0.0121865 0.0122008 0.012215 0.0122292 0.0122434 0.0122576 0.0122718 0.0122861 0.0123003 0.0123145 0.0123287 0.0123429 0.0123571 0.0123714 0.0123856 0.0123998 0.012414 0.0124282 0.0124424 0.0124567 0.0124709 0.0124851 0.0124993 0.0125135 0.0125278 0.012542 0.0125562 0.0125704 0.0125846 0.0125988 0.0126131 0.0126273 0.0126415 0.0126557 0.0126699 0.0126841 0.0126984 0.0127126 0.0127268 0.012741 0.0127552 0.0127694 0.0127837 0.0127979 0.0128121 0.0128263 0.0128405 0.0128547 0.012869 0.0128832 0.0128974 0.0129116 0.0129258 0.01294 0.0129543 0.0129685 0.0129827 0.0129969 0.0130111 0.0130254 0.0130396 0.0130538 0.013068 0.0130822 0.0130964 0.0131107 0.0131249 0.0131391 0.0131533 0.0131675 0.0131817 0.013196 0.0132102 0.0132244 0.0132386 0.0132528 0.013267 0.0132813 0.0132955 0.0133097 0.0133239 0.0133381 0.0133523 0.0133666 0.0133808 0.013395 0.0134092 0.0134234 0.0134376 0.0134519 0.0134661 0.0134803 0.0134945 0.0135087 0.013523 0.0135372 0.0135514 0.0135656 0.0135798 0.013594 +-0.0033498 -0.00296073 -0.00221981 -0.00114293 0.000137953 0.00152908 0.00297792 0.00445208 0.00592666 0.00737598 0.00876469 0.0100315 0.0110577 0.0116691 0.0118775 0.0119283 0.0119481 0.0119632 0.0119775 0.0119918 0.012006 0.0120202 0.0120344 0.0120487 0.0120629 0.0120771 0.0120913 0.0121056 0.0121198 0.012134 0.0121482 0.0121625 0.0121767 0.0121909 0.0122051 0.0122193 0.0122336 0.0122478 0.012262 0.0122762 0.0122905 0.0123047 0.0123189 0.0123331 0.0123473 0.0123616 0.0123758 0.01239 0.0124042 0.0124185 0.0124327 0.0124469 0.0124611 0.0124753 0.0124896 0.0125038 0.012518 0.0125322 0.0125465 0.0125607 0.0125749 0.0125891 0.0126033 0.0126176 0.0126318 0.012646 0.0126602 0.0126745 0.0126887 0.0127029 0.0127171 0.0127313 0.0127456 0.0127598 0.012774 0.0127882 0.0128025 0.0128167 0.0128309 0.0128451 0.0128594 0.0128736 0.0128878 0.012902 0.0129162 0.0129305 0.0129447 0.0129589 0.0129731 0.0129874 0.0130016 0.0130158 0.01303 0.0130442 0.0130585 0.0130727 0.0130869 0.0131011 0.0131154 0.0131296 0.0131438 0.013158 0.0131722 0.0131865 0.0132007 0.0132149 0.0132291 0.0132434 0.0132576 0.0132718 0.013286 0.0133002 0.0133145 0.0133287 0.0133429 0.0133571 0.0133714 0.0133856 0.0133998 0.013414 0.0134283 0.0134425 0.0134567 0.0134709 0.0134851 0.0134994 0.0135136 0.0135278 0.013542 0.0135563 0.0135705 0.0135847 0.0135989 +-0.00335112 -0.00296167 -0.00222027 -0.00114305 0.000138042 0.00152931 0.00297826 0.00445254 0.00592725 0.00737674 0.0087657 0.0100329 0.01106 0.0116725 0.0118815 0.0119325 0.0119524 0.0119675 0.0119818 0.0119961 0.0120103 0.0120245 0.0120387 0.012053 0.0120672 0.0120814 0.0120957 0.0121099 0.0121241 0.0121383 0.0121526 0.0121668 0.012181 0.0121953 0.0122095 0.0122237 0.0122379 0.0122522 0.0122664 0.0122806 0.0122948 0.0123091 0.0123233 0.0123375 0.0123518 0.012366 0.0123802 0.0123944 0.0124087 0.0124229 0.0124371 0.0124514 0.0124656 0.0124798 0.012494 0.0125083 0.0125225 0.0125367 0.0125509 0.0125652 0.0125794 0.0125936 0.0126079 0.0126221 0.0126363 0.0126505 0.0126648 0.012679 0.0126932 0.0127075 0.0127217 0.0127359 0.0127501 0.0127644 0.0127786 0.0127928 0.012807 0.0128213 0.0128355 0.0128497 0.012864 0.0128782 0.0128924 0.0129066 0.0129209 0.0129351 0.0129493 0.0129636 0.0129778 0.012992 0.0130062 0.0130205 0.0130347 0.0130489 0.0130631 0.0130774 0.0130916 0.0131058 0.0131201 0.0131343 0.0131485 0.0131627 0.013177 0.0131912 0.0132054 0.0132197 0.0132339 0.0132481 0.0132623 0.0132766 0.0132908 0.013305 0.0133192 0.0133335 0.0133477 0.0133619 0.0133762 0.0133904 0.0134046 0.0134188 0.0134331 0.0134473 0.0134615 0.0134757 0.01349 0.0135042 0.0135184 0.0135327 0.0135469 0.0135611 0.0135753 0.0135896 0.0136038 +-0.00335244 -0.00296261 -0.00222073 -0.00114317 0.000138131 0.00152954 0.00297861 0.004453 0.00592783 0.0073775 0.00876671 0.0100344 0.0110622 0.0116759 0.0118856 0.0119367 0.0119567 0.0119717 0.0119861 0.0120003 0.0120146 0.0120288 0.012043 0.0120573 0.0120715 0.0120857 0.0121 0.0121142 0.0121284 0.0121427 0.0121569 0.0121711 0.0121854 0.0121996 0.0122138 0.0122281 0.0122423 0.0122565 0.0122708 0.012285 0.0122992 0.0123135 0.0123277 0.0123419 0.0123562 0.0123704 0.0123846 0.0123989 0.0124131 0.0124273 0.0124416 0.0124558 0.01247 0.0124843 0.0124985 0.0125127 0.012527 0.0125412 0.0125554 0.0125697 0.0125839 0.0125981 0.0126124 0.0126266 0.0126408 0.0126551 0.0126693 0.0126835 0.0126978 0.012712 0.0127262 0.0127405 0.0127547 0.0127689 0.0127832 0.0127974 0.0128116 0.0128259 0.0128401 0.0128543 0.0128686 0.0128828 0.012897 0.0129113 0.0129255 0.0129397 0.012954 0.0129682 0.0129824 0.0129967 0.0130109 0.0130251 0.0130394 0.0130536 0.0130678 0.0130821 0.0130963 0.0131105 0.0131248 0.013139 0.0131532 0.0131675 0.0131817 0.0131959 0.0132102 0.0132244 0.0132386 0.0132529 0.0132671 0.0132813 0.0132956 0.0133098 0.013324 0.0133383 0.0133525 0.0133667 0.0133809 0.0133952 0.0134094 0.0134236 0.0134379 0.0134521 0.0134663 0.0134806 0.0134948 0.013509 0.0135233 0.0135375 0.0135517 0.013566 0.0135802 0.0135944 0.0136087 +-0.00335376 -0.00296355 -0.00222119 -0.00114329 0.00013822 0.00152977 0.00297896 0.00445346 0.00592842 0.00737825 0.00876772 0.0100358 0.0110645 0.0116793 0.0118896 0.011941 0.0119609 0.011976 0.0119904 0.0120046 0.0120189 0.0120331 0.0120473 0.0120616 0.0120758 0.0120901 0.0121043 0.0121185 0.0121328 0.012147 0.0121612 0.0121755 0.0121897 0.012204 0.0122182 0.0122324 0.0122467 0.0122609 0.0122752 0.0122894 0.0123036 0.0123179 0.0123321 0.0123463 0.0123606 0.0123748 0.0123891 0.0124033 0.0124175 0.0124318 0.012446 0.0124603 0.0124745 0.0124887 0.012503 0.0125172 0.0125314 0.0125457 0.0125599 0.0125742 0.0125884 0.0126026 0.0126169 0.0126311 0.0126453 0.0126596 0.0126738 0.0126881 0.0127023 0.0127165 0.0127308 0.012745 0.0127593 0.0127735 0.0127877 0.012802 0.0128162 0.0128304 0.0128447 0.0128589 0.0128732 0.0128874 0.0129016 0.0129159 0.0129301 0.0129444 0.0129586 0.0129728 0.0129871 0.0130013 0.0130155 0.0130298 0.013044 0.0130583 0.0130725 0.0130867 0.013101 0.0131152 0.0131295 0.0131437 0.0131579 0.0131722 0.0131864 0.0132006 0.0132149 0.0132291 0.0132434 0.0132576 0.0132718 0.0132861 0.0133003 0.0133146 0.0133288 0.013343 0.0133573 0.0133715 0.0133857 0.0134 0.0134142 0.0134285 0.0134427 0.0134569 0.0134712 0.0134854 0.0134996 0.0135139 0.0135281 0.0135424 0.0135566 0.0135708 0.0135851 0.0135993 0.0136136 +-0.00335508 -0.00296449 -0.00222164 -0.00114341 0.000138309 0.00153 0.0029793 0.00445392 0.00592901 0.00737901 0.00876873 0.0100373 0.0110667 0.0116827 0.0118937 0.0119452 0.0119652 0.0119803 0.0119946 0.0120089 0.0120231 0.0120374 0.0120516 0.0120659 0.0120801 0.0120944 0.0121086 0.0121229 0.0121371 0.0121513 0.0121656 0.0121798 0.0121941 0.0122083 0.0122226 0.0122368 0.012251 0.0122653 0.0122795 0.0122938 0.012308 0.0123223 0.0123365 0.0123507 0.012365 0.0123792 0.0123935 0.0124077 0.012422 0.0124362 0.0124505 0.0124647 0.0124789 0.0124932 0.0125074 0.0125217 0.0125359 0.0125502 0.0125644 0.0125786 0.0125929 0.0126071 0.0126214 0.0126356 0.0126499 0.0126641 0.0126784 0.0126926 0.0127068 0.0127211 0.0127353 0.0127496 0.0127638 0.0127781 0.0127923 0.0128065 0.0128208 0.012835 0.0128493 0.0128635 0.0128778 0.012892 0.0129063 0.0129205 0.0129347 0.012949 0.0129632 0.0129775 0.0129917 0.013006 0.0130202 0.0130344 0.0130487 0.0130629 0.0130772 0.0130914 0.0131057 0.0131199 0.0131341 0.0131484 0.0131626 0.0131769 0.0131911 0.0132054 0.0132196 0.0132339 0.0132481 0.0132623 0.0132766 0.0132908 0.0133051 0.0133193 0.0133336 0.0133478 0.013362 0.0133763 0.0133905 0.0134048 0.013419 0.0134333 0.0134475 0.0134618 0.013476 0.0134902 0.0135045 0.0135187 0.013533 0.0135472 0.0135615 0.0135757 0.0135899 0.0136042 0.0136184 +-0.00335639 -0.00296543 -0.0022221 -0.00114353 0.000138398 0.00153023 0.00297965 0.00445438 0.00592959 0.00737976 0.00876974 0.0100387 0.011069 0.011686 0.0118978 0.0119494 0.0119694 0.0119845 0.0119989 0.0120132 0.0120274 0.0120417 0.0120559 0.0120702 0.0120844 0.0120987 0.0121129 0.0121272 0.0121414 0.0121557 0.0121699 0.0121842 0.0121984 0.0122127 0.0122269 0.0122412 0.0122554 0.0122697 0.0122839 0.0122982 0.0123124 0.0123267 0.0123409 0.0123552 0.0123694 0.0123837 0.0123979 0.0124121 0.0124264 0.0124406 0.0124549 0.0124691 0.0124834 0.0124976 0.0125119 0.0125261 0.0125404 0.0125546 0.0125689 0.0125831 0.0125974 0.0126116 0.0126259 0.0126401 0.0126544 0.0126686 0.0126829 0.0126971 0.0127114 0.0127256 0.0127399 0.0127541 0.0127684 0.0127826 0.0127969 0.0128111 0.0128254 0.0128396 0.0128539 0.0128681 0.0128824 0.0128966 0.0129109 0.0129251 0.0129394 0.0129536 0.0129679 0.0129821 0.0129964 0.0130106 0.0130249 0.0130391 0.0130534 0.0130676 0.0130818 0.0130961 0.0131103 0.0131246 0.0131388 0.0131531 0.0131673 0.0131816 0.0131958 0.0132101 0.0132243 0.0132386 0.0132528 0.0132671 0.0132813 0.0132956 0.0133098 0.0133241 0.0133383 0.0133526 0.0133668 0.0133811 0.0133953 0.0134096 0.0134238 0.0134381 0.0134523 0.0134666 0.0134808 0.0134951 0.0135093 0.0135236 0.0135378 0.0135521 0.0135663 0.0135806 0.0135948 0.0136091 0.0136233 +-0.00335771 -0.00296636 -0.00222256 -0.00114365 0.000138486 0.00153047 0.00298 0.00445483 0.00593018 0.00738052 0.00877075 0.0100402 0.0110712 0.0116894 0.0119018 0.0119536 0.0119737 0.0119888 0.0120032 0.0120175 0.0120317 0.012046 0.0120602 0.0120745 0.0120887 0.012103 0.0121172 0.0121315 0.0121457 0.01216 0.0121743 0.0121885 0.0122028 0.012217 0.0122313 0.0122455 0.0122598 0.012274 0.0122883 0.0123025 0.0123168 0.012331 0.0123453 0.0123596 0.0123738 0.0123881 0.0124023 0.0124166 0.0124308 0.0124451 0.0124593 0.0124736 0.0124878 0.0125021 0.0125164 0.0125306 0.0125449 0.0125591 0.0125734 0.0125876 0.0126019 0.0126161 0.0126304 0.0126446 0.0126589 0.0126731 0.0126874 0.0127017 0.0127159 0.0127302 0.0127444 0.0127587 0.0127729 0.0127872 0.0128014 0.0128157 0.0128299 0.0128442 0.0128585 0.0128727 0.012887 0.0129012 0.0129155 0.0129297 0.012944 0.0129582 0.0129725 0.0129867 0.013001 0.0130153 0.0130295 0.0130438 0.013058 0.0130723 0.0130865 0.0131008 0.013115 0.0131293 0.0131435 0.0131578 0.013172 0.0131863 0.0132006 0.0132148 0.0132291 0.0132433 0.0132576 0.0132718 0.0132861 0.0133003 0.0133146 0.0133288 0.0133431 0.0133574 0.0133716 0.0133859 0.0134001 0.0134144 0.0134286 0.0134429 0.0134571 0.0134714 0.0134856 0.0134999 0.0135141 0.0135284 0.0135427 0.0135569 0.0135712 0.0135854 0.0135997 0.0136139 0.0136282 +-0.00335903 -0.0029673 -0.00222302 -0.00114377 0.000138575 0.0015307 0.00298034 0.00445529 0.00593076 0.00738127 0.00877176 0.0100416 0.0110734 0.0116928 0.0119059 0.0119579 0.0119779 0.0119931 0.0120075 0.0120217 0.012036 0.0120503 0.0120645 0.0120788 0.012093 0.0121073 0.0121215 0.0121358 0.0121501 0.0121643 0.0121786 0.0121928 0.0122071 0.0122214 0.0122356 0.0122499 0.0122641 0.0122784 0.0122927 0.0123069 0.0123212 0.0123354 0.0123497 0.012364 0.0123782 0.0123925 0.0124067 0.012421 0.0124353 0.0124495 0.0124638 0.012478 0.0124923 0.0125066 0.0125208 0.0125351 0.0125493 0.0125636 0.0125779 0.0125921 0.0126064 0.0126206 0.0126349 0.0126491 0.0126634 0.0126777 0.0126919 0.0127062 0.0127204 0.0127347 0.012749 0.0127632 0.0127775 0.0127917 0.012806 0.0128203 0.0128345 0.0128488 0.012863 0.0128773 0.0128916 0.0129058 0.0129201 0.0129343 0.0129486 0.0129629 0.0129771 0.0129914 0.0130056 0.0130199 0.0130342 0.0130484 0.0130627 0.0130769 0.0130912 0.0131055 0.0131197 0.013134 0.0131482 0.0131625 0.0131767 0.013191 0.0132053 0.0132195 0.0132338 0.013248 0.0132623 0.0132766 0.0132908 0.0133051 0.0133193 0.0133336 0.0133479 0.0133621 0.0133764 0.0133906 0.0134049 0.0134192 0.0134334 0.0134477 0.0134619 0.0134762 0.0134905 0.0135047 0.013519 0.0135332 0.0135475 0.0135618 0.013576 0.0135903 0.0136045 0.0136188 0.0136331 +-0.00336034 -0.00296824 -0.00222347 -0.00114388 0.000138664 0.00153093 0.00298069 0.00445575 0.00593135 0.00738202 0.00877277 0.010043 0.0110757 0.0116961 0.0119099 0.0119621 0.0119822 0.0119973 0.0120117 0.012026 0.0120403 0.0120545 0.0120688 0.0120831 0.0120973 0.0121116 0.0121259 0.0121401 0.0121544 0.0121687 0.0121829 0.0121972 0.0122114 0.0122257 0.01224 0.0122542 0.0122685 0.0122828 0.012297 0.0123113 0.0123256 0.0123398 0.0123541 0.0123684 0.0123826 0.0123969 0.0124112 0.0124254 0.0124397 0.0124539 0.0124682 0.0124825 0.0124967 0.012511 0.0125253 0.0125395 0.0125538 0.0125681 0.0125823 0.0125966 0.0126109 0.0126251 0.0126394 0.0126537 0.0126679 0.0126822 0.0126965 0.0127107 0.012725 0.0127392 0.0127535 0.0127678 0.012782 0.0127963 0.0128106 0.0128248 0.0128391 0.0128534 0.0128676 0.0128819 0.0128962 0.0129104 0.0129247 0.012939 0.0129532 0.0129675 0.0129817 0.012996 0.0130103 0.0130245 0.0130388 0.0130531 0.0130673 0.0130816 0.0130959 0.0131101 0.0131244 0.0131387 0.0131529 0.0131672 0.0131815 0.0131957 0.01321 0.0132242 0.0132385 0.0132528 0.013267 0.0132813 0.0132956 0.0133098 0.0133241 0.0133384 0.0133526 0.0133669 0.0133812 0.0133954 0.0134097 0.013424 0.0134382 0.0134525 0.0134667 0.013481 0.0134953 0.0135095 0.0135238 0.0135381 0.0135523 0.0135666 0.0135809 0.0135951 0.0136094 0.0136237 0.0136379 +-0.00336166 -0.00296917 -0.00222393 -0.001144 0.000138753 0.00153116 0.00298103 0.00445621 0.00593193 0.00738277 0.00877377 0.0100445 0.0110779 0.0116995 0.011914 0.0119663 0.0119865 0.0120016 0.012016 0.0120303 0.0120445 0.0120588 0.0120731 0.0120874 0.0121016 0.0121159 0.0121302 0.0121444 0.0121587 0.012173 0.0121873 0.0122015 0.0122158 0.0122301 0.0122443 0.0122586 0.0122729 0.0122871 0.0123014 0.0123157 0.01233 0.0123442 0.0123585 0.0123728 0.012387 0.0124013 0.0124156 0.0124298 0.0124441 0.0124584 0.0124727 0.0124869 0.0125012 0.0125155 0.0125297 0.012544 0.0125583 0.0125725 0.0125868 0.0126011 0.0126154 0.0126296 0.0126439 0.0126582 0.0126724 0.0126867 0.012701 0.0127152 0.0127295 0.0127438 0.0127581 0.0127723 0.0127866 0.0128009 0.0128151 0.0128294 0.0128437 0.0128579 0.0128722 0.0128865 0.0129008 0.012915 0.0129293 0.0129436 0.0129578 0.0129721 0.0129864 0.0130006 0.0130149 0.0130292 0.0130435 0.0130577 0.013072 0.0130863 0.0131005 0.0131148 0.0131291 0.0131433 0.0131576 0.0131719 0.0131862 0.0132004 0.0132147 0.013229 0.0132432 0.0132575 0.0132718 0.013286 0.0133003 0.0133146 0.0133289 0.0133431 0.0133574 0.0133717 0.0133859 0.0134002 0.0134145 0.0134287 0.013443 0.0134573 0.0134716 0.0134858 0.0135001 0.0135144 0.0135286 0.0135429 0.0135572 0.0135714 0.0135857 0.0136 0.0136143 0.0136285 0.0136428 +-0.00336297 -0.00297011 -0.00222439 -0.00114412 0.000138842 0.00153139 0.00298138 0.00445666 0.00593252 0.00738353 0.00877478 0.0100459 0.0110801 0.0117029 0.011918 0.0119705 0.0119907 0.0120059 0.0120203 0.0120345 0.0120488 0.0120631 0.0120774 0.0120917 0.0121059 0.0121202 0.0121345 0.0121488 0.012163 0.0121773 0.0121916 0.0122059 0.0122201 0.0122344 0.0122487 0.012263 0.0122772 0.0122915 0.0123058 0.0123201 0.0123343 0.0123486 0.0123629 0.0123772 0.0123914 0.0124057 0.01242 0.0124343 0.0124485 0.0124628 0.0124771 0.0124914 0.0125056 0.0125199 0.0125342 0.0125485 0.0125627 0.012577 0.0125913 0.0126056 0.0126198 0.0126341 0.0126484 0.0126627 0.0126769 0.0126912 0.0127055 0.0127198 0.012734 0.0127483 0.0127626 0.0127769 0.0127911 0.0128054 0.0128197 0.012834 0.0128482 0.0128625 0.0128768 0.0128911 0.0129053 0.0129196 0.0129339 0.0129482 0.0129624 0.0129767 0.012991 0.0130053 0.0130195 0.0130338 0.0130481 0.0130624 0.0130767 0.0130909 0.0131052 0.0131195 0.0131338 0.013148 0.0131623 0.0131766 0.0131909 0.0132051 0.0132194 0.0132337 0.013248 0.0132622 0.0132765 0.0132908 0.0133051 0.0133193 0.0133336 0.0133479 0.0133622 0.0133764 0.0133907 0.013405 0.0134193 0.0134335 0.0134478 0.0134621 0.0134764 0.0134906 0.0135049 0.0135192 0.0135335 0.0135477 0.013562 0.0135763 0.0135906 0.0136048 0.0136191 0.0136334 0.0136477 +-0.00336429 -0.00297104 -0.00222484 -0.00114424 0.000138931 0.00153162 0.00298172 0.00445712 0.0059331 0.00738428 0.00877578 0.0100474 0.0110824 0.0117062 0.0119221 0.0119747 0.011995 0.0120101 0.0120245 0.0120388 0.0120531 0.0120674 0.0120817 0.0120959 0.0121102 0.0121245 0.0121388 0.0121531 0.0121673 0.0121816 0.0121959 0.0122102 0.0122245 0.0122388 0.012253 0.0122673 0.0122816 0.0122959 0.0123102 0.0123244 0.0123387 0.012353 0.0123673 0.0123816 0.0123958 0.0124101 0.0124244 0.0124387 0.012453 0.0124672 0.0124815 0.0124958 0.0125101 0.0125244 0.0125386 0.0125529 0.0125672 0.0125815 0.0125958 0.01261 0.0126243 0.0126386 0.0126529 0.0126672 0.0126815 0.0126957 0.01271 0.0127243 0.0127386 0.0127529 0.0127671 0.0127814 0.0127957 0.01281 0.0128243 0.0128385 0.0128528 0.0128671 0.0128814 0.0128957 0.0129099 0.0129242 0.0129385 0.0129528 0.0129671 0.0129813 0.0129956 0.0130099 0.0130242 0.0130385 0.0130527 0.013067 0.0130813 0.0130956 0.0131099 0.0131241 0.0131384 0.0131527 0.013167 0.0131813 0.0131956 0.0132098 0.0132241 0.0132384 0.0132527 0.013267 0.0132812 0.0132955 0.0133098 0.0133241 0.0133384 0.0133526 0.0133669 0.0133812 0.0133955 0.0134098 0.013424 0.0134383 0.0134526 0.0134669 0.0134812 0.0134954 0.0135097 0.013524 0.0135383 0.0135526 0.0135668 0.0135811 0.0135954 0.0136097 0.013624 0.0136383 0.0136525 +-0.0033656 -0.00297198 -0.0022253 -0.00114436 0.00013902 0.00153185 0.00298207 0.00445758 0.00593368 0.00738503 0.00877678 0.0100488 0.0110846 0.0117096 0.0119261 0.011979 0.0119992 0.0120144 0.0120288 0.0120431 0.0120574 0.0120717 0.012086 0.0121002 0.0121145 0.0121288 0.0121431 0.0121574 0.0121717 0.012186 0.0122002 0.0122145 0.0122288 0.0122431 0.0122574 0.0122717 0.012286 0.0123002 0.0123145 0.0123288 0.0123431 0.0123574 0.0123717 0.012386 0.0124002 0.0124145 0.0124288 0.0124431 0.0124574 0.0124717 0.012486 0.0125002 0.0125145 0.0125288 0.0125431 0.0125574 0.0125717 0.012586 0.0126002 0.0126145 0.0126288 0.0126431 0.0126574 0.0126717 0.012686 0.0127002 0.0127145 0.0127288 0.0127431 0.0127574 0.0127717 0.012786 0.0128002 0.0128145 0.0128288 0.0128431 0.0128574 0.0128717 0.012886 0.0129002 0.0129145 0.0129288 0.0129431 0.0129574 0.0129717 0.012986 0.0130002 0.0130145 0.0130288 0.0130431 0.0130574 0.0130717 0.013086 0.0131002 0.0131145 0.0131288 0.0131431 0.0131574 0.0131717 0.013186 0.0132002 0.0132145 0.0132288 0.0132431 0.0132574 0.0132717 0.013286 0.0133003 0.0133145 0.0133288 0.0133431 0.0133574 0.0133717 0.013386 0.0134003 0.0134145 0.0134288 0.0134431 0.0134574 0.0134717 0.013486 0.0135003 0.0135145 0.0135288 0.0135431 0.0135574 0.0135717 0.013586 0.0136003 0.0136145 0.0136288 0.0136431 0.0136574 +-0.00336692 -0.00297291 -0.00222575 -0.00114447 0.000139109 0.00153208 0.00298241 0.00445803 0.00593426 0.00738578 0.00877778 0.0100502 0.0110868 0.0117129 0.0119302 0.0119832 0.0120035 0.0120186 0.012033 0.0120474 0.0120617 0.0120759 0.0120902 0.0121045 0.0121188 0.0121331 0.0121474 0.0121617 0.012176 0.0121903 0.0122046 0.0122189 0.0122331 0.0122474 0.0122617 0.012276 0.0122903 0.0123046 0.0123189 0.0123332 0.0123475 0.0123618 0.0123761 0.0123904 0.0124046 0.0124189 0.0124332 0.0124475 0.0124618 0.0124761 0.0124904 0.0125047 0.012519 0.0125333 0.0125476 0.0125618 0.0125761 0.0125904 0.0126047 0.012619 0.0126333 0.0126476 0.0126619 0.0126762 0.0126905 0.0127048 0.012719 0.0127333 0.0127476 0.0127619 0.0127762 0.0127905 0.0128048 0.0128191 0.0128334 0.0128477 0.012862 0.0128762 0.0128905 0.0129048 0.0129191 0.0129334 0.0129477 0.012962 0.0129763 0.0129906 0.0130049 0.0130192 0.0130335 0.0130477 0.013062 0.0130763 0.0130906 0.0131049 0.0131192 0.0131335 0.0131478 0.0131621 0.0131764 0.0131907 0.0132049 0.0132192 0.0132335 0.0132478 0.0132621 0.0132764 0.0132907 0.013305 0.0133193 0.0133336 0.0133479 0.0133621 0.0133764 0.0133907 0.013405 0.0134193 0.0134336 0.0134479 0.0134622 0.0134765 0.0134908 0.0135051 0.0135194 0.0135336 0.0135479 0.0135622 0.0135765 0.0135908 0.0136051 0.0136194 0.0136337 0.013648 0.0136623 +-0.00336823 -0.00297384 -0.00222621 -0.00114459 0.000139198 0.00153231 0.00298276 0.00445849 0.00593485 0.00738652 0.00877878 0.0100517 0.011089 0.0117163 0.0119342 0.0119874 0.0120077 0.0120229 0.0120373 0.0120516 0.0120659 0.0120802 0.0120945 0.0121088 0.0121231 0.0121374 0.0121517 0.012166 0.0121803 0.0121946 0.0122089 0.0122232 0.0122375 0.0122518 0.0122661 0.0122804 0.0122947 0.012309 0.0123233 0.0123376 0.0123519 0.0123662 0.0123804 0.0123947 0.012409 0.0124233 0.0124376 0.0124519 0.0124662 0.0124805 0.0124948 0.0125091 0.0125234 0.0125377 0.012552 0.0125663 0.0125806 0.0125949 0.0126092 0.0126235 0.0126378 0.0126521 0.0126664 0.0126807 0.012695 0.0127093 0.0127236 0.0127379 0.0127522 0.0127665 0.0127807 0.012795 0.0128093 0.0128236 0.0128379 0.0128522 0.0128665 0.0128808 0.0128951 0.0129094 0.0129237 0.012938 0.0129523 0.0129666 0.0129809 0.0129952 0.0130095 0.0130238 0.0130381 0.0130524 0.0130667 0.013081 0.0130953 0.0131096 0.0131239 0.0131382 0.0131525 0.0131668 0.013181 0.0131953 0.0132096 0.0132239 0.0132382 0.0132525 0.0132668 0.0132811 0.0132954 0.0133097 0.013324 0.0133383 0.0133526 0.0133669 0.0133812 0.0133955 0.0134098 0.0134241 0.0134384 0.0134527 0.013467 0.0134813 0.0134956 0.0135099 0.0135242 0.0135385 0.0135528 0.0135671 0.0135813 0.0135956 0.0136099 0.0136242 0.0136385 0.0136528 0.0136671 +-0.00336954 -0.00297478 -0.00222666 -0.00114471 0.000139287 0.00153254 0.0029831 0.00445894 0.00593543 0.00738727 0.00877978 0.0100531 0.0110912 0.0117196 0.0119383 0.0119916 0.0120119 0.0120271 0.0120416 0.0120559 0.0120702 0.0120845 0.0120988 0.0121131 0.0121274 0.0121417 0.012156 0.0121703 0.0121846 0.0121989 0.0122132 0.0122275 0.0122418 0.0122561 0.0122704 0.0122847 0.012299 0.0123133 0.0123276 0.0123419 0.0123562 0.0123705 0.0123848 0.0123991 0.0124134 0.0124277 0.012442 0.0124563 0.0124706 0.0124849 0.0124993 0.0125136 0.0125279 0.0125422 0.0125565 0.0125708 0.0125851 0.0125994 0.0126137 0.012628 0.0126423 0.0126566 0.0126709 0.0126852 0.0126995 0.0127138 0.0127281 0.0127424 0.0127567 0.012771 0.0127853 0.0127996 0.0128139 0.0128282 0.0128425 0.0128568 0.0128711 0.0128854 0.0128997 0.012914 0.0129283 0.0129426 0.0129569 0.0129712 0.0129855 0.0129998 0.0130141 0.0130284 0.0130427 0.013057 0.0130713 0.0130856 0.0130999 0.0131142 0.0131285 0.0131428 0.0131571 0.0131714 0.0131857 0.0132 0.0132143 0.0132286 0.0132429 0.0132572 0.0132715 0.0132858 0.0133001 0.0133144 0.0133287 0.0133431 0.0133574 0.0133717 0.013386 0.0134003 0.0134146 0.0134289 0.0134432 0.0134575 0.0134718 0.0134861 0.0135004 0.0135147 0.013529 0.0135433 0.0135576 0.0135719 0.0135862 0.0136005 0.0136148 0.0136291 0.0136434 0.0136577 0.013672 +-0.00337085 -0.00297571 -0.00222711 -0.00114483 0.000139376 0.00153277 0.00298345 0.0044594 0.00593601 0.00738802 0.00878078 0.0100545 0.0110934 0.0117229 0.0119423 0.0119958 0.0120162 0.0120314 0.0120458 0.0120602 0.0120745 0.0120888 0.0121031 0.0121174 0.0121317 0.012146 0.0121603 0.0121746 0.0121889 0.0122032 0.0122175 0.0122318 0.0122462 0.0122605 0.0122748 0.0122891 0.0123034 0.0123177 0.012332 0.0123463 0.0123606 0.0123749 0.0123892 0.0124035 0.0124178 0.0124321 0.0124465 0.0124608 0.0124751 0.0124894 0.0125037 0.012518 0.0125323 0.0125466 0.0125609 0.0125752 0.0125895 0.0126038 0.0126181 0.0126324 0.0126467 0.0126611 0.0126754 0.0126897 0.012704 0.0127183 0.0127326 0.0127469 0.0127612 0.0127755 0.0127898 0.0128041 0.0128184 0.0128327 0.012847 0.0128614 0.0128757 0.01289 0.0129043 0.0129186 0.0129329 0.0129472 0.0129615 0.0129758 0.0129901 0.0130044 0.0130187 0.013033 0.0130473 0.0130617 0.013076 0.0130903 0.0131046 0.0131189 0.0131332 0.0131475 0.0131618 0.0131761 0.0131904 0.0132047 0.013219 0.0132333 0.0132476 0.0132619 0.0132763 0.0132906 0.0133049 0.0133192 0.0133335 0.0133478 0.0133621 0.0133764 0.0133907 0.013405 0.0134193 0.0134336 0.0134479 0.0134622 0.0134766 0.0134909 0.0135052 0.0135195 0.0135338 0.0135481 0.0135624 0.0135767 0.013591 0.0136053 0.0136196 0.0136339 0.0136482 0.0136625 0.0136769 +-0.00337216 -0.00297664 -0.00222757 -0.00114494 0.000139464 0.001533 0.00298379 0.00445985 0.00593659 0.00738877 0.00878178 0.0100559 0.0110956 0.0117263 0.0119463 0.012 0.0120204 0.0120356 0.0120501 0.0120644 0.0120787 0.0120931 0.0121074 0.0121217 0.012136 0.0121503 0.0121646 0.0121789 0.0121932 0.0122076 0.0122219 0.0122362 0.0122505 0.0122648 0.0122791 0.0122934 0.0123077 0.012322 0.0123364 0.0123507 0.012365 0.0123793 0.0123936 0.0124079 0.0124222 0.0124365 0.0124509 0.0124652 0.0124795 0.0124938 0.0125081 0.0125224 0.0125367 0.012551 0.0125654 0.0125797 0.012594 0.0126083 0.0126226 0.0126369 0.0126512 0.0126655 0.0126799 0.0126942 0.0127085 0.0127228 0.0127371 0.0127514 0.0127657 0.01278 0.0127944 0.0128087 0.012823 0.0128373 0.0128516 0.0128659 0.0128802 0.0128945 0.0129089 0.0129232 0.0129375 0.0129518 0.0129661 0.0129804 0.0129947 0.013009 0.0130233 0.0130377 0.013052 0.0130663 0.0130806 0.0130949 0.0131092 0.0131235 0.0131378 0.0131522 0.0131665 0.0131808 0.0131951 0.0132094 0.0132237 0.013238 0.0132523 0.0132667 0.013281 0.0132953 0.0133096 0.0133239 0.0133382 0.0133525 0.0133668 0.0133812 0.0133955 0.0134098 0.0134241 0.0134384 0.0134527 0.013467 0.0134813 0.0134957 0.01351 0.0135243 0.0135386 0.0135529 0.0135672 0.0135815 0.0135958 0.0136101 0.0136245 0.0136388 0.0136531 0.0136674 0.0136817 +-0.00337347 -0.00297757 -0.00222802 -0.00114506 0.000139553 0.00153323 0.00298413 0.00446031 0.00593717 0.00738952 0.00878278 0.0100574 0.0110979 0.0117296 0.0119504 0.0120042 0.0120247 0.0120399 0.0120544 0.0120687 0.012083 0.0120973 0.0121116 0.012126 0.0121403 0.0121546 0.0121689 0.0121832 0.0121975 0.0122119 0.0122262 0.0122405 0.0122548 0.0122691 0.0122835 0.0122978 0.0123121 0.0123264 0.0123407 0.012355 0.0123694 0.0123837 0.012398 0.0124123 0.0124266 0.0124409 0.0124553 0.0124696 0.0124839 0.0124982 0.0125125 0.0125269 0.0125412 0.0125555 0.0125698 0.0125841 0.0125984 0.0126128 0.0126271 0.0126414 0.0126557 0.01267 0.0126843 0.0126987 0.012713 0.0127273 0.0127416 0.0127559 0.0127702 0.0127846 0.0127989 0.0128132 0.0128275 0.0128418 0.0128562 0.0128705 0.0128848 0.0128991 0.0129134 0.0129277 0.0129421 0.0129564 0.0129707 0.012985 0.0129993 0.0130136 0.013028 0.0130423 0.0130566 0.0130709 0.0130852 0.0130996 0.0131139 0.0131282 0.0131425 0.0131568 0.0131711 0.0131855 0.0131998 0.0132141 0.0132284 0.0132427 0.013257 0.0132714 0.0132857 0.0133 0.0133143 0.0133286 0.0133429 0.0133573 0.0133716 0.0133859 0.0134002 0.0134145 0.0134289 0.0134432 0.0134575 0.0134718 0.0134861 0.0135004 0.0135148 0.0135291 0.0135434 0.0135577 0.013572 0.0135863 0.0136007 0.013615 0.0136293 0.0136436 0.0136579 0.0136723 0.0136866 +-0.00337478 -0.0029785 -0.00222847 -0.00114518 0.000139642 0.00153346 0.00298448 0.00446076 0.00593775 0.00739026 0.00878377 0.0100588 0.0111001 0.0117329 0.0119544 0.0120085 0.0120289 0.0120442 0.0120586 0.012073 0.0120873 0.0121016 0.0121159 0.0121302 0.0121446 0.0121589 0.0121732 0.0121875 0.0122019 0.0122162 0.0122305 0.0122448 0.0122592 0.0122735 0.0122878 0.0123021 0.0123164 0.0123308 0.0123451 0.0123594 0.0123737 0.0123881 0.0124024 0.0124167 0.012431 0.0124453 0.0124597 0.012474 0.0124883 0.0125026 0.012517 0.0125313 0.0125456 0.0125599 0.0125743 0.0125886 0.0126029 0.0126172 0.0126315 0.0126459 0.0126602 0.0126745 0.0126888 0.0127032 0.0127175 0.0127318 0.0127461 0.0127604 0.0127748 0.0127891 0.0128034 0.0128177 0.0128321 0.0128464 0.0128607 0.012875 0.0128894 0.0129037 0.012918 0.0129323 0.0129466 0.012961 0.0129753 0.0129896 0.0130039 0.0130183 0.0130326 0.0130469 0.0130612 0.0130755 0.0130899 0.0131042 0.0131185 0.0131328 0.0131472 0.0131615 0.0131758 0.0131901 0.0132045 0.0132188 0.0132331 0.0132474 0.0132617 0.0132761 0.0132904 0.0133047 0.013319 0.0133334 0.0133477 0.013362 0.0133763 0.0133906 0.013405 0.0134193 0.0134336 0.0134479 0.0134623 0.0134766 0.0134909 0.0135052 0.0135196 0.0135339 0.0135482 0.0135625 0.0135768 0.0135912 0.0136055 0.0136198 0.0136341 0.0136485 0.0136628 0.0136771 0.0136914 +-0.00337609 -0.00297943 -0.00222892 -0.00114529 0.000139731 0.00153369 0.00298482 0.00446121 0.00593833 0.00739101 0.00878477 0.0100602 0.0111023 0.0117363 0.0119584 0.0120127 0.0120332 0.0120484 0.0120629 0.0120772 0.0120915 0.0121059 0.0121202 0.0121345 0.0121489 0.0121632 0.0121775 0.0121918 0.0122062 0.0122205 0.0122348 0.0122492 0.0122635 0.0122778 0.0122921 0.0123065 0.0123208 0.0123351 0.0123494 0.0123638 0.0123781 0.0123924 0.0124068 0.0124211 0.0124354 0.0124497 0.0124641 0.0124784 0.0124927 0.0125071 0.0125214 0.0125357 0.01255 0.0125644 0.0125787 0.012593 0.0126074 0.0126217 0.012636 0.0126503 0.0126647 0.012679 0.0126933 0.0127076 0.012722 0.0127363 0.0127506 0.012765 0.0127793 0.0127936 0.0128079 0.0128223 0.0128366 0.0128509 0.0128653 0.0128796 0.0128939 0.0129082 0.0129226 0.0129369 0.0129512 0.0129656 0.0129799 0.0129942 0.0130085 0.0130229 0.0130372 0.0130515 0.0130659 0.0130802 0.0130945 0.0131088 0.0131232 0.0131375 0.0131518 0.0131661 0.0131805 0.0131948 0.0132091 0.0132235 0.0132378 0.0132521 0.0132664 0.0132808 0.0132951 0.0133094 0.0133238 0.0133381 0.0133524 0.0133667 0.0133811 0.0133954 0.0134097 0.0134241 0.0134384 0.0134527 0.013467 0.0134814 0.0134957 0.01351 0.0135243 0.0135387 0.013553 0.0135673 0.0135817 0.013596 0.0136103 0.0136246 0.013639 0.0136533 0.0136676 0.013682 0.0136963 +-0.0033774 -0.00298036 -0.00222937 -0.00114541 0.00013982 0.00153391 0.00298516 0.00446167 0.00593891 0.00739175 0.00878576 0.0100616 0.0111045 0.0117396 0.0119625 0.0120169 0.0120374 0.0120527 0.0120671 0.0120815 0.0120958 0.0121101 0.0121245 0.0121388 0.0121531 0.0121675 0.0121818 0.0121961 0.0122105 0.0122248 0.0122391 0.0122535 0.0122678 0.0122821 0.0122965 0.0123108 0.0123251 0.0123395 0.0123538 0.0123681 0.0123825 0.0123968 0.0124111 0.0124255 0.0124398 0.0124541 0.0124685 0.0124828 0.0124971 0.0125115 0.0125258 0.0125401 0.0125545 0.0125688 0.0125831 0.0125975 0.0126118 0.0126261 0.0126405 0.0126548 0.0126691 0.0126835 0.0126978 0.0127121 0.0127265 0.0127408 0.0127551 0.0127695 0.0127838 0.0127981 0.0128125 0.0128268 0.0128411 0.0128555 0.0128698 0.0128841 0.0128985 0.0129128 0.0129271 0.0129415 0.0129558 0.0129701 0.0129845 0.0129988 0.0130131 0.0130275 0.0130418 0.0130561 0.0130705 0.0130848 0.0130991 0.0131135 0.0131278 0.0131421 0.0131565 0.0131708 0.0131851 0.0131995 0.0132138 0.0132281 0.0132425 0.0132568 0.0132711 0.0132855 0.0132998 0.0133141 0.0133285 0.0133428 0.0133571 0.0133715 0.0133858 0.0134001 0.0134145 0.0134288 0.0134431 0.0134575 0.0134718 0.0134861 0.0135005 0.0135148 0.0135291 0.0135435 0.0135578 0.0135721 0.0135865 0.0136008 0.0136151 0.0136295 0.0136438 0.0136581 0.0136725 0.0136868 0.0137011 +-0.00337871 -0.00298128 -0.00222982 -0.00114552 0.000139909 0.00153414 0.00298551 0.00446212 0.00593949 0.0073925 0.00878676 0.010063 0.0111066 0.0117429 0.0119665 0.0120211 0.0120416 0.0120569 0.0120714 0.0120857 0.0121001 0.0121144 0.0121288 0.0121431 0.0121574 0.0121718 0.0121861 0.0122004 0.0122148 0.0122291 0.0122435 0.0122578 0.0122721 0.0122865 0.0123008 0.0123152 0.0123295 0.0123438 0.0123582 0.0123725 0.0123868 0.0124012 0.0124155 0.0124299 0.0124442 0.0124585 0.0124729 0.0124872 0.0125016 0.0125159 0.0125302 0.0125446 0.0125589 0.0125732 0.0125876 0.0126019 0.0126163 0.0126306 0.0126449 0.0126593 0.0126736 0.012688 0.0127023 0.0127166 0.012731 0.0127453 0.0127596 0.012774 0.0127883 0.0128027 0.012817 0.0128313 0.0128457 0.01286 0.0128744 0.0128887 0.012903 0.0129174 0.0129317 0.012946 0.0129604 0.0129747 0.0129891 0.0130034 0.0130177 0.0130321 0.0130464 0.0130608 0.0130751 0.0130894 0.0131038 0.0131181 0.0131325 0.0131468 0.0131611 0.0131755 0.0131898 0.0132041 0.0132185 0.0132328 0.0132472 0.0132615 0.0132758 0.0132902 0.0133045 0.0133189 0.0133332 0.0133475 0.0133619 0.0133762 0.0133905 0.0134049 0.0134192 0.0134336 0.0134479 0.0134622 0.0134766 0.0134909 0.0135053 0.0135196 0.0135339 0.0135483 0.0135626 0.0135769 0.0135913 0.0136056 0.01362 0.0136343 0.0136486 0.013663 0.0136773 0.0136917 0.013706 +-0.00338002 -0.00298221 -0.00223027 -0.00114564 0.000139998 0.00153437 0.00298585 0.00446257 0.00594007 0.00739324 0.00878775 0.0100645 0.0111088 0.0117462 0.0119705 0.0120253 0.0120459 0.0120611 0.0120756 0.01209 0.0121043 0.0121187 0.012133 0.0121474 0.0121617 0.0121761 0.0121904 0.0122047 0.0122191 0.0122334 0.0122478 0.0122621 0.0122765 0.0122908 0.0123052 0.0123195 0.0123338 0.0123482 0.0123625 0.0123769 0.0123912 0.0124056 0.0124199 0.0124342 0.0124486 0.0124629 0.0124773 0.0124916 0.012506 0.0125203 0.0125347 0.012549 0.0125633 0.0125777 0.012592 0.0126064 0.0126207 0.0126351 0.0126494 0.0126637 0.0126781 0.0126924 0.0127068 0.0127211 0.0127355 0.0127498 0.0127642 0.0127785 0.0127928 0.0128072 0.0128215 0.0128359 0.0128502 0.0128646 0.0128789 0.0128932 0.0129076 0.0129219 0.0129363 0.0129506 0.012965 0.0129793 0.0129937 0.013008 0.0130223 0.0130367 0.013051 0.0130654 0.0130797 0.0130941 0.0131084 0.0131227 0.0131371 0.0131514 0.0131658 0.0131801 0.0131945 0.0132088 0.0132232 0.0132375 0.0132518 0.0132662 0.0132805 0.0132949 0.0133092 0.0133236 0.0133379 0.0133523 0.0133666 0.0133809 0.0133953 0.0134096 0.013424 0.0134383 0.0134527 0.013467 0.0134813 0.0134957 0.01351 0.0135244 0.0135387 0.0135531 0.0135674 0.0135818 0.0135961 0.0136104 0.0136248 0.0136391 0.0136535 0.0136678 0.0136822 0.0136965 0.0137108 +-0.00338133 -0.00298314 -0.00223072 -0.00114576 0.000140087 0.0015346 0.00298619 0.00446303 0.00594064 0.00739398 0.00878874 0.0100659 0.011111 0.0117495 0.0119745 0.0120295 0.0120501 0.0120654 0.0120799 0.0120942 0.0121086 0.0121229 0.0121373 0.0121516 0.012166 0.0121803 0.0121947 0.012209 0.0122234 0.0122377 0.0122521 0.0122664 0.0122808 0.0122951 0.0123095 0.0123238 0.0123382 0.0123525 0.0123669 0.0123812 0.0123956 0.0124099 0.0124243 0.0124386 0.012453 0.0124673 0.0124817 0.012496 0.0125104 0.0125247 0.0125391 0.0125534 0.0125678 0.0125821 0.0125965 0.0126108 0.0126252 0.0126395 0.0126539 0.0126682 0.0126826 0.0126969 0.0127113 0.0127256 0.01274 0.0127543 0.0127687 0.012783 0.0127974 0.0128117 0.0128261 0.0128404 0.0128548 0.0128691 0.0128835 0.0128978 0.0129121 0.0129265 0.0129408 0.0129552 0.0129695 0.0129839 0.0129982 0.0130126 0.0130269 0.0130413 0.0130556 0.01307 0.0130843 0.0130987 0.013113 0.0131274 0.0131417 0.0131561 0.0131704 0.0131848 0.0131991 0.0132135 0.0132278 0.0132422 0.0132565 0.0132709 0.0132852 0.0132996 0.0133139 0.0133283 0.0133426 0.013357 0.0133713 0.0133857 0.0134 0.0134144 0.0134287 0.0134431 0.0134574 0.0134718 0.0134861 0.0135005 0.0135148 0.0135292 0.0135435 0.0135579 0.0135722 0.0135866 0.0136009 0.0136153 0.0136296 0.013644 0.0136583 0.0136727 0.013687 0.0137013 0.0137157 +-0.00338264 -0.00298406 -0.00223117 -0.00114587 0.000140176 0.00153483 0.00298653 0.00446348 0.00594122 0.00739472 0.00878973 0.0100673 0.0111132 0.0117529 0.0119786 0.0120337 0.0120543 0.0120696 0.0120841 0.0120985 0.0121129 0.0121272 0.0121416 0.0121559 0.0121703 0.0121846 0.012199 0.0122133 0.0122277 0.0122421 0.0122564 0.0122708 0.0122851 0.0122995 0.0123138 0.0123282 0.0123425 0.0123569 0.0123712 0.0123856 0.0123999 0.0124143 0.0124287 0.012443 0.0124574 0.0124717 0.0124861 0.0125004 0.0125148 0.0125291 0.0125435 0.0125578 0.0125722 0.0125866 0.0126009 0.0126153 0.0126296 0.012644 0.0126583 0.0126727 0.012687 0.0127014 0.0127157 0.0127301 0.0127445 0.0127588 0.0127732 0.0127875 0.0128019 0.0128162 0.0128306 0.0128449 0.0128593 0.0128736 0.012888 0.0129024 0.0129167 0.0129311 0.0129454 0.0129598 0.0129741 0.0129885 0.0130028 0.0130172 0.0130315 0.0130459 0.0130602 0.0130746 0.013089 0.0131033 0.0131177 0.013132 0.0131464 0.0131607 0.0131751 0.0131894 0.0132038 0.0132181 0.0132325 0.0132469 0.0132612 0.0132756 0.0132899 0.0133043 0.0133186 0.013333 0.0133473 0.0133617 0.013376 0.0133904 0.0134048 0.0134191 0.0134335 0.0134478 0.0134622 0.0134765 0.0134909 0.0135052 0.0135196 0.0135339 0.0135483 0.0135627 0.013577 0.0135914 0.0136057 0.0136201 0.0136344 0.0136488 0.0136631 0.0136775 0.0136918 0.0137062 0.0137205 +-0.00338394 -0.00298499 -0.00223162 -0.00114599 0.000140265 0.00153506 0.00298688 0.00446393 0.0059418 0.00739547 0.00879072 0.0100687 0.0111154 0.0117562 0.0119826 0.0120379 0.0120586 0.0120739 0.0120884 0.0121028 0.0121171 0.0121315 0.0121458 0.0121602 0.0121746 0.0121889 0.0122033 0.0122176 0.012232 0.0122464 0.0122607 0.0122751 0.0122894 0.0123038 0.0123182 0.0123325 0.0123469 0.0123612 0.0123756 0.01239 0.0124043 0.0124187 0.012433 0.0124474 0.0124618 0.0124761 0.0124905 0.0125048 0.0125192 0.0125336 0.0125479 0.0125623 0.0125766 0.012591 0.0126053 0.0126197 0.0126341 0.0126484 0.0126628 0.0126771 0.0126915 0.0127059 0.0127202 0.0127346 0.0127489 0.0127633 0.0127777 0.012792 0.0128064 0.0128207 0.0128351 0.0128495 0.0128638 0.0128782 0.0128925 0.0129069 0.0129213 0.0129356 0.01295 0.0129643 0.0129787 0.0129931 0.0130074 0.0130218 0.0130361 0.0130505 0.0130649 0.0130792 0.0130936 0.0131079 0.0131223 0.0131367 0.013151 0.0131654 0.0131797 0.0131941 0.0132085 0.0132228 0.0132372 0.0132515 0.0132659 0.0132803 0.0132946 0.013309 0.0133233 0.0133377 0.013352 0.0133664 0.0133808 0.0133951 0.0134095 0.0134238 0.0134382 0.0134526 0.0134669 0.0134813 0.0134956 0.01351 0.0135244 0.0135387 0.0135531 0.0135674 0.0135818 0.0135962 0.0136105 0.0136249 0.0136392 0.0136536 0.013668 0.0136823 0.0136967 0.013711 0.0137254 +-0.00338525 -0.00298591 -0.00223207 -0.0011461 0.000140354 0.00153529 0.00298722 0.00446438 0.00594238 0.00739621 0.00879171 0.0100701 0.0111176 0.0117595 0.0119866 0.0120421 0.0120628 0.0120781 0.0120926 0.012107 0.0121214 0.0121357 0.0121501 0.0121645 0.0121788 0.0121932 0.0122076 0.0122219 0.0122363 0.0122507 0.012265 0.0122794 0.0122938 0.0123081 0.0123225 0.0123369 0.0123512 0.0123656 0.0123799 0.0123943 0.0124087 0.012423 0.0124374 0.0124518 0.0124661 0.0124805 0.0124949 0.0125092 0.0125236 0.012538 0.0125523 0.0125667 0.0125811 0.0125954 0.0126098 0.0126242 0.0126385 0.0126529 0.0126672 0.0126816 0.012696 0.0127103 0.0127247 0.0127391 0.0127534 0.0127678 0.0127822 0.0127965 0.0128109 0.0128253 0.0128396 0.012854 0.0128684 0.0128827 0.0128971 0.0129114 0.0129258 0.0129402 0.0129545 0.0129689 0.0129833 0.0129976 0.013012 0.0130264 0.0130407 0.0130551 0.0130695 0.0130838 0.0130982 0.0131126 0.0131269 0.0131413 0.0131557 0.01317 0.0131844 0.0131987 0.0132131 0.0132275 0.0132418 0.0132562 0.0132706 0.0132849 0.0132993 0.0133137 0.013328 0.0133424 0.0133568 0.0133711 0.0133855 0.0133999 0.0134142 0.0134286 0.0134429 0.0134573 0.0134717 0.013486 0.0135004 0.0135148 0.0135291 0.0135435 0.0135579 0.0135722 0.0135866 0.013601 0.0136153 0.0136297 0.0136441 0.0136584 0.0136728 0.0136872 0.0137015 0.0137159 0.0137302 +-0.00338656 -0.00298684 -0.00223252 -0.00114622 0.000140443 0.00153552 0.00298756 0.00446483 0.00594295 0.00739695 0.0087927 0.0100715 0.0111197 0.0117628 0.0119906 0.0120463 0.012067 0.0120824 0.0120969 0.0121113 0.0121256 0.01214 0.0121544 0.0121687 0.0121831 0.0121975 0.0122119 0.0122262 0.0122406 0.012255 0.0122693 0.0122837 0.0122981 0.0123125 0.0123268 0.0123412 0.0123556 0.0123699 0.0123843 0.0123987 0.012413 0.0124274 0.0124418 0.0124562 0.0124705 0.0124849 0.0124993 0.0125136 0.012528 0.0125424 0.0125567 0.0125711 0.0125855 0.0125999 0.0126142 0.0126286 0.012643 0.0126573 0.0126717 0.0126861 0.0127004 0.0127148 0.0127292 0.0127436 0.0127579 0.0127723 0.0127867 0.012801 0.0128154 0.0128298 0.0128441 0.0128585 0.0128729 0.0128873 0.0129016 0.012916 0.0129304 0.0129447 0.0129591 0.0129735 0.0129878 0.0130022 0.0130166 0.013031 0.0130453 0.0130597 0.0130741 0.0130884 0.0131028 0.0131172 0.0131315 0.0131459 0.0131603 0.0131747 0.013189 0.0132034 0.0132178 0.0132321 0.0132465 0.0132609 0.0132752 0.0132896 0.013304 0.0133184 0.0133327 0.0133471 0.0133615 0.0133758 0.0133902 0.0134046 0.013419 0.0134333 0.0134477 0.0134621 0.0134764 0.0134908 0.0135052 0.0135195 0.0135339 0.0135483 0.0135627 0.013577 0.0135914 0.0136058 0.0136201 0.0136345 0.0136489 0.0136632 0.0136776 0.013692 0.0137064 0.0137207 0.0137351 +-0.00338786 -0.00298776 -0.00223297 -0.00114633 0.000140532 0.00153575 0.0029879 0.00446529 0.00594353 0.00739769 0.00879368 0.0100729 0.0111219 0.0117661 0.0119946 0.0120505 0.0120713 0.0120866 0.0121011 0.0121155 0.0121299 0.0121443 0.0121586 0.012173 0.0121874 0.0122018 0.0122161 0.0122305 0.0122449 0.0122593 0.0122737 0.012288 0.0123024 0.0123168 0.0123312 0.0123455 0.0123599 0.0123743 0.0123887 0.012403 0.0124174 0.0124318 0.0124462 0.0124605 0.0124749 0.0124893 0.0125037 0.012518 0.0125324 0.0125468 0.0125612 0.0125755 0.0125899 0.0126043 0.0126187 0.012633 0.0126474 0.0126618 0.0126762 0.0126905 0.0127049 0.0127193 0.0127337 0.012748 0.0127624 0.0127768 0.0127912 0.0128055 0.0128199 0.0128343 0.0128487 0.012863 0.0128774 0.0128918 0.0129062 0.0129205 0.0129349 0.0129493 0.0129637 0.012978 0.0129924 0.0130068 0.0130212 0.0130355 0.0130499 0.0130643 0.0130787 0.013093 0.0131074 0.0131218 0.0131362 0.0131505 0.0131649 0.0131793 0.0131937 0.0132081 0.0132224 0.0132368 0.0132512 0.0132656 0.0132799 0.0132943 0.0133087 0.0133231 0.0133374 0.0133518 0.0133662 0.0133806 0.0133949 0.0134093 0.0134237 0.0134381 0.0134524 0.0134668 0.0134812 0.0134956 0.0135099 0.0135243 0.0135387 0.0135531 0.0135674 0.0135818 0.0135962 0.0136106 0.0136249 0.0136393 0.0136537 0.0136681 0.0136824 0.0136968 0.0137112 0.0137256 0.0137399 +-0.00338917 -0.00298868 -0.00223341 -0.00114645 0.000140621 0.00153597 0.00298824 0.00446574 0.0059441 0.00739843 0.00879467 0.0100743 0.0111241 0.0117694 0.0119987 0.0120547 0.0120755 0.0120908 0.0121054 0.0121198 0.0121342 0.0121485 0.0121629 0.0121773 0.0121917 0.0122061 0.0122204 0.0122348 0.0122492 0.0122636 0.012278 0.0122923 0.0123067 0.0123211 0.0123355 0.0123499 0.0123642 0.0123786 0.012393 0.0124074 0.0124218 0.0124361 0.0124505 0.0124649 0.0124793 0.0124937 0.012508 0.0125224 0.0125368 0.0125512 0.0125656 0.01258 0.0125943 0.0126087 0.0126231 0.0126375 0.0126519 0.0126662 0.0126806 0.012695 0.0127094 0.0127238 0.0127381 0.0127525 0.0127669 0.0127813 0.0127957 0.01281 0.0128244 0.0128388 0.0128532 0.0128676 0.0128819 0.0128963 0.0129107 0.0129251 0.0129395 0.0129538 0.0129682 0.0129826 0.012997 0.0130114 0.0130258 0.0130401 0.0130545 0.0130689 0.0130833 0.0130977 0.013112 0.0131264 0.0131408 0.0131552 0.0131696 0.0131839 0.0131983 0.0132127 0.0132271 0.0132415 0.0132558 0.0132702 0.0132846 0.013299 0.0133134 0.0133277 0.0133421 0.0133565 0.0133709 0.0133853 0.0133996 0.013414 0.0134284 0.0134428 0.0134572 0.0134716 0.0134859 0.0135003 0.0135147 0.0135291 0.0135435 0.0135578 0.0135722 0.0135866 0.013601 0.0136154 0.0136297 0.0136441 0.0136585 0.0136729 0.0136873 0.0137016 0.013716 0.0137304 0.0137448 +-0.00339047 -0.0029896 -0.00223386 -0.00114656 0.00014071 0.0015362 0.00298858 0.00446619 0.00594468 0.00739917 0.00879565 0.0100757 0.0111263 0.0117726 0.0120027 0.0120589 0.0120797 0.0120951 0.0121096 0.012124 0.0121384 0.0121528 0.0121672 0.0121816 0.012196 0.0122103 0.0122247 0.0122391 0.0122535 0.0122679 0.0122823 0.0122967 0.012311 0.0123254 0.0123398 0.0123542 0.0123686 0.012383 0.0123974 0.0124117 0.0124261 0.0124405 0.0124549 0.0124693 0.0124837 0.0124981 0.0125124 0.0125268 0.0125412 0.0125556 0.01257 0.0125844 0.0125988 0.0126131 0.0126275 0.0126419 0.0126563 0.0126707 0.0126851 0.0126995 0.0127138 0.0127282 0.0127426 0.012757 0.0127714 0.0127858 0.0128002 0.0128145 0.0128289 0.0128433 0.0128577 0.0128721 0.0128865 0.0129009 0.0129152 0.0129296 0.012944 0.0129584 0.0129728 0.0129872 0.0130016 0.0130159 0.0130303 0.0130447 0.0130591 0.0130735 0.0130879 0.0131023 0.0131166 0.013131 0.0131454 0.0131598 0.0131742 0.0131886 0.013203 0.0132173 0.0132317 0.0132461 0.0132605 0.0132749 0.0132893 0.0133037 0.0133181 0.0133324 0.0133468 0.0133612 0.0133756 0.01339 0.0134044 0.0134188 0.0134331 0.0134475 0.0134619 0.0134763 0.0134907 0.0135051 0.0135195 0.0135338 0.0135482 0.0135626 0.013577 0.0135914 0.0136058 0.0136202 0.0136345 0.0136489 0.0136633 0.0136777 0.0136921 0.0137065 0.0137209 0.0137352 0.0137496 +-0.00339178 -0.00299053 -0.00223431 -0.00114668 0.000140799 0.00153643 0.00298893 0.00446664 0.00594525 0.0073999 0.00879664 0.0100771 0.0111284 0.0117759 0.0120067 0.0120631 0.012084 0.0120993 0.0121139 0.0121283 0.0121427 0.0121571 0.0121714 0.0121858 0.0122002 0.0122146 0.012229 0.0122434 0.0122578 0.0122722 0.0122866 0.012301 0.0123154 0.0123297 0.0123441 0.0123585 0.0123729 0.0123873 0.0124017 0.0124161 0.0124305 0.0124449 0.0124593 0.0124737 0.012488 0.0125024 0.0125168 0.0125312 0.0125456 0.01256 0.0125744 0.0125888 0.0126032 0.0126176 0.012632 0.0126464 0.0126607 0.0126751 0.0126895 0.0127039 0.0127183 0.0127327 0.0127471 0.0127615 0.0127759 0.0127903 0.0128047 0.012819 0.0128334 0.0128478 0.0128622 0.0128766 0.012891 0.0129054 0.0129198 0.0129342 0.0129486 0.012963 0.0129773 0.0129917 0.0130061 0.0130205 0.0130349 0.0130493 0.0130637 0.0130781 0.0130925 0.0131069 0.0131213 0.0131357 0.01315 0.0131644 0.0131788 0.0131932 0.0132076 0.013222 0.0132364 0.0132508 0.0132652 0.0132796 0.013294 0.0133083 0.0133227 0.0133371 0.0133515 0.0133659 0.0133803 0.0133947 0.0134091 0.0134235 0.0134379 0.0134523 0.0134666 0.013481 0.0134954 0.0135098 0.0135242 0.0135386 0.013553 0.0135674 0.0135818 0.0135962 0.0136106 0.0136249 0.0136393 0.0136537 0.0136681 0.0136825 0.0136969 0.0137113 0.0137257 0.0137401 0.0137545 +-0.00339308 -0.00299145 -0.00223475 -0.00114679 0.000140888 0.00153666 0.00298927 0.00446709 0.00594583 0.00740064 0.00879762 0.0100785 0.0111306 0.0117792 0.0120107 0.0120673 0.0120882 0.0121036 0.0121181 0.0121325 0.0121469 0.0121613 0.0121757 0.0121901 0.0122045 0.0122189 0.0122333 0.0122477 0.0122621 0.0122765 0.0122909 0.0123053 0.0123197 0.0123341 0.0123485 0.0123629 0.0123773 0.0123917 0.012406 0.0124204 0.0124348 0.0124492 0.0124636 0.012478 0.0124924 0.0125068 0.0125212 0.0125356 0.01255 0.0125644 0.0125788 0.0125932 0.0126076 0.012622 0.0126364 0.0126508 0.0126652 0.0126796 0.012694 0.0127084 0.0127228 0.0127372 0.0127516 0.012766 0.0127804 0.0127948 0.0128091 0.0128235 0.0128379 0.0128523 0.0128667 0.0128811 0.0128955 0.0129099 0.0129243 0.0129387 0.0129531 0.0129675 0.0129819 0.0129963 0.0130107 0.0130251 0.0130395 0.0130539 0.0130683 0.0130827 0.0130971 0.0131115 0.0131259 0.0131403 0.0131547 0.0131691 0.0131835 0.0131979 0.0132122 0.0132266 0.013241 0.0132554 0.0132698 0.0132842 0.0132986 0.013313 0.0133274 0.0133418 0.0133562 0.0133706 0.013385 0.0133994 0.0134138 0.0134282 0.0134426 0.013457 0.0134714 0.0134858 0.0135002 0.0135146 0.013529 0.0135434 0.0135578 0.0135722 0.0135866 0.0136009 0.0136153 0.0136297 0.0136441 0.0136585 0.0136729 0.0136873 0.0137017 0.0137161 0.0137305 0.0137449 0.0137593 +-0.00339438 -0.00299237 -0.0022352 -0.0011469 0.000140977 0.00153689 0.00298961 0.00446754 0.0059464 0.00740138 0.0087986 0.0100799 0.0111327 0.0117825 0.0120147 0.0120714 0.0120924 0.0121078 0.0121223 0.0121368 0.0121512 0.0121656 0.01218 0.0121944 0.0122088 0.0122232 0.0122376 0.012252 0.0122664 0.0122808 0.0122952 0.0123096 0.012324 0.0123384 0.0123528 0.0123672 0.0123816 0.012396 0.0124104 0.0124248 0.0124392 0.0124536 0.012468 0.0124824 0.0124968 0.0125112 0.0125256 0.01254 0.0125544 0.0125688 0.0125832 0.0125976 0.012612 0.0126264 0.0126408 0.0126552 0.0126696 0.012684 0.0126984 0.0127128 0.0127272 0.0127416 0.012756 0.0127704 0.0127848 0.0127992 0.0128136 0.012828 0.0128424 0.0128568 0.0128712 0.0128856 0.0129001 0.0129145 0.0129289 0.0129433 0.0129577 0.0129721 0.0129865 0.0130009 0.0130153 0.0130297 0.0130441 0.0130585 0.0130729 0.0130873 0.0131017 0.0131161 0.0131305 0.0131449 0.0131593 0.0131737 0.0131881 0.0132025 0.0132169 0.0132313 0.0132457 0.0132601 0.0132745 0.0132889 0.0133033 0.0133177 0.0133321 0.0133465 0.0133609 0.0133753 0.0133897 0.0134041 0.0134185 0.0134329 0.0134473 0.0134617 0.0134761 0.0134905 0.0135049 0.0135193 0.0135337 0.0135481 0.0135625 0.0135769 0.0135913 0.0136057 0.0136201 0.0136345 0.0136489 0.0136633 0.0136777 0.0136921 0.0137065 0.0137209 0.0137353 0.0137497 0.0137641 +-0.00339568 -0.00299328 -0.00223564 -0.00114702 0.000141066 0.00153711 0.00298995 0.00446799 0.00594698 0.00740212 0.00879958 0.0100813 0.0111349 0.0117858 0.0120187 0.0120756 0.0120966 0.012112 0.0121266 0.012141 0.0121554 0.0121698 0.0121842 0.0121986 0.012213 0.0122275 0.0122419 0.0122563 0.0122707 0.0122851 0.0122995 0.0123139 0.0123283 0.0123427 0.0123571 0.0123715 0.0123859 0.0124003 0.0124147 0.0124291 0.0124436 0.012458 0.0124724 0.0124868 0.0125012 0.0125156 0.01253 0.0125444 0.0125588 0.0125732 0.0125876 0.012602 0.0126164 0.0126308 0.0126453 0.0126597 0.0126741 0.0126885 0.0127029 0.0127173 0.0127317 0.0127461 0.0127605 0.0127749 0.0127893 0.0128037 0.0128181 0.0128325 0.0128469 0.0128614 0.0128758 0.0128902 0.0129046 0.012919 0.0129334 0.0129478 0.0129622 0.0129766 0.012991 0.0130054 0.0130198 0.0130342 0.0130486 0.0130631 0.0130775 0.0130919 0.0131063 0.0131207 0.0131351 0.0131495 0.0131639 0.0131783 0.0131927 0.0132071 0.0132215 0.0132359 0.0132503 0.0132647 0.0132792 0.0132936 0.013308 0.0133224 0.0133368 0.0133512 0.0133656 0.01338 0.0133944 0.0134088 0.0134232 0.0134376 0.013452 0.0134664 0.0134809 0.0134953 0.0135097 0.0135241 0.0135385 0.0135529 0.0135673 0.0135817 0.0135961 0.0136105 0.0136249 0.0136393 0.0136537 0.0136681 0.0136825 0.013697 0.0137114 0.0137258 0.0137402 0.0137546 0.013769 +-0.00339699 -0.0029942 -0.00223609 -0.00114713 0.000141155 0.00153734 0.00299029 0.00446844 0.00594755 0.00740285 0.00880056 0.0100827 0.0111371 0.011789 0.0120227 0.0120798 0.0121009 0.0121163 0.0121308 0.0121453 0.0121597 0.0121741 0.0121885 0.0122029 0.0122173 0.0122317 0.0122461 0.0122606 0.012275 0.0122894 0.0123038 0.0123182 0.0123326 0.012347 0.0123614 0.0123758 0.0123903 0.0124047 0.0124191 0.0124335 0.0124479 0.0124623 0.0124767 0.0124911 0.0125056 0.01252 0.0125344 0.0125488 0.0125632 0.0125776 0.012592 0.0126064 0.0126209 0.0126353 0.0126497 0.0126641 0.0126785 0.0126929 0.0127073 0.0127217 0.0127362 0.0127506 0.012765 0.0127794 0.0127938 0.0128082 0.0128226 0.012837 0.0128514 0.0128659 0.0128803 0.0128947 0.0129091 0.0129235 0.0129379 0.0129523 0.0129667 0.0129812 0.0129956 0.01301 0.0130244 0.0130388 0.0130532 0.0130676 0.013082 0.0130965 0.0131109 0.0131253 0.0131397 0.0131541 0.0131685 0.0131829 0.0131973 0.0132118 0.0132262 0.0132406 0.013255 0.0132694 0.0132838 0.0132982 0.0133126 0.013327 0.0133415 0.0133559 0.0133703 0.0133847 0.0133991 0.0134135 0.0134279 0.0134423 0.0134568 0.0134712 0.0134856 0.0135 0.0135144 0.0135288 0.0135432 0.0135576 0.0135721 0.0135865 0.0136009 0.0136153 0.0136297 0.0136441 0.0136585 0.0136729 0.0136874 0.0137018 0.0137162 0.0137306 0.013745 0.0137594 0.0137738 +-0.00339829 -0.00299512 -0.00223653 -0.00114724 0.000141244 0.00153757 0.00299063 0.00446889 0.00594812 0.00740359 0.00880154 0.0100841 0.0111392 0.0117923 0.0120267 0.012084 0.0121051 0.0121205 0.0121351 0.0121495 0.0121639 0.0121783 0.0121927 0.0122072 0.0122216 0.012236 0.0122504 0.0122648 0.0122793 0.0122937 0.0123081 0.0123225 0.0123369 0.0123513 0.0123658 0.0123802 0.0123946 0.012409 0.0124234 0.0124378 0.0124523 0.0124667 0.0124811 0.0124955 0.0125099 0.0125243 0.0125388 0.0125532 0.0125676 0.012582 0.0125964 0.0126109 0.0126253 0.0126397 0.0126541 0.0126685 0.0126829 0.0126974 0.0127118 0.0127262 0.0127406 0.012755 0.0127694 0.0127839 0.0127983 0.0128127 0.0128271 0.0128415 0.0128559 0.0128704 0.0128848 0.0128992 0.0129136 0.012928 0.0129425 0.0129569 0.0129713 0.0129857 0.0130001 0.0130145 0.013029 0.0130434 0.0130578 0.0130722 0.0130866 0.013101 0.0131155 0.0131299 0.0131443 0.0131587 0.0131731 0.0131875 0.013202 0.0132164 0.0132308 0.0132452 0.0132596 0.0132741 0.0132885 0.0133029 0.0133173 0.0133317 0.0133461 0.0133606 0.013375 0.0133894 0.0134038 0.0134182 0.0134326 0.0134471 0.0134615 0.0134759 0.0134903 0.0135047 0.0135191 0.0135336 0.013548 0.0135624 0.0135768 0.0135912 0.0136057 0.0136201 0.0136345 0.0136489 0.0136633 0.0136777 0.0136922 0.0137066 0.013721 0.0137354 0.0137498 0.0137642 0.0137787 +-0.00339959 -0.00299604 -0.00223697 -0.00114736 0.000141333 0.0015378 0.00299097 0.00446933 0.00594869 0.00740432 0.00880252 0.0100855 0.0111414 0.0117956 0.0120307 0.0120882 0.0121093 0.0121247 0.0121393 0.0121537 0.0121682 0.0121826 0.012197 0.0122114 0.0122259 0.0122403 0.0122547 0.0122691 0.0122835 0.012298 0.0123124 0.0123268 0.0123412 0.0123557 0.0123701 0.0123845 0.0123989 0.0124133 0.0124278 0.0124422 0.0124566 0.012471 0.0124855 0.0124999 0.0125143 0.0125287 0.0125432 0.0125576 0.012572 0.0125864 0.0126008 0.0126153 0.0126297 0.0126441 0.0126585 0.012673 0.0126874 0.0127018 0.0127162 0.0127306 0.0127451 0.0127595 0.0127739 0.0127883 0.0128028 0.0128172 0.0128316 0.012846 0.0128604 0.0128749 0.0128893 0.0129037 0.0129181 0.0129326 0.012947 0.0129614 0.0129758 0.0129903 0.0130047 0.0130191 0.0130335 0.0130479 0.0130624 0.0130768 0.0130912 0.0131056 0.0131201 0.0131345 0.0131489 0.0131633 0.0131777 0.0131922 0.0132066 0.013221 0.0132354 0.0132499 0.0132643 0.0132787 0.0132931 0.0133075 0.013322 0.0133364 0.0133508 0.0133652 0.0133797 0.0133941 0.0134085 0.0134229 0.0134374 0.0134518 0.0134662 0.0134806 0.013495 0.0135095 0.0135239 0.0135383 0.0135527 0.0135672 0.0135816 0.013596 0.0136104 0.0136248 0.0136393 0.0136537 0.0136681 0.0136825 0.013697 0.0137114 0.0137258 0.0137402 0.0137547 0.0137691 0.0137835 +-0.00340089 -0.00299696 -0.00223742 -0.00114747 0.000141422 0.00153802 0.00299131 0.00446978 0.00594927 0.00740506 0.0088035 0.0100869 0.0111435 0.0117988 0.0120347 0.0120924 0.0121135 0.012129 0.0121435 0.012158 0.0121724 0.0121868 0.0122013 0.0122157 0.0122301 0.0122445 0.012259 0.0122734 0.0122878 0.0123023 0.0123167 0.0123311 0.0123455 0.01236 0.0123744 0.0123888 0.0124033 0.0124177 0.0124321 0.0124465 0.012461 0.0124754 0.0124898 0.0125042 0.0125187 0.0125331 0.0125475 0.012562 0.0125764 0.0125908 0.0126052 0.0126197 0.0126341 0.0126485 0.012663 0.0126774 0.0126918 0.0127062 0.0127207 0.0127351 0.0127495 0.012764 0.0127784 0.0127928 0.0128072 0.0128217 0.0128361 0.0128505 0.0128649 0.0128794 0.0128938 0.0129082 0.0129227 0.0129371 0.0129515 0.0129659 0.0129804 0.0129948 0.0130092 0.0130237 0.0130381 0.0130525 0.0130669 0.0130814 0.0130958 0.0131102 0.0131246 0.0131391 0.0131535 0.0131679 0.0131824 0.0131968 0.0132112 0.0132256 0.0132401 0.0132545 0.0132689 0.0132834 0.0132978 0.0133122 0.0133266 0.0133411 0.0133555 0.0133699 0.0133843 0.0133988 0.0134132 0.0134276 0.0134421 0.0134565 0.0134709 0.0134853 0.0134998 0.0135142 0.0135286 0.0135431 0.0135575 0.0135719 0.0135863 0.0136008 0.0136152 0.0136296 0.0136441 0.0136585 0.0136729 0.0136873 0.0137018 0.0137162 0.0137306 0.013745 0.0137595 0.0137739 0.0137883 +-0.00340219 -0.00299787 -0.00223786 -0.00114758 0.000141511 0.00153825 0.00299165 0.00447023 0.00594984 0.00740579 0.00880447 0.0100883 0.0111456 0.0118021 0.0120387 0.0120966 0.0121177 0.0121332 0.0121478 0.0121622 0.0121767 0.0121911 0.0122055 0.01222 0.0122344 0.0122488 0.0122633 0.0122777 0.0122921 0.0123066 0.012321 0.0123354 0.0123499 0.0123643 0.0123787 0.0123932 0.0124076 0.012422 0.0124365 0.0124509 0.0124653 0.0124797 0.0124942 0.0125086 0.012523 0.0125375 0.0125519 0.0125663 0.0125808 0.0125952 0.0126096 0.0126241 0.0126385 0.0126529 0.0126674 0.0126818 0.0126962 0.0127107 0.0127251 0.0127395 0.012754 0.0127684 0.0127828 0.0127973 0.0128117 0.0128261 0.0128406 0.012855 0.0128694 0.0128839 0.0128983 0.0129127 0.0129272 0.0129416 0.012956 0.0129705 0.0129849 0.0129993 0.0130138 0.0130282 0.0130426 0.0130571 0.0130715 0.0130859 0.0131004 0.0131148 0.0131292 0.0131437 0.0131581 0.0131725 0.013187 0.0132014 0.0132158 0.0132303 0.0132447 0.0132591 0.0132736 0.013288 0.0133024 0.0133169 0.0133313 0.0133457 0.0133602 0.0133746 0.013389 0.0134035 0.0134179 0.0134323 0.0134468 0.0134612 0.0134756 0.0134901 0.0135045 0.0135189 0.0135334 0.0135478 0.0135622 0.0135767 0.0135911 0.0136055 0.01362 0.0136344 0.0136488 0.0136633 0.0136777 0.0136921 0.0137066 0.013721 0.0137354 0.0137499 0.0137643 0.0137787 0.0137932 +-0.00340349 -0.00299879 -0.0022383 -0.0011477 0.0001416 0.00153848 0.00299199 0.00447068 0.00595041 0.00740652 0.00880545 0.0100897 0.0111478 0.0118054 0.0120427 0.0121007 0.012122 0.0121374 0.012152 0.0121665 0.0121809 0.0121953 0.0122098 0.0122242 0.0122387 0.0122531 0.0122675 0.012282 0.0122964 0.0123108 0.0123253 0.0123397 0.0123542 0.0123686 0.012383 0.0123975 0.0124119 0.0124264 0.0124408 0.0124552 0.0124697 0.0124841 0.0124985 0.012513 0.0125274 0.0125419 0.0125563 0.0125707 0.0125852 0.0125996 0.012614 0.0126285 0.0126429 0.0126574 0.0126718 0.0126862 0.0127007 0.0127151 0.0127296 0.012744 0.0127584 0.0127729 0.0127873 0.0128017 0.0128162 0.0128306 0.0128451 0.0128595 0.0128739 0.0128884 0.0129028 0.0129173 0.0129317 0.0129461 0.0129606 0.012975 0.0129894 0.0130039 0.0130183 0.0130328 0.0130472 0.0130616 0.0130761 0.0130905 0.013105 0.0131194 0.0131338 0.0131483 0.0131627 0.0131771 0.0131916 0.013206 0.0132205 0.0132349 0.0132493 0.0132638 0.0132782 0.0132927 0.0133071 0.0133215 0.013336 0.0133504 0.0133648 0.0133793 0.0133937 0.0134082 0.0134226 0.013437 0.0134515 0.0134659 0.0134803 0.0134948 0.0135092 0.0135237 0.0135381 0.0135525 0.013567 0.0135814 0.0135959 0.0136103 0.0136247 0.0136392 0.0136536 0.013668 0.0136825 0.0136969 0.0137114 0.0137258 0.0137402 0.0137547 0.0137691 0.0137836 0.013798 +-0.00340479 -0.0029997 -0.00223874 -0.00114781 0.000141689 0.00153871 0.00299233 0.00447113 0.00595098 0.00740726 0.00880642 0.0100911 0.0111499 0.0118086 0.0120467 0.0121049 0.0121262 0.0121416 0.0121562 0.0121707 0.0121851 0.0121996 0.012214 0.0122285 0.0122429 0.0122574 0.0122718 0.0122862 0.0123007 0.0123151 0.0123296 0.012344 0.0123585 0.0123729 0.0123874 0.0124018 0.0124162 0.0124307 0.0124451 0.0124596 0.012474 0.0124885 0.0125029 0.0125173 0.0125318 0.0125462 0.0125607 0.0125751 0.0125896 0.012604 0.0126184 0.0126329 0.0126473 0.0126618 0.0126762 0.0126907 0.0127051 0.0127196 0.012734 0.0127484 0.0127629 0.0127773 0.0127918 0.0128062 0.0128207 0.0128351 0.0128495 0.012864 0.0128784 0.0128929 0.0129073 0.0129218 0.0129362 0.0129507 0.0129651 0.0129795 0.012994 0.0130084 0.0130229 0.0130373 0.0130518 0.0130662 0.0130806 0.0130951 0.0131095 0.013124 0.0131384 0.0131529 0.0131673 0.0131817 0.0131962 0.0132106 0.0132251 0.0132395 0.013254 0.0132684 0.0132829 0.0132973 0.0133117 0.0133262 0.0133406 0.0133551 0.0133695 0.013384 0.0133984 0.0134128 0.0134273 0.0134417 0.0134562 0.0134706 0.0134851 0.0134995 0.013514 0.0135284 0.0135428 0.0135573 0.0135717 0.0135862 0.0136006 0.0136151 0.0136295 0.0136439 0.0136584 0.0136728 0.0136873 0.0137017 0.0137162 0.0137306 0.013745 0.0137595 0.0137739 0.0137884 0.0138028 +-0.00340609 -0.00300062 -0.00223918 -0.00114792 0.000141778 0.00153893 0.00299267 0.00447157 0.00595155 0.00740799 0.0088074 0.0100924 0.0111521 0.0118119 0.0120507 0.0121091 0.0121304 0.0121459 0.0121605 0.0121749 0.0121894 0.0122038 0.0122183 0.0122327 0.0122472 0.0122616 0.0122761 0.0122905 0.012305 0.0123194 0.0123339 0.0123483 0.0123628 0.0123772 0.0123917 0.0124061 0.0124206 0.012435 0.0124495 0.0124639 0.0124784 0.0124928 0.0125073 0.0125217 0.0125362 0.0125506 0.0125651 0.0125795 0.012594 0.0126084 0.0126228 0.0126373 0.0126517 0.0126662 0.0126806 0.0126951 0.0127095 0.012724 0.0127384 0.0127529 0.0127673 0.0127818 0.0127962 0.0128107 0.0128251 0.0128396 0.012854 0.0128685 0.0128829 0.0128974 0.0129118 0.0129263 0.0129407 0.0129552 0.0129696 0.0129841 0.0129985 0.013013 0.0130274 0.0130419 0.0130563 0.0130708 0.0130852 0.0130997 0.0131141 0.0131286 0.013143 0.0131575 0.0131719 0.0131864 0.0132008 0.0132153 0.0132297 0.0132441 0.0132586 0.013273 0.0132875 0.0133019 0.0133164 0.0133308 0.0133453 0.0133597 0.0133742 0.0133886 0.0134031 0.0134175 0.013432 0.0134464 0.0134609 0.0134753 0.0134898 0.0135042 0.0135187 0.0135331 0.0135476 0.013562 0.0135765 0.0135909 0.0136054 0.0136198 0.0136343 0.0136487 0.0136632 0.0136776 0.0136921 0.0137065 0.013721 0.0137354 0.0137499 0.0137643 0.0137788 0.0137932 0.0138077 +-0.00340738 -0.00300153 -0.00223963 -0.00114803 0.000141867 0.00153916 0.002993 0.00447202 0.00595212 0.00740872 0.00880837 0.0100938 0.0111542 0.0118151 0.0120546 0.0121133 0.0121346 0.0121501 0.0121647 0.0121792 0.0121936 0.0122081 0.0122225 0.012237 0.0122514 0.0122659 0.0122803 0.0122948 0.0123093 0.0123237 0.0123382 0.0123526 0.0123671 0.0123815 0.012396 0.0124104 0.0124249 0.0124393 0.0124538 0.0124683 0.0124827 0.0124972 0.0125116 0.0125261 0.0125405 0.012555 0.0125694 0.0125839 0.0125983 0.0126128 0.0126272 0.0126417 0.0126562 0.0126706 0.0126851 0.0126995 0.012714 0.0127284 0.0127429 0.0127573 0.0127718 0.0127862 0.0128007 0.0128152 0.0128296 0.0128441 0.0128585 0.012873 0.0128874 0.0129019 0.0129163 0.0129308 0.0129452 0.0129597 0.0129741 0.0129886 0.0130031 0.0130175 0.013032 0.0130464 0.0130609 0.0130753 0.0130898 0.0131042 0.0131187 0.0131331 0.0131476 0.013162 0.0131765 0.013191 0.0132054 0.0132199 0.0132343 0.0132488 0.0132632 0.0132777 0.0132921 0.0133066 0.013321 0.0133355 0.01335 0.0133644 0.0133789 0.0133933 0.0134078 0.0134222 0.0134367 0.0134511 0.0134656 0.01348 0.0134945 0.0135089 0.0135234 0.0135379 0.0135523 0.0135668 0.0135812 0.0135957 0.0136101 0.0136246 0.013639 0.0136535 0.0136679 0.0136824 0.0136968 0.0137113 0.0137258 0.0137402 0.0137547 0.0137691 0.0137836 0.013798 0.0138125 +-0.00340868 -0.00300244 -0.00224007 -0.00114815 0.000141956 0.00153939 0.00299334 0.00447247 0.00595269 0.00740945 0.00880934 0.0100952 0.0111563 0.0118184 0.0120586 0.0121175 0.0121388 0.0121543 0.0121689 0.0121834 0.0121979 0.0122123 0.0122268 0.0122412 0.0122557 0.0122702 0.0122846 0.0122991 0.0123135 0.012328 0.0123425 0.0123569 0.0123714 0.0123858 0.0124003 0.0124148 0.0124292 0.0124437 0.0124581 0.0124726 0.0124871 0.0125015 0.012516 0.0125304 0.0125449 0.0125593 0.0125738 0.0125883 0.0126027 0.0126172 0.0126316 0.0126461 0.0126606 0.012675 0.0126895 0.0127039 0.0127184 0.0127329 0.0127473 0.0127618 0.0127762 0.0127907 0.0128052 0.0128196 0.0128341 0.0128485 0.012863 0.0128775 0.0128919 0.0129064 0.0129208 0.0129353 0.0129497 0.0129642 0.0129787 0.0129931 0.0130076 0.013022 0.0130365 0.013051 0.0130654 0.0130799 0.0130943 0.0131088 0.0131233 0.0131377 0.0131522 0.0131666 0.0131811 0.0131956 0.01321 0.0132245 0.0132389 0.0132534 0.0132679 0.0132823 0.0132968 0.0133112 0.0133257 0.0133401 0.0133546 0.0133691 0.0133835 0.013398 0.0134124 0.0134269 0.0134414 0.0134558 0.0134703 0.0134847 0.0134992 0.0135137 0.0135281 0.0135426 0.013557 0.0135715 0.013586 0.0136004 0.0136149 0.0136293 0.0136438 0.0136583 0.0136727 0.0136872 0.0137016 0.0137161 0.0137306 0.013745 0.0137595 0.0137739 0.0137884 0.0138028 0.0138173 +-0.00340998 -0.00300335 -0.00224051 -0.00114826 0.000142045 0.00153961 0.00299368 0.00447292 0.00595326 0.00741018 0.00881031 0.0100966 0.0111584 0.0118216 0.0120626 0.0121216 0.012143 0.0121585 0.0121731 0.0121876 0.0122021 0.0122166 0.012231 0.0122455 0.01226 0.0122744 0.0122889 0.0123034 0.0123178 0.0123323 0.0123468 0.0123612 0.0123757 0.0123901 0.0124046 0.0124191 0.0124335 0.012448 0.0124625 0.0124769 0.0124914 0.0125059 0.0125203 0.0125348 0.0125493 0.0125637 0.0125782 0.0125926 0.0126071 0.0126216 0.012636 0.0126505 0.012665 0.0126794 0.0126939 0.0127084 0.0127228 0.0127373 0.0127518 0.0127662 0.0127807 0.0127952 0.0128096 0.0128241 0.0128385 0.012853 0.0128675 0.0128819 0.0128964 0.0129109 0.0129253 0.0129398 0.0129543 0.0129687 0.0129832 0.0129977 0.0130121 0.0130266 0.013041 0.0130555 0.01307 0.0130844 0.0130989 0.0131134 0.0131278 0.0131423 0.0131568 0.0131712 0.0131857 0.0132002 0.0132146 0.0132291 0.0132436 0.013258 0.0132725 0.0132869 0.0133014 0.0133159 0.0133303 0.0133448 0.0133593 0.0133737 0.0133882 0.0134027 0.0134171 0.0134316 0.0134461 0.0134605 0.013475 0.0134894 0.0135039 0.0135184 0.0135328 0.0135473 0.0135618 0.0135762 0.0135907 0.0136052 0.0136196 0.0136341 0.0136486 0.013663 0.0136775 0.013692 0.0137064 0.0137209 0.0137353 0.0137498 0.0137643 0.0137787 0.0137932 0.0138077 0.0138221 +-0.00341127 -0.00300427 -0.00224095 -0.00114837 0.000142134 0.00153984 0.00299402 0.00447336 0.00595383 0.00741091 0.00881128 0.010098 0.0111606 0.0118248 0.0120666 0.0121258 0.0121473 0.0121628 0.0121774 0.0121919 0.0122063 0.0122208 0.0122353 0.0122498 0.0122642 0.0122787 0.0122932 0.0123076 0.0123221 0.0123366 0.012351 0.0123655 0.01238 0.0123944 0.0124089 0.0124234 0.0124379 0.0124523 0.0124668 0.0124813 0.0124957 0.0125102 0.0125247 0.0125391 0.0125536 0.0125681 0.0125826 0.012597 0.0126115 0.012626 0.0126404 0.0126549 0.0126694 0.0126838 0.0126983 0.0127128 0.0127273 0.0127417 0.0127562 0.0127707 0.0127851 0.0127996 0.0128141 0.0128285 0.012843 0.0128575 0.012872 0.0128864 0.0129009 0.0129154 0.0129298 0.0129443 0.0129588 0.0129732 0.0129877 0.0130022 0.0130166 0.0130311 0.0130456 0.0130601 0.0130745 0.013089 0.0131035 0.0131179 0.0131324 0.0131469 0.0131613 0.0131758 0.0131903 0.0132048 0.0132192 0.0132337 0.0132482 0.0132626 0.0132771 0.0132916 0.013306 0.0133205 0.013335 0.0133495 0.0133639 0.0133784 0.0133929 0.0134073 0.0134218 0.0134363 0.0134507 0.0134652 0.0134797 0.0134942 0.0135086 0.0135231 0.0135376 0.013552 0.0135665 0.013581 0.0135954 0.0136099 0.0136244 0.0136388 0.0136533 0.0136678 0.0136823 0.0136967 0.0137112 0.0137257 0.0137401 0.0137546 0.0137691 0.0137835 0.013798 0.0138125 0.013827 +-0.00341257 -0.00300518 -0.00224138 -0.00114848 0.000142223 0.00154007 0.00299436 0.00447381 0.0059544 0.00741164 0.00881225 0.0100993 0.0111627 0.0118281 0.0120706 0.01213 0.0121515 0.012167 0.0121816 0.0121961 0.0122106 0.0122251 0.0122395 0.012254 0.0122685 0.012283 0.0122974 0.0123119 0.0123264 0.0123409 0.0123553 0.0123698 0.0123843 0.0123988 0.0124132 0.0124277 0.0124422 0.0124567 0.0124711 0.0124856 0.0125001 0.0125146 0.012529 0.0125435 0.012558 0.0125725 0.0125869 0.0126014 0.0126159 0.0126304 0.0126448 0.0126593 0.0126738 0.0126883 0.0127027 0.0127172 0.0127317 0.0127462 0.0127606 0.0127751 0.0127896 0.0128041 0.0128185 0.012833 0.0128475 0.012862 0.0128764 0.0128909 0.0129054 0.0129199 0.0129343 0.0129488 0.0129633 0.0129778 0.0129922 0.0130067 0.0130212 0.0130357 0.0130501 0.0130646 0.0130791 0.0130936 0.013108 0.0131225 0.013137 0.0131515 0.0131659 0.0131804 0.0131949 0.0132094 0.0132238 0.0132383 0.0132528 0.0132673 0.0132817 0.0132962 0.0133107 0.0133252 0.0133396 0.0133541 0.0133686 0.0133831 0.0133975 0.013412 0.0134265 0.013441 0.0134554 0.0134699 0.0134844 0.0134989 0.0135133 0.0135278 0.0135423 0.0135568 0.0135712 0.0135857 0.0136002 0.0136147 0.0136291 0.0136436 0.0136581 0.0136726 0.013687 0.0137015 0.013716 0.0137305 0.0137449 0.0137594 0.0137739 0.0137884 0.0138028 0.0138173 0.0138318 +-0.00341387 -0.00300609 -0.00224182 -0.00114859 0.000142312 0.00154029 0.0029947 0.00447425 0.00595497 0.00741237 0.00881322 0.0101007 0.0111648 0.0118313 0.0120746 0.0121342 0.0121557 0.0121712 0.0121858 0.0122003 0.0122148 0.0122293 0.0122438 0.0122583 0.0122727 0.0122872 0.0123017 0.0123162 0.0123307 0.0123451 0.0123596 0.0123741 0.0123886 0.0124031 0.0124175 0.012432 0.0124465 0.012461 0.0124755 0.0124899 0.0125044 0.0125189 0.0125334 0.0125479 0.0125623 0.0125768 0.0125913 0.0126058 0.0126203 0.0126347 0.0126492 0.0126637 0.0126782 0.0126927 0.0127071 0.0127216 0.0127361 0.0127506 0.0127651 0.0127795 0.012794 0.0128085 0.012823 0.0128375 0.0128519 0.0128664 0.0128809 0.0128954 0.0129099 0.0129243 0.0129388 0.0129533 0.0129678 0.0129823 0.0129967 0.0130112 0.0130257 0.0130402 0.0130547 0.0130691 0.0130836 0.0130981 0.0131126 0.0131271 0.0131415 0.013156 0.0131705 0.013185 0.0131995 0.013214 0.0132284 0.0132429 0.0132574 0.0132719 0.0132864 0.0133008 0.0133153 0.0133298 0.0133443 0.0133588 0.0133732 0.0133877 0.0134022 0.0134167 0.0134312 0.0134456 0.0134601 0.0134746 0.0134891 0.0135036 0.013518 0.0135325 0.013547 0.0135615 0.013576 0.0135904 0.0136049 0.0136194 0.0136339 0.0136484 0.0136628 0.0136773 0.0136918 0.0137063 0.0137208 0.0137352 0.0137497 0.0137642 0.0137787 0.0137932 0.0138076 0.0138221 0.0138366 +-0.00341516 -0.003007 -0.00224226 -0.0011487 0.000142402 0.00154052 0.00299503 0.0044747 0.00595553 0.00741309 0.00881419 0.0101021 0.0111669 0.0118345 0.0120785 0.0121383 0.0121599 0.0121754 0.0121901 0.0122046 0.012219 0.0122335 0.012248 0.0122625 0.012277 0.0122915 0.012306 0.0123204 0.0123349 0.0123494 0.0123639 0.0123784 0.0123929 0.0124074 0.0124218 0.0124363 0.0124508 0.0124653 0.0124798 0.0124943 0.0125088 0.0125232 0.0125377 0.0125522 0.0125667 0.0125812 0.0125957 0.0126102 0.0126246 0.0126391 0.0126536 0.0126681 0.0126826 0.0126971 0.0127116 0.012726 0.0127405 0.012755 0.0127695 0.012784 0.0127985 0.012813 0.0128274 0.0128419 0.0128564 0.0128709 0.0128854 0.0128999 0.0129144 0.0129288 0.0129433 0.0129578 0.0129723 0.0129868 0.0130013 0.0130158 0.0130302 0.0130447 0.0130592 0.0130737 0.0130882 0.0131027 0.0131171 0.0131316 0.0131461 0.0131606 0.0131751 0.0131896 0.0132041 0.0132185 0.013233 0.0132475 0.013262 0.0132765 0.013291 0.0133055 0.0133199 0.0133344 0.0133489 0.0133634 0.0133779 0.0133924 0.0134069 0.0134213 0.0134358 0.0134503 0.0134648 0.0134793 0.0134938 0.0135083 0.0135227 0.0135372 0.0135517 0.0135662 0.0135807 0.0135952 0.0136097 0.0136241 0.0136386 0.0136531 0.0136676 0.0136821 0.0136966 0.0137111 0.0137255 0.01374 0.0137545 0.013769 0.0137835 0.013798 0.0138125 0.0138269 0.0138414 +-0.00341646 -0.00300791 -0.0022427 -0.00114882 0.000142491 0.00154074 0.00299537 0.00447514 0.0059561 0.00741382 0.00881515 0.0101034 0.011169 0.0118377 0.0120825 0.0121425 0.0121641 0.0121796 0.0121943 0.0122088 0.0122233 0.0122378 0.0122523 0.0122668 0.0122812 0.0122957 0.0123102 0.0123247 0.0123392 0.0123537 0.0123682 0.0123827 0.0123972 0.0124117 0.0124262 0.0124406 0.0124551 0.0124696 0.0124841 0.0124986 0.0125131 0.0125276 0.0125421 0.0125566 0.0125711 0.0125856 0.0126 0.0126145 0.012629 0.0126435 0.012658 0.0126725 0.012687 0.0127015 0.012716 0.0127305 0.0127449 0.0127594 0.0127739 0.0127884 0.0128029 0.0128174 0.0128319 0.0128464 0.0128609 0.0128754 0.0128899 0.0129043 0.0129188 0.0129333 0.0129478 0.0129623 0.0129768 0.0129913 0.0130058 0.0130203 0.0130348 0.0130493 0.0130637 0.0130782 0.0130927 0.0131072 0.0131217 0.0131362 0.0131507 0.0131652 0.0131797 0.0131942 0.0132087 0.0132231 0.0132376 0.0132521 0.0132666 0.0132811 0.0132956 0.0133101 0.0133246 0.0133391 0.0133536 0.013368 0.0133825 0.013397 0.0134115 0.013426 0.0134405 0.013455 0.0134695 0.013484 0.0134985 0.013513 0.0135274 0.0135419 0.0135564 0.0135709 0.0135854 0.0135999 0.0136144 0.0136289 0.0136434 0.0136579 0.0136724 0.0136868 0.0137013 0.0137158 0.0137303 0.0137448 0.0137593 0.0137738 0.0137883 0.0138028 0.0138173 0.0138317 0.0138462 +-0.00341775 -0.00300881 -0.00224314 -0.00114893 0.00014258 0.00154097 0.00299571 0.00447559 0.00595667 0.00741455 0.00881612 0.0101048 0.0111711 0.011841 0.0120865 0.0121467 0.0121683 0.0121838 0.0121985 0.012213 0.0122275 0.012242 0.0122565 0.012271 0.0122855 0.0123 0.0123145 0.012329 0.0123435 0.012358 0.0123725 0.012387 0.0124015 0.012416 0.0124305 0.012445 0.0124595 0.0124739 0.0124884 0.0125029 0.0125174 0.0125319 0.0125464 0.0125609 0.0125754 0.0125899 0.0126044 0.0126189 0.0126334 0.0126479 0.0126624 0.0126769 0.0126914 0.0127059 0.0127204 0.0127349 0.0127494 0.0127639 0.0127784 0.0127929 0.0128074 0.0128218 0.0128363 0.0128508 0.0128653 0.0128798 0.0128943 0.0129088 0.0129233 0.0129378 0.0129523 0.0129668 0.0129813 0.0129958 0.0130103 0.0130248 0.0130393 0.0130538 0.0130683 0.0130828 0.0130973 0.0131118 0.0131263 0.0131408 0.0131553 0.0131698 0.0131842 0.0131987 0.0132132 0.0132277 0.0132422 0.0132567 0.0132712 0.0132857 0.0133002 0.0133147 0.0133292 0.0133437 0.0133582 0.0133727 0.0133872 0.0134017 0.0134162 0.0134307 0.0134452 0.0134597 0.0134742 0.0134887 0.0135032 0.0135177 0.0135321 0.0135466 0.0135611 0.0135756 0.0135901 0.0136046 0.0136191 0.0136336 0.0136481 0.0136626 0.0136771 0.0136916 0.0137061 0.0137206 0.0137351 0.0137496 0.0137641 0.0137786 0.0137931 0.0138076 0.0138221 0.0138366 0.0138511 +-0.00341904 -0.00300972 -0.00224357 -0.00114904 0.000142669 0.0015412 0.00299605 0.00447603 0.00595723 0.00741527 0.00881708 0.0101062 0.0111732 0.0118442 0.0120904 0.0121508 0.0121725 0.0121881 0.0122027 0.0122172 0.0122317 0.0122462 0.0122608 0.0122753 0.0122898 0.0123043 0.0123188 0.0123333 0.0123478 0.0123623 0.0123768 0.0123913 0.0124058 0.0124203 0.0124348 0.0124493 0.0124638 0.0124783 0.0124928 0.0125073 0.0125218 0.0125363 0.0125508 0.0125653 0.0125798 0.0125943 0.0126088 0.0126233 0.0126378 0.0126523 0.0126668 0.0126813 0.0126958 0.0127103 0.0127248 0.0127393 0.0127538 0.0127683 0.0127828 0.0127973 0.0128118 0.0128263 0.0128408 0.0128553 0.0128698 0.0128843 0.0128988 0.0129133 0.0129278 0.0129423 0.0129568 0.0129713 0.0129858 0.0130003 0.0130148 0.0130293 0.0130438 0.0130583 0.0130728 0.0130873 0.0131018 0.0131163 0.0131308 0.0131453 0.0131598 0.0131743 0.0131888 0.0132033 0.0132178 0.0132323 0.0132468 0.0132613 0.0132758 0.0132903 0.0133048 0.0133193 0.0133338 0.0133483 0.0133628 0.0133773 0.0133918 0.0134063 0.0134208 0.0134353 0.0134498 0.0134643 0.0134788 0.0134933 0.0135078 0.0135223 0.0135369 0.0135514 0.0135659 0.0135804 0.0135949 0.0136094 0.0136239 0.0136384 0.0136529 0.0136674 0.0136819 0.0136964 0.0137109 0.0137254 0.0137399 0.0137544 0.0137689 0.0137834 0.0137979 0.0138124 0.0138269 0.0138414 0.0138559 +-0.00342034 -0.00301063 -0.00224401 -0.00114915 0.000142758 0.00154142 0.00299638 0.00447648 0.0059578 0.007416 0.00881805 0.0101076 0.0111753 0.0118474 0.0120944 0.012155 0.0121767 0.0121923 0.0122069 0.0122215 0.012236 0.0122505 0.012265 0.0122795 0.012294 0.0123085 0.012323 0.0123375 0.012352 0.0123665 0.012381 0.0123955 0.0124101 0.0124246 0.0124391 0.0124536 0.0124681 0.0124826 0.0124971 0.0125116 0.0125261 0.0125406 0.0125551 0.0125696 0.0125841 0.0125986 0.0126131 0.0126277 0.0126422 0.0126567 0.0126712 0.0126857 0.0127002 0.0127147 0.0127292 0.0127437 0.0127582 0.0127727 0.0127872 0.0128017 0.0128162 0.0128307 0.0128452 0.0128598 0.0128743 0.0128888 0.0129033 0.0129178 0.0129323 0.0129468 0.0129613 0.0129758 0.0129903 0.0130048 0.0130193 0.0130338 0.0130483 0.0130628 0.0130773 0.0130919 0.0131064 0.0131209 0.0131354 0.0131499 0.0131644 0.0131789 0.0131934 0.0132079 0.0132224 0.0132369 0.0132514 0.0132659 0.0132804 0.0132949 0.0133094 0.013324 0.0133385 0.013353 0.0133675 0.013382 0.0133965 0.013411 0.0134255 0.01344 0.0134545 0.013469 0.0134835 0.013498 0.0135125 0.013527 0.0135416 0.0135561 0.0135706 0.0135851 0.0135996 0.0136141 0.0136286 0.0136431 0.0136576 0.0136721 0.0136866 0.0137011 0.0137156 0.0137301 0.0137446 0.0137591 0.0137737 0.0137882 0.0138027 0.0138172 0.0138317 0.0138462 0.0138607 +-0.00342163 -0.00301153 -0.00224445 -0.00114926 0.000142847 0.00154165 0.00299672 0.00447692 0.00595837 0.00741673 0.008819 0.0101089 0.0111774 0.0118506 0.0120984 0.0121592 0.0121809 0.0121965 0.0122112 0.0122257 0.0122402 0.0122547 0.0122692 0.0122837 0.0122983 0.0123128 0.0123273 0.0123418 0.0123563 0.0123708 0.0123853 0.0123998 0.0124143 0.0124289 0.0124434 0.0124579 0.0124724 0.0124869 0.0125014 0.0125159 0.0125304 0.012545 0.0125595 0.012574 0.0125885 0.012603 0.0126175 0.012632 0.0126465 0.012661 0.0126756 0.0126901 0.0127046 0.0127191 0.0127336 0.0127481 0.0127626 0.0127771 0.0127916 0.0128062 0.0128207 0.0128352 0.0128497 0.0128642 0.0128787 0.0128932 0.0129077 0.0129223 0.0129368 0.0129513 0.0129658 0.0129803 0.0129948 0.0130093 0.0130238 0.0130383 0.0130529 0.0130674 0.0130819 0.0130964 0.0131109 0.0131254 0.0131399 0.0131544 0.0131689 0.0131835 0.013198 0.0132125 0.013227 0.0132415 0.013256 0.0132705 0.013285 0.0132996 0.0133141 0.0133286 0.0133431 0.0133576 0.0133721 0.0133866 0.0134011 0.0134156 0.0134302 0.0134447 0.0134592 0.0134737 0.0134882 0.0135027 0.0135172 0.0135317 0.0135463 0.0135608 0.0135753 0.0135898 0.0136043 0.0136188 0.0136333 0.0136478 0.0136623 0.0136769 0.0136914 0.0137059 0.0137204 0.0137349 0.0137494 0.0137639 0.0137784 0.0137929 0.0138075 0.013822 0.0138365 0.013851 0.0138655 +-0.00342292 -0.00301244 -0.00224488 -0.00114937 0.000142936 0.00154187 0.00299706 0.00447737 0.00595893 0.00741745 0.00881997 0.0101103 0.0111795 0.0118538 0.0121023 0.0121633 0.0121851 0.0122007 0.0122154 0.0122299 0.0122444 0.012259 0.0122735 0.012288 0.0123025 0.012317 0.0123315 0.0123461 0.0123606 0.0123751 0.0123896 0.0124041 0.0124186 0.0124332 0.0124477 0.0124622 0.0124767 0.0124912 0.0125057 0.0125203 0.0125348 0.0125493 0.0125638 0.0125783 0.0125928 0.0126074 0.0126219 0.0126364 0.0126509 0.0126654 0.0126799 0.0126945 0.012709 0.0127235 0.012738 0.0127525 0.012767 0.0127816 0.0127961 0.0128106 0.0128251 0.0128396 0.0128541 0.0128687 0.0128832 0.0128977 0.0129122 0.0129267 0.0129412 0.0129558 0.0129703 0.0129848 0.0129993 0.0130138 0.0130283 0.0130429 0.0130574 0.0130719 0.0130864 0.0131009 0.0131154 0.01313 0.0131445 0.013159 0.0131735 0.013188 0.0132025 0.0132171 0.0132316 0.0132461 0.0132606 0.0132751 0.0132896 0.0133042 0.0133187 0.0133332 0.0133477 0.0133622 0.0133767 0.0133913 0.0134058 0.0134203 0.0134348 0.0134493 0.0134638 0.0134784 0.0134929 0.0135074 0.0135219 0.0135364 0.0135509 0.0135655 0.01358 0.0135945 0.013609 0.0136235 0.0136381 0.0136526 0.0136671 0.0136816 0.0136961 0.0137106 0.0137252 0.0137397 0.0137542 0.0137687 0.0137832 0.0137977 0.0138123 0.0138268 0.0138413 0.0138558 0.0138703 +-0.00342421 -0.00301335 -0.00224532 -0.00114948 0.000143025 0.0015421 0.00299739 0.00447781 0.0059595 0.00741817 0.00882093 0.0101116 0.0111816 0.011857 0.0121063 0.0121675 0.0121893 0.0122049 0.0122196 0.0122341 0.0122487 0.0122632 0.0122777 0.0122922 0.0123068 0.0123213 0.0123358 0.0123503 0.0123648 0.0123794 0.0123939 0.0124084 0.0124229 0.0124375 0.012452 0.0124665 0.012481 0.0124955 0.0125101 0.0125246 0.0125391 0.0125536 0.0125681 0.0125827 0.0125972 0.0126117 0.0126262 0.0126408 0.0126553 0.0126698 0.0126843 0.0126988 0.0127134 0.0127279 0.0127424 0.0127569 0.0127715 0.012786 0.0128005 0.012815 0.0128295 0.0128441 0.0128586 0.0128731 0.0128876 0.0129022 0.0129167 0.0129312 0.0129457 0.0129602 0.0129748 0.0129893 0.0130038 0.0130183 0.0130329 0.0130474 0.0130619 0.0130764 0.0130909 0.0131055 0.01312 0.0131345 0.013149 0.0131636 0.0131781 0.0131926 0.0132071 0.0132216 0.0132362 0.0132507 0.0132652 0.0132797 0.0132943 0.0133088 0.0133233 0.0133378 0.0133523 0.0133669 0.0133814 0.0133959 0.0134104 0.0134249 0.0134395 0.013454 0.0134685 0.013483 0.0134976 0.0135121 0.0135266 0.0135411 0.0135556 0.0135702 0.0135847 0.0135992 0.0136137 0.0136283 0.0136428 0.0136573 0.0136718 0.0136863 0.0137009 0.0137154 0.0137299 0.0137444 0.013759 0.0137735 0.013788 0.0138025 0.013817 0.0138316 0.0138461 0.0138606 0.0138751 +-0.0034255 -0.00301425 -0.00224575 -0.00114959 0.000143114 0.00154233 0.00299773 0.00447825 0.00596006 0.0074189 0.00882189 0.010113 0.0111837 0.0118602 0.0121103 0.0121717 0.0121935 0.0122091 0.0122238 0.0122384 0.0122529 0.0122674 0.0122819 0.0122965 0.012311 0.0123255 0.0123401 0.0123546 0.0123691 0.0123836 0.0123982 0.0124127 0.0124272 0.0124417 0.0124563 0.0124708 0.0124853 0.0124999 0.0125144 0.0125289 0.0125434 0.012558 0.0125725 0.012587 0.0126015 0.0126161 0.0126306 0.0126451 0.0126597 0.0126742 0.0126887 0.0127032 0.0127178 0.0127323 0.0127468 0.0127613 0.0127759 0.0127904 0.0128049 0.0128195 0.012834 0.0128485 0.012863 0.0128776 0.0128921 0.0129066 0.0129211 0.0129357 0.0129502 0.0129647 0.0129793 0.0129938 0.0130083 0.0130228 0.0130374 0.0130519 0.0130664 0.0130809 0.0130955 0.01311 0.0131245 0.0131391 0.0131536 0.0131681 0.0131826 0.0131972 0.0132117 0.0132262 0.0132407 0.0132553 0.0132698 0.0132843 0.0132989 0.0133134 0.0133279 0.0133424 0.013357 0.0133715 0.013386 0.0134005 0.0134151 0.0134296 0.0134441 0.0134587 0.0134732 0.0134877 0.0135022 0.0135168 0.0135313 0.0135458 0.0135603 0.0135749 0.0135894 0.0136039 0.0136185 0.013633 0.0136475 0.013662 0.0136766 0.0136911 0.0137056 0.0137201 0.0137347 0.0137492 0.0137637 0.0137783 0.0137928 0.0138073 0.0138218 0.0138364 0.0138509 0.0138654 0.0138799 +-0.00342679 -0.00301515 -0.00224619 -0.0011497 0.000143203 0.00154255 0.00299807 0.0044787 0.00596063 0.00741962 0.00882285 0.0101144 0.0111858 0.0118634 0.0121142 0.0121758 0.0121977 0.0122133 0.012228 0.0122426 0.0122571 0.0122716 0.0122862 0.0123007 0.0123152 0.0123298 0.0123443 0.0123588 0.0123734 0.0123879 0.0124024 0.012417 0.0124315 0.012446 0.0124606 0.0124751 0.0124896 0.0125042 0.0125187 0.0125332 0.0125478 0.0125623 0.0125768 0.0125914 0.0126059 0.0126204 0.012635 0.0126495 0.012664 0.0126786 0.0126931 0.0127076 0.0127222 0.0127367 0.0127512 0.0127658 0.0127803 0.0127948 0.0128094 0.0128239 0.0128384 0.0128529 0.0128675 0.012882 0.0128965 0.0129111 0.0129256 0.0129401 0.0129547 0.0129692 0.0129837 0.0129983 0.0130128 0.0130273 0.0130419 0.0130564 0.0130709 0.0130855 0.0131 0.0131145 0.0131291 0.0131436 0.0131581 0.0131727 0.0131872 0.0132017 0.0132163 0.0132308 0.0132453 0.0132599 0.0132744 0.0132889 0.0133035 0.013318 0.0133325 0.0133471 0.0133616 0.0133761 0.0133906 0.0134052 0.0134197 0.0134342 0.0134488 0.0134633 0.0134778 0.0134924 0.0135069 0.0135214 0.013536 0.0135505 0.013565 0.0135796 0.0135941 0.0136086 0.0136232 0.0136377 0.0136522 0.0136668 0.0136813 0.0136958 0.0137104 0.0137249 0.0137394 0.013754 0.0137685 0.013783 0.0137976 0.0138121 0.0138266 0.0138412 0.0138557 0.0138702 0.0138848 +-0.00342808 -0.00301606 -0.00224662 -0.00114981 0.000143292 0.00154278 0.0029984 0.00447914 0.00596119 0.00742034 0.0088238 0.0101157 0.0111879 0.0118666 0.0121182 0.01218 0.0122019 0.0122175 0.0122322 0.0122468 0.0122613 0.0122759 0.0122904 0.012305 0.0123195 0.012334 0.0123486 0.0123631 0.0123776 0.0123922 0.0124067 0.0124213 0.0124358 0.0124503 0.0124649 0.0124794 0.0124939 0.0125085 0.012523 0.0125376 0.0125521 0.0125666 0.0125812 0.0125957 0.0126102 0.0126248 0.0126393 0.0126539 0.0126684 0.0126829 0.0126975 0.012712 0.0127265 0.0127411 0.0127556 0.0127702 0.0127847 0.0127992 0.0128138 0.0128283 0.0128428 0.0128574 0.0128719 0.0128865 0.012901 0.0129155 0.0129301 0.0129446 0.0129591 0.0129737 0.0129882 0.0130028 0.0130173 0.0130318 0.0130464 0.0130609 0.0130755 0.01309 0.0131045 0.0131191 0.0131336 0.0131481 0.0131627 0.0131772 0.0131918 0.0132063 0.0132208 0.0132354 0.0132499 0.0132644 0.013279 0.0132935 0.0133081 0.0133226 0.0133371 0.0133517 0.0133662 0.0133807 0.0133953 0.0134098 0.0134244 0.0134389 0.0134534 0.013468 0.0134825 0.013497 0.0135116 0.0135261 0.0135407 0.0135552 0.0135697 0.0135843 0.0135988 0.0136133 0.0136279 0.0136424 0.013657 0.0136715 0.013686 0.0137006 0.0137151 0.0137296 0.0137442 0.0137587 0.0137733 0.0137878 0.0138023 0.0138169 0.0138314 0.0138459 0.0138605 0.013875 0.0138896 +-0.00342937 -0.00301696 -0.00224705 -0.00114992 0.000143381 0.001543 0.00299874 0.00447958 0.00596175 0.00742106 0.00882476 0.0101171 0.01119 0.0118698 0.0121221 0.0121841 0.0122061 0.0122217 0.0122365 0.012251 0.0122656 0.0122801 0.0122946 0.0123092 0.0123237 0.0123383 0.0123528 0.0123674 0.0123819 0.0123965 0.012411 0.0124255 0.0124401 0.0124546 0.0124692 0.0124837 0.0124983 0.0125128 0.0125273 0.0125419 0.0125564 0.012571 0.0125855 0.0126001 0.0126146 0.0126291 0.0126437 0.0126582 0.0126728 0.0126873 0.0127019 0.0127164 0.0127309 0.0127455 0.01276 0.0127746 0.0127891 0.0128037 0.0128182 0.0128327 0.0128473 0.0128618 0.0128764 0.0128909 0.0129055 0.01292 0.0129345 0.0129491 0.0129636 0.0129782 0.0129927 0.0130073 0.0130218 0.0130363 0.0130509 0.0130654 0.01308 0.0130945 0.0131091 0.0131236 0.0131381 0.0131527 0.0131672 0.0131818 0.0131963 0.0132109 0.0132254 0.0132399 0.0132545 0.013269 0.0132836 0.0132981 0.0133127 0.0133272 0.0133417 0.0133563 0.0133708 0.0133854 0.0133999 0.0134145 0.013429 0.0134435 0.0134581 0.0134726 0.0134872 0.0135017 0.0135163 0.0135308 0.0135453 0.0135599 0.0135744 0.013589 0.0136035 0.0136181 0.0136326 0.0136471 0.0136617 0.0136762 0.0136908 0.0137053 0.0137199 0.0137344 0.0137489 0.0137635 0.013778 0.0137926 0.0138071 0.0138217 0.0138362 0.0138507 0.0138653 0.0138798 0.0138944 +-0.00343066 -0.00301786 -0.00224749 -0.00115003 0.000143471 0.00154323 0.00299907 0.00448002 0.00596232 0.00742178 0.00882572 0.0101184 0.0111921 0.011873 0.0121261 0.0121883 0.0122103 0.012226 0.0122407 0.0122552 0.0122698 0.0122843 0.0122989 0.0123134 0.012328 0.0123425 0.0123571 0.0123716 0.0123862 0.0124007 0.0124153 0.0124298 0.0124444 0.0124589 0.0124735 0.012488 0.0125026 0.0125171 0.0125317 0.0125462 0.0125607 0.0125753 0.0125898 0.0126044 0.0126189 0.0126335 0.012648 0.0126626 0.0126771 0.0126917 0.0127062 0.0127208 0.0127353 0.0127499 0.0127644 0.012779 0.0127935 0.0128081 0.0128226 0.0128372 0.0128517 0.0128663 0.0128808 0.0128954 0.0129099 0.0129245 0.012939 0.0129535 0.0129681 0.0129826 0.0129972 0.0130117 0.0130263 0.0130408 0.0130554 0.0130699 0.0130845 0.013099 0.0131136 0.0131281 0.0131427 0.0131572 0.0131718 0.0131863 0.0132009 0.0132154 0.01323 0.0132445 0.0132591 0.0132736 0.0132882 0.0133027 0.0133173 0.0133318 0.0133463 0.0133609 0.0133754 0.01339 0.0134045 0.0134191 0.0134336 0.0134482 0.0134627 0.0134773 0.0134918 0.0135064 0.0135209 0.0135355 0.01355 0.0135646 0.0135791 0.0135937 0.0136082 0.0136228 0.0136373 0.0136519 0.0136664 0.013681 0.0136955 0.01371 0.0137246 0.0137391 0.0137537 0.0137682 0.0137828 0.0137973 0.0138119 0.0138264 0.013841 0.0138555 0.0138701 0.0138846 0.0138992 +-0.00343195 -0.00301876 -0.00224792 -0.00115014 0.00014356 0.00154345 0.00299941 0.00448047 0.00596288 0.0074225 0.00882667 0.0101198 0.0111941 0.0118762 0.01213 0.0121925 0.0122145 0.0122302 0.0122449 0.0122595 0.012274 0.0122886 0.0123031 0.0123177 0.0123322 0.0123468 0.0123613 0.0123759 0.0123904 0.012405 0.0124195 0.0124341 0.0124486 0.0124632 0.0124778 0.0124923 0.0125069 0.0125214 0.012536 0.0125505 0.0125651 0.0125796 0.0125942 0.0126087 0.0126233 0.0126378 0.0126524 0.0126669 0.0126815 0.0126961 0.0127106 0.0127252 0.0127397 0.0127543 0.0127688 0.0127834 0.0127979 0.0128125 0.012827 0.0128416 0.0128561 0.0128707 0.0128852 0.0128998 0.0129144 0.0129289 0.0129435 0.012958 0.0129726 0.0129871 0.0130017 0.0130162 0.0130308 0.0130453 0.0130599 0.0130744 0.013089 0.0131035 0.0131181 0.0131327 0.0131472 0.0131618 0.0131763 0.0131909 0.0132054 0.01322 0.0132345 0.0132491 0.0132636 0.0132782 0.0132927 0.0133073 0.0133218 0.0133364 0.013351 0.0133655 0.0133801 0.0133946 0.0134092 0.0134237 0.0134383 0.0134528 0.0134674 0.0134819 0.0134965 0.013511 0.0135256 0.0135401 0.0135547 0.0135693 0.0135838 0.0135984 0.0136129 0.0136275 0.013642 0.0136566 0.0136711 0.0136857 0.0137002 0.0137148 0.0137293 0.0137439 0.0137584 0.013773 0.0137876 0.0138021 0.0138167 0.0138312 0.0138458 0.0138603 0.0138749 0.0138894 0.013904 +-0.00343324 -0.00301966 -0.00224835 -0.00115024 0.000143649 0.00154368 0.00299974 0.00448091 0.00596344 0.00742322 0.00882763 0.0101211 0.0111962 0.0118793 0.012134 0.0121966 0.0122187 0.0122344 0.0122491 0.0122637 0.0122782 0.0122928 0.0123073 0.0123219 0.0123365 0.012351 0.0123656 0.0123801 0.0123947 0.0124093 0.0124238 0.0124384 0.0124529 0.0124675 0.012482 0.0124966 0.0125112 0.0125257 0.0125403 0.0125548 0.0125694 0.012584 0.0125985 0.0126131 0.0126276 0.0126422 0.0126567 0.0126713 0.0126859 0.0127004 0.012715 0.0127295 0.0127441 0.0127587 0.0127732 0.0127878 0.0128023 0.0128169 0.0128315 0.012846 0.0128606 0.0128751 0.0128897 0.0129042 0.0129188 0.0129334 0.0129479 0.0129625 0.012977 0.0129916 0.0130062 0.0130207 0.0130353 0.0130498 0.0130644 0.0130789 0.0130935 0.0131081 0.0131226 0.0131372 0.0131517 0.0131663 0.0131809 0.0131954 0.01321 0.0132245 0.0132391 0.0132536 0.0132682 0.0132828 0.0132973 0.0133119 0.0133264 0.013341 0.0133556 0.0133701 0.0133847 0.0133992 0.0134138 0.0134284 0.0134429 0.0134575 0.013472 0.0134866 0.0135011 0.0135157 0.0135303 0.0135448 0.0135594 0.0135739 0.0135885 0.0136031 0.0136176 0.0136322 0.0136467 0.0136613 0.0136758 0.0136904 0.013705 0.0137195 0.0137341 0.0137486 0.0137632 0.0137778 0.0137923 0.0138069 0.0138214 0.013836 0.0138505 0.0138651 0.0138797 0.0138942 0.0139088 +-0.00343453 -0.00302056 -0.00224878 -0.00115035 0.000143738 0.0015439 0.00300008 0.00448135 0.005964 0.00742394 0.00882858 0.0101225 0.0111983 0.0118825 0.0121379 0.0122008 0.0122229 0.0122386 0.0122533 0.0122679 0.0122824 0.012297 0.0123116 0.0123261 0.0123407 0.0123553 0.0123698 0.0123844 0.012399 0.0124135 0.0124281 0.0124426 0.0124572 0.0124718 0.0124863 0.0125009 0.0125155 0.01253 0.0125446 0.0125592 0.0125737 0.0125883 0.0126028 0.0126174 0.012632 0.0126465 0.0126611 0.0126757 0.0126902 0.0127048 0.0127194 0.0127339 0.0127485 0.0127631 0.0127776 0.0127922 0.0128067 0.0128213 0.0128359 0.0128504 0.012865 0.0128796 0.0128941 0.0129087 0.0129233 0.0129378 0.0129524 0.0129669 0.0129815 0.0129961 0.0130106 0.0130252 0.0130398 0.0130543 0.0130689 0.0130835 0.013098 0.0131126 0.0131271 0.0131417 0.0131563 0.0131708 0.0131854 0.0132 0.0132145 0.0132291 0.0132437 0.0132582 0.0132728 0.0132873 0.0133019 0.0133165 0.013331 0.0133456 0.0133602 0.0133747 0.0133893 0.0134039 0.0134184 0.013433 0.0134475 0.0134621 0.0134767 0.0134912 0.0135058 0.0135204 0.0135349 0.0135495 0.0135641 0.0135786 0.0135932 0.0136077 0.0136223 0.0136369 0.0136514 0.013666 0.0136806 0.0136951 0.0137097 0.0137243 0.0137388 0.0137534 0.0137679 0.0137825 0.0137971 0.0138116 0.0138262 0.0138408 0.0138553 0.0138699 0.0138845 0.013899 0.0139136 +-0.00343581 -0.00302146 -0.00224922 -0.00115046 0.000143827 0.00154413 0.00300041 0.00448179 0.00596457 0.00742466 0.00882953 0.0101238 0.0112004 0.0118857 0.0121419 0.0122049 0.0122271 0.0122428 0.0122575 0.0122721 0.0122867 0.0123012 0.0123158 0.0123304 0.0123449 0.0123595 0.0123741 0.0123886 0.0124032 0.0124178 0.0124324 0.0124469 0.0124615 0.0124761 0.0124906 0.0125052 0.0125198 0.0125343 0.0125489 0.0125635 0.012578 0.0125926 0.0126072 0.0126218 0.0126363 0.0126509 0.0126655 0.01268 0.0126946 0.0127092 0.0127237 0.0127383 0.0127529 0.0127674 0.012782 0.0127966 0.0128111 0.0128257 0.0128403 0.0128549 0.0128694 0.012884 0.0128986 0.0129131 0.0129277 0.0129423 0.0129568 0.0129714 0.012986 0.0130005 0.0130151 0.0130297 0.0130443 0.0130588 0.0130734 0.013088 0.0131025 0.0131171 0.0131317 0.0131462 0.0131608 0.0131754 0.0131899 0.0132045 0.0132191 0.0132336 0.0132482 0.0132628 0.0132774 0.0132919 0.0133065 0.0133211 0.0133356 0.0133502 0.0133648 0.0133793 0.0133939 0.0134085 0.013423 0.0134376 0.0134522 0.0134668 0.0134813 0.0134959 0.0135105 0.013525 0.0135396 0.0135542 0.0135687 0.0135833 0.0135979 0.0136124 0.013627 0.0136416 0.0136561 0.0136707 0.0136853 0.0136999 0.0137144 0.013729 0.0137436 0.0137581 0.0137727 0.0137873 0.0138018 0.0138164 0.013831 0.0138455 0.0138601 0.0138747 0.0138893 0.0139038 0.0139184 +-0.0034371 -0.00302236 -0.00224965 -0.00115057 0.000143916 0.00154435 0.00300075 0.00448223 0.00596513 0.00742538 0.00883049 0.0101252 0.0112024 0.0118889 0.0121458 0.0122091 0.0122313 0.012247 0.0122617 0.0122763 0.0122909 0.0123055 0.01232 0.0123346 0.0123492 0.0123638 0.0123783 0.0123929 0.0124075 0.012422 0.0124366 0.0124512 0.0124658 0.0124803 0.0124949 0.0125095 0.0125241 0.0125386 0.0125532 0.0125678 0.0125824 0.0125969 0.0126115 0.0126261 0.0126407 0.0126552 0.0126698 0.0126844 0.012699 0.0127135 0.0127281 0.0127427 0.0127573 0.0127718 0.0127864 0.012801 0.0128156 0.0128301 0.0128447 0.0128593 0.0128738 0.0128884 0.012903 0.0129176 0.0129321 0.0129467 0.0129613 0.0129759 0.0129904 0.013005 0.0130196 0.0130342 0.0130487 0.0130633 0.0130779 0.0130925 0.013107 0.0131216 0.0131362 0.0131508 0.0131653 0.0131799 0.0131945 0.0132091 0.0132236 0.0132382 0.0132528 0.0132674 0.0132819 0.0132965 0.0133111 0.0133256 0.0133402 0.0133548 0.0133694 0.0133839 0.0133985 0.0134131 0.0134277 0.0134422 0.0134568 0.0134714 0.013486 0.0135005 0.0135151 0.0135297 0.0135443 0.0135588 0.0135734 0.013588 0.0136026 0.0136171 0.0136317 0.0136463 0.0136609 0.0136754 0.01369 0.0137046 0.0137192 0.0137337 0.0137483 0.0137629 0.0137774 0.013792 0.0138066 0.0138212 0.0138357 0.0138503 0.0138649 0.0138795 0.013894 0.0139086 0.0139232 +-0.00343839 -0.00302326 -0.00225008 -0.00115068 0.000144005 0.00154458 0.00300108 0.00448267 0.00596569 0.0074261 0.00883144 0.0101265 0.0112045 0.011892 0.0121498 0.0122132 0.0122354 0.0122512 0.0122659 0.0122805 0.0122951 0.0123097 0.0123243 0.0123388 0.0123534 0.012368 0.0123826 0.0123972 0.0124117 0.0124263 0.0124409 0.0124555 0.0124701 0.0124846 0.0124992 0.0125138 0.0125284 0.0125429 0.0125575 0.0125721 0.0125867 0.0126013 0.0126158 0.0126304 0.012645 0.0126596 0.0126742 0.0126887 0.0127033 0.0127179 0.0127325 0.0127471 0.0127616 0.0127762 0.0127908 0.0128054 0.01282 0.0128345 0.0128491 0.0128637 0.0128783 0.0128929 0.0129074 0.012922 0.0129366 0.0129512 0.0129657 0.0129803 0.0129949 0.0130095 0.0130241 0.0130386 0.0130532 0.0130678 0.0130824 0.013097 0.0131115 0.0131261 0.0131407 0.0131553 0.0131699 0.0131844 0.013199 0.0132136 0.0132282 0.0132428 0.0132573 0.0132719 0.0132865 0.0133011 0.0133157 0.0133302 0.0133448 0.0133594 0.013374 0.0133886 0.0134031 0.0134177 0.0134323 0.0134469 0.0134614 0.013476 0.0134906 0.0135052 0.0135198 0.0135343 0.0135489 0.0135635 0.0135781 0.0135927 0.0136072 0.0136218 0.0136364 0.013651 0.0136656 0.0136801 0.0136947 0.0137093 0.0137239 0.0137385 0.013753 0.0137676 0.0137822 0.0137968 0.0138114 0.0138259 0.0138405 0.0138551 0.0138697 0.0138842 0.0138988 0.0139134 0.013928 +-0.00343967 -0.00302416 -0.00225051 -0.00115079 0.000144095 0.0015448 0.00300142 0.00448311 0.00596625 0.00742682 0.00883239 0.0101279 0.0112066 0.0118952 0.0121537 0.0122174 0.0122396 0.0122554 0.0122701 0.0122847 0.0122993 0.0123139 0.0123285 0.0123431 0.0123577 0.0123722 0.0123868 0.0124014 0.012416 0.0124306 0.0124452 0.0124597 0.0124743 0.0124889 0.0125035 0.0125181 0.0125327 0.0125473 0.0125618 0.0125764 0.012591 0.0126056 0.0126202 0.0126348 0.0126493 0.0126639 0.0126785 0.0126931 0.0127077 0.0127223 0.0127369 0.0127514 0.012766 0.0127806 0.0127952 0.0128098 0.0128244 0.0128389 0.0128535 0.0128681 0.0128827 0.0128973 0.0129119 0.0129264 0.012941 0.0129556 0.0129702 0.0129848 0.0129994 0.013014 0.0130285 0.0130431 0.0130577 0.0130723 0.0130869 0.0131015 0.013116 0.0131306 0.0131452 0.0131598 0.0131744 0.013189 0.0132036 0.0132181 0.0132327 0.0132473 0.0132619 0.0132765 0.0132911 0.0133056 0.0133202 0.0133348 0.0133494 0.013364 0.0133786 0.0133932 0.0134077 0.0134223 0.0134369 0.0134515 0.0134661 0.0134807 0.0134952 0.0135098 0.0135244 0.013539 0.0135536 0.0135682 0.0135828 0.0135973 0.0136119 0.0136265 0.0136411 0.0136557 0.0136703 0.0136848 0.0136994 0.013714 0.0137286 0.0137432 0.0137578 0.0137724 0.0137869 0.0138015 0.0138161 0.0138307 0.0138453 0.0138599 0.0138744 0.013889 0.0139036 0.0139182 0.0139328 +-0.00344096 -0.00302505 -0.00225094 -0.00115089 0.000144184 0.00154502 0.00300175 0.00448355 0.00596681 0.00742753 0.00883334 0.0101292 0.0112086 0.0118984 0.0121576 0.0122215 0.0122438 0.0122596 0.0122743 0.0122889 0.0123035 0.0123181 0.0123327 0.0123473 0.0123619 0.0123765 0.0123911 0.0124057 0.0124202 0.0124348 0.0124494 0.012464 0.0124786 0.0124932 0.0125078 0.0125224 0.012537 0.0125516 0.0125661 0.0125807 0.0125953 0.0126099 0.0126245 0.0126391 0.0126537 0.0126683 0.0126829 0.0126975 0.012712 0.0127266 0.0127412 0.0127558 0.0127704 0.012785 0.0127996 0.0128142 0.0128288 0.0128433 0.0128579 0.0128725 0.0128871 0.0129017 0.0129163 0.0129309 0.0129455 0.0129601 0.0129747 0.0129892 0.0130038 0.0130184 0.013033 0.0130476 0.0130622 0.0130768 0.0130914 0.013106 0.0131206 0.0131351 0.0131497 0.0131643 0.0131789 0.0131935 0.0132081 0.0132227 0.0132373 0.0132519 0.0132665 0.013281 0.0132956 0.0133102 0.0133248 0.0133394 0.013354 0.0133686 0.0133832 0.0133978 0.0134124 0.0134269 0.0134415 0.0134561 0.0134707 0.0134853 0.0134999 0.0135145 0.0135291 0.0135437 0.0135582 0.0135728 0.0135874 0.013602 0.0136166 0.0136312 0.0136458 0.0136604 0.013675 0.0136896 0.0137041 0.0137187 0.0137333 0.0137479 0.0137625 0.0137771 0.0137917 0.0138063 0.0138209 0.0138355 0.01385 0.0138646 0.0138792 0.0138938 0.0139084 0.013923 0.0139376 +-0.00344224 -0.00302595 -0.00225137 -0.001151 0.000144273 0.00154525 0.00300209 0.00448399 0.00596737 0.00742825 0.00883429 0.0101305 0.0112107 0.0119015 0.0121616 0.0122257 0.012248 0.0122638 0.0122785 0.0122931 0.0123077 0.0123223 0.0123369 0.0123515 0.0123661 0.0123807 0.0123953 0.0124099 0.0124245 0.0124391 0.0124537 0.0124683 0.0124829 0.0124975 0.0125121 0.0125267 0.0125413 0.0125559 0.0125704 0.012585 0.0125996 0.0126142 0.0126288 0.0126434 0.012658 0.0126726 0.0126872 0.0127018 0.0127164 0.012731 0.0127456 0.0127602 0.0127748 0.0127894 0.012804 0.0128186 0.0128332 0.0128478 0.0128623 0.0128769 0.0128915 0.0129061 0.0129207 0.0129353 0.0129499 0.0129645 0.0129791 0.0129937 0.0130083 0.0130229 0.0130375 0.0130521 0.0130667 0.0130813 0.0130959 0.0131105 0.0131251 0.0131397 0.0131542 0.0131688 0.0131834 0.013198 0.0132126 0.0132272 0.0132418 0.0132564 0.013271 0.0132856 0.0133002 0.0133148 0.0133294 0.013344 0.0133586 0.0133732 0.0133878 0.0134024 0.013417 0.0134316 0.0134461 0.0134607 0.0134753 0.0134899 0.0135045 0.0135191 0.0135337 0.0135483 0.0135629 0.0135775 0.0135921 0.0136067 0.0136213 0.0136359 0.0136505 0.0136651 0.0136797 0.0136943 0.0137089 0.0137235 0.013738 0.0137526 0.0137672 0.0137818 0.0137964 0.013811 0.0138256 0.0138402 0.0138548 0.0138694 0.013884 0.0138986 0.0139132 0.0139278 0.0139424 +-0.00344353 -0.00302685 -0.0022518 -0.00115111 0.000144362 0.00154547 0.00300242 0.00448443 0.00596793 0.00742896 0.00883523 0.0101319 0.0112127 0.0119047 0.0121655 0.0122298 0.0122522 0.012268 0.0122827 0.0122973 0.012312 0.0123266 0.0123412 0.0123558 0.0123704 0.012385 0.0123996 0.0124142 0.0124288 0.0124434 0.012458 0.0124726 0.0124872 0.0125018 0.0125164 0.012531 0.0125456 0.0125602 0.0125748 0.0125894 0.012604 0.0126186 0.0126332 0.0126478 0.0126624 0.012677 0.0126916 0.0127062 0.0127208 0.0127354 0.01275 0.0127646 0.0127792 0.0127938 0.0128084 0.012823 0.0128376 0.0128522 0.0128668 0.0128814 0.012896 0.0129106 0.0129252 0.0129398 0.0129544 0.012969 0.0129836 0.0129982 0.0130128 0.0130274 0.013042 0.0130566 0.0130712 0.0130858 0.0131004 0.013115 0.0131296 0.0131442 0.0131588 0.0131734 0.013188 0.0132026 0.0132172 0.0132318 0.0132464 0.013261 0.0132756 0.0132902 0.0133048 0.0133194 0.013334 0.0133486 0.0133632 0.0133778 0.0133924 0.013407 0.0134216 0.0134362 0.0134508 0.0134654 0.01348 0.0134946 0.0135092 0.0135238 0.0135384 0.013553 0.0135676 0.0135822 0.0135968 0.0136114 0.013626 0.0136406 0.0136552 0.0136698 0.0136844 0.013699 0.0137136 0.0137282 0.0137428 0.0137574 0.013772 0.0137866 0.0138012 0.0138158 0.0138304 0.013845 0.0138596 0.0138742 0.0138888 0.0139034 0.013918 0.0139326 0.0139472 +-0.00344481 -0.00302774 -0.00225222 -0.00115122 0.000144451 0.0015457 0.00300275 0.00448487 0.00596849 0.00742968 0.00883618 0.0101332 0.0112148 0.0119078 0.0121694 0.012234 0.0122564 0.0122721 0.0122869 0.0123016 0.0123162 0.0123308 0.0123454 0.01236 0.0123746 0.0123892 0.0124038 0.0124184 0.012433 0.0124476 0.0124622 0.0124768 0.0124914 0.012506 0.0125206 0.0125352 0.0125498 0.0125645 0.0125791 0.0125937 0.0126083 0.0126229 0.0126375 0.0126521 0.0126667 0.0126813 0.0126959 0.0127105 0.0127251 0.0127397 0.0127543 0.0127689 0.0127835 0.0127981 0.0128127 0.0128274 0.012842 0.0128566 0.0128712 0.0128858 0.0129004 0.012915 0.0129296 0.0129442 0.0129588 0.0129734 0.012988 0.0130026 0.0130172 0.0130318 0.0130464 0.013061 0.0130756 0.0130902 0.0131049 0.0131195 0.0131341 0.0131487 0.0131633 0.0131779 0.0131925 0.0132071 0.0132217 0.0132363 0.0132509 0.0132655 0.0132801 0.0132947 0.0133093 0.0133239 0.0133385 0.0133531 0.0133678 0.0133824 0.013397 0.0134116 0.0134262 0.0134408 0.0134554 0.01347 0.0134846 0.0134992 0.0135138 0.0135284 0.013543 0.0135576 0.0135722 0.0135868 0.0136014 0.013616 0.0136306 0.0136453 0.0136599 0.0136745 0.0136891 0.0137037 0.0137183 0.0137329 0.0137475 0.0137621 0.0137767 0.0137913 0.0138059 0.0138205 0.0138351 0.0138497 0.0138643 0.0138789 0.0138935 0.0139082 0.0139228 0.0139374 0.013952 +-0.00344609 -0.00302864 -0.00225265 -0.00115132 0.00014454 0.00154592 0.00300309 0.00448531 0.00596905 0.00743039 0.00883713 0.0101346 0.0112168 0.011911 0.0121734 0.0122381 0.0122606 0.0122763 0.0122911 0.0123058 0.0123204 0.012335 0.0123496 0.0123642 0.0123788 0.0123934 0.012408 0.0124226 0.0124373 0.0124519 0.0124665 0.0124811 0.0124957 0.0125103 0.0125249 0.0125395 0.0125541 0.0125688 0.0125834 0.012598 0.0126126 0.0126272 0.0126418 0.0126564 0.012671 0.0126856 0.0127002 0.0127149 0.0127295 0.0127441 0.0127587 0.0127733 0.0127879 0.0128025 0.0128171 0.0128317 0.0128464 0.012861 0.0128756 0.0128902 0.0129048 0.0129194 0.012934 0.0129486 0.0129632 0.0129778 0.0129925 0.0130071 0.0130217 0.0130363 0.0130509 0.0130655 0.0130801 0.0130947 0.0131093 0.013124 0.0131386 0.0131532 0.0131678 0.0131824 0.013197 0.0132116 0.0132262 0.0132408 0.0132555 0.0132701 0.0132847 0.0132993 0.0133139 0.0133285 0.0133431 0.0133577 0.0133723 0.0133869 0.0134016 0.0134162 0.0134308 0.0134454 0.01346 0.0134746 0.0134892 0.0135038 0.0135184 0.0135331 0.0135477 0.0135623 0.0135769 0.0135915 0.0136061 0.0136207 0.0136353 0.0136499 0.0136645 0.0136792 0.0136938 0.0137084 0.013723 0.0137376 0.0137522 0.0137668 0.0137814 0.013796 0.0138107 0.0138253 0.0138399 0.0138545 0.0138691 0.0138837 0.0138983 0.0139129 0.0139275 0.0139421 0.0139568 +-0.00344737 -0.00302953 -0.00225308 -0.00115143 0.000144629 0.00154614 0.00300342 0.00448575 0.0059696 0.00743111 0.00883807 0.0101359 0.0112189 0.0119141 0.0121773 0.0122422 0.0122647 0.0122805 0.0122953 0.01231 0.0123246 0.0123392 0.0123538 0.0123684 0.012383 0.0123977 0.0124123 0.0124269 0.0124415 0.0124561 0.0124707 0.0124854 0.0125 0.0125146 0.0125292 0.0125438 0.0125584 0.012573 0.0125877 0.0126023 0.0126169 0.0126315 0.0126461 0.0126607 0.0126754 0.01269 0.0127046 0.0127192 0.0127338 0.0127484 0.0127631 0.0127777 0.0127923 0.0128069 0.0128215 0.0128361 0.0128507 0.0128654 0.01288 0.0128946 0.0129092 0.0129238 0.0129384 0.0129531 0.0129677 0.0129823 0.0129969 0.0130115 0.0130261 0.0130408 0.0130554 0.01307 0.0130846 0.0130992 0.0131138 0.0131284 0.0131431 0.0131577 0.0131723 0.0131869 0.0132015 0.0132161 0.0132308 0.0132454 0.01326 0.0132746 0.0132892 0.0133038 0.0133185 0.0133331 0.0133477 0.0133623 0.0133769 0.0133915 0.0134061 0.0134208 0.0134354 0.01345 0.0134646 0.0134792 0.0134938 0.0135085 0.0135231 0.0135377 0.0135523 0.0135669 0.0135815 0.0135962 0.0136108 0.0136254 0.01364 0.0136546 0.0136692 0.0136838 0.0136985 0.0137131 0.0137277 0.0137423 0.0137569 0.0137715 0.0137862 0.0138008 0.0138154 0.01383 0.0138446 0.0138592 0.0138739 0.0138885 0.0139031 0.0139177 0.0139323 0.0139469 0.0139615 +-0.00344866 -0.00303042 -0.00225351 -0.00115154 0.000144719 0.00154637 0.00300375 0.00448619 0.00597016 0.00743182 0.00883901 0.0101372 0.0112209 0.0119172 0.0121812 0.0122464 0.0122689 0.0122847 0.0122995 0.0123142 0.0123288 0.0123434 0.012358 0.0123727 0.0123873 0.0124019 0.0124165 0.0124311 0.0124458 0.0124604 0.012475 0.0124896 0.0125042 0.0125189 0.0125335 0.0125481 0.0125627 0.0125773 0.012592 0.0126066 0.0126212 0.0126358 0.0126505 0.0126651 0.0126797 0.0126943 0.0127089 0.0127236 0.0127382 0.0127528 0.0127674 0.012782 0.0127967 0.0128113 0.0128259 0.0128405 0.0128551 0.0128698 0.0128844 0.012899 0.0129136 0.0129282 0.0129429 0.0129575 0.0129721 0.0129867 0.0130014 0.013016 0.0130306 0.0130452 0.0130598 0.0130745 0.0130891 0.0131037 0.0131183 0.0131329 0.0131476 0.0131622 0.0131768 0.0131914 0.013206 0.0132207 0.0132353 0.0132499 0.0132645 0.0132792 0.0132938 0.0133084 0.013323 0.0133376 0.0133523 0.0133669 0.0133815 0.0133961 0.0134107 0.0134254 0.01344 0.0134546 0.0134692 0.0134838 0.0134985 0.0135131 0.0135277 0.0135423 0.013557 0.0135716 0.0135862 0.0136008 0.0136154 0.0136301 0.0136447 0.0136593 0.0136739 0.0136885 0.0137032 0.0137178 0.0137324 0.013747 0.0137616 0.0137763 0.0137909 0.0138055 0.0138201 0.0138348 0.0138494 0.013864 0.0138786 0.0138932 0.0139079 0.0139225 0.0139371 0.0139517 0.0139663 +-0.00344994 -0.00303131 -0.00225393 -0.00115165 0.000144808 0.00154659 0.00300409 0.00448663 0.00597072 0.00743253 0.00883996 0.0101385 0.011223 0.0119204 0.0121851 0.0122505 0.0122731 0.0122889 0.0123037 0.0123184 0.012333 0.0123476 0.0123622 0.0123769 0.0123915 0.0124061 0.0124208 0.0124354 0.01245 0.0124646 0.0124793 0.0124939 0.0125085 0.0125231 0.0125378 0.0125524 0.012567 0.0125816 0.0125963 0.0126109 0.0126255 0.0126401 0.0126548 0.0126694 0.012684 0.0126986 0.0127133 0.0127279 0.0127425 0.0127572 0.0127718 0.0127864 0.012801 0.0128157 0.0128303 0.0128449 0.0128595 0.0128742 0.0128888 0.0129034 0.012918 0.0129327 0.0129473 0.0129619 0.0129765 0.0129912 0.0130058 0.0130204 0.0130351 0.0130497 0.0130643 0.0130789 0.0130936 0.0131082 0.0131228 0.0131374 0.0131521 0.0131667 0.0131813 0.0131959 0.0132106 0.0132252 0.0132398 0.0132544 0.0132691 0.0132837 0.0132983 0.0133129 0.0133276 0.0133422 0.0133568 0.0133715 0.0133861 0.0134007 0.0134153 0.01343 0.0134446 0.0134592 0.0134738 0.0134885 0.0135031 0.0135177 0.0135323 0.013547 0.0135616 0.0135762 0.0135908 0.0136055 0.0136201 0.0136347 0.0136494 0.013664 0.0136786 0.0136932 0.0137079 0.0137225 0.0137371 0.0137517 0.0137664 0.013781 0.0137956 0.0138102 0.0138249 0.0138395 0.0138541 0.0138687 0.0138834 0.013898 0.0139126 0.0139272 0.0139419 0.0139565 0.0139711 +-0.00345122 -0.00303221 -0.00225436 -0.00115175 0.000144897 0.00154682 0.00300442 0.00448707 0.00597128 0.00743325 0.0088409 0.0101399 0.011225 0.0119235 0.0121891 0.0122547 0.0122773 0.0122931 0.0123079 0.0123226 0.0123372 0.0123518 0.0123665 0.0123811 0.0123957 0.0124104 0.012425 0.0124396 0.0124543 0.0124689 0.0124835 0.0124981 0.0125128 0.0125274 0.012542 0.0125567 0.0125713 0.0125859 0.0126006 0.0126152 0.0126298 0.0126445 0.0126591 0.0126737 0.0126884 0.012703 0.0127176 0.0127322 0.0127469 0.0127615 0.0127761 0.0127908 0.0128054 0.01282 0.0128347 0.0128493 0.0128639 0.0128786 0.0128932 0.0129078 0.0129225 0.0129371 0.0129517 0.0129664 0.012981 0.0129956 0.0130102 0.0130249 0.0130395 0.0130541 0.0130688 0.0130834 0.013098 0.0131127 0.0131273 0.0131419 0.0131566 0.0131712 0.0131858 0.0132005 0.0132151 0.0132297 0.0132443 0.013259 0.0132736 0.0132882 0.0133029 0.0133175 0.0133321 0.0133468 0.0133614 0.013376 0.0133907 0.0134053 0.0134199 0.0134346 0.0134492 0.0134638 0.0134784 0.0134931 0.0135077 0.0135223 0.013537 0.0135516 0.0135662 0.0135809 0.0135955 0.0136101 0.0136248 0.0136394 0.013654 0.0136687 0.0136833 0.0136979 0.0137126 0.0137272 0.0137418 0.0137564 0.0137711 0.0137857 0.0138003 0.013815 0.0138296 0.0138442 0.0138589 0.0138735 0.0138881 0.0139028 0.0139174 0.013932 0.0139467 0.0139613 0.0139759 +-0.0034525 -0.0030331 -0.00225479 -0.00115186 0.000144986 0.00154704 0.00300475 0.0044875 0.00597183 0.00743396 0.00884184 0.0101412 0.011227 0.0119266 0.012193 0.0122588 0.0122815 0.0122973 0.0123121 0.0123268 0.0123414 0.012356 0.0123707 0.0123853 0.0124 0.0124146 0.0124292 0.0124439 0.0124585 0.0124731 0.0124878 0.0125024 0.012517 0.0125317 0.0125463 0.012561 0.0125756 0.0125902 0.0126049 0.0126195 0.0126341 0.0126488 0.0126634 0.012678 0.0126927 0.0127073 0.012722 0.0127366 0.0127512 0.0127659 0.0127805 0.0127951 0.0128098 0.0128244 0.012839 0.0128537 0.0128683 0.012883 0.0128976 0.0129122 0.0129269 0.0129415 0.0129561 0.0129708 0.0129854 0.0130001 0.0130147 0.0130293 0.013044 0.0130586 0.0130732 0.0130879 0.0131025 0.0131171 0.0131318 0.0131464 0.0131611 0.0131757 0.0131903 0.013205 0.0132196 0.0132342 0.0132489 0.0132635 0.0132781 0.0132928 0.0133074 0.0133221 0.0133367 0.0133513 0.013366 0.0133806 0.0133952 0.0134099 0.0134245 0.0134391 0.0134538 0.0134684 0.0134831 0.0134977 0.0135123 0.013527 0.0135416 0.0135562 0.0135709 0.0135855 0.0136002 0.0136148 0.0136294 0.0136441 0.0136587 0.0136733 0.013688 0.0137026 0.0137172 0.0137319 0.0137465 0.0137612 0.0137758 0.0137904 0.0138051 0.0138197 0.0138343 0.013849 0.0138636 0.0138782 0.0138929 0.0139075 0.0139222 0.0139368 0.0139514 0.0139661 0.0139807 +-0.00345378 -0.00303399 -0.00225521 -0.00115197 0.000145075 0.00154726 0.00300508 0.00448794 0.00597239 0.00743467 0.00884278 0.0101425 0.0112291 0.0119298 0.0121969 0.0122629 0.0122856 0.0123015 0.0123163 0.012331 0.0123456 0.0123603 0.0123749 0.0123895 0.0124042 0.0124188 0.0124335 0.0124481 0.0124627 0.0124774 0.012492 0.0125067 0.0125213 0.012536 0.0125506 0.0125652 0.0125799 0.0125945 0.0126092 0.0126238 0.0126384 0.0126531 0.0126677 0.0126824 0.012697 0.0127117 0.0127263 0.0127409 0.0127556 0.0127702 0.0127849 0.0127995 0.0128141 0.0128288 0.0128434 0.0128581 0.0128727 0.0128874 0.012902 0.0129166 0.0129313 0.0129459 0.0129606 0.0129752 0.0129898 0.0130045 0.0130191 0.0130338 0.0130484 0.0130631 0.0130777 0.0130923 0.013107 0.0131216 0.0131363 0.0131509 0.0131655 0.0131802 0.0131948 0.0132095 0.0132241 0.0132388 0.0132534 0.013268 0.0132827 0.0132973 0.013312 0.0133266 0.0133412 0.0133559 0.0133705 0.0133852 0.0133998 0.0134145 0.0134291 0.0134437 0.0134584 0.013473 0.0134877 0.0135023 0.013517 0.0135316 0.0135462 0.0135609 0.0135755 0.0135902 0.0136048 0.0136194 0.0136341 0.0136487 0.0136634 0.013678 0.0136927 0.0137073 0.0137219 0.0137366 0.0137512 0.0137659 0.0137805 0.0137951 0.0138098 0.0138244 0.0138391 0.0138537 0.0138684 0.013883 0.0138976 0.0139123 0.0139269 0.0139416 0.0139562 0.0139708 0.0139855 +-0.00345506 -0.00303488 -0.00225564 -0.00115207 0.000145165 0.00154749 0.00300542 0.00448838 0.00597295 0.00743538 0.00884372 0.0101439 0.0112311 0.0119329 0.0122008 0.0122671 0.0122898 0.0123057 0.0123205 0.0123352 0.0123498 0.0123645 0.0123791 0.0123938 0.0124084 0.012423 0.0124377 0.0124523 0.012467 0.0124816 0.0124963 0.0125109 0.0125256 0.0125402 0.0125549 0.0125695 0.0125842 0.0125988 0.0126135 0.0126281 0.0126428 0.0126574 0.012672 0.0126867 0.0127013 0.012716 0.0127306 0.0127453 0.0127599 0.0127746 0.0127892 0.0128039 0.0128185 0.0128332 0.0128478 0.0128625 0.0128771 0.0128917 0.0129064 0.012921 0.0129357 0.0129503 0.012965 0.0129796 0.0129943 0.0130089 0.0130236 0.0130382 0.0130529 0.0130675 0.0130822 0.0130968 0.0131115 0.0131261 0.0131407 0.0131554 0.01317 0.0131847 0.0131993 0.013214 0.0132286 0.0132433 0.0132579 0.0132726 0.0132872 0.0133019 0.0133165 0.0133312 0.0133458 0.0133605 0.0133751 0.0133897 0.0134044 0.013419 0.0134337 0.0134483 0.013463 0.0134776 0.0134923 0.0135069 0.0135216 0.0135362 0.0135509 0.0135655 0.0135802 0.0135948 0.0136095 0.0136241 0.0136387 0.0136534 0.013668 0.0136827 0.0136973 0.013712 0.0137266 0.0137413 0.0137559 0.0137706 0.0137852 0.0137999 0.0138145 0.0138292 0.0138438 0.0138584 0.0138731 0.0138877 0.0139024 0.013917 0.0139317 0.0139463 0.013961 0.0139756 0.0139903 +-0.00345634 -0.00303577 -0.00225606 -0.00115218 0.000145254 0.00154771 0.00300575 0.00448882 0.0059735 0.00743609 0.00884466 0.0101452 0.0112331 0.011936 0.0122047 0.0122712 0.012294 0.0123098 0.0123247 0.0123394 0.012354 0.0123687 0.0123833 0.012398 0.0124126 0.0124273 0.0124419 0.0124566 0.0124712 0.0124859 0.0125005 0.0125152 0.0125298 0.0125445 0.0125591 0.0125738 0.0125884 0.0126031 0.0126178 0.0126324 0.0126471 0.0126617 0.0126764 0.012691 0.0127057 0.0127203 0.012735 0.0127496 0.0127643 0.0127789 0.0127936 0.0128082 0.0128229 0.0128375 0.0128522 0.0128668 0.0128815 0.0128961 0.0129108 0.0129254 0.0129401 0.0129548 0.0129694 0.0129841 0.0129987 0.0130134 0.013028 0.0130427 0.0130573 0.013072 0.0130866 0.0131013 0.0131159 0.0131306 0.0131452 0.0131599 0.0131745 0.0131892 0.0132038 0.0132185 0.0132331 0.0132478 0.0132624 0.0132771 0.0132918 0.0133064 0.0133211 0.0133357 0.0133504 0.013365 0.0133797 0.0133943 0.013409 0.0134236 0.0134383 0.0134529 0.0134676 0.0134822 0.0134969 0.0135115 0.0135262 0.0135408 0.0135555 0.0135701 0.0135848 0.0135994 0.0136141 0.0136288 0.0136434 0.0136581 0.0136727 0.0136874 0.013702 0.0137167 0.0137313 0.013746 0.0137606 0.0137753 0.0137899 0.0138046 0.0138192 0.0138339 0.0138485 0.0138632 0.0138778 0.0138925 0.0139071 0.0139218 0.0139364 0.0139511 0.0139657 0.0139804 0.0139951 +-0.00345762 -0.00303666 -0.00225649 -0.00115228 0.000145343 0.00154793 0.00300608 0.00448925 0.00597406 0.0074368 0.0088456 0.0101465 0.0112352 0.0119391 0.0122087 0.0122753 0.0122982 0.012314 0.0123289 0.0123436 0.0123582 0.0123729 0.0123875 0.0124022 0.0124168 0.0124315 0.0124462 0.0124608 0.0124755 0.0124901 0.0125048 0.0125194 0.0125341 0.0125488 0.0125634 0.0125781 0.0125927 0.0126074 0.012622 0.0126367 0.0126514 0.012666 0.0126807 0.0126953 0.01271 0.0127246 0.0127393 0.012754 0.0127686 0.0127833 0.0127979 0.0128126 0.0128272 0.0128419 0.0128566 0.0128712 0.0128859 0.0129005 0.0129152 0.0129298 0.0129445 0.0129592 0.0129738 0.0129885 0.0130031 0.0130178 0.0130325 0.0130471 0.0130618 0.0130764 0.0130911 0.0131057 0.0131204 0.0131351 0.0131497 0.0131644 0.013179 0.0131937 0.0132083 0.013223 0.0132377 0.0132523 0.013267 0.0132816 0.0132963 0.0133109 0.0133256 0.0133403 0.0133549 0.0133696 0.0133842 0.0133989 0.0134135 0.0134282 0.0134429 0.0134575 0.0134722 0.0134868 0.0135015 0.0135161 0.0135308 0.0135455 0.0135601 0.0135748 0.0135894 0.0136041 0.0136187 0.0136334 0.0136481 0.0136627 0.0136774 0.013692 0.0137067 0.0137213 0.013736 0.0137507 0.0137653 0.01378 0.0137946 0.0138093 0.0138239 0.0138386 0.0138533 0.0138679 0.0138826 0.0138972 0.0139119 0.0139265 0.0139412 0.0139559 0.0139705 0.0139852 0.0139998 +-0.0034589 -0.00303754 -0.00225691 -0.00115239 0.000145432 0.00154816 0.00300641 0.00448969 0.00597461 0.00743751 0.00884654 0.0101478 0.0112372 0.0119422 0.0122126 0.0122795 0.0123023 0.0123182 0.0123331 0.0123477 0.0123624 0.0123771 0.0123917 0.0124064 0.0124211 0.0124357 0.0124504 0.0124651 0.0124797 0.0124944 0.012509 0.0125237 0.0125384 0.012553 0.0125677 0.0125824 0.012597 0.0126117 0.0126263 0.012641 0.0126557 0.0126703 0.012685 0.0126997 0.0127143 0.012729 0.0127436 0.0127583 0.012773 0.0127876 0.0128023 0.012817 0.0128316 0.0128463 0.0128609 0.0128756 0.0128903 0.0129049 0.0129196 0.0129343 0.0129489 0.0129636 0.0129782 0.0129929 0.0130076 0.0130222 0.0130369 0.0130516 0.0130662 0.0130809 0.0130955 0.0131102 0.0131249 0.0131395 0.0131542 0.0131689 0.0131835 0.0131982 0.0132128 0.0132275 0.0132422 0.0132568 0.0132715 0.0132862 0.0133008 0.0133155 0.0133301 0.0133448 0.0133595 0.0133741 0.0133888 0.0134035 0.0134181 0.0134328 0.0134474 0.0134621 0.0134768 0.0134914 0.0135061 0.0135208 0.0135354 0.0135501 0.0135647 0.0135794 0.0135941 0.0136087 0.0136234 0.0136381 0.0136527 0.0136674 0.013682 0.0136967 0.0137114 0.013726 0.0137407 0.0137554 0.01377 0.0137847 0.0137993 0.013814 0.0138287 0.0138433 0.013858 0.0138727 0.0138873 0.013902 0.0139166 0.0139313 0.013946 0.0139606 0.0139753 0.01399 0.0140046 +-0.00346017 -0.00303843 -0.00225733 -0.00115249 0.000145521 0.00154838 0.00300674 0.00449013 0.00597517 0.00743821 0.00884747 0.0101491 0.0112392 0.0119454 0.0122165 0.0122836 0.0123065 0.0123224 0.0123372 0.0123519 0.0123666 0.0123813 0.0123959 0.0124106 0.0124253 0.0124399 0.0124546 0.0124693 0.012484 0.0124986 0.0125133 0.012528 0.0125426 0.0125573 0.012572 0.0125866 0.0126013 0.012616 0.0126306 0.0126453 0.01266 0.0126746 0.0126893 0.012704 0.0127186 0.0127333 0.012748 0.0127626 0.0127773 0.012792 0.0128066 0.0128213 0.012836 0.0128506 0.0128653 0.01288 0.0128946 0.0129093 0.012924 0.0129387 0.0129533 0.012968 0.0129827 0.0129973 0.013012 0.0130267 0.0130413 0.013056 0.0130707 0.0130853 0.0131 0.0131147 0.0131293 0.013144 0.0131587 0.0131733 0.013188 0.0132027 0.0132173 0.013232 0.0132467 0.0132613 0.013276 0.0132907 0.0133053 0.01332 0.0133347 0.0133493 0.013364 0.0133787 0.0133934 0.013408 0.0134227 0.0134374 0.013452 0.0134667 0.0134814 0.013496 0.0135107 0.0135254 0.01354 0.0135547 0.0135694 0.013584 0.0135987 0.0136134 0.013628 0.0136427 0.0136574 0.013672 0.0136867 0.0137014 0.013716 0.0137307 0.0137454 0.01376 0.0137747 0.0137894 0.013804 0.0138187 0.0138334 0.0138481 0.0138627 0.0138774 0.0138921 0.0139067 0.0139214 0.0139361 0.0139507 0.0139654 0.0139801 0.0139947 0.0140094 +-0.00346145 -0.00303932 -0.00225776 -0.0011526 0.000145611 0.0015486 0.00300708 0.00449056 0.00597572 0.00743892 0.00884841 0.0101505 0.0112412 0.0119485 0.0122204 0.0122877 0.0123107 0.0123266 0.0123414 0.0123561 0.0123708 0.0123855 0.0124002 0.0124148 0.0124295 0.0124442 0.0124588 0.0124735 0.0124882 0.0125029 0.0125175 0.0125322 0.0125469 0.0125616 0.0125762 0.0125909 0.0126056 0.0126202 0.0126349 0.0126496 0.0126643 0.0126789 0.0126936 0.0127083 0.012723 0.0127376 0.0127523 0.012767 0.0127817 0.0127963 0.012811 0.0128257 0.0128403 0.012855 0.0128697 0.0128844 0.012899 0.0129137 0.0129284 0.0129431 0.0129577 0.0129724 0.0129871 0.0130017 0.0130164 0.0130311 0.0130458 0.0130604 0.0130751 0.0130898 0.0131045 0.0131191 0.0131338 0.0131485 0.0131631 0.0131778 0.0131925 0.0132072 0.0132218 0.0132365 0.0132512 0.0132659 0.0132805 0.0132952 0.0133099 0.0133245 0.0133392 0.0133539 0.0133686 0.0133832 0.0133979 0.0134126 0.0134273 0.0134419 0.0134566 0.0134713 0.0134859 0.0135006 0.0135153 0.01353 0.0135446 0.0135593 0.013574 0.0135887 0.0136033 0.013618 0.0136327 0.0136474 0.013662 0.0136767 0.0136914 0.013706 0.0137207 0.0137354 0.0137501 0.0137647 0.0137794 0.0137941 0.0138088 0.0138234 0.0138381 0.0138528 0.0138674 0.0138821 0.0138968 0.0139115 0.0139261 0.0139408 0.0139555 0.0139702 0.0139848 0.0139995 0.0140142 +-0.00346273 -0.0030402 -0.00225818 -0.00115271 0.0001457 0.00154882 0.00300741 0.004491 0.00597627 0.00743963 0.00884934 0.0101518 0.0112432 0.0119516 0.0122243 0.0122918 0.0123148 0.0123308 0.0123456 0.0123603 0.012375 0.0123897 0.0124044 0.012419 0.0124337 0.0124484 0.0124631 0.0124778 0.0124924 0.0125071 0.0125218 0.0125365 0.0125511 0.0125658 0.0125805 0.0125952 0.0126099 0.0126245 0.0126392 0.0126539 0.0126686 0.0126832 0.0126979 0.0127126 0.0127273 0.012742 0.0127566 0.0127713 0.012786 0.0128007 0.0128153 0.01283 0.0128447 0.0128594 0.0128741 0.0128887 0.0129034 0.0129181 0.0129328 0.0129475 0.0129621 0.0129768 0.0129915 0.0130062 0.0130208 0.0130355 0.0130502 0.0130649 0.0130796 0.0130942 0.0131089 0.0131236 0.0131383 0.0131529 0.0131676 0.0131823 0.013197 0.0132117 0.0132263 0.013241 0.0132557 0.0132704 0.013285 0.0132997 0.0133144 0.0133291 0.0133438 0.0133584 0.0133731 0.0133878 0.0134025 0.0134171 0.0134318 0.0134465 0.0134612 0.0134759 0.0134905 0.0135052 0.0135199 0.0135346 0.0135493 0.0135639 0.0135786 0.0135933 0.013608 0.0136226 0.0136373 0.013652 0.0136667 0.0136814 0.013696 0.0137107 0.0137254 0.0137401 0.0137547 0.0137694 0.0137841 0.0137988 0.0138135 0.0138281 0.0138428 0.0138575 0.0138722 0.0138868 0.0139015 0.0139162 0.0139309 0.0139456 0.0139602 0.0139749 0.0139896 0.0140043 0.014019 +-0.003464 -0.00304109 -0.0022586 -0.00115281 0.000145789 0.00154905 0.00300774 0.00449143 0.00597683 0.00744034 0.00885028 0.0101531 0.0112452 0.0119547 0.0122282 0.012296 0.012319 0.0123349 0.0123498 0.0123645 0.0123792 0.0123939 0.0124086 0.0124233 0.0124379 0.0124526 0.0124673 0.012482 0.0124967 0.0125113 0.012526 0.0125407 0.0125554 0.0125701 0.0125848 0.0125994 0.0126141 0.0126288 0.0126435 0.0126582 0.0126729 0.0126875 0.0127022 0.0127169 0.0127316 0.0127463 0.012761 0.0127756 0.0127903 0.012805 0.0128197 0.0128344 0.0128491 0.0128637 0.0128784 0.0128931 0.0129078 0.0129225 0.0129372 0.0129518 0.0129665 0.0129812 0.0129959 0.0130106 0.0130253 0.0130399 0.0130546 0.0130693 0.013084 0.0130987 0.0131134 0.013128 0.0131427 0.0131574 0.0131721 0.0131868 0.0132015 0.0132161 0.0132308 0.0132455 0.0132602 0.0132749 0.0132896 0.0133042 0.0133189 0.0133336 0.0133483 0.013363 0.0133777 0.0133923 0.013407 0.0134217 0.0134364 0.0134511 0.0134658 0.0134804 0.0134951 0.0135098 0.0135245 0.0135392 0.0135539 0.0135685 0.0135832 0.0135979 0.0136126 0.0136273 0.013642 0.0136566 0.0136713 0.013686 0.0137007 0.0137154 0.0137301 0.0137447 0.0137594 0.0137741 0.0137888 0.0138035 0.0138182 0.0138328 0.0138475 0.0138622 0.0138769 0.0138916 0.0139063 0.0139209 0.0139356 0.0139503 0.013965 0.0139797 0.0139944 0.014009 0.0140237 +-0.00346528 -0.00304197 -0.00225902 -0.00115292 0.000145878 0.00154927 0.00300807 0.00449187 0.00597738 0.00744104 0.00885121 0.0101544 0.0112473 0.0119578 0.0122321 0.0123001 0.0123232 0.0123391 0.012354 0.0123687 0.0123834 0.0123981 0.0124128 0.0124275 0.0124421 0.0124568 0.0124715 0.0124862 0.0125009 0.0125156 0.0125303 0.012545 0.0125597 0.0125743 0.012589 0.0126037 0.0126184 0.0126331 0.0126478 0.0126625 0.0126772 0.0126919 0.0127065 0.0127212 0.0127359 0.0127506 0.0127653 0.01278 0.0127947 0.0128094 0.012824 0.0128387 0.0128534 0.0128681 0.0128828 0.0128975 0.0129122 0.0129269 0.0129416 0.0129562 0.0129709 0.0129856 0.0130003 0.013015 0.0130297 0.0130444 0.0130591 0.0130738 0.0130884 0.0131031 0.0131178 0.0131325 0.0131472 0.0131619 0.0131766 0.0131913 0.0132059 0.0132206 0.0132353 0.01325 0.0132647 0.0132794 0.0132941 0.0133088 0.0133235 0.0133381 0.0133528 0.0133675 0.0133822 0.0133969 0.0134116 0.0134263 0.013441 0.0134557 0.0134703 0.013485 0.0134997 0.0135144 0.0135291 0.0135438 0.0135585 0.0135732 0.0135878 0.0136025 0.0136172 0.0136319 0.0136466 0.0136613 0.013676 0.0136907 0.0137054 0.01372 0.0137347 0.0137494 0.0137641 0.0137788 0.0137935 0.0138082 0.0138229 0.0138376 0.0138522 0.0138669 0.0138816 0.0138963 0.013911 0.0139257 0.0139404 0.0139551 0.0139697 0.0139844 0.0139991 0.0140138 0.0140285 +-0.00346655 -0.00304286 -0.00225944 -0.00115302 0.000145967 0.00154949 0.0030084 0.0044923 0.00597793 0.00744175 0.00885214 0.0101557 0.0112493 0.0119609 0.012236 0.0123042 0.0123273 0.0123433 0.0123582 0.0123729 0.0123876 0.0124023 0.012417 0.0124317 0.0124464 0.0124611 0.0124757 0.0124904 0.0125051 0.0125198 0.0125345 0.0125492 0.0125639 0.0125786 0.0125933 0.012608 0.0126227 0.0126374 0.0126521 0.0126668 0.0126815 0.0126962 0.0127108 0.0127255 0.0127402 0.0127549 0.0127696 0.0127843 0.012799 0.0128137 0.0128284 0.0128431 0.0128578 0.0128725 0.0128872 0.0129019 0.0129166 0.0129313 0.0129459 0.0129606 0.0129753 0.01299 0.0130047 0.0130194 0.0130341 0.0130488 0.0130635 0.0130782 0.0130929 0.0131076 0.0131223 0.013137 0.0131517 0.0131664 0.013181 0.0131957 0.0132104 0.0132251 0.0132398 0.0132545 0.0132692 0.0132839 0.0132986 0.0133133 0.013328 0.0133427 0.0133574 0.0133721 0.0133868 0.0134014 0.0134161 0.0134308 0.0134455 0.0134602 0.0134749 0.0134896 0.0135043 0.013519 0.0135337 0.0135484 0.0135631 0.0135778 0.0135925 0.0136072 0.0136219 0.0136365 0.0136512 0.0136659 0.0136806 0.0136953 0.01371 0.0137247 0.0137394 0.0137541 0.0137688 0.0137835 0.0137982 0.0138129 0.0138276 0.0138423 0.013857 0.0138716 0.0138863 0.013901 0.0139157 0.0139304 0.0139451 0.0139598 0.0139745 0.0139892 0.0140039 0.0140186 0.0140333 +-0.00346783 -0.00304374 -0.00225986 -0.00115312 0.000146057 0.00154971 0.00300873 0.00449274 0.00597848 0.00744245 0.00885307 0.010157 0.0112513 0.0119639 0.0122399 0.0123083 0.0123315 0.0123475 0.0123624 0.0123771 0.0123918 0.0124065 0.0124212 0.0124359 0.0124506 0.0124653 0.01248 0.0124947 0.0125094 0.0125241 0.0125388 0.0125535 0.0125682 0.0125829 0.0125976 0.0126123 0.012627 0.0126417 0.0126564 0.0126711 0.0126858 0.0127005 0.0127152 0.0127299 0.0127446 0.0127593 0.0127739 0.0127886 0.0128033 0.012818 0.0128327 0.0128474 0.0128621 0.0128768 0.0128915 0.0129062 0.0129209 0.0129356 0.0129503 0.012965 0.0129797 0.0129944 0.0130091 0.0130238 0.0130385 0.0130532 0.0130679 0.0130826 0.0130973 0.013112 0.0131267 0.0131414 0.0131561 0.0131708 0.0131855 0.0132002 0.0132149 0.0132296 0.0132443 0.013259 0.0132737 0.0132884 0.0133031 0.0133178 0.0133325 0.0133472 0.0133619 0.0133766 0.0133913 0.013406 0.0134207 0.0134354 0.0134501 0.0134648 0.0134795 0.0134942 0.0135089 0.0135236 0.0135383 0.013553 0.0135677 0.0135824 0.0135971 0.0136118 0.0136265 0.0136412 0.0136559 0.0136706 0.0136853 0.0137 0.0137147 0.0137294 0.0137441 0.0137588 0.0137735 0.0137882 0.0138029 0.0138176 0.0138323 0.013847 0.0138617 0.0138764 0.0138911 0.0139058 0.0139205 0.0139352 0.0139499 0.0139646 0.0139793 0.013994 0.0140086 0.0140233 0.014038 +-0.0034691 -0.00304462 -0.00226028 -0.00115323 0.000146146 0.00154994 0.00300906 0.00449317 0.00597904 0.00744316 0.008854 0.0101583 0.0112533 0.011967 0.0122438 0.0123125 0.0123357 0.0123516 0.0123665 0.0123813 0.012396 0.0124107 0.0124254 0.0124401 0.0124548 0.0124695 0.0124842 0.0124989 0.0125136 0.0125283 0.012543 0.0125577 0.0125724 0.0125871 0.0126018 0.0126165 0.0126312 0.0126459 0.0126606 0.0126753 0.0126901 0.0127048 0.0127195 0.0127342 0.0127489 0.0127636 0.0127783 0.012793 0.0128077 0.0128224 0.0128371 0.0128518 0.0128665 0.0128812 0.0128959 0.0129106 0.0129253 0.01294 0.0129547 0.0129694 0.0129841 0.0129988 0.0130135 0.0130282 0.0130429 0.0130577 0.0130724 0.0130871 0.0131018 0.0131165 0.0131312 0.0131459 0.0131606 0.0131753 0.01319 0.0132047 0.0132194 0.0132341 0.0132488 0.0132635 0.0132782 0.0132929 0.0133076 0.0133223 0.013337 0.0133517 0.0133664 0.0133811 0.0133958 0.0134105 0.0134253 0.01344 0.0134547 0.0134694 0.0134841 0.0134988 0.0135135 0.0135282 0.0135429 0.0135576 0.0135723 0.013587 0.0136017 0.0136164 0.0136311 0.0136458 0.0136605 0.0136752 0.0136899 0.0137046 0.0137193 0.013734 0.0137487 0.0137634 0.0137781 0.0137929 0.0138076 0.0138223 0.013837 0.0138517 0.0138664 0.0138811 0.0138958 0.0139105 0.0139252 0.0139399 0.0139546 0.0139693 0.013984 0.0139987 0.0140134 0.0140281 0.0140428 +-0.00347038 -0.00304551 -0.0022607 -0.00115333 0.000146235 0.00155016 0.00300939 0.00449361 0.00597959 0.00744386 0.00885493 0.0101597 0.0112553 0.0119701 0.0122477 0.0123166 0.0123398 0.0123558 0.0123707 0.0123854 0.0124002 0.0124149 0.0124296 0.0124443 0.012459 0.0124737 0.0124884 0.0125031 0.0125178 0.0125325 0.0125473 0.012562 0.0125767 0.0125914 0.0126061 0.0126208 0.0126355 0.0126502 0.0126649 0.0126796 0.0126943 0.0127091 0.0127238 0.0127385 0.0127532 0.0127679 0.0127826 0.0127973 0.012812 0.0128267 0.0128414 0.0128561 0.0128709 0.0128856 0.0129003 0.012915 0.0129297 0.0129444 0.0129591 0.0129738 0.0129885 0.0130032 0.0130179 0.0130327 0.0130474 0.0130621 0.0130768 0.0130915 0.0131062 0.0131209 0.0131356 0.0131503 0.013165 0.0131797 0.0131945 0.0132092 0.0132239 0.0132386 0.0132533 0.013268 0.0132827 0.0132974 0.0133121 0.0133268 0.0133415 0.0133563 0.013371 0.0133857 0.0134004 0.0134151 0.0134298 0.0134445 0.0134592 0.0134739 0.0134886 0.0135033 0.0135181 0.0135328 0.0135475 0.0135622 0.0135769 0.0135916 0.0136063 0.013621 0.0136357 0.0136504 0.0136652 0.0136799 0.0136946 0.0137093 0.013724 0.0137387 0.0137534 0.0137681 0.0137828 0.0137975 0.0138122 0.013827 0.0138417 0.0138564 0.0138711 0.0138858 0.0139005 0.0139152 0.0139299 0.0139446 0.0139593 0.013974 0.0139888 0.0140035 0.0140182 0.0140329 0.0140476 +-0.00347165 -0.00304639 -0.00226112 -0.00115344 0.000146324 0.00155038 0.00300972 0.00449404 0.00598014 0.00744457 0.00885586 0.010161 0.0112573 0.0119732 0.0122516 0.0123207 0.012344 0.01236 0.0123749 0.0123896 0.0124044 0.0124191 0.0124338 0.0124485 0.0124632 0.0124779 0.0124926 0.0125074 0.0125221 0.0125368 0.0125515 0.0125662 0.0125809 0.0125956 0.0126104 0.0126251 0.0126398 0.0126545 0.0126692 0.0126839 0.0126986 0.0127134 0.0127281 0.0127428 0.0127575 0.0127722 0.0127869 0.0128016 0.0128164 0.0128311 0.0128458 0.0128605 0.0128752 0.0128899 0.0129046 0.0129194 0.0129341 0.0129488 0.0129635 0.0129782 0.0129929 0.0130076 0.0130224 0.0130371 0.0130518 0.0130665 0.0130812 0.0130959 0.0131106 0.0131254 0.0131401 0.0131548 0.0131695 0.0131842 0.0131989 0.0132136 0.0132284 0.0132431 0.0132578 0.0132725 0.0132872 0.0133019 0.0133166 0.0133314 0.0133461 0.0133608 0.0133755 0.0133902 0.0134049 0.0134196 0.0134344 0.0134491 0.0134638 0.0134785 0.0134932 0.0135079 0.0135226 0.0135374 0.0135521 0.0135668 0.0135815 0.0135962 0.0136109 0.0136256 0.0136404 0.0136551 0.0136698 0.0136845 0.0136992 0.0137139 0.0137286 0.0137434 0.0137581 0.0137728 0.0137875 0.0138022 0.0138169 0.0138316 0.0138464 0.0138611 0.0138758 0.0138905 0.0139052 0.0139199 0.0139346 0.0139494 0.0139641 0.0139788 0.0139935 0.0140082 0.0140229 0.0140376 0.0140524 +-0.00347292 -0.00304727 -0.00226154 -0.00115354 0.000146414 0.0015506 0.00301005 0.00449447 0.00598069 0.00744527 0.00885679 0.0101623 0.0112593 0.0119763 0.0122554 0.0123248 0.0123482 0.0123642 0.0123791 0.0123938 0.0124085 0.0124233 0.012438 0.0124527 0.0124674 0.0124821 0.0124969 0.0125116 0.0125263 0.012541 0.0125557 0.0125705 0.0125852 0.0125999 0.0126146 0.0126293 0.0126441 0.0126588 0.0126735 0.0126882 0.0127029 0.0127176 0.0127324 0.0127471 0.0127618 0.0127765 0.0127912 0.012806 0.0128207 0.0128354 0.0128501 0.0128648 0.0128796 0.0128943 0.012909 0.0129237 0.0129384 0.0129532 0.0129679 0.0129826 0.0129973 0.013012 0.0130268 0.0130415 0.0130562 0.0130709 0.0130856 0.0131004 0.0131151 0.0131298 0.0131445 0.0131592 0.013174 0.0131887 0.0132034 0.0132181 0.0132328 0.0132476 0.0132623 0.013277 0.0132917 0.0133064 0.0133211 0.0133359 0.0133506 0.0133653 0.01338 0.0133947 0.0134095 0.0134242 0.0134389 0.0134536 0.0134683 0.0134831 0.0134978 0.0135125 0.0135272 0.0135419 0.0135567 0.0135714 0.0135861 0.0136008 0.0136155 0.0136303 0.013645 0.0136597 0.0136744 0.0136891 0.0137039 0.0137186 0.0137333 0.013748 0.0137627 0.0137775 0.0137922 0.0138069 0.0138216 0.0138363 0.0138511 0.0138658 0.0138805 0.0138952 0.0139099 0.0139247 0.0139394 0.0139541 0.0139688 0.0139835 0.0139982 0.014013 0.0140277 0.0140424 0.0140571 +-0.00347419 -0.00304815 -0.00226196 -0.00115364 0.000146503 0.00155082 0.00301038 0.00449491 0.00598124 0.00744597 0.00885772 0.0101636 0.0112613 0.0119793 0.0122593 0.0123289 0.0123523 0.0123683 0.0123832 0.012398 0.0124127 0.0124275 0.0124422 0.0124569 0.0124716 0.0124863 0.0125011 0.0125158 0.0125305 0.0125452 0.01256 0.0125747 0.0125894 0.0126041 0.0126189 0.0126336 0.0126483 0.012663 0.0126778 0.0126925 0.0127072 0.0127219 0.0127367 0.0127514 0.0127661 0.0127808 0.0127956 0.0128103 0.012825 0.0128397 0.0128545 0.0128692 0.0128839 0.0128986 0.0129134 0.0129281 0.0129428 0.0129575 0.0129723 0.012987 0.0130017 0.0130164 0.0130312 0.0130459 0.0130606 0.0130753 0.0130901 0.0131048 0.0131195 0.0131342 0.013149 0.0131637 0.0131784 0.0131931 0.0132079 0.0132226 0.0132373 0.013252 0.0132668 0.0132815 0.0132962 0.0133109 0.0133257 0.0133404 0.0133551 0.0133698 0.0133846 0.0133993 0.013414 0.0134287 0.0134435 0.0134582 0.0134729 0.0134876 0.0135024 0.0135171 0.0135318 0.0135465 0.0135613 0.013576 0.0135907 0.0136054 0.0136202 0.0136349 0.0136496 0.0136643 0.0136791 0.0136938 0.0137085 0.0137232 0.0137379 0.0137527 0.0137674 0.0137821 0.0137968 0.0138116 0.0138263 0.013841 0.0138557 0.0138705 0.0138852 0.0138999 0.0139146 0.0139294 0.0139441 0.0139588 0.0139735 0.0139883 0.014003 0.0140177 0.0140324 0.0140472 0.0140619 +-0.00347546 -0.00304903 -0.00226238 -0.00115375 0.000146592 0.00155105 0.00301071 0.00449534 0.00598179 0.00744667 0.00885864 0.0101649 0.0112632 0.0119824 0.0122632 0.0123331 0.0123565 0.0123725 0.0123874 0.0124022 0.0124169 0.0124316 0.0124464 0.0124611 0.0124758 0.0124906 0.0125053 0.01252 0.0125348 0.0125495 0.0125642 0.0125789 0.0125937 0.0126084 0.0126231 0.0126379 0.0126526 0.0126673 0.0126821 0.0126968 0.0127115 0.0127262 0.012741 0.0127557 0.0127704 0.0127852 0.0127999 0.0128146 0.0128293 0.0128441 0.0128588 0.0128735 0.0128883 0.012903 0.0129177 0.0129325 0.0129472 0.0129619 0.0129766 0.0129914 0.0130061 0.0130208 0.0130356 0.0130503 0.013065 0.0130798 0.0130945 0.0131092 0.0131239 0.0131387 0.0131534 0.0131681 0.0131829 0.0131976 0.0132123 0.0132271 0.0132418 0.0132565 0.0132712 0.013286 0.0133007 0.0133154 0.0133302 0.0133449 0.0133596 0.0133744 0.0133891 0.0134038 0.0134185 0.0134333 0.013448 0.0134627 0.0134775 0.0134922 0.0135069 0.0135217 0.0135364 0.0135511 0.0135658 0.0135806 0.0135953 0.01361 0.0136248 0.0136395 0.0136542 0.013669 0.0136837 0.0136984 0.0137131 0.0137279 0.0137426 0.0137573 0.0137721 0.0137868 0.0138015 0.0138163 0.013831 0.0138457 0.0138604 0.0138752 0.0138899 0.0139046 0.0139194 0.0139341 0.0139488 0.0139635 0.0139783 0.013993 0.0140077 0.0140225 0.0140372 0.0140519 0.0140667 +-0.00347674 -0.00304991 -0.0022628 -0.00115385 0.000146681 0.00155127 0.00301104 0.00449577 0.00598234 0.00744737 0.00885957 0.0101662 0.0112652 0.0119855 0.0122671 0.0123372 0.0123606 0.0123767 0.0123916 0.0124064 0.0124211 0.0124358 0.0124506 0.0124653 0.01248 0.0124948 0.0125095 0.0125242 0.012539 0.0125537 0.0125684 0.0125832 0.0125979 0.0126127 0.0126274 0.0126421 0.0126569 0.0126716 0.0126863 0.0127011 0.0127158 0.0127305 0.0127453 0.01276 0.0127747 0.0127895 0.0128042 0.0128189 0.0128337 0.0128484 0.0128631 0.0128779 0.0128926 0.0129074 0.0129221 0.0129368 0.0129516 0.0129663 0.012981 0.0129958 0.0130105 0.0130252 0.01304 0.0130547 0.0130694 0.0130842 0.0130989 0.0131136 0.0131284 0.0131431 0.0131578 0.0131726 0.0131873 0.0132021 0.0132168 0.0132315 0.0132463 0.013261 0.0132757 0.0132905 0.0133052 0.0133199 0.0133347 0.0133494 0.0133641 0.0133789 0.0133936 0.0134083 0.0134231 0.0134378 0.0134526 0.0134673 0.013482 0.0134968 0.0135115 0.0135262 0.013541 0.0135557 0.0135704 0.0135852 0.0135999 0.0136146 0.0136294 0.0136441 0.0136588 0.0136736 0.0136883 0.013703 0.0137178 0.0137325 0.0137473 0.013762 0.0137767 0.0137915 0.0138062 0.0138209 0.0138357 0.0138504 0.0138651 0.0138799 0.0138946 0.0139093 0.0139241 0.0139388 0.0139535 0.0139683 0.013983 0.0139977 0.0140125 0.0140272 0.014042 0.0140567 0.0140714 +-0.00347801 -0.00305079 -0.00226322 -0.00115396 0.000146771 0.00155149 0.00301137 0.00449621 0.00598289 0.00744808 0.00886049 0.0101675 0.0112672 0.0119886 0.012271 0.0123413 0.0123648 0.0123808 0.0123958 0.0124105 0.0124253 0.01244 0.0124548 0.0124695 0.0124842 0.012499 0.0125137 0.0125285 0.0125432 0.0125579 0.0125727 0.0125874 0.0126022 0.0126169 0.0126316 0.0126464 0.0126611 0.0126759 0.0126906 0.0127053 0.0127201 0.0127348 0.0127496 0.0127643 0.012779 0.0127938 0.0128085 0.0128233 0.012838 0.0128527 0.0128675 0.0128822 0.012897 0.0129117 0.0129264 0.0129412 0.0129559 0.0129707 0.0129854 0.0130001 0.0130149 0.0130296 0.0130444 0.0130591 0.0130739 0.0130886 0.0131033 0.0131181 0.0131328 0.0131476 0.0131623 0.013177 0.0131918 0.0132065 0.0132213 0.013236 0.0132507 0.0132655 0.0132802 0.013295 0.0133097 0.0133244 0.0133392 0.0133539 0.0133687 0.0133834 0.0133981 0.0134129 0.0134276 0.0134424 0.0134571 0.0134718 0.0134866 0.0135013 0.0135161 0.0135308 0.0135455 0.0135603 0.013575 0.0135898 0.0136045 0.0136192 0.013634 0.0136487 0.0136635 0.0136782 0.0136929 0.0137077 0.0137224 0.0137372 0.0137519 0.0137666 0.0137814 0.0137961 0.0138109 0.0138256 0.0138403 0.0138551 0.0138698 0.0138846 0.0138993 0.013914 0.0139288 0.0139435 0.0139583 0.013973 0.0139877 0.0140025 0.0140172 0.014032 0.0140467 0.0140614 0.0140762 +-0.00347928 -0.00305167 -0.00226363 -0.00115406 0.00014686 0.00155171 0.0030117 0.00449664 0.00598344 0.00744878 0.00886142 0.0101688 0.0112692 0.0119916 0.0122749 0.0123454 0.0123689 0.012385 0.0123999 0.0124147 0.0124295 0.0124442 0.012459 0.0124737 0.0124884 0.0125032 0.0125179 0.0125327 0.0125474 0.0125622 0.0125769 0.0125917 0.0126064 0.0126212 0.0126359 0.0126506 0.0126654 0.0126801 0.0126949 0.0127096 0.0127244 0.0127391 0.0127539 0.0127686 0.0127834 0.0127981 0.0128128 0.0128276 0.0128423 0.0128571 0.0128718 0.0128866 0.0129013 0.0129161 0.0129308 0.0129456 0.0129603 0.012975 0.0129898 0.0130045 0.0130193 0.013034 0.0130488 0.0130635 0.0130783 0.013093 0.0131078 0.0131225 0.0131372 0.013152 0.0131667 0.0131815 0.0131962 0.013211 0.0132257 0.0132405 0.0132552 0.01327 0.0132847 0.0132994 0.0133142 0.0133289 0.0133437 0.0133584 0.0133732 0.0133879 0.0134027 0.0134174 0.0134322 0.0134469 0.0134616 0.0134764 0.0134911 0.0135059 0.0135206 0.0135354 0.0135501 0.0135649 0.0135796 0.0135943 0.0136091 0.0136238 0.0136386 0.0136533 0.0136681 0.0136828 0.0136976 0.0137123 0.0137271 0.0137418 0.0137565 0.0137713 0.013786 0.0138008 0.0138155 0.0138303 0.013845 0.0138598 0.0138745 0.0138893 0.013904 0.0139187 0.0139335 0.0139482 0.013963 0.0139777 0.0139925 0.0140072 0.014022 0.0140367 0.0140515 0.0140662 0.0140809 +-0.00348055 -0.00305254 -0.00226405 -0.00115416 0.000146949 0.00155193 0.00301203 0.00449707 0.00598399 0.00744948 0.00886234 0.0101701 0.0112712 0.0119947 0.0122787 0.0123495 0.0123731 0.0123892 0.0124041 0.0124189 0.0124336 0.0124484 0.0124631 0.0124779 0.0124926 0.0125074 0.0125222 0.0125369 0.0125517 0.0125664 0.0125812 0.0125959 0.0126107 0.0126254 0.0126402 0.0126549 0.0126697 0.0126844 0.0126992 0.0127139 0.0127287 0.0127434 0.0127582 0.0127729 0.0127877 0.0128024 0.0128172 0.0128319 0.0128467 0.0128614 0.0128762 0.0128909 0.0129057 0.0129204 0.0129352 0.0129499 0.0129647 0.0129794 0.0129942 0.0130089 0.0130237 0.0130384 0.0130532 0.0130679 0.0130827 0.0130974 0.0131122 0.0131269 0.0131417 0.0131564 0.0131712 0.0131859 0.0132007 0.0132154 0.0132302 0.0132449 0.0132597 0.0132744 0.0132892 0.0133039 0.0133187 0.0133334 0.0133482 0.0133629 0.0133777 0.0133924 0.0134072 0.0134219 0.0134367 0.0134514 0.0134662 0.0134809 0.0134957 0.0135104 0.0135252 0.0135399 0.0135547 0.0135694 0.0135842 0.0135989 0.0136137 0.0136284 0.0136432 0.0136579 0.0136727 0.0136874 0.0137022 0.0137169 0.0137317 0.0137464 0.0137612 0.0137759 0.0137907 0.0138054 0.0138202 0.0138349 0.0138497 0.0138645 0.0138792 0.013894 0.0139087 0.0139235 0.0139382 0.013953 0.0139677 0.0139825 0.0139972 0.014012 0.0140267 0.0140415 0.0140562 0.014071 0.0140857 +-0.00348182 -0.00305342 -0.00226447 -0.00115426 0.000147038 0.00155215 0.00301235 0.0044975 0.00598454 0.00745017 0.00886326 0.0101714 0.0112731 0.0119977 0.0122826 0.0123536 0.0123773 0.0123933 0.0124083 0.0124231 0.0124378 0.0124526 0.0124673 0.0124821 0.0124969 0.0125116 0.0125264 0.0125411 0.0125559 0.0125706 0.0125854 0.0126001 0.0126149 0.0126297 0.0126444 0.0126592 0.0126739 0.0126887 0.0127034 0.0127182 0.0127329 0.0127477 0.0127625 0.0127772 0.012792 0.0128067 0.0128215 0.0128362 0.012851 0.0128657 0.0128805 0.0128953 0.01291 0.0129248 0.0129395 0.0129543 0.012969 0.0129838 0.0129985 0.0130133 0.0130281 0.0130428 0.0130576 0.0130723 0.0130871 0.0131018 0.0131166 0.0131313 0.0131461 0.0131609 0.0131756 0.0131904 0.0132051 0.0132199 0.0132346 0.0132494 0.0132641 0.0132789 0.0132937 0.0133084 0.0133232 0.0133379 0.0133527 0.0133674 0.0133822 0.0133969 0.0134117 0.0134265 0.0134412 0.013456 0.0134707 0.0134855 0.0135002 0.013515 0.0135298 0.0135445 0.0135593 0.013574 0.0135888 0.0136035 0.0136183 0.013633 0.0136478 0.0136626 0.0136773 0.0136921 0.0137068 0.0137216 0.0137363 0.0137511 0.0137658 0.0137806 0.0137954 0.0138101 0.0138249 0.0138396 0.0138544 0.0138691 0.0138839 0.0138986 0.0139134 0.0139282 0.0139429 0.0139577 0.0139724 0.0139872 0.0140019 0.0140167 0.0140314 0.0140462 0.014061 0.0140757 0.0140905 +-0.00348308 -0.0030543 -0.00226488 -0.00115437 0.000147128 0.00155237 0.00301268 0.00449793 0.00598508 0.00745087 0.00886418 0.0101727 0.0112751 0.0120008 0.0122865 0.0123577 0.0123814 0.0123975 0.0124125 0.0124272 0.012442 0.0124568 0.0124715 0.0124863 0.0125011 0.0125158 0.0125306 0.0125453 0.0125601 0.0125749 0.0125896 0.0126044 0.0126191 0.0126339 0.0126487 0.0126634 0.0126782 0.0126929 0.0127077 0.0127225 0.0127372 0.012752 0.0127667 0.0127815 0.0127963 0.012811 0.0128258 0.0128406 0.0128553 0.0128701 0.0128848 0.0128996 0.0129144 0.0129291 0.0129439 0.0129586 0.0129734 0.0129882 0.0130029 0.0130177 0.0130324 0.0130472 0.013062 0.0130767 0.0130915 0.0131062 0.013121 0.0131358 0.0131505 0.0131653 0.0131801 0.0131948 0.0132096 0.0132243 0.0132391 0.0132539 0.0132686 0.0132834 0.0132981 0.0133129 0.0133277 0.0133424 0.0133572 0.0133719 0.0133867 0.0134015 0.0134162 0.013431 0.0134457 0.0134605 0.0134753 0.01349 0.0135048 0.0135196 0.0135343 0.0135491 0.0135638 0.0135786 0.0135934 0.0136081 0.0136229 0.0136376 0.0136524 0.0136672 0.0136819 0.0136967 0.0137114 0.0137262 0.013741 0.0137557 0.0137705 0.0137852 0.0138 0.0138148 0.0138295 0.0138443 0.0138591 0.0138738 0.0138886 0.0139033 0.0139181 0.0139329 0.0139476 0.0139624 0.0139771 0.0139919 0.0140067 0.0140214 0.0140362 0.0140509 0.0140657 0.0140805 0.0140952 +-0.00348435 -0.00305517 -0.0022653 -0.00115447 0.000147217 0.0015526 0.00301301 0.00449837 0.00598563 0.00745157 0.00886511 0.0101739 0.0112771 0.0120038 0.0122903 0.0123618 0.0123856 0.0124017 0.0124166 0.0124314 0.0124462 0.012461 0.0124757 0.0124905 0.0125053 0.01252 0.0125348 0.0125495 0.0125643 0.0125791 0.0125938 0.0126086 0.0126234 0.0126381 0.0126529 0.0126677 0.0126824 0.0126972 0.012712 0.0127267 0.0127415 0.0127563 0.012771 0.0127858 0.0128006 0.0128153 0.0128301 0.0128449 0.0128596 0.0128744 0.0128892 0.0129039 0.0129187 0.0129335 0.0129482 0.012963 0.0129778 0.0129925 0.0130073 0.0130221 0.0130368 0.0130516 0.0130664 0.0130811 0.0130959 0.0131107 0.0131254 0.0131402 0.013155 0.0131697 0.0131845 0.0131993 0.013214 0.0132288 0.0132436 0.0132583 0.0132731 0.0132879 0.0133026 0.0133174 0.0133321 0.0133469 0.0133617 0.0133764 0.0133912 0.013406 0.0134207 0.0134355 0.0134503 0.013465 0.0134798 0.0134946 0.0135093 0.0135241 0.0135389 0.0135536 0.0135684 0.0135832 0.0135979 0.0136127 0.0136275 0.0136422 0.013657 0.0136718 0.0136865 0.0137013 0.0137161 0.0137308 0.0137456 0.0137604 0.0137751 0.0137899 0.0138047 0.0138194 0.0138342 0.013849 0.0138637 0.0138785 0.0138933 0.013908 0.0139228 0.0139376 0.0139523 0.0139671 0.0139819 0.0139966 0.0140114 0.0140262 0.0140409 0.0140557 0.0140705 0.0140852 0.0141 +-0.00348562 -0.00305605 -0.00226571 -0.00115457 0.000147306 0.00155282 0.00301334 0.0044988 0.00598618 0.00745227 0.00886602 0.0101752 0.0112791 0.0120069 0.0122942 0.0123659 0.0123897 0.0124058 0.0124208 0.0124356 0.0124504 0.0124651 0.0124799 0.0124947 0.0125094 0.0125242 0.012539 0.0125538 0.0125685 0.0125833 0.0125981 0.0126128 0.0126276 0.0126424 0.0126572 0.0126719 0.0126867 0.0127015 0.0127162 0.012731 0.0127458 0.0127606 0.0127753 0.0127901 0.0128049 0.0128196 0.0128344 0.0128492 0.012864 0.0128787 0.0128935 0.0129083 0.012923 0.0129378 0.0129526 0.0129674 0.0129821 0.0129969 0.0130117 0.0130264 0.0130412 0.013056 0.0130708 0.0130855 0.0131003 0.0131151 0.0131298 0.0131446 0.0131594 0.0131742 0.0131889 0.0132037 0.0132185 0.0132332 0.013248 0.0132628 0.0132776 0.0132923 0.0133071 0.0133219 0.0133366 0.0133514 0.0133662 0.013381 0.0133957 0.0134105 0.0134253 0.01344 0.0134548 0.0134696 0.0134843 0.0134991 0.0135139 0.0135287 0.0135434 0.0135582 0.013573 0.0135877 0.0136025 0.0136173 0.0136321 0.0136468 0.0136616 0.0136764 0.0136911 0.0137059 0.0137207 0.0137355 0.0137502 0.013765 0.0137798 0.0137945 0.0138093 0.0138241 0.0138389 0.0138536 0.0138684 0.0138832 0.0138979 0.0139127 0.0139275 0.0139423 0.013957 0.0139718 0.0139866 0.0140013 0.0140161 0.0140309 0.0140457 0.0140604 0.0140752 0.01409 0.0141047 +-0.00348689 -0.00305692 -0.00226613 -0.00115467 0.000147395 0.00155304 0.00301367 0.00449923 0.00598673 0.00745297 0.00886694 0.0101765 0.011281 0.0120099 0.0122981 0.01237 0.0123939 0.01241 0.012425 0.0124398 0.0124545 0.0124693 0.0124841 0.0124989 0.0125136 0.0125284 0.0125432 0.012558 0.0125728 0.0125875 0.0126023 0.0126171 0.0126319 0.0126466 0.0126614 0.0126762 0.012691 0.0127057 0.0127205 0.0127353 0.0127501 0.0127648 0.0127796 0.0127944 0.0128092 0.012824 0.0128387 0.0128535 0.0128683 0.0128831 0.0128978 0.0129126 0.0129274 0.0129422 0.0129569 0.0129717 0.0129865 0.0130013 0.013016 0.0130308 0.0130456 0.0130604 0.0130751 0.0130899 0.0131047 0.0131195 0.0131343 0.013149 0.0131638 0.0131786 0.0131934 0.0132081 0.0132229 0.0132377 0.0132525 0.0132672 0.013282 0.0132968 0.0133116 0.0133263 0.0133411 0.0133559 0.0133707 0.0133855 0.0134002 0.013415 0.0134298 0.0134446 0.0134593 0.0134741 0.0134889 0.0135037 0.0135184 0.0135332 0.013548 0.0135628 0.0135775 0.0135923 0.0136071 0.0136219 0.0136367 0.0136514 0.0136662 0.013681 0.0136958 0.0137105 0.0137253 0.0137401 0.0137549 0.0137696 0.0137844 0.0137992 0.013814 0.0138287 0.0138435 0.0138583 0.0138731 0.0138879 0.0139026 0.0139174 0.0139322 0.013947 0.0139617 0.0139765 0.0139913 0.0140061 0.0140208 0.0140356 0.0140504 0.0140652 0.0140799 0.0140947 0.0141095 +-0.00348815 -0.00305779 -0.00226654 -0.00115478 0.000147485 0.00155326 0.00301399 0.00449966 0.00598727 0.00745366 0.00886786 0.0101778 0.011283 0.0120129 0.0123019 0.0123741 0.012398 0.0124141 0.0124291 0.0124439 0.0124587 0.0124735 0.0124883 0.0125031 0.0125178 0.0125326 0.0125474 0.0125622 0.012577 0.0125918 0.0126065 0.0126213 0.0126361 0.0126509 0.0126657 0.0126804 0.0126952 0.01271 0.0127248 0.0127396 0.0127543 0.0127691 0.0127839 0.0127987 0.0128135 0.0128283 0.012843 0.0128578 0.0128726 0.0128874 0.0129022 0.0129169 0.0129317 0.0129465 0.0129613 0.0129761 0.0129909 0.0130056 0.0130204 0.0130352 0.01305 0.0130648 0.0130795 0.0130943 0.0131091 0.0131239 0.0131387 0.0131535 0.0131682 0.013183 0.0131978 0.0132126 0.0132274 0.0132421 0.0132569 0.0132717 0.0132865 0.0133013 0.013316 0.0133308 0.0133456 0.0133604 0.0133752 0.01339 0.0134047 0.0134195 0.0134343 0.0134491 0.0134639 0.0134786 0.0134934 0.0135082 0.013523 0.0135378 0.0135526 0.0135673 0.0135821 0.0135969 0.0136117 0.0136265 0.0136412 0.013656 0.0136708 0.0136856 0.0137004 0.0137151 0.0137299 0.0137447 0.0137595 0.0137743 0.0137891 0.0138038 0.0138186 0.0138334 0.0138482 0.013863 0.0138777 0.0138925 0.0139073 0.0139221 0.0139369 0.0139517 0.0139664 0.0139812 0.013996 0.0140108 0.0140256 0.0140403 0.0140551 0.0140699 0.0140847 0.0140995 0.0141142 +-0.00348942 -0.00305867 -0.00226696 -0.00115488 0.000147574 0.00155348 0.00301432 0.00450009 0.00598782 0.00745436 0.00886878 0.0101791 0.011285 0.012016 0.0123058 0.0123782 0.0124022 0.0124183 0.0124333 0.0124481 0.0124629 0.0124777 0.0124925 0.0125073 0.012522 0.0125368 0.0125516 0.0125664 0.0125812 0.012596 0.0126108 0.0126255 0.0126403 0.0126551 0.0126699 0.0126847 0.0126995 0.0127143 0.0127291 0.0127438 0.0127586 0.0127734 0.0127882 0.012803 0.0128178 0.0128326 0.0128473 0.0128621 0.0128769 0.0128917 0.0129065 0.0129213 0.0129361 0.0129509 0.0129656 0.0129804 0.0129952 0.01301 0.0130248 0.0130396 0.0130544 0.0130691 0.0130839 0.0130987 0.0131135 0.0131283 0.0131431 0.0131579 0.0131727 0.0131874 0.0132022 0.013217 0.0132318 0.0132466 0.0132614 0.0132762 0.0132909 0.0133057 0.0133205 0.0133353 0.0133501 0.0133649 0.0133797 0.0133945 0.0134092 0.013424 0.0134388 0.0134536 0.0134684 0.0134832 0.013498 0.0135127 0.0135275 0.0135423 0.0135571 0.0135719 0.0135867 0.0136015 0.0136163 0.013631 0.0136458 0.0136606 0.0136754 0.0136902 0.013705 0.0137198 0.0137345 0.0137493 0.0137641 0.0137789 0.0137937 0.0138085 0.0138233 0.0138381 0.0138528 0.0138676 0.0138824 0.0138972 0.013912 0.0139268 0.0139416 0.0139563 0.0139711 0.0139859 0.0140007 0.0140155 0.0140303 0.0140451 0.0140599 0.0140746 0.0140894 0.0141042 0.014119 +-0.00349068 -0.00305954 -0.00226737 -0.00115498 0.000147663 0.0015537 0.00301465 0.00450052 0.00598836 0.00745505 0.0088697 0.0101804 0.0112869 0.012019 0.0123097 0.0123823 0.0124063 0.0124225 0.0124374 0.0124523 0.0124671 0.0124819 0.0124967 0.0125114 0.0125262 0.012541 0.0125558 0.0125706 0.0125854 0.0126002 0.012615 0.0126298 0.0126446 0.0126594 0.0126742 0.0126889 0.0127037 0.0127185 0.0127333 0.0127481 0.0127629 0.0127777 0.0127925 0.0128073 0.0128221 0.0128369 0.0128517 0.0128664 0.0128812 0.012896 0.0129108 0.0129256 0.0129404 0.0129552 0.01297 0.0129848 0.0129996 0.0130144 0.0130292 0.0130439 0.0130587 0.0130735 0.0130883 0.0131031 0.0131179 0.0131327 0.0131475 0.0131623 0.0131771 0.0131919 0.0132067 0.0132215 0.0132362 0.013251 0.0132658 0.0132806 0.0132954 0.0133102 0.013325 0.0133398 0.0133546 0.0133694 0.0133842 0.013399 0.0134137 0.0134285 0.0134433 0.0134581 0.0134729 0.0134877 0.0135025 0.0135173 0.0135321 0.0135469 0.0135617 0.0135765 0.0135912 0.013606 0.0136208 0.0136356 0.0136504 0.0136652 0.01368 0.0136948 0.0137096 0.0137244 0.0137392 0.013754 0.0137687 0.0137835 0.0137983 0.0138131 0.0138279 0.0138427 0.0138575 0.0138723 0.0138871 0.0139019 0.0139167 0.0139315 0.0139463 0.013961 0.0139758 0.0139906 0.0140054 0.0140202 0.014035 0.0140498 0.0140646 0.0140794 0.0140942 0.014109 0.0141238 +-0.00349195 -0.00306041 -0.00226778 -0.00115508 0.000147753 0.00155392 0.00301498 0.00450095 0.00598891 0.00745575 0.00887061 0.0101817 0.0112889 0.012022 0.0123135 0.0123864 0.0124104 0.0124266 0.0124416 0.0124564 0.0124712 0.012486 0.0125008 0.0125156 0.0125304 0.0125452 0.01256 0.0125748 0.0125896 0.0126044 0.0126192 0.012634 0.0126488 0.0126636 0.0126784 0.0126932 0.012708 0.0127228 0.0127376 0.0127524 0.0127672 0.012782 0.0127968 0.0128116 0.0128264 0.0128412 0.012856 0.0128708 0.0128856 0.0129004 0.0129152 0.0129299 0.0129447 0.0129595 0.0129743 0.0129891 0.0130039 0.0130187 0.0130335 0.0130483 0.0130631 0.0130779 0.0130927 0.0131075 0.0131223 0.0131371 0.0131519 0.0131667 0.0131815 0.0131963 0.0132111 0.0132259 0.0132407 0.0132555 0.0132703 0.0132851 0.0132999 0.0133147 0.0133295 0.0133443 0.0133591 0.0133739 0.0133887 0.0134035 0.0134182 0.013433 0.0134478 0.0134626 0.0134774 0.0134922 0.013507 0.0135218 0.0135366 0.0135514 0.0135662 0.013581 0.0135958 0.0136106 0.0136254 0.0136402 0.013655 0.0136698 0.0136846 0.0136994 0.0137142 0.013729 0.0137438 0.0137586 0.0137734 0.0137882 0.013803 0.0138178 0.0138326 0.0138474 0.0138622 0.013877 0.0138918 0.0139065 0.0139213 0.0139361 0.0139509 0.0139657 0.0139805 0.0139953 0.0140101 0.0140249 0.0140397 0.0140545 0.0140693 0.0140841 0.0140989 0.0141137 0.0141285 +-0.00349321 -0.00306128 -0.0022682 -0.00115518 0.000147842 0.00155414 0.0030153 0.00450138 0.00598946 0.00745644 0.00887153 0.0101829 0.0112908 0.0120251 0.0123174 0.0123905 0.0124146 0.0124308 0.0124458 0.0124606 0.0124754 0.0124902 0.012505 0.0125198 0.0125346 0.0125494 0.0125642 0.012579 0.0125938 0.0126086 0.0126234 0.0126382 0.012653 0.0126678 0.0126826 0.0126974 0.0127122 0.012727 0.0127419 0.0127567 0.0127715 0.0127863 0.0128011 0.0128159 0.0128307 0.0128455 0.0128603 0.0128751 0.0128899 0.0129047 0.0129195 0.0129343 0.0129491 0.0129639 0.0129787 0.0129935 0.0130083 0.0130231 0.0130379 0.0130527 0.0130675 0.0130823 0.0130971 0.0131119 0.0131267 0.0131415 0.0131563 0.0131711 0.0131859 0.0132007 0.0132155 0.0132303 0.0132451 0.0132599 0.0132747 0.0132895 0.0133043 0.0133191 0.0133339 0.0133487 0.0133635 0.0133783 0.0133931 0.0134079 0.0134228 0.0134376 0.0134524 0.0134672 0.013482 0.0134968 0.0135116 0.0135264 0.0135412 0.013556 0.0135708 0.0135856 0.0136004 0.0136152 0.01363 0.0136448 0.0136596 0.0136744 0.0136892 0.013704 0.0137188 0.0137336 0.0137484 0.0137632 0.013778 0.0137928 0.0138076 0.0138224 0.0138372 0.013852 0.0138668 0.0138816 0.0138964 0.0139112 0.013926 0.0139408 0.0139556 0.0139704 0.0139852 0.014 0.0140148 0.0140296 0.0140444 0.0140592 0.014074 0.0140888 0.0141037 0.0141185 0.0141333 +-0.00349448 -0.00306215 -0.00226861 -0.00115528 0.000147931 0.00155436 0.00301563 0.00450181 0.00599 0.00745714 0.00887244 0.0101842 0.0112928 0.0120281 0.0123212 0.0123946 0.0124187 0.0124349 0.0124499 0.0124648 0.0124796 0.0124944 0.0125092 0.012524 0.0125388 0.0125536 0.0125684 0.0125832 0.012598 0.0126128 0.0126277 0.0126425 0.0126573 0.0126721 0.0126869 0.0127017 0.0127165 0.0127313 0.0127461 0.0127609 0.0127757 0.0127905 0.0128053 0.0128202 0.012835 0.0128498 0.0128646 0.0128794 0.0128942 0.012909 0.0129238 0.0129386 0.0129534 0.0129682 0.012983 0.0129978 0.0130126 0.0130275 0.0130423 0.0130571 0.0130719 0.0130867 0.0131015 0.0131163 0.0131311 0.0131459 0.0131607 0.0131755 0.0131903 0.0132051 0.0132199 0.0132348 0.0132496 0.0132644 0.0132792 0.013294 0.0133088 0.0133236 0.0133384 0.0133532 0.013368 0.0133828 0.0133976 0.0134124 0.0134273 0.0134421 0.0134569 0.0134717 0.0134865 0.0135013 0.0135161 0.0135309 0.0135457 0.0135605 0.0135753 0.0135901 0.0136049 0.0136197 0.0136346 0.0136494 0.0136642 0.013679 0.0136938 0.0137086 0.0137234 0.0137382 0.013753 0.0137678 0.0137826 0.0137974 0.0138122 0.013827 0.0138419 0.0138567 0.0138715 0.0138863 0.0139011 0.0139159 0.0139307 0.0139455 0.0139603 0.0139751 0.0139899 0.0140047 0.0140195 0.0140344 0.0140492 0.014064 0.0140788 0.0140936 0.0141084 0.0141232 0.014138 +-0.00349574 -0.00306302 -0.00226902 -0.00115539 0.000148021 0.00155458 0.00301596 0.00450224 0.00599054 0.00745783 0.00887335 0.0101855 0.0112947 0.0120311 0.0123251 0.0123987 0.0124229 0.0124391 0.0124541 0.0124689 0.0124838 0.0124986 0.0125134 0.0125282 0.012543 0.0125578 0.0125726 0.0125874 0.0126023 0.0126171 0.0126319 0.0126467 0.0126615 0.0126763 0.0126911 0.0127059 0.0127208 0.0127356 0.0127504 0.0127652 0.01278 0.0127948 0.0128096 0.0128244 0.0128393 0.0128541 0.0128689 0.0128837 0.0128985 0.0129133 0.0129281 0.0129429 0.0129578 0.0129726 0.0129874 0.0130022 0.013017 0.0130318 0.0130466 0.0130614 0.0130763 0.0130911 0.0131059 0.0131207 0.0131355 0.0131503 0.0131651 0.0131799 0.0131948 0.0132096 0.0132244 0.0132392 0.013254 0.0132688 0.0132836 0.0132984 0.0133133 0.0133281 0.0133429 0.0133577 0.0133725 0.0133873 0.0134021 0.0134169 0.0134318 0.0134466 0.0134614 0.0134762 0.013491 0.0135058 0.0135206 0.0135354 0.0135503 0.0135651 0.0135799 0.0135947 0.0136095 0.0136243 0.0136391 0.0136539 0.0136688 0.0136836 0.0136984 0.0137132 0.013728 0.0137428 0.0137576 0.0137724 0.0137873 0.0138021 0.0138169 0.0138317 0.0138465 0.0138613 0.0138761 0.0138909 0.0139058 0.0139206 0.0139354 0.0139502 0.013965 0.0139798 0.0139946 0.0140094 0.0140243 0.0140391 0.0140539 0.0140687 0.0140835 0.0140983 0.0141131 0.0141279 0.0141428 +-0.00349701 -0.00306389 -0.00226943 -0.00115549 0.00014811 0.0015548 0.00301628 0.00450267 0.00599109 0.00745852 0.00887426 0.0101868 0.0112967 0.0120341 0.0123289 0.0124028 0.012427 0.0124432 0.0124583 0.0124731 0.0124879 0.0125027 0.0125176 0.0125324 0.0125472 0.012562 0.0125768 0.0125916 0.0126065 0.0126213 0.0126361 0.0126509 0.0126657 0.0126806 0.0126954 0.0127102 0.012725 0.0127398 0.0127546 0.0127695 0.0127843 0.0127991 0.0128139 0.0128287 0.0128435 0.0128584 0.0128732 0.012888 0.0129028 0.0129176 0.0129325 0.0129473 0.0129621 0.0129769 0.0129917 0.0130065 0.0130214 0.0130362 0.013051 0.0130658 0.0130806 0.0130954 0.0131103 0.0131251 0.0131399 0.0131547 0.0131695 0.0131844 0.0131992 0.013214 0.0132288 0.0132436 0.0132584 0.0132733 0.0132881 0.0133029 0.0133177 0.0133325 0.0133473 0.0133622 0.013377 0.0133918 0.0134066 0.0134214 0.0134362 0.0134511 0.0134659 0.0134807 0.0134955 0.0135103 0.0135252 0.01354 0.0135548 0.0135696 0.0135844 0.0135992 0.0136141 0.0136289 0.0136437 0.0136585 0.0136733 0.0136881 0.013703 0.0137178 0.0137326 0.0137474 0.0137622 0.0137771 0.0137919 0.0138067 0.0138215 0.0138363 0.0138511 0.013866 0.0138808 0.0138956 0.0139104 0.0139252 0.01394 0.0139549 0.0139697 0.0139845 0.0139993 0.0140141 0.014029 0.0140438 0.0140586 0.0140734 0.0140882 0.014103 0.0141179 0.0141327 0.0141475 +-0.00349827 -0.00306476 -0.00226984 -0.00115559 0.000148199 0.00155502 0.00301661 0.00450309 0.00599163 0.00745922 0.00887518 0.0101881 0.0112986 0.0120371 0.0123328 0.0124069 0.0124312 0.0124474 0.0124624 0.0124773 0.0124921 0.0125069 0.0125217 0.0125366 0.0125514 0.0125662 0.012581 0.0125958 0.0126107 0.0126255 0.0126403 0.0126551 0.01267 0.0126848 0.0126996 0.0127144 0.0127293 0.0127441 0.0127589 0.0127737 0.0127885 0.0128034 0.0128182 0.012833 0.0128478 0.0128627 0.0128775 0.0128923 0.0129071 0.012922 0.0129368 0.0129516 0.0129664 0.0129812 0.0129961 0.0130109 0.0130257 0.0130405 0.0130554 0.0130702 0.013085 0.0130998 0.0131146 0.0131295 0.0131443 0.0131591 0.0131739 0.0131888 0.0132036 0.0132184 0.0132332 0.0132481 0.0132629 0.0132777 0.0132925 0.0133073 0.0133222 0.013337 0.0133518 0.0133666 0.0133815 0.0133963 0.0134111 0.0134259 0.0134407 0.0134556 0.0134704 0.0134852 0.0135 0.0135149 0.0135297 0.0135445 0.0135593 0.0135742 0.013589 0.0136038 0.0136186 0.0136334 0.0136483 0.0136631 0.0136779 0.0136927 0.0137076 0.0137224 0.0137372 0.013752 0.0137668 0.0137817 0.0137965 0.0138113 0.0138261 0.013841 0.0138558 0.0138706 0.0138854 0.0139003 0.0139151 0.0139299 0.0139447 0.0139595 0.0139744 0.0139892 0.014004 0.0140188 0.0140337 0.0140485 0.0140633 0.0140781 0.0140929 0.0141078 0.0141226 0.0141374 0.0141522 +-0.00349953 -0.00306563 -0.00227025 -0.00115569 0.000148288 0.00155524 0.00301694 0.00450352 0.00599218 0.00745991 0.00887609 0.0101893 0.0113006 0.0120401 0.0123366 0.012411 0.0124353 0.0124515 0.0124666 0.0124814 0.0124963 0.0125111 0.0125259 0.0125407 0.0125556 0.0125704 0.0125852 0.0126001 0.0126149 0.0126297 0.0126445 0.0126594 0.0126742 0.012689 0.0127038 0.0127187 0.0127335 0.0127483 0.0127632 0.012778 0.0127928 0.0128076 0.0128225 0.0128373 0.0128521 0.012867 0.0128818 0.0128966 0.0129114 0.0129263 0.0129411 0.0129559 0.0129708 0.0129856 0.0130004 0.0130152 0.0130301 0.0130449 0.0130597 0.0130745 0.0130894 0.0131042 0.013119 0.0131339 0.0131487 0.0131635 0.0131783 0.0131932 0.013208 0.0132228 0.0132377 0.0132525 0.0132673 0.0132821 0.013297 0.0133118 0.0133266 0.0133414 0.0133563 0.0133711 0.0133859 0.0134008 0.0134156 0.0134304 0.0134452 0.0134601 0.0134749 0.0134897 0.0135046 0.0135194 0.0135342 0.013549 0.0135639 0.0135787 0.0135935 0.0136084 0.0136232 0.013638 0.0136528 0.0136677 0.0136825 0.0136973 0.0137121 0.013727 0.0137418 0.0137566 0.0137715 0.0137863 0.0138011 0.0138159 0.0138308 0.0138456 0.0138604 0.0138753 0.0138901 0.0139049 0.0139197 0.0139346 0.0139494 0.0139642 0.013979 0.0139939 0.0140087 0.0140235 0.0140384 0.0140532 0.014068 0.0140828 0.0140977 0.0141125 0.0141273 0.0141422 0.014157 +-0.00350079 -0.00306649 -0.00227066 -0.00115579 0.000148378 0.00155546 0.00301726 0.00450395 0.00599272 0.0074606 0.008877 0.0101906 0.0113025 0.0120431 0.0123405 0.0124151 0.0124394 0.0124557 0.0124707 0.0124856 0.0125004 0.0125153 0.0125301 0.0125449 0.0125598 0.0125746 0.0125894 0.0126043 0.0126191 0.0126339 0.0126488 0.0126636 0.0126784 0.0126933 0.0127081 0.0127229 0.0127378 0.0127526 0.0127674 0.0127823 0.0127971 0.0128119 0.0128268 0.0128416 0.0128564 0.0128712 0.0128861 0.0129009 0.0129157 0.0129306 0.0129454 0.0129602 0.0129751 0.0129899 0.0130047 0.0130196 0.0130344 0.0130492 0.0130641 0.0130789 0.0130937 0.0131086 0.0131234 0.0131382 0.0131531 0.0131679 0.0131827 0.0131976 0.0132124 0.0132272 0.0132421 0.0132569 0.0132717 0.0132866 0.0133014 0.0133162 0.0133311 0.0133459 0.0133607 0.0133756 0.0133904 0.0134052 0.0134201 0.0134349 0.0134497 0.0134646 0.0134794 0.0134942 0.0135091 0.0135239 0.0135387 0.0135536 0.0135684 0.0135832 0.0135981 0.0136129 0.0136277 0.0136426 0.0136574 0.0136722 0.0136871 0.0137019 0.0137167 0.0137316 0.0137464 0.0137612 0.0137761 0.0137909 0.0138057 0.0138206 0.0138354 0.0138502 0.0138651 0.0138799 0.0138947 0.0139096 0.0139244 0.0139392 0.0139541 0.0139689 0.0139837 0.0139986 0.0140134 0.0140282 0.0140431 0.0140579 0.0140727 0.0140876 0.0141024 0.0141172 0.0141321 0.0141469 0.0141617 +-0.00350205 -0.00306736 -0.00227107 -0.00115589 0.000148467 0.00155568 0.00301759 0.00450438 0.00599326 0.00746129 0.00887791 0.0101919 0.0113044 0.0120461 0.0123443 0.0124192 0.0124436 0.0124598 0.0124749 0.0124897 0.0125046 0.0125194 0.0125343 0.0125491 0.0125639 0.0125788 0.0125936 0.0126085 0.0126233 0.0126381 0.012653 0.0126678 0.0126826 0.0126975 0.0127123 0.0127272 0.012742 0.0127568 0.0127717 0.0127865 0.0128014 0.0128162 0.012831 0.0128459 0.0128607 0.0128755 0.0128904 0.0129052 0.0129201 0.0129349 0.0129497 0.0129646 0.0129794 0.0129942 0.0130091 0.0130239 0.0130388 0.0130536 0.0130684 0.0130833 0.0130981 0.013113 0.0131278 0.0131426 0.0131575 0.0131723 0.0131871 0.013202 0.0132168 0.0132317 0.0132465 0.0132613 0.0132762 0.013291 0.0133059 0.0133207 0.0133355 0.0133504 0.0133652 0.01338 0.0133949 0.0134097 0.0134246 0.0134394 0.0134542 0.0134691 0.0134839 0.0134987 0.0135136 0.0135284 0.0135433 0.0135581 0.0135729 0.0135878 0.0136026 0.0136175 0.0136323 0.0136471 0.013662 0.0136768 0.0136916 0.0137065 0.0137213 0.0137362 0.013751 0.0137658 0.0137807 0.0137955 0.0138104 0.0138252 0.01384 0.0138549 0.0138697 0.0138845 0.0138994 0.0139142 0.0139291 0.0139439 0.0139587 0.0139736 0.0139884 0.0140032 0.0140181 0.0140329 0.0140478 0.0140626 0.0140774 0.0140923 0.0141071 0.014122 0.0141368 0.0141516 0.0141665 +-0.00350331 -0.00306823 -0.00227148 -0.00115599 0.000148556 0.0015559 0.00301791 0.00450481 0.0059938 0.00746198 0.00887881 0.0101932 0.0113064 0.0120491 0.0123482 0.0124233 0.0124477 0.012464 0.012479 0.0124939 0.0125088 0.0125236 0.0125384 0.0125533 0.0125681 0.012583 0.0125978 0.0126127 0.0126275 0.0126423 0.0126572 0.012672 0.0126869 0.0127017 0.0127166 0.0127314 0.0127462 0.0127611 0.0127759 0.0127908 0.0128056 0.0128205 0.0128353 0.0128501 0.012865 0.0128798 0.0128947 0.0129095 0.0129244 0.0129392 0.0129541 0.0129689 0.0129837 0.0129986 0.0130134 0.0130283 0.0130431 0.013058 0.0130728 0.0130876 0.0131025 0.0131173 0.0131322 0.013147 0.0131619 0.0131767 0.0131915 0.0132064 0.0132212 0.0132361 0.0132509 0.0132658 0.0132806 0.0132955 0.0133103 0.0133251 0.01334 0.0133548 0.0133697 0.0133845 0.0133994 0.0134142 0.013429 0.0134439 0.0134587 0.0134736 0.0134884 0.0135033 0.0135181 0.0135329 0.0135478 0.0135626 0.0135775 0.0135923 0.0136072 0.013622 0.0136368 0.0136517 0.0136665 0.0136814 0.0136962 0.0137111 0.0137259 0.0137408 0.0137556 0.0137704 0.0137853 0.0138001 0.013815 0.0138298 0.0138447 0.0138595 0.0138743 0.0138892 0.013904 0.0139189 0.0139337 0.0139486 0.0139634 0.0139782 0.0139931 0.0140079 0.0140228 0.0140376 0.0140525 0.0140673 0.0140821 0.014097 0.0141118 0.0141267 0.0141415 0.0141564 0.0141712 +-0.00350457 -0.00306909 -0.00227189 -0.00115609 0.000148646 0.00155612 0.00301824 0.00450523 0.00599434 0.00746267 0.00887972 0.0101944 0.0113083 0.0120521 0.012352 0.0124274 0.0124518 0.0124681 0.0124832 0.0124981 0.0125129 0.0125278 0.0125426 0.0125575 0.0125723 0.0125872 0.012602 0.0126169 0.0126317 0.0126466 0.0126614 0.0126762 0.0126911 0.0127059 0.0127208 0.0127356 0.0127505 0.0127653 0.0127802 0.012795 0.0128099 0.0128247 0.0128396 0.0128544 0.0128693 0.0128841 0.012899 0.0129138 0.0129287 0.0129435 0.0129584 0.0129732 0.0129881 0.0130029 0.0130178 0.0130326 0.0130475 0.0130623 0.0130772 0.013092 0.0131069 0.0131217 0.0131366 0.0131514 0.0131662 0.0131811 0.0131959 0.0132108 0.0132256 0.0132405 0.0132553 0.0132702 0.013285 0.0132999 0.0133147 0.0133296 0.0133444 0.0133593 0.0133741 0.013389 0.0134038 0.0134187 0.0134335 0.0134484 0.0134632 0.0134781 0.0134929 0.0135078 0.0135226 0.0135375 0.0135523 0.0135672 0.013582 0.0135969 0.0136117 0.0136266 0.0136414 0.0136563 0.0136711 0.0136859 0.0137008 0.0137156 0.0137305 0.0137453 0.0137602 0.013775 0.0137899 0.0138047 0.0138196 0.0138344 0.0138493 0.0138641 0.013879 0.0138938 0.0139087 0.0139235 0.0139384 0.0139532 0.0139681 0.0139829 0.0139978 0.0140126 0.0140275 0.0140423 0.0140572 0.014072 0.0140869 0.0141017 0.0141166 0.0141314 0.0141463 0.0141611 0.0141759 +-0.00350583 -0.00306996 -0.0022723 -0.00115619 0.000148735 0.00155634 0.00301857 0.00450566 0.00599489 0.00746336 0.00888063 0.0101957 0.0113102 0.0120551 0.0123558 0.0124315 0.012456 0.0124723 0.0124873 0.0125022 0.0125171 0.0125319 0.0125468 0.0125616 0.0125765 0.0125913 0.0126062 0.0126211 0.0126359 0.0126508 0.0126656 0.0126805 0.0126953 0.0127102 0.012725 0.0127399 0.0127547 0.0127696 0.0127844 0.0127993 0.0128141 0.012829 0.0128439 0.0128587 0.0128736 0.0128884 0.0129033 0.0129181 0.012933 0.0129478 0.0129627 0.0129775 0.0129924 0.0130072 0.0130221 0.013037 0.0130518 0.0130667 0.0130815 0.0130964 0.0131112 0.0131261 0.0131409 0.0131558 0.0131706 0.0131855 0.0132003 0.0132152 0.0132301 0.0132449 0.0132598 0.0132746 0.0132895 0.0133043 0.0133192 0.013334 0.0133489 0.0133637 0.0133786 0.0133934 0.0134083 0.0134231 0.013438 0.0134529 0.0134677 0.0134826 0.0134974 0.0135123 0.0135271 0.013542 0.0135568 0.0135717 0.0135865 0.0136014 0.0136162 0.0136311 0.013646 0.0136608 0.0136757 0.0136905 0.0137054 0.0137202 0.0137351 0.0137499 0.0137648 0.0137796 0.0137945 0.0138093 0.0138242 0.0138391 0.0138539 0.0138688 0.0138836 0.0138985 0.0139133 0.0139282 0.013943 0.0139579 0.0139727 0.0139876 0.0140024 0.0140173 0.0140321 0.014047 0.0140619 0.0140767 0.0140916 0.0141064 0.0141213 0.0141361 0.014151 0.0141658 0.0141807 +-0.00350709 -0.00307082 -0.00227271 -0.00115629 0.000148824 0.00155656 0.00301889 0.00450609 0.00599543 0.00746405 0.00888153 0.010197 0.0113122 0.0120581 0.0123597 0.0124356 0.0124601 0.0124764 0.0124915 0.0125064 0.0125212 0.0125361 0.012551 0.0125658 0.0125807 0.0125955 0.0126104 0.0126252 0.0126401 0.012655 0.0126698 0.0126847 0.0126995 0.0127144 0.0127293 0.0127441 0.012759 0.0127738 0.0127887 0.0128036 0.0128184 0.0128333 0.0128481 0.012863 0.0128778 0.0128927 0.0129076 0.0129224 0.0129373 0.0129521 0.012967 0.0129819 0.0129967 0.0130116 0.0130264 0.0130413 0.0130562 0.013071 0.0130859 0.0131007 0.0131156 0.0131304 0.0131453 0.0131602 0.013175 0.0131899 0.0132047 0.0132196 0.0132345 0.0132493 0.0132642 0.013279 0.0132939 0.0133088 0.0133236 0.0133385 0.0133533 0.0133682 0.013383 0.0133979 0.0134128 0.0134276 0.0134425 0.0134573 0.0134722 0.0134871 0.0135019 0.0135168 0.0135316 0.0135465 0.0135614 0.0135762 0.0135911 0.0136059 0.0136208 0.0136356 0.0136505 0.0136654 0.0136802 0.0136951 0.0137099 0.0137248 0.0137397 0.0137545 0.0137694 0.0137842 0.0137991 0.013814 0.0138288 0.0138437 0.0138585 0.0138734 0.0138882 0.0139031 0.013918 0.0139328 0.0139477 0.0139625 0.0139774 0.0139923 0.0140071 0.014022 0.0140368 0.0140517 0.0140666 0.0140814 0.0140963 0.0141111 0.014126 0.0141408 0.0141557 0.0141706 0.0141854 +-0.00350835 -0.00307169 -0.00227312 -0.00115639 0.000148914 0.00155678 0.00301922 0.00450652 0.00599597 0.00746474 0.00888244 0.0101982 0.0113141 0.0120611 0.0123635 0.0124396 0.0124642 0.0124806 0.0124956 0.0125105 0.0125254 0.0125403 0.0125551 0.01257 0.0125849 0.0125997 0.0126146 0.0126294 0.0126443 0.0126592 0.012674 0.0126889 0.0127038 0.0127186 0.0127335 0.0127484 0.0127632 0.0127781 0.0127929 0.0128078 0.0128227 0.0128375 0.0128524 0.0128673 0.0128821 0.012897 0.0129119 0.0129267 0.0129416 0.0129565 0.0129713 0.0129862 0.013001 0.0130159 0.0130308 0.0130456 0.0130605 0.0130754 0.0130902 0.0131051 0.01312 0.0131348 0.0131497 0.0131645 0.0131794 0.0131943 0.0132091 0.013224 0.0132389 0.0132537 0.0132686 0.0132835 0.0132983 0.0133132 0.0133281 0.0133429 0.0133578 0.0133726 0.0133875 0.0134024 0.0134172 0.0134321 0.013447 0.0134618 0.0134767 0.0134916 0.0135064 0.0135213 0.0135361 0.013551 0.0135659 0.0135807 0.0135956 0.0136105 0.0136253 0.0136402 0.0136551 0.0136699 0.0136848 0.0136996 0.0137145 0.0137294 0.0137442 0.0137591 0.013774 0.0137888 0.0138037 0.0138186 0.0138334 0.0138483 0.0138632 0.013878 0.0138929 0.0139077 0.0139226 0.0139375 0.0139523 0.0139672 0.0139821 0.0139969 0.0140118 0.0140267 0.0140415 0.0140564 0.0140712 0.0140861 0.014101 0.0141158 0.0141307 0.0141456 0.0141604 0.0141753 0.0141902 +-0.00350961 -0.00307255 -0.00227352 -0.00115649 0.000149003 0.001557 0.00301954 0.00450694 0.00599651 0.00746543 0.00888334 0.0101995 0.011316 0.0120641 0.0123673 0.0124437 0.0124684 0.0124847 0.0124998 0.0125147 0.0125296 0.0125444 0.0125593 0.0125742 0.012589 0.0126039 0.0126188 0.0126336 0.0126485 0.0126634 0.0126782 0.0126931 0.012708 0.0127229 0.0127377 0.0127526 0.0127675 0.0127823 0.0127972 0.0128121 0.0128269 0.0128418 0.0128567 0.0128715 0.0128864 0.0129013 0.0129162 0.012931 0.0129459 0.0129608 0.0129756 0.0129905 0.0130054 0.0130202 0.0130351 0.01305 0.0130648 0.0130797 0.0130946 0.0131095 0.0131243 0.0131392 0.0131541 0.0131689 0.0131838 0.0131987 0.0132135 0.0132284 0.0132433 0.0132581 0.013273 0.0132879 0.0133027 0.0133176 0.0133325 0.0133474 0.0133622 0.0133771 0.013392 0.0134068 0.0134217 0.0134366 0.0134514 0.0134663 0.0134812 0.013496 0.0135109 0.0135258 0.0135407 0.0135555 0.0135704 0.0135853 0.0136001 0.013615 0.0136299 0.0136447 0.0136596 0.0136745 0.0136893 0.0137042 0.0137191 0.013734 0.0137488 0.0137637 0.0137786 0.0137934 0.0138083 0.0138232 0.013838 0.0138529 0.0138678 0.0138826 0.0138975 0.0139124 0.0139273 0.0139421 0.013957 0.0139719 0.0139867 0.0140016 0.0140165 0.0140313 0.0140462 0.0140611 0.0140759 0.0140908 0.0141057 0.0141205 0.0141354 0.0141503 0.0141652 0.01418 0.0141949 +-0.00351087 -0.00307341 -0.00227393 -0.00115659 0.000149093 0.00155722 0.00301987 0.00450737 0.00599705 0.00746611 0.00888425 0.0102008 0.0113179 0.0120671 0.0123712 0.0124478 0.0124725 0.0124888 0.0125039 0.0125188 0.0125337 0.0125486 0.0125635 0.0125783 0.0125932 0.0126081 0.012623 0.0126378 0.0126527 0.0126676 0.0126825 0.0126973 0.0127122 0.0127271 0.012742 0.0127568 0.0127717 0.0127866 0.0128014 0.0128163 0.0128312 0.0128461 0.0128609 0.0128758 0.0128907 0.0129056 0.0129204 0.0129353 0.0129502 0.0129651 0.0129799 0.0129948 0.0130097 0.0130246 0.0130394 0.0130543 0.0130692 0.0130841 0.0130989 0.0131138 0.0131287 0.0131436 0.0131584 0.0131733 0.0131882 0.0132031 0.0132179 0.0132328 0.0132477 0.0132626 0.0132774 0.0132923 0.0133072 0.013322 0.0133369 0.0133518 0.0133667 0.0133815 0.0133964 0.0134113 0.0134262 0.013441 0.0134559 0.0134708 0.0134857 0.0135005 0.0135154 0.0135303 0.0135452 0.01356 0.0135749 0.0135898 0.0136047 0.0136195 0.0136344 0.0136493 0.0136642 0.013679 0.0136939 0.0137088 0.0137237 0.0137385 0.0137534 0.0137683 0.0137831 0.013798 0.0138129 0.0138278 0.0138426 0.0138575 0.0138724 0.0138873 0.0139021 0.013917 0.0139319 0.0139468 0.0139616 0.0139765 0.0139914 0.0140063 0.0140211 0.014036 0.0140509 0.0140658 0.0140806 0.0140955 0.0141104 0.0141253 0.0141401 0.014155 0.0141699 0.0141848 0.0141996 +-0.00351212 -0.00307427 -0.00227434 -0.00115669 0.000149182 0.00155744 0.00302019 0.00450779 0.00599759 0.0074668 0.00888515 0.010202 0.0113198 0.01207 0.012375 0.0124519 0.0124766 0.012493 0.0125081 0.012523 0.0125379 0.0125527 0.0125676 0.0125825 0.0125974 0.0126123 0.0126271 0.012642 0.0126569 0.0126718 0.0126867 0.0127015 0.0127164 0.0127313 0.0127462 0.0127611 0.0127759 0.0127908 0.0128057 0.0128206 0.0128355 0.0128503 0.0128652 0.0128801 0.012895 0.0129099 0.0129247 0.0129396 0.0129545 0.0129694 0.0129843 0.0129991 0.013014 0.0130289 0.0130438 0.0130586 0.0130735 0.0130884 0.0131033 0.0131182 0.013133 0.0131479 0.0131628 0.0131777 0.0131926 0.0132074 0.0132223 0.0132372 0.0132521 0.013267 0.0132818 0.0132967 0.0133116 0.0133265 0.0133414 0.0133562 0.0133711 0.013386 0.0134009 0.0134158 0.0134306 0.0134455 0.0134604 0.0134753 0.0134902 0.013505 0.0135199 0.0135348 0.0135497 0.0135645 0.0135794 0.0135943 0.0136092 0.0136241 0.0136389 0.0136538 0.0136687 0.0136836 0.0136985 0.0137133 0.0137282 0.0137431 0.013758 0.0137729 0.0137877 0.0138026 0.0138175 0.0138324 0.0138473 0.0138621 0.013877 0.0138919 0.0139068 0.0139217 0.0139365 0.0139514 0.0139663 0.0139812 0.013996 0.0140109 0.0140258 0.0140407 0.0140556 0.0140704 0.0140853 0.0141002 0.0141151 0.01413 0.0141448 0.0141597 0.0141746 0.0141895 0.0142044 +-0.00351338 -0.00307513 -0.00227474 -0.00115678 0.000149271 0.00155766 0.00302051 0.00450822 0.00599813 0.00746749 0.00888605 0.0102033 0.0113217 0.012073 0.0123788 0.012456 0.0124808 0.0124971 0.0125122 0.0125271 0.012542 0.0125569 0.0125718 0.0125867 0.0126016 0.0126164 0.0126313 0.0126462 0.0126611 0.012676 0.0126909 0.0127058 0.0127206 0.0127355 0.0127504 0.0127653 0.0127802 0.0127951 0.0128099 0.0128248 0.0128397 0.0128546 0.0128695 0.0128844 0.0128993 0.0129141 0.012929 0.0129439 0.0129588 0.0129737 0.0129886 0.0130034 0.0130183 0.0130332 0.0130481 0.013063 0.0130779 0.0130928 0.0131076 0.0131225 0.0131374 0.0131523 0.0131672 0.0131821 0.0131969 0.0132118 0.0132267 0.0132416 0.0132565 0.0132714 0.0132863 0.0133011 0.013316 0.0133309 0.0133458 0.0133607 0.0133756 0.0133904 0.0134053 0.0134202 0.0134351 0.01345 0.0134649 0.0134798 0.0134946 0.0135095 0.0135244 0.0135393 0.0135542 0.0135691 0.0135839 0.0135988 0.0136137 0.0136286 0.0136435 0.0136584 0.0136732 0.0136881 0.013703 0.0137179 0.0137328 0.0137477 0.0137626 0.0137774 0.0137923 0.0138072 0.0138221 0.013837 0.0138519 0.0138667 0.0138816 0.0138965 0.0139114 0.0139263 0.0139412 0.0139561 0.0139709 0.0139858 0.0140007 0.0140156 0.0140305 0.0140454 0.0140602 0.0140751 0.01409 0.0141049 0.0141198 0.0141347 0.0141496 0.0141644 0.0141793 0.0141942 0.0142091 +-0.00351464 -0.00307599 -0.00227515 -0.00115688 0.000149361 0.00155788 0.00302084 0.00450864 0.00599867 0.00746817 0.00888695 0.0102045 0.0113237 0.012076 0.0123826 0.01246 0.0124849 0.0125013 0.0125164 0.0125313 0.0125462 0.0125611 0.012576 0.0125909 0.0126057 0.0126206 0.0126355 0.0126504 0.0126653 0.0126802 0.0126951 0.01271 0.0127249 0.0127397 0.0127546 0.0127695 0.0127844 0.0127993 0.0128142 0.0128291 0.012844 0.0128589 0.0128738 0.0128886 0.0129035 0.0129184 0.0129333 0.0129482 0.0129631 0.012978 0.0129929 0.0130078 0.0130226 0.0130375 0.0130524 0.0130673 0.0130822 0.0130971 0.013112 0.0131269 0.0131418 0.0131567 0.0131715 0.0131864 0.0132013 0.0132162 0.0132311 0.013246 0.0132609 0.0132758 0.0132907 0.0133056 0.0133204 0.0133353 0.0133502 0.0133651 0.01338 0.0133949 0.0134098 0.0134247 0.0134396 0.0134544 0.0134693 0.0134842 0.0134991 0.013514 0.0135289 0.0135438 0.0135587 0.0135736 0.0135885 0.0136033 0.0136182 0.0136331 0.013648 0.0136629 0.0136778 0.0136927 0.0137076 0.0137225 0.0137374 0.0137522 0.0137671 0.013782 0.0137969 0.0138118 0.0138267 0.0138416 0.0138565 0.0138714 0.0138862 0.0139011 0.013916 0.0139309 0.0139458 0.0139607 0.0139756 0.0139905 0.0140054 0.0140203 0.0140351 0.01405 0.0140649 0.0140798 0.0140947 0.0141096 0.0141245 0.0141394 0.0141543 0.0141692 0.014184 0.0141989 0.0142138 +-0.00351589 -0.00307685 -0.00227555 -0.00115698 0.00014945 0.00155809 0.00302116 0.00450907 0.00599921 0.00746886 0.00888785 0.0102058 0.0113256 0.0120789 0.0123865 0.0124641 0.012489 0.0125054 0.0125205 0.0125354 0.0125503 0.0125652 0.0125801 0.012595 0.0126099 0.0126248 0.0126397 0.0126546 0.0126695 0.0126844 0.0126993 0.0127142 0.0127291 0.012744 0.0127589 0.0127738 0.0127887 0.0128035 0.0128184 0.0128333 0.0128482 0.0128631 0.012878 0.0128929 0.0129078 0.0129227 0.0129376 0.0129525 0.0129674 0.0129823 0.0129972 0.0130121 0.013027 0.0130419 0.0130568 0.0130717 0.0130865 0.0131014 0.0131163 0.0131312 0.0131461 0.013161 0.0131759 0.0131908 0.0132057 0.0132206 0.0132355 0.0132504 0.0132653 0.0132802 0.0132951 0.01331 0.0133249 0.0133398 0.0133547 0.0133695 0.0133844 0.0133993 0.0134142 0.0134291 0.013444 0.0134589 0.0134738 0.0134887 0.0135036 0.0135185 0.0135334 0.0135483 0.0135632 0.0135781 0.013593 0.0136079 0.0136228 0.0136377 0.0136525 0.0136674 0.0136823 0.0136972 0.0137121 0.013727 0.0137419 0.0137568 0.0137717 0.0137866 0.0138015 0.0138164 0.0138313 0.0138462 0.0138611 0.013876 0.0138909 0.0139058 0.0139207 0.0139355 0.0139504 0.0139653 0.0139802 0.0139951 0.01401 0.0140249 0.0140398 0.0140547 0.0140696 0.0140845 0.0140994 0.0141143 0.0141292 0.0141441 0.014159 0.0141739 0.0141888 0.0142037 0.0142186 +-0.00351715 -0.00307771 -0.00227596 -0.00115708 0.000149539 0.00155831 0.00302149 0.0045095 0.00599974 0.00746954 0.00888875 0.0102071 0.0113275 0.0120819 0.0123903 0.0124682 0.0124931 0.0125095 0.0125247 0.0125396 0.0125545 0.0125694 0.0125843 0.0125992 0.0126141 0.012629 0.0126439 0.0126588 0.0126737 0.0126886 0.0127035 0.0127184 0.0127333 0.0127482 0.0127631 0.012778 0.0127929 0.0128078 0.0128227 0.0128376 0.0128525 0.0128674 0.0128823 0.0128972 0.0129121 0.012927 0.0129419 0.0129568 0.0129717 0.0129866 0.0130015 0.0130164 0.0130313 0.0130462 0.0130611 0.013076 0.0130909 0.0131058 0.0131207 0.0131356 0.0131505 0.0131654 0.0131803 0.0131952 0.0132101 0.013225 0.0132399 0.0132548 0.0132697 0.0132846 0.0132995 0.0133144 0.0133293 0.0133442 0.0133591 0.013374 0.0133889 0.0134038 0.0134187 0.0134336 0.0134485 0.0134634 0.0134783 0.0134932 0.0135081 0.013523 0.0135379 0.0135528 0.0135677 0.0135826 0.0135975 0.0136124 0.0136273 0.0136422 0.0136571 0.013672 0.0136869 0.0137018 0.0137167 0.0137316 0.0137465 0.0137614 0.0137763 0.0137912 0.0138061 0.013821 0.0138359 0.0138508 0.0138657 0.0138806 0.0138955 0.0139104 0.0139253 0.0139402 0.0139551 0.01397 0.0139849 0.0139998 0.0140147 0.0140296 0.0140445 0.0140594 0.0140743 0.0140892 0.0141041 0.014119 0.0141339 0.0141488 0.0141637 0.0141786 0.0141935 0.0142084 0.0142233 +-0.0035184 -0.00307857 -0.00227636 -0.00115718 0.000149629 0.00155853 0.00302181 0.00450992 0.00600028 0.00747023 0.00888965 0.0102083 0.0113294 0.0120849 0.0123941 0.0124723 0.0124973 0.0125137 0.0125288 0.0125437 0.0125586 0.0125735 0.0125884 0.0126034 0.0126183 0.0126332 0.0126481 0.012663 0.0126779 0.0126928 0.0127077 0.0127226 0.0127375 0.0127524 0.0127673 0.0127822 0.0127971 0.012812 0.0128269 0.0128418 0.0128567 0.0128716 0.0128866 0.0129015 0.0129164 0.0129313 0.0129462 0.0129611 0.012976 0.0129909 0.0130058 0.0130207 0.0130356 0.0130505 0.0130654 0.0130803 0.0130952 0.0131101 0.013125 0.0131399 0.0131548 0.0131697 0.0131847 0.0131996 0.0132145 0.0132294 0.0132443 0.0132592 0.0132741 0.013289 0.0133039 0.0133188 0.0133337 0.0133486 0.0133635 0.0133784 0.0133933 0.0134082 0.0134231 0.013438 0.0134529 0.0134678 0.0134828 0.0134977 0.0135126 0.0135275 0.0135424 0.0135573 0.0135722 0.0135871 0.013602 0.0136169 0.0136318 0.0136467 0.0136616 0.0136765 0.0136914 0.0137063 0.0137212 0.0137361 0.013751 0.0137659 0.0137809 0.0137958 0.0138107 0.0138256 0.0138405 0.0138554 0.0138703 0.0138852 0.0139001 0.013915 0.0139299 0.0139448 0.0139597 0.0139746 0.0139895 0.0140044 0.0140193 0.0140342 0.0140491 0.0140641 0.014079 0.0140939 0.0141088 0.0141237 0.0141386 0.0141535 0.0141684 0.0141833 0.0141982 0.0142131 0.014228 +-0.00351966 -0.00307943 -0.00227677 -0.00115728 0.000149718 0.00155875 0.00302213 0.00451034 0.00600082 0.00747091 0.00889055 0.0102096 0.0113313 0.0120878 0.0123979 0.0124763 0.0125014 0.0125178 0.0125329 0.0125479 0.0125628 0.0125777 0.0125926 0.0126075 0.0126224 0.0126373 0.0126523 0.0126672 0.0126821 0.012697 0.0127119 0.0127268 0.0127417 0.0127566 0.0127715 0.0127864 0.0128014 0.0128163 0.0128312 0.0128461 0.012861 0.0128759 0.0128908 0.0129057 0.0129206 0.0129355 0.0129505 0.0129654 0.0129803 0.0129952 0.0130101 0.013025 0.0130399 0.0130548 0.0130697 0.0130846 0.0130996 0.0131145 0.0131294 0.0131443 0.0131592 0.0131741 0.013189 0.0132039 0.0132188 0.0132337 0.0132487 0.0132636 0.0132785 0.0132934 0.0133083 0.0133232 0.0133381 0.013353 0.0133679 0.0133829 0.0133978 0.0134127 0.0134276 0.0134425 0.0134574 0.0134723 0.0134872 0.0135021 0.013517 0.013532 0.0135469 0.0135618 0.0135767 0.0135916 0.0136065 0.0136214 0.0136363 0.0136512 0.0136661 0.0136811 0.013696 0.0137109 0.0137258 0.0137407 0.0137556 0.0137705 0.0137854 0.0138003 0.0138152 0.0138302 0.0138451 0.01386 0.0138749 0.0138898 0.0139047 0.0139196 0.0139345 0.0139494 0.0139643 0.0139793 0.0139942 0.0140091 0.014024 0.0140389 0.0140538 0.0140687 0.0140836 0.0140985 0.0141134 0.0141284 0.0141433 0.0141582 0.0141731 0.014188 0.0142029 0.0142178 0.0142327 +-0.00352091 -0.00308029 -0.00227717 -0.00115738 0.000149807 0.00155897 0.00302246 0.00451077 0.00600136 0.00747159 0.00889145 0.0102108 0.0113332 0.0120908 0.0124017 0.0124804 0.0125055 0.0125219 0.0125371 0.012552 0.0125669 0.0125819 0.0125968 0.0126117 0.0126266 0.0126415 0.0126564 0.0126713 0.0126863 0.0127012 0.0127161 0.012731 0.0127459 0.0127608 0.0127758 0.0127907 0.0128056 0.0128205 0.0128354 0.0128503 0.0128652 0.0128802 0.0128951 0.01291 0.0129249 0.0129398 0.0129547 0.0129697 0.0129846 0.0129995 0.0130144 0.0130293 0.0130442 0.0130591 0.0130741 0.013089 0.0131039 0.0131188 0.0131337 0.0131486 0.0131636 0.0131785 0.0131934 0.0132083 0.0132232 0.0132381 0.013253 0.013268 0.0132829 0.0132978 0.0133127 0.0133276 0.0133425 0.0133575 0.0133724 0.0133873 0.0134022 0.0134171 0.013432 0.0134469 0.0134619 0.0134768 0.0134917 0.0135066 0.0135215 0.0135364 0.0135514 0.0135663 0.0135812 0.0135961 0.013611 0.0136259 0.0136408 0.0136558 0.0136707 0.0136856 0.0137005 0.0137154 0.0137303 0.0137453 0.0137602 0.0137751 0.01379 0.0138049 0.0138198 0.0138347 0.0138497 0.0138646 0.0138795 0.0138944 0.0139093 0.0139242 0.0139391 0.0139541 0.013969 0.0139839 0.0139988 0.0140137 0.0140286 0.0140436 0.0140585 0.0140734 0.0140883 0.0141032 0.0141181 0.014133 0.014148 0.0141629 0.0141778 0.0141927 0.0142076 0.0142225 0.0142375 +-0.00352216 -0.00308114 -0.00227758 -0.00115747 0.000149897 0.00155919 0.00302278 0.00451119 0.00600189 0.00747228 0.00889234 0.0102121 0.0113351 0.0120937 0.0124055 0.0124845 0.0125096 0.0125261 0.0125412 0.0125562 0.0125711 0.012586 0.0126009 0.0126159 0.0126308 0.0126457 0.0126606 0.0126755 0.0126905 0.0127054 0.0127203 0.0127352 0.0127501 0.0127651 0.01278 0.0127949 0.0128098 0.0128247 0.0128397 0.0128546 0.0128695 0.0128844 0.0128993 0.0129143 0.0129292 0.0129441 0.012959 0.0129739 0.0129889 0.0130038 0.0130187 0.0130336 0.0130485 0.0130635 0.0130784 0.0130933 0.0131082 0.0131231 0.0131381 0.013153 0.0131679 0.0131828 0.0131977 0.0132127 0.0132276 0.0132425 0.0132574 0.0132724 0.0132873 0.0133022 0.0133171 0.013332 0.013347 0.0133619 0.0133768 0.0133917 0.0134066 0.0134216 0.0134365 0.0134514 0.0134663 0.0134812 0.0134962 0.0135111 0.013526 0.0135409 0.0135558 0.0135708 0.0135857 0.0136006 0.0136155 0.0136304 0.0136454 0.0136603 0.0136752 0.0136901 0.013705 0.01372 0.0137349 0.0137498 0.0137647 0.0137796 0.0137946 0.0138095 0.0138244 0.0138393 0.0138542 0.0138692 0.0138841 0.013899 0.0139139 0.0139289 0.0139438 0.0139587 0.0139736 0.0139885 0.0140035 0.0140184 0.0140333 0.0140482 0.0140631 0.0140781 0.014093 0.0141079 0.0141228 0.0141377 0.0141527 0.0141676 0.0141825 0.0141974 0.0142123 0.0142273 0.0142422 +-0.00352342 -0.003082 -0.00227798 -0.00115757 0.000149986 0.00155941 0.0030231 0.00451162 0.00600243 0.00747296 0.00889324 0.0102133 0.011337 0.0120967 0.0124093 0.0124886 0.0125137 0.0125302 0.0125453 0.0125603 0.0125752 0.0125902 0.0126051 0.01262 0.0126349 0.0126499 0.0126648 0.0126797 0.0126946 0.0127096 0.0127245 0.0127394 0.0127543 0.0127693 0.0127842 0.0127991 0.012814 0.012829 0.0128439 0.0128588 0.0128737 0.0128887 0.0129036 0.0129185 0.0129335 0.0129484 0.0129633 0.0129782 0.0129932 0.0130081 0.013023 0.0130379 0.0130529 0.0130678 0.0130827 0.0130976 0.0131126 0.0131275 0.0131424 0.0131573 0.0131723 0.0131872 0.0132021 0.013217 0.013232 0.0132469 0.0132618 0.0132767 0.0132917 0.0133066 0.0133215 0.0133364 0.0133514 0.0133663 0.0133812 0.0133961 0.0134111 0.013426 0.0134409 0.0134558 0.0134708 0.0134857 0.0135006 0.0135155 0.0135305 0.0135454 0.0135603 0.0135753 0.0135902 0.0136051 0.01362 0.013635 0.0136499 0.0136648 0.0136797 0.0136947 0.0137096 0.0137245 0.0137394 0.0137544 0.0137693 0.0137842 0.0137991 0.0138141 0.013829 0.0138439 0.0138588 0.0138738 0.0138887 0.0139036 0.0139185 0.0139335 0.0139484 0.0139633 0.0139782 0.0139932 0.0140081 0.014023 0.0140379 0.0140529 0.0140678 0.0140827 0.0140976 0.0141126 0.0141275 0.0141424 0.0141573 0.0141723 0.0141872 0.0142021 0.0142171 0.014232 0.0142469 +-0.00352467 -0.00308286 -0.00227838 -0.00115767 0.000150076 0.00155962 0.00302343 0.00451204 0.00600297 0.00747364 0.00889413 0.0102146 0.0113389 0.0120996 0.0124131 0.0124926 0.0125179 0.0125343 0.0125495 0.0125644 0.0125794 0.0125943 0.0126092 0.0126242 0.0126391 0.012654 0.012669 0.0126839 0.0126988 0.0127138 0.0127287 0.0127436 0.0127586 0.0127735 0.0127884 0.0128033 0.0128183 0.0128332 0.0128481 0.0128631 0.012878 0.0128929 0.0129079 0.0129228 0.0129377 0.0129527 0.0129676 0.0129825 0.0129974 0.0130124 0.0130273 0.0130422 0.0130572 0.0130721 0.013087 0.013102 0.0131169 0.0131318 0.0131468 0.0131617 0.0131766 0.0131915 0.0132065 0.0132214 0.0132363 0.0132513 0.0132662 0.0132811 0.0132961 0.013311 0.0133259 0.0133409 0.0133558 0.0133707 0.0133856 0.0134006 0.0134155 0.0134304 0.0134454 0.0134603 0.0134752 0.0134902 0.0135051 0.01352 0.0135349 0.0135499 0.0135648 0.0135797 0.0135947 0.0136096 0.0136245 0.0136395 0.0136544 0.0136693 0.0136843 0.0136992 0.0137141 0.013729 0.013744 0.0137589 0.0137738 0.0137888 0.0138037 0.0138186 0.0138336 0.0138485 0.0138634 0.0138784 0.0138933 0.0139082 0.0139231 0.0139381 0.013953 0.0139679 0.0139829 0.0139978 0.0140127 0.0140277 0.0140426 0.0140575 0.0140725 0.0140874 0.0141023 0.0141172 0.0141322 0.0141471 0.014162 0.014177 0.0141919 0.0142068 0.0142218 0.0142367 0.0142516 +-0.00352592 -0.00308371 -0.00227878 -0.00115777 0.000150165 0.00155984 0.00302375 0.00451246 0.0060035 0.00747432 0.00889503 0.0102158 0.0113408 0.0121025 0.0124169 0.0124967 0.012522 0.0125385 0.0125536 0.0125686 0.0125835 0.0125985 0.0126134 0.0126283 0.0126433 0.0126582 0.0126731 0.0126881 0.012703 0.012718 0.0127329 0.0127478 0.0127628 0.0127777 0.0127926 0.0128076 0.0128225 0.0128374 0.0128524 0.0128673 0.0128822 0.0128972 0.0129121 0.0129271 0.012942 0.0129569 0.0129719 0.0129868 0.0130017 0.0130167 0.0130316 0.0130465 0.0130615 0.0130764 0.0130913 0.0131063 0.0131212 0.0131362 0.0131511 0.013166 0.013181 0.0131959 0.0132108 0.0132258 0.0132407 0.0132556 0.0132706 0.0132855 0.0133005 0.0133154 0.0133303 0.0133453 0.0133602 0.0133751 0.0133901 0.013405 0.0134199 0.0134349 0.0134498 0.0134647 0.0134797 0.0134946 0.0135096 0.0135245 0.0135394 0.0135544 0.0135693 0.0135842 0.0135992 0.0136141 0.013629 0.013644 0.0136589 0.0136738 0.0136888 0.0137037 0.0137187 0.0137336 0.0137485 0.0137635 0.0137784 0.0137933 0.0138083 0.0138232 0.0138381 0.0138531 0.013868 0.0138829 0.0138979 0.0139128 0.0139278 0.0139427 0.0139576 0.0139726 0.0139875 0.0140024 0.0140174 0.0140323 0.0140472 0.0140622 0.0140771 0.014092 0.014107 0.0141219 0.0141369 0.0141518 0.0141667 0.0141817 0.0141966 0.0142115 0.0142265 0.0142414 0.0142563 +-0.00352717 -0.00308456 -0.00227918 -0.00115786 0.000150254 0.00156006 0.00302407 0.00451289 0.00600404 0.007475 0.00889592 0.0102171 0.0113426 0.0121055 0.0124207 0.0125008 0.0125261 0.0125426 0.0125578 0.0125727 0.0125877 0.0126026 0.0126176 0.0126325 0.0126474 0.0126624 0.0126773 0.0126923 0.0127072 0.0127221 0.0127371 0.012752 0.012767 0.0127819 0.0127968 0.0128118 0.0128267 0.0128417 0.0128566 0.0128716 0.0128865 0.0129014 0.0129164 0.0129313 0.0129463 0.0129612 0.0129761 0.0129911 0.013006 0.013021 0.0130359 0.0130508 0.0130658 0.0130807 0.0130957 0.0131106 0.0131255 0.0131405 0.0131554 0.0131704 0.0131853 0.0132003 0.0132152 0.0132301 0.0132451 0.01326 0.013275 0.0132899 0.0133048 0.0133198 0.0133347 0.0133497 0.0133646 0.0133795 0.0133945 0.0134094 0.0134244 0.0134393 0.0134543 0.0134692 0.0134841 0.0134991 0.013514 0.013529 0.0135439 0.0135588 0.0135738 0.0135887 0.0136037 0.0136186 0.0136335 0.0136485 0.0136634 0.0136784 0.0136933 0.0137082 0.0137232 0.0137381 0.0137531 0.013768 0.013783 0.0137979 0.0138128 0.0138278 0.0138427 0.0138577 0.0138726 0.0138875 0.0139025 0.0139174 0.0139324 0.0139473 0.0139622 0.0139772 0.0139921 0.0140071 0.014022 0.0140369 0.0140519 0.0140668 0.0140818 0.0140967 0.0141117 0.0141266 0.0141415 0.0141565 0.0141714 0.0141864 0.0142013 0.0142162 0.0142312 0.0142461 0.0142611 +-0.00352842 -0.00308542 -0.00227959 -0.00115796 0.000150344 0.00156028 0.00302439 0.00451331 0.00600457 0.00747568 0.00889681 0.0102183 0.0113445 0.0121084 0.0124245 0.0125048 0.0125302 0.0125467 0.0125619 0.0125769 0.0125918 0.0126068 0.0126217 0.0126367 0.0126516 0.0126665 0.0126815 0.0126964 0.0127114 0.0127263 0.0127413 0.0127562 0.0127712 0.0127861 0.0128011 0.012816 0.012831 0.0128459 0.0128608 0.0128758 0.0128907 0.0129057 0.0129206 0.0129356 0.0129505 0.0129655 0.0129804 0.0129954 0.0130103 0.0130253 0.0130402 0.0130551 0.0130701 0.013085 0.0131 0.0131149 0.0131299 0.0131448 0.0131598 0.0131747 0.0131897 0.0132046 0.0132196 0.0132345 0.0132494 0.0132644 0.0132793 0.0132943 0.0133092 0.0133242 0.0133391 0.0133541 0.013369 0.013384 0.0133989 0.0134139 0.0134288 0.0134437 0.0134587 0.0134736 0.0134886 0.0135035 0.0135185 0.0135334 0.0135484 0.0135633 0.0135783 0.0135932 0.0136082 0.0136231 0.013638 0.013653 0.0136679 0.0136829 0.0136978 0.0137128 0.0137277 0.0137427 0.0137576 0.0137726 0.0137875 0.0138025 0.0138174 0.0138323 0.0138473 0.0138622 0.0138772 0.0138921 0.0139071 0.013922 0.013937 0.0139519 0.0139669 0.0139818 0.0139968 0.0140117 0.0140266 0.0140416 0.0140565 0.0140715 0.0140864 0.0141014 0.0141163 0.0141313 0.0141462 0.0141612 0.0141761 0.014191 0.014206 0.0142209 0.0142359 0.0142508 0.0142658 +-0.00352967 -0.00308627 -0.00227999 -0.00115806 0.000150433 0.0015605 0.00302472 0.00451373 0.00600511 0.00747636 0.0088977 0.0102195 0.0113464 0.0121113 0.0124283 0.0125089 0.0125343 0.0125508 0.012566 0.012581 0.012596 0.0126109 0.0126259 0.0126408 0.0126558 0.0126707 0.0126857 0.0127006 0.0127156 0.0127305 0.0127455 0.0127604 0.0127754 0.0127903 0.0128053 0.0128202 0.0128352 0.0128501 0.0128651 0.01288 0.012895 0.0129099 0.0129249 0.0129398 0.0129548 0.0129697 0.0129847 0.0129996 0.0130146 0.0130295 0.0130445 0.0130594 0.0130744 0.0130894 0.0131043 0.0131193 0.0131342 0.0131492 0.0131641 0.0131791 0.013194 0.013209 0.0132239 0.0132389 0.0132538 0.0132688 0.0132837 0.0132987 0.0133136 0.0133286 0.0133435 0.0133585 0.0133734 0.0133884 0.0134033 0.0134183 0.0134332 0.0134482 0.0134631 0.0134781 0.013493 0.013508 0.0135229 0.0135379 0.0135528 0.0135678 0.0135827 0.0135977 0.0136126 0.0136276 0.0136425 0.0136575 0.0136724 0.0136874 0.0137024 0.0137173 0.0137323 0.0137472 0.0137622 0.0137771 0.0137921 0.013807 0.013822 0.0138369 0.0138519 0.0138668 0.0138818 0.0138967 0.0139117 0.0139266 0.0139416 0.0139565 0.0139715 0.0139864 0.0140014 0.0140163 0.0140313 0.0140462 0.0140612 0.0140761 0.0140911 0.014106 0.014121 0.0141359 0.0141509 0.0141658 0.0141808 0.0141957 0.0142107 0.0142256 0.0142406 0.0142555 0.0142705 +-0.00353092 -0.00308712 -0.00228039 -0.00115815 0.000150523 0.00156071 0.00302504 0.00451415 0.00600564 0.00747704 0.0088986 0.0102208 0.0113483 0.0121143 0.0124321 0.0125129 0.0125384 0.012555 0.0125702 0.0125851 0.0126001 0.0126151 0.01263 0.012645 0.0126599 0.0126749 0.0126898 0.0127048 0.0127198 0.0127347 0.0127497 0.0127646 0.0127796 0.0127945 0.0128095 0.0128244 0.0128394 0.0128544 0.0128693 0.0128843 0.0128992 0.0129142 0.0129291 0.0129441 0.0129591 0.012974 0.012989 0.0130039 0.0130189 0.0130338 0.0130488 0.0130638 0.0130787 0.0130937 0.0131086 0.0131236 0.0131385 0.0131535 0.0131684 0.0131834 0.0131984 0.0132133 0.0132283 0.0132432 0.0132582 0.0132731 0.0132881 0.0133031 0.013318 0.013333 0.0133479 0.0133629 0.0133778 0.0133928 0.0134077 0.0134227 0.0134377 0.0134526 0.0134676 0.0134825 0.0134975 0.0135124 0.0135274 0.0135424 0.0135573 0.0135723 0.0135872 0.0136022 0.0136171 0.0136321 0.013647 0.013662 0.013677 0.0136919 0.0137069 0.0137218 0.0137368 0.0137517 0.0137667 0.0137817 0.0137966 0.0138116 0.0138265 0.0138415 0.0138564 0.0138714 0.0138863 0.0139013 0.0139163 0.0139312 0.0139462 0.0139611 0.0139761 0.013991 0.014006 0.014021 0.0140359 0.0140509 0.0140658 0.0140808 0.0140957 0.0141107 0.0141256 0.0141406 0.0141556 0.0141705 0.0141855 0.0142004 0.0142154 0.0142303 0.0142453 0.0142603 0.0142752 +-0.00353217 -0.00308798 -0.00228079 -0.00115825 0.000150612 0.00156093 0.00302536 0.00451458 0.00600618 0.00747772 0.00889949 0.010222 0.0113502 0.0121172 0.0124359 0.012517 0.0125426 0.0125591 0.0125743 0.0125893 0.0126042 0.0126192 0.0126342 0.0126491 0.0126641 0.0126791 0.012694 0.012709 0.0127239 0.0127389 0.0127539 0.0127688 0.0127838 0.0127987 0.0128137 0.0128287 0.0128436 0.0128586 0.0128736 0.0128885 0.0129035 0.0129184 0.0129334 0.0129484 0.0129633 0.0129783 0.0129932 0.0130082 0.0130232 0.0130381 0.0130531 0.013068 0.013083 0.013098 0.0131129 0.0131279 0.0131429 0.0131578 0.0131728 0.0131877 0.0132027 0.0132177 0.0132326 0.0132476 0.0132625 0.0132775 0.0132925 0.0133074 0.0133224 0.0133374 0.0133523 0.0133673 0.0133822 0.0133972 0.0134122 0.0134271 0.0134421 0.013457 0.013472 0.013487 0.0135019 0.0135169 0.0135319 0.0135468 0.0135618 0.0135767 0.0135917 0.0136067 0.0136216 0.0136366 0.0136515 0.0136665 0.0136815 0.0136964 0.0137114 0.0137264 0.0137413 0.0137563 0.0137712 0.0137862 0.0138012 0.0138161 0.0138311 0.013846 0.013861 0.013876 0.0138909 0.0139059 0.0139209 0.0139358 0.0139508 0.0139657 0.0139807 0.0139957 0.0140106 0.0140256 0.0140405 0.0140555 0.0140705 0.0140854 0.0141004 0.0141154 0.0141303 0.0141453 0.0141602 0.0141752 0.0141902 0.0142051 0.0142201 0.014235 0.01425 0.014265 0.0142799 +-0.00353342 -0.00308883 -0.00228119 -0.00115835 0.000150702 0.00156115 0.00302568 0.004515 0.00600671 0.0074784 0.00890037 0.0102233 0.0113521 0.0121201 0.0124397 0.0125211 0.0125467 0.0125632 0.0125784 0.0125934 0.0126084 0.0126234 0.0126383 0.0126533 0.0126683 0.0126832 0.0126982 0.0127132 0.0127281 0.0127431 0.0127581 0.012773 0.012788 0.012803 0.0128179 0.0128329 0.0128479 0.0128628 0.0128778 0.0128927 0.0129077 0.0129227 0.0129376 0.0129526 0.0129676 0.0129825 0.0129975 0.0130125 0.0130274 0.0130424 0.0130574 0.0130723 0.0130873 0.0131023 0.0131172 0.0131322 0.0131472 0.0131621 0.0131771 0.0131921 0.013207 0.013222 0.013237 0.0132519 0.0132669 0.0132819 0.0132968 0.0133118 0.0133268 0.0133417 0.0133567 0.0133717 0.0133866 0.0134016 0.0134166 0.0134315 0.0134465 0.0134615 0.0134764 0.0134914 0.0135064 0.0135213 0.0135363 0.0135513 0.0135662 0.0135812 0.0135962 0.0136111 0.0136261 0.0136411 0.013656 0.013671 0.013686 0.0137009 0.0137159 0.0137309 0.0137458 0.0137608 0.0137758 0.0137907 0.0138057 0.0138207 0.0138356 0.0138506 0.0138656 0.0138805 0.0138955 0.0139105 0.0139254 0.0139404 0.0139554 0.0139703 0.0139853 0.0140003 0.0140152 0.0140302 0.0140452 0.0140601 0.0140751 0.0140901 0.014105 0.01412 0.014135 0.0141499 0.0141649 0.0141799 0.0141948 0.0142098 0.0142248 0.0142397 0.0142547 0.0142697 0.0142846 +-0.00353467 -0.00308968 -0.00228159 -0.00115844 0.000150791 0.00156137 0.003026 0.00451542 0.00600725 0.00747908 0.00890126 0.0102245 0.0113539 0.012123 0.0124435 0.0125251 0.0125508 0.0125673 0.0125825 0.0125975 0.0126125 0.0126275 0.0126425 0.0126574 0.0126724 0.0126874 0.0127024 0.0127173 0.0127323 0.0127473 0.0127622 0.0127772 0.0127922 0.0128072 0.0128221 0.0128371 0.0128521 0.012867 0.012882 0.012897 0.012912 0.0129269 0.0129419 0.0129569 0.0129718 0.0129868 0.0130018 0.0130168 0.0130317 0.0130467 0.0130617 0.0130766 0.0130916 0.0131066 0.0131216 0.0131365 0.0131515 0.0131665 0.0131814 0.0131964 0.0132114 0.0132264 0.0132413 0.0132563 0.0132713 0.0132862 0.0133012 0.0133162 0.0133312 0.0133461 0.0133611 0.0133761 0.0133911 0.013406 0.013421 0.013436 0.0134509 0.0134659 0.0134809 0.0134959 0.0135108 0.0135258 0.0135408 0.0135557 0.0135707 0.0135857 0.0136007 0.0136156 0.0136306 0.0136456 0.0136605 0.0136755 0.0136905 0.0137055 0.0137204 0.0137354 0.0137504 0.0137653 0.0137803 0.0137953 0.0138103 0.0138252 0.0138402 0.0138552 0.0138701 0.0138851 0.0139001 0.0139151 0.01393 0.013945 0.01396 0.0139749 0.0139899 0.0140049 0.0140199 0.0140348 0.0140498 0.0140648 0.0140797 0.0140947 0.0141097 0.0141247 0.0141396 0.0141546 0.0141696 0.0141846 0.0141995 0.0142145 0.0142295 0.0142444 0.0142594 0.0142744 0.0142894 +-0.00353591 -0.00309053 -0.00228199 -0.00115854 0.00015088 0.00156158 0.00302632 0.00451584 0.00600778 0.00747975 0.00890215 0.0102257 0.0113558 0.0121259 0.0124473 0.0125292 0.0125549 0.0125715 0.0125867 0.0126017 0.0126167 0.0126316 0.0126466 0.0126616 0.0126766 0.0126915 0.0127065 0.0127215 0.0127365 0.0127515 0.0127664 0.0127814 0.0127964 0.0128114 0.0128263 0.0128413 0.0128563 0.0128713 0.0128862 0.0129012 0.0129162 0.0129312 0.0129462 0.0129611 0.0129761 0.0129911 0.0130061 0.013021 0.013036 0.013051 0.013066 0.0130809 0.0130959 0.0131109 0.0131259 0.0131409 0.0131558 0.0131708 0.0131858 0.0132008 0.0132157 0.0132307 0.0132457 0.0132607 0.0132756 0.0132906 0.0133056 0.0133206 0.0133355 0.0133505 0.0133655 0.0133805 0.0133955 0.0134104 0.0134254 0.0134404 0.0134554 0.0134703 0.0134853 0.0135003 0.0135153 0.0135302 0.0135452 0.0135602 0.0135752 0.0135902 0.0136051 0.0136201 0.0136351 0.0136501 0.013665 0.01368 0.013695 0.01371 0.0137249 0.0137399 0.0137549 0.0137699 0.0137849 0.0137998 0.0138148 0.0138298 0.0138448 0.0138597 0.0138747 0.0138897 0.0139047 0.0139196 0.0139346 0.0139496 0.0139646 0.0139796 0.0139945 0.0140095 0.0140245 0.0140395 0.0140544 0.0140694 0.0140844 0.0140994 0.0141143 0.0141293 0.0141443 0.0141593 0.0141742 0.0141892 0.0142042 0.0142192 0.0142342 0.0142491 0.0142641 0.0142791 0.0142941 +-0.00353716 -0.00309138 -0.00228239 -0.00115864 0.00015097 0.0015618 0.00302665 0.00451626 0.00600831 0.00748043 0.00890304 0.010227 0.0113577 0.0121288 0.0124511 0.0125332 0.012559 0.0125756 0.0125908 0.0126058 0.0126208 0.0126358 0.0126508 0.0126657 0.0126807 0.0126957 0.0127107 0.0127257 0.0127407 0.0127556 0.0127706 0.0127856 0.0128006 0.0128156 0.0128305 0.0128455 0.0128605 0.0128755 0.0128905 0.0129055 0.0129204 0.0129354 0.0129504 0.0129654 0.0129804 0.0129953 0.0130103 0.0130253 0.0130403 0.0130553 0.0130703 0.0130852 0.0131002 0.0131152 0.0131302 0.0131452 0.0131601 0.0131751 0.0131901 0.0132051 0.0132201 0.0132351 0.01325 0.013265 0.01328 0.013295 0.01331 0.0133249 0.0133399 0.0133549 0.0133699 0.0133849 0.0133999 0.0134148 0.0134298 0.0134448 0.0134598 0.0134748 0.0134898 0.0135047 0.0135197 0.0135347 0.0135497 0.0135647 0.0135796 0.0135946 0.0136096 0.0136246 0.0136396 0.0136546 0.0136695 0.0136845 0.0136995 0.0137145 0.0137295 0.0137444 0.0137594 0.0137744 0.0137894 0.0138044 0.0138194 0.0138343 0.0138493 0.0138643 0.0138793 0.0138943 0.0139092 0.0139242 0.0139392 0.0139542 0.0139692 0.0139842 0.0139991 0.0140141 0.0140291 0.0140441 0.0140591 0.014074 0.014089 0.014104 0.014119 0.014134 0.014149 0.0141639 0.0141789 0.0141939 0.0142089 0.0142239 0.0142388 0.0142538 0.0142688 0.0142838 0.0142988 +-0.00353841 -0.00309223 -0.00228278 -0.00115873 0.000151059 0.00156202 0.00302697 0.00451668 0.00600884 0.00748111 0.00890392 0.0102282 0.0113595 0.0121317 0.0124549 0.0125373 0.0125631 0.0125797 0.0125949 0.0126099 0.0126249 0.0126399 0.0126549 0.0126699 0.0126849 0.0126999 0.0127149 0.0127298 0.0127448 0.0127598 0.0127748 0.0127898 0.0128048 0.0128198 0.0128348 0.0128497 0.0128647 0.0128797 0.0128947 0.0129097 0.0129247 0.0129397 0.0129547 0.0129696 0.0129846 0.0129996 0.0130146 0.0130296 0.0130446 0.0130596 0.0130745 0.0130895 0.0131045 0.0131195 0.0131345 0.0131495 0.0131645 0.0131795 0.0131944 0.0132094 0.0132244 0.0132394 0.0132544 0.0132694 0.0132844 0.0132994 0.0133143 0.0133293 0.0133443 0.0133593 0.0133743 0.0133893 0.0134043 0.0134192 0.0134342 0.0134492 0.0134642 0.0134792 0.0134942 0.0135092 0.0135242 0.0135391 0.0135541 0.0135691 0.0135841 0.0135991 0.0136141 0.0136291 0.0136441 0.013659 0.013674 0.013689 0.013704 0.013719 0.013734 0.013749 0.0137639 0.0137789 0.0137939 0.0138089 0.0138239 0.0138389 0.0138539 0.0138689 0.0138838 0.0138988 0.0139138 0.0139288 0.0139438 0.0139588 0.0139738 0.0139888 0.0140037 0.0140187 0.0140337 0.0140487 0.0140637 0.0140787 0.0140937 0.0141087 0.0141236 0.0141386 0.0141536 0.0141686 0.0141836 0.0141986 0.0142136 0.0142285 0.0142435 0.0142585 0.0142735 0.0142885 0.0143035 +-0.00353965 -0.00309307 -0.00228318 -0.00115883 0.000151149 0.00156224 0.00302729 0.0045171 0.00600938 0.00748178 0.00890481 0.0102294 0.0113614 0.0121347 0.0124586 0.0125414 0.0125672 0.0125838 0.012599 0.0126141 0.0126291 0.0126441 0.0126591 0.012674 0.012689 0.012704 0.012719 0.012734 0.012749 0.012764 0.012779 0.012794 0.012809 0.012824 0.012839 0.012854 0.0128689 0.0128839 0.0128989 0.0129139 0.0129289 0.0129439 0.0129589 0.0129739 0.0129889 0.0130039 0.0130189 0.0130339 0.0130489 0.0130638 0.0130788 0.0130938 0.0131088 0.0131238 0.0131388 0.0131538 0.0131688 0.0131838 0.0131988 0.0132138 0.0132288 0.0132437 0.0132587 0.0132737 0.0132887 0.0133037 0.0133187 0.0133337 0.0133487 0.0133637 0.0133787 0.0133937 0.0134087 0.0134237 0.0134386 0.0134536 0.0134686 0.0134836 0.0134986 0.0135136 0.0135286 0.0135436 0.0135586 0.0135736 0.0135886 0.0136036 0.0136186 0.0136335 0.0136485 0.0136635 0.0136785 0.0136935 0.0137085 0.0137235 0.0137385 0.0137535 0.0137685 0.0137835 0.0137985 0.0138134 0.0138284 0.0138434 0.0138584 0.0138734 0.0138884 0.0139034 0.0139184 0.0139334 0.0139484 0.0139634 0.0139784 0.0139934 0.0140083 0.0140233 0.0140383 0.0140533 0.0140683 0.0140833 0.0140983 0.0141133 0.0141283 0.0141433 0.0141583 0.0141733 0.0141883 0.0142032 0.0142182 0.0142332 0.0142482 0.0142632 0.0142782 0.0142932 0.0143082 +-0.0035409 -0.00309392 -0.00228358 -0.00115892 0.000151238 0.00156245 0.00302761 0.00451752 0.00600991 0.00748246 0.00890569 0.0102307 0.0113633 0.0121376 0.0124624 0.0125454 0.0125713 0.0125879 0.0126032 0.0126182 0.0126332 0.0126482 0.0126632 0.0126782 0.0126932 0.0127082 0.0127232 0.0127382 0.0127532 0.0127682 0.0127832 0.0127982 0.0128132 0.0128282 0.0128432 0.0128582 0.0128732 0.0128882 0.0129032 0.0129182 0.0129331 0.0129481 0.0129631 0.0129781 0.0129931 0.0130081 0.0130231 0.0130381 0.0130531 0.0130681 0.0130831 0.0130981 0.0131131 0.0131281 0.0131431 0.0131581 0.0131731 0.0131881 0.0132031 0.0132181 0.0132331 0.0132481 0.0132631 0.0132781 0.0132931 0.0133081 0.0133231 0.0133381 0.0133531 0.0133681 0.0133831 0.0133981 0.0134131 0.0134281 0.0134431 0.0134581 0.0134731 0.013488 0.013503 0.013518 0.013533 0.013548 0.013563 0.013578 0.013593 0.013608 0.013623 0.013638 0.013653 0.013668 0.013683 0.013698 0.013713 0.013728 0.013743 0.013758 0.013773 0.013788 0.013803 0.013818 0.013833 0.013848 0.013863 0.013878 0.013893 0.013908 0.013923 0.013938 0.013953 0.013968 0.013983 0.013998 0.014013 0.0140279 0.0140429 0.0140579 0.0140729 0.0140879 0.0141029 0.0141179 0.0141329 0.0141479 0.0141629 0.0141779 0.0141929 0.0142079 0.0142229 0.0142379 0.0142529 0.0142679 0.0142829 0.0142979 0.0143129 +-0.00354214 -0.00309477 -0.00228398 -0.00115902 0.000151328 0.00156267 0.00302793 0.00451794 0.00601044 0.00748313 0.00890658 0.0102319 0.0113651 0.0121404 0.0124662 0.0125495 0.0125754 0.012592 0.0126073 0.0126223 0.0126373 0.0126523 0.0126673 0.0126823 0.0126973 0.0127123 0.0127274 0.0127424 0.0127574 0.0127724 0.0127874 0.0128024 0.0128174 0.0128324 0.0128474 0.0128624 0.0128774 0.0128924 0.0129074 0.0129224 0.0129374 0.0129524 0.0129674 0.0129824 0.0129974 0.0130124 0.0130274 0.0130424 0.0130574 0.0130724 0.0130874 0.0131024 0.0131174 0.0131324 0.0131474 0.0131624 0.0131774 0.0131924 0.0132074 0.0132224 0.0132374 0.0132524 0.0132674 0.0132824 0.0132974 0.0133124 0.0133274 0.0133424 0.0133575 0.0133725 0.0133875 0.0134025 0.0134175 0.0134325 0.0134475 0.0134625 0.0134775 0.0134925 0.0135075 0.0135225 0.0135375 0.0135525 0.0135675 0.0135825 0.0135975 0.0136125 0.0136275 0.0136425 0.0136575 0.0136725 0.0136875 0.0137025 0.0137175 0.0137325 0.0137475 0.0137625 0.0137775 0.0137925 0.0138075 0.0138225 0.0138375 0.0138525 0.0138675 0.0138825 0.0138975 0.0139125 0.0139275 0.0139425 0.0139575 0.0139725 0.0139876 0.0140026 0.0140176 0.0140326 0.0140476 0.0140626 0.0140776 0.0140926 0.0141076 0.0141226 0.0141376 0.0141526 0.0141676 0.0141826 0.0141976 0.0142126 0.0142276 0.0142426 0.0142576 0.0142726 0.0142876 0.0143026 0.0143176 +-0.00354339 -0.00309562 -0.00228437 -0.00115912 0.000151417 0.00156289 0.00302825 0.00451836 0.00601097 0.00748381 0.00890746 0.0102331 0.011367 0.0121433 0.01247 0.0125535 0.0125795 0.0125962 0.0126114 0.0126265 0.0126415 0.0126565 0.0126715 0.0126865 0.0127015 0.0127165 0.0127315 0.0127465 0.0127615 0.0127765 0.0127915 0.0128066 0.0128216 0.0128366 0.0128516 0.0128666 0.0128816 0.0128966 0.0129116 0.0129266 0.0129416 0.0129566 0.0129716 0.0129866 0.0130016 0.0130167 0.0130317 0.0130467 0.0130617 0.0130767 0.0130917 0.0131067 0.0131217 0.0131367 0.0131517 0.0131667 0.0131817 0.0131967 0.0132118 0.0132268 0.0132418 0.0132568 0.0132718 0.0132868 0.0133018 0.0133168 0.0133318 0.0133468 0.0133618 0.0133768 0.0133918 0.0134069 0.0134219 0.0134369 0.0134519 0.0134669 0.0134819 0.0134969 0.0135119 0.0135269 0.0135419 0.0135569 0.0135719 0.0135869 0.0136019 0.013617 0.013632 0.013647 0.013662 0.013677 0.013692 0.013707 0.013722 0.013737 0.013752 0.013767 0.013782 0.013797 0.0138121 0.0138271 0.0138421 0.0138571 0.0138721 0.0138871 0.0139021 0.0139171 0.0139321 0.0139471 0.0139621 0.0139771 0.0139921 0.0140072 0.0140222 0.0140372 0.0140522 0.0140672 0.0140822 0.0140972 0.0141122 0.0141272 0.0141422 0.0141572 0.0141722 0.0141872 0.0142022 0.0142173 0.0142323 0.0142473 0.0142623 0.0142773 0.0142923 0.0143073 0.0143223 +-0.00354463 -0.00309646 -0.00228477 -0.00115921 0.000151506 0.0015631 0.00302857 0.00451878 0.0060115 0.00748448 0.00890834 0.0102344 0.0113688 0.0121462 0.0124737 0.0125576 0.0125836 0.0126003 0.0126155 0.0126306 0.0126456 0.0126606 0.0126756 0.0126906 0.0127057 0.0127207 0.0127357 0.0127507 0.0127657 0.0127807 0.0127957 0.0128107 0.0128258 0.0128408 0.0128558 0.0128708 0.0128858 0.0129008 0.0129158 0.0129308 0.0129459 0.0129609 0.0129759 0.0129909 0.0130059 0.0130209 0.0130359 0.0130509 0.013066 0.013081 0.013096 0.013111 0.013126 0.013141 0.013156 0.013171 0.0131861 0.0132011 0.0132161 0.0132311 0.0132461 0.0132611 0.0132761 0.0132911 0.0133062 0.0133212 0.0133362 0.0133512 0.0133662 0.0133812 0.0133962 0.0134112 0.0134263 0.0134413 0.0134563 0.0134713 0.0134863 0.0135013 0.0135163 0.0135313 0.0135464 0.0135614 0.0135764 0.0135914 0.0136064 0.0136214 0.0136364 0.0136514 0.0136665 0.0136815 0.0136965 0.0137115 0.0137265 0.0137415 0.0137565 0.0137715 0.0137866 0.0138016 0.0138166 0.0138316 0.0138466 0.0138616 0.0138766 0.0138916 0.0139067 0.0139217 0.0139367 0.0139517 0.0139667 0.0139817 0.0139967 0.0140117 0.0140268 0.0140418 0.0140568 0.0140718 0.0140868 0.0141018 0.0141168 0.0141318 0.0141469 0.0141619 0.0141769 0.0141919 0.0142069 0.0142219 0.0142369 0.0142519 0.014267 0.014282 0.014297 0.014312 0.014327 +-0.00354588 -0.00309731 -0.00228517 -0.00115931 0.000151596 0.00156332 0.00302889 0.0045192 0.00601203 0.00748515 0.00890923 0.0102356 0.0113707 0.0121491 0.0124775 0.0125616 0.0125877 0.0126044 0.0126197 0.0126347 0.0126497 0.0126647 0.0126798 0.0126948 0.0127098 0.0127248 0.0127398 0.0127549 0.0127699 0.0127849 0.0127999 0.0128149 0.0128299 0.012845 0.01286 0.012875 0.01289 0.012905 0.01292 0.0129351 0.0129501 0.0129651 0.0129801 0.0129951 0.0130102 0.0130252 0.0130402 0.0130552 0.0130702 0.0130852 0.0131003 0.0131153 0.0131303 0.0131453 0.0131603 0.0131754 0.0131904 0.0132054 0.0132204 0.0132354 0.0132504 0.0132655 0.0132805 0.0132955 0.0133105 0.0133255 0.0133405 0.0133556 0.0133706 0.0133856 0.0134006 0.0134156 0.0134307 0.0134457 0.0134607 0.0134757 0.0134907 0.0135057 0.0135208 0.0135358 0.0135508 0.0135658 0.0135808 0.0135958 0.0136109 0.0136259 0.0136409 0.0136559 0.0136709 0.013686 0.013701 0.013716 0.013731 0.013746 0.013761 0.0137761 0.0137911 0.0138061 0.0138211 0.0138361 0.0138511 0.0138662 0.0138812 0.0138962 0.0139112 0.0139262 0.0139413 0.0139563 0.0139713 0.0139863 0.0140013 0.0140163 0.0140314 0.0140464 0.0140614 0.0140764 0.0140914 0.0141064 0.0141215 0.0141365 0.0141515 0.0141665 0.0141815 0.0141966 0.0142116 0.0142266 0.0142416 0.0142566 0.0142716 0.0142867 0.0143017 0.0143167 0.0143317 +-0.00354712 -0.00309815 -0.00228556 -0.0011594 0.000151685 0.00156354 0.00302921 0.00451962 0.00601256 0.00748582 0.00891011 0.0102368 0.0113725 0.012152 0.0124813 0.0125657 0.0125918 0.0126085 0.0126238 0.0126388 0.0126539 0.0126689 0.0126839 0.0126989 0.012714 0.012729 0.012744 0.012759 0.012774 0.0127891 0.0128041 0.0128191 0.0128341 0.0128492 0.0128642 0.0128792 0.0128942 0.0129092 0.0129243 0.0129393 0.0129543 0.0129693 0.0129844 0.0129994 0.0130144 0.0130294 0.0130445 0.0130595 0.0130745 0.0130895 0.0131045 0.0131196 0.0131346 0.0131496 0.0131646 0.0131797 0.0131947 0.0132097 0.0132247 0.0132397 0.0132548 0.0132698 0.0132848 0.0132998 0.0133149 0.0133299 0.0133449 0.0133599 0.013375 0.01339 0.013405 0.01342 0.013435 0.0134501 0.0134651 0.0134801 0.0134951 0.0135102 0.0135252 0.0135402 0.0135552 0.0135703 0.0135853 0.0136003 0.0136153 0.0136303 0.0136454 0.0136604 0.0136754 0.0136904 0.0137055 0.0137205 0.0137355 0.0137505 0.0137655 0.0137806 0.0137956 0.0138106 0.0138256 0.0138407 0.0138557 0.0138707 0.0138857 0.0139008 0.0139158 0.0139308 0.0139458 0.0139608 0.0139759 0.0139909 0.0140059 0.0140209 0.014036 0.014051 0.014066 0.014081 0.014096 0.0141111 0.0141261 0.0141411 0.0141561 0.0141712 0.0141862 0.0142012 0.0142162 0.0142313 0.0142463 0.0142613 0.0142763 0.0142913 0.0143064 0.0143214 0.0143364 +-0.00354836 -0.00309899 -0.00228596 -0.0011595 0.000151775 0.00156375 0.00302953 0.00452004 0.00601309 0.0074865 0.00891099 0.010238 0.0113744 0.0121549 0.012485 0.0125697 0.0125959 0.0126126 0.0126279 0.012643 0.012658 0.012673 0.012688 0.0127031 0.0127181 0.0127331 0.0127482 0.0127632 0.0127782 0.0127932 0.0128083 0.0128233 0.0128383 0.0128534 0.0128684 0.0128834 0.0128984 0.0129135 0.0129285 0.0129435 0.0129585 0.0129736 0.0129886 0.0130036 0.0130187 0.0130337 0.0130487 0.0130637 0.0130788 0.0130938 0.0131088 0.0131239 0.0131389 0.0131539 0.0131689 0.013184 0.013199 0.013214 0.013229 0.0132441 0.0132591 0.0132741 0.0132892 0.0133042 0.0133192 0.0133342 0.0133493 0.0133643 0.0133793 0.0133944 0.0134094 0.0134244 0.0134394 0.0134545 0.0134695 0.0134845 0.0134996 0.0135146 0.0135296 0.0135446 0.0135597 0.0135747 0.0135897 0.0136047 0.0136198 0.0136348 0.0136498 0.0136649 0.0136799 0.0136949 0.0137099 0.013725 0.01374 0.013755 0.0137701 0.0137851 0.0138001 0.0138151 0.0138302 0.0138452 0.0138602 0.0138752 0.0138903 0.0139053 0.0139203 0.0139354 0.0139504 0.0139654 0.0139804 0.0139955 0.0140105 0.0140255 0.0140406 0.0140556 0.0140706 0.0140856 0.0141007 0.0141157 0.0141307 0.0141458 0.0141608 0.0141758 0.0141908 0.0142059 0.0142209 0.0142359 0.0142509 0.014266 0.014281 0.014296 0.0143111 0.0143261 0.0143411 +-0.0035496 -0.00309984 -0.00228635 -0.00115959 0.000151864 0.00156397 0.00302985 0.00452046 0.00601362 0.00748717 0.00891187 0.0102393 0.0113762 0.0121578 0.0124888 0.0125737 0.0126 0.0126167 0.012632 0.0126471 0.0126621 0.0126771 0.0126922 0.0127072 0.0127222 0.0127373 0.0127523 0.0127673 0.0127824 0.0127974 0.0128124 0.0128275 0.0128425 0.0128575 0.0128726 0.0128876 0.0129026 0.0129177 0.0129327 0.0129477 0.0129628 0.0129778 0.0129928 0.0130079 0.0130229 0.0130379 0.013053 0.013068 0.013083 0.0130981 0.0131131 0.0131281 0.0131432 0.0131582 0.0131732 0.0131883 0.0132033 0.0132183 0.0132334 0.0132484 0.0132634 0.0132785 0.0132935 0.0133085 0.0133236 0.0133386 0.0133536 0.0133687 0.0133837 0.0133987 0.0134138 0.0134288 0.0134438 0.0134589 0.0134739 0.0134889 0.013504 0.013519 0.013534 0.0135491 0.0135641 0.0135791 0.0135942 0.0136092 0.0136242 0.0136393 0.0136543 0.0136693 0.0136844 0.0136994 0.0137144 0.0137295 0.0137445 0.0137595 0.0137746 0.0137896 0.0138046 0.0138197 0.0138347 0.0138497 0.0138648 0.0138798 0.0138948 0.0139099 0.0139249 0.0139399 0.013955 0.01397 0.013985 0.0140001 0.0140151 0.0140301 0.0140452 0.0140602 0.0140752 0.0140903 0.0141053 0.0141203 0.0141354 0.0141504 0.0141654 0.0141804 0.0141955 0.0142105 0.0142255 0.0142406 0.0142556 0.0142706 0.0142857 0.0143007 0.0143157 0.0143308 0.0143458 +-0.00355085 -0.00310068 -0.00228675 -0.00115968 0.000151954 0.00156419 0.00303017 0.00452088 0.00601415 0.00748784 0.00891275 0.0102405 0.0113781 0.0121606 0.0124926 0.0125778 0.0126041 0.0126208 0.0126361 0.0126512 0.0126662 0.0126813 0.0126963 0.0127114 0.0127264 0.0127414 0.0127565 0.0127715 0.0127865 0.0128016 0.0128166 0.0128317 0.0128467 0.0128617 0.0128768 0.0128918 0.0129069 0.0129219 0.0129369 0.012952 0.012967 0.012982 0.0129971 0.0130121 0.0130272 0.0130422 0.0130572 0.0130723 0.0130873 0.0131023 0.0131174 0.0131324 0.0131475 0.0131625 0.0131775 0.0131926 0.0132076 0.0132227 0.0132377 0.0132527 0.0132678 0.0132828 0.0132978 0.0133129 0.0133279 0.013343 0.013358 0.013373 0.0133881 0.0134031 0.0134181 0.0134332 0.0134482 0.0134633 0.0134783 0.0134933 0.0135084 0.0135234 0.0135385 0.0135535 0.0135685 0.0135836 0.0135986 0.0136136 0.0136287 0.0136437 0.0136588 0.0136738 0.0136888 0.0137039 0.0137189 0.0137339 0.013749 0.013764 0.0137791 0.0137941 0.0138091 0.0138242 0.0138392 0.0138543 0.0138693 0.0138843 0.0138994 0.0139144 0.0139294 0.0139445 0.0139595 0.0139746 0.0139896 0.0140046 0.0140197 0.0140347 0.0140497 0.0140648 0.0140798 0.0140949 0.0141099 0.0141249 0.01414 0.014155 0.0141701 0.0141851 0.0142001 0.0142152 0.0142302 0.0142452 0.0142603 0.0142753 0.0142904 0.0143054 0.0143204 0.0143355 0.0143505 +-0.00355209 -0.00310152 -0.00228714 -0.00115978 0.000152043 0.0015644 0.00303049 0.0045213 0.00601468 0.00748851 0.00891362 0.0102417 0.0113799 0.0121635 0.0124963 0.0125818 0.0126082 0.0126249 0.0126402 0.0126553 0.0126704 0.0126854 0.0127005 0.0127155 0.0127305 0.0127456 0.0127606 0.0127757 0.0127907 0.0128058 0.0128208 0.0128358 0.0128509 0.0128659 0.012881 0.012896 0.0129111 0.0129261 0.0129411 0.0129562 0.0129712 0.0129863 0.0130013 0.0130164 0.0130314 0.0130464 0.0130615 0.0130765 0.0130916 0.0131066 0.0131217 0.0131367 0.0131518 0.0131668 0.0131818 0.0131969 0.0132119 0.013227 0.013242 0.0132571 0.0132721 0.0132871 0.0133022 0.0133172 0.0133323 0.0133473 0.0133624 0.0133774 0.0133924 0.0134075 0.0134225 0.0134376 0.0134526 0.0134677 0.0134827 0.0134977 0.0135128 0.0135278 0.0135429 0.0135579 0.013573 0.013588 0.013603 0.0136181 0.0136331 0.0136482 0.0136632 0.0136783 0.0136933 0.0137083 0.0137234 0.0137384 0.0137535 0.0137685 0.0137836 0.0137986 0.0138137 0.0138287 0.0138437 0.0138588 0.0138738 0.0138889 0.0139039 0.013919 0.013934 0.013949 0.0139641 0.0139791 0.0139942 0.0140092 0.0140243 0.0140393 0.0140543 0.0140694 0.0140844 0.0140995 0.0141145 0.0141296 0.0141446 0.0141596 0.0141747 0.0141897 0.0142048 0.0142198 0.0142349 0.0142499 0.0142649 0.01428 0.014295 0.0143101 0.0143251 0.0143402 0.0143552 diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4-2d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4-2d.sp new file mode 100644 index 000000000..51027ca30 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4-2d.sp @@ -0,0 +1,90 @@ +** NMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +*.csparam vdstart=-0.1 +*.csparam vdstop=1.8 +*.csparam vdstep=0.05 +*.csparam vgstart=-0.1 +*.csparam vgstop=1.8 +*.csparam vgstep=0.05 + +*PMOS +.csparam vdstart=-1.8 +.csparam vdstop=0.1 +.csparam vdstep=0.01 +.csparam vgstart=-1.8 +.csparam vgstop=0.1 +.csparam vgstep=0.01 + +** Circuit Description ** +*m1 2 1 3 0 n1 L=0.13u W=10.0u rgeoMod=1 +m1 2 1 3 0 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 + +.control +** output file ** +set outfile = "bsim4p-2d-1.table" + +*dc vds 0 1.8 0.05 vgs 0 1.8 0.3 +save i(vss) +echo *table for nmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +let xvec = vector(xcount) +let yvec = vector(ycount) +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep +* let lcx=0 +* let loopx = vdstart +* dowhile loopx le vdstop +* alter vds loopx +* op +* let xvec[lcx] = i(vss) +* destroy i(vss) +* let loopx = loopx + vdstep +* let lcx = lcx + 1 +* end + let xvec = vss#branch ; i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +rusage + +quit + +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4-3d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4-3d.sp new file mode 100644 index 000000000..eb425c37c --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4-3d.sp @@ -0,0 +1,110 @@ +** NMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +.csparam vdstart=-0.1 +.csparam vdstop=1.8 +.csparam vdstep=0.05 +.csparam vgstart=-0.1 +.csparam vgstop=1.8 +.csparam vgstep=0.05 +.csparam vbstart=-1.8 +.csparam vbstop=0.4 +.csparam vbstep=0.2 + +*PMOS +*.csparam vdstart=-1.8 +*.csparam vdstop=0.1 +*.csparam vdstep=0.05 +*.csparam vgstart=-1.8 +*.csparam vgstop=0.1 +*.csparam vgstep=0.05 +*.csparam vbstart=-0.4 +*.csparam vbstop=1.8 +*.csparam vbstep=0.2 + +** Circuit Description ** +m1 2 1 3 4 n1 L=0.13u W=10.0u rgeoMod=1 +*m1 2 1 3 4 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 +vbs 4 0 0 + +.control +** output file ** +set outfile = "bsim4n-3d-1.table" + +save i(vss) +echo * 3D table for nmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +let zcount = floor((vbstop-vbstart)/vbstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +echo *z >> $outfile +echo $&zcount >> $outfile + +let xvec = vector(xcount) +let yvec = vector(ycount) +let zvec = vector(zcount) + +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + let zvec[lcz] = loopz + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +echo *z tables >> $outfile +echo $&zvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + echo *table $&loopz >> $outfile + alter vbs loopz + let lcy=0 + let loopy = vgstart + while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep + let xvec = i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 + end + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +rusage + +quit +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4n-2d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4n-2d.sp new file mode 100644 index 000000000..13231af4b --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4n-2d.sp @@ -0,0 +1,90 @@ +** NMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +.csparam vdstart=-0.1 +.csparam vdstop=1.8 +.csparam vdstep=0.01 +.csparam vgstart=-0.1 +.csparam vgstop=1.8 +.csparam vgstep=0.01 + +*PMOS +*.csparam vdstart=-1.8 +*.csparam vdstop=0.1 +*.csparam vdstep=0.01 +*.csparam vgstart=-1.8 +*.csparam vgstop=0.1 +*.csparam vgstep=0.01 + +** Circuit Description ** +m1 2 1 3 0 n1 L=0.13u W=10.0u rgeoMod=1 +*m1 2 1 3 0 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 + +.control +** output file ** +set outfile = "bsim4n-2d-1.table" + +*dc vds 0 1.8 0.05 vgs 0 1.8 0.3 +save i(vss) +echo *table for nmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +let xvec = vector(xcount) +let yvec = vector(ycount) +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep +* let lcx=0 +* let loopx = vdstart +* dowhile loopx le vdstop +* alter vds loopx +* op +* let xvec[lcx] = i(vss) +* destroy i(vss) +* let loopx = loopx + vdstep +* let lcx = lcx + 1 +* end + let xvec = vss#branch ; i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +rusage + +quit + +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4n-3d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4n-3d.sp new file mode 100644 index 000000000..eb425c37c --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4n-3d.sp @@ -0,0 +1,110 @@ +** NMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +.csparam vdstart=-0.1 +.csparam vdstop=1.8 +.csparam vdstep=0.05 +.csparam vgstart=-0.1 +.csparam vgstop=1.8 +.csparam vgstep=0.05 +.csparam vbstart=-1.8 +.csparam vbstop=0.4 +.csparam vbstep=0.2 + +*PMOS +*.csparam vdstart=-1.8 +*.csparam vdstop=0.1 +*.csparam vdstep=0.05 +*.csparam vgstart=-1.8 +*.csparam vgstop=0.1 +*.csparam vgstep=0.05 +*.csparam vbstart=-0.4 +*.csparam vbstop=1.8 +*.csparam vbstep=0.2 + +** Circuit Description ** +m1 2 1 3 4 n1 L=0.13u W=10.0u rgeoMod=1 +*m1 2 1 3 4 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 +vbs 4 0 0 + +.control +** output file ** +set outfile = "bsim4n-3d-1.table" + +save i(vss) +echo * 3D table for nmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +let zcount = floor((vbstop-vbstart)/vbstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +echo *z >> $outfile +echo $&zcount >> $outfile + +let xvec = vector(xcount) +let yvec = vector(ycount) +let zvec = vector(zcount) + +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + let zvec[lcz] = loopz + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +echo *z tables >> $outfile +echo $&zvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + echo *table $&loopz >> $outfile + alter vbs loopz + let lcy=0 + let loopy = vgstart + while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep + let xvec = i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 + end + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +rusage + +quit +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4p-2d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4p-2d.sp new file mode 100644 index 000000000..1f9cefca0 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4p-2d.sp @@ -0,0 +1,91 @@ +** PMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +*.csparam vdstart=-0.1 +*.csparam vdstop=1.8 +*.csparam vdstep=0.05 +*.csparam vgstart=-0.1 +*.csparam vgstop=1.8 +*.csparam vgstep=0.05 + +*PMOS +.csparam vdstart=-1.8 +.csparam vdstop=0.1 +.csparam vdstep=0.01 +.csparam vgstart=-1.8 +.csparam vgstop=0.1 +.csparam vgstep=0.01 + +** Circuit Description ** +*m1 2 1 3 0 n1 L=0.13u W=10.0u rgeoMod=1 +m1 2 1 3 0 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 + +.control +** output file ** +set outfile = "bsim4p-2d-1.table" + +*dc vds 0 1.8 0.05 vgs 0 1.8 0.3 +save i(vss) +*echo *table for nmos bsim 4 > $outfile +echo *table for pmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +let xvec = vector(xcount) +let yvec = vector(ycount) +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep +* let lcx=0 +* let loopx = vdstart +* dowhile loopx le vdstop +* alter vds loopx +* op +* let xvec[lcx] = i(vss) +* destroy i(vss) +* let loopx = loopx + vdstep +* let lcx = lcx + 1 +* end + let xvec = vss#branch ; i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +rusage + +quit + +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-b4p-3d.sp b/paranoia_parallel/examples/xspice/table/table-generator-b4p-3d.sp new file mode 100644 index 000000000..cb0f134f8 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-b4p-3d.sp @@ -0,0 +1,112 @@ +** NMOSFET: table generator with BSIM4 2D (Vdrain, Vgate) +*NMOS +*.csparam vdstart=-0.1 +*.csparam vdstop=1.8 +*.csparam vdstep=0.05 +*.csparam vgstart=-0.1 +*.csparam vgstop=1.8 +*.csparam vgstep=0.05 +*.csparam vbstart=-1.8 +*.csparam vbstop=0.4 +*.csparam vbstep=0.2 + +*PMOS +.csparam vdstart=-1.8 +.csparam vdstop=0.1 +.csparam vdstep=0.05 +.csparam vgstart=-1.8 +.csparam vgstop=0.1 +.csparam vgstep=0.05 +.csparam vbstart=-0.4 +.csparam vbstop=1.8 +.csparam vbstep=0.2 + +** Circuit Description ** +*m1 2 1 3 4 n1 L=0.13u W=10.0u rgeoMod=1 +m1 2 1 3 4 p1 L=0.13u W=10.0u rgeoMod=1 +vgs 1 0 1.8 +vds 2 0 1.8 +vss 3 0 0 +vbs 4 0 0 + +.control +** output file ** +*set outfile = "bsim4n-3d-1.table" +set outfile = "bsim4p-3d-1.table" + +save i(vss) +*echo * 3D table for nmos bsim 4 > $outfile +echo * 3D table for pmos bsim 4 > $outfile + +let xcount = floor((vdstop-vdstart)/vdstep) + 1 +let ycount = floor((vgstop-vgstart)/vgstep) + 1 +let zcount = floor((vbstop-vbstart)/vbstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +echo *z >> $outfile +echo $&zcount >> $outfile + +let xvec = vector(xcount) +let yvec = vector(ycount) +let zvec = vector(zcount) + +let loopx = vdstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vdstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile + +let lcy=0 +let loopy = vgstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + vgstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + let zvec[lcz] = loopz + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +echo *z tables >> $outfile +echo $&zvec >> $outfile + +let lcz=0 +let loopz = vbstart +while lcz < zcount + echo *table $&loopz >> $outfile + alter vbs loopz + let lcy=0 + let loopy = vgstart + while lcy < ycount + alter vgs loopy + dc vds $&vdstart $&vdstop $&vdstep + let xvec = i(vss) + echo $&xvec >> $outfile + destroy dc1 + let loopy = loopy + vgstep + let lcy = lcy + 1 + end + let loopz = loopz + vbstep + let lcz = lcz + 1 +end +rusage + +quit +.endc + + +.include ./modelcards/modelcard.pmos +.include ./modelcards/modelcard.nmos +.end diff --git a/paranoia_parallel/examples/xspice/table/table-generator-q-2d.sp b/paranoia_parallel/examples/xspice/table/table-generator-q-2d.sp new file mode 100644 index 000000000..0c773b264 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-generator-q-2d.sp @@ -0,0 +1,104 @@ +** npn bipolar: table generator with q 2D (Vce, Ib) +*NMOS +.csparam vcstart=-0.2 +.csparam vcstop=6.4 +.csparam vcstep=0.05 +.csparam ibstart=-0.1u +.csparam ibstop=200u +.csparam ibstep=0.1u + + +** Circuit Description ** +Q3 2 1 3 QINN + +ib 0 11 2u +Rb 11 1 1 +vce 2 0 5 +vee 3 0 0 + +.control +** output file ** +set outfile = "qinn-clc409-2d-1.table" +dc vce -0.1 6 0.05 ib -0.1u 2u 0.1u +if not $?batchmode +*plot i(vee) +*plot v(1) ylimit -0.2 0.8 +endif +if (1) +*goto next +echo *table for bipolar qinn CLC409 > $outfile + +let xcount = floor((vcstop-vcstart)/vcstep) + 1 +let ycount = floor((ibstop-ibstart)/ibstep) + 1 +echo *x >> $outfile +echo $&xcount >> $outfile +echo *y >> $outfile +echo $&ycount >> $outfile +let xvec = vector(xcount) +let yvec = vector(ycount) + +let loopx = vcstart +let lcx=0 +while lcx < xcount + let xvec[lcx] = loopx + let loopx = loopx + vcstep + let lcx = lcx + 1 +end +echo *x row >> $outfile +echo $&xvec >> $outfile + +let lcy=0 +let loopy = ibstart +while lcy < ycount + let yvec[lcy] = loopy + let loopy = loopy + ibstep + let lcy = lcy + 1 +end +echo *y column >> $outfile +echo $&yvec >> $outfile + +let lcy=0 +let loopy = ibstart +while lcy < ycount + alter ib loopy + dc vce $&vcstart $&vcstop $&vcstep +* let lcx=0 +* let loopx = vdstart +* dowhile loopx le vdstop +* alter vds loopx +* op +* let xvec[lcx] = i(vss) +* destroy i(vss) +* let loopx = loopx + vdstep +* let lcx = lcx + 1 +* end + let xvec = i(vee) + echo $&xvec >> $outfile + destroy dc2 + let loopy = loopy + ibstep + let lcy = lcy + 1 +end + + + +label next +end + +rusage +quit +.endc + + +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1-oc.sp b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1-oc.sp new file mode 100644 index 000000000..6f39e94ec --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1-oc.sp @@ -0,0 +1,51 @@ +** npn bipolar: table 2D (Vce, Ib) compared to q model +* bipolar transistor qinn from National Semi op-amp clc409 +* please run the table generator table-generator-q-2d.sp in ngspice to +* create the table data file qinn-clc409-2d-1.table as required here + +** Circuit Description ** +Q3 2 1 3 QINN +ib 0 1 2u +vce 2 0 5 +vee 3 0 0 + +xbip cc bb ee tbqnpn +ib2 0 bb 2u +vce2 cc 0 1 +vee2 ee 0 0 + +* set a simulation temperature +.options temp=1 + +.subckt tbqnpn c b e +*** table model of npn bipolar transistor *** +* bip qinn from national op-amp CLC409 +* table values extracted at nominal temperature of 27°C +* simple behavioral temperature model +.param fact = 0.05 +.param tgain = 1. + (TEMPER / 27. - 1.) * {fact} +abip1 %vd(c e) %id(bint e) %id(c e) biptable1 +.model biptable1 table2d (offset=0.0 gain={tgain} order=2 file="qinn-clc409-2d-1.table") +* CJE=1.632E-13 +Cje b e 1.632E-13 +* CJC=1.720E-13 +Cjc b c 1.720E-13 +* input diode +Dbe b bint DMOD +.model DMOD D (bv=5 is=1e-17 n=1.1) +.ends + + +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1.sp b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1.sp new file mode 100644 index 000000000..7b876972e --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-1.sp @@ -0,0 +1,66 @@ +** npn bipolar: table 2D (Vce, Ib) compared to q model +* bipolar transistor qinn from National Semi op-amp clc409 +* please run the table generator table-generator-q-2d.sp in ngspice to +* create the table data file qinn-clc409-2d-1.table as required here + +** Circuit Description ** +Q3 2 1 3 QINN +ib 0 1 2u +vce 2 0 5 +vee 3 0 0 + +xbip cc bb ee tbqnpn +ib2 0 bb 2u +vce2 cc 0 1 +vee2 ee 0 0 + +* set a simulation temperature +.options temp=1 + +.subckt tbqnpn c b e +*** table model of npn bipolar transistor *** +* bip qinn from national op-amp CLC409 +* table values extracted at nominal temperature of 27°C +* simple behavioral temperature model +.param fact = 0.05 +.param tgain = 1. + (TEMPER / 27. - 1.) * {fact} +abip1 %vd(c e) %id(bint e) %id(c e) biptable1 +.model biptable1 table2d (offset=0.0 gain={tgain} order=2 file="qinn-clc409-2d-1.table") +* CJE=1.632E-13 +Cje b e 1.632E-13 +* CJC=1.720E-13 +Cjc b c 1.720E-13 +* input diode +Dbe b bint DMOD +.model DMOD D (bv=5 is=1e-17 n=1.1) +.ends + +.control +* bipolar model qinn +dc vce 0 5 0.05 ib 0.2u 1.8u 0.4u +*plot i(vee) +*plot v(1) ylimit 0 1 +reset +* bipolar from table +dc vce2 0 5 0.05 ib2 0.2u 1.8u 0.4u + + +plot dc1.i(vee) i(vee2) title 'table q3, q4 output current (i(vee2)) compared to bjt model (dc1.i(vee))' +plot dc1.v(1) v(bb) ylimit 0.6 0.8 title 'table q3, q4 input diode (v(bb)) compared to bjt model (dc1.v(1))' + +quit +.endc + +.MODEL QINN NPN ++ IS =0.166f BF =3.239E+02 NF =1.000E+00 VAF=8.457E+01 ++ IKF=2.462E-02 ISE=2.956E-17 NE =1.197E+00 BR =3.719E+01 ++ NR =1.000E+00 VAR=1.696E+00 IKR=3.964E-02 ISC=1.835E-19 ++ NC =1.700E+00 RB =118 IRB=0.000E+00 RBM=65.1 ++ RC =2.645E+01 CJE=1.632E-13 VJE=7.973E-01 ++ MJE=4.950E-01 TF =1.948E-11 XTF=1.873E+01 VTF=2.825E+00 ++ ITF=5.955E-02 PTF=0.000E+00 CJC=1.720E-13 VJC=8.046E-01 ++ MJC=4.931E-01 XCJC=589m TR =4.212E-10 CJS=629f ++ MJS=0 KF =2.000E-12 AF =1.000E+00 FC =9.765E-01 +* + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-bip-2d-2.sp b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-2.sp new file mode 100644 index 000000000..93f5eb51d --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-bip-2d-2.sp @@ -0,0 +1,35 @@ +OpAmp Test with Bipolar Table Model +* please run the table generator table-generator-q-2d.sp in ngspice to +* create the table data file qinn-clc409-2d-1.table required by clc409mod.sub + +vddp vp 0 3 +vddn vn 0 -3 + +Xopmap 0 ino outo vp vn CLC409 +Rin in ino 1k +Rfb ino outo 3k + + +vin in 0 dc 0 PULSE(-1 1 20NS 20NS 20NS 500NS 1000NS) + +* circuit with standard bip model +*.include clc409.sub + +* circuit with qinn bipolar table model +.include clc409mod.sub + +.options savecurrents + +.control +dc vin -1 1 0.1 +plot v(outo) +reset +tran 10n 1000n +plot v(outo) + +quit +.endc + + +.end + diff --git a/paranoia_parallel/examples/xspice/table/table-model-man-2d-1.sp b/paranoia_parallel/examples/xspice/table/table-model-man-2d-1.sp new file mode 100644 index 000000000..16e25b896 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-man-2d-1.sp @@ -0,0 +1,33 @@ +Code Model Test - 2d Table Model +* simple input table, generated manually +* +*** analysis type *** +.control +dc V1 0.1 6.9 0.2 V2 0.5 7.5 0.5 +plot v(1) v(2) v(11, 10) + +quit +.endc +* +*** input sources *** +* +v1 1 0 DC 1.5 +* +v2 2 0 DC 1.5 +* +*** table model *** +a1 1 2 %id(10 11) table1 +.model table1 table2d (offset=0.0 gain=1.0 order=3 file="test-2d-1.table") +* +* + +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k + +r3 10 11 1k + +r10 10 0 1k +* +* +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-man-3d-1.sp b/paranoia_parallel/examples/xspice/table/table-model-man-3d-1.sp new file mode 100644 index 000000000..346d166e7 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-man-3d-1.sp @@ -0,0 +1,35 @@ +Code Model Test - 3d Table Model +* simple table, generated manually +* +*** analysis type *** +.control +dc V1 0.1 1.4 0.1 V3 4.1 4.5 0.2 +plot v(1) v(2) v(11, 10) + +quit +.endc +* +*** input sources *** +* +v1 1 0 DC 1.5 +* +v2 2 0 DC 1.5 +* +v3 3 0 DC 1.5 + +**** table model *** +a1 1 2 3 %id(10 11) table1 +.model table1 table3d (offset=0.0 gain=1.0 order=2 file="test-3d-1.table") +* +* + +*** resistors to ground *** +r1 1 0 1k +r2 2 0 1k + +r3 10 11 10 + +r10 10 0 1k +* +* +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2-oc.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2-oc.sp new file mode 100644 index 000000000..e0b63ae2e --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2-oc.sp @@ -0,0 +1,25 @@ +Code Model Test - 2d Table Model +* bsim4 transistor dc input and output characteristics +* + +* +*** input sources *** +* +v1 d 0 DC 0.1 +* +v2 g 0 DC 1.5 +* +Vs s 0 0 +Vs2 s2 0 0 +* +*** table model of mos transistor *** +amos1 %vd(d s) %vd(g s) %id(d s) mostable1 +.model mostable1 table2d (offset=0.0 gain=0.5 order=3 file="bsim4n-2d-1.table") +* L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (2d model!) + +amos2 %vd(d s2) %vd(d s2) %id(d s2) mostable1 + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2.sp new file mode 100644 index 000000000..b6184a7d4 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-2.sp @@ -0,0 +1,39 @@ +Code Model Test - 2d Table Model +* bsim4 transistor dc input and output characteristics +* +*** analysis type *** +.control +dc V1 -0.1 1.7 0.06 V2 0.3 1.7 0.3 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc v2 0 1.7 0.04 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc V1 -0.1 1.7 0.06 +plot i(Vs2) + +quit +.endc +* +*** input sources *** +* +v1 d 0 DC 0.1 +* +v2 g 0 DC 1.5 +* +Vs s 0 0 +Vs2 s2 0 0 +* +*** table model of mos transistor *** +amos1 %vd(d s) %vd(g s) %id(d s) mostable1 +.model mostable1 table2d (offset=0.0 gain=0.5 order=3 file="bsim4n-2d-1.table") +* L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (2d model!) + +amos2 %vd(d s2) %vd(d s2) %id(d s2) mostable1 + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-2d-3.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-3.sp new file mode 100644 index 000000000..bb9fb1214 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-3.sp @@ -0,0 +1,72 @@ +Code Model Test - 2d Table Model +* ring oscillator +* +*** analysis type *** +.control +option trtol=1 +*dc V1 0.0 1.7 0.1 V2 0.3 1.7 0.3 +*op +tran 100p 20n +*plot i(Vs) i(Vs2) +plot v(in1) +rusage + +quit +.endc +* +*** input sources *** +* +v1 d 0 DC 1.5 +v2 g 0 DC 1.5 +Vs s 0 0 +Vs2 s2 0 0 + +vsinv vss 0 0 +vdinv vdd 0 1.5 +* +********************* + +*xmosnt d g s tbmosn +*mn2 d g s2 s2 n1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u rgeoMod=1 + +.subckt inv vd vs in out +*mp2 out in vd vd p1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u +xmospt out in vd tbmosp +*mn2 out in vs vs n1 l=0.13u w=5u ad=5p pd=6u as=5p ps=6u +xmosnt out in vs tbmosn +.ends + +xmosinv1 vdd vss in1 out1 inv +xmosinv2 vdd vss out1 out2 inv +xmosinv3 vdd vss out2 out3 inv +xmosinv4 vdd vss out3 out4 inv +xmosinv5 vdd vss out4 in1 inv + +.subckt tbmosn d g s +*** table model of nmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos1 %vd(d s) %vd(g s) %id(d s) mostable1 +.model mostable1 table2d (offset=0.0 gain=0.5 order=3 file="bsim4n-2d-1.table") +* NMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (2d model!) +.ends + +.subckt tbmosp d g s +*** table model of pmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos2 %vd(d s) %vd(g s) %id(d s) mostable2 +.model mostable2 table2d (offset=0.0 gain=1 order=3 file="bsim4p-2d-1.table") +* PMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (2d model!) +.ends + +.include ./modelcards/modelcard.nmos +.include ./modelcards/modelcard.pmos + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-2d-4.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-4.sp new file mode 100644 index 000000000..c92f58c17 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-2d-4.sp @@ -0,0 +1,67 @@ +Code Model Test - 2d Table Model +* Inverter +* +*** analysis type *** +.control +*option reltol=0.1 +dc V1 0 1.5 0.01 +*op +*ac lin 11 100 200 +*tran 100p 20n +*plot i(Vs) i(Vs2) +plot i(vsinv) +plot v(in1) v(out1) +plot deriv(v(out1)) +quit +.endc +* +*** input sources *** +* +v1 in1 0 DC 0.75 ac 1 +Vs2 s2 0 0 + +vsinv vss 0 0 +vdinv vdd 0 1.5 +* +********************* + +*xmosnt d g s tbmosn +*mn2 d g s2 s2 n1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u rgeoMod=1 + +.subckt inv vd vs in out +*mp2 out in vd vd p1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u +xmospt out in vd tbmosp +*mn2 out in vs vs n1 l=0.13u w=5u ad=5p pd=6u as=5p ps=6u +xmosnt out in vs tbmosn +.ends + +xmosinv1 vdd vss in1 out1 inv + +.subckt tbmosn d g s +*** table model of mos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos1 %vd(d s) %vd(g s) %id(d s) mostable1 +.model mostable1 table2d (offset=0.0 gain=0.5 order=2 file="bsim4n-2d-1.table") +* NMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (we not yet have a 3D table model!) +.ends + +.subckt tbmosp d g s +*** table model of pmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos2 %vd(d s) %vd(g s) %id(d s) mostable2 +.model mostable2 table2d (offset=0.0 gain=1 order=3 file="bsim4p-2d-1.table") +* PMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +* source is always tied to bulk (we not yet have a 3D table model!) +.ends + +.include ./modelcards/modelcard.nmos +.include ./modelcards/modelcard.pmos + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-3d-2.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-2.sp new file mode 100644 index 000000000..ea33fd695 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-2.sp @@ -0,0 +1,38 @@ +Code Model Test - 3d Table Model +* bsim4 transistor dc input and output characteristics +* +*** analysis type *** +.control +dc V1 -0.1 1.7 0.06 V2 0.2 1.7 0.25 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc v2 0 1.7 0.04 +plot i(Vs) +plot deriv(i(Vs)) +reset +dc V1 -0.1 1.7 0.06 +plot i(Vs2) +quit +.endc +* +*** input sources *** +* +v1 d 0 DC 0.1 +* +v2 g 0 DC 1.5 +* +Vs s 0 0 +Vb b 0 -0.5 +Vs2 s2 0 0 +* +*** table model of mos transistor *** +amos1 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable1 +.model mostable1 table3d (offset=0.0 gain=1 order=4 file="bsim4n-3d-1.table") +* L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" + +amos2 %vd(d s2) %vd(d s2) %vd(b s2) %id(d s2) mostable1 + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-3d-3.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-3.sp new file mode 100644 index 000000000..67c11a06e --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-3.sp @@ -0,0 +1,69 @@ +Code Model Test - 3d Table Model +* Ring oscillator made of inverters +* +*** analysis type *** +.control +option trtol=1 +*dc V1 0.0 1.7 0.1 V2 0.3 1.7 0.3 +*op +tran 100p 20n +*plot i(Vs) i(Vs2) +plot v(in1) +rusage +quit +.endc +* +*** input sources *** +* +v1 d 0 DC 1.5 +v2 g 0 DC 1.5 +Vs s 0 0 +Vs2 s2 0 0 + +vsinv vss 0 0 +vdinv vdd 0 1.5 +* +********************* + +*xmosnt d g s tbmosn +*mn2 d g s2 s2 n1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u rgeoMod=1 + +.subckt inv vd vs in out +*mp2 out in vd vd p1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u +xmospt out in vd vd tbmosp +*mn2 out in vs vs n1 l=0.13u w=5u ad=5p pd=6u as=5p ps=6u +xmosnt out in vs vs tbmosn +.ends + +xmosinv1 vdd vss in1 out1 inv +xmosinv2 vdd vss out1 out2 inv +xmosinv3 vdd vss out2 out3 inv +xmosinv4 vdd vss out3 out4 inv +xmosinv5 vdd vss out4 in1 inv + +.subckt tbmosn d g s b +*** table model of nmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos1 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable1 +.model mostable1 table3d (offset=0.0 gain=0.5 order=3 file="bsim4n-3d-1.table") +* NMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.subckt tbmosp d g s b +*** table model of pmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos2 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable2 +.model mostable2 table3d (offset=0.0 gain=1 order=3 file="bsim4p-3d-1.table") +* PMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.include ./modelcards/modelcard.nmos +.include ./modelcards/modelcard.pmos + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-3d-4.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-4.sp new file mode 100644 index 000000000..05f72f60b --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-4.sp @@ -0,0 +1,65 @@ +Code Model Test - 3d Table Model +* Inverter +* +*** analysis type *** +.control +*option reltol=0.1 +dc V1 0 1.5 0.01 +*op +*ac lin 11 100 200 +*tran 100p 20n +*plot i(Vs) i(Vs2) +plot i(vsinv) +plot v(in1) v(out1) +plot deriv(v(out1)) +quit +.endc +* +*** input sources *** +* +v1 in1 0 DC 0.75 ac 1 +Vs2 s2 0 0 + +vsinv vss 0 0 +vdinv vdd 0 1.5 +* +********************* + +*xmosnt d g s tbmosn +*mn2 d g s2 s2 n1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u rgeoMod=1 + +.subckt inv vd vs in out +*mp2 out in vd vd p1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u +xmospt out in vd vd tbmosp +*mn2 out in vs vs n1 l=0.13u w=5u ad=5p pd=6u as=5p ps=6u +xmosnt out in vs vs tbmosn +.ends + +xmosinv1 vdd vss in1 out1 inv + +.subckt tbmosn d g s b +*** table model of mos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos1 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable1 +.model mostable1 table3d (offset=0.0 gain=0.5 order=2 file="bsim4n-3d-1.table") +* NMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.subckt tbmosp d g s b +*** table model of pmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos2 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable2 +.model mostable2 table3d (offset=0.0 gain=1 order=3 file="bsim4p-3d-1.table") +* PMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.include ./modelcards/modelcard.nmos +.include ./modelcards/modelcard.pmos + +.end diff --git a/paranoia_parallel/examples/xspice/table/table-model-mos-3d-5.sp b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-5.sp new file mode 100644 index 000000000..88f739466 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/table-model-mos-3d-5.sp @@ -0,0 +1,71 @@ +Code Model Test - 3d Table Model +* Ring oscillator made of NAND gates +* +*** analysis type *** +.control +option trtol=1 +*dc V1 0.0 1.7 0.1 V2 0.3 1.7 0.3 +*op +tran 100p 20n +*plot i(Vs) i(Vs2) +plot v(in1) +rusage +quit +.endc +* +*** input sources *** +* +v1 d 0 DC 1.5 +v2 g 0 DC 1.5 +Vs s 0 0 +Vs2 s2 0 0 + +vsinv vss 0 0 +vdinv vdd 0 1.5 +* +********************* + +*xmosnt d g s tbmosn +*mn2 d g s2 s2 n1 l=0.13u w=10u ad=5p pd=6u as=5p ps=6u rgeoMod=1 + +.SUBCKT NAND VDD VSS in1 in2 out +* NODES: VCC, Ground, INPUT(2), OUTPUT +xmospt1 out in2 vdd vdd tbmosp +xmosnt2 net.1 in2 vss vss tbmosn +xmospt3 out in1 vdd vdd tbmosp +xmosnt4 out in1 net.1 vss tbmosn +.ENDS NAND + + +xmosinv1 vdd vss in1 in1 out1 nand +xmosinv2 vdd vss out1 out1 out2 nand +xmosinv3 vdd vss out2 out2 out3 nand +xmosinv4 vdd vss out3 out3 out4 nand +xmosinv5 vdd vss out4 out4 in1 nand + +.subckt tbmosn d g s b +*** table model of nmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos1 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable1 +.model mostable1 table3d (offset=0.0 gain=0.5 order=3 file="bsim4n-3d-1.table") +* NMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.subckt tbmosp d g s b +*** table model of pmos transistor *** +cdg d g 0.01p +csg s g 0.014p +amos2 %vd(d s) %vd(g s) %vd(b s) %id(d s) mostable2 +.model mostable2 table3d (offset=0.0 gain=1 order=3 file="bsim4p-3d-1.table") +* PMOS L=0.13u W=10.0u rgeoMod=1 +* BSIM 4.7 +* change width of transistor by modifying parameter "gain" +.ends + +.include ./modelcards/modelcard.nmos +.include ./modelcards/modelcard.pmos + +.end diff --git a/paranoia_parallel/examples/xspice/table/test-2d-1.table b/paranoia_parallel/examples/xspice/table/test-2d-1.table new file mode 100644 index 000000000..51449fdff --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/test-2d-1.table @@ -0,0 +1,19 @@ +* table source +* number of columns (x) +8 +* number of rows (y) +9 +* x horizontal (column) address values (real numbers) +0 1 2 3 4 5 6 7 +* y vertical (row) address values (real numbers) +0 1 2 3 4 5 6 7 8 +* table with output data (horizontally addressed by x, vertically by y) +1 0.9 0.8 0.7 0.6 0.5 0.4 0.3 +1 1 1 1 1 1 1 1 +1 1.2 1.4 1.6 1.8 2 2.2 2.4 +1 1.5 2 2.5 3 3.5 4 4.5 +1 2 3 4 5 6 7 8 +1 2.5 4 5.5 7 8.5 10 11.5 +1 3 5 7 9 11 13 15 +1 3.5 6 8.5 11 13.5 16 18.5 +1 4 7 10 13 16 19 22 diff --git a/paranoia_parallel/examples/xspice/table/test-2d-2.table b/paranoia_parallel/examples/xspice/table/test-2d-2.table new file mode 100644 index 000000000..ee95c66e3 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/test-2d-2.table @@ -0,0 +1,16 @@ +* table source +* test of gradients +7 +7 +* x row +0 1 2 3 4 5 6 +* y column +0 1 2 3 4 5 6 +* table +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 +1 2 3 4 5 6 7 diff --git a/paranoia_parallel/examples/xspice/table/test-2d-3.table b/paranoia_parallel/examples/xspice/table/test-2d-3.table new file mode 100644 index 000000000..dc72b1080 --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/test-2d-3.table @@ -0,0 +1,15 @@ +* table source +* test of gradients +7 +7 +* x row +0 1 2 3 4 5 6 +* y column +0 0.5 1 1.5 2 2.5 3 +* table +1 1 1 1 1 1 1 +2 2 2 2 2 2 2 +3 3 3 3 3 3 3 +4 4 4 4 4 4 4 +5 5 5 5 5 5 5 +6 6 6 6 6 6 6 diff --git a/paranoia_parallel/examples/xspice/table/test-3d-1.table b/paranoia_parallel/examples/xspice/table/test-3d-1.table new file mode 100644 index 000000000..2140e477c --- /dev/null +++ b/paranoia_parallel/examples/xspice/table/test-3d-1.table @@ -0,0 +1,21 @@ +* 3D test table +*x +4 +*y +3 +*z +2 +*x row +0 1 2 3 +*y column +1 2 3 +*z tables +4 5 +*table +0.1 0.2 0.3 0.4 +1.1 1.2 1.3 1.4 +2.1 2.2 2.3 2.4 +*table +1.1 1.3 1.5 1.7 +3.1 3.3 3.5 3.7 +5.1 5.3 5.5 5.7 diff --git a/paranoia_parallel/examples/xspice/xspice_c1.cir b/paranoia_parallel/examples/xspice/xspice_c1.cir new file mode 100644 index 000000000..0c8cc15f5 --- /dev/null +++ b/paranoia_parallel/examples/xspice/xspice_c1.cir @@ -0,0 +1,28 @@ +A Berkeley SPICE3 compatible circuit +* +* This circuit contains only Berkeley SPICE3 components. +* +* The circuit is an AC coupled transistor amplifier with +* a sinewave input at node "1", a gain of approximately -3.9, +* and output on node "coll". +* +.tran 1e-5 1e-3 +* +vcc vcc 0 12.0 +vin 1 0 0.0 ac 1.0 sin(0 1 1k) +ccouple 1 base 10uF +rbias1 vcc base 100k +rbias2 base 0 24k +q1 coll base emit generic +rcollector vcc coll 3.9k +remitter emit 0 1k +* +.model generic npn +* + +.control +run +quit +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/xspice_c2.cir b/paranoia_parallel/examples/xspice/xspice_c2.cir new file mode 100644 index 000000000..9949c9f4e --- /dev/null +++ b/paranoia_parallel/examples/xspice/xspice_c2.cir @@ -0,0 +1,21 @@ +A transistor amplifier circuit +* +.tran 1e-5 1e-3 +* +vin 1 0 0.0 ac 1.0 sin(0 1 1k) +* +ccouple 1 in 10uF +rzin in 0 19.35k +* +aamp in aout gain_block +.model gain_block gain (gain = -3.9 out_offset = 7.003) +* +rzout aout coll 3.9k +rbig coll 0 1e12 +* +.control +run +quit +.endc + +.end diff --git a/paranoia_parallel/examples/xspice/xspice_c3.cir b/paranoia_parallel/examples/xspice/xspice_c3.cir new file mode 100644 index 000000000..2bc9dbf49 --- /dev/null +++ b/paranoia_parallel/examples/xspice/xspice_c3.cir @@ -0,0 +1,103 @@ +Mixed IO types +* This circuit contains a mixture of IO types, including +* analog, digital, user-defined (real), and 'null'. +* +* The circuit demonstrates the use of the digital and +* user-defined node capability to model system-level designs +* such as sampled-data filters. The simulated circuit +* contains a digital oscillator enabled after 100us. The +* square wave oscillator output is divided by 8 with a +* ripple counter. The result is passed through a digital +* filter to convert it to a sine wave. +* +.tran 1e-5 1e-3 +.save all +* +v1 1 0 0.0 pulse(0 1 1e-4 1e-6) +r1 1 0 1k +* +abridge1 [1] [enable] atod +.model atod adc_bridge +* +aclk [enable clk] clk nand +.model nand d_nand (rise_delay=1e-5 fall_delay=1e-5) +* +adiv2 div2_out clk NULL NULL NULL div2_out dff +adiv4 div4_out div2_out NULL NULL NULL div4_out dff +adiv8 div8_out div4_out NULL NULL NULL div8_out dff +.model dff d_dff +* +abridge2 div8_out enable filt_in node_bridge2 +.model node_bridge2 d_to_real (zero=-1 one=1) +* +xfilter filt_in clk filt_out dig_filter +* +abridge3 filt_out a_out node_bridge3 +.model node_bridge3 real_to_v +* +rlpf1 a_out oa_minus 10k +* +xlpf 0 oa_minus lpf_out opamp +* +rlpf2 oa_minus lpf_out 10k +clpf lpf_out oa_minus 0.01uF +* +* +.subckt dig_filter filt_in clk filt_out +* +.model n0 real_gain (gain=1.0) +.model n1 real_gain (gain=2.0) +.model n2 real_gain (gain=1.0) +.model g1 real_gain (gain=0.125) +.model zm1 real_delay +.model d0a real_gain (gain=-0.75) +.model d1a real_gain (gain=0.5625) +.model d0b real_gain (gain=-0.3438) +.model d1b real_gain (gain=1.0) +* +an0a filt_in x0a n0 +an1a filt_in x1a n1 +an2a filt_in x2a n2 +* +az0a x0a clk x1a zm1 +az1a x1a clk x2a zm1 +* +ad0a x2a x0a d0a +ad1a x2a x1a d1a +* +az2a x2a filt1_out g1 +az3a filt1_out clk filt2_in zm1 +* +an0b filt2_in x0b n0 +an1b filt2_in x1b n1 +an2b filt2_in x2b n2 +* +az0b x0b clk x1b zm1 +az1b x1b clk x2b zm1 +* +ad0 x2b x0b d0b +ad1 x2b x1b d1b +* +az2b x2b clk filt_out zm1 +* +.ends dig_filter +* +* +.subckt opamp plus minus out +* +r1 plus minus 300k +a1 %vd (plus minus) outint lim +.model lim limit (out_lower_limit = -12 out_upper_limit = 12 ++ fraction = true limit_range = 0.2 gain=300e3) +r3 outint out 50.0 +r2 out 0 1e12 +* +.ends opamp +* + +.control +run +quit +.endc + +.end diff --git a/paranoia_parallel/ignore_shared_libs.supp b/paranoia_parallel/ignore_shared_libs.supp new file mode 100644 index 000000000..02f6df293 --- /dev/null +++ b/paranoia_parallel/ignore_shared_libs.supp @@ -0,0 +1,24 @@ +#{ +# ignore_unversioned_shared_libs +# Memcheck:Leak +# ... +# obj:*/lib*/lib*.so +#} +#{ +# ignore_versioned_shared_libs +# Memcheck:Leak +# ... +# obj:*/lib*/lib*.so.* +#} +{ + libfontconfig + Memcheck:Leak + ... + obj:*/lib*/*fontconfig* +} +{ + libgomp + Memcheck:Leak + ... + obj:*/lib*/*gomp* +} diff --git a/paranoia_parallel/paranoia_table_generators.sh b/paranoia_parallel/paranoia_table_generators.sh new file mode 100644 index 000000000..e71ee968f --- /dev/null +++ b/paranoia_parallel/paranoia_table_generators.sh @@ -0,0 +1,52 @@ +#!/bin/bash + +# Copyright 2024 The ngspice team +# Authors: Jim Monte, Holger Vogt, Dietmar Warning +# License: New BSD + +if test "$1" = "?"; then + echo "ngspice \"paranoia\" test suite" + echo "Format: $0 [ngspice executable]" + echo "The ngspice executable must be independent of the current directory." + exit 1 +fi + +SECONDS=0 + +NGSPICE="$1" +NGSPICE="${NGSPICE:-ngspice}" +VALGRIND="valgrind --leak-check=full --suppressions=$(pwd)/ignore_shared_libs.supp" + +## The following three take much time. They are started in the background and may be skipped after being run once. +cd examples/xspice/table +$NGSPICE -o ../../../table-generator-q-2d.log table-generator-q-2d.sp +$NGSPICE -o ../../../table-generator-b4n-2d.log table-generator-b4n-2d.sp +$NGSPICE -o ../../../table-generator-b4p-2d.log table-generator-b4p-2d.sp +$NGSPICE -o ../../../table-generator-b4n-3d.log table-generator-b4n-3d.sp +$NGSPICE -o ../../../table-generator-b4p-3d.log table-generator-b4p-3d.sp +cd ../../.. + + + +# Check the results +# Find correct response: ngspice- done +NGSPICE_OK="`$NGSPICE -v | awk '/level/ {print $2;}'` done" + +echo "*******************************************" +echo "vlog files with errors found by valgrind:" +grep -L "ERROR SUMMARY: 0 errors from 0 context" ./*.vlog +echo "*******************************************" +echo "log files with ngspice errors:" +grep -L "$NGSPICE_OK" ./*.log +echo "*******************************************" +echo "log files with convergence issues:" +grep -l "Too many iterations without convergence" ./*.log +echo "*******************************************" +echo "log files with messages containing 'error':" +grep -i -l "error" ./*.log +echo "*******************************************" + +ELAPSED="Elapsed: $(($SECONDS / 3600))hrs $((($SECONDS / 60) % 60))min $(($SECONDS % 60))sec" +echo +echo $ELAPSED + diff --git a/paranoia_parallel/paranoia_test_extra.sh b/paranoia_parallel/paranoia_test_extra.sh new file mode 100644 index 000000000..0a8e37a0b --- /dev/null +++ b/paranoia_parallel/paranoia_test_extra.sh @@ -0,0 +1,221 @@ +#!/bin/bash + +# Copyright 2023 The ngspice team +# Authors: Jim Monte, Holger Vogt, Dietmar Warning +# License: New BSD + +if test "$1" = "?"; then + echo "ngspice \"paranoia\" test suite" + echo "Format: $0 [ngspice executable]" + echo "The ngspice executable must be independent of the current directory." + exit 1 +fi + +SECONDS=0 + +NGSPICE="$1" +NGSPICE="${NGSPICE:-ngspice}" +VALGRIND="valgrind --leak-check=full --suppressions=$(pwd)/ignore_shared_libs.supp" + +## The following three take much time. They are started in the background and may be skipped after being run once. +#cd examples/xspice/table +#$VALGRIND --log-file=../../../table-generator-q-2d.vlog $NGSPICE -o ../../../table-generator-q-2d.log table-generator-q-2d.sp & +#$VALGRIND --log-file=../../../table-generator-b4n-2d.vlog $NGSPICE -o ../../../table-generator-b4n-2d.log table-generator-b4n-2d.sp & +#$VALGRIND --log-file=../../../table-generator-b4p-2d.vlog $NGSPICE -o ../../../table-generator-b4p-2d.log table-generator-b4p-2d.sp & +#$VALGRIND --log-file=../../../table-generator-b4n-3d.vlog $NGSPICE -o ../../../table-generator-b4n-3d.log table-generator-b4n-3d.sp & +#$VALGRIND --log-file=../../../table-generator-b4p-3d.vlog $NGSPICE -o ../../../table-generator-b4p-3d.log table-generator-b4p-3d.sp & +#cd ../../.. + +cd examples/control_structs +$VALGRIND --log-file=../../s-param.vlog $NGSPICE -o ../../s-param.log s-param.cir +$VALGRIND --log-file=../../repeat3.vlog $NGSPICE -o ../../repeat3.log repeat3.sp & +$VALGRIND --log-file=../../foreach_bjt_ft.vlog $NGSPICE -o ../../foreach_bjt_ft.log foreach_bjt_ft.sp +cd ../.. + +cd examples/delta-sigma +$VALGRIND --log-file=../../mod1-ct-test.vlog $NGSPICE -o ../../mod1-ct-test.log mod1-ct-test.cir +cd ../.. + +cd examples/digital +$VALGRIND --log-file=../../adder_behav.vlog $NGSPICE -o ../../adder_behav.log adder_behav.cir +$VALGRIND --log-file=../../adder_bip.vlog $NGSPICE -o ../../adder_bip.log adder_bip.cir +$VALGRIND --log-file=../../adder_mos.vlog $NGSPICE -o ../../adder_mos.log adder_mos.cir +$VALGRIND --log-file=../../adder_cshunt.vlog $NGSPICE -o ../../adder_cshunt.log adder_cshunt.cir +$VALGRIND --log-file=../../adder_Xspice.vlog $NGSPICE -o ../../adder_Xspice.log adder_Xspice.cir +cd ../.. + +cd examples/inductive-systems +$VALGRIND --log-file=../../positive-definite-1.vlog $NGSPICE -o ../../positive-definite-1.log positive-definite-1.cir & +$VALGRIND --log-file=../../positive-definite-2.vlog $NGSPICE -o ../../positive-definite-2.log positive-definite-2.cir & +$VALGRIND --log-file=../../positive-definite-3.vlog $NGSPICE -o ../../positive-definite-3.log positive-definite-3.cir & +$VALGRIND --log-file=../../positive-definite-4.vlog $NGSPICE -o ../../positive-definite-4.log positive-definite-4.cir & +cd ../.. + +cd examples/measure +$VALGRIND --log-file=../../func_cap.vlog $NGSPICE -o ../../func_cap.log func_cap.sp & +$VALGRIND --log-file=../../mos-meas-dc.vlog $NGSPICE -o ../../mos-meas-dc.log mos-meas-dc.sp +$VALGRIND --log-file=../../inv-meas-tran.vlog $NGSPICE -o ../../inv-meas-tran.log inv-meas-tran.sp +$VALGRIND --log-file=../../simple-meas-tran.vlog $NGSPICE -o ../../simple-meas-tran.log simple-meas-tran.sp +$VALGRIND --log-file=../../rc-meas-ac.vlog $NGSPICE -o ../../rc-meas-ac.log rc-meas-ac.sp +cd ../.. + +cd examples/memristor +$VALGRIND --log-file=../../memristor.vlog $NGSPICE -o ../../memristor.log memristor.sp +$VALGRIND --log-file=../../memristor_x.vlog $NGSPICE -o ../../memristor_x.log memristor_x.sp +cd ../.. + +cd examples/Monte_Carlo +$VALGRIND --log-file=../../MC_2_control.vlog $NGSPICE -o ../../MC_2_control.log MC_2_control.sp +$VALGRIND --log-file=../../MC_ring.vlog $NGSPICE -o ../../MC_ring.log MC_ring.sp +$VALGRIND --log-file=../../OpWien.vlog $NGSPICE -o ../../OpWien.log OpWien.sp +$VALGRIND --log-file=../../MC_ring_ts.vlog $NGSPICE -o ../../MC_ring_ts.log MC_ring_ts.sp +cd ../.. + +cd examples/pll +$VALGRIND --log-file=../../pll-xspice.vlog $NGSPICE -o ../../pll-xspice.log pll-xspice.cir +cd ../.. + +cd examples/pton +$VALGRIND --log-file=../../555-timer-2.vlog $NGSPICE -o ../../555-timer-2.log 555-timer-2.cir +$VALGRIND --log-file=../../MOS1_out.vlog $NGSPICE -o ../../MOS1_out.log MOS1_out.cir +$VALGRIND --log-file=../../op-test-adi.vlog $NGSPICE -o ../../op-test-adi.log op-test-adi.cir +$VALGRIND --log-file=../../op-test.vlog $NGSPICE -o ../../op-test.log op-test.cir +$VALGRIND --log-file=../../Optimos_out.vlog $NGSPICE -o ../../Optimos_out.log Optimos_out.cir +$VALGRIND --log-file=../../OP_MCP6041.vlog $NGSPICE -o ../../OP_MCP6041.log OP_MCP6041.cir +$VALGRIND --log-file=../../relax_osc_st.vlog $NGSPICE -o ../../relax_osc_st.log relax_osc_st.cir +$VALGRIND --log-file=../../remcirc-test.vlog $NGSPICE -o ../../remcirc-test.log remcirc-test.cir +$VALGRIND --log-file=../../switch-oscillators.vlog $NGSPICE -o ../../switch-oscillators.log switch-oscillators.cir +$VALGRIND --log-file=../../switch-oscillators_inc.vlog $NGSPICE -o ../../switch-oscillators_inc.log switch-oscillators_inc.cir +cd ../.. + +cd examples/transient-noise +$VALGRIND --log-file=../../noi-ring51-demo.vlog $NGSPICE -o ../../noi-ring51-demo.log noi-ring51-demo.cir +$VALGRIND --log-file=../../noi-sc-tr.vlog $NGSPICE -o ../../noi-sc-tr.log noi-sc-tr.cir +$VALGRIND --log-file=../../rts-1.vlog $NGSPICE -o ../../rts-1.log rts-1.cir +$VALGRIND --log-file=../../noise_vnoi.vlog $NGSPICE -o ../../noise_vnoi.log noise_vnoi.cir +$VALGRIND --log-file=../../shot_ng.vlog $NGSPICE -o ../../shot_ng.log shot_ng.cir +cd ../.. + +cd examples/optran +$VALGRIND --log-file=../../TLV9002-test.vlog $NGSPICE -o ../../TLV9002-test.log TLV9002-test.cir +$VALGRIND --log-file=../../TLV6001-test.vlog $NGSPICE -o ../../TLV6001-test.log TLV6001-test.cir +$VALGRIND --log-file=../../F5TurboV2thermal-optran.vlog $NGSPICE -o ../../F5TurboV2thermal-optran.log F5TurboV2thermal-optran.cir +cd ../.. + +cd examples/TransImpedanceAmp +$VALGRIND --log-file=../../output.vlog $NGSPICE -o ../../output.log output.net +cd ../.. + +cd examples/various +$VALGRIND --log-file=../../FFT_Leakage.vlog $NGSPICE -o ../../FFT_Leakage.log FFT_Leakage.cir +$VALGRIND --log-file=../../ro_17_4.vlog $NGSPICE -o ../../ro_17_4.log ro_17_4.cir +$VALGRIND --log-file=../../3d_loop.vlog $NGSPICE -o ../../3d_loop.log 3d_loop.sp +$VALGRIND --log-file=../../FFT_tests.vlog $NGSPICE -o ../../FFT_tests.log FFT_tests.cir +$VALGRIND --log-file=../../agauss_test.vlog $NGSPICE -o ../../agauss_test.log agauss_test.cir +$VALGRIND --log-file=../../bjtnoise.vlog $NGSPICE -o ../../bjtnoise.log bjtnoise.cir +$VALGRIND --log-file=../../probe-i-dev.vlog $NGSPICE -o ../../probe-i-dev.log probe-i-dev.cir +#$VALGRIND --log-file=../../Tschebyschef-LP.cir.vlog $NGSPICE -o ../../Tschebyschef-LP.cir.log Tschebyschef-LP.cir +cd ../.. + +cd examples/vbic +$VALGRIND --log-file=../../DFF_Y_ECL.vlog $NGSPICE -o ../../DFF_Y_ECL.log DFF_Y_ECL.sp +$VALGRIND --log-file=../../npn_ft.vlog $NGSPICE -o ../../npn_ft.log npn_ft.sp +$VALGRIND --log-file=../../npn_gum.vlog $NGSPICE -o ../../npn_gum.log npn_gum.sp +$VALGRIND --log-file=../../npn_out.vlog $NGSPICE -o ../../npn_out.log npn_out.sp +$VALGRIND --log-file=../../self-heat.vlog $NGSPICE -o ../../self-heat.log self-heat.sp +$VALGRIND --log-file=../../vbic99_dc.vlog $NGSPICE -o ../../vbic99_dc.log vbic99_dc.sp +$VALGRIND --log-file=../../vbic99_tran.vlog $NGSPICE -o ../../vbic99_tran.log vbic99_tran.sp +$VALGRIND --log-file=../../vbic_ac_par.vlog $NGSPICE -o ../../vbic_ac_par.log vbic_ac_par.sp +cd ../.. + +cd examples/vdmos +$VALGRIND --log-file=../../100W.vlog $NGSPICE -o ../../100W.log 100W.sp +$VALGRIND --log-file=../../100W_wingspread.vlog $NGSPICE -o ../../100W_wingspread.log 100W_wingspread.sp +$VALGRIND --log-file=../../crss_coss_ciss.vlog $NGSPICE -o ../../crss_coss_ciss.log crss_coss_ciss.sp +$VALGRIND --log-file=../../dcdc.vlog $NGSPICE -o ../../dcdc.log dcdc.sp +$VALGRIND --log-file=../../inv_vdmos.vlog $NGSPICE -o ../../inv_vdmos.log inv_vdmos.sp +$VALGRIND --log-file=../../IXTH80N20L-IXTH48P20P-quasisat.vlog $NGSPICE -o ../../IXTH80N20L-IXTH48P20P-quasisat.log IXTH80N20L-IXTH48P20P-quasisat.sp +$VALGRIND --log-file=../../IXTP6N100D2-cap.vlog $NGSPICE -o ../../IXTP6N100D2-cap.log IXTP6N100D2-cap.sp +$VALGRIND --log-file=../../IXTP6N100D2-n-weak-inv.vlog $NGSPICE -o ../../IXTP6N100D2-n-weak-inv.log IXTP6N100D2-n-weak-inv.sp +$VALGRIND --log-file=../../mtriode_nch.vlog $NGSPICE -o ../../mtriode_nch.log mtriode_nch.sp +$VALGRIND --log-file=../../ro_11_vdmos.vlog $NGSPICE -o ../../ro_11_vdmos.log ro_11_vdmos.sp +$VALGRIND --log-file=../../self-heating.vlog $NGSPICE -o ../../self-heating.log self-heating.sp +$VALGRIND --log-file=../../soa_chk.vlog $NGSPICE -o ../../soa_chk.log soa_chk.sp +$VALGRIND --log-file=../../theta_nch.vlog $NGSPICE -o ../../theta_nch.log theta_nch.sp +$VALGRIND --log-file=../../VDMOS-DIO.vlog $NGSPICE -o ../../VDMOS-DIO.log VDMOS-DIO.sp +$VALGRIND --log-file=../../vdmos-out.vlog $NGSPICE -o ../../vdmos-out.log vdmos-out.sp +$VALGRIND --log-file=../../vdmos-out_ir_mtr.vlog $NGSPICE -o ../../vdmos-out_ir_mtr.log vdmos-out_ir_mtr.sp +$VALGRIND --log-file=../../vdmosp-out.vlog $NGSPICE -o ../../vdmosp-out.log vdmosp-out.sp +$VALGRIND --log-file=../../vdmosp-out-mtr.vlog $NGSPICE -o ../../vdmosp-out-mtr.log vdmosp-out-mtr.sp +cd ../.. + +cd examples/xspice +$VALGRIND --log-file=../../xspice_c1.vlog $NGSPICE -o ../../xspice_c1.log xspice_c1.cir +$VALGRIND --log-file=../../xspice_c2.vlog $NGSPICE -o ../../xspice_c2.log xspice_c2.cir +$VALGRIND --log-file=../../xspice_c3.vlog $NGSPICE -o ../../xspice_c3.log xspice_c3.cir +$VALGRIND --log-file=../../bug-378-test-sequence.vlog $NGSPICE -o ../../bug-378-test-sequence.log bug-378-test-sequence.cir +cd ../.. + +cd examples/xspice/d_source +$VALGRIND --log-file=../../../d_source.vlog $NGSPICE -o ../../../d_source.log d_source.cir & +cd ../../.. +cd examples/xspice/filesource +$VALGRIND --log-file=../../../simple-filesource.vlog $NGSPICE -o ../../../simple-filesource.log simple-filesource.cir +cd ../../.. +cd examples/xspice/state +$VALGRIND --log-file=../../../state-machine.vlog $NGSPICE -o ../../../state-machine.log state-machine.cir +cd ../../.. + +# waiting for the table generator files +#wait +cd examples/xspice/table +$VALGRIND --log-file=../../../table-model-bip-2d-1.vlog $NGSPICE -o ../../../table-model-bip-2d-1.log table-model-bip-2d-1.sp +$VALGRIND --log-file=../../../table-model-bip-2d-2.vlog $NGSPICE -o ../../../table-model-bip-2d-2.log table-model-bip-2d-2.sp +$VALGRIND --log-file=../../../table-model-mos-2d-2.vlog $NGSPICE -o ../../../table-model-mos-2d-2.log table-model-mos-2d-2.sp +$VALGRIND --log-file=../../../table-model-mos-2d-3.vlog $NGSPICE -o ../../../table-model-mos-2d-3.log table-model-mos-2d-3.sp +$VALGRIND --log-file=../../../table-model-mos-2d-4.vlog $NGSPICE -o ../../../table-model-mos-2d-4.log table-model-mos-2d-4.sp +$VALGRIND --log-file=../../../table-model-mos-3d-2.vlog $NGSPICE -o ../../../table-model-mos-3d-2.log table-model-mos-3d-2.sp +$VALGRIND --log-file=../../../table-model-mos-3d-3.vlog $NGSPICE -o ../../../table-model-mos-3d-3.log table-model-mos-3d-3.sp +$VALGRIND --log-file=../../../table-model-mos-3d-4.vlog $NGSPICE -o ../../../table-model-mos-3d-4.log table-model-mos-3d-4.sp +$VALGRIND --log-file=../../../table-model-mos-3d-5.vlog $NGSPICE -o ../../../table-model-mos-3d-5.log table-model-mos-3d-5.sp +$VALGRIND --log-file=../../../table-model-man-3d-1.vlog $NGSPICE -o ../../../table-model-man-3d-1.log table-model-man-3d-1.sp +$VALGRIND --log-file=../../../table-model-man-2d-1.vlog $NGSPICE -o ../../../table-model-man-2d-1.log table-model-man-2d-1.sp +$VALGRIND --log-file=../../../combi_script.vlog $NGSPICE -o ../../../combi_script.log combi_script.cir +cd ../../.. + +cd examples/digital_devices +$VALGRIND --log-file=../../dig-behav-568.vlog $NGSPICE -o ../../dig-behav-568.log behav-568.cir +$VALGRIND --log-file=../../dig-counter.vlog $NGSPICE -o ../../dig-counter.log counter.cir +$VALGRIND --log-file=../../dig-ex4.vlog $NGSPICE -o ../../dig-ex4.log ex4.cir +cd ../.. + +cd examples/cider +$VALGRIND --log-file=../../cider-cmosinv.vlog $NGSPICE -o ../../cider-cmosinv.log cmosinv.cir +$VALGRIND --log-file=../../cider-diode.vlog $NGSPICE -o ../../cider-diode.log diode.cir +$VALGRIND --log-file=../../cider-pullup.vlog $NGSPICE -o ../../cider-pullup.log pullup.cir +$VALGRIND --log-file=../../cider-recovery.vlog $NGSPICE -o ../../cider-recovery.log recovery.cir +$VALGRIND --log-file=../../cider-rtlinv.vlog $NGSPICE -o ../../cider-rtlinv.log rtlinv.cir +cd ../.. + +# Check the results +# Find correct response: ngspice- done +NGSPICE_OK="`$NGSPICE -v | awk '/level/ {print $2;}'` done" + +echo "*******************************************" +echo "vlog files with errors found by valgrind:" +grep -L "ERROR SUMMARY: 0 errors from 0 context" ./*.vlog +echo "*******************************************" +echo "log files with ngspice errors:" +grep -L "$NGSPICE_OK" ./*.log +echo "*******************************************" +echo "log files with convergence issues:" +grep -l "Too many iterations without convergence" ./*.log +echo "*******************************************" +echo "log files with messages containing 'error':" +grep -i -l "error" ./*.log +echo "*******************************************" + +ELAPSED="Elapsed: $(($SECONDS / 3600))hrs $((($SECONDS / 60) % 60))min $(($SECONDS % 60))sec" +echo +echo $ELAPSED + diff --git a/paranoia_parallel/runtests.sh b/paranoia_parallel/runtests.sh new file mode 100644 index 000000000..8ea5e96cf --- /dev/null +++ b/paranoia_parallel/runtests.sh @@ -0,0 +1,35 @@ +#!/bin/bash + +if test -n "$1" && test -n "$2" ; then +rm -rf $2 +python3 textract.py $1 $2 +else +echo "arg 1 is the paranoia test script" +echo "arg 2 is the test script working directory" +exit 1 +fi + +SECONDS=0 + +time parallel -j8 bash ::: $2/* + +NGSPICE_OK="`ngspice -v | awk '/level/ {print $2;}'` done" + +echo "*******************************************" +echo "vlog files with errors found by valgrind:" +grep -L "ERROR SUMMARY: 0 errors from 0 context" ./*.vlog +echo "*******************************************" +echo "log files with ngspice errors:" +grep -L "$NGSPICE_OK" ./*.log +echo "*******************************************" +echo "log files with convergence issues:" +grep -l "Too many iterations without convergence" ./*.log +echo "*******************************************" +echo "log files with messages containing 'error':" +grep -i -l "error" ./*.log +echo "*******************************************" + +ELAPSED="Elapsed: $(($SECONDS / 3600))hrs $((($SECONDS / 60) % 60))min $(($SECONDS % 60))sec" +echo +echo $ELAPSED + diff --git a/paranoia_parallel/textract.py b/paranoia_parallel/textract.py new file mode 100644 index 000000000..a81cf6a75 --- /dev/null +++ b/paranoia_parallel/textract.py @@ -0,0 +1,44 @@ +import os +import sys + + +testnum = 1 + + +def writeit(cd, cmd, outd): + global testnum + pwd = os.getcwd() + outfname = outd + '/testfile' + str(testnum) + '.sh' + outf = open(outfname, 'w') + testnum = testnum + 1 + outf.write('#!/bin/bash\n') + outf.write('NGSPICE="ngspice -i "\n') + p1 = 'VALGRIND="valgrind --leak-check=full --suppressions=' + p2 = p1 + pwd + '/ignore_shared_libs.supp"\n' + outf.write(p2) + outf.write(cd) + if cmd.endswith('&\n'): + outf.write(cmd[:-2] + '\n') + else: + outf.write(cmd) + os.chmod(outfname, 0o777) + outf.close() + return 0 + + +def main(): + infile = sys.argv[1] + outdir = sys.argv[2] + os.mkdir(outdir) + inp = open(infile, 'r') + for line in inp: + if line.startswith('cd '): + cdname = line + elif line.startswith('$VALGRIND'): + writeit(cdname, line, outdir) + inp.close() + return 0 + + +if __name__ == '__main__': + main() diff --git a/paranoia_parallel/working/testfile1.sh b/paranoia_parallel/working/testfile1.sh new file mode 100644 index 000000000..ed25f7fc7 --- /dev/null +++ b/paranoia_parallel/working/testfile1.sh @@ -0,0 +1,5 @@ +#!/bin/bash +NGSPICE="ngspice -i " +VALGRIND="valgrind --leak-check=full --suppressions=/home/holger/Software/paranoia_parallel/ignore_shared_libs.supp" +cd examples/control_structs +$VALGRIND --log-file=../../s-param.vlog $NGSPICE -o ../../s-param.log s-param.cir From 64bf572264013ca173a3e50bd9abea238064ac61 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 30 Jun 2026 09:45:49 +0200 Subject: [PATCH 36/49] Add examples for the IHP Open Source PDK --- examples/IHPOpenSourcePDK/19-stage-ro.cir | 75 + examples/IHPOpenSourcePDK/IHP-PDK-howto.txt | 17 + examples/IHPOpenSourcePDK/c7552_ann_IHP.net | 89240 ++++++++++++++++ examples/IHPOpenSourcePDK/nmos_pmos_PSP103.sp | 45 + 4 files changed, 89377 insertions(+) create mode 100644 examples/IHPOpenSourcePDK/19-stage-ro.cir create mode 100644 examples/IHPOpenSourcePDK/IHP-PDK-howto.txt create mode 100644 examples/IHPOpenSourcePDK/c7552_ann_IHP.net create mode 100644 examples/IHPOpenSourcePDK/nmos_pmos_PSP103.sp diff --git a/examples/IHPOpenSourcePDK/19-stage-ro.cir b/examples/IHPOpenSourcePDK/19-stage-ro.cir new file mode 100644 index 000000000..779d29b55 --- /dev/null +++ b/examples/IHPOpenSourcePDK/19-stage-ro.cir @@ -0,0 +1,75 @@ +NAND-2 Ring Oscillator IHP Open PDK + +.lib "$PDK_ROOT/$PDK/libs.tech/ngspice/models/cornerMOSlv.lib" mos_tt + +.subckt nand2 a b vdd vss z +xm01 vdd a z vdd sg13_lv_pmos l=0.15u w=0.96u as=0.20405p ad=0.20405p ps=2.07u pd=2.07u +xm02 vss a sig3 vss sg13_lv_nmos l=0.15u w=0.82u as=0.1749p ad=0.1749p ps=1.85u pd=1.85u +xm03 z b vdd vdd sg13_lv_pmos l=0.15u w=0.96u as=0.20405p ad=0.20405p ps=2.07u pd=2.07u +xm04 sig3 b z vss sg13_lv_nmos l=0.15u w=0.82u as=0.1749p ad=0.1749p ps=1.85u pd=1.85u +c4 a vss 0.549f +c5 b vss 0.578f +c1 z vss 0.609f +.ends + +XNAND1 1 1 vd vs 2 nand2 +XNAND2 2 2 vd vs 3 nand2 +XNAND3 3 3 vd vs 4 nand2 +XNAND4 4 4 vd vs 5 nand2 +XNAND5 5 5 vd vs 6 nand2 +XNAND6 6 6 vd vs 7 nand2 +XNAND7 7 7 vd vs 8 nand2 +XNAND8 8 8 vd vs 9 nand2 +XNAND9 9 9 vd vs 10 nand2 +XNAND10 10 10 vd vs 11 nand2 +XNAND11 11 11 vd vs 12 nand2 +XNAND12 12 12 vd vs 13 nand2 +XNAND13 13 13 vd vs 14 nand2 +XNAND14 14 14 vd vs 15 nand2 +XNAND15 15 15 vd vs 16 nand2 +XNAND16 16 16 vd vs 17 nand2 +XNAND17 17 17 vd vs 18 nand2 +XNAND18 18 18 vd vs 19 nand2 +XNAND19 19 19 vd vs 1 nand2 + +XNAND20 1 1 vd 0 out nand2 + +Vdd vd 0 1.5 +Vss vs 0 0 + +.option noinit + +.tran 10p 80n uic + +.control +pre_osdi ../lib/ngspice/psp103_nqs.osdi +pre_osdi ../lib/ngspice/psp103.osdi +set temp=0 +option klu +run +rusage +set xbrushwidth=3 +plot i(Vss) ylimit 0 500u xlimit 50n 60n +plot out xlimit 50n 60n +meas tran tdiff TRIG V(out) val=0.7 rise=5 TARG v(out) val=0.7 rise=15 +let freq=10/tdiff +print freq +linearize out +fft out +plot mag(out) xlimit 300Meg 2300Meg +meas sp fmax MAX_AT out from=1e8 to=1e9 +echo +echo +set temp=120 +run +plot out xlimit 50n 60n +meas tran tdiff TRIG V(out) val=0.7 rise=5 TARG v(out) val=0.7 rise=15 +let freq=10/tdiff +print freq +linearize out +fft out +plot mag(out) xlimit 300Meg 2300Meg +meas sp fmax MAX_AT out from=1e8 to=1e9 +.endc + +.end diff --git a/examples/IHPOpenSourcePDK/IHP-PDK-howto.txt b/examples/IHPOpenSourcePDK/IHP-PDK-howto.txt new file mode 100644 index 000000000..fbfc7ccd7 --- /dev/null +++ b/examples/IHPOpenSourcePDK/IHP-PDK-howto.txt @@ -0,0 +1,17 @@ +H. Vogt, 30.06.2026 + + +Install IHP PDK from github at https://github.com/IHP-GmbH/IHP-Open-PDK +Set the environmental variables PDK_ROOT and PDK, e.g. + +PDK_ROOT D:\Spice_general\IHP-Open-PDK +PDK ihp-sg13g2 + +Have the OpenVAF-compiled models for MOS ready: psp103.osdi, psp103_nqs.osdi. + +in .spiceinit, add the following: + +set ngbehavior=hsa +option KLU + +Run the examples. diff --git a/examples/IHPOpenSourcePDK/c7552_ann_IHP.net b/examples/IHPOpenSourcePDK/c7552_ann_IHP.net new file mode 100644 index 000000000..f81ec7bde --- /dev/null +++ b/examples/IHPOpenSourcePDK/c7552_ann_IHP.net @@ -0,0 +1,89240 @@ +* ISCAS85 benchmark circuit SPICE netlist +* generated by spicegen.pl 1.0 +* by Jingye Xu @ VLSI group, Dept of ECE, UIC +* Modified for use with IHP Open PDK by Holger Vogt, 2023 + +.lib "D:\Spice_general\IHP-Open-PDK\ihp-sg13g2\libs.tech\ngspice\models\cornerMOSlv.lib" mos_tt + +.OPTIONS GMIN=1e-015 ABSTOL=1e-13 ACCT noopiter +*.options vntol=10u + +**** the input ports: g110_0 g21_0 g18_1 g189_1 g172_2 g70_1 g103_0 g114_0 g92_1 g150_1 g198_1 g125_0 g30_0 g69_1 g45_0 g83_1 g157_0 g182_1 g82_0 g63_1 g42_1 g51_2 g99_1 g62_0 g169_2 g39_0 g128_1 g130_0 g78_1 g195_2 g38_1 g134_1 g191_2 g5_1 g176_1 g117_1 g35_1 g194_1 g41_0 g97_0 g147_1 g14_2 g137_0 g66_2 g26_1 g140_1 g154_1 g185_0 g48_0 g87_0 g106_1 g151_0 g158_0 g15_0 g7_1 g74_1 g122_0 g86_1 g56_1 g165_0 g34_0 g206_6 g57_1 g138_1 g168_0 g17_0 g27_1 g93_0 g199_0 g180_0 g202_0 g173_0 g22_1 g131_0 g192_1 g135_1 g4_1 g77_1 g111_1 g126_1 g52_2 g79_1 g81_1 g156_1 g64_1 g43_0 g183_1 g23_1 g13_2 g53_1 g90_0 g143_0 g153_1 g177_2 g98_0 g19_1 g118_1 g146_1 g102_1 g186_2 g6_4 g1_2 g28_0 g164_1 g33_0 g49_1 g123_0 g205_1 g105_0 g73_1 g170_1 g85_1 g44_0 g67_1 g204_1 g163_1 g159_0 g76_0 g94_0 g139_1 g193_2 g58_1 g100_0 g32_2 g50_0 g132_1 g174_0 g149_1 g12_2 g112_1 g101_0 g119_1 g24_1 g127_1 g201_2 g37_0 g9_2 g207_1 g120_1 g60_1 g108_1 g171_2 g72_2 g46_1 g3_1 g80_1 g59_1 g54_0 g10_1 g152_1 g115_0 g166_2 g95_0 g167_1 g178_2 g187_1 g142_1 g196_0 g113_1 g31_1 g124_1 g190_0 g175_2 g84_0 g133_0 g68_1 g203_2 g75_0 g162_0 g11_1 g144_1 g136_0 g129_1 g91_1 g161_1 g29_1 g155_0 g200_0 g89_1 g141_0 g20_1 g188_2 g104_1 g148_0 g61_1 g65_2 g2_0 g184_3 g109_0 g71_2 g40_0 g47_1 g107_0 g36_1 g121_1 g8_0 g88_0 g16_1 g160_0 g179_0 g96_0 g55_1 g181_3 g25_0 g197_2 g116_0 g145_1 **** +**** the output ports: g7529_1 g7509_0 g7484_1 g7477_1 g7460_0 g7503_1 g7522_0 g7485_1 g7453_0 g7474_0 g7500_0 g7514_0 g7546_1 g7549_0 g7467_0 g7491_0 g7456_0 g7495_1 g7545_0 g7473_0 g7541_0 g7448_1 g7525_1 g7550_1 g165_1 g7510_1 g7535_1 g7534_1 g7469_1 g7476_0 g7517_1 g7537_0 g7489_1 g7521_1 g7486_0 g7533_1 g7449_0 g7447_0 g7528_0 g7513_1 g7548_0 g7544_1 g7552_0 g7540_1 g7507_0 g7481_0 g7455_0 g7502_1 g7446_1 g7478_1 g7470_0 g7526_0 g7494_1 g7452_1 g7463_0 g7532_1 g7512_0 g7527_0 g7451_0 g7472_0 g7498_1 g7475_0 g7536_0 g7488_1 g7493_1 g7551_1 g7482_0 g7487_1 g7501_1 g7520_1 g7516_1 g7450_1 g7508_0 g7458_1 g7479_1 g7506_1 g7499_0 g7471_0 g7465_1 g7464_1 g7543_1 g7524_0 g7539_1 g7468_1 g7459_0 g7504_1 g7515_1 g7492_1 g7511_0 g7462_1 g7530_0 g7497_1 g7454_1 g7519_1 g7531_0 g7547_0 g7483_1 g7466_1 g7480_1 g7523_1 g7496_0 g7538_0 g7490_1 g7518_1 g7461_0 g7542_0 g7457_0 g7505_1 **** + +* the voltage sources: +Vdd vdd gnd DC 1.8 + +* the input ports: +V1 g110_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V2 g21_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V3 g18_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V4 g189_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V5 g172_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V6 g70_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V7 g103_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V8 g114_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V9 g92_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V10 g150_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V11 g198_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V12 g125_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V13 g30_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V14 g69_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V15 g45_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V16 g83_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V17 g157_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V18 g182_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V19 g82_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V20 g63_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V21 g42_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V22 g51_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V23 g99_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V24 g62_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V25 g169_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V26 g39_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V27 g128_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V28 g130_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V29 g78_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V30 g195_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V31 g38_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V32 g134_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V33 g191_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V34 g5_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V35 g176_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V36 g117_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V37 g35_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V38 g194_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V39 g41_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V40 g97_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V41 g147_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V42 g14_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V43 g137_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V44 g66_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V45 g26_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V46 g140_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V47 g154_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V48 g185_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V49 g48_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V50 g87_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V51 g106_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V52 g151_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V53 g158_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V54 g15_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V55 g7_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V56 g74_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V57 g122_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V58 g86_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V59 g56_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V60 g165_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V61 g34_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V62 g206_6 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V63 g57_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V64 g138_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V65 g168_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V66 g17_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V67 g27_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V68 g93_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V69 g199_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V70 g180_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V71 g202_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V72 g173_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V73 g22_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V74 g131_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V75 g192_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V76 g135_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V77 g4_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V78 g77_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V79 g111_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V80 g126_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V81 g52_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V82 g79_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V83 g81_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V84 g156_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V85 g64_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V86 g43_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V87 g183_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V88 g23_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V89 g13_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V90 g53_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V91 g90_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V92 g143_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V93 g153_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V94 g177_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V95 g98_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V96 g19_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V97 g118_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V98 g146_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V99 g102_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V100 g186_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V101 g6_4 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V102 g1_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V103 g28_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V104 g164_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V105 g33_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V106 g49_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V107 g123_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V108 g205_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V109 g105_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V110 g73_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V111 g170_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V112 g85_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V113 g44_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V114 g67_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V115 g204_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V116 g163_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V117 g159_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V118 g76_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V119 g94_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V120 g139_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V121 g193_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V122 g58_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V123 g100_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V124 g32_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V125 g50_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V126 g132_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V127 g174_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V128 g149_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V129 g12_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V130 g112_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V131 g101_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V132 g119_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V133 g24_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V134 g127_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V135 g201_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V136 g37_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V137 g9_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V138 g207_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V139 g120_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V140 g60_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V141 g108_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V142 g171_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V143 g72_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V144 g46_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V145 g3_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V146 g80_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V147 g59_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V148 g54_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V149 g10_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V150 g152_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V151 g115_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V152 g166_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V153 g95_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V154 g167_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V155 g178_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V156 g187_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V157 g142_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V158 g196_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V159 g113_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V160 g31_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V161 g124_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V162 g190_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V163 g175_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V164 g84_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V165 g133_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V166 g68_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V167 g203_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V168 g75_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V169 g162_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V170 g11_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V171 g144_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V172 g136_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V173 g129_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V174 g91_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V175 g161_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V176 g29_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V177 g155_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V178 g200_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V179 g89_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V180 g141_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V181 g20_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V182 g188_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V183 g104_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V184 g148_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V185 g61_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V186 g65_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V187 g2_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V188 g184_3 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V189 g109_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V190 g71_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V191 g40_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V192 g47_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V193 g107_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V194 g36_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V195 g121_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V196 g8_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V197 g88_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V198 g16_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V199 g160_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V200 g179_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V201 g96_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V202 g55_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V203 g181_3 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V204 g25_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V205 g197_2 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V206 g116_0 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) +V207 g145_1 gnd dc 0 pulse(0 1 0p 200p 100p 1n 2n) + +* the net sub circuits: + +.subckt netx81 x81_1 x81_0 gnd +C1 x81_1 gnd 2.080806f +C2 x81_0 gnd 2.080806f +R1 x81_1 x81_0 2.224404 +.ends + +.subckt netg4055 g4055_1 g4055_0 gnd +C1 g4055_1 gnd 2.080806f +C2 g4055_0 gnd 2.080806f +R1 g4055_1 g4055_0 2.224404 +.ends + +.subckt netg6531 g6531_1 g6531_0 gnd +C1 g6531_1 gnd 2.080806f +C2 g6531_0 gnd 2.080806f +R1 g6531_0 g6531_1 2.224404 +.ends + +.subckt netg1255 g1255_0 g1255_1 gnd +C1 g1255_0 gnd 2.080806f +C2 g1255_1 gnd 2.080806f +R1 g1255_1 g1255_0 2.224404 +.ends + +.subckt netg5391 g5391_0 g5391_1 gnd +C1 g5391_0 gnd 2.080806f +C2 g5391_1 gnd 2.080806f +R1 g5391_1 g5391_0 2.224404 +.ends + +.subckt netg4749 g4749_0 g4749_1 gnd +C1 g4749_0 gnd 2.080806f +C2 g4749_1 gnd 2.080806f +R1 g4749_0 g4749_1 2.224404 +.ends + +.subckt netg7003 g7003_0 g7003_1 gnd +C1 g7003_0 gnd 2.080806f +C2 g7003_1 gnd 2.080806f +R1 g7003_0 g7003_1 2.224404 +.ends + +.subckt netx242 x242_1 x242_0 gnd +C1 x242_1 gnd 2.080806f +C2 x242_0 gnd 2.080806f +R1 x242_0 x242_1 2.224404 +.ends + +.subckt netg6733 g6733_0 g6733_1 gnd +C1 g6733_0 gnd 2.080806f +C2 g6733_1 gnd 2.080806f +R1 g6733_1 g6733_0 2.224404 +.ends + +.subckt netg404 g404_2 g404_0 gnd +C1 g404_2 gnd 2.080806f +C2 g404_0 gnd 2.080806f +R1 g404_2 g404_0 2.224404 +.ends + +.subckt netg2934 g2934_1 g2934_0 gnd +C1 g2934_1 gnd 2.080806f +C2 g2934_0 gnd 2.080806f +R1 g2934_0 g2934_1 2.224404 +.ends + +.subckt netg6397 g6397_0 g6397_1 gnd +C1 g6397_0 gnd 2.080806f +C2 g6397_1 gnd 2.080806f +R1 g6397_1 g6397_0 2.224404 +.ends + +.subckt netg7266 g7266_1 g7266_0 gnd +C1 g7266_1 gnd 2.080806f +C2 g7266_0 gnd 2.080806f +R1 g7266_0 g7266_1 2.224404 +.ends + +.subckt netg5784 g5784_0 g5784_1 gnd +C1 g5784_0 gnd 2.080806f +C2 g5784_1 gnd 2.080806f +R1 g5784_1 g5784_0 2.224404 +.ends + +.subckt netg6546 g6546_1 g6546_2 gnd +C1 g6546_1 gnd 2.080806f +C2 g6546_2 gnd 2.080806f +R1 g6546_2 g6546_1 2.224404 +.ends + +.subckt netg6937 g6937_1 g6937_0 gnd +C1 g6937_1 gnd 2.080806f +C2 g6937_0 gnd 2.080806f +R1 g6937_0 g6937_1 2.224404 +.ends + +.subckt netg2929 g2929_1 g2929_0 gnd +C1 g2929_1 gnd 2.080806f +C2 g2929_0 gnd 2.080806f +R1 g2929_0 g2929_1 2.224404 +.ends + +.subckt netg4099 g4099_1 g4099_0 gnd +C1 g4099_1 gnd 2.080806f +C2 g4099_0 gnd 2.080806f +R1 g4099_1 g4099_0 2.224404 +.ends + +.subckt netg3537 g3537_0 g3537_1 gnd +C1 g3537_0 gnd 2.080806f +C2 g3537_1 gnd 2.080806f +R1 g3537_1 g3537_0 2.224404 +.ends + +.subckt netg4245 g4245_0 g4245_1 gnd +C1 g4245_0 gnd 2.080806f +C2 g4245_1 gnd 2.080806f +R1 g4245_0 g4245_1 2.224404 +.ends + +.subckt netg5584 g5584_1 g5584_0 gnd +C1 g5584_1 gnd 2.080806f +C2 g5584_0 gnd 2.080806f +R1 g5584_0 g5584_1 2.224404 +.ends + +.subckt netg4531 g4531_1 g4531_0 gnd +C1 g4531_1 gnd 2.080806f +C2 g4531_0 gnd 2.080806f +R1 g4531_1 g4531_0 2.224404 +.ends + +.subckt netg3903 g3903_1 g3903_0 gnd +C1 g3903_1 gnd 2.080806f +C2 g3903_0 gnd 2.080806f +R1 g3903_1 g3903_0 2.224404 +.ends + +.subckt netg7164 g7164_1 g7164_0 gnd +C1 g7164_1 gnd 2.080806f +C2 g7164_0 gnd 2.080806f +R1 g7164_0 g7164_1 2.224404 +.ends + +.subckt netg1998 g1998_0 g1998_1 gnd +C1 g1998_0 gnd 2.080806f +C2 g1998_1 gnd 2.080806f +R1 g1998_1 g1998_0 2.224404 +.ends + +.subckt netx461 x461_0 x461_1 gnd +C1 x461_0 gnd 2.080806f +C2 x461_1 gnd 2.080806f +R1 x461_0 x461_1 2.224404 +.ends + +.subckt netg4257 g4257_0 g4257_1 gnd +C1 g4257_0 gnd 2.080806f +C2 g4257_1 gnd 2.080806f +R1 g4257_1 g4257_0 2.224404 +.ends + +.subckt netg961 g961_2 g961_1 gnd +C1 g961_2 gnd 2.080806f +C2 g961_1 gnd 2.080806f +R1 g961_2 g961_1 2.224404 +.ends + +.subckt netg2816 g2816_0 g2816_1 gnd +C1 g2816_0 gnd 2.080806f +C2 g2816_1 gnd 2.080806f +R1 g2816_0 g2816_1 2.224404 +.ends + +.subckt netg6439 g6439_1 g6439_0 gnd +C1 g6439_1 gnd 2.080806f +C2 g6439_0 gnd 2.080806f +R1 g6439_1 g6439_0 2.224404 +.ends + +.subckt netg6979 g6979_1 g6979_0 gnd +C1 g6979_1 gnd 2.080806f +C2 g6979_0 gnd 2.080806f +R1 g6979_0 g6979_1 2.224404 +.ends + +.subckt netg6213 g6213_0 g6213_1 gnd +C1 g6213_0 gnd 2.080806f +C2 g6213_1 gnd 2.080806f +R1 g6213_0 g6213_1 2.224404 +.ends + +.subckt netg7268 g7268_1 g7268_0 gnd +C1 g7268_1 gnd 2.080806f +C2 g7268_0 gnd 2.080806f +R1 g7268_0 g7268_1 2.224404 +.ends + +.subckt netg1933 g1933_1 g1933_0 gnd +C1 g1933_1 gnd 2.080806f +C2 g1933_0 gnd 2.080806f +R1 g1933_1 g1933_0 2.224404 +.ends + +.subckt netg3986 g3986_0 g3986_1 gnd +C1 g3986_0 gnd 2.080806f +C2 g3986_1 gnd 2.080806f +R1 g3986_1 g3986_0 2.224404 +.ends + +.subckt netg2916 g2916_1 g2916_0 gnd +C1 g2916_1 gnd 2.080806f +C2 g2916_0 gnd 2.080806f +R1 g2916_1 g2916_0 2.224404 +.ends + +.subckt netg6553 g6553_0 g6553_1 gnd +C1 g6553_0 gnd 2.080806f +C2 g6553_1 gnd 2.080806f +R1 g6553_1 g6553_0 2.224404 +.ends + +.subckt netg2788 g2788_0 g2788_1 gnd +C1 g2788_0 gnd 2.080806f +C2 g2788_1 gnd 2.080806f +R1 g2788_1 g2788_0 2.224404 +.ends + +.subckt netg5960 g5960_0 g5960_1 gnd +C1 g5960_0 gnd 2.080806f +C2 g5960_1 gnd 2.080806f +R1 g5960_1 g5960_0 2.224404 +.ends + +.subckt netg3549 g3549_0 g3549_1 gnd +C1 g3549_0 gnd 2.080806f +C2 g3549_1 gnd 2.080806f +R1 g3549_1 g3549_0 2.224404 +.ends + +.subckt netg6206 g6206_0 g6206_1 gnd +C1 g6206_0 gnd 2.080806f +C2 g6206_1 gnd 2.080806f +R1 g6206_1 g6206_0 2.224404 +.ends + +.subckt netg1874 g1874_2 g1874_1 gnd +C1 g1874_2 gnd 2.080806f +C2 g1874_1 gnd 2.080806f +R1 g1874_1 g1874_2 2.224404 +.ends + +.subckt netg6916 g6916_1 g6916_0 gnd +C1 g6916_1 gnd 2.080806f +C2 g6916_0 gnd 2.080806f +R1 g6916_0 g6916_1 2.224404 +.ends + +.subckt netg5365 g5365_0 g5365_1 gnd +C1 g5365_0 gnd 2.080806f +C2 g5365_1 gnd 2.080806f +R1 g5365_1 g5365_0 2.224404 +.ends + +.subckt netg1131 g1131_1 g1131_0 gnd +C1 g1131_1 gnd 2.080806f +C2 g1131_0 gnd 2.080806f +R1 g1131_0 g1131_1 2.224404 +.ends + +.subckt netg7189 g7189_1 g7189_0 gnd +C1 g7189_1 gnd 2.080806f +C2 g7189_0 gnd 2.080806f +R1 g7189_1 g7189_0 2.224404 +.ends + +.subckt netg4313 g4313_1 g4313_0 gnd +C1 g4313_1 gnd 2.080806f +C2 g4313_0 gnd 2.080806f +R1 g4313_1 g4313_0 2.224404 +.ends + +.subckt netg2426 g2426_0 g2426_2 gnd +C1 g2426_0 gnd 2.080806f +C2 g2426_2 gnd 2.080806f +R1 g2426_0 g2426_2 2.224404 +.ends + +.subckt netg7001 g7001_1 g7001_0 gnd +C1 g7001_1 gnd 2.080806f +C2 g7001_0 gnd 2.080806f +R1 g7001_1 g7001_0 2.224404 +.ends + +.subckt netg2952 g2952_1 g2952_0 gnd +C1 g2952_1 gnd 2.080806f +C2 g2952_0 gnd 2.080806f +R1 g2952_1 g2952_0 2.224404 +.ends + +.subckt netg5880 g5880_1 g5880_0 gnd +C1 g5880_1 gnd 2.080806f +C2 g5880_0 gnd 2.080806f +R1 g5880_0 g5880_1 2.224404 +.ends + +.subckt netg3513 g3513_1 g3513_0 gnd +C1 g3513_1 gnd 2.080806f +C2 g3513_0 gnd 2.080806f +R1 g3513_1 g3513_0 2.224404 +.ends + +.subckt netg2939 g2939_0 g2939_1 gnd +C1 g2939_0 gnd 2.080806f +C2 g2939_1 gnd 2.080806f +R1 g2939_1 g2939_0 2.224404 +.ends + +.subckt netg3524 g3524_0 g3524_1 gnd +C1 g3524_0 gnd 2.080806f +C2 g3524_1 gnd 2.080806f +R1 g3524_1 g3524_0 2.224404 +.ends + +.subckt netg6729 g6729_1 g6729_0 gnd +C1 g6729_1 gnd 2.080806f +C2 g6729_0 gnd 2.080806f +R1 g6729_0 g6729_1 2.224404 +.ends + +.subckt netg7354 g7354_1 g7354_0 gnd +C1 g7354_1 gnd 2.080806f +C2 g7354_0 gnd 2.080806f +R1 g7354_0 g7354_1 2.224404 +.ends + +.subckt netg2818 g2818_0 g2818_1 gnd +C1 g2818_0 gnd 2.080806f +C2 g2818_1 gnd 2.080806f +R1 g2818_1 g2818_0 2.224404 +.ends + +.subckt netg6447 g6447_1 g6447_0 gnd +C1 g6447_1 gnd 2.080806f +C2 g6447_0 gnd 2.080806f +R1 g6447_0 g6447_1 2.224404 +.ends + +.subckt netg6132 g6132_0 g6132_1 gnd +C1 g6132_0 gnd 2.080806f +C2 g6132_1 gnd 2.080806f +R1 g6132_0 g6132_1 2.224404 +.ends + +.subckt netg3510 g3510_0 g3510_1 gnd +C1 g3510_0 gnd 2.080806f +C2 g3510_1 gnd 2.080806f +R1 g3510_0 g3510_1 2.224404 +.ends + +.subckt netg3486 g3486_1 g3486_0 gnd +C1 g3486_1 gnd 2.080806f +C2 g3486_0 gnd 2.080806f +R1 g3486_0 g3486_1 2.224404 +.ends + +.subckt netg6042 g6042_0 g6042_1 gnd +C1 g6042_0 gnd 2.080806f +C2 g6042_1 gnd 2.080806f +R1 g6042_0 g6042_1 2.224404 +.ends + +.subckt netg1591 g1591_1 g1591_0 gnd +C1 g1591_1 gnd 2.080806f +C2 g1591_0 gnd 2.080806f +R1 g1591_0 g1591_1 2.224404 +.ends + +.subckt netg4096 g4096_1 g4096_0 gnd +C1 g4096_1 gnd 2.080806f +C2 g4096_0 gnd 2.080806f +R1 g4096_1 g4096_0 2.224404 +.ends + +.subckt netg4048 g4048_1 g4048_0 gnd +C1 g4048_1 gnd 2.080806f +C2 g4048_0 gnd 2.080806f +R1 g4048_1 g4048_0 2.224404 +.ends + +.subckt netg2813 g2813_1 g2813_0 gnd +C1 g2813_1 gnd 2.080806f +C2 g2813_0 gnd 2.080806f +R1 g2813_0 g2813_1 2.224404 +.ends + +.subckt netg1928 g1928_0 g1928_1 gnd +C1 g1928_0 gnd 2.080806f +C2 g1928_1 gnd 2.080806f +R1 g1928_1 g1928_0 2.224404 +.ends + +.subckt netg5233 g5233_0 g5233_1 gnd +C1 g5233_0 gnd 2.080806f +C2 g5233_1 gnd 2.080806f +R1 g5233_1 g5233_0 2.224404 +.ends + +.subckt netg5369 g5369_1 g5369_0 gnd +C1 g5369_1 gnd 2.080806f +C2 g5369_0 gnd 2.080806f +R1 g5369_1 g5369_0 2.224404 +.ends + +.subckt netg4451 g4451_1 g4451_0 gnd +C1 g4451_1 gnd 2.080806f +C2 g4451_0 gnd 2.080806f +R1 g4451_1 g4451_0 2.224404 +.ends + +.subckt netg3480 g3480_1 g3480_0 gnd +C1 g3480_1 gnd 2.080806f +C2 g3480_0 gnd 2.080806f +R1 g3480_0 g3480_1 2.224404 +.ends + +.subckt netg7359 g7359_0 g7359_1 gnd +C1 g7359_0 gnd 2.080806f +C2 g7359_1 gnd 2.080806f +R1 g7359_1 g7359_0 2.224404 +.ends + +.subckt netg4302 g4302_0 g4302_1 gnd +C1 g4302_0 gnd 2.080806f +C2 g4302_1 gnd 2.080806f +R1 g4302_0 g4302_1 2.224404 +.ends + +.subckt netg6047 g6047_1 g6047_0 gnd +C1 g6047_1 gnd 2.080806f +C2 g6047_0 gnd 2.080806f +R1 g6047_1 g6047_0 2.224404 +.ends + +.subckt netg7358 g7358_0 g7358_1 gnd +C1 g7358_0 gnd 2.080806f +C2 g7358_1 gnd 2.080806f +R1 g7358_1 g7358_0 2.224404 +.ends + +.subckt netg4280 g4280_1 g4280_0 gnd +C1 g4280_1 gnd 2.080806f +C2 g4280_0 gnd 2.080806f +R1 g4280_0 g4280_1 2.224404 +.ends + +.subckt netg5411 g5411_1 g5411_0 gnd +C1 g5411_1 gnd 2.080806f +C2 g5411_0 gnd 2.080806f +R1 g5411_1 g5411_0 2.224404 +.ends + +.subckt netx22 x22_0 x22_1 gnd +C1 x22_0 gnd 2.080806f +C2 x22_1 gnd 2.080806f +R1 x22_0 x22_1 2.224404 +.ends + +.subckt netg1128 g1128_0 g1128_1 gnd +C1 g1128_0 gnd 2.080806f +C2 g1128_1 gnd 2.080806f +R1 g1128_0 g1128_1 2.224404 +.ends + +.subckt netg3691 g3691_2 g3691_0 gnd +C1 g3691_2 gnd 2.080806f +C2 g3691_0 gnd 2.080806f +R1 g3691_0 g3691_2 2.224404 +.ends + +.subckt netg7213 g7213_1 g7213_0 gnd +C1 g7213_1 gnd 2.080806f +C2 g7213_0 gnd 2.080806f +R1 g7213_0 g7213_1 2.224404 +.ends + +.subckt netg2764 g2764_0 g2764_1 gnd +C1 g2764_0 gnd 2.080806f +C2 g2764_1 gnd 2.080806f +R1 g2764_0 g2764_1 2.224404 +.ends + +.subckt netg6382 g6382_1 g6382_0 gnd +C1 g6382_1 gnd 2.080806f +C2 g6382_0 gnd 2.080806f +R1 g6382_1 g6382_0 2.224404 +.ends + +.subckt netg3894 g3894_1 g3894_0 gnd +C1 g3894_1 gnd 2.080806f +C2 g3894_0 gnd 2.080806f +R1 g3894_0 g3894_1 2.224404 +.ends + +.subckt netg6815 g6815_1 g6815_0 gnd +C1 g6815_1 gnd 2.080806f +C2 g6815_0 gnd 2.080806f +R1 g6815_0 g6815_1 2.224404 +.ends + +.subckt netg2773 g2773_0 g2773_1 gnd +C1 g2773_0 gnd 2.080806f +C2 g2773_1 gnd 2.080806f +R1 g2773_1 g2773_0 2.224404 +.ends + +.subckt netg2228 g2228_1 g2228_0 gnd +C1 g2228_1 gnd 2.080806f +C2 g2228_0 gnd 2.080806f +R1 g2228_1 g2228_0 2.224404 +.ends + +.subckt netg5246 g5246_1 g5246_0 gnd +C1 g5246_1 gnd 2.080806f +C2 g5246_0 gnd 2.080806f +R1 g5246_0 g5246_1 2.224404 +.ends + +.subckt netg2821 g2821_0 g2821_1 gnd +C1 g2821_0 gnd 2.080806f +C2 g2821_1 gnd 2.080806f +R1 g2821_0 g2821_1 2.224404 +.ends + +.subckt netx312 x312_0 x312_1 gnd +C1 x312_0 gnd 2.080806f +C2 x312_1 gnd 2.080806f +R1 x312_1 x312_0 2.224404 +.ends + +.subckt netg3983 g3983_1 g3983_0 gnd +C1 g3983_1 gnd 2.080806f +C2 g3983_0 gnd 2.080806f +R1 g3983_1 g3983_0 2.224404 +.ends + +.subckt netg4329 g4329_1 g4329_0 gnd +C1 g4329_1 gnd 2.080806f +C2 g4329_0 gnd 2.080806f +R1 g4329_1 g4329_0 2.224404 +.ends + +.subckt netg7374 g7374_0 g7374_1 gnd +C1 g7374_0 gnd 2.080806f +C2 g7374_1 gnd 2.080806f +R1 g7374_0 g7374_1 2.224404 +.ends + +.subckt netg2501 g2501_2 g2501_0 gnd +C1 g2501_2 gnd 2.080806f +C2 g2501_0 gnd 2.080806f +R1 g2501_0 g2501_2 2.224404 +.ends + +.subckt netg4100 g4100_1 g4100_0 gnd +C1 g4100_1 gnd 2.080806f +C2 g4100_0 gnd 2.080806f +R1 g4100_1 g4100_0 2.224404 +.ends + +.subckt netg6013 g6013_0 g6013_1 gnd +C1 g6013_0 gnd 2.080806f +C2 g6013_1 gnd 2.080806f +R1 g6013_0 g6013_1 2.224404 +.ends + +.subckt netg2760 g2760_1 g2760_0 gnd +C1 g2760_1 gnd 2.080806f +C2 g2760_0 gnd 2.080806f +R1 g2760_1 g2760_0 2.224404 +.ends + +.subckt netg7212 g7212_0 g7212_1 gnd +C1 g7212_0 gnd 2.080806f +C2 g7212_1 gnd 2.080806f +R1 g7212_1 g7212_0 2.224404 +.ends + +.subckt netg3923 g3923_1 g3923_0 gnd +C1 g3923_1 gnd 2.080806f +C2 g3923_0 gnd 2.080806f +R1 g3923_1 g3923_0 2.224404 +.ends + +.subckt netg3414 g3414_2 g3414_1 gnd +C1 g3414_2 gnd 2.080806f +C2 g3414_1 gnd 2.080806f +R1 g3414_1 g3414_2 2.224404 +.ends + +.subckt netg5597 g5597_0 g5597_1 gnd +C1 g5597_0 gnd 2.080806f +C2 g5597_1 gnd 2.080806f +R1 g5597_0 g5597_1 2.224404 +.ends + +.subckt netg4298 g4298_0 g4298_1 gnd +C1 g4298_0 gnd 2.080806f +C2 g4298_1 gnd 2.080806f +R1 g4298_1 g4298_0 2.224404 +.ends + +.subckt netg7046 g7046_0 g7046_1 gnd +C1 g7046_0 gnd 2.080806f +C2 g7046_1 gnd 2.080806f +R1 g7046_0 g7046_1 2.224404 +.ends + +.subckt netg6452 g6452_1 g6452_0 gnd +C1 g6452_1 gnd 2.080806f +C2 g6452_0 gnd 2.080806f +R1 g6452_1 g6452_0 2.224404 +.ends + +.subckt netg6081 g6081_1 g6081_0 gnd +C1 g6081_1 gnd 2.080806f +C2 g6081_0 gnd 2.080806f +R1 g6081_0 g6081_1 2.224404 +.ends + +.subckt netg5448 g5448_2 g5448_1 gnd +C1 g5448_2 gnd 2.080806f +C2 g5448_1 gnd 2.080806f +R1 g5448_1 g5448_2 2.224404 +.ends + +.subckt netg3367 g3367_1 g3367_0 gnd +C1 g3367_1 gnd 2.080806f +C2 g3367_0 gnd 2.080806f +R1 g3367_0 g3367_1 2.224404 +.ends + +.subckt netg5353 g5353_0 g5353_1 gnd +C1 g5353_0 gnd 2.080806f +C2 g5353_1 gnd 2.080806f +R1 g5353_1 g5353_0 2.224404 +.ends + +.subckt netg7191 g7191_0 g7191_1 gnd +C1 g7191_0 gnd 2.080806f +C2 g7191_1 gnd 2.080806f +R1 g7191_1 g7191_0 2.224404 +.ends + +.subckt netg4013 g4013_0 g4013_1 gnd +C1 g4013_0 gnd 2.080806f +C2 g4013_1 gnd 2.080806f +R1 g4013_0 g4013_1 2.224404 +.ends + +.subckt netg6580 g6580_0 g6580_1 gnd +C1 g6580_0 gnd 2.080806f +C2 g6580_1 gnd 2.080806f +R1 g6580_1 g6580_0 2.224404 +.ends + +.subckt netg2350 g2350_2 g2350_0 gnd +C1 g2350_2 gnd 2.080806f +C2 g2350_0 gnd 2.080806f +R1 g2350_2 g2350_0 2.224404 +.ends + +.subckt netg3519 g3519_1 g3519_0 gnd +C1 g3519_1 gnd 2.080806f +C2 g3519_0 gnd 2.080806f +R1 g3519_1 g3519_0 2.224404 +.ends + +.subckt netg387 g387_0 g387_1 gnd +C1 g387_0 gnd 2.080806f +C2 g387_1 gnd 2.080806f +R1 g387_0 g387_1 2.224404 +.ends + +.subckt netg6199 g6199_2 g6199_0 gnd +C1 g6199_2 gnd 2.080806f +C2 g6199_0 gnd 2.080806f +R1 g6199_2 g6199_0 2.224404 +.ends + +.subckt netg7293 g7293_1 g7293_0 gnd +C1 g7293_1 gnd 2.080806f +C2 g7293_0 gnd 2.080806f +R1 g7293_1 g7293_0 2.224404 +.ends + +.subckt netg1432 g1432_0 g1432_1 gnd +C1 g1432_0 gnd 2.080806f +C2 g1432_1 gnd 2.080806f +R1 g1432_0 g1432_1 2.224404 +.ends + +.subckt netg1378 g1378_1 g1378_0 gnd +C1 g1378_1 gnd 2.080806f +C2 g1378_0 gnd 2.080806f +R1 g1378_1 g1378_0 2.224404 +.ends + +.subckt netx332 x332_0 x332_1 gnd +C1 x332_0 gnd 2.080806f +C2 x332_1 gnd 2.080806f +R1 x332_0 x332_1 2.224404 +.ends + +.subckt netg6611 g6611_1 g6611_0 gnd +C1 g6611_1 gnd 2.080806f +C2 g6611_0 gnd 2.080806f +R1 g6611_0 g6611_1 2.224404 +.ends + +.subckt netg3564 g3564_0 g3564_1 gnd +C1 g3564_0 gnd 2.080806f +C2 g3564_1 gnd 2.080806f +R1 g3564_0 g3564_1 2.224404 +.ends + +.subckt netg2774 g2774_1 g2774_0 gnd +C1 g2774_1 gnd 2.080806f +C2 g2774_0 gnd 2.080806f +R1 g2774_0 g2774_1 2.224404 +.ends + +.subckt netg1313 g1313_0 g1313_1 gnd +C1 g1313_0 gnd 2.080806f +C2 g1313_1 gnd 2.080806f +R1 g1313_1 g1313_0 2.224404 +.ends + +.subckt netg6741 g6741_1 g6741_0 gnd +C1 g6741_1 gnd 2.080806f +C2 g6741_0 gnd 2.080806f +R1 g6741_0 g6741_1 2.224404 +.ends + +.subckt netg4290 g4290_0 g4290_1 gnd +C1 g4290_0 gnd 2.080806f +C2 g4290_1 gnd 2.080806f +R1 g4290_1 g4290_0 2.224404 +.ends + +.subckt netg6931 g6931_1 g6931_0 gnd +C1 g6931_1 gnd 2.080806f +C2 g6931_0 gnd 2.080806f +R1 g6931_0 g6931_1 2.224404 +.ends + +.subckt netg5859 g5859_1 g5859_0 gnd +C1 g5859_1 gnd 2.080806f +C2 g5859_0 gnd 2.080806f +R1 g5859_0 g5859_1 2.224404 +.ends + +.subckt netg5827 g5827_0 g5827_1 gnd +C1 g5827_0 gnd 2.080806f +C2 g5827_1 gnd 2.080806f +R1 g5827_1 g5827_0 2.224404 +.ends + +.subckt netg4428 g4428_0 g4428_1 gnd +C1 g4428_0 gnd 2.080806f +C2 g4428_1 gnd 2.080806f +R1 g4428_1 g4428_0 2.224404 +.ends + +.subckt netg4220 g4220_0 g4220_1 gnd +C1 g4220_0 gnd 2.080806f +C2 g4220_1 gnd 2.080806f +R1 g4220_0 g4220_1 2.224404 +.ends + +.subckt netg1174 g1174_0 g1174_1 gnd +C1 g1174_0 gnd 2.080806f +C2 g1174_1 gnd 2.080806f +R1 g1174_0 g1174_1 2.224404 +.ends + +.subckt netg5857 g5857_0 g5857_1 gnd +C1 g5857_0 gnd 2.080806f +C2 g5857_1 gnd 2.080806f +R1 g5857_0 g5857_1 2.224404 +.ends + +.subckt netg4103 g4103_1 g4103_0 gnd +C1 g4103_1 gnd 2.080806f +C2 g4103_0 gnd 2.080806f +R1 g4103_0 g4103_1 2.224404 +.ends + +.subckt netg6102 g6102_0 g6102_1 gnd +C1 g6102_0 gnd 2.080806f +C2 g6102_1 gnd 2.080806f +R1 g6102_1 g6102_0 2.224404 +.ends + +.subckt netg3070 g3070_0 g3070_1 gnd +C1 g3070_0 gnd 2.080806f +C2 g3070_1 gnd 2.080806f +R1 g3070_1 g3070_0 2.224404 +.ends + +.subckt netg6474 g6474_1 g6474_0 gnd +C1 g6474_1 gnd 2.080806f +C2 g6474_0 gnd 2.080806f +R1 g6474_1 g6474_0 2.224404 +.ends + +.subckt netg2781 g2781_1 g2781_0 gnd +C1 g2781_1 gnd 2.080806f +C2 g2781_0 gnd 2.080806f +R1 g2781_0 g2781_1 2.224404 +.ends + +.subckt netg7397 g7397_1 g7397_0 gnd +C1 g7397_1 gnd 2.080806f +C2 g7397_0 gnd 2.080806f +R1 g7397_0 g7397_1 2.224404 +.ends + +.subckt netg1284 g1284_0 g1284_1 gnd +C1 g1284_0 gnd 2.080806f +C2 g1284_1 gnd 2.080806f +R1 g1284_1 g1284_0 2.224404 +.ends + +.subckt netg410 g410_2 g410_0 gnd +C1 g410_2 gnd 2.080806f +C2 g410_0 gnd 2.080806f +R1 g410_2 g410_0 2.224404 +.ends + +.subckt netg2778 g2778_0 g2778_1 gnd +C1 g2778_0 gnd 2.080806f +C2 g2778_1 gnd 2.080806f +R1 g2778_0 g2778_1 2.224404 +.ends + +.subckt netg4283 g4283_0 g4283_1 gnd +C1 g4283_0 gnd 2.080806f +C2 g4283_1 gnd 2.080806f +R1 g4283_0 g4283_1 2.224404 +.ends + +.subckt netg6345 g6345_0 g6345_1 gnd +C1 g6345_0 gnd 2.080806f +C2 g6345_1 gnd 2.080806f +R1 g6345_0 g6345_1 2.224404 +.ends + +.subckt netg5766 g5766_0 g5766_1 gnd +C1 g5766_0 gnd 2.080806f +C2 g5766_1 gnd 2.080806f +R1 g5766_1 g5766_0 2.224404 +.ends + +.subckt netg6254 g6254_0 g6254_1 gnd +C1 g6254_0 gnd 2.080806f +C2 g6254_1 gnd 2.080806f +R1 g6254_0 g6254_1 2.224404 +.ends + +.subckt netg3069 g3069_1 g3069_0 gnd +C1 g3069_1 gnd 2.080806f +C2 g3069_0 gnd 2.080806f +R1 g3069_1 g3069_0 2.224404 +.ends + +.subckt netg6640 g6640_1 g6640_0 gnd +C1 g6640_1 gnd 2.080806f +C2 g6640_0 gnd 2.080806f +R1 g6640_1 g6640_0 2.224404 +.ends + +.subckt netg6014 g6014_1 g6014_0 gnd +C1 g6014_1 gnd 2.080806f +C2 g6014_0 gnd 2.080806f +R1 g6014_1 g6014_0 2.224404 +.ends + +.subckt netg4216 g4216_1 g4216_0 gnd +C1 g4216_1 gnd 2.080806f +C2 g4216_0 gnd 2.080806f +R1 g4216_0 g4216_1 2.224404 +.ends + +.subckt netg1945 g1945_2 g1945_1 gnd +C1 g1945_2 gnd 2.080806f +C2 g1945_1 gnd 2.080806f +R1 g1945_1 g1945_2 2.224404 +.ends + +.subckt netg5527 g5527_0 g5527_1 gnd +C1 g5527_0 gnd 2.080806f +C2 g5527_1 gnd 2.080806f +R1 g5527_1 g5527_0 2.224404 +.ends + +.subckt netg2371 g2371_1 g2371_2 gnd +C1 g2371_1 gnd 2.080806f +C2 g2371_2 gnd 2.080806f +R1 g2371_1 g2371_2 2.224404 +.ends + +.subckt netx82 x82_1 x82_0 gnd +C1 x82_1 gnd 2.080806f +C2 x82_0 gnd 2.080806f +R1 x82_1 x82_0 2.224404 +.ends + +.subckt netg2751 g2751_0 g2751_1 gnd +C1 g2751_0 gnd 2.080806f +C2 g2751_1 gnd 2.080806f +R1 g2751_0 g2751_1 2.224404 +.ends + +.subckt netg4219 g4219_1 g4219_0 gnd +C1 g4219_1 gnd 2.080806f +C2 g4219_0 gnd 2.080806f +R1 g4219_1 g4219_0 2.224404 +.ends + +.subckt netg5998 g5998_0 g5998_1 gnd +C1 g5998_0 gnd 2.080806f +C2 g5998_1 gnd 2.080806f +R1 g5998_0 g5998_1 2.224404 +.ends + +.subckt netg5065 g5065_2 g5065_1 gnd +C1 g5065_2 gnd 2.080806f +C2 g5065_1 gnd 2.080806f +R1 g5065_2 g5065_1 2.224404 +.ends + +.subckt netg6103 g6103_0 g6103_1 gnd +C1 g6103_0 gnd 2.080806f +C2 g6103_1 gnd 2.080806f +R1 g6103_0 g6103_1 2.224404 +.ends + +.subckt netg7047 g7047_0 g7047_1 gnd +C1 g7047_0 gnd 2.080806f +C2 g7047_1 gnd 2.080806f +R1 g7047_0 g7047_1 2.224404 +.ends + +.subckt netg5316 g5316_0 g5316_1 gnd +C1 g5316_0 gnd 2.080806f +C2 g5316_1 gnd 2.080806f +R1 g5316_1 g5316_0 2.224404 +.ends + +.subckt netg7405 g7405_1 g7405_0 gnd +C1 g7405_1 gnd 2.080806f +C2 g7405_0 gnd 2.080806f +R1 g7405_1 g7405_0 2.224404 +.ends + +.subckt netg1518 g1518_1 g1518_0 gnd +C1 g1518_1 gnd 2.080806f +C2 g1518_0 gnd 2.080806f +R1 g1518_1 g1518_0 2.224404 +.ends + +.subckt netg5191 g5191_0 g5191_2 gnd +C1 g5191_0 gnd 2.080806f +C2 g5191_2 gnd 2.080806f +R1 g5191_0 g5191_2 2.224404 +.ends + +.subckt netg5996 g5996_0 g5996_1 gnd +C1 g5996_0 gnd 2.080806f +C2 g5996_1 gnd 2.080806f +R1 g5996_0 g5996_1 2.224404 +.ends + +.subckt netg1125 g1125_1 g1125_0 gnd +C1 g1125_1 gnd 2.080806f +C2 g1125_0 gnd 2.080806f +R1 g1125_1 g1125_0 2.224404 +.ends + +.subckt netg5792 g5792_1 g5792_0 gnd +C1 g5792_1 gnd 2.080806f +C2 g5792_0 gnd 2.080806f +R1 g5792_1 g5792_0 2.224404 +.ends + +.subckt netg2380 g2380_2 g2380_1 gnd +C1 g2380_2 gnd 2.080806f +C2 g2380_1 gnd 2.080806f +R1 g2380_1 g2380_2 2.224404 +.ends + +.subckt netg6084 g6084_0 g6084_1 gnd +C1 g6084_0 gnd 2.080806f +C2 g6084_1 gnd 2.080806f +R1 g6084_1 g6084_0 2.224404 +.ends + +.subckt netg6052 g6052_0 g6052_1 gnd +C1 g6052_0 gnd 2.080806f +C2 g6052_1 gnd 2.080806f +R1 g6052_1 g6052_0 2.224404 +.ends + +.subckt netg5297 g5297_1 g5297_0 gnd +C1 g5297_1 gnd 2.080806f +C2 g5297_0 gnd 2.080806f +R1 g5297_0 g5297_1 2.224404 +.ends + +.subckt netg4323 g4323_1 g4323_0 gnd +C1 g4323_1 gnd 2.080806f +C2 g4323_0 gnd 2.080806f +R1 g4323_0 g4323_1 2.224404 +.ends + +.subckt netg4628 g4628_0 g4628_1 gnd +C1 g4628_0 gnd 2.080806f +C2 g4628_1 gnd 2.080806f +R1 g4628_0 g4628_1 2.224404 +.ends + +.subckt netg3540 g3540_1 g3540_0 gnd +C1 g3540_1 gnd 2.080806f +C2 g3540_0 gnd 2.080806f +R1 g3540_1 g3540_0 2.224404 +.ends + +.subckt netg4065 g4065_1 g4065_0 gnd +C1 g4065_1 gnd 2.080806f +C2 g4065_0 gnd 2.080806f +R1 g4065_1 g4065_0 2.224404 +.ends + +.subckt netg4239 g4239_1 g4239_0 gnd +C1 g4239_1 gnd 2.080806f +C2 g4239_0 gnd 2.080806f +R1 g4239_1 g4239_0 2.224404 +.ends + +.subckt netg5350 g5350_0 g5350_1 gnd +C1 g5350_0 gnd 2.080806f +C2 g5350_1 gnd 2.080806f +R1 g5350_0 g5350_1 2.224404 +.ends + +.subckt netg1234 g1234_0 g1234_1 gnd +C1 g1234_0 gnd 2.080806f +C2 g1234_1 gnd 2.080806f +R1 g1234_0 g1234_1 2.224404 +.ends + +.subckt netg4318 g4318_1 g4318_0 gnd +C1 g4318_1 gnd 2.080806f +C2 g4318_0 gnd 2.080806f +R1 g4318_1 g4318_0 2.224404 +.ends + +.subckt netg6667 g6667_1 g6667_0 gnd +C1 g6667_1 gnd 2.080806f +C2 g6667_0 gnd 2.080806f +R1 g6667_0 g6667_1 2.224404 +.ends + +.subckt netg5737 g5737_2 g5737_1 gnd +C1 g5737_2 gnd 2.080806f +C2 g5737_1 gnd 2.080806f +R1 g5737_1 g5737_2 2.224404 +.ends + +.subckt netg7004 g7004_1 g7004_2 gnd +C1 g7004_1 gnd 2.080806f +C2 g7004_2 gnd 2.080806f +R1 g7004_2 g7004_1 2.224404 +.ends + +.subckt netg5244 g5244_1 g5244_0 gnd +C1 g5244_1 gnd 2.080806f +C2 g5244_0 gnd 2.080806f +R1 g5244_1 g5244_0 2.224404 +.ends + +.subckt netg6184 g6184_1 g6184_0 gnd +C1 g6184_1 gnd 2.080806f +C2 g6184_0 gnd 2.080806f +R1 g6184_0 g6184_1 2.224404 +.ends + +.subckt netg6862 g6862_0 g6862_1 gnd +C1 g6862_0 gnd 2.080806f +C2 g6862_1 gnd 2.080806f +R1 g6862_0 g6862_1 2.224404 +.ends + +.subckt netg1264 g1264_0 g1264_1 gnd +C1 g1264_0 gnd 2.080806f +C2 g1264_1 gnd 2.080806f +R1 g1264_0 g1264_1 2.224404 +.ends + +.subckt netg2879 g2879_1 g2879_0 gnd +C1 g2879_1 gnd 2.080806f +C2 g2879_0 gnd 2.080806f +R1 g2879_0 g2879_1 2.224404 +.ends + +.subckt netg3509 g3509_0 g3509_1 gnd +C1 g3509_0 gnd 2.080806f +C2 g3509_1 gnd 2.080806f +R1 g3509_0 g3509_1 2.224404 +.ends + +.subckt netg3411 g3411_0 g3411_1 gnd +C1 g3411_0 gnd 2.080806f +C2 g3411_1 gnd 2.080806f +R1 g3411_0 g3411_1 2.224404 +.ends + +.subckt netg2719 g2719_1 g2719_2 gnd +C1 g2719_1 gnd 2.080806f +C2 g2719_2 gnd 2.080806f +R1 g2719_2 g2719_1 2.224404 +.ends + +.subckt netg6642 g6642_1 g6642_2 gnd +C1 g6642_1 gnd 2.080806f +C2 g6642_2 gnd 2.080806f +R1 g6642_1 g6642_2 2.224404 +.ends + +.subckt netg5601 g5601_1 g5601_0 gnd +C1 g5601_1 gnd 2.080806f +C2 g5601_0 gnd 2.080806f +R1 g5601_1 g5601_0 2.224404 +.ends + +.subckt netg6287 g6287_0 g6287_1 gnd +C1 g6287_0 gnd 2.080806f +C2 g6287_1 gnd 2.080806f +R1 g6287_1 g6287_0 2.224404 +.ends + +.subckt netg5182 g5182_0 g5182_1 gnd +C1 g5182_0 gnd 2.080806f +C2 g5182_1 gnd 2.080806f +R1 g5182_0 g5182_1 2.224404 +.ends + +.subckt netg4344 g4344_1 g4344_0 gnd +C1 g4344_1 gnd 2.080806f +C2 g4344_0 gnd 2.080806f +R1 g4344_1 g4344_0 2.224404 +.ends + +.subckt netg7399 g7399_1 g7399_0 gnd +C1 g7399_1 gnd 2.080806f +C2 g7399_0 gnd 2.080806f +R1 g7399_0 g7399_1 2.224404 +.ends + +.subckt netg1461 g1461_1 g1461_0 gnd +C1 g1461_1 gnd 2.080806f +C2 g1461_0 gnd 2.080806f +R1 g1461_0 g1461_1 2.224404 +.ends + +.subckt netg1123 g1123_1 g1123_0 gnd +C1 g1123_1 gnd 2.080806f +C2 g1123_0 gnd 2.080806f +R1 g1123_0 g1123_1 2.224404 +.ends + +.subckt netg5322 g5322_1 g5322_0 gnd +C1 g5322_1 gnd 2.080806f +C2 g5322_0 gnd 2.080806f +R1 g5322_0 g5322_1 2.224404 +.ends + +.subckt netg4010 g4010_1 g4010_0 gnd +C1 g4010_1 gnd 2.080806f +C2 g4010_0 gnd 2.080806f +R1 g4010_0 g4010_1 2.224404 +.ends + +.subckt netx21 x21_0 x21_1 gnd +C1 x21_0 gnd 2.080806f +C2 x21_1 gnd 2.080806f +R1 x21_1 x21_0 2.224404 +.ends + +.subckt netg2847 g2847_1 g2847_0 gnd +C1 g2847_1 gnd 2.080806f +C2 g2847_0 gnd 2.080806f +R1 g2847_0 g2847_1 2.224404 +.ends + +.subckt netg1222 g1222_0 g1222_1 gnd +C1 g1222_0 gnd 2.080806f +C2 g1222_1 gnd 2.080806f +R1 g1222_1 g1222_0 2.224404 +.ends + +.subckt netg1916 g1916_1 g1916_0 gnd +C1 g1916_1 gnd 2.080806f +C2 g1916_0 gnd 2.080806f +R1 g1916_1 g1916_0 2.224404 +.ends + +.subckt netg5425 g5425_1 g5425_0 gnd +C1 g5425_1 gnd 2.080806f +C2 g5425_0 gnd 2.080806f +R1 g5425_1 g5425_0 2.224404 +.ends + +.subckt netg6385 g6385_0 g6385_1 gnd +C1 g6385_0 gnd 2.080806f +C2 g6385_1 gnd 2.080806f +R1 g6385_1 g6385_0 2.224404 +.ends + +.subckt netg2240 g2240_1 g2240_0 gnd +C1 g2240_1 gnd 2.080806f +C2 g2240_0 gnd 2.080806f +R1 g2240_0 g2240_1 2.224404 +.ends + +.subckt netg5603 g5603_1 g5603_0 gnd +C1 g5603_1 gnd 2.080806f +C2 g5603_0 gnd 2.080806f +R1 g5603_0 g5603_1 2.224404 +.ends + +.subckt netg4043 g4043_0 g4043_1 gnd +C1 g4043_0 gnd 2.080806f +C2 g4043_1 gnd 2.080806f +R1 g4043_1 g4043_0 2.224404 +.ends + +.subckt netg4404 g4404_1 g4404_0 gnd +C1 g4404_1 gnd 2.080806f +C2 g4404_0 gnd 2.080806f +R1 g4404_0 g4404_1 2.224404 +.ends + +.subckt netg1491 g1491_0 g1491_1 gnd +C1 g1491_0 gnd 2.080806f +C2 g1491_1 gnd 2.080806f +R1 g1491_1 g1491_0 2.224404 +.ends + +.subckt netg5965 g5965_0 g5965_1 gnd +C1 g5965_0 gnd 2.080806f +C2 g5965_1 gnd 2.080806f +R1 g5965_1 g5965_0 2.224404 +.ends + +.subckt netg6137 g6137_0 g6137_1 gnd +C1 g6137_0 gnd 2.080806f +C2 g6137_1 gnd 2.080806f +R1 g6137_1 g6137_0 2.224404 +.ends + +.subckt netg2945 g2945_1 g2945_0 gnd +C1 g2945_1 gnd 2.080806f +C2 g2945_0 gnd 2.080806f +R1 g2945_1 g2945_0 2.224404 +.ends + +.subckt netx61 x61_0 x61_1 gnd +C1 x61_0 gnd 2.080806f +C2 x61_1 gnd 2.080806f +R1 x61_1 x61_0 2.224404 +.ends + +.subckt netg7093 g7093_1 g7093_2 gnd +C1 g7093_1 gnd 2.080806f +C2 g7093_2 gnd 2.080806f +R1 g7093_1 g7093_2 2.224404 +.ends + +.subckt netg6420 g6420_0 g6420_1 gnd +C1 g6420_0 gnd 2.080806f +C2 g6420_1 gnd 2.080806f +R1 g6420_0 g6420_1 2.224404 +.ends + +.subckt netg874 g874_0 g874_2 gnd +C1 g874_0 gnd 2.080806f +C2 g874_2 gnd 2.080806f +R1 g874_2 g874_0 2.224404 +.ends + +.subckt netg7344 g7344_1 g7344_0 gnd +C1 g7344_1 gnd 2.080806f +C2 g7344_0 gnd 2.080806f +R1 g7344_0 g7344_1 2.224404 +.ends + +.subckt netg6243 g6243_1 g6243_0 gnd +C1 g6243_1 gnd 2.080806f +C2 g6243_0 gnd 2.080806f +R1 g6243_1 g6243_0 2.224404 +.ends + +.subckt netg1069 g1069_0 g1069_1 gnd +C1 g1069_0 gnd 2.080806f +C2 g1069_1 gnd 2.080806f +R1 g1069_1 g1069_0 2.224404 +.ends + +.subckt netg6846 g6846_1 g6846_0 gnd +C1 g6846_1 gnd 2.080806f +C2 g6846_0 gnd 2.080806f +R1 g6846_0 g6846_1 2.224404 +.ends + +.subckt netg4353 g4353_1 g4353_0 gnd +C1 g4353_1 gnd 2.080806f +C2 g4353_0 gnd 2.080806f +R1 g4353_1 g4353_0 2.224404 +.ends + +.subckt netg1250 g1250_1 g1250_0 gnd +C1 g1250_1 gnd 2.080806f +C2 g1250_0 gnd 2.080806f +R1 g1250_0 g1250_1 2.224404 +.ends + +.subckt netg5270 g5270_0 g5270_1 gnd +C1 g5270_0 gnd 2.080806f +C2 g5270_1 gnd 2.080806f +R1 g5270_0 g5270_1 2.224404 +.ends + +.subckt netg2918 g2918_0 g2918_1 gnd +C1 g2918_0 gnd 2.080806f +C2 g2918_1 gnd 2.080806f +R1 g2918_0 g2918_1 2.224404 +.ends + +.subckt netg5980 g5980_0 g5980_1 gnd +C1 g5980_0 gnd 2.080806f +C2 g5980_1 gnd 2.080806f +R1 g5980_0 g5980_1 2.224404 +.ends + +.subckt netg1307 g1307_1 g1307_0 gnd +C1 g1307_1 gnd 2.080806f +C2 g1307_0 gnd 2.080806f +R1 g1307_1 g1307_0 2.224404 +.ends + +.subckt netg7273 g7273_1 g7273_0 gnd +C1 g7273_1 gnd 2.080806f +C2 g7273_0 gnd 2.080806f +R1 g7273_1 g7273_0 2.224404 +.ends + +.subckt netg2743 g2743_2 g2743_1 gnd +C1 g2743_2 gnd 2.080806f +C2 g2743_1 gnd 2.080806f +R1 g2743_2 g2743_1 2.224404 +.ends + +.subckt netg3207 g3207_1 g3207_2 gnd +C1 g3207_1 gnd 2.080806f +C2 g3207_2 gnd 2.080806f +R1 g3207_1 g3207_2 2.224404 +.ends + +.subckt netx471 x471_0 x471_1 gnd +C1 x471_0 gnd 2.080806f +C2 x471_1 gnd 2.080806f +R1 x471_1 x471_0 2.224404 +.ends + +.subckt netg7275 g7275_0 g7275_1 gnd +C1 g7275_0 gnd 2.080806f +C2 g7275_1 gnd 2.080806f +R1 g7275_0 g7275_1 2.224404 +.ends + +.subckt netg5266 g5266_1 g5266_0 gnd +C1 g5266_1 gnd 2.080806f +C2 g5266_0 gnd 2.080806f +R1 g5266_0 g5266_1 2.224404 +.ends + +.subckt netg4265 g4265_0 g4265_1 gnd +C1 g4265_0 gnd 2.080806f +C2 g4265_1 gnd 2.080806f +R1 g4265_0 g4265_1 2.224404 +.ends + +.subckt netg4022 g4022_1 g4022_0 gnd +C1 g4022_1 gnd 2.080806f +C2 g4022_0 gnd 2.080806f +R1 g4022_1 g4022_0 2.224404 +.ends + +.subckt netg1360 g1360_0 g1360_1 gnd +C1 g1360_0 gnd 2.080806f +C2 g1360_1 gnd 2.080806f +R1 g1360_0 g1360_1 2.224404 +.ends + +.subckt netg6399 g6399_0 g6399_1 gnd +C1 g6399_0 gnd 2.080806f +C2 g6399_1 gnd 2.080806f +R1 g6399_0 g6399_1 2.224404 +.ends + +.subckt netg6182 g6182_0 g6182_1 gnd +C1 g6182_0 gnd 2.080806f +C2 g6182_1 gnd 2.080806f +R1 g6182_0 g6182_1 2.224404 +.ends + +.subckt netg6673 g6673_0 g6673_1 gnd +C1 g6673_0 gnd 2.080806f +C2 g6673_1 gnd 2.080806f +R1 g6673_0 g6673_1 2.224404 +.ends + +.subckt netg3082 g3082_1 g3082_0 gnd +C1 g3082_1 gnd 2.080806f +C2 g3082_0 gnd 2.080806f +R1 g3082_0 g3082_1 2.224404 +.ends + +.subckt netg2930 g2930_1 g2930_0 gnd +C1 g2930_1 gnd 2.080806f +C2 g2930_0 gnd 2.080806f +R1 g2930_1 g2930_0 2.224404 +.ends + +.subckt netg1494 g1494_0 g1494_1 gnd +C1 g1494_0 gnd 2.080806f +C2 g1494_1 gnd 2.080806f +R1 g1494_1 g1494_0 2.224404 +.ends + +.subckt netg5368 g5368_0 g5368_1 gnd +C1 g5368_0 gnd 2.080806f +C2 g5368_1 gnd 2.080806f +R1 g5368_1 g5368_0 2.224404 +.ends + +.subckt netg1422 g1422_0 g1422_1 gnd +C1 g1422_0 gnd 2.080806f +C2 g1422_1 gnd 2.080806f +R1 g1422_0 g1422_1 2.224404 +.ends + +.subckt netg2937 g2937_1 g2937_0 gnd +C1 g2937_1 gnd 2.080806f +C2 g2937_0 gnd 2.080806f +R1 g2937_0 g2937_1 2.224404 +.ends + +.subckt netg2555 g2555_1 g2555_2 gnd +C1 g2555_1 gnd 2.080806f +C2 g2555_2 gnd 2.080806f +R1 g2555_1 g2555_2 2.224404 +.ends + +.subckt netg3061 g3061_0 g3061_1 gnd +C1 g3061_0 gnd 2.080806f +C2 g3061_1 gnd 2.080806f +R1 g3061_0 g3061_1 2.224404 +.ends + +.subckt netg5394 g5394_0 g5394_1 gnd +C1 g5394_0 gnd 2.080806f +C2 g5394_1 gnd 2.080806f +R1 g5394_1 g5394_0 2.224404 +.ends + +.subckt netg2845 g2845_1 g2845_0 gnd +C1 g2845_1 gnd 2.080806f +C2 g2845_0 gnd 2.080806f +R1 g2845_0 g2845_1 2.224404 +.ends + +.subckt netg1534 g1534_1 g1534_0 gnd +C1 g1534_1 gnd 2.080806f +C2 g1534_0 gnd 2.080806f +R1 g1534_1 g1534_0 2.224404 +.ends + +.subckt netg3045 g3045_1 g3045_0 gnd +C1 g3045_1 gnd 2.080806f +C2 g3045_0 gnd 2.080806f +R1 g3045_0 g3045_1 2.224404 +.ends + +.subckt netg6887 g6887_1 g6887_0 gnd +C1 g6887_1 gnd 2.080806f +C2 g6887_0 gnd 2.080806f +R1 g6887_1 g6887_0 2.224404 +.ends + +.subckt netg6278 g6278_0 g6278_2 gnd +C1 g6278_0 gnd 2.080806f +C2 g6278_2 gnd 2.080806f +R1 g6278_0 g6278_2 2.224404 +.ends + +.subckt netg6977 g6977_0 g6977_1 gnd +C1 g6977_0 gnd 2.080806f +C2 g6977_1 gnd 2.080806f +R1 g6977_0 g6977_1 2.224404 +.ends + +.subckt netg3551 g3551_1 g3551_0 gnd +C1 g3551_1 gnd 2.080806f +C2 g3551_0 gnd 2.080806f +R1 g3551_0 g3551_1 2.224404 +.ends + +.subckt netg6751 g6751_2 g6751_0 gnd +C1 g6751_2 gnd 2.080806f +C2 g6751_0 gnd 2.080806f +R1 g6751_0 g6751_2 2.224404 +.ends + +.subckt netx72 x72_1 x72_0 gnd +C1 x72_1 gnd 2.080806f +C2 x72_0 gnd 2.080806f +R1 x72_1 x72_0 2.224404 +.ends + +.subckt netg5421 g5421_1 g5421_0 gnd +C1 g5421_1 gnd 2.080806f +C2 g5421_0 gnd 2.080806f +R1 g5421_0 g5421_1 2.224404 +.ends + +.subckt netx122 x122_1 x122_0 gnd +C1 x122_1 gnd 2.080806f +C2 x122_0 gnd 2.080806f +R1 x122_0 x122_1 2.224404 +.ends + +.subckt netg5251 g5251_1 g5251_0 gnd +C1 g5251_1 gnd 2.080806f +C2 g5251_0 gnd 2.080806f +R1 g5251_0 g5251_1 2.224404 +.ends + +.subckt netg2784 g2784_1 g2784_0 gnd +C1 g2784_1 gnd 2.080806f +C2 g2784_0 gnd 2.080806f +R1 g2784_1 g2784_0 2.224404 +.ends + +.subckt netx131 x131_1 x131_0 gnd +C1 x131_1 gnd 2.080806f +C2 x131_0 gnd 2.080806f +R1 x131_0 x131_1 2.224404 +.ends + +.subckt netg6814 g6814_1 g6814_0 gnd +C1 g6814_1 gnd 2.080806f +C2 g6814_0 gnd 2.080806f +R1 g6814_0 g6814_1 2.224404 +.ends + +.subckt netg6205 g6205_1 g6205_0 gnd +C1 g6205_1 gnd 2.080806f +C2 g6205_0 gnd 2.080806f +R1 g6205_0 g6205_1 2.224404 +.ends + +.subckt netg6693 g6693_1 g6693_0 gnd +C1 g6693_1 gnd 2.080806f +C2 g6693_0 gnd 2.080806f +R1 g6693_0 g6693_1 2.224404 +.ends + +.subckt netg6465 g6465_0 g6465_1 gnd +C1 g6465_0 gnd 2.080806f +C2 g6465_1 gnd 2.080806f +R1 g6465_0 g6465_1 2.224404 +.ends + +.subckt netg2995 g2995_1 g2995_0 gnd +C1 g2995_1 gnd 2.080806f +C2 g2995_0 gnd 2.080806f +R1 g2995_0 g2995_1 2.224404 +.ends + +.subckt netg3261 g3261_2 g3261_0 gnd +C1 g3261_2 gnd 2.080806f +C2 g3261_0 gnd 2.080806f +R1 g3261_0 g3261_2 2.224404 +.ends + +.subckt netg1236 g1236_0 g1236_1 gnd +C1 g1236_0 gnd 2.080806f +C2 g1236_1 gnd 2.080806f +R1 g1236_0 g1236_1 2.224404 +.ends + +.subckt netg5333 g5333_0 g5333_1 gnd +C1 g5333_0 gnd 2.080806f +C2 g5333_1 gnd 2.080806f +R1 g5333_1 g5333_0 2.224404 +.ends + +.subckt netg4098 g4098_1 g4098_0 gnd +C1 g4098_1 gnd 2.080806f +C2 g4098_0 gnd 2.080806f +R1 g4098_0 g4098_1 2.224404 +.ends + +.subckt netg5144 g5144_1 g5144_2 gnd +C1 g5144_1 gnd 2.080806f +C2 g5144_2 gnd 2.080806f +R1 g5144_2 g5144_1 2.224404 +.ends + +.subckt netg1375 g1375_0 g1375_1 gnd +C1 g1375_0 gnd 2.080806f +C2 g1375_1 gnd 2.080806f +R1 g1375_1 g1375_0 2.224404 +.ends + +.subckt netg5366 g5366_0 g5366_1 gnd +C1 g5366_0 gnd 2.080806f +C2 g5366_1 gnd 2.080806f +R1 g5366_0 g5366_1 2.224404 +.ends + +.subckt netg4131 g4131_0 g4131_1 gnd +C1 g4131_0 gnd 2.080806f +C2 g4131_1 gnd 2.080806f +R1 g4131_1 g4131_0 2.224404 +.ends + +.subckt netg4240 g4240_1 g4240_0 gnd +C1 g4240_1 gnd 2.080806f +C2 g4240_0 gnd 2.080806f +R1 g4240_0 g4240_1 2.224404 +.ends + +.subckt netg3563 g3563_0 g3563_1 gnd +C1 g3563_0 gnd 2.080806f +C2 g3563_1 gnd 2.080806f +R1 g3563_0 g3563_1 2.224404 +.ends + +.subckt netg1158 g1158_0 g1158_1 gnd +C1 g1158_0 gnd 2.080806f +C2 g1158_1 gnd 2.080806f +R1 g1158_1 g1158_0 2.224404 +.ends + +.subckt netg7002 g7002_0 g7002_1 gnd +C1 g7002_0 gnd 2.080806f +C2 g7002_1 gnd 2.080806f +R1 g7002_0 g7002_1 2.224404 +.ends + +.subckt netg5870 g5870_1 g5870_0 gnd +C1 g5870_1 gnd 2.080806f +C2 g5870_0 gnd 2.080806f +R1 g5870_0 g5870_1 2.224404 +.ends + +.subckt netg4106 g4106_0 g4106_1 gnd +C1 g4106_0 gnd 2.080806f +C2 g4106_1 gnd 2.080806f +R1 g4106_0 g4106_1 2.224404 +.ends + +.subckt netg4352 g4352_1 g4352_0 gnd +C1 g4352_1 gnd 2.080806f +C2 g4352_0 gnd 2.080806f +R1 g4352_1 g4352_0 2.224404 +.ends + +.subckt netx91 x91_1 x91_0 gnd +C1 x91_1 gnd 2.080806f +C2 x91_0 gnd 2.080806f +R1 x91_0 x91_1 2.224404 +.ends + +.subckt netg5932 g5932_1 g5932_0 gnd +C1 g5932_1 gnd 2.080806f +C2 g5932_0 gnd 2.080806f +R1 g5932_1 g5932_0 2.224404 +.ends + +.subckt netg7306 g7306_2 g7306_1 gnd +C1 g7306_2 gnd 2.080806f +C2 g7306_1 gnd 2.080806f +R1 g7306_2 g7306_1 2.224404 +.ends + +.subckt netg2579 g2579_1 g2579_2 gnd +C1 g2579_1 gnd 2.080806f +C2 g2579_2 gnd 2.080806f +R1 g2579_1 g2579_2 2.224404 +.ends + +.subckt netg2919 g2919_0 g2919_1 gnd +C1 g2919_0 gnd 2.080806f +C2 g2919_1 gnd 2.080806f +R1 g2919_0 g2919_1 2.224404 +.ends + +.subckt netg3429 g3429_2 g3429_0 gnd +C1 g3429_2 gnd 2.080806f +C2 g3429_0 gnd 2.080806f +R1 g3429_0 g3429_2 2.224404 +.ends + +.subckt netg4082 g4082_1 g4082_0 gnd +C1 g4082_1 gnd 2.080806f +C2 g4082_0 gnd 2.080806f +R1 g4082_1 g4082_0 2.224404 +.ends + +.subckt netg3901 g3901_0 g3901_1 gnd +C1 g3901_0 gnd 2.080806f +C2 g3901_1 gnd 2.080806f +R1 g3901_1 g3901_0 2.224404 +.ends + +.subckt netg5999 g5999_1 g5999_0 gnd +C1 g5999_1 gnd 2.080806f +C2 g5999_0 gnd 2.080806f +R1 g5999_0 g5999_1 2.224404 +.ends + +.subckt netg4309 g4309_0 g4309_1 gnd +C1 g4309_0 gnd 2.080806f +C2 g4309_1 gnd 2.080806f +R1 g4309_1 g4309_0 2.224404 +.ends + +.subckt netg5705 g5705_1 g5705_0 gnd +C1 g5705_1 gnd 2.080806f +C2 g5705_0 gnd 2.080806f +R1 g5705_1 g5705_0 2.224404 +.ends + +.subckt netg6450 g6450_1 g6450_0 gnd +C1 g6450_1 gnd 2.080806f +C2 g6450_0 gnd 2.080806f +R1 g6450_1 g6450_0 2.224404 +.ends + +.subckt netg7240 g7240_1 g7240_0 gnd +C1 g7240_1 gnd 2.080806f +C2 g7240_0 gnd 2.080806f +R1 g7240_0 g7240_1 2.224404 +.ends + +.subckt netg6392 g6392_0 g6392_1 gnd +C1 g6392_0 gnd 2.080806f +C2 g6392_1 gnd 2.080806f +R1 g6392_0 g6392_1 2.224404 +.ends + +.subckt netg1169 g1169_1 g1169_0 gnd +C1 g1169_1 gnd 2.080806f +C2 g1169_0 gnd 2.080806f +R1 g1169_0 g1169_1 2.224404 +.ends + +.subckt netg6871 g6871_1 g6871_0 gnd +C1 g6871_1 gnd 2.080806f +C2 g6871_0 gnd 2.080806f +R1 g6871_0 g6871_1 2.224404 +.ends + +.subckt netg4138 g4138_0 g4138_1 gnd +C1 g4138_0 gnd 2.080806f +C2 g4138_1 gnd 2.080806f +R1 g4138_0 g4138_1 2.224404 +.ends + +.subckt netg6363 g6363_1 g6363_0 gnd +C1 g6363_1 gnd 2.080806f +C2 g6363_0 gnd 2.080806f +R1 g6363_1 g6363_0 2.224404 +.ends + +.subckt netg5278 g5278_0 g5278_1 gnd +C1 g5278_0 gnd 2.080806f +C2 g5278_1 gnd 2.080806f +R1 g5278_0 g5278_1 2.224404 +.ends + +.subckt netg1479 g1479_1 g1479_0 gnd +C1 g1479_1 gnd 2.080806f +C2 g1479_0 gnd 2.080806f +R1 g1479_0 g1479_1 2.224404 +.ends + +.subckt netg6167 g6167_0 g6167_1 gnd +C1 g6167_0 gnd 2.080806f +C2 g6167_1 gnd 2.080806f +R1 g6167_0 g6167_1 2.224404 +.ends + +.subckt netg6131 g6131_0 g6131_1 gnd +C1 g6131_0 gnd 2.080806f +C2 g6131_1 gnd 2.080806f +R1 g6131_1 g6131_0 2.224404 +.ends + +.subckt netg2933 g2933_0 g2933_1 gnd +C1 g2933_0 gnd 2.080806f +C2 g2933_1 gnd 2.080806f +R1 g2933_0 g2933_1 2.224404 +.ends + +.subckt netg6744 g6744_1 g6744_0 gnd +C1 g6744_1 gnd 2.080806f +C2 g6744_0 gnd 2.080806f +R1 g6744_0 g6744_1 2.224404 +.ends + +.subckt netg7400 g7400_1 g7400_0 gnd +C1 g7400_1 gnd 2.080806f +C2 g7400_0 gnd 2.080806f +R1 g7400_1 g7400_0 2.224404 +.ends + +.subckt netg1852 g1852_1 g1852_0 gnd +C1 g1852_1 gnd 2.080806f +C2 g1852_0 gnd 2.080806f +R1 g1852_0 g1852_1 2.224404 +.ends + +.subckt netg2731 g2731_1 g2731_2 gnd +C1 g2731_1 gnd 2.080806f +C2 g2731_2 gnd 2.080806f +R1 g2731_1 g2731_2 2.224404 +.ends + +.subckt netg3453 g3453_2 g3453_0 gnd +C1 g3453_2 gnd 2.080806f +C2 g3453_0 gnd 2.080806f +R1 g3453_0 g3453_2 2.224404 +.ends + +.subckt netg1151 g1151_0 g1151_1 gnd +C1 g1151_0 gnd 2.080806f +C2 g1151_1 gnd 2.080806f +R1 g1151_0 g1151_1 2.224404 +.ends + +.subckt netg1421 g1421_1 g1421_0 gnd +C1 g1421_1 gnd 2.080806f +C2 g1421_0 gnd 2.080806f +R1 g1421_0 g1421_1 2.224404 +.ends + +.subckt netg3113 g3113_1 g3113_0 gnd +C1 g3113_1 gnd 2.080806f +C2 g3113_0 gnd 2.080806f +R1 g3113_1 g3113_0 2.224404 +.ends + +.subckt netg3089 g3089_1 g3089_0 gnd +C1 g3089_1 gnd 2.080806f +C2 g3089_0 gnd 2.080806f +R1 g3089_0 g3089_1 2.224404 +.ends + +.subckt netx192 x192_0 x192_1 gnd +C1 x192_0 gnd 2.080806f +C2 x192_1 gnd 2.080806f +R1 x192_1 x192_0 2.224404 +.ends + +.subckt netg6000 g6000_1 g6000_0 gnd +C1 g6000_1 gnd 2.080806f +C2 g6000_0 gnd 2.080806f +R1 g6000_0 g6000_1 2.224404 +.ends + +.subckt netg1573 g1573_0 g1573_1 gnd +C1 g1573_0 gnd 2.080806f +C2 g1573_1 gnd 2.080806f +R1 g1573_0 g1573_1 2.224404 +.ends + +.subckt netg6373 g6373_1 g6373_0 gnd +C1 g6373_1 gnd 2.080806f +C2 g6373_0 gnd 2.080806f +R1 g6373_0 g6373_1 2.224404 +.ends + +.subckt netg456 g456_0 g456_1 gnd +C1 g456_0 gnd 2.080806f +C2 g456_1 gnd 2.080806f +R1 g456_1 g456_0 2.224404 +.ends + +.subckt netg3180 g3180_2 g3180_1 gnd +C1 g3180_2 gnd 2.080806f +C2 g3180_1 gnd 2.080806f +R1 g3180_1 g3180_2 2.224404 +.ends + +.subckt netg5313 g5313_1 g5313_0 gnd +C1 g5313_1 gnd 2.080806f +C2 g5313_0 gnd 2.080806f +R1 g5313_1 g5313_0 2.224404 +.ends + +.subckt netg6413 g6413_1 g6413_0 gnd +C1 g6413_1 gnd 2.080806f +C2 g6413_0 gnd 2.080806f +R1 g6413_0 g6413_1 2.224404 +.ends + +.subckt netg4149 g4149_0 g4149_1 gnd +C1 g4149_0 gnd 2.080806f +C2 g4149_1 gnd 2.080806f +R1 g4149_0 g4149_1 2.224404 +.ends + +.subckt netg6105 g6105_1 g6105_0 gnd +C1 g6105_1 gnd 2.080806f +C2 g6105_0 gnd 2.080806f +R1 g6105_1 g6105_0 2.224404 +.ends + +.subckt netg6448 g6448_0 g6448_1 gnd +C1 g6448_0 gnd 2.080806f +C2 g6448_1 gnd 2.080806f +R1 g6448_1 g6448_0 2.224404 +.ends + +.subckt netg4247 g4247_1 g4247_0 gnd +C1 g4247_1 gnd 2.080806f +C2 g4247_0 gnd 2.080806f +R1 g4247_1 g4247_0 2.224404 +.ends + +.subckt netg7269 g7269_0 g7269_1 gnd +C1 g7269_0 gnd 2.080806f +C2 g7269_1 gnd 2.080806f +R1 g7269_1 g7269_0 2.224404 +.ends + +.subckt netg4436 g4436_0 g4436_1 gnd +C1 g4436_0 gnd 2.080806f +C2 g4436_1 gnd 2.080806f +R1 g4436_1 g4436_0 2.224404 +.ends + +.subckt netg7346 g7346_1 g7346_0 gnd +C1 g7346_1 gnd 2.080806f +C2 g7346_0 gnd 2.080806f +R1 g7346_0 g7346_1 2.224404 +.ends + +.subckt netg5134 g5134_0 g5134_1 gnd +C1 g5134_0 gnd 2.080806f +C2 g5134_1 gnd 2.080806f +R1 g5134_1 g5134_0 2.224404 +.ends + +.subckt netg2822 g2822_1 g2822_0 gnd +C1 g2822_1 gnd 2.080806f +C2 g2822_0 gnd 2.080806f +R1 g2822_0 g2822_1 2.224404 +.ends + +.subckt netg4403 g4403_0 g4403_1 gnd +C1 g4403_0 gnd 2.080806f +C2 g4403_1 gnd 2.080806f +R1 g4403_1 g4403_0 2.224404 +.ends + +.subckt netg3968 g3968_0 g3968_1 gnd +C1 g3968_0 gnd 2.080806f +C2 g3968_1 gnd 2.080806f +R1 g3968_1 g3968_0 2.224404 +.ends + +.subckt netg1308 g1308_0 g1308_1 gnd +C1 g1308_0 gnd 2.080806f +C2 g1308_1 gnd 2.080806f +R1 g1308_0 g1308_1 2.224404 +.ends + +.subckt netg1165 g1165_1 g1165_0 gnd +C1 g1165_1 gnd 2.080806f +C2 g1165_0 gnd 2.080806f +R1 g1165_1 g1165_0 2.224404 +.ends + +.subckt netg6976 g6976_0 g6976_1 gnd +C1 g6976_0 gnd 2.080806f +C2 g6976_1 gnd 2.080806f +R1 g6976_0 g6976_1 2.224404 +.ends + +.subckt netg3315 g3315_0 g3315_2 gnd +C1 g3315_0 gnd 2.080806f +C2 g3315_2 gnd 2.080806f +R1 g3315_0 g3315_2 2.224404 +.ends + +.subckt netg2749 g2749_0 g2749_1 gnd +C1 g2749_0 gnd 2.080806f +C2 g2749_1 gnd 2.080806f +R1 g2749_0 g2749_1 2.224404 +.ends + +.subckt netg6732 g6732_1 g6732_0 gnd +C1 g6732_1 gnd 2.080806f +C2 g6732_0 gnd 2.080806f +R1 g6732_0 g6732_1 2.224404 +.ends + +.subckt netg5634 g5634_2 g5634_1 gnd +C1 g5634_2 gnd 2.080806f +C2 g5634_1 gnd 2.080806f +R1 g5634_1 g5634_2 2.224404 +.ends + +.subckt netg1380 g1380_1 g1380_0 gnd +C1 g1380_1 gnd 2.080806f +C2 g1380_0 gnd 2.080806f +R1 g1380_0 g1380_1 2.224404 +.ends + +.subckt netg6326 g6326_0 g6326_1 gnd +C1 g6326_0 gnd 2.080806f +C2 g6326_1 gnd 2.080806f +R1 g6326_0 g6326_1 2.224404 +.ends + +.subckt netg3225 g3225_0 g3225_2 gnd +C1 g3225_0 gnd 2.080806f +C2 g3225_2 gnd 2.080806f +R1 g3225_2 g3225_0 2.224404 +.ends + +.subckt netg7437 g7437_1 g7437_0 gnd +C1 g7437_1 gnd 2.080806f +C2 g7437_0 gnd 2.080806f +R1 g7437_0 g7437_1 2.224404 +.ends + +.subckt netx162 x162_0 x162_1 gnd +C1 x162_0 gnd 2.080806f +C2 x162_1 gnd 2.080806f +R1 x162_1 x162_0 2.224404 +.ends + +.subckt netg6139 g6139_1 g6139_0 gnd +C1 g6139_1 gnd 2.080806f +C2 g6139_0 gnd 2.080806f +R1 g6139_1 g6139_0 2.224404 +.ends + +.subckt netg6106 g6106_1 g6106_0 gnd +C1 g6106_1 gnd 2.080806f +C2 g6106_0 gnd 2.080806f +R1 g6106_0 g6106_1 2.224404 +.ends + +.subckt netg1510 g1510_1 g1510_0 gnd +C1 g1510_1 gnd 2.080806f +C2 g1510_0 gnd 2.080806f +R1 g1510_0 g1510_1 2.224404 +.ends + +.subckt netg1585 g1585_0 g1585_1 gnd +C1 g1585_0 gnd 2.080806f +C2 g1585_1 gnd 2.080806f +R1 g1585_0 g1585_1 2.224404 +.ends + +.subckt netg4047 g4047_0 g4047_1 gnd +C1 g4047_0 gnd 2.080806f +C2 g4047_1 gnd 2.080806f +R1 g4047_1 g4047_0 2.224404 +.ends + +.subckt netg5415 g5415_1 g5415_0 gnd +C1 g5415_1 gnd 2.080806f +C2 g5415_0 gnd 2.080806f +R1 g5415_1 g5415_0 2.224404 +.ends + +.subckt netg3897 g3897_1 g3897_0 gnd +C1 g3897_1 gnd 2.080806f +C2 g3897_0 gnd 2.080806f +R1 g3897_1 g3897_0 2.224404 +.ends + +.subckt netg6584 g6584_1 g6584_0 gnd +C1 g6584_1 gnd 2.080806f +C2 g6584_0 gnd 2.080806f +R1 g6584_1 g6584_0 2.224404 +.ends + +.subckt netg1815 g1815_1 g1815_0 gnd +C1 g1815_1 gnd 2.080806f +C2 g1815_0 gnd 2.080806f +R1 g1815_1 g1815_0 2.224404 +.ends + +.subckt netg6962 g6962_1 g6962_0 gnd +C1 g6962_1 gnd 2.080806f +C2 g6962_0 gnd 2.080806f +R1 g6962_1 g6962_0 2.224404 +.ends + +.subckt netg5879 g5879_0 g5879_1 gnd +C1 g5879_0 gnd 2.080806f +C2 g5879_1 gnd 2.080806f +R1 g5879_0 g5879_1 2.224404 +.ends + +.subckt netg2486 g2486_1 g2486_2 gnd +C1 g2486_1 gnd 2.080806f +C2 g2486_2 gnd 2.080806f +R1 g2486_1 g2486_2 2.224404 +.ends + +.subckt netg4206 g4206_0 g4206_1 gnd +C1 g4206_0 gnd 2.080806f +C2 g4206_1 gnd 2.080806f +R1 g4206_0 g4206_1 2.224404 +.ends + +.subckt netg4070 g4070_1 g4070_0 gnd +C1 g4070_1 gnd 2.080806f +C2 g4070_0 gnd 2.080806f +R1 g4070_0 g4070_1 2.224404 +.ends + +.subckt netg7156 g7156_1 g7156_0 gnd +C1 g7156_1 gnd 2.080806f +C2 g7156_0 gnd 2.080806f +R1 g7156_1 g7156_0 2.224404 +.ends + +.subckt netg1519 g1519_0 g1519_1 gnd +C1 g1519_0 gnd 2.080806f +C2 g1519_1 gnd 2.080806f +R1 g1519_1 g1519_0 2.224404 +.ends + +.subckt netg6669 g6669_0 g6669_1 gnd +C1 g6669_0 gnd 2.080806f +C2 g6669_1 gnd 2.080806f +R1 g6669_1 g6669_0 2.224404 +.ends + +.subckt netg1492 g1492_1 g1492_0 gnd +C1 g1492_1 gnd 2.080806f +C2 g1492_0 gnd 2.080806f +R1 g1492_0 g1492_1 2.224404 +.ends + +.subckt netg6272 g6272_0 g6272_1 gnd +C1 g6272_0 gnd 2.080806f +C2 g6272_1 gnd 2.080806f +R1 g6272_1 g6272_0 2.224404 +.ends + +.subckt netg1122 g1122_0 g1122_1 gnd +C1 g1122_0 gnd 2.080806f +C2 g1122_1 gnd 2.080806f +R1 g1122_1 g1122_0 2.224404 +.ends + +.subckt netg5526 g5526_1 g5526_0 gnd +C1 g5526_1 gnd 2.080806f +C2 g5526_0 gnd 2.080806f +R1 g5526_0 g5526_1 2.224404 +.ends + +.subckt netg3557 g3557_1 g3557_0 gnd +C1 g3557_1 gnd 2.080806f +C2 g3557_0 gnd 2.080806f +R1 g3557_1 g3557_0 2.224404 +.ends + +.subckt netg3568 g3568_1 g3568_0 gnd +C1 g3568_1 gnd 2.080806f +C2 g3568_0 gnd 2.080806f +R1 g3568_0 g3568_1 2.224404 +.ends + +.subckt netg6464 g6464_0 g6464_1 gnd +C1 g6464_0 gnd 2.080806f +C2 g6464_1 gnd 2.080806f +R1 g6464_1 g6464_0 2.224404 +.ends + +.subckt netg7129 g7129_0 g7129_1 gnd +C1 g7129_0 gnd 2.080806f +C2 g7129_1 gnd 2.080806f +R1 g7129_0 g7129_1 2.224404 +.ends + +.subckt netg4982 g4982_1 g4982_2 gnd +C1 g4982_1 gnd 2.080806f +C2 g4982_2 gnd 2.080806f +R1 g4982_2 g4982_1 2.224404 +.ends + +.subckt netg1134 g1134_1 g1134_0 gnd +C1 g1134_1 gnd 2.080806f +C2 g1134_0 gnd 2.080806f +R1 g1134_1 g1134_0 2.224404 +.ends + +.subckt netg7099 g7099_0 g7099_1 gnd +C1 g7099_0 gnd 2.080806f +C2 g7099_1 gnd 2.080806f +R1 g7099_0 g7099_1 2.224404 +.ends + +.subckt netg6920 g6920_1 g6920_0 gnd +C1 g6920_1 gnd 2.080806f +C2 g6920_0 gnd 2.080806f +R1 g6920_0 g6920_1 2.224404 +.ends + +.subckt netg6011 g6011_1 g6011_0 gnd +C1 g6011_1 gnd 2.080806f +C2 g6011_0 gnd 2.080806f +R1 g6011_0 g6011_1 2.224404 +.ends + +.subckt netg1252 g1252_0 g1252_1 gnd +C1 g1252_0 gnd 2.080806f +C2 g1252_1 gnd 2.080806f +R1 g1252_1 g1252_0 2.224404 +.ends + +.subckt netg6894 g6894_0 g6894_1 gnd +C1 g6894_0 gnd 2.080806f +C2 g6894_1 gnd 2.080806f +R1 g6894_0 g6894_1 2.224404 +.ends + +.subckt netg4067 g4067_1 g4067_0 gnd +C1 g4067_1 gnd 2.080806f +C2 g4067_0 gnd 2.080806f +R1 g4067_0 g4067_1 2.224404 +.ends + +.subckt netg1265 g1265_0 g1265_1 gnd +C1 g1265_0 gnd 2.080806f +C2 g1265_1 gnd 2.080806f +R1 g1265_0 g1265_1 2.224404 +.ends + +.subckt netg5249 g5249_1 g5249_0 gnd +C1 g5249_1 gnd 2.080806f +C2 g5249_0 gnd 2.080806f +R1 g5249_0 g5249_1 2.224404 +.ends + +.subckt netg4230 g4230_0 g4230_1 gnd +C1 g4230_0 gnd 2.080806f +C2 g4230_1 gnd 2.080806f +R1 g4230_0 g4230_1 2.224404 +.ends + +.subckt netg4414 g4414_0 g4414_1 gnd +C1 g4414_0 gnd 2.080806f +C2 g4414_1 gnd 2.080806f +R1 g4414_0 g4414_1 2.224404 +.ends + +.subckt netx221 x221_0 x221_1 gnd +C1 x221_0 gnd 2.080806f +C2 x221_1 gnd 2.080806f +R1 x221_0 x221_1 2.224404 +.ends + +.subckt netg3487 g3487_1 g3487_0 gnd +C1 g3487_1 gnd 2.080806f +C2 g3487_0 gnd 2.080806f +R1 g3487_1 g3487_0 2.224404 +.ends + +.subckt netg6720 g6720_0 g6720_1 gnd +C1 g6720_0 gnd 2.080806f +C2 g6720_1 gnd 2.080806f +R1 g6720_0 g6720_1 2.224404 +.ends + +.subckt netg1452 g1452_0 g1452_1 gnd +C1 g1452_0 gnd 2.080806f +C2 g1452_1 gnd 2.080806f +R1 g1452_1 g1452_0 2.224404 +.ends + +.subckt netg6134 g6134_0 g6134_1 gnd +C1 g6134_0 gnd 2.080806f +C2 g6134_1 gnd 2.080806f +R1 g6134_1 g6134_0 2.224404 +.ends + +.subckt netg3500 g3500_1 g3500_0 gnd +C1 g3500_1 gnd 2.080806f +C2 g3500_0 gnd 2.080806f +R1 g3500_1 g3500_0 2.224404 +.ends + +.subckt netg4237 g4237_1 g4237_0 gnd +C1 g4237_1 gnd 2.080806f +C2 g4237_0 gnd 2.080806f +R1 g4237_0 g4237_1 2.224404 +.ends + +.subckt netg4530 g4530_1 g4530_0 gnd +C1 g4530_1 gnd 2.080806f +C2 g4530_0 gnd 2.080806f +R1 g4530_1 g4530_0 2.224404 +.ends + +.subckt netg6554 g6554_1 g6554_0 gnd +C1 g6554_1 gnd 2.080806f +C2 g6554_0 gnd 2.080806f +R1 g6554_1 g6554_0 2.224404 +.ends + +.subckt netg7131 g7131_2 g7131_1 gnd +C1 g7131_2 gnd 2.080806f +C2 g7131_1 gnd 2.080806f +R1 g7131_1 g7131_2 2.224404 +.ends + +.subckt netg6207 g6207_1 g6207_0 gnd +C1 g6207_1 gnd 2.080806f +C2 g6207_0 gnd 2.080806f +R1 g6207_1 g6207_0 2.224404 +.ends + +.subckt netg4997 g4997_1 g4997_2 gnd +C1 g4997_1 gnd 2.080806f +C2 g4997_2 gnd 2.080806f +R1 g4997_2 g4997_1 2.224404 +.ends + +.subckt netg5458 g5458_0 g5458_1 gnd +C1 g5458_0 gnd 2.080806f +C2 g5458_1 gnd 2.080806f +R1 g5458_1 g5458_0 2.224404 +.ends + +.subckt netg7381 g7381_1 g7381_0 gnd +C1 g7381_1 gnd 2.080806f +C2 g7381_0 gnd 2.080806f +R1 g7381_0 g7381_1 2.224404 +.ends + +.subckt netg2404 g2404_1 g2404_0 gnd +C1 g2404_1 gnd 2.080806f +C2 g2404_0 gnd 2.080806f +R1 g2404_0 g2404_1 2.224404 +.ends + +.subckt netg3468 g3468_1 g3468_0 gnd +C1 g3468_1 gnd 2.080806f +C2 g3468_0 gnd 2.080806f +R1 g3468_0 g3468_1 2.224404 +.ends + +.subckt netg4256 g4256_1 g4256_0 gnd +C1 g4256_1 gnd 2.080806f +C2 g4256_0 gnd 2.080806f +R1 g4256_0 g4256_1 2.224404 +.ends + +.subckt netg5298 g5298_1 g5298_0 gnd +C1 g5298_1 gnd 2.080806f +C2 g5298_0 gnd 2.080806f +R1 g5298_0 g5298_1 2.224404 +.ends + +.subckt netg6141 g6141_1 g6141_0 gnd +C1 g6141_1 gnd 2.080806f +C2 g6141_0 gnd 2.080806f +R1 g6141_1 g6141_0 2.224404 +.ends + +.subckt netg6175 g6175_0 g6175_1 gnd +C1 g6175_0 gnd 2.080806f +C2 g6175_1 gnd 2.080806f +R1 g6175_0 g6175_1 2.224404 +.ends + +.subckt netg1948 g1948_2 g1948_0 gnd +C1 g1948_2 gnd 2.080806f +C2 g1948_0 gnd 2.080806f +R1 g1948_0 g1948_2 2.224404 +.ends + +.subckt netg5330 g5330_1 g5330_0 gnd +C1 g5330_1 gnd 2.080806f +C2 g5330_0 gnd 2.080806f +R1 g5330_0 g5330_1 2.224404 +.ends + +.subckt netg2786 g2786_0 g2786_1 gnd +C1 g2786_0 gnd 2.080806f +C2 g2786_1 gnd 2.080806f +R1 g2786_1 g2786_0 2.224404 +.ends + +.subckt netg4226 g4226_0 g4226_1 gnd +C1 g4226_0 gnd 2.080806f +C2 g4226_1 gnd 2.080806f +R1 g4226_1 g4226_0 2.224404 +.ends + +.subckt netg5143 g5143_0 g5143_1 gnd +C1 g5143_0 gnd 2.080806f +C2 g5143_1 gnd 2.080806f +R1 g5143_0 g5143_1 2.224404 +.ends + +.subckt netg2792 g2792_0 g2792_1 gnd +C1 g2792_0 gnd 2.080806f +C2 g2792_1 gnd 2.080806f +R1 g2792_0 g2792_1 2.224404 +.ends + +.subckt netg6507 g6507_0 g6507_1 gnd +C1 g6507_0 gnd 2.080806f +C2 g6507_1 gnd 2.080806f +R1 g6507_1 g6507_0 2.224404 +.ends + +.subckt netg3570 g3570_1 g3570_0 gnd +C1 g3570_1 gnd 2.080806f +C2 g3570_0 gnd 2.080806f +R1 g3570_0 g3570_1 2.224404 +.ends + +.subckt netg6259 g6259_2 g6259_1 gnd +C1 g6259_2 gnd 2.080806f +C2 g6259_1 gnd 2.080806f +R1 g6259_2 g6259_1 2.224404 +.ends + +.subckt netg5606 g5606_1 g5606_0 gnd +C1 g5606_1 gnd 2.080806f +C2 g5606_0 gnd 2.080806f +R1 g5606_0 g5606_1 2.224404 +.ends + +.subckt netg2835 g2835_0 g2835_1 gnd +C1 g2835_0 gnd 2.080806f +C2 g2835_1 gnd 2.080806f +R1 g2835_0 g2835_1 2.224404 +.ends + +.subckt netg1533 g1533_1 g1533_0 gnd +C1 g1533_1 gnd 2.080806f +C2 g1533_0 gnd 2.080806f +R1 g1533_1 g1533_0 2.224404 +.ends + +.subckt netg6820 g6820_1 g6820_0 gnd +C1 g6820_1 gnd 2.080806f +C2 g6820_0 gnd 2.080806f +R1 g6820_1 g6820_0 2.224404 +.ends + +.subckt netg3547 g3547_0 g3547_1 gnd +C1 g3547_0 gnd 2.080806f +C2 g3547_1 gnd 2.080806f +R1 g3547_1 g3547_0 2.224404 +.ends + +.subckt netg7347 g7347_0 g7347_1 gnd +C1 g7347_0 gnd 2.080806f +C2 g7347_1 gnd 2.080806f +R1 g7347_1 g7347_0 2.224404 +.ends + +.subckt netg3717 g3717_1 g3717_0 gnd +C1 g3717_1 gnd 2.080806f +C2 g3717_0 gnd 2.080806f +R1 g3717_0 g3717_1 2.224404 +.ends + +.subckt netg5592 g5592_1 g5592_0 gnd +C1 g5592_1 gnd 2.080806f +C2 g5592_0 gnd 2.080806f +R1 g5592_1 g5592_0 2.224404 +.ends + +.subckt netg6073 g6073_0 g6073_1 gnd +C1 g6073_0 gnd 2.080806f +C2 g6073_1 gnd 2.080806f +R1 g6073_0 g6073_1 2.224404 +.ends + +.subckt netg4424 g4424_0 g4424_1 gnd +C1 g4424_0 gnd 2.080806f +C2 g4424_1 gnd 2.080806f +R1 g4424_1 g4424_0 2.224404 +.ends + +.subckt netg1582 g1582_0 g1582_1 gnd +C1 g1582_0 gnd 2.080806f +C2 g1582_1 gnd 2.080806f +R1 g1582_1 g1582_0 2.224404 +.ends + +.subckt netg6902 g6902_0 g6902_1 gnd +C1 g6902_0 gnd 2.080806f +C2 g6902_1 gnd 2.080806f +R1 g6902_0 g6902_1 2.224404 +.ends + +.subckt netg5706 g5706_1 g5706_0 gnd +C1 g5706_1 gnd 2.080806f +C2 g5706_0 gnd 2.080806f +R1 g5706_0 g5706_1 2.224404 +.ends + +.subckt netg1227 g1227_1 g1227_0 gnd +C1 g1227_1 gnd 2.080806f +C2 g1227_0 gnd 2.080806f +R1 g1227_1 g1227_0 2.224404 +.ends + +.subckt netg2846 g2846_0 g2846_1 gnd +C1 g2846_0 gnd 2.080806f +C2 g2846_1 gnd 2.080806f +R1 g2846_1 g2846_0 2.224404 +.ends + +.subckt netg1173 g1173_0 g1173_1 gnd +C1 g1173_0 gnd 2.080806f +C2 g1173_1 gnd 2.080806f +R1 g1173_1 g1173_0 2.224404 +.ends + +.subckt netg5769 g5769_1 g5769_0 gnd +C1 g5769_1 gnd 2.080806f +C2 g5769_0 gnd 2.080806f +R1 g5769_0 g5769_1 2.224404 +.ends + +.subckt netg2785 g2785_0 g2785_1 gnd +C1 g2785_0 gnd 2.080806f +C2 g2785_1 gnd 2.080806f +R1 g2785_0 g2785_1 2.224404 +.ends + +.subckt netg7332 g7332_1 g7332_0 gnd +C1 g7332_1 gnd 2.080806f +C2 g7332_0 gnd 2.080806f +R1 g7332_0 g7332_1 2.224404 +.ends + +.subckt netg1481 g1481_1 g1481_0 gnd +C1 g1481_1 gnd 2.080806f +C2 g1481_0 gnd 2.080806f +R1 g1481_1 g1481_0 2.224404 +.ends + +.subckt netg3541 g3541_1 g3541_0 gnd +C1 g3541_1 gnd 2.080806f +C2 g3541_0 gnd 2.080806f +R1 g3541_0 g3541_1 2.224404 +.ends + +.subckt netg3096 g3096_2 g3096_1 gnd +C1 g3096_2 gnd 2.080806f +C2 g3096_1 gnd 2.080806f +R1 g3096_2 g3096_1 2.224404 +.ends + +.subckt netg4452 g4452_1 g4452_0 gnd +C1 g4452_1 gnd 2.080806f +C2 g4452_0 gnd 2.080806f +R1 g4452_1 g4452_0 2.224404 +.ends + +.subckt netg7183 g7183_0 g7183_1 gnd +C1 g7183_0 gnd 2.080806f +C2 g7183_1 gnd 2.080806f +R1 g7183_1 g7183_0 2.224404 +.ends + +.subckt netg1457 g1457_1 g1457_0 gnd +C1 g1457_1 gnd 2.080806f +C2 g1457_0 gnd 2.080806f +R1 g1457_1 g1457_0 2.224404 +.ends + +.subckt netg6737 g6737_1 g6737_0 gnd +C1 g6737_1 gnd 2.080806f +C2 g6737_0 gnd 2.080806f +R1 g6737_1 g6737_0 2.224404 +.ends + +.subckt netg7013 g7013_1 g7013_0 gnd +C1 g7013_1 gnd 2.080806f +C2 g7013_0 gnd 2.080806f +R1 g7013_0 g7013_1 2.224404 +.ends + +.subckt netg6697 g6697_0 g6697_1 gnd +C1 g6697_0 gnd 2.080806f +C2 g6697_1 gnd 2.080806f +R1 g6697_1 g6697_0 2.224404 +.ends + +.subckt netg3915 g3915_1 g3915_0 gnd +C1 g3915_1 gnd 2.080806f +C2 g3915_0 gnd 2.080806f +R1 g3915_1 g3915_0 2.224404 +.ends + +.subckt netg6460 g6460_1 g6460_0 gnd +C1 g6460_1 gnd 2.080806f +C2 g6460_0 gnd 2.080806f +R1 g6460_1 g6460_0 2.224404 +.ends + +.subckt netg5476 g5476_1 g5476_0 gnd +C1 g5476_1 gnd 2.080806f +C2 g5476_0 gnd 2.080806f +R1 g5476_0 g5476_1 2.224404 +.ends + +.subckt netg5114 g5114_1 g5114_0 gnd +C1 g5114_1 gnd 2.080806f +C2 g5114_0 gnd 2.080806f +R1 g5114_1 g5114_0 2.224404 +.ends + +.subckt netg7092 g7092_1 g7092_0 gnd +C1 g7092_1 gnd 2.080806f +C2 g7092_0 gnd 2.080806f +R1 g7092_1 g7092_0 2.224404 +.ends + +.subckt netg7249 g7249_0 g7249_1 gnd +C1 g7249_0 gnd 2.080806f +C2 g7249_1 gnd 2.080806f +R1 g7249_0 g7249_1 2.224404 +.ends + +.subckt netg6244 g6244_0 g6244_1 gnd +C1 g6244_0 gnd 2.080806f +C2 g6244_1 gnd 2.080806f +R1 g6244_0 g6244_1 2.224404 +.ends + +.subckt netg3578 g3578_1 g3578_0 gnd +C1 g3578_1 gnd 2.080806f +C2 g3578_0 gnd 2.080806f +R1 g3578_0 g3578_1 2.224404 +.ends + +.subckt netx231 x231_0 x231_1 gnd +C1 x231_0 gnd 2.080806f +C2 x231_1 gnd 2.080806f +R1 x231_0 x231_1 2.224404 +.ends + +.subckt netg7279 g7279_0 g7279_1 gnd +C1 g7279_0 gnd 2.080806f +C2 g7279_1 gnd 2.080806f +R1 g7279_1 g7279_0 2.224404 +.ends + +.subckt netg6088 g6088_1 g6088_0 gnd +C1 g6088_1 gnd 2.080806f +C2 g6088_0 gnd 2.080806f +R1 g6088_1 g6088_0 2.224404 +.ends + +.subckt netg5546 g5546_0 g5546_2 gnd +C1 g5546_0 gnd 2.080806f +C2 g5546_2 gnd 2.080806f +R1 g5546_0 g5546_2 2.224404 +.ends + +.subckt netg6696 g6696_0 g6696_1 gnd +C1 g6696_0 gnd 2.080806f +C2 g6696_1 gnd 2.080806f +R1 g6696_1 g6696_0 2.224404 +.ends + +.subckt netg4340 g4340_1 g4340_0 gnd +C1 g4340_1 gnd 2.080806f +C2 g4340_0 gnd 2.080806f +R1 g4340_0 g4340_1 2.224404 +.ends + +.subckt netg6008 g6008_0 g6008_1 gnd +C1 g6008_0 gnd 2.080806f +C2 g6008_1 gnd 2.080806f +R1 g6008_0 g6008_1 2.224404 +.ends + +.subckt netg7076 g7076_1 g7076_0 gnd +C1 g7076_1 gnd 2.080806f +C2 g7076_0 gnd 2.080806f +R1 g7076_1 g7076_0 2.224404 +.ends + +.subckt netg5776 g5776_0 g5776_1 gnd +C1 g5776_0 gnd 2.080806f +C2 g5776_1 gnd 2.080806f +R1 g5776_1 g5776_0 2.224404 +.ends + +.subckt netg6229 g6229_1 g6229_0 gnd +C1 g6229_1 gnd 2.080806f +C2 g6229_0 gnd 2.080806f +R1 g6229_0 g6229_1 2.224404 +.ends + +.subckt netg1051 g1051_2 g1051_0 gnd +C1 g1051_2 gnd 2.080806f +C2 g1051_0 gnd 2.080806f +R1 g1051_2 g1051_0 2.224404 +.ends + +.subckt netg2435 g2435_0 g2435_2 gnd +C1 g2435_0 gnd 2.080806f +C2 g2435_2 gnd 2.080806f +R1 g2435_0 g2435_2 2.224404 +.ends + +.subckt netg3900 g3900_1 g3900_0 gnd +C1 g3900_1 gnd 2.080806f +C2 g3900_0 gnd 2.080806f +R1 g3900_1 g3900_0 2.224404 +.ends + +.subckt netg455 g455_0 g455_1 gnd +C1 g455_0 gnd 2.080806f +C2 g455_1 gnd 2.080806f +R1 g455_1 g455_0 2.224404 +.ends + +.subckt netg6684 g6684_0 g6684_1 gnd +C1 g6684_0 gnd 2.080806f +C2 g6684_1 gnd 2.080806f +R1 g6684_1 g6684_0 2.224404 +.ends + +.subckt netg6006 g6006_1 g6006_0 gnd +C1 g6006_1 gnd 2.080806f +C2 g6006_0 gnd 2.080806f +R1 g6006_1 g6006_0 2.224404 +.ends + +.subckt netg1314 g1314_1 g1314_0 gnd +C1 g1314_1 gnd 2.080806f +C2 g1314_0 gnd 2.080806f +R1 g1314_1 g1314_0 2.224404 +.ends + +.subckt netg5238 g5238_1 g5238_0 gnd +C1 g5238_1 gnd 2.080806f +C2 g5238_0 gnd 2.080806f +R1 g5238_1 g5238_0 2.224404 +.ends + +.subckt netg5538 g5538_1 g5538_0 gnd +C1 g5538_1 gnd 2.080806f +C2 g5538_0 gnd 2.080806f +R1 g5538_0 g5538_1 2.224404 +.ends + +.subckt netg3573 g3573_1 g3573_0 gnd +C1 g3573_1 gnd 2.080806f +C2 g3573_0 gnd 2.080806f +R1 g3573_0 g3573_1 2.224404 +.ends + +.subckt netg5362 g5362_1 g5362_0 gnd +C1 g5362_1 gnd 2.080806f +C2 g5362_0 gnd 2.080806f +R1 g5362_1 g5362_0 2.224404 +.ends + +.subckt netg5252 g5252_1 g5252_0 gnd +C1 g5252_1 gnd 2.080806f +C2 g5252_0 gnd 2.080806f +R1 g5252_0 g5252_1 2.224404 +.ends + +.subckt netg6135 g6135_0 g6135_1 gnd +C1 g6135_0 gnd 2.080806f +C2 g6135_1 gnd 2.080806f +R1 g6135_1 g6135_0 2.224404 +.ends + +.subckt netg4023 g4023_0 g4023_1 gnd +C1 g4023_0 gnd 2.080806f +C2 g4023_1 gnd 2.080806f +R1 g4023_1 g4023_0 2.224404 +.ends + +.subckt netg7442 g7442_1 g7442_0 gnd +C1 g7442_1 gnd 2.080806f +C2 g7442_0 gnd 2.080806f +R1 g7442_1 g7442_0 2.224404 +.ends + +.subckt netg910 g910_1 g910_2 gnd +C1 g910_1 gnd 2.080806f +C2 g910_2 gnd 2.080806f +R1 g910_2 g910_1 2.224404 +.ends + +.subckt netg5671 g5671_1 g5671_2 gnd +C1 g5671_1 gnd 2.080806f +C2 g5671_2 gnd 2.080806f +R1 g5671_2 g5671_1 2.224404 +.ends + +.subckt netg1929 g1929_0 g1929_1 gnd +C1 g1929_0 gnd 2.080806f +C2 g1929_1 gnd 2.080806f +R1 g1929_1 g1929_0 2.224404 +.ends + +.subckt netg4137 g4137_0 g4137_1 gnd +C1 g4137_0 gnd 2.080806f +C2 g4137_1 gnd 2.080806f +R1 g4137_0 g4137_1 2.224404 +.ends + +.subckt netg1359 g1359_0 g1359_1 gnd +C1 g1359_0 gnd 2.080806f +C2 g1359_1 gnd 2.080806f +R1 g1359_0 g1359_1 2.224404 +.ends + +.subckt netg6648 g6648_1 g6648_0 gnd +C1 g6648_1 gnd 2.080806f +C2 g6648_0 gnd 2.080806f +R1 g6648_1 g6648_0 2.224404 +.ends + +.subckt netg6940 g6940_0 g6940_1 gnd +C1 g6940_0 gnd 2.080806f +C2 g6940_1 gnd 2.080806f +R1 g6940_0 g6940_1 2.224404 +.ends + +.subckt netg6099 g6099_0 g6099_1 gnd +C1 g6099_0 gnd 2.080806f +C2 g6099_1 gnd 2.080806f +R1 g6099_0 g6099_1 2.224404 +.ends + +.subckt netg6362 g6362_1 g6362_0 gnd +C1 g6362_1 gnd 2.080806f +C2 g6362_0 gnd 2.080806f +R1 g6362_0 g6362_1 2.224404 +.ends + +.subckt netg4321 g4321_0 g4321_1 gnd +C1 g4321_0 gnd 2.080806f +C2 g4321_1 gnd 2.080806f +R1 g4321_0 g4321_1 2.224404 +.ends + +.subckt netg3920 g3920_1 g3920_0 gnd +C1 g3920_1 gnd 2.080806f +C2 g3920_0 gnd 2.080806f +R1 g3920_1 g3920_0 2.224404 +.ends + +.subckt netg5540 g5540_1 g5540_2 gnd +C1 g5540_1 gnd 2.080806f +C2 g5540_2 gnd 2.080806f +R1 g5540_1 g5540_2 2.224404 +.ends + +.subckt netg4160 g4160_0 g4160_1 gnd +C1 g4160_0 gnd 2.080806f +C2 g4160_1 gnd 2.080806f +R1 g4160_1 g4160_0 2.224404 +.ends + +.subckt netg6936 g6936_1 g6936_0 gnd +C1 g6936_1 gnd 2.080806f +C2 g6936_0 gnd 2.080806f +R1 g6936_1 g6936_0 2.224404 +.ends + +.subckt netg7185 g7185_1 g7185_0 gnd +C1 g7185_1 gnd 2.080806f +C2 g7185_0 gnd 2.080806f +R1 g7185_1 g7185_0 2.224404 +.ends + +.subckt netg6665 g6665_0 g6665_1 gnd +C1 g6665_0 gnd 2.080806f +C2 g6665_1 gnd 2.080806f +R1 g6665_1 g6665_0 2.224404 +.ends + +.subckt netg1939 g1939_0 g1939_1 gnd +C1 g1939_0 gnd 2.080806f +C2 g1939_1 gnd 2.080806f +R1 g1939_0 g1939_1 2.224404 +.ends + +.subckt netg6996 g6996_1 g6996_0 gnd +C1 g6996_1 gnd 2.080806f +C2 g6996_0 gnd 2.080806f +R1 g6996_1 g6996_0 2.224404 +.ends + +.subckt netg6529 g6529_1 g6529_0 gnd +C1 g6529_1 gnd 2.080806f +C2 g6529_0 gnd 2.080806f +R1 g6529_0 g6529_1 2.224404 +.ends + +.subckt netg1232 g1232_0 g1232_1 gnd +C1 g1232_0 gnd 2.080806f +C2 g1232_1 gnd 2.080806f +R1 g1232_0 g1232_1 2.224404 +.ends + +.subckt netg3529 g3529_1 g3529_0 gnd +C1 g3529_1 gnd 2.080806f +C2 g3529_0 gnd 2.080806f +R1 g3529_0 g3529_1 2.224404 +.ends + +.subckt netg6191 g6191_1 g6191_0 gnd +C1 g6191_1 gnd 2.080806f +C2 g6191_0 gnd 2.080806f +R1 g6191_1 g6191_0 2.224404 +.ends + +.subckt netg3198 g3198_1 g3198_2 gnd +C1 g3198_1 gnd 2.080806f +C2 g3198_2 gnd 2.080806f +R1 g3198_2 g3198_1 2.224404 +.ends + +.subckt netg4328 g4328_0 g4328_1 gnd +C1 g4328_0 gnd 2.080806f +C2 g4328_1 gnd 2.080806f +R1 g4328_0 g4328_1 2.224404 +.ends + +.subckt netg3514 g3514_1 g3514_0 gnd +C1 g3514_1 gnd 2.080806f +C2 g3514_0 gnd 2.080806f +R1 g3514_0 g3514_1 2.224404 +.ends + +.subckt netg7022 g7022_1 g7022_0 gnd +C1 g7022_1 gnd 2.080806f +C2 g7022_0 gnd 2.080806f +R1 g7022_0 g7022_1 2.224404 +.ends + +.subckt netg7198 g7198_0 g7198_1 gnd +C1 g7198_0 gnd 2.080806f +C2 g7198_1 gnd 2.080806f +R1 g7198_0 g7198_1 2.224404 +.ends + +.subckt netg1431 g1431_0 g1431_1 gnd +C1 g1431_0 gnd 2.080806f +C2 g1431_1 gnd 2.080806f +R1 g1431_0 g1431_1 2.224404 +.ends + +.subckt netg2701 g2701_1 g2701_2 gnd +C1 g2701_1 gnd 2.080806f +C2 g2701_2 gnd 2.080806f +R1 g2701_1 g2701_2 2.224404 +.ends + +.subckt netg7353 g7353_1 g7353_0 gnd +C1 g7353_1 gnd 2.080806f +C2 g7353_0 gnd 2.080806f +R1 g7353_0 g7353_1 2.224404 +.ends + +.subckt netg4053 g4053_0 g4053_1 gnd +C1 g4053_0 gnd 2.080806f +C2 g4053_1 gnd 2.080806f +R1 g4053_1 g4053_0 2.224404 +.ends + +.subckt netg5410 g5410_0 g5410_1 gnd +C1 g5410_0 gnd 2.080806f +C2 g5410_1 gnd 2.080806f +R1 g5410_0 g5410_1 2.224404 +.ends + +.subckt netg6525 g6525_1 g6525_0 gnd +C1 g6525_1 gnd 2.080806f +C2 g6525_0 gnd 2.080806f +R1 g6525_1 g6525_0 2.224404 +.ends + +.subckt netx281 x281_1 x281_0 gnd +C1 x281_1 gnd 2.080806f +C2 x281_0 gnd 2.080806f +R1 x281_1 x281_0 2.224404 +.ends + +.subckt netg4332 g4332_1 g4332_0 gnd +C1 g4332_1 gnd 2.080806f +C2 g4332_0 gnd 2.080806f +R1 g4332_1 g4332_0 2.224404 +.ends + +.subckt netg2558 g2558_2 g2558_1 gnd +C1 g2558_2 gnd 2.080806f +C2 g2558_1 gnd 2.080806f +R1 g2558_1 g2558_2 2.224404 +.ends + +.subckt netg2914 g2914_1 g2914_0 gnd +C1 g2914_1 gnd 2.080806f +C2 g2914_0 gnd 2.080806f +R1 g2914_0 g2914_1 2.224404 +.ends + +.subckt netg7107 g7107_0 g7107_1 gnd +C1 g7107_0 gnd 2.080806f +C2 g7107_1 gnd 2.080806f +R1 g7107_1 g7107_0 2.224404 +.ends + +.subckt netg6186 g6186_1 g6186_0 gnd +C1 g6186_1 gnd 2.080806f +C2 g6186_0 gnd 2.080806f +R1 g6186_1 g6186_0 2.224404 +.ends + +.subckt netg7228 g7228_1 g7228_2 gnd +C1 g7228_1 gnd 2.080806f +C2 g7228_2 gnd 2.080806f +R1 g7228_2 g7228_1 2.224404 +.ends + +.subckt netg4173 g4173_1 g4173_0 gnd +C1 g4173_1 gnd 2.080806f +C2 g4173_0 gnd 2.080806f +R1 g4173_0 g4173_1 2.224404 +.ends + +.subckt netg6356 g6356_1 g6356_0 gnd +C1 g6356_1 gnd 2.080806f +C2 g6356_0 gnd 2.080806f +R1 g6356_0 g6356_1 2.224404 +.ends + +.subckt netg6317 g6317_0 g6317_1 gnd +C1 g6317_0 gnd 2.080806f +C2 g6317_1 gnd 2.080806f +R1 g6317_1 g6317_0 2.224404 +.ends + +.subckt netg5443 g5443_1 g5443_0 gnd +C1 g5443_1 gnd 2.080806f +C2 g5443_0 gnd 2.080806f +R1 g5443_1 g5443_0 2.224404 +.ends + +.subckt netg1999 g1999_0 g1999_1 gnd +C1 g1999_0 gnd 2.080806f +C2 g1999_1 gnd 2.080806f +R1 g1999_0 g1999_1 2.224404 +.ends + +.subckt netg6163 g6163_1 g6163_0 gnd +C1 g6163_1 gnd 2.080806f +C2 g6163_0 gnd 2.080806f +R1 g6163_1 g6163_0 2.224404 +.ends + +.subckt netg6731 g6731_0 g6731_1 gnd +C1 g6731_0 gnd 2.080806f +C2 g6731_1 gnd 2.080806f +R1 g6731_0 g6731_1 2.224404 +.ends + +.subckt netg4134 g4134_1 g4134_0 gnd +C1 g4134_1 gnd 2.080806f +C2 g4134_0 gnd 2.080806f +R1 g4134_0 g4134_1 2.224404 +.ends + +.subckt netg1162 g1162_1 g1162_0 gnd +C1 g1162_1 gnd 2.080806f +C2 g1162_0 gnd 2.080806f +R1 g1162_0 g1162_1 2.224404 +.ends + +.subckt netg6298 g6298_0 g6298_1 gnd +C1 g6298_0 gnd 2.080806f +C2 g6298_1 gnd 2.080806f +R1 g6298_0 g6298_1 2.224404 +.ends + +.subckt netg4286 g4286_0 g4286_1 gnd +C1 g4286_0 gnd 2.080806f +C2 g4286_1 gnd 2.080806f +R1 g4286_1 g4286_0 2.224404 +.ends + +.subckt netg6694 g6694_1 g6694_0 gnd +C1 g6694_1 gnd 2.080806f +C2 g6694_0 gnd 2.080806f +R1 g6694_1 g6694_0 2.224404 +.ends + +.subckt netg1408 g1408_0 g1408_1 gnd +C1 g1408_0 gnd 2.080806f +C2 g1408_1 gnd 2.080806f +R1 g1408_0 g1408_1 2.224404 +.ends + +.subckt netg6087 g6087_0 g6087_1 gnd +C1 g6087_0 gnd 2.080806f +C2 g6087_1 gnd 2.080806f +R1 g6087_1 g6087_0 2.224404 +.ends + +.subckt netg1231 g1231_0 g1231_1 gnd +C1 g1231_0 gnd 2.080806f +C2 g1231_1 gnd 2.080806f +R1 g1231_0 g1231_1 2.224404 +.ends + +.subckt netx402 x402_1 x402_0 gnd +C1 x402_1 gnd 2.080806f +C2 x402_0 gnd 2.080806f +R1 x402_1 x402_0 2.224404 +.ends + +.subckt netg5423 g5423_0 g5423_1 gnd +C1 g5423_0 gnd 2.080806f +C2 g5423_1 gnd 2.080806f +R1 g5423_0 g5423_1 2.224404 +.ends + +.subckt netg5992 g5992_0 g5992_1 gnd +C1 g5992_0 gnd 2.080806f +C2 g5992_1 gnd 2.080806f +R1 g5992_0 g5992_1 2.224404 +.ends + +.subckt netg3508 g3508_1 g3508_0 gnd +C1 g3508_1 gnd 2.080806f +C2 g3508_0 gnd 2.080806f +R1 g3508_0 g3508_1 2.224404 +.ends + +.subckt netg2823 g2823_0 g2823_1 gnd +C1 g2823_0 gnd 2.080806f +C2 g2823_1 gnd 2.080806f +R1 g2823_0 g2823_1 2.224404 +.ends + +.subckt netg6169 g6169_0 g6169_1 gnd +C1 g6169_0 gnd 2.080806f +C2 g6169_1 gnd 2.080806f +R1 g6169_0 g6169_1 2.224404 +.ends + +.subckt netg4062 g4062_1 g4062_0 gnd +C1 g4062_1 gnd 2.080806f +C2 g4062_0 gnd 2.080806f +R1 g4062_1 g4062_0 2.224404 +.ends + +.subckt netg4129 g4129_0 g4129_1 gnd +C1 g4129_0 gnd 2.080806f +C2 g4129_1 gnd 2.080806f +R1 g4129_1 g4129_0 2.224404 +.ends + +.subckt netg2795 g2795_0 g2795_1 gnd +C1 g2795_0 gnd 2.080806f +C2 g2795_1 gnd 2.080806f +R1 g2795_1 g2795_0 2.224404 +.ends + +.subckt netg2923 g2923_1 g2923_0 gnd +C1 g2923_1 gnd 2.080806f +C2 g2923_0 gnd 2.080806f +R1 g2923_0 g2923_1 2.224404 +.ends + +.subckt netg4203 g4203_0 g4203_1 gnd +C1 g4203_0 gnd 2.080806f +C2 g4203_1 gnd 2.080806f +R1 g4203_1 g4203_0 2.224404 +.ends + +.subckt netg4057 g4057_1 g4057_0 gnd +C1 g4057_1 gnd 2.080806f +C2 g4057_0 gnd 2.080806f +R1 g4057_0 g4057_1 2.224404 +.ends + +.subckt netg1886 g1886_1 g1886_0 gnd +C1 g1886_1 gnd 2.080806f +C2 g1886_0 gnd 2.080806f +R1 g1886_1 g1886_0 2.224404 +.ends + +.subckt netx121 x121_1 x121_0 gnd +C1 x121_1 gnd 2.080806f +C2 x121_0 gnd 2.080806f +R1 x121_1 x121_0 2.224404 +.ends + +.subckt netg5994 g5994_1 g5994_0 gnd +C1 g5994_1 gnd 2.080806f +C2 g5994_0 gnd 2.080806f +R1 g5994_0 g5994_1 2.224404 +.ends + +.subckt netg6395 g6395_0 g6395_1 gnd +C1 g6395_0 gnd 2.080806f +C2 g6395_1 gnd 2.080806f +R1 g6395_1 g6395_0 2.224404 +.ends + +.subckt netg6166 g6166_1 g6166_0 gnd +C1 g6166_1 gnd 2.080806f +C2 g6166_0 gnd 2.080806f +R1 g6166_1 g6166_0 2.224404 +.ends + +.subckt netg1921 g1921_1 g1921_0 gnd +C1 g1921_1 gnd 2.080806f +C2 g1921_0 gnd 2.080806f +R1 g1921_0 g1921_1 2.224404 +.ends + +.subckt netx291 x291_1 x291_0 gnd +C1 x291_1 gnd 2.080806f +C2 x291_0 gnd 2.080806f +R1 x291_1 x291_0 2.224404 +.ends + +.subckt netg5982 g5982_1 g5982_0 gnd +C1 g5982_1 gnd 2.080806f +C2 g5982_0 gnd 2.080806f +R1 g5982_0 g5982_1 2.224404 +.ends + +.subckt netg5408 g5408_0 g5408_1 gnd +C1 g5408_0 gnd 2.080806f +C2 g5408_1 gnd 2.080806f +R1 g5408_0 g5408_1 2.224404 +.ends + +.subckt netg6333 g6333_1 g6333_0 gnd +C1 g6333_1 gnd 2.080806f +C2 g6333_0 gnd 2.080806f +R1 g6333_0 g6333_1 2.224404 +.ends + +.subckt netg1168 g1168_1 g1168_0 gnd +C1 g1168_1 gnd 2.080806f +C2 g1168_0 gnd 2.080806f +R1 g1168_1 g1168_0 2.224404 +.ends + +.subckt netg1394 g1394_1 g1394_0 gnd +C1 g1394_1 gnd 2.080806f +C2 g1394_0 gnd 2.080806f +R1 g1394_1 g1394_0 2.224404 +.ends + +.subckt netg6440 g6440_0 g6440_1 gnd +C1 g6440_0 gnd 2.080806f +C2 g6440_1 gnd 2.080806f +R1 g6440_1 g6440_0 2.224404 +.ends + +.subckt netg5354 g5354_1 g5354_0 gnd +C1 g5354_1 gnd 2.080806f +C2 g5354_0 gnd 2.080806f +R1 g5354_0 g5354_1 2.224404 +.ends + +.subckt netg6437 g6437_0 g6437_1 gnd +C1 g6437_0 gnd 2.080806f +C2 g6437_1 gnd 2.080806f +R1 g6437_0 g6437_1 2.224404 +.ends + +.subckt netg865 g865_1 g865_2 gnd +C1 g865_1 gnd 2.080806f +C2 g865_2 gnd 2.080806f +R1 g865_2 g865_1 2.224404 +.ends + +.subckt netg2931 g2931_0 g2931_1 gnd +C1 g2931_0 gnd 2.080806f +C2 g2931_1 gnd 2.080806f +R1 g2931_0 g2931_1 2.224404 +.ends + +.subckt netg5135 g5135_0 g5135_1 gnd +C1 g5135_0 gnd 2.080806f +C2 g5135_1 gnd 2.080806f +R1 g5135_1 g5135_0 2.224404 +.ends + +.subckt netg6994 g6994_1 g6994_0 gnd +C1 g6994_1 gnd 2.080806f +C2 g6994_0 gnd 2.080806f +R1 g6994_1 g6994_0 2.224404 +.ends + +.subckt netg6194 g6194_1 g6194_0 gnd +C1 g6194_1 gnd 2.080806f +C2 g6194_0 gnd 2.080806f +R1 g6194_0 g6194_1 2.224404 +.ends + +.subckt netg752 g752_1 g752_0 gnd +C1 g752_1 gnd 2.080806f +C2 g752_0 gnd 2.080806f +R1 g752_1 g752_0 2.224404 +.ends + +.subckt netg7270 g7270_1 g7270_0 gnd +C1 g7270_1 gnd 2.080806f +C2 g7270_0 gnd 2.080806f +R1 g7270_1 g7270_0 2.224404 +.ends + +.subckt netx11 x11_1 x11_0 gnd +C1 x11_1 gnd 2.080806f +C2 x11_0 gnd 2.080806f +R1 x11_1 x11_0 2.224404 +.ends + +.subckt netg4108 g4108_0 g4108_1 gnd +C1 g4108_0 gnd 2.080806f +C2 g4108_1 gnd 2.080806f +R1 g4108_0 g4108_1 2.224404 +.ends + +.subckt netg6502 g6502_2 g6502_0 gnd +C1 g6502_2 gnd 2.080806f +C2 g6502_0 gnd 2.080806f +R1 g6502_0 g6502_2 2.224404 +.ends + +.subckt netg3904 g3904_1 g3904_0 gnd +C1 g3904_1 gnd 2.080806f +C2 g3904_0 gnd 2.080806f +R1 g3904_1 g3904_0 2.224404 +.ends + +.subckt netg1382 g1382_1 g1382_0 gnd +C1 g1382_1 gnd 2.080806f +C2 g1382_0 gnd 2.080806f +R1 g1382_1 g1382_0 2.224404 +.ends + +.subckt netg3497 g3497_1 g3497_0 gnd +C1 g3497_1 gnd 2.080806f +C2 g3497_0 gnd 2.080806f +R1 g3497_1 g3497_0 2.224404 +.ends + +.subckt netg6587 g6587_1 g6587_0 gnd +C1 g6587_1 gnd 2.080806f +C2 g6587_0 gnd 2.080806f +R1 g6587_1 g6587_0 2.224404 +.ends + +.subckt netg4242 g4242_1 g4242_0 gnd +C1 g4242_1 gnd 2.080806f +C2 g4242_0 gnd 2.080806f +R1 g4242_1 g4242_0 2.224404 +.ends + +.subckt netg4121 g4121_0 g4121_2 gnd +C1 g4121_0 gnd 2.080806f +C2 g4121_2 gnd 2.080806f +R1 g4121_2 g4121_0 2.224404 +.ends + +.subckt netg3081 g3081_0 g3081_1 gnd +C1 g3081_0 gnd 2.080806f +C2 g3081_1 gnd 2.080806f +R1 g3081_1 g3081_0 2.224404 +.ends + +.subckt netg6549 g6549_1 g6549_0 gnd +C1 g6549_1 gnd 2.080806f +C2 g6549_0 gnd 2.080806f +R1 g6549_1 g6549_0 2.224404 +.ends + +.subckt netg3129 g3129_2 g3129_1 gnd +C1 g3129_2 gnd 2.080806f +C2 g3129_1 gnd 2.080806f +R1 g3129_1 g3129_2 2.224404 +.ends + +.subckt netg1934 g1934_0 g1934_1 gnd +C1 g1934_0 gnd 2.080806f +C2 g1934_1 gnd 2.080806f +R1 g1934_1 g1934_0 2.224404 +.ends + +.subckt netg3577 g3577_1 g3577_0 gnd +C1 g3577_1 gnd 2.080806f +C2 g3577_0 gnd 2.080806f +R1 g3577_0 g3577_1 2.224404 +.ends + +.subckt netg2793 g2793_1 g2793_0 gnd +C1 g2793_1 gnd 2.080806f +C2 g2793_0 gnd 2.080806f +R1 g2793_0 g2793_1 2.224404 +.ends + +.subckt netg5604 g5604_1 g5604_0 gnd +C1 g5604_1 gnd 2.080806f +C2 g5604_0 gnd 2.080806f +R1 g5604_0 g5604_1 2.224404 +.ends + +.subckt netg1925 g1925_0 g1925_1 gnd +C1 g1925_0 gnd 2.080806f +C2 g1925_1 gnd 2.080806f +R1 g1925_1 g1925_0 2.224404 +.ends + +.subckt netg4264 g4264_0 g4264_1 gnd +C1 g4264_0 gnd 2.080806f +C2 g4264_1 gnd 2.080806f +R1 g4264_0 g4264_1 2.224404 +.ends + +.subckt netg6586 g6586_0 g6586_1 gnd +C1 g6586_0 gnd 2.080806f +C2 g6586_1 gnd 2.080806f +R1 g6586_1 g6586_0 2.224404 +.ends + +.subckt netg4223 g4223_0 g4223_1 gnd +C1 g4223_0 gnd 2.080806f +C2 g4223_1 gnd 2.080806f +R1 g4223_1 g4223_0 2.224404 +.ends + +.subckt netg3565 g3565_0 g3565_1 gnd +C1 g3565_0 gnd 2.080806f +C2 g3565_1 gnd 2.080806f +R1 g3565_0 g3565_1 2.224404 +.ends + +.subckt netg6390 g6390_0 g6390_1 gnd +C1 g6390_0 gnd 2.080806f +C2 g6390_1 gnd 2.080806f +R1 g6390_0 g6390_1 2.224404 +.ends + +.subckt netg7025 g7025_1 g7025_0 gnd +C1 g7025_1 gnd 2.080806f +C2 g7025_0 gnd 2.080806f +R1 g7025_0 g7025_1 2.224404 +.ends + +.subckt netg3049 g3049_1 g3049_0 gnd +C1 g3049_1 gnd 2.080806f +C2 g3049_0 gnd 2.080806f +R1 g3049_0 g3049_1 2.224404 +.ends + +.subckt netg6743 g6743_1 g6743_0 gnd +C1 g6743_1 gnd 2.080806f +C2 g6743_0 gnd 2.080806f +R1 g6743_1 g6743_0 2.224404 +.ends + +.subckt netg6101 g6101_1 g6101_0 gnd +C1 g6101_1 gnd 2.080806f +C2 g6101_0 gnd 2.080806f +R1 g6101_0 g6101_1 2.224404 +.ends + +.subckt netg1228 g1228_1 g1228_0 gnd +C1 g1228_1 gnd 2.080806f +C2 g1228_0 gnd 2.080806f +R1 g1228_0 g1228_1 2.224404 +.ends + +.subckt netg6451 g6451_1 g6451_0 gnd +C1 g6451_1 gnd 2.080806f +C2 g6451_0 gnd 2.080806f +R1 g6451_0 g6451_1 2.224404 +.ends + +.subckt netg2790 g2790_1 g2790_0 gnd +C1 g2790_1 gnd 2.080806f +C2 g2790_0 gnd 2.080806f +R1 g2790_0 g2790_1 2.224404 +.ends + +.subckt netg3067 g3067_0 g3067_1 gnd +C1 g3067_0 gnd 2.080806f +C2 g3067_1 gnd 2.080806f +R1 g3067_1 g3067_0 2.224404 +.ends + +.subckt netg6138 g6138_0 g6138_1 gnd +C1 g6138_0 gnd 2.080806f +C2 g6138_1 gnd 2.080806f +R1 g6138_1 g6138_0 2.224404 +.ends + +.subckt netx371 x371_1 x371_0 gnd +C1 x371_1 gnd 2.080806f +C2 x371_0 gnd 2.080806f +R1 x371_1 x371_0 2.224404 +.ends + +.subckt netg1172 g1172_0 g1172_1 gnd +C1 g1172_0 gnd 2.080806f +C2 g1172_1 gnd 2.080806f +R1 g1172_1 g1172_0 2.224404 +.ends + +.subckt netg2762 g2762_1 g2762_0 gnd +C1 g2762_1 gnd 2.080806f +C2 g2762_0 gnd 2.080806f +R1 g2762_1 g2762_0 2.224404 +.ends + +.subckt netg5599 g5599_1 g5599_0 gnd +C1 g5599_1 gnd 2.080806f +C2 g5599_0 gnd 2.080806f +R1 g5599_0 g5599_1 2.224404 +.ends + +.subckt netg5364 g5364_0 g5364_1 gnd +C1 g5364_0 gnd 2.080806f +C2 g5364_1 gnd 2.080806f +R1 g5364_0 g5364_1 2.224404 +.ends + +.subckt netg5318 g5318_0 g5318_1 gnd +C1 g5318_0 gnd 2.080806f +C2 g5318_1 gnd 2.080806f +R1 g5318_1 g5318_0 2.224404 +.ends + +.subckt netg6539 g6539_0 g6539_1 gnd +C1 g6539_0 gnd 2.080806f +C2 g6539_1 gnd 2.080806f +R1 g6539_1 g6539_0 2.224404 +.ends + +.subckt netg6742 g6742_0 g6742_1 gnd +C1 g6742_0 gnd 2.080806f +C2 g6742_1 gnd 2.080806f +R1 g6742_1 g6742_0 2.224404 +.ends + +.subckt netg7082 g7082_0 g7082_1 gnd +C1 g7082_0 gnd 2.080806f +C2 g7082_1 gnd 2.080806f +R1 g7082_0 g7082_1 2.224404 +.ends + +.subckt netg1930 g1930_0 g1930_1 gnd +C1 g1930_0 gnd 2.080806f +C2 g1930_1 gnd 2.080806f +R1 g1930_1 g1930_0 2.224404 +.ends + +.subckt netg4336 g4336_1 g4336_0 gnd +C1 g4336_1 gnd 2.080806f +C2 g4336_0 gnd 2.080806f +R1 g4336_0 g4336_1 2.224404 +.ends + +.subckt netg4529 g4529_1 g4529_0 gnd +C1 g4529_1 gnd 2.080806f +C2 g4529_0 gnd 2.080806f +R1 g4529_1 g4529_0 2.224404 +.ends + +.subckt netg5596 g5596_1 g5596_0 gnd +C1 g5596_1 gnd 2.080806f +C2 g5596_0 gnd 2.080806f +R1 g5596_0 g5596_1 2.224404 +.ends + +.subckt netg1369 g1369_2 g1369_0 gnd +C1 g1369_2 gnd 2.080806f +C2 g1369_0 gnd 2.080806f +R1 g1369_2 g1369_0 2.224404 +.ends + +.subckt netx512 x512_1 x512_0 gnd +C1 x512_1 gnd 2.080806f +C2 x512_0 gnd 2.080806f +R1 x512_1 x512_0 2.224404 +.ends + +.subckt netg4058 g4058_0 g4058_1 gnd +C1 g4058_0 gnd 2.080806f +C2 g4058_1 gnd 2.080806f +R1 g4058_0 g4058_1 2.224404 +.ends + +.subckt netg1906 g1906_1 g1906_0 gnd +C1 g1906_1 gnd 2.080806f +C2 g1906_0 gnd 2.080806f +R1 g1906_1 g1906_0 2.224404 +.ends + +.subckt netg4402 g4402_0 g4402_1 gnd +C1 g4402_0 gnd 2.080806f +C2 g4402_1 gnd 2.080806f +R1 g4402_0 g4402_1 2.224404 +.ends + +.subckt netg2833 g2833_1 g2833_0 gnd +C1 g2833_1 gnd 2.080806f +C2 g2833_0 gnd 2.080806f +R1 g2833_0 g2833_1 2.224404 +.ends + +.subckt netg5775 g5775_1 g5775_0 gnd +C1 g5775_1 gnd 2.080806f +C2 g5775_0 gnd 2.080806f +R1 g5775_1 g5775_0 2.224404 +.ends + +.subckt netg2998 g2998_1 g2998_0 gnd +C1 g2998_1 gnd 2.080806f +C2 g2998_0 gnd 2.080806f +R1 g2998_1 g2998_0 2.224404 +.ends + +.subckt netg3556 g3556_0 g3556_1 gnd +C1 g3556_0 gnd 2.080806f +C2 g3556_1 gnd 2.080806f +R1 g3556_0 g3556_1 2.224404 +.ends + +.subckt netg3365 g3365_0 g3365_1 gnd +C1 g3365_0 gnd 2.080806f +C2 g3365_1 gnd 2.080806f +R1 g3365_0 g3365_1 2.224404 +.ends + +.subckt netg5511 g5511_0 g5511_1 gnd +C1 g5511_0 gnd 2.080806f +C2 g5511_1 gnd 2.080806f +R1 g5511_0 g5511_1 2.224404 +.ends + +.subckt netg1251 g1251_0 g1251_1 gnd +C1 g1251_0 gnd 2.080806f +C2 g1251_1 gnd 2.080806f +R1 g1251_1 g1251_0 2.224404 +.ends + +.subckt netg4110 g4110_1 g4110_0 gnd +C1 g4110_1 gnd 2.080806f +C2 g4110_0 gnd 2.080806f +R1 g4110_1 g4110_0 2.224404 +.ends + +.subckt netg6649 g6649_1 g6649_0 gnd +C1 g6649_1 gnd 2.080806f +C2 g6649_0 gnd 2.080806f +R1 g6649_0 g6649_1 2.224404 +.ends + +.subckt netg5674 g5674_0 g5674_2 gnd +C1 g5674_0 gnd 2.080806f +C2 g5674_2 gnd 2.080806f +R1 g5674_0 g5674_2 2.224404 +.ends + +.subckt netg6150 g6150_1 g6150_0 gnd +C1 g6150_1 gnd 2.080806f +C2 g6150_0 gnd 2.080806f +R1 g6150_0 g6150_1 2.224404 +.ends + +.subckt netg7340 g7340_0 g7340_1 gnd +C1 g7340_0 gnd 2.080806f +C2 g7340_1 gnd 2.080806f +R1 g7340_0 g7340_1 2.224404 +.ends + +.subckt netg1033 g1033_2 g1033_1 gnd +C1 g1033_2 gnd 2.080806f +C2 g1033_1 gnd 2.080806f +R1 g1033_2 g1033_1 2.224404 +.ends + +.subckt netg6208 g6208_1 g6208_0 gnd +C1 g6208_1 gnd 2.080806f +C2 g6208_0 gnd 2.080806f +R1 g6208_0 g6208_1 2.224404 +.ends + +.subckt netg5969 g5969_1 g5969_0 gnd +C1 g5969_1 gnd 2.080806f +C2 g5969_0 gnd 2.080806f +R1 g5969_0 g5969_1 2.224404 +.ends + +.subckt netg6662 g6662_0 g6662_1 gnd +C1 g6662_0 gnd 2.080806f +C2 g6662_1 gnd 2.080806f +R1 g6662_1 g6662_0 2.224404 +.ends + +.subckt netg4132 g4132_1 g4132_0 gnd +C1 g4132_1 gnd 2.080806f +C2 g4132_0 gnd 2.080806f +R1 g4132_1 g4132_0 2.224404 +.ends + +.subckt netg5417 g5417_1 g5417_0 gnd +C1 g5417_1 gnd 2.080806f +C2 g5417_0 gnd 2.080806f +R1 g5417_1 g5417_0 2.224404 +.ends + +.subckt netg3109 g3109_0 g3109_1 gnd +C1 g3109_0 gnd 2.080806f +C2 g3109_1 gnd 2.080806f +R1 g3109_0 g3109_1 2.224404 +.ends + +.subckt netg2815 g2815_0 g2815_1 gnd +C1 g2815_0 gnd 2.080806f +C2 g2815_1 gnd 2.080806f +R1 g2815_0 g2815_1 2.224404 +.ends + +.subckt netg7045 g7045_0 g7045_1 gnd +C1 g7045_0 gnd 2.080806f +C2 g7045_1 gnd 2.080806f +R1 g7045_1 g7045_0 2.224404 +.ends + +.subckt netg3974 g3974_0 g3974_1 gnd +C1 g3974_0 gnd 2.080806f +C2 g3974_1 gnd 2.080806f +R1 g3974_1 g3974_0 2.224404 +.ends + +.subckt netx481 x481_0 x481_1 gnd +C1 x481_0 gnd 2.080806f +C2 x481_1 gnd 2.080806f +R1 x481_1 x481_0 2.224404 +.ends + +.subckt netx412 x412_1 x412_0 gnd +C1 x412_1 gnd 2.080806f +C2 x412_0 gnd 2.080806f +R1 x412_1 x412_0 2.224404 +.ends + +.subckt netg6624 g6624_1 g6624_0 gnd +C1 g6624_1 gnd 2.080806f +C2 g6624_0 gnd 2.080806f +R1 g6624_0 g6624_1 2.224404 +.ends + +.subckt netg5392 g5392_1 g5392_0 gnd +C1 g5392_1 gnd 2.080806f +C2 g5392_0 gnd 2.080806f +R1 g5392_0 g5392_1 2.224404 +.ends + +.subckt netg3477 g3477_1 g3477_0 gnd +C1 g3477_1 gnd 2.080806f +C2 g3477_0 gnd 2.080806f +R1 g3477_1 g3477_0 2.224404 +.ends + +.subckt netg1230 g1230_1 g1230_0 gnd +C1 g1230_1 gnd 2.080806f +C2 g1230_0 gnd 2.080806f +R1 g1230_0 g1230_1 2.224404 +.ends + +.subckt netg2944 g2944_0 g2944_1 gnd +C1 g2944_0 gnd 2.080806f +C2 g2944_1 gnd 2.080806f +R1 g2944_0 g2944_1 2.224404 +.ends + +.subckt netg4334 g4334_1 g4334_0 gnd +C1 g4334_1 gnd 2.080806f +C2 g4334_0 gnd 2.080806f +R1 g4334_0 g4334_1 2.224404 +.ends + +.subckt netg3682 g3682_0 g3682_1 gnd +C1 g3682_0 gnd 2.080806f +C2 g3682_1 gnd 2.080806f +R1 g3682_0 g3682_1 2.224404 +.ends + +.subckt netg7396 g7396_1 g7396_0 gnd +C1 g7396_1 gnd 2.080806f +C2 g7396_0 gnd 2.080806f +R1 g7396_1 g7396_0 2.224404 +.ends + +.subckt netg1480 g1480_0 g1480_1 gnd +C1 g1480_0 gnd 2.080806f +C2 g1480_1 gnd 2.080806f +R1 g1480_0 g1480_1 2.224404 +.ends + +.subckt netg2780 g2780_1 g2780_0 gnd +C1 g2780_1 gnd 2.080806f +C2 g2780_0 gnd 2.080806f +R1 g2780_0 g2780_1 2.224404 +.ends + +.subckt netg4299 g4299_1 g4299_0 gnd +C1 g4299_1 gnd 2.080806f +C2 g4299_0 gnd 2.080806f +R1 g4299_1 g4299_0 2.224404 +.ends + +.subckt netg7186 g7186_1 g7186_0 gnd +C1 g7186_1 gnd 2.080806f +C2 g7186_0 gnd 2.080806f +R1 g7186_0 g7186_1 2.224404 +.ends + +.subckt netg4308 g4308_1 g4308_0 gnd +C1 g4308_1 gnd 2.080806f +C2 g4308_0 gnd 2.080806f +R1 g4308_0 g4308_1 2.224404 +.ends + +.subckt netg2707 g2707_0 g2707_2 gnd +C1 g2707_0 gnd 2.080806f +C2 g2707_2 gnd 2.080806f +R1 g2707_2 g2707_0 2.224404 +.ends + +.subckt netg7272 g7272_0 g7272_1 gnd +C1 g7272_0 gnd 2.080806f +C2 g7272_1 gnd 2.080806f +R1 g7272_1 g7272_0 2.224404 +.ends + +.subckt netg6873 g6873_1 g6873_0 gnd +C1 g6873_1 gnd 2.080806f +C2 g6873_0 gnd 2.080806f +R1 g6873_0 g6873_1 2.224404 +.ends + +.subckt netg5247 g5247_1 g5247_0 gnd +C1 g5247_1 gnd 2.080806f +C2 g5247_0 gnd 2.080806f +R1 g5247_1 g5247_0 2.224404 +.ends + +.subckt netg5856 g5856_0 g5856_1 gnd +C1 g5856_0 gnd 2.080806f +C2 g5856_1 gnd 2.080806f +R1 g5856_1 g5856_0 2.224404 +.ends + +.subckt netg2941 g2941_0 g2941_1 gnd +C1 g2941_0 gnd 2.080806f +C2 g2941_1 gnd 2.080806f +R1 g2941_1 g2941_0 2.224404 +.ends + +.subckt netg5997 g5997_1 g5997_0 gnd +C1 g5997_1 gnd 2.080806f +C2 g5997_0 gnd 2.080806f +R1 g5997_0 g5997_1 2.224404 +.ends + +.subckt netg6040 g6040_0 g6040_1 gnd +C1 g6040_0 gnd 2.080806f +C2 g6040_1 gnd 2.080806f +R1 g6040_1 g6040_0 2.224404 +.ends + +.subckt netg1261 g1261_1 g1261_0 gnd +C1 g1261_1 gnd 2.080806f +C2 g1261_0 gnd 2.080806f +R1 g1261_0 g1261_1 2.224404 +.ends + +.subckt netg3555 g3555_1 g3555_0 gnd +C1 g3555_1 gnd 2.080806f +C2 g3555_0 gnd 2.080806f +R1 g3555_1 g3555_0 2.224404 +.ends + +.subckt netg6292 g6292_1 g6292_0 gnd +C1 g6292_1 gnd 2.080806f +C2 g6292_0 gnd 2.080806f +R1 g6292_1 g6292_0 2.224404 +.ends + +.subckt netg5684 g5684_1 g5684_0 gnd +C1 g5684_1 gnd 2.080806f +C2 g5684_0 gnd 2.080806f +R1 g5684_0 g5684_1 2.224404 +.ends + +.subckt netg4288 g4288_0 g4288_1 gnd +C1 g4288_0 gnd 2.080806f +C2 g4288_1 gnd 2.080806f +R1 g4288_0 g4288_1 2.224404 +.ends + +.subckt netg7175 g7175_1 g7175_0 gnd +C1 g7175_1 gnd 2.080806f +C2 g7175_0 gnd 2.080806f +R1 g7175_0 g7175_1 2.224404 +.ends + +.subckt netg4618 g4618_0 g4618_1 gnd +C1 g4618_0 gnd 2.080806f +C2 g4618_1 gnd 2.080806f +R1 g4618_0 g4618_1 2.224404 +.ends + +.subckt netg7403 g7403_1 g7403_0 gnd +C1 g7403_1 gnd 2.080806f +C2 g7403_0 gnd 2.080806f +R1 g7403_1 g7403_0 2.224404 +.ends + +.subckt netg4208 g4208_1 g4208_0 gnd +C1 g4208_1 gnd 2.080806f +C2 g4208_0 gnd 2.080806f +R1 g4208_0 g4208_1 2.224404 +.ends + +.subckt netg2644 g2644_2 g2644_1 gnd +C1 g2644_2 gnd 2.080806f +C2 g2644_1 gnd 2.080806f +R1 g2644_2 g2644_1 2.224404 +.ends + +.subckt netg4261 g4261_0 g4261_1 gnd +C1 g4261_0 gnd 2.080806f +C2 g4261_1 gnd 2.080806f +R1 g4261_0 g4261_1 2.224404 +.ends + +.subckt netg3438 g3438_2 g3438_1 gnd +C1 g3438_2 gnd 2.080806f +C2 g3438_1 gnd 2.080806f +R1 g3438_2 g3438_1 2.224404 +.ends + +.subckt netg7409 g7409_1 g7409_0 gnd +C1 g7409_1 gnd 2.080806f +C2 g7409_0 gnd 2.080806f +R1 g7409_0 g7409_1 2.224404 +.ends + +.subckt netg4234 g4234_0 g4234_1 gnd +C1 g4234_0 gnd 2.080806f +C2 g4234_1 gnd 2.080806f +R1 g4234_1 g4234_0 2.224404 +.ends + +.subckt netg1922 g1922_0 g1922_1 gnd +C1 g1922_0 gnd 2.080806f +C2 g1922_1 gnd 2.080806f +R1 g1922_1 g1922_0 2.224404 +.ends + +.subckt netg1254 g1254_0 g1254_1 gnd +C1 g1254_0 gnd 2.080806f +C2 g1254_1 gnd 2.080806f +R1 g1254_0 g1254_1 2.224404 +.ends + +.subckt netg4311 g4311_1 g4311_0 gnd +C1 g4311_1 gnd 2.080806f +C2 g4311_0 gnd 2.080806f +R1 g4311_1 g4311_0 2.224404 +.ends + +.subckt netg6082 g6082_1 g6082_0 gnd +C1 g6082_1 gnd 2.080806f +C2 g6082_0 gnd 2.080806f +R1 g6082_0 g6082_1 2.224404 +.ends + +.subckt netg3349 g3349_2 g3349_1 gnd +C1 g3349_2 gnd 2.080806f +C2 g3349_1 gnd 2.080806f +R1 g3349_1 g3349_2 2.224404 +.ends + +.subckt netg1893 g1893_1 g1893_0 gnd +C1 g1893_1 gnd 2.080806f +C2 g1893_0 gnd 2.080806f +R1 g1893_0 g1893_1 2.224404 +.ends + +.subckt netg6845 g6845_0 g6845_1 gnd +C1 g6845_0 gnd 2.080806f +C2 g6845_1 gnd 2.080806f +R1 g6845_1 g6845_0 2.224404 +.ends + +.subckt netg5788 g5788_1 g5788_0 gnd +C1 g5788_1 gnd 2.080806f +C2 g5788_0 gnd 2.080806f +R1 g5788_0 g5788_1 2.224404 +.ends + +.subckt netg6929 g6929_1 g6929_0 gnd +C1 g6929_1 gnd 2.080806f +C2 g6929_0 gnd 2.080806f +R1 g6929_1 g6929_0 2.224404 +.ends + +.subckt netg694 g694_1 g694_0 gnd +C1 g694_1 gnd 2.080806f +C2 g694_0 gnd 2.080806f +R1 g694_0 g694_1 2.224404 +.ends + +.subckt netg5071 g5071_2 g5071_0 gnd +C1 g5071_2 gnd 2.080806f +C2 g5071_0 gnd 2.080806f +R1 g5071_0 g5071_2 2.224404 +.ends + +.subckt netg4018 g4018_1 g4018_0 gnd +C1 g4018_1 gnd 2.080806f +C2 g4018_0 gnd 2.080806f +R1 g4018_0 g4018_1 2.224404 +.ends + +.subckt netg4398 g4398_1 g4398_0 gnd +C1 g4398_1 gnd 2.080806f +C2 g4398_0 gnd 2.080806f +R1 g4398_0 g4398_1 2.224404 +.ends + +.subckt netg6079 g6079_0 g6079_1 gnd +C1 g6079_0 gnd 2.080806f +C2 g6079_1 gnd 2.080806f +R1 g6079_1 g6079_0 2.224404 +.ends + +.subckt netg7277 g7277_0 g7277_1 gnd +C1 g7277_0 gnd 2.080806f +C2 g7277_1 gnd 2.080806f +R1 g7277_0 g7277_1 2.224404 +.ends + +.subckt netx52 x52_0 x52_1 gnd +C1 x52_0 gnd 2.080806f +C2 x52_1 gnd 2.080806f +R1 x52_0 x52_1 2.224404 +.ends + +.subckt netg1406 g1406_1 g1406_0 gnd +C1 g1406_1 gnd 2.080806f +C2 g1406_0 gnd 2.080806f +R1 g1406_0 g1406_1 2.224404 +.ends + +.subckt netg7439 g7439_1 g7439_0 gnd +C1 g7439_1 gnd 2.080806f +C2 g7439_0 gnd 2.080806f +R1 g7439_0 g7439_1 2.224404 +.ends + +.subckt netg6695 g6695_1 g6695_0 gnd +C1 g6695_1 gnd 2.080806f +C2 g6695_0 gnd 2.080806f +R1 g6695_0 g6695_1 2.224404 +.ends + +.subckt netg6490 g6490_1 g6490_0 gnd +C1 g6490_1 gnd 2.080806f +C2 g6490_0 gnd 2.080806f +R1 g6490_0 g6490_1 2.224404 +.ends + +.subckt netg690 g690_1 g690_0 gnd +C1 g690_1 gnd 2.080806f +C2 g690_0 gnd 2.080806f +R1 g690_1 g690_0 2.224404 +.ends + +.subckt netg6825 g6825_1 g6825_0 gnd +C1 g6825_1 gnd 2.080806f +C2 g6825_0 gnd 2.080806f +R1 g6825_0 g6825_1 2.224404 +.ends + +.subckt netg5119 g5119_1 g5119_0 gnd +C1 g5119_1 gnd 2.080806f +C2 g5119_0 gnd 2.080806f +R1 g5119_1 g5119_0 2.224404 +.ends + +.subckt netg7196 g7196_1 g7196_0 gnd +C1 g7196_1 gnd 2.080806f +C2 g7196_0 gnd 2.080806f +R1 g7196_1 g7196_0 2.224404 +.ends + +.subckt netg6404 g6404_1 g6404_0 gnd +C1 g6404_1 gnd 2.080806f +C2 g6404_0 gnd 2.080806f +R1 g6404_1 g6404_0 2.224404 +.ends + +.subckt netg5607 g5607_0 g5607_1 gnd +C1 g5607_0 gnd 2.080806f +C2 g5607_1 gnd 2.080806f +R1 g5607_0 g5607_1 2.224404 +.ends + +.subckt netg1377 g1377_1 g1377_0 gnd +C1 g1377_1 gnd 2.080806f +C2 g1377_0 gnd 2.080806f +R1 g1377_0 g1377_1 2.224404 +.ends + +.subckt netg4097 g4097_1 g4097_0 gnd +C1 g4097_1 gnd 2.080806f +C2 g4097_0 gnd 2.080806f +R1 g4097_1 g4097_0 2.224404 +.ends + +.subckt netg5321 g5321_1 g5321_0 gnd +C1 g5321_1 gnd 2.080806f +C2 g5321_0 gnd 2.080806f +R1 g5321_0 g5321_1 2.224404 +.ends + +.subckt netg3417 g3417_2 g3417_0 gnd +C1 g3417_2 gnd 2.080806f +C2 g3417_0 gnd 2.080806f +R1 g3417_0 g3417_2 2.224404 +.ends + +.subckt netg913 g913_1 g913_2 gnd +C1 g913_1 gnd 2.080806f +C2 g913_2 gnd 2.080806f +R1 g913_1 g913_2 2.224404 +.ends + +.subckt netg6461 g6461_0 g6461_1 gnd +C1 g6461_0 gnd 2.080806f +C2 g6461_1 gnd 2.080806f +R1 g6461_0 g6461_1 2.224404 +.ends + +.subckt netg2779 g2779_1 g2779_0 gnd +C1 g2779_1 gnd 2.080806f +C2 g2779_0 gnd 2.080806f +R1 g2779_0 g2779_1 2.224404 +.ends + +.subckt netg97 g97_0 g97_1 gnd +C1 g97_0 gnd 2.080806f +C2 g97_1 gnd 2.080806f +R1 g97_1 g97_0 2.224404 +.ends + +.subckt netg985 g985_0 g985_2 gnd +C1 g985_0 gnd 2.080806f +C2 g985_2 gnd 2.080806f +R1 g985_0 g985_2 2.224404 +.ends + +.subckt netg1259 g1259_0 g1259_1 gnd +C1 g1259_0 gnd 2.080806f +C2 g1259_1 gnd 2.080806f +R1 g1259_0 g1259_1 2.224404 +.ends + +.subckt netg3046 g3046_1 g3046_0 gnd +C1 g3046_1 gnd 2.080806f +C2 g3046_0 gnd 2.080806f +R1 g3046_1 g3046_0 2.224404 +.ends + +.subckt netg7389 g7389_0 g7389_1 gnd +C1 g7389_0 gnd 2.080806f +C2 g7389_1 gnd 2.080806f +R1 g7389_0 g7389_1 2.224404 +.ends + +.subckt netg1516 g1516_0 g1516_1 gnd +C1 g1516_0 gnd 2.080806f +C2 g1516_1 gnd 2.080806f +R1 g1516_1 g1516_0 2.224404 +.ends + +.subckt netg5367 g5367_0 g5367_1 gnd +C1 g5367_0 gnd 2.080806f +C2 g5367_1 gnd 2.080806f +R1 g5367_1 g5367_0 2.224404 +.ends + +.subckt netg7026 g7026_1 g7026_0 gnd +C1 g7026_1 gnd 2.080806f +C2 g7026_0 gnd 2.080806f +R1 g7026_1 g7026_0 2.224404 +.ends + +.subckt netg6579 g6579_1 g6579_0 gnd +C1 g6579_1 gnd 2.080806f +C2 g6579_0 gnd 2.080806f +R1 g6579_0 g6579_1 2.224404 +.ends + +.subckt netg5360 g5360_0 g5360_1 gnd +C1 g5360_0 gnd 2.080806f +C2 g5360_1 gnd 2.080806f +R1 g5360_0 g5360_1 2.224404 +.ends + +.subckt netg2477 g2477_2 g2477_1 gnd +C1 g2477_2 gnd 2.080806f +C2 g2477_1 gnd 2.080806f +R1 g2477_2 g2477_1 2.224404 +.ends + +.subckt netg7168 g7168_0 g7168_1 gnd +C1 g7168_0 gnd 2.080806f +C2 g7168_1 gnd 2.080806f +R1 g7168_1 g7168_0 2.224404 +.ends + +.subckt netg3892 g3892_1 g3892_0 gnd +C1 g3892_1 gnd 2.080806f +C2 g3892_0 gnd 2.080806f +R1 g3892_0 g3892_1 2.224404 +.ends + +.subckt netg4295 g4295_1 g4295_0 gnd +C1 g4295_1 gnd 2.080806f +C2 g4295_0 gnd 2.080806f +R1 g4295_0 g4295_1 2.224404 +.ends + +.subckt netg6365 g6365_1 g6365_0 gnd +C1 g6365_1 gnd 2.080806f +C2 g6365_0 gnd 2.080806f +R1 g6365_0 g6365_1 2.224404 +.ends + +.subckt netg6819 g6819_1 g6819_0 gnd +C1 g6819_1 gnd 2.080806f +C2 g6819_0 gnd 2.080806f +R1 g6819_0 g6819_1 2.224404 +.ends + +.subckt netg560 g560_1 g560_0 gnd +C1 g560_1 gnd 2.080806f +C2 g560_0 gnd 2.080806f +R1 g560_1 g560_0 2.224404 +.ends + +.subckt netg2783 g2783_0 g2783_1 gnd +C1 g2783_0 gnd 2.080806f +C2 g2783_1 gnd 2.080806f +R1 g2783_1 g2783_0 2.224404 +.ends + +.subckt netg5605 g5605_0 g5605_1 gnd +C1 g5605_0 gnd 2.080806f +C2 g5605_1 gnd 2.080806f +R1 g5605_1 g5605_0 2.224404 +.ends + +.subckt netg3412 g3412_0 g3412_1 gnd +C1 g3412_0 gnd 2.080806f +C2 g3412_1 gnd 2.080806f +R1 g3412_1 g3412_0 2.224404 +.ends + +.subckt netg3085 g3085_1 g3085_0 gnd +C1 g3085_1 gnd 2.080806f +C2 g3085_0 gnd 2.080806f +R1 g3085_1 g3085_0 2.224404 +.ends + +.subckt netg5961 g5961_0 g5961_1 gnd +C1 g5961_0 gnd 2.080806f +C2 g5961_1 gnd 2.080806f +R1 g5961_0 g5961_1 2.224404 +.ends + +.subckt netg1535 g1535_1 g1535_0 gnd +C1 g1535_1 gnd 2.080806f +C2 g1535_0 gnd 2.080806f +R1 g1535_1 g1535_0 2.224404 +.ends + +.subckt netg6967 g6967_2 g6967_1 gnd +C1 g6967_2 gnd 2.080806f +C2 g6967_1 gnd 2.080806f +R1 g6967_2 g6967_1 2.224404 +.ends + +.subckt netx401 x401_1 x401_0 gnd +C1 x401_1 gnd 2.080806f +C2 x401_0 gnd 2.080806f +R1 x401_0 x401_1 2.224404 +.ends + +.subckt netg4182 g4182_1 g4182_0 gnd +C1 g4182_1 gnd 2.080806f +C2 g4182_0 gnd 2.080806f +R1 g4182_1 g4182_0 2.224404 +.ends + +.subckt netg6888 g6888_1 g6888_0 gnd +C1 g6888_1 gnd 2.080806f +C2 g6888_0 gnd 2.080806f +R1 g6888_0 g6888_1 2.224404 +.ends + +.subckt netg3982 g3982_0 g3982_1 gnd +C1 g3982_0 gnd 2.080806f +C2 g3982_1 gnd 2.080806f +R1 g3982_1 g3982_0 2.224404 +.ends + +.subckt netg6672 g6672_1 g6672_0 gnd +C1 g6672_1 gnd 2.080806f +C2 g6672_0 gnd 2.080806f +R1 g6672_0 g6672_1 2.224404 +.ends + +.subckt netg4112 g4112_0 g4112_1 gnd +C1 g4112_0 gnd 2.080806f +C2 g4112_1 gnd 2.080806f +R1 g4112_0 g4112_1 2.224404 +.ends + +.subckt netg5874 g5874_1 g5874_0 gnd +C1 g5874_1 gnd 2.080806f +C2 g5874_0 gnd 2.080806f +R1 g5874_1 g5874_0 2.224404 +.ends + +.subckt netg5317 g5317_0 g5317_1 gnd +C1 g5317_0 gnd 2.080806f +C2 g5317_1 gnd 2.080806f +R1 g5317_1 g5317_0 2.224404 +.ends + +.subckt netg5181 g5181_1 g5181_0 gnd +C1 g5181_1 gnd 2.080806f +C2 g5181_0 gnd 2.080806f +R1 g5181_1 g5181_0 2.224404 +.ends + +.subckt netg5890 g5890_1 g5890_0 gnd +C1 g5890_1 gnd 2.080806f +C2 g5890_0 gnd 2.080806f +R1 g5890_1 g5890_0 2.224404 +.ends + +.subckt netg2221 g2221_0 g2221_1 gnd +C1 g2221_0 gnd 2.080806f +C2 g2221_1 gnd 2.080806f +R1 g2221_1 g2221_0 2.224404 +.ends + +.subckt netg2810 g2810_1 g2810_0 gnd +C1 g2810_1 gnd 2.080806f +C2 g2810_0 gnd 2.080806f +R1 g2810_1 g2810_0 2.224404 +.ends + +.subckt netg7214 g7214_0 g7214_1 gnd +C1 g7214_0 gnd 2.080806f +C2 g7214_1 gnd 2.080806f +R1 g7214_0 g7214_1 2.224404 +.ends + +.subckt netg5200 g5200_0 g5200_1 gnd +C1 g5200_0 gnd 2.080806f +C2 g5200_1 gnd 2.080806f +R1 g5200_0 g5200_1 2.224404 +.ends + +.subckt netg4202 g4202_0 g4202_1 gnd +C1 g4202_0 gnd 2.080806f +C2 g4202_1 gnd 2.080806f +R1 g4202_1 g4202_0 2.224404 +.ends + +.subckt netg6516 g6516_1 g6516_0 gnd +C1 g6516_1 gnd 2.080806f +C2 g6516_0 gnd 2.080806f +R1 g6516_1 g6516_0 2.224404 +.ends + +.subckt netg7395 g7395_1 g7395_0 gnd +C1 g7395_1 gnd 2.080806f +C2 g7395_0 gnd 2.080806f +R1 g7395_0 g7395_1 2.224404 +.ends + +.subckt netg3410 g3410_0 g3410_1 gnd +C1 g3410_0 gnd 2.080806f +C2 g3410_1 gnd 2.080806f +R1 g3410_0 g3410_1 2.224404 +.ends + +.subckt netg6469 g6469_0 g6469_1 gnd +C1 g6469_0 gnd 2.080806f +C2 g6469_1 gnd 2.080806f +R1 g6469_0 g6469_1 2.224404 +.ends + +.subckt netg4278 g4278_0 g4278_1 gnd +C1 g4278_0 gnd 2.080806f +C2 g4278_1 gnd 2.080806f +R1 g4278_0 g4278_1 2.224404 +.ends + +.subckt netg3895 g3895_0 g3895_1 gnd +C1 g3895_0 gnd 2.080806f +C2 g3895_1 gnd 2.080806f +R1 g3895_0 g3895_1 2.224404 +.ends + +.subckt netg6405 g6405_1 g6405_0 gnd +C1 g6405_1 gnd 2.080806f +C2 g6405_0 gnd 2.080806f +R1 g6405_0 g6405_1 2.224404 +.ends + +.subckt netg7299 g7299_1 g7299_0 gnd +C1 g7299_1 gnd 2.080806f +C2 g7299_0 gnd 2.080806f +R1 g7299_0 g7299_1 2.224404 +.ends + +.subckt netg6606 g6606_0 g6606_1 gnd +C1 g6606_0 gnd 2.080806f +C2 g6606_1 gnd 2.080806f +R1 g6606_0 g6606_1 2.224404 +.ends + +.subckt netg6609 g6609_0 g6609_1 gnd +C1 g6609_0 gnd 2.080806f +C2 g6609_1 gnd 2.080806f +R1 g6609_0 g6609_1 2.224404 +.ends + +.subckt netg6015 g6015_1 g6015_0 gnd +C1 g6015_1 gnd 2.080806f +C2 g6015_0 gnd 2.080806f +R1 g6015_1 g6015_0 2.224404 +.ends + +.subckt netg6999 g6999_0 g6999_1 gnd +C1 g6999_0 gnd 2.080806f +C2 g6999_1 gnd 2.080806f +R1 g6999_1 g6999_0 2.224404 +.ends + +.subckt netg1009 g1009_1 g1009_2 gnd +C1 g1009_1 gnd 2.080806f +C2 g1009_2 gnd 2.080806f +R1 g1009_1 g1009_2 2.224404 +.ends + +.subckt netg7192 g7192_0 g7192_1 gnd +C1 g7192_0 gnd 2.080806f +C2 g7192_1 gnd 2.080806f +R1 g7192_0 g7192_1 2.224404 +.ends + +.subckt netg2921 g2921_0 g2921_1 gnd +C1 g2921_0 gnd 2.080806f +C2 g2921_1 gnd 2.080806f +R1 g2921_1 g2921_0 2.224404 +.ends + +.subckt netg1003 g1003_1 g1003_2 gnd +C1 g1003_1 gnd 2.080806f +C2 g1003_2 gnd 2.080806f +R1 g1003_1 g1003_2 2.224404 +.ends + +.subckt netg4229 g4229_0 g4229_1 gnd +C1 g4229_0 gnd 2.080806f +C2 g4229_1 gnd 2.080806f +R1 g4229_0 g4229_1 2.224404 +.ends + +.subckt netg4150 g4150_0 g4150_1 gnd +C1 g4150_0 gnd 2.080806f +C2 g4150_1 gnd 2.080806f +R1 g4150_0 g4150_1 2.224404 +.ends + +.subckt netg4042 g4042_1 g4042_0 gnd +C1 g4042_1 gnd 2.080806f +C2 g4042_0 gnd 2.080806f +R1 g4042_0 g4042_1 2.224404 +.ends + +.subckt netg7064 g7064_1 g7064_0 gnd +C1 g7064_1 gnd 2.080806f +C2 g7064_0 gnd 2.080806f +R1 g7064_1 g7064_0 2.224404 +.ends + +.subckt netg6170 g6170_0 g6170_1 gnd +C1 g6170_0 gnd 2.080806f +C2 g6170_1 gnd 2.080806f +R1 g6170_1 g6170_0 2.224404 +.ends + +.subckt netx292 x292_1 x292_0 gnd +C1 x292_1 gnd 2.080806f +C2 x292_0 gnd 2.080806f +R1 x292_1 x292_0 2.224404 +.ends + +.subckt netg6656 g6656_1 g6656_0 gnd +C1 g6656_1 gnd 2.080806f +C2 g6656_0 gnd 2.080806f +R1 g6656_1 g6656_0 2.224404 +.ends + +.subckt netg7407 g7407_1 g7407_0 gnd +C1 g7407_1 gnd 2.080806f +C2 g7407_0 gnd 2.080806f +R1 g7407_0 g7407_1 2.224404 +.ends + +.subckt netg4432 g4432_0 g4432_1 gnd +C1 g4432_0 gnd 2.080806f +C2 g4432_1 gnd 2.080806f +R1 g4432_1 g4432_0 2.224404 +.ends + +.subckt netg4072 g4072_1 g4072_0 gnd +C1 g4072_1 gnd 2.080806f +C2 g4072_0 gnd 2.080806f +R1 g4072_1 g4072_0 2.224404 +.ends + +.subckt netg2951 g2951_0 g2951_1 gnd +C1 g2951_0 gnd 2.080806f +C2 g2951_1 gnd 2.080806f +R1 g2951_0 g2951_1 2.224404 +.ends + +.subckt netg4136 g4136_1 g4136_0 gnd +C1 g4136_1 gnd 2.080806f +C2 g4136_0 gnd 2.080806f +R1 g4136_0 g4136_1 2.224404 +.ends + +.subckt netg4049 g4049_1 g4049_0 gnd +C1 g4049_1 gnd 2.080806f +C2 g4049_0 gnd 2.080806f +R1 g4049_0 g4049_1 2.224404 +.ends + +.subckt netg3423 g3423_1 g3423_2 gnd +C1 g3423_1 gnd 2.080806f +C2 g3423_2 gnd 2.080806f +R1 g3423_1 g3423_2 2.224404 +.ends + +.subckt netg4276 g4276_1 g4276_0 gnd +C1 g4276_1 gnd 2.080806f +C2 g4276_0 gnd 2.080806f +R1 g4276_1 g4276_0 2.224404 +.ends + +.subckt netg3471 g3471_1 g3471_0 gnd +C1 g3471_1 gnd 2.080806f +C2 g3471_0 gnd 2.080806f +R1 g3471_1 g3471_0 2.224404 +.ends + +.subckt netg5470 g5470_0 g5470_1 gnd +C1 g5470_0 gnd 2.080806f +C2 g5470_1 gnd 2.080806f +R1 g5470_1 g5470_0 2.224404 +.ends + +.subckt netg3469 g3469_0 g3469_1 gnd +C1 g3469_0 gnd 2.080806f +C2 g3469_1 gnd 2.080806f +R1 g3469_1 g3469_0 2.224404 +.ends + +.subckt netg4316 g4316_0 g4316_1 gnd +C1 g4316_0 gnd 2.080806f +C2 g4316_1 gnd 2.080806f +R1 g4316_0 g4316_1 2.224404 +.ends + +.subckt netg6532 g6532_0 g6532_1 gnd +C1 g6532_0 gnd 2.080806f +C2 g6532_1 gnd 2.080806f +R1 g6532_1 g6532_0 2.224404 +.ends + +.subckt netg2704 g2704_1 g2704_2 gnd +C1 g2704_1 gnd 2.080806f +C2 g2704_2 gnd 2.080806f +R1 g2704_2 g2704_1 2.224404 +.ends + +.subckt netg6522 g6522_0 g6522_1 gnd +C1 g6522_0 gnd 2.080806f +C2 g6522_1 gnd 2.080806f +R1 g6522_0 g6522_1 2.224404 +.ends + +.subckt netg7102 g7102_0 g7102_1 gnd +C1 g7102_0 gnd 2.080806f +C2 g7102_1 gnd 2.080806f +R1 g7102_0 g7102_1 2.224404 +.ends + +.subckt netg6358 g6358_1 g6358_0 gnd +C1 g6358_1 gnd 2.080806f +C2 g6358_0 gnd 2.080806f +R1 g6358_0 g6358_1 2.224404 +.ends + +.subckt netg6072 g6072_1 g6072_0 gnd +C1 g6072_1 gnd 2.080806f +C2 g6072_0 gnd 2.080806f +R1 g6072_1 g6072_0 2.224404 +.ends + +.subckt netg6651 g6651_1 g6651_0 gnd +C1 g6651_1 gnd 2.080806f +C2 g6651_0 gnd 2.080806f +R1 g6651_1 g6651_0 2.224404 +.ends + +.subckt netg3345 g3345_0 g3345_1 gnd +C1 g3345_0 gnd 2.080806f +C2 g3345_1 gnd 2.080806f +R1 g3345_0 g3345_1 2.224404 +.ends + +.subckt netg6083 g6083_0 g6083_1 gnd +C1 g6083_0 gnd 2.080806f +C2 g6083_1 gnd 2.080806f +R1 g6083_0 g6083_1 2.224404 +.ends + +.subckt netg4304 g4304_1 g4304_0 gnd +C1 g4304_1 gnd 2.080806f +C2 g4304_0 gnd 2.080806f +R1 g4304_1 g4304_0 2.224404 +.ends + +.subckt netg4236 g4236_0 g4236_1 gnd +C1 g4236_0 gnd 2.080806f +C2 g4236_1 gnd 2.080806f +R1 g4236_1 g4236_0 2.224404 +.ends + +.subckt netg3534 g3534_0 g3534_1 gnd +C1 g3534_0 gnd 2.080806f +C2 g3534_1 gnd 2.080806f +R1 g3534_1 g3534_0 2.224404 +.ends + +.subckt netg4051 g4051_1 g4051_0 gnd +C1 g4051_1 gnd 2.080806f +C2 g4051_0 gnd 2.080806f +R1 g4051_1 g4051_0 2.224404 +.ends + +.subckt netg4104 g4104_0 g4104_1 gnd +C1 g4104_0 gnd 2.080806f +C2 g4104_1 gnd 2.080806f +R1 g4104_0 g4104_1 2.224404 +.ends + +.subckt netg7074 g7074_0 g7074_1 gnd +C1 g7074_0 gnd 2.080806f +C2 g7074_1 gnd 2.080806f +R1 g7074_1 g7074_0 2.224404 +.ends + +.subckt netg6415 g6415_0 g6415_1 gnd +C1 g6415_0 gnd 2.080806f +C2 g6415_1 gnd 2.080806f +R1 g6415_0 g6415_1 2.224404 +.ends + +.subckt netg3575 g3575_1 g3575_0 gnd +C1 g3575_1 gnd 2.080806f +C2 g3575_0 gnd 2.080806f +R1 g3575_1 g3575_0 2.224404 +.ends + +.subckt netg5765 g5765_1 g5765_0 gnd +C1 g5765_1 gnd 2.080806f +C2 g5765_0 gnd 2.080806f +R1 g5765_1 g5765_0 2.224404 +.ends + +.subckt netg7210 g7210_1 g7210_0 gnd +C1 g7210_1 gnd 2.080806f +C2 g7210_0 gnd 2.080806f +R1 g7210_1 g7210_0 2.224404 +.ends + +.subckt netg6582 g6582_1 g6582_0 gnd +C1 g6582_1 gnd 2.080806f +C2 g6582_0 gnd 2.080806f +R1 g6582_1 g6582_0 2.224404 +.ends + +.subckt netg4133 g4133_1 g4133_0 gnd +C1 g4133_1 gnd 2.080806f +C2 g4133_0 gnd 2.080806f +R1 g4133_0 g4133_1 2.224404 +.ends + +.subckt netg7219 g7219_2 g7219_0 gnd +C1 g7219_2 gnd 2.080806f +C2 g7219_0 gnd 2.080806f +R1 g7219_0 g7219_2 2.224404 +.ends + +.subckt netg6409 g6409_0 g6409_1 gnd +C1 g6409_0 gnd 2.080806f +C2 g6409_1 gnd 2.080806f +R1 g6409_0 g6409_1 2.224404 +.ends + +.subckt netg7081 g7081_1 g7081_0 gnd +C1 g7081_1 gnd 2.080806f +C2 g7081_0 gnd 2.080806f +R1 g7081_1 g7081_0 2.224404 +.ends + +.subckt netg5018 g5018_1 g5018_2 gnd +C1 g5018_1 gnd 2.080806f +C2 g5018_2 gnd 2.080806f +R1 g5018_2 g5018_1 2.224404 +.ends + +.subckt netx482 x482_0 x482_1 gnd +C1 x482_0 gnd 2.080806f +C2 x482_1 gnd 2.080806f +R1 x482_1 x482_0 2.224404 +.ends + +.subckt netg7123 g7123_1 g7123_0 gnd +C1 g7123_1 gnd 2.080806f +C2 g7123_0 gnd 2.080806f +R1 g7123_0 g7123_1 2.224404 +.ends + +.subckt netg3063 g3063_1 g3063_0 gnd +C1 g3063_1 gnd 2.080806f +C2 g3063_0 gnd 2.080806f +R1 g3063_0 g3063_1 2.224404 +.ends + +.subckt netg5667 g5667_0 g5667_1 gnd +C1 g5667_0 gnd 2.080806f +C2 g5667_1 gnd 2.080806f +R1 g5667_1 g5667_0 2.224404 +.ends + +.subckt netg2820 g2820_0 g2820_1 gnd +C1 g2820_0 gnd 2.080806f +C2 g2820_1 gnd 2.080806f +R1 g2820_0 g2820_1 2.224404 +.ends + +.subckt netg5466 g5466_0 g5466_1 gnd +C1 g5466_0 gnd 2.080806f +C2 g5466_1 gnd 2.080806f +R1 g5466_1 g5466_0 2.224404 +.ends + +.subckt netg2634 g2634_1 g2634_0 gnd +C1 g2634_1 gnd 2.080806f +C2 g2634_0 gnd 2.080806f +R1 g2634_1 g2634_0 2.224404 +.ends + +.subckt netg7127 g7127_0 g7127_1 gnd +C1 g7127_0 gnd 2.080806f +C2 g7127_1 gnd 2.080806f +R1 g7127_0 g7127_1 2.224404 +.ends + +.subckt netg4209 g4209_1 g4209_0 gnd +C1 g4209_1 gnd 2.080806f +C2 g4209_0 gnd 2.080806f +R1 g4209_0 g4209_1 2.224404 +.ends + +.subckt netg3898 g3898_1 g3898_0 gnd +C1 g3898_1 gnd 2.080806f +C2 g3898_0 gnd 2.080806f +R1 g3898_0 g3898_1 2.224404 +.ends + +.subckt netg5991 g5991_1 g5991_0 gnd +C1 g5991_1 gnd 2.080806f +C2 g5991_0 gnd 2.080806f +R1 g5991_0 g5991_1 2.224404 +.ends + +.subckt netg4277 g4277_1 g4277_0 gnd +C1 g4277_1 gnd 2.080806f +C2 g4277_0 gnd 2.080806f +R1 g4277_0 g4277_1 2.224404 +.ends + +.subckt netg4019 g4019_0 g4019_1 gnd +C1 g4019_0 gnd 2.080806f +C2 g4019_1 gnd 2.080806f +R1 g4019_1 g4019_0 2.224404 +.ends + +.subckt netg5525 g5525_1 g5525_0 gnd +C1 g5525_1 gnd 2.080806f +C2 g5525_0 gnd 2.080806f +R1 g5525_0 g5525_1 2.224404 +.ends + +.subckt netg4059 g4059_0 g4059_1 gnd +C1 g4059_0 gnd 2.080806f +C2 g4059_1 gnd 2.080806f +R1 g4059_0 g4059_1 2.224404 +.ends + +.subckt netg2765 g2765_0 g2765_1 gnd +C1 g2765_0 gnd 2.080806f +C2 g2765_1 gnd 2.080806f +R1 g2765_0 g2765_1 2.224404 +.ends + +.subckt netg6926 g6926_1 g6926_0 gnd +C1 g6926_1 gnd 2.080806f +C2 g6926_0 gnd 2.080806f +R1 g6926_0 g6926_1 2.224404 +.ends + +.subckt netg4038 g4038_1 g4038_0 gnd +C1 g4038_1 gnd 2.080806f +C2 g4038_0 gnd 2.080806f +R1 g4038_0 g4038_1 2.224404 +.ends + +.subckt netg6536 g6536_0 g6536_1 gnd +C1 g6536_0 gnd 2.080806f +C2 g6536_1 gnd 2.080806f +R1 g6536_0 g6536_1 2.224404 +.ends + +.subckt netg1509 g1509_1 g1509_0 gnd +C1 g1509_1 gnd 2.080806f +C2 g1509_0 gnd 2.080806f +R1 g1509_1 g1509_0 2.224404 +.ends + +.subckt netg6055 g6055_0 g6055_1 gnd +C1 g6055_0 gnd 2.080806f +C2 g6055_1 gnd 2.080806f +R1 g6055_1 g6055_0 2.224404 +.ends + +.subckt netg3492 g3492_0 g3492_1 gnd +C1 g3492_0 gnd 2.080806f +C2 g3492_1 gnd 2.080806f +R1 g3492_1 g3492_0 2.224404 +.ends + +.subckt netg2915 g2915_1 g2915_0 gnd +C1 g2915_1 gnd 2.080806f +C2 g2915_0 gnd 2.080806f +R1 g2915_0 g2915_1 2.224404 +.ends + +.subckt netg6115 g6115_1 g6115_0 gnd +C1 g6115_1 gnd 2.080806f +C2 g6115_0 gnd 2.080806f +R1 g6115_0 g6115_1 2.224404 +.ends + +.subckt netg2830 g2830_1 g2830_0 gnd +C1 g2830_1 gnd 2.080806f +C2 g2830_0 gnd 2.080806f +R1 g2830_1 g2830_0 2.224404 +.ends + +.subckt netg6211 g6211_1 g6211_0 gnd +C1 g6211_1 gnd 2.080806f +C2 g6211_0 gnd 2.080806f +R1 g6211_0 g6211_1 2.224404 +.ends + +.subckt netg5428 g5428_1 g5428_0 gnd +C1 g5428_1 gnd 2.080806f +C2 g5428_0 gnd 2.080806f +R1 g5428_0 g5428_1 2.224404 +.ends + +.subckt netg6165 g6165_1 g6165_0 gnd +C1 g6165_1 gnd 2.080806f +C2 g6165_0 gnd 2.080806f +R1 g6165_0 g6165_1 2.224404 +.ends + +.subckt netg1477 g1477_1 g1477_0 gnd +C1 g1477_1 gnd 2.080806f +C2 g1477_0 gnd 2.080806f +R1 g1477_0 g1477_1 2.224404 +.ends + +.subckt netg7211 g7211_1 g7211_0 gnd +C1 g7211_1 gnd 2.080806f +C2 g7211_0 gnd 2.080806f +R1 g7211_0 g7211_1 2.224404 +.ends + +.subckt netg6316 g6316_0 g6316_1 gnd +C1 g6316_0 gnd 2.080806f +C2 g6316_1 gnd 2.080806f +R1 g6316_0 g6316_1 2.224404 +.ends + +.subckt netg4052 g4052_1 g4052_0 gnd +C1 g4052_1 gnd 2.080806f +C2 g4052_0 gnd 2.080806f +R1 g4052_0 g4052_1 2.224404 +.ends + +.subckt netg4176 g4176_0 g4176_1 gnd +C1 g4176_0 gnd 2.080806f +C2 g4176_1 gnd 2.080806f +R1 g4176_0 g4176_1 2.224404 +.ends + +.subckt netg2225 g2225_0 g2225_1 gnd +C1 g2225_0 gnd 2.080806f +C2 g2225_1 gnd 2.080806f +R1 g2225_1 g2225_0 2.224404 +.ends + +.subckt netg7241 g7241_1 g7241_0 gnd +C1 g7241_1 gnd 2.080806f +C2 g7241_0 gnd 2.080806f +R1 g7241_0 g7241_1 2.224404 +.ends + +.subckt netg6185 g6185_0 g6185_1 gnd +C1 g6185_0 gnd 2.080806f +C2 g6185_1 gnd 2.080806f +R1 g6185_1 g6185_0 2.224404 +.ends + +.subckt netg6718 g6718_0 g6718_1 gnd +C1 g6718_0 gnd 2.080806f +C2 g6718_1 gnd 2.080806f +R1 g6718_0 g6718_1 2.224404 +.ends + +.subckt netg2504 g2504_0 g2504_2 gnd +C1 g2504_0 gnd 2.080806f +C2 g2504_2 gnd 2.080806f +R1 g2504_2 g2504_0 2.224404 +.ends + +.subckt netg4071 g4071_0 g4071_1 gnd +C1 g4071_0 gnd 2.080806f +C2 g4071_1 gnd 2.080806f +R1 g4071_1 g4071_0 2.224404 +.ends + +.subckt netg7101 g7101_0 g7101_1 gnd +C1 g7101_0 gnd 2.080806f +C2 g7101_1 gnd 2.080806f +R1 g7101_0 g7101_1 2.224404 +.ends + +.subckt netg6935 g6935_0 g6935_1 gnd +C1 g6935_0 gnd 2.080806f +C2 g6935_1 gnd 2.080806f +R1 g6935_0 g6935_1 2.224404 +.ends + +.subckt netg6875 g6875_0 g6875_1 gnd +C1 g6875_0 gnd 2.080806f +C2 g6875_1 gnd 2.080806f +R1 g6875_1 g6875_0 2.224404 +.ends + +.subckt netg5972 g5972_0 g5972_1 gnd +C1 g5972_0 gnd 2.080806f +C2 g5972_1 gnd 2.080806f +R1 g5972_0 g5972_1 2.224404 +.ends + +.subckt netg5142 g5142_1 g5142_0 gnd +C1 g5142_1 gnd 2.080806f +C2 g5142_0 gnd 2.080806f +R1 g5142_1 g5142_0 2.224404 +.ends + +.subckt netg4333 g4333_0 g4333_1 gnd +C1 g4333_0 gnd 2.080806f +C2 g4333_1 gnd 2.080806f +R1 g4333_1 g4333_0 2.224404 +.ends + +.subckt netg4128 g4128_0 g4128_1 gnd +C1 g4128_0 gnd 2.080806f +C2 g4128_1 gnd 2.080806f +R1 g4128_1 g4128_0 2.224404 +.ends + +.subckt netg2534 g2534_2 g2534_1 gnd +C1 g2534_2 gnd 2.080806f +C2 g2534_1 gnd 2.080806f +R1 g2534_1 g2534_2 2.224404 +.ends + +.subckt netg6245 g6245_0 g6245_1 gnd +C1 g6245_0 gnd 2.080806f +C2 g6245_1 gnd 2.080806f +R1 g6245_1 g6245_0 2.224404 +.ends + +.subckt netg4418 g4418_1 g4418_0 gnd +C1 g4418_1 gnd 2.080806f +C2 g4418_0 gnd 2.080806f +R1 g4418_0 g4418_1 2.224404 +.ends + +.subckt netg5619 g5619_2 g5619_1 gnd +C1 g5619_2 gnd 2.080806f +C2 g5619_1 gnd 2.080806f +R1 g5619_2 g5619_1 2.224404 +.ends + +.subckt netg5794 g5794_1 g5794_0 gnd +C1 g5794_1 gnd 2.080806f +C2 g5794_0 gnd 2.080806f +R1 g5794_1 g5794_0 2.224404 +.ends + +.subckt netg1923 g1923_1 g1923_0 gnd +C1 g1923_1 gnd 2.080806f +C2 g1923_0 gnd 2.080806f +R1 g1923_0 g1923_1 2.224404 +.ends + +.subckt netg7263 g7263_0 g7263_1 gnd +C1 g7263_0 gnd 2.080806f +C2 g7263_1 gnd 2.080806f +R1 g7263_1 g7263_0 2.224404 +.ends + +.subckt netg5279 g5279_1 g5279_0 gnd +C1 g5279_1 gnd 2.080806f +C2 g5279_0 gnd 2.080806f +R1 g5279_1 g5279_0 2.224404 +.ends + +.subckt netg3913 g3913_0 g3913_1 gnd +C1 g3913_0 gnd 2.080806f +C2 g3913_1 gnd 2.080806f +R1 g3913_1 g3913_0 2.224404 +.ends + +.subckt netg5740 g5740_0 g5740_2 gnd +C1 g5740_0 gnd 2.080806f +C2 g5740_2 gnd 2.080806f +R1 g5740_2 g5740_0 2.224404 +.ends + +.subckt netg6171 g6171_0 g6171_1 gnd +C1 g6171_0 gnd 2.080806f +C2 g6171_1 gnd 2.080806f +R1 g6171_0 g6171_1 2.224404 +.ends + +.subckt netg5430 g5430_0 g5430_1 gnd +C1 g5430_0 gnd 2.080806f +C2 g5430_1 gnd 2.080806f +R1 g5430_0 g5430_1 2.224404 +.ends + +.subckt netg1393 g1393_1 g1393_0 gnd +C1 g1393_1 gnd 2.080806f +C2 g1393_0 gnd 2.080806f +R1 g1393_1 g1393_0 2.224404 +.ends + +.subckt netg2359 g2359_2 g2359_1 gnd +C1 g2359_2 gnd 2.080806f +C2 g2359_1 gnd 2.080806f +R1 g2359_1 g2359_2 2.224404 +.ends + +.subckt netg892 g892_1 g892_2 gnd +C1 g892_1 gnd 2.080806f +C2 g892_2 gnd 2.080806f +R1 g892_2 g892_1 2.224404 +.ends + +.subckt netg3003 g3003_0 g3003_1 gnd +C1 g3003_0 gnd 2.080806f +C2 g3003_1 gnd 2.080806f +R1 g3003_1 g3003_0 2.224404 +.ends + +.subckt netg5993 g5993_1 g5993_0 gnd +C1 g5993_1 gnd 2.080806f +C2 g5993_0 gnd 2.080806f +R1 g5993_0 g5993_1 2.224404 +.ends + +.subckt netg7218 g7218_1 g7218_0 gnd +C1 g7218_1 gnd 2.080806f +C2 g7218_0 gnd 2.080806f +R1 g7218_0 g7218_1 2.224404 +.ends + +.subckt netg1405 g1405_0 g1405_1 gnd +C1 g1405_0 gnd 2.080806f +C2 g1405_1 gnd 2.080806f +R1 g1405_0 g1405_1 2.224404 +.ends + +.subckt netg5916 g5916_1 g5916_0 gnd +C1 g5916_1 gnd 2.080806f +C2 g5916_0 gnd 2.080806f +R1 g5916_0 g5916_1 2.224404 +.ends + +.subckt netg6312 g6312_1 g6312_0 gnd +C1 g6312_1 gnd 2.080806f +C2 g6312_0 gnd 2.080806f +R1 g6312_0 g6312_1 2.224404 +.ends + +.subckt netg4665 g4665_1 g4665_0 gnd +C1 g4665_1 gnd 2.080806f +C2 g4665_0 gnd 2.080806f +R1 g4665_0 g4665_1 2.224404 +.ends + +.subckt netg3702 g3702_2 g3702_1 gnd +C1 g3702_2 gnd 2.080806f +C2 g3702_1 gnd 2.080806f +R1 g3702_1 g3702_2 2.224404 +.ends + +.subckt netg4141 g4141_0 g4141_1 gnd +C1 g4141_0 gnd 2.080806f +C2 g4141_1 gnd 2.080806f +R1 g4141_1 g4141_0 2.224404 +.ends + +.subckt netg6190 g6190_1 g6190_0 gnd +C1 g6190_1 gnd 2.080806f +C2 g6190_0 gnd 2.080806f +R1 g6190_1 g6190_0 2.224404 +.ends + +.subckt netg2796 g2796_0 g2796_1 gnd +C1 g2796_0 gnd 2.080806f +C2 g2796_1 gnd 2.080806f +R1 g2796_0 g2796_1 2.224404 +.ends + +.subckt netg1358 g1358_0 g1358_1 gnd +C1 g1358_0 gnd 2.080806f +C2 g1358_1 gnd 2.080806f +R1 g1358_1 g1358_0 2.224404 +.ends + +.subckt netg6974 g6974_1 g6974_0 gnd +C1 g6974_1 gnd 2.080806f +C2 g6974_0 gnd 2.080806f +R1 g6974_0 g6974_1 2.224404 +.ends + +.subckt netg3051 g3051_1 g3051_0 gnd +C1 g3051_1 gnd 2.080806f +C2 g3051_0 gnd 2.080806f +R1 g3051_1 g3051_0 2.224404 +.ends + +.subckt netg6889 g6889_1 g6889_0 gnd +C1 g6889_1 gnd 2.080806f +C2 g6889_0 gnd 2.080806f +R1 g6889_0 g6889_1 2.224404 +.ends + +.subckt netg4253 g4253_1 g4253_0 gnd +C1 g4253_1 gnd 2.080806f +C2 g4253_0 gnd 2.080806f +R1 g4253_1 g4253_0 2.224404 +.ends + +.subckt netg3981 g3981_0 g3981_1 gnd +C1 g3981_0 gnd 2.080806f +C2 g3981_1 gnd 2.080806f +R1 g3981_1 g3981_0 2.224404 +.ends + +.subckt netg2710 g2710_2 g2710_0 gnd +C1 g2710_2 gnd 2.080806f +C2 g2710_0 gnd 2.080806f +R1 g2710_0 g2710_2 2.224404 +.ends + +.subckt netg6972 g6972_1 g6972_0 gnd +C1 g6972_1 gnd 2.080806f +C2 g6972_0 gnd 2.080806f +R1 g6972_1 g6972_0 2.224404 +.ends + +.subckt netg6158 g6158_0 g6158_2 gnd +C1 g6158_0 gnd 2.080806f +C2 g6158_2 gnd 2.080806f +R1 g6158_0 g6158_2 2.224404 +.ends + +.subckt netg1894 g1894_1 g1894_0 gnd +C1 g1894_1 gnd 2.080806f +C2 g1894_0 gnd 2.080806f +R1 g1894_0 g1894_1 2.224404 +.ends + +.subckt netg1960 g1960_0 g1960_1 gnd +C1 g1960_0 gnd 2.080806f +C2 g1960_1 gnd 2.080806f +R1 g1960_0 g1960_1 2.224404 +.ends + +.subckt netg1176 g1176_1 g1176_0 gnd +C1 g1176_1 gnd 2.080806f +C2 g1176_0 gnd 2.080806f +R1 g1176_0 g1176_1 2.224404 +.ends + +.subckt netg6065 g6065_1 g6065_0 gnd +C1 g6065_1 gnd 2.080806f +C2 g6065_0 gnd 2.080806f +R1 g6065_1 g6065_0 2.224404 +.ends + +.subckt netg6963 g6963_1 g6963_0 gnd +C1 g6963_1 gnd 2.080806f +C2 g6963_0 gnd 2.080806f +R1 g6963_0 g6963_1 2.224404 +.ends + +.subckt netg7023 g7023_0 g7023_1 gnd +C1 g7023_0 gnd 2.080806f +C2 g7023_1 gnd 2.080806f +R1 g7023_1 g7023_0 2.224404 +.ends + +.subckt netx391 x391_0 x391_1 gnd +C1 x391_0 gnd 2.080806f +C2 x391_1 gnd 2.080806f +R1 x391_1 x391_0 2.224404 +.ends + +.subckt netg2356 g2356_2 g2356_1 gnd +C1 g2356_2 gnd 2.080806f +C2 g2356_1 gnd 2.080806f +R1 g2356_2 g2356_1 2.224404 +.ends + +.subckt netg1129 g1129_1 g1129_0 gnd +C1 g1129_1 gnd 2.080806f +C2 g1129_0 gnd 2.080806f +R1 g1129_0 g1129_1 2.224404 +.ends + +.subckt netg6383 g6383_1 g6383_0 gnd +C1 g6383_1 gnd 2.080806f +C2 g6383_0 gnd 2.080806f +R1 g6383_1 g6383_0 2.224404 +.ends + +.subckt netg2932 g2932_0 g2932_1 gnd +C1 g2932_0 gnd 2.080806f +C2 g2932_1 gnd 2.080806f +R1 g2932_0 g2932_1 2.224404 +.ends + +.subckt netg7334 g7334_1 g7334_0 gnd +C1 g7334_1 gnd 2.080806f +C2 g7334_0 gnd 2.080806f +R1 g7334_0 g7334_1 2.224404 +.ends + +.subckt netg6277 g6277_1 g6277_0 gnd +C1 g6277_1 gnd 2.080806f +C2 g6277_0 gnd 2.080806f +R1 g6277_0 g6277_1 2.224404 +.ends + +.subckt netg3533 g3533_1 g3533_0 gnd +C1 g3533_1 gnd 2.080806f +C2 g3533_0 gnd 2.080806f +R1 g3533_0 g3533_1 2.224404 +.ends + +.subckt netg5482 g5482_1 g5482_0 gnd +C1 g5482_1 gnd 2.080806f +C2 g5482_0 gnd 2.080806f +R1 g5482_0 g5482_1 2.224404 +.ends + +.subckt netg3973 g3973_0 g3973_1 gnd +C1 g3973_0 gnd 2.080806f +C2 g3973_1 gnd 2.080806f +R1 g3973_0 g3973_1 2.224404 +.ends + +.subckt netg7438 g7438_0 g7438_1 gnd +C1 g7438_0 gnd 2.080806f +C2 g7438_1 gnd 2.080806f +R1 g7438_0 g7438_1 2.224404 +.ends + +.subckt netg6418 g6418_1 g6418_0 gnd +C1 g6418_1 gnd 2.080806f +C2 g6418_0 gnd 2.080806f +R1 g6418_0 g6418_1 2.224404 +.ends + +.subckt netg7427 g7427_1 g7427_0 gnd +C1 g7427_1 gnd 2.080806f +C2 g7427_0 gnd 2.080806f +R1 g7427_0 g7427_1 2.224404 +.ends + +.subckt netg7410 g7410_0 g7410_1 gnd +C1 g7410_0 gnd 2.080806f +C2 g7410_1 gnd 2.080806f +R1 g7410_1 g7410_0 2.224404 +.ends + +.subckt netg4317 g4317_0 g4317_1 gnd +C1 g4317_0 gnd 2.080806f +C2 g4317_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4317_0 1 2.224404 +R2 1 g4317_1 2.224404 +.ends + +.subckt netg3499 g3499_1 g3499_0 gnd +C1 g3499_1 gnd 2.080806f +C2 g3499_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3499_0 2.224404 +R2 g3499_1 1 2.224404 +.ends + +.subckt netg6519 g6519_0 g6519_1 gnd +C1 g6519_0 gnd 2.080806f +C2 g6519_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6519_0 1 2.224404 +R2 1 g6519_1 2.224404 +.ends + +.subckt netg2770 g2770_1 g2770_0 gnd +C1 g2770_1 gnd 2.080806f +C2 g2770_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2770_0 2.224404 +R2 g2770_1 1 2.224404 +.ends + +.subckt netg3896 g3896_1 g3896_0 gnd +C1 g3896_1 gnd 2.080806f +C2 g3896_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3896_0 1 2.224404 +R2 1 g3896_1 2.224404 +.ends + +.subckt netg1385 g1385_1 g1385_0 gnd +C1 g1385_1 gnd 2.080806f +C2 g1385_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1385_0 1 2.224404 +R2 g1385_1 1 2.224404 +.ends + +.subckt netg4175 g4175_1 g4175_0 gnd +C1 g4175_1 gnd 2.080806f +C2 g4175_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4175_0 2.224404 +R2 g4175_1 1 2.224404 +.ends + +.subckt netg7116 g7116_2 g7116_1 g7116_0 gnd +C1 g7116_2 gnd 2.080806f +C2 g7116_1 gnd 2.080806f +C3 g7116_0 gnd 2.080806f +R1 g7116_0 g7116_2 2.224404 +R2 g7116_2 g7116_1 2.224404 +.ends + +.subckt netg3916 g3916_1 g3916_0 gnd +C1 g3916_1 gnd 2.080806f +C2 g3916_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3916_0 2.224404 +R2 g3916_1 1 2.224404 +.ends + +.subckt netg3572 g3572_1 g3572_0 gnd +C1 g3572_1 gnd 2.080806f +C2 g3572_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3572_0 1 2.224404 +R2 1 g3572_1 2.224404 +.ends + +.subckt netg6100 g6100_1 g6100_0 gnd +C1 g6100_1 gnd 2.080806f +C2 g6100_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6100_0 2.224404 +R2 g6100_1 1 2.224404 +.ends + +.subckt netg5361 g5361_1 g5361_0 gnd +C1 g5361_1 gnd 2.080806f +C2 g5361_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5361_0 2.224404 +R2 g5361_1 1 2.224404 +.ends + +.subckt netg5347 g5347_1 g5347_0 gnd +C1 g5347_1 gnd 2.080806f +C2 g5347_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5347_0 1 2.224404 +R2 1 g5347_1 2.224404 +.ends + +.subckt netg2229 g2229_1 g2229_0 gnd +C1 g2229_1 gnd 2.080806f +C2 g2229_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2229_0 1 2.224404 +R2 g2229_1 1 2.224404 +.ends + +.subckt netx452 x452_0 x452_1 gnd +C1 x452_0 gnd 2.080806f +C2 x452_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x452_0 1 2.224404 +R2 1 x452_1 2.224404 +.ends + +.subckt netg6330 g6330_1 g6330_0 gnd +C1 g6330_1 gnd 2.080806f +C2 g6330_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6330_0 2.224404 +R2 g6330_1 1 2.224404 +.ends + +.subckt netg5128 g5128_2 g5128_1 g5128_0 gnd +C1 g5128_2 gnd 2.080806f +C2 g5128_1 gnd 2.080806f +C3 g5128_0 gnd 2.080806f +R1 g5128_0 g5128_1 2.224404 +R2 g5128_2 g5128_1 2.224404 +.ends + +.subckt netg7294 g7294_1 g7294_0 gnd +C1 g7294_1 gnd 2.080806f +C2 g7294_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7294_0 1 2.224404 +R2 1 g7294_1 2.224404 +.ends + +.subckt netg5349 g5349_1 g5349_0 gnd +C1 g5349_1 gnd 2.080806f +C2 g5349_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5349_0 1 2.224404 +R2 g5349_1 1 2.224404 +.ends + +.subckt netg1436 g1436_0 g1436_1 gnd +C1 g1436_0 gnd 2.080806f +C2 g1436_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1436_0 1 2.224404 +R2 1 g1436_1 2.224404 +.ends + +.subckt netg6436 g6436_1 g6436_0 gnd +C1 g6436_1 gnd 2.080806f +C2 g6436_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6436_0 1 2.224404 +R2 1 g6436_1 2.224404 +.ends + +.subckt netg3117 g3117_0 g3117_1 g3117_2 gnd +C1 g3117_0 gnd 2.080806f +C2 g3117_1 gnd 2.080806f +C3 g3117_2 gnd 2.080806f +R1 g3117_0 g3117_1 2.224404 +R2 g3117_2 g3117_1 2.224404 +.ends + +.subckt netg6513 g6513_1 g6513_0 gnd +C1 g6513_1 gnd 2.080806f +C2 g6513_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6513_0 1 2.224404 +R2 1 g6513_1 2.224404 +.ends + +.subckt netg5483 g5483_0 g5483_1 gnd +C1 g5483_0 gnd 2.080806f +C2 g5483_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5483_0 1 2.224404 +R2 1 g5483_1 2.224404 +.ends + +.subckt netg6604 g6604_1 g6604_0 gnd +C1 g6604_1 gnd 2.080806f +C2 g6604_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6604_0 2.224404 +R2 1 g6604_1 2.224404 +.ends + +.subckt netg7217 g7217_1 g7217_0 gnd +C1 g7217_1 gnd 2.080806f +C2 g7217_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7217_0 1 2.224404 +R2 1 g7217_1 2.224404 +.ends + +.subckt netg3413 g3413_0 g3413_1 gnd +C1 g3413_0 gnd 2.080806f +C2 g3413_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3413_0 1 2.224404 +R2 1 g3413_1 2.224404 +.ends + +.subckt netg5320 g5320_1 g5320_0 gnd +C1 g5320_1 gnd 2.080806f +C2 g5320_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5320_0 1 2.224404 +R2 1 g5320_1 2.224404 +.ends + +.subckt netg6173 g6173_1 g6173_0 gnd +C1 g6173_1 gnd 2.080806f +C2 g6173_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6173_0 2.224404 +R2 g6173_1 1 2.224404 +.ends + +.subckt netg4354 g4354_0 g4354_1 gnd +C1 g4354_0 gnd 2.080806f +C2 g4354_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4354_0 2.224404 +R2 g4354_1 1 2.224404 +.ends + +.subckt netg5786 g5786_1 g5786_0 gnd +C1 g5786_1 gnd 2.080806f +C2 g5786_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5786_0 2.224404 +R2 g5786_1 1 2.224404 +.ends + +.subckt netg1453 g1453_1 g1453_0 gnd +C1 g1453_1 gnd 2.080806f +C2 g1453_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1453_0 1 2.224404 +R2 1 g1453_1 2.224404 +.ends + +.subckt netg6736 g6736_0 g6736_1 gnd +C1 g6736_0 gnd 2.080806f +C2 g6736_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6736_0 2.224404 +R2 g6736_1 1 2.224404 +.ends + +.subckt netg7103 g7103_0 g7103_1 gnd +C1 g7103_0 gnd 2.080806f +C2 g7103_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7103_0 1 2.224404 +R2 1 g7103_1 2.224404 +.ends + +.subckt netg4438 g4438_0 g4438_1 gnd +C1 g4438_0 gnd 2.080806f +C2 g4438_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4438_0 1 2.224404 +R2 g4438_1 1 2.224404 +.ends + +.subckt netg3977 g3977_1 g3977_0 gnd +C1 g3977_1 gnd 2.080806f +C2 g3977_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3977_0 1 2.224404 +R2 1 g3977_1 2.224404 +.ends + +.subckt netg6329 g6329_0 g6329_1 gnd +C1 g6329_0 gnd 2.080806f +C2 g6329_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6329_0 1 2.224404 +R2 g6329_1 1 2.224404 +.ends + +.subckt netg3324 g3324_1 g3324_2 g3324_0 gnd +C1 g3324_1 gnd 2.080806f +C2 g3324_2 gnd 2.080806f +C3 g3324_0 gnd 2.080806f +R1 g3324_1 g3324_0 2.224404 +R2 g3324_2 g3324_1 2.224404 +.ends + +.subckt netg6805 g6805_0 g6805_1 g6805_2 gnd +C1 g6805_0 gnd 2.080806f +C2 g6805_1 gnd 2.080806f +C3 g6805_2 gnd 2.080806f +R1 g6805_2 g6805_0 2.224404 +R2 g6805_1 g6805_2 2.224404 +.ends + +.subckt netg6823 g6823_1 g6823_0 gnd +C1 g6823_1 gnd 2.080806f +C2 g6823_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6823_0 1 2.224404 +R2 1 g6823_1 2.224404 +.ends + +.subckt netg4244 g4244_1 g4244_0 gnd +C1 g4244_1 gnd 2.080806f +C2 g4244_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4244_0 1 2.224404 +R2 1 g4244_1 2.224404 +.ends + +.subckt netg1490 g1490_1 g1490_0 gnd +C1 g1490_1 gnd 2.080806f +C2 g1490_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1490_0 1 2.224404 +R2 1 g1490_1 2.224404 +.ends + +.subckt netg5328 g5328_0 g5328_1 gnd +C1 g5328_0 gnd 2.080806f +C2 g5328_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5328_0 1 2.224404 +R2 1 g5328_1 2.224404 +.ends + +.subckt netg2543 g2543_0 g2543_1 g2543_2 gnd +C1 g2543_0 gnd 2.080806f +C2 g2543_1 gnd 2.080806f +C3 g2543_2 gnd 2.080806f +R1 g2543_0 g2543_2 2.224404 +R2 g2543_2 g2543_1 2.224404 +.ends + +.subckt netg6255 g6255_1 g6255_0 g6255_2 gnd +C1 g6255_1 gnd 2.080806f +C2 g6255_0 gnd 2.080806f +C3 g6255_2 gnd 2.080806f +R1 g6255_0 g6255_2 2.224404 +R2 g6255_1 g6255_2 2.224404 +.ends + +.subckt netg6195 g6195_1 g6195_0 gnd +C1 g6195_1 gnd 2.080806f +C2 g6195_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6195_0 2.224404 +R2 1 g6195_1 2.224404 +.ends + +.subckt netg3481 g3481_0 g3481_1 gnd +C1 g3481_0 gnd 2.080806f +C2 g3481_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3481_0 1 2.224404 +R2 g3481_1 1 2.224404 +.ends + +.subckt netg5970 g5970_1 g5970_0 gnd +C1 g5970_1 gnd 2.080806f +C2 g5970_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5970_0 1 2.224404 +R2 1 g5970_1 2.224404 +.ends + +.subckt netg6033 g6033_1 g6033_0 gnd +C1 g6033_1 gnd 2.080806f +C2 g6033_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6033_0 1 2.224404 +R2 1 g6033_1 2.224404 +.ends + +.subckt netg5030 g5030_2 g5030_1 g5030_0 gnd +C1 g5030_2 gnd 2.080806f +C2 g5030_1 gnd 2.080806f +C3 g5030_0 gnd 2.080806f +R1 g5030_1 g5030_0 2.224404 +R2 g5030_0 g5030_2 2.224404 +.ends + +.subckt netg5167 g5167_2 g5167_0 gnd +C1 g5167_2 gnd 2.080806f +C2 g5167_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5167_0 2.224404 +R2 g5167_2 1 2.224404 +.ends + +.subckt netg6903 g6903_1 g6903_0 gnd +C1 g6903_1 gnd 2.080806f +C2 g6903_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6903_0 1 2.224404 +R2 1 g6903_1 2.224404 +.ends + +.subckt netg4273 g4273_0 g4273_1 gnd +C1 g4273_0 gnd 2.080806f +C2 g4273_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4273_0 1 2.224404 +R2 1 g4273_1 2.224404 +.ends + +.subckt netg6037 g6037_0 g6037_1 gnd +C1 g6037_0 gnd 2.080806f +C2 g6037_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6037_0 2.224404 +R2 g6037_1 1 2.224404 +.ends + +.subckt netg6659 g6659_0 g6659_1 gnd +C1 g6659_0 gnd 2.080806f +C2 g6659_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6659_0 1 2.224404 +R2 1 g6659_1 2.224404 +.ends + +.subckt netg4629 g4629_1 g4629_0 gnd +C1 g4629_1 gnd 2.080806f +C2 g4629_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4629_0 2.224404 +R2 1 g4629_1 2.224404 +.ends + +.subckt netg7342 g7342_1 g7342_0 gnd +C1 g7342_1 gnd 2.080806f +C2 g7342_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7342_0 1 2.224404 +R2 1 g7342_1 2.224404 +.ends + +.subckt netg1225 g1225_0 g1225_1 gnd +C1 g1225_0 gnd 2.080806f +C2 g1225_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1225_0 2.224404 +R2 g1225_1 1 2.224404 +.ends + +.subckt netg5583 g5583_0 g5583_1 gnd +C1 g5583_0 gnd 2.080806f +C2 g5583_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5583_0 2.224404 +R2 1 g5583_1 2.224404 +.ends + +.subckt netg1045 g1045_0 g1045_2 gnd +C1 g1045_0 gnd 2.080806f +C2 g1045_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1045_0 1 2.224404 +R2 1 g1045_2 2.224404 +.ends + +.subckt netg6725 g6725_2 g6725_0 gnd +C1 g6725_2 gnd 2.080806f +C2 g6725_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6725_0 1 2.224404 +R2 1 g6725_2 2.224404 +.ends + +.subckt netg6886 g6886_0 g6886_1 gnd +C1 g6886_0 gnd 2.080806f +C2 g6886_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6886_0 2.224404 +R2 g6886_1 1 2.224404 +.ends + +.subckt netg7020 g7020_0 g7020_1 gnd +C1 g7020_0 gnd 2.080806f +C2 g7020_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7020_0 2.224404 +R2 g7020_1 1 2.224404 +.ends + +.subckt netg6634 g6634_2 g6634_1 g6634_0 gnd +C1 g6634_2 gnd 2.080806f +C2 g6634_1 gnd 2.080806f +C3 g6634_0 gnd 2.080806f +R1 g6634_0 g6634_1 2.224404 +R2 g6634_0 g6634_2 2.224404 +.ends + +.subckt netg4227 g4227_1 g4227_0 gnd +C1 g4227_1 gnd 2.080806f +C2 g4227_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4227_0 2.224404 +R2 g4227_1 1 2.224404 +.ends + +.subckt netg1039 g1039_1 g1039_2 gnd +C1 g1039_1 gnd 2.080806f +C2 g1039_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1039_1 1 2.224404 +R2 1 g1039_2 2.224404 +.ends + +.subckt netg1166 g1166_0 g1166_1 gnd +C1 g1166_0 gnd 2.080806f +C2 g1166_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1166_0 1 2.224404 +R2 1 g1166_1 2.224404 +.ends + +.subckt netg2513 g2513_1 g2513_2 g2513_0 gnd +C1 g2513_1 gnd 2.080806f +C2 g2513_2 gnd 2.080806f +C3 g2513_0 gnd 2.080806f +R1 g2513_1 g2513_0 2.224404 +R2 g2513_2 g2513_1 2.224404 +.ends + +.subckt netg566 g566_0 g566_1 gnd +C1 g566_0 gnd 2.080806f +C2 g566_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g566_0 1 2.224404 +R2 1 g566_1 2.224404 +.ends + +.subckt netg5963 g5963_1 g5963_0 gnd +C1 g5963_1 gnd 2.080806f +C2 g5963_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5963_0 1 2.224404 +R2 1 g5963_1 2.224404 +.ends + +.subckt netg2519 g2519_1 g2519_2 gnd +C1 g2519_1 gnd 2.080806f +C2 g2519_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2519_2 1 2.224404 +R2 g2519_1 1 2.224404 +.ends + +.subckt netg6538 g6538_1 g6538_0 gnd +C1 g6538_1 gnd 2.080806f +C2 g6538_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6538_0 1 2.224404 +R2 1 g6538_1 2.224404 +.ends + +.subckt netg7350 g7350_1 g7350_0 gnd +C1 g7350_1 gnd 2.080806f +C2 g7350_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7350_0 1 2.224404 +R2 g7350_1 1 2.224404 +.ends + +.subckt netg6043 g6043_1 g6043_0 gnd +C1 g6043_1 gnd 2.080806f +C2 g6043_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6043_0 2.224404 +R2 1 g6043_1 2.224404 +.ends + +.subckt netg1305 g1305_0 g1305_1 gnd +C1 g1305_0 gnd 2.080806f +C2 g1305_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1305_0 2.224404 +R2 g1305_1 1 2.224404 +.ends + +.subckt netg7209 g7209_0 g7209_1 gnd +C1 g7209_0 gnd 2.080806f +C2 g7209_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7209_0 2.224404 +R2 1 g7209_1 2.224404 +.ends + +.subckt netg5691 g5691_0 g5691_2 gnd +C1 g5691_0 gnd 2.080806f +C2 g5691_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5691_0 1 2.224404 +R2 1 g5691_2 2.224404 +.ends + +.subckt netg7068 g7068_1 g7068_0 g7068_2 gnd +C1 g7068_1 gnd 2.080806f +C2 g7068_0 gnd 2.080806f +C3 g7068_2 gnd 2.080806f +R1 g7068_1 g7068_0 2.224404 +R2 g7068_0 g7068_2 2.224404 +.ends + +.subckt netg3478 g3478_1 g3478_0 gnd +C1 g3478_1 gnd 2.080806f +C2 g3478_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3478_0 2.224404 +R2 g3478_1 1 2.224404 +.ends + +.subckt netg1130 g1130_1 g1130_0 gnd +C1 g1130_1 gnd 2.080806f +C2 g1130_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1130_0 2.224404 +R2 g1130_1 1 2.224404 +.ends + +.subckt netg6053 g6053_0 g6053_1 gnd +C1 g6053_0 gnd 2.080806f +C2 g6053_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6053_0 1 2.224404 +R2 1 g6053_1 2.224404 +.ends + +.subckt netg6328 g6328_1 g6328_0 gnd +C1 g6328_1 gnd 2.080806f +C2 g6328_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6328_0 1 2.224404 +R2 1 g6328_1 2.224404 +.ends + +.subckt netg1475 g1475_0 g1475_1 gnd +C1 g1475_0 gnd 2.080806f +C2 g1475_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1475_0 2.224404 +R2 g1475_1 1 2.224404 +.ends + +.subckt netg4437 g4437_1 g4437_0 gnd +C1 g4437_1 gnd 2.080806f +C2 g4437_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4437_0 2.224404 +R2 g4437_1 1 2.224404 +.ends + +.subckt netg4241 g4241_1 g4241_0 gnd +C1 g4241_1 gnd 2.080806f +C2 g4241_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4241_0 1 2.224404 +R2 g4241_1 1 2.224404 +.ends + +.subckt netg6921 g6921_1 g6921_2 g6921_0 gnd +C1 g6921_1 gnd 2.080806f +C2 g6921_2 gnd 2.080806f +C3 g6921_0 gnd 2.080806f +R1 g6921_1 g6921_0 2.224404 +R2 g6921_2 g6921_1 2.224404 +.ends + +.subckt netg1384 g1384_1 g1384_0 gnd +C1 g1384_1 gnd 2.080806f +C2 g1384_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1384_0 1 2.224404 +R2 1 g1384_1 2.224404 +.ends + +.subckt netg5355 g5355_0 g5355_1 gnd +C1 g5355_0 gnd 2.080806f +C2 g5355_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5355_0 2.224404 +R2 g5355_1 1 2.224404 +.ends + +.subckt netg5488 g5488_1 g5488_0 gnd +C1 g5488_1 gnd 2.080806f +C2 g5488_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5488_0 2.224404 +R2 g5488_1 1 2.224404 +.ends + +.subckt netx422 x422_1 x422_0 gnd +C1 x422_1 gnd 2.080806f +C2 x422_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x422_0 2.224404 +R2 x422_1 1 2.224404 +.ends + +.subckt netg4938 g4938_0 g4938_1 gnd +C1 g4938_0 gnd 2.080806f +C2 g4938_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4938_0 1 2.224404 +R2 1 g4938_1 2.224404 +.ends + +.subckt netg3495 g3495_0 g3495_1 gnd +C1 g3495_0 gnd 2.080806f +C2 g3495_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3495_0 2.224404 +R2 g3495_1 1 2.224404 +.ends + +.subckt netg6001 g6001_0 g6001_1 gnd +C1 g6001_0 gnd 2.080806f +C2 g6001_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6001_0 1 2.224404 +R2 1 g6001_1 2.224404 +.ends + +.subckt netg4279 g4279_0 g4279_1 gnd +C1 g4279_0 gnd 2.080806f +C2 g4279_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4279_0 2.224404 +R2 g4279_1 1 2.224404 +.ends + +.subckt netg6622 g6622_1 g6622_0 gnd +C1 g6622_1 gnd 2.080806f +C2 g6622_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6622_0 2.224404 +R2 g6622_1 1 2.224404 +.ends + +.subckt netg922 g922_2 g922_0 gnd +C1 g922_2 gnd 2.080806f +C2 g922_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g922_0 1 2.224404 +R2 1 g922_2 2.224404 +.ends + +.subckt netx381 x381_1 x381_0 gnd +C1 x381_1 gnd 2.080806f +C2 x381_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x381_0 1 2.224404 +R2 1 x381_1 2.224404 +.ends + +.subckt netg6948 g6948_1 g6948_2 gnd +C1 g6948_1 gnd 2.080806f +C2 g6948_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6948_2 2.224404 +R2 g6948_1 1 2.224404 +.ends + +.subckt netx361 x361_0 x361_1 gnd +C1 x361_0 gnd 2.080806f +C2 x361_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x361_0 2.224404 +R2 x361_1 1 2.224404 +.ends + +.subckt netg5424 g5424_0 g5424_1 gnd +C1 g5424_0 gnd 2.080806f +C2 g5424_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5424_0 1 2.224404 +R2 1 g5424_1 2.224404 +.ends + +.subckt netg4056 g4056_1 g4056_0 gnd +C1 g4056_1 gnd 2.080806f +C2 g4056_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4056_0 1 2.224404 +R2 1 g4056_1 2.224404 +.ends + +.subckt netg2828 g2828_0 g2828_1 gnd +C1 g2828_0 gnd 2.080806f +C2 g2828_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2828_0 2.224404 +R2 g2828_1 1 2.224404 +.ends + +.subckt netg1000 g1000_1 g1000_2 gnd +C1 g1000_1 gnd 2.080806f +C2 g1000_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1000_1 1 2.224404 +R2 g1000_2 1 2.224404 +.ends + +.subckt netg5059 g5059_2 g5059_0 g5059_1 gnd +C1 g5059_2 gnd 2.080806f +C2 g5059_0 gnd 2.080806f +C3 g5059_1 gnd 2.080806f +R1 g5059_0 g5059_1 2.224404 +R2 g5059_1 g5059_2 2.224404 +.ends + +.subckt netg6168 g6168_1 g6168_0 gnd +C1 g6168_1 gnd 2.080806f +C2 g6168_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6168_0 1 2.224404 +R2 1 g6168_1 2.224404 +.ends + +.subckt netg4331 g4331_0 g4331_1 gnd +C1 g4331_0 gnd 2.080806f +C2 g4331_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4331_0 2.224404 +R2 1 g4331_1 2.224404 +.ends + +.subckt netg6484 g6484_0 g6484_1 g6484_2 gnd +C1 g6484_0 gnd 2.080806f +C2 g6484_1 gnd 2.080806f +C3 g6484_2 gnd 2.080806f +R1 g6484_0 g6484_2 2.224404 +R2 g6484_2 g6484_1 2.224404 +.ends + +.subckt netg3488 g3488_1 g3488_0 gnd +C1 g3488_1 gnd 2.080806f +C2 g3488_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3488_0 2.224404 +R2 g3488_1 1 2.224404 +.ends + +.subckt netg1390 g1390_2 g1390_0 g1390_1 gnd +C1 g1390_2 gnd 2.080806f +C2 g1390_0 gnd 2.080806f +C3 g1390_1 gnd 2.080806f +R1 g1390_0 g1390_1 2.224404 +R2 g1390_1 g1390_2 2.224404 +.ends + +.subckt netg3456 g3456_1 g3456_2 g3456_0 gnd +C1 g3456_1 gnd 2.080806f +C2 g3456_2 gnd 2.080806f +C3 g3456_0 gnd 2.080806f +R1 g3456_1 g3456_0 2.224404 +R2 g3456_2 g3456_1 2.224404 +.ends + +.subckt netg5429 g5429_0 g5429_1 gnd +C1 g5429_0 gnd 2.080806f +C2 g5429_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5429_0 1 2.224404 +R2 1 g5429_1 2.224404 +.ends + +.subckt netg1386 g1386_0 g1386_1 gnd +C1 g1386_0 gnd 2.080806f +C2 g1386_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1386_0 2.224404 +R2 g1386_1 1 2.224404 +.ends + +.subckt netg6220 g6220_0 g6220_2 gnd +C1 g6220_0 gnd 2.080806f +C2 g6220_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6220_0 1 2.224404 +R2 g6220_2 1 2.224404 +.ends + +.subckt netg3288 g3288_2 g3288_1 gnd +C1 g3288_2 gnd 2.080806f +C2 g3288_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3288_2 1 2.224404 +R2 g3288_1 1 2.224404 +.ends + +.subckt netg6533 g6533_1 g6533_0 gnd +C1 g6533_1 gnd 2.080806f +C2 g6533_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6533_0 2.224404 +R2 g6533_1 1 2.224404 +.ends + +.subckt netg5113 g5113_1 g5113_0 gnd +C1 g5113_1 gnd 2.080806f +C2 g5113_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5113_0 2.224404 +R2 1 g5113_1 2.224404 +.ends + +.subckt netg2949 g2949_0 g2949_1 gnd +C1 g2949_0 gnd 2.080806f +C2 g2949_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2949_0 1 2.224404 +R2 1 g2949_1 2.224404 +.ends + +.subckt netg6489 g6489_0 g6489_1 gnd +C1 g6489_0 gnd 2.080806f +C2 g6489_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6489_0 1 2.224404 +R2 1 g6489_1 2.224404 +.ends + +.subckt netg6655 g6655_1 g6655_0 gnd +C1 g6655_1 gnd 2.080806f +C2 g6655_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6655_0 2.224404 +R2 g6655_1 1 2.224404 +.ends + +.subckt netg3099 g3099_1 g3099_0 gnd +C1 g3099_1 gnd 2.080806f +C2 g3099_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3099_0 1 2.224404 +R2 1 g3099_1 2.224404 +.ends + +.subckt netg7383 g7383_1 g7383_0 gnd +C1 g7383_1 gnd 2.080806f +C2 g7383_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7383_0 1 2.224404 +R2 1 g7383_1 2.224404 +.ends + +.subckt netg7208 g7208_0 g7208_1 gnd +C1 g7208_0 gnd 2.080806f +C2 g7208_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7208_0 1 2.224404 +R2 1 g7208_1 2.224404 +.ends + +.subckt netg3000 g3000_1 g3000_0 gnd +C1 g3000_1 gnd 2.080806f +C2 g3000_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3000_0 1 2.224404 +R2 g3000_1 1 2.224404 +.ends + +.subckt netg6089 g6089_0 g6089_1 gnd +C1 g6089_0 gnd 2.080806f +C2 g6089_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6089_0 1 2.224404 +R2 1 g6089_1 2.224404 +.ends + +.subckt netg4293 g4293_1 g4293_0 gnd +C1 g4293_1 gnd 2.080806f +C2 g4293_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4293_0 2.224404 +R2 g4293_1 1 2.224404 +.ends + +.subckt netg6918 g6918_0 g6918_1 gnd +C1 g6918_0 gnd 2.080806f +C2 g6918_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6918_0 1 2.224404 +R2 1 g6918_1 2.224404 +.ends + +.subckt netg7388 g7388_1 g7388_0 gnd +C1 g7388_1 gnd 2.080806f +C2 g7388_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7388_0 2.224404 +R2 g7388_1 1 2.224404 +.ends + +.subckt netg4069 g4069_0 g4069_1 gnd +C1 g4069_0 gnd 2.080806f +C2 g4069_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4069_0 1 2.224404 +R2 1 g4069_1 2.224404 +.ends + +.subckt netx101 x101_1 x101_0 gnd +C1 x101_1 gnd 2.080806f +C2 x101_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x101_0 2.224404 +R2 x101_1 1 2.224404 +.ends + +.subckt netg6119 g6119_0 g6119_1 gnd +C1 g6119_0 gnd 2.080806f +C2 g6119_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6119_0 1 2.224404 +R2 g6119_1 1 2.224404 +.ends + +.subckt netg5267 g5267_1 g5267_0 gnd +C1 g5267_1 gnd 2.080806f +C2 g5267_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5267_0 1 2.224404 +R2 1 g5267_1 2.224404 +.ends + +.subckt netg2576 g2576_2 g2576_0 g2576_1 gnd +C1 g2576_2 gnd 2.080806f +C2 g2576_0 gnd 2.080806f +C3 g2576_1 gnd 2.080806f +R1 g2576_1 g2576_0 2.224404 +R2 g2576_0 g2576_2 2.224404 +.ends + +.subckt netg6660 g6660_0 g6660_1 gnd +C1 g6660_0 gnd 2.080806f +C2 g6660_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6660_0 1 2.224404 +R2 1 g6660_1 2.224404 +.ends + +.subckt netg4442 g4442_1 g4442_0 gnd +C1 g4442_1 gnd 2.080806f +C2 g4442_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4442_0 2.224404 +R2 g4442_1 1 2.224404 +.ends + +.subckt netg6266 g6266_2 g6266_0 g6266_1 gnd +C1 g6266_2 gnd 2.080806f +C2 g6266_0 gnd 2.080806f +C3 g6266_1 gnd 2.080806f +R1 g6266_0 g6266_1 2.224404 +R2 g6266_1 g6266_2 2.224404 +.ends + +.subckt netg2740 g2740_2 g2740_0 g2740_1 gnd +C1 g2740_2 gnd 2.080806f +C2 g2740_0 gnd 2.080806f +C3 g2740_1 gnd 2.080806f +R1 g2740_0 g2740_1 2.224404 +R2 g2740_2 g2740_0 2.224404 +.ends + +.subckt netg7165 g7165_0 g7165_1 gnd +C1 g7165_0 gnd 2.080806f +C2 g7165_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7165_0 2.224404 +R2 g7165_1 1 2.224404 +.ends + +.subckt netg2492 g2492_2 g2492_1 gnd +C1 g2492_2 gnd 2.080806f +C2 g2492_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2492_2 2.224404 +R2 g2492_1 1 2.224404 +.ends + +.subckt netg7406 g7406_1 g7406_0 gnd +C1 g7406_1 gnd 2.080806f +C2 g7406_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7406_0 1 2.224404 +R2 1 g7406_1 2.224404 +.ends + +.subckt netg6901 g6901_0 g6901_1 gnd +C1 g6901_0 gnd 2.080806f +C2 g6901_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6901_0 1 2.224404 +R2 1 g6901_1 2.224404 +.ends + +.subckt netg5444 g5444_0 g5444_1 gnd +C1 g5444_0 gnd 2.080806f +C2 g5444_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5444_0 1 2.224404 +R2 1 g5444_1 2.224404 +.ends + +.subckt netg3544 g3544_0 g3544_1 gnd +C1 g3544_0 gnd 2.080806f +C2 g3544_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3544_0 2.224404 +R2 g3544_1 1 2.224404 +.ends + +.subckt netg5050 g5050_1 g5050_0 g5050_2 gnd +C1 g5050_1 gnd 2.080806f +C2 g5050_0 gnd 2.080806f +C3 g5050_2 gnd 2.080806f +R1 g5050_0 g5050_1 2.224404 +R2 g5050_1 g5050_2 2.224404 +.ends + +.subckt netg7206 g7206_1 g7206_0 gnd +C1 g7206_1 gnd 2.080806f +C2 g7206_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7206_0 2.224404 +R2 g7206_1 1 2.224404 +.ends + +.subckt netg2838 g2838_1 g2838_0 gnd +C1 g2838_1 gnd 2.080806f +C2 g2838_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2838_0 2.224404 +R2 g2838_1 1 2.224404 +.ends + +.subckt netg1223 g1223_1 g1223_0 gnd +C1 g1223_1 gnd 2.080806f +C2 g1223_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1223_0 2.224404 +R2 g1223_1 1 2.224404 +.ends + +.subckt netg1557 g1557_1 g1557_0 gnd +C1 g1557_1 gnd 2.080806f +C2 g1557_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1557_0 2.224404 +R2 g1557_1 1 2.224404 +.ends + +.subckt netg6790 g6790_2 g6790_1 g6790_0 gnd +C1 g6790_2 gnd 2.080806f +C2 g6790_1 gnd 2.080806f +C3 g6790_0 gnd 2.080806f +R1 g6790_1 g6790_0 2.224404 +R2 g6790_2 g6790_1 2.224404 +.ends + +.subckt netg4204 g4204_0 g4204_1 gnd +C1 g4204_0 gnd 2.080806f +C2 g4204_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4204_0 1 2.224404 +R2 g4204_1 1 2.224404 +.ends + +.subckt netg6048 g6048_1 g6048_0 gnd +C1 g6048_1 gnd 2.080806f +C2 g6048_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6048_0 1 2.224404 +R2 g6048_1 1 2.224404 +.ends + +.subckt netg6613 g6613_1 g6613_0 gnd +C1 g6613_1 gnd 2.080806f +C2 g6613_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6613_0 1 2.224404 +R2 1 g6613_1 2.224404 +.ends + +.subckt netg5357 g5357_0 g5357_1 gnd +C1 g5357_0 gnd 2.080806f +C2 g5357_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5357_0 2.224404 +R2 g5357_1 1 2.224404 +.ends + +.subckt netg2483 g2483_2 g2483_1 gnd +C1 g2483_2 gnd 2.080806f +C2 g2483_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2483_2 1 2.224404 +R2 1 g2483_1 2.224404 +.ends + +.subckt netg4275 g4275_0 g4275_1 gnd +C1 g4275_0 gnd 2.080806f +C2 g4275_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4275_0 1 2.224404 +R2 g4275_1 1 2.224404 +.ends + +.subckt netg979 g979_0 g979_1 g979_2 gnd +C1 g979_0 gnd 2.080806f +C2 g979_1 gnd 2.080806f +C3 g979_2 gnd 2.080806f +R1 g979_0 g979_1 2.224404 +R2 g979_1 g979_2 2.224404 +.ends + +.subckt netg4228 g4228_1 g4228_0 gnd +C1 g4228_1 gnd 2.080806f +C2 g4228_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4228_0 1 2.224404 +R2 1 g4228_1 2.224404 +.ends + +.subckt netg3531 g3531_0 g3531_1 gnd +C1 g3531_0 gnd 2.080806f +C2 g3531_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3531_0 2.224404 +R2 1 g3531_1 2.224404 +.ends + +.subckt netg5024 g5024_2 g5024_0 gnd +C1 g5024_2 gnd 2.080806f +C2 g5024_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5024_0 2.224404 +R2 g5024_2 1 2.224404 +.ends + +.subckt netg4450 g4450_0 g4450_1 gnd +C1 g4450_0 gnd 2.080806f +C2 g4450_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4450_0 2.224404 +R2 g4450_1 1 2.224404 +.ends + +.subckt netg2759 g2759_1 g2759_0 gnd +C1 g2759_1 gnd 2.080806f +C2 g2759_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2759_0 1 2.224404 +R2 1 g2759_1 2.224404 +.ends + +.subckt netg5885 g5885_0 g5885_1 gnd +C1 g5885_0 gnd 2.080806f +C2 g5885_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5885_0 2.224404 +R2 g5885_1 1 2.224404 +.ends + +.subckt netg3062 g3062_1 g3062_0 gnd +C1 g3062_1 gnd 2.080806f +C2 g3062_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3062_0 2.224404 +R2 g3062_1 1 2.224404 +.ends + +.subckt netg6381 g6381_0 g6381_1 gnd +C1 g6381_0 gnd 2.080806f +C2 g6381_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6381_0 2.224404 +R2 g6381_1 1 2.224404 +.ends + +.subckt netg7349 g7349_1 g7349_0 gnd +C1 g7349_1 gnd 2.080806f +C2 g7349_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7349_0 1 2.224404 +R2 1 g7349_1 2.224404 +.ends + +.subckt netg6511 g6511_0 g6511_1 gnd +C1 g6511_0 gnd 2.080806f +C2 g6511_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6511_0 1 2.224404 +R2 1 g6511_1 2.224404 +.ends + +.subckt netg4976 g4976_2 g4976_1 g4976_0 gnd +C1 g4976_2 gnd 2.080806f +C2 g4976_1 gnd 2.080806f +C3 g4976_0 gnd 2.080806f +R1 g4976_1 g4976_0 2.224404 +R2 g4976_2 g4976_1 2.224404 +.ends + +.subckt netg4007 g4007_1 g4007_0 gnd +C1 g4007_1 gnd 2.080806f +C2 g4007_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4007_0 1 2.224404 +R2 1 g4007_1 2.224404 +.ends + +.subckt netx421 x421_1 x421_0 gnd +C1 x421_1 gnd 2.080806f +C2 x421_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x421_0 1 2.224404 +R2 1 x421_1 2.224404 +.ends + +.subckt netg5325 g5325_1 g5325_0 gnd +C1 g5325_1 gnd 2.080806f +C2 g5325_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5325_0 2.224404 +R2 g5325_1 1 2.224404 +.ends + +.subckt netg6433 g6433_2 g6433_0 g6433_1 gnd +C1 g6433_2 gnd 2.080806f +C2 g6433_0 gnd 2.080806f +C3 g6433_1 gnd 2.080806f +R1 g6433_0 g6433_1 2.224404 +R2 g6433_1 g6433_2 2.224404 +.ends + +.subckt netg7079 g7079_1 g7079_0 gnd +C1 g7079_1 gnd 2.080806f +C2 g7079_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7079_0 2.224404 +R2 g7079_1 1 2.224404 +.ends + +.subckt netg6692 g6692_0 g6692_1 gnd +C1 g6692_0 gnd 2.080806f +C2 g6692_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6692_0 1 2.224404 +R2 1 g6692_1 2.224404 +.ends + +.subckt netg3102 g3102_1 g3102_0 gnd +C1 g3102_1 gnd 2.080806f +C2 g3102_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3102_0 1 2.224404 +R2 1 g3102_1 2.224404 +.ends + +.subckt netg1161 g1161_0 g1161_1 gnd +C1 g1161_0 gnd 2.080806f +C2 g1161_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1161_0 2.224404 +R2 g1161_1 1 2.224404 +.ends + +.subckt netg6462 g6462_1 g6462_0 gnd +C1 g6462_1 gnd 2.080806f +C2 g6462_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6462_0 2.224404 +R2 g6462_1 1 2.224404 +.ends + +.subckt netg970 g970_0 g970_1 g970_2 gnd +C1 g970_0 gnd 2.080806f +C2 g970_1 gnd 2.080806f +C3 g970_2 gnd 2.080806f +R1 g970_2 g970_0 2.224404 +R2 g970_1 g970_2 2.224404 +.ends + +.subckt netg5245 g5245_0 g5245_1 gnd +C1 g5245_0 gnd 2.080806f +C2 g5245_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5245_0 1 2.224404 +R2 g5245_1 1 2.224404 +.ends + +.subckt netg3919 g3919_0 g3919_1 gnd +C1 g3919_0 gnd 2.080806f +C2 g3919_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3919_0 1 2.224404 +R2 1 g3919_1 2.224404 +.ends + +.subckt netg1154 g1154_0 g1154_1 gnd +C1 g1154_0 gnd 2.080806f +C2 g1154_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1154_0 1 2.224404 +R2 1 g1154_1 2.224404 +.ends + +.subckt netg1407 g1407_1 g1407_0 gnd +C1 g1407_1 gnd 2.080806f +C2 g1407_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1407_0 1 2.224404 +R2 1 g1407_1 2.224404 +.ends + +.subckt netg6980 g6980_0 g6980_2 g6980_1 gnd +C1 g6980_0 gnd 2.080806f +C2 g6980_2 gnd 2.080806f +C3 g6980_1 gnd 2.080806f +R1 g6980_0 g6980_2 2.224404 +R2 g6980_2 g6980_1 2.224404 +.ends + +.subckt netg4024 g4024_1 g4024_0 gnd +C1 g4024_1 gnd 2.080806f +C2 g4024_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4024_0 2.224404 +R2 g4024_1 1 2.224404 +.ends + +.subckt netg3466 g3466_0 g3466_1 gnd +C1 g3466_0 gnd 2.080806f +C2 g3466_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3466_0 1 2.224404 +R2 1 g3466_1 2.224404 +.ends + +.subckt netg7167 g7167_1 g7167_0 gnd +C1 g7167_1 gnd 2.080806f +C2 g7167_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7167_0 1 2.224404 +R2 1 g7167_1 2.224404 +.ends + +.subckt netg4083 g4083_1 g4083_0 gnd +C1 g4083_1 gnd 2.080806f +C2 g4083_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4083_0 2.224404 +R2 g4083_1 1 2.224404 +.ends + +.subckt netg5990 g5990_1 g5990_0 gnd +C1 g5990_1 gnd 2.080806f +C2 g5990_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5990_0 2.224404 +R2 g5990_1 1 2.224404 +.ends + +.subckt netg7254 g7254_1 g7254_0 gnd +C1 g7254_1 gnd 2.080806f +C2 g7254_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7254_0 2.224404 +R2 g7254_1 1 2.224404 +.ends + +.subckt netg7432 g7432_0 g7432_1 gnd +C1 g7432_0 gnd 2.080806f +C2 g7432_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7432_0 2.224404 +R2 g7432_1 1 2.224404 +.ends + +.subckt netg7161 g7161_2 g7161_0 g7161_1 gnd +C1 g7161_2 gnd 2.080806f +C2 g7161_0 gnd 2.080806f +C3 g7161_1 gnd 2.080806f +R1 g7161_1 g7161_0 2.224404 +R2 g7161_2 g7161_1 2.224404 +.ends + +.subckt netg2999 g2999_0 g2999_1 gnd +C1 g2999_0 gnd 2.080806f +C2 g2999_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2999_0 2.224404 +R2 g2999_1 1 2.224404 +.ends + +.subckt netg2447 g2447_0 g2447_1 g2447_2 gnd +C1 g2447_0 gnd 2.080806f +C2 g2447_1 gnd 2.080806f +C3 g2447_2 gnd 2.080806f +R1 g2447_0 g2447_2 2.224404 +R2 g2447_2 g2447_1 2.224404 +.ends + +.subckt netg7413 g7413_1 g7413_0 gnd +C1 g7413_1 gnd 2.080806f +C2 g7413_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7413_0 2.224404 +R2 g7413_1 1 2.224404 +.ends + +.subckt netg2936 g2936_0 g2936_1 gnd +C1 g2936_0 gnd 2.080806f +C2 g2936_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2936_0 2.224404 +R2 g2936_1 1 2.224404 +.ends + +.subckt netx62 x62_1 x62_0 gnd +C1 x62_1 gnd 2.080806f +C2 x62_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x62_0 1 2.224404 +R2 x62_1 1 2.224404 +.ends + +.subckt netg4433 g4433_0 g4433_1 gnd +C1 g4433_0 gnd 2.080806f +C2 g4433_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4433_0 1 2.224404 +R2 1 g4433_1 2.224404 +.ends + +.subckt netg1082 g1082_2 g1082_1 gnd +C1 g1082_2 gnd 2.080806f +C2 g1082_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1082_1 1 2.224404 +R2 1 g1082_2 2.224404 +.ends + +.subckt netg6388 g6388_1 g6388_0 gnd +C1 g6388_1 gnd 2.080806f +C2 g6388_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6388_0 2.224404 +R2 g6388_1 1 2.224404 +.ends + +.subckt netg4335 g4335_1 g4335_0 gnd +C1 g4335_1 gnd 2.080806f +C2 g4335_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4335_0 2.224404 +R2 g4335_1 1 2.224404 +.ends + +.subckt netg3985 g3985_0 g3985_1 gnd +C1 g3985_0 gnd 2.080806f +C2 g3985_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3985_0 2.224404 +R2 g3985_1 1 2.224404 +.ends + +.subckt netg7016 g7016_0 g7016_1 gnd +C1 g7016_0 gnd 2.080806f +C2 g7016_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7016_0 2.224404 +R2 1 g7016_1 2.224404 +.ends + +.subckt netg5296 g5296_1 g5296_0 gnd +C1 g5296_1 gnd 2.080806f +C2 g5296_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5296_0 2.224404 +R2 g5296_1 1 2.224404 +.ends + +.subckt netg5348 g5348_1 g5348_0 gnd +C1 g5348_1 gnd 2.080806f +C2 g5348_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5348_0 1 2.224404 +R2 g5348_1 1 2.224404 +.ends + +.subckt netg4037 g4037_1 g4037_0 gnd +C1 g4037_1 gnd 2.080806f +C2 g4037_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4037_0 2.224404 +R2 g4037_1 1 2.224404 +.ends + +.subckt netg4330 g4330_1 g4330_0 gnd +C1 g4330_1 gnd 2.080806f +C2 g4330_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4330_0 2.224404 +R2 g4330_1 1 2.224404 +.ends + +.subckt netg2441 g2441_1 g2441_0 g2441_2 gnd +C1 g2441_1 gnd 2.080806f +C2 g2441_0 gnd 2.080806f +C3 g2441_2 gnd 2.080806f +R1 g2441_0 g2441_1 2.224404 +R2 g2441_0 g2441_2 2.224404 +.ends + +.subckt netx172 x172_1 x172_0 gnd +C1 x172_1 gnd 2.080806f +C2 x172_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x172_0 2.224404 +R2 1 x172_1 2.224404 +.ends + +.subckt netg5625 g5625_1 g5625_2 gnd +C1 g5625_1 gnd 2.080806f +C2 g5625_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5625_2 1 2.224404 +R2 1 g5625_1 2.224404 +.ends + +.subckt netg5104 g5104_2 g5104_0 g5104_1 gnd +C1 g5104_2 gnd 2.080806f +C2 g5104_0 gnd 2.080806f +C3 g5104_1 gnd 2.080806f +R1 g5104_2 g5104_0 2.224404 +R2 g5104_1 g5104_2 2.224404 +.ends + +.subckt netg5528 g5528_1 g5528_0 gnd +C1 g5528_1 gnd 2.080806f +C2 g5528_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5528_0 2.224404 +R2 g5528_1 1 2.224404 +.ends + +.subckt netg931 g931_2 g931_1 g931_0 gnd +C1 g931_2 gnd 2.080806f +C2 g931_1 gnd 2.080806f +C3 g931_0 gnd 2.080806f +R1 g931_0 g931_1 2.224404 +R2 g931_2 g931_0 2.224404 +.ends + +.subckt netg7345 g7345_1 g7345_0 gnd +C1 g7345_1 gnd 2.080806f +C2 g7345_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7345_0 1 2.224404 +R2 1 g7345_1 2.224404 +.ends + +.subckt netg5120 g5120_0 g5120_1 gnd +C1 g5120_0 gnd 2.080806f +C2 g5120_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5120_0 2.224404 +R2 g5120_1 1 2.224404 +.ends + +.subckt netg6971 g6971_1 g6971_0 gnd +C1 g6971_1 gnd 2.080806f +C2 g6971_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6971_0 1 2.224404 +R2 1 g6971_1 2.224404 +.ends + +.subckt netg5131 g5131_0 g5131_2 gnd +C1 g5131_0 gnd 2.080806f +C2 g5131_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5131_0 1 2.224404 +R2 1 g5131_2 2.224404 +.ends + +.subckt netg5273 g5273_0 g5273_1 gnd +C1 g5273_0 gnd 2.080806f +C2 g5273_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5273_0 2.224404 +R2 g5273_1 1 2.224404 +.ends + +.subckt netg5184 g5184_1 g5184_0 gnd +C1 g5184_1 gnd 2.080806f +C2 g5184_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5184_0 2.224404 +R2 g5184_1 1 2.224404 +.ends + +.subckt netg6526 g6526_0 g6526_1 gnd +C1 g6526_0 gnd 2.080806f +C2 g6526_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6526_0 2.224404 +R2 1 g6526_1 2.224404 +.ends + +.subckt netg6983 g6983_0 g6983_1 gnd +C1 g6983_0 gnd 2.080806f +C2 g6983_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6983_0 1 2.224404 +R2 1 g6983_1 2.224404 +.ends + +.subckt netg6735 g6735_0 g6735_1 gnd +C1 g6735_0 gnd 2.080806f +C2 g6735_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6735_0 2.224404 +R2 g6735_1 1 2.224404 +.ends + +.subckt netg1428 g1428_1 g1428_0 gnd +C1 g1428_1 gnd 2.080806f +C2 g1428_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1428_0 2.224404 +R2 1 g1428_1 2.224404 +.ends + +.subckt netg2224 g2224_1 g2224_0 gnd +C1 g2224_1 gnd 2.080806f +C2 g2224_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2224_0 2.224404 +R2 g2224_1 1 2.224404 +.ends + +.subckt netx92 x92_0 x92_1 gnd +C1 x92_0 gnd 2.080806f +C2 x92_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x92_0 2.224404 +R2 x92_1 1 2.224404 +.ends + +.subckt netg7371 g7371_0 g7371_1 gnd +C1 g7371_0 gnd 2.080806f +C2 g7371_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7371_0 1 2.224404 +R2 1 g7371_1 2.224404 +.ends + +.subckt netg7077 g7077_0 g7077_1 gnd +C1 g7077_0 gnd 2.080806f +C2 g7077_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7077_0 1 2.224404 +R2 1 g7077_1 2.224404 +.ends + +.subckt netg7296 g7296_0 g7296_1 gnd +C1 g7296_0 gnd 2.080806f +C2 g7296_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7296_0 2.224404 +R2 g7296_1 1 2.224404 +.ends + +.subckt netx501 x501_0 x501_1 gnd +C1 x501_0 gnd 2.080806f +C2 x501_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x501_0 2.224404 +R2 x501_1 1 2.224404 +.ends + +.subckt netg880 g880_2 g880_0 gnd +C1 g880_2 gnd 2.080806f +C2 g880_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g880_0 1 2.224404 +R2 1 g880_2 2.224404 +.ends + +.subckt netg6130 g6130_1 g6130_0 gnd +C1 g6130_1 gnd 2.080806f +C2 g6130_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6130_0 2.224404 +R2 1 g6130_1 2.224404 +.ends + +.subckt netg83 g83_0 g83_1 gnd +C1 g83_0 gnd 2.080806f +C2 g83_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g83_0 2.224404 +R2 1 g83_1 2.224404 +.ends + +.subckt netg7278 g7278_1 g7278_0 gnd +C1 g7278_1 gnd 2.080806f +C2 g7278_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7278_0 2.224404 +R2 g7278_1 1 2.224404 +.ends + +.subckt netg1531 g1531_1 g1531_0 gnd +C1 g1531_1 gnd 2.080806f +C2 g1531_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1531_0 2.224404 +R2 g1531_1 1 2.224404 +.ends + +.subckt netg2489 g2489_2 g2489_1 g2489_0 gnd +C1 g2489_2 gnd 2.080806f +C2 g2489_1 gnd 2.080806f +C3 g2489_0 gnd 2.080806f +R1 g2489_0 g2489_1 2.224404 +R2 g2489_2 g2489_0 2.224404 +.ends + +.subckt netg6307 g6307_1 g6307_0 gnd +C1 g6307_1 gnd 2.080806f +C2 g6307_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6307_0 1 2.224404 +R2 g6307_1 1 2.224404 +.ends + +.subckt netg6505 g6505_1 g6505_0 gnd +C1 g6505_1 gnd 2.080806f +C2 g6505_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6505_0 2.224404 +R2 g6505_1 1 2.224404 +.ends + +.subckt netg5767 g5767_1 g5767_0 gnd +C1 g5767_1 gnd 2.080806f +C2 g5767_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5767_0 1 2.224404 +R2 1 g5767_1 2.224404 +.ends + +.subckt netg6652 g6652_0 g6652_1 gnd +C1 g6652_0 gnd 2.080806f +C2 g6652_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6652_0 2.224404 +R2 g6652_1 1 2.224404 +.ends + +.subckt netg6291 g6291_1 g6291_0 gnd +C1 g6291_1 gnd 2.080806f +C2 g6291_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6291_0 1 2.224404 +R2 g6291_1 1 2.224404 +.ends + +.subckt netg5505 g5505_1 g5505_2 gnd +C1 g5505_1 gnd 2.080806f +C2 g5505_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5505_1 1 2.224404 +R2 1 g5505_2 2.224404 +.ends + +.subckt netx261 x261_0 x261_1 gnd +C1 x261_0 gnd 2.080806f +C2 x261_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x261_0 1 2.224404 +R2 1 x261_1 2.224404 +.ends + +.subckt netg6172 g6172_0 g6172_1 gnd +C1 g6172_0 gnd 2.080806f +C2 g6172_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6172_0 2.224404 +R2 g6172_1 1 2.224404 +.ends + +.subckt netg5300 g5300_1 g5300_0 gnd +C1 g5300_1 gnd 2.080806f +C2 g5300_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5300_0 2.224404 +R2 1 g5300_1 2.224404 +.ends + +.subckt netg5833 g5833_1 g5833_0 gnd +C1 g5833_1 gnd 2.080806f +C2 g5833_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5833_0 1 2.224404 +R2 1 g5833_1 2.224404 +.ends + +.subckt netg6612 g6612_0 g6612_1 gnd +C1 g6612_0 gnd 2.080806f +C2 g6612_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6612_0 2.224404 +R2 g6612_1 1 2.224404 +.ends + +.subckt netg4416 g4416_1 g4416_0 gnd +C1 g4416_1 gnd 2.080806f +C2 g4416_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4416_0 1 2.224404 +R2 1 g4416_1 2.224404 +.ends + +.subckt netg4073 g4073_1 g4073_0 gnd +C1 g4073_1 gnd 2.080806f +C2 g4073_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4073_0 1 2.224404 +R2 1 g4073_1 2.224404 +.ends + +.subckt netg946 g946_2 g946_1 gnd +C1 g946_2 gnd 2.080806f +C2 g946_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g946_2 2.224404 +R2 g946_1 1 2.224404 +.ends + +.subckt netg7124 g7124_0 g7124_1 gnd +C1 g7124_0 gnd 2.080806f +C2 g7124_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7124_0 1 2.224404 +R2 1 g7124_1 2.224404 +.ends + +.subckt netg3336 g3336_0 g3336_1 g3336_2 gnd +C1 g3336_0 gnd 2.080806f +C2 g3336_1 gnd 2.080806f +C3 g3336_2 gnd 2.080806f +R1 g3336_2 g3336_0 2.224404 +R2 g3336_1 g3336_2 2.224404 +.ends + +.subckt netg871 g871_1 g871_2 gnd +C1 g871_1 gnd 2.080806f +C2 g871_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g871_2 2.224404 +R2 g871_1 1 2.224404 +.ends + +.subckt netg3216 g3216_0 g3216_2 g3216_1 gnd +C1 g3216_0 gnd 2.080806f +C2 g3216_2 gnd 2.080806f +C3 g3216_1 gnd 2.080806f +R1 g3216_1 g3216_0 2.224404 +R2 g3216_0 g3216_2 2.224404 +.ends + +.subckt netg2516 g2516_2 g2516_1 gnd +C1 g2516_2 gnd 2.080806f +C2 g2516_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2516_1 2.224404 +R2 g2516_2 1 2.224404 +.ends + +.subckt netg4011 g4011_1 g4011_0 gnd +C1 g4011_1 gnd 2.080806f +C2 g4011_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4011_0 2.224404 +R2 g4011_1 1 2.224404 +.ends + +.subckt netg3532 g3532_1 g3532_0 gnd +C1 g3532_1 gnd 2.080806f +C2 g3532_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3532_0 2.224404 +R2 1 g3532_1 2.224404 +.ends + +.subckt netg4186 g4186_1 g4186_0 gnd +C1 g4186_1 gnd 2.080806f +C2 g4186_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4186_0 2.224404 +R2 g4186_1 1 2.224404 +.ends + +.subckt netg4274 g4274_1 g4274_0 gnd +C1 g4274_1 gnd 2.080806f +C2 g4274_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4274_0 1 2.224404 +R2 1 g4274_1 2.224404 +.ends + +.subckt netg2674 g2674_1 g2674_2 g2674_0 gnd +C1 g2674_1 gnd 2.080806f +C2 g2674_2 gnd 2.080806f +C3 g2674_0 gnd 2.080806f +R1 g2674_1 g2674_0 2.224404 +R2 g2674_2 g2674_1 2.224404 +.ends + +.subckt netg4269 g4269_1 g4269_0 gnd +C1 g4269_1 gnd 2.080806f +C2 g4269_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4269_0 2.224404 +R2 1 g4269_1 2.224404 +.ends + +.subckt netg5229 g5229_2 g5229_1 g5229_0 gnd +C1 g5229_2 gnd 2.080806f +C2 g5229_1 gnd 2.080806f +C3 g5229_0 gnd 2.080806f +R1 g5229_2 g5229_0 2.224404 +R2 g5229_1 g5229_2 2.224404 +.ends + +.subckt netg7130 g7130_0 g7130_1 gnd +C1 g7130_0 gnd 2.080806f +C2 g7130_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7130_0 1 2.224404 +R2 1 g7130_1 2.224404 +.ends + +.subckt netg5223 g5223_2 g5223_1 g5223_0 gnd +C1 g5223_2 gnd 2.080806f +C2 g5223_1 gnd 2.080806f +C3 g5223_0 gnd 2.080806f +R1 g5223_0 g5223_1 2.224404 +R2 g5223_2 g5223_0 2.224404 +.ends + +.subckt netg3574 g3574_0 g3574_1 gnd +C1 g3574_0 gnd 2.080806f +C2 g3574_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3574_0 2.224404 +R2 g3574_1 1 2.224404 +.ends + +.subckt netg3525 g3525_0 g3525_1 gnd +C1 g3525_0 gnd 2.080806f +C2 g3525_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3525_0 2.224404 +R2 g3525_1 1 2.224404 +.ends + +.subckt netg5467 g5467_1 g5467_0 gnd +C1 g5467_1 gnd 2.080806f +C2 g5467_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5467_0 2.224404 +R2 1 g5467_1 2.224404 +.ends + +.subckt netg682 g682_1 g682_0 gnd +C1 g682_1 gnd 2.080806f +C2 g682_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g682_0 2.224404 +R2 g682_1 1 2.224404 +.ends + +.subckt netg1132 g1132_0 g1132_1 gnd +C1 g1132_0 gnd 2.080806f +C2 g1132_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1132_0 2.224404 +R2 g1132_1 1 2.224404 +.ends + +.subckt netg856 g856_2 g856_1 g856_0 gnd +C1 g856_2 gnd 2.080806f +C2 g856_1 gnd 2.080806f +C3 g856_0 gnd 2.080806f +R1 g856_0 g856_1 2.224404 +R2 g856_2 g856_0 2.224404 +.ends + +.subckt netg3890 g3890_0 g3890_1 gnd +C1 g3890_0 gnd 2.080806f +C2 g3890_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3890_0 1 2.224404 +R2 1 g3890_1 2.224404 +.ends + +.subckt netg1256 g1256_0 g1256_1 gnd +C1 g1256_0 gnd 2.080806f +C2 g1256_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1256_0 2.224404 +R2 g1256_1 1 2.224404 +.ends + +.subckt netg4235 g4235_1 g4235_0 gnd +C1 g4235_1 gnd 2.080806f +C2 g4235_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4235_0 1 2.224404 +R2 g4235_1 1 2.224404 +.ends + +.subckt netg3512 g3512_0 g3512_1 gnd +C1 g3512_0 gnd 2.080806f +C2 g3512_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3512_0 1 2.224404 +R2 g3512_1 1 2.224404 +.ends + +.subckt netg5077 g5077_0 g5077_2 gnd +C1 g5077_0 gnd 2.080806f +C2 g5077_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5077_0 2.224404 +R2 g5077_2 1 2.224404 +.ends + +.subckt netg868 g868_2 g868_0 g868_1 gnd +C1 g868_2 gnd 2.080806f +C2 g868_0 gnd 2.080806f +C3 g868_1 gnd 2.080806f +R1 g868_0 g868_1 2.224404 +R2 g868_1 g868_2 2.224404 +.ends + +.subckt netg1410 g1410_0 g1410_1 gnd +C1 g1410_0 gnd 2.080806f +C2 g1410_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1410_0 2.224404 +R2 g1410_1 1 2.224404 +.ends + +.subckt netg2633 g2633_1 g2633_0 gnd +C1 g2633_1 gnd 2.080806f +C2 g2633_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2633_0 2.224404 +R2 g2633_1 1 2.224404 +.ends + +.subckt netg5000 g5000_0 g5000_2 gnd +C1 g5000_0 gnd 2.080806f +C2 g5000_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5000_0 1 2.224404 +R2 1 g5000_2 2.224404 +.ends + +.subckt netg6621 g6621_0 g6621_1 gnd +C1 g6621_0 gnd 2.080806f +C2 g6621_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6621_0 1 2.224404 +R2 1 g6621_1 2.224404 +.ends + +.subckt netg1888 g1888_0 g1888_1 gnd +C1 g1888_0 gnd 2.080806f +C2 g1888_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1888_0 1 2.224404 +R2 1 g1888_1 2.224404 +.ends + +.subckt netg6650 g6650_0 g6650_1 gnd +C1 g6650_0 gnd 2.080806f +C2 g6650_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6650_0 2.224404 +R2 g6650_1 1 2.224404 +.ends + +.subckt netg7113 g7113_0 g7113_1 gnd +C1 g7113_0 gnd 2.080806f +C2 g7113_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7113_0 1 2.224404 +R2 1 g7113_1 2.224404 +.ends + +.subckt netg5519 g5519_1 g5519_0 gnd +C1 g5519_1 gnd 2.080806f +C2 g5519_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5519_0 1 2.224404 +R2 1 g5519_1 2.224404 +.ends + +.subckt netg5920 g5920_1 g5920_2 gnd +C1 g5920_1 gnd 2.080806f +C2 g5920_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5920_2 2.224404 +R2 1 g5920_1 2.224404 +.ends + +.subckt netg886 g886_0 g886_2 gnd +C1 g886_0 gnd 2.080806f +C2 g886_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g886_0 1 2.224404 +R2 1 g886_2 2.224404 +.ends + +.subckt netg3364 g3364_1 g3364_0 gnd +C1 g3364_1 gnd 2.080806f +C2 g3364_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3364_0 2.224404 +R2 g3364_1 1 2.224404 +.ends + +.subckt netg7271 g7271_1 g7271_0 gnd +C1 g7271_1 gnd 2.080806f +C2 g7271_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7271_0 1 2.224404 +R2 1 g7271_1 2.224404 +.ends + +.subckt netg5386 g5386_0 g5386_1 gnd +C1 g5386_0 gnd 2.080806f +C2 g5386_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5386_0 1 2.224404 +R2 1 g5386_1 2.224404 +.ends + +.subckt netg7426 g7426_0 g7426_1 gnd +C1 g7426_0 gnd 2.080806f +C2 g7426_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7426_0 2.224404 +R2 g7426_1 1 2.224404 +.ends + +.subckt netg5469 g5469_1 g5469_0 gnd +C1 g5469_1 gnd 2.080806f +C2 g5469_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5469_0 2.224404 +R2 g5469_1 1 2.224404 +.ends + +.subckt netg6878 g6878_0 g6878_1 gnd +C1 g6878_0 gnd 2.080806f +C2 g6878_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6878_0 1 2.224404 +R2 1 g6878_1 2.224404 +.ends + +.subckt netg4320 g4320_0 g4320_1 gnd +C1 g4320_0 gnd 2.080806f +C2 g4320_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4320_0 2.224404 +R2 g4320_1 1 2.224404 +.ends + +.subckt netg7140 g7140_0 g7140_1 gnd +C1 g7140_0 gnd 2.080806f +C2 g7140_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7140_0 2.224404 +R2 g7140_1 1 2.224404 +.ends + +.subckt netg1901 g1901_1 g1901_0 gnd +C1 g1901_1 gnd 2.080806f +C2 g1901_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1901_0 1 2.224404 +R2 1 g1901_1 2.224404 +.ends + +.subckt netg3065 g3065_1 g3065_0 gnd +C1 g3065_1 gnd 2.080806f +C2 g3065_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3065_0 2.224404 +R2 g3065_1 1 2.224404 +.ends + +.subckt netg5513 g5513_1 g5513_0 gnd +C1 g5513_1 gnd 2.080806f +C2 g5513_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5513_0 2.224404 +R2 g5513_1 1 2.224404 +.ends + +.subckt netg4946 g4946_2 g4946_0 g4946_1 gnd +C1 g4946_2 gnd 2.080806f +C2 g4946_0 gnd 2.080806f +C3 g4946_1 gnd 2.080806f +R1 g4946_0 g4946_2 2.224404 +R2 g4946_2 g4946_1 2.224404 +.ends + +.subckt netg7080 g7080_0 g7080_1 gnd +C1 g7080_0 gnd 2.080806f +C2 g7080_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7080_0 2.224404 +R2 1 g7080_1 2.224404 +.ends + +.subckt netg4439 g4439_0 g4439_1 gnd +C1 g4439_0 gnd 2.080806f +C2 g4439_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4439_0 1 2.224404 +R2 1 g4439_1 2.224404 +.ends + +.subckt netg3498 g3498_1 g3498_0 gnd +C1 g3498_1 gnd 2.080806f +C2 g3498_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3498_0 1 2.224404 +R2 1 g3498_1 2.224404 +.ends + +.subckt netg3078 g3078_0 g3078_1 gnd +C1 g3078_0 gnd 2.080806f +C2 g3078_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3078_0 1 2.224404 +R2 g3078_1 1 2.224404 +.ends + +.subckt netg5658 g5658_1 g5658_2 gnd +C1 g5658_1 gnd 2.080806f +C2 g5658_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5658_1 2.224404 +R2 g5658_2 1 2.224404 +.ends + +.subckt netg2609 g2609_2 g2609_1 gnd +C1 g2609_2 gnd 2.080806f +C2 g2609_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2609_1 1 2.224404 +R2 g2609_2 1 2.224404 +.ends + +.subckt netg3969 g3969_0 g3969_1 gnd +C1 g3969_0 gnd 2.080806f +C2 g3969_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3969_0 1 2.224404 +R2 g3969_1 1 2.224404 +.ends + +.subckt netg6699 g6699_0 g6699_1 gnd +C1 g6699_0 gnd 2.080806f +C2 g6699_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6699_0 2.224404 +R2 g6699_1 1 2.224404 +.ends + +.subckt netg1309 g1309_1 g1309_0 gnd +C1 g1309_1 gnd 2.080806f +C2 g1309_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1309_0 2.224404 +R2 g1309_1 1 2.224404 +.ends + +.subckt netg5640 g5640_0 g5640_2 gnd +C1 g5640_0 gnd 2.080806f +C2 g5640_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5640_0 1 2.224404 +R2 1 g5640_2 2.224404 +.ends + +.subckt netg5056 g5056_1 g5056_2 gnd +C1 g5056_1 gnd 2.080806f +C2 g5056_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5056_1 1 2.224404 +R2 g5056_2 1 2.224404 +.ends + +.subckt netg3339 g3339_2 g3339_1 gnd +C1 g3339_2 gnd 2.080806f +C2 g3339_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3339_1 1 2.224404 +R2 1 g3339_2 2.224404 +.ends + +.subckt netg6517 g6517_1 g6517_0 gnd +C1 g6517_1 gnd 2.080806f +C2 g6517_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6517_0 1 2.224404 +R2 g6517_1 1 2.224404 +.ends + +.subckt netg1257 g1257_1 g1257_0 gnd +C1 g1257_1 gnd 2.080806f +C2 g1257_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1257_0 1 2.224404 +R2 g1257_1 1 2.224404 +.ends + +.subckt netg5468 g5468_0 g5468_1 gnd +C1 g5468_0 gnd 2.080806f +C2 g5468_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5468_0 2.224404 +R2 g5468_1 1 2.224404 +.ends + +.subckt netg5331 g5331_1 g5331_0 gnd +C1 g5331_1 gnd 2.080806f +C2 g5331_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5331_0 2.224404 +R2 g5331_1 1 2.224404 +.ends + +.subckt netg5768 g5768_1 g5768_0 gnd +C1 g5768_1 gnd 2.080806f +C2 g5768_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5768_0 2.224404 +R2 g5768_1 1 2.224404 +.ends + +.subckt netg5543 g5543_1 g5543_0 g5543_2 gnd +C1 g5543_1 gnd 2.080806f +C2 g5543_0 gnd 2.080806f +C3 g5543_2 gnd 2.080806f +R1 g5543_0 g5543_1 2.224404 +R2 g5543_2 g5543_1 2.224404 +.ends + +.subckt netg3156 g3156_0 g3156_1 g3156_2 gnd +C1 g3156_0 gnd 2.080806f +C2 g3156_1 gnd 2.080806f +C3 g3156_2 gnd 2.080806f +R1 g3156_2 g3156_0 2.224404 +R2 g3156_1 g3156_2 2.224404 +.ends + +.subckt netg3905 g3905_0 g3905_1 gnd +C1 g3905_0 gnd 2.080806f +C2 g3905_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3905_0 2.224404 +R2 g3905_1 1 2.224404 +.ends + +.subckt netg3306 g3306_1 g3306_2 gnd +C1 g3306_1 gnd 2.080806f +C2 g3306_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3306_1 1 2.224404 +R2 1 g3306_2 2.224404 +.ends + +.subckt netg6506 g6506_0 g6506_1 gnd +C1 g6506_0 gnd 2.080806f +C2 g6506_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6506_0 2.224404 +R2 g6506_1 1 2.224404 +.ends + +.subckt netg5356 g5356_1 g5356_0 gnd +C1 g5356_1 gnd 2.080806f +C2 g5356_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5356_0 2.224404 +R2 1 g5356_1 2.224404 +.ends + +.subckt netg916 g916_2 g916_1 gnd +C1 g916_2 gnd 2.080806f +C2 g916_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g916_2 2.224404 +R2 1 g916_1 2.224404 +.ends + +.subckt netg6394 g6394_0 g6394_1 gnd +C1 g6394_0 gnd 2.080806f +C2 g6394_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6394_0 2.224404 +R2 g6394_1 1 2.224404 +.ends + +.subckt netg5015 g5015_1 g5015_2 g5015_0 gnd +C1 g5015_1 gnd 2.080806f +C2 g5015_2 gnd 2.080806f +C3 g5015_0 gnd 2.080806f +R1 g5015_1 g5015_0 2.224404 +R2 g5015_1 g5015_2 2.224404 +.ends + +.subckt netg6422 g6422_1 g6422_0 gnd +C1 g6422_1 gnd 2.080806f +C2 g6422_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6422_0 1 2.224404 +R2 1 g6422_1 2.224404 +.ends + +.subckt netg3059 g3059_0 g3059_1 gnd +C1 g3059_0 gnd 2.080806f +C2 g3059_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3059_0 2.224404 +R2 g3059_1 1 2.224404 +.ends + +.subckt netg2811 g2811_1 g2811_0 gnd +C1 g2811_1 gnd 2.080806f +C2 g2811_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2811_0 1 2.224404 +R2 1 g2811_1 2.224404 +.ends + +.subckt netg3926 g3926_0 g3926_1 gnd +C1 g3926_0 gnd 2.080806f +C2 g3926_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3926_0 2.224404 +R2 g3926_1 1 2.224404 +.ends + +.subckt netg3110 g3110_0 g3110_2 g3110_1 gnd +C1 g3110_0 gnd 2.080806f +C2 g3110_2 gnd 2.080806f +C3 g3110_1 gnd 2.080806f +R1 g3110_2 g3110_0 2.224404 +R2 g3110_1 g3110_2 2.224404 +.ends + +.subckt netg1889 g1889_0 g1889_1 gnd +C1 g1889_0 gnd 2.080806f +C2 g1889_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1889_0 2.224404 +R2 g1889_1 1 2.224404 +.ends + +.subckt netg6925 g6925_0 g6925_1 gnd +C1 g6925_0 gnd 2.080806f +C2 g6925_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6925_0 2.224404 +R2 g6925_1 1 2.224404 +.ends + +.subckt netg6313 g6313_1 g6313_0 gnd +C1 g6313_1 gnd 2.080806f +C2 g6313_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6313_0 2.224404 +R2 g6313_1 1 2.224404 +.ends + +.subckt netg3055 g3055_1 g3055_0 gnd +C1 g3055_1 gnd 2.080806f +C2 g3055_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3055_0 1 2.224404 +R2 1 g3055_1 2.224404 +.ends + +.subckt netg4016 g4016_1 g4016_0 gnd +C1 g4016_1 gnd 2.080806f +C2 g4016_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4016_0 2.224404 +R2 g4016_1 1 2.224404 +.ends + +.subckt netg2653 g2653_2 g2653_0 gnd +C1 g2653_2 gnd 2.080806f +C2 g2653_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2653_0 2.224404 +R2 g2653_2 1 2.224404 +.ends + +.subckt netg6518 g6518_0 g6518_1 gnd +C1 g6518_0 gnd 2.080806f +C2 g6518_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6518_0 1 2.224404 +R2 1 g6518_1 2.224404 +.ends + +.subckt netg6010 g6010_0 g6010_1 gnd +C1 g6010_0 gnd 2.080806f +C2 g6010_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6010_0 1 2.224404 +R2 1 g6010_1 2.224404 +.ends + +.subckt netg3494 g3494_0 g3494_1 gnd +C1 g3494_0 gnd 2.080806f +C2 g3494_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3494_0 1 2.224404 +R2 1 g3494_1 2.224404 +.ends + +.subckt netg2928 g2928_0 g2928_1 gnd +C1 g2928_0 gnd 2.080806f +C2 g2928_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2928_0 2.224404 +R2 g2928_1 1 2.224404 +.ends + +.subckt netg4389 g4389_2 g4389_0 g4389_1 gnd +C1 g4389_2 gnd 2.080806f +C2 g4389_0 gnd 2.080806f +C3 g4389_1 gnd 2.080806f +R1 g4389_2 g4389_0 2.224404 +R2 g4389_1 g4389_2 2.224404 +.ends + +.subckt netg5953 g5953_0 g5953_1 gnd +C1 g5953_0 gnd 2.080806f +C2 g5953_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5953_0 2.224404 +R2 g5953_1 1 2.224404 +.ends + +.subckt netg2837 g2837_1 g2837_0 gnd +C1 g2837_1 gnd 2.080806f +C2 g2837_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2837_0 2.224404 +R2 g2837_1 1 2.224404 +.ends + +.subckt netg6499 g6499_2 g6499_0 gnd +C1 g6499_2 gnd 2.080806f +C2 g6499_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6499_0 1 2.224404 +R2 1 g6499_2 2.224404 +.ends + +.subckt netg6555 g6555_0 g6555_1 gnd +C1 g6555_0 gnd 2.080806f +C2 g6555_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6555_0 1 2.224404 +R2 1 g6555_1 2.224404 +.ends + +.subckt netg4341 g4341_0 g4341_1 gnd +C1 g4341_0 gnd 2.080806f +C2 g4341_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4341_0 2.224404 +R2 g4341_1 1 2.224404 +.ends + +.subckt netg3300 g3300_1 g3300_2 g3300_0 gnd +C1 g3300_1 gnd 2.080806f +C2 g3300_2 gnd 2.080806f +C3 g3300_0 gnd 2.080806f +R1 g3300_2 g3300_0 2.224404 +R2 g3300_1 g3300_2 2.224404 +.ends + +.subckt netg7072 g7072_0 g7072_1 gnd +C1 g7072_0 gnd 2.080806f +C2 g7072_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7072_0 2.224404 +R2 g7072_1 1 2.224404 +.ends + +.subckt netg5646 g5646_2 g5646_1 gnd +C1 g5646_2 gnd 2.080806f +C2 g5646_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5646_1 1 2.224404 +R2 1 g5646_2 2.224404 +.ends + +.subckt netg3312 g3312_1 g3312_2 gnd +C1 g3312_1 gnd 2.080806f +C2 g3312_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3312_2 1 2.224404 +R2 1 g3312_1 2.224404 +.ends + +.subckt netg4420 g4420_0 g4420_1 gnd +C1 g4420_0 gnd 2.080806f +C2 g4420_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4420_0 1 2.224404 +R2 1 g4420_1 2.224404 +.ends + +.subckt netg7253 g7253_0 g7253_1 gnd +C1 g7253_0 gnd 2.080806f +C2 g7253_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7253_0 2.224404 +R2 1 g7253_1 2.224404 +.ends + +.subckt netg6410 g6410_1 g6410_0 gnd +C1 g6410_1 gnd 2.080806f +C2 g6410_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6410_0 2.224404 +R2 g6410_1 1 2.224404 +.ends + +.subckt netg1018 g1018_1 g1018_2 g1018_0 gnd +C1 g1018_1 gnd 2.080806f +C2 g1018_2 gnd 2.080806f +C3 g1018_0 gnd 2.080806f +R1 g1018_1 g1018_0 2.224404 +R2 g1018_2 g1018_1 2.224404 +.ends + +.subckt netg5813 g5813_1 g5813_0 g5813_2 gnd +C1 g5813_1 gnd 2.080806f +C2 g5813_0 gnd 2.080806f +C3 g5813_2 gnd 2.080806f +R1 g5813_2 g5813_0 2.224404 +R2 g5813_1 g5813_2 2.224404 +.ends + +.subckt netg4890 g4890_2 g4890_1 g4890_0 gnd +C1 g4890_2 gnd 2.080806f +C2 g4890_1 gnd 2.080806f +C3 g4890_0 gnd 2.080806f +R1 g4890_2 g4890_0 2.224404 +R2 g4890_1 g4890_2 2.224404 +.ends + +.subckt netg1288 g1288_1 g1288_0 gnd +C1 g1288_1 gnd 2.080806f +C2 g1288_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1288_0 1 2.224404 +R2 1 g1288_1 2.224404 +.ends + +.subckt netg4310 g4310_0 g4310_1 gnd +C1 g4310_0 gnd 2.080806f +C2 g4310_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4310_0 1 2.224404 +R2 1 g4310_1 2.224404 +.ends + +.subckt netg5774 g5774_0 g5774_1 gnd +C1 g5774_0 gnd 2.080806f +C2 g5774_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5774_0 2.224404 +R2 g5774_1 1 2.224404 +.ends + +.subckt netg3168 g3168_0 g3168_1 g3168_2 gnd +C1 g3168_0 gnd 2.080806f +C2 g3168_1 gnd 2.080806f +C3 g3168_2 gnd 2.080806f +R1 g3168_0 g3168_2 2.224404 +R2 g3168_1 g3168_2 2.224404 +.ends + +.subckt netg1951 g1951_2 g1951_1 g1951_0 gnd +C1 g1951_2 gnd 2.080806f +C2 g1951_1 gnd 2.080806f +C3 g1951_0 gnd 2.080806f +R1 g1951_0 g1951_2 2.224404 +R2 g1951_2 g1951_1 2.224404 +.ends + +.subckt netg2817 g2817_1 g2817_0 gnd +C1 g2817_1 gnd 2.080806f +C2 g2817_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2817_0 2.224404 +R2 g2817_1 1 2.224404 +.ends + +.subckt netg5790 g5790_1 g5790_0 gnd +C1 g5790_1 gnd 2.080806f +C2 g5790_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5790_0 2.224404 +R2 g5790_1 1 2.224404 +.ends + +.subckt netg3159 g3159_1 g3159_2 gnd +C1 g3159_1 gnd 2.080806f +C2 g3159_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3159_2 2.224404 +R2 g3159_1 1 2.224404 +.ends + +.subckt netg3101 g3101_0 g3101_1 gnd +C1 g3101_0 gnd 2.080806f +C2 g3101_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3101_0 1 2.224404 +R2 1 g3101_1 2.224404 +.ends + +.subckt netg4142 g4142_0 g4142_1 gnd +C1 g4142_0 gnd 2.080806f +C2 g4142_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4142_0 1 2.224404 +R2 1 g4142_1 2.224404 +.ends + +.subckt netg5359 g5359_1 g5359_0 gnd +C1 g5359_1 gnd 2.080806f +C2 g5359_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5359_0 2.224404 +R2 g5359_1 1 2.224404 +.ends + +.subckt netg4417 g4417_0 g4417_1 gnd +C1 g4417_0 gnd 2.080806f +C2 g4417_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4417_0 2.224404 +R2 g4417_1 1 2.224404 +.ends + +.subckt netg7054 g7054_0 g7054_2 g7054_1 gnd +C1 g7054_0 gnd 2.080806f +C2 g7054_2 gnd 2.080806f +C3 g7054_1 gnd 2.080806f +R1 g7054_1 g7054_0 2.224404 +R2 g7054_0 g7054_2 2.224404 +.ends + +.subckt netg6508 g6508_0 g6508_1 gnd +C1 g6508_0 gnd 2.080806f +C2 g6508_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6508_0 1 2.224404 +R2 1 g6508_1 2.224404 +.ends + +.subckt netg6558 g6558_0 g6558_1 gnd +C1 g6558_0 gnd 2.080806f +C2 g6558_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6558_0 2.224404 +R2 g6558_1 1 2.224404 +.ends + +.subckt netg6344 g6344_1 g6344_0 gnd +C1 g6344_1 gnd 2.080806f +C2 g6344_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6344_0 1 2.224404 +R2 1 g6344_1 2.224404 +.ends + +.subckt netg6615 g6615_1 g6615_2 gnd +C1 g6615_1 gnd 2.080806f +C2 g6615_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6615_1 1 2.224404 +R2 g6615_2 1 2.224404 +.ends + +.subckt netg7351 g7351_0 g7351_1 gnd +C1 g7351_0 gnd 2.080806f +C2 g7351_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7351_0 2.224404 +R2 g7351_1 1 2.224404 +.ends + +.subckt netg6645 g6645_0 g6645_2 g6645_1 gnd +C1 g6645_0 gnd 2.080806f +C2 g6645_2 gnd 2.080806f +C3 g6645_1 gnd 2.080806f +R1 g6645_2 g6645_0 2.224404 +R2 g6645_1 g6645_2 2.224404 +.ends + +.subckt netg6984 g6984_1 g6984_0 gnd +C1 g6984_1 gnd 2.080806f +C2 g6984_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6984_0 2.224404 +R2 g6984_1 1 2.224404 +.ends + +.subckt netg2591 g2591_0 g2591_1 g2591_2 gnd +C1 g2591_0 gnd 2.080806f +C2 g2591_1 gnd 2.080806f +C3 g2591_2 gnd 2.080806f +R1 g2591_2 g2591_0 2.224404 +R2 g2591_1 g2591_2 2.224404 +.ends + +.subckt netg1312 g1312_1 g1312_0 gnd +C1 g1312_1 gnd 2.080806f +C2 g1312_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1312_0 1 2.224404 +R2 1 g1312_1 2.224404 +.ends + +.subckt netg1070 g1070_2 g1070_0 g1070_1 gnd +C1 g1070_2 gnd 2.080806f +C2 g1070_0 gnd 2.080806f +C3 g1070_1 gnd 2.080806f +R1 g1070_0 g1070_2 2.224404 +R2 g1070_2 g1070_1 2.224404 +.ends + +.subckt netg5409 g5409_1 g5409_0 gnd +C1 g5409_1 gnd 2.080806f +C2 g5409_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5409_0 1 2.224404 +R2 1 g5409_1 2.224404 +.ends + +.subckt netg4258 g4258_1 g4258_0 gnd +C1 g4258_1 gnd 2.080806f +C2 g4258_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4258_0 1 2.224404 +R2 1 g4258_1 2.224404 +.ends + +.subckt netg7170 g7170_0 g7170_1 gnd +C1 g7170_0 gnd 2.080806f +C2 g7170_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7170_0 1 2.224404 +R2 1 g7170_1 2.224404 +.ends + +.subckt netg7391 g7391_1 g7391_2 gnd +C1 g7391_1 gnd 2.080806f +C2 g7391_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7391_2 2.224404 +R2 g7391_1 1 2.224404 +.ends + +.subckt netg5147 g5147_2 g5147_0 gnd +C1 g5147_2 gnd 2.080806f +C2 g5147_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5147_0 1 2.224404 +R2 1 g5147_2 2.224404 +.ends + +.subckt netg5585 g5585_0 g5585_1 gnd +C1 g5585_0 gnd 2.080806f +C2 g5585_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5585_0 1 2.224404 +R2 g5585_1 1 2.224404 +.ends + +.subckt netg7280 g7280_0 g7280_1 gnd +C1 g7280_0 gnd 2.080806f +C2 g7280_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7280_0 2.224404 +R2 g7280_1 1 2.224404 +.ends + +.subckt netg5552 g5552_1 g5552_0 gnd +C1 g5552_1 gnd 2.080806f +C2 g5552_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5552_0 2.224404 +R2 1 g5552_1 2.224404 +.ends + +.subckt netg6534 g6534_1 g6534_0 gnd +C1 g6534_1 gnd 2.080806f +C2 g6534_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6534_0 1 2.224404 +R2 1 g6534_1 2.224404 +.ends + +.subckt netg6589 g6589_0 g6589_1 gnd +C1 g6589_0 gnd 2.080806f +C2 g6589_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6589_0 2.224404 +R2 g6589_1 1 2.224404 +.ends + +.subckt netg3975 g3975_0 g3975_1 gnd +C1 g3975_0 gnd 2.080806f +C2 g3975_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3975_0 1 2.224404 +R2 g3975_1 1 2.224404 +.ends + +.subckt netg7234 g7234_2 g7234_1 g7234_0 gnd +C1 g7234_2 gnd 2.080806f +C2 g7234_1 gnd 2.080806f +C3 g7234_0 gnd 2.080806f +R1 g7234_0 g7234_1 2.224404 +R2 g7234_1 g7234_2 2.224404 +.ends + +.subckt netg4252 g4252_1 g4252_0 gnd +C1 g4252_1 gnd 2.080806f +C2 g4252_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4252_0 1 2.224404 +R2 1 g4252_1 2.224404 +.ends + +.subckt netg2713 g2713_1 g2713_0 g2713_2 gnd +C1 g2713_1 gnd 2.080806f +C2 g2713_0 gnd 2.080806f +C3 g2713_2 gnd 2.080806f +R1 g2713_1 g2713_0 2.224404 +R2 g2713_0 g2713_2 2.224404 +.ends + +.subckt netg5966 g5966_1 g5966_0 gnd +C1 g5966_1 gnd 2.080806f +C2 g5966_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5966_0 1 2.224404 +R2 1 g5966_1 2.224404 +.ends + +.subckt netg7295 g7295_1 g7295_0 gnd +C1 g7295_1 gnd 2.080806f +C2 g7295_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7295_0 2.224404 +R2 1 g7295_1 2.224404 +.ends + +.subckt netg6104 g6104_0 g6104_1 gnd +C1 g6104_0 gnd 2.080806f +C2 g6104_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6104_0 2.224404 +R2 1 g6104_1 2.224404 +.ends + +.subckt netg4371 g4371_0 g4371_2 g4371_1 gnd +C1 g4371_0 gnd 2.080806f +C2 g4371_2 gnd 2.080806f +C3 g4371_1 gnd 2.080806f +R1 g4371_0 g4371_2 2.224404 +R2 g4371_2 g4371_1 2.224404 +.ends + +.subckt netg6151 g6151_1 g6151_0 gnd +C1 g6151_1 gnd 2.080806f +C2 g6151_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6151_0 1 2.224404 +R2 g6151_1 1 2.224404 +.ends + +.subckt netg3562 g3562_0 g3562_1 gnd +C1 g3562_0 gnd 2.080806f +C2 g3562_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3562_0 2.224404 +R2 1 g3562_1 2.224404 +.ends + +.subckt netg1372 g1372_1 g1372_2 gnd +C1 g1372_1 gnd 2.080806f +C2 g1372_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1372_2 1 2.224404 +R2 1 g1372_1 2.224404 +.ends + +.subckt netg5276 g5276_0 g5276_1 gnd +C1 g5276_0 gnd 2.080806f +C2 g5276_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5276_0 1 2.224404 +R2 1 g5276_1 2.224404 +.ends + +.subckt netg6877 g6877_0 g6877_1 gnd +C1 g6877_0 gnd 2.080806f +C2 g6877_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6877_0 2.224404 +R2 1 g6877_1 2.224404 +.ends + +.subckt netg3001 g3001_1 g3001_0 gnd +C1 g3001_1 gnd 2.080806f +C2 g3001_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3001_0 2.224404 +R2 1 g3001_1 2.224404 +.ends + +.subckt netg6335 g6335_0 g6335_1 gnd +C1 g6335_0 gnd 2.080806f +C2 g6335_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6335_0 2.224404 +R2 g6335_1 1 2.224404 +.ends + +.subckt netg3505 g3505_1 g3505_0 gnd +C1 g3505_1 gnd 2.080806f +C2 g3505_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3505_0 2.224404 +R2 g3505_1 1 2.224404 +.ends + +.subckt netg4753 g4753_1 g4753_2 g4753_0 gnd +C1 g4753_1 gnd 2.080806f +C2 g4753_2 gnd 2.080806f +C3 g4753_0 gnd 2.080806f +R1 g4753_0 g4753_2 2.224404 +R2 g4753_2 g4753_1 2.224404 +.ends + +.subckt netg5188 g5188_2 g5188_1 gnd +C1 g5188_2 gnd 2.080806f +C2 g5188_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5188_2 2.224404 +R2 g5188_1 1 2.224404 +.ends + +.subckt netg2840 g2840_1 g2840_0 gnd +C1 g2840_1 gnd 2.080806f +C2 g2840_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2840_0 1 2.224404 +R2 1 g2840_1 2.224404 +.ends + +.subckt netg4187 g4187_1 g4187_0 gnd +C1 g4187_1 gnd 2.080806f +C2 g4187_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4187_0 1 2.224404 +R2 1 g4187_1 2.224404 +.ends + +.subckt netg3348 g3348_1 g3348_0 gnd +C1 g3348_1 gnd 2.080806f +C2 g3348_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3348_0 2.224404 +R2 1 g3348_1 2.224404 +.ends + +.subckt netg1556 g1556_0 g1556_1 gnd +C1 g1556_0 gnd 2.080806f +C2 g1556_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1556_0 1 2.224404 +R2 1 g1556_1 2.224404 +.ends + +.subckt netg7422 g7422_0 g7422_1 gnd +C1 g7422_0 gnd 2.080806f +C2 g7422_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7422_0 1 2.224404 +R2 1 g7422_1 2.224404 +.ends + +.subckt netg6212 g6212_1 g6212_0 gnd +C1 g6212_1 gnd 2.080806f +C2 g6212_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6212_0 2.224404 +R2 1 g6212_1 2.224404 +.ends + +.subckt netg4205 g4205_1 g4205_0 gnd +C1 g4205_1 gnd 2.080806f +C2 g4205_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4205_0 1 2.224404 +R2 1 g4205_1 2.224404 +.ends + +.subckt netg3426 g3426_2 g3426_1 gnd +C1 g3426_2 gnd 2.080806f +C2 g3426_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3426_1 2.224404 +R2 g3426_2 1 2.224404 +.ends + +.subckt netg4231 g4231_0 g4231_1 gnd +C1 g4231_0 gnd 2.080806f +C2 g4231_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4231_0 1 2.224404 +R2 1 g4231_1 2.224404 +.ends + +.subckt netg4970 g4970_0 g4970_2 g4970_1 gnd +C1 g4970_0 gnd 2.080806f +C2 g4970_2 gnd 2.080806f +C3 g4970_1 gnd 2.080806f +R1 g4970_1 g4970_0 2.224404 +R2 g4970_1 g4970_2 2.224404 +.ends + +.subckt netg6700 g6700_1 g6700_2 gnd +C1 g6700_1 gnd 2.080806f +C2 g6700_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6700_1 2.224404 +R2 g6700_2 1 2.224404 +.ends + +.subckt netg4337 g4337_0 g4337_1 gnd +C1 g4337_0 gnd 2.080806f +C2 g4337_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4337_0 2.224404 +R2 g4337_1 1 2.224404 +.ends + +.subckt netg2943 g2943_0 g2943_1 gnd +C1 g2943_0 gnd 2.080806f +C2 g2943_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2943_0 1 2.224404 +R2 1 g2943_1 2.224404 +.ends + +.subckt netg6230 g6230_0 g6230_1 g6230_2 gnd +C1 g6230_0 gnd 2.080806f +C2 g6230_1 gnd 2.080806f +C3 g6230_2 gnd 2.080806f +R1 g6230_2 g6230_0 2.224404 +R2 g6230_1 g6230_2 2.224404 +.ends + +.subckt netg4902 g4902_2 g4902_0 gnd +C1 g4902_2 gnd 2.080806f +C2 g4902_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4902_0 2.224404 +R2 g4902_2 1 2.224404 +.ends + +.subckt netx251 x251_0 x251_1 gnd +C1 x251_0 gnd 2.080806f +C2 x251_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x251_0 1 2.224404 +R2 1 x251_1 2.224404 +.ends + +.subckt netg5301 g5301_0 g5301_1 gnd +C1 g5301_0 gnd 2.080806f +C2 g5301_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5301_0 2.224404 +R2 g5301_1 1 2.224404 +.ends + +.subckt netg7369 g7369_1 g7369_0 gnd +C1 g7369_1 gnd 2.080806f +C2 g7369_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7369_0 1 2.224404 +R2 1 g7369_1 2.224404 +.ends + +.subckt netg2976 g2976_1 g2976_0 gnd +C1 g2976_1 gnd 2.080806f +C2 g2976_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2976_0 2.224404 +R2 g2976_1 1 2.224404 +.ends + +.subckt netg2621 g2621_2 g2621_0 g2621_1 gnd +C1 g2621_2 gnd 2.080806f +C2 g2621_0 gnd 2.080806f +C3 g2621_1 gnd 2.080806f +R1 g2621_0 g2621_2 2.224404 +R2 g2621_1 g2621_2 2.224404 +.ends + +.subckt netg6821 g6821_1 g6821_0 gnd +C1 g6821_1 gnd 2.080806f +C2 g6821_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6821_0 1 2.224404 +R2 1 g6821_1 2.224404 +.ends + +.subckt netg6808 g6808_2 g6808_1 g6808_0 gnd +C1 g6808_2 gnd 2.080806f +C2 g6808_1 gnd 2.080806f +C3 g6808_0 gnd 2.080806f +R1 g6808_1 g6808_0 2.224404 +R2 g6808_2 g6808_1 2.224404 +.ends + +.subckt netg6993 g6993_0 g6993_1 gnd +C1 g6993_0 gnd 2.080806f +C2 g6993_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6993_0 1 2.224404 +R2 1 g6993_1 2.224404 +.ends + +.subckt netg5393 g5393_1 g5393_0 gnd +C1 g5393_1 gnd 2.080806f +C2 g5393_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5393_0 1 2.224404 +R2 1 g5393_1 2.224404 +.ends + +.subckt netg3566 g3566_1 g3566_0 gnd +C1 g3566_1 gnd 2.080806f +C2 g3566_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3566_0 2.224404 +R2 1 g3566_1 2.224404 +.ends + +.subckt netg4441 g4441_1 g4441_0 gnd +C1 g4441_1 gnd 2.080806f +C2 g4441_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4441_0 2.224404 +R2 1 g4441_1 2.224404 +.ends + +.subckt netg2827 g2827_0 g2827_1 gnd +C1 g2827_0 gnd 2.080806f +C2 g2827_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2827_0 1 2.224404 +R2 1 g2827_1 2.224404 +.ends + +.subckt netg5021 g5021_2 g5021_0 gnd +C1 g5021_2 gnd 2.080806f +C2 g5021_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5021_0 2.224404 +R2 g5021_2 1 2.224404 +.ends + +.subckt netg7010 g7010_0 g7010_1 gnd +C1 g7010_0 gnd 2.080806f +C2 g7010_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7010_0 1 2.224404 +R2 1 g7010_1 2.224404 +.ends + +.subckt netx42 x42_1 x42_0 gnd +C1 x42_1 gnd 2.080806f +C2 x42_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x42_0 1 2.224404 +R2 1 x42_1 2.224404 +.ends + +.subckt netg4109 g4109_0 g4109_1 gnd +C1 g4109_0 gnd 2.080806f +C2 g4109_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4109_0 2.224404 +R2 1 g4109_1 2.224404 +.ends + +.subckt netg7387 g7387_0 g7387_1 gnd +C1 g7387_0 gnd 2.080806f +C2 g7387_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7387_0 1 2.224404 +R2 1 g7387_1 2.224404 +.ends + +.subckt netg3561 g3561_0 g3561_1 gnd +C1 g3561_0 gnd 2.080806f +C2 g3561_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3561_0 2.224404 +R2 g3561_1 1 2.224404 +.ends + +.subckt netg7355 g7355_1 g7355_0 gnd +C1 g7355_1 gnd 2.080806f +C2 g7355_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7355_0 2.224404 +R2 g7355_1 1 2.224404 +.ends + +.subckt netg1514 g1514_1 g1514_0 gnd +C1 g1514_1 gnd 2.080806f +C2 g1514_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1514_0 2.224404 +R2 g1514_1 1 2.224404 +.ends + +.subckt netg3970 g3970_0 g3970_1 gnd +C1 g3970_0 gnd 2.080806f +C2 g3970_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3970_0 2.224404 +R2 1 g3970_1 2.224404 +.ends + +.subckt netg1512 g1512_0 g1512_1 gnd +C1 g1512_0 gnd 2.080806f +C2 g1512_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1512_0 1 2.224404 +R2 g1512_1 1 2.224404 +.ends + +.subckt netg1379 g1379_1 g1379_0 gnd +C1 g1379_1 gnd 2.080806f +C2 g1379_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1379_0 2.224404 +R2 g1379_1 1 2.224404 +.ends + +.subckt netg3050 g3050_0 g3050_1 gnd +C1 g3050_0 gnd 2.080806f +C2 g3050_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3050_0 2.224404 +R2 g3050_1 1 2.224404 +.ends + +.subckt netg6661 g6661_0 g6661_1 gnd +C1 g6661_0 gnd 2.080806f +C2 g6661_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6661_0 2.224404 +R2 g6661_1 1 2.224404 +.ends + +.subckt netg5535 g5535_2 g5535_1 g5535_0 gnd +C1 g5535_2 gnd 2.080806f +C2 g5535_1 gnd 2.080806f +C3 g5535_0 gnd 2.080806f +R1 g5535_0 g5535_1 2.224404 +R2 g5535_1 g5535_2 2.224404 +.ends + +.subckt netg2689 g2689_0 g2689_1 g2689_2 gnd +C1 g2689_0 gnd 2.080806f +C2 g2689_1 gnd 2.080806f +C3 g2689_2 gnd 2.080806f +R1 g2689_0 g2689_1 2.224404 +R2 g2689_2 g2689_1 2.224404 +.ends + +.subckt netg5237 g5237_1 g5237_0 gnd +C1 g5237_1 gnd 2.080806f +C2 g5237_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5237_0 1 2.224404 +R2 1 g5237_1 2.224404 +.ends + +.subckt netg6676 g6676_1 g6676_0 gnd +C1 g6676_1 gnd 2.080806f +C2 g6676_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6676_0 2.224404 +R2 g6676_1 1 2.224404 +.ends + +.subckt netg4224 g4224_0 g4224_1 gnd +C1 g4224_0 gnd 2.080806f +C2 g4224_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4224_0 1 2.224404 +R2 g4224_1 1 2.224404 +.ends + +.subckt netg2841 g2841_1 g2841_0 gnd +C1 g2841_1 gnd 2.080806f +C2 g2841_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2841_0 1 2.224404 +R2 1 g2841_1 2.224404 +.ends + +.subckt netg5426 g5426_0 g5426_1 gnd +C1 g5426_0 gnd 2.080806f +C2 g5426_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5426_0 1 2.224404 +R2 g5426_1 1 2.224404 +.ends + +.subckt netg7292 g7292_1 g7292_0 gnd +C1 g7292_1 gnd 2.080806f +C2 g7292_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7292_0 2.224404 +R2 1 g7292_1 2.224404 +.ends + +.subckt netg2831 g2831_0 g2831_1 gnd +C1 g2831_0 gnd 2.080806f +C2 g2831_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2831_0 2.224404 +R2 g2831_1 1 2.224404 +.ends + +.subckt netg75 g75_1 g75_0 gnd +C1 g75_1 gnd 2.080806f +C2 g75_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g75_0 1 2.224404 +R2 1 g75_1 2.224404 +.ends + +.subckt netg4427 g4427_0 g4427_1 gnd +C1 g4427_0 gnd 2.080806f +C2 g4427_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4427_0 1 2.224404 +R2 g4427_1 1 2.224404 +.ends + +.subckt netg6209 g6209_0 g6209_1 gnd +C1 g6209_0 gnd 2.080806f +C2 g6209_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6209_0 2.224404 +R2 g6209_1 1 2.224404 +.ends + +.subckt netg5962 g5962_0 g5962_1 gnd +C1 g5962_0 gnd 2.080806f +C2 g5962_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5962_0 1 2.224404 +R2 1 g5962_1 2.224404 +.ends + +.subckt netx12 x12_1 x12_0 gnd +C1 x12_1 gnd 2.080806f +C2 x12_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x12_0 2.224404 +R2 x12_1 1 2.224404 +.ends + +.subckt netg6666 g6666_1 g6666_0 gnd +C1 g6666_1 gnd 2.080806f +C2 g6666_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6666_0 1 2.224404 +R2 1 g6666_1 2.224404 +.ends + +.subckt netg6133 g6133_0 g6133_1 gnd +C1 g6133_0 gnd 2.080806f +C2 g6133_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6133_0 2.224404 +R2 g6133_1 1 2.224404 +.ends + +.subckt netg7187 g7187_0 g7187_1 gnd +C1 g7187_0 gnd 2.080806f +C2 g7187_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7187_0 1 2.224404 +R2 1 g7187_1 2.224404 +.ends + +.subckt netg6892 g6892_1 g6892_0 gnd +C1 g6892_1 gnd 2.080806f +C2 g6892_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6892_0 2.224404 +R2 g6892_1 1 2.224404 +.ends + +.subckt netg7078 g7078_0 g7078_1 gnd +C1 g7078_0 gnd 2.080806f +C2 g7078_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7078_0 1 2.224404 +R2 1 g7078_1 2.224404 +.ends + +.subckt netg1549 g1549_1 g1549_0 gnd +C1 g1549_1 gnd 2.080806f +C2 g1549_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1549_0 1 2.224404 +R2 1 g1549_1 2.224404 +.ends + +.subckt netg4453 g4453_1 g4453_0 gnd +C1 g4453_1 gnd 2.080806f +C2 g4453_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4453_0 1 2.224404 +R2 1 g4453_1 2.224404 +.ends + +.subckt netg6734 g6734_1 g6734_0 gnd +C1 g6734_1 gnd 2.080806f +C2 g6734_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6734_0 2.224404 +R2 g6734_1 1 2.224404 +.ends + +.subckt netg5457 g5457_1 g5457_0 gnd +C1 g5457_1 gnd 2.080806f +C2 g5457_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5457_0 1 2.224404 +R2 g5457_1 1 2.224404 +.ends + +.subckt netg6411 g6411_1 g6411_0 gnd +C1 g6411_1 gnd 2.080806f +C2 g6411_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6411_0 2.224404 +R2 g6411_1 1 2.224404 +.ends + +.subckt netg2453 g2453_0 g2453_2 g2453_1 gnd +C1 g2453_0 gnd 2.080806f +C2 g2453_2 gnd 2.080806f +C3 g2453_1 gnd 2.080806f +R1 g2453_0 g2453_1 2.224404 +R2 g2453_2 g2453_0 2.224404 +.ends + +.subckt netg6468 g6468_0 g6468_1 gnd +C1 g6468_0 gnd 2.080806f +C2 g6468_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6468_0 1 2.224404 +R2 1 g6468_1 2.224404 +.ends + +.subckt netg5265 g5265_0 g5265_1 gnd +C1 g5265_0 gnd 2.080806f +C2 g5265_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5265_0 2.224404 +R2 g5265_1 1 2.224404 +.ends + +.subckt netg2803 g2803_1 g2803_0 gnd +C1 g2803_1 gnd 2.080806f +C2 g2803_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2803_0 2.224404 +R2 1 g2803_1 2.224404 +.ends + +.subckt netg4668 g4668_1 g4668_0 gnd +C1 g4668_1 gnd 2.080806f +C2 g4668_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4668_0 2.224404 +R2 1 g4668_1 2.224404 +.ends + +.subckt netg4305 g4305_1 g4305_0 gnd +C1 g4305_1 gnd 2.080806f +C2 g4305_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4305_0 2.224404 +R2 g4305_1 1 2.224404 +.ends + +.subckt netg6036 g6036_1 g6036_0 gnd +C1 g6036_1 gnd 2.080806f +C2 g6036_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6036_0 2.224404 +R2 g6036_1 1 2.224404 +.ends + +.subckt netg7402 g7402_0 g7402_1 gnd +C1 g7402_0 gnd 2.080806f +C2 g7402_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7402_0 2.224404 +R2 g7402_1 1 2.224404 +.ends + +.subckt netg4246 g4246_1 g4246_0 gnd +C1 g4246_1 gnd 2.080806f +C2 g4246_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4246_0 1 2.224404 +R2 1 g4246_1 2.224404 +.ends + +.subckt netg6273 g6273_0 g6273_1 gnd +C1 g6273_0 gnd 2.080806f +C2 g6273_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6273_0 1 2.224404 +R2 g6273_1 1 2.224404 +.ends + +.subckt netg6449 g6449_0 g6449_1 gnd +C1 g6449_0 gnd 2.080806f +C2 g6449_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6449_0 2.224404 +R2 g6449_1 1 2.224404 +.ends + +.subckt netg5602 g5602_0 g5602_1 gnd +C1 g5602_0 gnd 2.080806f +C2 g5602_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5602_0 1 2.224404 +R2 1 g5602_1 2.224404 +.ends + +.subckt netg7417 g7417_2 g7417_1 g7417_0 gnd +C1 g7417_2 gnd 2.080806f +C2 g7417_1 gnd 2.080806f +C3 g7417_0 gnd 2.080806f +R1 g7417_0 g7417_1 2.224404 +R2 g7417_1 g7417_2 2.224404 +.ends + +.subckt netg4362 g4362_2 g4362_1 gnd +C1 g4362_2 gnd 2.080806f +C2 g4362_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4362_2 1 2.224404 +R2 1 g4362_1 2.224404 +.ends + +.subckt netg6155 g6155_1 g6155_2 g6155_0 gnd +C1 g6155_1 gnd 2.080806f +C2 g6155_2 gnd 2.080806f +C3 g6155_0 gnd 2.080806f +R1 g6155_0 g6155_1 2.224404 +R2 g6155_2 g6155_0 2.224404 +.ends + +.subckt netg949 g949_0 g949_2 g949_1 gnd +C1 g949_0 gnd 2.080806f +C2 g949_2 gnd 2.080806f +C3 g949_1 gnd 2.080806f +R1 g949_1 g949_0 2.224404 +R2 g949_0 g949_2 2.224404 +.ends + +.subckt netg7290 g7290_1 g7290_0 gnd +C1 g7290_1 gnd 2.080806f +C2 g7290_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7290_0 2.224404 +R2 g7290_1 1 2.224404 +.ends + +.subckt netg7539 g7539_1 g7539_0 gnd +C1 g7539_1 gnd 2.080806f +C2 g7539_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7539_0 2.224404 +R2 g7539_1 1 2.224404 +.ends + +.subckt netg5324 g5324_0 g5324_1 gnd +C1 g5324_0 gnd 2.080806f +C2 g5324_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5324_0 1 2.224404 +R2 1 g5324_1 2.224404 +.ends + +.subckt netg6543 g6543_1 g6543_2 gnd +C1 g6543_1 gnd 2.080806f +C2 g6543_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6543_1 2.224404 +R2 g6543_2 1 2.224404 +.ends + +.subckt netg3716 g3716_0 g3716_1 gnd +C1 g3716_0 gnd 2.080806f +C2 g3716_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3716_0 2.224404 +R2 g3716_1 1 2.224404 +.ends + +.subckt netg6494 g6494_1 g6494_0 gnd +C1 g6494_1 gnd 2.080806f +C2 g6494_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6494_0 1 2.224404 +R2 1 g6494_1 2.224404 +.ends + +.subckt netg6837 g6837_2 g6837_1 g6837_0 gnd +C1 g6837_2 gnd 2.080806f +C2 g6837_1 gnd 2.080806f +C3 g6837_0 gnd 2.080806f +R1 g6837_1 g6837_0 2.224404 +R2 g6837_2 g6837_0 2.224404 +.ends + +.subckt netg6498 g6498_1 g6498_0 gnd +C1 g6498_1 gnd 2.080806f +C2 g6498_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6498_0 1 2.224404 +R2 1 g6498_1 2.224404 +.ends + +.subckt netg4040 g4040_0 g4040_1 gnd +C1 g4040_0 gnd 2.080806f +C2 g4040_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4040_0 1 2.224404 +R2 g4040_1 1 2.224404 +.ends + +.subckt netg5074 g5074_2 g5074_0 g5074_1 gnd +C1 g5074_2 gnd 2.080806f +C2 g5074_0 gnd 2.080806f +C3 g5074_1 gnd 2.080806f +R1 g5074_1 g5074_0 2.224404 +R2 g5074_2 g5074_1 2.224404 +.ends + +.subckt netg6605 g6605_0 g6605_1 gnd +C1 g6605_0 gnd 2.080806f +C2 g6605_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6605_0 1 2.224404 +R2 g6605_1 1 2.224404 +.ends + +.subckt netg6355 g6355_1 g6355_0 gnd +C1 g6355_1 gnd 2.080806f +C2 g6355_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6355_0 2.224404 +R2 g6355_1 1 2.224404 +.ends + +.subckt netg3048 g3048_0 g3048_1 gnd +C1 g3048_0 gnd 2.080806f +C2 g3048_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3048_0 2.224404 +R2 1 g3048_1 2.224404 +.ends + +.subckt netg6738 g6738_2 g6738_1 gnd +C1 g6738_2 gnd 2.080806f +C2 g6738_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6738_2 2.224404 +R2 g6738_1 1 2.224404 +.ends + +.subckt netg7137 g7137_1 g7137_0 gnd +C1 g7137_1 gnd 2.080806f +C2 g7137_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7137_0 2.224404 +R2 1 g7137_1 2.224404 +.ends + +.subckt netg6197 g6197_0 g6197_1 gnd +C1 g6197_0 gnd 2.080806f +C2 g6197_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6197_0 2.224404 +R2 g6197_1 1 2.224404 +.ends + +.subckt netg4291 g4291_0 g4291_1 gnd +C1 g4291_0 gnd 2.080806f +C2 g4291_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4291_0 1 2.224404 +R2 1 g4291_1 2.224404 +.ends + +.subckt netg4266 g4266_0 g4266_1 gnd +C1 g4266_0 gnd 2.080806f +C2 g4266_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4266_0 1 2.224404 +R2 1 g4266_1 2.224404 +.ends + +.subckt netg777 g777_0 g777_2 g777_1 gnd +C1 g777_0 gnd 2.080806f +C2 g777_2 gnd 2.080806f +C3 g777_1 gnd 2.080806f +R1 g777_1 g777_0 2.224404 +R2 g777_0 g777_2 2.224404 +.ends + +.subckt netg5427 g5427_1 g5427_0 gnd +C1 g5427_1 gnd 2.080806f +C2 g5427_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5427_0 1 2.224404 +R2 1 g5427_1 2.224404 +.ends + +.subckt netg3503 g3503_0 g3503_1 gnd +C1 g3503_0 gnd 2.080806f +C2 g3503_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3503_0 1 2.224404 +R2 1 g3503_1 2.224404 +.ends + +.subckt netg7199 g7199_1 g7199_0 gnd +C1 g7199_1 gnd 2.080806f +C2 g7199_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7199_0 2.224404 +R2 g7199_1 1 2.224404 +.ends + +.subckt netg6251 g6251_1 g6251_2 gnd +C1 g6251_1 gnd 2.080806f +C2 g6251_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6251_2 1 2.224404 +R2 g6251_1 1 2.224404 +.ends + +.subckt netg4064 g4064_0 g4064_1 gnd +C1 g4064_0 gnd 2.080806f +C2 g4064_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4064_0 2.224404 +R2 1 g4064_1 2.224404 +.ends + +.subckt netg3520 g3520_0 g3520_1 gnd +C1 g3520_0 gnd 2.080806f +C2 g3520_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3520_0 1 2.224404 +R2 1 g3520_1 2.224404 +.ends + +.subckt netg1937 g1937_0 g1937_1 gnd +C1 g1937_0 gnd 2.080806f +C2 g1937_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1937_0 2.224404 +R2 1 g1937_1 2.224404 +.ends + +.subckt netg1362 g1362_1 g1362_0 gnd +C1 g1362_1 gnd 2.080806f +C2 g1362_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1362_0 1 2.224404 +R2 1 g1362_1 2.224404 +.ends + +.subckt netg6487 g6487_1 g6487_0 gnd +C1 g6487_1 gnd 2.080806f +C2 g6487_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6487_0 2.224404 +R2 g6487_1 1 2.224404 +.ends + +.subckt netg5481 g5481_1 g5481_0 gnd +C1 g5481_1 gnd 2.080806f +C2 g5481_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5481_0 2.224404 +R2 g5481_1 1 2.224404 +.ends + +.subckt netg4218 g4218_1 g4218_0 gnd +C1 g4218_1 gnd 2.080806f +C2 g4218_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4218_0 2.224404 +R2 g4218_1 1 2.224404 +.ends + +.subckt netg6108 g6108_1 g6108_0 gnd +C1 g6108_1 gnd 2.080806f +C2 g6108_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6108_0 1 2.224404 +R2 1 g6108_1 2.224404 +.ends + +.subckt netg1429 g1429_1 g1429_0 gnd +C1 g1429_1 gnd 2.080806f +C2 g1429_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1429_0 1 2.224404 +R2 1 g1429_1 2.224404 +.ends + +.subckt netg3404 g3404_2 g3404_1 g3404_0 gnd +C1 g3404_2 gnd 2.080806f +C2 g3404_1 gnd 2.080806f +C3 g3404_0 gnd 2.080806f +R1 g3404_1 g3404_0 2.224404 +R2 g3404_0 g3404_2 2.224404 +.ends + +.subckt netg3906 g3906_1 g3906_0 gnd +C1 g3906_1 gnd 2.080806f +C2 g3906_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3906_0 1 2.224404 +R2 1 g3906_1 2.224404 +.ends + +.subckt netg3435 g3435_1 g3435_0 g3435_2 gnd +C1 g3435_1 gnd 2.080806f +C2 g3435_0 gnd 2.080806f +C3 g3435_2 gnd 2.080806f +R1 g3435_0 g3435_1 2.224404 +R2 g3435_2 g3435_0 2.224404 +.ends + +.subckt netg1258 g1258_1 g1258_0 gnd +C1 g1258_1 gnd 2.080806f +C2 g1258_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1258_0 2.224404 +R2 1 g1258_1 2.224404 +.ends + +.subckt netg7169 g7169_1 g7169_0 gnd +C1 g7169_1 gnd 2.080806f +C2 g7169_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7169_0 1 2.224404 +R2 g7169_1 1 2.224404 +.ends + +.subckt netg6308 g6308_1 g6308_0 gnd +C1 g6308_1 gnd 2.080806f +C2 g6308_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6308_0 2.224404 +R2 g6308_1 1 2.224404 +.ends + +.subckt netg3383 g3383_0 g3383_2 g3383_1 gnd +C1 g3383_0 gnd 2.080806f +C2 g3383_2 gnd 2.080806f +C3 g3383_1 gnd 2.080806f +R1 g3383_0 g3383_1 2.224404 +R2 g3383_1 g3383_2 2.224404 +.ends + +.subckt netg4426 g4426_0 g4426_1 gnd +C1 g4426_0 gnd 2.080806f +C2 g4426_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4426_0 1 2.224404 +R2 1 g4426_1 2.224404 +.ends + +.subckt netg6512 g6512_0 g6512_1 gnd +C1 g6512_0 gnd 2.080806f +C2 g6512_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6512_0 1 2.224404 +R2 1 g6512_1 2.224404 +.ends + +.subckt netg4207 g4207_0 g4207_1 gnd +C1 g4207_0 gnd 2.080806f +C2 g4207_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4207_0 1 2.224404 +R2 1 g4207_1 2.224404 +.ends + +.subckt netg6847 g6847_0 g6847_1 g6847_2 gnd +C1 g6847_0 gnd 2.080806f +C2 g6847_1 gnd 2.080806f +C3 g6847_2 gnd 2.080806f +R1 g6847_0 g6847_1 2.224404 +R2 g6847_1 g6847_2 2.224404 +.ends + +.subckt netg7390 g7390_0 g7390_1 gnd +C1 g7390_0 gnd 2.080806f +C2 g7390_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7390_0 2.224404 +R2 g7390_1 1 2.224404 +.ends + +.subckt netg4454 g4454_1 g4454_0 gnd +C1 g4454_1 gnd 2.080806f +C2 g4454_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4454_0 1 2.224404 +R2 1 g4454_1 2.224404 +.ends + +.subckt netg4221 g4221_0 g4221_1 gnd +C1 g4221_0 gnd 2.080806f +C2 g4221_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4221_0 1 2.224404 +R2 g4221_1 1 2.224404 +.ends + +.subckt netg3972 g3972_1 g3972_0 gnd +C1 g3972_1 gnd 2.080806f +C2 g3972_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3972_0 1 2.224404 +R2 g3972_1 1 2.224404 +.ends + +.subckt netg6463 g6463_0 g6463_1 gnd +C1 g6463_0 gnd 2.080806f +C2 g6463_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6463_0 1 2.224404 +R2 1 g6463_1 2.224404 +.ends + +.subckt netg1356 g1356_1 g1356_0 gnd +C1 g1356_1 gnd 2.080806f +C2 g1356_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1356_0 1 2.224404 +R2 1 g1356_1 2.224404 +.ends + +.subckt netg6675 g6675_0 g6675_1 gnd +C1 g6675_0 gnd 2.080806f +C2 g6675_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6675_0 2.224404 +R2 g6675_1 1 2.224404 +.ends + +.subckt netg7215 g7215_1 g7215_0 gnd +C1 g7215_1 gnd 2.080806f +C2 g7215_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7215_0 1 2.224404 +R2 g7215_1 1 2.224404 +.ends + +.subckt netg439 g439_2 g439_1 gnd +C1 g439_2 gnd 2.080806f +C2 g439_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g439_2 1 2.224404 +R2 1 g439_1 2.224404 +.ends + +.subckt netg2462 g2462_2 g2462_1 gnd +C1 g2462_2 gnd 2.080806f +C2 g2462_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2462_1 2.224404 +R2 g2462_2 1 2.224404 +.ends + +.subckt netg1136 g1136_1 g1136_0 gnd +C1 g1136_1 gnd 2.080806f +C2 g1136_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1136_0 2.224404 +R2 g1136_1 1 2.224404 +.ends + +.subckt netg6196 g6196_0 g6196_1 gnd +C1 g6196_0 gnd 2.080806f +C2 g6196_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6196_0 1 2.224404 +R2 1 g6196_1 2.224404 +.ends + +.subckt netg5294 g5294_0 g5294_1 gnd +C1 g5294_0 gnd 2.080806f +C2 g5294_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5294_0 2.224404 +R2 g5294_1 1 2.224404 +.ends + +.subckt netg4339 g4339_1 g4339_0 gnd +C1 g4339_1 gnd 2.080806f +C2 g4339_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4339_0 2.224404 +R2 g4339_1 1 2.224404 +.ends + +.subckt netg4425 g4425_1 g4425_0 gnd +C1 g4425_1 gnd 2.080806f +C2 g4425_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4425_0 1 2.224404 +R2 1 g4425_1 2.224404 +.ends + +.subckt netg6728 g6728_1 g6728_0 gnd +C1 g6728_1 gnd 2.080806f +C2 g6728_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6728_0 1 2.224404 +R2 1 g6728_1 2.224404 +.ends + +.subckt netg6890 g6890_0 g6890_1 gnd +C1 g6890_0 gnd 2.080806f +C2 g6890_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6890_0 1 2.224404 +R2 1 g6890_1 2.224404 +.ends + +.subckt netg1589 g1589_0 g1589_1 gnd +C1 g1589_0 gnd 2.080806f +C2 g1589_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1589_0 2.224404 +R2 g1589_1 1 2.224404 +.ends + +.subckt netg4248 g4248_1 g4248_0 gnd +C1 g4248_1 gnd 2.080806f +C2 g4248_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4248_0 2.224404 +R2 g4248_1 1 2.224404 +.ends + +.subckt netg3231 g3231_1 g3231_2 g3231_0 gnd +C1 g3231_1 gnd 2.080806f +C2 g3231_2 gnd 2.080806f +C3 g3231_0 gnd 2.080806f +R1 g3231_0 g3231_2 2.224404 +R2 g3231_2 g3231_1 2.224404 +.ends + +.subckt netg3228 g3228_2 g3228_1 g3228_0 gnd +C1 g3228_2 gnd 2.080806f +C2 g3228_1 gnd 2.080806f +C3 g3228_0 gnd 2.080806f +R1 g3228_0 g3228_1 2.224404 +R2 g3228_1 g3228_2 2.224404 +.ends + +.subckt netg6872 g6872_0 g6872_1 gnd +C1 g6872_0 gnd 2.080806f +C2 g6872_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6872_0 2.224404 +R2 g6872_1 1 2.224404 +.ends + +.subckt netg4991 g4991_0 g4991_2 g4991_1 gnd +C1 g4991_0 gnd 2.080806f +C2 g4991_2 gnd 2.080806f +C3 g4991_1 gnd 2.080806f +R1 g4991_0 g4991_1 2.224404 +R2 g4991_2 g4991_0 2.224404 +.ends + +.subckt netg1924 g1924_1 g1924_0 gnd +C1 g1924_1 gnd 2.080806f +C2 g1924_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1924_0 1 2.224404 +R2 g1924_1 1 2.224404 +.ends + +.subckt netg994 g994_1 g994_0 g994_2 gnd +C1 g994_1 gnd 2.080806f +C2 g994_0 gnd 2.080806f +C3 g994_2 gnd 2.080806f +R1 g994_0 g994_1 2.224404 +R2 g994_2 g994_0 2.224404 +.ends + +.subckt netg988 g988_1 g988_2 gnd +C1 g988_1 gnd 2.080806f +C2 g988_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g988_2 2.224404 +R2 1 g988_1 2.224404 +.ends + +.subckt netg6066 g6066_0 g6066_1 gnd +C1 g6066_0 gnd 2.080806f +C2 g6066_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6066_0 1 2.224404 +R2 1 g6066_1 2.224404 +.ends + +.subckt netg1220 g1220_0 g1220_1 gnd +C1 g1220_0 gnd 2.080806f +C2 g1220_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1220_0 1 2.224404 +R2 1 g1220_1 2.224404 +.ends + +.subckt netg5983 g5983_0 g5983_1 gnd +C1 g5983_0 gnd 2.080806f +C2 g5983_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5983_0 1 2.224404 +R2 g5983_1 1 2.224404 +.ends + +.subckt netg6334 g6334_1 g6334_0 gnd +C1 g6334_1 gnd 2.080806f +C2 g6334_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6334_0 2.224404 +R2 g6334_1 1 2.224404 +.ends + +.subckt netg7108 g7108_0 g7108_1 gnd +C1 g7108_0 gnd 2.080806f +C2 g7108_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7108_0 2.224404 +R2 g7108_1 1 2.224404 +.ends + +.subckt netg1237 g1237_1 g1237_0 gnd +C1 g1237_1 gnd 2.080806f +C2 g1237_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1237_0 2.224404 +R2 g1237_1 1 2.224404 +.ends + +.subckt netg620 g620_1 g620_0 gnd +C1 g620_1 gnd 2.080806f +C2 g620_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g620_0 1 2.224404 +R2 g620_1 1 2.224404 +.ends + +.subckt netg4994 g4994_0 g4994_2 gnd +C1 g4994_0 gnd 2.080806f +C2 g4994_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4994_0 1 2.224404 +R2 g4994_2 1 2.224404 +.ends + +.subckt netg6588 g6588_1 g6588_0 gnd +C1 g6588_1 gnd 2.080806f +C2 g6588_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6588_0 1 2.224404 +R2 1 g6588_1 2.224404 +.ends + +.subckt netg5560 g5560_2 g5560_1 gnd +C1 g5560_2 gnd 2.080806f +C2 g5560_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5560_2 1 2.224404 +R2 1 g5560_1 2.224404 +.ends + +.subckt netx411 x411_1 x411_0 gnd +C1 x411_1 gnd 2.080806f +C2 x411_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x411_0 2.224404 +R2 1 x411_1 2.224404 +.ends + +.subckt netg4107 g4107_1 g4107_0 gnd +C1 g4107_1 gnd 2.080806f +C2 g4107_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4107_0 2.224404 +R2 g4107_1 1 2.224404 +.ends + +.subckt netg5329 g5329_1 g5329_0 gnd +C1 g5329_1 gnd 2.080806f +C2 g5329_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5329_0 2.224404 +R2 1 g5329_1 2.224404 +.ends + +.subckt netg5906 g5906_0 g5906_1 g5906_2 gnd +C1 g5906_0 gnd 2.080806f +C2 g5906_1 gnd 2.080806f +C3 g5906_2 gnd 2.080806f +R1 g5906_1 g5906_0 2.224404 +R2 g5906_0 g5906_2 2.224404 +.ends + +.subckt netg2807 g2807_1 g2807_0 gnd +C1 g2807_1 gnd 2.080806f +C2 g2807_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2807_0 2.224404 +R2 g2807_1 1 2.224404 +.ends + +.subckt netg7083 g7083_1 g7083_0 gnd +C1 g7083_1 gnd 2.080806f +C2 g7083_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7083_0 2.224404 +R2 g7083_1 1 2.224404 +.ends + +.subckt netg3327 g3327_2 g3327_0 g3327_1 gnd +C1 g3327_2 gnd 2.080806f +C2 g3327_0 gnd 2.080806f +C3 g3327_1 gnd 2.080806f +R1 g3327_1 g3327_0 2.224404 +R2 g3327_2 g3327_1 2.224404 +.ends + +.subckt netg4939 g4939_1 g4939_0 gnd +C1 g4939_1 gnd 2.080806f +C2 g4939_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4939_0 1 2.224404 +R2 1 g4939_1 2.224404 +.ends + +.subckt netg997 g997_1 g997_2 g997_0 gnd +C1 g997_1 gnd 2.080806f +C2 g997_2 gnd 2.080806f +C3 g997_0 gnd 2.080806f +R1 g997_2 g997_0 2.224404 +R2 g997_2 g997_1 2.224404 +.ends + +.subckt netg2465 g2465_1 g2465_2 gnd +C1 g2465_1 gnd 2.080806f +C2 g2465_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2465_2 1 2.224404 +R2 1 g2465_1 2.224404 +.ends + +.subckt netg4446 g4446_0 g4446_1 gnd +C1 g4446_0 gnd 2.080806f +C2 g4446_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4446_0 1 2.224404 +R2 1 g4446_1 2.224404 +.ends + +.subckt netg1304 g1304_1 g1304_0 gnd +C1 g1304_1 gnd 2.080806f +C2 g1304_0 gnd 2.080806f +.ends + +.subckt netx252 x252_1 x252_0 gnd +C1 x252_1 gnd 2.080806f +C2 x252_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x252_0 1 2.224404 +R2 1 x252_1 2.224404 +.ends + +.subckt netg7231 g7231_2 g7231_0 gnd +C1 g7231_2 gnd 2.080806f +C2 g7231_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7231_0 2.224404 +R2 1 g7231_2 2.224404 +.ends + +.subckt netg6488 g6488_0 g6488_1 gnd +C1 g6488_0 gnd 2.080806f +C2 g6488_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6488_0 1 2.224404 +R2 1 g6488_1 2.224404 +.ends + +.subckt netg3392 g3392_2 g3392_0 g3392_1 gnd +C1 g3392_2 gnd 2.080806f +C2 g3392_0 gnd 2.080806f +C3 g3392_1 gnd 2.080806f +R1 g3392_0 g3392_2 2.224404 +R2 g3392_2 g3392_1 2.224404 +.ends + +.subckt netg485 g485_0 g485_1 gnd +C1 g485_0 gnd 2.080806f +C2 g485_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g485_0 2.224404 +R2 g485_1 1 2.224404 +.ends + +.subckt netg3530 g3530_1 g3530_0 gnd +C1 g3530_1 gnd 2.080806f +C2 g3530_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3530_0 2.224404 +R2 g3530_1 1 2.224404 +.ends + +.subckt netg4435 g4435_1 g4435_0 gnd +C1 g4435_1 gnd 2.080806f +C2 g4435_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4435_0 2.224404 +R2 g4435_1 1 2.224404 +.ends + +.subckt netg3479 g3479_1 g3479_0 gnd +C1 g3479_1 gnd 2.080806f +C2 g3479_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3479_0 1 2.224404 +R2 1 g3479_1 2.224404 +.ends + +.subckt netg5875 g5875_1 g5875_2 g5875_0 gnd +C1 g5875_1 gnd 2.080806f +C2 g5875_2 gnd 2.080806f +C3 g5875_0 gnd 2.080806f +R1 g5875_0 g5875_2 2.224404 +R2 g5875_2 g5875_1 2.224404 +.ends + +.subckt netg3984 g3984_1 g3984_0 gnd +C1 g3984_1 gnd 2.080806f +C2 g3984_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3984_0 1 2.224404 +R2 1 g3984_1 2.224404 +.ends + +.subckt netx532 x532_0 x532_1 gnd +C1 x532_0 gnd 2.080806f +C2 x532_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x532_0 2.224404 +R2 x532_1 1 2.224404 +.ends + +.subckt netg6039 g6039_1 g6039_0 gnd +C1 g6039_1 gnd 2.080806f +C2 g6039_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6039_0 1 2.224404 +R2 1 g6039_1 2.224404 +.ends + +.subckt netg6664 g6664_0 g6664_1 gnd +C1 g6664_0 gnd 2.080806f +C2 g6664_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6664_0 1 2.224404 +R2 1 g6664_1 2.224404 +.ends + +.subckt netg7531 g7531_1 g7531_0 gnd +C1 g7531_1 gnd 2.080806f +C2 g7531_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7531_0 1 2.224404 +R2 1 g7531_1 2.224404 +.ends + +.subckt netg7105 g7105_1 g7105_0 gnd +C1 g7105_1 gnd 2.080806f +C2 g7105_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7105_0 2.224404 +R2 g7105_1 1 2.224404 +.ends + +.subckt netg2996 g2996_1 g2996_0 gnd +C1 g2996_1 gnd 2.080806f +C2 g2996_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2996_0 1 2.224404 +R2 1 g2996_1 2.224404 +.ends + +.subckt netg1366 g1366_0 g1366_2 g1366_1 gnd +C1 g1366_0 gnd 2.080806f +C2 g1366_2 gnd 2.080806f +C3 g1366_1 gnd 2.080806f +R1 g1366_0 g1366_1 2.224404 +R2 g1366_1 g1366_2 2.224404 +.ends + +.subckt netg4307 g4307_0 g4307_1 gnd +C1 g4307_0 gnd 2.080806f +C2 g4307_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4307_0 1 2.224404 +R2 1 g4307_1 2.224404 +.ends + +.subckt netg3401 g3401_0 g3401_1 g3401_2 gnd +C1 g3401_0 gnd 2.080806f +C2 g3401_1 gnd 2.080806f +C3 g3401_2 gnd 2.080806f +R1 g3401_0 g3401_1 2.224404 +R2 g3401_2 g3401_0 2.224404 +.ends + +.subckt netg1498 g1498_1 g1498_0 gnd +C1 g1498_1 gnd 2.080806f +C2 g1498_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1498_0 1 2.224404 +R2 1 g1498_1 2.224404 +.ends + +.subckt netg7384 g7384_0 g7384_1 gnd +C1 g7384_0 gnd 2.080806f +C2 g7384_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7384_0 1 2.224404 +R2 1 g7384_1 2.224404 +.ends + +.subckt netg5959 g5959_0 g5959_1 gnd +C1 g5959_0 gnd 2.080806f +C2 g5959_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5959_0 1 2.224404 +R2 1 g5959_1 2.224404 +.ends + +.subckt netg3917 g3917_0 g3917_1 gnd +C1 g3917_0 gnd 2.080806f +C2 g3917_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3917_0 1 2.224404 +R2 g3917_1 1 2.224404 +.ends + +.subckt netg2946 g2946_1 g2946_0 gnd +C1 g2946_1 gnd 2.080806f +C2 g2946_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2946_0 1 2.224404 +R2 1 g2946_1 2.224404 +.ends + +.subckt netg2767 g2767_1 g2767_0 gnd +C1 g2767_1 gnd 2.080806f +C2 g2767_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2767_0 1 2.224404 +R2 1 g2767_1 2.224404 +.ends + +.subckt netg407 g407_0 g407_1 g407_2 gnd +C1 g407_0 gnd 2.080806f +C2 g407_1 gnd 2.080806f +C3 g407_2 gnd 2.080806f +R1 g407_0 g407_1 2.224404 +R2 g407_2 g407_0 2.224404 +.ends + +.subckt netg5608 g5608_0 g5608_1 gnd +C1 g5608_0 gnd 2.080806f +C2 g5608_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5608_0 1 2.224404 +R2 1 g5608_1 2.224404 +.ends + +.subckt netg6822 g6822_0 g6822_1 gnd +C1 g6822_0 gnd 2.080806f +C2 g6822_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6822_0 2.224404 +R2 g6822_1 1 2.224404 +.ends + +.subckt netg678 g678_0 g678_2 gnd +C1 g678_0 gnd 2.080806f +C2 g678_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g678_0 2.224404 +R2 g678_2 1 2.224404 +.ends + +.subckt netg6614 g6614_0 g6614_1 gnd +C1 g6614_0 gnd 2.080806f +C2 g6614_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6614_0 2.224404 +R2 g6614_1 1 2.224404 +.ends + +.subckt netx41 x41_1 x41_0 gnd +C1 x41_1 gnd 2.080806f +C2 x41_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x41_0 1 2.224404 +R2 1 x41_1 2.224404 +.ends + +.subckt netg877 g877_1 g877_2 gnd +C1 g877_1 gnd 2.080806f +C2 g877_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g877_1 2.224404 +R2 g877_2 1 2.224404 +.ends + +.subckt netg2814 g2814_1 g2814_0 gnd +C1 g2814_1 gnd 2.080806f +C2 g2814_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2814_0 1 2.224404 +R2 1 g2814_1 2.224404 +.ends + +.subckt netg6009 g6009_0 g6009_1 gnd +C1 g6009_0 gnd 2.080806f +C2 g6009_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6009_0 1 2.224404 +R2 1 g6009_1 2.224404 +.ends + +.subckt netg7251 g7251_0 g7251_1 gnd +C1 g7251_0 gnd 2.080806f +C2 g7251_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7251_0 2.224404 +R2 g7251_1 1 2.224404 +.ends + +.subckt netg2746 g2746_1 g2746_0 gnd +C1 g2746_1 gnd 2.080806f +C2 g2746_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2746_0 1 2.224404 +R2 1 g2746_1 2.224404 +.ends + +.subckt netg5566 g5566_1 g5566_0 g5566_2 gnd +C1 g5566_1 gnd 2.080806f +C2 g5566_0 gnd 2.080806f +C3 g5566_2 gnd 2.080806f +R1 g5566_0 g5566_1 2.224404 +R2 g5566_2 g5566_0 2.224404 +.ends + +.subckt netg7177 g7177_1 g7177_2 gnd +C1 g7177_1 gnd 2.080806f +C2 g7177_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7177_2 1 2.224404 +R2 g7177_1 1 2.224404 +.ends + +.subckt netg6311 g6311_1 g6311_0 gnd +C1 g6311_1 gnd 2.080806f +C2 g6311_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6311_0 2.224404 +R2 1 g6311_1 2.224404 +.ends + +.subckt netg2926 g2926_0 g2926_1 gnd +C1 g2926_0 gnd 2.080806f +C2 g2926_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2926_0 2.224404 +R2 1 g2926_1 2.224404 +.ends + +.subckt netx531 x531_0 x531_1 gnd +C1 x531_0 gnd 2.080806f +C2 x531_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x531_0 2.224404 +R2 x531_1 1 2.224404 +.ends + +.subckt netg7401 g7401_1 g7401_0 gnd +C1 g7401_1 gnd 2.080806f +C2 g7401_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7401_0 2.224404 +R2 g7401_1 1 2.224404 +.ends + +.subckt netg1233 g1233_1 g1233_0 gnd +C1 g1233_1 gnd 2.080806f +C2 g1233_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1233_0 2.224404 +R2 g1233_1 1 2.224404 +.ends + +.subckt netg5777 g5777_0 g5777_1 gnd +C1 g5777_0 gnd 2.080806f +C2 g5777_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5777_0 1 2.224404 +R2 g5777_1 1 2.224404 +.ends + +.subckt netg7398 g7398_1 g7398_0 gnd +C1 g7398_1 gnd 2.080806f +C2 g7398_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7398_0 1 2.224404 +R2 g7398_1 1 2.224404 +.ends + +.subckt netg5887 g5887_1 g5887_2 gnd +C1 g5887_1 gnd 2.080806f +C2 g5887_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5887_2 1 2.224404 +R2 1 g5887_1 2.224404 +.ends + +.subckt netg3450 g3450_1 g3450_2 gnd +C1 g3450_1 gnd 2.080806f +C2 g3450_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3450_2 1 2.224404 +R2 1 g3450_1 2.224404 +.ends + +.subckt netg6364 g6364_1 g6364_0 gnd +C1 g6364_1 gnd 2.080806f +C2 g6364_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6364_0 2.224404 +R2 g6364_1 1 2.224404 +.ends + +.subckt netg2954 g2954_1 g2954_0 gnd +C1 g2954_1 gnd 2.080806f +C2 g2954_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2954_0 1 2.224404 +R2 1 g2954_1 2.224404 +.ends + +.subckt netg6691 g6691_1 g6691_0 gnd +C1 g6691_1 gnd 2.080806f +C2 g6691_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6691_0 2.224404 +R2 g6691_1 1 2.224404 +.ends + +.subckt netg1303 g1303_0 g1303_1 gnd +C1 g1303_0 gnd 2.080806f +C2 g1303_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1303_0 2.224404 +R2 g1303_1 1 2.224404 +.ends + +.subckt netg1155 g1155_1 g1155_0 gnd +C1 g1155_1 gnd 2.080806f +C2 g1155_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1155_0 2.224404 +R2 g1155_1 1 2.224404 +.ends + +.subckt netg5532 g5532_2 g5532_1 g5532_0 gnd +C1 g5532_2 gnd 2.080806f +C2 g5532_1 gnd 2.080806f +C3 g5532_0 gnd 2.080806f +R1 g5532_2 g5532_0 2.224404 +R2 g5532_1 g5532_2 2.224404 +.ends + +.subckt netg5006 g5006_1 g5006_2 gnd +C1 g5006_1 gnd 2.080806f +C2 g5006_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5006_1 2.224404 +R2 g5006_2 1 2.224404 +.ends + +.subckt netg1994 g1994_1 g1994_0 gnd +C1 g1994_1 gnd 2.080806f +C2 g1994_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1994_0 1 2.224404 +R2 g1994_1 1 2.224404 +.ends + +.subckt netg5363 g5363_0 g5363_1 gnd +C1 g5363_0 gnd 2.080806f +C2 g5363_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5363_0 1 2.224404 +R2 1 g5363_1 2.224404 +.ends + +.subckt netg2028 g2028_1 g2028_0 gnd +C1 g2028_1 gnd 2.080806f +C2 g2028_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2028_0 1 2.224404 +R2 g2028_1 1 2.224404 +.ends + +.subckt netg7090 g7090_0 g7090_1 gnd +C1 g7090_0 gnd 2.080806f +C2 g7090_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7090_0 2.224404 +R2 g7090_1 1 2.224404 +.ends + +.subckt netg2222 g2222_1 g2222_0 gnd +C1 g2222_1 gnd 2.080806f +C2 g2222_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2222_0 1 2.224404 +R2 1 g2222_1 2.224404 +.ends + +.subckt netg5931 g5931_1 g5931_0 gnd +C1 g5931_1 gnd 2.080806f +C2 g5931_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5931_0 2.224404 +R2 g5931_1 1 2.224404 +.ends + +.subckt netg6973 g6973_0 g6973_1 gnd +C1 g6973_0 gnd 2.080806f +C2 g6973_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6973_0 2.224404 +R2 g6973_1 1 2.224404 +.ends + +.subckt netg4179 g4179_1 g4179_2 gnd +C1 g4179_1 gnd 2.080806f +C2 g4179_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4179_2 1 2.224404 +R2 1 g4179_1 2.224404 +.ends + +.subckt netg6933 g6933_0 g6933_1 gnd +C1 g6933_0 gnd 2.080806f +C2 g6933_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6933_0 1 2.224404 +R2 g6933_1 1 2.224404 +.ends + +.subckt netg1383 g1383_0 g1383_1 gnd +C1 g1383_0 gnd 2.080806f +C2 g1383_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1383_0 2.224404 +R2 1 g1383_1 2.224404 +.ends + +.subckt netx301 x301_0 x301_1 gnd +C1 x301_0 gnd 2.080806f +C2 x301_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x301_0 2.224404 +R2 x301_1 1 2.224404 +.ends + +.subckt netg3420 g3420_1 g3420_2 gnd +C1 g3420_1 gnd 2.080806f +C2 g3420_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3420_1 1 2.224404 +R2 1 g3420_2 2.224404 +.ends + +.subckt netg2771 g2771_1 g2771_0 gnd +C1 g2771_1 gnd 2.080806f +C2 g2771_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2771_0 2.224404 +R2 g2771_1 1 2.224404 +.ends + +.subckt netg517 g517_1 g517_0 gnd +C1 g517_1 gnd 2.080806f +C2 g517_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g517_0 2.224404 +R2 g517_1 1 2.224404 +.ends + +.subckt netg2438 g2438_1 g2438_0 g2438_2 gnd +C1 g2438_1 gnd 2.080806f +C2 g2438_0 gnd 2.080806f +C3 g2438_2 gnd 2.080806f +R1 g2438_0 g2438_2 2.224404 +R2 g2438_2 g2438_1 2.224404 +.ends + +.subckt netg2233 g2233_1 g2233_0 gnd +C1 g2233_1 gnd 2.080806f +C2 g2233_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2233_0 1 2.224404 +R2 g2233_1 1 2.224404 +.ends + +.subckt netg5463 g5463_1 g5463_0 gnd +C1 g5463_1 gnd 2.080806f +C2 g5463_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5463_0 1 2.224404 +R2 1 g5463_1 2.224404 +.ends + +.subckt netg2925 g2925_1 g2925_0 gnd +C1 g2925_1 gnd 2.080806f +C2 g2925_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2925_0 2.224404 +R2 g2925_1 1 2.224404 +.ends + +.subckt netg7126 g7126_1 g7126_0 gnd +C1 g7126_1 gnd 2.080806f +C2 g7126_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7126_0 2.224404 +R2 g7126_1 1 2.224404 +.ends + +.subckt netg6391 g6391_1 g6391_0 gnd +C1 g6391_1 gnd 2.080806f +C2 g6391_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6391_0 2.224404 +R2 g6391_1 1 2.224404 +.ends + +.subckt netg4356 g4356_0 g4356_1 gnd +C1 g4356_0 gnd 2.080806f +C2 g4356_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4356_0 2.224404 +R2 g4356_1 1 2.224404 +.ends + +.subckt netg7537 g7537_1 g7537_0 gnd +C1 g7537_1 gnd 2.080806f +C2 g7537_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7537_0 1 2.224404 +R2 1 g7537_1 2.224404 +.ends + +.subckt netx152 x152_0 x152_1 gnd +C1 x152_0 gnd 2.080806f +C2 x152_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x152_0 2.224404 +R2 x152_1 1 2.224404 +.ends + +.subckt netg3558 g3558_1 g3558_0 gnd +C1 g3558_1 gnd 2.080806f +C2 g3558_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3558_0 2.224404 +R2 g3558_1 1 2.224404 +.ends + +.subckt netg4270 g4270_0 g4270_1 gnd +C1 g4270_0 gnd 2.080806f +C2 g4270_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4270_0 2.224404 +R2 g4270_1 1 2.224404 +.ends + +.subckt netg7011 g7011_1 g7011_0 gnd +C1 g7011_1 gnd 2.080806f +C2 g7011_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7011_0 1 2.224404 +R2 1 g7011_1 2.224404 +.ends + +.subckt netg862 g862_2 g862_0 g862_1 gnd +C1 g862_2 gnd 2.080806f +C2 g862_0 gnd 2.080806f +C3 g862_1 gnd 2.080806f +R1 g862_1 g862_0 2.224404 +R2 g862_0 g862_2 2.224404 +.ends + +.subckt netg7394 g7394_1 g7394_0 gnd +C1 g7394_1 gnd 2.080806f +C2 g7394_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7394_0 1 2.224404 +R2 1 g7394_1 2.224404 +.ends + +.subckt netg4440 g4440_1 g4440_0 gnd +C1 g4440_1 gnd 2.080806f +C2 g4440_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4440_0 2.224404 +R2 g4440_1 1 2.224404 +.ends + +.subckt netg6663 g6663_0 g6663_1 gnd +C1 g6663_0 gnd 2.080806f +C2 g6663_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6663_0 1 2.224404 +R2 1 g6663_1 2.224404 +.ends + +.subckt netg5346 g5346_0 g5346_1 gnd +C1 g5346_0 gnd 2.080806f +C2 g5346_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5346_0 1 2.224404 +R2 1 g5346_1 2.224404 +.ends + +.subckt netg7538 g7538_0 g7538_1 gnd +C1 g7538_0 gnd 2.080806f +C2 g7538_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7538_0 1 2.224404 +R2 1 g7538_1 2.224404 +.ends + +.subckt netg2737 g2737_1 g2737_2 g2737_0 gnd +C1 g2737_1 gnd 2.080806f +C2 g2737_2 gnd 2.080806f +C3 g2737_0 gnd 2.080806f +R1 g2737_0 g2737_1 2.224404 +R2 g2737_2 g2737_0 2.224404 +.ends + +.subckt netg3258 g3258_2 g3258_1 g3258_0 gnd +C1 g3258_2 gnd 2.080806f +C2 g3258_1 gnd 2.080806f +C3 g3258_0 gnd 2.080806f +R1 g3258_1 g3258_0 2.224404 +R2 g3258_0 g3258_2 2.224404 +.ends + +.subckt netg6187 g6187_0 g6187_1 gnd +C1 g6187_0 gnd 2.080806f +C2 g6187_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6187_0 1 2.224404 +R2 1 g6187_1 2.224404 +.ends + +.subckt netg1550 g1550_0 g1550_1 gnd +C1 g1550_0 gnd 2.080806f +C2 g1550_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1550_0 1 2.224404 +R2 1 g1550_1 2.224404 +.ends + +.subckt netg2799 g2799_0 g2799_1 gnd +C1 g2799_0 gnd 2.080806f +C2 g2799_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2799_0 1 2.224404 +R2 1 g2799_1 2.224404 +.ends + +.subckt netg5263 g5263_1 g5263_0 gnd +C1 g5263_1 gnd 2.080806f +C2 g5263_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5263_0 1 2.224404 +R2 1 g5263_1 2.224404 +.ends + +.subckt netg7324 g7324_2 g7324_1 gnd +C1 g7324_2 gnd 2.080806f +C2 g7324_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7324_1 2.224404 +R2 g7324_2 1 2.224404 +.ends + +.subckt netg4979 g4979_2 g4979_0 g4979_1 gnd +C1 g4979_2 gnd 2.080806f +C2 g4979_0 gnd 2.080806f +C3 g4979_1 gnd 2.080806f +R1 g4979_0 g4979_2 2.224404 +R2 g4979_1 g4979_2 2.224404 +.ends + +.subckt netg3571 g3571_0 g3571_1 gnd +C1 g3571_0 gnd 2.080806f +C2 g3571_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3571_0 1 2.224404 +R2 1 g3571_1 2.224404 +.ends + +.subckt netg4101 g4101_1 g4101_0 gnd +C1 g4101_1 gnd 2.080806f +C2 g4101_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4101_0 2.224404 +R2 g4101_1 1 2.224404 +.ends + +.subckt netg5110 g5110_0 g5110_2 g5110_1 gnd +C1 g5110_0 gnd 2.080806f +C2 g5110_2 gnd 2.080806f +C3 g5110_1 gnd 2.080806f +R1 g5110_0 g5110_1 2.224404 +R2 g5110_1 g5110_2 2.224404 +.ends + +.subckt netg4935 g4935_0 g4935_2 g4935_1 gnd +C1 g4935_0 gnd 2.080806f +C2 g4935_2 gnd 2.080806f +C3 g4935_1 gnd 2.080806f +R1 g4935_0 g4935_1 2.224404 +R2 g4935_2 g4935_0 2.224404 +.ends + +.subckt netg7352 g7352_0 g7352_1 gnd +C1 g7352_0 gnd 2.080806f +C2 g7352_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7352_0 1 2.224404 +R2 1 g7352_1 2.224404 +.ends + +.subckt netg6332 g6332_1 g6332_0 gnd +C1 g6332_1 gnd 2.080806f +C2 g6332_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6332_0 2.224404 +R2 g6332_1 1 2.224404 +.ends + +.subckt netg3476 g3476_1 g3476_0 gnd +C1 g3476_1 gnd 2.080806f +C2 g3476_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3476_0 1 2.224404 +R2 1 g3476_1 2.224404 +.ends + +.subckt netg3066 g3066_1 g3066_0 gnd +C1 g3066_1 gnd 2.080806f +C2 g3066_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3066_0 1 2.224404 +R2 1 g3066_1 2.224404 +.ends + +.subckt netg3047 g3047_0 g3047_1 gnd +C1 g3047_0 gnd 2.080806f +C2 g3047_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3047_0 1 2.224404 +R2 1 g3047_1 2.224404 +.ends + +.subckt netg4015 g4015_0 g4015_1 gnd +C1 g4015_0 gnd 2.080806f +C2 g4015_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4015_0 1 2.224404 +R2 1 g4015_1 2.224404 +.ends + +.subckt netg2772 g2772_1 g2772_0 gnd +C1 g2772_1 gnd 2.080806f +C2 g2772_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2772_0 2.224404 +R2 g2772_1 1 2.224404 +.ends + +.subckt netg2750 g2750_0 g2750_1 gnd +C1 g2750_0 gnd 2.080806f +C2 g2750_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2750_0 2.224404 +R2 g2750_1 1 2.224404 +.ends + +.subckt netg5683 g5683_1 g5683_0 gnd +C1 g5683_1 gnd 2.080806f +C2 g5683_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5683_0 1 2.224404 +R2 g5683_1 1 2.224404 +.ends + +.subckt netg2606 g2606_2 g2606_0 gnd +C1 g2606_2 gnd 2.080806f +C2 g2606_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2606_0 2.224404 +R2 g2606_2 1 2.224404 +.ends + +.subckt netg4315 g4315_1 g4315_0 gnd +C1 g4315_1 gnd 2.080806f +C2 g4315_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4315_0 2.224404 +R2 g4315_1 1 2.224404 +.ends + +.subckt netg7386 g7386_1 g7386_0 gnd +C1 g7386_1 gnd 2.080806f +C2 g7386_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7386_0 2.224404 +R2 g7386_1 1 2.224404 +.ends + +.subckt netg6817 g6817_1 g6817_0 gnd +C1 g6817_1 gnd 2.080806f +C2 g6817_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6817_0 1 2.224404 +R2 1 g6817_1 2.224404 +.ends + +.subckt netg6293 g6293_0 g6293_1 gnd +C1 g6293_0 gnd 2.080806f +C2 g6293_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6293_0 1 2.224404 +R2 g6293_1 1 2.224404 +.ends + +.subckt netg967 g967_0 g967_2 g967_1 gnd +C1 g967_0 gnd 2.080806f +C2 g967_2 gnd 2.080806f +C3 g967_1 gnd 2.080806f +R1 g967_1 g967_0 2.224404 +R2 g967_1 g967_2 2.224404 +.ends + +.subckt netg5985 g5985_1 g5985_0 gnd +C1 g5985_1 gnd 2.080806f +C2 g5985_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5985_0 2.224404 +R2 g5985_1 1 2.224404 +.ends + +.subckt netg1883 g1883_2 g1883_1 gnd +C1 g1883_2 gnd 2.080806f +C2 g1883_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1883_1 1 2.224404 +R2 g1883_2 1 2.224404 +.ends + +.subckt netg5445 g5445_0 g5445_2 g5445_1 gnd +C1 g5445_0 gnd 2.080806f +C2 g5445_2 gnd 2.080806f +C3 g5445_1 gnd 2.080806f +R1 g5445_0 g5445_1 2.224404 +R2 g5445_2 g5445_0 2.224404 +.ends + +.subckt netg6456 g6456_2 g6456_1 g6456_0 gnd +C1 g6456_2 gnd 2.080806f +C2 g6456_1 gnd 2.080806f +C3 g6456_0 gnd 2.080806f +R1 g6456_1 g6456_0 2.224404 +R2 g6456_2 g6456_1 2.224404 +.ends + +.subckt netg7252 g7252_1 g7252_0 gnd +C1 g7252_1 gnd 2.080806f +C2 g7252_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7252_0 2.224404 +R2 1 g7252_1 2.224404 +.ends + +.subckt netg2836 g2836_0 g2836_1 gnd +C1 g2836_0 gnd 2.080806f +C2 g2836_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2836_0 2.224404 +R2 g2836_1 1 2.224404 +.ends + +.subckt netg1226 g1226_0 g1226_1 gnd +C1 g1226_0 gnd 2.080806f +C2 g1226_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1226_0 1 2.224404 +R2 1 g1226_1 2.224404 +.ends + +.subckt netg4225 g4225_0 g4225_1 gnd +C1 g4225_0 gnd 2.080806f +C2 g4225_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4225_0 1 2.224404 +R2 1 g4225_1 2.224404 +.ends + +.subckt netg4050 g4050_1 g4050_0 gnd +C1 g4050_1 gnd 2.080806f +C2 g4050_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4050_0 1 2.224404 +R2 1 g4050_1 2.224404 +.ends + +.subckt netg1357 g1357_0 g1357_1 gnd +C1 g1357_0 gnd 2.080806f +C2 g1357_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1357_0 2.224404 +R2 g1357_1 1 2.224404 +.ends + +.subckt netg6430 g6430_2 g6430_0 gnd +C1 g6430_2 gnd 2.080806f +C2 g6430_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6430_0 2.224404 +R2 g6430_2 1 2.224404 +.ends + +.subckt netg5009 g5009_1 g5009_2 gnd +C1 g5009_1 gnd 2.080806f +C2 g5009_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5009_1 2.224404 +R2 g5009_2 1 2.224404 +.ends + +.subckt netg4289 g4289_0 g4289_1 gnd +C1 g4289_0 gnd 2.080806f +C2 g4289_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4289_0 2.224404 +R2 g4289_1 1 2.224404 +.ends + +.subckt netg696 g696_0 g696_1 g696_2 gnd +C1 g696_0 gnd 2.080806f +C2 g696_1 gnd 2.080806f +C3 g696_2 gnd 2.080806f +R1 g696_0 g696_1 2.224404 +R2 g696_0 g696_2 2.224404 +.ends + +.subckt netg2422 g2422_1 g2422_0 gnd +C1 g2422_1 gnd 2.080806f +C2 g2422_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2422_0 1 2.224404 +R2 1 g2422_1 2.224404 +.ends + +.subckt netg5554 g5554_1 g5554_2 g5554_0 gnd +C1 g5554_1 gnd 2.080806f +C2 g5554_2 gnd 2.080806f +C3 g5554_0 gnd 2.080806f +R1 g5554_0 g5554_2 2.224404 +R2 g5554_2 g5554_1 2.224404 +.ends + +.subckt netg7173 g7173_1 g7173_0 gnd +C1 g7173_1 gnd 2.080806f +C2 g7173_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7173_0 1 2.224404 +R2 1 g7173_1 2.224404 +.ends + +.subckt netg6274 g6274_2 g6274_0 g6274_1 gnd +C1 g6274_2 gnd 2.080806f +C2 g6274_0 gnd 2.080806f +C3 g6274_1 gnd 2.080806f +R1 g6274_0 g6274_1 2.224404 +R2 g6274_2 g6274_0 2.224404 +.ends + +.subckt netg3346 g3346_1 g3346_0 gnd +C1 g3346_1 gnd 2.080806f +C2 g3346_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3346_0 1 2.224404 +R2 g3346_1 1 2.224404 +.ends + +.subckt netg5314 g5314_0 g5314_1 gnd +C1 g5314_0 gnd 2.080806f +C2 g5314_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5314_0 1 2.224404 +R2 g5314_1 1 2.224404 +.ends + +.subckt netg5591 g5591_1 g5591_0 gnd +C1 g5591_1 gnd 2.080806f +C2 g5591_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5591_0 2.224404 +R2 g5591_1 1 2.224404 +.ends + +.subckt netg7302 g7302_0 g7302_1 gnd +C1 g7302_0 gnd 2.080806f +C2 g7302_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7302_0 2.224404 +R2 g7302_1 1 2.224404 +.ends + +.subckt netg5462 g5462_0 g5462_1 gnd +C1 g5462_0 gnd 2.080806f +C2 g5462_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5462_0 2.224404 +R2 g5462_1 1 2.224404 +.ends + +.subckt netg4411 g4411_1 g4411_0 gnd +C1 g4411_1 gnd 2.080806f +C2 g4411_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4411_0 1 2.224404 +R2 1 g4411_1 2.224404 +.ends + +.subckt netg4415 g4415_1 g4415_0 gnd +C1 g4415_1 gnd 2.080806f +C2 g4415_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4415_0 2.224404 +R2 g4415_1 1 2.224404 +.ends + +.subckt netg7024 g7024_1 g7024_0 gnd +C1 g7024_1 gnd 2.080806f +C2 g7024_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7024_0 1 2.224404 +R2 1 g7024_1 2.224404 +.ends + +.subckt netg4111 g4111_0 g4111_1 gnd +C1 g4111_0 gnd 2.080806f +C2 g4111_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4111_0 1 2.224404 +R2 1 g4111_1 2.224404 +.ends + +.subckt netg7171 g7171_0 g7171_1 gnd +C1 g7171_0 gnd 2.080806f +C2 g7171_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7171_0 2.224404 +R2 g7171_1 1 2.224404 +.ends + +.subckt netg4251 g4251_1 g4251_0 gnd +C1 g4251_1 gnd 2.080806f +C2 g4251_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4251_0 1 2.224404 +R2 1 g4251_1 2.224404 +.ends + +.subckt netg4988 g4988_2 g4988_0 gnd +C1 g4988_2 gnd 2.080806f +C2 g4988_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4988_0 1 2.224404 +R2 1 g4988_2 2.224404 +.ends + +.subckt netg883 g883_1 g883_0 g883_2 gnd +C1 g883_1 gnd 2.080806f +C2 g883_0 gnd 2.080806f +C3 g883_2 gnd 2.080806f +R1 g883_1 g883_0 2.224404 +R2 g883_0 g883_2 2.224404 +.ends + +.subckt netg3077 g3077_0 g3077_1 gnd +C1 g3077_0 gnd 2.080806f +C2 g3077_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3077_0 1 2.224404 +R2 1 g3077_1 2.224404 +.ends + +.subckt netg2582 g2582_0 g2582_1 g2582_2 gnd +C1 g2582_0 gnd 2.080806f +C2 g2582_1 gnd 2.080806f +C3 g2582_2 gnd 2.080806f +R1 g2582_2 g2582_0 2.224404 +R2 g2582_1 g2582_2 2.224404 +.ends + +.subckt netx222 x222_1 x222_0 gnd +C1 x222_1 gnd 2.080806f +C2 x222_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x222_0 2.224404 +R2 1 x222_1 2.224404 +.ends + +.subckt netg4021 g4021_0 g4021_1 gnd +C1 g4021_0 gnd 2.080806f +C2 g4021_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4021_0 2.224404 +R2 g4021_1 1 2.224404 +.ends + +.subckt netg2843 g2843_0 g2843_1 gnd +C1 g2843_0 gnd 2.080806f +C2 g2843_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2843_0 1 2.224404 +R2 1 g2843_1 2.224404 +.ends + +.subckt netg4355 g4355_1 g4355_0 gnd +C1 g4355_1 gnd 2.080806f +C2 g4355_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4355_0 2.224404 +R2 g4355_1 1 2.224404 +.ends + +.subckt netg4267 g4267_1 g4267_0 gnd +C1 g4267_1 gnd 2.080806f +C2 g4267_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4267_0 2.224404 +R2 1 g4267_1 2.224404 +.ends + +.subckt netg5299 g5299_1 g5299_0 gnd +C1 g5299_1 gnd 2.080806f +C2 g5299_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5299_0 1 2.224404 +R2 1 g5299_1 2.224404 +.ends + +.subckt netg3398 g3398_0 g3398_1 g3398_2 gnd +C1 g3398_0 gnd 2.080806f +C2 g3398_1 gnd 2.080806f +C3 g3398_2 gnd 2.080806f +R1 g3398_0 g3398_2 2.224404 +R2 g3398_2 g3398_1 2.224404 +.ends + +.subckt netg6954 g6954_2 g6954_0 gnd +C1 g6954_2 gnd 2.080806f +C2 g6954_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6954_0 2.224404 +R2 g6954_2 1 2.224404 +.ends + +.subckt netg2171 g2171_2 g2171_3 g2171_0 gnd +C1 g2171_2 gnd 2.080806f +C2 g2171_3 gnd 2.080806f +C3 g2171_0 gnd 2.080806f +R1 g2171_2 g2171_0 2.224404 +R2 g2171_3 g2171_2 2.224404 +.ends + +.subckt netg6402 g6402_1 g6402_0 gnd +C1 g6402_1 gnd 2.080806f +C2 g6402_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6402_0 2.224404 +R2 g6402_1 1 2.224404 +.ends + +.subckt netg1765 g1765_1 g1765_0 gnd +C1 g1765_1 gnd 2.080806f +C2 g1765_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1765_0 2.224404 +R2 g1765_1 1 2.224404 +.ends + +.subckt netg2444 g2444_2 g2444_1 g2444_0 gnd +C1 g2444_2 gnd 2.080806f +C2 g2444_1 gnd 2.080806f +C3 g2444_0 gnd 2.080806f +R1 g2444_0 g2444_1 2.224404 +R2 g2444_0 g2444_2 2.224404 +.ends + +.subckt netg6608 g6608_1 g6608_0 gnd +C1 g6608_1 gnd 2.080806f +C2 g6608_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6608_0 1 2.224404 +R2 1 g6608_1 2.224404 +.ends + +.subckt netg3543 g3543_1 g3543_0 gnd +C1 g3543_1 gnd 2.080806f +C2 g3543_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3543_0 2.224404 +R2 g3543_1 1 2.224404 +.ends + +.subckt netg2368 g2368_1 g2368_2 g2368_0 gnd +C1 g2368_1 gnd 2.080806f +C2 g2368_2 gnd 2.080806f +C3 g2368_0 gnd 2.080806f +R1 g2368_2 g2368_0 2.224404 +R2 g2368_1 g2368_2 2.224404 +.ends + +.subckt netg2588 g2588_2 g2588_0 gnd +C1 g2588_2 gnd 2.080806f +C2 g2588_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2588_0 1 2.224404 +R2 1 g2588_2 2.224404 +.ends + +.subckt netg3475 g3475_1 g3475_0 gnd +C1 g3475_1 gnd 2.080806f +C2 g3475_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3475_0 2.224404 +R2 g3475_1 1 2.224404 +.ends + +.subckt netg6041 g6041_0 g6041_1 gnd +C1 g6041_0 gnd 2.080806f +C2 g6041_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6041_0 1 2.224404 +R2 g6041_1 1 2.224404 +.ends + +.subckt netg2920 g2920_0 g2920_1 gnd +C1 g2920_0 gnd 2.080806f +C2 g2920_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2920_0 2.224404 +R2 g2920_1 1 2.224404 +.ends + +.subckt netg6561 g6561_1 g6561_0 gnd +C1 g6561_1 gnd 2.080806f +C2 g6561_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6561_0 2.224404 +R2 g6561_1 1 2.224404 +.ends + +.subckt netg1015 g1015_0 g1015_2 g1015_1 gnd +C1 g1015_0 gnd 2.080806f +C2 g1015_2 gnd 2.080806f +C3 g1015_1 gnd 2.080806f +R1 g1015_0 g1015_2 2.224404 +R2 g1015_2 g1015_1 2.224404 +.ends + +.subckt netg5520 g5520_0 g5520_1 gnd +C1 g5520_0 gnd 2.080806f +C2 g5520_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5520_0 1 2.224404 +R2 1 g5520_1 2.224404 +.ends + +.subckt netx211 x211_0 x211_1 gnd +C1 x211_0 gnd 2.080806f +C2 x211_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x211_0 1 2.224404 +R2 1 x211_1 2.224404 +.ends + +.subckt netg2776 g2776_1 g2776_0 gnd +C1 g2776_1 gnd 2.080806f +C2 g2776_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2776_0 1 2.224404 +R2 1 g2776_1 2.224404 +.ends + +.subckt netg6683 g6683_0 g6683_1 gnd +C1 g6683_0 gnd 2.080806f +C2 g6683_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6683_0 1 2.224404 +R2 1 g6683_1 2.224404 +.ends + +.subckt netg1583 g1583_0 g1583_1 gnd +C1 g1583_0 gnd 2.080806f +C2 g1583_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1583_0 2.224404 +R2 g1583_1 1 2.224404 +.ends + +.subckt netg1219 g1219_0 g1219_1 gnd +C1 g1219_0 gnd 2.080806f +C2 g1219_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1219_0 2.224404 +R2 g1219_1 1 2.224404 +.ends + +.subckt netg6034 g6034_0 g6034_1 gnd +C1 g6034_0 gnd 2.080806f +C2 g6034_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6034_0 1 2.224404 +R2 1 g6034_1 2.224404 +.ends + +.subckt netg559 g559_1 g559_0 gnd +C1 g559_1 gnd 2.080806f +C2 g559_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g559_0 2.224404 +R2 1 g559_1 2.224404 +.ends + +.subckt netg6417 g6417_1 g6417_0 gnd +C1 g6417_1 gnd 2.080806f +C2 g6417_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6417_0 2.224404 +R2 g6417_1 1 2.224404 +.ends + +.subckt netg6412 g6412_1 g6412_0 gnd +C1 g6412_1 gnd 2.080806f +C2 g6412_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6412_0 1 2.224404 +R2 1 g6412_1 2.224404 +.ends + +.subckt netg4222 g4222_1 g4222_0 gnd +C1 g4222_1 gnd 2.080806f +C2 g4222_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4222_0 2.224404 +R2 g4222_1 1 2.224404 +.ends + +.subckt netg3377 g3377_2 g3377_1 gnd +C1 g3377_2 gnd 2.080806f +C2 g3377_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3377_1 2.224404 +R2 g3377_2 1 2.224404 +.ends + +.subckt netg6698 g6698_1 g6698_0 gnd +C1 g6698_1 gnd 2.080806f +C2 g6698_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6698_0 2.224404 +R2 1 g6698_1 2.224404 +.ends + +.subckt netg4054 g4054_1 g4054_0 gnd +C1 g4054_1 gnd 2.080806f +C2 g4054_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4054_0 2.224404 +R2 1 g4054_1 2.224404 +.ends + +.subckt netg4262 g4262_1 g4262_0 gnd +C1 g4262_1 gnd 2.080806f +C2 g4262_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4262_0 1 2.224404 +R2 1 g4262_1 2.224404 +.ends + +.subckt netg5274 g5274_1 g5274_0 gnd +C1 g5274_1 gnd 2.080806f +C2 g5274_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5274_0 1 2.224404 +R2 1 g5274_1 2.224404 +.ends + +.subckt netg5829 g5829_0 g5829_1 gnd +C1 g5829_0 gnd 2.080806f +C2 g5829_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5829_0 2.224404 +R2 g5829_1 1 2.224404 +.ends + +.subckt netg5454 g5454_1 g5454_0 g5454_2 gnd +C1 g5454_1 gnd 2.080806f +C2 g5454_0 gnd 2.080806f +C3 g5454_2 gnd 2.080806f +R1 g5454_0 g5454_1 2.224404 +R2 g5454_2 g5454_0 2.224404 +.ends + +.subckt netg1887 g1887_1 g1887_0 gnd +C1 g1887_1 gnd 2.080806f +C2 g1887_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1887_0 1 2.224404 +R2 1 g1887_1 2.224404 +.ends + +.subckt netg1024 g1024_2 g1024_1 g1024_0 gnd +C1 g1024_2 gnd 2.080806f +C2 g1024_1 gnd 2.080806f +C3 g1024_0 gnd 2.080806f +R1 g1024_1 g1024_0 2.224404 +R2 g1024_2 g1024_1 2.224404 +.ends + +.subckt netg6654 g6654_0 g6654_1 gnd +C1 g6654_0 gnd 2.080806f +C2 g6654_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6654_0 2.224404 +R2 g6654_1 1 2.224404 +.ends + +.subckt netg4285 g4285_1 g4285_0 gnd +C1 g4285_1 gnd 2.080806f +C2 g4285_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4285_0 2.224404 +R2 g4285_1 1 2.224404 +.ends + +.subckt netg7086 g7086_1 g7086_0 gnd +C1 g7086_1 gnd 2.080806f +C2 g7086_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7086_0 1 2.224404 +R2 1 g7086_1 2.224404 +.ends + +.subckt netg7372 g7372_0 g7372_1 gnd +C1 g7372_0 gnd 2.080806f +C2 g7372_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7372_0 2.224404 +R2 g7372_1 1 2.224404 +.ends + +.subckt netg1076 g1076_2 g1076_1 gnd +C1 g1076_2 gnd 2.080806f +C2 g1076_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1076_2 1 2.224404 +R2 g1076_1 1 2.224404 +.ends + +.subckt netg6530 g6530_1 g6530_0 gnd +C1 g6530_1 gnd 2.080806f +C2 g6530_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6530_0 1 2.224404 +R2 g6530_1 1 2.224404 +.ends + +.subckt netg2392 g2392_2 g2392_1 gnd +C1 g2392_2 gnd 2.080806f +C2 g2392_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2392_1 1 2.224404 +R2 1 g2392_2 2.224404 +.ends + +.subckt netg7424 g7424_1 g7424_0 gnd +C1 g7424_1 gnd 2.080806f +C2 g7424_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7424_0 1 2.224404 +R2 1 g7424_1 2.224404 +.ends + +.subckt netg6924 g6924_1 g6924_0 gnd +C1 g6924_1 gnd 2.080806f +C2 g6924_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6924_0 2.224404 +R2 g6924_1 1 2.224404 +.ends + +.subckt netg5121 g5121_0 g5121_1 gnd +C1 g5121_0 gnd 2.080806f +C2 g5121_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5121_0 1 2.224404 +R2 g5121_1 1 2.224404 +.ends + +.subckt netg5027 g5027_1 g5027_2 g5027_0 gnd +C1 g5027_1 gnd 2.080806f +C2 g5027_2 gnd 2.080806f +C3 g5027_0 gnd 2.080806f +R1 g5027_2 g5027_0 2.224404 +R2 g5027_1 g5027_2 2.224404 +.ends + +.subckt netg5995 g5995_1 g5995_0 gnd +C1 g5995_1 gnd 2.080806f +C2 g5995_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5995_0 2.224404 +R2 g5995_1 1 2.224404 +.ends + +.subckt netg5033 g5033_2 g5033_0 g5033_1 gnd +C1 g5033_2 gnd 2.080806f +C2 g5033_0 gnd 2.080806f +C3 g5033_1 gnd 2.080806f +R1 g5033_1 g5033_0 2.224404 +R2 g5033_2 g5033_1 2.224404 +.ends + +.subckt netg7180 g7180_2 g7180_1 g7180_0 gnd +C1 g7180_2 gnd 2.080806f +C2 g7180_1 gnd 2.080806f +C3 g7180_0 gnd 2.080806f +R1 g7180_2 g7180_0 2.224404 +R2 g7180_2 g7180_1 2.224404 +.ends + +.subckt netg1315 g1315_0 g1315_1 gnd +C1 g1315_0 gnd 2.080806f +C2 g1315_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1315_0 1 2.224404 +R2 g1315_1 1 2.224404 +.ends + +.subckt netg6174 g6174_0 g6174_1 gnd +C1 g6174_0 gnd 2.080806f +C2 g6174_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6174_0 2.224404 +R2 g6174_1 1 2.224404 +.ends + +.subckt netg2763 g2763_1 g2763_0 gnd +C1 g2763_1 gnd 2.080806f +C2 g2763_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2763_0 2.224404 +R2 g2763_1 1 2.224404 +.ends + +.subckt netg5846 g5846_1 g5846_0 gnd +C1 g5846_1 gnd 2.080806f +C2 g5846_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5846_0 2.224404 +R2 g5846_1 1 2.224404 +.ends + +.subckt netg5700 g5700_1 g5700_0 g5700_2 gnd +C1 g5700_1 gnd 2.080806f +C2 g5700_0 gnd 2.080806f +C3 g5700_2 gnd 2.080806f +R1 g5700_2 g5700_0 2.224404 +R2 g5700_1 g5700_2 2.224404 +.ends + +.subckt netg3459 g3459_2 g3459_0 gnd +C1 g3459_2 gnd 2.080806f +C2 g3459_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3459_0 2.224404 +R2 g3459_2 1 2.224404 +.ends + +.subckt netg3465 g3465_1 g3465_0 gnd +C1 g3465_1 gnd 2.080806f +C2 g3465_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3465_0 2.224404 +R2 g3465_1 1 2.224404 +.ends + +.subckt netg7348 g7348_0 g7348_1 gnd +C1 g7348_0 gnd 2.080806f +C2 g7348_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7348_0 1 2.224404 +R2 g7348_1 1 2.224404 +.ends + +.subckt netg5864 g5864_1 g5864_0 gnd +C1 g5864_1 gnd 2.080806f +C2 g5864_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5864_0 1 2.224404 +R2 1 g5864_1 2.224404 +.ends + +.subckt netg3891 g3891_0 g3891_1 gnd +C1 g3891_0 gnd 2.080806f +C2 g3891_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3891_0 1 2.224404 +R2 1 g3891_1 2.224404 +.ends + +.subckt netg7339 g7339_1 g7339_0 gnd +C1 g7339_1 gnd 2.080806f +C2 g7339_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7339_0 1 2.224404 +R2 1 g7339_1 2.224404 +.ends + +.subckt netg5981 g5981_1 g5981_0 gnd +C1 g5981_1 gnd 2.080806f +C2 g5981_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5981_0 1 2.224404 +R2 1 g5981_1 2.224404 +.ends + +.subckt netg7115 g7115_0 g7115_1 gnd +C1 g7115_0 gnd 2.080806f +C2 g7115_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7115_0 1 2.224404 +R2 g7115_1 1 2.224404 +.ends + +.subckt netg6670 g6670_1 g6670_0 gnd +C1 g6670_1 gnd 2.080806f +C2 g6670_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6670_0 2.224404 +R2 g6670_1 1 2.224404 +.ends + +.subckt netg2507 g2507_1 g2507_2 g2507_0 gnd +C1 g2507_1 gnd 2.080806f +C2 g2507_2 gnd 2.080806f +C3 g2507_0 gnd 2.080806f +R1 g2507_0 g2507_1 2.224404 +R2 g2507_1 g2507_2 2.224404 +.ends + +.subckt netg6070 g6070_0 g6070_1 gnd +C1 g6070_0 gnd 2.080806f +C2 g6070_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6070_0 2.224404 +R2 g6070_1 1 2.224404 +.ends + +.subckt netg7256 g7256_1 g7256_0 gnd +C1 g7256_1 gnd 2.080806f +C2 g7256_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7256_0 2.224404 +R2 1 g7256_1 2.224404 +.ends + +.subckt netg4041 g4041_1 g4041_0 gnd +C1 g4041_1 gnd 2.080806f +C2 g4041_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4041_0 1 2.224404 +R2 1 g4041_1 2.224404 +.ends + +.subckt netx522 x522_0 x522_1 gnd +C1 x522_0 gnd 2.080806f +C2 x522_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x522_0 2.224404 +R2 x522_1 1 2.224404 +.ends + +.subckt netg99 g99_1 g99_0 gnd +C1 g99_1 gnd 2.080806f +C2 g99_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g99_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g99_1 2.224404 +.ends + +.subckt netg5086 g5086_0 g5086_2 g5086_1 gnd +C1 g5086_0 gnd 2.080806f +C2 g5086_2 gnd 2.080806f +C3 g5086_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5086_0 1 2.224404 +R2 g5086_1 1 2.224404 +R3 g5086_1 g5086_2 2.224404 +.ends + +.subckt netg4343 g4343_0 g4343_1 gnd +C1 g4343_0 gnd 2.080806f +C2 g4343_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4343_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4343_1 2 2.224404 +.ends + +.subckt netg1587 g1587_0 g1587_1 gnd +C1 g1587_0 gnd 2.080806f +C2 g1587_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1587_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1587_1 2.224404 +.ends + +.subckt netg3472 g3472_1 g3472_0 gnd +C1 g3472_1 gnd 2.080806f +C2 g3472_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3472_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3472_1 2.224404 +.ends + +.subckt netg7014 g7014_1 g7014_0 gnd +C1 g7014_1 gnd 2.080806f +C2 g7014_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7014_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7014_1 2.224404 +.ends + +.subckt netg3186 g3186_2 g3186_1 g3186_0 gnd +C1 g3186_2 gnd 2.080806f +C2 g3186_1 gnd 2.080806f +C3 g3186_0 gnd 2.080806f +R1 g3186_0 g3186_1 2.224404 +C4 1 gnd 2.080806f +R2 g3186_1 1 2.224404 +R3 1 g3186_2 2.224404 +.ends + +.subckt netg1048 g1048_0 g1048_2 g1048_1 gnd +C1 g1048_0 gnd 2.080806f +C2 g1048_2 gnd 2.080806f +C3 g1048_1 gnd 2.080806f +R1 g1048_1 g1048_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g1048_1 2.224404 +R3 g1048_2 1 2.224404 +.ends + +.subckt netg6370 g6370_1 g6370_0 gnd +C1 g6370_1 gnd 2.080806f +C2 g6370_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6370_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6370_1 2 2.224404 +.ends + +.subckt netg5214 g5214_0 g5214_1 g5214_2 gnd +C1 g5214_0 gnd 2.080806f +C2 g5214_1 gnd 2.080806f +C3 g5214_2 gnd 2.080806f +R1 g5214_2 g5214_0 2.224404 +C4 1 gnd 2.080806f +R2 g5214_2 1 2.224404 +R3 g5214_1 1 2.224404 +.ends + +.subckt netg6722 g6722_0 g6722_2 gnd +C1 g6722_0 gnd 2.080806f +C2 g6722_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6722_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6722_2 2.224404 +.ends + +.subckt netg5492 g5492_1 g5492_0 gnd +C1 g5492_1 gnd 2.080806f +C2 g5492_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5492_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g5492_1 2.224404 +.ends + +.subckt netx232 x232_0 x232_1 gnd +C1 x232_0 gnd 2.080806f +C2 x232_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x232_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x232_1 2.224404 +.ends + +.subckt netg6687 g6687_2 g6687_1 g6687_3 g6687_0 gnd +C1 g6687_2 gnd 2.080806f +C2 g6687_1 gnd 2.080806f +C3 g6687_3 gnd 2.080806f +C4 g6687_0 gnd 2.080806f +R1 g6687_1 g6687_0 2.224404 +R2 g6687_2 g6687_0 2.224404 +R3 g6687_2 g6687_3 2.224404 +.ends + +.subckt netg2880 g2880_0 g2880_1 gnd +C1 g2880_0 gnd 2.080806f +C2 g2880_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2880_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2880_1 2 2.224404 +.ends + +.subckt netg2594 g2594_2 g2594_0 g2594_1 gnd +C1 g2594_2 gnd 2.080806f +C2 g2594_0 gnd 2.080806f +C3 g2594_1 gnd 2.080806f +R1 g2594_1 g2594_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2594_1 2.224404 +R3 1 g2594_2 2.224404 +.ends + +.subckt netg6917 g6917_0 g6917_1 gnd +C1 g6917_0 gnd 2.080806f +C2 g6917_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6917_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6917_1 2 2.224404 +.ends + +.subckt netx302 x302_1 x302_0 gnd +C1 x302_1 gnd 2.080806f +C2 x302_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x302_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x302_1 2 2.224404 +.ends + +.subckt netg6044 g6044_1 g6044_0 gnd +C1 g6044_1 gnd 2.080806f +C2 g6044_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6044_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6044_1 2 2.224404 +.ends + +.subckt netg1938 g1938_0 g1938_1 gnd +C1 g1938_0 gnd 2.080806f +C2 g1938_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1938_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1938_1 2 2.224404 +.ends + +.subckt netg2624 g2624_1 g2624_2 g2624_0 gnd +C1 g2624_1 gnd 2.080806f +C2 g2624_2 gnd 2.080806f +C3 g2624_0 gnd 2.080806f +R1 g2624_0 g2624_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g2624_0 2.224404 +R3 g2624_1 1 2.224404 +.ends + +.subckt netg1877 g1877_0 g1877_2 g1877_1 gnd +C1 g1877_0 gnd 2.080806f +C2 g1877_2 gnd 2.080806f +C3 g1877_1 gnd 2.080806f +R1 g1877_0 g1877_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g1877_0 2.224404 +R3 g1877_1 1 2.224404 +.ends + +.subckt netg5598 g5598_0 g5598_1 gnd +C1 g5598_0 gnd 2.080806f +C2 g5598_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5598_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5598_1 2 2.224404 +.ends + +.subckt netg6198 g6198_1 g6198_0 gnd +C1 g6198_1 gnd 2.080806f +C2 g6198_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6198_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6198_1 2.224404 +.ends + +.subckt netg2231 g2231_1 g2231_0 gnd +C1 g2231_1 gnd 2.080806f +C2 g2231_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2231_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2231_1 2.224404 +.ends + +.subckt netg2665 g2665_0 g2665_1 g2665_2 gnd +C1 g2665_0 gnd 2.080806f +C2 g2665_1 gnd 2.080806f +C3 g2665_2 gnd 2.080806f +R1 g2665_0 g2665_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g2665_0 2.224404 +R3 g2665_2 1 2.224404 +.ends + +.subckt netg6975 g6975_1 g6975_0 gnd +C1 g6975_1 gnd 2.080806f +C2 g6975_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6975_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6975_1 2 2.224404 +.ends + +.subckt netg544 g544_1 g544_0 gnd +C1 g544_1 gnd 2.080806f +C2 g544_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g544_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g544_1 2.224404 +.ends + +.subckt netg4893 g4893_1 g4893_0 g4893_2 gnd +C1 g4893_1 gnd 2.080806f +C2 g4893_0 gnd 2.080806f +C3 g4893_2 gnd 2.080806f +R1 g4893_1 g4893_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4893_1 2.224404 +R3 g4893_2 1 2.224404 +.ends + +.subckt netg3114 g3114_0 g3114_2 g3114_1 gnd +C1 g3114_0 gnd 2.080806f +C2 g3114_2 gnd 2.080806f +C3 g3114_1 gnd 2.080806f +R1 g3114_0 g3114_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g3114_0 2.224404 +R3 g3114_2 1 2.224404 +.ends + +.subckt netg6927 g6927_0 g6927_1 gnd +C1 g6927_0 gnd 2.080806f +C2 g6927_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6927_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6927_1 2.224404 +.ends + +.subckt netg3165 g3165_1 g3165_2 g3165_0 gnd +C1 g3165_1 gnd 2.080806f +C2 g3165_2 gnd 2.080806f +C3 g3165_0 gnd 2.080806f +R1 g3165_0 g3165_1 2.224404 +C4 1 gnd 2.080806f +R2 g3165_1 1 2.224404 +R3 1 g3165_2 2.224404 +.ends + +.subckt netg3902 g3902_1 g3902_0 gnd +C1 g3902_1 gnd 2.080806f +C2 g3902_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3902_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3902_1 2 2.224404 +.ends + +.subckt netg5153 g5153_2 g5153_1 g5153_0 gnd +C1 g5153_2 gnd 2.080806f +C2 g5153_1 gnd 2.080806f +C3 g5153_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5153_0 2.224404 +R2 1 g5153_1 2.224404 +C5 2 gnd 2.080806f +R3 g5153_0 2 2.224404 +R4 2 g5153_2 2.224404 +.ends + +.subckt netg5578 g5578_0 g5578_1 g5578_2 gnd +C1 g5578_0 gnd 2.080806f +C2 g5578_1 gnd 2.080806f +C3 g5578_2 gnd 2.080806f +R1 g5578_2 g5578_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5578_2 2.224404 +R3 g5578_1 1 2.224404 +.ends + +.subckt netg4657 g4657_0 g4657_1 g4657_2 gnd +C1 g4657_0 gnd 2.080806f +C2 g4657_1 gnd 2.080806f +C3 g4657_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4657_0 1 2.224404 +R2 1 g4657_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g4657_0 2.224404 +R4 2 g4657_2 2.224404 +.ends + +.subckt netg6288 g6288_0 g6288_2 g6288_1 gnd +C1 g6288_0 gnd 2.080806f +C2 g6288_2 gnd 2.080806f +C3 g6288_1 gnd 2.080806f +R1 g6288_2 g6288_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g6288_2 2.224404 +R3 g6288_1 1 2.224404 +.ends + +.subckt netg82 g82_0 g82_1 gnd +C1 g82_0 gnd 2.080806f +C2 g82_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g82_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g82_1 2 2.224404 +.ends + +.subckt netg1907 g1907_0 g1907_1 gnd +C1 g1907_0 gnd 2.080806f +C2 g1907_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1907_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1907_1 2.224404 +.ends + +.subckt netg4953 g4953_0 g4953_2 gnd +C1 g4953_0 gnd 2.080806f +C2 g4953_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4953_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4953_2 2 2.224404 +.ends + +.subckt netg6653 g6653_1 g6653_0 gnd +C1 g6653_1 gnd 2.080806f +C2 g6653_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6653_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6653_1 2 2.224404 +.ends + +.subckt netg5047 g5047_0 g5047_2 gnd +C1 g5047_0 gnd 2.080806f +C2 g5047_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5047_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5047_2 2 2.224404 +.ends + +.subckt netg6164 g6164_1 g6164_0 gnd +C1 g6164_1 gnd 2.080806f +C2 g6164_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6164_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6164_1 2 2.224404 +.ends + +.subckt netg5422 g5422_1 g5422_0 gnd +C1 g5422_1 gnd 2.080806f +C2 g5422_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5422_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5422_1 2 2.224404 +.ends + +.subckt netg1936 g1936_1 g1936_0 gnd +C1 g1936_1 gnd 2.080806f +C2 g1936_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1936_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1936_1 2 2.224404 +.ends + +.subckt netg2498 g2498_0 g2498_1 g2498_2 gnd +C1 g2498_0 gnd 2.080806f +C2 g2498_1 gnd 2.080806f +C3 g2498_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2498_0 2.224404 +R2 g2498_1 1 2.224404 +R3 g2498_2 g2498_1 2.224404 +.ends + +.subckt netg2722 g2722_2 g2722_0 g2722_1 gnd +C1 g2722_2 gnd 2.080806f +C2 g2722_0 gnd 2.080806f +C3 g2722_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2722_0 2.224404 +R2 g2722_1 1 2.224404 +R3 g2722_1 g2722_2 2.224404 +.ends + +.subckt netg3276 g3276_0 g3276_2 g3276_1 gnd +C1 g3276_0 gnd 2.080806f +C2 g3276_2 gnd 2.080806f +C3 g3276_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3276_0 2.224404 +R2 1 g3276_2 2.224404 +R3 g3276_1 g3276_2 2.224404 +.ends + +.subckt netg958 g958_1 g958_2 gnd +C1 g958_1 gnd 2.080806f +C2 g958_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g958_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g958_1 2.224404 +.ends + +.subckt netg5539 g5539_1 g5539_0 gnd +C1 g5539_1 gnd 2.080806f +C2 g5539_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5539_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5539_1 2 2.224404 +.ends + +.subckt netg4066 g4066_1 g4066_0 gnd +C1 g4066_1 gnd 2.080806f +C2 g4066_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4066_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4066_1 2 2.224404 +.ends + +.subckt netg2769 g2769_0 g2769_1 gnd +C1 g2769_0 gnd 2.080806f +C2 g2769_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2769_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2769_1 2 2.224404 +.ends + +.subckt netg6049 g6049_0 g6049_1 gnd +C1 g6049_0 gnd 2.080806f +C2 g6049_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6049_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6049_1 2 2.224404 +.ends + +.subckt netg3380 g3380_1 g3380_0 g3380_2 gnd +C1 g3380_1 gnd 2.080806f +C2 g3380_0 gnd 2.080806f +C3 g3380_2 gnd 2.080806f +R1 g3380_2 g3380_0 2.224404 +C4 1 gnd 2.080806f +R2 g3380_2 1 2.224404 +R3 g3380_1 1 2.224404 +.ends + +.subckt netg6007 g6007_0 g6007_1 gnd +C1 g6007_0 gnd 2.080806f +C2 g6007_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6007_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6007_1 2 2.224404 +.ends + +.subckt netg4905 g4905_2 g4905_1 g4905_0 gnd +C1 g4905_2 gnd 2.080806f +C2 g4905_1 gnd 2.080806f +C3 g4905_0 gnd 2.080806f +R1 g4905_2 g4905_0 2.224404 +C4 1 gnd 2.080806f +R2 g4905_2 1 2.224404 +R3 1 g4905_1 2.224404 +.ends + +.subckt netg2695 g2695_1 g2695_0 g2695_2 gnd +C1 g2695_1 gnd 2.080806f +C2 g2695_0 gnd 2.080806f +C3 g2695_2 gnd 2.080806f +R1 g2695_0 g2695_2 2.224404 +C4 1 gnd 2.080806f +R2 g2695_2 1 2.224404 +R3 1 g2695_1 2.224404 +.ends + +.subckt netg6552 g6552_0 g6552_1 gnd +C1 g6552_0 gnd 2.080806f +C2 g6552_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6552_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6552_1 2 2.224404 +.ends + +.subckt netg3368 g3368_2 g3368_1 g3368_0 gnd +C1 g3368_2 gnd 2.080806f +C2 g3368_1 gnd 2.080806f +C3 g3368_0 gnd 2.080806f +R1 g3368_2 g3368_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3368_2 2.224404 +R3 1 g3368_1 2.224404 +.ends + +.subckt netg5622 g5622_0 g5622_2 gnd +C1 g5622_0 gnd 2.080806f +C2 g5622_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5622_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5622_2 2.224404 +.ends + +.subckt netg3318 g3318_0 g3318_2 g3318_1 gnd +C1 g3318_0 gnd 2.080806f +C2 g3318_2 gnd 2.080806f +C3 g3318_1 gnd 2.080806f +R1 g3318_1 g3318_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3318_1 2.224404 +R3 g3318_2 1 2.224404 +.ends + +.subckt netg2401 g2401_1 g2401_0 g2401_2 gnd +C1 g2401_1 gnd 2.080806f +C2 g2401_0 gnd 2.080806f +C3 g2401_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2401_0 2.224404 +R2 g2401_1 1 2.224404 +R3 g2401_2 g2401_1 2.224404 +.ends + +.subckt netg1439 g1439_1 g1439_0 gnd +C1 g1439_1 gnd 2.080806f +C2 g1439_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1439_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1439_1 2 2.224404 +.ends + +.subckt netg2232 g2232_1 g2232_0 gnd +C1 g2232_1 gnd 2.080806f +C2 g2232_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2232_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2232_1 2.224404 +.ends + +.subckt netg6466 g6466_0 g6466_1 gnd +C1 g6466_0 gnd 2.080806f +C2 g6466_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6466_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6466_1 2 2.224404 +.ends + +.subckt netg5929 g5929_0 g5929_1 gnd +C1 g5929_0 gnd 2.080806f +C2 g5929_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5929_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5929_1 2 2.224404 +.ends + +.subckt netg4319 g4319_1 g4319_0 gnd +C1 g4319_1 gnd 2.080806f +C2 g4319_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4319_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4319_1 2 2.224404 +.ends + +.subckt netg3019 g3019_1 g3019_0 gnd +C1 g3019_1 gnd 2.080806f +C2 g3019_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3019_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g3019_1 2.224404 +.ends + +.subckt netg7138 g7138_0 g7138_1 gnd +C1 g7138_0 gnd 2.080806f +C2 g7138_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7138_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7138_1 2.224404 +.ends + +.subckt netg6262 g6262_0 g6262_1 gnd +C1 g6262_0 gnd 2.080806f +C2 g6262_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6262_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6262_1 2 2.224404 +.ends + +.subckt netg3545 g3545_0 g3545_1 gnd +C1 g3545_0 gnd 2.080806f +C2 g3545_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3545_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3545_1 2 2.224404 +.ends + +.subckt netg6540 g6540_0 g6540_1 gnd +C1 g6540_0 gnd 2.080806f +C2 g6540_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6540_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6540_1 2.224404 +.ends + +.subckt netg6964 g6964_1 g6964_0 g6964_2 gnd +C1 g6964_1 gnd 2.080806f +C2 g6964_0 gnd 2.080806f +C3 g6964_2 gnd 2.080806f +R1 g6964_0 g6964_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g6964_0 2.224404 +R3 g6964_1 1 2.224404 +.ends + +.subckt netg1454 g1454_0 g1454_1 gnd +C1 g1454_0 gnd 2.080806f +C2 g1454_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1454_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1454_1 2.224404 +.ends + +.subckt netg2468 g2468_1 g2468_2 g2468_0 gnd +C1 g2468_1 gnd 2.080806f +C2 g2468_2 gnd 2.080806f +C3 g2468_0 gnd 2.080806f +R1 g2468_2 g2468_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2468_0 2.224404 +R3 g2468_1 1 2.224404 +.ends + +.subckt netg5915 g5915_0 g5915_1 gnd +C1 g5915_0 gnd 2.080806f +C2 g5915_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5915_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5915_1 2 2.224404 +.ends + +.subckt netg5668 g5668_2 g5668_0 g5668_1 gnd +C1 g5668_2 gnd 2.080806f +C2 g5668_0 gnd 2.080806f +C3 g5668_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5668_0 1 2.224404 +R2 1 g5668_2 2.224404 +R3 g5668_1 g5668_2 2.224404 +.ends + +.subckt netg6387 g6387_1 g6387_0 gnd +C1 g6387_1 gnd 2.080806f +C2 g6387_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6387_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6387_1 2.224404 +.ends + +.subckt netg5923 g5923_2 g5923_1 g5923_0 gnd +C1 g5923_2 gnd 2.080806f +C2 g5923_1 gnd 2.080806f +C3 g5923_0 gnd 2.080806f +R1 g5923_0 g5923_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5923_0 2.224404 +R3 1 g5923_2 2.224404 +.ends + +.subckt netg2528 g2528_1 g2528_0 g2528_2 gnd +C1 g2528_1 gnd 2.080806f +C2 g2528_0 gnd 2.080806f +C3 g2528_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2528_0 1 2.224404 +R2 1 g2528_1 2.224404 +R3 g2528_1 g2528_2 2.224404 +.ends + +.subckt netg5685 g5685_2 g5685_0 g5685_1 gnd +C1 g5685_2 gnd 2.080806f +C2 g5685_0 gnd 2.080806f +C3 g5685_1 gnd 2.080806f +R1 g5685_2 g5685_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5685_0 2.224404 +R3 g5685_1 1 2.224404 +.ends + +.subckt netg6934 g6934_0 g6934_1 gnd +C1 g6934_0 gnd 2.080806f +C2 g6934_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6934_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6934_1 2.224404 +.ends + +.subckt netx321 x321_0 x321_1 gnd +C1 x321_0 gnd 2.080806f +C2 x321_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x321_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x321_1 2 2.224404 +.ends + +.subckt netg1057 g1057_2 g1057_0 g1057_1 gnd +C1 g1057_2 gnd 2.080806f +C2 g1057_0 gnd 2.080806f +C3 g1057_1 gnd 2.080806f +R1 g1057_0 g1057_2 2.224404 +C4 1 gnd 2.080806f +R2 g1057_2 1 2.224404 +R3 g1057_1 1 2.224404 +.ends + +.subckt netg4292 g4292_0 g4292_1 gnd +C1 g4292_0 gnd 2.080806f +C2 g4292_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4292_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4292_1 2 2.224404 +.ends + +.subckt netg2615 g2615_0 g2615_2 g2615_1 gnd +C1 g2615_0 gnd 2.080806f +C2 g2615_2 gnd 2.080806f +C3 g2615_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2615_0 1 2.224404 +R2 1 g2615_1 2.224404 +R3 g2615_2 1 2.224404 +.ends + +.subckt netg6796 g6796_2 g6796_1 g6796_0 gnd +C1 g6796_2 gnd 2.080806f +C2 g6796_1 gnd 2.080806f +C3 g6796_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6796_0 1 2.224404 +R2 1 g6796_2 2.224404 +R3 g6796_2 g6796_1 2.224404 +.ends + +.subckt netg3567 g3567_0 g3567_1 gnd +C1 g3567_0 gnd 2.080806f +C2 g3567_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3567_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3567_1 2.224404 +.ends + +.subckt netg1157 g1157_0 g1157_1 gnd +C1 g1157_0 gnd 2.080806f +C2 g1157_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1157_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1157_1 2.224404 +.ends + +.subckt netg6495 g6495_0 g6495_2 g6495_1 gnd +C1 g6495_0 gnd 2.080806f +C2 g6495_2 gnd 2.080806f +C3 g6495_1 gnd 2.080806f +R1 g6495_2 g6495_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g6495_2 2.224404 +R3 g6495_1 1 2.224404 +.ends + +.subckt netg2346 g2346_1 g2346_0 gnd +C1 g2346_1 gnd 2.080806f +C2 g2346_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2346_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2346_1 2.224404 +.ends + +.subckt netg2418 g2418_0 g2418_2 g2418_1 gnd +C1 g2418_0 gnd 2.080806f +C2 g2418_2 gnd 2.080806f +C3 g2418_1 gnd 2.080806f +R1 g2418_2 g2418_0 2.224404 +C4 1 gnd 2.080806f +R2 g2418_2 1 2.224404 +R3 1 g2418_1 2.224404 +.ends + +.subckt netg3539 g3539_1 g3539_0 gnd +C1 g3539_1 gnd 2.080806f +C2 g3539_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3539_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3539_1 2.224404 +.ends + +.subckt netg4044 g4044_1 g4044_0 gnd +C1 g4044_1 gnd 2.080806f +C2 g4044_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4044_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4044_1 2.224404 +.ends + +.subckt netg2825 g2825_0 g2825_1 gnd +C1 g2825_0 gnd 2.080806f +C2 g2825_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2825_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2825_1 2 2.224404 +.ends + +.subckt netg4003 g4003_1 g4003_2 g4003_0 gnd +C1 g4003_1 gnd 2.080806f +C2 g4003_2 gnd 2.080806f +C3 g4003_0 gnd 2.080806f +R1 g4003_2 g4003_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4003_2 2.224404 +R3 1 g4003_1 2.224404 +.ends + +.subckt netg2395 g2395_2 g2395_1 g2395_0 gnd +C1 g2395_2 gnd 2.080806f +C2 g2395_1 gnd 2.080806f +C3 g2395_0 gnd 2.080806f +R1 g2395_2 g2395_0 2.224404 +C4 1 gnd 2.080806f +R2 g2395_0 1 2.224404 +R3 1 g2395_1 2.224404 +.ends + +.subckt netg3893 g3893_0 g3893_1 gnd +C1 g3893_0 gnd 2.080806f +C2 g3893_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3893_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g3893_1 2 2.224404 +.ends + +.subckt netg1513 g1513_0 g1513_1 gnd +C1 g1513_0 gnd 2.080806f +C2 g1513_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1513_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1513_1 2.224404 +.ends + +.subckt netg5677 g5677_0 g5677_2 g5677_1 gnd +C1 g5677_0 gnd 2.080806f +C2 g5677_2 gnd 2.080806f +C3 g5677_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5677_0 1 2.224404 +R2 g5677_1 1 2.224404 +R3 1 g5677_2 2.224404 +.ends + +.subckt netg5553 g5553_0 g5553_1 gnd +C1 g5553_0 gnd 2.080806f +C2 g5553_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5553_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5553_1 2.224404 +.ends + +.subckt netg7433 g7433_2 g7433_0 g7433_1 gnd +C1 g7433_2 gnd 2.080806f +C2 g7433_0 gnd 2.080806f +C3 g7433_1 gnd 2.080806f +R1 g7433_0 g7433_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g7433_0 2.224404 +R3 g7433_1 1 2.224404 +.ends + +.subckt netg5861 g5861_0 g5861_2 g5861_1 gnd +C1 g5861_0 gnd 2.080806f +C2 g5861_2 gnd 2.080806f +C3 g5861_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5861_0 2.224404 +R2 g5861_2 1 2.224404 +R3 g5861_1 g5861_2 2.224404 +.ends + +.subckt netg6074 g6074_1 g6074_0 gnd +C1 g6074_1 gnd 2.080806f +C2 g6074_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6074_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6074_1 2 2.224404 +.ends + +.subckt netg5734 g5734_1 g5734_2 gnd +C1 g5734_1 gnd 2.080806f +C2 g5734_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5734_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5734_1 2.224404 +.ends + +.subckt netg4190 g4190_2 g4190_0 g4190_1 gnd +C1 g4190_2 gnd 2.080806f +C2 g4190_0 gnd 2.080806f +C3 g4190_1 gnd 2.080806f +R1 g4190_0 g4190_1 2.224404 +C4 1 gnd 2.080806f +R2 g4190_1 1 2.224404 +R3 1 g4190_2 2.224404 +.ends + +.subckt netg3504 g3504_1 g3504_0 gnd +C1 g3504_1 gnd 2.080806f +C2 g3504_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3504_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3504_1 2 2.224404 +.ends + +.subckt netg5967 g5967_1 g5967_0 gnd +C1 g5967_1 gnd 2.080806f +C2 g5967_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5967_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5967_1 2 2.224404 +.ends + +.subckt netg7000 g7000_1 g7000_0 gnd +C1 g7000_1 gnd 2.080806f +C2 g7000_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7000_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7000_1 2.224404 +.ends + +.subckt netg5522 g5522_2 g5522_0 g5522_1 gnd +C1 g5522_2 gnd 2.080806f +C2 g5522_0 gnd 2.080806f +C3 g5522_1 gnd 2.080806f +R1 g5522_1 g5522_0 2.224404 +C4 1 gnd 2.080806f +R2 g5522_0 1 2.224404 +R3 1 g5522_2 2.224404 +.ends + +.subckt netg3441 g3441_1 g3441_2 gnd +C1 g3441_1 gnd 2.080806f +C2 g3441_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3441_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3441_1 2 2.224404 +.ends + +.subckt netg6535 g6535_1 g6535_0 gnd +C1 g6535_1 gnd 2.080806f +C2 g6535_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6535_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6535_1 2 2.224404 +.ends + +.subckt netg6541 g6541_1 g6541_0 gnd +C1 g6541_1 gnd 2.080806f +C2 g6541_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6541_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6541_1 2 2.224404 +.ends + +.subckt netg3485 g3485_1 g3485_0 gnd +C1 g3485_1 gnd 2.080806f +C2 g3485_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3485_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3485_1 2 2.224404 +.ends + +.subckt netg4617 g4617_1 g4617_0 gnd +C1 g4617_1 gnd 2.080806f +C2 g4617_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4617_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4617_1 2 2.224404 +.ends + +.subckt netg1579 g1579_1 g1579_0 gnd +C1 g1579_1 gnd 2.080806f +C2 g1579_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1579_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1579_1 2 2.224404 +.ends + +.subckt netg4151 g4151_1 g4151_2 g4151_0 gnd +C1 g4151_1 gnd 2.080806f +C2 g4151_2 gnd 2.080806f +C3 g4151_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4151_0 2.224404 +R2 g4151_1 1 2.224404 +R3 1 g4151_2 2.224404 +.ends + +.subckt netg4213 g4213_1 g4213_2 gnd +C1 g4213_1 gnd 2.080806f +C2 g4213_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4213_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4213_2 2.224404 +.ends + +.subckt netg6093 g6093_2 g6093_1 g6093_0 gnd +C1 g6093_2 gnd 2.080806f +C2 g6093_1 gnd 2.080806f +C3 g6093_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6093_0 2.224404 +R2 g6093_2 1 2.224404 +R3 g6093_1 g6093_2 2.224404 +.ends + +.subckt netg3569 g3569_0 g3569_1 gnd +C1 g3569_0 gnd 2.080806f +C2 g3569_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3569_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3569_1 2 2.224404 +.ends + +.subckt netg2800 g2800_0 g2800_1 gnd +C1 g2800_0 gnd 2.080806f +C2 g2800_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2800_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2800_1 2 2.224404 +.ends + +.subckt netg5089 g5089_0 g5089_2 g5089_1 gnd +C1 g5089_0 gnd 2.080806f +C2 g5089_2 gnd 2.080806f +C3 g5089_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5089_0 2.224404 +R2 g5089_1 1 2.224404 +R3 g5089_2 1 2.224404 +.ends + +.subckt netg6467 g6467_1 g6467_0 gnd +C1 g6467_1 gnd 2.080806f +C2 g6467_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6467_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6467_1 2 2.224404 +.ends + +.subckt netg6856 g6856_1 g6856_2 g6856_0 gnd +C1 g6856_1 gnd 2.080806f +C2 g6856_2 gnd 2.080806f +C3 g6856_0 gnd 2.080806f +R1 g6856_1 g6856_0 2.224404 +C4 1 gnd 2.080806f +R2 g6856_0 1 2.224404 +R3 1 g6856_2 2.224404 +.ends + +.subckt netg7312 g7312_2 g7312_0 g7312_1 gnd +C1 g7312_2 gnd 2.080806f +C2 g7312_0 gnd 2.080806f +C3 g7312_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7312_0 1 2.224404 +R2 1 g7312_1 2.224404 +R3 1 g7312_2 2.224404 +.ends + +.subckt netg2958 g2958_0 g2958_1 gnd +C1 g2958_0 gnd 2.080806f +C2 g2958_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2958_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2958_1 2.224404 +.ends + +.subckt netg6327 g6327_0 g6327_1 gnd +C1 g6327_0 gnd 2.080806f +C2 g6327_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6327_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6327_1 2.224404 +.ends + +.subckt netg4178 g4178_1 g4178_0 gnd +C1 g4178_1 gnd 2.080806f +C2 g4178_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4178_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g4178_1 2.224404 +.ends + +.subckt netg5886 g5886_1 g5886_0 gnd +C1 g5886_1 gnd 2.080806f +C2 g5886_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5886_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5886_1 2 2.224404 +.ends + +.subckt netg6315 g6315_1 g6315_0 gnd +C1 g6315_1 gnd 2.080806f +C2 g6315_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6315_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6315_1 2.224404 +.ends + +.subckt netg2561 g2561_2 g2561_1 g2561_0 gnd +C1 g2561_2 gnd 2.080806f +C2 g2561_1 gnd 2.080806f +C3 g2561_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2561_0 2.224404 +R2 g2561_1 1 2.224404 +R3 g2561_1 g2561_2 2.224404 +.ends + +.subckt netg1571 g1571_1 g1571_0 gnd +C1 g1571_1 gnd 2.080806f +C2 g1571_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1571_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1571_1 2 2.224404 +.ends + +.subckt netg1435 g1435_1 g1435_0 gnd +C1 g1435_1 gnd 2.080806f +C2 g1435_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1435_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1435_1 2.224404 +.ends + +.subckt netg991 g991_2 g991_0 gnd +C1 g991_2 gnd 2.080806f +C2 g991_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g991_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g991_2 2 2.224404 +.ends + +.subckt netg6551 g6551_0 g6551_1 gnd +C1 g6551_0 gnd 2.080806f +C2 g6551_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6551_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6551_1 2.224404 +.ends + +.subckt netg6374 g6374_1 g6374_2 g6374_0 gnd +C1 g6374_1 gnd 2.080806f +C2 g6374_2 gnd 2.080806f +C3 g6374_0 gnd 2.080806f +R1 g6374_1 g6374_0 2.224404 +C4 1 gnd 2.080806f +R2 g6374_0 1 2.224404 +R3 1 g6374_2 2.224404 +.ends + +.subckt netg2353 g2353_0 g2353_1 g2353_2 gnd +C1 g2353_0 gnd 2.080806f +C2 g2353_1 gnd 2.080806f +C3 g2353_2 gnd 2.080806f +R1 g2353_0 g2353_2 2.224404 +C4 1 gnd 2.080806f +R2 g2353_2 1 2.224404 +R3 1 g2353_1 2.224404 +.ends + +.subckt netg2618 g2618_1 g2618_2 gnd +C1 g2618_1 gnd 2.080806f +C2 g2618_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2618_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2618_1 2.224404 +.ends + +.subckt netg1253 g1253_1 g1253_0 gnd +C1 g1253_1 gnd 2.080806f +C2 g1253_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1253_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1253_1 2.224404 +.ends + +.subckt netg2450 g2450_0 g2450_1 g2450_2 gnd +C1 g2450_0 gnd 2.080806f +C2 g2450_1 gnd 2.080806f +C3 g2450_2 gnd 2.080806f +R1 g2450_1 g2450_0 2.224404 +C4 1 gnd 2.080806f +R2 g2450_0 1 2.224404 +R3 1 g2450_2 2.224404 +.ends + +.subckt netg5731 g5731_0 g5731_1 g5731_2 gnd +C1 g5731_0 gnd 2.080806f +C2 g5731_1 gnd 2.080806f +C3 g5731_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5731_0 2.224404 +R2 g5731_2 1 2.224404 +R3 g5731_1 g5731_2 2.224404 +.ends + +.subckt netg2627 g2627_0 g2627_2 g2627_1 gnd +C1 g2627_0 gnd 2.080806f +C2 g2627_2 gnd 2.080806f +C3 g2627_1 gnd 2.080806f +R1 g2627_1 g2627_0 2.224404 +C4 1 gnd 2.080806f +R2 g2627_1 1 2.224404 +R3 1 g2627_2 2.224404 +.ends + +.subckt netg3303 g3303_1 g3303_2 gnd +C1 g3303_1 gnd 2.080806f +C2 g3303_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3303_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g3303_1 2.224404 +.ends + +.subckt netg6124 g6124_1 g6124_0 g6124_2 gnd +C1 g6124_1 gnd 2.080806f +C2 g6124_0 gnd 2.080806f +C3 g6124_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6124_0 1 2.224404 +R2 1 g6124_2 2.224404 +R3 g6124_1 g6124_2 2.224404 +.ends + +.subckt netg6893 g6893_1 g6893_0 gnd +C1 g6893_1 gnd 2.080806f +C2 g6893_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6893_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6893_1 2.224404 +.ends + +.subckt netg3058 g3058_0 g3058_1 gnd +C1 g3058_0 gnd 2.080806f +C2 g3058_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3058_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g3058_1 2 2.224404 +.ends + +.subckt netg6987 g6987_2 g6987_1 g6987_0 gnd +C1 g6987_2 gnd 2.080806f +C2 g6987_1 gnd 2.080806f +C3 g6987_0 gnd 2.080806f +R1 g6987_1 g6987_0 2.224404 +C4 1 gnd 2.080806f +R2 g6987_0 1 2.224404 +R3 1 g6987_2 2.224404 +.ends + +.subckt netg5036 g5036_1 g5036_0 g5036_2 gnd +C1 g5036_1 gnd 2.080806f +C2 g5036_0 gnd 2.080806f +C3 g5036_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5036_0 1 2.224404 +R2 1 g5036_1 2.224404 +R3 g5036_1 g5036_2 2.224404 +.ends + +.subckt netg1581 g1581_0 g1581_1 gnd +C1 g1581_0 gnd 2.080806f +C2 g1581_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1581_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1581_1 2 2.224404 +.ends + +.subckt netg6625 g6625_2 g6625_1 g6625_0 gnd +C1 g6625_2 gnd 2.080806f +C2 g6625_1 gnd 2.080806f +C3 g6625_0 gnd 2.080806f +R1 g6625_0 g6625_1 2.224404 +C4 1 gnd 2.080806f +R2 g6625_1 1 2.224404 +R3 1 g6625_2 2.224404 +.ends + +.subckt netg4448 g4448_1 g4448_0 gnd +C1 g4448_1 gnd 2.080806f +C2 g4448_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4448_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4448_1 2 2.224404 +.ends + +.subckt netg955 g955_0 g955_2 g955_1 gnd +C1 g955_0 gnd 2.080806f +C2 g955_2 gnd 2.080806f +C3 g955_1 gnd 2.080806f +R1 g955_0 g955_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g955_0 2.224404 +R3 g955_2 1 2.224404 +.ends + +.subckt netg3987 g3987_0 g3987_1 gnd +C1 g3987_0 gnd 2.080806f +C2 g3987_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3987_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3987_1 2 2.224404 +.ends + +.subckt netg4045 g4045_0 g4045_1 gnd +C1 g4045_0 gnd 2.080806f +C2 g4045_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4045_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4045_1 2 2.224404 +.ends + +.subckt netg1932 g1932_0 g1932_1 gnd +C1 g1932_0 gnd 2.080806f +C2 g1932_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1932_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1932_1 2 2.224404 +.ends + +.subckt netg3538 g3538_1 g3538_0 gnd +C1 g3538_1 gnd 2.080806f +C2 g3538_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3538_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3538_1 2.224404 +.ends + +.subckt netg2659 g2659_1 g2659_0 g2659_2 gnd +C1 g2659_1 gnd 2.080806f +C2 g2659_0 gnd 2.080806f +C3 g2659_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2659_0 1 2.224404 +R2 1 g2659_2 2.224404 +R3 g2659_2 g2659_1 2.224404 +.ends + +.subckt netx272 x272_0 x272_1 gnd +C1 x272_0 gnd 2.080806f +C2 x272_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x272_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x272_1 2 2.224404 +.ends + +.subckt netg2805 g2805_0 g2805_1 gnd +C1 g2805_0 gnd 2.080806f +C2 g2805_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2805_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2805_1 2.224404 +.ends + +.subckt netg5107 g5107_0 g5107_2 g5107_1 gnd +C1 g5107_0 gnd 2.080806f +C2 g5107_2 gnd 2.080806f +C3 g5107_1 gnd 2.080806f +R1 g5107_0 g5107_1 2.224404 +C4 1 gnd 2.080806f +R2 g5107_0 1 2.224404 +R3 g5107_2 1 2.224404 +.ends + +.subckt netg3918 g3918_1 g3918_0 gnd +C1 g3918_1 gnd 2.080806f +C2 g3918_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3918_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3918_1 2.224404 +.ends + +.subckt netg6904 g6904_1 g6904_0 gnd +C1 g6904_1 gnd 2.080806f +C2 g6904_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6904_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6904_1 2.224404 +.ends + +.subckt netg6400 g6400_0 g6400_1 gnd +C1 g6400_0 gnd 2.080806f +C2 g6400_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6400_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6400_1 2.224404 +.ends + +.subckt netg6515 g6515_1 g6515_0 gnd +C1 g6515_1 gnd 2.080806f +C2 g6515_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6515_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6515_1 2.224404 +.ends + +.subckt netg2573 g2573_2 g2573_1 g2573_0 gnd +C1 g2573_2 gnd 2.080806f +C2 g2573_1 gnd 2.080806f +C3 g2573_0 gnd 2.080806f +R1 g2573_1 g2573_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2573_1 2.224404 +R3 g2573_2 1 2.224404 +.ends + +.subckt netg6096 g6096_1 g6096_2 gnd +C1 g6096_1 gnd 2.080806f +C2 g6096_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6096_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6096_1 2.224404 +.ends + +.subckt netg6829 g6829_2 g6829_1 g6829_0 g6829_3 gnd +C1 g6829_2 gnd 2.080806f +C2 g6829_1 gnd 2.080806f +C3 g6829_0 gnd 2.080806f +C4 g6829_3 gnd 2.080806f +R1 g6829_3 g6829_0 2.224404 +R2 g6829_2 g6829_3 2.224404 +R3 g6829_1 g6829_2 2.224404 +.ends + +.subckt netg5407 g5407_1 g5407_0 gnd +C1 g5407_1 gnd 2.080806f +C2 g5407_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5407_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5407_1 2 2.224404 +.ends + +.subckt netg4303 g4303_0 g4303_1 gnd +C1 g4303_0 gnd 2.080806f +C2 g4303_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4303_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g4303_1 2.224404 +.ends + +.subckt netg3321 g3321_0 g3321_1 g3321_2 gnd +C1 g3321_0 gnd 2.080806f +C2 g3321_1 gnd 2.080806f +C3 g3321_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3321_0 1 2.224404 +R2 1 g3321_1 2.224404 +R3 g3321_1 g3321_2 2.224404 +.ends + +.subckt netg895 g895_2 g895_1 g895_0 gnd +C1 g895_2 gnd 2.080806f +C2 g895_1 gnd 2.080806f +C3 g895_0 gnd 2.080806f +R1 g895_0 g895_2 2.224404 +C4 1 gnd 2.080806f +R2 g895_2 1 2.224404 +R3 1 g895_1 2.224404 +.ends + +.subckt netg6715 g6715_0 g6715_1 g6715_2 gnd +C1 g6715_0 gnd 2.080806f +C2 g6715_1 gnd 2.080806f +C3 g6715_2 gnd 2.080806f +R1 g6715_0 g6715_2 2.224404 +C4 1 gnd 2.080806f +R2 g6715_0 1 2.224404 +R3 1 g6715_1 2.224404 +.ends + +.subckt netx382 x382_1 x382_0 gnd +C1 x382_1 gnd 2.080806f +C2 x382_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x382_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x382_1 2 2.224404 +.ends + +.subckt netg2600 g2600_2 g2600_0 g2600_1 gnd +C1 g2600_2 gnd 2.080806f +C2 g2600_0 gnd 2.080806f +C3 g2600_1 gnd 2.080806f +R1 g2600_0 g2600_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g2600_1 2.224404 +R3 g2600_2 1 2.224404 +.ends + +.subckt netg3386 g3386_1 g3386_2 g3386_0 gnd +C1 g3386_1 gnd 2.080806f +C2 g3386_2 gnd 2.080806f +C3 g3386_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3386_0 2.224404 +R2 g3386_2 1 2.224404 +R3 g3386_2 g3386_1 2.224404 +.ends + +.subckt netg3297 g3297_2 g3297_1 g3297_0 gnd +C1 g3297_2 gnd 2.080806f +C2 g3297_1 gnd 2.080806f +C3 g3297_0 gnd 2.080806f +R1 g3297_2 g3297_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3297_2 2.224404 +R3 1 g3297_1 2.224404 +.ends + +.subckt netg3527 g3527_0 g3527_1 gnd +C1 g3527_0 gnd 2.080806f +C2 g3527_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3527_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3527_1 2.224404 +.ends + +.subckt netg7444 g7444_1 g7444_0 gnd +C1 g7444_1 gnd 2.080806f +C2 g7444_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7444_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7444_1 2.224404 +.ends + +.subckt netg4296 g4296_0 g4296_1 gnd +C1 g4296_0 gnd 2.080806f +C2 g4296_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4296_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4296_1 2.224404 +.ends + +.subckt netg5593 g5593_2 g5593_1 g5593_0 gnd +C1 g5593_2 gnd 2.080806f +C2 g5593_1 gnd 2.080806f +C3 g5593_0 gnd 2.080806f +R1 g5593_0 g5593_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5593_0 2.224404 +R3 g5593_2 1 2.224404 +.ends + +.subckt netg2806 g2806_1 g2806_0 gnd +C1 g2806_1 gnd 2.080806f +C2 g2806_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2806_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2806_1 2.224404 +.ends + +.subckt netg2917 g2917_1 g2917_0 gnd +C1 g2917_1 gnd 2.080806f +C2 g2917_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2917_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2917_1 2 2.224404 +.ends + +.subckt netg4985 g4985_2 g4985_1 g4985_0 gnd +C1 g4985_2 gnd 2.080806f +C2 g4985_1 gnd 2.080806f +C3 g4985_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4985_0 2.224404 +R2 g4985_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g4985_0 2.224404 +R4 g4985_2 2 2.224404 +.ends + +.subckt netg4060 g4060_0 g4060_1 gnd +C1 g4060_0 gnd 2.080806f +C2 g4060_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4060_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4060_1 2.224404 +.ends + +.subckt netg1387 g1387_0 g1387_1 g1387_2 gnd +C1 g1387_0 gnd 2.080806f +C2 g1387_1 gnd 2.080806f +C3 g1387_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1387_0 1 2.224404 +R2 1 g1387_2 2.224404 +R3 g1387_2 g1387_1 2.224404 +.ends + +.subckt netg5003 g5003_1 g5003_2 g5003_0 gnd +C1 g5003_1 gnd 2.080806f +C2 g5003_2 gnd 2.080806f +C3 g5003_0 gnd 2.080806f +R1 g5003_2 g5003_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5003_2 2.224404 +R3 g5003_1 1 2.224404 +.ends + +.subckt netg2044 g2044_0 g2044_1 gnd +C1 g2044_0 gnd 2.080806f +C2 g2044_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2044_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2044_1 2 2.224404 +.ends + +.subckt netg6685 g6685_0 g6685_1 gnd +C1 g6685_0 gnd 2.080806f +C2 g6685_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6685_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6685_1 2 2.224404 +.ends + +.subckt netg5387 g5387_0 g5387_1 gnd +C1 g5387_0 gnd 2.080806f +C2 g5387_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5387_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5387_1 2.224404 +.ends + +.subckt netg1871 g1871_2 g1871_1 g1871_0 gnd +C1 g1871_2 gnd 2.080806f +C2 g1871_1 gnd 2.080806f +C3 g1871_0 gnd 2.080806f +R1 g1871_2 g1871_0 2.224404 +C4 1 gnd 2.080806f +R2 g1871_0 1 2.224404 +R3 1 g1871_1 2.224404 +.ends + +.subckt netg4401 g4401_0 g4401_1 gnd +C1 g4401_0 gnd 2.080806f +C2 g4401_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4401_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4401_1 2.224404 +.ends + +.subckt netg1865 g1865_1 g1865_0 g1865_2 gnd +C1 g1865_1 gnd 2.080806f +C2 g1865_0 gnd 2.080806f +C3 g1865_2 gnd 2.080806f +R1 g1865_0 g1865_1 2.224404 +C4 1 gnd 2.080806f +R2 g1865_1 1 2.224404 +R3 1 g1865_2 2.224404 +.ends + +.subckt netg4887 g4887_1 g4887_2 g4887_0 gnd +C1 g4887_1 gnd 2.080806f +C2 g4887_2 gnd 2.080806f +C3 g4887_0 gnd 2.080806f +R1 g4887_2 g4887_0 2.224404 +C4 1 gnd 2.080806f +R2 g4887_0 1 2.224404 +R3 1 g4887_1 2.224404 +.ends + +.subckt netg3192 g3192_1 g3192_2 g3192_0 gnd +C1 g3192_1 gnd 2.080806f +C2 g3192_2 gnd 2.080806f +C3 g3192_0 gnd 2.080806f +R1 g3192_2 g3192_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3192_0 2.224404 +R3 1 g3192_1 2.224404 +.ends + +.subckt netg2471 g2471_0 g2471_2 g2471_1 gnd +C1 g2471_0 gnd 2.080806f +C2 g2471_2 gnd 2.080806f +C3 g2471_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2471_0 2.224404 +R2 1 g2471_1 2.224404 +C5 2 gnd 2.080806f +R3 g2471_0 2 2.224404 +R4 2 g2471_2 2.224404 +.ends + +.subckt netg6226 g6226_1 g6226_0 g6226_2 gnd +C1 g6226_1 gnd 2.080806f +C2 g6226_0 gnd 2.080806f +C3 g6226_2 gnd 2.080806f +R1 g6226_1 g6226_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g6226_1 2.224404 +R3 g6226_2 1 2.224404 +.ends + +.subckt netg5909 g5909_1 g5909_0 g5909_2 gnd +C1 g5909_1 gnd 2.080806f +C2 g5909_0 gnd 2.080806f +C3 g5909_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5909_0 1 2.224404 +R2 1 g5909_2 2.224404 +R3 g5909_1 g5909_2 2.224404 +.ends + +.subckt netg4764 g4764_1 g4764_2 g4764_0 gnd +C1 g4764_1 gnd 2.080806f +C2 g4764_2 gnd 2.080806f +C3 g4764_0 gnd 2.080806f +R1 g4764_0 g4764_1 2.224404 +C4 1 gnd 2.080806f +R2 g4764_1 1 2.224404 +R3 1 g4764_2 2.224404 +.ends + +.subckt netg4157 g4157_0 g4157_2 gnd +C1 g4157_0 gnd 2.080806f +C2 g4157_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4157_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4157_2 2 2.224404 +.ends + +.subckt netg5232 g5232_0 g5232_1 gnd +C1 g5232_0 gnd 2.080806f +C2 g5232_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5232_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5232_1 2.224404 +.ends + +.subckt netg1137 g1137_1 g1137_0 gnd +C1 g1137_1 gnd 2.080806f +C2 g1137_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1137_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1137_1 2.224404 +.ends + +.subckt netx282 x282_1 x282_0 gnd +C1 x282_1 gnd 2.080806f +C2 x282_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x282_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x282_1 2.224404 +.ends + +.subckt netg1553 g1553_0 g1553_1 gnd +C1 g1553_0 gnd 2.080806f +C2 g1553_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1553_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1553_1 2.224404 +.ends + +.subckt netg4667 g4667_0 g4667_1 gnd +C1 g4667_0 gnd 2.080806f +C2 g4667_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4667_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4667_1 2 2.224404 +.ends + +.subckt netg1073 g1073_1 g1073_0 g1073_2 gnd +C1 g1073_1 gnd 2.080806f +C2 g1073_0 gnd 2.080806f +C3 g1073_2 gnd 2.080806f +R1 g1073_1 g1073_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g1073_1 2.224404 +R3 g1073_2 1 2.224404 +.ends + +.subckt netg2829 g2829_1 g2829_0 gnd +C1 g2829_1 gnd 2.080806f +C2 g2829_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2829_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2829_1 2.224404 +.ends + +.subckt netg1042 g1042_1 g1042_0 g1042_2 gnd +C1 g1042_1 gnd 2.080806f +C2 g1042_0 gnd 2.080806f +C3 g1042_2 gnd 2.080806f +R1 g1042_0 g1042_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g1042_0 2.224404 +R3 1 g1042_1 2.224404 +.ends + +.subckt netg6419 g6419_0 g6419_1 gnd +C1 g6419_0 gnd 2.080806f +C2 g6419_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6419_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6419_1 2 2.224404 +.ends + +.subckt netg3554 g3554_1 g3554_0 gnd +C1 g3554_1 gnd 2.080806f +C2 g3554_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3554_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3554_1 2.224404 +.ends + +.subckt netg3474 g3474_1 g3474_0 gnd +C1 g3474_1 gnd 2.080806f +C2 g3474_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3474_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3474_1 2.224404 +.ends + +.subckt netg6824 g6824_1 g6824_0 gnd +C1 g6824_1 gnd 2.080806f +C2 g6824_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6824_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6824_1 2.224404 +.ends + +.subckt netg5160 g5160_1 g5160_0 g5160_2 gnd +C1 g5160_1 gnd 2.080806f +C2 g5160_0 gnd 2.080806f +C3 g5160_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5160_0 2.224404 +R2 g5160_1 1 2.224404 +R3 1 g5160_2 2.224404 +.ends + +.subckt netg4781 g4781_1 g4781_0 g4781_2 gnd +C1 g4781_1 gnd 2.080806f +C2 g4781_0 gnd 2.080806f +C3 g4781_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4781_0 1 2.224404 +R2 1 g4781_2 2.224404 +R3 g4781_2 g4781_1 2.224404 +.ends + +.subckt netx441 x441_0 x441_1 gnd +C1 x441_0 gnd 2.080806f +C2 x441_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x441_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x441_1 2 2.224404 +.ends + +.subckt netg7041 g7041_1 g7041_2 g7041_0 gnd +C1 g7041_1 gnd 2.080806f +C2 g7041_2 gnd 2.080806f +C3 g7041_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7041_0 2.224404 +R2 g7041_2 1 2.224404 +R3 g7041_2 g7041_1 2.224404 +.ends + +.subckt netg3502 g3502_1 g3502_0 gnd +C1 g3502_1 gnd 2.080806f +C2 g3502_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3502_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3502_1 2 2.224404 +.ends + +.subckt netg5858 g5858_0 g5858_1 gnd +C1 g5858_0 gnd 2.080806f +C2 g5858_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5858_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5858_1 2 2.224404 +.ends + +.subckt netg5951 g5951_0 g5951_1 gnd +C1 g5951_0 gnd 2.080806f +C2 g5951_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5951_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g5951_1 2.224404 +.ends + +.subckt netg1433 g1433_1 g1433_0 gnd +C1 g1433_1 gnd 2.080806f +C2 g1433_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1433_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1433_1 2 2.224404 +.ends + +.subckt netg6116 g6116_0 g6116_2 g6116_1 gnd +C1 g6116_0 gnd 2.080806f +C2 g6116_2 gnd 2.080806f +C3 g6116_1 gnd 2.080806f +R1 g6116_1 g6116_0 2.224404 +C4 1 gnd 2.080806f +R2 g6116_0 1 2.224404 +R3 1 g6116_2 2.224404 +.ends + +.subckt netg7106 g7106_0 g7106_1 gnd +C1 g7106_0 gnd 2.080806f +C2 g7106_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7106_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7106_1 2.224404 +.ends + +.subckt netg6193 g6193_0 g6193_1 gnd +C1 g6193_0 gnd 2.080806f +C2 g6193_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6193_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6193_1 2 2.224404 +.ends + +.subckt netg6386 g6386_1 g6386_0 gnd +C1 g6386_1 gnd 2.080806f +C2 g6386_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6386_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6386_1 2 2.224404 +.ends + +.subckt netg4405 g4405_0 g4405_1 gnd +C1 g4405_0 gnd 2.080806f +C2 g4405_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4405_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4405_1 2.224404 +.ends + +.subckt netg937 g937_2 g937_0 g937_1 gnd +C1 g937_2 gnd 2.080806f +C2 g937_0 gnd 2.080806f +C3 g937_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g937_0 2.224404 +R2 g937_1 1 2.224404 +R3 g937_1 g937_2 2.224404 +.ends + +.subckt netg2347 g2347_0 g2347_2 g2347_1 gnd +C1 g2347_0 gnd 2.080806f +C2 g2347_2 gnd 2.080806f +C3 g2347_1 gnd 2.080806f +R1 g2347_1 g2347_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2347_0 2.224404 +R3 g2347_2 1 2.224404 +.ends + +.subckt netg3219 g3219_1 g3219_2 g3219_0 gnd +C1 g3219_1 gnd 2.080806f +C2 g3219_2 gnd 2.080806f +C3 g3219_0 gnd 2.080806f +R1 g3219_0 g3219_2 2.224404 +C4 1 gnd 2.080806f +R2 g3219_2 1 2.224404 +R3 1 g3219_1 2.224404 +.ends + +.subckt netg1311 g1311_1 g1311_0 gnd +C1 g1311_1 gnd 2.080806f +C2 g1311_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1311_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g1311_1 2.224404 +.ends + +.subckt netg3054 g3054_1 g3054_0 gnd +C1 g3054_1 gnd 2.080806f +C2 g3054_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3054_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3054_1 2.224404 +.ends + +.subckt netg964 g964_1 g964_0 g964_2 gnd +C1 g964_1 gnd 2.080806f +C2 g964_0 gnd 2.080806f +C3 g964_2 gnd 2.080806f +R1 g964_0 g964_2 2.224404 +C4 1 gnd 2.080806f +R2 g964_2 1 2.224404 +R3 1 g964_1 2.224404 +.ends + +.subckt netg6941 g6941_1 g6941_0 gnd +C1 g6941_1 gnd 2.080806f +C2 g6941_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6941_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6941_1 2 2.224404 +.ends + +.subckt netg1552 g1552_0 g1552_1 gnd +C1 g1552_0 gnd 2.080806f +C2 g1552_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1552_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1552_1 2.224404 +.ends + +.subckt netg3222 g3222_0 g3222_2 g3222_1 gnd +C1 g3222_0 gnd 2.080806f +C2 g3222_2 gnd 2.080806f +C3 g3222_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3222_0 2.224404 +R2 1 g3222_2 2.224404 +R3 g3222_1 g3222_2 2.224404 +.ends + +.subckt netg6527 g6527_0 g6527_1 gnd +C1 g6527_0 gnd 2.080806f +C2 g6527_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6527_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6527_1 2.224404 +.ends + +.subckt netg5508 g5508_2 g5508_0 g5508_1 gnd +C1 g5508_2 gnd 2.080806f +C2 g5508_0 gnd 2.080806f +C3 g5508_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5508_0 1 2.224404 +R2 1 g5508_2 2.224404 +R3 g5508_2 g5508_1 2.224404 +.ends + +.subckt netg4095 g4095_1 g4095_0 gnd +C1 g4095_1 gnd 2.080806f +C2 g4095_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4095_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4095_1 2.224404 +.ends + +.subckt netg898 g898_1 g898_2 g898_0 gnd +C1 g898_1 gnd 2.080806f +C2 g898_2 gnd 2.080806f +C3 g898_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g898_0 2.224404 +R2 g898_1 1 2.224404 +R3 g898_2 g898_1 2.224404 +.ends + +.subckt netg1175 g1175_1 g1175_0 gnd +C1 g1175_1 gnd 2.080806f +C2 g1175_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1175_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g1175_1 2.224404 +.ends + +.subckt netg6478 g6478_1 g6478_2 g6478_0 gnd +C1 g6478_1 gnd 2.080806f +C2 g6478_2 gnd 2.080806f +C3 g6478_0 gnd 2.080806f +R1 g6478_0 g6478_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g6478_0 2.224404 +R3 g6478_2 1 2.224404 +.ends + +.subckt netg7357 g7357_1 g7357_0 gnd +C1 g7357_1 gnd 2.080806f +C2 g7357_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7357_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g7357_1 2.224404 +.ends + +.subckt netg7343 g7343_1 g7343_0 gnd +C1 g7343_1 gnd 2.080806f +C2 g7343_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7343_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g7343_1 2.224404 +.ends + +.subckt netg919 g919_2 g919_1 g919_0 gnd +C1 g919_2 gnd 2.080806f +C2 g919_1 gnd 2.080806f +C3 g919_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g919_0 1 2.224404 +R2 1 g919_2 2.224404 +R3 g919_2 g919_1 2.224404 +.ends + +.subckt netg2716 g2716_1 g2716_0 g2716_2 gnd +C1 g2716_1 gnd 2.080806f +C2 g2716_0 gnd 2.080806f +C3 g2716_2 gnd 2.080806f +R1 g2716_0 g2716_1 2.224404 +C4 1 gnd 2.080806f +R2 g2716_1 1 2.224404 +R3 1 g2716_2 2.224404 +.ends + +.subckt netg3138 g3138_0 g3138_2 g3138_1 gnd +C1 g3138_0 gnd 2.080806f +C2 g3138_2 gnd 2.080806f +C3 g3138_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3138_0 2.224404 +R2 1 g3138_1 2.224404 +C5 2 gnd 2.080806f +R3 g3138_0 2 2.224404 +R4 2 g3138_2 2.224404 +.ends + +.subckt netg1096 g1096_0 g1096_1 gnd +C1 g1096_0 gnd 2.080806f +C2 g1096_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1096_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1096_1 2.224404 +.ends + +.subckt netg4046 g4046_0 g4046_1 gnd +C1 g4046_0 gnd 2.080806f +C2 g4046_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4046_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4046_1 2 2.224404 +.ends + +.subckt netg7216 g7216_1 g7216_0 gnd +C1 g7216_1 gnd 2.080806f +C2 g7216_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7216_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7216_1 2.224404 +.ends + +.subckt netg4399 g4399_1 g4399_0 gnd +C1 g4399_1 gnd 2.080806f +C2 g4399_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4399_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4399_1 2.224404 +.ends + +.subckt netg7104 g7104_0 g7104_1 gnd +C1 g7104_0 gnd 2.080806f +C2 g7104_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7104_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7104_1 2 2.224404 +.ends + +.subckt netx71 x71_0 x71_1 gnd +C1 x71_0 gnd 2.080806f +C2 x71_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x71_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 x71_1 2 2.224404 +.ends + +.subckt netg3264 g3264_0 g3264_1 g3264_2 gnd +C1 g3264_0 gnd 2.080806f +C2 g3264_1 gnd 2.080806f +C3 g3264_2 gnd 2.080806f +R1 g3264_2 g3264_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3264_2 2.224404 +R3 g3264_1 1 2.224404 +.ends + +.subckt netg5194 g5194_2 g5194_0 g5194_1 gnd +C1 g5194_2 gnd 2.080806f +C2 g5194_0 gnd 2.080806f +C3 g5194_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5194_0 1 2.224404 +R2 g5194_1 1 2.224404 +R3 g5194_2 g5194_1 2.224404 +.ends + +.subckt netg4154 g4154_1 g4154_2 gnd +C1 g4154_1 gnd 2.080806f +C2 g4154_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4154_2 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4154_1 2 2.224404 +.ends + +.subckt netg6051 g6051_1 g6051_0 gnd +C1 g6051_1 gnd 2.080806f +C2 g6051_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6051_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6051_1 2 2.224404 +.ends + +.subckt netg5954 g5954_1 g5954_0 gnd +C1 g5954_1 gnd 2.080806f +C2 g5954_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5954_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5954_1 2 2.224404 +.ends + +.subckt netg3542 g3542_1 g3542_0 gnd +C1 g3542_1 gnd 2.080806f +C2 g3542_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3542_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3542_1 2 2.224404 +.ends + +.subckt netg6883 g6883_1 g6883_0 gnd +C1 g6883_1 gnd 2.080806f +C2 g6883_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6883_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6883_1 2.224404 +.ends + +.subckt netg1844 g1844_3 g1844_1 g1844_2 gnd +C1 g1844_3 gnd 2.080806f +C2 g1844_1 gnd 2.080806f +C3 g1844_2 gnd 2.080806f +R1 g1844_2 g1844_3 2.224404 +C4 1 gnd 2.080806f +R2 g1844_3 1 2.224404 +R3 1 g1844_1 2.224404 +.ends + +.subckt netg4312 g4312_1 g4312_0 gnd +C1 g4312_1 gnd 2.080806f +C2 g4312_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4312_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4312_1 2 2.224404 +.ends + +.subckt netx351 x351_0 x351_1 gnd +C1 x351_0 gnd 2.080806f +C2 x351_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x351_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x351_1 2 2.224404 +.ends + +.subckt netg3347 g3347_1 g3347_0 gnd +C1 g3347_1 gnd 2.080806f +C2 g3347_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3347_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3347_1 2.224404 +.ends + +.subckt netg6932 g6932_1 g6932_0 gnd +C1 g6932_1 gnd 2.080806f +C2 g6932_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6932_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6932_1 2.224404 +.ends + +.subckt netg681 g681_1 g681_0 gnd +C1 g681_1 gnd 2.080806f +C2 g681_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g681_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g681_1 2.224404 +.ends + +.subckt netg7441 g7441_1 g7441_0 gnd +C1 g7441_1 gnd 2.080806f +C2 g7441_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7441_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7441_1 2.224404 +.ends + +.subckt netg1283 g1283_0 g1283_1 gnd +C1 g1283_0 gnd 2.080806f +C2 g1283_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1283_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1283_1 2 2.224404 +.ends + +.subckt netg3309 g3309_0 g3309_2 g3309_1 gnd +C1 g3309_0 gnd 2.080806f +C2 g3309_2 gnd 2.080806f +C3 g3309_1 gnd 2.080806f +R1 g3309_0 g3309_1 2.224404 +C4 1 gnd 2.080806f +R2 g3309_0 1 2.224404 +R3 1 g3309_2 2.224404 +.ends + +.subckt netg7017 g7017_0 g7017_1 gnd +C1 g7017_0 gnd 2.080806f +C2 g7017_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7017_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7017_1 2 2.224404 +.ends + +.subckt netg6637 g6637_1 g6637_0 g6637_2 gnd +C1 g6637_1 gnd 2.080806f +C2 g6637_0 gnd 2.080806f +C3 g6637_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6637_0 1 2.224404 +R2 1 g6637_1 2.224404 +R3 g6637_1 g6637_2 2.224404 +.ends + +.subckt netg7291 g7291_1 g7291_0 gnd +C1 g7291_1 gnd 2.080806f +C2 g7291_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7291_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7291_1 2.224404 +.ends + +.subckt netg2374 g2374_2 g2374_0 g2374_1 gnd +C1 g2374_2 gnd 2.080806f +C2 g2374_0 gnd 2.080806f +C3 g2374_1 gnd 2.080806f +R1 g2374_1 g2374_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2374_1 2.224404 +R3 g2374_2 1 2.224404 +.ends + +.subckt netg3921 g3921_1 g3921_0 gnd +C1 g3921_1 gnd 2.080806f +C2 g3921_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3921_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g3921_1 2 2.224404 +.ends + +.subckt netg1229 g1229_0 g1229_1 gnd +C1 g1229_0 gnd 2.080806f +C2 g1229_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1229_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1229_1 2.224404 +.ends + +.subckt netx521 x521_1 x521_0 gnd +C1 x521_1 gnd 2.080806f +C2 x521_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x521_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x521_1 2.224404 +.ends + +.subckt netx182 x182_0 x182_1 gnd +C1 x182_0 gnd 2.080806f +C2 x182_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x182_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x182_1 2.224404 +.ends + +.subckt netg7134 g7134_2 g7134_0 g7134_1 gnd +C1 g7134_2 gnd 2.080806f +C2 g7134_0 gnd 2.080806f +C3 g7134_1 gnd 2.080806f +R1 g7134_1 g7134_0 2.224404 +C4 1 gnd 2.080806f +R2 g7134_0 1 2.224404 +R3 1 g7134_2 2.224404 +.ends + +.subckt netg6360 g6360_0 g6360_1 gnd +C1 g6360_0 gnd 2.080806f +C2 g6360_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6360_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6360_1 2 2.224404 +.ends + +.subckt netg2638 g2638_0 g2638_2 g2638_1 gnd +C1 g2638_0 gnd 2.080806f +C2 g2638_2 gnd 2.080806f +C3 g2638_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2638_0 1 2.224404 +R2 1 g2638_1 2.224404 +R3 g2638_2 1 2.224404 +.ends + +.subckt netg6712 g6712_1 g6712_0 g6712_2 gnd +C1 g6712_1 gnd 2.080806f +C2 g6712_0 gnd 2.080806f +C3 g6712_2 gnd 2.080806f +R1 g6712_2 g6712_0 2.224404 +C4 1 gnd 2.080806f +R2 g6712_0 1 2.224404 +R3 1 g6712_1 2.224404 +.ends + +.subckt netg1021 g1021_0 g1021_2 g1021_1 gnd +C1 g1021_0 gnd 2.080806f +C2 g1021_2 gnd 2.080806f +C3 g1021_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1021_0 2.224404 +R2 1 g1021_1 2.224404 +C5 2 gnd 2.080806f +R3 g1021_0 2 2.224404 +R4 2 g1021_2 2.224404 +.ends + +.subckt netg5485 g5485_1 g5485_0 gnd +C1 g5485_1 gnd 2.080806f +C2 g5485_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5485_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5485_1 2 2.224404 +.ends + +.subckt netg2386 g2386_1 g2386_2 g2386_0 gnd +C1 g2386_1 gnd 2.080806f +C2 g2386_2 gnd 2.080806f +C3 g2386_0 gnd 2.080806f +R1 g2386_2 g2386_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2386_2 2.224404 +R3 g2386_1 1 2.224404 +.ends + +.subckt netg5413 g5413_1 g5413_0 gnd +C1 g5413_1 gnd 2.080806f +C2 g5413_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5413_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5413_1 2 2.224404 +.ends + +.subckt netg2997 g2997_1 g2997_0 gnd +C1 g2997_1 gnd 2.080806f +C2 g2997_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2997_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2997_1 2 2.224404 +.ends + +.subckt netg1903 g1903_0 g1903_1 gnd +C1 g1903_0 gnd 2.080806f +C2 g1903_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1903_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1903_1 2 2.224404 +.ends + +.subckt netg2662 g2662_2 g2662_1 g2662_0 gnd +C1 g2662_2 gnd 2.080806f +C2 g2662_1 gnd 2.080806f +C3 g2662_0 gnd 2.080806f +R1 g2662_0 g2662_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g2662_0 2.224404 +R3 g2662_2 1 2.224404 +.ends + +.subckt netg5465 g5465_1 g5465_0 gnd +C1 g5465_1 gnd 2.080806f +C2 g5465_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5465_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5465_1 2 2.224404 +.ends + +.subckt netg3395 g3395_0 g3395_1 g3395_2 gnd +C1 g3395_0 gnd 2.080806f +C2 g3395_1 gnd 2.080806f +C3 g3395_2 gnd 2.080806f +R1 g3395_2 g3395_0 2.224404 +C4 1 gnd 2.080806f +R2 g3395_0 1 2.224404 +R3 1 g3395_1 2.224404 +.ends + +.subckt netg6557 g6557_1 g6557_0 gnd +C1 g6557_1 gnd 2.080806f +C2 g6557_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6557_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6557_1 2.224404 +.ends + +.subckt netg2698 g2698_2 g2698_0 g2698_1 gnd +C1 g2698_2 gnd 2.080806f +C2 g2698_0 gnd 2.080806f +C3 g2698_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2698_0 2.224404 +R2 g2698_1 1 2.224404 +R3 g2698_2 g2698_1 2.224404 +.ends + +.subckt netg7007 g7007_1 g7007_0 gnd +C1 g7007_1 gnd 2.080806f +C2 g7007_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7007_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7007_1 2.224404 +.ends + +.subckt netg4255 g4255_0 g4255_1 gnd +C1 g4255_0 gnd 2.080806f +C2 g4255_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4255_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4255_1 2 2.224404 +.ends + +.subckt netg7274 g7274_0 g7274_1 gnd +C1 g7274_0 gnd 2.080806f +C2 g7274_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7274_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7274_1 2 2.224404 +.ends + +.subckt netg2734 g2734_2 g2734_1 gnd +C1 g2734_2 gnd 2.080806f +C2 g2734_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2734_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2734_2 2 2.224404 +.ends + +.subckt netg859 g859_2 g859_1 g859_0 gnd +C1 g859_2 gnd 2.080806f +C2 g859_1 gnd 2.080806f +C3 g859_0 gnd 2.080806f +R1 g859_2 g859_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g859_2 2.224404 +R3 g859_1 1 2.224404 +.ends + +.subckt netg1221 g1221_1 g1221_0 gnd +C1 g1221_1 gnd 2.080806f +C2 g1221_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1221_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1221_1 2 2.224404 +.ends + +.subckt netg4105 g4105_1 g4105_0 gnd +C1 g4105_1 gnd 2.080806f +C2 g4105_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4105_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4105_1 2 2.224404 +.ends + +.subckt netg6421 g6421_1 g6421_0 gnd +C1 g6421_1 gnd 2.080806f +C2 g6421_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6421_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6421_1 2 2.224404 +.ends + +.subckt netg7122 g7122_0 g7122_1 gnd +C1 g7122_0 gnd 2.080806f +C2 g7122_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7122_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7122_1 2 2.224404 +.ends + +.subckt netg4282 g4282_1 g4282_0 gnd +C1 g4282_1 gnd 2.080806f +C2 g4282_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4282_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4282_1 2 2.224404 +.ends + +.subckt netg3052 g3052_0 g3052_1 gnd +C1 g3052_0 gnd 2.080806f +C2 g3052_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3052_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3052_1 2.224404 +.ends + +.subckt netg3120 g3120_0 g3120_2 g3120_1 gnd +C1 g3120_0 gnd 2.080806f +C2 g3120_2 gnd 2.080806f +C3 g3120_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3120_0 2.224404 +R2 g3120_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g3120_0 2 2.224404 +R4 g3120_2 2 2.224404 +.ends + +.subckt netg2495 g2495_0 g2495_1 g2495_2 gnd +C1 g2495_0 gnd 2.080806f +C2 g2495_1 gnd 2.080806f +C3 g2495_2 gnd 2.080806f +R1 g2495_1 g2495_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2495_1 2.224404 +R3 g2495_2 1 2.224404 +.ends + +.subckt netg5323 g5323_0 g5323_1 gnd +C1 g5323_0 gnd 2.080806f +C2 g5323_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5323_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5323_1 2.224404 +.ends + +.subckt netx241 x241_0 x241_1 gnd +C1 x241_0 gnd 2.080806f +C2 x241_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x241_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x241_1 2.224404 +.ends + +.subckt netg1114 g1114_0 g1114_1 gnd +C1 g1114_0 gnd 2.080806f +C2 g1114_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1114_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1114_1 2.224404 +.ends + +.subckt netg2630 g2630_2 g2630_0 g2630_1 gnd +C1 g2630_2 gnd 2.080806f +C2 g2630_0 gnd 2.080806f +C3 g2630_1 gnd 2.080806f +R1 g2630_1 g2630_0 2.224404 +C4 1 gnd 2.080806f +R2 g2630_0 1 2.224404 +R3 1 g2630_2 2.224404 +.ends + +.subckt netx112 x112_1 x112_0 gnd +C1 x112_1 gnd 2.080806f +C2 x112_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x112_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x112_1 2 2.224404 +.ends + +.subckt netg5719 g5719_1 g5719_2 gnd +C1 g5719_1 gnd 2.080806f +C2 g5719_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5719_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5719_1 2.224404 +.ends + +.subckt netg3234 g3234_2 g3234_1 g3234_0 gnd +C1 g3234_2 gnd 2.080806f +C2 g3234_1 gnd 2.080806f +C3 g3234_0 gnd 2.080806f +R1 g3234_0 g3234_1 2.224404 +C4 1 gnd 2.080806f +R2 g3234_1 1 2.224404 +R3 1 g3234_2 2.224404 +.ends + +.subckt netg5836 g5836_2 g5836_1 g5836_0 gnd +C1 g5836_2 gnd 2.080806f +C2 g5836_1 gnd 2.080806f +C3 g5836_0 gnd 2.080806f +R1 g5836_1 g5836_0 2.224404 +C4 1 gnd 2.080806f +R2 g5836_1 1 2.224404 +R3 1 g5836_2 2.224404 +.ends + +.subckt netg7360 g7360_2 g7360_0 g7360_1 gnd +C1 g7360_2 gnd 2.080806f +C2 g7360_0 gnd 2.080806f +C3 g7360_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7360_0 1 2.224404 +R2 g7360_1 1 2.224404 +R3 1 g7360_2 2.224404 +.ends + +.subckt netg2459 g2459_2 g2459_1 g2459_0 gnd +C1 g2459_2 gnd 2.080806f +C2 g2459_1 gnd 2.080806f +C3 g2459_0 gnd 2.080806f +R1 g2459_2 g2459_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2459_0 2.224404 +R3 g2459_1 1 2.224404 +.ends + +.subckt netg3352 g3352_0 g3352_2 g3352_1 gnd +C1 g3352_0 gnd 2.080806f +C2 g3352_2 gnd 2.080806f +C3 g3352_1 gnd 2.080806f +R1 g3352_0 g3352_1 2.224404 +C4 1 gnd 2.080806f +R2 g3352_0 1 2.224404 +R3 1 g3352_2 2.224404 +.ends + +.subckt netg5098 g5098_2 g5098_1 g5098_0 gnd +C1 g5098_2 gnd 2.080806f +C2 g5098_1 gnd 2.080806f +C3 g5098_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5098_0 2.224404 +R2 g5098_1 1 2.224404 +R3 g5098_2 g5098_1 2.224404 +.ends + +.subckt netg7100 g7100_0 g7100_1 gnd +C1 g7100_0 gnd 2.080806f +C2 g7100_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7100_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g7100_1 2 2.224404 +.ends + +.subckt netg5115 g5115_1 g5115_0 g5115_2 gnd +C1 g5115_1 gnd 2.080806f +C2 g5115_0 gnd 2.080806f +C3 g5115_2 gnd 2.080806f +R1 g5115_0 g5115_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g5115_2 2.224404 +R3 1 g5115_1 2.224404 +.ends + +.subckt netg1263 g1263_1 g1263_0 gnd +C1 g1263_1 gnd 2.080806f +C2 g1263_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1263_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1263_1 2 2.224404 +.ends + +.subckt netx142 x142_1 x142_0 gnd +C1 x142_1 gnd 2.080806f +C2 x142_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x142_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 x142_1 2 2.224404 +.ends + +.subckt netg3064 g3064_1 g3064_0 gnd +C1 g3064_1 gnd 2.080806f +C2 g3064_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3064_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g3064_1 2 2.224404 +.ends + +.subckt netg5062 g5062_0 g5062_1 g5062_2 gnd +C1 g5062_0 gnd 2.080806f +C2 g5062_1 gnd 2.080806f +C3 g5062_2 gnd 2.080806f +R1 g5062_0 g5062_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g5062_2 2.224404 +R3 g5062_1 1 2.224404 +.ends + +.subckt netg7075 g7075_1 g7075_0 gnd +C1 g7075_1 gnd 2.080806f +C2 g7075_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7075_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7075_1 2.224404 +.ends + +.subckt netg3095 g3095_1 g3095_0 gnd +C1 g3095_1 gnd 2.080806f +C2 g3095_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3095_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3095_1 2.224404 +.ends + +.subckt netg4419 g4419_1 g4419_0 gnd +C1 g4419_1 gnd 2.080806f +C2 g4419_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4419_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4419_1 2 2.224404 +.ends + +.subckt netg2777 g2777_1 g2777_0 gnd +C1 g2777_1 gnd 2.080806f +C2 g2777_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2777_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2777_1 2 2.224404 +.ends + +.subckt netg928 g928_0 g928_1 g928_2 gnd +C1 g928_0 gnd 2.080806f +C2 g928_1 gnd 2.080806f +C3 g928_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g928_0 2.224404 +R2 g928_2 1 2.224404 +R3 g928_1 g928_2 2.224404 +.ends + +.subckt netg6811 g6811_2 g6811_0 g6811_1 gnd +C1 g6811_2 gnd 2.080806f +C2 g6811_0 gnd 2.080806f +C3 g6811_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6811_0 2.224404 +R2 g6811_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6811_0 2.224404 +R4 g6811_2 2 2.224404 +.ends + +.subckt netg934 g934_0 g934_2 g934_1 gnd +C1 g934_0 gnd 2.080806f +C2 g934_2 gnd 2.080806f +C3 g934_1 gnd 2.080806f +R1 g934_1 g934_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g934_1 2.224404 +R3 g934_2 1 2.224404 +.ends + +.subckt netg5118 g5118_1 g5118_0 gnd +C1 g5118_1 gnd 2.080806f +C2 g5118_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5118_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5118_1 2.224404 +.ends + +.subckt netg4164 g4164_1 g4164_0 g4164_2 gnd +C1 g4164_1 gnd 2.080806f +C2 g4164_0 gnd 2.080806f +C3 g4164_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4164_0 1 2.224404 +R2 g4164_1 1 2.224404 +R3 g4164_1 g4164_2 2.224404 +.ends + +.subckt netx271 x271_1 x271_0 gnd +C1 x271_1 gnd 2.080806f +C2 x271_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x271_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 x271_1 2 2.224404 +.ends + +.subckt netg5600 g5600_0 g5600_1 gnd +C1 g5600_0 gnd 2.080806f +C2 g5600_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5600_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5600_1 2.224404 +.ends + +.subckt netg1551 g1551_1 g1551_0 gnd +C1 g1551_1 gnd 2.080806f +C2 g1551_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1551_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1551_1 2 2.224404 +.ends + +.subckt netg2597 g2597_1 g2597_0 g2597_2 gnd +C1 g2597_1 gnd 2.080806f +C2 g2597_0 gnd 2.080806f +C3 g2597_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2597_0 1 2.224404 +R2 1 g2597_2 2.224404 +R3 g2597_2 g2597_1 2.224404 +.ends + +.subckt netg3084 g3084_1 g3084_0 gnd +C1 g3084_1 gnd 2.080806f +C2 g3084_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3084_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3084_1 2.224404 +.ends + +.subckt netg5661 g5661_1 g5661_2 g5661_0 gnd +C1 g5661_1 gnd 2.080806f +C2 g5661_2 gnd 2.080806f +C3 g5661_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5661_0 2.224404 +R2 g5661_1 1 2.224404 +R3 g5661_2 g5661_1 2.224404 +.ends + +.subckt netg2377 g2377_0 g2377_2 g2377_1 gnd +C1 g2377_0 gnd 2.080806f +C2 g2377_2 gnd 2.080806f +C3 g2377_1 gnd 2.080806f +R1 g2377_0 g2377_2 2.224404 +C4 1 gnd 2.080806f +R2 g2377_2 1 2.224404 +R3 1 g2377_1 2.224404 +.ends + +.subckt netx442 x442_1 x442_0 gnd +C1 x442_1 gnd 2.080806f +C2 x442_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x442_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x442_1 2.224404 +.ends + +.subckt netg6607 g6607_1 g6607_0 gnd +C1 g6607_1 gnd 2.080806f +C2 g6607_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6607_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6607_1 2 2.224404 +.ends + +.subckt netg1365 g1365_0 g1365_1 gnd +C1 g1365_0 gnd 2.080806f +C2 g1365_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1365_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1365_1 2 2.224404 +.ends + +.subckt netg2725 g2725_0 g2725_1 g2725_2 gnd +C1 g2725_0 gnd 2.080806f +C2 g2725_1 gnd 2.080806f +C3 g2725_2 gnd 2.080806f +R1 g2725_1 g2725_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2725_1 2.224404 +R3 g2725_2 1 2.224404 +.ends + +.subckt netg5728 g5728_1 g5728_2 g5728_0 gnd +C1 g5728_1 gnd 2.080806f +C2 g5728_2 gnd 2.080806f +C3 g5728_0 gnd 2.080806f +R1 g5728_0 g5728_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g5728_2 2.224404 +R3 g5728_1 1 2.224404 +.ends + +.subckt netg5616 g5616_1 g5616_0 g5616_2 gnd +C1 g5616_1 gnd 2.080806f +C2 g5616_0 gnd 2.080806f +C3 g5616_2 gnd 2.080806f +R1 g5616_0 g5616_1 2.224404 +C4 1 gnd 2.080806f +R2 g5616_1 1 2.224404 +R3 1 g5616_2 2.224404 +.ends + +.subckt netg7018 g7018_1 g7018_0 gnd +C1 g7018_1 gnd 2.080806f +C2 g7018_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7018_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7018_1 2 2.224404 +.ends + +.subckt netg7370 g7370_1 g7370_0 gnd +C1 g7370_1 gnd 2.080806f +C2 g7370_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7370_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7370_1 2.224404 +.ends + +.subckt netg3279 g3279_1 g3279_2 gnd +C1 g3279_1 gnd 2.080806f +C2 g3279_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3279_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g3279_1 2.224404 +.ends + +.subckt netg6523 g6523_1 g6523_0 gnd +C1 g6523_1 gnd 2.080806f +C2 g6523_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6523_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6523_1 2.224404 +.ends + +.subckt netg3342 g3342_1 g3342_2 g3342_0 gnd +C1 g3342_1 gnd 2.080806f +C2 g3342_2 gnd 2.080806f +C3 g3342_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3342_0 1 2.224404 +R2 1 g3342_1 2.224404 +R3 g3342_2 g3342_1 2.224404 +.ends + +.subckt netg6445 g6445_0 g6445_1 gnd +C1 g6445_0 gnd 2.080806f +C2 g6445_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6445_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6445_1 2 2.224404 +.ends + +.subckt netg7184 g7184_0 g7184_1 gnd +C1 g7184_0 gnd 2.080806f +C2 g7184_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7184_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7184_1 2.224404 +.ends + +.subckt netg6063 g6063_1 g6063_0 gnd +C1 g6063_1 gnd 2.080806f +C2 g6063_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6063_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6063_1 2.224404 +.ends + +.subckt netg5664 g5664_0 g5664_2 g5664_1 gnd +C1 g5664_0 gnd 2.080806f +C2 g5664_2 gnd 2.080806f +C3 g5664_1 gnd 2.080806f +R1 g5664_0 g5664_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5664_1 2.224404 +R3 g5664_2 1 2.224404 +.ends + +.subckt netg3273 g3273_1 g3273_0 g3273_2 gnd +C1 g3273_1 gnd 2.080806f +C2 g3273_0 gnd 2.080806f +C3 g3273_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3273_0 2.224404 +R2 g3273_2 1 2.224404 +R3 g3273_2 g3273_1 2.224404 +.ends + +.subckt netg3246 g3246_0 g3246_2 g3246_1 gnd +C1 g3246_0 gnd 2.080806f +C2 g3246_2 gnd 2.080806f +C3 g3246_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3246_0 1 2.224404 +R2 g3246_1 1 2.224404 +R3 1 g3246_2 2.224404 +.ends + +.subckt netx111 x111_1 x111_0 gnd +C1 x111_1 gnd 2.080806f +C2 x111_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x111_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x111_1 2 2.224404 +.ends + +.subckt netx551 x551_0 x551_1 gnd +C1 x551_0 gnd 2.080806f +C2 x551_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x551_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 x551_1 2 2.224404 +.ends + +.subckt netg5351 g5351_1 g5351_0 gnd +C1 g5351_1 gnd 2.080806f +C2 g5351_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5351_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5351_1 2 2.224404 +.ends + +.subckt netg5588 g5588_1 g5588_0 gnd +C1 g5588_1 gnd 2.080806f +C2 g5588_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5588_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5588_1 2 2.224404 +.ends + +.subckt netg4130 g4130_1 g4130_0 gnd +C1 g4130_1 gnd 2.080806f +C2 g4130_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4130_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4130_1 2 2.224404 +.ends + +.subckt netg2603 g2603_1 g2603_2 g2603_0 gnd +C1 g2603_1 gnd 2.080806f +C2 g2603_2 gnd 2.080806f +C3 g2603_0 gnd 2.080806f +R1 g2603_1 g2603_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2603_0 2.224404 +R3 g2603_2 1 2.224404 +.ends + +.subckt netg1517 g1517_1 g1517_0 gnd +C1 g1517_1 gnd 2.080806f +C2 g1517_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1517_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1517_1 2 2.224404 +.ends + +.subckt netg3267 g3267_0 g3267_1 g3267_2 gnd +C1 g3267_0 gnd 2.080806f +C2 g3267_1 gnd 2.080806f +C3 g3267_2 gnd 2.080806f +R1 g3267_1 g3267_0 2.224404 +C4 1 gnd 2.080806f +R2 g3267_0 1 2.224404 +R3 g3267_2 1 2.224404 +.ends + +.subckt netg4012 g4012_0 g4012_1 gnd +C1 g4012_0 gnd 2.080806f +C2 g4012_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4012_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4012_1 2.224404 +.ends + +.subckt netg6556 g6556_0 g6556_1 gnd +C1 g6556_0 gnd 2.080806f +C2 g6556_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6556_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6556_1 2.224404 +.ends + +.subckt netg3162 g3162_0 g3162_1 g3162_2 gnd +C1 g3162_0 gnd 2.080806f +C2 g3162_1 gnd 2.080806f +C3 g3162_2 gnd 2.080806f +R1 g3162_0 g3162_2 2.224404 +C4 1 gnd 2.080806f +R2 g3162_2 1 2.224404 +R3 1 g3162_1 2.224404 +.ends + +.subckt netg4271 g4271_1 g4271_0 gnd +C1 g4271_1 gnd 2.080806f +C2 g4271_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4271_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4271_1 2 2.224404 +.ends + +.subckt netg3709 g3709_0 g3709_3 g3709_2 g3709_1 gnd +C1 g3709_0 gnd 2.080806f +C2 g3709_3 gnd 2.080806f +C3 g3709_2 gnd 2.080806f +C4 g3709_1 gnd 2.080806f +R1 g3709_2 g3709_0 2.224404 +R2 g3709_2 g3709_1 2.224404 +C5 1 gnd 2.080806f +R3 g3709_0 1 2.224404 +R4 1 g3709_3 2.224404 +.ends + +.subckt netg6562 g6562_0 g6562_1 gnd +C1 g6562_0 gnd 2.080806f +C2 g6562_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6562_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6562_1 2 2.224404 +.ends + +.subckt netg1927 g1927_0 g1927_1 gnd +C1 g1927_0 gnd 2.080806f +C2 g1927_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1927_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1927_1 2 2.224404 +.ends + +.subckt netg5852 g5852_2 g5852_0 g5852_1 gnd +C1 g5852_2 gnd 2.080806f +C2 g5852_0 gnd 2.080806f +C3 g5852_1 gnd 2.080806f +R1 g5852_0 g5852_1 2.224404 +C4 1 gnd 2.080806f +R2 g5852_1 1 2.224404 +R3 1 g5852_2 2.224404 +.ends + +.subckt netg6802 g6802_1 g6802_0 g6802_2 gnd +C1 g6802_1 gnd 2.080806f +C2 g6802_0 gnd 2.080806f +C3 g6802_2 gnd 2.080806f +R1 g6802_0 g6802_1 2.224404 +C4 1 gnd 2.080806f +R2 g6802_1 1 2.224404 +R3 1 g6802_2 2.224404 +.ends + +.subckt netg5226 g5226_0 g5226_2 g5226_1 gnd +C1 g5226_0 gnd 2.080806f +C2 g5226_2 gnd 2.080806f +C3 g5226_1 gnd 2.080806f +R1 g5226_0 g5226_2 2.224404 +C4 1 gnd 2.080806f +R2 g5226_2 1 2.224404 +R3 g5226_1 1 2.224404 +.ends + +.subckt netg6951 g6951_1 g6951_0 g6951_2 gnd +C1 g6951_1 gnd 2.080806f +C2 g6951_0 gnd 2.080806f +C3 g6951_2 gnd 2.080806f +R1 g6951_0 g6951_2 2.224404 +C4 1 gnd 2.080806f +R2 g6951_2 1 2.224404 +R3 1 g6951_1 2.224404 +.ends + +.subckt netg904 g904_2 g904_1 g904_0 gnd +C1 g904_2 gnd 2.080806f +C2 g904_1 gnd 2.080806f +C3 g904_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g904_0 1 2.224404 +R2 1 g904_2 2.224404 +R3 g904_2 g904_1 2.224404 +.ends + +.subckt netg1995 g1995_2 g1995_0 g1995_1 gnd +C1 g1995_2 gnd 2.080806f +C2 g1995_0 gnd 2.080806f +C3 g1995_1 gnd 2.080806f +R1 g1995_0 g1995_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g1995_0 2.224404 +R3 g1995_2 1 2.224404 +.ends + +.subckt netg5068 g5068_1 g5068_0 g5068_2 gnd +C1 g5068_1 gnd 2.080806f +C2 g5068_0 gnd 2.080806f +C3 g5068_2 gnd 2.080806f +R1 g5068_2 g5068_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5068_0 2.224404 +R3 1 g5068_1 2.224404 +.ends + +.subckt netg5549 g5549_2 g5549_1 g5549_0 gnd +C1 g5549_2 gnd 2.080806f +C2 g5549_1 gnd 2.080806f +C3 g5549_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5549_0 1 2.224404 +R2 1 g5549_1 2.224404 +R3 g5549_2 g5549_1 2.224404 +.ends + +.subckt netg5243 g5243_0 g5243_1 gnd +C1 g5243_0 gnd 2.080806f +C2 g5243_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5243_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5243_1 2.224404 +.ends + +.subckt netg3090 g3090_2 g3090_1 g3090_0 gnd +C1 g3090_2 gnd 2.080806f +C2 g3090_1 gnd 2.080806f +C3 g3090_0 gnd 2.080806f +R1 g3090_0 g3090_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g3090_0 2.224404 +R3 g3090_2 1 2.224404 +.ends + +.subckt netg6745 g6745_2 g6745_0 g6745_1 gnd +C1 g6745_2 gnd 2.080806f +C2 g6745_0 gnd 2.080806f +C3 g6745_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6745_0 1 2.224404 +R2 1 g6745_2 2.224404 +R3 g6745_2 g6745_1 2.224404 +.ends + +.subckt netg6086 g6086_1 g6086_0 gnd +C1 g6086_1 gnd 2.080806f +C2 g6086_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6086_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6086_1 2.224404 +.ends + +.subckt netg5474 g5474_1 g5474_0 gnd +C1 g5474_1 gnd 2.080806f +C2 g5474_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5474_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g5474_1 2.224404 +.ends + +.subckt netg901 g901_2 g901_0 g901_1 gnd +C1 g901_2 gnd 2.080806f +C2 g901_0 gnd 2.080806f +C3 g901_1 gnd 2.080806f +R1 g901_1 g901_0 2.224404 +C4 1 gnd 2.080806f +R2 g901_1 1 2.224404 +R3 1 g901_2 2.224404 +.ends + +.subckt netg3171 g3171_2 g3171_0 g3171_1 gnd +C1 g3171_2 gnd 2.080806f +C2 g3171_0 gnd 2.080806f +C3 g3171_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3171_0 1 2.224404 +R2 1 g3171_1 2.224404 +R3 g3171_1 g3171_2 2.224404 +.ends + +.subckt netg5385 g5385_0 g5385_1 gnd +C1 g5385_0 gnd 2.080806f +C2 g5385_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5385_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5385_1 2.224404 +.ends + +.subckt netg1012 g1012_0 g1012_2 g1012_1 gnd +C1 g1012_0 gnd 2.080806f +C2 g1012_2 gnd 2.080806f +C3 g1012_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1012_0 1 2.224404 +R2 1 g1012_2 2.224404 +R3 g1012_1 g1012_2 2.224404 +.ends + +.subckt netg982 g982_2 g982_1 g982_0 gnd +C1 g982_2 gnd 2.080806f +C2 g982_1 gnd 2.080806f +C3 g982_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g982_0 1 2.224404 +R2 g982_2 1 2.224404 +R3 g982_1 g982_2 2.224404 +.ends + +.subckt netg1079 g1079_0 g1079_2 g1079_1 gnd +C1 g1079_0 gnd 2.080806f +C2 g1079_2 gnd 2.080806f +C3 g1079_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1079_0 2.224404 +R2 g1079_2 1 2.224404 +R3 g1079_1 g1079_2 2.224404 +.ends + +.subckt netg3126 g3126_0 g3126_1 g3126_2 gnd +C1 g3126_0 gnd 2.080806f +C2 g3126_1 gnd 2.080806f +C3 g3126_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3126_0 1 2.224404 +R2 1 g3126_2 2.224404 +R3 g3126_2 g3126_1 2.224404 +.ends + +.subckt netg6080 g6080_0 g6080_1 gnd +C1 g6080_0 gnd 2.080806f +C2 g6080_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6080_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6080_1 2 2.224404 +.ends + +.subckt netg5139 g5139_2 g5139_1 g5139_0 gnd +C1 g5139_2 gnd 2.080806f +C2 g5139_1 gnd 2.080806f +C3 g5139_0 gnd 2.080806f +R1 g5139_1 g5139_0 2.224404 +C4 1 gnd 2.080806f +R2 g5139_0 1 2.224404 +R3 1 g5139_2 2.224404 +.ends + +.subckt netg5486 g5486_1 g5486_0 gnd +C1 g5486_1 gnd 2.080806f +C2 g5486_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5486_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5486_1 2 2.224404 +.ends + +.subckt netg7301 g7301_1 g7301_0 gnd +C1 g7301_1 gnd 2.080806f +C2 g7301_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7301_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7301_1 2 2.224404 +.ends + +.subckt netg4167 g4167_0 g4167_2 g4167_1 gnd +C1 g4167_0 gnd 2.080806f +C2 g4167_2 gnd 2.080806f +C3 g4167_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4167_0 1 2.224404 +R2 1 g4167_2 2.224404 +R3 g4167_2 g4167_1 2.224404 +.ends + +.subckt netg1310 g1310_1 g1310_0 gnd +C1 g1310_1 gnd 2.080806f +C2 g1310_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1310_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g1310_1 2.224404 +.ends + +.subckt netg7174 g7174_1 g7174_0 gnd +C1 g7174_1 gnd 2.080806f +C2 g7174_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7174_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7174_1 2 2.224404 +.ends + +.subckt netg5694 g5694_1 g5694_2 g5694_0 gnd +C1 g5694_1 gnd 2.080806f +C2 g5694_2 gnd 2.080806f +C3 g5694_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5694_0 1 2.224404 +R2 1 g5694_1 2.224404 +R3 g5694_2 g5694_1 2.224404 +.ends + +.subckt netg3249 g3249_1 g3249_0 g3249_2 gnd +C1 g3249_1 gnd 2.080806f +C2 g3249_0 gnd 2.080806f +C3 g3249_2 gnd 2.080806f +R1 g3249_1 g3249_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3249_1 2.224404 +R3 g3249_2 1 2.224404 +.ends + +.subckt netg5697 g5697_0 g5697_1 g5697_2 gnd +C1 g5697_0 gnd 2.080806f +C2 g5697_1 gnd 2.080806f +C3 g5697_2 gnd 2.080806f +R1 g5697_0 g5697_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5697_0 2.224404 +R3 g5697_2 1 2.224404 +.ends + +.subckt netg943 g943_0 g943_2 g943_1 gnd +C1 g943_0 gnd 2.080806f +C2 g943_2 gnd 2.080806f +C3 g943_1 gnd 2.080806f +R1 g943_0 g943_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g943_0 2.224404 +R3 g943_2 1 2.224404 +.ends + +.subckt netg6898 g6898_0 g6898_1 gnd +C1 g6898_0 gnd 2.080806f +C2 g6898_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6898_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6898_1 2 2.224404 +.ends + +.subckt netg6109 g6109_1 g6109_2 gnd +C1 g6109_1 gnd 2.080806f +C2 g6109_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6109_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6109_2 2 2.224404 +.ends + +.subckt netx552 x552_0 x552_1 gnd +C1 x552_0 gnd 2.080806f +C2 x552_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x552_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 x552_1 2.224404 +.ends + +.subckt netg3507 g3507_0 g3507_1 gnd +C1 g3507_0 gnd 2.080806f +C2 g3507_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3507_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3507_1 2.224404 +.ends + +.subckt netg6389 g6389_0 g6389_1 gnd +C1 g6389_0 gnd 2.080806f +C2 g6389_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6389_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6389_1 2.224404 +.ends + +.subckt netg1574 g1574_0 g1574_1 gnd +C1 g1574_0 gnd 2.080806f +C2 g1574_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1574_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1574_1 2.224404 +.ends + +.subckt netg5332 g5332_1 g5332_0 gnd +C1 g5332_1 gnd 2.080806f +C2 g5332_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5332_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5332_1 2 2.224404 +.ends + +.subckt netg3536 g3536_1 g3536_0 gnd +C1 g3536_1 gnd 2.080806f +C2 g3536_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3536_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3536_1 2.224404 +.ends + +.subckt netg2564 g2564_2 g2564_1 gnd +C1 g2564_2 gnd 2.080806f +C2 g2564_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2564_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2564_2 2.224404 +.ends + +.subckt netg4374 g4374_0 g4374_1 g4374_2 gnd +C1 g4374_0 gnd 2.080806f +C2 g4374_1 gnd 2.080806f +C3 g4374_2 gnd 2.080806f +R1 g4374_1 g4374_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4374_0 2.224404 +R3 1 g4374_2 2.224404 +.ends + +.subckt netg7109 g7109_2 g7109_1 g7109_0 gnd +C1 g7109_2 gnd 2.080806f +C2 g7109_1 gnd 2.080806f +C3 g7109_0 gnd 2.080806f +R1 g7109_2 g7109_0 2.224404 +C4 1 gnd 2.080806f +R2 g7109_0 1 2.224404 +R3 1 g7109_1 2.224404 +.ends + +.subckt netg4421 g4421_1 g4421_0 gnd +C1 g4421_1 gnd 2.080806f +C2 g4421_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4421_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g4421_1 2.224404 +.ends + +.subckt netg2415 g2415_2 g2415_1 g2415_0 gnd +C1 g2415_2 gnd 2.080806f +C2 g2415_1 gnd 2.080806f +C3 g2415_0 gnd 2.080806f +R1 g2415_0 g2415_2 2.224404 +C4 1 gnd 2.080806f +R2 g2415_0 1 2.224404 +R3 g2415_1 1 2.224404 +.ends + +.subckt netg5041 g5041_0 g5041_1 g5041_2 gnd +C1 g5041_0 gnd 2.080806f +C2 g5041_1 gnd 2.080806f +C3 g5041_2 gnd 2.080806f +R1 g5041_2 g5041_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5041_0 2.224404 +R3 g5041_1 1 2.224404 +.ends + +.subckt netg2570 g2570_1 g2570_2 g2570_0 gnd +C1 g2570_1 gnd 2.080806f +C2 g2570_2 gnd 2.080806f +C3 g2570_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2570_0 1 2.224404 +R2 1 g2570_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2570_0 2.224404 +R4 2 g2570_2 2.224404 +.ends + +.subckt netg5867 g5867_2 g5867_0 g5867_1 gnd +C1 g5867_2 gnd 2.080806f +C2 g5867_0 gnd 2.080806f +C3 g5867_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5867_0 1 2.224404 +R2 1 g5867_1 2.224404 +R3 g5867_1 g5867_2 2.224404 +.ends + +.subckt netg6879 g6879_1 g6879_0 gnd +C1 g6879_1 gnd 2.080806f +C2 g6879_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6879_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g6879_1 2 2.224404 +.ends + +.subckt netg6876 g6876_0 g6876_1 gnd +C1 g6876_0 gnd 2.080806f +C2 g6876_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6876_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6876_1 2.224404 +.ends + +.subckt netg5725 g5725_1 g5725_0 g5725_2 gnd +C1 g5725_1 gnd 2.080806f +C2 g5725_0 gnd 2.080806f +C3 g5725_2 gnd 2.080806f +R1 g5725_0 g5725_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5725_0 2.224404 +R3 g5725_2 1 2.224404 +.ends + +.subckt netg1942 g1942_0 g1942_1 g1942_2 gnd +C1 g1942_0 gnd 2.080806f +C2 g1942_1 gnd 2.080806f +C3 g1942_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1942_0 2.224404 +R2 g1942_1 1 2.224404 +R3 g1942_2 1 2.224404 +.ends + +.subckt netg3183 g3183_0 g3183_1 g3183_2 gnd +C1 g3183_0 gnd 2.080806f +C2 g3183_1 gnd 2.080806f +C3 g3183_2 gnd 2.080806f +R1 g3183_0 g3183_2 2.224404 +C4 1 gnd 2.080806f +R2 g3183_2 1 2.224404 +R3 1 g3183_1 2.224404 +.ends + +.subckt netg4263 g4263_1 g4263_0 gnd +C1 g4263_1 gnd 2.080806f +C2 g4263_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4263_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4263_1 2.224404 +.ends + +.subckt netg7425 g7425_0 g7425_1 gnd +C1 g7425_0 gnd 2.080806f +C2 g7425_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7425_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7425_1 2 2.224404 +.ends + +.subckt netg1508 g1508_0 g1508_1 gnd +C1 g1508_0 gnd 2.080806f +C2 g1508_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1508_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1508_1 2 2.224404 +.ends + +.subckt netg1558 g1558_0 g1558_1 gnd +C1 g1558_0 gnd 2.080806f +C2 g1558_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1558_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1558_1 2.224404 +.ends + +.subckt netg5434 g5434_2 g5434_0 g5434_1 gnd +C1 g5434_2 gnd 2.080806f +C2 g5434_0 gnd 2.080806f +C3 g5434_1 gnd 2.080806f +R1 g5434_0 g5434_1 2.224404 +C4 1 gnd 2.080806f +R2 g5434_1 1 2.224404 +R3 1 g5434_2 2.224404 +.ends + +.subckt netg7203 g7203_2 g7203_1 g7203_0 gnd +C1 g7203_2 gnd 2.080806f +C2 g7203_1 gnd 2.080806f +C3 g7203_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7203_0 2.224404 +R2 g7203_2 1 2.224404 +R3 g7203_1 g7203_2 2.224404 +.ends + +.subckt netg7341 g7341_1 g7341_0 gnd +C1 g7341_1 gnd 2.080806f +C2 g7341_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7341_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7341_1 2.224404 +.ends + +.subckt netg2804 g2804_0 g2804_1 gnd +C1 g2804_0 gnd 2.080806f +C2 g2804_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2804_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2804_1 2 2.224404 +.ends + +.subckt netg7119 g7119_1 g7119_0 g7119_2 gnd +C1 g7119_1 gnd 2.080806f +C2 g7119_0 gnd 2.080806f +C3 g7119_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7119_0 2.224404 +R2 g7119_2 1 2.224404 +R3 g7119_2 g7119_1 2.224404 +.ends + +.subckt netg4349 g4349_1 g4349_0 gnd +C1 g4349_1 gnd 2.080806f +C2 g4349_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4349_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4349_1 2.224404 +.ends + +.subckt netg4260 g4260_0 g4260_1 gnd +C1 g4260_0 gnd 2.080806f +C2 g4260_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4260_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4260_1 2 2.224404 +.ends + +.subckt netg6528 g6528_1 g6528_0 gnd +C1 g6528_1 gnd 2.080806f +C2 g6528_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6528_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6528_1 2.224404 +.ends + +.subckt netg7264 g7264_1 g7264_0 gnd +C1 g7264_1 gnd 2.080806f +C2 g7264_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7264_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7264_1 2 2.224404 +.ends + +.subckt netg6905 g6905_3 g6905_2 gnd +C1 g6905_3 gnd 2.080806f +C2 g6905_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6905_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6905_3 2.224404 +.ends + +.subckt netg7084 g7084_1 g7084_0 gnd +C1 g7084_1 gnd 2.080806f +C2 g7084_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7084_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7084_1 2 2.224404 +.ends + +.subckt netg4973 g4973_0 g4973_2 g4973_1 gnd +C1 g4973_0 gnd 2.080806f +C2 g4973_2 gnd 2.080806f +C3 g4973_1 gnd 2.080806f +R1 g4973_1 g4973_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4973_0 2.224404 +R3 g4973_2 1 2.224404 +.ends + +.subckt netg2656 g2656_1 g2656_0 g2656_2 gnd +C1 g2656_1 gnd 2.080806f +C2 g2656_0 gnd 2.080806f +C3 g2656_2 gnd 2.080806f +R1 g2656_2 g2656_0 2.224404 +C4 1 gnd 2.080806f +R2 g2656_2 1 2.224404 +R3 g2656_1 1 2.224404 +.ends + +.subckt netg6054 g6054_1 g6054_0 gnd +C1 g6054_1 gnd 2.080806f +C2 g6054_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6054_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6054_1 2.224404 +.ends + +.subckt netg5945 g5945_2 g5945_1 g5945_0 gnd +C1 g5945_2 gnd 2.080806f +C2 g5945_1 gnd 2.080806f +C3 g5945_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5945_0 1 2.224404 +R2 1 g5945_2 2.224404 +R3 g5945_2 g5945_1 2.224404 +.ends + +.subckt netg7207 g7207_1 g7207_0 gnd +C1 g7207_1 gnd 2.080806f +C2 g7207_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7207_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7207_1 2.224404 +.ends + +.subckt netg3899 g3899_0 g3899_1 gnd +C1 g3899_0 gnd 2.080806f +C2 g3899_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3899_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3899_1 2.224404 +.ends + +.subckt netg889 g889_2 g889_1 g889_0 gnd +C1 g889_2 gnd 2.080806f +C2 g889_1 gnd 2.080806f +C3 g889_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g889_0 2.224404 +R2 g889_1 1 2.224404 +R3 g889_2 g889_1 2.224404 +.ends + +.subckt netg5989 g5989_0 g5989_1 gnd +C1 g5989_0 gnd 2.080806f +C2 g5989_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5989_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5989_1 2.224404 +.ends + +.subckt netg2924 g2924_1 g2924_0 gnd +C1 g2924_1 gnd 2.080806f +C2 g2924_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2924_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2924_1 2.224404 +.ends + +.subckt netg7176 g7176_1 g7176_0 gnd +C1 g7176_1 gnd 2.080806f +C2 g7176_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7176_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g7176_1 2 2.224404 +.ends + +.subckt netg7200 g7200_2 g7200_1 g7200_0 gnd +C1 g7200_2 gnd 2.080806f +C2 g7200_1 gnd 2.080806f +C3 g7200_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7200_0 1 2.224404 +R2 1 g7200_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g7200_0 2.224404 +R4 g7200_2 2 2.224404 +.ends + +.subckt netg1159 g1159_0 g1159_1 gnd +C1 g1159_0 gnd 2.080806f +C2 g1159_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1159_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1159_1 2.224404 +.ends + +.subckt netg1121 g1121_0 g1121_1 gnd +C1 g1121_0 gnd 2.080806f +C2 g1121_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1121_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1121_1 3 2.224404 +.ends + +.subckt netg5012 g5012_0 g5012_1 g5012_2 gnd +C1 g5012_0 gnd 2.080806f +C2 g5012_1 gnd 2.080806f +C3 g5012_2 gnd 2.080806f +R1 g5012_0 g5012_2 2.224404 +C4 1 gnd 2.080806f +R2 g5012_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g5012_1 2.224404 +.ends + +.subckt netg4896 g4896_2 g4896_1 g4896_0 gnd +C1 g4896_2 gnd 2.080806f +C2 g4896_1 gnd 2.080806f +C3 g4896_0 gnd 2.080806f +R1 g4896_0 g4896_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g4896_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g4896_1 2 2.224404 +.ends + +.subckt netg2832 g2832_1 g2832_0 gnd +C1 g2832_1 gnd 2.080806f +C2 g2832_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2832_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2832_1 2.224404 +.ends + +.subckt netg976 g976_2 g976_0 g976_1 gnd +C1 g976_2 gnd 2.080806f +C2 g976_0 gnd 2.080806f +C3 g976_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g976_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g976_1 2 2.224404 +R4 g976_2 g976_1 2.224404 +.ends + +.subckt netg2866 g2866_0 g2866_1 gnd +C1 g2866_0 gnd 2.080806f +C2 g2866_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2866_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g2866_1 2.224404 +.ends + +.subckt netg2027 g2027_1 g2027_0 gnd +C1 g2027_1 gnd 2.080806f +C2 g2027_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2027_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g2027_1 3 2.224404 +.ends + +.subckt netg7197 g7197_0 g7197_1 gnd +C1 g7197_0 gnd 2.080806f +C2 g7197_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7197_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7197_1 3 2.224404 +.ends + +.subckt netg2942 g2942_0 g2942_1 gnd +C1 g2942_0 gnd 2.080806f +C2 g2942_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2942_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2942_1 2.224404 +.ends + +.subckt netx341 x341_1 x341_0 gnd +C1 x341_1 gnd 2.080806f +C2 x341_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x341_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 x341_1 3 2.224404 +.ends + +.subckt netg6384 g6384_0 g6384_1 gnd +C1 g6384_0 gnd 2.080806f +C2 g6384_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6384_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6384_1 3 2.224404 +.ends + +.subckt netg7309 g7309_1 g7309_0 g7309_2 gnd +C1 g7309_1 gnd 2.080806f +C2 g7309_0 gnd 2.080806f +C3 g7309_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7309_0 2.224404 +R2 g7309_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g7309_2 2.224404 +R4 g7309_1 2 2.224404 +.ends + +.subckt netg3560 g3560_1 g3560_0 gnd +C1 g3560_1 gnd 2.080806f +C2 g3560_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3560_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3560_1 3 2.224404 +.ends + +.subckt netg1511 g1511_1 g1511_0 gnd +C1 g1511_1 gnd 2.080806f +C2 g1511_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1511_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1511_1 3 2.224404 +.ends + +.subckt netg7327 g7327_2 g7327_0 g7327_1 gnd +C1 g7327_2 gnd 2.080806f +C2 g7327_0 gnd 2.080806f +C3 g7327_1 gnd 2.080806f +R1 g7327_0 g7327_2 2.224404 +C4 1 gnd 2.080806f +R2 g7327_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g7327_1 2.224404 +.ends + +.subckt netg4346 g4346_0 g4346_1 g4346_2 gnd +C1 g4346_0 gnd 2.080806f +C2 g4346_1 gnd 2.080806f +C3 g4346_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4346_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4346_2 2.224404 +R4 g4346_2 g4346_1 2.224404 +.ends + +.subckt netg6299 g6299_0 g6299_1 gnd +C1 g6299_0 gnd 2.080806f +C2 g6299_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6299_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6299_1 2.224404 +.ends + +.subckt netg5529 g5529_2 g5529_0 g5529_1 gnd +C1 g5529_2 gnd 2.080806f +C2 g5529_0 gnd 2.080806f +C3 g5529_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5529_0 2.224404 +R2 g5529_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g5529_1 2 2.224404 +R4 2 g5529_2 2.224404 +.ends + +.subckt netg3100 g3100_0 g3100_1 gnd +C1 g3100_0 gnd 2.080806f +C2 g3100_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3100_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3100_1 3 2.224404 +.ends + +.subckt netg6223 g6223_0 g6223_2 g6223_1 gnd +C1 g6223_0 gnd 2.080806f +C2 g6223_2 gnd 2.080806f +C3 g6223_1 gnd 2.080806f +R1 g6223_0 g6223_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g6223_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g6223_2 2 2.224404 +.ends + +.subckt netg6247 g6247_1 g6247_2 g6247_0 gnd +C1 g6247_1 gnd 2.080806f +C2 g6247_2 gnd 2.080806f +C3 g6247_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6247_0 2.224404 +R2 g6247_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6247_2 2.224404 +R4 g6247_1 2 2.224404 +.ends + +.subckt netg3389 g3389_2 g3389_1 g3389_0 gnd +C1 g3389_2 gnd 2.080806f +C2 g3389_1 gnd 2.080806f +C3 g3389_0 gnd 2.080806f +R1 g3389_2 g3389_0 2.224404 +C4 1 gnd 2.080806f +R2 g3389_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3389_1 2.224404 +.ends + +.subckt netg7009 g7009_1 g7009_0 gnd +C1 g7009_1 gnd 2.080806f +C2 g7009_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7009_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7009_1 3 2.224404 +.ends + +.subckt netg4259 g4259_1 g4259_0 gnd +C1 g4259_1 gnd 2.080806f +C2 g4259_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4259_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g4259_1 2.224404 +.ends + +.subckt netx451 x451_0 x451_1 gnd +C1 x451_0 gnd 2.080806f +C2 x451_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x451_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 x451_1 3 2.224404 +.ends + +.subckt netg1085 g1085_0 g1085_1 gnd +C1 g1085_0 gnd 2.080806f +C2 g1085_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1085_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1085_1 2.224404 +.ends + +.subckt netg705 g705_4 g705_6 g705_3 g705_2 g705_0 gnd +C1 g705_4 gnd 2.080806f +C2 g705_6 gnd 2.080806f +C3 g705_3 gnd 2.080806f +C4 g705_2 gnd 2.080806f +C5 g705_0 gnd 2.080806f +R1 g705_0 g705_3 2.224404 +R2 g705_4 g705_0 2.224404 +R3 g705_6 g705_4 2.224404 +R4 g705_2 g705_6 2.224404 +.ends + +.subckt netg2013 g2013_4 g2013_5 g2013_2 g2013_1 g2013_3 gnd +C1 g2013_4 gnd 2.080806f +C2 g2013_5 gnd 2.080806f +C3 g2013_2 gnd 2.080806f +C4 g2013_1 gnd 2.080806f +C5 g2013_3 gnd 2.080806f +R1 g2013_4 g2013_5 2.224404 +R2 g2013_5 g2013_1 2.224404 +R3 g2013_5 g2013_2 2.224404 +R4 g2013_2 g2013_3 2.224404 +.ends + +.subckt netg6668 g6668_1 g6668_0 gnd +C1 g6668_1 gnd 2.080806f +C2 g6668_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6668_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6668_1 3 2.224404 +.ends + +.subckt netg5414 g5414_1 g5414_0 gnd +C1 g5414_1 gnd 2.080806f +C2 g5414_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5414_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5414_1 2.224404 +.ends + +.subckt netg3177 g3177_1 g3177_2 gnd +C1 g3177_1 gnd 2.080806f +C2 g3177_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3177_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g3177_1 2.224404 +.ends + +.subckt netx202 x202_0 x202_1 gnd +C1 x202_0 gnd 2.080806f +C2 x202_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x202_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 x202_1 2.224404 +.ends + +.subckt netg7431 g7431_1 g7431_0 gnd +C1 g7431_1 gnd 2.080806f +C2 g7431_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7431_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g7431_1 2.224404 +.ends + +.subckt netg5484 g5484_0 g5484_1 gnd +C1 g5484_0 gnd 2.080806f +C2 g5484_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5484_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5484_1 2.224404 +.ends + +.subckt netg5855 g5855_0 g5855_1 gnd +C1 g5855_0 gnd 2.080806f +C2 g5855_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5855_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5855_1 2.224404 +.ends + +.subckt netg6884 g6884_0 g6884_1 gnd +C1 g6884_0 gnd 2.080806f +C2 g6884_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6884_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6884_1 2.224404 +.ends + +.subckt netg6361 g6361_0 g6361_1 gnd +C1 g6361_0 gnd 2.080806f +C2 g6361_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6361_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6361_1 2.224404 +.ends + +.subckt netg7356 g7356_0 g7356_1 gnd +C1 g7356_0 gnd 2.080806f +C2 g7356_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7356_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g7356_1 3 2.224404 +.ends + +.subckt netg5440 g5440_0 g5440_1 g5440_2 gnd +C1 g5440_0 gnd 2.080806f +C2 g5440_1 gnd 2.080806f +C3 g5440_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5440_0 1 2.224404 +R2 g5440_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g5440_2 2.224404 +.ends + +.subckt netg2677 g2677_2 g2677_1 gnd +C1 g2677_2 gnd 2.080806f +C2 g2677_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2677_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2677_2 2.224404 +.ends + +.subckt netg6189 g6189_0 g6189_1 gnd +C1 g6189_0 gnd 2.080806f +C2 g6189_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6189_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6189_1 2.224404 +.ends + +.subckt netg7375 g7375_2 g7375_1 g7375_0 gnd +C1 g7375_2 gnd 2.080806f +C2 g7375_1 gnd 2.080806f +C3 g7375_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7375_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7375_1 2 2.224404 +R4 g7375_2 g7375_1 2.224404 +.ends + +.subckt netg1027 g1027_1 g1027_2 g1027_0 gnd +C1 g1027_1 gnd 2.080806f +C2 g1027_2 gnd 2.080806f +C3 g1027_0 gnd 2.080806f +R1 g1027_0 g1027_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g1027_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g1027_2 2 2.224404 +.ends + +.subckt netg812 g812_3 g812_1 g812_2 g812_0 gnd +C1 g812_3 gnd 2.080806f +C2 g812_1 gnd 2.080806f +C3 g812_2 gnd 2.080806f +C4 g812_0 gnd 2.080806f +R1 g812_3 g812_0 2.224404 +R2 g812_3 g812_1 2.224404 +C5 1 gnd 2.080806f +R3 g812_1 1 2.224404 +R4 1 g812_2 2.224404 +.ends + +.subckt netg1054 g1054_1 g1054_0 g1054_2 gnd +C1 g1054_1 gnd 2.080806f +C2 g1054_0 gnd 2.080806f +C3 g1054_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1054_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1054_2 2 2.224404 +R4 g1054_1 g1054_2 2.224404 +.ends + +.subckt netg5575 g5575_1 g5575_2 g5575_0 gnd +C1 g5575_1 gnd 2.080806f +C2 g5575_2 gnd 2.080806f +C3 g5575_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5575_0 1 2.224404 +R2 g5575_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5575_2 2.224404 +R4 g5575_1 2 2.224404 +.ends + +.subckt netg7225 g7225_1 g7225_0 g7225_2 gnd +C1 g7225_1 gnd 2.080806f +C2 g7225_0 gnd 2.080806f +C3 g7225_2 gnd 2.080806f +R1 g7225_2 g7225_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g7225_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g7225_1 2 2.224404 +.ends + +.subckt netg6258 g6258_1 g6258_0 gnd +C1 g6258_1 gnd 2.080806f +C2 g6258_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6258_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6258_1 3 2.224404 +.ends + +.subckt netg7060 g7060_2 g7060_0 g7060_1 gnd +C1 g7060_2 gnd 2.080806f +C2 g7060_0 gnd 2.080806f +C3 g7060_1 gnd 2.080806f +R1 g7060_0 g7060_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g7060_1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g7060_2 2.224404 +.ends + +.subckt netg2474 g2474_0 g2474_1 g2474_2 gnd +C1 g2474_0 gnd 2.080806f +C2 g2474_1 gnd 2.080806f +C3 g2474_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2474_0 2.224404 +R2 g2474_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2474_2 2.224404 +R4 g2474_1 2 2.224404 +.ends + +.subckt netg6161 g6161_1 g6161_0 gnd +C1 g6161_1 gnd 2.080806f +C2 g6161_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6161_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6161_1 2.224404 +.ends + +.subckt netg4350 g4350_1 g4350_0 gnd +C1 g4350_1 gnd 2.080806f +C2 g4350_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4350_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g4350_1 3 2.224404 +.ends + +.subckt netg4899 g4899_2 g4899_1 g4899_0 gnd +C1 g4899_2 gnd 2.080806f +C2 g4899_1 gnd 2.080806f +C3 g4899_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4899_0 1 2.224404 +R2 1 g4899_2 2.224404 +C5 2 gnd 2.080806f +R3 g4899_2 2 2.224404 +R4 2 g4899_1 2.224404 +.ends + +.subckt netx32 x32_0 x32_1 gnd +C1 x32_0 gnd 2.080806f +C2 x32_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x32_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 x32_1 2.224404 +.ends + +.subckt netg7540 g7540_0 g7540_1 gnd +C1 g7540_0 gnd 2.080806f +C2 g7540_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7540_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7540_1 3 2.224404 +.ends + +.subckt netg1554 g1554_0 g1554_1 gnd +C1 g1554_0 gnd 2.080806f +C2 g1554_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1554_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1554_1 2.224404 +.ends + +.subckt netg5326 g5326_1 g5326_0 gnd +C1 g5326_1 gnd 2.080806f +C2 g5326_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5326_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5326_1 2.224404 +.ends + +.subckt netg5150 g5150_2 g5150_0 g5150_1 gnd +C1 g5150_2 gnd 2.080806f +C2 g5150_0 gnd 2.080806f +C3 g5150_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5150_0 1 2.224404 +R2 1 g5150_2 2.224404 +C5 2 gnd 2.080806f +R3 g5150_2 2 2.224404 +R4 g5150_1 2 2.224404 +.ends + +.subckt netg2809 g2809_0 g2809_1 gnd +C1 g2809_0 gnd 2.080806f +C2 g2809_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2809_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g2809_1 3 2.224404 +.ends + +.subckt netg6162 g6162_0 g6162_1 gnd +C1 g6162_0 gnd 2.080806f +C2 g6162_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6162_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g6162_1 2.224404 +.ends + +.subckt netg5451 g5451_2 g5451_0 g5451_1 gnd +C1 g5451_2 gnd 2.080806f +C2 g5451_0 gnd 2.080806f +C3 g5451_1 gnd 2.080806f +R1 g5451_1 g5451_0 2.224404 +C4 1 gnd 2.080806f +R2 g5451_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g5451_2 2.224404 +.ends + +.subckt netg3141 g3141_1 g3141_2 g3141_0 gnd +C1 g3141_1 gnd 2.080806f +C2 g3141_2 gnd 2.080806f +C3 g3141_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3141_0 2.224404 +R2 g3141_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g3141_0 2 2.224404 +R4 2 g3141_2 2.224404 +.ends + +.subckt netg3943 g3943_1 g3943_3 g3943_0 g3943_2 gnd +C1 g3943_1 gnd 2.080806f +C2 g3943_3 gnd 2.080806f +C3 g3943_0 gnd 2.080806f +C4 g3943_2 gnd 2.080806f +R1 g3943_0 g3943_1 2.224404 +C5 1 gnd 2.080806f +R2 1 g3943_1 2.224404 +R3 g3943_2 1 2.224404 +R4 g3943_2 g3943_3 2.224404 +.ends + +.subckt netg5080 g5080_1 g5080_0 g5080_2 gnd +C1 g5080_1 gnd 2.080806f +C2 g5080_0 gnd 2.080806f +C3 g5080_2 gnd 2.080806f +R1 g5080_0 g5080_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5080_1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 g5080_2 2 2.224404 +.ends + +.subckt netg3965 g3965_1 g3965_0 g3965_2 gnd +C1 g3965_1 gnd 2.080806f +C2 g3965_0 gnd 2.080806f +C3 g3965_2 gnd 2.080806f +R1 g3965_1 g3965_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3965_0 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3965_2 2.224404 +.ends + +.subckt netg5053 g5053_1 g5053_0 g5053_2 gnd +C1 g5053_1 gnd 2.080806f +C2 g5053_0 gnd 2.080806f +C3 g5053_2 gnd 2.080806f +R1 g5053_0 g5053_2 2.224404 +C4 1 gnd 2.080806f +R2 g5053_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g5053_1 2.224404 +.ends + +.subckt netg6217 g6217_2 g6217_0 g6217_1 gnd +C1 g6217_2 gnd 2.080806f +C2 g6217_0 gnd 2.080806f +C3 g6217_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6217_0 1 2.224404 +R2 1 g6217_2 2.224404 +C5 2 gnd 2.080806f +R3 g6217_2 2 2.224404 +R4 2 g6217_1 2.224404 +.ends + +.subckt netg6853 g6853_0 g6853_2 g6853_1 gnd +C1 g6853_0 gnd 2.080806f +C2 g6853_2 gnd 2.080806f +C3 g6853_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6853_0 1 2.224404 +R2 1 g6853_1 2.224404 +C5 2 gnd 2.080806f +R3 g6853_0 2 2.224404 +R4 g6853_2 2 2.224404 +.ends + +.subckt netg4639 g4639_0 g4639_2 g4639_1 gnd +C1 g4639_0 gnd 2.080806f +C2 g4639_2 gnd 2.080806f +C3 g4639_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4639_0 2.224404 +R2 1 g4639_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g4639_2 2 2.224404 +.ends + +.subckt netg1917 g1917_1 g1917_0 gnd +C1 g1917_1 gnd 2.080806f +C2 g1917_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1917_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1917_1 2.224404 +.ends + +.subckt netx181 x181_1 x181_0 gnd +C1 x181_1 gnd 2.080806f +C2 x181_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x181_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 x181_1 3 2.224404 +.ends + +.subckt netg6152 g6152_1 g6152_0 gnd +C1 g6152_1 gnd 2.080806f +C2 g6152_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6152_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6152_1 2.224404 +.ends + +.subckt netg6121 g6121_0 g6121_2 g6121_1 gnd +C1 g6121_0 gnd 2.080806f +C2 g6121_2 gnd 2.080806f +C3 g6121_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6121_0 1 2.224404 +R2 g6121_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6121_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g6121_2 3 2.224404 +.ends + +.subckt netg5746 g5746_1 g5746_2 g5746_0 gnd +C1 g5746_1 gnd 2.080806f +C2 g5746_2 gnd 2.080806f +C3 g5746_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5746_0 2.224404 +R2 g5746_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g5746_0 2 2.224404 +R4 2 g5746_2 2.224404 +.ends + +.subckt netg3123 g3123_1 g3123_2 gnd +C1 g3123_1 gnd 2.080806f +C2 g3123_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3123_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3123_2 3 2.224404 +.ends + +.subckt netg1468 g1468_0 g1468_1 g1468_4 g1468_3 g1468_5 gnd +C1 g1468_0 gnd 2.080806f +C2 g1468_1 gnd 2.080806f +C3 g1468_4 gnd 2.080806f +C4 g1468_3 gnd 2.080806f +C5 g1468_5 gnd 2.080806f +R1 g1468_5 g1468_0 2.224404 +R2 g1468_0 g1468_4 2.224404 +C6 1 gnd 2.080806f +R3 g1468_0 1 2.224404 +R4 1 g1468_3 2.224404 +R5 g1468_1 g1468_3 2.224404 +.ends + +.subckt netg1774 g1774_1 g1774_2 g1774_3 g1774_0 gnd +C1 g1774_1 gnd 2.080806f +C2 g1774_2 gnd 2.080806f +C3 g1774_3 gnd 2.080806f +C4 g1774_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1774_0 2.224404 +R2 g1774_1 1 2.224404 +C6 2 gnd 2.080806f +R3 g1774_0 2 2.224404 +R4 2 g1774_2 2.224404 +C7 3 gnd 2.080806f +R5 g1774_1 3 2.224404 +R6 3 g1774_3 2.224404 +.ends + +.subckt netg4358 g4358_0 g4358_1 gnd +C1 g4358_0 gnd 2.080806f +C2 g4358_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4358_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4358_1 2.224404 +.ends + +.subckt netg6237 g6237_0 g6237_1 g6237_2 gnd +C1 g6237_0 gnd 2.080806f +C2 g6237_1 gnd 2.080806f +C3 g6237_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6237_0 1 2.224404 +R2 1 g6237_1 2.224404 +C5 2 gnd 2.080806f +R3 g6237_1 2 2.224404 +R4 2 g6237_2 2.224404 +.ends + +.subckt netg4619 g4619_2 g4619_1 gnd +C1 g4619_2 gnd 2.080806f +C2 g4619_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4619_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4619_1 2.224404 +.ends + +.subckt netg5092 g5092_0 g5092_2 g5092_1 gnd +C1 g5092_0 gnd 2.080806f +C2 g5092_2 gnd 2.080806f +C3 g5092_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5092_0 2.224404 +R2 g5092_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g5092_0 2 2.224404 +R4 2 g5092_2 2.224404 +.ends + +.subckt netg3240 g3240_2 g3240_1 g3240_0 gnd +C1 g3240_2 gnd 2.080806f +C2 g3240_1 gnd 2.080806f +C3 g3240_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3240_0 1 2.224404 +R2 g3240_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g3240_1 2 2.224404 +R4 2 g3240_2 2.224404 +.ends + +.subckt netg2313 g2313_1 g2313_0 gnd +C1 g2313_1 gnd 2.080806f +C2 g2313_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2313_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2313_1 2.224404 +.ends + +.subckt netg4434 g4434_1 g4434_0 gnd +C1 g4434_1 gnd 2.080806f +C2 g4434_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4434_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g4434_1 3 2.224404 +.ends + +.subckt netg6300 g6300_2 g6300_1 g6300_0 gnd +C1 g6300_2 gnd 2.080806f +C2 g6300_1 gnd 2.080806f +C3 g6300_0 gnd 2.080806f +R1 g6300_2 g6300_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g6300_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 2 g6300_1 2.224404 +.ends + +.subckt netg1908 g1908_1 g1908_0 gnd +C1 g1908_1 gnd 2.080806f +C2 g1908_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1908_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1908_1 2.224404 +.ends + +.subckt netg1572 g1572_0 g1572_1 gnd +C1 g1572_0 gnd 2.080806f +C2 g1572_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1572_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1572_1 2.224404 +.ends + +.subckt netg952 g952_2 g952_0 g952_1 gnd +C1 g952_2 gnd 2.080806f +C2 g952_0 gnd 2.080806f +C3 g952_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g952_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g952_1 2.224404 +C6 3 gnd 2.080806f +R4 g952_1 3 2.224404 +R5 3 g952_2 2.224404 +.ends + +.subckt netg5477 g5477_0 g5477_1 gnd +C1 g5477_0 gnd 2.080806f +C2 g5477_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5477_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5477_1 2.224404 +.ends + +.subckt netg2480 g2480_2 g2480_1 g2480_0 gnd +C1 g2480_2 gnd 2.080806f +C2 g2480_1 gnd 2.080806f +C3 g2480_0 gnd 2.080806f +R1 g2480_0 g2480_1 2.224404 +C4 1 gnd 2.080806f +R2 g2480_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 g2480_2 2 2.224404 +.ends + +.subckt netg4413 g4413_1 g4413_0 gnd +C1 g4413_1 gnd 2.080806f +C2 g4413_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4413_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g4413_1 3 2.224404 +.ends + +.subckt netg5936 g5936_1 g5936_0 g5936_2 gnd +C1 g5936_1 gnd 2.080806f +C2 g5936_0 gnd 2.080806f +C3 g5936_2 gnd 2.080806f +R1 g5936_1 g5936_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5936_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g5936_2 2 2.224404 +.ends + +.subckt netg2510 g2510_0 g2510_2 g2510_1 gnd +C1 g2510_0 gnd 2.080806f +C2 g2510_2 gnd 2.080806f +C3 g2510_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2510_0 2.224404 +R2 g2510_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2510_1 2.224404 +R4 2 g2510_2 2.224404 +.ends + +.subckt netg2867 g2867_1 g2867_2 g2867_0 gnd +C1 g2867_1 gnd 2.080806f +C2 g2867_2 gnd 2.080806f +C3 g2867_0 gnd 2.080806f +R1 g2867_0 g2867_2 2.224404 +C4 1 gnd 2.080806f +R2 g2867_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g2867_1 2.224404 +.ends + +.subckt netg6140 g6140_1 g6140_0 gnd +C1 g6140_1 gnd 2.080806f +C2 g6140_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6140_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6140_1 3 2.224404 +.ends + +.subckt netg6188 g6188_0 g6188_1 gnd +C1 g6188_0 gnd 2.080806f +C2 g6188_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6188_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6188_1 3 2.224404 +.ends + +.subckt netg1306 g1306_0 g1306_1 gnd +C1 g1306_0 gnd 2.080806f +C2 g1306_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1306_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1306_1 3 2.224404 +.ends + +.subckt netg6127 g6127_1 g6127_2 gnd +C1 g6127_1 gnd 2.080806f +C2 g6127_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6127_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6127_1 2.224404 +.ends + +.subckt netg1434 g1434_1 g1434_0 gnd +C1 g1434_1 gnd 2.080806f +C2 g1434_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1434_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1434_1 2.224404 +.ends + +.subckt netg5315 g5315_0 g5315_1 gnd +C1 g5315_0 gnd 2.080806f +C2 g5315_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5315_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5315_1 3 2.224404 +.ends + +.subckt netg6314 g6314_1 g6314_0 gnd +C1 g6314_1 gnd 2.080806f +C2 g6314_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6314_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6314_1 3 2.224404 +.ends + +.subckt netg7363 g7363_2 g7363_0 g7363_1 gnd +C1 g7363_2 gnd 2.080806f +C2 g7363_0 gnd 2.080806f +C3 g7363_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7363_0 2.224404 +R2 g7363_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g7363_1 2 2.224404 +.ends + +.subckt netg3285 g3285_2 g3285_0 g3285_1 gnd +C1 g3285_2 gnd 2.080806f +C2 g3285_0 gnd 2.080806f +C3 g3285_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3285_0 2.224404 +R2 g3285_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3285_1 2.224404 +.ends + +.subckt netg3243 g3243_1 g3243_2 g3243_0 gnd +C1 g3243_1 gnd 2.080806f +C2 g3243_2 gnd 2.080806f +C3 g3243_0 gnd 2.080806f +R1 g3243_0 g3243_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g3243_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 2 g3243_1 2.224404 +.ends + +.subckt netg1036 g1036_2 g1036_0 gnd +C1 g1036_2 gnd 2.080806f +C2 g1036_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1036_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g1036_2 2.224404 +.ends + +.subckt netg3147 g3147_1 g3147_2 g3147_0 gnd +C1 g3147_1 gnd 2.080806f +C2 g3147_2 gnd 2.080806f +C3 g3147_0 gnd 2.080806f +R1 g3147_1 g3147_0 2.224404 +C4 1 gnd 2.080806f +R2 g3147_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3147_2 2.224404 +.ends + +.subckt netg3447 g3447_1 g3447_2 g3447_0 gnd +C1 g3447_1 gnd 2.080806f +C2 g3447_2 gnd 2.080806f +C3 g3447_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3447_0 1 2.224404 +R2 1 g3447_1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3447_2 2.224404 +.ends + +.subckt netg7245 g7245_2 g7245_0 g7245_1 gnd +C1 g7245_2 gnd 2.080806f +C2 g7245_0 gnd 2.080806f +C3 g7245_1 gnd 2.080806f +R1 g7245_1 g7245_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g7245_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g7245_2 2 2.224404 +.ends + +.subckt netg5125 g5125_0 g5125_2 g5125_1 gnd +C1 g5125_0 gnd 2.080806f +C2 g5125_2 gnd 2.080806f +C3 g5125_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5125_0 1 2.224404 +R2 1 g5125_2 2.224404 +C5 2 gnd 2.080806f +R3 g5125_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5125_1 2.224404 +.ends + +.subckt netx262 x262_1 x262_0 gnd +C1 x262_1 gnd 2.080806f +C2 x262_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x262_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 x262_1 3 2.224404 +.ends + +.subckt netg5271 g5271_1 g5271_0 gnd +C1 g5271_1 gnd 2.080806f +C2 g5271_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5271_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5271_1 2.224404 +.ends + +.subckt netg7012 g7012_1 g7012_0 gnd +C1 g7012_1 gnd 2.080806f +C2 g7012_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7012_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7012_1 3 2.224404 +.ends + +.subckt netg7242 g7242_1 g7242_2 g7242_0 gnd +C1 g7242_1 gnd 2.080806f +C2 g7242_2 gnd 2.080806f +C3 g7242_0 gnd 2.080806f +R1 g7242_0 g7242_1 2.224404 +C4 1 gnd 2.080806f +R2 g7242_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g7242_2 2.224404 +.ends + +.subckt netg6471 g6471_2 g6471_1 g6471_0 gnd +C1 g6471_2 gnd 2.080806f +C2 g6471_1 gnd 2.080806f +C3 g6471_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6471_0 2.224404 +R2 g6471_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6471_1 2.224404 +R4 g6471_2 2 2.224404 +.ends + +.subckt netg6793 g6793_1 g6793_2 g6793_0 gnd +C1 g6793_1 gnd 2.080806f +C2 g6793_2 gnd 2.080806f +C3 g6793_0 gnd 2.080806f +R1 g6793_0 g6793_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g6793_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g6793_1 2 2.224404 +.ends + +.subckt netg7051 g7051_0 g7051_2 g7051_1 gnd +C1 g7051_0 gnd 2.080806f +C2 g7051_2 gnd 2.080806f +C3 g7051_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7051_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7051_2 2 2.224404 +R4 g7051_1 g7051_2 2.224404 +.ends + +.subckt netg6658 g6658_1 g6658_0 gnd +C1 g6658_1 gnd 2.080806f +C2 g6658_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6658_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6658_1 3 2.224404 +.ends + +.subckt netg7255 g7255_0 g7255_1 gnd +C1 g7255_0 gnd 2.080806f +C2 g7255_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7255_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g7255_1 2.224404 +.ends + +.subckt netg1361 g1361_0 g1361_1 gnd +C1 g1361_0 gnd 2.080806f +C2 g1361_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1361_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1361_1 2.224404 +.ends + +.subckt netx311 x311_1 x311_0 gnd +C1 x311_1 gnd 2.080806f +C2 x311_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x311_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 x311_1 3 2.224404 +.ends + +.subckt netg6686 g6686_0 g6686_1 gnd +C1 g6686_0 gnd 2.080806f +C2 g6686_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6686_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6686_1 3 2.224404 +.ends + +.subckt netg925 g925_2 g925_0 g925_1 gnd +C1 g925_2 gnd 2.080806f +C2 g925_0 gnd 2.080806f +C3 g925_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g925_0 1 2.224404 +R2 1 g925_2 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g925_1 2.224404 +.ends + +.subckt netg6799 g6799_0 g6799_2 g6799_1 gnd +C1 g6799_0 gnd 2.080806f +C2 g6799_2 gnd 2.080806f +C3 g6799_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6799_0 1 2.224404 +R2 1 g6799_2 2.224404 +C5 2 gnd 2.080806f +R3 g6799_2 2 2.224404 +R4 2 g6799_1 2.224404 +.ends + +.subckt netg6144 g6144_2 g6144_1 g6144_0 gnd +C1 g6144_2 gnd 2.080806f +C2 g6144_1 gnd 2.080806f +C3 g6144_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6144_0 2.224404 +R2 1 g6144_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g6144_2 2 2.224404 +.ends + +.subckt netx331 x331_0 x331_1 gnd +C1 x331_0 gnd 2.080806f +C2 x331_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x331_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 x331_1 2.224404 +.ends + +.subckt netg3135 g3135_1 g3135_0 g3135_2 gnd +C1 g3135_1 gnd 2.080806f +C2 g3135_0 gnd 2.080806f +C3 g3135_2 gnd 2.080806f +R1 g3135_1 g3135_0 2.224404 +C4 1 gnd 2.080806f +R2 g3135_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3135_2 2.224404 +.ends + +.subckt netg7527 g7527_0 g7527_1 gnd +C1 g7527_0 gnd 2.080806f +C2 g7527_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7527_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g7527_1 2.224404 +.ends + +.subckt netg6524 g6524_1 g6524_0 gnd +C1 g6524_1 gnd 2.080806f +C2 g6524_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6524_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6524_1 3 2.224404 +.ends + +.subckt netg3559 g3559_0 g3559_1 gnd +C1 g3559_0 gnd 2.080806f +C2 g3559_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3559_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3559_1 3 2.224404 +.ends + +.subckt netg1555 g1555_0 g1555_1 gnd +C1 g1555_0 gnd 2.080806f +C2 g1555_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1555_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1555_1 3 2.224404 +.ends + +.subckt netg940 g940_2 g940_1 g940_0 gnd +C1 g940_2 gnd 2.080806f +C2 g940_1 gnd 2.080806f +C3 g940_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g940_0 2.224404 +R2 g940_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g940_0 2 2.224404 +R4 2 g940_2 2.224404 +.ends + +.subckt netg5487 g5487_1 g5487_0 gnd +C1 g5487_1 gnd 2.080806f +C2 g5487_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5487_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5487_1 3 2.224404 +.ends + +.subckt netg5412 g5412_0 g5412_1 gnd +C1 g5412_0 gnd 2.080806f +C2 g5412_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5412_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g5412_1 3 2.224404 +.ends + +.subckt netg567 g567_1 g567_0 g567_2 gnd +C1 g567_1 gnd 2.080806f +C2 g567_0 gnd 2.080806f +C3 g567_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g567_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g567_1 2 2.224404 +R4 g567_2 g567_1 2.224404 +.ends + +.subckt netx561 x561_1 x561_0 gnd +C1 x561_1 gnd 2.080806f +C2 x561_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x561_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 x561_1 2.224404 +.ends + +.subckt netg5716 g5716_0 g5716_2 g5716_1 gnd +C1 g5716_0 gnd 2.080806f +C2 g5716_2 gnd 2.080806f +C3 g5716_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5716_0 1 2.224404 +R2 1 g5716_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5716_0 2.224404 +R4 g5716_2 2 2.224404 +.ends + +.subckt netg1302 g1302_0 g1302_1 gnd +C1 g1302_0 gnd 2.080806f +C2 g1302_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1302_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g1302_1 3 2.224404 +.ends + +.subckt netg7404 g7404_1 g7404_0 gnd +C1 g7404_1 gnd 2.080806f +C2 g7404_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7404_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7404_1 3 2.224404 +.ends + +.subckt netg3371 g3371_2 g3371_1 g3371_0 gnd +C1 g3371_2 gnd 2.080806f +C2 g3371_1 gnd 2.080806f +C3 g3371_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3371_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3371_2 2.224404 +R4 g3371_2 g3371_1 2.224404 +.ends + +.subckt netg2241 g2241_1 g2241_0 g2241_2 gnd +C1 g2241_1 gnd 2.080806f +C2 g2241_0 gnd 2.080806f +C3 g2241_2 gnd 2.080806f +R1 g2241_1 g2241_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2241_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g2241_2 2 2.224404 +.ends + +.subckt netg6509 g6509_0 g6509_1 gnd +C1 g6509_0 gnd 2.080806f +C2 g6509_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6509_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6509_1 3 2.224404 +.ends + +.subckt netg4943 g4943_2 g4943_1 g4943_0 gnd +C1 g4943_2 gnd 2.080806f +C2 g4943_1 gnd 2.080806f +C3 g4943_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4943_0 1 2.224404 +R2 1 g4943_1 2.224404 +C5 2 gnd 2.080806f +R3 g4943_1 2 2.224404 +R4 2 g4943_2 2.224404 +.ends + +.subckt netg6310 g6310_0 g6310_1 gnd +C1 g6310_0 gnd 2.080806f +C2 g6310_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6310_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6310_1 3 2.224404 +.ends + +.subckt netg6085 g6085_1 g6085_0 gnd +C1 g6085_1 gnd 2.080806f +C2 g6085_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6085_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6085_1 2.224404 +.ends + +.subckt netg1438 g1438_0 g1438_1 gnd +C1 g1438_0 gnd 2.080806f +C2 g1438_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1438_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1438_1 2.224404 +.ends + +.subckt netg5778 g5778_1 g5778_0 gnd +C1 g5778_1 gnd 2.080806f +C2 g5778_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5778_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5778_1 2.224404 +.ends + +.subckt netg7414 g7414_0 g7414_2 g7414_1 gnd +C1 g7414_0 gnd 2.080806f +C2 g7414_2 gnd 2.080806f +C3 g7414_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7414_0 2.224404 +R2 g7414_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g7414_2 2 2.224404 +.ends + +.subckt netg7237 g7237_2 g7237_0 g7237_1 gnd +C1 g7237_2 gnd 2.080806f +C2 g7237_0 gnd 2.080806f +C3 g7237_1 gnd 2.080806f +R1 g7237_1 g7237_0 2.224404 +C4 1 gnd 2.080806f +R2 g7237_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g7237_2 2.224404 +.ends + +.subckt netg3150 g3150_1 g3150_2 g3150_0 gnd +C1 g3150_1 gnd 2.080806f +C2 g3150_2 gnd 2.080806f +C3 g3150_0 gnd 2.080806f +R1 g3150_0 g3150_1 2.224404 +C4 1 gnd 2.080806f +R2 g3150_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3150_2 2.224404 +.ends + +.subckt netg7153 g7153_1 g7153_0 g7153_2 gnd +C1 g7153_1 gnd 2.080806f +C2 g7153_0 gnd 2.080806f +C3 g7153_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7153_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7153_1 2.224404 +R4 g7153_2 2 2.224404 +.ends + +.subckt netg1520 g1520_1 g1520_0 gnd +C1 g1520_1 gnd 2.080806f +C2 g1520_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1520_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1520_1 3 2.224404 +.ends + +.subckt netg5722 g5722_2 g5722_1 g5722_0 gnd +C1 g5722_2 gnd 2.080806f +C2 g5722_1 gnd 2.080806f +C3 g5722_0 gnd 2.080806f +R1 g5722_1 g5722_0 2.224404 +C4 1 gnd 2.080806f +R2 g5722_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 g5722_2 2 2.224404 +.ends + +.subckt netg1497 g1497_1 g1497_0 gnd +C1 g1497_1 gnd 2.080806f +C2 g1497_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1497_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1497_1 3 2.224404 +.ends + +.subckt netg4447 g4447_0 g4447_1 gnd +C1 g4447_0 gnd 2.080806f +C2 g4447_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4447_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g4447_1 3 2.224404 +.ends + +.subckt netg5843 g5843_2 g5843_1 g5843_0 gnd +C1 g5843_2 gnd 2.080806f +C2 g5843_1 gnd 2.080806f +C3 g5843_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5843_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5843_1 2 2.224404 +R4 g5843_1 g5843_2 2.224404 +.ends + +.subckt netg98 g98_0 g98_1 gnd +C1 g98_0 gnd 2.080806f +C2 g98_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g98_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g98_1 3 2.224404 +.ends + +.subckt netg5521 g5521_0 g5521_1 gnd +C1 g5521_0 gnd 2.080806f +C2 g5521_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5521_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5521_1 3 2.224404 +.ends + +.subckt netg2612 g2612_1 g2612_2 g2612_0 gnd +C1 g2612_1 gnd 2.080806f +C2 g2612_2 gnd 2.080806f +C3 g2612_0 gnd 2.080806f +R1 g2612_2 g2612_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2612_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 2 g2612_1 2.224404 +.ends + +.subckt netg7428 g7428_1 g7428_2 g7428_0 gnd +C1 g7428_1 gnd 2.080806f +C2 g7428_2 gnd 2.080806f +C3 g7428_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7428_0 1 2.224404 +R2 1 g7428_1 2.224404 +C5 2 gnd 2.080806f +R3 g7428_0 2 2.224404 +R4 2 g7428_2 2.224404 +.ends + +.subckt netg1853 g1853_2 g1853_1 g1853_0 gnd +C1 g1853_2 gnd 2.080806f +C2 g1853_1 gnd 2.080806f +C3 g1853_0 gnd 2.080806f +R1 g1853_0 g1853_2 2.224404 +C4 1 gnd 2.080806f +R2 g1853_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g1853_1 2.224404 +.ends + +.subckt netg7027 g7027_2 g7027_1 gnd +C1 g7027_2 gnd 2.080806f +C2 g7027_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7027_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g7027_2 3 2.224404 +.ends + +.subckt netg2752 g2752_0 g2752_3 g2752_2 g2752_1 gnd +C1 g2752_0 gnd 2.080806f +C2 g2752_3 gnd 2.080806f +C3 g2752_2 gnd 2.080806f +C4 g2752_1 gnd 2.080806f +R1 g2752_2 g2752_0 2.224404 +R2 g2752_3 g2752_2 2.224404 +C5 1 gnd 2.080806f +R3 g2752_2 1 2.224404 +R4 1 g2752_1 2.224404 +.ends + +.subckt netg4217 g4217_1 g4217_0 gnd +C1 g4217_1 gnd 2.080806f +C2 g4217_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4217_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g4217_1 3 2.224404 +.ends + +.subckt netg5563 g5563_0 g5563_2 g5563_1 gnd +C1 g5563_0 gnd 2.080806f +C2 g5563_2 gnd 2.080806f +C3 g5563_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5563_0 2.224404 +R2 g5563_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g5563_1 2 2.224404 +R4 2 g5563_2 2.224404 +.ends + +.subckt netg2728 g2728_0 g2728_1 g2728_2 gnd +C1 g2728_0 gnd 2.080806f +C2 g2728_1 gnd 2.080806f +C3 g2728_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2728_0 2.224404 +R2 g2728_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g2728_1 2 2.224404 +R4 g2728_2 2 2.224404 +.ends + +.subckt netg7336 g7336_0 g7336_2 g7336_1 gnd +C1 g7336_0 gnd 2.080806f +C2 g7336_2 gnd 2.080806f +C3 g7336_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7336_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7336_2 2.224404 +R4 g7336_2 g7336_1 2.224404 +.ends + +.subckt netg3060 g3060_1 g3060_0 gnd +C1 g3060_1 gnd 2.080806f +C2 g3060_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3060_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3060_1 3 2.224404 +.ends + +.subckt netg6453 g6453_1 g6453_0 g6453_2 gnd +C1 g6453_1 gnd 2.080806f +C2 g6453_0 gnd 2.080806f +C3 g6453_2 gnd 2.080806f +R1 g6453_0 g6453_2 2.224404 +C4 1 gnd 2.080806f +R2 g6453_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g6453_1 2.224404 +.ends + +.subckt netg7193 g7193_1 g7193_0 g7193_2 gnd +C1 g7193_1 gnd 2.080806f +C2 g7193_0 gnd 2.080806f +C3 g7193_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7193_0 2.224404 +R2 1 g7193_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g7193_0 2.224404 +R4 g7193_2 2 2.224404 +.ends + +.subckt netg5917 g5917_1 g5917_2 g5917_0 gnd +C1 g5917_1 gnd 2.080806f +C2 g5917_2 gnd 2.080806f +C3 g5917_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5917_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5917_2 2 2.224404 +R4 g5917_2 g5917_1 2.224404 +.ends + +.subckt netg4117 g4117_0 g4117_3 g4117_1 g4117_2 gnd +C1 g4117_0 gnd 2.080806f +C2 g4117_3 gnd 2.080806f +C3 g4117_1 gnd 2.080806f +C4 g4117_2 gnd 2.080806f +R1 g4117_0 g4117_1 2.224404 +C5 1 gnd 2.080806f +R2 1 g4117_0 2.224404 +R3 g4117_2 1 2.224404 +R4 g4117_3 1 2.224404 +.ends + +.subckt netg2686 g2686_1 g2686_0 g2686_2 gnd +C1 g2686_1 gnd 2.080806f +C2 g2686_0 gnd 2.080806f +C3 g2686_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2686_0 1 2.224404 +R2 g2686_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2686_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g2686_2 3 2.224404 +.ends + +.subckt netg5643 g5643_2 g5643_0 g5643_1 gnd +C1 g5643_2 gnd 2.080806f +C2 g5643_0 gnd 2.080806f +C3 g5643_1 gnd 2.080806f +R1 g5643_0 g5643_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g5643_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g5643_2 2 2.224404 +.ends + +.subckt netg4357 g4357_0 g4357_1 gnd +C1 g4357_0 gnd 2.080806f +C2 g4357_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4357_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g4357_1 3 2.224404 +.ends + +.subckt netg3213 g3213_2 g3213_1 gnd +C1 g3213_2 gnd 2.080806f +C2 g3213_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3213_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3213_2 3 2.224404 +.ends + +.subckt netx51 x51_1 x51_0 gnd +C1 x51_1 gnd 2.080806f +C2 x51_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x51_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 x51_1 2.224404 +.ends + +.subckt netx151 x151_0 x151_1 gnd +C1 x151_0 gnd 2.080806f +C2 x151_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x151_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 x151_1 3 2.224404 +.ends + +.subckt netg6995 g6995_0 g6995_1 gnd +C1 g6995_0 gnd 2.080806f +C2 g6995_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6995_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6995_1 3 2.224404 +.ends + +.subckt netg4423 g4423_0 g4423_1 gnd +C1 g4423_0 gnd 2.080806f +C2 g4423_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4423_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g4423_1 2.224404 +.ends + +.subckt netg6537 g6537_1 g6537_0 gnd +C1 g6537_1 gnd 2.080806f +C2 g6537_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6537_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6537_1 2.224404 +.ends + +.subckt netg6560 g6560_1 g6560_0 gnd +C1 g6560_1 gnd 2.080806f +C2 g6560_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6560_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6560_1 3 2.224404 +.ends + +.subckt netg7015 g7015_1 g7015_0 gnd +C1 g7015_1 gnd 2.080806f +C2 g7015_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7015_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g7015_1 2.224404 +.ends + +.subckt netg3086 g3086_1 g3086_2 g3086_0 gnd +C1 g3086_1 gnd 2.080806f +C2 g3086_2 gnd 2.080806f +C3 g3086_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3086_0 2.224404 +R2 g3086_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g3086_1 2 2.224404 +R4 g3086_2 2 2.224404 +.ends + +.subckt netg6396 g6396_1 g6396_0 gnd +C1 g6396_1 gnd 2.080806f +C2 g6396_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6396_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6396_1 3 2.224404 +.ends + +.subckt netg5710 g5710_2 g5710_0 g5710_1 gnd +C1 g5710_2 gnd 2.080806f +C2 g5710_0 gnd 2.080806f +C3 g5710_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5710_0 2.224404 +R2 g5710_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5710_1 2.224404 +R4 g5710_2 2 2.224404 +.ends + +.subckt netg5044 g5044_1 g5044_0 g5044_2 gnd +C1 g5044_1 gnd 2.080806f +C2 g5044_0 gnd 2.080806f +C3 g5044_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5044_0 1 2.224404 +R2 g5044_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g5044_1 2 2.224404 +R4 g5044_2 2 2.224404 +.ends + +.subckt netg5834 g5834_1 g5834_0 gnd +C1 g5834_1 gnd 2.080806f +C2 g5834_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5834_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5834_1 2.224404 +.ends + +.subckt netg5871 g5871_2 g5871_0 gnd +C1 g5871_2 gnd 2.080806f +C2 g5871_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5871_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5871_2 2.224404 +.ends + +.subckt netg6850 g6850_1 g6850_0 g6850_2 gnd +C1 g6850_1 gnd 2.080806f +C2 g6850_0 gnd 2.080806f +C3 g6850_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6850_0 2.224404 +R2 g6850_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6850_2 2.224404 +R4 g6850_1 2 2.224404 +.ends + +.subckt netg2023 g2023_2 g2023_3 g2023_1 gnd +C1 g2023_2 gnd 2.080806f +C2 g2023_3 gnd 2.080806f +C3 g2023_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2023_3 2.224404 +R2 g2023_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2023_2 2.224404 +R4 g2023_1 2 2.224404 +.ends + +.subckt netg1940 g1940_0 g1940_1 gnd +C1 g1940_0 gnd 2.080806f +C2 g1940_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1940_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g1940_1 3 2.224404 +.ends + +.subckt netg2549 g2549_0 g2549_1 g2549_2 gnd +C1 g2549_0 gnd 2.080806f +C2 g2549_1 gnd 2.080806f +C3 g2549_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2549_0 1 2.224404 +R2 1 g2549_1 2.224404 +C5 2 gnd 2.080806f +R3 g2549_1 2 2.224404 +R4 2 g2549_2 2.224404 +.ends + +.subckt netg1030 g1030_1 g1030_2 gnd +C1 g1030_1 gnd 2.080806f +C2 g1030_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1030_2 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g1030_1 3 2.224404 +.ends + +.subckt netg2070 g2070_1 g2070_0 gnd +C1 g2070_1 gnd 2.080806f +C2 g2070_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2070_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g2070_1 3 2.224404 +.ends + +.subckt netg1478 g1478_0 g1478_1 gnd +C1 g1478_0 gnd 2.080806f +C2 g1478_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1478_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1478_1 2.224404 +.ends + +.subckt netg4666 g4666_1 g4666_0 gnd +C1 g4666_1 gnd 2.080806f +C2 g4666_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4666_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g4666_1 2.224404 +.ends + +.subckt netg4625 g4625_1 g4625_0 gnd +C1 g4625_1 gnd 2.080806f +C2 g4625_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4625_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4625_1 2.224404 +.ends + +.subckt netg3914 g3914_0 g3914_1 gnd +C1 g3914_0 gnd 2.080806f +C2 g3914_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3914_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3914_1 3 2.224404 +.ends + +.subckt netg7321 g7321_0 g7321_2 g7321_1 gnd +C1 g7321_0 gnd 2.080806f +C2 g7321_2 gnd 2.080806f +C3 g7321_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7321_0 1 2.224404 +R2 1 g7321_2 2.224404 +C5 2 gnd 2.080806f +R3 g7321_2 2 2.224404 +R4 2 g7321_1 2.224404 +.ends + +.subckt netg5780 g5780_1 g5780_2 gnd +C1 g5780_1 gnd 2.080806f +C2 g5780_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5780_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5780_2 3 2.224404 +.ends + +.subckt netg6318 g6318_2 g6318_0 g6318_1 g6318_3 gnd +C1 g6318_2 gnd 2.080806f +C2 g6318_0 gnd 2.080806f +C3 g6318_1 gnd 2.080806f +C4 g6318_3 gnd 2.080806f +R1 g6318_0 g6318_2 2.224404 +R2 g6318_1 g6318_2 2.224404 +C5 1 gnd 2.080806f +R3 g6318_2 1 2.224404 +R4 1 g6318_3 2.224404 +.ends + +.subckt netg1060 g1060_2 g1060_3 g1060_5 g1060_4 g1060_1 g1060_0 gnd +C1 g1060_2 gnd 2.080806f +C2 g1060_3 gnd 2.080806f +C3 g1060_5 gnd 2.080806f +C4 g1060_4 gnd 2.080806f +C5 g1060_1 gnd 2.080806f +C6 g1060_0 gnd 2.080806f +R1 g1060_2 g1060_0 2.224404 +R2 g1060_0 g1060_4 2.224404 +R3 g1060_3 g1060_2 2.224404 +R4 g1060_5 g1060_3 2.224404 +R5 g1060_5 g1060_1 2.224404 +.ends + +.subckt netg3407 g3407_1 g3407_2 g3407_0 gnd +C1 g3407_1 gnd 2.080806f +C2 g3407_2 gnd 2.080806f +C3 g3407_0 gnd 2.080806f +R1 g3407_1 g3407_0 2.224404 +C4 1 gnd 2.080806f +R2 g3407_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3407_2 2.224404 +.ends + +.subckt netg5083 g5083_0 g5083_1 g5083_2 gnd +C1 g5083_0 gnd 2.080806f +C2 g5083_1 gnd 2.080806f +C3 g5083_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5083_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5083_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g5083_1 3 2.224404 +R5 g5083_2 3 2.224404 +.ends + +.subckt netg5489 g5489_0 g5489_1 gnd +C1 g5489_0 gnd 2.080806f +C2 g5489_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5489_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5489_1 3 2.224404 +.ends + +.subckt netg3270 g3270_0 g3270_1 g3270_2 gnd +C1 g3270_0 gnd 2.080806f +C2 g3270_1 gnd 2.080806f +C3 g3270_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3270_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3270_2 2.224404 +R4 g3270_2 g3270_1 2.224404 +.ends + +.subckt netg7421 g7421_1 g7421_0 gnd +C1 g7421_1 gnd 2.080806f +C2 g7421_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7421_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g7421_1 3 2.224404 +.ends + +.subckt netx472 x472_1 x472_0 gnd +C1 x472_1 gnd 2.080806f +C2 x472_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x472_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 x472_1 2.224404 +.ends + +.subckt netg3947 g3947_0 g3947_1 g3947_2 gnd +C1 g3947_0 gnd 2.080806f +C2 g3947_1 gnd 2.080806f +C3 g3947_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3947_0 1 2.224404 +R2 1 g3947_2 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3947_1 2.224404 +.ends + +.subckt netg1897 g1897_0 g1897_1 gnd +C1 g1897_0 gnd 2.080806f +C2 g1897_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1897_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1897_1 2.224404 +.ends + +.subckt netg5903 g5903_1 g5903_0 g5903_2 gnd +C1 g5903_1 gnd 2.080806f +C2 g5903_0 gnd 2.080806f +C3 g5903_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5903_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5903_1 2.224404 +R4 2 g5903_2 2.224404 +.ends + +.subckt netg4931 g4931_0 g4931_3 g4931_1 g4931_2 gnd +C1 g4931_0 gnd 2.080806f +C2 g4931_3 gnd 2.080806f +C3 g4931_1 gnd 2.080806f +C4 g4931_2 gnd 2.080806f +R1 g4931_3 g4931_0 2.224404 +R2 g4931_1 g4931_3 2.224404 +C5 1 gnd 2.080806f +R3 1 g4931_1 2.224404 +R4 g4931_2 1 2.224404 +.ends + +.subckt netg7033 g7033_0 g7033_1 g7033_4 g7033_3 gnd +C1 g7033_0 gnd 2.080806f +C2 g7033_1 gnd 2.080806f +C3 g7033_4 gnd 2.080806f +C4 g7033_3 gnd 2.080806f +R1 g7033_0 g7033_4 2.224404 +C5 1 gnd 2.080806f +R2 1 g7033_4 2.224404 +R3 g7033_3 1 2.224404 +C6 2 gnd 2.080806f +R4 2 g7033_3 2.224404 +R5 g7033_1 2 2.224404 +.ends + +.subckt netg6826 g6826_0 g6826_1 gnd +C1 g6826_0 gnd 2.080806f +C2 g6826_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6826_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6826_1 2.224404 +.ends + +.subckt netg5649 g5649_0 g5649_2 g5649_1 gnd +C1 g5649_0 gnd 2.080806f +C2 g5649_2 gnd 2.080806f +C3 g5649_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5649_0 2.224404 +R2 1 g5649_2 2.224404 +C5 2 gnd 2.080806f +R3 2 g5649_2 2.224404 +R4 g5649_1 2 2.224404 +.ends + +.subckt netg3526 g3526_0 g3526_1 gnd +C1 g3526_0 gnd 2.080806f +C2 g3526_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3526_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g3526_1 2.224404 +.ends + +.subckt netg4967 g4967_1 g4967_2 g4967_0 gnd +C1 g4967_1 gnd 2.080806f +C2 g4967_2 gnd 2.080806f +C3 g4967_0 gnd 2.080806f +R1 g4967_2 g4967_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4967_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g4967_1 2 2.224404 +.ends + +.subckt netg1066 g1066_0 g1066_1 g1066_2 gnd +C1 g1066_0 gnd 2.080806f +C2 g1066_1 gnd 2.080806f +C3 g1066_2 gnd 2.080806f +R1 g1066_2 g1066_0 2.224404 +C4 1 gnd 2.080806f +R2 g1066_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1066_1 2.224404 +.ends + +.subckt netg5707 g5707_1 g5707_0 g5707_2 gnd +C1 g5707_1 gnd 2.080806f +C2 g5707_0 gnd 2.080806f +C3 g5707_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5707_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5707_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g5707_1 3 2.224404 +R5 g5707_2 3 2.224404 +.ends + +.subckt netg7088 g7088_0 g7088_1 gnd +C1 g7088_0 gnd 2.080806f +C2 g7088_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7088_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g7088_1 2.224404 +.ends + +.subckt netg5912 g5912_2 g5912_0 g5912_1 gnd +C1 g5912_2 gnd 2.080806f +C2 g5912_0 gnd 2.080806f +C3 g5912_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5912_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5912_1 3 2.224404 +R5 g5912_2 g5912_1 2.224404 +.ends + +.subckt netg5942 g5942_2 g5942_1 g5942_0 gnd +C1 g5942_2 gnd 2.080806f +C2 g5942_1 gnd 2.080806f +C3 g5942_0 gnd 2.080806f +R1 g5942_1 g5942_0 2.224404 +C4 1 gnd 2.080806f +R2 g5942_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5942_2 2.224404 +.ends + +.subckt netg4940 g4940_2 g4940_0 g4940_1 gnd +C1 g4940_2 gnd 2.080806f +C2 g4940_0 gnd 2.080806f +C3 g4940_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4940_0 2.224404 +R2 1 g4940_1 2.224404 +C5 2 gnd 2.080806f +R3 g4940_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4940_2 2.224404 +.ends + +.subckt netg2756 g2756_0 g2756_2 g2756_1 gnd +C1 g2756_0 gnd 2.080806f +C2 g2756_2 gnd 2.080806f +C3 g2756_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2756_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2756_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g2756_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g2756_2 4 2.224404 +.ends + +.subckt netg3444 g3444_1 g3444_0 g3444_2 gnd +C1 g3444_1 gnd 2.080806f +C2 g3444_0 gnd 2.080806f +C3 g3444_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3444_0 2.224404 +R2 g3444_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g3444_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g3444_2 3 2.224404 +.ends + +.subckt netg4183 g4183_0 g4183_1 g4183_2 gnd +C1 g4183_0 gnd 2.080806f +C2 g4183_1 gnd 2.080806f +C3 g4183_2 gnd 2.080806f +R1 g4183_1 g4183_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4183_0 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g4183_2 2.224404 +.ends + +.subckt netg1536 g1536_1 g1536_0 gnd +C1 g1536_1 gnd 2.080806f +C2 g1536_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1536_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1536_1 4 2.224404 +.ends + +.subckt netg1006 g1006_2 g1006_0 g1006_1 gnd +C1 g1006_2 gnd 2.080806f +C2 g1006_0 gnd 2.080806f +C3 g1006_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1006_0 2.224404 +R2 g1006_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1006_2 2.224404 +.ends + +.subckt netg2938 g2938_1 g2938_0 gnd +C1 g2938_1 gnd 2.080806f +C2 g2938_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2938_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2938_1 2.224404 +.ends + +.subckt netg4964 g4964_1 g4964_2 g4964_0 gnd +C1 g4964_1 gnd 2.080806f +C2 g4964_2 gnd 2.080806f +C3 g4964_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4964_0 2.224404 +R2 g4964_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g4964_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g4964_1 3 2.224404 +.ends + +.subckt netg2848 g2848_1 g2848_0 gnd +C1 g2848_1 gnd 2.080806f +C2 g2848_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2848_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2848_1 2.224404 +.ends + +.subckt netg1101 g1101_1 g1101_0 gnd +C1 g1101_1 gnd 2.080806f +C2 g1101_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1101_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1101_1 4 2.224404 +.ends + +.subckt netg1458 g1458_1 g1458_0 gnd +C1 g1458_1 gnd 2.080806f +C2 g1458_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1458_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1458_1 4 2.224404 +.ends + +.subckt netg5095 g5095_2 g5095_1 g5095_0 gnd +C1 g5095_2 gnd 2.080806f +C2 g5095_1 gnd 2.080806f +C3 g5095_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5095_0 2.224404 +R2 g5095_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5095_2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5095_1 2.224404 +.ends + +.subckt netg3483 g3483_1 g3483_0 gnd +C1 g3483_1 gnd 2.080806f +C2 g3483_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3483_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g3483_1 4 2.224404 +.ends + +.subckt netg4188 g4188_0 g4188_1 gnd +C1 g4188_0 gnd 2.080806f +C2 g4188_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4188_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4188_1 2.224404 +.ends + +.subckt netg3002 g3002_1 g3002_0 gnd +C1 g3002_1 gnd 2.080806f +C2 g3002_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3002_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g3002_1 2.224404 +.ends + +.subckt netg5464 g5464_1 g5464_0 gnd +C1 g5464_1 gnd 2.080806f +C2 g5464_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5464_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g5464_1 4 2.224404 +.ends + +.subckt netg2522 g2522_2 g2522_1 g2522_0 gnd +C1 g2522_2 gnd 2.080806f +C2 g2522_1 gnd 2.080806f +C3 g2522_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2522_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2522_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g2522_1 3 2.224404 +R5 g2522_2 3 2.224404 +.ends + +.subckt netg1330 g1330_6 g1330_5 g1330_4 g1330_0 g1330_3 g1330_1 gnd +C1 g1330_6 gnd 2.080806f +C2 g1330_5 gnd 2.080806f +C3 g1330_4 gnd 2.080806f +C4 g1330_0 gnd 2.080806f +C5 g1330_3 gnd 2.080806f +C6 g1330_1 gnd 2.080806f +R1 g1330_0 g1330_5 2.224404 +R2 g1330_6 g1330_0 2.224404 +R3 g1330_3 g1330_6 2.224404 +R4 g1330_3 g1330_1 2.224404 +R5 g1330_4 g1330_3 2.224404 +.ends + +.subckt netg5272 g5272_0 g5272_1 gnd +C1 g5272_0 gnd 2.080806f +C2 g5272_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5272_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g5272_1 2.224404 +.ends + +.subckt netg5761 g5761_0 g5761_1 g5761_2 gnd +C1 g5761_0 gnd 2.080806f +C2 g5761_1 gnd 2.080806f +C3 g5761_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5761_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5761_2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5761_1 2.224404 +.ends + +.subckt netg1152 g1152_0 g1152_1 gnd +C1 g1152_0 gnd 2.080806f +C2 g1152_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1152_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1152_1 4 2.224404 +.ends + +.subckt netg7411 g7411_0 g7411_1 gnd +C1 g7411_0 gnd 2.080806f +C2 g7411_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7411_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g7411_1 2.224404 +.ends + +.subckt netg1120 g1120_1 g1120_0 gnd +C1 g1120_1 gnd 2.080806f +C2 g1120_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1120_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g1120_1 2.224404 +.ends + +.subckt netg5881 g5881_2 g5881_1 g5881_0 gnd +C1 g5881_2 gnd 2.080806f +C2 g5881_1 gnd 2.080806f +C3 g5881_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5881_0 2.224404 +R2 1 g5881_2 2.224404 +C5 2 gnd 2.080806f +R3 g5881_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g5881_1 2.224404 +.ends + +.subckt netx541 x541_1 x541_0 gnd +C1 x541_1 gnd 2.080806f +C2 x541_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x541_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 x541_1 4 2.224404 +.ends + +.subckt netg5894 g5894_1 g5894_2 g5894_0 gnd +C1 g5894_1 gnd 2.080806f +C2 g5894_2 gnd 2.080806f +C3 g5894_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5894_0 1 2.224404 +R2 1 g5894_1 2.224404 +C5 2 gnd 2.080806f +R3 g5894_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5894_2 2.224404 +.ends + +.subckt netg6269 g6269_0 g6269_2 g6269_1 gnd +C1 g6269_0 gnd 2.080806f +C2 g6269_2 gnd 2.080806f +C3 g6269_1 gnd 2.080806f +R1 g6269_0 g6269_2 2.224404 +C4 1 gnd 2.080806f +R2 g6269_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g6269_1 2.224404 +.ends + +.subckt netg6990 g6990_1 g6990_2 g6990_0 gnd +C1 g6990_1 gnd 2.080806f +C2 g6990_2 gnd 2.080806f +C3 g6990_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6990_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6990_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g6990_1 2.224404 +R6 g6990_2 4 2.224404 +.ends + +.subckt netg7366 g7366_0 g7366_2 g7366_1 gnd +C1 g7366_0 gnd 2.080806f +C2 g7366_2 gnd 2.080806f +C3 g7366_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7366_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g7366_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g7366_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g7366_2 4 2.224404 +.ends + +.subckt netg7158 g7158_1 g7158_2 g7158_0 gnd +C1 g7158_1 gnd 2.080806f +C2 g7158_2 gnd 2.080806f +C3 g7158_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7158_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7158_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g7158_1 2.224404 +R5 g7158_2 3 2.224404 +.ends + +.subckt netg5220 g5220_0 g5220_2 g5220_1 gnd +C1 g5220_0 gnd 2.080806f +C2 g5220_2 gnd 2.080806f +C3 g5220_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5220_0 1 2.224404 +R2 1 g5220_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5220_1 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5220_2 2.224404 +.ends + +.subckt netg3255 g3255_2 g3255_1 g3255_0 gnd +C1 g3255_2 gnd 2.080806f +C2 g3255_1 gnd 2.080806f +C3 g3255_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3255_0 1 2.224404 +R2 1 g3255_2 2.224404 +C5 2 gnd 2.080806f +R3 2 g3255_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g3255_1 3 2.224404 +.ends + +.subckt netg1344 g1344_0 g1344_1 g1344_3 g1344_2 g1344_5 g1344_4 gnd +C1 g1344_0 gnd 2.080806f +C2 g1344_1 gnd 2.080806f +C3 g1344_3 gnd 2.080806f +C4 g1344_2 gnd 2.080806f +C5 g1344_5 gnd 2.080806f +C6 g1344_4 gnd 2.080806f +R1 g1344_0 g1344_3 2.224404 +C7 1 gnd 2.080806f +R2 1 g1344_0 2.224404 +R3 g1344_1 1 2.224404 +C8 2 gnd 2.080806f +R4 g1344_3 2 2.224404 +R5 2 g1344_2 2.224404 +C9 3 gnd 2.080806f +R6 g1344_1 3 2.224404 +R7 3 g1344_5 2.224404 +R8 g1344_5 g1344_4 2.224404 +.ends + +.subckt netg5926 g5926_1 g5926_2 g5926_0 gnd +C1 g5926_1 gnd 2.080806f +C2 g5926_2 gnd 2.080806f +C3 g5926_0 gnd 2.080806f +R1 g5926_1 g5926_0 2.224404 +C4 1 gnd 2.080806f +R2 g5926_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5926_2 2.224404 +.ends + +.subckt netg487 g487_0 g487_1 gnd +C1 g487_0 gnd 2.080806f +C2 g487_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g487_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g487_1 4 2.224404 +.ends + +.subckt netg5891 g5891_1 g5891_2 g5891_0 gnd +C1 g5891_1 gnd 2.080806f +C2 g5891_2 gnd 2.080806f +C3 g5891_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5891_0 2.224404 +R2 g5891_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5891_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5891_1 3 2.224404 +.ends + +.subckt netg7303 g7303_2 g7303_1 g7303_0 gnd +C1 g7303_2 gnd 2.080806f +C2 g7303_1 gnd 2.080806f +C3 g7303_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7303_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7303_1 2.224404 +C6 3 gnd 2.080806f +R4 g7303_1 3 2.224404 +R5 3 g7303_2 2.224404 +.ends + +.subckt netg4756 g4756_0 g4756_3 g4756_2 g4756_1 gnd +C1 g4756_0 gnd 2.080806f +C2 g4756_3 gnd 2.080806f +C3 g4756_2 gnd 2.080806f +C4 g4756_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4756_0 2.224404 +R2 g4756_3 1 2.224404 +R3 g4756_1 g4756_3 2.224404 +C6 2 gnd 2.080806f +R4 1 2 2.224404 +R5 2 g4756_2 2.224404 +.ends + +.subckt netg5758 g5758_0 g5758_1 g5758_2 gnd +C1 g5758_0 gnd 2.080806f +C2 g5758_1 gnd 2.080806f +C3 g5758_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5758_0 2.224404 +R2 g5758_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5758_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5758_1 3 2.224404 +.ends + +.subckt netg5478 g5478_1 g5478_0 gnd +C1 g5478_1 gnd 2.080806f +C2 g5478_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5478_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g5478_1 4 2.224404 +.ends + +.subckt netg5613 g5613_0 g5613_1 g5613_2 gnd +C1 g5613_0 gnd 2.080806f +C2 g5613_1 gnd 2.080806f +C3 g5613_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5613_0 2.224404 +R2 g5613_2 1 2.224404 +C5 2 gnd 2.080806f +R3 g5613_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5613_1 2.224404 +.ends + +.subckt netg4661 g4661_1 g4661_0 gnd +C1 g4661_1 gnd 2.080806f +C2 g4661_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4661_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4661_1 2.224404 +.ends + +.subckt netg2650 g2650_1 g2650_0 g2650_2 gnd +C1 g2650_1 gnd 2.080806f +C2 g2650_0 gnd 2.080806f +C3 g2650_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2650_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2650_2 2.224404 +R5 g2650_2 g2650_1 2.224404 +.ends + +.subckt netg100 g100_0 g100_1 gnd +C1 g100_0 gnd 2.080806f +C2 g100_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g100_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g100_1 4 2.224404 +.ends + +.subckt netg6631 g6631_1 g6631_2 g6631_0 gnd +C1 g6631_1 gnd 2.080806f +C2 g6631_2 gnd 2.080806f +C3 g6631_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6631_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g6631_2 3 2.224404 +R5 g6631_1 g6631_2 2.224404 +.ends + +.subckt netg6346 g6346_1 g6346_3 g6346_0 gnd +C1 g6346_1 gnd 2.080806f +C2 g6346_3 gnd 2.080806f +C3 g6346_0 gnd 2.080806f +R1 g6346_0 g6346_1 2.224404 +C4 1 gnd 2.080806f +R2 g6346_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g6346_3 2.224404 +.ends + +.subckt netg5930 g5930_1 g5930_0 gnd +C1 g5930_1 gnd 2.080806f +C2 g5930_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5930_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g5930_1 2.224404 +.ends + +.subckt netg5688 g5688_0 g5688_2 g5688_1 gnd +C1 g5688_0 gnd 2.080806f +C2 g5688_2 gnd 2.080806f +C3 g5688_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5688_0 1 2.224404 +R2 1 g5688_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5688_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5688_2 3 2.224404 +.ends + +.subckt netg6023 g6023_1 g6023_0 g6023_2 gnd +C1 g6023_1 gnd 2.080806f +C2 g6023_0 gnd 2.080806f +C3 g6023_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6023_0 1 2.224404 +R2 g6023_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6023_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 3 g6023_2 2.224404 +.ends + +.subckt netg2423 g2423_2 g2423_1 g2423_0 gnd +C1 g2423_2 gnd 2.080806f +C2 g2423_1 gnd 2.080806f +C3 g2423_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2423_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2423_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g2423_2 2.224404 +R5 g2423_1 3 2.224404 +.ends + +.subckt netg1404 g1404_1 g1404_0 gnd +C1 g1404_1 gnd 2.080806f +C2 g1404_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1404_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g1404_1 4 2.224404 +.ends + +.subckt netg6818 g6818_1 g6818_0 gnd +C1 g6818_1 gnd 2.080806f +C2 g6818_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6818_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g6818_1 4 2.224404 +.ends + +.subckt netg747 g747_3 g747_1 g747_4 g747_2 g747_0 gnd +C1 g747_3 gnd 2.080806f +C2 g747_1 gnd 2.080806f +C3 g747_4 gnd 2.080806f +C4 g747_2 gnd 2.080806f +C5 g747_0 gnd 2.080806f +R1 g747_0 g747_2 2.224404 +R2 g747_3 g747_0 2.224404 +R3 g747_4 g747_0 2.224404 +C6 1 gnd 2.080806f +R4 1 g747_3 2.224404 +C7 2 gnd 2.080806f +R5 2 1 2.224404 +R6 g747_1 2 2.224404 +.ends + +.subckt netg6147 g6147_2 g6147_0 g6147_1 gnd +C1 g6147_2 gnd 2.080806f +C2 g6147_0 gnd 2.080806f +C3 g6147_1 gnd 2.080806f +R1 g6147_0 g6147_2 2.224404 +C4 1 gnd 2.080806f +R2 g6147_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g6147_1 2.224404 +.ends + +.subckt netg2761 g2761_1 g2761_0 gnd +C1 g2761_1 gnd 2.080806f +C2 g2761_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2761_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2761_1 2.224404 +.ends + +.subckt netg5431 g5431_0 g5431_2 g5431_1 gnd +C1 g5431_0 gnd 2.080806f +C2 g5431_2 gnd 2.080806f +C3 g5431_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5431_0 1 2.224404 +R2 1 g5431_2 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5431_1 2.224404 +.ends + +.subckt netg6481 g6481_1 g6481_2 g6481_0 gnd +C1 g6481_1 gnd 2.080806f +C2 g6481_2 gnd 2.080806f +C3 g6481_0 gnd 2.080806f +R1 g6481_0 g6481_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g6481_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g6481_1 3 2.224404 +.ends + +.subckt netg7551 g7551_1 g7551_0 gnd +C1 g7551_1 gnd 2.080806f +C2 g7551_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7551_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g7551_1 4 2.224404 +.ends + +.subckt netg4030 g4030_0 g4030_3 g4030_1 g4030_2 gnd +C1 g4030_0 gnd 2.080806f +C2 g4030_3 gnd 2.080806f +C3 g4030_1 gnd 2.080806f +C4 g4030_2 gnd 2.080806f +R1 g4030_0 g4030_1 2.224404 +C5 1 gnd 2.080806f +R2 g4030_1 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g4030_3 2.224404 +R5 g4030_3 g4030_2 2.224404 +.ends + +.subckt netg5743 g5743_0 g5743_2 g5743_1 gnd +C1 g5743_0 gnd 2.080806f +C2 g5743_2 gnd 2.080806f +C3 g5743_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5743_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5743_1 2.224404 +C6 3 gnd 2.080806f +R4 g5743_1 3 2.224404 +R5 3 g5743_2 2.224404 +.ends + +.subckt netg3482 g3482_1 g3482_0 gnd +C1 g3482_1 gnd 2.080806f +C2 g3482_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3482_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g3482_1 2.224404 +.ends + +.subckt netg1286 g1286_1 g1286_0 gnd +C1 g1286_1 gnd 2.080806f +C2 g1286_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1286_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g1286_1 4 2.224404 +.ends + +.subckt netg4422 g4422_0 g4422_1 gnd +C1 g4422_0 gnd 2.080806f +C2 g4422_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4422_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g4422_1 4 2.224404 +.ends + +.subckt netg2668 g2668_2 g2668_0 gnd +C1 g2668_2 gnd 2.080806f +C2 g2668_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2668_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2668_2 2.224404 +.ends + +.subckt netg7065 g7065_1 g7065_0 g7065_2 gnd +C1 g7065_1 gnd 2.080806f +C2 g7065_0 gnd 2.080806f +C3 g7065_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7065_0 1 2.224404 +R2 1 g7065_1 2.224404 +C5 2 gnd 2.080806f +R3 g7065_1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g7065_2 2.224404 +.ends + +.subckt netg4368 g4368_1 g4368_0 g4368_2 gnd +C1 g4368_1 gnd 2.080806f +C2 g4368_0 gnd 2.080806f +C3 g4368_2 gnd 2.080806f +R1 g4368_0 g4368_1 2.224404 +C4 1 gnd 2.080806f +R2 g4368_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g4368_2 2.224404 +.ends + +.subckt netg4913 g4913_2 g4913_1 g4913_3 gnd +C1 g4913_2 gnd 2.080806f +C2 g4913_1 gnd 2.080806f +C3 g4913_3 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4913_2 2.224404 +R2 g4913_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g4913_3 3 2.224404 +.ends + +.subckt netg3106 g3106_0 g3106_2 g3106_1 gnd +C1 g3106_0 gnd 2.080806f +C2 g3106_2 gnd 2.080806f +C3 g3106_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3106_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3106_1 2.224404 +C6 3 gnd 2.080806f +R4 1 3 2.224404 +R5 3 g3106_2 2.224404 +.ends + +.subckt netg3374 g3374_0 g3374_1 g3374_2 gnd +C1 g3374_0 gnd 2.080806f +C2 g3374_1 gnd 2.080806f +C3 g3374_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3374_0 2.224404 +R2 g3374_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g3374_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g3374_1 3 2.224404 +.ends + +.subckt netg1986 g1986_1 g1986_0 g1986_2 g1986_3 gnd +C1 g1986_1 gnd 2.080806f +C2 g1986_0 gnd 2.080806f +C3 g1986_2 gnd 2.080806f +C4 g1986_3 gnd 2.080806f +R1 g1986_2 g1986_0 2.224404 +C5 1 gnd 2.080806f +R2 g1986_0 1 2.224404 +R3 1 g1986_1 2.224404 +C6 2 gnd 2.080806f +R4 2 g1986_2 2.224404 +R5 g1986_3 2 2.224404 +.ends + +.subckt netg1484 g1484_1 g1484_5 g1484_4 g1484_0 g1484_2 gnd +C1 g1484_1 gnd 2.080806f +C2 g1484_5 gnd 2.080806f +C3 g1484_4 gnd 2.080806f +C4 g1484_0 gnd 2.080806f +C5 g1484_2 gnd 2.080806f +R1 g1484_2 g1484_0 2.224404 +C6 1 gnd 2.080806f +R2 g1484_2 1 2.224404 +R3 1 g1484_4 2.224404 +C7 2 gnd 2.080806f +R4 g1484_4 2 2.224404 +R5 2 g1484_1 2.224404 +R6 2 g1484_5 2.224404 +.ends + +.subckt netg5174 g5174_2 g5174_1 g5174_0 gnd +C1 g5174_2 gnd 2.080806f +C2 g5174_1 gnd 2.080806f +C3 g5174_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5174_0 2.224404 +R2 1 g5174_1 2.224404 +C5 2 gnd 2.080806f +R3 g5174_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5174_2 2.224404 +.ends + +.subckt netg4400 g4400_0 g4400_1 gnd +C1 g4400_0 gnd 2.080806f +C2 g4400_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4400_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4400_1 2.224404 +.ends + +.subckt netg6867 g6867_1 g6867_2 g6867_0 gnd +C1 g6867_1 gnd 2.080806f +C2 g6867_2 gnd 2.080806f +C3 g6867_0 gnd 2.080806f +R1 g6867_0 g6867_2 2.224404 +C4 1 gnd 2.080806f +R2 g6867_0 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g6867_1 3 2.224404 +.ends + +.subckt netg5352 g5352_1 g5352_0 gnd +C1 g5352_1 gnd 2.080806f +C2 g5352_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5352_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g5352_1 4 2.224404 +.ends + +.subckt netg973 g973_2 g973_1 g973_0 gnd +C1 g973_2 gnd 2.080806f +C2 g973_1 gnd 2.080806f +C3 g973_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g973_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g973_1 2.224404 +C6 3 gnd 2.080806f +R4 g973_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g973_2 2.224404 +.ends + +.subckt netg4017 g4017_1 g4017_0 gnd +C1 g4017_1 gnd 2.080806f +C2 g4017_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4017_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4017_1 2.224404 +.ends + +.subckt netg3068 g3068_1 g3068_0 gnd +C1 g3068_1 gnd 2.080806f +C2 g3068_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3068_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g3068_1 2.224404 +.ends + +.subckt netg3189 g3189_1 g3189_2 g3189_0 gnd +C1 g3189_1 gnd 2.080806f +C2 g3189_2 gnd 2.080806f +C3 g3189_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3189_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3189_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g3189_1 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3189_2 2.224404 +.ends + +.subckt netg5479 g5479_1 g5479_0 gnd +C1 g5479_1 gnd 2.080806f +C2 g5479_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5479_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g5479_1 4 2.224404 +.ends + +.subckt netg4917 g4917_2 g4917_0 g4917_1 gnd +C1 g4917_2 gnd 2.080806f +C2 g4917_0 gnd 2.080806f +C3 g4917_1 gnd 2.080806f +R1 g4917_0 g4917_1 2.224404 +C4 1 gnd 2.080806f +R2 g4917_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g4917_2 2.224404 +.ends + +.subckt netg5437 g5437_2 g5437_0 g5437_1 gnd +C1 g5437_2 gnd 2.080806f +C2 g5437_0 gnd 2.080806f +C3 g5437_1 gnd 2.080806f +R1 g5437_2 g5437_0 2.224404 +C4 1 gnd 2.080806f +R2 g5437_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5437_1 2.224404 +.ends + +.subckt netg1287 g1287_1 g1287_0 gnd +C1 g1287_1 gnd 2.080806f +C2 g1287_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1287_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g1287_1 2.224404 +.ends + +.subckt netg4429 g4429_0 g4429_2 g4429_1 gnd +C1 g4429_0 gnd 2.080806f +C2 g4429_2 gnd 2.080806f +C3 g4429_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4429_0 1 2.224404 +R2 1 g4429_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g4429_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g4429_2 3 2.224404 +.ends + +.subckt netg1911 g1911_1 g1911_0 gnd +C1 g1911_1 gnd 2.080806f +C2 g1911_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1911_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1911_1 4 2.224404 +.ends + +.subckt netg1150 g1150_1 g1150_0 gnd +C1 g1150_1 gnd 2.080806f +C2 g1150_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1150_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1150_1 4 2.224404 +.ends + +.subckt netg2230 g2230_1 g2230_0 gnd +C1 g2230_1 gnd 2.080806f +C2 g2230_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2230_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2230_1 2.224404 +.ends + +.subckt netg110 g110_0 g110_1 gnd +C1 g110_0 gnd 2.080806f +C2 g110_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g110_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g110_1 4 2.224404 +.ends + +.subckt netg6864 g6864_1 g6864_0 g6864_2 gnd +C1 g6864_1 gnd 2.080806f +C2 g6864_0 gnd 2.080806f +C3 g6864_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6864_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6864_2 2 2.224404 +C6 3 gnd 2.080806f +R4 g6864_2 3 2.224404 +R5 3 g6864_1 2.224404 +.ends + +.subckt netg5900 g5900_0 g5900_1 g5900_2 gnd +C1 g5900_0 gnd 2.080806f +C2 g5900_1 gnd 2.080806f +C3 g5900_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5900_0 2.224404 +R2 1 g5900_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5900_1 3 2.224404 +.ends + +.subckt netg1912 g1912_0 g1912_1 gnd +C1 g1912_0 gnd 2.080806f +C2 g1912_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1912_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1912_1 4 2.224404 +.ends + +.subckt netg2567 g2567_1 g2567_2 g2567_0 gnd +C1 g2567_1 gnd 2.080806f +C2 g2567_2 gnd 2.080806f +C3 g2567_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2567_0 1 2.224404 +R2 g2567_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2567_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g2567_2 3 2.224404 +.ends + +.subckt netg5572 g5572_2 g5572_1 gnd +C1 g5572_2 gnd 2.080806f +C2 g5572_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5572_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g5572_2 2.224404 +.ends + +.subckt netg6350 g6350_0 g6350_1 gnd +C1 g6350_0 gnd 2.080806f +C2 g6350_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6350_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g6350_1 4 2.224404 +.ends + +.subckt netg4193 g4193_2 g4193_1 g4193_0 gnd +C1 g4193_2 gnd 2.080806f +C2 g4193_1 gnd 2.080806f +C3 g4193_0 gnd 2.080806f +R1 g4193_0 g4193_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g4193_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g4193_1 3 2.224404 +.ends + +.subckt netg4778 g4778_2 g4778_0 g4778_1 gnd +C1 g4778_2 gnd 2.080806f +C2 g4778_0 gnd 2.080806f +C3 g4778_1 gnd 2.080806f +R1 g4778_0 g4778_1 2.224404 +C4 1 gnd 2.080806f +R2 g4778_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g4778_2 2.224404 +.ends + +.subckt netg1719 g1719_1 g1719_2 g1719_3 gnd +C1 g1719_1 gnd 2.080806f +C2 g1719_2 gnd 2.080806f +C3 g1719_3 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1719_2 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1719_3 3 2.224404 +R5 g1719_3 g1719_1 2.224404 +.ends + +.subckt netg7287 g7287_1 g7287_0 g7287_2 gnd +C1 g7287_1 gnd 2.080806f +C2 g7287_0 gnd 2.080806f +C3 g7287_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7287_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7287_1 2.224404 +C6 3 gnd 2.080806f +R4 g7287_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g7287_2 2.224404 +.ends + +.subckt netg6407 g6407_1 g6407_0 gnd +C1 g6407_1 gnd 2.080806f +C2 g6407_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6407_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6407_1 2.224404 +.ends + +.subckt netg3522 g3522_1 g3522_0 gnd +C1 g3522_1 gnd 2.080806f +C2 g3522_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3522_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 4 g3522_1 2.224404 +.ends + +.subckt netg5652 g5652_0 g5652_1 g5652_2 gnd +C1 g5652_0 gnd 2.080806f +C2 g5652_1 gnd 2.080806f +C3 g5652_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5652_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5652_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5652_2 2.224404 +R5 g5652_1 3 2.224404 +.ends + +.subckt netg3490 g3490_1 g3490_0 gnd +C1 g3490_1 gnd 2.080806f +C2 g3490_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3490_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g3490_1 2.224404 +.ends + +.subckt netg5749 g5749_0 g5749_2 g5749_1 gnd +C1 g5749_0 gnd 2.080806f +C2 g5749_2 gnd 2.080806f +C3 g5749_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5749_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5749_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5749_1 2.224404 +R5 g5749_2 3 2.224404 +.ends + +.subckt netg2383 g2383_0 g2383_2 g2383_1 gnd +C1 g2383_0 gnd 2.080806f +C2 g2383_2 gnd 2.080806f +C3 g2383_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2383_0 2.224404 +R2 1 g2383_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g2383_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g2383_2 3 2.224404 +.ends + +.subckt netg5631 g5631_1 g5631_0 g5631_2 gnd +C1 g5631_1 gnd 2.080806f +C2 g5631_0 gnd 2.080806f +C3 g5631_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5631_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5631_1 2.224404 +R5 g5631_1 g5631_2 2.224404 +.ends + +.subckt netg4078 g4078_0 g4078_3 g4078_2 g4078_1 gnd +C1 g4078_0 gnd 2.080806f +C2 g4078_3 gnd 2.080806f +C3 g4078_2 gnd 2.080806f +C4 g4078_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4078_0 1 2.224404 +R2 1 g4078_2 2.224404 +C6 2 gnd 2.080806f +R3 g4078_2 2 2.224404 +R4 2 g4078_3 2.224404 +R5 g4078_3 g4078_1 2.224404 +.ends + +.subckt netg7423 g7423_0 g7423_1 gnd +C1 g7423_0 gnd 2.080806f +C2 g7423_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7423_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g7423_1 4 2.224404 +.ends + +.subckt netg4196 g4196_1 g4196_2 gnd +C1 g4196_1 gnd 2.080806f +C2 g4196_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4196_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g4196_2 4 2.224404 +.ends + +.subckt netg3528 g3528_1 g3528_0 gnd +C1 g3528_1 gnd 2.080806f +C2 g3528_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3528_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 4 g3528_1 2.224404 +.ends + +.subckt netg5984 g5984_0 g5984_1 gnd +C1 g5984_0 gnd 2.080806f +C2 g5984_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5984_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g5984_1 4 2.224404 +.ends + +.subckt netg3210 g3210_1 g3210_2 gnd +C1 g3210_1 gnd 2.080806f +C2 g3210_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3210_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g3210_2 4 2.224404 +.ends + +.subckt netg5655 g5655_0 g5655_1 g5655_2 gnd +C1 g5655_0 gnd 2.080806f +C2 g5655_1 gnd 2.080806f +C3 g5655_2 gnd 2.080806f +R1 g5655_2 g5655_0 2.224404 +C4 1 gnd 2.080806f +R2 g5655_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g5655_1 3 2.224404 +.ends + +.subckt netg4074 g4074_3 g4074_1 g4074_2 g4074_0 gnd +C1 g4074_3 gnd 2.080806f +C2 g4074_1 gnd 2.080806f +C3 g4074_2 gnd 2.080806f +C4 g4074_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4074_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4074_2 2 2.224404 +C7 3 gnd 2.080806f +R4 1 3 2.224404 +R5 3 g4074_3 2.224404 +R6 g4074_1 g4074_3 2.224404 +.ends + +.subckt netg5202 g5202_1 g5202_0 g5202_2 gnd +C1 g5202_1 gnd 2.080806f +C2 g5202_0 gnd 2.080806f +C3 g5202_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5202_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g5202_2 3 2.224404 +R5 g5202_1 g5202_2 2.224404 +.ends + +.subckt netg6442 g6442_1 g6442_2 g6442_0 gnd +C1 g6442_1 gnd 2.080806f +C2 g6442_2 gnd 2.080806f +C3 g6442_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6442_0 2.224404 +R2 g6442_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6442_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g6442_1 3 2.224404 +.ends + +.subckt netg3291 g3291_2 g3291_0 g3291_1 gnd +C1 g3291_2 gnd 2.080806f +C2 g3291_0 gnd 2.080806f +C3 g3291_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3291_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3291_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g3291_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g3291_2 4 2.224404 +.ends + +.subckt netg907 g907_2 g907_1 g907_0 gnd +C1 g907_2 gnd 2.080806f +C2 g907_1 gnd 2.080806f +C3 g907_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g907_0 2.224404 +R2 g907_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g907_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 3 g907_2 2.224404 +.ends + +.subckt netg5637 g5637_0 g5637_2 g5637_1 gnd +C1 g5637_0 gnd 2.080806f +C2 g5637_2 gnd 2.080806f +C3 g5637_1 gnd 2.080806f +R1 g5637_0 g5637_2 2.224404 +C4 1 gnd 2.080806f +R2 g5637_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5637_1 2.224404 +.ends + +.subckt netg4232 g4232_1 g4232_0 gnd +C1 g4232_1 gnd 2.080806f +C2 g4232_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4232_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4232_1 2.224404 +.ends + +.subckt netx141 x141_0 x141_1 gnd +C1 x141_0 gnd 2.080806f +C2 x141_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x141_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 x141_1 4 2.224404 +.ends + +.subckt netg4449 g4449_1 g4449_0 gnd +C1 g4449_1 gnd 2.080806f +C2 g4449_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4449_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 4 g4449_1 2.224404 +.ends + +.subckt netg2671 g2671_1 g2671_0 g2671_2 gnd +C1 g2671_1 gnd 2.080806f +C2 g2671_0 gnd 2.080806f +C3 g2671_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2671_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2671_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g2671_1 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g2671_2 2.224404 +.ends + +.subckt netg2365 g2365_0 g2365_2 g2365_1 gnd +C1 g2365_0 gnd 2.080806f +C2 g2365_2 gnd 2.080806f +C3 g2365_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2365_0 2.224404 +R2 1 g2365_1 2.224404 +C5 2 gnd 2.080806f +R3 g2365_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g2365_2 2.224404 +.ends + +.subckt netg5610 g5610_0 g5610_2 g5610_1 gnd +C1 g5610_0 gnd 2.080806f +C2 g5610_2 gnd 2.080806f +C3 g5610_1 gnd 2.080806f +R1 g5610_1 g5610_0 2.224404 +C4 1 gnd 2.080806f +R2 g5610_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5610_2 2.224404 +.ends + +.subckt netg5309 g5309_0 g5309_1 g5309_3 g5309_2 gnd +C1 g5309_0 gnd 2.080806f +C2 g5309_1 gnd 2.080806f +C3 g5309_3 gnd 2.080806f +C4 g5309_2 gnd 2.080806f +R1 g5309_3 g5309_0 2.224404 +R2 g5309_2 g5309_3 2.224404 +C5 1 gnd 2.080806f +R3 g5309_0 1 2.224404 +C6 2 gnd 2.080806f +R4 2 1 2.224404 +C7 3 gnd 2.080806f +R5 2 3 2.224404 +R6 g5309_1 3 2.224404 +.ends + +.subckt netg413 g413_1 g413_2 g413_0 g413_3 g413_4 gnd +C1 g413_1 gnd 2.080806f +C2 g413_2 gnd 2.080806f +C3 g413_0 gnd 2.080806f +C4 g413_3 gnd 2.080806f +C5 g413_4 gnd 2.080806f +R1 g413_1 g413_0 2.224404 +C6 1 gnd 2.080806f +R2 g413_0 1 2.224404 +R3 1 g413_3 2.224404 +C7 2 gnd 2.080806f +R4 2 g413_3 2.224404 +R5 g413_4 2 2.224404 +R6 g413_4 g413_2 2.224404 +.ends + +.subckt netg6880 g6880_1 g6880_0 gnd +C1 g6880_1 gnd 2.080806f +C2 g6880_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6880_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6880_1 2.224404 +.ends + +.subckt netg3432 g3432_1 g3432_0 g3432_2 gnd +C1 g3432_1 gnd 2.080806f +C2 g3432_0 gnd 2.080806f +C3 g3432_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3432_0 1 2.224404 +R2 g3432_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g3432_2 2.224404 +.ends + +.subckt netg4161 g4161_1 g4161_2 g4161_0 gnd +C1 g4161_1 gnd 2.080806f +C2 g4161_2 gnd 2.080806f +C3 g4161_0 gnd 2.080806f +R1 g4161_0 g4161_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g4161_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g4161_1 3 2.224404 +.ends + +.subckt netg3462 g3462_0 g3462_1 g3462_2 gnd +C1 g3462_0 gnd 2.080806f +C2 g3462_1 gnd 2.080806f +C3 g3462_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3462_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3462_1 2.224404 +C6 3 gnd 2.080806f +R4 g3462_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3462_2 2.224404 +.ends + +.subckt netg1575 g1575_1 g1575_0 gnd +C1 g1575_1 gnd 2.080806f +C2 g1575_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1575_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1575_1 4 2.224404 +.ends + +.subckt netg2088 g2088_0 g2088_1 gnd +C1 g2088_0 gnd 2.080806f +C2 g2088_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2088_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g2088_1 4 2.224404 +.ends + +.subckt netg6754 g6754_0 g6754_2 g6754_1 gnd +C1 g6754_0 gnd 2.080806f +C2 g6754_2 gnd 2.080806f +C3 g6754_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6754_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g6754_1 2.224404 +C6 3 gnd 2.080806f +R4 g6754_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g6754_2 2.224404 +.ends + +.subckt netg1529 g1529_1 g1529_0 gnd +C1 g1529_1 gnd 2.080806f +C2 g1529_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1529_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1529_1 2.224404 +.ends + +.subckt netx502 x502_0 x502_1 gnd +C1 x502_0 gnd 2.080806f +C2 x502_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x502_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 x502_1 2.224404 +.ends + +.subckt netg4026 g4026_2 g4026_3 g4026_1 g4026_0 gnd +C1 g4026_2 gnd 2.080806f +C2 g4026_3 gnd 2.080806f +C3 g4026_1 gnd 2.080806f +C4 g4026_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4026_0 1 2.224404 +R2 1 g4026_1 2.224404 +R3 g4026_1 g4026_2 2.224404 +C6 2 gnd 2.080806f +R4 2 g4026_2 2.224404 +C7 3 gnd 2.080806f +R5 2 3 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g4026_3 2.224404 +.ends + +.subckt netg1532 g1532_1 g1532_0 gnd +C1 g1532_1 gnd 2.080806f +C2 g1532_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1532_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1532_1 5 2.224404 +.ends + +.subckt netg1868 g1868_2 g1868_0 gnd +C1 g1868_2 gnd 2.080806f +C2 g1868_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1868_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1868_2 2.224404 +.ends + +.subckt netg7150 g7150_2 g7150_0 g7150_1 gnd +C1 g7150_2 gnd 2.080806f +C2 g7150_0 gnd 2.080806f +C3 g7150_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7150_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7150_2 2.224404 +C6 3 gnd 2.080806f +R4 g7150_2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g7150_1 2.224404 +.ends + +.subckt netg4250 g4250_1 g4250_0 gnd +C1 g4250_1 gnd 2.080806f +C2 g4250_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4250_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g4250_1 2.224404 +.ends + +.subckt netg1762 g1762_2 g1762_1 g1762_0 gnd +C1 g1762_2 gnd 2.080806f +C2 g1762_1 gnd 2.080806f +C3 g1762_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1762_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1762_2 2.224404 +C7 4 gnd 2.080806f +R5 g1762_2 4 2.224404 +R6 g1762_1 4 2.224404 +.ends + +.subckt netg2239 g2239_1 g2239_0 gnd +C1 g2239_1 gnd 2.080806f +C2 g2239_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2239_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2239_1 2.224404 +.ends + +.subckt netg3333 g3333_1 g3333_2 g3333_0 gnd +C1 g3333_1 gnd 2.080806f +C2 g3333_2 gnd 2.080806f +C3 g3333_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3333_0 2.224404 +R2 1 g3333_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g3333_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3333_2 4 2.224404 +.ends + +.subckt netg1364 g1364_1 g1364_0 gnd +C1 g1364_1 gnd 2.080806f +C2 g1364_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1364_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g1364_1 5 2.224404 +.ends + +.subckt netg6075 g6075_2 g6075_0 g6075_3 g6075_1 gnd +C1 g6075_2 gnd 2.080806f +C2 g6075_0 gnd 2.080806f +C3 g6075_3 gnd 2.080806f +C4 g6075_1 gnd 2.080806f +R1 g6075_1 g6075_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g6075_1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +R4 g6075_3 2 2.224404 +C7 3 gnd 2.080806f +R5 3 g6075_3 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +R7 g6075_2 4 2.224404 +.ends + +.subckt netg1896 g1896_1 g1896_0 gnd +C1 g1896_1 gnd 2.080806f +C2 g1896_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1896_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1896_1 5 2.224404 +.ends + +.subckt netg6882 g6882_0 g6882_1 gnd +C1 g6882_0 gnd 2.080806f +C2 g6882_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6882_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g6882_1 2.224404 +.ends + +.subckt netg500 g500_0 g500_1 gnd +C1 g500_0 gnd 2.080806f +C2 g500_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g500_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g500_1 2.224404 +.ends + +.subckt netg5806 g5806_1 g5806_2 g5806_0 gnd +C1 g5806_1 gnd 2.080806f +C2 g5806_2 gnd 2.080806f +C3 g5806_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5806_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5806_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5806_1 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g5806_2 4 2.224404 +.ends + +.subckt netg2647 g2647_2 g2647_1 g2647_0 gnd +C1 g2647_2 gnd 2.080806f +C2 g2647_1 gnd 2.080806f +C3 g2647_0 gnd 2.080806f +R1 g2647_0 g2647_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g2647_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g2647_1 4 2.224404 +.ends + +.subckt netg6618 g6618_0 g6618_1 g6618_2 gnd +C1 g6618_0 gnd 2.080806f +C2 g6618_1 gnd 2.080806f +C3 g6618_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6618_0 1 2.224404 +R2 1 g6618_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6618_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g6618_2 2.224404 +.ends + +.subckt netg6911 g6911_4 g6911_1 g6911_3 g6911_2 g6911_0 gnd +C1 g6911_4 gnd 2.080806f +C2 g6911_1 gnd 2.080806f +C3 g6911_3 gnd 2.080806f +C4 g6911_2 gnd 2.080806f +C5 g6911_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g6911_0 2.224404 +R2 g6911_1 1 2.224404 +C7 2 gnd 2.080806f +R3 2 g6911_0 2.224404 +R4 g6911_4 2 2.224404 +C8 3 gnd 2.080806f +R5 g6911_4 3 2.224404 +C9 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g6911_3 2.224404 +R8 g6911_3 g6911_2 2.224404 +.ends + +.subckt netg2935 g2935_0 g2935_1 gnd +C1 g2935_0 gnd 2.080806f +C2 g2935_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2935_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g2935_1 5 2.224404 +.ends + +.subckt netg4365 g4365_1 g4365_0 g4365_2 gnd +C1 g4365_1 gnd 2.080806f +C2 g4365_0 gnd 2.080806f +C3 g4365_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4365_0 2.224404 +R2 g4365_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4365_2 2.224404 +.ends + +.subckt netg5897 g5897_2 g5897_1 g5897_0 gnd +C1 g5897_2 gnd 2.080806f +C2 g5897_1 gnd 2.080806f +C3 g5897_0 gnd 2.080806f +R1 g5897_1 g5897_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5897_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g5897_2 4 2.224404 +.ends + +.subckt netg7222 g7222_2 g7222_1 g7222_0 gnd +C1 g7222_2 gnd 2.080806f +C2 g7222_1 gnd 2.080806f +C3 g7222_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7222_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 4 g7222_2 2.224404 +R6 g7222_1 g7222_2 2.224404 +.ends + +.subckt netg1496 g1496_1 g1496_0 gnd +C1 g1496_1 gnd 2.080806f +C2 g1496_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1496_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1496_1 5 2.224404 +.ends + +.subckt netg7281 g7281_1 g7281_0 g7281_2 gnd +C1 g7281_1 gnd 2.080806f +C2 g7281_0 gnd 2.080806f +C3 g7281_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7281_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g7281_1 2.224404 +C6 3 gnd 2.080806f +R4 g7281_1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g7281_2 2.224404 +.ends + +.subckt netg2989 g2989_2 g2989_3 g2989_1 g2989_5 g2989_4 g2989_0 gnd +C1 g2989_2 gnd 2.080806f +C2 g2989_3 gnd 2.080806f +C3 g2989_1 gnd 2.080806f +C4 g2989_5 gnd 2.080806f +C5 g2989_4 gnd 2.080806f +C6 g2989_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2989_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2989_2 2.224404 +C9 3 gnd 2.080806f +R4 g2989_2 3 2.224404 +R5 3 g2989_3 2.224404 +R6 g2989_1 g2989_3 2.224404 +R7 g2989_3 g2989_4 2.224404 +C10 4 gnd 2.080806f +R8 4 g2989_1 2.224404 +R9 4 g2989_5 2.224404 +.ends + +.subckt netg2081 g2081_0 g2081_3 g2081_2 g2081_1 g2081_5 g2081_6 g2081_4 gnd +C1 g2081_0 gnd 2.080806f +C2 g2081_3 gnd 2.080806f +C3 g2081_2 gnd 2.080806f +C4 g2081_1 gnd 2.080806f +C5 g2081_5 gnd 2.080806f +C6 g2081_6 gnd 2.080806f +C7 g2081_4 gnd 2.080806f +R1 g2081_5 g2081_0 2.224404 +C8 1 gnd 2.080806f +R2 g2081_0 1 2.224404 +R3 g2081_3 1 2.224404 +R4 g2081_3 g2081_6 2.224404 +R5 g2081_6 g2081_4 2.224404 +C9 2 gnd 2.080806f +R6 2 g2081_0 2.224404 +R7 g2081_2 2 2.224404 +C10 3 gnd 2.080806f +R8 3 g2081_3 2.224404 +R9 g2081_1 3 2.224404 +.ends + +.subckt netg7318 g7318_2 g7318_1 gnd +C1 g7318_2 gnd 2.080806f +C2 g7318_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7318_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g7318_2 5 2.224404 +.ends + +.subckt netg1506 g1506_0 g1506_1 gnd +C1 g1506_0 gnd 2.080806f +C2 g1506_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1506_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1506_1 2.224404 +.ends + +.subckt netg1590 g1590_1 g1590_0 gnd +C1 g1590_1 gnd 2.080806f +C2 g1590_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1590_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 5 g1590_1 2.224404 +.ends + +.subckt netg4767 g4767_2 g4767_0 g4767_1 g4767_3 gnd +C1 g4767_2 gnd 2.080806f +C2 g4767_0 gnd 2.080806f +C3 g4767_1 gnd 2.080806f +C4 g4767_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4767_0 2.224404 +R2 g4767_2 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g4767_2 2.224404 +R4 g4767_1 2 2.224404 +C7 3 gnd 2.080806f +R5 g4767_1 3 2.224404 +R6 g4767_3 3 2.224404 +.ends + +.subckt netg4113 g4113_2 g4113_3 g4113_1 g4113_0 gnd +C1 g4113_2 gnd 2.080806f +C2 g4113_3 gnd 2.080806f +C3 g4113_1 gnd 2.080806f +C4 g4113_0 gnd 2.080806f +R1 g4113_1 g4113_0 2.224404 +C5 1 gnd 2.080806f +R2 g4113_0 1 2.224404 +R3 1 g4113_3 2.224404 +C6 2 gnd 2.080806f +R4 2 g4113_3 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +R7 g4113_2 4 2.224404 +.ends + +.subckt netg4392 g4392_2 g4392_0 g4392_1 gnd +C1 g4392_2 gnd 2.080806f +C2 g4392_0 gnd 2.080806f +C3 g4392_1 gnd 2.080806f +R1 g4392_1 g4392_0 2.224404 +C4 1 gnd 2.080806f +R2 g4392_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4392_2 2.224404 +.ends + +.subckt netg1399 g1399_0 g1399_1 gnd +C1 g1399_0 gnd 2.080806f +C2 g1399_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1399_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1399_1 2.224404 +.ends + +.subckt netg1910 g1910_0 g1910_1 gnd +C1 g1910_0 gnd 2.080806f +C2 g1910_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1910_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1910_1 2.224404 +.ends + +.subckt netx161 x161_0 x161_1 gnd +C1 x161_0 gnd 2.080806f +C2 x161_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x161_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 x161_1 2.224404 +.ends + +.subckt netg5820 g5820_2 g5820_1 g5820_0 g5820_3 gnd +C1 g5820_2 gnd 2.080806f +C2 g5820_1 gnd 2.080806f +C3 g5820_0 gnd 2.080806f +C4 g5820_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g5820_0 1 2.224404 +R2 g5820_1 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g5820_0 2.224404 +R4 g5820_3 2 2.224404 +C7 3 gnd 2.080806f +R5 g5820_1 3 2.224404 +R6 g5820_2 3 2.224404 +.ends + +.subckt netg1588 g1588_0 g1588_1 gnd +C1 g1588_0 gnd 2.080806f +C2 g1588_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1588_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1588_1 5 2.224404 +.ends + +.subckt netg3961 g3961_3 g3961_2 g3961_0 g3961_1 gnd +C1 g3961_3 gnd 2.080806f +C2 g3961_2 gnd 2.080806f +C3 g3961_0 gnd 2.080806f +C4 g3961_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3961_0 1 2.224404 +R2 1 g3961_2 2.224404 +C6 2 gnd 2.080806f +R3 g3961_2 2 2.224404 +R4 2 g3961_3 2.224404 +C7 3 gnd 2.080806f +R5 3 g3961_3 2.224404 +R6 g3961_1 3 2.224404 +.ends + +.subckt netg2019 g2019_3 g2019_1 g2019_0 gnd +C1 g2019_3 gnd 2.080806f +C2 g2019_1 gnd 2.080806f +C3 g2019_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2019_0 1 2.224404 +R2 1 g2019_3 2.224404 +C5 2 gnd 2.080806f +R3 g2019_3 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g2019_1 2.224404 +.ends + +.subckt netg4210 g4210_2 g4210_0 gnd +C1 g4210_2 gnd 2.080806f +C2 g4210_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4210_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g4210_2 5 2.224404 +.ends + +.subckt netg3195 g3195_2 g3195_0 g3195_1 gnd +C1 g3195_2 gnd 2.080806f +C2 g3195_0 gnd 2.080806f +C3 g3195_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3195_0 2.224404 +R2 g3195_2 1 2.224404 +C5 2 gnd 2.080806f +R3 g3195_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3195_1 2.224404 +.ends + +.subckt netg6475 g6475_1 g6475_2 gnd +C1 g6475_1 gnd 2.080806f +C2 g6475_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6475_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g6475_1 2.224404 +.ends + +.subckt netg6304 g6304_0 g6304_2 g6304_1 gnd +C1 g6304_0 gnd 2.080806f +C2 g6304_2 gnd 2.080806f +C3 g6304_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6304_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g6304_1 4 2.224404 +R6 g6304_2 g6304_1 2.224404 +.ends + +.subckt netg3174 g3174_0 g3174_2 g3174_1 gnd +C1 g3174_0 gnd 2.080806f +C2 g3174_2 gnd 2.080806f +C3 g3174_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3174_0 2.224404 +R2 g3174_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g3174_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3174_2 4 2.224404 +.ends + +.subckt netg109 g109_0 g109_1 gnd +C1 g109_0 gnd 2.080806f +C2 g109_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g109_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g109_1 5 2.224404 +.ends + +.subckt netg4653 g4653_3 g4653_2 g4653_1 g4653_0 gnd +C1 g4653_3 gnd 2.080806f +C2 g4653_2 gnd 2.080806f +C3 g4653_1 gnd 2.080806f +C4 g4653_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4653_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4653_3 2.224404 +R4 g4653_3 g4653_2 2.224404 +C7 3 gnd 2.080806f +R5 g4653_2 3 2.224404 +R6 3 g4653_1 2.224404 +.ends + +.subckt netg6438 g6438_0 g6438_1 gnd +C1 g6438_0 gnd 2.080806f +C2 g6438_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6438_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g6438_1 2.224404 +.ends + +.subckt netg561 g561_4 g561_0 g561_3 g561_1 g561_2 gnd +C1 g561_4 gnd 2.080806f +C2 g561_0 gnd 2.080806f +C3 g561_3 gnd 2.080806f +C4 g561_1 gnd 2.080806f +C5 g561_2 gnd 2.080806f +R1 g561_3 g561_0 2.224404 +R2 g561_2 g561_3 2.224404 +C6 1 gnd 2.080806f +R3 g561_0 1 2.224404 +C7 2 gnd 2.080806f +R4 1 2 2.224404 +R5 2 g561_4 2.224404 +R6 g561_4 g561_1 2.224404 +.ends + +.subckt netg4760 g4760_1 g4760_3 g4760_2 g4760_0 gnd +C1 g4760_1 gnd 2.080806f +C2 g4760_3 gnd 2.080806f +C3 g4760_2 gnd 2.080806f +C4 g4760_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4760_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g4760_1 2 2.224404 +R4 2 g4760_2 2.224404 +C7 3 gnd 2.080806f +R5 3 g4760_1 2.224404 +R6 g4760_3 3 2.224404 +.ends + +.subckt netg1400 g1400_1 g1400_0 gnd +C1 g1400_1 gnd 2.080806f +C2 g1400_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1400_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1400_1 2.224404 +.ends + +.subckt netg1559 g1559_5 g1559_4 g1559_2 g1559_0 g1559_1 g1559_3 gnd +C1 g1559_5 gnd 2.080806f +C2 g1559_4 gnd 2.080806f +C3 g1559_2 gnd 2.080806f +C4 g1559_0 gnd 2.080806f +C5 g1559_1 gnd 2.080806f +C6 g1559_3 gnd 2.080806f +R1 g1559_0 g1559_3 2.224404 +R2 g1559_5 g1559_0 2.224404 +C7 1 gnd 2.080806f +R3 g1559_0 1 2.224404 +C8 2 gnd 2.080806f +R4 1 2 2.224404 +R5 2 g1559_1 2.224404 +R6 g1559_1 g1559_4 2.224404 +C9 3 gnd 2.080806f +R7 3 g1559_4 2.224404 +R8 3 g1559_2 2.224404 +.ends + +.subckt netx191 x191_1 x191_0 gnd +C1 x191_1 gnd 2.080806f +C2 x191_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x191_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 x191_1 5 2.224404 +.ends + +.subckt netx372 x372_0 x372_1 gnd +C1 x372_0 gnd 2.080806f +C2 x372_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x372_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 x372_1 5 2.224404 +.ends + +.subckt netg4456 g4456_4 g4456_6 g4456_5 g4456_2 g4456_1 g4456_3 g4456_0 gnd +C1 g4456_4 gnd 2.080806f +C2 g4456_6 gnd 2.080806f +C3 g4456_5 gnd 2.080806f +C4 g4456_2 gnd 2.080806f +C5 g4456_1 gnd 2.080806f +C6 g4456_3 gnd 2.080806f +C7 g4456_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g4456_0 2.224404 +R2 g4456_1 1 2.224404 +R3 g4456_6 1 2.224404 +C9 2 gnd 2.080806f +R4 2 g4456_1 2.224404 +C10 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g4456_3 3 2.224404 +R7 g4456_2 g4456_3 2.224404 +R8 g4456_2 g4456_4 2.224404 +C11 4 gnd 2.080806f +R9 g4456_3 4 2.224404 +R10 4 g4456_5 2.224404 +.ends + +.subckt netx431 x431_0 x431_1 gnd +C1 x431_0 gnd 2.080806f +C2 x431_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x431_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 x431_1 5 2.224404 +.ends + +.subckt netg3484 g3484_0 g3484_1 gnd +C1 g3484_0 gnd 2.080806f +C2 g3484_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3484_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g3484_1 5 2.224404 +.ends + +.subckt netg4630 g4630_0 g4630_3 g4630_1 g4630_4 g4630_2 gnd +C1 g4630_0 gnd 2.080806f +C2 g4630_3 gnd 2.080806f +C3 g4630_1 gnd 2.080806f +C4 g4630_4 gnd 2.080806f +C5 g4630_2 gnd 2.080806f +R1 g4630_0 g4630_3 2.224404 +R2 g4630_2 g4630_3 2.224404 +C6 1 gnd 2.080806f +R3 g4630_2 1 2.224404 +C7 2 gnd 2.080806f +R4 1 2 2.224404 +C8 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g4630_4 2.224404 +R7 g4630_4 g4630_1 2.224404 +.ends + +.subckt netg1503 g1503_1 g1503_0 gnd +C1 g1503_1 gnd 2.080806f +C2 g1503_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1503_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g1503_1 5 2.224404 +.ends + +.subckt netg5939 g5939_1 g5939_2 g5939_0 gnd +C1 g5939_1 gnd 2.080806f +C2 g5939_2 gnd 2.080806f +C3 g5939_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5939_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5939_1 2.224404 +C7 4 gnd 2.080806f +R5 4 2 2.224404 +R6 g5939_2 4 2.224404 +.ends + +.subckt netg785 g785_6 g785_2 g785_3 g785_0 g785_5 g785_4 gnd +C1 g785_6 gnd 2.080806f +C2 g785_2 gnd 2.080806f +C3 g785_3 gnd 2.080806f +C4 g785_0 gnd 2.080806f +C5 g785_5 gnd 2.080806f +C6 g785_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g785_0 1 2.224404 +R2 1 g785_5 2.224404 +C8 2 gnd 2.080806f +R3 2 g785_0 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g785_4 3 2.224404 +R6 g785_2 g785_4 2.224404 +C10 4 gnd 2.080806f +R7 g785_4 4 2.224404 +R8 4 g785_3 2.224404 +R9 g785_6 g785_3 2.224404 +.ends + +.subckt netg5971 g5971_1 g5971_0 gnd +C1 g5971_1 gnd 2.080806f +C2 g5971_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5971_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g5971_1 2.224404 +.ends + +.subckt netg4146 g4146_0 g4146_1 g4146_2 gnd +C1 g4146_0 gnd 2.080806f +C2 g4146_1 gnd 2.080806f +C3 g4146_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4146_0 1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g4146_2 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g4146_2 2.224404 +R6 g4146_1 4 2.224404 +.ends + +.subckt netg3144 g3144_2 g3144_1 g3144_0 gnd +C1 g3144_2 gnd 2.080806f +C2 g3144_1 gnd 2.080806f +C3 g3144_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3144_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3144_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g3144_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3144_2 2.224404 +.ends + +.subckt netg1543 g1543_5 g1543_0 g1543_2 g1543_4 g1543_3 g1543_1 gnd +C1 g1543_5 gnd 2.080806f +C2 g1543_0 gnd 2.080806f +C3 g1543_2 gnd 2.080806f +C4 g1543_4 gnd 2.080806f +C5 g1543_3 gnd 2.080806f +C6 g1543_1 gnd 2.080806f +R1 g1543_0 g1543_5 2.224404 +C7 1 gnd 2.080806f +R2 g1543_5 1 2.224404 +R3 1 g1543_3 2.224404 +R4 g1543_3 g1543_2 2.224404 +C8 2 gnd 2.080806f +R5 g1543_5 2 2.224404 +R6 2 g1543_4 2.224404 +C9 3 gnd 2.080806f +R7 3 g1543_3 2.224404 +R8 g1543_1 3 2.224404 +.ends + +.subckt netg1323 g1323_6 g1323_1 g1323_4 g1323_5 g1323_3 gnd +C1 g1323_6 gnd 2.080806f +C2 g1323_1 gnd 2.080806f +C3 g1323_4 gnd 2.080806f +C4 g1323_5 gnd 2.080806f +C5 g1323_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g1323_1 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1323_4 2.224404 +R4 g1323_4 g1323_6 2.224404 +R5 g1323_6 g1323_3 2.224404 +R6 g1323_5 g1323_6 2.224404 +.ends + +.subckt netg7549 g7549_1 g7549_0 gnd +C1 g7549_1 gnd 2.080806f +C2 g7549_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7549_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g7549_1 2.224404 +.ends + +.subckt netg6840 g6840_2 g6840_0 g6840_1 gnd +C1 g6840_2 gnd 2.080806f +C2 g6840_0 gnd 2.080806f +C3 g6840_1 gnd 2.080806f +R1 g6840_0 g6840_1 2.224404 +C4 1 gnd 2.080806f +R2 g6840_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g6840_2 2.224404 +.ends + +.subckt netg6284 g6284_1 g6284_0 g6284_2 gnd +C1 g6284_1 gnd 2.080806f +C2 g6284_0 gnd 2.080806f +C3 g6284_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6284_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6284_1 2.224404 +R6 g6284_1 g6284_2 2.224404 +.ends + +.subckt netg4383 g4383_2 g4383_1 g4383_0 gnd +C1 g4383_2 gnd 2.080806f +C2 g4383_1 gnd 2.080806f +C3 g4383_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4383_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4383_2 2.224404 +C7 4 gnd 2.080806f +R5 4 g4383_2 2.224404 +R6 g4383_1 4 2.224404 +.ends + +.subckt netg5933 g5933_1 g5933_2 gnd +C1 g5933_1 gnd 2.080806f +C2 g5933_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5933_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g5933_1 5 2.224404 +.ends + +.subckt netg1537 g1537_1 g1537_4 g1537_2 g1537_5 g1537_3 g1537_0 gnd +C1 g1537_1 gnd 2.080806f +C2 g1537_4 gnd 2.080806f +C3 g1537_2 gnd 2.080806f +C4 g1537_5 gnd 2.080806f +C5 g1537_3 gnd 2.080806f +C6 g1537_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1537_0 1 2.224404 +R2 1 g1537_3 2.224404 +R3 g1537_3 g1537_4 2.224404 +C8 2 gnd 2.080806f +R4 2 g1537_4 2.224404 +R5 g1537_1 2 2.224404 +R6 g1537_1 g1537_2 2.224404 +C9 3 gnd 2.080806f +R7 3 g1537_1 2.224404 +R8 g1537_5 3 2.224404 +.ends + +.subckt netg4750 g4750_2 g4750_0 g4750_1 gnd +C1 g4750_2 gnd 2.080806f +C2 g4750_0 gnd 2.080806f +C3 g4750_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4750_0 1 2.224404 +R2 1 g4750_2 2.224404 +C5 2 gnd 2.080806f +R3 2 g4750_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g4750_1 4 2.224404 +.ends + +.subckt netg7141 g7141_0 g7141_2 g7141_1 gnd +C1 g7141_0 gnd 2.080806f +C2 g7141_2 gnd 2.080806f +C3 g7141_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7141_0 2.224404 +R2 g7141_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g7141_0 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g7141_1 2.224404 +.ends + +.subckt netg5122 g5122_2 g5122_1 g5122_0 gnd +C1 g5122_2 gnd 2.080806f +C2 g5122_1 gnd 2.080806f +C3 g5122_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5122_0 1 2.224404 +R2 1 g5122_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5122_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g5122_2 4 2.224404 +.ends + +.subckt netg3201 g3201_2 g3201_0 g3201_1 gnd +C1 g3201_2 gnd 2.080806f +C2 g3201_0 gnd 2.080806f +C3 g3201_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3201_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3201_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g3201_1 2.224404 +R6 g3201_2 4 2.224404 +.ends + +.subckt netg1493 g1493_0 g1493_1 gnd +C1 g1493_0 gnd 2.080806f +C2 g1493_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1493_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1493_1 2.224404 +.ends + +.subckt netg6322 g6322_3 g6322_1 g6322_0 g6322_2 gnd +C1 g6322_3 gnd 2.080806f +C2 g6322_1 gnd 2.080806f +C3 g6322_0 gnd 2.080806f +C4 g6322_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6322_0 1 2.224404 +R2 1 g6322_1 2.224404 +R3 g6322_1 g6322_3 2.224404 +C6 2 gnd 2.080806f +R4 g6322_1 2 2.224404 +C7 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g6322_2 2.224404 +.ends + +.subckt netg5459 g5459_2 g5459_1 g5459_0 gnd +C1 g5459_2 gnd 2.080806f +C2 g5459_1 gnd 2.080806f +C3 g5459_0 gnd 2.080806f +R1 g5459_0 g5459_1 2.224404 +C4 1 gnd 2.080806f +R2 g5459_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g5459_2 2.224404 +.ends + +.subckt netg5795 g5795_0 g5795_1 g5795_2 g5795_3 gnd +C1 g5795_0 gnd 2.080806f +C2 g5795_1 gnd 2.080806f +C3 g5795_2 gnd 2.080806f +C4 g5795_3 gnd 2.080806f +R1 g5795_2 g5795_0 2.224404 +C5 1 gnd 2.080806f +R2 g5795_2 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g5795_3 2.224404 +C7 3 gnd 2.080806f +R5 g5795_3 3 2.224404 +R6 3 g5795_1 2.224404 +.ends + +.subckt netg6491 g6491_1 g6491_2 gnd +C1 g6491_1 gnd 2.080806f +C2 g6491_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6491_1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g6491_2 2.224404 +.ends + +.subckt netg3971 g3971_1 g3971_0 gnd +C1 g3971_1 gnd 2.080806f +C2 g3971_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3971_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g3971_1 5 2.224404 +.ends + +.subckt netg1153 g1153_1 g1153_0 gnd +C1 g1153_1 gnd 2.080806f +C2 g1153_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1153_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1153_1 2.224404 +.ends + +.subckt netg1499 g1499_0 g1499_1 gnd +C1 g1499_0 gnd 2.080806f +C2 g1499_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1499_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1499_1 2.224404 +.ends + +.subckt netg6919 g6919_0 g6919_1 gnd +C1 g6919_0 gnd 2.080806f +C2 g6919_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6919_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g6919_1 5 2.224404 +.ends + +.subckt netg2456 g2456_1 g2456_2 gnd +C1 g2456_1 gnd 2.080806f +C2 g2456_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2456_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2456_1 2.224404 +.ends + +.subckt netg4949 g4949_3 g4949_0 g4949_1 g4949_2 gnd +C1 g4949_3 gnd 2.080806f +C2 g4949_0 gnd 2.080806f +C3 g4949_1 gnd 2.080806f +C4 g4949_2 gnd 2.080806f +R1 g4949_2 g4949_0 2.224404 +C5 1 gnd 2.080806f +R2 g4949_0 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g4949_3 2.224404 +C7 3 gnd 2.080806f +R5 g4949_3 3 2.224404 +R6 3 g4949_1 2.224404 +.ends + +.subckt netg3153 g3153_0 g3153_2 gnd +C1 g3153_0 gnd 2.080806f +C2 g3153_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3153_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g3153_2 5 2.224404 +.ends + +.subckt netg2585 g2585_1 g2585_0 g2585_2 gnd +C1 g2585_1 gnd 2.080806f +C2 g2585_0 gnd 2.080806f +C3 g2585_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2585_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2585_1 2.224404 +C7 4 gnd 2.080806f +R5 g2585_1 4 2.224404 +R6 4 g2585_2 2.224404 +.ends + +.subckt netg5177 g5177_1 g5177_0 gnd +C1 g5177_1 gnd 2.080806f +C2 g5177_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5177_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g5177_1 2.224404 +.ends + +.subckt netg3938 g3938_4 g3938_0 g3938_1 g3938_3 g3938_2 gnd +C1 g3938_4 gnd 2.080806f +C2 g3938_0 gnd 2.080806f +C3 g3938_1 gnd 2.080806f +C4 g3938_3 gnd 2.080806f +C5 g3938_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g3938_0 1 2.224404 +R2 1 g3938_1 2.224404 +R3 g3938_1 g3938_2 2.224404 +C7 2 gnd 2.080806f +R4 2 g3938_1 2.224404 +R5 g3938_4 2 2.224404 +C8 3 gnd 2.080806f +R6 3 g3938_4 2.224404 +R7 3 g3938_3 2.224404 +.ends + +.subckt netg1848 g1848_0 g1848_1 g1848_3 g1848_2 gnd +C1 g1848_0 gnd 2.080806f +C2 g1848_1 gnd 2.080806f +C3 g1848_3 gnd 2.080806f +C4 g1848_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1848_0 2.224404 +R2 g1848_2 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g1848_2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1848_1 2.224404 +R6 g1848_3 3 2.224404 +.ends + +.subckt netg5217 g5217_2 g5217_0 gnd +C1 g5217_2 gnd 2.080806f +C2 g5217_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5217_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g5217_2 2.224404 +.ends + +.subckt netg2223 g2223_1 g2223_0 gnd +C1 g2223_1 gnd 2.080806f +C2 g2223_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2223_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2223_1 2.224404 +.ends + +.subckt netg6628 g6628_1 g6628_2 g6628_0 gnd +C1 g6628_1 gnd 2.080806f +C2 g6628_2 gnd 2.080806f +C3 g6628_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6628_0 1 2.224404 +R2 1 g6628_2 2.224404 +C5 2 gnd 2.080806f +R3 g6628_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g6628_1 4 2.224404 +.ends + +.subckt netg4660 g4660_1 g4660_0 gnd +C1 g4660_1 gnd 2.080806f +C2 g4660_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4660_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g4660_1 2.224404 +.ends + +.subckt netg1961 g1961_3 g1961_1 g1961_0 g1961_2 gnd +C1 g1961_3 gnd 2.080806f +C2 g1961_1 gnd 2.080806f +C3 g1961_0 gnd 2.080806f +C4 g1961_2 gnd 2.080806f +R1 g1961_1 g1961_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g1961_1 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g1961_3 2 2.224404 +C7 3 gnd 2.080806f +R5 3 g1961_3 2.224404 +R6 g1961_2 3 2.224404 +.ends + +.subckt netg2004 g2004_1 g2004_3 g2004_0 g2004_2 gnd +C1 g2004_1 gnd 2.080806f +C2 g2004_3 gnd 2.080806f +C3 g2004_0 gnd 2.080806f +C4 g2004_2 gnd 2.080806f +R1 g2004_1 g2004_0 2.224404 +R2 g2004_3 g2004_1 2.224404 +C5 1 gnd 2.080806f +R3 1 g2004_3 2.224404 +C6 2 gnd 2.080806f +R4 2 1 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g2004_2 3 2.224404 +.ends + +.subckt netg1423 g1423_1 g1423_0 g1423_4 g1423_3 g1423_2 gnd +C1 g1423_1 gnd 2.080806f +C2 g1423_0 gnd 2.080806f +C3 g1423_4 gnd 2.080806f +C4 g1423_3 gnd 2.080806f +C5 g1423_2 gnd 2.080806f +R1 g1423_2 g1423_0 2.224404 +C6 1 gnd 2.080806f +R2 1 g1423_0 2.224404 +R3 g1423_3 1 2.224404 +C7 2 gnd 2.080806f +R4 2 g1423_2 2.224404 +R5 g1423_4 2 2.224404 +C8 3 gnd 2.080806f +R6 3 g1423_4 2.224404 +C9 4 gnd 2.080806f +R7 4 3 2.224404 +R8 g1423_1 4 2.224404 +.ends + +.subckt netg5388 g5388_2 g5388_1 g5388_0 gnd +C1 g5388_2 gnd 2.080806f +C2 g5388_1 gnd 2.080806f +C3 g5388_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5388_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g5388_2 2.224404 +R6 g5388_2 g5388_1 2.224404 +.ends + +.subckt netg5974 g5974_0 g5974_1 g5974_2 gnd +C1 g5974_0 gnd 2.080806f +C2 g5974_1 gnd 2.080806f +C3 g5974_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5974_0 2.224404 +R2 g5974_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5974_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g5974_1 4 2.224404 +.ends + +.subckt netx462 x462_0 x462_1 gnd +C1 x462_0 gnd 2.080806f +C2 x462_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x462_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +R6 x462_1 5 2.224404 +.ends + +.subckt netg780 g780_3 g780_1 g780_2 g780_0 g780_4 gnd +C1 g780_3 gnd 2.080806f +C2 g780_1 gnd 2.080806f +C3 g780_2 gnd 2.080806f +C4 g780_0 gnd 2.080806f +C5 g780_4 gnd 2.080806f +R1 g780_0 g780_3 2.224404 +C6 1 gnd 2.080806f +R2 1 g780_3 2.224404 +R3 1 g780_2 2.224404 +C7 2 gnd 2.080806f +R4 2 1 2.224404 +R5 g780_1 2 2.224404 +C8 3 gnd 2.080806f +R6 3 g780_1 2.224404 +R7 3 g780_4 2.224404 +.ends + +.subckt netg7048 g7048_2 g7048_1 g7048_0 gnd +C1 g7048_2 gnd 2.080806f +C2 g7048_1 gnd 2.080806f +C3 g7048_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7048_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g7048_1 4 2.224404 +R6 4 g7048_2 2.224404 +.ends + +.subckt netg7030 g7030_1 g7030_2 gnd +C1 g7030_1 gnd 2.080806f +C2 g7030_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7030_1 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g7030_2 5 2.224404 +.ends + +.subckt netg6559 g6559_1 g6559_0 gnd +C1 g6559_1 gnd 2.080806f +C2 g6559_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6559_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g6559_1 5 2.224404 +.ends + +.subckt netg3698 g3698_3 g3698_0 g3698_2 g3698_1 gnd +C1 g3698_3 gnd 2.080806f +C2 g3698_0 gnd 2.080806f +C3 g3698_2 gnd 2.080806f +C4 g3698_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g3698_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3698_2 2 2.224404 +C7 3 gnd 2.080806f +R4 g3698_2 3 2.224404 +R5 3 g3698_3 2.224404 +C8 4 gnd 2.080806f +R6 g3698_3 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g3698_1 2.224404 +.ends + +.subckt netg4960 g4960_3 g4960_0 g4960_2 g4960_1 gnd +C1 g4960_3 gnd 2.080806f +C2 g4960_0 gnd 2.080806f +C3 g4960_2 gnd 2.080806f +C4 g4960_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4960_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4960_3 2.224404 +R5 g4960_3 g4960_1 2.224404 +R6 g4960_1 g4960_2 2.224404 +.ends + +.subckt netg4775 g4775_1 g4775_0 g4775_2 gnd +C1 g4775_1 gnd 2.080806f +C2 g4775_0 gnd 2.080806f +C3 g4775_2 gnd 2.080806f +R1 g4775_0 g4775_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g4775_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g4775_2 4 2.224404 +.ends + +.subckt netg7378 g7378_1 g7378_0 g7378_2 gnd +C1 g7378_1 gnd 2.080806f +C2 g7378_0 gnd 2.080806f +C3 g7378_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7378_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g7378_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g7378_1 2.224404 +R6 g7378_2 4 2.224404 +.ends + +.subckt netg4006 g4006_1 g4006_0 gnd +C1 g4006_1 gnd 2.080806f +C2 g4006_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4006_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g4006_1 5 2.224404 +.ends + +.subckt netg1206 g1206_2 g1206_4 g1206_3 g1206_1 g1206_0 g1206_5 gnd +C1 g1206_2 gnd 2.080806f +C2 g1206_4 gnd 2.080806f +C3 g1206_3 gnd 2.080806f +C4 g1206_1 gnd 2.080806f +C5 g1206_0 gnd 2.080806f +C6 g1206_5 gnd 2.080806f +R1 g1206_0 g1206_3 2.224404 +R2 g1206_3 g1206_5 2.224404 +R3 g1206_5 g1206_1 2.224404 +C7 1 gnd 2.080806f +R4 g1206_1 1 2.224404 +R5 1 g1206_4 2.224404 +R6 g1206_4 g1206_2 2.224404 +.ends + +.subckt netx31 x31_1 x31_0 gnd +C1 x31_1 gnd 2.080806f +C2 x31_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x31_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 x31_1 2.224404 +.ends + +.subckt netg4386 g4386_2 g4386_0 g4386_1 gnd +C1 g4386_2 gnd 2.080806f +C2 g4386_0 gnd 2.080806f +C3 g4386_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4386_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g4386_1 2.224404 +C8 5 gnd 2.080806f +R6 5 3 2.224404 +R7 g4386_2 5 2.224404 +.ends + +.subckt netg7420 g7420_0 g7420_1 gnd +C1 g7420_0 gnd 2.080806f +C2 g7420_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7420_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g7420_1 2.224404 +.ends + +.subckt netg3999 g3999_3 g3999_1 g3999_2 g3999_0 gnd +C1 g3999_3 gnd 2.080806f +C2 g3999_1 gnd 2.080806f +C3 g3999_2 gnd 2.080806f +C4 g3999_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3999_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3999_1 2.224404 +C7 3 gnd 2.080806f +R4 g3999_0 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g3999_2 2.224404 +R8 5 g3999_3 2.224404 +.ends + +.subckt netg5713 g5713_1 g5713_0 g5713_2 gnd +C1 g5713_1 gnd 2.080806f +C2 g5713_0 gnd 2.080806f +C3 g5713_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5713_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5713_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g5713_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g5713_2 2.224404 +.ends + +.subckt netg1289 g1289_3 g1289_2 g1289_5 g1289_1 g1289_4 gnd +C1 g1289_3 gnd 2.080806f +C2 g1289_2 gnd 2.080806f +C3 g1289_5 gnd 2.080806f +C4 g1289_1 gnd 2.080806f +C5 g1289_4 gnd 2.080806f +R1 g1289_3 g1289_2 2.224404 +R2 g1289_1 g1289_2 2.224404 +C6 1 gnd 2.080806f +R3 1 g1289_3 2.224404 +C7 2 gnd 2.080806f +R4 2 1 2.224404 +R5 g1289_5 2 2.224404 +C8 3 gnd 2.080806f +R6 3 g1289_5 2.224404 +C9 4 gnd 2.080806f +R7 4 3 2.224404 +R8 g1289_4 4 2.224404 +.ends + +.subckt netg7315 g7315_2 g7315_0 gnd +C1 g7315_2 gnd 2.080806f +C2 g7315_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7315_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g7315_2 6 2.224404 +.ends + +.subckt netg95 g95_1 g95_0 gnd +C1 g95_1 gnd 2.080806f +C2 g95_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g95_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g95_1 6 2.224404 +.ends + +.subckt netg6263 g6263_0 g6263_2 g6263_1 gnd +C1 g6263_0 gnd 2.080806f +C2 g6263_2 gnd 2.080806f +C3 g6263_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6263_0 2.224404 +R2 g6263_2 1 2.224404 +C5 2 gnd 2.080806f +R3 g6263_0 2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 g6263_1 6 2.224404 +.ends + +.subckt netg5680 g5680_2 g5680_1 g5680_0 gnd +C1 g5680_2 gnd 2.080806f +C2 g5680_1 gnd 2.080806f +C3 g5680_0 gnd 2.080806f +R1 g5680_1 g5680_0 2.224404 +C4 1 gnd 2.080806f +R2 g5680_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g5680_2 2.224404 +.ends + +.subckt netg3330 g3330_2 g3330_0 g3330_1 gnd +C1 g3330_2 gnd 2.080806f +C2 g3330_0 gnd 2.080806f +C3 g3330_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3330_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3330_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 2 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g3330_2 5 2.224404 +.ends + +.subckt netg1716 g1716_2 g1716_0 g1716_1 gnd +C1 g1716_2 gnd 2.080806f +C2 g1716_0 gnd 2.080806f +C3 g1716_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1716_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1716_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g1716_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g1716_1 5 2.224404 +.ends + +.subckt netg6881 g6881_0 g6881_1 gnd +C1 g6881_0 gnd 2.080806f +C2 g6881_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6881_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g6881_1 2.224404 +.ends + +.subckt netg3491 g3491_0 g3491_1 gnd +C1 g3491_0 gnd 2.080806f +C2 g3491_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3491_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g3491_1 2.224404 +.ends + +.subckt netg3053 g3053_1 g3053_0 gnd +C1 g3053_1 gnd 2.080806f +C2 g3053_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3053_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g3053_1 2.224404 +.ends + +.subckt netg3705 g3705_2 g3705_0 g3705_3 g3705_1 gnd +C1 g3705_2 gnd 2.080806f +C2 g3705_0 gnd 2.080806f +C3 g3705_3 gnd 2.080806f +C4 g3705_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3705_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3705_3 2.224404 +C7 3 gnd 2.080806f +R4 g3705_3 3 2.224404 +R5 3 g3705_1 2.224404 +C8 4 gnd 2.080806f +R6 g3705_1 4 2.224404 +R7 4 g3705_2 2.224404 +.ends + +.subckt netg4635 g4635_3 g4635_0 g4635_2 g4635_1 gnd +C1 g4635_3 gnd 2.080806f +C2 g4635_0 gnd 2.080806f +C3 g4635_2 gnd 2.080806f +C4 g4635_1 gnd 2.080806f +R1 g4635_0 g4635_2 2.224404 +R2 g4635_1 g4635_2 2.224404 +C5 1 gnd 2.080806f +R3 g4635_2 1 2.224404 +C6 2 gnd 2.080806f +R4 1 2 2.224404 +C7 3 gnd 2.080806f +R5 2 3 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g4635_3 2.224404 +.ends + +.subckt netg2525 g2525_1 g2525_2 g2525_0 gnd +C1 g2525_1 gnd 2.080806f +C2 g2525_2 gnd 2.080806f +C3 g2525_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2525_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2525_2 2.224404 +C7 4 gnd 2.080806f +R5 4 1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 g2525_1 6 2.224404 +.ends + +.subckt netg115 g115_1 g115_0 gnd +C1 g115_1 gnd 2.080806f +C2 g115_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g115_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g115_1 6 2.224404 +.ends + +.subckt netg1246 g1246_1 g1246_3 g1246_2 g1246_0 gnd +C1 g1246_1 gnd 2.080806f +C2 g1246_3 gnd 2.080806f +C3 g1246_2 gnd 2.080806f +C4 g1246_0 gnd 2.080806f +R1 g1246_2 g1246_0 2.224404 +R2 g1246_3 g1246_2 2.224404 +C5 1 gnd 2.080806f +R3 1 g1246_3 2.224404 +C6 2 gnd 2.080806f +R4 2 1 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +R7 g1246_1 4 2.224404 +.ends + +.subckt netg3637 g3637_5 g3637_1 g3637_6 g3637_4 g3637_0 g3637_3 g3637_2 gnd +C1 g3637_5 gnd 2.080806f +C2 g3637_1 gnd 2.080806f +C3 g3637_6 gnd 2.080806f +C4 g3637_4 gnd 2.080806f +C5 g3637_0 gnd 2.080806f +C6 g3637_3 gnd 2.080806f +C7 g3637_2 gnd 2.080806f +R1 g3637_0 g3637_6 2.224404 +R2 g3637_6 g3637_2 2.224404 +C8 1 gnd 2.080806f +R3 g3637_2 1 2.224404 +R4 1 g3637_5 2.224404 +R5 g3637_1 g3637_5 2.224404 +R6 g3637_5 g3637_3 2.224404 +C9 2 gnd 2.080806f +R7 g3637_1 2 2.224404 +R8 2 g3637_4 2.224404 +.ends + +.subckt netg6760 g6760_4 g6760_3 g6760_2 g6760_1 g6760_0 gnd +C1 g6760_4 gnd 2.080806f +C2 g6760_3 gnd 2.080806f +C3 g6760_2 gnd 2.080806f +C4 g6760_1 gnd 2.080806f +C5 g6760_0 gnd 2.080806f +R1 g6760_2 g6760_0 2.224404 +C6 1 gnd 2.080806f +R2 g6760_0 1 2.224404 +C7 2 gnd 2.080806f +R3 1 2 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g6760_1 2.224404 +C9 4 gnd 2.080806f +R6 4 g6760_1 2.224404 +R7 4 g6760_4 2.224404 +R8 g6760_4 g6760_3 2.224404 +.ends + +.subckt netg5404 g5404_0 g5404_1 g5404_2 gnd +C1 g5404_0 gnd 2.080806f +C2 g5404_1 gnd 2.080806f +C3 g5404_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5404_0 2.224404 +R2 1 g5404_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g5404_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 5 g5404_2 2.224404 +.ends + +.subckt netg792 g792_1 g792_0 g792_3 g792_2 gnd +C1 g792_1 gnd 2.080806f +C2 g792_0 gnd 2.080806f +C3 g792_3 gnd 2.080806f +C4 g792_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g792_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g792_2 2 2.224404 +C7 3 gnd 2.080806f +R4 3 g792_2 2.224404 +R5 g792_3 3 2.224404 +C8 4 gnd 2.080806f +R6 4 2 2.224404 +R7 g792_1 4 2.224404 +.ends + +.subckt netg6176 g6176_3 g6176_2 g6176_1 g6176_0 gnd +C1 g6176_3 gnd 2.080806f +C2 g6176_2 gnd 2.080806f +C3 g6176_1 gnd 2.080806f +C4 g6176_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6176_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6176_1 2.224404 +C9 5 gnd 2.080806f +R6 g6176_1 5 2.224404 +R7 5 g6176_3 2.224404 +R8 g6176_2 g6176_3 2.224404 +.ends + +.subckt netg6710 g6710_1 g6710_0 gnd +C1 g6710_1 gnd 2.080806f +C2 g6710_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6710_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 g6710_1 6 2.224404 +.ends + +.subckt netg4920 g4920_5 g4920_0 g4920_4 g4920_1 g4920_2 g4920_3 gnd +C1 g4920_5 gnd 2.080806f +C2 g4920_0 gnd 2.080806f +C3 g4920_4 gnd 2.080806f +C4 g4920_1 gnd 2.080806f +C5 g4920_2 gnd 2.080806f +C6 g4920_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g4920_0 2.224404 +R2 g4920_3 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g4920_0 2.224404 +R4 g4920_5 2 2.224404 +C9 3 gnd 2.080806f +R5 3 g4920_3 2.224404 +R6 g4920_4 3 2.224404 +C10 4 gnd 2.080806f +R7 4 g4920_5 2.224404 +R8 g4920_2 4 2.224404 +C11 5 gnd 2.080806f +R9 5 g4920_4 2.224404 +C12 6 gnd 2.080806f +R10 6 5 2.224404 +R11 g4920_1 6 2.224404 +.ends + +.subckt netg3132 g3132_2 g3132_0 g3132_1 gnd +C1 g3132_2 gnd 2.080806f +C2 g3132_0 gnd 2.080806f +C3 g3132_1 gnd 2.080806f +R1 g3132_0 g3132_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g3132_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 5 g3132_2 2.224404 +.ends + +.subckt netg2870 g2870_3 g2870_0 g2870_1 gnd +C1 g2870_3 gnd 2.080806f +C2 g2870_0 gnd 2.080806f +C3 g2870_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2870_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g2870_1 4 2.224404 +C8 5 gnd 2.080806f +R6 5 g2870_1 2.224404 +R7 g2870_3 5 2.224404 +.ends + +.subckt netg691 g691_2 g691_0 g691_1 gnd +C1 g691_2 gnd 2.080806f +C2 g691_0 gnd 2.080806f +C3 g691_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g691_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g691_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 1 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g691_1 5 2.224404 +.ends + +.subckt netg5211 g5211_2 g5211_1 g5211_0 gnd +C1 g5211_2 gnd 2.080806f +C2 g5211_1 gnd 2.080806f +C3 g5211_0 gnd 2.080806f +R1 g5211_0 g5211_2 2.224404 +C4 1 gnd 2.080806f +R2 g5211_0 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g5211_1 5 2.224404 +.ends + +.subckt netg6957 g6957_1 g6957_2 g6957_0 gnd +C1 g6957_1 gnd 2.080806f +C2 g6957_2 gnd 2.080806f +C3 g6957_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6957_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g6957_2 2.224404 +C7 4 gnd 2.080806f +R5 4 g6957_2 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 5 g6957_1 2.224404 +.ends + +.subckt netg1316 g1316_3 g1316_2 g1316_6 g1316_1 g1316_5 g1316_4 gnd +C1 g1316_3 gnd 2.080806f +C2 g1316_2 gnd 2.080806f +C3 g1316_6 gnd 2.080806f +C4 g1316_1 gnd 2.080806f +C5 g1316_5 gnd 2.080806f +C6 g1316_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1316_2 1 2.224404 +R2 1 g1316_6 2.224404 +C8 2 gnd 2.080806f +R3 g1316_2 2 2.224404 +R4 g1316_5 2 2.224404 +C9 3 gnd 2.080806f +R5 g1316_6 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g1316_4 2.224404 +R8 g1316_1 g1316_4 2.224404 +C11 5 gnd 2.080806f +R9 g1316_5 5 2.224404 +C12 6 gnd 2.080806f +R10 5 6 2.224404 +R11 g1316_3 6 2.224404 +.ends + +.subckt netg5948 g5948_0 g5948_1 g5948_2 gnd +C1 g5948_0 gnd 2.080806f +C2 g5948_1 gnd 2.080806f +C3 g5948_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5948_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +R6 5 g5948_2 2.224404 +R7 g5948_2 g5948_1 2.224404 +.ends + +.subckt netg2062 g2062_0 g2062_3 g2062_2 g2062_7 g2062_5 g2062_4 g2062_1 gnd +C1 g2062_0 gnd 2.080806f +C2 g2062_3 gnd 2.080806f +C3 g2062_2 gnd 2.080806f +C4 g2062_7 gnd 2.080806f +C5 g2062_5 gnd 2.080806f +C6 g2062_4 gnd 2.080806f +C7 g2062_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g2062_0 1 2.224404 +R2 1 g2062_1 2.224404 +R3 g2062_4 g2062_1 2.224404 +R4 g2062_7 g2062_4 2.224404 +R5 g2062_3 g2062_7 2.224404 +R6 g2062_5 g2062_3 2.224404 +R7 g2062_2 g2062_5 2.224404 +.ends + +.subckt netg6294 g6294_1 g6294_2 g6294_0 gnd +C1 g6294_1 gnd 2.080806f +C2 g6294_2 gnd 2.080806f +C3 g6294_0 gnd 2.080806f +R1 g6294_2 g6294_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g6294_0 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g6294_1 5 2.224404 +.ends + +.subckt netg5628 g5628_1 g5628_2 g5628_0 gnd +C1 g5628_1 gnd 2.080806f +C2 g5628_2 gnd 2.080806f +C3 g5628_0 gnd 2.080806f +R1 g5628_2 g5628_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5628_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g5628_1 5 2.224404 +.ends + +.subckt netg6372 g6372_1 g6372_0 gnd +C1 g6372_1 gnd 2.080806f +C2 g6372_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6372_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g6372_1 2.224404 +.ends + +.subckt netg7057 g7057_0 g7057_1 g7057_2 gnd +C1 g7057_0 gnd 2.080806f +C2 g7057_1 gnd 2.080806f +C3 g7057_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7057_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g7057_1 2.224404 +C7 4 gnd 2.080806f +R5 4 g7057_0 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +R8 6 g7057_2 2.224404 +.ends + +.subckt netg3252 g3252_1 g3252_2 g3252_0 gnd +C1 g3252_1 gnd 2.080806f +C2 g3252_2 gnd 2.080806f +C3 g3252_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3252_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g3252_1 2.224404 +R7 g3252_2 5 2.224404 +.ends + +.subckt netg796 g796_2 g796_1 g796_0 gnd +C1 g796_2 gnd 2.080806f +C2 g796_1 gnd 2.080806f +C3 g796_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g796_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g796_2 2.224404 +C8 5 gnd 2.080806f +R6 g796_2 5 2.224404 +R7 5 g796_1 2.224404 +.ends + +.subckt netg4648 g4648_1 g4648_3 g4648_0 g4648_4 g4648_2 gnd +C1 g4648_1 gnd 2.080806f +C2 g4648_3 gnd 2.080806f +C3 g4648_0 gnd 2.080806f +C4 g4648_4 gnd 2.080806f +C5 g4648_2 gnd 2.080806f +R1 g4648_2 g4648_0 2.224404 +R2 g4648_3 g4648_0 2.224404 +C6 1 gnd 2.080806f +R3 g4648_0 1 2.224404 +R4 1 g4648_4 2.224404 +C7 2 gnd 2.080806f +R5 g4648_4 2 2.224404 +C8 3 gnd 2.080806f +R6 2 3 2.224404 +R7 3 g4648_1 2.224404 +.ends + +.subckt netg5752 g5752_0 g5752_2 g5752_1 gnd +C1 g5752_0 gnd 2.080806f +C2 g5752_2 gnd 2.080806f +C3 g5752_1 gnd 2.080806f +R1 g5752_2 g5752_0 2.224404 +C4 1 gnd 2.080806f +R2 g5752_2 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g5752_1 5 2.224404 +.ends + +.subckt netg4642 g4642_2 g4642_1 g4642_5 g4642_3 g4642_0 g4642_4 gnd +C1 g4642_2 gnd 2.080806f +C2 g4642_1 gnd 2.080806f +C3 g4642_5 gnd 2.080806f +C4 g4642_3 gnd 2.080806f +C5 g4642_0 gnd 2.080806f +C6 g4642_4 gnd 2.080806f +R1 g4642_3 g4642_0 2.224404 +C7 1 gnd 2.080806f +R2 g4642_0 1 2.224404 +R3 1 g4642_4 2.224404 +C8 2 gnd 2.080806f +R4 2 g4642_3 2.224404 +R5 g4642_2 2 2.224404 +C9 3 gnd 2.080806f +R6 g4642_4 3 2.224404 +R7 3 g4642_1 2.224404 +R8 g4642_5 3 2.224404 +.ends + +.subckt netg113 g113_0 g113_1 gnd +C1 g113_0 gnd 2.080806f +C2 g113_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g113_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g113_1 2.224404 +.ends + +.subckt netg2235 g2235_3 g2235_1 g2235_2 g2235_0 gnd +C1 g2235_3 gnd 2.080806f +C2 g2235_1 gnd 2.080806f +C3 g2235_2 gnd 2.080806f +C4 g2235_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2235_0 2.224404 +R2 1 g2235_3 2.224404 +C6 2 gnd 2.080806f +R3 g2235_3 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g2235_1 2.224404 +C8 4 gnd 2.080806f +R6 g2235_1 4 2.224404 +R7 4 g2235_2 2.224404 +.ends + +.subckt netg5783 g5783_0 g5783_1 gnd +C1 g5783_0 gnd 2.080806f +C2 g5783_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5783_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g5783_1 2.224404 +.ends + +.subckt netg816 g816_4 g816_0 g816_3 gnd +C1 g816_4 gnd 2.080806f +C2 g816_0 gnd 2.080806f +C3 g816_3 gnd 2.080806f +R1 g816_0 g816_3 2.224404 +C4 1 gnd 2.080806f +R2 1 g816_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g816_4 5 2.224404 +.ends + +.subckt netg3013 g3013_1 g3013_4 g3013_2 g3013_0 g3013_5 g3013_3 gnd +C1 g3013_1 gnd 2.080806f +C2 g3013_4 gnd 2.080806f +C3 g3013_2 gnd 2.080806f +C4 g3013_0 gnd 2.080806f +C5 g3013_5 gnd 2.080806f +C6 g3013_3 gnd 2.080806f +R1 g3013_4 g3013_0 2.224404 +C7 1 gnd 2.080806f +R2 g3013_0 1 2.224404 +R3 1 g3013_3 2.224404 +C8 2 gnd 2.080806f +R4 2 g3013_4 2.224404 +R5 g3013_1 2 2.224404 +C9 3 gnd 2.080806f +R6 3 g3013_1 2.224404 +R7 g3013_2 3 2.224404 +C10 4 gnd 2.080806f +R8 g3013_1 4 2.224404 +R9 4 g3013_5 2.224404 +.ends + +.subckt netg7284 g7284_2 g7284_1 gnd +C1 g7284_2 gnd 2.080806f +C2 g7284_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7284_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 g7284_2 6 2.224404 +.ends + +.subckt netg6859 g6859_0 g6859_2 g6859_1 gnd +C1 g6859_0 gnd 2.080806f +C2 g6859_2 gnd 2.080806f +C3 g6859_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6859_0 2.224404 +R2 g6859_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g6859_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g6859_2 2.224404 +.ends + +.subckt netg1576 g1576_1 g1576_0 gnd +C1 g1576_1 gnd 2.080806f +C2 g1576_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1576_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g1576_1 6 2.224404 +.ends + +.subckt netg4884 g4884_2 g4884_0 gnd +C1 g4884_2 gnd 2.080806f +C2 g4884_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4884_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g4884_2 2.224404 +.ends + +.subckt netg3988 g3988_2 g3988_4 g3988_3 g3988_1 g3988_5 g3988_0 gnd +C1 g3988_2 gnd 2.080806f +C2 g3988_4 gnd 2.080806f +C3 g3988_3 gnd 2.080806f +C4 g3988_1 gnd 2.080806f +C5 g3988_5 gnd 2.080806f +C6 g3988_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g3988_0 2.224404 +R2 1 g3988_3 2.224404 +C8 2 gnd 2.080806f +R3 g3988_0 2 2.224404 +R4 2 g3988_5 2.224404 +C9 3 gnd 2.080806f +R5 3 g3988_3 2.224404 +R6 g3988_4 3 2.224404 +R7 g3988_1 g3988_4 2.224404 +C10 4 gnd 2.080806f +R8 4 1 2.224404 +R9 g3988_2 4 2.224404 +.ends + +.subckt netg2896 g2896_1 g2896_0 gnd +C1 g2896_1 gnd 2.080806f +C2 g2896_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2896_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g2896_1 6 2.224404 +.ends + +.subckt netg2977 g2977_0 g2977_1 g2977_2 gnd +C1 g2977_0 gnd 2.080806f +C2 g2977_1 gnd 2.080806f +C3 g2977_2 gnd 2.080806f +R1 g2977_2 g2977_0 2.224404 +C4 1 gnd 2.080806f +R2 g2977_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g2977_1 5 2.224404 +.ends + +.subckt netg3683 g3683_1 g3683_0 g3683_3 gnd +C1 g3683_1 gnd 2.080806f +C2 g3683_0 gnd 2.080806f +C3 g3683_3 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3683_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3683_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g3683_1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g3683_3 5 2.224404 +.ends + +.subckt netg4233 g4233_1 g4233_0 gnd +C1 g4233_1 gnd 2.080806f +C2 g4233_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4233_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g4233_1 6 2.224404 +.ends + +.subckt netg4771 g4771_3 g4771_2 g4771_1 g4771_0 gnd +C1 g4771_3 gnd 2.080806f +C2 g4771_2 gnd 2.080806f +C3 g4771_1 gnd 2.080806f +C4 g4771_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4771_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4771_1 2.224404 +C8 4 gnd 2.080806f +R5 g4771_1 4 2.224404 +R6 4 g4771_3 2.224404 +R7 g4771_3 g4771_2 2.224404 +.ends + +.subckt netg1363 g1363_0 g1363_1 gnd +C1 g1363_0 gnd 2.080806f +C2 g1363_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1363_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g1363_1 6 2.224404 +.ends + +.subckt netg116 g116_1 g116_0 gnd +C1 g116_1 gnd 2.080806f +C2 g116_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g116_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g116_1 7 2.224404 +.ends + +.subckt netg1909 g1909_1 g1909_0 gnd +C1 g1909_1 gnd 2.080806f +C2 g1909_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1909_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1909_1 7 2.224404 +.ends + +.subckt netg1397 g1397_1 g1397_0 gnd +C1 g1397_1 gnd 2.080806f +C2 g1397_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1397_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1397_1 2.224404 +.ends + +.subckt netg1914 g1914_0 g1914_1 gnd +C1 g1914_0 gnd 2.080806f +C2 g1914_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1914_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1914_1 7 2.224404 +.ends + +.subckt netg1880 g1880_1 g1880_0 g1880_2 gnd +C1 g1880_1 gnd 2.080806f +C2 g1880_0 gnd 2.080806f +C3 g1880_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1880_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1880_1 2.224404 +C7 4 gnd 2.080806f +R5 g1880_1 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g1880_2 2.224404 +.ends + +.subckt netg5197 g5197_2 g5197_1 gnd +C1 g5197_2 gnd 2.080806f +C2 g5197_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5197_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g5197_2 2.224404 +.ends + +.subckt netg6045 g6045_0 g6045_1 gnd +C1 g6045_0 gnd 2.080806f +C2 g6045_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6045_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g6045_1 2.224404 +.ends + +.subckt netg5496 g5496_2 g5496_0 g5496_1 gnd +C1 g5496_2 gnd 2.080806f +C2 g5496_0 gnd 2.080806f +C3 g5496_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5496_0 2.224404 +R2 g5496_2 1 2.224404 +C5 2 gnd 2.080806f +R3 g5496_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g5496_1 2.224404 +.ends + +.subckt netg4908 g4908_2 g4908_4 g4908_1 g4908_3 g4908_0 gnd +C1 g4908_2 gnd 2.080806f +C2 g4908_4 gnd 2.080806f +C3 g4908_1 gnd 2.080806f +C4 g4908_3 gnd 2.080806f +C5 g4908_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g4908_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4908_4 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +C9 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4908_2 2.224404 +C10 5 gnd 2.080806f +R7 g4908_2 5 2.224404 +R8 5 g4908_3 2.224404 +R9 g4908_3 g4908_1 2.224404 +.ends + +.subckt netg1505 g1505_1 g1505_0 gnd +C1 g1505_1 gnd 2.080806f +C2 g1505_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1505_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1505_1 2.224404 +.ends + +.subckt netg5234 g5234_1 g5234_0 gnd +C1 g5234_1 gnd 2.080806f +C2 g5234_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5234_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g5234_1 7 2.224404 +.ends + +.subckt netg1898 g1898_0 g1898_1 gnd +C1 g1898_0 gnd 2.080806f +C2 g1898_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1898_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1898_1 2.224404 +.ends + +.subckt netg1504 g1504_0 g1504_1 gnd +C1 g1504_0 gnd 2.080806f +C2 g1504_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1504_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1504_1 7 2.224404 +.ends + +.subckt netg7038 g7038_1 g7038_0 g7038_2 gnd +C1 g7038_1 gnd 2.080806f +C2 g7038_0 gnd 2.080806f +C3 g7038_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7038_0 2.224404 +R2 g7038_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g7038_0 2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g7038_2 2.224404 +.ends + +.subckt netg4088 g4088_2 g4088_1 g4088_3 g4088_0 gnd +C1 g4088_2 gnd 2.080806f +C2 g4088_1 gnd 2.080806f +C3 g4088_3 gnd 2.080806f +C4 g4088_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4088_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g4088_1 2.224404 +C8 4 gnd 2.080806f +R5 g4088_1 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g4088_3 2.224404 +R8 g4088_3 g4088_2 2.224404 +.ends + +.subckt netg5235 g5235_0 g5235_1 gnd +C1 g5235_0 gnd 2.080806f +C2 g5235_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5235_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g5235_1 7 2.224404 +.ends + +.subckt netg1144 g1144_2 g1144_5 g1144_3 g1144_1 g1144_4 g1144_0 gnd +C1 g1144_2 gnd 2.080806f +C2 g1144_5 gnd 2.080806f +C3 g1144_3 gnd 2.080806f +C4 g1144_1 gnd 2.080806f +C5 g1144_4 gnd 2.080806f +C6 g1144_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1144_0 1 2.224404 +R2 1 g1144_3 2.224404 +C8 2 gnd 2.080806f +R3 2 g1144_0 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g1144_1 3 2.224404 +R6 g1144_1 g1144_2 2.224404 +C10 4 gnd 2.080806f +R7 1 4 2.224404 +R8 4 g1144_4 2.224404 +R9 g1144_5 g1144_4 2.224404 +.ends + +.subckt netg1580 g1580_1 g1580_0 gnd +C1 g1580_1 gnd 2.080806f +C2 g1580_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1580_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1580_1 7 2.224404 +.ends + +.subckt netg4314 g4314_1 g4314_0 gnd +C1 g4314_1 gnd 2.080806f +C2 g4314_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4314_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g4314_1 7 2.224404 +.ends + +.subckt netg2890 g2890_3 g2890_1 g2890_5 g2890_0 g2890_4 g2890_2 gnd +C1 g2890_3 gnd 2.080806f +C2 g2890_1 gnd 2.080806f +C3 g2890_5 gnd 2.080806f +C4 g2890_0 gnd 2.080806f +C5 g2890_4 gnd 2.080806f +C6 g2890_2 gnd 2.080806f +R1 g2890_1 g2890_0 2.224404 +R2 g2890_4 g2890_0 2.224404 +C7 1 gnd 2.080806f +R3 1 g2890_1 2.224404 +C8 2 gnd 2.080806f +R4 2 1 2.224404 +C9 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g2890_5 3 2.224404 +R7 g2890_2 g2890_5 2.224404 +C10 4 gnd 2.080806f +R8 g2890_2 4 2.224404 +C11 5 gnd 2.080806f +R9 4 5 2.224404 +R10 g2890_3 5 2.224404 +.ends + +.subckt netg1670 g1670_3 g1670_2 g1670_0 g1670_1 gnd +C1 g1670_3 gnd 2.080806f +C2 g1670_2 gnd 2.080806f +C3 g1670_0 gnd 2.080806f +C4 g1670_1 gnd 2.080806f +R1 g1670_1 g1670_0 2.224404 +C5 1 gnd 2.080806f +R2 g1670_0 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1670_3 2.224404 +C8 4 gnd 2.080806f +R6 2 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g1670_2 2.224404 +.ends + +.subckt netg1495 g1495_0 g1495_1 gnd +C1 g1495_0 gnd 2.080806f +C2 g1495_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1495_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1495_1 2.224404 +.ends + +.subckt netg6781 g6781_1 g6781_0 g6781_2 gnd +C1 g6781_1 gnd 2.080806f +C2 g6781_0 gnd 2.080806f +C3 g6781_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6781_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6781_2 2.224404 +C7 4 gnd 2.080806f +R5 g6781_2 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g6781_1 2.224404 +.ends + +.subckt netg3204 g3204_2 g3204_1 gnd +C1 g3204_2 gnd 2.080806f +C2 g3204_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3204_1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g3204_2 7 2.224404 +.ends + +.subckt netg6757 g6757_2 g6757_1 g6757_0 gnd +C1 g6757_2 gnd 2.080806f +C2 g6757_1 gnd 2.080806f +C3 g6757_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6757_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g6757_2 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g6757_1 2.224404 +.ends + +.subckt netg1527 g1527_1 g1527_0 gnd +C1 g1527_1 gnd 2.080806f +C2 g1527_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1527_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1527_1 2.224404 +.ends + +.subckt netg2922 g2922_0 g2922_1 gnd +C1 g2922_0 gnd 2.080806f +C2 g2922_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2922_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 g2922_1 7 2.224404 +.ends + +.subckt netg1920 g1920_0 g1920_1 gnd +C1 g1920_0 gnd 2.080806f +C2 g1920_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1920_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1920_1 7 2.224404 +.ends + +.subckt netg5755 g5755_2 g5755_1 g5755_0 gnd +C1 g5755_2 gnd 2.080806f +C2 g5755_1 gnd 2.080806f +C3 g5755_0 gnd 2.080806f +R1 g5755_0 g5755_1 2.224404 +C4 1 gnd 2.080806f +R2 g5755_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 g5755_2 6 2.224404 +.ends + +.subckt netg4611 g4611_2 g4611_5 g4611_1 g4611_4 g4611_0 g4611_3 gnd +C1 g4611_2 gnd 2.080806f +C2 g4611_5 gnd 2.080806f +C3 g4611_1 gnd 2.080806f +C4 g4611_4 gnd 2.080806f +C5 g4611_0 gnd 2.080806f +C6 g4611_3 gnd 2.080806f +R1 g4611_2 g4611_0 2.224404 +C7 1 gnd 2.080806f +R2 g4611_0 1 2.224404 +R3 1 g4611_4 2.224404 +R4 g4611_4 g4611_5 2.224404 +C8 2 gnd 2.080806f +R5 g4611_4 2 2.224404 +C9 3 gnd 2.080806f +R6 2 3 2.224404 +R7 3 g4611_1 2.224404 +C10 4 gnd 2.080806f +R8 g4611_1 4 2.224404 +R9 4 g4611_3 2.224404 +.ends + +.subckt netg1437 g1437_0 g1437_1 gnd +C1 g1437_0 gnd 2.080806f +C2 g1437_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1437_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1437_1 2.224404 +.ends + +.subckt netg1891 g1891_0 g1891_1 gnd +C1 g1891_0 gnd 2.080806f +C2 g1891_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1891_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1891_1 7 2.224404 +.ends + +.subckt netg1915 g1915_1 g1915_0 gnd +C1 g1915_1 gnd 2.080806f +C2 g1915_0 gnd 2.080806f +.ends + +.subckt netg2167 g2167_1 g2167_0 g2167_3 g2167_2 gnd +C1 g2167_1 gnd 2.080806f +C2 g2167_0 gnd 2.080806f +C3 g2167_3 gnd 2.080806f +C4 g2167_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2167_0 2.224404 +R2 g2167_2 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g2167_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g2167_1 5 2.224404 +C10 6 gnd 2.080806f +R8 6 g2167_1 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +R10 g2167_3 7 2.224404 +.ends + +.subckt netg3282 g3282_2 g3282_1 g3282_0 gnd +C1 g3282_2 gnd 2.080806f +C2 g3282_1 gnd 2.080806f +C3 g3282_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3282_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g3282_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g3282_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g3282_1 7 2.224404 +.ends + +.subckt netg3713 g3713_1 g3713_0 g3713_2 gnd +C1 g3713_1 gnd 2.080806f +C2 g3713_0 gnd 2.080806f +C3 g3713_2 gnd 2.080806f +R1 g3713_1 g3713_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g3713_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g3713_2 2.224404 +.ends + +.subckt netg4124 g4124_2 g4124_3 g4124_1 g4124_0 gnd +C1 g4124_2 gnd 2.080806f +C2 g4124_3 gnd 2.080806f +C3 g4124_1 gnd 2.080806f +C4 g4124_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4124_0 1 2.224404 +R2 1 g4124_1 2.224404 +C6 2 gnd 2.080806f +R3 g4124_1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g4124_3 2.224404 +C8 4 gnd 2.080806f +R6 g4124_3 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g4124_2 2.224404 +.ends + +.subckt netg117 g117_0 g117_1 gnd +C1 g117_0 gnd 2.080806f +C2 g117_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g117_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g117_1 2.224404 +.ends + +.subckt netg3725 g3725_9 g3725_8 g3725_6 g3725_5 g3725_10 g3725_0 g3725_2 g3725_3 g3725_7 gnd +C1 g3725_9 gnd 2.080806f +C2 g3725_8 gnd 2.080806f +C3 g3725_6 gnd 2.080806f +C4 g3725_5 gnd 2.080806f +C5 g3725_10 gnd 2.080806f +C6 g3725_0 gnd 2.080806f +C7 g3725_2 gnd 2.080806f +C8 g3725_3 gnd 2.080806f +C9 g3725_7 gnd 2.080806f +R1 g3725_5 g3725_0 2.224404 +R2 g3725_8 g3725_5 2.224404 +C10 1 gnd 2.080806f +R3 g3725_0 1 2.224404 +R4 1 g3725_7 2.224404 +C11 2 gnd 2.080806f +R5 g3725_8 2 2.224404 +R6 2 g3725_9 2.224404 +R7 g3725_2 g3725_9 2.224404 +R8 1 g3725_3 2.224404 +C12 3 gnd 2.080806f +R9 3 g3725_8 2.224404 +R10 g3725_10 3 2.224404 +C13 4 gnd 2.080806f +R11 4 g3725_2 2.224404 +R12 g3725_6 4 2.224404 +.ends + +.subckt netg4143 g4143_1 g4143_0 g4143_2 gnd +C1 g4143_1 gnd 2.080806f +C2 g4143_0 gnd 2.080806f +C3 g4143_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4143_0 1 2.224404 +R2 1 g4143_2 2.224404 +C5 2 gnd 2.080806f +R3 2 g4143_2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +R8 6 g4143_1 2.224404 +.ends + +.subckt netg1192 g1192_1 g1192_0 g1192_5 g1192_2 g1192_6 g1192_3 gnd +C1 g1192_1 gnd 2.080806f +C2 g1192_0 gnd 2.080806f +C3 g1192_5 gnd 2.080806f +C4 g1192_2 gnd 2.080806f +C5 g1192_6 gnd 2.080806f +C6 g1192_3 gnd 2.080806f +R1 g1192_0 g1192_5 2.224404 +C7 1 gnd 2.080806f +R2 1 g1192_0 2.224404 +R3 g1192_2 1 2.224404 +C8 2 gnd 2.080806f +R4 2 g1192_0 2.224404 +C9 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g1192_1 3 2.224404 +R7 g1192_3 g1192_1 2.224404 +C10 4 gnd 2.080806f +R8 4 g1192_3 2.224404 +C11 5 gnd 2.080806f +R9 5 4 2.224404 +R10 g1192_6 5 2.224404 +.ends + +.subckt netg6336 g6336_0 g6336_1 g6336_3 g6336_2 gnd +C1 g6336_0 gnd 2.080806f +C2 g6336_1 gnd 2.080806f +C3 g6336_3 gnd 2.080806f +C4 g6336_2 gnd 2.080806f +R1 g6336_0 g6336_3 2.224404 +R2 g6336_3 g6336_1 2.224404 +C5 1 gnd 2.080806f +R3 g6336_1 1 2.224404 +C6 2 gnd 2.080806f +R4 1 2 2.224404 +C7 3 gnd 2.080806f +R5 2 3 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g6336_2 2.224404 +.ends + +.subckt netg518 g518_1 g518_0 gnd +C1 g518_1 gnd 2.080806f +C2 g518_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g518_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 g518_1 7 2.224404 +.ends + +.subckt netg1528 g1528_1 g1528_0 gnd +C1 g1528_1 gnd 2.080806f +C2 g1528_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1528_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g1528_1 2.224404 +.ends + +.subckt netg3797 g3797_2 g3797_5 g3797_0 g3797_4 g3797_3 gnd +C1 g3797_2 gnd 2.080806f +C2 g3797_5 gnd 2.080806f +C3 g3797_0 gnd 2.080806f +C4 g3797_4 gnd 2.080806f +C5 g3797_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g3797_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3797_4 3 2.224404 +R5 g3797_3 g3797_4 2.224404 +C9 4 gnd 2.080806f +R6 g3797_3 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +R8 g3797_5 5 2.224404 +C11 6 gnd 2.080806f +R9 6 g3797_5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +R11 g3797_2 7 2.224404 +.ends + +.subckt netg85 g85_0 g85_1 gnd +C1 g85_0 gnd 2.080806f +C2 g85_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g85_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +R8 7 g85_1 2.224404 +.ends + +.subckt netg1990 g1990_2 g1990_0 g1990_3 g1990_1 gnd +C1 g1990_2 gnd 2.080806f +C2 g1990_0 gnd 2.080806f +C3 g1990_3 gnd 2.080806f +C4 g1990_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1990_0 2.224404 +R2 g1990_2 1 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g1990_3 2 2.224404 +C7 3 gnd 2.080806f +R5 3 g1990_3 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +R9 g1990_1 6 2.224404 +.ends + +.subckt netg1515 g1515_0 g1515_1 gnd +C1 g1515_0 gnd 2.080806f +C2 g1515_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1515_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +R9 g1515_1 8 2.224404 +.ends + +.subckt netg1440 g1440_5 g1440_2 g1440_3 g1440_1 g1440_4 g1440_0 gnd +C1 g1440_5 gnd 2.080806f +C2 g1440_2 gnd 2.080806f +C3 g1440_3 gnd 2.080806f +C4 g1440_1 gnd 2.080806f +C5 g1440_4 gnd 2.080806f +C6 g1440_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1440_0 1 2.224404 +R2 1 g1440_2 2.224404 +R3 g1440_2 g1440_5 2.224404 +R4 g1440_5 g1440_4 2.224404 +R5 g1440_3 g1440_4 2.224404 +C8 2 gnd 2.080806f +R6 g1440_4 2 2.224404 +C9 3 gnd 2.080806f +R7 2 3 2.224404 +C10 4 gnd 2.080806f +R8 3 4 2.224404 +R9 4 g1440_1 2.224404 +.ends + +.subckt netg3907 g3907_2 g3907_4 g3907_1 g3907_0 g3907_5 g3907_3 gnd +C1 g3907_2 gnd 2.080806f +C2 g3907_4 gnd 2.080806f +C3 g3907_1 gnd 2.080806f +C4 g3907_0 gnd 2.080806f +C5 g3907_5 gnd 2.080806f +C6 g3907_3 gnd 2.080806f +R1 g3907_0 g3907_3 2.224404 +C7 1 gnd 2.080806f +R2 g3907_3 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3907_1 2.224404 +C11 5 gnd 2.080806f +R7 g3907_1 5 2.224404 +R8 5 g3907_2 2.224404 +R9 g3907_2 g3907_5 2.224404 +R10 g3907_4 g3907_5 2.224404 +.ends + +.subckt netg6016 g6016_5 g6016_4 g6016_3 g6016_2 g6016_0 g6016_6 g6016_1 gnd +C1 g6016_5 gnd 2.080806f +C2 g6016_4 gnd 2.080806f +C3 g6016_3 gnd 2.080806f +C4 g6016_2 gnd 2.080806f +C5 g6016_0 gnd 2.080806f +C6 g6016_6 gnd 2.080806f +C7 g6016_1 gnd 2.080806f +R1 g6016_1 g6016_0 2.224404 +R2 g6016_6 g6016_0 2.224404 +R3 g6016_3 g6016_1 2.224404 +R4 g6016_5 g6016_3 2.224404 +C8 1 gnd 2.080806f +R5 g6016_1 1 2.224404 +C9 2 gnd 2.080806f +R6 1 2 2.224404 +R7 2 g6016_2 2.224404 +C10 3 gnd 2.080806f +R8 g6016_2 3 2.224404 +C11 4 gnd 2.080806f +R9 3 4 2.224404 +R10 g6016_4 4 2.224404 +.ends + +.subckt netg6204 g6204_0 g6204_1 gnd +C1 g6204_0 gnd 2.080806f +C2 g6204_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6204_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g6204_1 8 2.224404 +.ends + +.subckt netg7096 g7096_1 g7096_0 g7096_2 gnd +C1 g7096_1 gnd 2.080806f +C2 g7096_0 gnd 2.080806f +C3 g7096_2 gnd 2.080806f +R1 g7096_2 g7096_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g7096_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +R9 g7096_1 7 2.224404 +.ends + +.subckt netg7412 g7412_1 g7412_0 gnd +C1 g7412_1 gnd 2.080806f +C2 g7412_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7412_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g7412_1 2.224404 +.ends + +.subckt netg1723 g1723_0 g1723_2 g1723_3 g1723_1 gnd +C1 g1723_0 gnd 2.080806f +C2 g1723_2 gnd 2.080806f +C3 g1723_3 gnd 2.080806f +C4 g1723_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1723_0 1 2.224404 +R2 1 g1723_1 2.224404 +C6 2 gnd 2.080806f +R3 g1723_1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g1723_2 2.224404 +C10 6 gnd 2.080806f +R8 6 g1723_2 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g1723_3 2.224404 +.ends + +.subckt netg5824 g5824_0 g5824_1 g5824_2 gnd +C1 g5824_0 gnd 2.080806f +C2 g5824_1 gnd 2.080806f +C3 g5824_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5824_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5824_2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5824_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +R9 7 g5824_1 2.224404 +.ends + +.subckt netg3004 g3004_3 g3004_2 g3004_0 g3004_1 gnd +C1 g3004_3 gnd 2.080806f +C2 g3004_2 gnd 2.080806f +C3 g3004_0 gnd 2.080806f +C4 g3004_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3004_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3004_2 2.224404 +C7 3 gnd 2.080806f +R4 3 g3004_0 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3004_3 4 2.224404 +C9 5 gnd 2.080806f +R7 g3004_2 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g3004_1 2.224404 +.ends + +.subckt netg5156 g5156_2 g5156_3 g5156_0 g5156_1 gnd +C1 g5156_2 gnd 2.080806f +C2 g5156_3 gnd 2.080806f +C3 g5156_0 gnd 2.080806f +C4 g5156_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g5156_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5156_2 2.224404 +C7 3 gnd 2.080806f +R4 g5156_2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g5156_3 2.224404 +C9 5 gnd 2.080806f +R7 g5156_3 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g5156_1 2.224404 +.ends + +.subckt netg6939 g6939_1 g6939_0 gnd +C1 g6939_1 gnd 2.080806f +C2 g6939_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6939_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g6939_1 8 2.224404 +.ends + +.subckt netg7528 g7528_0 g7528_1 gnd +C1 g7528_0 gnd 2.080806f +C2 g7528_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7528_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g7528_1 2.224404 +.ends + +.subckt netg6377 g6377_3 g6377_1 g6377_2 g6377_0 gnd +C1 g6377_3 gnd 2.080806f +C2 g6377_1 gnd 2.080806f +C3 g6377_2 gnd 2.080806f +C4 g6377_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6377_0 1 2.224404 +R2 g6377_3 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g6377_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g6377_2 5 2.224404 +C10 6 gnd 2.080806f +R8 6 g6377_2 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +R11 g6377_1 8 2.224404 +.ends + +.subckt netg2901 g2901_2 g2901_5 g2901_4 g2901_3 g2901_1 g2901_0 gnd +C1 g2901_2 gnd 2.080806f +C2 g2901_5 gnd 2.080806f +C3 g2901_4 gnd 2.080806f +C4 g2901_3 gnd 2.080806f +C5 g2901_1 gnd 2.080806f +C6 g2901_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2901_0 1 2.224404 +R2 g2901_3 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g2901_0 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g2901_1 4 2.224404 +R7 g2901_4 4 2.224404 +C11 5 gnd 2.080806f +R8 g2901_4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +R10 6 g2901_2 2.224404 +C13 7 gnd 2.080806f +R11 1 7 2.224404 +C14 8 gnd 2.080806f +R12 7 8 2.224404 +R13 8 g2901_5 2.224404 +.ends + +.subckt netg5136 g5136_2 g5136_1 g5136_0 gnd +C1 g5136_2 gnd 2.080806f +C2 g5136_1 gnd 2.080806f +C3 g5136_0 gnd 2.080806f +R1 g5136_0 g5136_1 2.224404 +C4 1 gnd 2.080806f +R2 g5136_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g5136_2 7 2.224404 +.ends + +.subckt netg1402 g1402_0 g1402_1 gnd +C1 g1402_0 gnd 2.080806f +C2 g1402_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1402_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +R9 8 g1402_1 2.224404 +.ends + +.subckt netg6359 g6359_1 g6359_0 gnd +C1 g6359_1 gnd 2.080806f +C2 g6359_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6359_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g6359_1 2.224404 +.ends + +.subckt netg4199 g4199_0 g4199_1 g4199_2 gnd +C1 g4199_0 gnd 2.080806f +C2 g4199_1 gnd 2.080806f +C3 g4199_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4199_0 1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g4199_2 5 2.224404 +C9 6 gnd 2.080806f +R7 6 g4199_2 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g4199_1 7 2.224404 +.ends + +.subckt netg4926 g4926_3 g4926_2 g4926_4 g4926_0 g4926_1 gnd +C1 g4926_3 gnd 2.080806f +C2 g4926_2 gnd 2.080806f +C3 g4926_4 gnd 2.080806f +C4 g4926_0 gnd 2.080806f +C5 g4926_1 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g4926_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4926_1 2.224404 +C8 3 gnd 2.080806f +R4 g4926_0 3 2.224404 +C9 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g4926_3 4 2.224404 +C10 5 gnd 2.080806f +R7 5 g4926_3 2.224404 +R8 g4926_2 5 2.224404 +C11 6 gnd 2.080806f +R9 6 g4926_3 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +R12 g4926_4 8 2.224404 +.ends + +.subckt netg2033 g2033_4 g2033_1 g2033_0 g2033_3 g2033_2 gnd +C1 g2033_4 gnd 2.080806f +C2 g2033_1 gnd 2.080806f +C3 g2033_0 gnd 2.080806f +C4 g2033_3 gnd 2.080806f +C5 g2033_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g2033_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 2 3 2.224404 +C9 4 gnd 2.080806f +R4 3 4 2.224404 +C10 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g2033_3 5 2.224404 +R7 g2033_3 g2033_4 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g2033_2 2.224404 +R10 g2033_2 g2033_1 2.224404 +.ends + +.subckt netg5956 g5956_1 g5956_0 gnd +C1 g5956_1 gnd 2.080806f +C2 g5956_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5956_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g5956_1 8 2.224404 +.ends + +.subckt netg4863 g4863_4 g4863_5 g4863_2 g4863_1 g4863_3 g4863_0 gnd +C1 g4863_4 gnd 2.080806f +C2 g4863_5 gnd 2.080806f +C3 g4863_2 gnd 2.080806f +C4 g4863_1 gnd 2.080806f +C5 g4863_3 gnd 2.080806f +C6 g4863_0 gnd 2.080806f +R1 g4863_0 g4863_2 2.224404 +C7 1 gnd 2.080806f +R2 g4863_0 1 2.224404 +R3 1 g4863_3 2.224404 +C8 2 gnd 2.080806f +R4 g4863_3 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g4863_4 2.224404 +C10 4 gnd 2.080806f +R7 4 g4863_3 2.224404 +C11 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g4863_5 5 2.224404 +C12 6 gnd 2.080806f +R10 g4863_5 6 2.224404 +C13 7 gnd 2.080806f +R11 6 7 2.224404 +R12 7 g4863_1 2.224404 +.ends + +.subckt netg2897 g2897_3 g2897_2 g2897_1 g2897_0 gnd +C1 g2897_3 gnd 2.080806f +C2 g2897_2 gnd 2.080806f +C3 g2897_1 gnd 2.080806f +C4 g2897_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2897_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g2897_3 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g2897_2 2.224404 +C9 5 gnd 2.080806f +R7 g2897_0 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g2897_1 2.224404 +.ends + +.subckt netg2881 g2881_3 g2881_2 g2881_0 gnd +C1 g2881_3 gnd 2.080806f +C2 g2881_2 gnd 2.080806f +C3 g2881_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2881_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g2881_3 4 2.224404 +C8 5 gnd 2.080806f +R6 1 5 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +R10 8 g2881_2 2.224404 +.ends + +.subckt netg2163 g2163_2 g2163_3 g2163_1 gnd +C1 g2163_2 gnd 2.080806f +C2 g2163_3 gnd 2.080806f +C3 g2163_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2163_3 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2163_2 2.224404 +C9 6 gnd 2.080806f +R7 g2163_2 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g2163_1 2.224404 +.ends + +.subckt netg5770 g5770_3 g5770_2 g5770_1 g5770_0 gnd +C1 g5770_3 gnd 2.080806f +C2 g5770_2 gnd 2.080806f +C3 g5770_1 gnd 2.080806f +C4 g5770_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g5770_0 1 2.224404 +R2 g5770_3 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g5770_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +R8 g5770_2 6 2.224404 +C11 7 gnd 2.080806f +R9 7 g5770_2 2.224404 +R10 g5770_1 7 2.224404 +.ends + +.subckt netg5163 g5163_2 g5163_1 g5163_0 gnd +C1 g5163_2 gnd 2.080806f +C2 g5163_1 gnd 2.080806f +C3 g5163_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5163_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5163_2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g5163_1 2.224404 +.ends + +.subckt netg1401 g1401_1 g1401_0 gnd +C1 g1401_1 gnd 2.080806f +C2 g1401_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1401_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g1401_1 2.224404 +.ends + +.subckt netg2980 g2980_2 g2980_0 g2980_3 g2980_1 gnd +C1 g2980_2 gnd 2.080806f +C2 g2980_0 gnd 2.080806f +C3 g2980_3 gnd 2.080806f +C4 g2980_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2980_0 2.224404 +R2 g2980_1 1 2.224404 +R3 g2980_2 1 2.224404 +C6 2 gnd 2.080806f +R4 2 g2980_2 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +R9 g2980_3 6 2.224404 +.ends + +.subckt netg1577 g1577_0 g1577_1 gnd +C1 g1577_0 gnd 2.080806f +C2 g1577_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1577_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g1577_1 8 2.224404 +.ends + +.subckt netg835 g835_1 g835_4 g835_3 g835_2 g835_6 g835_5 g835_0 gnd +C1 g835_1 gnd 2.080806f +C2 g835_4 gnd 2.080806f +C3 g835_3 gnd 2.080806f +C4 g835_2 gnd 2.080806f +C5 g835_6 gnd 2.080806f +C6 g835_5 gnd 2.080806f +C7 g835_0 gnd 2.080806f +.ends + +.subckt netg3489 g3489_0 g3489_1 gnd +C1 g3489_0 gnd 2.080806f +C2 g3489_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3489_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g3489_1 2.224404 +.ends + +.subckt netg4532 g4532_5 g4532_4 g4532_2 g4532_6 g4532_1 g4532_3 g4532_0 gnd +C1 g4532_5 gnd 2.080806f +C2 g4532_4 gnd 2.080806f +C3 g4532_2 gnd 2.080806f +C4 g4532_6 gnd 2.080806f +C5 g4532_1 gnd 2.080806f +C6 g4532_3 gnd 2.080806f +C7 g4532_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g4532_0 2.224404 +R2 1 g4532_1 2.224404 +C9 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g4532_6 2 2.224404 +C10 3 gnd 2.080806f +R5 g4532_0 3 2.224404 +C11 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g4532_5 2.224404 +R8 g4532_5 g4532_3 2.224404 +C12 5 gnd 2.080806f +R9 4 5 2.224404 +R10 5 g4532_2 2.224404 +R11 g4532_2 g4532_4 2.224404 +.ends + +.subckt netg1902 g1902_1 g1902_0 gnd +C1 g1902_1 gnd 2.080806f +C2 g1902_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1902_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g1902_1 9 2.224404 +.ends + +.subckt netg6563 g6563_1 g6563_0 gnd +C1 g6563_1 gnd 2.080806f +C2 g6563_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6563_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 g6563_1 9 2.224404 +.ends + +.subckt netg4622 g4622_0 g4622_1 gnd +C1 g4622_0 gnd 2.080806f +C2 g4622_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4622_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g4622_1 2.224404 +.ends + +.subckt netg3008 g3008_1 g3008_4 g3008_2 g3008_3 g3008_0 gnd +C1 g3008_1 gnd 2.080806f +C2 g3008_4 gnd 2.080806f +C3 g3008_2 gnd 2.080806f +C4 g3008_3 gnd 2.080806f +C5 g3008_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g3008_0 1 2.224404 +R2 1 g3008_4 2.224404 +C7 2 gnd 2.080806f +R3 g3008_4 2 2.224404 +R4 2 g3008_2 2.224404 +C8 3 gnd 2.080806f +R5 g3008_4 3 2.224404 +C9 4 gnd 2.080806f +R6 3 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g3008_1 2.224404 +C12 7 gnd 2.080806f +R10 g3008_1 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g3008_3 2.224404 +.ends + +.subckt netg4623 g4623_0 g4623_1 gnd +C1 g4623_0 gnd 2.080806f +C2 g4623_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4623_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g4623_1 2.224404 +.ends + +.subckt netg6833 g6833_3 g6833_2 g6833_0 g6833_1 gnd +C1 g6833_3 gnd 2.080806f +C2 g6833_2 gnd 2.080806f +C3 g6833_0 gnd 2.080806f +C4 g6833_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g6833_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g6833_1 6 2.224404 +C11 7 gnd 2.080806f +R8 g6833_1 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +R10 8 g6833_2 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g6833_3 2.224404 +.ends + +.subckt netg78 g78_0 g78_1 gnd +C1 g78_0 gnd 2.080806f +C2 g78_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g78_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g78_1 9 2.224404 +.ends + +.subckt netg1521 g1521_3 g1521_1 g1521_2 g1521_5 g1521_4 g1521_0 gnd +C1 g1521_3 gnd 2.080806f +C2 g1521_1 gnd 2.080806f +C3 g1521_2 gnd 2.080806f +C4 g1521_5 gnd 2.080806f +C5 g1521_4 gnd 2.080806f +C6 g1521_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1521_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1521_1 2.224404 +C9 3 gnd 2.080806f +R4 3 g1521_0 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g1521_4 4 2.224404 +C11 5 gnd 2.080806f +R7 g1521_0 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g1521_5 2.224404 +R10 g1521_5 g1521_2 2.224404 +C13 7 gnd 2.080806f +R11 g1521_2 7 2.224404 +C14 8 gnd 2.080806f +R12 7 8 2.224404 +R13 8 g1521_3 2.224404 +.ends + +.subckt netg5802 g5802_3 g5802_1 g5802_2 g5802_0 gnd +C1 g5802_3 gnd 2.080806f +C2 g5802_1 gnd 2.080806f +C3 g5802_2 gnd 2.080806f +C4 g5802_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g5802_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g5802_3 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5802_2 3 2.224404 +C8 4 gnd 2.080806f +R6 g5802_0 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g5802_1 2.224404 +.ends + +.subckt netx511 x511_0 x511_1 gnd +C1 x511_0 gnd 2.080806f +C2 x511_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x511_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 x511_1 2.224404 +.ends + +.subckt netg1892 g1892_1 g1892_0 gnd +C1 g1892_1 gnd 2.080806f +C2 g1892_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1892_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g1892_1 2.224404 +.ends + +.subckt netg4624 g4624_1 g4624_0 gnd +C1 g4624_1 gnd 2.080806f +C2 g4624_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4624_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g4624_1 2.224404 +.ends + +.subckt netg3994 g3994_1 g3994_4 g3994_0 g3994_2 g3994_3 gnd +C1 g3994_1 gnd 2.080806f +C2 g3994_4 gnd 2.080806f +C3 g3994_0 gnd 2.080806f +C4 g3994_2 gnd 2.080806f +C5 g3994_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g3994_0 1 2.224404 +R2 1 g3994_1 2.224404 +C7 2 gnd 2.080806f +R3 2 g3994_0 2.224404 +C8 3 gnd 2.080806f +R4 3 2 2.224404 +R5 3 g3994_4 2.224404 +R6 g3994_3 g3994_4 2.224404 +C9 4 gnd 2.080806f +R7 g3994_4 4 2.224404 +C10 5 gnd 2.080806f +R8 4 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +R10 6 g3994_2 2.224404 +.ends + +.subckt netg1507 g1507_1 g1507_0 gnd +C1 g1507_1 gnd 2.080806f +C2 g1507_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1507_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 g1507_1 9 2.224404 +.ends + +.subckt netg2984 g2984_1 g2984_3 g2984_0 g2984_4 g2984_2 gnd +C1 g2984_1 gnd 2.080806f +C2 g2984_3 gnd 2.080806f +C3 g2984_0 gnd 2.080806f +C4 g2984_4 gnd 2.080806f +C5 g2984_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g2984_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2984_1 2.224404 +C8 3 gnd 2.080806f +R4 g2984_0 3 2.224404 +C9 4 gnd 2.080806f +R5 3 4 2.224404 +C10 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g2984_3 2.224404 +C11 6 gnd 2.080806f +R8 g2984_3 6 2.224404 +C12 7 gnd 2.080806f +R9 6 7 2.224404 +C13 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g2984_2 2.224404 +C14 9 gnd 2.080806f +R12 g2984_2 9 2.224404 +R13 9 g2984_4 2.224404 +.ends + +.subckt netg2071 g2071_2 g2071_0 g2071_1 g2071_3 gnd +C1 g2071_2 gnd 2.080806f +C2 g2071_0 gnd 2.080806f +C3 g2071_1 gnd 2.080806f +C4 g2071_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2071_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2071_1 2.224404 +R5 g2071_3 3 2.224404 +C8 4 gnd 2.080806f +R6 g2071_1 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g2071_2 2.224404 +.ends + +.subckt netg3675 g3675_1 g3675_0 g3675_3 g3675_6 g3675_2 g3675_5 g3675_4 gnd +C1 g3675_1 gnd 2.080806f +C2 g3675_0 gnd 2.080806f +C3 g3675_3 gnd 2.080806f +C4 g3675_6 gnd 2.080806f +C5 g3675_2 gnd 2.080806f +C6 g3675_5 gnd 2.080806f +C7 g3675_4 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g3675_0 2.224404 +R2 g3675_5 1 2.224404 +C9 2 gnd 2.080806f +R3 2 g3675_5 2.224404 +R4 g3675_3 2 2.224404 +R5 g3675_3 g3675_4 2.224404 +C10 3 gnd 2.080806f +R6 g3675_4 3 2.224404 +C11 4 gnd 2.080806f +R7 3 4 2.224404 +C12 5 gnd 2.080806f +R8 4 5 2.224404 +R9 5 g3675_6 2.224404 +C13 6 gnd 2.080806f +R10 g3675_6 6 2.224404 +R11 6 g3675_1 2.224404 +C14 7 gnd 2.080806f +R12 g3675_1 7 2.224404 +C15 8 gnd 2.080806f +R13 7 8 2.224404 +C16 9 gnd 2.080806f +R14 8 9 2.224404 +R15 g3675_2 9 2.224404 +.ends + +.subckt netg1446 g1446_2 g1446_5 g1446_0 g1446_1 g1446_4 g1446_3 gnd +C1 g1446_2 gnd 2.080806f +C2 g1446_5 gnd 2.080806f +C3 g1446_0 gnd 2.080806f +C4 g1446_1 gnd 2.080806f +C5 g1446_4 gnd 2.080806f +C6 g1446_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1446_0 1 2.224404 +R2 1 g1446_2 2.224404 +R3 g1446_2 g1446_4 2.224404 +C8 2 gnd 2.080806f +R4 2 g1446_2 2.224404 +R5 g1446_3 2 2.224404 +C9 3 gnd 2.080806f +R6 3 g1446_3 2.224404 +C10 4 gnd 2.080806f +R7 4 3 2.224404 +C11 5 gnd 2.080806f +R8 5 4 2.224404 +C12 6 gnd 2.080806f +R9 6 5 2.224404 +R10 g1446_5 6 2.224404 +C13 7 gnd 2.080806f +R11 7 g1446_5 2.224404 +R12 g1446_1 7 2.224404 +.ends + +.subckt netg3654 g3654_8 g3654_7 g3654_10 g3654_4 g3654_9 g3654_0 g3654_2 g3654_3 g3654_1 g3654_6 g3654_5 gnd +C1 g3654_8 gnd 2.080806f +C2 g3654_7 gnd 2.080806f +C3 g3654_10 gnd 2.080806f +C4 g3654_4 gnd 2.080806f +C5 g3654_9 gnd 2.080806f +C6 g3654_0 gnd 2.080806f +C7 g3654_2 gnd 2.080806f +C8 g3654_3 gnd 2.080806f +C9 g3654_1 gnd 2.080806f +C10 g3654_6 gnd 2.080806f +C11 g3654_5 gnd 2.080806f +R1 g3654_3 g3654_0 2.224404 +C12 1 gnd 2.080806f +R2 1 g3654_3 2.224404 +R3 g3654_4 1 2.224404 +C13 2 gnd 2.080806f +R4 2 g3654_4 2.224404 +R5 g3654_2 2 2.224404 +R6 g3654_6 g3654_2 2.224404 +R7 g3654_5 g3654_6 2.224404 +R8 g3654_9 2 2.224404 +C14 3 gnd 2.080806f +R9 3 g3654_9 2.224404 +R10 g3654_1 3 2.224404 +R11 g3654_1 g3654_7 2.224404 +C15 4 gnd 2.080806f +R12 g3654_7 4 2.224404 +R13 4 g3654_10 2.224404 +C16 5 gnd 2.080806f +R14 5 g3654_1 2.224404 +C17 6 gnd 2.080806f +R15 6 5 2.224404 +R16 g3654_8 6 2.224404 +.ends + +.subckt netg92 g92_1 g92_0 gnd +C1 g92_1 gnd 2.080806f +C2 g92_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g92_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 g92_1 2.224404 +.ends + +.subckt netg7533 g7533_0 g7533_1 gnd +C1 g7533_0 gnd 2.080806f +C2 g7533_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7533_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g7533_1 9 2.224404 +.ends + +.subckt netg2874 g2874_1 g2874_3 g2874_2 g2874_0 g2874_4 gnd +C1 g2874_1 gnd 2.080806f +C2 g2874_3 gnd 2.080806f +C3 g2874_2 gnd 2.080806f +C4 g2874_0 gnd 2.080806f +C5 g2874_4 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g2874_0 2.224404 +R2 1 g2874_4 2.224404 +C7 2 gnd 2.080806f +R3 g2874_4 2 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g2874_1 2.224404 +C9 4 gnd 2.080806f +R6 4 g2874_1 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g2874_3 2.224404 +R10 g2874_2 g2874_3 2.224404 +.ends + +.subckt netg1199 g1199_2 g1199_0 g1199_5 g1199_3 g1199_1 g1199_6 g1199_4 gnd +C1 g1199_2 gnd 2.080806f +C2 g1199_0 gnd 2.080806f +C3 g1199_5 gnd 2.080806f +C4 g1199_3 gnd 2.080806f +C5 g1199_1 gnd 2.080806f +C6 g1199_6 gnd 2.080806f +C7 g1199_4 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g1199_0 1 2.224404 +R2 1 g1199_3 2.224404 +C9 2 gnd 2.080806f +R3 g1199_0 2 2.224404 +R4 2 g1199_6 2.224404 +R5 2 g1199_5 2.224404 +C10 3 gnd 2.080806f +R6 3 g1199_3 2.224404 +C11 4 gnd 2.080806f +R7 4 3 2.224404 +R8 g1199_1 4 2.224404 +C12 5 gnd 2.080806f +R9 g1199_6 5 2.224404 +C13 6 gnd 2.080806f +R10 5 6 2.224404 +R11 g1199_2 6 2.224404 +C14 7 gnd 2.080806f +R12 7 g1199_1 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +R14 g1199_4 8 2.224404 +.ends + +.subckt netg1586 g1586_1 g1586_0 gnd +C1 g1586_1 gnd 2.080806f +C2 g1586_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1586_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g1586_1 9 2.224404 +.ends + +.subckt netg1403 g1403_0 g1403_1 gnd +C1 g1403_0 gnd 2.080806f +C2 g1403_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1403_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g1403_1 9 2.224404 +.ends + +.subckt netg107 g107_1 g107_0 gnd +C1 g107_1 gnd 2.080806f +C2 g107_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g107_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 g107_1 9 2.224404 +.ends + +.subckt netg1097 g1097_1 g1097_0 gnd +C1 g1097_1 gnd 2.080806f +C2 g1097_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1097_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g1097_1 9 2.224404 +.ends + +.subckt netg2885 g2885_2 g2885_4 g2885_1 g2885_3 g2885_0 gnd +C1 g2885_2 gnd 2.080806f +C2 g2885_4 gnd 2.080806f +C3 g2885_1 gnd 2.080806f +C4 g2885_3 gnd 2.080806f +C5 g2885_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g2885_0 2.224404 +R2 1 g2885_2 2.224404 +C7 2 gnd 2.080806f +R3 g2885_0 2 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g2885_3 2.224404 +C9 4 gnd 2.080806f +R6 g2885_3 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g2885_4 2.224404 +C11 6 gnd 2.080806f +R9 6 1 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +R11 g2885_1 7 2.224404 +.ends + +.subckt netx492 x492_1 x492_0 gnd +C1 x492_1 gnd 2.080806f +C2 x492_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x492_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 9 x492_1 2.224404 +.ends + +.subckt netg6677 g6677_2 g6677_1 g6677_3 g6677_4 g6677_0 gnd +C1 g6677_2 gnd 2.080806f +C2 g6677_1 gnd 2.080806f +C3 g6677_3 gnd 2.080806f +C4 g6677_4 gnd 2.080806f +C5 g6677_0 gnd 2.080806f +R1 g6677_4 g6677_0 2.224404 +C6 1 gnd 2.080806f +R2 g6677_4 1 2.224404 +C7 2 gnd 2.080806f +R3 2 1 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g6677_2 3 2.224404 +C9 4 gnd 2.080806f +R6 g6677_2 4 2.224404 +R7 g6677_3 4 2.224404 +C10 5 gnd 2.080806f +R8 g6677_0 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g6677_1 2.224404 +.ends + +.subckt netg5205 g5205_1 g5205_2 g5205_0 gnd +C1 g5205_1 gnd 2.080806f +C2 g5205_2 gnd 2.080806f +C3 g5205_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5205_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g5205_2 8 2.224404 +R10 g5205_1 g5205_2 2.224404 +.ends + +.subckt netg4742 g4742_5 g4742_3 g4742_4 g4742_2 g4742_0 g4742_6 g4742_1 gnd +C1 g4742_5 gnd 2.080806f +C2 g4742_3 gnd 2.080806f +C3 g4742_4 gnd 2.080806f +C4 g4742_2 gnd 2.080806f +C5 g4742_0 gnd 2.080806f +C6 g4742_6 gnd 2.080806f +C7 g4742_1 gnd 2.080806f +R1 g4742_1 g4742_0 2.224404 +C8 1 gnd 2.080806f +R2 g4742_0 1 2.224404 +C9 2 gnd 2.080806f +R3 1 2 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g4742_5 4 2.224404 +R7 g4742_2 g4742_5 2.224404 +R8 g4742_3 g4742_2 2.224404 +R9 g4742_6 g4742_3 2.224404 +C12 5 gnd 2.080806f +R10 5 g4742_6 2.224404 +R11 g4742_4 5 2.224404 +.ends + +.subckt netg94 g94_1 g94_0 gnd +C1 g94_1 gnd 2.080806f +C2 g94_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g94_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +R10 g94_1 9 2.224404 +.ends + +.subckt netg1565 g1565_0 g1565_2 g1565_4 g1565_5 g1565_3 gnd +C1 g1565_0 gnd 2.080806f +C2 g1565_2 gnd 2.080806f +C3 g1565_4 gnd 2.080806f +C4 g1565_5 gnd 2.080806f +C5 g1565_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g1565_0 1 2.224404 +R2 1 g1565_5 2.224404 +C7 2 gnd 2.080806f +R3 2 g1565_0 2.224404 +C8 3 gnd 2.080806f +R4 3 2 2.224404 +C9 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g1565_2 4 2.224404 +C10 5 gnd 2.080806f +R7 5 g1565_5 2.224404 +C11 6 gnd 2.080806f +R8 6 5 2.224404 +C12 7 gnd 2.080806f +R9 7 6 2.224404 +R10 g1565_4 7 2.224404 +C13 8 gnd 2.080806f +R11 g1565_4 8 2.224404 +R12 8 g1565_3 2.224404 +.ends + +.subckt netg5493 g5493_0 g5493_2 g5493_1 gnd +C1 g5493_0 gnd 2.080806f +C2 g5493_2 gnd 2.080806f +C3 g5493_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5493_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5493_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5493_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g5493_1 9 2.224404 +.ends + +.subckt netg767 g767_4 g767_2 g767_0 g767_1 g767_3 gnd +C1 g767_4 gnd 2.080806f +C2 g767_2 gnd 2.080806f +C3 g767_0 gnd 2.080806f +C4 g767_1 gnd 2.080806f +C5 g767_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g767_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g767_4 2 2.224404 +C8 3 gnd 2.080806f +R4 g767_4 3 2.224404 +R5 3 g767_1 2.224404 +C9 4 gnd 2.080806f +R6 g767_0 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +C12 7 gnd 2.080806f +R9 6 7 2.224404 +R10 g767_3 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +C14 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g767_2 2.224404 +.ends + +.subckt netg1795 g1795_2 g1795_3 g1795_1 gnd +C1 g1795_2 gnd 2.080806f +C2 g1795_3 gnd 2.080806f +C3 g1795_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1795_3 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1795_2 2.224404 +C6 3 gnd 2.080806f +R4 g1795_2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g1795_1 2.224404 +.ends + +.subckt netg5178 g5178_1 g5178_0 g5178_2 gnd +C1 g5178_1 gnd 2.080806f +C2 g5178_0 gnd 2.080806f +C3 g5178_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5178_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +R10 g5178_1 9 2.224404 +R11 g5178_1 g5178_2 2.224404 +.ends + +.subckt netg2959 g2959_1 g2959_3 g2959_0 g2959_2 gnd +C1 g2959_1 gnd 2.080806f +C2 g2959_3 gnd 2.080806f +C3 g2959_0 gnd 2.080806f +C4 g2959_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2959_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2959_2 2 2.224404 +C7 3 gnd 2.080806f +R4 3 g2959_2 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g2959_1 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g2959_3 2.224404 +.ends + +.subckt netg1766 g1766_3 g1766_2 g1766_1 g1766_0 gnd +C1 g1766_3 gnd 2.080806f +C2 g1766_2 gnd 2.080806f +C3 g1766_1 gnd 2.080806f +C4 g1766_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1766_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1766_3 4 2.224404 +C9 5 gnd 2.080806f +R6 5 g1766_0 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g1766_2 2.224404 +C14 10 gnd 2.080806f +R12 10 8 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +R14 g1766_1 11 2.224404 +.ends + +.subckt netg418 g418_3 g418_4 g418_2 g418_0 gnd +C1 g418_3 gnd 2.080806f +C2 g418_4 gnd 2.080806f +C3 g418_2 gnd 2.080806f +C4 g418_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g418_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g418_2 5 2.224404 +C10 6 gnd 2.080806f +R7 6 g418_2 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +R9 g418_4 7 2.224404 +C12 8 gnd 2.080806f +R10 8 g418_4 2.224404 +R11 g418_3 8 2.224404 +.ends + +.subckt netg5395 g5395_0 g5395_4 g5395_2 g5395_1 g5395_5 g5395_3 g5395_6 g5395_8 g5395_7 gnd +C1 g5395_0 gnd 2.080806f +C2 g5395_4 gnd 2.080806f +C3 g5395_2 gnd 2.080806f +C4 g5395_1 gnd 2.080806f +C5 g5395_5 gnd 2.080806f +C6 g5395_3 gnd 2.080806f +C7 g5395_6 gnd 2.080806f +C8 g5395_8 gnd 2.080806f +C9 g5395_7 gnd 2.080806f +R1 g5395_0 g5395_2 2.224404 +R2 g5395_1 g5395_2 2.224404 +R3 g5395_2 g5395_5 2.224404 +C10 1 gnd 2.080806f +R4 g5395_0 1 2.224404 +R5 1 g5395_8 2.224404 +R6 g5395_4 1 2.224404 +C11 2 gnd 2.080806f +R7 2 g5395_8 2.224404 +R8 2 g5395_7 2.224404 +C12 3 gnd 2.080806f +R9 g5395_7 3 2.224404 +C13 4 gnd 2.080806f +R10 3 4 2.224404 +C14 5 gnd 2.080806f +R11 4 5 2.224404 +R12 5 g5395_6 2.224404 +C15 6 gnd 2.080806f +R13 5 6 2.224404 +R14 6 g5395_3 2.224404 +.ends + +.subckt netg1295 g1295_4 g1295_2 g1295_1 g1295_6 g1295_0 g1295_5 g1295_3 gnd +C1 g1295_4 gnd 2.080806f +C2 g1295_2 gnd 2.080806f +C3 g1295_1 gnd 2.080806f +C4 g1295_6 gnd 2.080806f +C5 g1295_0 gnd 2.080806f +C6 g1295_5 gnd 2.080806f +C7 g1295_3 gnd 2.080806f +.ends + +.subckt netx542 x542_1 x542_0 gnd +C1 x542_1 gnd 2.080806f +C2 x542_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 x542_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +R11 x542_1 10 2.224404 +.ends + +.subckt netg1778 g1778_0 g1778_3 g1778_1 g1778_2 gnd +C1 g1778_0 gnd 2.080806f +C2 g1778_3 gnd 2.080806f +C3 g1778_1 gnd 2.080806f +C4 g1778_2 gnd 2.080806f +R1 g1778_3 g1778_0 2.224404 +C5 1 gnd 2.080806f +R2 g1778_3 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g1778_1 5 2.224404 +C10 6 gnd 2.080806f +R8 6 g1778_1 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +R13 g1778_2 10 2.224404 +.ends + +.subckt netg2038 g2038_0 g2038_3 g2038_5 g2038_4 g2038_2 g2038_1 gnd +C1 g2038_0 gnd 2.080806f +C2 g2038_3 gnd 2.080806f +C3 g2038_5 gnd 2.080806f +C4 g2038_4 gnd 2.080806f +C5 g2038_2 gnd 2.080806f +C6 g2038_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2038_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2038_3 2 2.224404 +C9 3 gnd 2.080806f +R4 g2038_0 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g2038_4 2.224404 +C11 5 gnd 2.080806f +R7 1 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g2038_5 2.224404 +C14 8 gnd 2.080806f +R11 g2038_5 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g2038_1 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +R15 g2038_2 10 2.224404 +.ends + +.subckt netg734 g734_1 g734_5 g734_4 g734_2 g734_0 gnd +C1 g734_1 gnd 2.080806f +C2 g734_5 gnd 2.080806f +C3 g734_4 gnd 2.080806f +C4 g734_2 gnd 2.080806f +C5 g734_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g734_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g734_1 3 2.224404 +R5 3 g734_2 2.224404 +C9 4 gnd 2.080806f +R6 g734_0 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g734_4 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g734_5 2.224404 +.ends + +.subckt netg1269 g1269_2 g1269_4 g1269_5 g1269_3 g1269_0 g1269_1 gnd +C1 g1269_2 gnd 2.080806f +C2 g1269_4 gnd 2.080806f +C3 g1269_5 gnd 2.080806f +C4 g1269_3 gnd 2.080806f +C5 g1269_0 gnd 2.080806f +C6 g1269_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1269_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1269_2 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g1269_5 2.224404 +C11 5 gnd 2.080806f +R7 g1269_5 5 2.224404 +R8 5 g1269_3 2.224404 +C12 6 gnd 2.080806f +R9 g1269_3 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g1269_4 2.224404 +R13 g1269_4 g1269_1 2.224404 +.ends + +.subckt netg1608 g1608_3 g1608_0 g1608_1 g1608_2 gnd +C1 g1608_3 gnd 2.080806f +C2 g1608_0 gnd 2.080806f +C3 g1608_1 gnd 2.080806f +C4 g1608_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1608_0 2.224404 +R2 1 g1608_3 2.224404 +C6 2 gnd 2.080806f +R3 g1608_0 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +R10 g1608_2 8 2.224404 +R11 g1608_2 g1608_1 2.224404 +.ends + +.subckt netg1957 g1957_0 g1957_1 g1957_2 gnd +C1 g1957_0 gnd 2.080806f +C2 g1957_1 gnd 2.080806f +C3 g1957_2 gnd 2.080806f +R1 g1957_2 g1957_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g1957_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g1957_1 9 2.224404 +.ends + +.subckt netg1799 g1799_1 g1799_0 g1799_2 g1799_3 gnd +C1 g1799_1 gnd 2.080806f +C2 g1799_0 gnd 2.080806f +C3 g1799_2 gnd 2.080806f +C4 g1799_3 gnd 2.080806f +R1 g1799_3 g1799_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g1799_3 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +R8 g1799_1 6 2.224404 +C11 7 gnd 2.080806f +R9 7 g1799_1 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +R11 g1799_2 8 2.224404 +.ends + +.subckt netg7535 g7535_1 g7535_0 gnd +C1 g7535_1 gnd 2.080806f +C2 g7535_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7535_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +R11 g7535_1 10 2.224404 +.ends + +.subckt netg1624 g1624_1 g1624_2 g1624_3 g1624_0 gnd +C1 g1624_1 gnd 2.080806f +C2 g1624_2 gnd 2.080806f +C3 g1624_3 gnd 2.080806f +C4 g1624_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1624_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1624_2 3 2.224404 +C8 4 gnd 2.080806f +R5 g1624_0 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g1624_1 2.224404 +C12 8 gnd 2.080806f +R10 8 g1624_2 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g1624_3 2.224404 +.ends + +.subckt netg106 g106_0 g106_1 gnd +C1 g106_0 gnd 2.080806f +C2 g106_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g106_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +R11 10 g106_1 2.224404 +.ends + +.subckt netg1913 g1913_1 g1913_0 gnd +C1 g1913_1 gnd 2.080806f +C2 g1913_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1913_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +R11 10 g1913_1 2.224404 +.ends + +.subckt netg2029 g2029_3 g2029_2 g2029_1 g2029_0 gnd +C1 g2029_3 gnd 2.080806f +C2 g2029_2 gnd 2.080806f +C3 g2029_1 gnd 2.080806f +C4 g2029_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2029_0 2.224404 +R2 g2029_2 1 2.224404 +C6 2 gnd 2.080806f +R3 g2029_0 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g2029_1 2.224404 +C11 7 gnd 2.080806f +R9 7 g2029_1 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g2029_3 2.224404 +.ends + +.subckt netg2322 g2322_2 g2322_0 g2322_1 g2322_3 gnd +C1 g2322_2 gnd 2.080806f +C2 g2322_0 gnd 2.080806f +C3 g2322_1 gnd 2.080806f +C4 g2322_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2322_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g2322_3 2.224404 +R8 g2322_3 g2322_1 2.224404 +C11 7 gnd 2.080806f +R9 g2322_1 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g2322_2 2.224404 +.ends + +.subckt netg4508 g4508_8 g4508_0 g4508_9 g4508_5 g4508_10 g4508_7 g4508_6 g4508_3 g4508_2 g4508_1 g4508_4 gnd +C1 g4508_8 gnd 2.080806f +C2 g4508_0 gnd 2.080806f +C3 g4508_9 gnd 2.080806f +C4 g4508_5 gnd 2.080806f +C5 g4508_10 gnd 2.080806f +C6 g4508_7 gnd 2.080806f +C7 g4508_6 gnd 2.080806f +C8 g4508_3 gnd 2.080806f +C9 g4508_2 gnd 2.080806f +C10 g4508_1 gnd 2.080806f +C11 g4508_4 gnd 2.080806f +C12 1 gnd 2.080806f +R1 1 g4508_0 2.224404 +R2 1 g4508_7 2.224404 +C13 2 gnd 2.080806f +R3 g4508_0 2 2.224404 +R4 g4508_8 2 2.224404 +R5 g4508_10 1 2.224404 +C14 3 gnd 2.080806f +R6 g4508_7 3 2.224404 +R7 3 g4508_2 2.224404 +C15 4 gnd 2.080806f +R8 g4508_0 4 2.224404 +R9 4 g4508_9 2.224404 +R10 g4508_9 g4508_5 2.224404 +C16 5 gnd 2.080806f +R11 5 g4508_0 2.224404 +C17 6 gnd 2.080806f +R12 6 5 2.224404 +R13 g4508_6 6 2.224404 +C18 7 gnd 2.080806f +R14 7 g4508_6 2.224404 +R15 g4508_1 7 2.224404 +R16 g4508_3 7 2.224404 +C19 8 gnd 2.080806f +R17 8 g4508_6 2.224404 +R18 g4508_4 8 2.224404 +.ends + +.subckt netg4669 g4669_0 g4669_2 g4669_5 g4669_3 g4669_4 g4669_1 g4669_6 gnd +C1 g4669_0 gnd 2.080806f +C2 g4669_2 gnd 2.080806f +C3 g4669_5 gnd 2.080806f +C4 g4669_3 gnd 2.080806f +C5 g4669_4 gnd 2.080806f +C6 g4669_1 gnd 2.080806f +C7 g4669_6 gnd 2.080806f +R1 g4669_6 g4669_0 2.224404 +C8 1 gnd 2.080806f +R2 1 g4669_6 2.224404 +R3 g4669_3 1 2.224404 +R4 g4669_4 1 2.224404 +C9 2 gnd 2.080806f +R5 g4669_3 2 2.224404 +R6 g4669_5 2 2.224404 +C10 3 gnd 2.080806f +R7 3 g4669_4 2.224404 +C11 4 gnd 2.080806f +R8 4 3 2.224404 +C12 5 gnd 2.080806f +R9 4 5 2.224404 +C13 6 gnd 2.080806f +R10 5 6 2.224404 +R11 6 g4669_1 2.224404 +C14 7 gnd 2.080806f +R12 g4669_1 7 2.224404 +C15 8 gnd 2.080806f +R13 7 8 2.224404 +R14 8 g4669_2 2.224404 +.ends + +.subckt netg6046 g6046_1 g6046_0 gnd +C1 g6046_1 gnd 2.080806f +C2 g6046_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6046_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +R11 g6046_1 10 2.224404 +.ends + +.subckt netg3928 g3928_4 g3928_3 g3928_7 g3928_6 g3928_0 g3928_1 g3928_2 g3928_5 gnd +C1 g3928_4 gnd 2.080806f +C2 g3928_3 gnd 2.080806f +C3 g3928_7 gnd 2.080806f +C4 g3928_6 gnd 2.080806f +C5 g3928_0 gnd 2.080806f +C6 g3928_1 gnd 2.080806f +C7 g3928_2 gnd 2.080806f +C8 g3928_5 gnd 2.080806f +R1 g3928_0 g3928_1 2.224404 +C9 1 gnd 2.080806f +R2 g3928_0 1 2.224404 +R3 g3928_3 1 2.224404 +C10 2 gnd 2.080806f +R4 g3928_1 2 2.224404 +R5 2 g3928_6 2.224404 +C11 3 gnd 2.080806f +R6 3 g3928_3 2.224404 +C12 4 gnd 2.080806f +R7 4 3 2.224404 +C13 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g3928_5 5 2.224404 +R10 g3928_2 5 2.224404 +C14 6 gnd 2.080806f +R11 1 6 2.224404 +C15 7 gnd 2.080806f +R12 6 7 2.224404 +R13 7 g3928_4 2.224404 +C16 8 gnd 2.080806f +R14 8 g3928_4 2.224404 +C17 9 gnd 2.080806f +R15 9 8 2.224404 +R16 g3928_7 9 2.224404 +.ends + +.subckt netg3020 g3020_3 g3020_1 g3020_0 g3020_2 gnd +C1 g3020_3 gnd 2.080806f +C2 g3020_1 gnd 2.080806f +C3 g3020_0 gnd 2.080806f +C4 g3020_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3020_0 1 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g3020_1 3 2.224404 +C8 4 gnd 2.080806f +R5 4 g3020_1 2.224404 +R6 g3020_3 4 2.224404 +C9 5 gnd 2.080806f +R7 5 g3020_3 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +R13 g3020_2 10 2.224404 +.ends + +.subckt netg4324 g4324_0 g4324_2 g4324_3 g4324_1 gnd +C1 g4324_0 gnd 2.080806f +C2 g4324_2 gnd 2.080806f +C3 g4324_3 gnd 2.080806f +C4 g4324_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4324_0 1 2.224404 +R2 1 g4324_1 2.224404 +C6 2 gnd 2.080806f +R3 2 g4324_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g4324_3 3 2.224404 +C8 4 gnd 2.080806f +R6 g4324_3 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +R13 g4324_2 10 2.224404 +.ends + +.subckt netg6704 g6704_1 g6704_0 gnd +C1 g6704_1 gnd 2.080806f +C2 g6704_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6704_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +R11 g6704_1 10 2.224404 +.ends + +.subckt netg1117 g1117_0 g1117_1 gnd +C1 g1117_0 gnd 2.080806f +C2 g1117_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1117_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +R11 10 g1117_1 2.224404 +.ends + +.subckt netg5381 g5381_0 g5381_2 g5381_3 g5381_1 gnd +C1 g5381_0 gnd 2.080806f +C2 g5381_2 gnd 2.080806f +C3 g5381_3 gnd 2.080806f +C4 g5381_1 gnd 2.080806f +R1 g5381_0 g5381_3 2.224404 +C5 1 gnd 2.080806f +R2 1 g5381_3 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g5381_1 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +R11 g5381_2 8 2.224404 +.ends + +.subckt netg1138 g1138_2 g1138_1 g1138_5 g1138_3 g1138_4 g1138_0 gnd +C1 g1138_2 gnd 2.080806f +C2 g1138_1 gnd 2.080806f +C3 g1138_5 gnd 2.080806f +C4 g1138_3 gnd 2.080806f +C5 g1138_4 gnd 2.080806f +C6 g1138_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1138_0 2.224404 +R2 g1138_3 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1138_4 2.224404 +C10 4 gnd 2.080806f +R6 4 g1138_4 2.224404 +C11 5 gnd 2.080806f +R7 5 4 2.224404 +C12 6 gnd 2.080806f +R8 6 5 2.224404 +R9 g1138_5 6 2.224404 +C13 7 gnd 2.080806f +R10 g1138_5 7 2.224404 +R11 g1138_1 7 2.224404 +C14 8 gnd 2.080806f +R12 8 g1138_3 2.224404 +C15 9 gnd 2.080806f +R13 9 8 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +C17 11 gnd 2.080806f +R15 11 10 2.224404 +R16 g1138_2 11 2.224404 +.ends + +.subckt netg6711 g6711_0 g6711_1 gnd +C1 g6711_0 gnd 2.080806f +C2 g6711_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6711_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +R11 g6711_1 10 2.224404 +.ends + +.subckt netg6240 g6240_1 g6240_0 g6240_2 gnd +C1 g6240_1 gnd 2.080806f +C2 g6240_0 gnd 2.080806f +C3 g6240_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6240_0 1 2.224404 +R2 g6240_2 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g6240_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +R12 g6240_1 10 2.224404 +.ends + +.subckt netg2406 g2406_1 g2406_0 g2406_2 gnd +C1 g2406_1 gnd 2.080806f +C2 g2406_0 gnd 2.080806f +C3 g2406_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2406_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2406_2 2.224404 +C6 3 gnd 2.080806f +R4 3 g2406_2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g2406_1 2.224404 +.ends + +.subckt netg3358 g3358_2 g3358_1 g3358_0 gnd +C1 g3358_2 gnd 2.080806f +C2 g3358_1 gnd 2.080806f +C3 g3358_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3358_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g3358_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g3358_1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g3358_2 9 2.224404 +.ends + +.subckt netg5253 g5253_0 g5253_3 g5253_4 g5253_2 g5253_1 gnd +C1 g5253_0 gnd 2.080806f +C2 g5253_3 gnd 2.080806f +C3 g5253_4 gnd 2.080806f +C4 g5253_2 gnd 2.080806f +C5 g5253_1 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g5253_0 2.224404 +R2 g5253_4 1 2.224404 +R3 g5253_4 g5253_1 2.224404 +R4 g5253_3 g5253_4 2.224404 +C7 2 gnd 2.080806f +R5 2 g5253_3 2.224404 +C8 3 gnd 2.080806f +R6 3 2 2.224404 +C9 4 gnd 2.080806f +R7 4 3 2.224404 +C10 5 gnd 2.080806f +R8 5 4 2.224404 +C11 6 gnd 2.080806f +R9 6 5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +R11 g5253_2 7 2.224404 +.ends + +.subckt netg2008 g2008_2 g2008_3 g2008_1 g2008_0 g2008_4 gnd +C1 g2008_2 gnd 2.080806f +C2 g2008_3 gnd 2.080806f +C3 g2008_1 gnd 2.080806f +C4 g2008_0 gnd 2.080806f +C5 g2008_4 gnd 2.080806f +R1 g2008_0 g2008_3 2.224404 +C6 1 gnd 2.080806f +R2 1 g2008_0 2.224404 +C7 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g2008_2 2 2.224404 +C8 3 gnd 2.080806f +R5 g2008_2 3 2.224404 +C9 4 gnd 2.080806f +R6 3 4 2.224404 +R7 g2008_4 4 2.224404 +C10 5 gnd 2.080806f +R8 g2008_3 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +R11 7 g2008_1 2.224404 +.ends + +.subckt netg1820 g1820_0 g1820_3 g1820_1 g1820_2 gnd +C1 g1820_0 gnd 2.080806f +C2 g1820_3 gnd 2.080806f +C3 g1820_1 gnd 2.080806f +C4 g1820_2 gnd 2.080806f +R1 g1820_0 g1820_2 2.224404 +C5 1 gnd 2.080806f +R2 g1820_0 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g1820_1 2.224404 +C11 7 gnd 2.080806f +R9 g1820_1 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g1820_3 2.224404 +.ends + +.subckt netg716 g716_4 g716_1 g716_0 g716_2 g716_3 gnd +C1 g716_4 gnd 2.080806f +C2 g716_1 gnd 2.080806f +C3 g716_0 gnd 2.080806f +C4 g716_2 gnd 2.080806f +C5 g716_3 gnd 2.080806f +R1 g716_3 g716_0 2.224404 +R2 g716_0 g716_4 2.224404 +C6 1 gnd 2.080806f +R3 g716_4 1 2.224404 +C7 2 gnd 2.080806f +R4 1 2 2.224404 +C8 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g716_1 2.224404 +C9 4 gnd 2.080806f +R7 4 g716_1 2.224404 +C10 5 gnd 2.080806f +R8 5 4 2.224404 +C11 6 gnd 2.080806f +R9 6 5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +R12 8 g716_2 2.224404 +.ends + +.subckt netg5955 g5955_0 g5955_1 gnd +C1 g5955_0 gnd 2.080806f +C2 g5955_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5955_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g5955_1 2.224404 +.ends + +.subckt netg4443 g4443_0 g4443_1 g4443_2 gnd +C1 g4443_0 gnd 2.080806f +C2 g4443_1 gnd 2.080806f +C3 g4443_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4443_0 1 2.224404 +R2 1 g4443_1 2.224404 +C5 2 gnd 2.080806f +R3 2 g4443_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g4443_2 2.224404 +.ends + +.subckt netg1396 g1396_1 g1396_0 gnd +C1 g1396_1 gnd 2.080806f +C2 g1396_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1396_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g1396_1 11 2.224404 +.ends + +.subckt netg6340 g6340_3 g6340_0 g6340_2 g6340_1 gnd +C1 g6340_3 gnd 2.080806f +C2 g6340_0 gnd 2.080806f +C3 g6340_2 gnd 2.080806f +C4 g6340_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6340_0 1 2.224404 +R2 1 g6340_3 2.224404 +C6 2 gnd 2.080806f +R3 g6340_3 2 2.224404 +R4 2 g6340_2 2.224404 +C7 3 gnd 2.080806f +R5 g6340_2 3 2.224404 +C8 4 gnd 2.080806f +R6 3 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g6340_1 2.224404 +.ends + +.subckt netg93 g93_0 g93_1 gnd +C1 g93_0 gnd 2.080806f +C2 g93_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g93_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 g93_1 11 2.224404 +.ends + +.subckt netg4380 g4380_2 g4380_1 g4380_0 gnd +C1 g4380_2 gnd 2.080806f +C2 g4380_1 gnd 2.080806f +C3 g4380_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4380_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g4380_2 2.224404 +C10 7 gnd 2.080806f +R8 g4380_2 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g4380_1 2.224404 +.ends + +.subckt netg5166 g5166_0 g5166_1 gnd +C1 g5166_0 gnd 2.080806f +C2 g5166_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5166_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g5166_1 11 2.224404 +.ends + +.subckt netg1675 g1675_2 g1675_3 g1675_0 g1675_1 gnd +C1 g1675_2 gnd 2.080806f +C2 g1675_3 gnd 2.080806f +C3 g1675_0 gnd 2.080806f +C4 g1675_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1675_0 1 2.224404 +R2 1 g1675_1 2.224404 +C6 2 gnd 2.080806f +R3 g1675_1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g1675_3 2.224404 +C9 5 gnd 2.080806f +R7 g1675_3 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g1675_2 2.224404 +.ends + +.subckt netg1895 g1895_0 g1895_1 gnd +C1 g1895_0 gnd 2.080806f +C2 g1895_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1895_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g1895_1 11 2.224404 +.ends + +.subckt netg84 g84_1 g84_0 gnd +C1 g84_1 gnd 2.080806f +C2 g84_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g84_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g84_1 11 2.224404 +.ends + +.subckt netg91 g91_1 g91_0 gnd +C1 g91_1 gnd 2.080806f +C2 g91_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g91_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g91_1 2.224404 +.ends + +.subckt netg1409 g1409_0 g1409_1 gnd +C1 g1409_0 gnd 2.080806f +C2 g1409_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1409_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g1409_1 2.224404 +.ends + +.subckt netg2963 g2963_2 g2963_0 g2963_1 g2963_4 g2963_5 gnd +C1 g2963_2 gnd 2.080806f +C2 g2963_0 gnd 2.080806f +C3 g2963_1 gnd 2.080806f +C4 g2963_4 gnd 2.080806f +C5 g2963_5 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g2963_0 2.224404 +R2 g2963_4 1 2.224404 +C7 2 gnd 2.080806f +R3 2 g2963_0 2.224404 +C8 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g2963_2 3 2.224404 +C9 4 gnd 2.080806f +R6 4 g2963_2 2.224404 +C10 5 gnd 2.080806f +R7 5 4 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +R9 g2963_5 6 2.224404 +C12 7 gnd 2.080806f +R10 7 g2963_5 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 10 9 2.224404 +R14 g2963_1 10 2.224404 +.ends + +.subckt netg5848 g5848_1 g5848_3 g5848_2 g5848_0 gnd +C1 g5848_1 gnd 2.080806f +C2 g5848_3 gnd 2.080806f +C3 g5848_2 gnd 2.080806f +C4 g5848_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g5848_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5848_2 2 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g5848_1 4 2.224404 +C9 5 gnd 2.080806f +R7 5 g5848_1 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +R13 g5848_3 10 2.224404 +.ends + +.subckt netg5208 g5208_2 g5208_1 g5208_0 gnd +C1 g5208_2 gnd 2.080806f +C2 g5208_1 gnd 2.080806f +C3 g5208_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5208_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5208_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g5208_1 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +R13 g5208_2 11 2.224404 +.ends + +.subckt netg7408 g7408_0 g7408_1 gnd +C1 g7408_0 gnd 2.080806f +C2 g7408_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7408_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g7408_1 2.224404 +.ends + +.subckt netg2798 g2798_0 g2798_1 gnd +C1 g2798_0 gnd 2.080806f +C2 g2798_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2798_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +R16 g2798_1 15 2.224404 +.ends + +.subckt netg2969 g2969_4 g2969_1 g2969_2 g2969_6 g2969_3 g2969_5 gnd +C1 g2969_4 gnd 2.080806f +C2 g2969_1 gnd 2.080806f +C3 g2969_2 gnd 2.080806f +C4 g2969_6 gnd 2.080806f +C5 g2969_3 gnd 2.080806f +C6 g2969_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2969_2 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2969_3 2 2.224404 +C9 3 gnd 2.080806f +R4 3 g2969_3 2.224404 +R5 g2969_5 3 2.224404 +C10 4 gnd 2.080806f +R6 1 4 2.224404 +R7 4 g2969_6 2.224404 +C11 5 gnd 2.080806f +R8 5 g2969_5 2.224404 +C12 6 gnd 2.080806f +R9 6 5 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +R11 g2969_4 7 2.224404 +C14 8 gnd 2.080806f +R12 g2969_4 8 2.224404 +R13 g2969_1 8 2.224404 +.ends + +.subckt netg4485 g4485_2 g4485_5 g4485_0 g4485_4 g4485_1 g4485_3 gnd +C1 g4485_2 gnd 2.080806f +C2 g4485_5 gnd 2.080806f +C3 g4485_0 gnd 2.080806f +C4 g4485_4 gnd 2.080806f +C5 g4485_1 gnd 2.080806f +C6 g4485_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g4485_0 2.224404 +R2 g4485_4 1 2.224404 +C8 2 gnd 2.080806f +R3 g4485_0 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g4485_2 2.224404 +R8 g4485_2 g4485_3 2.224404 +C12 6 gnd 2.080806f +R9 g4485_3 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g4485_5 2.224404 +C15 9 gnd 2.080806f +R13 9 8 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +R15 g4485_1 10 2.224404 +.ends + +.subckt netg5809 g5809_3 g5809_1 g5809_0 g5809_2 gnd +C1 g5809_3 gnd 2.080806f +C2 g5809_1 gnd 2.080806f +C3 g5809_0 gnd 2.080806f +C4 g5809_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g5809_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g5809_2 2.224404 +C11 7 gnd 2.080806f +R8 g5809_2 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g5809_1 2.224404 +R12 g5809_1 g5809_3 2.224404 +.ends + +.subckt netg1919 g1919_1 g1919_0 gnd +C1 g1919_1 gnd 2.080806f +C2 g1919_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1919_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g1919_1 2.224404 +.ends + +.subckt netg5471 g5471_1 g5471_2 g5471_0 gnd +C1 g5471_1 gnd 2.080806f +C2 g5471_2 gnd 2.080806f +C3 g5471_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5471_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5471_2 2.224404 +C6 3 gnd 2.080806f +R4 g5471_2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g5471_1 2.224404 +.ends + +.subckt netg2159 g2159_3 g2159_0 g2159_1 g2159_2 gnd +C1 g2159_3 gnd 2.080806f +C2 g2159_0 gnd 2.080806f +C3 g2159_1 gnd 2.080806f +C4 g2159_2 gnd 2.080806f +R1 g2159_0 g2159_3 2.224404 +C5 1 gnd 2.080806f +R2 g2159_3 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g2159_1 2.224404 +C12 8 gnd 2.080806f +R10 8 g2159_1 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +R12 9 g2159_2 2.224404 +.ends + +.subckt netg828 g828_6 g828_4 g828_3 g828_0 g828_2 g828_5 g828_1 gnd +C1 g828_6 gnd 2.080806f +C2 g828_4 gnd 2.080806f +C3 g828_3 gnd 2.080806f +C4 g828_0 gnd 2.080806f +C5 g828_2 gnd 2.080806f +C6 g828_5 gnd 2.080806f +C7 g828_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g828_0 2.224404 +R2 g828_3 1 2.224404 +R3 g828_2 g828_3 2.224404 +C9 2 gnd 2.080806f +R4 2 g828_3 2.224404 +C10 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g828_6 3 2.224404 +R7 g828_4 g828_6 2.224404 +C11 4 gnd 2.080806f +R8 4 g828_4 2.224404 +C12 5 gnd 2.080806f +R9 5 4 2.224404 +C13 6 gnd 2.080806f +R10 6 5 2.224404 +C14 7 gnd 2.080806f +R11 7 6 2.224404 +R12 g828_1 7 2.224404 +C15 8 gnd 2.080806f +R13 8 g828_2 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +R18 g828_5 12 2.224404 +.ends + +.subckt netg6565 g6565_0 g6565_1 g6565_2 gnd +C1 g6565_0 gnd 2.080806f +C2 g6565_1 gnd 2.080806f +C3 g6565_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6565_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6565_1 2.224404 +C7 4 gnd 2.080806f +R5 g6565_0 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g6565_2 2.224404 +.ends + +.subckt netg1770 g1770_0 g1770_2 g1770_1 g1770_3 gnd +C1 g1770_0 gnd 2.080806f +C2 g1770_2 gnd 2.080806f +C3 g1770_1 gnd 2.080806f +C4 g1770_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1770_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1770_3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g1770_1 4 2.224404 +C9 5 gnd 2.080806f +R7 5 g1770_1 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +R13 10 g1770_2 2.224404 +.ends + +.subckt netg1578 g1578_1 g1578_0 gnd +C1 g1578_1 gnd 2.080806f +C2 g1578_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1578_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g1578_1 2.224404 +.ends + +.subckt netg114 g114_0 g114_1 gnd +C1 g114_0 gnd 2.080806f +C2 g114_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g114_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 g114_1 11 2.224404 +.ends + +.subckt netg1411 g1411_6 g1411_1 g1411_5 g1411_8 g1411_4 g1411_0 g1411_9 g1411_2 g1411_7 g1411_3 gnd +C1 g1411_6 gnd 2.080806f +C2 g1411_1 gnd 2.080806f +C3 g1411_5 gnd 2.080806f +C4 g1411_8 gnd 2.080806f +C5 g1411_4 gnd 2.080806f +C6 g1411_0 gnd 2.080806f +C7 g1411_9 gnd 2.080806f +C8 g1411_2 gnd 2.080806f +C9 g1411_7 gnd 2.080806f +C10 g1411_3 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g1411_0 2.224404 +R2 g1411_7 1 2.224404 +R3 g1411_7 g1411_1 2.224404 +R4 g1411_6 g1411_7 2.224404 +C12 2 gnd 2.080806f +R5 2 g1411_7 2.224404 +R6 g1411_9 2 2.224404 +C13 3 gnd 2.080806f +R7 3 g1411_9 2.224404 +R8 g1411_5 3 2.224404 +C14 4 gnd 2.080806f +R9 g1411_1 4 2.224404 +C15 5 gnd 2.080806f +R10 4 5 2.224404 +R11 5 g1411_2 2.224404 +C16 6 gnd 2.080806f +R12 g1411_2 6 2.224404 +R13 6 g1411_3 2.224404 +R14 6 g1411_4 2.224404 +C17 7 gnd 2.080806f +R15 g1411_3 7 2.224404 +R16 g1411_8 7 2.224404 +.ends + +.subckt netg5515 g5515_1 g5515_2 g5515_3 g5515_0 gnd +C1 g5515_1 gnd 2.080806f +C2 g5515_2 gnd 2.080806f +C3 g5515_3 gnd 2.080806f +C4 g5515_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g5515_0 2.224404 +R2 g5515_2 1 2.224404 +C6 2 gnd 2.080806f +R3 g5515_2 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g5515_3 2.224404 +C8 4 gnd 2.080806f +R6 4 g5515_3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +R12 g5515_1 9 2.224404 +.ends + +.subckt netg3883 g3883_0 g3883_6 g3883_2 g3883_1 g3883_5 g3883_3 g3883_4 gnd +C1 g3883_0 gnd 2.080806f +C2 g3883_6 gnd 2.080806f +C3 g3883_2 gnd 2.080806f +C4 g3883_1 gnd 2.080806f +C5 g3883_5 gnd 2.080806f +C6 g3883_3 gnd 2.080806f +C7 g3883_4 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g3883_0 2.224404 +R2 g3883_1 1 2.224404 +C9 2 gnd 2.080806f +R3 g3883_0 2 2.224404 +R4 2 g3883_2 2.224404 +C10 3 gnd 2.080806f +R5 g3883_1 3 2.224404 +C11 4 gnd 2.080806f +R6 3 4 2.224404 +C12 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g3883_3 2.224404 +C13 6 gnd 2.080806f +R9 6 g3883_0 2.224404 +C14 7 gnd 2.080806f +R10 7 6 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +R12 g3883_4 8 2.224404 +C16 9 gnd 2.080806f +R13 9 g3883_4 2.224404 +R14 g3883_5 9 2.224404 +C17 10 gnd 2.080806f +R15 10 g3883_4 2.224404 +R16 g3883_6 10 2.224404 +.ends + +.subckt netg112 g112_1 g112_0 gnd +C1 g112_1 gnd 2.080806f +C2 g112_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g112_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g112_1 2.224404 +.ends + +.subckt netg1899 g1899_1 g1899_0 gnd +C1 g1899_1 gnd 2.080806f +C2 g1899_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1899_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +R14 g1899_1 13 2.224404 +.ends + +.subckt netg2405 g2405_0 g2405_1 gnd +C1 g2405_0 gnd 2.080806f +C2 g2405_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2405_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g2405_1 2.224404 +.ends + +.subckt netg4687 g4687_8 g4687_0 g4687_1 g4687_2 g4687_4 g4687_5 g4687_10 g4687_9 g4687_6 g4687_7 g4687_3 gnd +C1 g4687_8 gnd 2.080806f +C2 g4687_0 gnd 2.080806f +C3 g4687_1 gnd 2.080806f +C4 g4687_2 gnd 2.080806f +C5 g4687_4 gnd 2.080806f +C6 g4687_5 gnd 2.080806f +C7 g4687_10 gnd 2.080806f +C8 g4687_9 gnd 2.080806f +C9 g4687_6 gnd 2.080806f +C10 g4687_7 gnd 2.080806f +C11 g4687_3 gnd 2.080806f +R1 g4687_6 g4687_0 2.224404 +R2 g4687_6 g4687_8 2.224404 +R3 g4687_8 g4687_9 2.224404 +R4 g4687_9 g4687_10 2.224404 +C12 1 gnd 2.080806f +R5 g4687_10 1 2.224404 +R6 1 g4687_4 2.224404 +C13 2 gnd 2.080806f +R7 2 g4687_4 2.224404 +C14 3 gnd 2.080806f +R8 3 2 2.224404 +R9 g4687_5 3 2.224404 +C15 4 gnd 2.080806f +R10 3 4 2.224404 +R11 4 g4687_2 2.224404 +C16 5 gnd 2.080806f +R12 g4687_2 5 2.224404 +C17 6 gnd 2.080806f +R13 5 6 2.224404 +R14 6 g4687_1 2.224404 +C18 7 gnd 2.080806f +R15 7 g4687_1 2.224404 +R16 7 g4687_3 2.224404 +R17 g4687_3 g4687_7 2.224404 +.ends + +.subckt netg2859 g2859_0 g2859_4 g2859_1 g2859_6 g2859_2 g2859_5 g2859_3 gnd +C1 g2859_0 gnd 2.080806f +C2 g2859_4 gnd 2.080806f +C3 g2859_1 gnd 2.080806f +C4 g2859_6 gnd 2.080806f +C5 g2859_2 gnd 2.080806f +C6 g2859_5 gnd 2.080806f +C7 g2859_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g2859_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +C10 3 gnd 2.080806f +R3 3 2 2.224404 +C11 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g2859_6 4 2.224404 +R6 g2859_2 g2859_6 2.224404 +C12 5 gnd 2.080806f +R7 5 g2859_2 2.224404 +C13 6 gnd 2.080806f +R8 6 5 2.224404 +C14 7 gnd 2.080806f +R9 7 6 2.224404 +R10 g2859_1 7 2.224404 +R11 g2859_3 7 2.224404 +C15 8 gnd 2.080806f +R12 8 g2859_1 2.224404 +R13 g2859_4 8 2.224404 +C16 9 gnd 2.080806f +R14 9 5 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +R16 g2859_5 10 2.224404 +.ends + +.subckt netg740 g740_2 g740_5 g740_6 g740_3 g740_0 g740_1 g740_4 gnd +C1 g740_2 gnd 2.080806f +C2 g740_5 gnd 2.080806f +C3 g740_6 gnd 2.080806f +C4 g740_3 gnd 2.080806f +C5 g740_0 gnd 2.080806f +C6 g740_1 gnd 2.080806f +C7 g740_4 gnd 2.080806f +R1 g740_5 g740_0 2.224404 +R2 g740_5 g740_4 2.224404 +C8 1 gnd 2.080806f +R3 1 g740_5 2.224404 +C9 2 gnd 2.080806f +R4 2 1 2.224404 +C10 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g740_2 3 2.224404 +C11 4 gnd 2.080806f +R7 4 g740_2 2.224404 +C12 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g740_1 5 2.224404 +C13 6 gnd 2.080806f +R10 g740_4 6 2.224404 +C14 7 gnd 2.080806f +R11 6 7 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +C16 9 gnd 2.080806f +R13 8 9 2.224404 +R14 9 g740_6 2.224404 +C17 10 gnd 2.080806f +R15 10 g740_6 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +R18 g740_3 12 2.224404 +.ends + +.subckt netg6202 g6202_1 g6202_0 gnd +C1 g6202_1 gnd 2.080806f +C2 g6202_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6202_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +R13 g6202_1 12 2.224404 +.ends + +.subckt netg2398 g2398_2 g2398_0 g2398_1 gnd +C1 g2398_2 gnd 2.080806f +C2 g2398_0 gnd 2.080806f +C3 g2398_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2398_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g2398_2 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g2398_2 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +R15 g2398_1 13 2.224404 +.ends + +.subckt netg1092 g1092_2 g1092_1 g1092_0 g1092_3 gnd +C1 g1092_2 gnd 2.080806f +C2 g1092_1 gnd 2.080806f +C3 g1092_0 gnd 2.080806f +C4 g1092_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1092_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1092_3 2.224404 +C8 4 gnd 2.080806f +R5 g1092_0 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g1092_1 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +R18 15 g1092_2 2.224404 +.ends + +.subckt netg1212 g1212_4 g1212_0 g1212_3 g1212_2 g1212_5 g1212_6 g1212_1 gnd +C1 g1212_4 gnd 2.080806f +C2 g1212_0 gnd 2.080806f +C3 g1212_3 gnd 2.080806f +C4 g1212_2 gnd 2.080806f +C5 g1212_5 gnd 2.080806f +C6 g1212_6 gnd 2.080806f +C7 g1212_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g1212_0 2.224404 +R2 g1212_2 1 2.224404 +C9 2 gnd 2.080806f +R3 g1212_0 2 2.224404 +R4 2 g1212_6 2.224404 +C10 3 gnd 2.080806f +R5 3 g1212_6 2.224404 +R6 g1212_4 3 2.224404 +R7 g1212_5 g1212_4 2.224404 +C11 4 gnd 2.080806f +R8 g1212_0 4 2.224404 +C12 5 gnd 2.080806f +R9 4 5 2.224404 +C13 6 gnd 2.080806f +R10 5 6 2.224404 +R11 6 g1212_3 2.224404 +C14 7 gnd 2.080806f +R12 g1212_3 7 2.224404 +C15 8 gnd 2.080806f +R13 7 8 2.224404 +C16 9 gnd 2.080806f +R14 8 9 2.224404 +C17 10 gnd 2.080806f +R15 9 10 2.224404 +R16 10 g1212_1 2.224404 +.ends + +.subckt netg1918 g1918_1 g1918_0 gnd +C1 g1918_1 gnd 2.080806f +C2 g1918_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1918_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +R13 g1918_1 12 2.224404 +.ends + +.subckt netg7550 g7550_0 g7550_1 gnd +C1 g7550_0 gnd 2.080806f +C2 g7550_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7550_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +R13 g7550_1 12 2.224404 +.ends + +.subckt netg6765 g6765_4 g6765_5 g6765_1 g6765_2 g6765_0 g6765_3 gnd +C1 g6765_4 gnd 2.080806f +C2 g6765_5 gnd 2.080806f +C3 g6765_1 gnd 2.080806f +C4 g6765_2 gnd 2.080806f +C5 g6765_0 gnd 2.080806f +C6 g6765_3 gnd 2.080806f +R1 g6765_0 g6765_5 2.224404 +C7 1 gnd 2.080806f +R2 1 g6765_0 2.224404 +R3 g6765_2 1 2.224404 +C8 2 gnd 2.080806f +R4 g6765_5 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g6765_3 2.224404 +C10 4 gnd 2.080806f +R7 4 g6765_3 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 6 5 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g6765_1 2.224404 +C15 9 gnd 2.080806f +R13 9 g6765_1 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +R15 10 g6765_4 2.224404 +.ends + +.subckt netg4539 g4539_2 g4539_9 g4539_5 g4539_8 g4539_6 g4539_1 g4539_4 g4539_10 g4539_3 g4539_7 g4539_0 gnd +C1 g4539_2 gnd 2.080806f +C2 g4539_9 gnd 2.080806f +C3 g4539_5 gnd 2.080806f +C4 g4539_8 gnd 2.080806f +C5 g4539_6 gnd 2.080806f +C6 g4539_1 gnd 2.080806f +C7 g4539_4 gnd 2.080806f +C8 g4539_10 gnd 2.080806f +C9 g4539_3 gnd 2.080806f +C10 g4539_7 gnd 2.080806f +C11 g4539_0 gnd 2.080806f +C12 1 gnd 2.080806f +R1 1 g4539_0 2.224404 +C13 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4539_7 2 2.224404 +C14 3 gnd 2.080806f +R4 1 3 2.224404 +C15 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4539_6 2.224404 +R7 g4539_6 g4539_4 2.224404 +R8 g4539_1 g4539_4 2.224404 +C16 5 gnd 2.080806f +R9 g4539_4 5 2.224404 +R10 5 g4539_5 2.224404 +C17 6 gnd 2.080806f +R11 g4539_5 6 2.224404 +R12 6 g4539_9 2.224404 +R13 g4539_9 g4539_10 2.224404 +R14 g4539_8 g4539_10 2.224404 +C18 7 gnd 2.080806f +R15 5 7 2.224404 +R16 7 g4539_3 2.224404 +C19 8 gnd 2.080806f +R17 g4539_1 8 2.224404 +C20 9 gnd 2.080806f +R18 8 9 2.224404 +R19 g4539_2 9 2.224404 +.ends + +.subckt netg1115 g1115_1 g1115_0 gnd +C1 g1115_1 gnd 2.080806f +C2 g1115_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1115_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +R15 g1115_1 14 2.224404 +.ends + +.subckt netg6002 g6002_3 g6002_2 g6002_1 g6002_0 gnd +C1 g6002_3 gnd 2.080806f +C2 g6002_2 gnd 2.080806f +C3 g6002_1 gnd 2.080806f +C4 g6002_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6002_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6002_2 2.224404 +C9 5 gnd 2.080806f +R6 g6002_2 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g6002_3 2.224404 +C12 8 gnd 2.080806f +R10 g6002_3 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +R13 10 g6002_1 2.224404 +.ends + +.subckt netg90 g90_0 g90_1 gnd +C1 g90_0 gnd 2.080806f +C2 g90_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g90_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +R13 g90_1 12 2.224404 +.ends + +.subckt netg6657 g6657_0 g6657_1 gnd +C1 g6657_0 gnd 2.080806f +C2 g6657_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6657_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +R13 12 g6657_1 2.224404 +.ends + +.subckt netg4704 g4704_6 g4704_1 g4704_0 g4704_2 g4704_5 g4704_4 g4704_3 gnd +C1 g4704_6 gnd 2.080806f +C2 g4704_1 gnd 2.080806f +C3 g4704_0 gnd 2.080806f +C4 g4704_2 gnd 2.080806f +C5 g4704_5 gnd 2.080806f +C6 g4704_4 gnd 2.080806f +C7 g4704_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g4704_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4704_1 2.224404 +C10 3 gnd 2.080806f +R4 3 g4704_0 2.224404 +C11 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g4704_3 4 2.224404 +C12 5 gnd 2.080806f +R7 5 1 2.224404 +R8 g4704_5 5 2.224404 +C13 6 gnd 2.080806f +R9 6 g4704_5 2.224404 +R10 6 g4704_4 2.224404 +C14 7 gnd 2.080806f +R11 7 g4704_3 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +R13 g4704_2 8 2.224404 +C16 9 gnd 2.080806f +R14 9 g4704_2 2.224404 +R15 g4704_6 9 2.224404 +.ends + +.subckt netg3817 g3817_9 g3817_5 g3817_4 g3817_7 g3817_10 g3817_8 g3817_1 g3817_2 g3817_6 g3817_3 gnd +C1 g3817_9 gnd 2.080806f +C2 g3817_5 gnd 2.080806f +C3 g3817_4 gnd 2.080806f +C4 g3817_7 gnd 2.080806f +C5 g3817_10 gnd 2.080806f +C6 g3817_8 gnd 2.080806f +C7 g3817_1 gnd 2.080806f +C8 g3817_2 gnd 2.080806f +C9 g3817_6 gnd 2.080806f +C10 g3817_3 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g3817_1 2.224404 +C12 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3817_2 2.224404 +R4 g3817_10 g3817_2 2.224404 +C13 3 gnd 2.080806f +R5 3 g3817_10 2.224404 +C14 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g3817_8 2.224404 +C15 5 gnd 2.080806f +R8 g3817_8 5 2.224404 +R9 5 g3817_9 2.224404 +C16 6 gnd 2.080806f +R10 g3817_2 6 2.224404 +C17 7 gnd 2.080806f +R11 6 7 2.224404 +R12 7 g3817_3 2.224404 +C18 8 gnd 2.080806f +R13 g3817_3 8 2.224404 +R14 8 g3817_5 2.224404 +R15 8 g3817_7 2.224404 +C19 9 gnd 2.080806f +R16 9 1 2.224404 +C20 10 gnd 2.080806f +R17 10 9 2.224404 +C21 11 gnd 2.080806f +R18 11 10 2.224404 +R19 g3817_6 11 2.224404 +C22 12 gnd 2.080806f +R20 12 g3817_9 2.224404 +C23 13 gnd 2.080806f +R21 13 12 2.224404 +C24 14 gnd 2.080806f +R22 14 13 2.224404 +C25 15 gnd 2.080806f +R23 15 14 2.224404 +R24 15 g3817_4 2.224404 +.ends + +.subckt netg4550 g4550_3 g4550_9 g4550_0 g4550_4 g4550_8 g4550_7 g4550_1 g4550_2 g4550_5 g4550_6 gnd +C1 g4550_3 gnd 2.080806f +C2 g4550_9 gnd 2.080806f +C3 g4550_0 gnd 2.080806f +C4 g4550_4 gnd 2.080806f +C5 g4550_8 gnd 2.080806f +C6 g4550_7 gnd 2.080806f +C7 g4550_1 gnd 2.080806f +C8 g4550_2 gnd 2.080806f +C9 g4550_5 gnd 2.080806f +C10 g4550_6 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g4550_0 2.224404 +R2 g4550_3 1 2.224404 +C12 2 gnd 2.080806f +R3 2 g4550_3 2.224404 +R4 g4550_2 2 2.224404 +C13 3 gnd 2.080806f +R5 g4550_2 3 2.224404 +R6 3 g4550_8 2.224404 +C14 4 gnd 2.080806f +R7 1 4 2.224404 +R8 4 g4550_5 2.224404 +C15 5 gnd 2.080806f +R9 g4550_5 5 2.224404 +R10 5 g4550_1 2.224404 +C16 6 gnd 2.080806f +R11 g4550_1 6 2.224404 +C17 7 gnd 2.080806f +R12 6 7 2.224404 +R13 7 g4550_4 2.224404 +C18 8 gnd 2.080806f +R14 8 6 2.224404 +R15 g4550_9 8 2.224404 +R16 g4550_7 g4550_9 2.224404 +C19 9 gnd 2.080806f +R17 9 g4550_4 2.224404 +C20 10 gnd 2.080806f +R18 9 10 2.224404 +R19 10 g4550_6 2.224404 +.ends + +.subckt netg3630 g3630_6 g3630_4 g3630_3 g3630_2 g3630_1 g3630_0 g3630_5 gnd +C1 g3630_6 gnd 2.080806f +C2 g3630_4 gnd 2.080806f +C3 g3630_3 gnd 2.080806f +C4 g3630_2 gnd 2.080806f +C5 g3630_1 gnd 2.080806f +C6 g3630_0 gnd 2.080806f +C7 g3630_5 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g3630_0 2.224404 +R2 g3630_4 1 2.224404 +R3 g3630_3 g3630_4 2.224404 +C9 2 gnd 2.080806f +R4 g3630_0 2 2.224404 +C10 3 gnd 2.080806f +R5 2 3 2.224404 +C11 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g3630_6 2.224404 +C12 5 gnd 2.080806f +R8 5 g3630_3 2.224404 +C13 6 gnd 2.080806f +R9 6 5 2.224404 +C14 7 gnd 2.080806f +R10 7 6 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +C16 9 gnd 2.080806f +R12 9 8 2.224404 +R13 g3630_2 9 2.224404 +C17 10 gnd 2.080806f +R14 g3630_2 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +R16 11 g3630_1 2.224404 +C19 12 gnd 2.080806f +R17 g3630_1 12 2.224404 +R18 12 g3630_5 2.224404 +.ends + +.subckt netg2432 g2432_0 g2432_1 g2432_2 gnd +C1 g2432_0 gnd 2.080806f +C2 g2432_1 gnd 2.080806f +C3 g2432_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2432_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g2432_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g2432_1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +R13 g2432_2 11 2.224404 +.ends + +.subckt netg4407 g4407_1 g4407_2 g4407_0 gnd +C1 g4407_1 gnd 2.080806f +C2 g4407_2 gnd 2.080806f +C3 g4407_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4407_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +R6 5 g4407_2 2.224404 +C9 6 gnd 2.080806f +R7 g4407_2 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g4407_1 2.224404 +.ends + +.subckt netg1108 g1108_1 g1108_0 g1108_5 g1108_4 g1108_3 g1108_2 gnd +C1 g1108_1 gnd 2.080806f +C2 g1108_0 gnd 2.080806f +C3 g1108_5 gnd 2.080806f +C4 g1108_4 gnd 2.080806f +C5 g1108_3 gnd 2.080806f +C6 g1108_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1108_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1108_1 2 2.224404 +R4 g1108_3 g1108_1 2.224404 +C9 3 gnd 2.080806f +R5 3 g1108_3 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +R7 g1108_2 4 2.224404 +C11 5 gnd 2.080806f +R8 g1108_0 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g1108_5 2.224404 +C16 10 gnd 2.080806f +R14 10 g1108_5 2.224404 +C17 11 gnd 2.080806f +R15 11 10 2.224404 +C18 12 gnd 2.080806f +R16 12 11 2.224404 +R17 g1108_4 12 2.224404 +.ends + +.subckt netg1285 g1285_1 g1285_0 gnd +C1 g1285_1 gnd 2.080806f +C2 g1285_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1285_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +R13 12 g1285_1 2.224404 +.ends + +.subckt netg5334 g5334_4 g5334_2 g5334_6 g5334_1 g5334_3 g5334_0 g5334_5 gnd +C1 g5334_4 gnd 2.080806f +C2 g5334_2 gnd 2.080806f +C3 g5334_6 gnd 2.080806f +C4 g5334_1 gnd 2.080806f +C5 g5334_3 gnd 2.080806f +C6 g5334_0 gnd 2.080806f +C7 g5334_5 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g5334_0 1 2.224404 +R2 1 g5334_5 2.224404 +C9 2 gnd 2.080806f +R3 2 1 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g5334_6 3 2.224404 +C11 4 gnd 2.080806f +R6 4 g5334_6 2.224404 +C12 5 gnd 2.080806f +R7 5 4 2.224404 +C13 6 gnd 2.080806f +R8 6 5 2.224404 +R9 g5334_4 6 2.224404 +C14 7 gnd 2.080806f +R10 7 g5334_4 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +R12 g5334_2 8 2.224404 +R13 g5334_3 g5334_2 2.224404 +C16 9 gnd 2.080806f +R14 g5334_2 9 2.224404 +C17 10 gnd 2.080806f +R15 9 10 2.224404 +R16 10 g5334_1 2.224404 +.ends + +.subckt netg6542 g6542_0 g6542_1 gnd +C1 g6542_0 gnd 2.080806f +C2 g6542_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6542_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +R13 12 g6542_1 2.224404 +.ends + +.subckt netg3810 g3810_3 g3810_4 g3810_1 g3810_0 g3810_6 g3810_5 g3810_2 gnd +C1 g3810_3 gnd 2.080806f +C2 g3810_4 gnd 2.080806f +C3 g3810_1 gnd 2.080806f +C4 g3810_0 gnd 2.080806f +C5 g3810_6 gnd 2.080806f +C6 g3810_5 gnd 2.080806f +C7 g3810_2 gnd 2.080806f +R1 g3810_3 g3810_0 2.224404 +C8 1 gnd 2.080806f +R2 1 g3810_3 2.224404 +C9 2 gnd 2.080806f +R3 2 1 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +C11 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3810_5 4 2.224404 +R7 g3810_1 g3810_5 2.224404 +C12 5 gnd 2.080806f +R8 5 g3810_5 2.224404 +C13 6 gnd 2.080806f +R9 6 5 2.224404 +R10 g3810_2 6 2.224404 +C14 7 gnd 2.080806f +R11 7 g3810_2 2.224404 +C15 8 gnd 2.080806f +R12 8 7 2.224404 +R13 g3810_4 8 2.224404 +C16 9 gnd 2.080806f +R14 6 9 2.224404 +R15 9 g3810_6 2.224404 +.ends + +.subckt netg2200 g2200_1 g2200_2 gnd +C1 g2200_1 gnd 2.080806f +C2 g2200_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2200_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +R13 g2200_1 12 2.224404 +.ends + +.subckt netg127 g127_1 g127_0 gnd +C1 g127_1 gnd 2.080806f +C2 g127_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g127_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g127_1 2.224404 +.ends + +.subckt netg849 g849_6 g849_4 g849_2 g849_3 g849_0 g849_5 g849_1 gnd +C1 g849_6 gnd 2.080806f +C2 g849_4 gnd 2.080806f +C3 g849_2 gnd 2.080806f +C4 g849_3 gnd 2.080806f +C5 g849_0 gnd 2.080806f +C6 g849_5 gnd 2.080806f +C7 g849_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g849_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g849_2 2.224404 +R4 g849_2 g849_4 2.224404 +C10 3 gnd 2.080806f +R5 g849_2 3 2.224404 +C11 4 gnd 2.080806f +R6 3 4 2.224404 +C12 5 gnd 2.080806f +R7 4 5 2.224404 +C13 6 gnd 2.080806f +R8 5 6 2.224404 +C14 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g849_3 2.224404 +C15 8 gnd 2.080806f +R11 g849_3 8 2.224404 +C16 9 gnd 2.080806f +R12 8 9 2.224404 +C17 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g849_1 2.224404 +C18 11 gnd 2.080806f +R15 11 g849_1 2.224404 +R16 11 g849_5 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +R19 g849_6 13 2.224404 +.ends + +.subckt netg3644 g3644_4 g3644_8 g3644_5 g3644_1 g3644_7 g3644_9 g3644_2 g3644_3 g3644_0 gnd +C1 g3644_4 gnd 2.080806f +C2 g3644_8 gnd 2.080806f +C3 g3644_5 gnd 2.080806f +C4 g3644_1 gnd 2.080806f +C5 g3644_7 gnd 2.080806f +C6 g3644_9 gnd 2.080806f +C7 g3644_2 gnd 2.080806f +C8 g3644_3 gnd 2.080806f +C9 g3644_0 gnd 2.080806f +C10 1 gnd 2.080806f +R1 1 g3644_0 2.224404 +R2 g3644_1 1 2.224404 +C11 2 gnd 2.080806f +R3 2 g3644_1 2.224404 +C12 3 gnd 2.080806f +R4 3 2 2.224404 +C13 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3644_2 4 2.224404 +R7 g3644_2 g3644_5 2.224404 +C14 5 gnd 2.080806f +R8 5 g3644_5 2.224404 +R9 g3644_9 5 2.224404 +R10 g3644_8 g3644_9 2.224404 +R11 g3644_3 g3644_8 2.224404 +C15 6 gnd 2.080806f +R12 g3644_8 6 2.224404 +R13 6 g3644_4 2.224404 +C16 7 gnd 2.080806f +R14 7 g3644_3 2.224404 +C17 8 gnd 2.080806f +R15 8 7 2.224404 +C18 9 gnd 2.080806f +R16 9 8 2.224404 +R17 g3644_7 9 2.224404 +.ends + +.subckt netg2092 g2092_0 g2092_1 g2092_3 g2092_2 gnd +C1 g2092_0 gnd 2.080806f +C2 g2092_1 gnd 2.080806f +C3 g2092_3 gnd 2.080806f +C4 g2092_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2092_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2092_3 2 2.224404 +C7 3 gnd 2.080806f +R4 3 g2092_3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +R12 g2092_1 10 2.224404 +C15 11 gnd 2.080806f +R13 11 g2092_1 2.224404 +R14 g2092_2 11 2.224404 +.ends + +.subckt netg4092 g4092_2 g4092_1 g4092_0 gnd +C1 g4092_2 gnd 2.080806f +C2 g4092_1 gnd 2.080806f +C3 g4092_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4092_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g4092_2 2.224404 +C9 6 gnd 2.080806f +R7 6 g4092_0 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +R14 g4092_1 12 2.224404 +.ends + +.subckt netg1792 g1792_2 g1792_0 g1792_1 gnd +C1 g1792_2 gnd 2.080806f +C2 g1792_0 gnd 2.080806f +C3 g1792_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1792_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g1792_2 2.224404 +C15 12 gnd 2.080806f +R13 g1792_2 12 2.224404 +R14 12 g1792_1 2.224404 +.ends + +.subckt netg2537 g2537_1 g2537_2 g2537_0 gnd +C1 g2537_1 gnd 2.080806f +C2 g2537_2 gnd 2.080806f +C3 g2537_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2537_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g2537_1 11 2.224404 +C15 12 gnd 2.080806f +R13 12 g2537_1 2.224404 +R14 g2537_2 12 2.224404 +.ends + +.subckt netg2226 g2226_1 g2226_0 gnd +C1 g2226_1 gnd 2.080806f +C2 g2226_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2226_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 g2226_1 13 2.224404 +.ends + +.subckt netg1803 g1803_1 g1803_3 g1803_0 g1803_2 gnd +C1 g1803_1 gnd 2.080806f +C2 g1803_3 gnd 2.080806f +C3 g1803_0 gnd 2.080806f +C4 g1803_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1803_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1803_3 2.224404 +C7 3 gnd 2.080806f +R4 g1803_3 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g1803_2 2.224404 +R14 g1803_2 g1803_1 2.224404 +.ends + +.subckt netg4698 g4698_2 g4698_1 g4698_4 g4698_3 g4698_0 g4698_5 gnd +C1 g4698_2 gnd 2.080806f +C2 g4698_1 gnd 2.080806f +C3 g4698_4 gnd 2.080806f +C4 g4698_3 gnd 2.080806f +C5 g4698_0 gnd 2.080806f +C6 g4698_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g4698_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4698_2 2.224404 +C9 3 gnd 2.080806f +R4 3 g4698_2 2.224404 +R5 3 g4698_4 2.224404 +C10 4 gnd 2.080806f +R6 g4698_2 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g4698_1 2.224404 +C13 7 gnd 2.080806f +R10 7 1 2.224404 +C14 8 gnd 2.080806f +R11 8 7 2.224404 +C15 9 gnd 2.080806f +R12 9 8 2.224404 +R13 g4698_3 9 2.224404 +C16 10 gnd 2.080806f +R14 10 g4698_3 2.224404 +C17 11 gnd 2.080806f +R15 11 10 2.224404 +C18 12 gnd 2.080806f +R16 12 11 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +R18 13 g4698_5 2.224404 +.ends + +.subckt netg4732 g4732_9 g4732_5 g4732_6 g4732_2 g4732_4 g4732_0 g4732_8 g4732_3 g4732_7 g4732_1 gnd +C1 g4732_9 gnd 2.080806f +C2 g4732_5 gnd 2.080806f +C3 g4732_6 gnd 2.080806f +C4 g4732_2 gnd 2.080806f +C5 g4732_4 gnd 2.080806f +C6 g4732_0 gnd 2.080806f +C7 g4732_8 gnd 2.080806f +C8 g4732_3 gnd 2.080806f +C9 g4732_7 gnd 2.080806f +C10 g4732_1 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g4732_0 2.224404 +C12 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4732_4 2 2.224404 +C13 3 gnd 2.080806f +R4 3 g4732_4 2.224404 +R5 g4732_6 3 2.224404 +R6 g4732_8 g4732_6 2.224404 +C14 4 gnd 2.080806f +R7 g4732_8 4 2.224404 +C15 5 gnd 2.080806f +R8 4 5 2.224404 +R9 g4732_3 5 2.224404 +C16 6 gnd 2.080806f +R10 6 3 2.224404 +R11 g4732_1 6 2.224404 +C17 7 gnd 2.080806f +R12 7 g4732_1 2.224404 +R13 g4732_5 7 2.224404 +R14 g4732_7 g4732_5 2.224404 +C18 8 gnd 2.080806f +R15 5 8 2.224404 +R16 8 g4732_9 2.224404 +C19 9 gnd 2.080806f +R17 g4732_9 9 2.224404 +R18 9 g4732_2 2.224404 +.ends + +.subckt netg2338 g2338_2 g2338_1 g2338_3 g2338_0 gnd +C1 g2338_2 gnd 2.080806f +C2 g2338_1 gnd 2.080806f +C3 g2338_3 gnd 2.080806f +C4 g2338_0 gnd 2.080806f +R1 g2338_1 g2338_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g2338_1 2.224404 +R3 g2338_3 1 2.224404 +C6 2 gnd 2.080806f +R4 2 g2338_3 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +R14 g2338_2 11 2.224404 +.ends + +.subckt netg2429 g2429_2 g2429_1 g2429_0 gnd +C1 g2429_2 gnd 2.080806f +C2 g2429_1 gnd 2.080806f +C3 g2429_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2429_0 1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +R13 12 g2429_2 2.224404 +R14 g2429_2 g2429_1 2.224404 +.ends + +.subckt netg805 g805_4 g805_6 g805_2 g805_5 g805_3 g805_0 g805_1 gnd +C1 g805_4 gnd 2.080806f +C2 g805_6 gnd 2.080806f +C3 g805_2 gnd 2.080806f +C4 g805_5 gnd 2.080806f +C5 g805_3 gnd 2.080806f +C6 g805_0 gnd 2.080806f +C7 g805_1 gnd 2.080806f +R1 g805_0 g805_3 2.224404 +R2 g805_6 g805_0 2.224404 +C8 1 gnd 2.080806f +R3 1 g805_3 2.224404 +R4 1 g805_2 2.224404 +C9 2 gnd 2.080806f +R5 2 g805_6 2.224404 +R6 g805_1 2 2.224404 +C10 3 gnd 2.080806f +R7 3 g805_1 2.224404 +C11 4 gnd 2.080806f +R8 4 3 2.224404 +C12 5 gnd 2.080806f +R9 5 4 2.224404 +C13 6 gnd 2.080806f +R10 6 5 2.224404 +R11 g805_4 6 2.224404 +C14 7 gnd 2.080806f +R12 7 g805_4 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +R15 g805_5 9 2.224404 +.ends + +.subckt netg3665 g3665_2 g3665_9 g3665_6 g3665_3 g3665_1 g3665_7 g3665_5 g3665_8 g3665_4 g3665_0 gnd +C1 g3665_2 gnd 2.080806f +C2 g3665_9 gnd 2.080806f +C3 g3665_6 gnd 2.080806f +C4 g3665_3 gnd 2.080806f +C5 g3665_1 gnd 2.080806f +C6 g3665_7 gnd 2.080806f +C7 g3665_5 gnd 2.080806f +C8 g3665_8 gnd 2.080806f +C9 g3665_4 gnd 2.080806f +C10 g3665_0 gnd 2.080806f +C11 1 gnd 2.080806f +R1 g3665_0 1 2.224404 +R2 1 g3665_1 2.224404 +C12 2 gnd 2.080806f +R3 2 g3665_0 2.224404 +C13 3 gnd 2.080806f +R4 3 2 2.224404 +R5 g3665_5 3 2.224404 +R6 g3665_4 g3665_5 2.224404 +C14 4 gnd 2.080806f +R7 g3665_5 4 2.224404 +R8 4 g3665_6 2.224404 +R9 g3665_2 g3665_6 2.224404 +C15 5 gnd 2.080806f +R10 5 g3665_4 2.224404 +R11 g3665_8 5 2.224404 +R12 g3665_7 g3665_8 2.224404 +C16 6 gnd 2.080806f +R13 6 g3665_2 2.224404 +R14 g3665_9 6 2.224404 +C17 7 gnd 2.080806f +R15 g3665_1 7 2.224404 +C18 8 gnd 2.080806f +R16 7 8 2.224404 +C19 9 gnd 2.080806f +R17 8 9 2.224404 +C20 10 gnd 2.080806f +R18 9 10 2.224404 +R19 10 g3665_3 2.224404 +.ends + +.subckt netg5380 g5380_0 g5380_1 gnd +C1 g5380_0 gnd 2.080806f +C2 g5380_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5380_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 g5380_1 13 2.224404 +.ends + +.subckt netg2101 g2101_2 g2101_3 g2101_0 g2101_5 g2101_4 g2101_1 gnd +C1 g2101_2 gnd 2.080806f +C2 g2101_3 gnd 2.080806f +C3 g2101_0 gnd 2.080806f +C4 g2101_5 gnd 2.080806f +C5 g2101_4 gnd 2.080806f +C6 g2101_1 gnd 2.080806f +R1 g2101_0 g2101_2 2.224404 +C7 1 gnd 2.080806f +R2 g2101_0 1 2.224404 +R3 1 g2101_4 2.224404 +C8 2 gnd 2.080806f +R4 g2101_4 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g2101_1 2.224404 +C11 5 gnd 2.080806f +R8 g2101_1 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g2101_5 2.224404 +C16 10 gnd 2.080806f +R14 10 g2101_5 2.224404 +C17 11 gnd 2.080806f +R15 10 11 2.224404 +R16 11 g2101_3 2.224404 +.ends + +.subckt netg4519 g4519_6 g4519_5 g4519_4 g4519_8 g4519_2 g4519_9 g4519_3 g4519_1 g4519_7 g4519_0 gnd +C1 g4519_6 gnd 2.080806f +C2 g4519_5 gnd 2.080806f +C3 g4519_4 gnd 2.080806f +C4 g4519_8 gnd 2.080806f +C5 g4519_2 gnd 2.080806f +C6 g4519_9 gnd 2.080806f +C7 g4519_3 gnd 2.080806f +C8 g4519_1 gnd 2.080806f +C9 g4519_7 gnd 2.080806f +C10 g4519_0 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g4519_0 2.224404 +R2 g4519_4 1 2.224404 +C12 2 gnd 2.080806f +R3 2 g4519_0 2.224404 +R4 g4519_6 2 2.224404 +R5 1 g4519_8 2.224404 +C13 3 gnd 2.080806f +R6 3 g4519_6 2.224404 +R7 g4519_7 3 2.224404 +R8 g4519_9 3 2.224404 +C14 4 gnd 2.080806f +R9 4 g4519_7 2.224404 +R10 g4519_2 4 2.224404 +C15 5 gnd 2.080806f +R11 5 g4519_2 2.224404 +R12 g4519_5 5 2.224404 +C16 6 gnd 2.080806f +R13 6 g4519_4 2.224404 +C17 7 gnd 2.080806f +R14 7 6 2.224404 +R15 g4519_1 7 2.224404 +C18 8 gnd 2.080806f +R16 g4519_0 8 2.224404 +C19 9 gnd 2.080806f +R17 8 9 2.224404 +C20 10 gnd 2.080806f +R18 9 10 2.224404 +R19 10 g4519_3 2.224404 +.ends + +.subckt netg1978 g1978_4 g1978_1 g1978_5 g1978_6 g1978_2 g1978_7 g1978_0 g1978_3 gnd +C1 g1978_4 gnd 2.080806f +C2 g1978_1 gnd 2.080806f +C3 g1978_5 gnd 2.080806f +C4 g1978_6 gnd 2.080806f +C5 g1978_2 gnd 2.080806f +C6 g1978_7 gnd 2.080806f +C7 g1978_0 gnd 2.080806f +C8 g1978_3 gnd 2.080806f +R1 g1978_6 g1978_0 2.224404 +C9 1 gnd 2.080806f +R2 1 g1978_6 2.224404 +R3 1 g1978_4 2.224404 +R4 g1978_4 g1978_3 2.224404 +C10 2 gnd 2.080806f +R5 2 g1978_3 2.224404 +R6 g1978_2 2 2.224404 +C11 3 gnd 2.080806f +R7 g1978_3 3 2.224404 +C12 4 gnd 2.080806f +R8 3 4 2.224404 +C13 5 gnd 2.080806f +R9 4 5 2.224404 +R10 5 g1978_1 2.224404 +C14 6 gnd 2.080806f +R11 g1978_0 6 2.224404 +C15 7 gnd 2.080806f +R12 6 7 2.224404 +C16 8 gnd 2.080806f +R13 7 8 2.224404 +R14 8 g1978_5 2.224404 +C17 9 gnd 2.080806f +R15 9 g1978_2 2.224404 +C18 10 gnd 2.080806f +R16 10 9 2.224404 +C19 11 gnd 2.080806f +R17 11 10 2.224404 +C20 12 gnd 2.080806f +R18 12 11 2.224404 +R19 g1978_7 12 2.224404 +.ends + +.subckt netg4956 g4956_2 g4956_1 g4956_0 g4956_3 gnd +C1 g4956_2 gnd 2.080806f +C2 g4956_1 gnd 2.080806f +C3 g4956_0 gnd 2.080806f +C4 g4956_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4956_0 1 2.224404 +R2 1 g4956_2 2.224404 +C6 2 gnd 2.080806f +R3 g4956_2 2 2.224404 +R4 2 g4956_1 2.224404 +C7 3 gnd 2.080806f +R5 3 g4956_0 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +R14 g4956_3 11 2.224404 +.ends + +.subckt netg1240 g1240_5 g1240_3 g1240_4 g1240_2 g1240_1 g1240_0 gnd +C1 g1240_5 gnd 2.080806f +C2 g1240_3 gnd 2.080806f +C3 g1240_4 gnd 2.080806f +C4 g1240_2 gnd 2.080806f +C5 g1240_1 gnd 2.080806f +C6 g1240_0 gnd 2.080806f +R1 g1240_0 g1240_2 2.224404 +C7 1 gnd 2.080806f +R2 1 g1240_2 2.224404 +C8 2 gnd 2.080806f +R3 2 1 2.224404 +R4 2 g1240_4 2.224404 +R5 g1240_4 g1240_1 2.224404 +R6 g1240_1 g1240_3 2.224404 +C9 3 gnd 2.080806f +R7 3 2 2.224404 +C10 4 gnd 2.080806f +R8 4 3 2.224404 +C11 5 gnd 2.080806f +R9 5 4 2.224404 +C12 6 gnd 2.080806f +R10 6 5 2.224404 +C13 7 gnd 2.080806f +R11 7 6 2.224404 +C14 8 gnd 2.080806f +R12 8 7 2.224404 +C15 9 gnd 2.080806f +R13 9 8 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +R15 g1240_5 10 2.224404 +.ends + +.subckt netg1281 g1281_1 g1281_0 gnd +C1 g1281_1 gnd 2.080806f +C2 g1281_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1281_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +R14 g1281_1 13 2.224404 +.ends + +.subckt netg5264 g5264_1 g5264_0 gnd +C1 g5264_1 gnd 2.080806f +C2 g5264_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5264_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +R16 g5264_1 15 2.224404 +.ends + +.subckt netg5341 g5341_2 g5341_3 g5341_1 g5341_0 gnd +C1 g5341_2 gnd 2.080806f +C2 g5341_3 gnd 2.080806f +C3 g5341_1 gnd 2.080806f +C4 g5341_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g5341_0 1 2.224404 +R2 1 g5341_1 2.224404 +C6 2 gnd 2.080806f +R3 g5341_1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g5341_3 2.224404 +C9 5 gnd 2.080806f +R7 g5341_3 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g5341_2 2.224404 +.ends + +.subckt netg1099 g1099_0 g1099_1 gnd +C1 g1099_0 gnd 2.080806f +C2 g1099_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1099_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g1099_1 2.224404 +.ends + +.subckt netg7526 g7526_1 g7526_0 gnd +C1 g7526_1 gnd 2.080806f +C2 g7526_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7526_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g7526_1 2.224404 +.ends + +.subckt netg4676 g4676_6 g4676_3 g4676_1 g4676_2 g4676_4 g4676_9 g4676_7 g4676_8 g4676_10 g4676_5 gnd +C1 g4676_6 gnd 2.080806f +C2 g4676_3 gnd 2.080806f +C3 g4676_1 gnd 2.080806f +C4 g4676_2 gnd 2.080806f +C5 g4676_4 gnd 2.080806f +C6 g4676_9 gnd 2.080806f +C7 g4676_7 gnd 2.080806f +C8 g4676_8 gnd 2.080806f +C9 g4676_10 gnd 2.080806f +C10 g4676_5 gnd 2.080806f +R1 g4676_9 g4676_6 2.224404 +R2 g4676_6 g4676_7 2.224404 +R3 g4676_7 g4676_8 2.224404 +C11 1 gnd 2.080806f +R4 g4676_7 1 2.224404 +R5 1 g4676_4 2.224404 +C12 2 gnd 2.080806f +R6 g4676_8 2 2.224404 +R7 2 g4676_3 2.224404 +C13 3 gnd 2.080806f +R8 3 g4676_3 2.224404 +R9 3 g4676_2 2.224404 +C14 4 gnd 2.080806f +R10 g4676_2 4 2.224404 +R11 4 g4676_10 2.224404 +R12 g4676_10 g4676_1 2.224404 +C15 5 gnd 2.080806f +R13 g4676_4 5 2.224404 +C16 6 gnd 2.080806f +R14 5 6 2.224404 +C17 7 gnd 2.080806f +R15 6 7 2.224404 +C18 8 gnd 2.080806f +R16 7 8 2.224404 +R17 g4676_5 8 2.224404 +.ends + +.subckt netg4491 g4491_4 g4491_5 g4491_3 g4491_2 g4491_1 g4491_6 g4491_0 gnd +C1 g4491_4 gnd 2.080806f +C2 g4491_5 gnd 2.080806f +C3 g4491_3 gnd 2.080806f +C4 g4491_2 gnd 2.080806f +C5 g4491_1 gnd 2.080806f +C6 g4491_6 gnd 2.080806f +C7 g4491_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g4491_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +C10 3 gnd 2.080806f +R3 3 2 2.224404 +C11 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g4491_4 4 2.224404 +C12 5 gnd 2.080806f +R6 5 g4491_4 2.224404 +C13 6 gnd 2.080806f +R7 6 5 2.224404 +C14 7 gnd 2.080806f +R8 7 6 2.224404 +C15 8 gnd 2.080806f +R9 8 7 2.224404 +C16 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g4491_1 9 2.224404 +C17 10 gnd 2.080806f +R12 10 g4491_1 2.224404 +R13 g4491_5 10 2.224404 +R14 10 g4491_6 2.224404 +R15 g4491_6 g4491_2 2.224404 +C18 11 gnd 2.080806f +R16 11 g4491_2 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +R18 12 g4491_3 2.224404 +.ends + +.subckt netg772 g772_2 g772_3 g772_0 g772_1 g772_4 gnd +C1 g772_2 gnd 2.080806f +C2 g772_3 gnd 2.080806f +C3 g772_0 gnd 2.080806f +C4 g772_1 gnd 2.080806f +C5 g772_4 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g772_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +C9 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g772_3 4 2.224404 +C10 5 gnd 2.080806f +R6 3 5 2.224404 +C11 6 gnd 2.080806f +R7 6 5 2.224404 +R8 g772_4 6 2.224404 +C12 7 gnd 2.080806f +R9 g772_4 7 2.224404 +C13 8 gnd 2.080806f +R10 7 8 2.224404 +C14 9 gnd 2.080806f +R11 8 9 2.224404 +C15 10 gnd 2.080806f +R12 9 10 2.224404 +R13 10 g772_1 2.224404 +C16 11 gnd 2.080806f +R14 g772_0 11 2.224404 +C17 12 gnd 2.080806f +R15 11 12 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +C19 14 gnd 2.080806f +R17 13 14 2.224404 +C20 15 gnd 2.080806f +R18 14 15 2.224404 +R19 15 g772_2 2.224404 +.ends + +.subckt netg77 g77_1 g77_0 gnd +C1 g77_1 gnd 2.080806f +C2 g77_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g77_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g77_1 2.224404 +.ends + +.subckt netg7529 g7529_0 g7529_1 gnd +C1 g7529_0 gnd 2.080806f +C2 g7529_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7529_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +R14 g7529_1 13 2.224404 +.ends + +.subckt netg6351 g6351_0 g6351_1 g6351_3 g6351_2 gnd +C1 g6351_0 gnd 2.080806f +C2 g6351_1 gnd 2.080806f +C3 g6351_3 gnd 2.080806f +C4 g6351_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g6351_0 1 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6351_2 3 2.224404 +R5 g6351_2 g6351_1 2.224404 +C8 4 gnd 2.080806f +R6 g6351_0 4 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g6351_3 2.224404 +.ends + +.subckt netg1456 g1456_0 g1456_1 gnd +C1 g1456_0 gnd 2.080806f +C2 g1456_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1456_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +R15 g1456_1 14 2.224404 +.ends + +.subckt netg2318 g2318_1 g2318_3 g2318_2 gnd +C1 g2318_1 gnd 2.080806f +C2 g2318_3 gnd 2.080806f +C3 g2318_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2318_3 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +R11 g2318_2 10 2.224404 +C14 11 gnd 2.080806f +R12 11 g2318_2 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +R15 g2318_1 13 2.224404 +.ends + +.subckt netg753 g753_5 g753_6 g753_0 g753_2 g753_3 g753_1 gnd +C1 g753_5 gnd 2.080806f +C2 g753_6 gnd 2.080806f +C3 g753_0 gnd 2.080806f +C4 g753_2 gnd 2.080806f +C5 g753_3 gnd 2.080806f +C6 g753_1 gnd 2.080806f +R1 g753_5 g753_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g753_5 2.224404 +C8 2 gnd 2.080806f +R3 2 1 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g753_1 4 2.224404 +C11 5 gnd 2.080806f +R7 g753_0 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g753_2 2.224404 +C16 10 gnd 2.080806f +R13 10 g753_2 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +R17 13 g753_6 2.224404 +R18 g753_6 g753_3 2.224404 +.ends + +.subckt netg4802 g4802_6 g4802_9 g4802_7 g4802_3 g4802_1 g4802_5 g4802_0 g4802_8 g4802_2 g4802_4 gnd +C1 g4802_6 gnd 2.080806f +C2 g4802_9 gnd 2.080806f +C3 g4802_7 gnd 2.080806f +C4 g4802_3 gnd 2.080806f +C5 g4802_1 gnd 2.080806f +C6 g4802_5 gnd 2.080806f +C7 g4802_0 gnd 2.080806f +C8 g4802_8 gnd 2.080806f +C9 g4802_2 gnd 2.080806f +C10 g4802_4 gnd 2.080806f +R1 g4802_0 g4802_5 2.224404 +C11 1 gnd 2.080806f +R2 g4802_5 1 2.224404 +R3 1 g4802_1 2.224404 +R4 g4802_1 g4802_2 2.224404 +C12 2 gnd 2.080806f +R5 g4802_2 2 2.224404 +R6 2 g4802_8 2.224404 +C13 3 gnd 2.080806f +R7 3 g4802_8 2.224404 +R8 g4802_6 3 2.224404 +C14 4 gnd 2.080806f +R9 g4802_8 4 2.224404 +R10 4 g4802_9 2.224404 +C15 5 gnd 2.080806f +R11 5 g4802_2 2.224404 +C16 6 gnd 2.080806f +R12 6 5 2.224404 +R13 6 g4802_7 2.224404 +C17 7 gnd 2.080806f +R14 7 g4802_0 2.224404 +C18 8 gnd 2.080806f +R15 8 7 2.224404 +C19 9 gnd 2.080806f +R16 9 8 2.224404 +R17 g4802_4 9 2.224404 +C20 10 gnd 2.080806f +R18 10 g4802_6 2.224404 +C21 11 gnd 2.080806f +R19 11 10 2.224404 +C22 12 gnd 2.080806f +R20 12 11 2.224404 +C23 13 gnd 2.080806f +R21 13 12 2.224404 +C24 14 gnd 2.080806f +R22 14 13 2.224404 +C25 15 gnd 2.080806f +R23 15 14 2.224404 +C26 16 gnd 2.080806f +R24 15 16 2.224404 +R25 g4802_3 16 2.224404 +.ends + +.subckt netg1965 g1965_4 g1965_5 g1965_0 g1965_3 g1965_1 g1965_2 gnd +C1 g1965_4 gnd 2.080806f +C2 g1965_5 gnd 2.080806f +C3 g1965_0 gnd 2.080806f +C4 g1965_3 gnd 2.080806f +C5 g1965_1 gnd 2.080806f +C6 g1965_2 gnd 2.080806f +R1 g1965_0 g1965_2 2.224404 +C7 1 gnd 2.080806f +R2 g1965_2 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g1965_5 2.224404 +C10 4 gnd 2.080806f +R6 g1965_5 4 2.224404 +R7 4 g1965_3 2.224404 +C11 5 gnd 2.080806f +R8 g1965_3 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 7 6 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 10 9 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +R15 g1965_1 11 2.224404 +C18 12 gnd 2.080806f +R16 12 g1965_1 2.224404 +C19 13 gnd 2.080806f +R17 13 12 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +R19 g1965_4 14 2.224404 +.ends + +.subckt netg695 g695_1 g695_0 gnd +C1 g695_1 gnd 2.080806f +C2 g695_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g695_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +R15 g695_1 14 2.224404 +.ends + +.subckt netg2001 g2001_1 g2001_0 g2001_2 gnd +C1 g2001_1 gnd 2.080806f +C2 g2001_0 gnd 2.080806f +C3 g2001_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2001_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g2001_2 11 2.224404 +C15 12 gnd 2.080806f +R13 12 g2001_2 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +R15 g2001_1 13 2.224404 +.ends + +.subckt netg4177 g4177_0 g4177_1 gnd +C1 g4177_0 gnd 2.080806f +C2 g4177_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g4177_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +R15 g4177_1 14 2.224404 +.ends + +.subckt netg608 g608_2 g608_1 g608_5 g608_3 g608_0 g608_4 gnd +C1 g608_2 gnd 2.080806f +C2 g608_1 gnd 2.080806f +C3 g608_5 gnd 2.080806f +C4 g608_3 gnd 2.080806f +C5 g608_0 gnd 2.080806f +C6 g608_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g608_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g608_1 2.224404 +C9 3 gnd 2.080806f +R4 g608_0 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g608_5 2.224404 +C12 6 gnd 2.080806f +R8 g608_5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g608_4 2.224404 +C14 8 gnd 2.080806f +R11 6 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g608_3 2.224404 +C16 10 gnd 2.080806f +R14 g608_3 10 2.224404 +C17 11 gnd 2.080806f +R15 10 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +R20 15 g608_2 2.224404 +.ends + +.subckt netg68 g68_0 g68_1 gnd +C1 g68_0 gnd 2.080806f +C2 g68_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g68_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +R15 g68_1 14 2.224404 +.ends + +.subckt netg507 g507_1 g507_3 g507_4 g507_0 g507_2 gnd +C1 g507_1 gnd 2.080806f +C2 g507_3 gnd 2.080806f +C3 g507_4 gnd 2.080806f +C4 g507_0 gnd 2.080806f +C5 g507_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g507_0 1 2.224404 +R2 1 g507_3 2.224404 +C7 2 gnd 2.080806f +R3 g507_3 2 2.224404 +R4 2 g507_2 2.224404 +C8 3 gnd 2.080806f +R5 g507_3 3 2.224404 +R6 3 g507_4 2.224404 +C9 4 gnd 2.080806f +R7 g507_2 4 2.224404 +C10 5 gnd 2.080806f +R8 4 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +C14 9 gnd 2.080806f +R12 8 9 2.224404 +C15 10 gnd 2.080806f +R13 9 10 2.224404 +C16 11 gnd 2.080806f +R14 10 11 2.224404 +C17 12 gnd 2.080806f +R15 11 12 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +R17 13 g507_1 2.224404 +.ends + +.subckt netg2907 g2907_6 g2907_4 g2907_1 g2907_0 g2907_5 g2907_3 g2907_2 gnd +C1 g2907_6 gnd 2.080806f +C2 g2907_4 gnd 2.080806f +C3 g2907_1 gnd 2.080806f +C4 g2907_0 gnd 2.080806f +C5 g2907_5 gnd 2.080806f +C6 g2907_3 gnd 2.080806f +C7 g2907_2 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g2907_0 1 2.224404 +R2 g2907_4 1 2.224404 +C9 2 gnd 2.080806f +R3 1 2 2.224404 +C10 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g2907_6 2.224404 +C11 4 gnd 2.080806f +R6 1 4 2.224404 +C12 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g2907_1 2.224404 +R9 g2907_1 g2907_3 2.224404 +C13 6 gnd 2.080806f +R10 6 g2907_1 2.224404 +C14 7 gnd 2.080806f +R11 7 6 2.224404 +C15 8 gnd 2.080806f +R12 8 7 2.224404 +R13 g2907_2 8 2.224404 +C16 9 gnd 2.080806f +R14 g2907_3 9 2.224404 +C17 10 gnd 2.080806f +R15 9 10 2.224404 +C18 11 gnd 2.080806f +R16 10 11 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +R18 12 g2907_5 2.224404 +.ends + +.subckt netg5280 g5280_5 g5280_4 g5280_6 g5280_0 g5280_1 g5280_3 g5280_2 gnd +C1 g5280_5 gnd 2.080806f +C2 g5280_4 gnd 2.080806f +C3 g5280_6 gnd 2.080806f +C4 g5280_0 gnd 2.080806f +C5 g5280_1 gnd 2.080806f +C6 g5280_3 gnd 2.080806f +C7 g5280_2 gnd 2.080806f +R1 g5280_0 g5280_4 2.224404 +C8 1 gnd 2.080806f +R2 1 g5280_0 2.224404 +R3 g5280_3 1 2.224404 +C9 2 gnd 2.080806f +R4 g5280_0 2 2.224404 +R5 g5280_1 2 2.224404 +C10 3 gnd 2.080806f +R6 g5280_3 3 2.224404 +R7 3 g5280_5 2.224404 +C11 4 gnd 2.080806f +R8 4 g5280_3 2.224404 +C12 5 gnd 2.080806f +R9 5 4 2.224404 +R10 g5280_6 5 2.224404 +C13 6 gnd 2.080806f +R11 6 g5280_5 2.224404 +C14 7 gnd 2.080806f +R12 7 6 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +R19 g5280_2 13 2.224404 +.ends + +.subckt netg3718 g3718_4 g3718_6 g3718_5 g3718_1 g3718_0 g3718_2 g3718_3 gnd +C1 g3718_4 gnd 2.080806f +C2 g3718_6 gnd 2.080806f +C3 g3718_5 gnd 2.080806f +C4 g3718_1 gnd 2.080806f +C5 g3718_0 gnd 2.080806f +C6 g3718_2 gnd 2.080806f +C7 g3718_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g3718_0 1 2.224404 +R2 1 g3718_2 2.224404 +R3 g3718_2 g3718_4 2.224404 +C9 2 gnd 2.080806f +R4 g3718_2 2 2.224404 +R5 2 g3718_6 2.224404 +C10 3 gnd 2.080806f +R6 3 g3718_6 2.224404 +C11 4 gnd 2.080806f +R7 4 3 2.224404 +C12 5 gnd 2.080806f +R8 5 4 2.224404 +C13 6 gnd 2.080806f +R9 5 6 2.224404 +R10 g3718_5 6 2.224404 +C14 7 gnd 2.080806f +R11 7 g3718_5 2.224404 +C15 8 gnd 2.080806f +R12 8 7 2.224404 +C16 9 gnd 2.080806f +R13 9 8 2.224404 +C17 10 gnd 2.080806f +R14 10 9 2.224404 +C18 11 gnd 2.080806f +R15 11 10 2.224404 +C19 12 gnd 2.080806f +R16 12 11 2.224404 +R17 g3718_1 12 2.224404 +R18 g3718_3 g3718_1 2.224404 +.ends + +.subckt netg1840 g1840_3 g1840_1 g1840_0 g1840_2 gnd +C1 g1840_3 gnd 2.080806f +C2 g1840_1 gnd 2.080806f +C3 g1840_0 gnd 2.080806f +C4 g1840_2 gnd 2.080806f +R1 g1840_3 g1840_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g1840_3 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +R13 g1840_2 11 2.224404 +C16 12 gnd 2.080806f +R14 12 g1840_2 2.224404 +R15 g1840_1 12 2.224404 +.ends + +.subckt netg4626 g4626_0 g4626_1 gnd +C1 g4626_0 gnd 2.080806f +C2 g4626_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g4626_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +R15 14 g4626_1 2.224404 +.ends + +.subckt netg6446 g6446_1 g6446_0 gnd +C1 g6446_1 gnd 2.080806f +C2 g6446_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6446_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +R15 14 g6446_1 2.224404 +.ends + +.subckt netg1275 g1275_5 g1275_4 g1275_0 g1275_3 g1275_1 g1275_2 gnd +C1 g1275_5 gnd 2.080806f +C2 g1275_4 gnd 2.080806f +C3 g1275_0 gnd 2.080806f +C4 g1275_3 gnd 2.080806f +C5 g1275_1 gnd 2.080806f +C6 g1275_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1275_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g1275_5 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +R8 g1275_2 6 2.224404 +C13 7 gnd 2.080806f +R9 7 6 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +R11 g1275_4 8 2.224404 +C15 9 gnd 2.080806f +R12 9 g1275_4 2.224404 +C16 10 gnd 2.080806f +R13 10 9 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 13 12 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +R18 g1275_3 14 2.224404 +R19 g1275_3 g1275_1 2.224404 +.ends + +.subckt netg108 g108_0 g108_1 gnd +C1 g108_0 gnd 2.080806f +C2 g108_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g108_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +R15 14 g108_1 2.224404 +.ends + +.subckt netg4395 g4395_1 g4395_0 g4395_2 gnd +C1 g4395_1 gnd 2.080806f +C2 g4395_0 gnd 2.080806f +C3 g4395_2 gnd 2.080806f +R1 g4395_2 g4395_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g4395_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +R15 g4395_1 13 2.224404 +.ends + +.subckt netg3736 g3736_8 g3736_6 g3736_5 g3736_9 g3736_1 g3736_4 g3736_7 g3736_0 g3736_3 g3736_2 gnd +C1 g3736_8 gnd 2.080806f +C2 g3736_6 gnd 2.080806f +C3 g3736_5 gnd 2.080806f +C4 g3736_9 gnd 2.080806f +C5 g3736_1 gnd 2.080806f +C6 g3736_4 gnd 2.080806f +C7 g3736_7 gnd 2.080806f +C8 g3736_0 gnd 2.080806f +C9 g3736_3 gnd 2.080806f +C10 g3736_2 gnd 2.080806f +R1 g3736_0 g3736_1 2.224404 +C11 1 gnd 2.080806f +R2 1 g3736_0 2.224404 +R3 g3736_6 1 2.224404 +C12 2 gnd 2.080806f +R4 2 g3736_1 2.224404 +C13 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g3736_3 3 2.224404 +C14 4 gnd 2.080806f +R7 4 g3736_6 2.224404 +C15 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g3736_4 5 2.224404 +C16 6 gnd 2.080806f +R10 6 g3736_6 2.224404 +C17 7 gnd 2.080806f +R11 7 6 2.224404 +R12 g3736_9 7 2.224404 +C18 8 gnd 2.080806f +R13 5 8 2.224404 +C19 9 gnd 2.080806f +R14 9 8 2.224404 +R15 g3736_7 9 2.224404 +C20 10 gnd 2.080806f +R16 10 g3736_9 2.224404 +C21 11 gnd 2.080806f +R17 11 10 2.224404 +C22 12 gnd 2.080806f +R18 12 11 2.224404 +C23 13 gnd 2.080806f +R19 13 12 2.224404 +C24 14 gnd 2.080806f +R20 14 13 2.224404 +R21 g3736_8 14 2.224404 +C25 15 gnd 2.080806f +R22 g3736_8 15 2.224404 +C26 16 gnd 2.080806f +R23 15 16 2.224404 +R24 16 g3736_2 2.224404 +C27 17 gnd 2.080806f +R25 17 g3736_8 2.224404 +C28 18 gnd 2.080806f +R26 18 17 2.224404 +R27 g3736_5 18 2.224404 +.ends + +.subckt netg1455 g1455_1 g1455_0 gnd +C1 g1455_1 gnd 2.080806f +C2 g1455_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1455_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 16 g1455_1 2.224404 +.ends + +.subckt netg1100 g1100_0 g1100_1 gnd +C1 g1100_0 gnd 2.080806f +C2 g1100_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1100_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +R15 g1100_1 14 2.224404 +.ends + +.subckt netg3839 g3839_0 g3839_5 g3839_4 g3839_2 g3839_1 g3839_3 gnd +C1 g3839_0 gnd 2.080806f +C2 g3839_5 gnd 2.080806f +C3 g3839_4 gnd 2.080806f +C4 g3839_2 gnd 2.080806f +C5 g3839_1 gnd 2.080806f +C6 g3839_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g3839_0 1 2.224404 +R2 g3839_1 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g3839_0 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g3839_3 4 2.224404 +C11 5 gnd 2.080806f +R7 5 g3839_3 2.224404 +C12 6 gnd 2.080806f +R8 6 5 2.224404 +C13 7 gnd 2.080806f +R9 7 6 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +R12 g3839_4 9 2.224404 +C16 10 gnd 2.080806f +R13 g3839_4 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +R18 g3839_5 14 2.224404 +C21 15 gnd 2.080806f +R19 g3839_5 15 2.224404 +R20 15 g3839_2 2.224404 +.ends + +.subckt netg4084 g4084_2 g4084_1 g4084_0 g4084_3 gnd +C1 g4084_2 gnd 2.080806f +C2 g4084_1 gnd 2.080806f +C3 g4084_0 gnd 2.080806f +C4 g4084_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g4084_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g4084_2 2.224404 +C7 3 gnd 2.080806f +R4 3 g4084_2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +R7 5 g4084_1 2.224404 +C10 6 gnd 2.080806f +R8 g4084_1 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g4084_3 2.224404 +.ends + +.subckt netg3746 g3746_3 g3746_0 g3746_1 g3746_6 g3746_7 g3746_4 g3746_2 g3746_5 gnd +C1 g3746_3 gnd 2.080806f +C2 g3746_0 gnd 2.080806f +C3 g3746_1 gnd 2.080806f +C4 g3746_6 gnd 2.080806f +C5 g3746_7 gnd 2.080806f +C6 g3746_4 gnd 2.080806f +C7 g3746_2 gnd 2.080806f +C8 g3746_5 gnd 2.080806f +R1 g3746_5 g3746_0 2.224404 +C9 1 gnd 2.080806f +R2 g3746_0 1 2.224404 +C10 2 gnd 2.080806f +R3 1 2 2.224404 +C11 3 gnd 2.080806f +R4 2 3 2.224404 +C12 4 gnd 2.080806f +R5 3 4 2.224404 +C13 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g3746_1 2.224404 +C14 6 gnd 2.080806f +R8 g3746_1 6 2.224404 +C15 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g3746_4 2.224404 +C16 8 gnd 2.080806f +R11 g3746_4 8 2.224404 +C17 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g3746_3 2.224404 +R14 g3746_3 g3746_2 2.224404 +C18 10 gnd 2.080806f +R15 g3746_3 10 2.224404 +R16 10 g3746_7 2.224404 +C19 11 gnd 2.080806f +R17 1 11 2.224404 +C20 12 gnd 2.080806f +R18 11 12 2.224404 +C21 13 gnd 2.080806f +R19 12 13 2.224404 +C22 14 gnd 2.080806f +R20 13 14 2.224404 +C23 15 gnd 2.080806f +R21 14 15 2.224404 +R22 15 g3746_6 2.224404 +.ends + +.subckt netg2849 g2849_1 g2849_2 g2849_0 g2849_3 gnd +C1 g2849_1 gnd 2.080806f +C2 g2849_2 gnd 2.080806f +C3 g2849_0 gnd 2.080806f +C4 g2849_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2849_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2849_2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g2849_3 2.224404 +C11 7 gnd 2.080806f +R9 g2849_3 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +R18 15 g2849_1 2.224404 +.ends + +.subckt netg3103 g3103_0 g3103_2 g3103_1 gnd +C1 g3103_0 gnd 2.080806f +C2 g3103_2 gnd 2.080806f +C3 g3103_1 gnd 2.080806f +.ends + +.subckt netg2075 g2075_3 g2075_5 g2075_4 g2075_2 g2075_1 g2075_0 gnd +C1 g2075_3 gnd 2.080806f +C2 g2075_5 gnd 2.080806f +C3 g2075_4 gnd 2.080806f +C4 g2075_2 gnd 2.080806f +C5 g2075_1 gnd 2.080806f +C6 g2075_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2075_0 2.224404 +R2 g2075_5 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g2075_4 2.224404 +C9 3 gnd 2.080806f +R5 3 g2075_5 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +R7 g2075_2 4 2.224404 +C11 5 gnd 2.080806f +R8 5 g2075_4 2.224404 +C12 6 gnd 2.080806f +R9 6 5 2.224404 +C13 7 gnd 2.080806f +R10 7 6 2.224404 +C14 8 gnd 2.080806f +R11 8 7 2.224404 +C15 9 gnd 2.080806f +R12 9 8 2.224404 +R13 9 g2075_3 2.224404 +C16 10 gnd 2.080806f +R14 g2075_3 10 2.224404 +C17 11 gnd 2.080806f +R15 10 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +R19 14 g2075_1 2.224404 +.ends + +.subckt netg6573 g6573_4 g6573_0 g6573_2 g6573_1 g6573_5 g6573_3 gnd +C1 g6573_4 gnd 2.080806f +C2 g6573_0 gnd 2.080806f +C3 g6573_2 gnd 2.080806f +C4 g6573_1 gnd 2.080806f +C5 g6573_5 gnd 2.080806f +C6 g6573_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g6573_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6573_5 2.224404 +C10 4 gnd 2.080806f +R5 4 g6573_5 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g6573_3 2.224404 +C13 7 gnd 2.080806f +R9 g6573_0 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +R13 10 g6573_1 2.224404 +C17 11 gnd 2.080806f +R14 11 5 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +R16 g6573_2 12 2.224404 +C19 13 gnd 2.080806f +R17 g6573_2 13 2.224404 +C20 14 gnd 2.080806f +R18 14 13 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +R20 g6573_4 15 2.224404 +.ends + +.subckt netg1086 g1086_3 g1086_5 g1086_1 g1086_4 gnd +C1 g1086_3 gnd 2.080806f +C2 g1086_5 gnd 2.080806f +C3 g1086_1 gnd 2.080806f +C4 g1086_4 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1086_1 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g1086_4 3 2.224404 +C8 4 gnd 2.080806f +R5 4 g1086_1 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g1086_5 9 2.224404 +C14 10 gnd 2.080806f +R12 10 g1086_5 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +R22 g1086_3 19 2.224404 +.ends + +.subckt netg2540 g2540_1 g2540_2 g2540_0 gnd +C1 g2540_1 gnd 2.080806f +C2 g2540_2 gnd 2.080806f +C3 g2540_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2540_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +R9 g2540_2 8 2.224404 +C12 9 gnd 2.080806f +R10 g2540_2 9 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +R16 g2540_1 14 2.224404 +.ends + +.subckt netg2096 g2096_4 g2096_2 g2096_1 g2096_3 g2096_0 gnd +C1 g2096_4 gnd 2.080806f +C2 g2096_2 gnd 2.080806f +C3 g2096_1 gnd 2.080806f +C4 g2096_3 gnd 2.080806f +C5 g2096_0 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g2096_0 1 2.224404 +R2 1 g2096_1 2.224404 +C7 2 gnd 2.080806f +R3 g2096_1 2 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g2096_2 2.224404 +C9 4 gnd 2.080806f +R6 g2096_1 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +C12 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g2096_4 2.224404 +C13 8 gnd 2.080806f +R11 8 g2096_0 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 10 9 2.224404 +C16 11 gnd 2.080806f +R14 11 10 2.224404 +C17 12 gnd 2.080806f +R15 12 11 2.224404 +C18 13 gnd 2.080806f +R16 13 12 2.224404 +R17 g2096_3 13 2.224404 +.ends + +.subckt netg1337 g1337_3 g1337_1 g1337_2 g1337_5 g1337_0 g1337_6 g1337_4 gnd +C1 g1337_3 gnd 2.080806f +C2 g1337_1 gnd 2.080806f +C3 g1337_2 gnd 2.080806f +C4 g1337_5 gnd 2.080806f +C5 g1337_0 gnd 2.080806f +C6 g1337_6 gnd 2.080806f +C7 g1337_4 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g1337_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1337_5 2 2.224404 +C10 3 gnd 2.080806f +R4 1 3 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g1337_6 2.224404 +R8 g1337_6 g1337_3 2.224404 +C13 6 gnd 2.080806f +R9 g1337_3 6 2.224404 +R10 6 g1337_2 2.224404 +C14 7 gnd 2.080806f +R11 7 g1337_2 2.224404 +R12 g1337_4 7 2.224404 +C15 8 gnd 2.080806f +R13 7 8 2.224404 +C16 9 gnd 2.080806f +R14 8 9 2.224404 +C17 10 gnd 2.080806f +R15 9 10 2.224404 +C18 11 gnd 2.080806f +R16 10 11 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +C20 13 gnd 2.080806f +R18 12 13 2.224404 +R19 13 g1337_1 2.224404 +.ends + +.subckt netg6090 g6090_2 g6090_1 g6090_0 gnd +C1 g6090_2 gnd 2.080806f +C2 g6090_1 gnd 2.080806f +C3 g6090_0 gnd 2.080806f +R1 g6090_0 g6090_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g6090_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +R16 g6090_2 14 2.224404 +.ends + +.subckt netg1592 g1592_3 g1592_1 g1592_0 g1592_2 gnd +C1 g1592_3 gnd 2.080806f +C2 g1592_1 gnd 2.080806f +C3 g1592_0 gnd 2.080806f +C4 g1592_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1592_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 7 8 2.224404 +C13 9 gnd 2.080806f +R9 8 9 2.224404 +C14 10 gnd 2.080806f +R10 9 10 2.224404 +C15 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g1592_3 2.224404 +C16 12 gnd 2.080806f +R13 12 g1592_3 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +R18 16 g1592_2 2.224404 +R19 g1592_1 g1592_2 2.224404 +.ends + +.subckt netg570 g570_1 g570_5 g570_0 g570_4 g570_3 g570_2 gnd +C1 g570_1 gnd 2.080806f +C2 g570_5 gnd 2.080806f +C3 g570_0 gnd 2.080806f +C4 g570_4 gnd 2.080806f +C5 g570_3 gnd 2.080806f +C6 g570_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g570_0 2.224404 +R2 g570_1 1 2.224404 +C8 2 gnd 2.080806f +R3 g570_1 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g570_3 3 2.224404 +C10 4 gnd 2.080806f +R6 g570_3 4 2.224404 +R7 4 g570_2 2.224404 +C11 5 gnd 2.080806f +R8 g570_2 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +R15 11 g570_4 2.224404 +C18 12 gnd 2.080806f +R16 g570_4 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +R19 14 g570_5 2.224404 +.ends + +.subckt netg7147 g7147_2 g7147_1 g7147_0 gnd +C1 g7147_2 gnd 2.080806f +C2 g7147_1 gnd 2.080806f +C3 g7147_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7147_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7147_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g7147_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +R16 14 g7147_2 2.224404 +.ends + +.subckt netg5514 g5514_0 g5514_1 gnd +C1 g5514_0 gnd 2.080806f +C2 g5514_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g5514_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +R16 15 g5514_1 2.224404 +.ends + +.subckt netg4598 g4598_5 g4598_3 g4598_12 g4598_8 g4598_6 g4598_0 g4598_9 g4598_4 g4598_1 g4598_2 g4598_10 g4598_7 g4598_11 gnd +C1 g4598_5 gnd 2.080806f +C2 g4598_3 gnd 2.080806f +C3 g4598_12 gnd 2.080806f +C4 g4598_8 gnd 2.080806f +C5 g4598_6 gnd 2.080806f +C6 g4598_0 gnd 2.080806f +C7 g4598_9 gnd 2.080806f +C8 g4598_4 gnd 2.080806f +C9 g4598_1 gnd 2.080806f +C10 g4598_2 gnd 2.080806f +C11 g4598_10 gnd 2.080806f +C12 g4598_7 gnd 2.080806f +C13 g4598_11 gnd 2.080806f +C14 1 gnd 2.080806f +R1 1 g4598_0 2.224404 +C15 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4598_11 2 2.224404 +R4 g4598_8 g4598_11 2.224404 +R5 g4598_2 g4598_8 2.224404 +R6 g4598_6 g4598_8 2.224404 +C16 3 gnd 2.080806f +R7 3 g4598_11 2.224404 +R8 g4598_4 3 2.224404 +C17 4 gnd 2.080806f +R9 g4598_11 4 2.224404 +C18 5 gnd 2.080806f +R10 4 5 2.224404 +C19 6 gnd 2.080806f +R11 5 6 2.224404 +R12 6 g4598_3 2.224404 +C20 7 gnd 2.080806f +R13 7 g4598_3 2.224404 +R14 7 g4598_12 2.224404 +R15 g4598_1 g4598_12 2.224404 +R16 g4598_1 g4598_9 2.224404 +C21 8 gnd 2.080806f +R17 8 g4598_9 2.224404 +R18 8 g4598_7 2.224404 +C22 9 gnd 2.080806f +R19 g4598_12 9 2.224404 +C23 10 gnd 2.080806f +R20 9 10 2.224404 +C24 11 gnd 2.080806f +R21 10 11 2.224404 +R22 11 g4598_5 2.224404 +C25 12 gnd 2.080806f +R23 g4598_9 12 2.224404 +C26 13 gnd 2.080806f +R24 12 13 2.224404 +C27 14 gnd 2.080806f +R25 13 14 2.224404 +C28 15 gnd 2.080806f +R26 14 15 2.224404 +R27 15 g4598_10 2.224404 +.ends + +.subckt netg5258 g5258_0 g5258_1 g5258_4 g5258_3 g5258_2 gnd +C1 g5258_0 gnd 2.080806f +C2 g5258_1 gnd 2.080806f +C3 g5258_4 gnd 2.080806f +C4 g5258_3 gnd 2.080806f +C5 g5258_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g5258_0 2.224404 +R2 g5258_1 1 2.224404 +R3 g5258_2 g5258_1 2.224404 +R4 g5258_4 1 2.224404 +C7 2 gnd 2.080806f +R5 2 g5258_2 2.224404 +C8 3 gnd 2.080806f +R6 3 2 2.224404 +C9 4 gnd 2.080806f +R7 4 3 2.224404 +C10 5 gnd 2.080806f +R8 5 4 2.224404 +C11 6 gnd 2.080806f +R9 6 5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 10 9 2.224404 +C16 11 gnd 2.080806f +R14 11 10 2.224404 +C17 12 gnd 2.080806f +R15 12 11 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +R17 g5258_3 13 2.224404 +.ends + +.subckt netg70 g70_0 g70_1 g70_2 gnd +C1 g70_0 gnd 2.080806f +C2 g70_1 gnd 2.080806f +C3 g70_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g70_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g70_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +R16 g70_1 14 2.224404 +.ends + +.subckt netg1971 g1971_4 g1971_0 g1971_2 g1971_6 g1971_5 g1971_3 g1971_1 gnd +C1 g1971_4 gnd 2.080806f +C2 g1971_0 gnd 2.080806f +C3 g1971_2 gnd 2.080806f +C4 g1971_6 gnd 2.080806f +C5 g1971_5 gnd 2.080806f +C6 g1971_3 gnd 2.080806f +C7 g1971_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g1971_0 2.224404 +R2 g1971_6 1 2.224404 +C9 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g1971_2 2.224404 +C10 3 gnd 2.080806f +R5 3 g1971_6 2.224404 +C11 4 gnd 2.080806f +R6 4 3 2.224404 +C12 5 gnd 2.080806f +R7 5 4 2.224404 +R8 g1971_3 5 2.224404 +C13 6 gnd 2.080806f +R9 g1971_3 6 2.224404 +C14 7 gnd 2.080806f +R10 6 7 2.224404 +C15 8 gnd 2.080806f +R11 7 8 2.224404 +C16 9 gnd 2.080806f +R12 8 9 2.224404 +C17 10 gnd 2.080806f +R13 9 10 2.224404 +R14 g1971_4 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +R17 12 g1971_5 2.224404 +C20 13 gnd 2.080806f +R18 g1971_4 13 2.224404 +C21 14 gnd 2.080806f +R19 13 14 2.224404 +C22 15 gnd 2.080806f +R20 14 15 2.224404 +C23 16 gnd 2.080806f +R21 15 16 2.224404 +R22 g1971_1 16 2.224404 +.ends + +.subckt netx491 x491_1 x491_0 gnd +C1 x491_1 gnd 2.080806f +C2 x491_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x491_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +R16 15 x491_1 2.224404 +.ends + +.subckt netg423 g423_4 g423_1 g423_0 g423_3 g423_2 gnd +C1 g423_4 gnd 2.080806f +C2 g423_1 gnd 2.080806f +C3 g423_0 gnd 2.080806f +C4 g423_3 gnd 2.080806f +C5 g423_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g423_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g423_1 2.224404 +C8 3 gnd 2.080806f +R4 3 g423_1 2.224404 +C9 4 gnd 2.080806f +R5 3 4 2.224404 +C10 5 gnd 2.080806f +R6 4 5 2.224404 +C11 6 gnd 2.080806f +R7 5 6 2.224404 +C12 7 gnd 2.080806f +R8 7 6 2.224404 +C13 8 gnd 2.080806f +R9 7 8 2.224404 +C14 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g423_3 2.224404 +R12 g423_3 g423_2 2.224404 +C15 10 gnd 2.080806f +R13 g423_2 10 2.224404 +C16 11 gnd 2.080806f +R14 10 11 2.224404 +C17 12 gnd 2.080806f +R15 11 12 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +C19 14 gnd 2.080806f +R17 13 14 2.224404 +R18 14 g423_4 2.224404 +.ends + +.subckt netg760 g760_1 g760_4 g760_2 g760_0 g760_6 g760_3 g760_5 gnd +C1 g760_1 gnd 2.080806f +C2 g760_4 gnd 2.080806f +C3 g760_2 gnd 2.080806f +C4 g760_0 gnd 2.080806f +C5 g760_6 gnd 2.080806f +C6 g760_3 gnd 2.080806f +C7 g760_5 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g760_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g760_6 2 2.224404 +R4 g760_6 g760_2 2.224404 +C10 3 gnd 2.080806f +R5 3 g760_0 2.224404 +C11 4 gnd 2.080806f +R6 4 3 2.224404 +C12 5 gnd 2.080806f +R7 4 5 2.224404 +C13 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g760_4 2.224404 +C14 7 gnd 2.080806f +R10 7 g760_4 2.224404 +C15 8 gnd 2.080806f +R11 7 8 2.224404 +R12 8 g760_1 2.224404 +C16 9 gnd 2.080806f +R13 9 g760_1 2.224404 +C17 10 gnd 2.080806f +R14 10 9 2.224404 +C18 11 gnd 2.080806f +R15 11 10 2.224404 +R16 g760_5 11 2.224404 +C19 12 gnd 2.080806f +R17 12 g760_5 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +C21 14 gnd 2.080806f +R19 14 13 2.224404 +R20 g760_3 14 2.224404 +.ends + +.subckt netg4498 g4498_7 g4498_6 g4498_2 g4498_8 g4498_1 g4498_9 g4498_4 g4498_5 g4498_0 g4498_3 gnd +C1 g4498_7 gnd 2.080806f +C2 g4498_6 gnd 2.080806f +C3 g4498_2 gnd 2.080806f +C4 g4498_8 gnd 2.080806f +C5 g4498_1 gnd 2.080806f +C6 g4498_9 gnd 2.080806f +C7 g4498_4 gnd 2.080806f +C8 g4498_5 gnd 2.080806f +C9 g4498_0 gnd 2.080806f +C10 g4498_3 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g4498_0 2.224404 +C12 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4498_3 2 2.224404 +C13 3 gnd 2.080806f +R4 g4498_0 3 2.224404 +C14 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g4498_4 2.224404 +C15 5 gnd 2.080806f +R7 3 5 2.224404 +R8 5 g4498_5 2.224404 +R9 g4498_5 g4498_7 2.224404 +R10 g4498_7 g4498_2 2.224404 +R11 g4498_2 g4498_9 2.224404 +C16 6 gnd 2.080806f +R12 g4498_2 6 2.224404 +C17 7 gnd 2.080806f +R13 6 7 2.224404 +R14 7 g4498_6 2.224404 +C18 8 gnd 2.080806f +R15 g4498_6 8 2.224404 +C19 9 gnd 2.080806f +R16 8 9 2.224404 +R17 9 g4498_1 2.224404 +C20 10 gnd 2.080806f +R18 g4498_1 10 2.224404 +R19 10 g4498_8 2.224404 +.ends + +.subckt netg67 g67_1 g67_0 gnd +C1 g67_1 gnd 2.080806f +C2 g67_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g67_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +R16 g67_1 15 2.224404 +.ends + +.subckt netg6784 g6784_2 g6784_0 g6784_1 gnd +C1 g6784_2 gnd 2.080806f +C2 g6784_0 gnd 2.080806f +C3 g6784_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6784_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6784_1 2.224404 +C6 3 gnd 2.080806f +R4 1 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +R16 14 g6784_2 2.224404 +.ends + +.subckt netg7436 g7436_1 g7436_0 gnd +C1 g7436_1 gnd 2.080806f +C2 g7436_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7436_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +R16 g7436_1 15 2.224404 +.ends + +.subckt netg1807 g1807_0 g1807_1 g1807_3 g1807_2 gnd +C1 g1807_0 gnd 2.080806f +C2 g1807_1 gnd 2.080806f +C3 g1807_3 gnd 2.080806f +C4 g1807_2 gnd 2.080806f +.ends + +.subckt netg72 g72_0 g72_1 g72_2 gnd +C1 g72_0 gnd 2.080806f +C2 g72_1 gnd 2.080806f +C3 g72_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g72_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g72_2 7 2.224404 +C11 8 gnd 2.080806f +R9 g72_2 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +R17 15 g72_1 2.224404 +.ends + +.subckt netg602 g602_4 g602_2 g602_1 g602_0 g602_5 g602_3 gnd +C1 g602_4 gnd 2.080806f +C2 g602_2 gnd 2.080806f +C3 g602_1 gnd 2.080806f +C4 g602_0 gnd 2.080806f +C5 g602_5 gnd 2.080806f +C6 g602_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g602_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g602_4 3 2.224404 +C10 4 gnd 2.080806f +R5 4 g602_4 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g602_1 9 2.224404 +C16 10 gnd 2.080806f +R12 10 g602_1 2.224404 +R13 g602_3 10 2.224404 +C17 11 gnd 2.080806f +R14 11 7 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +R16 g602_5 12 2.224404 +R17 g602_2 g602_5 2.224404 +.ends + +.subckt netg6423 g6423_5 g6423_2 g6423_3 g6423_4 g6423_1 g6423_0 g6423_6 gnd +C1 g6423_5 gnd 2.080806f +C2 g6423_2 gnd 2.080806f +C3 g6423_3 gnd 2.080806f +C4 g6423_4 gnd 2.080806f +C5 g6423_1 gnd 2.080806f +C6 g6423_0 gnd 2.080806f +C7 g6423_6 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g6423_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6423_1 2.224404 +C10 3 gnd 2.080806f +R4 1 3 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g6423_5 2.224404 +C13 6 gnd 2.080806f +R8 6 g6423_5 2.224404 +C14 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g6423_4 2.224404 +C15 8 gnd 2.080806f +R11 g6423_4 8 2.224404 +R12 8 g6423_3 2.224404 +C16 9 gnd 2.080806f +R13 g6423_4 9 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +R16 11 g6423_2 2.224404 +C19 12 gnd 2.080806f +R17 g6423_2 12 2.224404 +C20 13 gnd 2.080806f +R18 12 13 2.224404 +C21 14 gnd 2.080806f +R19 13 14 2.224404 +C22 15 gnd 2.080806f +R20 14 15 2.224404 +R21 g6423_6 15 2.224404 +.ends + +.subckt netg6942 g6942_3 g6942_4 g6942_5 g6942_0 g6942_2 g6942_1 gnd +C1 g6942_3 gnd 2.080806f +C2 g6942_4 gnd 2.080806f +C3 g6942_5 gnd 2.080806f +C4 g6942_0 gnd 2.080806f +C5 g6942_2 gnd 2.080806f +C6 g6942_1 gnd 2.080806f +R1 g6942_2 g6942_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g6942_2 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g6942_3 2.224404 +C9 3 gnd 2.080806f +R5 g6942_3 3 2.224404 +R6 3 g6942_4 2.224404 +C10 4 gnd 2.080806f +R7 4 g6942_3 2.224404 +C11 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g6942_1 5 2.224404 +C12 6 gnd 2.080806f +R10 g6942_0 6 2.224404 +C13 7 gnd 2.080806f +R11 6 7 2.224404 +C14 8 gnd 2.080806f +R12 7 8 2.224404 +C15 9 gnd 2.080806f +R13 8 9 2.224404 +C16 10 gnd 2.080806f +R14 9 10 2.224404 +C17 11 gnd 2.080806f +R15 10 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +R18 13 g6942_5 2.224404 +.ends + +.subckt netg3828 g3828_10 g3828_2 g3828_5 g3828_9 g3828_8 g3828_6 g3828_1 g3828_0 g3828_7 g3828_4 g3828_3 gnd +C1 g3828_10 gnd 2.080806f +C2 g3828_2 gnd 2.080806f +C3 g3828_5 gnd 2.080806f +C4 g3828_9 gnd 2.080806f +C5 g3828_8 gnd 2.080806f +C6 g3828_6 gnd 2.080806f +C7 g3828_1 gnd 2.080806f +C8 g3828_0 gnd 2.080806f +C9 g3828_7 gnd 2.080806f +C10 g3828_4 gnd 2.080806f +C11 g3828_3 gnd 2.080806f +C12 1 gnd 2.080806f +R1 g3828_0 1 2.224404 +R2 1 g3828_1 2.224404 +C13 2 gnd 2.080806f +R3 g3828_0 2 2.224404 +R4 2 g3828_7 2.224404 +R5 g3828_10 1 2.224404 +C14 3 gnd 2.080806f +R6 3 g3828_7 2.224404 +R7 3 g3828_8 2.224404 +C15 4 gnd 2.080806f +R8 g3828_7 4 2.224404 +C16 5 gnd 2.080806f +R9 4 5 2.224404 +R10 5 g3828_3 2.224404 +R11 g3828_3 g3828_9 2.224404 +R12 g3828_9 g3828_5 2.224404 +R13 g3828_5 g3828_2 2.224404 +C17 6 gnd 2.080806f +R14 6 g3828_2 2.224404 +R15 6 g3828_4 2.224404 +C18 7 gnd 2.080806f +R16 7 g3828_0 2.224404 +C19 8 gnd 2.080806f +R17 8 7 2.224404 +C20 9 gnd 2.080806f +R18 9 8 2.224404 +C21 10 gnd 2.080806f +R19 10 9 2.224404 +C22 11 gnd 2.080806f +R20 11 10 2.224404 +R21 g3828_6 11 2.224404 +.ends + +.subckt netg2045 g2045_3 g2045_1 g2045_0 g2045_2 gnd +C1 g2045_3 gnd 2.080806f +C2 g2045_1 gnd 2.080806f +C3 g2045_0 gnd 2.080806f +C4 g2045_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2045_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g2045_1 5 2.224404 +R7 g2045_2 g2045_1 2.224404 +C10 6 gnd 2.080806f +R8 6 2 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +R18 g2045_3 15 2.224404 +.ends + +.subckt netg103 g103_1 g103_0 gnd +C1 g103_1 gnd 2.080806f +C2 g103_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g103_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g103_1 16 2.224404 +.ends + +.subckt netg1816 g1816_3 g1816_2 g1816_1 g1816_0 gnd +C1 g1816_3 gnd 2.080806f +C2 g1816_2 gnd 2.080806f +C3 g1816_1 gnd 2.080806f +C4 g1816_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1816_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g1816_3 3 2.224404 +C8 4 gnd 2.080806f +R5 g1816_0 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g1816_1 2.224404 +C15 11 gnd 2.080806f +R13 g1816_1 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +R17 14 g1816_2 2.224404 +.ends + +.subckt netg1500 g1500_0 g1500_1 gnd +C1 g1500_0 gnd 2.080806f +C2 g1500_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1500_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g1500_1 2.224404 +.ends + +.subckt netg125 g125_1 g125_0 gnd +C1 g125_1 gnd 2.080806f +C2 g125_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g125_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g125_1 16 2.224404 +.ends + +.subckt netg6281 g6281_2 g6281_0 g6281_1 gnd +C1 g6281_2 gnd 2.080806f +C2 g6281_0 gnd 2.080806f +C3 g6281_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6281_0 1 2.224404 +R2 1 g6281_1 2.224404 +C5 2 gnd 2.080806f +R3 g6281_0 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +R18 16 g6281_2 2.224404 +.ends + +.subckt netg7144 g7144_1 g7144_2 g7144_0 gnd +C1 g7144_1 gnd 2.080806f +C2 g7144_2 gnd 2.080806f +C3 g7144_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g7144_0 1 2.224404 +R2 1 g7144_2 2.224404 +C5 2 gnd 2.080806f +R3 g7144_2 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +R17 15 g7144_1 2.224404 +.ends + +.subckt netg4568 g4568_13 g4568_12 g4568_9 g4568_6 g4568_4 g4568_10 g4568_8 g4568_2 g4568_11 g4568_1 g4568_3 g4568_7 gnd +C1 g4568_13 gnd 2.080806f +C2 g4568_12 gnd 2.080806f +C3 g4568_9 gnd 2.080806f +C4 g4568_6 gnd 2.080806f +C5 g4568_4 gnd 2.080806f +C6 g4568_10 gnd 2.080806f +C7 g4568_8 gnd 2.080806f +C8 g4568_2 gnd 2.080806f +C9 g4568_11 gnd 2.080806f +C10 g4568_1 gnd 2.080806f +C11 g4568_3 gnd 2.080806f +C12 g4568_7 gnd 2.080806f +C13 1 gnd 2.080806f +R1 g4568_8 1 2.224404 +C14 2 gnd 2.080806f +R2 1 2 2.224404 +C15 3 gnd 2.080806f +R3 2 3 2.224404 +C16 4 gnd 2.080806f +R4 3 4 2.224404 +C17 5 gnd 2.080806f +R5 4 5 2.224404 +C18 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g4568_3 2.224404 +C19 7 gnd 2.080806f +R8 g4568_3 7 2.224404 +R9 7 g4568_10 2.224404 +R10 g4568_10 g4568_12 2.224404 +R11 g4568_12 g4568_6 2.224404 +C20 8 gnd 2.080806f +R12 g4568_6 8 2.224404 +R13 8 g4568_11 2.224404 +R14 8 g4568_13 2.224404 +C21 9 gnd 2.080806f +R15 9 g4568_12 2.224404 +R16 g4568_1 9 2.224404 +C22 10 gnd 2.080806f +R17 g4568_13 10 2.224404 +R18 10 g4568_4 2.224404 +R19 g4568_2 g4568_4 2.224404 +C23 11 gnd 2.080806f +R20 g4568_11 11 2.224404 +R21 11 g4568_9 2.224404 +C24 12 gnd 2.080806f +R22 g4568_11 12 2.224404 +R23 12 g4568_7 2.224404 +.ends + +.subckt netg126 g126_0 g126_1 gnd +C1 g126_0 gnd 2.080806f +C2 g126_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g126_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g126_1 2.224404 +.ends + +.subckt netg7511 g7511_1 g7511_0 gnd +C1 g7511_1 gnd 2.080806f +C2 g7511_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7511_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g7511_1 2.224404 +.ends + +.subckt netg2801 g2801_1 g2801_0 gnd +C1 g2801_1 gnd 2.080806f +C2 g2801_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g2801_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g2801_1 2.224404 +.ends + +.subckt netg105 g105_0 g105_1 gnd +C1 g105_0 gnd 2.080806f +C2 g105_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g105_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g105_1 16 2.224404 +.ends + +.subckt netg1282 g1282_1 g1282_0 gnd +C1 g1282_1 gnd 2.080806f +C2 g1282_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1282_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g1282_1 16 2.224404 +.ends + +.subckt netg1856 g1856_2 g1856_0 g1856_1 gnd +C1 g1856_2 gnd 2.080806f +C2 g1856_0 gnd 2.080806f +C3 g1856_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1856_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g1856_2 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +R17 15 g1856_1 2.224404 +.ends + +.subckt netg6366 g6366_3 g6366_2 g6366_0 g6366_1 gnd +C1 g6366_3 gnd 2.080806f +C2 g6366_2 gnd 2.080806f +C3 g6366_0 gnd 2.080806f +C4 g6366_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g6366_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g6366_2 2 2.224404 +C7 3 gnd 2.080806f +R4 3 g6366_2 2.224404 +R5 g6366_1 3 2.224404 +C8 4 gnd 2.080806f +R6 g6366_0 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +R17 14 g6366_3 2.224404 +.ends + +.subckt netg73 g73_2 g73_1 g73_0 gnd +C1 g73_2 gnd 2.080806f +C2 g73_1 gnd 2.080806f +C3 g73_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g73_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g73_1 4 2.224404 +C8 5 gnd 2.080806f +R6 g73_0 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +R17 15 g73_2 2.224404 +.ends + +.subckt netg7534 g7534_1 g7534_0 gnd +C1 g7534_1 gnd 2.080806f +C2 g7534_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7534_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g7534_1 16 2.224404 +.ends + +.subckt netg81 g81_1 g81_0 gnd +C1 g81_1 gnd 2.080806f +C2 g81_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g81_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g81_1 2.224404 +.ends + +.subckt netg6610 g6610_1 g6610_0 gnd +C1 g6610_1 gnd 2.080806f +C2 g6610_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6610_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 g6610_1 16 2.224404 +.ends + +.subckt netg1600 g1600_2 g1600_3 g1600_1 g1600_0 gnd +C1 g1600_2 gnd 2.080806f +C2 g1600_3 gnd 2.080806f +C3 g1600_1 gnd 2.080806f +C4 g1600_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1600_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1600_2 2 2.224404 +C7 3 gnd 2.080806f +R4 g1600_0 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +R14 12 g1600_1 2.224404 +C17 13 gnd 2.080806f +R15 g1600_1 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +R17 14 g1600_3 2.224404 +.ends + +.subckt netg6026 g6026_6 g6026_4 g6026_0 g6026_5 g6026_3 g6026_1 g6026_2 gnd +C1 g6026_6 gnd 2.080806f +C2 g6026_4 gnd 2.080806f +C3 g6026_0 gnd 2.080806f +C4 g6026_5 gnd 2.080806f +C5 g6026_3 gnd 2.080806f +C6 g6026_1 gnd 2.080806f +C7 g6026_2 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g6026_0 1 2.224404 +R2 1 g6026_6 2.224404 +R3 g6026_6 g6026_1 2.224404 +R4 g6026_6 g6026_2 2.224404 +R5 g6026_4 g6026_6 2.224404 +R6 g6026_2 g6026_3 2.224404 +C9 2 gnd 2.080806f +R7 g6026_0 2 2.224404 +C10 3 gnd 2.080806f +R8 2 3 2.224404 +C11 4 gnd 2.080806f +R9 3 4 2.224404 +C12 5 gnd 2.080806f +R10 5 4 2.224404 +C13 6 gnd 2.080806f +R11 6 5 2.224404 +C14 7 gnd 2.080806f +R12 7 6 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +C20 13 gnd 2.080806f +R18 12 13 2.224404 +R19 13 g6026_5 2.224404 +.ends + +.subckt netg80 g80_0 g80_1 gnd +C1 g80_0 gnd 2.080806f +C2 g80_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g80_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g80_1 2.224404 +.ends + +.subckt netg1350 g1350_5 g1350_4 g1350_2 g1350_0 g1350_3 g1350_1 gnd +C1 g1350_5 gnd 2.080806f +C2 g1350_4 gnd 2.080806f +C3 g1350_2 gnd 2.080806f +C4 g1350_0 gnd 2.080806f +C5 g1350_3 gnd 2.080806f +C6 g1350_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1350_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1350_3 2.224404 +C10 4 gnd 2.080806f +R5 4 g1350_0 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 7 8 2.224404 +R10 g1350_5 8 2.224404 +C15 9 gnd 2.080806f +R11 9 4 2.224404 +C16 10 gnd 2.080806f +R12 10 9 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +C18 12 gnd 2.080806f +R14 12 11 2.224404 +C19 13 gnd 2.080806f +R15 13 12 2.224404 +R16 g1350_4 13 2.224404 +C20 14 gnd 2.080806f +R17 14 g1350_4 2.224404 +R18 g1350_1 14 2.224404 +C21 15 gnd 2.080806f +R19 g1350_1 15 2.224404 +C22 16 gnd 2.080806f +R20 16 15 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 19 18 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +R25 g1350_2 20 2.224404 +.ends + +.subckt netg2049 g2049_5 g2049_0 g2049_1 g2049_4 g2049_2 g2049_3 gnd +C1 g2049_5 gnd 2.080806f +C2 g2049_0 gnd 2.080806f +C3 g2049_1 gnd 2.080806f +C4 g2049_4 gnd 2.080806f +C5 g2049_2 gnd 2.080806f +C6 g2049_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2049_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2049_2 2.224404 +C10 4 gnd 2.080806f +R5 4 g2049_2 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 8 9 2.224404 +C16 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g2049_3 2.224404 +C17 11 gnd 2.080806f +R13 11 9 2.224404 +C18 12 gnd 2.080806f +R14 12 11 2.224404 +R15 g2049_5 12 2.224404 +C19 13 gnd 2.080806f +R16 13 g2049_5 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +R20 16 g2049_1 2.224404 +C23 17 gnd 2.080806f +R21 17 14 2.224404 +C24 18 gnd 2.080806f +R22 18 17 2.224404 +R23 g2049_4 18 2.224404 +.ends + +.subckt netg71 g71_1 g71_2 g71_0 gnd +C1 g71_1 gnd 2.080806f +C2 g71_2 gnd 2.080806f +C3 g71_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g71_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g71_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g71_1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +R17 g71_2 15 2.224404 +.ends + +.subckt netg4812 g4812_6 g4812_1 g4812_3 g4812_7 g4812_5 g4812_2 g4812_4 gnd +C1 g4812_6 gnd 2.080806f +C2 g4812_1 gnd 2.080806f +C3 g4812_3 gnd 2.080806f +C4 g4812_7 gnd 2.080806f +C5 g4812_5 gnd 2.080806f +C6 g4812_2 gnd 2.080806f +C7 g4812_4 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g4812_2 2.224404 +R2 g4812_5 1 2.224404 +R3 g4812_6 g4812_5 2.224404 +C9 2 gnd 2.080806f +R4 2 g4812_2 2.224404 +C10 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g4812_3 3 2.224404 +C11 4 gnd 2.080806f +R7 4 g4812_3 2.224404 +C12 5 gnd 2.080806f +R8 5 4 2.224404 +C13 6 gnd 2.080806f +R9 6 5 2.224404 +C14 7 gnd 2.080806f +R10 7 6 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +C16 9 gnd 2.080806f +R12 9 8 2.224404 +C17 10 gnd 2.080806f +R13 10 9 2.224404 +C18 11 gnd 2.080806f +R14 11 10 2.224404 +R15 g4812_7 11 2.224404 +C19 12 gnd 2.080806f +R16 12 g4812_7 2.224404 +C20 13 gnd 2.080806f +R17 13 12 2.224404 +R18 g4812_4 13 2.224404 +C21 14 gnd 2.080806f +R19 14 g4812_4 2.224404 +C22 15 gnd 2.080806f +R20 15 14 2.224404 +C23 16 gnd 2.080806f +R21 15 16 2.224404 +C24 17 gnd 2.080806f +R22 16 17 2.224404 +R23 17 g4812_1 2.224404 +.ends + +.subckt netg104 g104_0 g104_1 gnd +C1 g104_0 gnd 2.080806f +C2 g104_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g104_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g104_1 2.224404 +.ends + +.subckt netg6703 g6703_1 g6703_0 gnd +C1 g6703_1 gnd 2.080806f +C2 g6703_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6703_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +R18 17 g6703_1 2.224404 +.ends + +.subckt netg1616 g1616_3 g1616_2 g1616_0 g1616_1 gnd +C1 g1616_3 gnd 2.080806f +C2 g1616_2 gnd 2.080806f +C3 g1616_0 gnd 2.080806f +C4 g1616_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1616_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +R5 4 g1616_1 2.224404 +C9 5 gnd 2.080806f +R6 g1616_1 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g1616_3 2.224404 +C14 10 gnd 2.080806f +R12 10 4 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +R21 g1616_2 18 2.224404 +.ends + +.subckt netg6401 g6401_0 g6401_1 gnd +C1 g6401_0 gnd 2.080806f +C2 g6401_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6401_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +R18 g6401_1 17 2.224404 +.ends + +.subckt netg3694 g3694_3 g3694_1 g3694_2 g3694_0 gnd +C1 g3694_3 gnd 2.080806f +C2 g3694_1 gnd 2.080806f +C3 g3694_2 gnd 2.080806f +C4 g3694_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g3694_0 1 2.224404 +R2 g3694_1 1 2.224404 +R3 1 g3694_2 2.224404 +C6 2 gnd 2.080806f +R4 2 g3694_1 2.224404 +C7 3 gnd 2.080806f +R5 3 2 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +R19 g3694_3 16 2.224404 +.ends + +.subckt netg1679 g1679_0 g1679_3 g1679_2 g1679_1 gnd +C1 g1679_0 gnd 2.080806f +C2 g1679_3 gnd 2.080806f +C3 g1679_2 gnd 2.080806f +C4 g1679_1 gnd 2.080806f +R1 g1679_0 g1679_2 2.224404 +C5 1 gnd 2.080806f +R2 g1679_2 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g1679_3 2.224404 +C11 7 gnd 2.080806f +R9 7 g1679_3 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +R21 g1679_1 18 2.224404 +.ends + +.subckt netg3024 g3024_5 g3024_1 g3024_4 g3024_2 g3024_3 g3024_0 gnd +C1 g3024_5 gnd 2.080806f +C2 g3024_1 gnd 2.080806f +C3 g3024_4 gnd 2.080806f +C4 g3024_2 gnd 2.080806f +C5 g3024_3 gnd 2.080806f +C6 g3024_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g3024_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3024_4 2.224404 +C9 3 gnd 2.080806f +R4 3 g3024_4 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g3024_3 2.224404 +C12 6 gnd 2.080806f +R8 6 g3024_3 2.224404 +C13 7 gnd 2.080806f +R9 7 6 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +R11 8 g3024_2 2.224404 +C15 9 gnd 2.080806f +R12 9 8 2.224404 +C16 10 gnd 2.080806f +R13 10 9 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +C19 13 gnd 2.080806f +R16 13 12 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +R18 g3024_1 14 2.224404 +C21 15 gnd 2.080806f +R19 15 g3024_1 2.224404 +C22 16 gnd 2.080806f +R20 16 15 2.224404 +C23 17 gnd 2.080806f +R21 17 16 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +R24 19 g3024_5 2.224404 +.ends + +.subckt netg628 g628_4 g628_2 g628_5 g628_3 g628_1 g628_0 gnd +C1 g628_4 gnd 2.080806f +C2 g628_2 gnd 2.080806f +C3 g628_5 gnd 2.080806f +C4 g628_3 gnd 2.080806f +C5 g628_1 gnd 2.080806f +C6 g628_0 gnd 2.080806f +R1 g628_2 g628_0 2.224404 +R2 g628_0 g628_4 2.224404 +R3 g628_4 g628_1 2.224404 +C7 1 gnd 2.080806f +R4 g628_1 1 2.224404 +C8 2 gnd 2.080806f +R5 1 2 2.224404 +C9 3 gnd 2.080806f +R6 2 3 2.224404 +C10 4 gnd 2.080806f +R7 3 4 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +R10 6 g628_3 2.224404 +C13 7 gnd 2.080806f +R11 7 g628_3 2.224404 +C14 8 gnd 2.080806f +R12 8 7 2.224404 +C15 9 gnd 2.080806f +R13 9 8 2.224404 +C16 10 gnd 2.080806f +R14 10 9 2.224404 +C17 11 gnd 2.080806f +R15 11 10 2.224404 +C18 12 gnd 2.080806f +R16 12 11 2.224404 +C19 13 gnd 2.080806f +R17 13 12 2.224404 +C20 14 gnd 2.080806f +R18 14 13 2.224404 +R19 g628_5 14 2.224404 +.ends + +.subckt netg4711 g4711_4 g4711_7 g4711_2 g4711_1 g4711_8 g4711_6 g4711_0 g4711_3 g4711_9 g4711_5 gnd +C1 g4711_4 gnd 2.080806f +C2 g4711_7 gnd 2.080806f +C3 g4711_2 gnd 2.080806f +C4 g4711_1 gnd 2.080806f +C5 g4711_8 gnd 2.080806f +C6 g4711_6 gnd 2.080806f +C7 g4711_0 gnd 2.080806f +C8 g4711_3 gnd 2.080806f +C9 g4711_9 gnd 2.080806f +C10 g4711_5 gnd 2.080806f +C11 1 gnd 2.080806f +R1 g4711_0 1 2.224404 +R2 1 g4711_2 2.224404 +R3 g4711_2 g4711_7 2.224404 +R4 g4711_4 1 2.224404 +C12 2 gnd 2.080806f +R5 1 2 2.224404 +R6 2 g4711_5 2.224404 +C13 3 gnd 2.080806f +R7 3 g4711_0 2.224404 +C14 4 gnd 2.080806f +R8 4 3 2.224404 +C15 5 gnd 2.080806f +R9 5 4 2.224404 +R10 g4711_3 5 2.224404 +C16 6 gnd 2.080806f +R11 g4711_3 6 2.224404 +R12 g4711_1 6 2.224404 +C17 7 gnd 2.080806f +R13 g4711_7 7 2.224404 +C18 8 gnd 2.080806f +R14 7 8 2.224404 +C19 9 gnd 2.080806f +R15 8 9 2.224404 +R16 9 g4711_8 2.224404 +C20 10 gnd 2.080806f +R17 10 g4711_1 2.224404 +C21 11 gnd 2.080806f +R18 11 10 2.224404 +C22 12 gnd 2.080806f +R19 12 11 2.224404 +C23 13 gnd 2.080806f +R20 13 12 2.224404 +R21 g4711_9 13 2.224404 +C24 14 gnd 2.080806f +R22 13 14 2.224404 +R23 14 g4711_6 2.224404 +.ends + +.subckt netg4463 g4463_10 g4463_5 g4463_9 g4463_4 g4463_8 g4463_2 g4463_6 g4463_0 g4463_1 g4463_7 g4463_3 gnd +C1 g4463_10 gnd 2.080806f +C2 g4463_5 gnd 2.080806f +C3 g4463_9 gnd 2.080806f +C4 g4463_4 gnd 2.080806f +C5 g4463_8 gnd 2.080806f +C6 g4463_2 gnd 2.080806f +C7 g4463_6 gnd 2.080806f +C8 g4463_0 gnd 2.080806f +C9 g4463_1 gnd 2.080806f +C10 g4463_7 gnd 2.080806f +C11 g4463_3 gnd 2.080806f +R1 g4463_2 g4463_0 2.224404 +C12 1 gnd 2.080806f +R2 1 g4463_2 2.224404 +C13 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g4463_3 2 2.224404 +R5 g4463_5 g4463_3 2.224404 +R6 g4463_6 g4463_3 2.224404 +R7 2 g4463_10 2.224404 +R8 g4463_9 g4463_10 2.224404 +C14 3 gnd 2.080806f +R9 g4463_9 3 2.224404 +C15 4 gnd 2.080806f +R10 3 4 2.224404 +R11 4 g4463_7 2.224404 +C16 5 gnd 2.080806f +R12 g4463_0 5 2.224404 +C17 6 gnd 2.080806f +R13 5 6 2.224404 +C18 7 gnd 2.080806f +R14 6 7 2.224404 +R15 g4463_8 7 2.224404 +C19 8 gnd 2.080806f +R16 7 8 2.224404 +R17 8 g4463_1 2.224404 +C20 9 gnd 2.080806f +R18 g4463_7 9 2.224404 +C21 10 gnd 2.080806f +R19 9 10 2.224404 +C22 11 gnd 2.080806f +R20 10 11 2.224404 +C23 12 gnd 2.080806f +R21 11 12 2.224404 +C24 13 gnd 2.080806f +R22 12 13 2.224404 +C25 14 gnd 2.080806f +R23 13 14 2.224404 +R24 14 g4463_4 2.224404 +.ends + +.subckt netg5799 g5799_1 g5799_2 g5799_0 gnd +C1 g5799_1 gnd 2.080806f +C2 g5799_2 gnd 2.080806f +C3 g5799_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5799_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g5799_1 2.224404 +C7 4 gnd 2.080806f +R5 g5799_1 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +R18 16 g5799_2 2.224404 +.ends + +.subckt netg3517 g3517_1 g3517_0 gnd +C1 g3517_1 gnd 2.080806f +C2 g3517_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3517_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +R20 g3517_1 19 2.224404 +.ends + +.subckt netg4721 g4721_5 g4721_2 g4721_8 g4721_4 g4721_0 g4721_3 g4721_9 g4721_6 g4721_1 g4721_7 g4721_10 gnd +C1 g4721_5 gnd 2.080806f +C2 g4721_2 gnd 2.080806f +C3 g4721_8 gnd 2.080806f +C4 g4721_4 gnd 2.080806f +C5 g4721_0 gnd 2.080806f +C6 g4721_3 gnd 2.080806f +C7 g4721_9 gnd 2.080806f +C8 g4721_6 gnd 2.080806f +C9 g4721_1 gnd 2.080806f +C10 g4721_7 gnd 2.080806f +C11 g4721_10 gnd 2.080806f +C12 1 gnd 2.080806f +R1 1 g4721_0 2.224404 +C13 2 gnd 2.080806f +R2 2 1 2.224404 +C14 3 gnd 2.080806f +R3 3 2 2.224404 +C15 4 gnd 2.080806f +R4 4 3 2.224404 +C16 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g4721_4 5 2.224404 +C17 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g4721_5 2.224404 +C18 7 gnd 2.080806f +R9 g4721_5 7 2.224404 +R10 7 g4721_7 2.224404 +C19 8 gnd 2.080806f +R11 8 g4721_7 2.224404 +R12 g4721_2 8 2.224404 +C20 9 gnd 2.080806f +R13 9 g4721_2 2.224404 +R14 g4721_6 9 2.224404 +C21 10 gnd 2.080806f +R15 10 g4721_6 2.224404 +R16 g4721_3 10 2.224404 +C22 11 gnd 2.080806f +R17 11 g4721_3 2.224404 +R18 g4721_8 11 2.224404 +R19 g4721_1 g4721_8 2.224404 +C23 12 gnd 2.080806f +R20 12 g4721_4 2.224404 +C24 13 gnd 2.080806f +R21 13 12 2.224404 +R22 g4721_9 13 2.224404 +C25 14 gnd 2.080806f +R23 14 g4721_9 2.224404 +C26 15 gnd 2.080806f +R24 15 14 2.224404 +R25 g4721_10 15 2.224404 +.ends + +.subckt netg79 g79_1 g79_0 gnd +C1 g79_1 gnd 2.080806f +C2 g79_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g79_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +R18 17 g79_1 2.224404 +.ends + +.subckt netg2055 g2055_2 g2055_4 g2055_3 g2055_6 g2055_5 g2055_0 gnd +C1 g2055_2 gnd 2.080806f +C2 g2055_4 gnd 2.080806f +C3 g2055_3 gnd 2.080806f +C4 g2055_6 gnd 2.080806f +C5 g2055_5 gnd 2.080806f +C6 g2055_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2055_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2055_4 2.224404 +C10 4 gnd 2.080806f +R5 4 g2055_4 2.224404 +R6 4 g2055_6 2.224404 +C11 5 gnd 2.080806f +R7 g2055_6 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g2055_2 2.224404 +C14 8 gnd 2.080806f +R11 g2055_4 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +R16 g2055_5 12 2.224404 +C19 13 gnd 2.080806f +R17 13 g2055_2 2.224404 +C20 14 gnd 2.080806f +R18 14 13 2.224404 +C21 15 gnd 2.080806f +R19 15 14 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +R22 17 g2055_3 2.224404 +.ends + +.subckt netg7499 g7499_1 g7499_0 gnd +C1 g7499_1 gnd 2.080806f +C2 g7499_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7499_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +R18 17 g7499_1 2.224404 +.ends + +.subckt netg1395 g1395_1 g1395_0 gnd +C1 g1395_1 gnd 2.080806f +C2 g1395_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1395_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g1395_1 19 2.224404 +.ends + +.subckt netg1836 g1836_0 g1836_2 g1836_1 g1836_3 gnd +C1 g1836_0 gnd 2.080806f +C2 g1836_2 gnd 2.080806f +C3 g1836_1 gnd 2.080806f +C4 g1836_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1836_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1836_3 2.224404 +C7 3 gnd 2.080806f +R4 3 g1836_0 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +R16 g1836_2 14 2.224404 +C19 15 gnd 2.080806f +R17 g1836_2 15 2.224404 +R18 g1836_1 15 2.224404 +.ends + +.subckt netg614 g614_3 g614_0 g614_4 g614_1 g614_5 g614_2 gnd +C1 g614_3 gnd 2.080806f +C2 g614_0 gnd 2.080806f +C3 g614_4 gnd 2.080806f +C4 g614_1 gnd 2.080806f +C5 g614_5 gnd 2.080806f +C6 g614_2 gnd 2.080806f +R1 g614_0 g614_4 2.224404 +R2 g614_2 g614_4 2.224404 +R3 g614_4 g614_3 2.224404 +C7 1 gnd 2.080806f +R4 g614_3 1 2.224404 +C8 2 gnd 2.080806f +R5 1 2 2.224404 +C9 3 gnd 2.080806f +R6 2 3 2.224404 +C10 4 gnd 2.080806f +R7 3 4 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +R15 11 g614_5 2.224404 +C18 12 gnd 2.080806f +R16 12 g614_5 2.224404 +C19 13 gnd 2.080806f +R17 13 12 2.224404 +C20 14 gnd 2.080806f +R18 14 13 2.224404 +C21 15 gnd 2.080806f +R19 15 14 2.224404 +R20 g614_1 15 2.224404 +.ends + +.subckt netg1786 g1786_5 g1786_2 g1786_4 g1786_3 g1786_0 g1786_1 gnd +C1 g1786_5 gnd 2.080806f +C2 g1786_2 gnd 2.080806f +C3 g1786_4 gnd 2.080806f +C4 g1786_3 gnd 2.080806f +C5 g1786_0 gnd 2.080806f +C6 g1786_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1786_0 2.224404 +R2 g1786_4 1 2.224404 +R3 g1786_2 g1786_4 2.224404 +C8 2 gnd 2.080806f +R4 g1786_0 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +R10 7 g1786_3 2.224404 +C14 8 gnd 2.080806f +R11 g1786_4 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +R18 14 g1786_1 2.224404 +C21 15 gnd 2.080806f +R19 15 g1786_1 2.224404 +C22 16 gnd 2.080806f +R20 16 15 2.224404 +R21 g1786_5 16 2.224404 +.ends + +.subckt netg5847 g5847_1 g5847_0 gnd +C1 g5847_1 gnd 2.080806f +C2 g5847_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5847_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +R19 g5847_1 18 2.224404 +.ends + +.subckt netg5170 g5170_1 g5170_3 g5170_0 g5170_2 gnd +C1 g5170_1 gnd 2.080806f +C2 g5170_3 gnd 2.080806f +C3 g5170_0 gnd 2.080806f +C4 g5170_2 gnd 2.080806f +R1 g5170_1 g5170_0 2.224404 +C5 1 gnd 2.080806f +R2 1 g5170_1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g5170_3 5 2.224404 +C10 6 gnd 2.080806f +R8 g5170_0 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +R22 19 g5170_2 2.224404 +.ends + +.subckt netg6071 g6071_1 g6071_0 gnd +C1 g6071_1 gnd 2.080806f +C2 g6071_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6071_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +R19 g6071_1 18 2.224404 +.ends + +.subckt netg5287 g5287_1 g5287_6 g5287_5 g5287_0 g5287_4 g5287_3 g5287_2 gnd +C1 g5287_1 gnd 2.080806f +C2 g5287_6 gnd 2.080806f +C3 g5287_5 gnd 2.080806f +C4 g5287_0 gnd 2.080806f +C5 g5287_4 gnd 2.080806f +C6 g5287_3 gnd 2.080806f +C7 g5287_2 gnd 2.080806f +R1 g5287_0 g5287_1 2.224404 +R2 g5287_2 g5287_0 2.224404 +R3 g5287_1 g5287_4 2.224404 +R4 g5287_2 g5287_5 2.224404 +R5 g5287_6 g5287_4 2.224404 +C8 1 gnd 2.080806f +R6 1 g5287_6 2.224404 +C9 2 gnd 2.080806f +R7 2 1 2.224404 +C10 3 gnd 2.080806f +R8 3 2 2.224404 +C11 4 gnd 2.080806f +R9 4 3 2.224404 +C12 5 gnd 2.080806f +R10 5 4 2.224404 +C13 6 gnd 2.080806f +R11 6 5 2.224404 +C14 7 gnd 2.080806f +R12 7 6 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +C21 14 gnd 2.080806f +R19 14 13 2.224404 +C22 15 gnd 2.080806f +R20 14 15 2.224404 +R21 15 g5287_3 2.224404 +.ends + +.subckt netg3516 g3516_1 g3516_0 gnd +C1 g3516_1 gnd 2.080806f +C2 g3516_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3516_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +R21 g3516_1 20 2.224404 +.ends + +.subckt netg6583 g6583_1 g6583_0 gnd +C1 g6583_1 gnd 2.080806f +C2 g6583_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6583_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +R19 g6583_1 18 2.224404 +.ends + +.subckt netg1727 g1727_1 g1727_2 g1727_0 g1727_3 gnd +C1 g1727_1 gnd 2.080806f +C2 g1727_2 gnd 2.080806f +C3 g1727_0 gnd 2.080806f +C4 g1727_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1727_0 2.224404 +R2 1 g1727_1 2.224404 +C6 2 gnd 2.080806f +R3 g1727_1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g1727_3 2.224404 +C16 12 gnd 2.080806f +R14 g1727_3 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +R20 17 g1727_2 2.224404 +.ends + +.subckt netg1596 g1596_1 g1596_2 g1596_0 g1596_3 gnd +C1 g1596_1 gnd 2.080806f +C2 g1596_2 gnd 2.080806f +C3 g1596_0 gnd 2.080806f +C4 g1596_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1596_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g1596_1 2.224404 +C8 4 gnd 2.080806f +R5 g1596_1 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +R15 13 g1596_2 2.224404 +C18 14 gnd 2.080806f +R16 g1596_2 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +R22 g1596_3 19 2.224404 +.ends + +.subckt netg124 g124_1 g124_0 gnd +C1 g124_1 gnd 2.080806f +C2 g124_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g124_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +R19 18 g124_1 2.224404 +.ends + +.subckt netg3768 g3768_1 g3768_8 g3768_3 g3768_0 g3768_13 g3768_2 g3768_10 g3768_12 g3768_11 g3768_6 g3768_7 g3768_9 g3768_5 g3768_4 g3768_15 g3768_14 gnd +C1 g3768_1 gnd 2.080806f +C2 g3768_8 gnd 2.080806f +C3 g3768_3 gnd 2.080806f +C4 g3768_0 gnd 2.080806f +C5 g3768_13 gnd 2.080806f +C6 g3768_2 gnd 2.080806f +C7 g3768_10 gnd 2.080806f +C8 g3768_12 gnd 2.080806f +C9 g3768_11 gnd 2.080806f +C10 g3768_6 gnd 2.080806f +C11 g3768_7 gnd 2.080806f +C12 g3768_9 gnd 2.080806f +C13 g3768_5 gnd 2.080806f +C14 g3768_4 gnd 2.080806f +C15 g3768_15 gnd 2.080806f +C16 g3768_14 gnd 2.080806f +C17 1 gnd 2.080806f +R1 g3768_0 1 2.224404 +R2 g3768_12 1 2.224404 +C18 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g3768_4 2.224404 +R5 g3768_4 g3768_14 2.224404 +C19 3 gnd 2.080806f +R6 3 g3768_0 2.224404 +C20 4 gnd 2.080806f +R7 3 4 2.224404 +R8 4 g3768_6 2.224404 +R9 g3768_6 g3768_13 2.224404 +R10 g3768_13 g3768_15 2.224404 +C21 5 gnd 2.080806f +R11 g3768_13 5 2.224404 +R12 5 g3768_1 2.224404 +R13 g3768_7 g3768_1 2.224404 +R14 g3768_1 g3768_8 2.224404 +R15 g3768_8 g3768_2 2.224404 +C22 6 gnd 2.080806f +R16 6 g3768_6 2.224404 +C23 7 gnd 2.080806f +R17 7 6 2.224404 +R18 g3768_5 7 2.224404 +C24 8 gnd 2.080806f +R19 8 7 2.224404 +C25 9 gnd 2.080806f +R20 9 8 2.224404 +C26 10 gnd 2.080806f +R21 10 9 2.224404 +R22 g3768_9 10 2.224404 +C27 11 gnd 2.080806f +R23 11 g3768_4 2.224404 +C28 12 gnd 2.080806f +R24 12 11 2.224404 +C29 13 gnd 2.080806f +R25 13 12 2.224404 +C30 14 gnd 2.080806f +R26 14 13 2.224404 +C31 15 gnd 2.080806f +R27 15 14 2.224404 +R28 g3768_10 15 2.224404 +C32 16 gnd 2.080806f +R29 16 g3768_10 2.224404 +C33 17 gnd 2.080806f +R30 17 16 2.224404 +R31 g3768_3 17 2.224404 +C34 18 gnd 2.080806f +R32 18 g3768_3 2.224404 +R33 g3768_11 18 2.224404 +.ends + +.subckt netg1687 g1687_1 g1687_0 g1687_2 g1687_3 gnd +C1 g1687_1 gnd 2.080806f +C2 g1687_0 gnd 2.080806f +C3 g1687_2 gnd 2.080806f +C4 g1687_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1687_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g1687_3 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g1687_2 4 2.224404 +C9 5 gnd 2.080806f +R7 g1687_0 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +R20 17 g1687_1 2.224404 +.ends + +.subckt netg3873 g3873_8 g3873_3 g3873_9 g3873_0 g3873_6 g3873_1 g3873_7 g3873_5 g3873_2 g3873_4 gnd +C1 g3873_8 gnd 2.080806f +C2 g3873_3 gnd 2.080806f +C3 g3873_9 gnd 2.080806f +C4 g3873_0 gnd 2.080806f +C5 g3873_6 gnd 2.080806f +C6 g3873_1 gnd 2.080806f +C7 g3873_7 gnd 2.080806f +C8 g3873_5 gnd 2.080806f +C9 g3873_2 gnd 2.080806f +C10 g3873_4 gnd 2.080806f +R1 g3873_2 g3873_0 2.224404 +R2 g3873_6 g3873_2 2.224404 +C11 1 gnd 2.080806f +R3 1 g3873_6 2.224404 +R4 g3873_9 1 2.224404 +R5 g3873_7 g3873_9 2.224404 +R6 g3873_5 g3873_7 2.224404 +C12 2 gnd 2.080806f +R7 g3873_5 2 2.224404 +C13 3 gnd 2.080806f +R8 2 3 2.224404 +R9 g3873_4 3 2.224404 +C14 4 gnd 2.080806f +R10 g3873_0 4 2.224404 +C15 5 gnd 2.080806f +R11 4 5 2.224404 +C16 6 gnd 2.080806f +R12 5 6 2.224404 +C17 7 gnd 2.080806f +R13 6 7 2.224404 +C18 8 gnd 2.080806f +R14 7 8 2.224404 +R15 8 g3873_8 2.224404 +C19 9 gnd 2.080806f +R16 g3873_0 9 2.224404 +C20 10 gnd 2.080806f +R17 9 10 2.224404 +C21 11 gnd 2.080806f +R18 10 11 2.224404 +C22 12 gnd 2.080806f +R19 11 12 2.224404 +C23 13 gnd 2.080806f +R20 12 13 2.224404 +R21 13 g3873_1 2.224404 +C24 14 gnd 2.080806f +R22 14 g3873_1 2.224404 +C25 15 gnd 2.080806f +R23 14 15 2.224404 +R24 15 g3873_3 2.224404 +.ends + +.subckt netg4791 g4791_2 g4791_3 g4791_7 g4791_9 g4791_5 g4791_10 g4791_8 g4791_0 g4791_1 g4791_4 g4791_6 gnd +C1 g4791_2 gnd 2.080806f +C2 g4791_3 gnd 2.080806f +C3 g4791_7 gnd 2.080806f +C4 g4791_9 gnd 2.080806f +C5 g4791_5 gnd 2.080806f +C6 g4791_10 gnd 2.080806f +C7 g4791_8 gnd 2.080806f +C8 g4791_0 gnd 2.080806f +C9 g4791_1 gnd 2.080806f +C10 g4791_4 gnd 2.080806f +C11 g4791_6 gnd 2.080806f +C12 1 gnd 2.080806f +R1 g4791_0 1 2.224404 +R2 1 g4791_2 2.224404 +C13 2 gnd 2.080806f +R3 2 g4791_0 2.224404 +R4 g4791_10 2 2.224404 +C14 3 gnd 2.080806f +R5 g4791_2 3 2.224404 +R6 3 g4791_3 2.224404 +R7 g4791_3 g4791_1 2.224404 +R8 g4791_1 g4791_6 2.224404 +R9 g4791_6 g4791_9 2.224404 +C15 4 gnd 2.080806f +R10 g4791_10 4 2.224404 +R11 4 g4791_8 2.224404 +C16 5 gnd 2.080806f +R12 g4791_9 5 2.224404 +R13 5 g4791_5 2.224404 +C17 6 gnd 2.080806f +R14 6 g4791_2 2.224404 +C18 7 gnd 2.080806f +R15 7 6 2.224404 +C19 8 gnd 2.080806f +R16 8 7 2.224404 +C20 9 gnd 2.080806f +R17 9 8 2.224404 +R18 9 g4791_4 2.224404 +C21 10 gnd 2.080806f +R19 10 g4791_4 2.224404 +C22 11 gnd 2.080806f +R20 10 11 2.224404 +C23 12 gnd 2.080806f +R21 11 12 2.224404 +C24 13 gnd 2.080806f +R22 13 12 2.224404 +C25 14 gnd 2.080806f +R23 13 14 2.224404 +C26 15 gnd 2.080806f +R24 14 15 2.224404 +R25 15 g4791_7 2.224404 +.ends + +.subckt netg2123 g2123_1 g2123_3 g2123_2 g2123_0 gnd +C1 g2123_1 gnd 2.080806f +C2 g2123_3 gnd 2.080806f +C3 g2123_2 gnd 2.080806f +C4 g2123_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2123_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2123_3 2 2.224404 +C7 3 gnd 2.080806f +R4 3 1 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +R18 g2123_2 16 2.224404 +C21 17 gnd 2.080806f +R19 17 g2123_2 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +R21 g2123_1 18 2.224404 +.ends + +.subckt netg4850 g4850_9 g4850_1 g4850_4 g4850_8 g4850_6 g4850_3 g4850_10 g4850_2 g4850_12 g4850_7 g4850_11 g4850_5 gnd +C1 g4850_9 gnd 2.080806f +C2 g4850_1 gnd 2.080806f +C3 g4850_4 gnd 2.080806f +C4 g4850_8 gnd 2.080806f +C5 g4850_6 gnd 2.080806f +C6 g4850_3 gnd 2.080806f +C7 g4850_10 gnd 2.080806f +C8 g4850_2 gnd 2.080806f +C9 g4850_12 gnd 2.080806f +C10 g4850_7 gnd 2.080806f +C11 g4850_11 gnd 2.080806f +C12 g4850_5 gnd 2.080806f +R1 g4850_11 g4850_7 2.224404 +R2 g4850_7 g4850_2 2.224404 +C13 1 gnd 2.080806f +R3 g4850_7 1 2.224404 +R4 1 g4850_12 2.224404 +C14 2 gnd 2.080806f +R5 g4850_2 2 2.224404 +C15 3 gnd 2.080806f +R6 2 3 2.224404 +C16 4 gnd 2.080806f +R7 3 4 2.224404 +C17 5 gnd 2.080806f +R8 4 5 2.224404 +C18 6 gnd 2.080806f +R9 5 6 2.224404 +R10 6 g4850_5 2.224404 +C19 7 gnd 2.080806f +R11 7 g4850_5 2.224404 +C20 8 gnd 2.080806f +R12 8 7 2.224404 +R13 8 g4850_9 2.224404 +C21 9 gnd 2.080806f +R14 9 g4850_9 2.224404 +C22 10 gnd 2.080806f +R15 10 9 2.224404 +R16 g4850_8 10 2.224404 +R17 g4850_8 g4850_1 2.224404 +C23 11 gnd 2.080806f +R18 11 g4850_8 2.224404 +R19 g4850_3 11 2.224404 +R20 g4850_4 g4850_3 2.224404 +C24 12 gnd 2.080806f +R21 12 g4850_8 2.224404 +C25 13 gnd 2.080806f +R22 13 12 2.224404 +R23 g4850_6 13 2.224404 +C26 14 gnd 2.080806f +R24 14 g4850_4 2.224404 +C27 15 gnd 2.080806f +R25 15 14 2.224404 +R26 g4850_10 15 2.224404 +.ends + +.subckt netg3617 g3617_12 g3617_3 g3617_9 g3617_7 g3617_5 g3617_2 g3617_8 g3617_1 g3617_4 g3617_10 g3617_0 g3617_6 g3617_11 gnd +C1 g3617_12 gnd 2.080806f +C2 g3617_3 gnd 2.080806f +C3 g3617_9 gnd 2.080806f +C4 g3617_7 gnd 2.080806f +C5 g3617_5 gnd 2.080806f +C6 g3617_2 gnd 2.080806f +C7 g3617_8 gnd 2.080806f +C8 g3617_1 gnd 2.080806f +C9 g3617_4 gnd 2.080806f +C10 g3617_10 gnd 2.080806f +C11 g3617_0 gnd 2.080806f +C12 g3617_6 gnd 2.080806f +C13 g3617_11 gnd 2.080806f +C14 1 gnd 2.080806f +R1 1 g3617_0 2.224404 +R2 g3617_6 1 2.224404 +C15 2 gnd 2.080806f +R3 g3617_0 2 2.224404 +R4 2 g3617_12 2.224404 +C16 3 gnd 2.080806f +R5 g3617_12 3 2.224404 +R6 3 g3617_5 2.224404 +C17 4 gnd 2.080806f +R7 4 1 2.224404 +C18 5 gnd 2.080806f +R8 5 4 2.224404 +R9 g3617_3 5 2.224404 +C19 6 gnd 2.080806f +R10 g3617_3 6 2.224404 +R11 6 g3617_10 2.224404 +R12 g3617_1 g3617_10 2.224404 +R13 g3617_10 g3617_4 2.224404 +C20 7 gnd 2.080806f +R14 7 g3617_3 2.224404 +C21 8 gnd 2.080806f +R15 8 7 2.224404 +C22 9 gnd 2.080806f +R16 9 8 2.224404 +C23 10 gnd 2.080806f +R17 10 9 2.224404 +R18 g3617_9 10 2.224404 +C24 11 gnd 2.080806f +R19 g3617_9 11 2.224404 +C25 12 gnd 2.080806f +R20 12 11 2.224404 +C26 13 gnd 2.080806f +R21 12 13 2.224404 +R22 g3617_8 13 2.224404 +C27 14 gnd 2.080806f +R23 g3617_8 14 2.224404 +C28 15 gnd 2.080806f +R24 14 15 2.224404 +C29 16 gnd 2.080806f +R25 15 16 2.224404 +C30 17 gnd 2.080806f +R26 16 17 2.224404 +R27 17 g3617_11 2.224404 +C31 18 gnd 2.080806f +R28 18 g3617_11 2.224404 +C32 19 gnd 2.080806f +R29 19 18 2.224404 +R30 g3617_2 19 2.224404 +R31 g3617_7 19 2.224404 +.ends + +.subckt netg2326 g2326_1 g2326_0 g2326_3 g2326_2 gnd +C1 g2326_1 gnd 2.080806f +C2 g2326_0 gnd 2.080806f +C3 g2326_3 gnd 2.080806f +C4 g2326_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2326_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2326_1 2.224404 +C10 6 gnd 2.080806f +R7 g2326_1 6 2.224404 +R8 6 g2326_2 2.224404 +C11 7 gnd 2.080806f +R9 7 1 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +R20 g2326_3 17 2.224404 +.ends + +.subckt netg2330 g2330_3 g2330_1 g2330_0 gnd +C1 g2330_3 gnd 2.080806f +C2 g2330_1 gnd 2.080806f +C3 g2330_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2330_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g2330_3 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g2330_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +R20 g2330_1 18 2.224404 +.ends + +.subckt netg1098 g1098_1 g1098_0 gnd +C1 g1098_1 gnd 2.080806f +C2 g1098_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1098_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +R23 g1098_1 22 2.224404 +.ends + +.subckt netg7257 g7257_0 g7257_1 g7257_2 gnd +C1 g7257_0 gnd 2.080806f +C2 g7257_1 gnd 2.080806f +C3 g7257_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7257_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7257_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g7257_1 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +R19 g7257_2 17 2.224404 +.ends + +.subckt netg134 g134_1 g134_0 gnd +C1 g134_1 gnd 2.080806f +C2 g134_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g134_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +R19 18 g134_1 2.224404 +.ends + +.subckt netg128 g128_1 g128_0 gnd +C1 g128_1 gnd 2.080806f +C2 g128_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g128_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +R20 19 g128_1 2.224404 +.ends + +.subckt netg1474 g1474_1 g1474_0 gnd +C1 g1474_1 gnd 2.080806f +C2 g1474_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1474_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g1474_1 19 2.224404 +.ends + +.subckt netg4869 g4869_1 g4869_6 g4869_5 g4869_2 g4869_0 g4869_4 g4869_3 gnd +C1 g4869_1 gnd 2.080806f +C2 g4869_6 gnd 2.080806f +C3 g4869_5 gnd 2.080806f +C4 g4869_2 gnd 2.080806f +C5 g4869_0 gnd 2.080806f +C6 g4869_4 gnd 2.080806f +C7 g4869_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g4869_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +C10 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g4869_6 2.224404 +C11 4 gnd 2.080806f +R5 1 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +C13 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g4869_1 2.224404 +C14 7 gnd 2.080806f +R9 g4869_1 7 2.224404 +C15 8 gnd 2.080806f +R10 7 8 2.224404 +C16 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g4869_4 2.224404 +C17 10 gnd 2.080806f +R13 10 g4869_1 2.224404 +C18 11 gnd 2.080806f +R14 11 10 2.224404 +C19 12 gnd 2.080806f +R15 11 12 2.224404 +C20 13 gnd 2.080806f +R16 12 13 2.224404 +C21 14 gnd 2.080806f +R17 14 13 2.224404 +C22 15 gnd 2.080806f +R18 14 15 2.224404 +R19 g4869_2 15 2.224404 +C23 16 gnd 2.080806f +R20 16 g4869_2 2.224404 +R21 g4869_3 16 2.224404 +C24 17 gnd 2.080806f +R22 g4869_2 17 2.224404 +C25 18 gnd 2.080806f +R23 17 18 2.224404 +C26 19 gnd 2.080806f +R24 18 19 2.224404 +C27 20 gnd 2.080806f +R25 19 20 2.224404 +R26 20 g4869_5 2.224404 +.ends + +.subckt netg7521 g7521_1 g7521_0 gnd +C1 g7521_1 gnd 2.080806f +C2 g7521_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7521_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g7521_1 19 2.224404 +.ends + +.subckt netg727 g727_4 g727_5 g727_6 g727_1 g727_3 gnd +C1 g727_4 gnd 2.080806f +C2 g727_5 gnd 2.080806f +C3 g727_6 gnd 2.080806f +C4 g727_1 gnd 2.080806f +C5 g727_3 gnd 2.080806f +R1 g727_1 g727_4 2.224404 +R2 g727_3 g727_4 2.224404 +C6 1 gnd 2.080806f +R3 1 g727_1 2.224404 +R4 g727_5 1 2.224404 +C7 2 gnd 2.080806f +R5 2 g727_5 2.224404 +C8 3 gnd 2.080806f +R6 3 2 2.224404 +C9 4 gnd 2.080806f +R7 4 3 2.224404 +C10 5 gnd 2.080806f +R8 5 4 2.224404 +C11 6 gnd 2.080806f +R9 6 5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 10 9 2.224404 +C16 11 gnd 2.080806f +R14 11 10 2.224404 +C17 12 gnd 2.080806f +R15 12 11 2.224404 +C18 13 gnd 2.080806f +R16 13 12 2.224404 +C19 14 gnd 2.080806f +R17 14 13 2.224404 +C20 15 gnd 2.080806f +R18 15 14 2.224404 +C21 16 gnd 2.080806f +R19 16 15 2.224404 +C22 17 gnd 2.080806f +R20 17 16 2.224404 +R21 g727_6 17 2.224404 +.ends + +.subckt netg2531 g2531_2 g2531_0 gnd +C1 g2531_2 gnd 2.080806f +C2 g2531_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2531_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g2531_2 21 2.224404 +.ends + +.subckt netg2342 g2342_3 g2342_1 g2342_0 gnd +C1 g2342_3 gnd 2.080806f +C2 g2342_1 gnd 2.080806f +C3 g2342_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2342_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +R12 11 g2342_1 2.224404 +C15 12 gnd 2.080806f +R13 g2342_1 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +R20 18 g2342_3 2.224404 +.ends + +.subckt netg7501 g7501_1 g7501_0 gnd +C1 g7501_1 gnd 2.080806f +C2 g7501_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7501_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g7501_1 19 2.224404 +.ends + +.subckt netg7445 g7445_1 g7445_0 gnd +C1 g7445_1 gnd 2.080806f +C2 g7445_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7445_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g7445_1 19 2.224404 +.ends + +.subckt netg3803 g3803_3 g3803_0 g3803_6 g3803_4 g3803_2 g3803_1 gnd +C1 g3803_3 gnd 2.080806f +C2 g3803_0 gnd 2.080806f +C3 g3803_6 gnd 2.080806f +C4 g3803_4 gnd 2.080806f +C5 g3803_2 gnd 2.080806f +C6 g3803_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g3803_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g3803_6 2.224404 +C11 5 gnd 2.080806f +R6 g3803_0 5 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 9 10 2.224404 +R12 g3803_1 10 2.224404 +C17 11 gnd 2.080806f +R13 11 g3803_1 2.224404 +R14 g3803_2 11 2.224404 +C18 12 gnd 2.080806f +R15 12 g3803_2 2.224404 +C19 13 gnd 2.080806f +R16 13 12 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 15 14 2.224404 +C22 16 gnd 2.080806f +R19 16 15 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +R21 g3803_3 17 2.224404 +C24 18 gnd 2.080806f +R22 18 g3803_3 2.224404 +R23 g3803_4 18 2.224404 +.ends + +.subckt netg6371 g6371_1 g6371_0 gnd +C1 g6371_1 gnd 2.080806f +C2 g6371_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6371_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g6371_1 19 2.224404 +.ends + +.subckt netg7500 g7500_1 g7500_0 gnd +C1 g7500_1 gnd 2.080806f +C2 g7500_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7500_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +R20 19 g7500_1 2.224404 +.ends + +.subckt netg69 g69_0 g69_2 g69_1 gnd +C1 g69_0 gnd 2.080806f +C2 g69_2 gnd 2.080806f +C3 g69_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g69_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +R13 g69_2 12 2.224404 +C16 13 gnd 2.080806f +R14 13 2 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +R23 g69_1 21 2.224404 +.ends + +.subckt netg4834 g4834_8 g4834_12 g4834_5 g4834_15 g4834_9 g4834_1 g4834_3 g4834_13 g4834_4 g4834_14 g4834_0 g4834_11 g4834_10 g4834_6 g4834_2 gnd +C1 g4834_8 gnd 2.080806f +C2 g4834_12 gnd 2.080806f +C3 g4834_5 gnd 2.080806f +C4 g4834_15 gnd 2.080806f +C5 g4834_9 gnd 2.080806f +C6 g4834_1 gnd 2.080806f +C7 g4834_3 gnd 2.080806f +C8 g4834_13 gnd 2.080806f +C9 g4834_4 gnd 2.080806f +C10 g4834_14 gnd 2.080806f +C11 g4834_0 gnd 2.080806f +C12 g4834_11 gnd 2.080806f +C13 g4834_10 gnd 2.080806f +C14 g4834_6 gnd 2.080806f +C15 g4834_2 gnd 2.080806f +R1 g4834_0 g4834_4 2.224404 +R2 g4834_4 g4834_1 2.224404 +R3 g4834_1 g4834_14 2.224404 +C16 1 gnd 2.080806f +R4 g4834_14 1 2.224404 +C17 2 gnd 2.080806f +R5 1 2 2.224404 +C18 3 gnd 2.080806f +R6 2 3 2.224404 +R7 3 g4834_2 2.224404 +C19 4 gnd 2.080806f +R8 4 g4834_2 2.224404 +C20 5 gnd 2.080806f +R9 4 5 2.224404 +R10 5 g4834_11 2.224404 +C21 6 gnd 2.080806f +R11 g4834_11 6 2.224404 +R12 6 g4834_13 2.224404 +C22 7 gnd 2.080806f +R13 g4834_13 7 2.224404 +R14 7 g4834_15 2.224404 +C23 8 gnd 2.080806f +R15 8 4 2.224404 +C24 9 gnd 2.080806f +R16 9 8 2.224404 +C25 10 gnd 2.080806f +R17 10 9 2.224404 +C26 11 gnd 2.080806f +R18 11 10 2.224404 +R19 g4834_12 11 2.224404 +R20 g4834_12 g4834_6 2.224404 +R21 g4834_8 g4834_12 2.224404 +C27 12 gnd 2.080806f +R22 g4834_6 12 2.224404 +R23 12 g4834_5 2.224404 +R24 g4834_10 12 2.224404 +C28 13 gnd 2.080806f +R25 13 g4834_5 2.224404 +R26 g4834_9 13 2.224404 +C29 14 gnd 2.080806f +R27 14 g4834_9 2.224404 +R28 14 g4834_3 2.224404 +.ends + +.subckt netg428 g428_4 g428_8 g428_1 g428_5 g428_9 g428_6 g428_7 g428_2 g428_10 g428_3 gnd +C1 g428_4 gnd 2.080806f +C2 g428_8 gnd 2.080806f +C3 g428_1 gnd 2.080806f +C4 g428_5 gnd 2.080806f +C5 g428_9 gnd 2.080806f +C6 g428_6 gnd 2.080806f +C7 g428_7 gnd 2.080806f +C8 g428_2 gnd 2.080806f +C9 g428_10 gnd 2.080806f +C10 g428_3 gnd 2.080806f +C11 1 gnd 2.080806f +R1 g428_9 1 2.224404 +C12 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g428_8 2.224404 +C13 3 gnd 2.080806f +R4 g428_8 3 2.224404 +C14 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g428_10 2.224404 +R7 g428_2 g428_10 2.224404 +C15 5 gnd 2.080806f +R8 5 g428_8 2.224404 +C16 6 gnd 2.080806f +R9 5 6 2.224404 +C17 7 gnd 2.080806f +R10 7 6 2.224404 +C18 8 gnd 2.080806f +R11 7 8 2.224404 +C19 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g428_3 2.224404 +C20 10 gnd 2.080806f +R14 g428_3 10 2.224404 +C21 11 gnd 2.080806f +R15 10 11 2.224404 +R16 11 g428_1 2.224404 +C22 12 gnd 2.080806f +R17 12 g428_9 2.224404 +C23 13 gnd 2.080806f +R18 13 12 2.224404 +C24 14 gnd 2.080806f +R19 14 13 2.224404 +C25 15 gnd 2.080806f +R20 15 14 2.224404 +C26 16 gnd 2.080806f +R21 16 15 2.224404 +C27 17 gnd 2.080806f +R22 17 16 2.224404 +R23 g428_5 17 2.224404 +R24 g428_5 g428_4 2.224404 +R25 g428_7 g428_4 2.224404 +C28 18 gnd 2.080806f +R26 g428_7 18 2.224404 +C29 19 gnd 2.080806f +R27 18 19 2.224404 +R28 19 g428_6 2.224404 +.ends + +.subckt netg7532 g7532_0 g7532_1 gnd +C1 g7532_0 gnd 2.080806f +C2 g7532_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7532_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +R20 g7532_1 19 2.224404 +.ends + +.subckt netg4820 g4820_4 g4820_1 g4820_10 g4820_7 g4820_6 g4820_0 g4820_11 g4820_13 g4820_12 g4820_9 g4820_2 g4820_8 g4820_5 gnd +C1 g4820_4 gnd 2.080806f +C2 g4820_1 gnd 2.080806f +C3 g4820_10 gnd 2.080806f +C4 g4820_7 gnd 2.080806f +C5 g4820_6 gnd 2.080806f +C6 g4820_0 gnd 2.080806f +C7 g4820_11 gnd 2.080806f +C8 g4820_13 gnd 2.080806f +C9 g4820_12 gnd 2.080806f +C10 g4820_9 gnd 2.080806f +C11 g4820_2 gnd 2.080806f +C12 g4820_8 gnd 2.080806f +C13 g4820_5 gnd 2.080806f +C14 1 gnd 2.080806f +R1 g4820_0 1 2.224404 +R2 1 g4820_4 2.224404 +C15 2 gnd 2.080806f +R3 g4820_0 2 2.224404 +R4 2 g4820_7 2.224404 +R5 g4820_7 g4820_8 2.224404 +C16 3 gnd 2.080806f +R6 3 g4820_0 2.224404 +R7 g4820_12 3 2.224404 +R8 g4820_6 g4820_12 2.224404 +C17 4 gnd 2.080806f +R9 g4820_8 4 2.224404 +R10 4 g4820_10 2.224404 +C18 5 gnd 2.080806f +R11 g4820_10 5 2.224404 +C19 6 gnd 2.080806f +R12 5 6 2.224404 +C20 7 gnd 2.080806f +R13 6 7 2.224404 +R14 7 g4820_9 2.224404 +C21 8 gnd 2.080806f +R15 g4820_9 8 2.224404 +R16 8 g4820_11 2.224404 +C22 9 gnd 2.080806f +R17 9 8 2.224404 +C23 10 gnd 2.080806f +R18 9 10 2.224404 +R19 g4820_1 10 2.224404 +R20 g4820_5 g4820_1 2.224404 +C24 11 gnd 2.080806f +R21 11 g4820_5 2.224404 +R22 g4820_2 11 2.224404 +C25 12 gnd 2.080806f +R23 12 g4820_2 2.224404 +C26 13 gnd 2.080806f +R24 13 12 2.224404 +C27 14 gnd 2.080806f +R25 14 13 2.224404 +C28 15 gnd 2.080806f +R26 15 14 2.224404 +C29 16 gnd 2.080806f +R27 16 15 2.224404 +C30 17 gnd 2.080806f +R28 17 16 2.224404 +R29 g4820_13 17 2.224404 +.ends + +.subckt netg5986 g5986_1 g5986_0 g5986_2 gnd +C1 g5986_1 gnd 2.080806f +C2 g5986_0 gnd 2.080806f +C3 g5986_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5986_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g5986_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g5986_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +R20 18 g5986_2 2.224404 +.ends + +.subckt netg1900 g1900_0 g1900_1 gnd +C1 g1900_0 gnd 2.080806f +C2 g1900_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1900_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +R24 23 g1900_1 2.224404 +.ends + +.subckt netg576 g576_1 g576_3 g576_5 g576_2 g576_0 g576_4 gnd +C1 g576_1 gnd 2.080806f +C2 g576_3 gnd 2.080806f +C3 g576_5 gnd 2.080806f +C4 g576_2 gnd 2.080806f +C5 g576_0 gnd 2.080806f +C6 g576_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g576_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g576_3 2.224404 +C9 3 gnd 2.080806f +R4 g576_0 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g576_2 2.224404 +C14 8 gnd 2.080806f +R10 g576_2 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +R16 13 g576_4 2.224404 +C20 14 gnd 2.080806f +R17 14 g576_4 2.224404 +C21 15 gnd 2.080806f +R18 15 14 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +R20 g576_1 16 2.224404 +C23 17 gnd 2.080806f +R21 g576_4 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +R27 22 g576_5 2.224404 +.ends + +.subckt netg1664 g1664_0 g1664_3 g1664_2 g1664_5 g1664_4 g1664_1 gnd +C1 g1664_0 gnd 2.080806f +C2 g1664_3 gnd 2.080806f +C3 g1664_2 gnd 2.080806f +C4 g1664_5 gnd 2.080806f +C5 g1664_4 gnd 2.080806f +C6 g1664_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1664_0 2.224404 +R2 g1664_1 1 2.224404 +C8 2 gnd 2.080806f +R3 g1664_0 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g1664_3 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g1664_4 2.224404 +C13 7 gnd 2.080806f +R10 7 g1664_3 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g1664_5 2.224404 +C17 11 gnd 2.080806f +R15 g1664_5 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +R25 20 g1664_2 2.224404 +.ends + +.subckt netg3030 g3030_5 g3030_4 g3030_1 g3030_3 g3030_0 g3030_6 g3030_2 gnd +C1 g3030_5 gnd 2.080806f +C2 g3030_4 gnd 2.080806f +C3 g3030_1 gnd 2.080806f +C4 g3030_3 gnd 2.080806f +C5 g3030_0 gnd 2.080806f +C6 g3030_6 gnd 2.080806f +C7 g3030_2 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g3030_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +C10 3 gnd 2.080806f +R3 3 2 2.224404 +C11 4 gnd 2.080806f +R4 3 4 2.224404 +C12 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g3030_3 2.224404 +C13 6 gnd 2.080806f +R7 g3030_3 6 2.224404 +C14 7 gnd 2.080806f +R8 6 7 2.224404 +C15 8 gnd 2.080806f +R9 7 8 2.224404 +C16 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g3030_5 2.224404 +C17 10 gnd 2.080806f +R12 10 g3030_5 2.224404 +C18 11 gnd 2.080806f +R13 10 11 2.224404 +C19 12 gnd 2.080806f +R14 12 11 2.224404 +C20 13 gnd 2.080806f +R15 12 13 2.224404 +C21 14 gnd 2.080806f +R16 13 14 2.224404 +R17 14 g3030_4 2.224404 +C22 15 gnd 2.080806f +R18 15 g3030_4 2.224404 +C23 16 gnd 2.080806f +R19 16 15 2.224404 +C24 17 gnd 2.080806f +R20 17 16 2.224404 +C25 18 gnd 2.080806f +R21 18 17 2.224404 +C26 19 gnd 2.080806f +R22 19 18 2.224404 +C27 20 gnd 2.080806f +R23 20 19 2.224404 +R24 g3030_1 20 2.224404 +R25 g3030_6 g3030_1 2.224404 +C28 21 gnd 2.080806f +R26 21 19 2.224404 +C29 22 gnd 2.080806f +R27 22 21 2.224404 +R28 g3030_2 22 2.224404 +.ends + +.subckt netx171 x171_0 x171_1 gnd +C1 x171_0 gnd 2.080806f +C2 x171_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 x171_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +R23 22 x171_1 2.224404 +.ends + +.subckt netg666 g666_4 g666_3 g666_2 g666_5 g666_1 g666_0 gnd +C1 g666_4 gnd 2.080806f +C2 g666_3 gnd 2.080806f +C3 g666_2 gnd 2.080806f +C4 g666_5 gnd 2.080806f +C5 g666_1 gnd 2.080806f +C6 g666_0 gnd 2.080806f +R1 g666_0 g666_1 2.224404 +C7 1 gnd 2.080806f +R2 1 g666_1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g666_5 2.224404 +C9 3 gnd 2.080806f +R5 3 g666_0 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +C11 5 gnd 2.080806f +R7 5 4 2.224404 +C12 6 gnd 2.080806f +R8 6 5 2.224404 +C13 7 gnd 2.080806f +R9 7 6 2.224404 +R10 g666_3 7 2.224404 +C14 8 gnd 2.080806f +R11 8 g666_3 2.224404 +C15 9 gnd 2.080806f +R12 9 8 2.224404 +C16 10 gnd 2.080806f +R13 10 9 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +C19 13 gnd 2.080806f +R16 13 12 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 15 14 2.224404 +C22 16 gnd 2.080806f +R19 16 15 2.224404 +R20 g666_2 16 2.224404 +C23 17 gnd 2.080806f +R21 17 g666_2 2.224404 +R22 g666_4 17 2.224404 +.ends + +.subckt netg4560 g4560_6 g4560_5 g4560_4 g4560_3 g4560_0 g4560_7 g4560_2 g4560_1 gnd +C1 g4560_6 gnd 2.080806f +C2 g4560_5 gnd 2.080806f +C3 g4560_4 gnd 2.080806f +C4 g4560_3 gnd 2.080806f +C5 g4560_0 gnd 2.080806f +C6 g4560_7 gnd 2.080806f +C7 g4560_2 gnd 2.080806f +C8 g4560_1 gnd 2.080806f +C9 1 gnd 2.080806f +R1 g4560_0 1 2.224404 +R2 1 g4560_4 2.224404 +R3 g4560_4 g4560_5 2.224404 +R4 g4560_7 g4560_5 2.224404 +C10 2 gnd 2.080806f +R5 2 g4560_0 2.224404 +C11 3 gnd 2.080806f +R6 3 2 2.224404 +C12 4 gnd 2.080806f +R7 4 3 2.224404 +R8 g4560_1 4 2.224404 +C13 5 gnd 2.080806f +R9 5 g4560_1 2.224404 +C14 6 gnd 2.080806f +R10 6 5 2.224404 +C15 7 gnd 2.080806f +R11 7 6 2.224404 +R12 g4560_2 7 2.224404 +C16 8 gnd 2.080806f +R13 8 g4560_2 2.224404 +C17 9 gnd 2.080806f +R14 9 8 2.224404 +R15 g4560_3 9 2.224404 +C18 10 gnd 2.080806f +R16 g4560_5 10 2.224404 +C19 11 gnd 2.080806f +R17 10 11 2.224404 +C20 12 gnd 2.080806f +R18 11 12 2.224404 +C21 13 gnd 2.080806f +R19 12 13 2.224404 +C22 14 gnd 2.080806f +R20 13 14 2.224404 +C23 15 gnd 2.080806f +R21 14 15 2.224404 +R22 15 g4560_6 2.224404 +.ends + +.subckt netg2334 g2334_3 g2334_1 g2334_2 g2334_0 gnd +C1 g2334_3 gnd 2.080806f +C2 g2334_1 gnd 2.080806f +C3 g2334_2 gnd 2.080806f +C4 g2334_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2334_0 1 2.224404 +R2 1 g2334_1 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g2334_3 5 2.224404 +C10 6 gnd 2.080806f +R8 6 g2334_3 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +R22 g2334_2 19 2.224404 +.ends + +.subckt netg120 g120_1 g120_0 gnd +C1 g120_1 gnd 2.080806f +C2 g120_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g120_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +R21 20 g120_1 2.224404 +.ends + +.subckt netg2683 g2683_2 g2683_1 g2683_0 gnd +C1 g2683_2 gnd 2.080806f +C2 g2683_1 gnd 2.080806f +C3 g2683_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2683_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +R20 19 g2683_2 2.224404 +R21 g2683_2 g2683_1 2.224404 +.ends + +.subckt netg3862 g3862_8 g3862_0 g3862_7 g3862_6 g3862_9 g3862_2 g3862_10 g3862_3 g3862_1 g3862_5 g3862_4 gnd +C1 g3862_8 gnd 2.080806f +C2 g3862_0 gnd 2.080806f +C3 g3862_7 gnd 2.080806f +C4 g3862_6 gnd 2.080806f +C5 g3862_9 gnd 2.080806f +C6 g3862_2 gnd 2.080806f +C7 g3862_10 gnd 2.080806f +C8 g3862_3 gnd 2.080806f +C9 g3862_1 gnd 2.080806f +C10 g3862_5 gnd 2.080806f +C11 g3862_4 gnd 2.080806f +C12 1 gnd 2.080806f +R1 1 g3862_0 2.224404 +R2 g3862_1 1 2.224404 +R3 g3862_1 g3862_5 2.224404 +R4 g3862_5 g3862_7 2.224404 +R5 g3862_7 g3862_3 2.224404 +C13 2 gnd 2.080806f +R6 g3862_7 2 2.224404 +R7 2 g3862_2 2.224404 +C14 3 gnd 2.080806f +R8 g3862_3 3 2.224404 +R9 3 g3862_9 2.224404 +C15 4 gnd 2.080806f +R10 g3862_9 4 2.224404 +C16 5 gnd 2.080806f +R11 4 5 2.224404 +R12 5 g3862_4 2.224404 +C17 6 gnd 2.080806f +R13 6 g3862_1 2.224404 +C18 7 gnd 2.080806f +R14 7 6 2.224404 +R15 g3862_10 7 2.224404 +C19 8 gnd 2.080806f +R16 8 g3862_10 2.224404 +C20 9 gnd 2.080806f +R17 9 8 2.224404 +C21 10 gnd 2.080806f +R18 10 9 2.224404 +R19 g3862_8 10 2.224404 +C22 11 gnd 2.080806f +R20 11 g3862_4 2.224404 +C23 12 gnd 2.080806f +R21 11 12 2.224404 +C24 13 gnd 2.080806f +R22 12 13 2.224404 +C25 14 gnd 2.080806f +R23 13 14 2.224404 +C26 15 gnd 2.080806f +R24 15 14 2.224404 +C27 16 gnd 2.080806f +R25 15 16 2.224404 +C28 17 gnd 2.080806f +R26 16 17 2.224404 +R27 17 g3862_6 2.224404 +.ends + +.subckt netg2853 g2853_5 g2853_2 g2853_3 g2853_4 g2853_1 gnd +C1 g2853_5 gnd 2.080806f +C2 g2853_2 gnd 2.080806f +C3 g2853_3 gnd 2.080806f +C4 g2853_4 gnd 2.080806f +C5 g2853_1 gnd 2.080806f +R1 g2853_1 g2853_4 2.224404 +C6 1 gnd 2.080806f +R2 1 g2853_4 2.224404 +C7 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g2853_5 2 2.224404 +C8 3 gnd 2.080806f +R5 3 g2853_5 2.224404 +C9 4 gnd 2.080806f +R6 4 3 2.224404 +R7 g2853_3 4 2.224404 +C10 5 gnd 2.080806f +R8 g2853_4 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +C13 8 gnd 2.080806f +R11 7 8 2.224404 +C14 9 gnd 2.080806f +R12 8 9 2.224404 +C15 10 gnd 2.080806f +R13 9 10 2.224404 +C16 11 gnd 2.080806f +R14 10 11 2.224404 +C17 12 gnd 2.080806f +R15 11 12 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +C19 14 gnd 2.080806f +R17 13 14 2.224404 +C20 15 gnd 2.080806f +R18 14 15 2.224404 +C21 16 gnd 2.080806f +R19 15 16 2.224404 +C22 17 gnd 2.080806f +R20 16 17 2.224404 +C23 18 gnd 2.080806f +R21 17 18 2.224404 +R22 18 g2853_2 2.224404 +.ends + +.subckt netg102 g102_0 g102_1 gnd +C1 g102_0 gnd 2.080806f +C2 g102_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g102_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +R21 20 g102_1 2.224404 +.ends + +.subckt netg89 g89_0 g89_1 gnd +C1 g89_0 gnd 2.080806f +C2 g89_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g89_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +R21 20 g89_1 2.224404 +.ends + +.subckt netg44 g44_0 g44_1 gnd +C1 g44_0 gnd 2.080806f +C2 g44_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g44_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +R21 20 g44_1 2.224404 +.ends + +.subckt netg634 g634_3 g634_1 g634_0 g634_2 g634_5 g634_4 gnd +C1 g634_3 gnd 2.080806f +C2 g634_1 gnd 2.080806f +C3 g634_0 gnd 2.080806f +C4 g634_2 gnd 2.080806f +C5 g634_5 gnd 2.080806f +C6 g634_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g634_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g634_3 4 2.224404 +C11 5 gnd 2.080806f +R6 g634_3 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 8 9 2.224404 +R11 g634_1 9 2.224404 +C16 10 gnd 2.080806f +R12 10 g634_0 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +C18 12 gnd 2.080806f +R14 12 11 2.224404 +C19 13 gnd 2.080806f +R15 13 12 2.224404 +C20 14 gnd 2.080806f +R16 14 13 2.224404 +C21 15 gnd 2.080806f +R17 15 14 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +R19 16 g634_4 2.224404 +R20 g634_2 g634_4 2.224404 +R21 g634_2 g634_5 2.224404 +.ends + +.subckt netg821 g821_0 g821_6 g821_3 g821_1 g821_4 g821_2 g821_5 gnd +C1 g821_0 gnd 2.080806f +C2 g821_6 gnd 2.080806f +C3 g821_3 gnd 2.080806f +C4 g821_1 gnd 2.080806f +C5 g821_4 gnd 2.080806f +C6 g821_2 gnd 2.080806f +C7 g821_5 gnd 2.080806f +R1 g821_0 g821_1 2.224404 +R2 g821_5 g821_0 2.224404 +C8 1 gnd 2.080806f +R3 g821_1 1 2.224404 +C9 2 gnd 2.080806f +R4 1 2 2.224404 +C10 3 gnd 2.080806f +R5 2 3 2.224404 +C11 4 gnd 2.080806f +R6 3 4 2.224404 +C12 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g821_6 2.224404 +C13 6 gnd 2.080806f +R9 6 g821_6 2.224404 +C14 7 gnd 2.080806f +R10 7 6 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +C16 9 gnd 2.080806f +R12 9 8 2.224404 +C17 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g821_2 2.224404 +C18 11 gnd 2.080806f +R15 11 g821_2 2.224404 +C19 12 gnd 2.080806f +R16 12 11 2.224404 +C20 13 gnd 2.080806f +R17 13 12 2.224404 +C21 14 gnd 2.080806f +R18 14 13 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 15 16 2.224404 +R21 16 g821_3 2.224404 +R22 g821_3 g821_4 2.224404 +.ends + +.subckt netg1459 g1459_1 g1459_0 gnd +C1 g1459_1 gnd 2.080806f +C2 g1459_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1459_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +R21 g1459_1 20 2.224404 +.ends + +.subckt netg3784 g3784_3 g3784_2 g3784_0 g3784_9 g3784_12 g3784_8 g3784_7 g3784_6 g3784_4 g3784_1 g3784_11 g3784_10 g3784_5 gnd +C1 g3784_3 gnd 2.080806f +C2 g3784_2 gnd 2.080806f +C3 g3784_0 gnd 2.080806f +C4 g3784_9 gnd 2.080806f +C5 g3784_12 gnd 2.080806f +C6 g3784_8 gnd 2.080806f +C7 g3784_7 gnd 2.080806f +C8 g3784_6 gnd 2.080806f +C9 g3784_4 gnd 2.080806f +C10 g3784_1 gnd 2.080806f +C11 g3784_11 gnd 2.080806f +C12 g3784_10 gnd 2.080806f +C13 g3784_5 gnd 2.080806f +C14 1 gnd 2.080806f +R1 g3784_0 1 2.224404 +R2 1 g3784_10 2.224404 +C15 2 gnd 2.080806f +R3 g3784_0 2 2.224404 +C16 3 gnd 2.080806f +R4 2 3 2.224404 +C17 4 gnd 2.080806f +R5 3 4 2.224404 +C18 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g3784_6 2.224404 +C19 6 gnd 2.080806f +R8 g3784_6 6 2.224404 +C20 7 gnd 2.080806f +R9 6 7 2.224404 +C21 8 gnd 2.080806f +R10 7 8 2.224404 +C22 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g3784_2 2.224404 +R13 g3784_2 g3784_5 2.224404 +C23 10 gnd 2.080806f +R14 g3784_5 10 2.224404 +R15 10 g3784_7 2.224404 +R16 g3784_7 g3784_3 2.224404 +R17 g3784_3 g3784_9 2.224404 +R18 g3784_9 g3784_4 2.224404 +R19 g3784_4 g3784_1 2.224404 +C24 11 gnd 2.080806f +R20 11 g3784_7 2.224404 +C25 12 gnd 2.080806f +R21 12 11 2.224404 +R22 g3784_11 12 2.224404 +C26 13 gnd 2.080806f +R23 13 g3784_1 2.224404 +C27 14 gnd 2.080806f +R24 14 13 2.224404 +R25 14 g3784_8 2.224404 +C28 15 gnd 2.080806f +R26 g3784_8 15 2.224404 +C29 16 gnd 2.080806f +R27 15 16 2.224404 +C30 17 gnd 2.080806f +R28 16 17 2.224404 +R29 17 g3784_12 2.224404 +.ends + +.subckt netg3579 g3579_2 g3579_5 g3579_0 g3579_4 g3579_1 g3579_6 g3579_3 g3579_7 gnd +C1 g3579_2 gnd 2.080806f +C2 g3579_5 gnd 2.080806f +C3 g3579_0 gnd 2.080806f +C4 g3579_4 gnd 2.080806f +C5 g3579_1 gnd 2.080806f +C6 g3579_6 gnd 2.080806f +C7 g3579_3 gnd 2.080806f +C8 g3579_7 gnd 2.080806f +R1 g3579_5 g3579_0 2.224404 +C9 1 gnd 2.080806f +R2 g3579_0 1 2.224404 +C10 2 gnd 2.080806f +R3 2 1 2.224404 +C11 3 gnd 2.080806f +R4 2 3 2.224404 +C12 4 gnd 2.080806f +R5 3 4 2.224404 +C13 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g3579_4 2.224404 +C14 6 gnd 2.080806f +R8 6 4 2.224404 +C15 7 gnd 2.080806f +R9 7 6 2.224404 +C16 8 gnd 2.080806f +R10 8 7 2.224404 +R11 g3579_7 8 2.224404 +C17 9 gnd 2.080806f +R12 9 g3579_7 2.224404 +C18 10 gnd 2.080806f +R13 9 10 2.224404 +C19 11 gnd 2.080806f +R14 10 11 2.224404 +C20 12 gnd 2.080806f +R15 12 11 2.224404 +C21 13 gnd 2.080806f +R16 12 13 2.224404 +C22 14 gnd 2.080806f +R17 13 14 2.224404 +R18 14 g3579_2 2.224404 +C23 15 gnd 2.080806f +R19 g3579_2 15 2.224404 +C24 16 gnd 2.080806f +R20 15 16 2.224404 +R21 16 g3579_6 2.224404 +R22 g3579_1 g3579_6 2.224404 +R23 g3579_1 g3579_3 2.224404 +.ends + +.subckt netg5977 g5977_2 g5977_0 g5977_1 gnd +C1 g5977_2 gnd 2.080806f +C2 g5977_0 gnd 2.080806f +C3 g5977_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5977_0 2.224404 +R2 g5977_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +R21 19 g5977_2 2.224404 +.ends + +.subckt netg5502 g5502_2 g5502_1 g5502_0 gnd +C1 g5502_2 gnd 2.080806f +C2 g5502_1 gnd 2.080806f +C3 g5502_0 gnd 2.080806f +R1 g5502_2 g5502_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g5502_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +R21 g5502_1 19 2.224404 +.ends + +.subckt netg5839 g5839_3 g5839_1 g5839_0 g5839_2 gnd +C1 g5839_3 gnd 2.080806f +C2 g5839_1 gnd 2.080806f +C3 g5839_0 gnd 2.080806f +C4 g5839_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g5839_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g5839_2 2.224404 +C10 6 gnd 2.080806f +R7 g5839_2 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +R11 9 g5839_1 2.224404 +C14 10 gnd 2.080806f +R12 g5839_1 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +R23 20 g5839_3 2.224404 +.ends + +.subckt netg2280 g2280_2 g2280_3 g2280_1 g2280_0 gnd +C1 g2280_2 gnd 2.080806f +C2 g2280_3 gnd 2.080806f +C3 g2280_1 gnd 2.080806f +C4 g2280_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2280_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g2280_3 2.224404 +C10 6 gnd 2.080806f +R7 6 g2280_0 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +R16 g2280_2 14 2.224404 +C19 15 gnd 2.080806f +R17 15 g2280_2 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +R21 g2280_1 18 2.224404 +.ends + +.subckt netg133 g133_0 g133_1 gnd +C1 g133_0 gnd 2.080806f +C2 g133_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g133_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +R21 g133_1 20 2.224404 +.ends + +.subckt netg6568 g6568_2 g6568_0 g6568_4 g6568_1 g6568_3 gnd +C1 g6568_2 gnd 2.080806f +C2 g6568_0 gnd 2.080806f +C3 g6568_4 gnd 2.080806f +C4 g6568_1 gnd 2.080806f +C5 g6568_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g6568_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +C9 4 gnd 2.080806f +R4 4 3 2.224404 +C10 5 gnd 2.080806f +R5 5 4 2.224404 +C11 6 gnd 2.080806f +R6 6 5 2.224404 +C12 7 gnd 2.080806f +R7 7 6 2.224404 +C13 8 gnd 2.080806f +R8 8 7 2.224404 +C14 9 gnd 2.080806f +R9 9 8 2.224404 +C15 10 gnd 2.080806f +R10 10 9 2.224404 +C16 11 gnd 2.080806f +R11 11 10 2.224404 +C17 12 gnd 2.080806f +R12 12 11 2.224404 +C18 13 gnd 2.080806f +R13 13 12 2.224404 +R14 g6568_2 13 2.224404 +C19 14 gnd 2.080806f +R15 14 g6568_2 2.224404 +C20 15 gnd 2.080806f +R16 15 14 2.224404 +R17 15 g6568_4 2.224404 +C21 16 gnd 2.080806f +R18 g6568_4 16 2.224404 +C22 17 gnd 2.080806f +R19 16 17 2.224404 +R20 17 g6568_3 2.224404 +C23 18 gnd 2.080806f +R21 g6568_3 18 2.224404 +C24 19 gnd 2.080806f +R22 18 19 2.224404 +C25 20 gnd 2.080806f +R23 19 20 2.224404 +C26 21 gnd 2.080806f +R24 20 21 2.224404 +R25 21 g6568_1 2.224404 +.ends + +.subckt netg652 g652_5 g652_4 g652_2 g652_0 g652_1 g652_3 g652_7 g652_6 gnd +C1 g652_5 gnd 2.080806f +C2 g652_4 gnd 2.080806f +C3 g652_2 gnd 2.080806f +C4 g652_0 gnd 2.080806f +C5 g652_1 gnd 2.080806f +C6 g652_3 gnd 2.080806f +C7 g652_7 gnd 2.080806f +C8 g652_6 gnd 2.080806f +R1 g652_1 g652_0 2.224404 +C9 1 gnd 2.080806f +R2 g652_0 1 2.224404 +R3 g652_2 1 2.224404 +C10 2 gnd 2.080806f +R4 g652_2 2 2.224404 +C11 3 gnd 2.080806f +R5 2 3 2.224404 +C12 4 gnd 2.080806f +R6 3 4 2.224404 +C13 5 gnd 2.080806f +R7 4 5 2.224404 +C14 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g652_5 2.224404 +C15 7 gnd 2.080806f +R10 7 g652_5 2.224404 +C16 8 gnd 2.080806f +R11 7 8 2.224404 +C17 9 gnd 2.080806f +R12 9 8 2.224404 +C18 10 gnd 2.080806f +R13 9 10 2.224404 +C19 11 gnd 2.080806f +R14 10 11 2.224404 +R15 11 g652_4 2.224404 +C20 12 gnd 2.080806f +R16 g652_4 12 2.224404 +C21 13 gnd 2.080806f +R17 12 13 2.224404 +C22 14 gnd 2.080806f +R18 13 14 2.224404 +C23 15 gnd 2.080806f +R19 14 15 2.224404 +C24 16 gnd 2.080806f +R20 15 16 2.224404 +R21 16 g652_7 2.224404 +C25 17 gnd 2.080806f +R22 g652_7 17 2.224404 +C26 18 gnd 2.080806f +R23 17 18 2.224404 +C27 19 gnd 2.080806f +R24 18 19 2.224404 +C28 20 gnd 2.080806f +R25 19 20 2.224404 +C29 21 gnd 2.080806f +R26 20 21 2.224404 +R27 21 g652_6 2.224404 +C30 22 gnd 2.080806f +R28 22 12 2.224404 +C31 23 gnd 2.080806f +R29 22 23 2.224404 +C32 24 gnd 2.080806f +R30 23 24 2.224404 +C33 25 gnd 2.080806f +R31 25 24 2.224404 +C34 26 gnd 2.080806f +R32 25 26 2.224404 +C35 27 gnd 2.080806f +R33 26 27 2.224404 +R34 27 g652_3 2.224404 +.ends + +.subckt netg7512 g7512_0 g7512_1 gnd +C1 g7512_0 gnd 2.080806f +C2 g7512_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7512_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +R22 21 g7512_1 2.224404 +.ends + +.subckt netg3037 g3037_0 g3037_6 g3037_5 g3037_3 g3037_1 g3037_2 g3037_7 g3037_4 gnd +C1 g3037_0 gnd 2.080806f +C2 g3037_6 gnd 2.080806f +C3 g3037_5 gnd 2.080806f +C4 g3037_3 gnd 2.080806f +C5 g3037_1 gnd 2.080806f +C6 g3037_2 gnd 2.080806f +C7 g3037_7 gnd 2.080806f +C8 g3037_4 gnd 2.080806f +R1 g3037_6 g3037_0 2.224404 +C9 1 gnd 2.080806f +R2 1 g3037_6 2.224404 +R3 g3037_3 1 2.224404 +C10 2 gnd 2.080806f +R4 2 g3037_6 2.224404 +C11 3 gnd 2.080806f +R5 3 2 2.224404 +R6 g3037_5 3 2.224404 +C12 4 gnd 2.080806f +R7 4 g3037_5 2.224404 +C13 5 gnd 2.080806f +R8 5 4 2.224404 +C14 6 gnd 2.080806f +R9 6 5 2.224404 +R10 g3037_4 6 2.224404 +C15 7 gnd 2.080806f +R11 g3037_5 7 2.224404 +C16 8 gnd 2.080806f +R12 7 8 2.224404 +C17 9 gnd 2.080806f +R13 8 9 2.224404 +C18 10 gnd 2.080806f +R14 9 10 2.224404 +C19 11 gnd 2.080806f +R15 11 10 2.224404 +C20 12 gnd 2.080806f +R16 11 12 2.224404 +R17 g3037_2 12 2.224404 +C21 13 gnd 2.080806f +R18 g3037_2 13 2.224404 +C22 14 gnd 2.080806f +R19 14 13 2.224404 +C23 15 gnd 2.080806f +R20 15 14 2.224404 +R21 g3037_1 15 2.224404 +C24 16 gnd 2.080806f +R22 15 16 2.224404 +C25 17 gnd 2.080806f +R23 16 17 2.224404 +C26 18 gnd 2.080806f +R24 17 18 2.224404 +R25 g3037_7 18 2.224404 +.ends + +.subckt netg2409 g2409_0 g2409_2 g2409_1 gnd +C1 g2409_0 gnd 2.080806f +C2 g2409_2 gnd 2.080806f +C3 g2409_1 gnd 2.080806f +R1 g2409_2 g2409_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2409_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +R22 g2409_1 20 2.224404 +.ends + +.subckt netg1683 g1683_2 g1683_3 g1683_1 gnd +C1 g1683_2 gnd 2.080806f +C2 g1683_3 gnd 2.080806f +C3 g1683_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1683_3 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g1683_2 2.224404 +C8 5 gnd 2.080806f +R6 g1683_2 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +R24 22 g1683_1 2.224404 +.ends + +.subckt netg7513 g7513_0 g7513_1 gnd +C1 g7513_0 gnd 2.080806f +C2 g7513_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7513_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g7513_1 21 2.224404 +.ends + +.subckt netg5418 g5418_1 g5418_0 g5418_2 gnd +C1 g5418_1 gnd 2.080806f +C2 g5418_0 gnd 2.080806f +C3 g5418_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g5418_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5418_1 2 2.224404 +C6 3 gnd 2.080806f +R4 g5418_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +R23 21 g5418_2 2.224404 +.ends + +.subckt netg7515 g7515_0 g7515_1 gnd +C1 g7515_0 gnd 2.080806f +C2 g7515_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7515_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g7515_1 21 2.224404 +.ends + +.subckt netg45 g45_0 g45_1 gnd +C1 g45_0 gnd 2.080806f +C2 g45_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g45_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +R22 21 g45_1 2.224404 +.ends + +.subckt netg683 g683_3 g683_2 g683_0 g683_5 g683_6 g683_1 g683_4 gnd +C1 g683_3 gnd 2.080806f +C2 g683_2 gnd 2.080806f +C3 g683_0 gnd 2.080806f +C4 g683_5 gnd 2.080806f +C5 g683_6 gnd 2.080806f +C6 g683_1 gnd 2.080806f +C7 g683_4 gnd 2.080806f +R1 g683_0 g683_1 2.224404 +R2 g683_1 g683_3 2.224404 +C8 1 gnd 2.080806f +R3 1 g683_0 2.224404 +C9 2 gnd 2.080806f +R4 2 1 2.224404 +C10 3 gnd 2.080806f +R5 3 2 2.224404 +C11 4 gnd 2.080806f +R6 4 3 2.224404 +C12 5 gnd 2.080806f +R7 5 4 2.224404 +C13 6 gnd 2.080806f +R8 6 5 2.224404 +R9 g683_4 6 2.224404 +C14 7 gnd 2.080806f +R10 7 g683_4 2.224404 +R11 7 g683_5 2.224404 +C15 8 gnd 2.080806f +R12 g683_3 8 2.224404 +C16 9 gnd 2.080806f +R13 9 8 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 13 12 2.224404 +C21 14 gnd 2.080806f +R18 13 14 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +R20 15 g683_2 2.224404 +C23 16 gnd 2.080806f +R21 g683_2 16 2.224404 +C24 17 gnd 2.080806f +R22 16 17 2.224404 +C25 18 gnd 2.080806f +R23 17 18 2.224404 +C26 19 gnd 2.080806f +R24 18 19 2.224404 +C27 20 gnd 2.080806f +R25 19 20 2.224404 +C28 21 gnd 2.080806f +R26 20 21 2.224404 +R27 21 g683_6 2.224404 +.ends + +.subckt netg3057 g3057_1 g3057_0 gnd +C1 g3057_1 gnd 2.080806f +C2 g3057_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g3057_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +R24 23 g3057_1 2.224404 +.ends + +.subckt netg588 g588_2 g588_3 g588_1 g588_4 g588_5 g588_0 gnd +C1 g588_2 gnd 2.080806f +C2 g588_3 gnd 2.080806f +C3 g588_1 gnd 2.080806f +C4 g588_4 gnd 2.080806f +C5 g588_5 gnd 2.080806f +C6 g588_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g588_0 2.224404 +R2 g588_3 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g588_3 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +C17 11 gnd 2.080806f +R12 11 10 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +C19 13 gnd 2.080806f +R14 13 12 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +C21 15 gnd 2.080806f +R16 15 14 2.224404 +C22 16 gnd 2.080806f +R17 16 15 2.224404 +R18 g588_4 16 2.224404 +C23 17 gnd 2.080806f +R19 17 g588_4 2.224404 +C24 18 gnd 2.080806f +R20 17 18 2.224404 +R21 g588_5 18 2.224404 +R22 g588_1 g588_5 2.224404 +C25 19 gnd 2.080806f +R23 19 g588_1 2.224404 +R24 g588_2 19 2.224404 +.ends + +.subckt netg6590 g6590_2 g6590_1 g6590_4 g6590_0 g6590_3 g6590_6 gnd +C1 g6590_2 gnd 2.080806f +C2 g6590_1 gnd 2.080806f +C3 g6590_4 gnd 2.080806f +C4 g6590_0 gnd 2.080806f +C5 g6590_3 gnd 2.080806f +C6 g6590_6 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g6590_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g6590_3 2.224404 +R6 g6590_3 g6590_4 2.224404 +C11 5 gnd 2.080806f +R7 g6590_3 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g6590_6 2.224404 +C13 7 gnd 2.080806f +R10 g6590_6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g6590_1 2.224404 +C17 11 gnd 2.080806f +R15 g6590_0 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +R28 23 g6590_2 2.224404 +.ends + +.subckt netg56 g56_1 g56_0 gnd +C1 g56_1 gnd 2.080806f +C2 g56_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g56_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g56_1 21 2.224404 +.ends + +.subckt netg7497 g7497_0 g7497_1 gnd +C1 g7497_0 gnd 2.080806f +C2 g7497_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7497_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g7497_1 21 2.224404 +.ends + +.subckt netg2284 g2284_1 g2284_0 g2284_3 g2284_2 gnd +C1 g2284_1 gnd 2.080806f +C2 g2284_0 gnd 2.080806f +C3 g2284_3 gnd 2.080806f +C4 g2284_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2284_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g2284_1 2.224404 +C11 7 gnd 2.080806f +R8 g2284_1 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +R13 11 g2284_2 2.224404 +C16 12 gnd 2.080806f +R14 12 g2284_0 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +R24 g2284_3 21 2.224404 +.ends + +.subckt netg3587 g3587_8 g3587_9 g3587_2 g3587_12 g3587_0 g3587_3 g3587_13 g3587_6 g3587_11 g3587_4 g3587_10 g3587_1 g3587_7 gnd +C1 g3587_8 gnd 2.080806f +C2 g3587_9 gnd 2.080806f +C3 g3587_2 gnd 2.080806f +C4 g3587_12 gnd 2.080806f +C5 g3587_0 gnd 2.080806f +C6 g3587_3 gnd 2.080806f +C7 g3587_13 gnd 2.080806f +C8 g3587_6 gnd 2.080806f +C9 g3587_11 gnd 2.080806f +C10 g3587_4 gnd 2.080806f +C11 g3587_10 gnd 2.080806f +C12 g3587_1 gnd 2.080806f +C13 g3587_7 gnd 2.080806f +C14 1 gnd 2.080806f +R1 1 g3587_0 2.224404 +R2 g3587_6 1 2.224404 +R3 g3587_3 g3587_6 2.224404 +C15 2 gnd 2.080806f +R4 g3587_3 2 2.224404 +R5 g3587_11 2 2.224404 +C16 3 gnd 2.080806f +R6 g3587_0 3 2.224404 +R7 3 g3587_8 2.224404 +C17 4 gnd 2.080806f +R8 4 g3587_3 2.224404 +C18 5 gnd 2.080806f +R9 5 4 2.224404 +R10 g3587_10 5 2.224404 +R11 g3587_9 g3587_10 2.224404 +R12 g3587_9 g3587_2 2.224404 +C19 6 gnd 2.080806f +R13 6 g3587_2 2.224404 +R14 g3587_13 6 2.224404 +C20 7 gnd 2.080806f +R15 g3587_2 7 2.224404 +R16 7 g3587_4 2.224404 +C21 8 gnd 2.080806f +R17 8 g3587_13 2.224404 +C22 9 gnd 2.080806f +R18 9 8 2.224404 +C23 10 gnd 2.080806f +R19 10 9 2.224404 +C24 11 gnd 2.080806f +R20 11 10 2.224404 +C25 12 gnd 2.080806f +R21 12 11 2.224404 +C26 13 gnd 2.080806f +R22 12 13 2.224404 +R23 g3587_12 13 2.224404 +C27 14 gnd 2.080806f +R24 14 g3587_12 2.224404 +C28 15 gnd 2.080806f +R25 15 14 2.224404 +C29 16 gnd 2.080806f +R26 16 15 2.224404 +R27 g3587_7 16 2.224404 +C30 17 gnd 2.080806f +R28 17 15 2.224404 +C31 18 gnd 2.080806f +R29 18 17 2.224404 +R30 g3587_1 18 2.224404 +.ends + +.subckt netg582 g582_5 g582_4 g582_2 g582_3 g582_1 g582_0 gnd +C1 g582_5 gnd 2.080806f +C2 g582_4 gnd 2.080806f +C3 g582_2 gnd 2.080806f +C4 g582_3 gnd 2.080806f +C5 g582_1 gnd 2.080806f +C6 g582_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g582_0 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g582_2 2.224404 +R4 g582_4 2 2.224404 +C9 3 gnd 2.080806f +R5 g582_2 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g582_1 2.224404 +C15 9 gnd 2.080806f +R12 g582_2 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +R18 14 g582_5 2.224404 +C21 15 gnd 2.080806f +R19 g582_1 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +R30 25 g582_3 2.224404 +.ends + +.subckt netg2552 g2552_1 g2552_0 g2552_2 gnd +C1 g2552_1 gnd 2.080806f +C2 g2552_0 gnd 2.080806f +C3 g2552_2 gnd 2.080806f +R1 g2552_0 g2552_1 2.224404 +C4 1 gnd 2.080806f +R2 1 g2552_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +R24 g2552_2 22 2.224404 +.ends + +.subckt netg1102 g1102_4 g1102_2 g1102_1 g1102_0 g1102_3 g1102_5 gnd +C1 g1102_4 gnd 2.080806f +C2 g1102_2 gnd 2.080806f +C3 g1102_1 gnd 2.080806f +C4 g1102_0 gnd 2.080806f +C5 g1102_3 gnd 2.080806f +C6 g1102_5 gnd 2.080806f +R1 g1102_4 g1102_0 2.224404 +C7 1 gnd 2.080806f +R2 g1102_0 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +R4 2 g1102_3 2.224404 +C9 3 gnd 2.080806f +R5 3 g1102_4 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +C11 5 gnd 2.080806f +R7 5 4 2.224404 +C12 6 gnd 2.080806f +R8 6 5 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +R11 g1102_5 8 2.224404 +C15 9 gnd 2.080806f +R12 g1102_3 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +R19 g1102_1 15 2.224404 +C22 16 gnd 2.080806f +R20 9 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 21 20 2.224404 +R26 21 g1102_2 2.224404 +.ends + +.subckt netg7498 g7498_1 g7498_0 gnd +C1 g7498_1 gnd 2.080806f +C2 g7498_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7498_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +R22 21 g7498_1 2.224404 +.ends + +.subckt netg7510 g7510_1 g7510_0 gnd +C1 g7510_1 gnd 2.080806f +C2 g7510_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7510_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +R22 g7510_1 21 2.224404 +.ends + +.subckt netg4582 g4582_6 g4582_5 g4582_3 g4582_12 g4582_10 g4582_15 g4582_9 g4582_0 g4582_11 g4582_2 g4582_7 g4582_1 g4582_8 g4582_13 g4582_4 g4582_14 gnd +C1 g4582_6 gnd 2.080806f +C2 g4582_5 gnd 2.080806f +C3 g4582_3 gnd 2.080806f +C4 g4582_12 gnd 2.080806f +C5 g4582_10 gnd 2.080806f +C6 g4582_15 gnd 2.080806f +C7 g4582_9 gnd 2.080806f +C8 g4582_0 gnd 2.080806f +C9 g4582_11 gnd 2.080806f +C10 g4582_2 gnd 2.080806f +C11 g4582_7 gnd 2.080806f +C12 g4582_1 gnd 2.080806f +C13 g4582_8 gnd 2.080806f +C14 g4582_13 gnd 2.080806f +C15 g4582_4 gnd 2.080806f +C16 g4582_14 gnd 2.080806f +C17 1 gnd 2.080806f +R1 g4582_0 1 2.224404 +R2 1 g4582_11 2.224404 +C18 2 gnd 2.080806f +R3 g4582_11 2 2.224404 +R4 2 g4582_5 2.224404 +C19 3 gnd 2.080806f +R5 g4582_5 3 2.224404 +R6 3 g4582_8 2.224404 +C20 4 gnd 2.080806f +R7 4 2 2.224404 +R8 g4582_2 4 2.224404 +R9 g4582_3 g4582_2 2.224404 +C21 5 gnd 2.080806f +R10 g4582_2 5 2.224404 +R11 5 g4582_9 2.224404 +C22 6 gnd 2.080806f +R12 6 g4582_3 2.224404 +R13 g4582_7 6 2.224404 +C23 7 gnd 2.080806f +R14 7 g4582_3 2.224404 +R15 7 g4582_10 2.224404 +R16 g4582_10 g4582_13 2.224404 +C24 8 gnd 2.080806f +R17 8 g4582_7 2.224404 +R18 g4582_14 8 2.224404 +R19 g4582_4 g4582_14 2.224404 +R20 g4582_12 g4582_14 2.224404 +R21 g4582_14 g4582_15 2.224404 +C25 9 gnd 2.080806f +R22 9 g4582_12 2.224404 +C26 10 gnd 2.080806f +R23 10 9 2.224404 +C27 11 gnd 2.080806f +R24 11 10 2.224404 +C28 12 gnd 2.080806f +R25 12 11 2.224404 +C29 13 gnd 2.080806f +R26 13 12 2.224404 +C30 14 gnd 2.080806f +R27 14 13 2.224404 +C31 15 gnd 2.080806f +R28 15 14 2.224404 +R29 g4582_6 15 2.224404 +C32 16 gnd 2.080806f +R30 16 g4582_6 2.224404 +C33 17 gnd 2.080806f +R31 17 16 2.224404 +C34 18 gnd 2.080806f +R32 18 17 2.224404 +R33 g4582_1 18 2.224404 +.ends + +.subckt netg46 g46_1 g46_0 gnd +C1 g46_1 gnd 2.080806f +C2 g46_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g46_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +R23 g46_1 22 2.224404 +.ends + +.subckt netg7506 g7506_1 g7506_0 gnd +C1 g7506_1 gnd 2.080806f +C2 g7506_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7506_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +R23 g7506_1 22 2.224404 +.ends + +.subckt netg2680 g2680_2 g2680_0 g2680_1 gnd +C1 g2680_2 gnd 2.080806f +C2 g2680_0 gnd 2.080806f +C3 g2680_1 gnd 2.080806f +R1 g2680_2 g2680_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2680_2 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +R25 g2680_1 23 2.224404 +.ends + +.subckt netg594 g594_3 g594_7 g594_5 g594_2 g594_6 g594_4 g594_1 gnd +C1 g594_3 gnd 2.080806f +C2 g594_7 gnd 2.080806f +C3 g594_5 gnd 2.080806f +C4 g594_2 gnd 2.080806f +C5 g594_6 gnd 2.080806f +C6 g594_4 gnd 2.080806f +C7 g594_1 gnd 2.080806f +R1 g594_1 g594_7 2.224404 +R2 g594_7 g594_3 2.224404 +C8 1 gnd 2.080806f +R3 g594_3 1 2.224404 +C9 2 gnd 2.080806f +R4 1 2 2.224404 +R5 2 g594_5 2.224404 +R6 g594_2 g594_5 2.224404 +C10 3 gnd 2.080806f +R7 g594_5 3 2.224404 +C11 4 gnd 2.080806f +R8 3 4 2.224404 +C12 5 gnd 2.080806f +R9 4 5 2.224404 +C13 6 gnd 2.080806f +R10 5 6 2.224404 +C14 7 gnd 2.080806f +R11 6 7 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +C16 9 gnd 2.080806f +R13 8 9 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +R18 13 g594_4 2.224404 +C21 14 gnd 2.080806f +R19 14 g594_4 2.224404 +C22 15 gnd 2.080806f +R20 15 14 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 17 16 2.224404 +C25 18 gnd 2.080806f +R23 18 17 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +R25 g594_6 19 2.224404 +.ends + +.subckt netg3552 g3552_1 g3552_0 gnd +C1 g3552_1 gnd 2.080806f +C2 g3552_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3552_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +R27 g3552_1 26 2.224404 +.ends + +.subckt netg842 g842_6 g842_0 g842_1 g842_4 g842_3 g842_2 g842_5 gnd +C1 g842_6 gnd 2.080806f +C2 g842_0 gnd 2.080806f +C3 g842_1 gnd 2.080806f +C4 g842_4 gnd 2.080806f +C5 g842_3 gnd 2.080806f +C6 g842_2 gnd 2.080806f +C7 g842_5 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g842_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g842_6 2 2.224404 +C10 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g842_2 2.224404 +C11 4 gnd 2.080806f +R6 g842_2 4 2.224404 +R7 4 g842_3 2.224404 +C12 5 gnd 2.080806f +R8 5 g842_3 2.224404 +R9 g842_5 5 2.224404 +C13 6 gnd 2.080806f +R10 2 6 2.224404 +C14 7 gnd 2.080806f +R11 6 7 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +R13 8 g842_1 2.224404 +C16 9 gnd 2.080806f +R14 9 g842_1 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +C21 14 gnd 2.080806f +R19 13 14 2.224404 +C22 15 gnd 2.080806f +R20 14 15 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 17 16 2.224404 +C25 18 gnd 2.080806f +R23 17 18 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 19 20 2.224404 +R26 g842_4 20 2.224404 +.ends + +.subckt netg660 g660_4 g660_1 g660_2 g660_0 g660_5 g660_3 gnd +C1 g660_4 gnd 2.080806f +C2 g660_1 gnd 2.080806f +C3 g660_2 gnd 2.080806f +C4 g660_0 gnd 2.080806f +C5 g660_5 gnd 2.080806f +C6 g660_3 gnd 2.080806f +R1 g660_2 g660_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g660_2 2.224404 +C8 2 gnd 2.080806f +R3 2 1 2.224404 +R4 g660_3 2 2.224404 +C9 3 gnd 2.080806f +R5 g660_3 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +R8 5 g660_5 2.224404 +C12 6 gnd 2.080806f +R9 g660_0 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +R24 20 g660_1 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +R27 22 g660_4 2.224404 +.ends + +.subckt netg2314 g2314_2 g2314_3 g2314_1 gnd +C1 g2314_2 gnd 2.080806f +C2 g2314_3 gnd 2.080806f +C3 g2314_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2314_1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +R16 g2314_3 15 2.224404 +C19 16 gnd 2.080806f +R17 16 g2314_3 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +R24 g2314_2 22 2.224404 +.ends + +.subckt netg7495 g7495_1 g7495_0 gnd +C1 g7495_1 gnd 2.080806f +C2 g7495_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7495_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +R23 g7495_1 22 2.224404 +.ends + +.subckt netg1398 g1398_1 g1398_0 gnd +C1 g1398_1 gnd 2.080806f +C2 g1398_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1398_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +R23 22 g1398_1 2.224404 +.ends + +.subckt netg1811 g1811_3 g1811_0 g1811_2 g1811_1 gnd +C1 g1811_3 gnd 2.080806f +C2 g1811_0 gnd 2.080806f +C3 g1811_2 gnd 2.080806f +C4 g1811_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1811_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +R12 g1811_3 11 2.224404 +C16 12 gnd 2.080806f +R13 g1811_3 12 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 19 18 2.224404 +C24 20 gnd 2.080806f +R21 20 19 2.224404 +C25 21 gnd 2.080806f +R22 21 20 2.224404 +C26 22 gnd 2.080806f +R23 22 21 2.224404 +R24 g1811_2 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 24 25 2.224404 +C30 26 gnd 2.080806f +R28 25 26 2.224404 +C31 27 gnd 2.080806f +R29 26 27 2.224404 +R30 27 g1811_1 2.224404 +.ends + +.subckt netg1620 g1620_0 g1620_3 g1620_2 g1620_1 gnd +C1 g1620_0 gnd 2.080806f +C2 g1620_3 gnd 2.080806f +C3 g1620_2 gnd 2.080806f +C4 g1620_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1620_0 1 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g1620_2 4 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 19 18 2.224404 +C24 20 gnd 2.080806f +R21 20 19 2.224404 +C25 21 gnd 2.080806f +R22 21 20 2.224404 +R23 g1620_3 21 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +R27 24 g1620_1 2.224404 +.ends + +.subckt netg2276 g2276_2 g2276_1 g2276_3 g2276_0 gnd +C1 g2276_2 gnd 2.080806f +C2 g2276_1 gnd 2.080806f +C3 g2276_3 gnd 2.080806f +C4 g2276_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2276_0 2.224404 +R2 g2276_1 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g2276_1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 19 18 2.224404 +C24 20 gnd 2.080806f +R21 20 19 2.224404 +R22 g2276_3 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +R24 21 g2276_2 2.224404 +.ends + +.subckt netg1116 g1116_0 g1116_1 gnd +C1 g1116_0 gnd 2.080806f +C2 g1116_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1116_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +R23 22 g1116_1 2.224404 +.ends + +.subckt netg2089 g2089_0 g2089_2 g2089_1 gnd +C1 g2089_0 gnd 2.080806f +C2 g2089_2 gnd 2.080806f +C3 g2089_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2089_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +R14 13 g2089_1 2.224404 +C17 14 gnd 2.080806f +R15 14 g2089_0 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +R28 g2089_2 26 2.224404 +.ends + +.subckt netg123 g123_0 g123_1 gnd +C1 g123_0 gnd 2.080806f +C2 g123_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g123_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +R24 g123_1 23 2.224404 +.ends + +.subckt netg138 g138_1 g138_0 gnd +C1 g138_1 gnd 2.080806f +C2 g138_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g138_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +R24 23 g138_1 2.224404 +.ends + +.subckt netg58 g58_1 g58_0 gnd +C1 g58_1 gnd 2.080806f +C2 g58_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g58_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +R24 g58_1 23 2.224404 +.ends + +.subckt netg4662 g4662_0 g4662_2 g4662_1 gnd +C1 g4662_0 gnd 2.080806f +C2 g4662_2 gnd 2.080806f +C3 g4662_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4662_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +R21 g4662_2 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +R24 22 g4662_1 2.224404 +.ends + +.subckt netg2635 g2635_0 g2635_1 g2635_2 gnd +C1 g2635_0 gnd 2.080806f +C2 g2635_1 gnd 2.080806f +C3 g2635_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2635_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2635_2 2.224404 +C6 3 gnd 2.080806f +R4 g2635_2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +R24 22 g2635_1 2.224404 +.ends + +.subckt netg7260 g7260_2 g7260_0 g7260_1 gnd +C1 g7260_2 gnd 2.080806f +C2 g7260_0 gnd 2.080806f +C3 g7260_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7260_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g7260_1 4 2.224404 +C8 5 gnd 2.080806f +R6 g7260_1 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +R26 g7260_2 24 2.224404 +.ends + +.subckt netg2546 g2546_0 g2546_2 g2546_1 gnd +C1 g2546_0 gnd 2.080806f +C2 g2546_2 gnd 2.080806f +C3 g2546_1 gnd 2.080806f +R1 g2546_1 g2546_0 2.224404 +C4 1 gnd 2.080806f +R2 1 g2546_1 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +R24 g2546_2 22 2.224404 +.ends + +.subckt netg712 g712_3 g712_1 g712_0 g712_2 gnd +C1 g712_3 gnd 2.080806f +C2 g712_1 gnd 2.080806f +C3 g712_0 gnd 2.080806f +C4 g712_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g712_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g712_3 3 2.224404 +C8 4 gnd 2.080806f +R5 4 g712_3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 19 18 2.224404 +C24 20 gnd 2.080806f +R21 20 19 2.224404 +C25 21 gnd 2.080806f +R22 21 20 2.224404 +R23 g712_2 21 2.224404 +R24 g712_1 g712_2 2.224404 +.ends + +.subckt netg1905 g1905_1 g1905_0 gnd +C1 g1905_1 gnd 2.080806f +C2 g1905_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1905_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +R24 g1905_1 23 2.224404 +.ends + +.subckt netg21 g21_0 g21_1 gnd +C1 g21_0 gnd 2.080806f +C2 g21_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g21_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +R24 g21_1 23 2.224404 +.ends + +.subckt netg7493 g7493_1 g7493_0 gnd +C1 g7493_1 gnd 2.080806f +C2 g7493_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7493_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +R24 23 g7493_1 2.224404 +.ends + +.subckt netg139 g139_1 g139_0 gnd +C1 g139_1 gnd 2.080806f +C2 g139_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g139_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g139_1 2.224404 +.ends + +.subckt netg2107 g2107_3 g2107_1 g2107_0 g2107_2 gnd +C1 g2107_3 gnd 2.080806f +C2 g2107_1 gnd 2.080806f +C3 g2107_0 gnd 2.080806f +C4 g2107_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2107_0 1 2.224404 +R2 g2107_1 1 2.224404 +C6 2 gnd 2.080806f +R3 1 2 2.224404 +C7 3 gnd 2.080806f +R4 2 3 2.224404 +C8 4 gnd 2.080806f +R5 3 4 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 16 17 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +R22 20 g2107_2 2.224404 +C25 21 gnd 2.080806f +R23 g2107_2 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +R25 22 g2107_3 2.224404 +.ends + +.subckt netg1904 g1904_1 g1904_0 gnd +C1 g1904_1 gnd 2.080806f +C2 g1904_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1904_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +R25 g1904_1 24 2.224404 +.ends + +.subckt netg5968 g5968_0 g5968_1 gnd +C1 g5968_0 gnd 2.080806f +C2 g5968_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5968_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g5968_1 2.224404 +.ends + +.subckt netg1782 g1782_3 g1782_1 g1782_0 g1782_2 gnd +C1 g1782_3 gnd 2.080806f +C2 g1782_1 gnd 2.080806f +C3 g1782_0 gnd 2.080806f +C4 g1782_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1782_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 7 8 2.224404 +C13 9 gnd 2.080806f +R9 8 9 2.224404 +C14 10 gnd 2.080806f +R10 9 10 2.224404 +C15 11 gnd 2.080806f +R11 10 11 2.224404 +C16 12 gnd 2.080806f +R12 11 12 2.224404 +C17 13 gnd 2.080806f +R13 12 13 2.224404 +C18 14 gnd 2.080806f +R14 13 14 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 15 16 2.224404 +C21 17 gnd 2.080806f +R17 16 17 2.224404 +C22 18 gnd 2.080806f +R18 17 18 2.224404 +C23 19 gnd 2.080806f +R19 18 19 2.224404 +C24 20 gnd 2.080806f +R20 19 20 2.224404 +C25 21 gnd 2.080806f +R21 20 21 2.224404 +C26 22 gnd 2.080806f +R22 21 22 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +R24 23 g1782_3 2.224404 +C28 24 gnd 2.080806f +R25 24 g1782_3 2.224404 +C29 25 gnd 2.080806f +R26 25 24 2.224404 +R27 25 g1782_2 2.224404 +C30 26 gnd 2.080806f +R28 26 g1782_2 2.224404 +R29 g1782_1 26 2.224404 +.ends + +.subckt netg4784 g4784_3 g4784_2 g4784_4 g4784_1 g4784_6 g4784_5 g4784_0 gnd +C1 g4784_3 gnd 2.080806f +C2 g4784_2 gnd 2.080806f +C3 g4784_4 gnd 2.080806f +C4 g4784_1 gnd 2.080806f +C5 g4784_6 gnd 2.080806f +C6 g4784_5 gnd 2.080806f +C7 g4784_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g4784_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g4784_1 2 2.224404 +C10 3 gnd 2.080806f +R4 g4784_1 3 2.224404 +R5 g4784_5 3 2.224404 +C11 4 gnd 2.080806f +R6 4 1 2.224404 +C12 5 gnd 2.080806f +R7 5 4 2.224404 +C13 6 gnd 2.080806f +R8 6 5 2.224404 +R9 6 g4784_6 2.224404 +C14 7 gnd 2.080806f +R10 7 g4784_6 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +C16 9 gnd 2.080806f +R12 8 9 2.224404 +R13 9 g4784_2 2.224404 +C17 10 gnd 2.080806f +R14 10 8 2.224404 +R15 g4784_4 10 2.224404 +C18 11 gnd 2.080806f +R16 11 g4784_5 2.224404 +C19 12 gnd 2.080806f +R17 12 11 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +C21 14 gnd 2.080806f +R19 14 13 2.224404 +C22 15 gnd 2.080806f +R20 15 14 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 17 16 2.224404 +C25 18 gnd 2.080806f +R23 18 17 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 20 19 2.224404 +C28 21 gnd 2.080806f +R26 21 20 2.224404 +R27 g4784_3 21 2.224404 +.ends + +.subckt netg7496 g7496_1 g7496_0 gnd +C1 g7496_1 gnd 2.080806f +C2 g7496_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7496_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +R25 g7496_1 24 2.224404 +.ends + +.subckt netg1628 g1628_1 g1628_0 g1628_2 g1628_3 gnd +C1 g1628_1 gnd 2.080806f +C2 g1628_0 gnd 2.080806f +C3 g1628_2 gnd 2.080806f +C4 g1628_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1628_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1628_1 5 2.224404 +C10 6 gnd 2.080806f +R7 4 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +R14 12 g1628_2 2.224404 +C17 13 gnd 2.080806f +R15 13 1 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +C30 26 gnd 2.080806f +R28 26 25 2.224404 +C31 27 gnd 2.080806f +R29 27 26 2.224404 +R30 27 g1628_3 2.224404 +.ends + +.subckt netg1828 g1828_2 g1828_1 g1828_0 g1828_3 gnd +C1 g1828_2 gnd 2.080806f +C2 g1828_1 gnd 2.080806f +C3 g1828_0 gnd 2.080806f +C4 g1828_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1828_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1828_1 7 2.224404 +C12 8 gnd 2.080806f +R9 8 g1828_1 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +R15 g1828_3 13 2.224404 +C18 14 gnd 2.080806f +R16 g1828_0 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +R27 24 g1828_2 2.224404 +.ends + +.subckt netg6234 g6234_0 g6234_1 g6234_2 gnd +C1 g6234_0 gnd 2.080806f +C2 g6234_1 gnd 2.080806f +C3 g6234_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6234_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +R21 g6234_1 20 2.224404 +C24 21 gnd 2.080806f +R22 g6234_1 21 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +R25 g6234_2 23 2.224404 +.ends + +.subckt netg7494 g7494_1 g7494_0 gnd +C1 g7494_1 gnd 2.080806f +C2 g7494_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7494_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +R25 g7494_1 24 2.224404 +.ends + +.subckt netg721 g721_3 g721_0 g721_5 g721_1 g721_2 g721_4 gnd +C1 g721_3 gnd 2.080806f +C2 g721_0 gnd 2.080806f +C3 g721_5 gnd 2.080806f +C4 g721_1 gnd 2.080806f +C5 g721_2 gnd 2.080806f +C6 g721_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g721_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g721_4 2.224404 +C9 3 gnd 2.080806f +R4 3 g721_0 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +C17 11 gnd 2.080806f +R12 11 10 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +C19 13 gnd 2.080806f +R14 12 13 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +R16 g721_2 14 2.224404 +C21 15 gnd 2.080806f +R17 15 g721_2 2.224404 +C22 16 gnd 2.080806f +R18 16 15 2.224404 +C23 17 gnd 2.080806f +R19 17 16 2.224404 +C24 18 gnd 2.080806f +R20 18 17 2.224404 +C25 19 gnd 2.080806f +R21 19 18 2.224404 +C26 20 gnd 2.080806f +R22 20 19 2.224404 +C27 21 gnd 2.080806f +R23 21 20 2.224404 +C28 22 gnd 2.080806f +R24 22 21 2.224404 +C29 23 gnd 2.080806f +R25 23 22 2.224404 +R26 23 g721_5 2.224404 +C30 24 gnd 2.080806f +R27 24 g721_5 2.224404 +R28 g721_3 24 2.224404 +R29 g721_1 g721_3 2.224404 +.ends + +.subckt netg3294 g3294_0 g3294_2 g3294_1 gnd +C1 g3294_0 gnd 2.080806f +C2 g3294_2 gnd 2.080806f +C3 g3294_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3294_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +R16 15 g3294_2 2.224404 +C19 16 gnd 2.080806f +R17 g3294_2 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +R29 27 g3294_1 2.224404 +.ends + +.subckt netg43 g43_0 g43_1 gnd +C1 g43_0 gnd 2.080806f +C2 g43_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g43_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g43_1 2.224404 +.ends + +.subckt netg5185 g5185_2 g5185_1 g5185_0 gnd +C1 g5185_2 gnd 2.080806f +C2 g5185_1 gnd 2.080806f +C3 g5185_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5185_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5185_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g5185_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +R26 g5185_2 24 2.224404 +.ends + +.subckt netg3956 g3956_3 g3956_2 g3956_0 g3956_4 gnd +C1 g3956_3 gnd 2.080806f +C2 g3956_2 gnd 2.080806f +C3 g3956_0 gnd 2.080806f +C4 g3956_4 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g3956_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g3956_4 2.224404 +R5 g3956_3 3 2.224404 +C8 4 gnd 2.080806f +R6 4 g3956_0 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +C30 26 gnd 2.080806f +R28 26 25 2.224404 +C31 27 gnd 2.080806f +R29 27 26 2.224404 +R30 g3956_2 27 2.224404 +.ends + +.subckt netg512 g512_4 g512_3 g512_1 g512_0 gnd +C1 g512_4 gnd 2.080806f +C2 g512_3 gnd 2.080806f +C3 g512_1 gnd 2.080806f +C4 g512_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g512_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g512_1 2.224404 +C7 3 gnd 2.080806f +R4 3 1 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +R13 g512_3 11 2.224404 +C16 12 gnd 2.080806f +R14 g512_1 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +R26 23 g512_4 2.224404 +.ends + +.subckt netg7507 g7507_1 g7507_0 gnd +C1 g7507_1 gnd 2.080806f +C2 g7507_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7507_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g7507_1 2.224404 +.ends + +.subckt netg42 g42_1 g42_0 gnd +C1 g42_1 gnd 2.080806f +C2 g42_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g42_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +R26 g42_1 25 2.224404 +.ends + +.subckt netg7548 g7548_0 g7548_1 gnd +C1 g7548_0 gnd 2.080806f +C2 g7548_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7548_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +R26 25 g7548_1 2.224404 +.ends + +.subckt netg2111 g2111_3 g2111_0 g2111_2 g2111_1 gnd +C1 g2111_3 gnd 2.080806f +C2 g2111_0 gnd 2.080806f +C3 g2111_2 gnd 2.080806f +C4 g2111_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2111_0 1 2.224404 +R2 g2111_2 1 2.224404 +C6 2 gnd 2.080806f +R3 2 g2111_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +R5 3 g2111_3 2.224404 +C8 4 gnd 2.080806f +R6 1 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +R27 24 g2111_1 2.224404 +.ends + +.subckt netg55 g55_1 g55_0 gnd +C1 g55_1 gnd 2.080806f +C2 g55_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g55_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +R26 g55_1 25 2.224404 +.ends + +.subckt netg1862 g1862_2 g1862_1 g1862_0 gnd +C1 g1862_2 gnd 2.080806f +C2 g1862_1 gnd 2.080806f +C3 g1862_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1862_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g1862_1 2.224404 +R26 g1862_1 g1862_2 2.224404 +.ends + +.subckt netg101 g101_0 g101_1 gnd +C1 g101_0 gnd 2.080806f +C2 g101_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g101_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +R26 g101_1 25 2.224404 +.ends + +.subckt netg3950 g3950_5 g3950_1 g3950_4 g3950_2 g3950_3 g3950_0 gnd +C1 g3950_5 gnd 2.080806f +C2 g3950_1 gnd 2.080806f +C3 g3950_4 gnd 2.080806f +C4 g3950_2 gnd 2.080806f +C5 g3950_3 gnd 2.080806f +C6 g3950_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g3950_0 2.224404 +R2 g3950_5 1 2.224404 +C8 2 gnd 2.080806f +R3 g3950_5 2 2.224404 +R4 2 g3950_2 2.224404 +C9 3 gnd 2.080806f +R5 3 g3950_5 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +C11 5 gnd 2.080806f +R7 5 4 2.224404 +C12 6 gnd 2.080806f +R8 6 5 2.224404 +C13 7 gnd 2.080806f +R9 7 6 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +C15 9 gnd 2.080806f +R11 9 8 2.224404 +C16 10 gnd 2.080806f +R12 10 9 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +R14 g3950_1 11 2.224404 +R15 g3950_3 g3950_1 2.224404 +C18 12 gnd 2.080806f +R16 12 g3950_3 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 15 14 2.224404 +C22 16 gnd 2.080806f +R20 16 15 2.224404 +C23 17 gnd 2.080806f +R21 17 16 2.224404 +C24 18 gnd 2.080806f +R22 18 17 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 21 20 2.224404 +C28 22 gnd 2.080806f +R26 22 21 2.224404 +C29 23 gnd 2.080806f +R27 23 22 2.224404 +C30 24 gnd 2.080806f +R28 24 23 2.224404 +R29 g3950_4 24 2.224404 +.ends + +.subckt netg1118 g1118_0 g1118_1 gnd +C1 g1118_0 gnd 2.080806f +C2 g1118_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g1118_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +R26 g1118_1 25 2.224404 +.ends + +.subckt netg640 g640_0 g640_3 g640_5 g640_1 g640_2 g640_4 gnd +C1 g640_0 gnd 2.080806f +C2 g640_3 gnd 2.080806f +C3 g640_5 gnd 2.080806f +C4 g640_1 gnd 2.080806f +C5 g640_2 gnd 2.080806f +C6 g640_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g640_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g640_1 2.224404 +C10 4 gnd 2.080806f +R5 1 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g640_3 2.224404 +C12 6 gnd 2.080806f +R8 g640_3 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +R12 g640_2 9 2.224404 +C16 10 gnd 2.080806f +R13 10 g640_2 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 13 12 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 16 15 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 19 18 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +R24 g640_5 20 2.224404 +C27 21 gnd 2.080806f +R25 g640_5 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +R27 22 g640_4 2.224404 +.ends + +.subckt netg7552 g7552_1 g7552_0 gnd +C1 g7552_1 gnd 2.080806f +C2 g7552_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7552_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +R26 25 g7552_1 2.224404 +.ends + +.subckt netg48 g48_0 g48_1 gnd +C1 g48_0 gnd 2.080806f +C2 g48_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g48_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +R26 25 g48_1 2.224404 +.ends + +.subckt netg111 g111_0 g111_1 gnd +C1 g111_0 gnd 2.080806f +C2 g111_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g111_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +R26 25 g111_1 2.224404 +.ends + +.subckt netg1178 g1178_6 g1178_3 g1178_4 g1178_0 g1178_5 g1178_2 g1178_1 gnd +C1 g1178_6 gnd 2.080806f +C2 g1178_3 gnd 2.080806f +C3 g1178_4 gnd 2.080806f +C4 g1178_0 gnd 2.080806f +C5 g1178_5 gnd 2.080806f +C6 g1178_2 gnd 2.080806f +C7 g1178_1 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g1178_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1178_1 2 2.224404 +C10 3 gnd 2.080806f +R4 3 1 2.224404 +C11 4 gnd 2.080806f +R5 4 3 2.224404 +R6 g1178_4 4 2.224404 +C12 5 gnd 2.080806f +R7 g1178_1 5 2.224404 +C13 6 gnd 2.080806f +R8 6 5 2.224404 +C14 7 gnd 2.080806f +R9 6 7 2.224404 +R10 g1178_6 7 2.224404 +C15 8 gnd 2.080806f +R11 5 8 2.224404 +C16 9 gnd 2.080806f +R12 8 9 2.224404 +C17 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g1178_3 2.224404 +C18 11 gnd 2.080806f +R15 g1178_6 11 2.224404 +C19 12 gnd 2.080806f +R16 12 11 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +C21 14 gnd 2.080806f +R18 13 14 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 16 15 2.224404 +C24 17 gnd 2.080806f +R21 16 17 2.224404 +R22 g1178_2 17 2.224404 +C25 18 gnd 2.080806f +R23 18 g1178_6 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 20 19 2.224404 +C28 21 gnd 2.080806f +R26 21 20 2.224404 +C29 22 gnd 2.080806f +R27 22 21 2.224404 +C30 23 gnd 2.080806f +R28 22 23 2.224404 +C31 24 gnd 2.080806f +R29 24 23 2.224404 +C32 25 gnd 2.080806f +R30 25 24 2.224404 +C33 26 gnd 2.080806f +R31 26 25 2.224404 +C34 27 gnd 2.080806f +R32 27 26 2.224404 +C35 28 gnd 2.080806f +R33 28 27 2.224404 +C36 29 gnd 2.080806f +R34 29 28 2.224404 +C37 30 gnd 2.080806f +R35 30 29 2.224404 +R36 30 g1178_5 2.224404 +.ends + +.subckt netg96 g96_0 g96_1 gnd +C1 g96_0 gnd 2.080806f +C2 g96_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g96_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +R26 25 g96_1 2.224404 +.ends + +.subckt netg2389 g2389_2 g2389_1 g2389_0 gnd +C1 g2389_2 gnd 2.080806f +C2 g2389_1 gnd 2.080806f +C3 g2389_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2389_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2389_2 2 2.224404 +C6 3 gnd 2.080806f +R4 g2389_2 3 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +R26 g2389_1 24 2.224404 +.ends + +.subckt netg2288 g2288_1 g2288_3 g2288_0 g2288_2 gnd +C1 g2288_1 gnd 2.080806f +C2 g2288_3 gnd 2.080806f +C3 g2288_0 gnd 2.080806f +C4 g2288_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2288_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2288_3 2.224404 +C8 4 gnd 2.080806f +R5 4 g2288_0 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +R13 g2288_1 11 2.224404 +C16 12 gnd 2.080806f +R14 12 g2288_1 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +R26 g2288_2 23 2.224404 +.ends + +.subckt netg1824 g1824_0 g1824_1 g1824_2 g1824_3 gnd +C1 g1824_0 gnd 2.080806f +C2 g1824_1 gnd 2.080806f +C3 g1824_2 gnd 2.080806f +C4 g1824_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1824_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +R7 6 g1824_2 2.224404 +C11 7 gnd 2.080806f +R8 g1824_2 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +R17 15 g1824_3 2.224404 +C20 16 gnd 2.080806f +R18 g1824_3 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 24 25 2.224404 +C30 26 gnd 2.080806f +R28 25 26 2.224404 +R29 26 g1824_1 2.224404 +.ends + +.subckt netg135 g135_0 g135_1 gnd +C1 g135_0 gnd 2.080806f +C2 g135_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g135_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +R27 26 g135_1 2.224404 +.ends + +.subckt netg5830 g5830_0 g5830_2 g5830_1 gnd +C1 g5830_0 gnd 2.080806f +C2 g5830_2 gnd 2.080806f +C3 g5830_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5830_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g5830_2 2.224404 +C6 3 gnd 2.080806f +R4 g5830_2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +R27 25 g5830_1 2.224404 +.ends + +.subckt netg88 g88_1 g88_0 gnd +C1 g88_1 gnd 2.080806f +C2 g88_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g88_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +R27 g88_1 26 2.224404 +.ends + +.subckt netg2641 g2641_2 g2641_0 g2641_1 gnd +C1 g2641_2 gnd 2.080806f +C2 g2641_0 gnd 2.080806f +C3 g2641_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g2641_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2641_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g2641_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +R27 g2641_1 25 2.224404 +.ends + +.subckt netg5302 g5302_5 g5302_3 g5302_6 g5302_4 g5302_2 g5302_1 g5302_0 gnd +C1 g5302_5 gnd 2.080806f +C2 g5302_3 gnd 2.080806f +C3 g5302_6 gnd 2.080806f +C4 g5302_4 gnd 2.080806f +C5 g5302_2 gnd 2.080806f +C6 g5302_1 gnd 2.080806f +C7 g5302_0 gnd 2.080806f +R1 g5302_4 g5302_0 2.224404 +R2 g5302_3 g5302_4 2.224404 +C8 1 gnd 2.080806f +R3 1 g5302_3 2.224404 +C9 2 gnd 2.080806f +R4 2 1 2.224404 +R5 g5302_5 2 2.224404 +C10 3 gnd 2.080806f +R6 3 g5302_5 2.224404 +C11 4 gnd 2.080806f +R7 4 3 2.224404 +R8 g5302_6 4 2.224404 +C12 5 gnd 2.080806f +R9 5 g5302_6 2.224404 +R10 g5302_1 5 2.224404 +C13 6 gnd 2.080806f +R11 6 g5302_1 2.224404 +C14 7 gnd 2.080806f +R12 7 6 2.224404 +C15 8 gnd 2.080806f +R13 8 7 2.224404 +C16 9 gnd 2.080806f +R14 8 9 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 11 10 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +C20 13 gnd 2.080806f +R18 13 12 2.224404 +C21 14 gnd 2.080806f +R19 14 13 2.224404 +C22 15 gnd 2.080806f +R20 14 15 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 17 16 2.224404 +C25 18 gnd 2.080806f +R23 17 18 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 20 19 2.224404 +C28 21 gnd 2.080806f +R26 21 20 2.224404 +C29 22 gnd 2.080806f +R27 22 21 2.224404 +R28 g5302_2 22 2.224404 +.ends + +.subckt netg136 g136_0 g136_1 gnd +C1 g136_0 gnd 2.080806f +C2 g136_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g136_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +R27 g136_1 26 2.224404 +.ends + +.subckt netg2692 g2692_1 g2692_2 gnd +C1 g2692_1 gnd 2.080806f +C2 g2692_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2692_2 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +R29 g2692_1 28 2.224404 +.ends + +.subckt netg3366 g3366_0 g3366_1 gnd +C1 g3366_0 gnd 2.080806f +C2 g3366_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g3366_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +R29 g3366_1 28 2.224404 +.ends + +.subckt netg7545 g7545_1 g7545_0 gnd +C1 g7545_1 gnd 2.080806f +C2 g7545_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7545_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +R27 26 g7545_1 2.224404 +.ends + +.subckt netg140 g140_1 g140_0 gnd +C1 g140_1 gnd 2.080806f +C2 g140_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g140_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +R27 26 g140_1 2.224404 +.ends + +.subckt netg1954 g1954_2 g1954_0 g1954_1 gnd +C1 g1954_2 gnd 2.080806f +C2 g1954_0 gnd 2.080806f +C3 g1954_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g1954_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +R27 g1954_2 26 2.224404 +R28 g1954_1 g1954_2 2.224404 +.ends + +.subckt netg6564 g6564_0 g6564_1 gnd +C1 g6564_0 gnd 2.080806f +C2 g6564_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6564_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +R28 g6564_1 27 2.224404 +.ends + +.subckt netg7547 g7547_1 g7547_0 gnd +C1 g7547_1 gnd 2.080806f +C2 g7547_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7547_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +R28 27 g7547_1 2.224404 +.ends + +.subckt netg7546 g7546_1 g7546_0 gnd +C1 g7546_1 gnd 2.080806f +C2 g7546_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7546_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +R28 g7546_1 27 2.224404 +.ends + +.subckt netg142 g142_1 g142_0 gnd +C1 g142_1 gnd 2.080806f +C2 g142_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g142_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +R28 27 g142_1 2.224404 +.ends + +.subckt netg5569 g5569_1 g5569_0 g5569_2 gnd +C1 g5569_1 gnd 2.080806f +C2 g5569_0 gnd 2.080806f +C3 g5569_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5569_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +R27 26 g5569_1 2.224404 +R28 g5569_1 g5569_2 2.224404 +.ends + +.subckt netg501 g501_2 g501_4 g501_1 g501_3 g501_5 gnd +C1 g501_2 gnd 2.080806f +C2 g501_4 gnd 2.080806f +C3 g501_1 gnd 2.080806f +C4 g501_3 gnd 2.080806f +C5 g501_5 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g501_5 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +C9 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g501_2 4 2.224404 +C10 5 gnd 2.080806f +R6 g501_5 5 2.224404 +C11 6 gnd 2.080806f +R7 5 6 2.224404 +C12 7 gnd 2.080806f +R8 6 7 2.224404 +C13 8 gnd 2.080806f +R9 7 8 2.224404 +C14 9 gnd 2.080806f +R10 8 9 2.224404 +C15 10 gnd 2.080806f +R11 9 10 2.224404 +C16 11 gnd 2.080806f +R12 10 11 2.224404 +C17 12 gnd 2.080806f +R13 11 12 2.224404 +C18 13 gnd 2.080806f +R14 12 13 2.224404 +C19 14 gnd 2.080806f +R15 13 14 2.224404 +C20 15 gnd 2.080806f +R16 14 15 2.224404 +C21 16 gnd 2.080806f +R17 15 16 2.224404 +R18 16 g501_1 2.224404 +C22 17 gnd 2.080806f +R19 17 16 2.224404 +C23 18 gnd 2.080806f +R20 18 17 2.224404 +C24 19 gnd 2.080806f +R21 19 18 2.224404 +C25 20 gnd 2.080806f +R22 20 19 2.224404 +C26 21 gnd 2.080806f +R23 21 20 2.224404 +C27 22 gnd 2.080806f +R24 22 21 2.224404 +C28 23 gnd 2.080806f +R25 23 22 2.224404 +C29 24 gnd 2.080806f +R26 24 23 2.224404 +C30 25 gnd 2.080806f +R27 25 24 2.224404 +C31 26 gnd 2.080806f +R28 26 25 2.224404 +C32 27 gnd 2.080806f +R29 27 26 2.224404 +R30 g501_3 27 2.224404 +C33 28 gnd 2.080806f +R31 28 27 2.224404 +C34 29 gnd 2.080806f +R32 29 28 2.224404 +C35 30 gnd 2.080806f +R33 29 30 2.224404 +C36 31 gnd 2.080806f +R34 30 31 2.224404 +C37 32 gnd 2.080806f +R35 31 32 2.224404 +C38 33 gnd 2.080806f +R36 32 33 2.224404 +C39 34 gnd 2.080806f +R37 33 34 2.224404 +C40 35 gnd 2.080806f +R38 34 35 2.224404 +R39 35 g501_4 2.224404 +.ends + +.subckt netg33 g33_1 g33_0 gnd +C1 g33_1 gnd 2.080806f +C2 g33_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g33_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +R28 27 g33_1 2.224404 +.ends + +.subckt netg39 g39_0 g39_1 gnd +C1 g39_0 gnd 2.080806f +C2 g39_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g39_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +R28 27 g39_1 2.224404 +.ends + +.subckt netg137 g137_0 g137_1 gnd +C1 g137_0 gnd 2.080806f +C2 g137_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g137_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +R28 g137_1 27 2.224404 +.ends + +.subckt netg2292 g2292_3 g2292_1 g2292_2 g2292_0 gnd +C1 g2292_3 gnd 2.080806f +C2 g2292_1 gnd 2.080806f +C3 g2292_2 gnd 2.080806f +C4 g2292_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2292_0 1 2.224404 +R2 1 g2292_1 2.224404 +C6 2 gnd 2.080806f +R3 2 g2292_0 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g2292_3 9 2.224404 +C14 10 gnd 2.080806f +R12 10 g2292_3 2.224404 +C15 11 gnd 2.080806f +R13 11 10 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +R28 g2292_2 25 2.224404 +.ends + +.subckt netg6214 g6214_1 g6214_2 g6214_0 gnd +C1 g6214_1 gnd 2.080806f +C2 g6214_2 gnd 2.080806f +C3 g6214_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6214_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 3 g6214_2 2.224404 +C7 4 gnd 2.080806f +R5 4 1 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +R28 g6214_1 26 2.224404 +.ends + +.subckt netg60 g60_1 g60_0 gnd +C1 g60_1 gnd 2.080806f +C2 g60_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g60_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +R28 g60_1 27 2.224404 +.ends + +.subckt netg538 g538_4 g538_2 g538_1 g538_3 g538_5 gnd +C1 g538_4 gnd 2.080806f +C2 g538_2 gnd 2.080806f +C3 g538_1 gnd 2.080806f +C4 g538_3 gnd 2.080806f +C5 g538_5 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g538_3 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 2 3 2.224404 +C9 4 gnd 2.080806f +R4 3 4 2.224404 +C10 5 gnd 2.080806f +R5 4 5 2.224404 +C11 6 gnd 2.080806f +R6 5 6 2.224404 +C12 7 gnd 2.080806f +R7 6 7 2.224404 +C13 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g538_4 2.224404 +C14 9 gnd 2.080806f +R10 9 g538_4 2.224404 +C15 10 gnd 2.080806f +R11 10 9 2.224404 +C16 11 gnd 2.080806f +R12 10 11 2.224404 +C17 12 gnd 2.080806f +R13 11 12 2.224404 +R14 12 g538_2 2.224404 +C18 13 gnd 2.080806f +R15 g538_2 13 2.224404 +C19 14 gnd 2.080806f +R16 13 14 2.224404 +C20 15 gnd 2.080806f +R17 14 15 2.224404 +C21 16 gnd 2.080806f +R18 15 16 2.224404 +C22 17 gnd 2.080806f +R19 16 17 2.224404 +C23 18 gnd 2.080806f +R20 17 18 2.224404 +C24 19 gnd 2.080806f +R21 18 19 2.224404 +C25 20 gnd 2.080806f +R22 19 20 2.224404 +C26 21 gnd 2.080806f +R23 20 21 2.224404 +C27 22 gnd 2.080806f +R24 21 22 2.224404 +C28 23 gnd 2.080806f +R25 22 23 2.224404 +C29 24 gnd 2.080806f +R26 23 24 2.224404 +C30 25 gnd 2.080806f +R27 24 25 2.224404 +R28 25 g538_5 2.224404 +C31 26 gnd 2.080806f +R29 g538_5 26 2.224404 +C32 27 gnd 2.080806f +R30 26 27 2.224404 +C33 28 gnd 2.080806f +R31 27 28 2.224404 +C34 29 gnd 2.080806f +R32 28 29 2.224404 +C35 30 gnd 2.080806f +R33 29 30 2.224404 +C36 31 gnd 2.080806f +R34 31 30 2.224404 +R35 g538_1 31 2.224404 +.ends + +.subckt netg3601 g3601_9 g3601_8 g3601_7 g3601_15 g3601_4 g3601_14 g3601_12 g3601_2 g3601_5 g3601_11 g3601_10 g3601_0 g3601_3 g3601_1 g3601_13 g3601_6 gnd +C1 g3601_9 gnd 2.080806f +C2 g3601_8 gnd 2.080806f +C3 g3601_7 gnd 2.080806f +C4 g3601_15 gnd 2.080806f +C5 g3601_4 gnd 2.080806f +C6 g3601_14 gnd 2.080806f +C7 g3601_12 gnd 2.080806f +C8 g3601_2 gnd 2.080806f +C9 g3601_5 gnd 2.080806f +C10 g3601_11 gnd 2.080806f +C11 g3601_10 gnd 2.080806f +C12 g3601_0 gnd 2.080806f +C13 g3601_3 gnd 2.080806f +C14 g3601_1 gnd 2.080806f +C15 g3601_13 gnd 2.080806f +C16 g3601_6 gnd 2.080806f +C17 1 gnd 2.080806f +R1 g3601_0 1 2.224404 +C18 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g3601_8 2.224404 +R4 g3601_8 g3601_13 2.224404 +C19 3 gnd 2.080806f +R5 3 g3601_8 2.224404 +R6 g3601_11 3 2.224404 +R7 g3601_11 g3601_3 2.224404 +C20 4 gnd 2.080806f +R8 4 g3601_11 2.224404 +R9 g3601_6 4 2.224404 +C21 5 gnd 2.080806f +R10 5 g3601_13 2.224404 +C22 6 gnd 2.080806f +R11 5 6 2.224404 +R12 6 g3601_4 2.224404 +C23 7 gnd 2.080806f +R13 7 g3601_4 2.224404 +R14 7 g3601_10 2.224404 +C24 8 gnd 2.080806f +R15 8 g3601_0 2.224404 +C25 9 gnd 2.080806f +R16 9 8 2.224404 +C26 10 gnd 2.080806f +R17 10 9 2.224404 +R18 g3601_7 10 2.224404 +C27 11 gnd 2.080806f +R19 g3601_8 11 2.224404 +C28 12 gnd 2.080806f +R20 11 12 2.224404 +C29 13 gnd 2.080806f +R21 12 13 2.224404 +R22 13 g3601_2 2.224404 +R23 g3601_9 g3601_2 2.224404 +R24 g3601_2 g3601_14 2.224404 +C30 14 gnd 2.080806f +R25 14 g3601_7 2.224404 +C31 15 gnd 2.080806f +R26 14 15 2.224404 +C32 16 gnd 2.080806f +R27 16 15 2.224404 +C33 17 gnd 2.080806f +R28 16 17 2.224404 +R29 g3601_5 17 2.224404 +C34 18 gnd 2.080806f +R30 18 g3601_5 2.224404 +C35 19 gnd 2.080806f +R31 19 18 2.224404 +C36 20 gnd 2.080806f +R32 20 19 2.224404 +C37 21 gnd 2.080806f +R33 21 20 2.224404 +C38 22 gnd 2.080806f +R34 21 22 2.224404 +R35 g3601_12 22 2.224404 +C39 23 gnd 2.080806f +R36 g3601_12 23 2.224404 +C40 24 gnd 2.080806f +R37 23 24 2.224404 +C41 25 gnd 2.080806f +R38 24 25 2.224404 +R39 g3601_15 25 2.224404 +C42 26 gnd 2.080806f +R40 18 26 2.224404 +C43 27 gnd 2.080806f +R41 26 27 2.224404 +C44 28 gnd 2.080806f +R42 27 28 2.224404 +C45 29 gnd 2.080806f +R43 28 29 2.224404 +C46 30 gnd 2.080806f +R44 29 30 2.224404 +C47 31 gnd 2.080806f +R45 30 31 2.224404 +R46 31 g3601_1 2.224404 +.ends + +.subckt netg2412 g2412_2 g2412_1 g2412_0 gnd +C1 g2412_2 gnd 2.080806f +C2 g2412_1 gnd 2.080806f +C3 g2412_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2412_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g2412_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g2412_1 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +R36 34 g2412_2 2.224404 +.ends + +.subckt netg7491 g7491_1 g7491_0 gnd +C1 g7491_1 gnd 2.080806f +C2 g7491_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7491_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +R28 g7491_1 27 2.224404 +.ends + +.subckt netg3361 g3361_2 g3361_1 g3361_0 gnd +C1 g3361_2 gnd 2.080806f +C2 g3361_1 gnd 2.080806f +C3 g3361_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g3361_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +R21 g3361_2 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +R35 33 g3361_1 2.224404 +.ends + +.subckt netg2188 g2188_0 g2188_2 g2188_1 g2188_3 g2188_5 g2188_4 gnd +C1 g2188_0 gnd 2.080806f +C2 g2188_2 gnd 2.080806f +C3 g2188_1 gnd 2.080806f +C4 g2188_3 gnd 2.080806f +C5 g2188_5 gnd 2.080806f +C6 g2188_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2188_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g2188_3 4 2.224404 +C11 5 gnd 2.080806f +R6 3 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g2188_5 2.224404 +C13 7 gnd 2.080806f +R9 g2188_5 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g2188_2 2.224404 +C18 12 gnd 2.080806f +R15 12 g2188_0 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 17 16 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +R22 g2188_1 18 2.224404 +C25 19 gnd 2.080806f +R23 g2188_2 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +R37 32 g2188_4 2.224404 +.ends + +.subckt netg4880 g4880_1 g4880_0 g4880_2 g4880_3 gnd +C1 g4880_1 gnd 2.080806f +C2 g4880_0 gnd 2.080806f +C3 g4880_2 gnd 2.080806f +C4 g4880_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4880_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g4880_3 3 2.224404 +R5 g4880_3 g4880_2 2.224404 +C8 4 gnd 2.080806f +R6 g4880_0 4 2.224404 +C9 5 gnd 2.080806f +R7 4 5 2.224404 +C10 6 gnd 2.080806f +R8 5 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 24 25 2.224404 +C30 26 gnd 2.080806f +R28 25 26 2.224404 +R29 26 g4880_1 2.224404 +.ends + +.subckt netg6067 g6067_0 g6067_1 gnd +C1 g6067_0 gnd 2.080806f +C2 g6067_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6067_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +R32 g6067_1 31 2.224404 +.ends + +.subckt netg1502 g1502_0 g1502_1 gnd +C1 g1502_0 gnd 2.080806f +C2 g1502_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g1502_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +R29 28 g1502_1 2.224404 +.ends + +.subckt netg40 g40_0 g40_1 gnd +C1 g40_0 gnd 2.080806f +C2 g40_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g40_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +R29 28 g40_1 2.224404 +.ends + +.subckt netg6406 g6406_0 g6406_1 gnd +C1 g6406_0 gnd 2.080806f +C2 g6406_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6406_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +R29 28 g6406_1 2.224404 +.ends + +.subckt netg4474 g4474_5 g4474_8 g4474_6 g4474_10 g4474_1 g4474_4 g4474_0 g4474_7 g4474_9 g4474_2 g4474_3 gnd +C1 g4474_5 gnd 2.080806f +C2 g4474_8 gnd 2.080806f +C3 g4474_6 gnd 2.080806f +C4 g4474_10 gnd 2.080806f +C5 g4474_1 gnd 2.080806f +C6 g4474_4 gnd 2.080806f +C7 g4474_0 gnd 2.080806f +C8 g4474_7 gnd 2.080806f +C9 g4474_9 gnd 2.080806f +C10 g4474_2 gnd 2.080806f +C11 g4474_3 gnd 2.080806f +C12 1 gnd 2.080806f +R1 1 g4474_0 2.224404 +C13 2 gnd 2.080806f +R2 2 1 2.224404 +C14 3 gnd 2.080806f +R3 3 2 2.224404 +C15 4 gnd 2.080806f +R4 4 3 2.224404 +C16 5 gnd 2.080806f +R5 5 4 2.224404 +C17 6 gnd 2.080806f +R6 6 5 2.224404 +C18 7 gnd 2.080806f +R7 7 6 2.224404 +C19 8 gnd 2.080806f +R8 8 7 2.224404 +C20 9 gnd 2.080806f +R9 9 8 2.224404 +C21 10 gnd 2.080806f +R10 10 9 2.224404 +C22 11 gnd 2.080806f +R11 11 10 2.224404 +C23 12 gnd 2.080806f +R12 12 11 2.224404 +C24 13 gnd 2.080806f +R13 13 12 2.224404 +C25 14 gnd 2.080806f +R14 14 13 2.224404 +C26 15 gnd 2.080806f +R15 15 14 2.224404 +R16 g4474_3 15 2.224404 +C27 16 gnd 2.080806f +R17 16 g4474_3 2.224404 +C28 17 gnd 2.080806f +R18 17 16 2.224404 +R19 g4474_5 17 2.224404 +R20 g4474_8 g4474_5 2.224404 +R21 g4474_9 g4474_8 2.224404 +R22 g4474_1 g4474_9 2.224404 +C29 18 gnd 2.080806f +R23 18 g4474_9 2.224404 +C30 19 gnd 2.080806f +R24 19 18 2.224404 +R25 g4474_10 19 2.224404 +C31 20 gnd 2.080806f +R26 20 g4474_1 2.224404 +C32 21 gnd 2.080806f +R27 21 20 2.224404 +R28 g4474_2 21 2.224404 +C33 22 gnd 2.080806f +R29 g4474_2 22 2.224404 +R30 g4474_4 22 2.224404 +C34 23 gnd 2.080806f +R31 23 g4474_4 2.224404 +C35 24 gnd 2.080806f +R32 23 24 2.224404 +R33 g4474_6 24 2.224404 +C36 25 gnd 2.080806f +R34 25 g4474_10 2.224404 +C37 26 gnd 2.080806f +R35 25 26 2.224404 +C38 27 gnd 2.080806f +R36 26 27 2.224404 +C39 28 gnd 2.080806f +R37 27 28 2.224404 +R38 28 g4474_7 2.224404 +.ends + +.subckt netg621 g621_2 g621_4 g621_6 g621_3 g621_1 g621_5 gnd +C1 g621_2 gnd 2.080806f +C2 g621_4 gnd 2.080806f +C3 g621_6 gnd 2.080806f +C4 g621_3 gnd 2.080806f +C5 g621_1 gnd 2.080806f +C6 g621_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g621_1 2.224404 +R2 g621_4 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g621_4 2.224404 +R4 g621_5 2 2.224404 +C9 3 gnd 2.080806f +R5 3 g621_5 2.224404 +C10 4 gnd 2.080806f +R6 4 3 2.224404 +R7 g621_2 4 2.224404 +C11 5 gnd 2.080806f +R8 3 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g621_6 2.224404 +C17 11 gnd 2.080806f +R15 g621_6 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 25 24 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +R31 g621_3 26 2.224404 +.ends + +.subckt netg57 g57_1 g57_0 gnd +C1 g57_1 gnd 2.080806f +C2 g57_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g57_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +R29 g57_1 28 2.224404 +.ends + +.subckt netg122 g122_1 g122_0 gnd +C1 g122_1 gnd 2.080806f +C2 g122_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g122_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +R30 g122_1 29 2.224404 +.ends + +.subckt netg7492 g7492_0 g7492_1 gnd +C1 g7492_0 gnd 2.080806f +C2 g7492_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7492_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +R30 g7492_1 29 2.224404 +.ends + +.subckt netg1185 g1185_6 g1185_5 g1185_1 g1185_4 g1185_2 g1185_3 g1185_0 gnd +C1 g1185_6 gnd 2.080806f +C2 g1185_5 gnd 2.080806f +C3 g1185_1 gnd 2.080806f +C4 g1185_4 gnd 2.080806f +C5 g1185_2 gnd 2.080806f +C6 g1185_3 gnd 2.080806f +C7 g1185_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g1185_0 2.224404 +R2 g1185_2 1 2.224404 +C9 2 gnd 2.080806f +R3 g1185_0 2 2.224404 +C10 3 gnd 2.080806f +R4 2 3 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +C13 6 gnd 2.080806f +R7 5 6 2.224404 +C14 7 gnd 2.080806f +R8 6 7 2.224404 +C15 8 gnd 2.080806f +R9 7 8 2.224404 +R10 8 g1185_4 2.224404 +C16 9 gnd 2.080806f +R11 g1185_4 9 2.224404 +C17 10 gnd 2.080806f +R12 9 10 2.224404 +C18 11 gnd 2.080806f +R13 10 11 2.224404 +C19 12 gnd 2.080806f +R14 11 12 2.224404 +C20 13 gnd 2.080806f +R15 12 13 2.224404 +C21 14 gnd 2.080806f +R16 13 14 2.224404 +C22 15 gnd 2.080806f +R17 14 15 2.224404 +C23 16 gnd 2.080806f +R18 15 16 2.224404 +C24 17 gnd 2.080806f +R19 16 17 2.224404 +C25 18 gnd 2.080806f +R20 17 18 2.224404 +R21 18 g1185_6 2.224404 +C26 19 gnd 2.080806f +R22 g1185_6 19 2.224404 +C27 20 gnd 2.080806f +R23 19 20 2.224404 +C28 21 gnd 2.080806f +R24 20 21 2.224404 +R25 21 g1185_5 2.224404 +C29 22 gnd 2.080806f +R26 22 g1185_5 2.224404 +C30 23 gnd 2.080806f +R27 23 22 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +R29 g1185_3 24 2.224404 +C32 25 gnd 2.080806f +R30 21 25 2.224404 +C33 26 gnd 2.080806f +R31 25 26 2.224404 +C34 27 gnd 2.080806f +R32 26 27 2.224404 +R33 27 g1185_1 2.224404 +.ends + +.subckt netg6064 g6064_1 g6064_0 gnd +C1 g6064_1 gnd 2.080806f +C2 g6064_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6064_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +R34 g6064_1 33 2.224404 +.ends + +.subckt netg3754 g3754_5 g3754_2 g3754_12 g3754_10 g3754_4 g3754_9 g3754_6 g3754_13 g3754_3 g3754_7 g3754_11 g3754_8 g3754_0 g3754_1 gnd +C1 g3754_5 gnd 2.080806f +C2 g3754_2 gnd 2.080806f +C3 g3754_12 gnd 2.080806f +C4 g3754_10 gnd 2.080806f +C5 g3754_4 gnd 2.080806f +C6 g3754_9 gnd 2.080806f +C7 g3754_6 gnd 2.080806f +C8 g3754_13 gnd 2.080806f +C9 g3754_3 gnd 2.080806f +C10 g3754_7 gnd 2.080806f +C11 g3754_11 gnd 2.080806f +C12 g3754_8 gnd 2.080806f +C13 g3754_0 gnd 2.080806f +C14 g3754_1 gnd 2.080806f +C15 1 gnd 2.080806f +R1 1 g3754_0 2.224404 +R2 g3754_5 1 2.224404 +C16 2 gnd 2.080806f +R3 g3754_0 2 2.224404 +C17 3 gnd 2.080806f +R4 2 3 2.224404 +C18 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g3754_11 2.224404 +C19 5 gnd 2.080806f +R7 g3754_11 5 2.224404 +C20 6 gnd 2.080806f +R8 5 6 2.224404 +C21 7 gnd 2.080806f +R9 6 7 2.224404 +C22 8 gnd 2.080806f +R10 7 8 2.224404 +C23 9 gnd 2.080806f +R11 8 9 2.224404 +C24 10 gnd 2.080806f +R12 9 10 2.224404 +C25 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g3754_9 2.224404 +C26 12 gnd 2.080806f +R15 g3754_9 12 2.224404 +R16 12 g3754_7 2.224404 +C27 13 gnd 2.080806f +R17 13 g3754_7 2.224404 +R18 g3754_2 13 2.224404 +R19 g3754_2 g3754_10 2.224404 +C28 14 gnd 2.080806f +R20 14 g3754_2 2.224404 +C29 15 gnd 2.080806f +R21 15 14 2.224404 +R22 g3754_1 15 2.224404 +C30 16 gnd 2.080806f +R23 g3754_10 16 2.224404 +C31 17 gnd 2.080806f +R24 16 17 2.224404 +C32 18 gnd 2.080806f +R25 17 18 2.224404 +R26 18 g3754_4 2.224404 +C33 19 gnd 2.080806f +R27 19 g3754_4 2.224404 +R28 g3754_6 19 2.224404 +C34 20 gnd 2.080806f +R29 20 g3754_6 2.224404 +R30 g3754_13 20 2.224404 +C35 21 gnd 2.080806f +R31 21 g3754_13 2.224404 +C36 22 gnd 2.080806f +R32 22 21 2.224404 +C37 23 gnd 2.080806f +R33 23 22 2.224404 +R34 g3754_8 23 2.224404 +C38 24 gnd 2.080806f +R35 24 g3754_8 2.224404 +C39 25 gnd 2.080806f +R36 25 24 2.224404 +R37 g3754_12 25 2.224404 +C40 26 gnd 2.080806f +R38 26 g3754_6 2.224404 +C41 27 gnd 2.080806f +R39 27 26 2.224404 +C42 28 gnd 2.080806f +R40 28 27 2.224404 +C43 29 gnd 2.080806f +R41 28 29 2.224404 +C44 30 gnd 2.080806f +R42 29 30 2.224404 +C45 31 gnd 2.080806f +R43 31 30 2.224404 +C46 32 gnd 2.080806f +R44 31 32 2.224404 +C47 33 gnd 2.080806f +R45 32 33 2.224404 +R46 33 g3754_3 2.224404 +.ends + +.subckt netg6056 g6056_4 g6056_0 g6056_2 g6056_5 g6056_1 g6056_6 g6056_3 gnd +C1 g6056_4 gnd 2.080806f +C2 g6056_0 gnd 2.080806f +C3 g6056_2 gnd 2.080806f +C4 g6056_5 gnd 2.080806f +C5 g6056_1 gnd 2.080806f +C6 g6056_6 gnd 2.080806f +C7 g6056_3 gnd 2.080806f +R1 g6056_1 g6056_0 2.224404 +R2 g6056_0 g6056_3 2.224404 +R3 g6056_0 g6056_6 2.224404 +R4 g6056_3 g6056_2 2.224404 +C8 1 gnd 2.080806f +R5 g6056_6 1 2.224404 +R6 1 g6056_4 2.224404 +C9 2 gnd 2.080806f +R7 g6056_4 2 2.224404 +C10 3 gnd 2.080806f +R8 2 3 2.224404 +C11 4 gnd 2.080806f +R9 3 4 2.224404 +C12 5 gnd 2.080806f +R10 4 5 2.224404 +C13 6 gnd 2.080806f +R11 5 6 2.224404 +C14 7 gnd 2.080806f +R12 6 7 2.224404 +C15 8 gnd 2.080806f +R13 7 8 2.224404 +C16 9 gnd 2.080806f +R14 9 8 2.224404 +C17 10 gnd 2.080806f +R15 10 9 2.224404 +C18 11 gnd 2.080806f +R16 10 11 2.224404 +C19 12 gnd 2.080806f +R17 11 12 2.224404 +C20 13 gnd 2.080806f +R18 12 13 2.224404 +C21 14 gnd 2.080806f +R19 13 14 2.224404 +C22 15 gnd 2.080806f +R20 15 14 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 16 17 2.224404 +C25 18 gnd 2.080806f +R23 18 17 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 20 19 2.224404 +C28 21 gnd 2.080806f +R26 20 21 2.224404 +C29 22 gnd 2.080806f +R27 21 22 2.224404 +C30 23 gnd 2.080806f +R28 23 22 2.224404 +C31 24 gnd 2.080806f +R29 23 24 2.224404 +C32 25 gnd 2.080806f +R30 24 25 2.224404 +R31 25 g6056_5 2.224404 +.ends + +.subckt netg391 g391_1 g391_0 g391_2 gnd +C1 g391_1 gnd 2.080806f +C2 g391_0 gnd 2.080806f +C3 g391_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g391_0 2.224404 +R2 g391_1 1 2.224404 +C5 2 gnd 2.080806f +R3 g391_1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +R30 g391_2 28 2.224404 +.ends + +.subckt netg2802 g2802_0 g2802_1 gnd +C1 g2802_0 gnd 2.080806f +C2 g2802_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2802_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +R36 g2802_1 35 2.224404 +.ends + +.subckt netg2794 g2794_1 g2794_0 gnd +C1 g2794_1 gnd 2.080806f +C2 g2794_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2794_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +R30 g2794_1 29 2.224404 +.ends + +.subckt netg5499 g5499_0 g5499_1 g5499_2 gnd +C1 g5499_0 gnd 2.080806f +C2 g5499_1 gnd 2.080806f +C3 g5499_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g5499_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5499_2 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +R34 32 g5499_1 2.224404 +.ends + +.subckt netg4359 g4359_1 g4359_2 g4359_0 gnd +C1 g4359_1 gnd 2.080806f +C2 g4359_2 gnd 2.080806f +C3 g4359_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4359_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +R8 g4359_1 7 2.224404 +C11 8 gnd 2.080806f +R9 8 1 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +R31 29 g4359_2 2.224404 +.ends + +.subckt netg646 g646_3 g646_4 g646_0 g646_5 g646_2 g646_1 gnd +C1 g646_3 gnd 2.080806f +C2 g646_4 gnd 2.080806f +C3 g646_0 gnd 2.080806f +C4 g646_5 gnd 2.080806f +C5 g646_2 gnd 2.080806f +C6 g646_1 gnd 2.080806f +R1 g646_1 g646_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g646_1 2.224404 +C8 2 gnd 2.080806f +R3 2 1 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g646_3 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g646_4 2.224404 +C18 12 gnd 2.080806f +R15 12 9 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 14 13 2.224404 +C21 15 gnd 2.080806f +R18 15 14 2.224404 +C22 16 gnd 2.080806f +R19 16 15 2.224404 +C23 17 gnd 2.080806f +R20 17 16 2.224404 +C24 18 gnd 2.080806f +R21 18 17 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +R23 g646_5 19 2.224404 +C26 20 gnd 2.080806f +R24 g646_5 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 22 21 2.224404 +C29 23 gnd 2.080806f +R27 23 22 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 25 24 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 28 27 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +R34 g646_2 29 2.224404 +.ends + +.subckt netg2300 g2300_0 g2300_2 g2300_3 g2300_1 gnd +C1 g2300_0 gnd 2.080806f +C2 g2300_2 gnd 2.080806f +C3 g2300_3 gnd 2.080806f +C4 g2300_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2300_0 2.224404 +R2 1 g2300_2 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +R18 g2300_3 16 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +C30 26 gnd 2.080806f +R28 26 25 2.224404 +C31 27 gnd 2.080806f +R29 27 26 2.224404 +C32 28 gnd 2.080806f +R30 28 27 2.224404 +C33 29 gnd 2.080806f +R31 29 28 2.224404 +R32 g2300_1 29 2.224404 +.ends + +.subckt netg4876 g4876_3 g4876_1 g4876_0 g4876_2 gnd +C1 g4876_3 gnd 2.080806f +C2 g4876_1 gnd 2.080806f +C3 g4876_0 gnd 2.080806f +C4 g4876_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g4876_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 17 16 2.224404 +C22 18 gnd 2.080806f +R18 18 17 2.224404 +C23 19 gnd 2.080806f +R19 19 18 2.224404 +C24 20 gnd 2.080806f +R20 20 19 2.224404 +C25 21 gnd 2.080806f +R21 21 20 2.224404 +C26 22 gnd 2.080806f +R22 22 21 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +R24 g4876_2 23 2.224404 +C28 24 gnd 2.080806f +R25 24 21 2.224404 +C29 25 gnd 2.080806f +R26 25 24 2.224404 +C30 26 gnd 2.080806f +R27 26 25 2.224404 +C31 27 gnd 2.080806f +R28 27 26 2.224404 +C32 28 gnd 2.080806f +R29 28 27 2.224404 +C33 29 gnd 2.080806f +R30 29 28 2.224404 +C34 30 gnd 2.080806f +R31 30 29 2.224404 +C35 31 gnd 2.080806f +R32 31 30 2.224404 +R33 g4876_3 31 2.224404 +C36 32 gnd 2.080806f +R34 31 32 2.224404 +R35 g4876_1 32 2.224404 +.ends + +.subckt netg450 g450_4 g450_0 g450_3 g450_1 g450_2 gnd +C1 g450_4 gnd 2.080806f +C2 g450_0 gnd 2.080806f +C3 g450_3 gnd 2.080806f +C4 g450_1 gnd 2.080806f +C5 g450_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g450_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g450_4 2.224404 +C9 4 gnd 2.080806f +R5 g450_0 4 2.224404 +C10 5 gnd 2.080806f +R6 4 5 2.224404 +C11 6 gnd 2.080806f +R7 5 6 2.224404 +C12 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g450_2 2.224404 +C13 8 gnd 2.080806f +R10 g450_2 8 2.224404 +C14 9 gnd 2.080806f +R11 8 9 2.224404 +C15 10 gnd 2.080806f +R12 9 10 2.224404 +C16 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g450_3 2.224404 +C17 12 gnd 2.080806f +R15 12 g450_0 2.224404 +C18 13 gnd 2.080806f +R16 13 12 2.224404 +C19 14 gnd 2.080806f +R17 14 13 2.224404 +C20 15 gnd 2.080806f +R18 15 14 2.224404 +C21 16 gnd 2.080806f +R19 16 15 2.224404 +C22 17 gnd 2.080806f +R20 17 16 2.224404 +C23 18 gnd 2.080806f +R21 18 17 2.224404 +C24 19 gnd 2.080806f +R22 19 18 2.224404 +C25 20 gnd 2.080806f +R23 20 19 2.224404 +C26 21 gnd 2.080806f +R24 21 20 2.224404 +C27 22 gnd 2.080806f +R25 22 21 2.224404 +C28 23 gnd 2.080806f +R26 23 22 2.224404 +C29 24 gnd 2.080806f +R27 24 23 2.224404 +C30 25 gnd 2.080806f +R28 25 24 2.224404 +C31 26 gnd 2.080806f +R29 26 25 2.224404 +C32 27 gnd 2.080806f +R30 27 26 2.224404 +C33 28 gnd 2.080806f +R31 28 27 2.224404 +C34 29 gnd 2.080806f +R32 29 28 2.224404 +C35 30 gnd 2.080806f +R33 30 29 2.224404 +C36 31 gnd 2.080806f +R34 31 30 2.224404 +R35 g450_1 31 2.224404 +.ends + +.subckt netg2296 g2296_3 g2296_2 g2296_1 g2296_0 gnd +C1 g2296_3 gnd 2.080806f +C2 g2296_2 gnd 2.080806f +C3 g2296_1 gnd 2.080806f +C4 g2296_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2296_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +R9 8 g2296_1 2.224404 +C13 9 gnd 2.080806f +R10 g2296_1 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 16 17 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 20 21 2.224404 +C26 22 gnd 2.080806f +R23 21 22 2.224404 +C27 23 gnd 2.080806f +R24 22 23 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 25 26 2.224404 +C31 27 gnd 2.080806f +R28 26 27 2.224404 +C32 28 gnd 2.080806f +R29 27 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +R32 30 g2296_2 2.224404 +C35 31 gnd 2.080806f +R33 31 g2296_2 2.224404 +R34 31 g2296_3 2.224404 +.ends + +.subckt netg1832 g1832_1 g1832_3 g1832_0 g1832_2 gnd +C1 g1832_1 gnd 2.080806f +C2 g1832_3 gnd 2.080806f +C3 g1832_0 gnd 2.080806f +C4 g1832_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1832_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g1832_1 7 2.224404 +C12 8 gnd 2.080806f +R9 g1832_1 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +R18 g1832_2 16 2.224404 +C21 17 gnd 2.080806f +R19 17 g1832_2 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 23 22 2.224404 +C28 24 gnd 2.080806f +R26 24 23 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +C30 26 gnd 2.080806f +R28 26 25 2.224404 +C31 27 gnd 2.080806f +R29 27 26 2.224404 +C32 28 gnd 2.080806f +R30 28 27 2.224404 +C33 29 gnd 2.080806f +R31 29 28 2.224404 +C34 30 gnd 2.080806f +R32 30 29 2.224404 +C35 31 gnd 2.080806f +R33 31 30 2.224404 +C36 32 gnd 2.080806f +R34 32 31 2.224404 +C37 33 gnd 2.080806f +R35 33 32 2.224404 +C38 34 gnd 2.080806f +R36 34 33 2.224404 +R37 g1832_3 34 2.224404 +.ends + +.subckt netg3852 g3852_3 g3852_2 g3852_8 g3852_9 g3852_0 g3852_5 g3852_7 g3852_1 g3852_6 g3852_4 gnd +C1 g3852_3 gnd 2.080806f +C2 g3852_2 gnd 2.080806f +C3 g3852_8 gnd 2.080806f +C4 g3852_9 gnd 2.080806f +C5 g3852_0 gnd 2.080806f +C6 g3852_5 gnd 2.080806f +C7 g3852_7 gnd 2.080806f +C8 g3852_1 gnd 2.080806f +C9 g3852_6 gnd 2.080806f +C10 g3852_4 gnd 2.080806f +C11 1 gnd 2.080806f +R1 1 g3852_0 2.224404 +R2 1 g3852_1 2.224404 +C12 2 gnd 2.080806f +R3 g3852_0 2 2.224404 +R4 2 g3852_2 2.224404 +C13 3 gnd 2.080806f +R5 g3852_1 3 2.224404 +R6 3 g3852_8 2.224404 +C14 4 gnd 2.080806f +R7 g3852_8 4 2.224404 +C15 5 gnd 2.080806f +R8 4 5 2.224404 +R9 5 g3852_4 2.224404 +C16 6 gnd 2.080806f +R10 6 2 2.224404 +C17 7 gnd 2.080806f +R11 7 6 2.224404 +R12 g3852_3 7 2.224404 +C18 8 gnd 2.080806f +R13 8 g3852_3 2.224404 +R14 g3852_7 8 2.224404 +C19 9 gnd 2.080806f +R15 9 g3852_7 2.224404 +C20 10 gnd 2.080806f +R16 10 9 2.224404 +C21 11 gnd 2.080806f +R17 10 11 2.224404 +R18 g3852_9 11 2.224404 +C22 12 gnd 2.080806f +R19 g3852_4 12 2.224404 +C23 13 gnd 2.080806f +R20 12 13 2.224404 +C24 14 gnd 2.080806f +R21 14 13 2.224404 +C25 15 gnd 2.080806f +R22 14 15 2.224404 +C26 16 gnd 2.080806f +R23 15 16 2.224404 +C27 17 gnd 2.080806f +R24 16 17 2.224404 +R25 17 g3852_5 2.224404 +C28 18 gnd 2.080806f +R26 g3852_5 18 2.224404 +C29 19 gnd 2.080806f +R27 18 19 2.224404 +C30 20 gnd 2.080806f +R28 19 20 2.224404 +C31 21 gnd 2.080806f +R29 20 21 2.224404 +C32 22 gnd 2.080806f +R30 21 22 2.224404 +C33 23 gnd 2.080806f +R31 22 23 2.224404 +C34 24 gnd 2.080806f +R32 23 24 2.224404 +C35 25 gnd 2.080806f +R33 24 25 2.224404 +C36 26 gnd 2.080806f +R34 25 26 2.224404 +C37 27 gnd 2.080806f +R35 26 27 2.224404 +C38 28 gnd 2.080806f +R36 28 27 2.224404 +C39 29 gnd 2.080806f +R37 28 29 2.224404 +C40 30 gnd 2.080806f +R38 29 30 2.224404 +C41 31 gnd 2.080806f +R39 30 31 2.224404 +R40 31 g3852_6 2.224404 +.ends + +.subckt netg494 g494_5 g494_4 g494_3 g494_1 g494_2 g494_0 gnd +C1 g494_5 gnd 2.080806f +C2 g494_4 gnd 2.080806f +C3 g494_3 gnd 2.080806f +C4 g494_1 gnd 2.080806f +C5 g494_2 gnd 2.080806f +C6 g494_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g494_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +C11 5 gnd 2.080806f +R5 4 5 2.224404 +C12 6 gnd 2.080806f +R6 5 6 2.224404 +C13 7 gnd 2.080806f +R7 6 7 2.224404 +C14 8 gnd 2.080806f +R8 7 8 2.224404 +C15 9 gnd 2.080806f +R9 8 9 2.224404 +C16 10 gnd 2.080806f +R10 9 10 2.224404 +R11 10 g494_1 2.224404 +C17 11 gnd 2.080806f +R12 g494_1 11 2.224404 +C18 12 gnd 2.080806f +R13 11 12 2.224404 +C19 13 gnd 2.080806f +R14 12 13 2.224404 +R15 13 g494_4 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +R20 17 g494_2 2.224404 +C24 18 gnd 2.080806f +R21 18 8 2.224404 +C25 19 gnd 2.080806f +R22 19 18 2.224404 +C26 20 gnd 2.080806f +R23 20 19 2.224404 +C27 21 gnd 2.080806f +R24 21 20 2.224404 +C28 22 gnd 2.080806f +R25 22 21 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +R27 23 g494_5 2.224404 +C30 24 gnd 2.080806f +R28 g494_2 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +R36 31 g494_3 2.224404 +.ends + +.subckt netg4377 g4377_0 g4377_2 g4377_1 gnd +C1 g4377_0 gnd 2.080806f +C2 g4377_2 gnd 2.080806f +C3 g4377_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g4377_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +R17 g4377_1 16 2.224404 +C20 17 gnd 2.080806f +R18 1 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +R34 32 g4377_2 2.224404 +.ends + +.subckt netg6203 g6203_0 g6203_1 gnd +C1 g6203_0 gnd 2.080806f +C2 g6203_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g6203_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +R35 g6203_1 34 2.224404 +.ends + +.subckt netg1612 g1612_2 g1612_1 g1612_0 g1612_3 gnd +C1 g1612_2 gnd 2.080806f +C2 g1612_1 gnd 2.080806f +C3 g1612_0 gnd 2.080806f +C4 g1612_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g1612_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g1612_3 6 2.224404 +C11 7 gnd 2.080806f +R8 7 g1612_3 2.224404 +R9 7 g1612_1 2.224404 +C12 8 gnd 2.080806f +R10 1 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 24 25 2.224404 +C30 26 gnd 2.080806f +R28 25 26 2.224404 +C31 27 gnd 2.080806f +R29 26 27 2.224404 +C32 28 gnd 2.080806f +R30 27 28 2.224404 +C33 29 gnd 2.080806f +R31 28 29 2.224404 +C34 30 gnd 2.080806f +R32 29 30 2.224404 +C35 31 gnd 2.080806f +R33 30 31 2.224404 +C36 32 gnd 2.080806f +R34 31 32 2.224404 +R35 32 g1612_2 2.224404 +.ends + +.subckt netg1604 g1604_3 g1604_0 g1604_2 g1604_1 gnd +C1 g1604_3 gnd 2.080806f +C2 g1604_0 gnd 2.080806f +C3 g1604_2 gnd 2.080806f +C4 g1604_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g1604_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 7 8 2.224404 +C13 9 gnd 2.080806f +R9 8 9 2.224404 +C14 10 gnd 2.080806f +R10 9 10 2.224404 +C15 11 gnd 2.080806f +R11 10 11 2.224404 +C16 12 gnd 2.080806f +R12 11 12 2.224404 +C17 13 gnd 2.080806f +R13 12 13 2.224404 +C18 14 gnd 2.080806f +R14 13 14 2.224404 +C19 15 gnd 2.080806f +R15 14 15 2.224404 +C20 16 gnd 2.080806f +R16 15 16 2.224404 +C21 17 gnd 2.080806f +R17 16 17 2.224404 +C22 18 gnd 2.080806f +R18 17 18 2.224404 +C23 19 gnd 2.080806f +R19 18 19 2.224404 +C24 20 gnd 2.080806f +R20 19 20 2.224404 +C25 21 gnd 2.080806f +R21 20 21 2.224404 +C26 22 gnd 2.080806f +R22 21 22 2.224404 +C27 23 gnd 2.080806f +R23 22 23 2.224404 +C28 24 gnd 2.080806f +R24 23 24 2.224404 +R25 24 g1604_1 2.224404 +C29 25 gnd 2.080806f +R26 g1604_1 25 2.224404 +C30 26 gnd 2.080806f +R27 26 25 2.224404 +C31 27 gnd 2.080806f +R28 27 26 2.224404 +C32 28 gnd 2.080806f +R29 28 27 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +R32 30 g1604_3 2.224404 +C35 31 gnd 2.080806f +R33 g1604_3 31 2.224404 +R34 31 g1604_2 2.224404 +.ends + +.subckt netg2115 g2115_2 g2115_3 g2115_1 gnd +C1 g2115_2 gnd 2.080806f +C2 g2115_3 gnd 2.080806f +C3 g2115_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g2115_3 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +R29 g2115_1 28 2.224404 +C32 29 gnd 2.080806f +R30 29 g2115_1 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +R34 g2115_2 32 2.224404 +.ends + +.subckt netg3355 g3355_2 g3355_1 g3355_0 gnd +C1 g3355_2 gnd 2.080806f +C2 g3355_1 gnd 2.080806f +C3 g3355_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g3355_0 2.224404 +R2 g3355_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g3355_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +R36 g3355_2 34 2.224404 +.ends + +.subckt netg2194 g2194_0 g2194_2 g2194_5 g2194_1 g2194_4 g2194_3 gnd +C1 g2194_0 gnd 2.080806f +C2 g2194_2 gnd 2.080806f +C3 g2194_5 gnd 2.080806f +C4 g2194_1 gnd 2.080806f +C5 g2194_4 gnd 2.080806f +C6 g2194_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2194_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g2194_1 2.224404 +C10 4 gnd 2.080806f +R5 2 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g2194_2 2.224404 +C12 6 gnd 2.080806f +R8 g2194_2 6 2.224404 +R9 6 g2194_3 2.224404 +C13 7 gnd 2.080806f +R10 g2194_1 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 9 8 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +R14 g2194_4 10 2.224404 +C17 11 gnd 2.080806f +R15 g2194_3 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 15 14 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +C39 33 gnd 2.080806f +R37 32 33 2.224404 +C40 34 gnd 2.080806f +R38 33 34 2.224404 +R39 34 g2194_5 2.224404 +.ends + +.subckt netg59 g59_1 g59_0 gnd +C1 g59_1 gnd 2.080806f +C2 g59_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g59_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +R32 g59_1 31 2.224404 +.ends + +.subckt netg532 g532_1 g532_0 g532_5 g532_4 g532_3 gnd +C1 g532_1 gnd 2.080806f +C2 g532_0 gnd 2.080806f +C3 g532_5 gnd 2.080806f +C4 g532_4 gnd 2.080806f +C5 g532_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g532_0 2.224404 +C7 2 gnd 2.080806f +R2 2 1 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +C9 4 gnd 2.080806f +R4 4 3 2.224404 +C10 5 gnd 2.080806f +R5 5 4 2.224404 +C11 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g532_5 6 2.224404 +C12 7 gnd 2.080806f +R8 g532_5 7 2.224404 +C13 8 gnd 2.080806f +R9 8 7 2.224404 +C14 9 gnd 2.080806f +R10 9 8 2.224404 +C15 10 gnd 2.080806f +R11 10 9 2.224404 +C16 11 gnd 2.080806f +R12 10 11 2.224404 +R13 g532_3 11 2.224404 +C17 12 gnd 2.080806f +R14 g532_0 12 2.224404 +C18 13 gnd 2.080806f +R15 12 13 2.224404 +C19 14 gnd 2.080806f +R16 13 14 2.224404 +C20 15 gnd 2.080806f +R17 14 15 2.224404 +C21 16 gnd 2.080806f +R18 15 16 2.224404 +C22 17 gnd 2.080806f +R19 16 17 2.224404 +C23 18 gnd 2.080806f +R20 17 18 2.224404 +C24 19 gnd 2.080806f +R21 18 19 2.224404 +C25 20 gnd 2.080806f +R22 19 20 2.224404 +C26 21 gnd 2.080806f +R23 20 21 2.224404 +C27 22 gnd 2.080806f +R24 21 22 2.224404 +C28 23 gnd 2.080806f +R25 22 23 2.224404 +C29 24 gnd 2.080806f +R26 23 24 2.224404 +C30 25 gnd 2.080806f +R27 24 25 2.224404 +C31 26 gnd 2.080806f +R28 25 26 2.224404 +C32 27 gnd 2.080806f +R29 26 27 2.224404 +C33 28 gnd 2.080806f +R30 27 28 2.224404 +R31 28 g532_1 2.224404 +C34 29 gnd 2.080806f +R32 28 29 2.224404 +C35 30 gnd 2.080806f +R33 29 30 2.224404 +R34 30 g532_4 2.224404 +.ends + +.subckt netg41 g41_1 g41_0 gnd +C1 g41_1 gnd 2.080806f +C2 g41_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g41_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +R32 31 g41_1 2.224404 +.ends + +.subckt netg6520 g6520_0 g6520_1 gnd +C1 g6520_0 gnd 2.080806f +C2 g6520_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6520_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +R32 31 g6520_1 2.224404 +.ends + +.subckt netg36 g36_1 g36_0 gnd +C1 g36_1 gnd 2.080806f +C2 g36_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g36_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +R32 g36_1 31 2.224404 +.ends + +.subckt netg6597 g6597_3 g6597_0 g6597_6 g6597_2 g6597_1 g6597_4 g6597_5 gnd +C1 g6597_3 gnd 2.080806f +C2 g6597_0 gnd 2.080806f +C3 g6597_6 gnd 2.080806f +C4 g6597_2 gnd 2.080806f +C5 g6597_1 gnd 2.080806f +C6 g6597_4 gnd 2.080806f +C7 g6597_5 gnd 2.080806f +R1 g6597_1 g6597_0 2.224404 +C8 1 gnd 2.080806f +R2 1 g6597_0 2.224404 +C9 2 gnd 2.080806f +R3 2 1 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g6597_5 4 2.224404 +C12 5 gnd 2.080806f +R7 g6597_5 5 2.224404 +C13 6 gnd 2.080806f +R8 5 6 2.224404 +R9 g6597_4 6 2.224404 +C14 7 gnd 2.080806f +R10 7 g6597_5 2.224404 +C15 8 gnd 2.080806f +R11 8 7 2.224404 +R12 g6597_6 8 2.224404 +C16 9 gnd 2.080806f +R13 6 9 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +C21 14 gnd 2.080806f +R18 13 14 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 15 16 2.224404 +C24 17 gnd 2.080806f +R21 16 17 2.224404 +C25 18 gnd 2.080806f +R22 17 18 2.224404 +C26 19 gnd 2.080806f +R23 18 19 2.224404 +R24 19 g6597_3 2.224404 +C27 20 gnd 2.080806f +R25 g6597_3 20 2.224404 +C28 21 gnd 2.080806f +R26 20 21 2.224404 +C29 22 gnd 2.080806f +R27 21 22 2.224404 +C30 23 gnd 2.080806f +R28 22 23 2.224404 +C31 24 gnd 2.080806f +R29 23 24 2.224404 +C32 25 gnd 2.080806f +R30 24 25 2.224404 +C33 26 gnd 2.080806f +R31 25 26 2.224404 +C34 27 gnd 2.080806f +R32 26 27 2.224404 +C35 28 gnd 2.080806f +R33 27 28 2.224404 +C36 29 gnd 2.080806f +R34 28 29 2.224404 +C37 30 gnd 2.080806f +R35 29 30 2.224404 +C38 31 gnd 2.080806f +R36 30 31 2.224404 +C39 32 gnd 2.080806f +R37 31 32 2.224404 +C40 33 gnd 2.080806f +R38 33 32 2.224404 +C41 34 gnd 2.080806f +R39 33 34 2.224404 +R40 g6597_2 34 2.224404 +.ends + +.subckt netg3845 g3845_4 g3845_2 g3845_3 g3845_1 g3845_6 g3845_5 g3845_0 gnd +C1 g3845_4 gnd 2.080806f +C2 g3845_2 gnd 2.080806f +C3 g3845_3 gnd 2.080806f +C4 g3845_1 gnd 2.080806f +C5 g3845_6 gnd 2.080806f +C6 g3845_5 gnd 2.080806f +C7 g3845_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g3845_0 2.224404 +R2 g3845_1 1 2.224404 +C9 2 gnd 2.080806f +R3 g3845_1 2 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +R6 g3845_5 4 2.224404 +C12 5 gnd 2.080806f +R7 g3845_0 5 2.224404 +C13 6 gnd 2.080806f +R8 5 6 2.224404 +C14 7 gnd 2.080806f +R9 6 7 2.224404 +C15 8 gnd 2.080806f +R10 7 8 2.224404 +C16 9 gnd 2.080806f +R11 8 9 2.224404 +R12 9 g3845_6 2.224404 +C17 10 gnd 2.080806f +R13 9 10 2.224404 +R14 10 g3845_2 2.224404 +C18 11 gnd 2.080806f +R15 g3845_2 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +R18 13 g3845_4 2.224404 +C21 14 gnd 2.080806f +R19 14 g3845_1 2.224404 +C22 15 gnd 2.080806f +R20 15 14 2.224404 +C23 16 gnd 2.080806f +R21 16 15 2.224404 +C24 17 gnd 2.080806f +R22 17 16 2.224404 +C25 18 gnd 2.080806f +R23 18 17 2.224404 +C26 19 gnd 2.080806f +R24 19 18 2.224404 +C27 20 gnd 2.080806f +R25 20 19 2.224404 +C28 21 gnd 2.080806f +R26 21 20 2.224404 +C29 22 gnd 2.080806f +R27 22 21 2.224404 +C30 23 gnd 2.080806f +R28 23 22 2.224404 +C31 24 gnd 2.080806f +R29 24 23 2.224404 +C32 25 gnd 2.080806f +R30 25 24 2.224404 +C33 26 gnd 2.080806f +R31 26 25 2.224404 +C34 27 gnd 2.080806f +R32 27 26 2.224404 +C35 28 gnd 2.080806f +R33 28 27 2.224404 +C36 29 gnd 2.080806f +R34 29 28 2.224404 +C37 30 gnd 2.080806f +R35 30 29 2.224404 +C38 31 gnd 2.080806f +R36 31 30 2.224404 +C39 32 gnd 2.080806f +R37 32 31 2.224404 +R38 g3845_3 32 2.224404 +.ends + +.subckt netg2203 g2203_1 g2203_5 g2203_3 g2203_4 g2203_2 gnd +C1 g2203_1 gnd 2.080806f +C2 g2203_5 gnd 2.080806f +C3 g2203_3 gnd 2.080806f +C4 g2203_4 gnd 2.080806f +C5 g2203_2 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g2203_4 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 2 3 2.224404 +C9 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2203_1 2.224404 +C10 5 gnd 2.080806f +R6 g2203_1 5 2.224404 +C11 6 gnd 2.080806f +R7 5 6 2.224404 +C12 7 gnd 2.080806f +R8 6 7 2.224404 +C13 8 gnd 2.080806f +R9 7 8 2.224404 +R10 8 g2203_5 2.224404 +C14 9 gnd 2.080806f +R11 g2203_5 9 2.224404 +C15 10 gnd 2.080806f +R12 9 10 2.224404 +C16 11 gnd 2.080806f +R13 10 11 2.224404 +C17 12 gnd 2.080806f +R14 11 12 2.224404 +C18 13 gnd 2.080806f +R15 12 13 2.224404 +C19 14 gnd 2.080806f +R16 13 14 2.224404 +C20 15 gnd 2.080806f +R17 14 15 2.224404 +C21 16 gnd 2.080806f +R18 15 16 2.224404 +C22 17 gnd 2.080806f +R19 16 17 2.224404 +C23 18 gnd 2.080806f +R20 17 18 2.224404 +C24 19 gnd 2.080806f +R21 18 19 2.224404 +C25 20 gnd 2.080806f +R22 19 20 2.224404 +C26 21 gnd 2.080806f +R23 20 21 2.224404 +C27 22 gnd 2.080806f +R24 21 22 2.224404 +C28 23 gnd 2.080806f +R25 23 22 2.224404 +C29 24 gnd 2.080806f +R26 23 24 2.224404 +C30 25 gnd 2.080806f +R27 24 25 2.224404 +C31 26 gnd 2.080806f +R28 25 26 2.224404 +C32 27 gnd 2.080806f +R29 26 27 2.224404 +C33 28 gnd 2.080806f +R30 27 28 2.224404 +C34 29 gnd 2.080806f +R31 28 29 2.224404 +C35 30 gnd 2.080806f +R32 29 30 2.224404 +C36 31 gnd 2.080806f +R33 31 30 2.224404 +C37 32 gnd 2.080806f +R34 32 31 2.224404 +C38 33 gnd 2.080806f +R35 32 33 2.224404 +C39 34 gnd 2.080806f +R36 33 34 2.224404 +C40 35 gnd 2.080806f +R37 34 35 2.224404 +C41 36 gnd 2.080806f +R38 35 36 2.224404 +R39 36 g2203_2 2.224404 +C42 37 gnd 2.080806f +R40 37 36 2.224404 +C43 38 gnd 2.080806f +R41 38 37 2.224404 +R42 g2203_3 38 2.224404 +.ends + +.subckt netg2421 g2421_1 g2421_0 gnd +C1 g2421_1 gnd 2.080806f +C2 g2421_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g2421_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +R35 g2421_1 34 2.224404 +.ends + +.subckt netg6408 g6408_1 g6408_0 gnd +C1 g6408_1 gnd 2.080806f +C2 g6408_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g6408_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +R33 32 g6408_1 2.224404 +.ends + +.subckt netg3687 g3687_0 g3687_2 g3687_1 g3687_3 gnd +C1 g3687_0 gnd 2.080806f +C2 g3687_2 gnd 2.080806f +C3 g3687_1 gnd 2.080806f +C4 g3687_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g3687_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +R9 g3687_2 8 2.224404 +C13 9 gnd 2.080806f +R10 9 1 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 21 20 2.224404 +C26 22 gnd 2.080806f +R23 21 22 2.224404 +C27 23 gnd 2.080806f +R24 22 23 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 25 26 2.224404 +C31 27 gnd 2.080806f +R28 26 27 2.224404 +C32 28 gnd 2.080806f +R29 27 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 30 29 2.224404 +C35 31 gnd 2.080806f +R32 30 31 2.224404 +C36 32 gnd 2.080806f +R33 31 32 2.224404 +R34 32 g3687_1 2.224404 +C37 33 gnd 2.080806f +R35 33 g3687_1 2.224404 +R36 g3687_3 33 2.224404 +.ends + +.subckt netg5816 g5816_3 g5816_2 g5816_1 g5816_0 gnd +C1 g5816_3 gnd 2.080806f +C2 g5816_2 gnd 2.080806f +C3 g5816_1 gnd 2.080806f +C4 g5816_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g5816_0 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g5816_3 2 2.224404 +R4 g5816_2 g5816_3 2.224404 +C7 3 gnd 2.080806f +R5 3 g5816_0 2.224404 +C8 4 gnd 2.080806f +R6 4 3 2.224404 +C9 5 gnd 2.080806f +R7 5 4 2.224404 +C10 6 gnd 2.080806f +R8 6 5 2.224404 +C11 7 gnd 2.080806f +R9 7 6 2.224404 +C12 8 gnd 2.080806f +R10 8 7 2.224404 +C13 9 gnd 2.080806f +R11 9 8 2.224404 +C14 10 gnd 2.080806f +R12 10 9 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 12 11 2.224404 +C17 13 gnd 2.080806f +R15 13 12 2.224404 +C18 14 gnd 2.080806f +R16 14 13 2.224404 +C19 15 gnd 2.080806f +R17 15 14 2.224404 +C20 16 gnd 2.080806f +R18 16 15 2.224404 +C21 17 gnd 2.080806f +R19 17 16 2.224404 +C22 18 gnd 2.080806f +R20 18 17 2.224404 +C23 19 gnd 2.080806f +R21 19 18 2.224404 +C24 20 gnd 2.080806f +R22 20 19 2.224404 +C25 21 gnd 2.080806f +R23 21 20 2.224404 +C26 22 gnd 2.080806f +R24 21 22 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 25 24 2.224404 +C30 26 gnd 2.080806f +R28 26 25 2.224404 +C31 27 gnd 2.080806f +R29 26 27 2.224404 +C32 28 gnd 2.080806f +R30 28 27 2.224404 +C33 29 gnd 2.080806f +R31 28 29 2.224404 +C34 30 gnd 2.080806f +R32 29 30 2.224404 +R33 30 g5816_1 2.224404 +.ends + +.subckt netg37 g37_1 g37_0 gnd +C1 g37_1 gnd 2.080806f +C2 g37_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g37_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +R33 32 g37_1 2.224404 +.ends + +.subckt netg699 g699_3 g699_2 g699_4 g699_1 g699_5 g699_0 gnd +C1 g699_3 gnd 2.080806f +C2 g699_2 gnd 2.080806f +C3 g699_4 gnd 2.080806f +C4 g699_1 gnd 2.080806f +C5 g699_5 gnd 2.080806f +C6 g699_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g699_0 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g699_4 2 2.224404 +C9 3 gnd 2.080806f +R4 g699_0 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g699_2 2.224404 +C14 8 gnd 2.080806f +R10 g699_2 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +C24 18 gnd 2.080806f +R20 17 18 2.224404 +C25 19 gnd 2.080806f +R21 18 19 2.224404 +C26 20 gnd 2.080806f +R22 19 20 2.224404 +C27 21 gnd 2.080806f +R23 20 21 2.224404 +C28 22 gnd 2.080806f +R24 21 22 2.224404 +C29 23 gnd 2.080806f +R25 22 23 2.224404 +C30 24 gnd 2.080806f +R26 24 23 2.224404 +C31 25 gnd 2.080806f +R27 24 25 2.224404 +C32 26 gnd 2.080806f +R28 25 26 2.224404 +C33 27 gnd 2.080806f +R29 27 26 2.224404 +C34 28 gnd 2.080806f +R30 28 27 2.224404 +C35 29 gnd 2.080806f +R31 28 29 2.224404 +C36 30 gnd 2.080806f +R32 30 29 2.224404 +C37 31 gnd 2.080806f +R33 31 30 2.224404 +C38 32 gnd 2.080806f +R34 31 32 2.224404 +C39 33 gnd 2.080806f +R35 33 32 2.224404 +R36 33 g699_3 2.224404 +C40 34 gnd 2.080806f +R37 34 g699_3 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +R40 36 g699_5 2.224404 +C43 37 gnd 2.080806f +R41 g699_5 37 2.224404 +C44 38 gnd 2.080806f +R42 37 38 2.224404 +C45 39 gnd 2.080806f +R43 38 39 2.224404 +C46 40 gnd 2.080806f +R44 39 40 2.224404 +C47 41 gnd 2.080806f +R45 40 41 2.224404 +C48 42 gnd 2.080806f +R46 42 41 2.224404 +C49 43 gnd 2.080806f +R47 42 43 2.224404 +R48 43 g699_1 2.224404 +.ends + +.subckt netg47 g47_0 g47_1 gnd +C1 g47_0 gnd 2.080806f +C2 g47_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g47_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +R33 g47_1 32 2.224404 +.ends + +.subckt netg799 g799_3 g799_1 g799_0 g799_2 g799_5 g799_4 gnd +C1 g799_3 gnd 2.080806f +C2 g799_1 gnd 2.080806f +C3 g799_0 gnd 2.080806f +C4 g799_2 gnd 2.080806f +C5 g799_5 gnd 2.080806f +C6 g799_4 gnd 2.080806f +R1 g799_0 g799_2 2.224404 +C7 1 gnd 2.080806f +R2 g799_0 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +R9 g799_5 7 2.224404 +C14 8 gnd 2.080806f +R10 8 g799_5 2.224404 +C15 9 gnd 2.080806f +R11 9 8 2.224404 +C16 10 gnd 2.080806f +R12 10 9 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +C18 12 gnd 2.080806f +R14 12 11 2.224404 +C19 13 gnd 2.080806f +R15 13 12 2.224404 +R16 g799_4 13 2.224404 +C20 14 gnd 2.080806f +R17 14 g799_4 2.224404 +C21 15 gnd 2.080806f +R18 15 14 2.224404 +C22 16 gnd 2.080806f +R19 16 15 2.224404 +C23 17 gnd 2.080806f +R20 17 16 2.224404 +C24 18 gnd 2.080806f +R21 18 17 2.224404 +C25 19 gnd 2.080806f +R22 19 18 2.224404 +C26 20 gnd 2.080806f +R23 20 19 2.224404 +C27 21 gnd 2.080806f +R24 21 20 2.224404 +C28 22 gnd 2.080806f +R25 22 21 2.224404 +C29 23 gnd 2.080806f +R26 23 22 2.224404 +C30 24 gnd 2.080806f +R27 24 23 2.224404 +C31 25 gnd 2.080806f +R28 25 24 2.224404 +C32 26 gnd 2.080806f +R29 26 25 2.224404 +C33 27 gnd 2.080806f +R30 27 26 2.224404 +C34 28 gnd 2.080806f +R31 28 27 2.224404 +C35 29 gnd 2.080806f +R32 29 28 2.224404 +C36 30 gnd 2.080806f +R33 30 29 2.224404 +C37 31 gnd 2.080806f +R34 31 30 2.224404 +C38 32 gnd 2.080806f +R35 32 31 2.224404 +R36 g799_3 32 2.224404 +C39 33 gnd 2.080806f +R37 33 g799_3 2.224404 +C40 34 gnd 2.080806f +R38 33 34 2.224404 +C41 35 gnd 2.080806f +R39 34 35 2.224404 +C42 36 gnd 2.080806f +R40 36 35 2.224404 +C43 37 gnd 2.080806f +R41 37 36 2.224404 +R42 g799_1 37 2.224404 +.ends + +.subckt netg1462 g1462_3 g1462_1 g1462_2 g1462_5 g1462_4 g1462_0 gnd +C1 g1462_3 gnd 2.080806f +C2 g1462_1 gnd 2.080806f +C3 g1462_2 gnd 2.080806f +C4 g1462_5 gnd 2.080806f +C5 g1462_4 gnd 2.080806f +C6 g1462_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1462_0 1 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +C11 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g1462_4 5 2.224404 +C12 6 gnd 2.080806f +R7 6 g1462_4 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +R9 g1462_1 7 2.224404 +C14 8 gnd 2.080806f +R10 8 g1462_0 2.224404 +C15 9 gnd 2.080806f +R11 9 8 2.224404 +C16 10 gnd 2.080806f +R12 10 9 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +C24 18 gnd 2.080806f +R20 17 18 2.224404 +C25 19 gnd 2.080806f +R21 18 19 2.224404 +C26 20 gnd 2.080806f +R22 19 20 2.224404 +C27 21 gnd 2.080806f +R23 20 21 2.224404 +C28 22 gnd 2.080806f +R24 21 22 2.224404 +C29 23 gnd 2.080806f +R25 22 23 2.224404 +R26 23 g1462_3 2.224404 +C30 24 gnd 2.080806f +R27 g1462_3 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +R41 37 g1462_2 2.224404 +R42 g1462_2 g1462_5 2.224404 +.ends + +.subckt netg672 g672_1 g672_3 g672_2 g672_4 g672_0 g672_5 gnd +C1 g672_1 gnd 2.080806f +C2 g672_3 gnd 2.080806f +C3 g672_2 gnd 2.080806f +C4 g672_4 gnd 2.080806f +C5 g672_0 gnd 2.080806f +C6 g672_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g672_0 2.224404 +R2 g672_3 1 2.224404 +C8 2 gnd 2.080806f +R3 g672_3 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +R5 3 g672_5 2.224404 +C10 4 gnd 2.080806f +R6 g672_5 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g672_1 2.224404 +C18 12 gnd 2.080806f +R15 g672_1 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +R26 22 g672_2 2.224404 +C29 23 gnd 2.080806f +R27 12 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +R37 32 g672_4 2.224404 +.ends + +.subckt netg38 g38_0 g38_1 gnd +C1 g38_0 gnd 2.080806f +C2 g38_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g38_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +R34 g38_1 33 2.224404 +.ends + +.subckt netg6778 g6778_0 g6778_1 g6778_2 gnd +C1 g6778_0 gnd 2.080806f +C2 g6778_1 gnd 2.080806f +C3 g6778_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g6778_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g6778_2 2.224404 +C6 3 gnd 2.080806f +R4 g6778_0 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +R36 34 g6778_1 2.224404 +.ends + +.subckt netg34 g34_1 g34_0 gnd +C1 g34_1 gnd 2.080806f +C2 g34_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g34_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +R34 33 g34_1 2.224404 +.ends + +.subckt netg5269 g5269_1 g5269_0 gnd +C1 g5269_1 gnd 2.080806f +C2 g5269_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g5269_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +R35 g5269_1 34 2.224404 +.ends + +.subckt netg3071 g3071_2 g3071_0 g3071_5 g3071_4 g3071_3 g3071_1 gnd +C1 g3071_2 gnd 2.080806f +C2 g3071_0 gnd 2.080806f +C3 g3071_5 gnd 2.080806f +C4 g3071_4 gnd 2.080806f +C5 g3071_3 gnd 2.080806f +C6 g3071_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g3071_0 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g3071_4 2 2.224404 +C9 3 gnd 2.080806f +R4 3 g3071_0 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +R11 g3071_1 9 2.224404 +R12 g3071_5 g3071_1 2.224404 +R13 g3071_2 g3071_5 2.224404 +C16 10 gnd 2.080806f +R14 9 10 2.224404 +C17 11 gnd 2.080806f +R15 10 11 2.224404 +C18 12 gnd 2.080806f +R16 11 12 2.224404 +C19 13 gnd 2.080806f +R17 12 13 2.224404 +C20 14 gnd 2.080806f +R18 13 14 2.224404 +C21 15 gnd 2.080806f +R19 14 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +R37 32 g3071_3 2.224404 +.ends + +.subckt netg54 g54_1 g54_0 g54_2 gnd +C1 g54_1 gnd 2.080806f +C2 g54_0 gnd 2.080806f +C3 g54_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g54_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +R22 g54_1 21 2.224404 +C25 22 gnd 2.080806f +R23 19 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +R39 37 g54_2 2.224404 +.ends + +.subckt netg2182 g2182_5 g2182_2 g2182_1 g2182_4 g2182_3 g2182_0 gnd +C1 g2182_5 gnd 2.080806f +C2 g2182_2 gnd 2.080806f +C3 g2182_1 gnd 2.080806f +C4 g2182_4 gnd 2.080806f +C5 g2182_3 gnd 2.080806f +C6 g2182_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2182_0 2.224404 +R2 g2182_5 1 2.224404 +R3 g2182_5 g2182_1 2.224404 +C8 2 gnd 2.080806f +R4 g2182_1 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g2182_2 2.224404 +C10 4 gnd 2.080806f +R7 g2182_0 4 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +R22 g2182_4 18 2.224404 +C25 19 gnd 2.080806f +R23 19 g2182_4 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +C39 33 gnd 2.080806f +R37 32 33 2.224404 +C40 34 gnd 2.080806f +R38 33 34 2.224404 +C41 35 gnd 2.080806f +R39 34 35 2.224404 +C42 36 gnd 2.080806f +R40 35 36 2.224404 +C43 37 gnd 2.080806f +R41 36 37 2.224404 +C44 38 gnd 2.080806f +R42 37 38 2.224404 +R43 38 g2182_3 2.224404 +.ends + +.subckt netg442 g442_0 g442_2 g442_1 g442_3 gnd +C1 g442_0 gnd 2.080806f +C2 g442_2 gnd 2.080806f +C3 g442_1 gnd 2.080806f +C4 g442_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g442_0 2.224404 +R2 g442_2 1 2.224404 +C6 2 gnd 2.080806f +R3 g442_0 2 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 5 4 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 20 21 2.224404 +C26 22 gnd 2.080806f +R23 22 21 2.224404 +C27 23 gnd 2.080806f +R24 23 22 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 26 25 2.224404 +C31 27 gnd 2.080806f +R28 27 26 2.224404 +C32 28 gnd 2.080806f +R29 28 27 2.224404 +C33 29 gnd 2.080806f +R30 29 28 2.224404 +R31 g442_3 29 2.224404 +C34 30 gnd 2.080806f +R32 30 g442_3 2.224404 +C35 31 gnd 2.080806f +R33 31 30 2.224404 +C36 32 gnd 2.080806f +R34 32 31 2.224404 +C37 33 gnd 2.080806f +R35 33 32 2.224404 +C38 34 gnd 2.080806f +R36 34 33 2.224404 +C39 35 gnd 2.080806f +R37 34 35 2.224404 +C40 36 gnd 2.080806f +R38 36 35 2.224404 +C41 37 gnd 2.080806f +R39 36 37 2.224404 +C42 38 gnd 2.080806f +R40 37 38 2.224404 +C43 39 gnd 2.080806f +R41 39 38 2.224404 +C44 40 gnd 2.080806f +R42 40 39 2.224404 +C45 41 gnd 2.080806f +R43 41 40 2.224404 +C46 42 gnd 2.080806f +R44 41 42 2.224404 +C47 43 gnd 2.080806f +R45 43 42 2.224404 +C48 44 gnd 2.080806f +R46 44 43 2.224404 +C49 45 gnd 2.080806f +R47 45 44 2.224404 +C50 46 gnd 2.080806f +R48 46 45 2.224404 +R49 g442_1 46 2.224404 +.ends + +.subckt netg1859 g1859_0 g1859_1 g1859_2 gnd +C1 g1859_0 gnd 2.080806f +C2 g1859_1 gnd 2.080806f +C3 g1859_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g1859_0 1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +R37 g1859_1 36 2.224404 +C40 37 gnd 2.080806f +R38 37 g1859_1 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +R50 g1859_2 48 2.224404 +.ends + +.subckt netg488 g488_3 g488_4 g488_2 g488_0 g488_1 g488_5 gnd +C1 g488_3 gnd 2.080806f +C2 g488_4 gnd 2.080806f +C3 g488_2 gnd 2.080806f +C4 g488_0 gnd 2.080806f +C5 g488_1 gnd 2.080806f +C6 g488_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g488_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 4 3 2.224404 +C11 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g488_1 5 2.224404 +R7 g488_2 g488_1 2.224404 +C12 6 gnd 2.080806f +R8 6 g488_0 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +C24 18 gnd 2.080806f +R20 17 18 2.224404 +C25 19 gnd 2.080806f +R21 18 19 2.224404 +R22 19 g488_5 2.224404 +C26 20 gnd 2.080806f +R23 g488_5 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +R33 29 g488_4 2.224404 +C36 30 gnd 2.080806f +R34 30 g488_4 2.224404 +C37 31 gnd 2.080806f +R35 31 30 2.224404 +R36 g488_3 31 2.224404 +.ends + +.subckt netg35 g35_0 g35_1 gnd +C1 g35_0 gnd 2.080806f +C2 g35_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g35_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +R36 g35_1 35 2.224404 +.ends + +.subckt netg31 g31_1 g31_0 gnd +C1 g31_1 gnd 2.080806f +C2 g31_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g31_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +R36 g31_1 35 2.224404 +.ends + +.subckt netg64 g64_1 g64_0 g64_2 gnd +C1 g64_1 gnd 2.080806f +C2 g64_0 gnd 2.080806f +C3 g64_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g64_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g64_2 2.224404 +C7 4 gnd 2.080806f +R5 4 g64_2 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +R40 g64_1 38 2.224404 +.ends + +.subckt netg143 g143_0 g143_1 gnd +C1 g143_0 gnd 2.080806f +C2 g143_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g143_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +R36 g143_1 35 2.224404 +.ends + +.subckt netg145 g145_1 g145_0 gnd +C1 g145_1 gnd 2.080806f +C2 g145_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g145_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +R37 36 g145_1 2.224404 +.ends + +.subckt netg2209 g2209_4 g2209_3 g2209_0 g2209_5 g2209_1 g2209_2 gnd +C1 g2209_4 gnd 2.080806f +C2 g2209_3 gnd 2.080806f +C3 g2209_0 gnd 2.080806f +C4 g2209_5 gnd 2.080806f +C5 g2209_1 gnd 2.080806f +C6 g2209_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2209_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g2209_5 3 2.224404 +C10 4 gnd 2.080806f +R5 4 g2209_5 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +C17 11 gnd 2.080806f +R12 11 10 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +C19 13 gnd 2.080806f +R14 13 12 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +C21 15 gnd 2.080806f +R16 15 14 2.224404 +C22 16 gnd 2.080806f +R17 16 15 2.224404 +C23 17 gnd 2.080806f +R18 17 16 2.224404 +C24 18 gnd 2.080806f +R19 18 17 2.224404 +C25 19 gnd 2.080806f +R20 19 18 2.224404 +C26 20 gnd 2.080806f +R21 20 19 2.224404 +C27 21 gnd 2.080806f +R22 21 20 2.224404 +C28 22 gnd 2.080806f +R23 22 21 2.224404 +C29 23 gnd 2.080806f +R24 23 22 2.224404 +C30 24 gnd 2.080806f +R25 24 23 2.224404 +C31 25 gnd 2.080806f +R26 25 24 2.224404 +C32 26 gnd 2.080806f +R27 26 25 2.224404 +C33 27 gnd 2.080806f +R28 27 26 2.224404 +R29 g2209_3 27 2.224404 +C34 28 gnd 2.080806f +R30 28 g2209_3 2.224404 +C35 29 gnd 2.080806f +R31 29 28 2.224404 +C36 30 gnd 2.080806f +R32 29 30 2.224404 +R33 g2209_2 30 2.224404 +C37 31 gnd 2.080806f +R34 31 g2209_2 2.224404 +C38 32 gnd 2.080806f +R35 32 31 2.224404 +C39 33 gnd 2.080806f +R36 33 32 2.224404 +C40 34 gnd 2.080806f +R37 34 33 2.224404 +C41 35 gnd 2.080806f +R38 35 34 2.224404 +C42 36 gnd 2.080806f +R39 36 35 2.224404 +C43 37 gnd 2.080806f +R40 37 36 2.224404 +R41 g2209_1 37 2.224404 +R42 g2209_4 g2209_1 2.224404 +.ends + +.subckt netg2119 g2119_1 g2119_2 g2119_3 g2119_0 gnd +C1 g2119_1 gnd 2.080806f +C2 g2119_2 gnd 2.080806f +C3 g2119_3 gnd 2.080806f +C4 g2119_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2119_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g2119_1 5 2.224404 +R7 g2119_3 5 2.224404 +C10 6 gnd 2.080806f +R8 g2119_0 6 2.224404 +C11 7 gnd 2.080806f +R9 6 7 2.224404 +C12 8 gnd 2.080806f +R10 7 8 2.224404 +C13 9 gnd 2.080806f +R11 8 9 2.224404 +C14 10 gnd 2.080806f +R12 9 10 2.224404 +C15 11 gnd 2.080806f +R13 10 11 2.224404 +C16 12 gnd 2.080806f +R14 11 12 2.224404 +C17 13 gnd 2.080806f +R15 12 13 2.224404 +C18 14 gnd 2.080806f +R16 13 14 2.224404 +C19 15 gnd 2.080806f +R17 14 15 2.224404 +C20 16 gnd 2.080806f +R18 15 16 2.224404 +C21 17 gnd 2.080806f +R19 16 17 2.224404 +C22 18 gnd 2.080806f +R20 17 18 2.224404 +C23 19 gnd 2.080806f +R21 18 19 2.224404 +C24 20 gnd 2.080806f +R22 19 20 2.224404 +C25 21 gnd 2.080806f +R23 20 21 2.224404 +C26 22 gnd 2.080806f +R24 22 21 2.224404 +C27 23 gnd 2.080806f +R25 22 23 2.224404 +C28 24 gnd 2.080806f +R26 23 24 2.224404 +C29 25 gnd 2.080806f +R27 24 25 2.224404 +C30 26 gnd 2.080806f +R28 25 26 2.224404 +C31 27 gnd 2.080806f +R29 26 27 2.224404 +C32 28 gnd 2.080806f +R30 27 28 2.224404 +C33 29 gnd 2.080806f +R31 28 29 2.224404 +C34 30 gnd 2.080806f +R32 29 30 2.224404 +C35 31 gnd 2.080806f +R33 30 31 2.224404 +C36 32 gnd 2.080806f +R34 31 32 2.224404 +C37 33 gnd 2.080806f +R35 32 33 2.224404 +C38 34 gnd 2.080806f +R36 34 33 2.224404 +C39 35 gnd 2.080806f +R37 35 34 2.224404 +C40 36 gnd 2.080806f +R38 36 35 2.224404 +C41 37 gnd 2.080806f +R39 36 37 2.224404 +C42 38 gnd 2.080806f +R40 38 37 2.224404 +C43 39 gnd 2.080806f +R41 38 39 2.224404 +C44 40 gnd 2.080806f +R42 39 40 2.224404 +C45 41 gnd 2.080806f +R43 40 41 2.224404 +C46 42 gnd 2.080806f +R44 41 42 2.224404 +C47 43 gnd 2.080806f +R45 42 43 2.224404 +C48 44 gnd 2.080806f +R46 43 44 2.224404 +R47 44 g2119_2 2.224404 +.ends + +.subckt netg6705 g6705_0 g6705_3 g6705_2 g6705_4 g6705_1 gnd +C1 g6705_0 gnd 2.080806f +C2 g6705_3 gnd 2.080806f +C3 g6705_2 gnd 2.080806f +C4 g6705_4 gnd 2.080806f +C5 g6705_1 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g6705_0 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 3 2 2.224404 +C9 4 gnd 2.080806f +R4 3 4 2.224404 +R5 g6705_2 4 2.224404 +R6 g6705_2 g6705_3 2.224404 +R7 g6705_4 g6705_2 2.224404 +C10 5 gnd 2.080806f +R8 g6705_3 5 2.224404 +C11 6 gnd 2.080806f +R9 5 6 2.224404 +C12 7 gnd 2.080806f +R10 6 7 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 9 10 2.224404 +C16 11 gnd 2.080806f +R14 11 10 2.224404 +C17 12 gnd 2.080806f +R15 12 11 2.224404 +C18 13 gnd 2.080806f +R16 12 13 2.224404 +C19 14 gnd 2.080806f +R17 13 14 2.224404 +C20 15 gnd 2.080806f +R18 14 15 2.224404 +C21 16 gnd 2.080806f +R19 15 16 2.224404 +C22 17 gnd 2.080806f +R20 17 16 2.224404 +C23 18 gnd 2.080806f +R21 17 18 2.224404 +C24 19 gnd 2.080806f +R22 19 18 2.224404 +C25 20 gnd 2.080806f +R23 19 20 2.224404 +C26 21 gnd 2.080806f +R24 21 20 2.224404 +C27 22 gnd 2.080806f +R25 22 21 2.224404 +C28 23 gnd 2.080806f +R26 23 22 2.224404 +C29 24 gnd 2.080806f +R27 24 23 2.224404 +C30 25 gnd 2.080806f +R28 24 25 2.224404 +C31 26 gnd 2.080806f +R29 26 25 2.224404 +C32 27 gnd 2.080806f +R30 27 26 2.224404 +C33 28 gnd 2.080806f +R31 28 27 2.224404 +C34 29 gnd 2.080806f +R32 28 29 2.224404 +C35 30 gnd 2.080806f +R33 29 30 2.224404 +C36 31 gnd 2.080806f +R34 31 30 2.224404 +C37 32 gnd 2.080806f +R35 32 31 2.224404 +C38 33 gnd 2.080806f +R36 33 32 2.224404 +C39 34 gnd 2.080806f +R37 34 33 2.224404 +R38 g6705_1 34 2.224404 +.ends + +.subckt netg86 g86_0 g86_1 gnd +C1 g86_0 gnd 2.080806f +C2 g86_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g86_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +R37 36 g86_1 2.224404 +.ends + +.subckt netg147 g147_1 g147_0 gnd +C1 g147_1 gnd 2.080806f +C2 g147_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g147_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +R37 36 g147_1 2.224404 +.ends + +.subckt netg2304 g2304_0 g2304_3 g2304_2 g2304_1 gnd +C1 g2304_0 gnd 2.080806f +C2 g2304_3 gnd 2.080806f +C3 g2304_2 gnd 2.080806f +C4 g2304_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2304_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +R10 g2304_2 9 2.224404 +C14 10 gnd 2.080806f +R11 g2304_0 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 16 17 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 20 21 2.224404 +C26 22 gnd 2.080806f +R23 21 22 2.224404 +C27 23 gnd 2.080806f +R24 22 23 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 25 26 2.224404 +C31 27 gnd 2.080806f +R28 26 27 2.224404 +C32 28 gnd 2.080806f +R29 27 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +C35 31 gnd 2.080806f +R32 30 31 2.224404 +C36 32 gnd 2.080806f +R33 31 32 2.224404 +C37 33 gnd 2.080806f +R34 32 33 2.224404 +C38 34 gnd 2.080806f +R35 33 34 2.224404 +R36 34 g2304_3 2.224404 +R37 g2304_3 g2304_1 2.224404 +.ends + +.subckt netg74 g74_1 g74_0 gnd +C1 g74_1 gnd 2.080806f +C2 g74_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g74_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +R38 37 g74_1 2.224404 +.ends + +.subckt netg20 g20_1 g20_0 gnd +C1 g20_1 gnd 2.080806f +C2 g20_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g20_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +R38 g20_1 37 2.224404 +.ends + +.subckt netg2308 g2308_2 g2308_3 g2308_1 g2308_0 gnd +C1 g2308_2 gnd 2.080806f +C2 g2308_3 gnd 2.080806f +C3 g2308_1 gnd 2.080806f +C4 g2308_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g2308_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +R14 g2308_3 13 2.224404 +C18 14 gnd 2.080806f +R15 g2308_0 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 16 17 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 20 21 2.224404 +C26 22 gnd 2.080806f +R23 21 22 2.224404 +C27 23 gnd 2.080806f +R24 22 23 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 25 26 2.224404 +C31 27 gnd 2.080806f +R28 26 27 2.224404 +C32 28 gnd 2.080806f +R29 27 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +C35 31 gnd 2.080806f +R32 30 31 2.224404 +C36 32 gnd 2.080806f +R33 31 32 2.224404 +C37 33 gnd 2.080806f +R34 32 33 2.224404 +C38 34 gnd 2.080806f +R35 33 34 2.224404 +C39 35 gnd 2.080806f +R36 34 35 2.224404 +R37 35 g2308_2 2.224404 +R38 g2308_2 g2308_1 2.224404 +.ends + +.subckt netg18 g18_1 g18_0 gnd +C1 g18_1 gnd 2.080806f +C2 g18_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g18_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +R38 g18_1 37 2.224404 +.ends + +.subckt netg146 g146_0 g146_1 gnd +C1 g146_0 gnd 2.080806f +C2 g146_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g146_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +R38 37 g146_1 2.224404 +.ends + +.subckt netg29 g29_0 g29_1 gnd +C1 g29_0 gnd 2.080806f +C2 g29_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g29_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +R39 g29_1 38 2.224404 +.ends + +.subckt netg26 g26_1 g26_0 gnd +C1 g26_1 gnd 2.080806f +C2 g26_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g26_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +R39 g26_1 38 2.224404 +.ends + +.subckt netg144 g144_0 g144_1 gnd +C1 g144_0 gnd 2.080806f +C2 g144_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g144_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +R39 38 g144_1 2.224404 +.ends + +.subckt netg2147 g2147_2 g2147_3 g2147_4 g2147_1 g2147_0 g2147_5 gnd +C1 g2147_2 gnd 2.080806f +C2 g2147_3 gnd 2.080806f +C3 g2147_4 gnd 2.080806f +C4 g2147_1 gnd 2.080806f +C5 g2147_0 gnd 2.080806f +C6 g2147_5 gnd 2.080806f +R1 g2147_0 g2147_2 2.224404 +C7 1 gnd 2.080806f +R2 g2147_2 1 2.224404 +R3 1 g2147_5 2.224404 +C8 2 gnd 2.080806f +R4 g2147_5 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +R6 3 g2147_4 2.224404 +C10 4 gnd 2.080806f +R7 g2147_4 4 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 23 22 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +R31 27 g2147_3 2.224404 +C34 28 gnd 2.080806f +R32 28 g2147_3 2.224404 +C35 29 gnd 2.080806f +R33 29 28 2.224404 +C36 30 gnd 2.080806f +R34 30 29 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +C39 33 gnd 2.080806f +R37 32 33 2.224404 +C40 34 gnd 2.080806f +R38 33 34 2.224404 +C41 35 gnd 2.080806f +R39 34 35 2.224404 +C42 36 gnd 2.080806f +R40 35 36 2.224404 +C43 37 gnd 2.080806f +R41 36 37 2.224404 +C44 38 gnd 2.080806f +R42 37 38 2.224404 +C45 39 gnd 2.080806f +R43 38 39 2.224404 +C46 40 gnd 2.080806f +R44 39 40 2.224404 +R45 40 g2147_1 2.224404 +.ends + +.subckt netg1710 g1710_4 g1710_2 g1710_3 g1710_5 g1710_1 g1710_0 gnd +C1 g1710_4 gnd 2.080806f +C2 g1710_2 gnd 2.080806f +C3 g1710_3 gnd 2.080806f +C4 g1710_5 gnd 2.080806f +C5 g1710_1 gnd 2.080806f +C6 g1710_0 gnd 2.080806f +R1 g1710_3 g1710_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g1710_0 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +R9 7 g1710_2 2.224404 +C14 8 gnd 2.080806f +R10 8 g1710_2 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g1710_1 2.224404 +C19 13 gnd 2.080806f +R16 13 g1710_1 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 36 35 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +R43 39 g1710_5 2.224404 +C46 40 gnd 2.080806f +R44 g1710_5 40 2.224404 +R45 40 g1710_4 2.224404 +.ends + +.subckt netg132 g132_0 g132_1 gnd +C1 g132_0 gnd 2.080806f +C2 g132_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g132_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +R40 39 g132_1 2.224404 +.ends + +.subckt netg7525 g7525_1 g7525_0 gnd +C1 g7525_1 gnd 2.080806f +C2 g7525_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7525_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +R40 g7525_1 39 2.224404 +.ends + +.subckt netg519 g519_5 g519_3 g519_6 g519_4 g519_1 g519_0 g519_2 gnd +C1 g519_5 gnd 2.080806f +C2 g519_3 gnd 2.080806f +C3 g519_6 gnd 2.080806f +C4 g519_4 gnd 2.080806f +C5 g519_1 gnd 2.080806f +C6 g519_0 gnd 2.080806f +C7 g519_2 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g519_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +C10 3 gnd 2.080806f +R3 2 3 2.224404 +C11 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g519_3 2.224404 +C12 5 gnd 2.080806f +R6 5 g519_0 2.224404 +C13 6 gnd 2.080806f +R7 6 5 2.224404 +C14 7 gnd 2.080806f +R8 7 6 2.224404 +C15 8 gnd 2.080806f +R9 8 7 2.224404 +C16 9 gnd 2.080806f +R10 9 8 2.224404 +C17 10 gnd 2.080806f +R11 10 9 2.224404 +C18 11 gnd 2.080806f +R12 11 10 2.224404 +C19 12 gnd 2.080806f +R13 12 11 2.224404 +C20 13 gnd 2.080806f +R14 13 12 2.224404 +C21 14 gnd 2.080806f +R15 14 13 2.224404 +C22 15 gnd 2.080806f +R16 15 14 2.224404 +C23 16 gnd 2.080806f +R17 16 15 2.224404 +R18 g519_1 16 2.224404 +C24 17 gnd 2.080806f +R19 17 g519_1 2.224404 +C25 18 gnd 2.080806f +R20 18 17 2.224404 +C26 19 gnd 2.080806f +R21 19 18 2.224404 +C27 20 gnd 2.080806f +R22 20 19 2.224404 +C28 21 gnd 2.080806f +R23 21 20 2.224404 +R24 g519_4 21 2.224404 +C29 22 gnd 2.080806f +R25 22 g519_4 2.224404 +R26 g519_6 22 2.224404 +C30 23 gnd 2.080806f +R27 g519_3 23 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +C32 25 gnd 2.080806f +R29 24 25 2.224404 +C33 26 gnd 2.080806f +R30 25 26 2.224404 +C34 27 gnd 2.080806f +R31 26 27 2.224404 +C35 28 gnd 2.080806f +R32 27 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +R39 34 g519_2 2.224404 +C42 35 gnd 2.080806f +R40 35 g519_2 2.224404 +C43 36 gnd 2.080806f +R41 36 35 2.224404 +C44 37 gnd 2.080806f +R42 37 36 2.224404 +R43 37 g519_5 2.224404 +.ends + +.subckt netg2175 g2175_4 g2175_6 g2175_5 g2175_3 g2175_2 g2175_1 g2175_0 gnd +C1 g2175_4 gnd 2.080806f +C2 g2175_6 gnd 2.080806f +C3 g2175_5 gnd 2.080806f +C4 g2175_3 gnd 2.080806f +C5 g2175_2 gnd 2.080806f +C6 g2175_1 gnd 2.080806f +C7 g2175_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g2175_0 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2175_1 2 2.224404 +C10 3 gnd 2.080806f +R4 g2175_1 3 2.224404 +R5 g2175_4 3 2.224404 +C11 4 gnd 2.080806f +R6 4 g2175_4 2.224404 +R7 g2175_6 4 2.224404 +C12 5 gnd 2.080806f +R8 5 g2175_1 2.224404 +C13 6 gnd 2.080806f +R9 6 5 2.224404 +R10 g2175_2 6 2.224404 +C14 7 gnd 2.080806f +R11 g2175_0 7 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +C16 9 gnd 2.080806f +R13 8 9 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +C21 14 gnd 2.080806f +R18 13 14 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 15 16 2.224404 +R21 16 g2175_3 2.224404 +C24 17 gnd 2.080806f +R22 16 17 2.224404 +C25 18 gnd 2.080806f +R23 17 18 2.224404 +C26 19 gnd 2.080806f +R24 18 19 2.224404 +C27 20 gnd 2.080806f +R25 19 20 2.224404 +C28 21 gnd 2.080806f +R26 20 21 2.224404 +C29 22 gnd 2.080806f +R27 21 22 2.224404 +C30 23 gnd 2.080806f +R28 22 23 2.224404 +C31 24 gnd 2.080806f +R29 23 24 2.224404 +C32 25 gnd 2.080806f +R30 24 25 2.224404 +C33 26 gnd 2.080806f +R31 25 26 2.224404 +C34 27 gnd 2.080806f +R32 26 27 2.224404 +C35 28 gnd 2.080806f +R33 27 28 2.224404 +C36 29 gnd 2.080806f +R34 28 29 2.224404 +C37 30 gnd 2.080806f +R35 30 29 2.224404 +C38 31 gnd 2.080806f +R36 30 31 2.224404 +C39 32 gnd 2.080806f +R37 31 32 2.224404 +C40 33 gnd 2.080806f +R38 32 33 2.224404 +C41 34 gnd 2.080806f +R39 33 34 2.224404 +C42 35 gnd 2.080806f +R40 34 35 2.224404 +C43 36 gnd 2.080806f +R41 35 36 2.224404 +C44 37 gnd 2.080806f +R42 36 37 2.224404 +C45 38 gnd 2.080806f +R43 37 38 2.224404 +C46 39 gnd 2.080806f +R44 38 39 2.224404 +C47 40 gnd 2.080806f +R45 39 40 2.224404 +R46 40 g2175_5 2.224404 +.ends + +.subckt netg1632 g1632_2 g1632_4 g1632_1 g1632_5 g1632_3 g1632_0 gnd +C1 g1632_2 gnd 2.080806f +C2 g1632_4 gnd 2.080806f +C3 g1632_1 gnd 2.080806f +C4 g1632_5 gnd 2.080806f +C5 g1632_3 gnd 2.080806f +C6 g1632_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1632_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 2 g1632_2 2.224404 +R4 g1632_2 g1632_1 2.224404 +C9 3 gnd 2.080806f +R5 g1632_0 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +R7 4 g1632_5 2.224404 +C11 5 gnd 2.080806f +R8 g1632_1 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 30 29 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +R43 39 g1632_4 2.224404 +C46 40 gnd 2.080806f +R44 g1632_4 40 2.224404 +R45 40 g1632_3 2.224404 +.ends + +.subckt netg32 g32_0 g32_1 g32_2 gnd +C1 g32_0 gnd 2.080806f +C2 g32_1 gnd 2.080806f +C3 g32_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g32_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g32_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g32_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +R40 g32_2 38 2.224404 +.ends + +.subckt netg7502 g7502_0 g7502_1 gnd +C1 g7502_0 gnd 2.080806f +C2 g7502_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7502_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +R40 g7502_1 39 2.224404 +.ends + +.subckt netg7522 g7522_0 g7522_1 gnd +C1 g7522_0 gnd 2.080806f +C2 g7522_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7522_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +R41 40 g7522_1 2.224404 +.ends + +.subckt netg7482 g7482_0 g7482_1 gnd +C1 g7482_0 gnd 2.080806f +C2 g7482_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7482_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +R41 40 g7482_1 2.224404 +.ends + +.subckt netg446 g446_1 g446_3 g446_0 g446_2 gnd +C1 g446_1 gnd 2.080806f +C2 g446_3 gnd 2.080806f +C3 g446_0 gnd 2.080806f +C4 g446_2 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g446_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 8 9 2.224404 +C14 10 gnd 2.080806f +R10 9 10 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 11 12 2.224404 +C17 13 gnd 2.080806f +R13 12 13 2.224404 +C18 14 gnd 2.080806f +R14 13 14 2.224404 +C19 15 gnd 2.080806f +R15 14 15 2.224404 +C20 16 gnd 2.080806f +R16 15 16 2.224404 +C21 17 gnd 2.080806f +R17 16 17 2.224404 +C22 18 gnd 2.080806f +R18 17 18 2.224404 +C23 19 gnd 2.080806f +R19 18 19 2.224404 +C24 20 gnd 2.080806f +R20 19 20 2.224404 +C25 21 gnd 2.080806f +R21 20 21 2.224404 +C26 22 gnd 2.080806f +R22 21 22 2.224404 +C27 23 gnd 2.080806f +R23 22 23 2.224404 +C28 24 gnd 2.080806f +R24 23 24 2.224404 +C29 25 gnd 2.080806f +R25 24 25 2.224404 +C30 26 gnd 2.080806f +R26 25 26 2.224404 +C31 27 gnd 2.080806f +R27 26 27 2.224404 +C32 28 gnd 2.080806f +R28 27 28 2.224404 +R29 g446_3 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +C35 31 gnd 2.080806f +R32 30 31 2.224404 +C36 32 gnd 2.080806f +R33 31 32 2.224404 +C37 33 gnd 2.080806f +R34 32 33 2.224404 +C38 34 gnd 2.080806f +R35 33 34 2.224404 +C39 35 gnd 2.080806f +R36 34 35 2.224404 +C40 36 gnd 2.080806f +R37 35 36 2.224404 +C41 37 gnd 2.080806f +R38 36 37 2.224404 +C42 38 gnd 2.080806f +R39 37 38 2.224404 +C43 39 gnd 2.080806f +R40 38 39 2.224404 +C44 40 gnd 2.080806f +R41 39 40 2.224404 +C45 41 gnd 2.080806f +R42 40 41 2.224404 +C46 42 gnd 2.080806f +R43 41 42 2.224404 +C47 43 gnd 2.080806f +R44 42 43 2.224404 +C48 44 gnd 2.080806f +R45 43 44 2.224404 +C49 45 gnd 2.080806f +R46 44 45 2.224404 +C50 46 gnd 2.080806f +R47 45 46 2.224404 +C51 47 gnd 2.080806f +R48 46 47 2.224404 +C52 48 gnd 2.080806f +R49 47 48 2.224404 +C53 49 gnd 2.080806f +R50 48 49 2.224404 +C54 50 gnd 2.080806f +R51 49 50 2.224404 +C55 51 gnd 2.080806f +R52 50 51 2.224404 +C56 52 gnd 2.080806f +R53 51 52 2.224404 +C57 53 gnd 2.080806f +R54 52 53 2.224404 +C58 54 gnd 2.080806f +R55 53 54 2.224404 +C59 55 gnd 2.080806f +R56 54 55 2.224404 +C60 56 gnd 2.080806f +R57 55 56 2.224404 +R58 56 g446_1 2.224404 +C61 57 gnd 2.080806f +R59 g446_1 57 2.224404 +R60 57 g446_2 2.224404 +.ends + +.subckt netg62 g62_1 g62_2 g62_0 gnd +C1 g62_1 gnd 2.080806f +C2 g62_2 gnd 2.080806f +C3 g62_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g62_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +R40 39 g62_1 2.224404 +R41 g62_1 g62_2 2.224404 +.ends + +.subckt netg24 g24_0 g24_1 gnd +C1 g24_0 gnd 2.080806f +C2 g24_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g24_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +R41 g24_1 40 2.224404 +.ends + +.subckt netg129 g129_0 g129_1 gnd +C1 g129_0 gnd 2.080806f +C2 g129_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g129_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +R41 40 g129_1 2.224404 +.ends + +.subckt netg130 g130_1 g130_0 gnd +C1 g130_1 gnd 2.080806f +C2 g130_0 gnd 2.080806f +.ends + +.subckt netg154 g154_1 g154_0 gnd +C1 g154_1 gnd 2.080806f +C2 g154_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g154_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +R41 40 g154_1 2.224404 +.ends + +.subckt netg2215 g2215_1 g2215_4 g2215_2 g2215_5 g2215_0 g2215_3 gnd +C1 g2215_1 gnd 2.080806f +C2 g2215_4 gnd 2.080806f +C3 g2215_2 gnd 2.080806f +C4 g2215_5 gnd 2.080806f +C5 g2215_0 gnd 2.080806f +C6 g2215_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2215_0 2.224404 +R2 g2215_3 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g2215_3 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g2215_1 5 2.224404 +R8 g2215_5 g2215_1 2.224404 +C12 6 gnd 2.080806f +R9 g2215_0 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 32 31 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 35 34 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +R43 g2215_4 39 2.224404 +C46 40 gnd 2.080806f +R44 39 40 2.224404 +C47 41 gnd 2.080806f +R45 40 41 2.224404 +C48 42 gnd 2.080806f +R46 41 42 2.224404 +C49 43 gnd 2.080806f +R47 42 43 2.224404 +C50 44 gnd 2.080806f +R48 43 44 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 45 46 2.224404 +C53 47 gnd 2.080806f +R51 47 46 2.224404 +C54 48 gnd 2.080806f +R52 48 47 2.224404 +R53 g2215_2 48 2.224404 +.ends + +.subckt netg63 g63_0 g63_2 g63_1 gnd +C1 g63_0 gnd 2.080806f +C2 g63_2 gnd 2.080806f +C3 g63_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g63_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g63_2 3 2.224404 +C7 4 gnd 2.080806f +R5 4 g63_2 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +R42 g63_1 40 2.224404 +.ends + +.subckt netg131 g131_0 g131_1 gnd +C1 g131_0 gnd 2.080806f +C2 g131_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g131_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +R42 g131_1 41 2.224404 +.ends + +.subckt netg7524 g7524_0 g7524_1 gnd +C1 g7524_0 gnd 2.080806f +C2 g7524_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7524_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +R43 g7524_1 42 2.224404 +.ends + +.subckt netg61 g61_1 g61_2 g61_0 gnd +C1 g61_1 gnd 2.080806f +C2 g61_2 gnd 2.080806f +C3 g61_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g61_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g61_2 2.224404 +C6 3 gnd 2.080806f +R4 3 g61_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +R43 g61_1 41 2.224404 +.ends + +.subckt netg25 g25_0 g25_1 gnd +C1 g25_0 gnd 2.080806f +C2 g25_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g25_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +R43 42 g25_1 2.224404 +.ends + +.subckt netg2127 g2127_2 g2127_5 g2127_3 g2127_4 g2127_0 g2127_1 gnd +C1 g2127_2 gnd 2.080806f +C2 g2127_5 gnd 2.080806f +C3 g2127_3 gnd 2.080806f +C4 g2127_4 gnd 2.080806f +C5 g2127_0 gnd 2.080806f +C6 g2127_1 gnd 2.080806f +R1 g2127_0 g2127_3 2.224404 +C7 1 gnd 2.080806f +R2 1 g2127_3 2.224404 +R3 1 g2127_1 2.224404 +C8 2 gnd 2.080806f +R4 g2127_3 2 2.224404 +C9 3 gnd 2.080806f +R5 2 3 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +R14 11 g2127_2 2.224404 +C18 12 gnd 2.080806f +R15 g2127_2 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 41 40 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 45 44 2.224404 +C52 46 gnd 2.080806f +R49 46 45 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +R51 47 g2127_5 2.224404 +C54 48 gnd 2.080806f +R52 48 g2127_5 2.224404 +C55 49 gnd 2.080806f +R53 49 48 2.224404 +C56 50 gnd 2.080806f +R54 50 49 2.224404 +R55 g2127_4 50 2.224404 +.ends + +.subckt netg28 g28_1 g28_0 gnd +C1 g28_1 gnd 2.080806f +C2 g28_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g28_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +R44 43 g28_1 2.224404 +.ends + +.subckt netg2 g2_1 g2_3 g2_2 g2_0 gnd +C1 g2_1 gnd 2.080806f +C2 g2_3 gnd 2.080806f +C3 g2_2 gnd 2.080806f +C4 g2_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g2_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +R5 4 g2_2 2.224404 +C9 5 gnd 2.080806f +R6 g2_2 5 2.224404 +C10 6 gnd 2.080806f +R7 5 6 2.224404 +C11 7 gnd 2.080806f +R8 6 7 2.224404 +C12 8 gnd 2.080806f +R9 7 8 2.224404 +C13 9 gnd 2.080806f +R10 8 9 2.224404 +C14 10 gnd 2.080806f +R11 9 10 2.224404 +C15 11 gnd 2.080806f +R12 10 11 2.224404 +C16 12 gnd 2.080806f +R13 11 12 2.224404 +C17 13 gnd 2.080806f +R14 12 13 2.224404 +C18 14 gnd 2.080806f +R15 13 14 2.224404 +C19 15 gnd 2.080806f +R16 14 15 2.224404 +C20 16 gnd 2.080806f +R17 15 16 2.224404 +C21 17 gnd 2.080806f +R18 16 17 2.224404 +C22 18 gnd 2.080806f +R19 17 18 2.224404 +C23 19 gnd 2.080806f +R20 18 19 2.224404 +C24 20 gnd 2.080806f +R21 19 20 2.224404 +C25 21 gnd 2.080806f +R22 20 21 2.224404 +C26 22 gnd 2.080806f +R23 21 22 2.224404 +C27 23 gnd 2.080806f +R24 22 23 2.224404 +C28 24 gnd 2.080806f +R25 23 24 2.224404 +C29 25 gnd 2.080806f +R26 24 25 2.224404 +C30 26 gnd 2.080806f +R27 25 26 2.224404 +C31 27 gnd 2.080806f +R28 26 27 2.224404 +C32 28 gnd 2.080806f +R29 27 28 2.224404 +C33 29 gnd 2.080806f +R30 28 29 2.224404 +C34 30 gnd 2.080806f +R31 29 30 2.224404 +C35 31 gnd 2.080806f +R32 30 31 2.224404 +C36 32 gnd 2.080806f +R33 31 32 2.224404 +C37 33 gnd 2.080806f +R34 32 33 2.224404 +C38 34 gnd 2.080806f +R35 33 34 2.224404 +C39 35 gnd 2.080806f +R36 34 35 2.224404 +C40 36 gnd 2.080806f +R37 35 36 2.224404 +C41 37 gnd 2.080806f +R38 36 37 2.224404 +C42 38 gnd 2.080806f +R39 37 38 2.224404 +C43 39 gnd 2.080806f +R40 38 39 2.224404 +C44 40 gnd 2.080806f +R41 39 40 2.224404 +C45 41 gnd 2.080806f +R42 40 41 2.224404 +R43 41 g2_1 2.224404 +R44 41 g2_3 2.224404 +.ends + +.subckt netg19 g19_0 g19_1 gnd +C1 g19_0 gnd 2.080806f +C2 g19_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g19_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g19_1 43 2.224404 +.ends + +.subckt netg141 g141_1 g141_0 gnd +C1 g141_1 gnd 2.080806f +C2 g141_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g141_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g141_1 43 2.224404 +.ends + +.subckt netg7518 g7518_1 g7518_0 gnd +C1 g7518_1 gnd 2.080806f +C2 g7518_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7518_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g7518_1 43 2.224404 +.ends + +.subckt netg5 g5_0 g5_2 g5_1 gnd +C1 g5_0 gnd 2.080806f +C2 g5_2 gnd 2.080806f +C3 g5_1 gnd 2.080806f +R1 g5_0 g5_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g5_2 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +R44 g5_1 42 2.224404 +.ends + +.subckt netg66 g66_2 g66_0 g66_1 gnd +C1 g66_2 gnd 2.080806f +C2 g66_0 gnd 2.080806f +C3 g66_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g66_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +R7 g66_1 6 2.224404 +C10 7 gnd 2.080806f +R8 7 g66_0 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +R53 g66_2 51 2.224404 +.ends + +.subckt netg7457 g7457_0 g7457_1 gnd +C1 g7457_0 gnd 2.080806f +C2 g7457_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7457_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +R44 43 g7457_1 2.224404 +.ends + +.subckt netg27 g27_1 g27_0 gnd +C1 g27_1 gnd 2.080806f +C2 g27_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g27_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +R45 g27_1 44 2.224404 +.ends + +.subckt netg6787 g6787_1 g6787_2 g6787_0 gnd +C1 g6787_1 gnd 2.080806f +C2 g6787_2 gnd 2.080806f +C3 g6787_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g6787_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +R11 10 g6787_2 2.224404 +C14 11 gnd 2.080806f +R12 11 g6787_0 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +R45 g6787_1 43 2.224404 +.ends + +.subckt netg49 g49_4 g49_0 g49_2 g49_3 g49_1 gnd +C1 g49_4 gnd 2.080806f +C2 g49_0 gnd 2.080806f +C3 g49_2 gnd 2.080806f +C4 g49_3 gnd 2.080806f +C5 g49_1 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g49_0 1 2.224404 +R2 1 g49_4 2.224404 +C7 2 gnd 2.080806f +R3 2 g49_4 2.224404 +C8 3 gnd 2.080806f +R4 2 3 2.224404 +C9 4 gnd 2.080806f +R5 3 4 2.224404 +R6 4 g49_3 2.224404 +R7 g49_3 g49_2 2.224404 +C10 5 gnd 2.080806f +R8 5 g49_0 2.224404 +C11 6 gnd 2.080806f +R9 6 5 2.224404 +C12 7 gnd 2.080806f +R10 7 6 2.224404 +C13 8 gnd 2.080806f +R11 8 7 2.224404 +C14 9 gnd 2.080806f +R12 9 8 2.224404 +C15 10 gnd 2.080806f +R13 10 9 2.224404 +C16 11 gnd 2.080806f +R14 11 10 2.224404 +C17 12 gnd 2.080806f +R15 12 11 2.224404 +C18 13 gnd 2.080806f +R16 13 12 2.224404 +C19 14 gnd 2.080806f +R17 14 13 2.224404 +C20 15 gnd 2.080806f +R18 15 14 2.224404 +C21 16 gnd 2.080806f +R19 16 15 2.224404 +C22 17 gnd 2.080806f +R20 17 16 2.224404 +C23 18 gnd 2.080806f +R21 18 17 2.224404 +C24 19 gnd 2.080806f +R22 19 18 2.224404 +C25 20 gnd 2.080806f +R23 20 19 2.224404 +C26 21 gnd 2.080806f +R24 21 20 2.224404 +C27 22 gnd 2.080806f +R25 22 21 2.224404 +C28 23 gnd 2.080806f +R26 23 22 2.224404 +C29 24 gnd 2.080806f +R27 24 23 2.224404 +C30 25 gnd 2.080806f +R28 25 24 2.224404 +C31 26 gnd 2.080806f +R29 26 25 2.224404 +C32 27 gnd 2.080806f +R30 27 26 2.224404 +C33 28 gnd 2.080806f +R31 28 27 2.224404 +C34 29 gnd 2.080806f +R32 29 28 2.224404 +C35 30 gnd 2.080806f +R33 30 29 2.224404 +C36 31 gnd 2.080806f +R34 31 30 2.224404 +C37 32 gnd 2.080806f +R35 32 31 2.224404 +C38 33 gnd 2.080806f +R36 33 32 2.224404 +C39 34 gnd 2.080806f +R37 34 33 2.224404 +C40 35 gnd 2.080806f +R38 35 34 2.224404 +C41 36 gnd 2.080806f +R39 36 35 2.224404 +C42 37 gnd 2.080806f +R40 37 36 2.224404 +C43 38 gnd 2.080806f +R41 38 37 2.224404 +C44 39 gnd 2.080806f +R42 39 38 2.224404 +C45 40 gnd 2.080806f +R43 40 39 2.224404 +C46 41 gnd 2.080806f +R44 41 40 2.224404 +C47 42 gnd 2.080806f +R45 42 41 2.224404 +C48 43 gnd 2.080806f +R46 43 42 2.224404 +R47 g49_1 43 2.224404 +.ends + +.subckt netg17 g17_0 g17_1 gnd +C1 g17_0 gnd 2.080806f +C2 g17_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g17_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +R45 44 g17_1 2.224404 +.ends + +.subckt netg76 g76_0 g76_1 gnd +C1 g76_0 gnd 2.080806f +C2 g76_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g76_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +R45 44 g76_1 2.224404 +.ends + +.subckt netg7536 g7536_0 g7536_1 gnd +C1 g7536_0 gnd 2.080806f +C2 g7536_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7536_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +R45 44 g7536_1 2.224404 +.ends + +.subckt netg7464 g7464_1 g7464_0 gnd +C1 g7464_1 gnd 2.080806f +C2 g7464_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7464_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +R46 g7464_1 45 2.224404 +.ends + +.subckt netg7468 g7468_1 g7468_0 gnd +C1 g7468_1 gnd 2.080806f +C2 g7468_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7468_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +R46 45 g7468_1 2.224404 +.ends + +.subckt netg7509 g7509_1 g7509_0 gnd +C1 g7509_1 gnd 2.080806f +C2 g7509_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7509_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +R47 46 g7509_1 2.224404 +.ends + +.subckt netg6771 g6771_4 g6771_6 g6771_5 g6771_0 g6771_3 g6771_1 g6771_2 gnd +C1 g6771_4 gnd 2.080806f +C2 g6771_6 gnd 2.080806f +C3 g6771_5 gnd 2.080806f +C4 g6771_0 gnd 2.080806f +C5 g6771_3 gnd 2.080806f +C6 g6771_1 gnd 2.080806f +C7 g6771_2 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g6771_0 1 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +C10 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g6771_5 3 2.224404 +C11 4 gnd 2.080806f +R5 4 g6771_5 2.224404 +R6 g6771_3 4 2.224404 +R7 g6771_6 g6771_3 2.224404 +C12 5 gnd 2.080806f +R8 g6771_3 5 2.224404 +R9 5 g6771_2 2.224404 +C13 6 gnd 2.080806f +R10 6 g6771_6 2.224404 +C14 7 gnd 2.080806f +R11 7 6 2.224404 +C15 8 gnd 2.080806f +R12 8 7 2.224404 +C16 9 gnd 2.080806f +R13 9 8 2.224404 +C17 10 gnd 2.080806f +R14 10 9 2.224404 +C18 11 gnd 2.080806f +R15 11 10 2.224404 +C19 12 gnd 2.080806f +R16 12 11 2.224404 +C20 13 gnd 2.080806f +R17 13 12 2.224404 +C21 14 gnd 2.080806f +R18 14 13 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 16 15 2.224404 +C24 17 gnd 2.080806f +R21 17 16 2.224404 +C25 18 gnd 2.080806f +R22 18 17 2.224404 +C26 19 gnd 2.080806f +R23 19 18 2.224404 +C27 20 gnd 2.080806f +R24 20 19 2.224404 +C28 21 gnd 2.080806f +R25 21 20 2.224404 +C29 22 gnd 2.080806f +R26 22 21 2.224404 +C30 23 gnd 2.080806f +R27 23 22 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +R29 g6771_4 24 2.224404 +C32 25 gnd 2.080806f +R30 g6771_4 25 2.224404 +C33 26 gnd 2.080806f +R31 26 25 2.224404 +C34 27 gnd 2.080806f +R32 27 26 2.224404 +C35 28 gnd 2.080806f +R33 28 27 2.224404 +C36 29 gnd 2.080806f +R34 29 28 2.224404 +C37 30 gnd 2.080806f +R35 29 30 2.224404 +C38 31 gnd 2.080806f +R36 30 31 2.224404 +C39 32 gnd 2.080806f +R37 31 32 2.224404 +C40 33 gnd 2.080806f +R38 32 33 2.224404 +C41 34 gnd 2.080806f +R39 33 34 2.224404 +C42 35 gnd 2.080806f +R40 35 34 2.224404 +C43 36 gnd 2.080806f +R41 36 35 2.224404 +C44 37 gnd 2.080806f +R42 37 36 2.224404 +C45 38 gnd 2.080806f +R43 37 38 2.224404 +C46 39 gnd 2.080806f +R44 38 39 2.224404 +C47 40 gnd 2.080806f +R45 39 40 2.224404 +C48 41 gnd 2.080806f +R46 40 41 2.224404 +C49 42 gnd 2.080806f +R47 41 42 2.224404 +C50 43 gnd 2.080806f +R48 42 43 2.224404 +C51 44 gnd 2.080806f +R49 44 43 2.224404 +C52 45 gnd 2.080806f +R50 44 45 2.224404 +R51 g6771_1 45 2.224404 +.ends + +.subckt netg7505 g7505_1 g7505_0 gnd +C1 g7505_1 gnd 2.080806f +C2 g7505_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7505_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +R47 g7505_1 46 2.224404 +.ends + +.subckt netg118 g118_0 g118_1 gnd +C1 g118_0 gnd 2.080806f +C2 g118_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g118_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +R47 46 g118_1 2.224404 +.ends + +.subckt netg7463 g7463_0 g7463_1 gnd +C1 g7463_0 gnd 2.080806f +C2 g7463_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7463_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +R47 g7463_1 46 2.224404 +.ends + +.subckt netg7469 g7469_0 g7469_1 gnd +C1 g7469_0 gnd 2.080806f +C2 g7469_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7469_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +R48 47 g7469_1 2.224404 +.ends + +.subckt netg7508 g7508_1 g7508_0 gnd +C1 g7508_1 gnd 2.080806f +C2 g7508_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7508_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +R48 47 g7508_1 2.224404 +.ends + +.subckt netg7544 g7544_1 g7544_0 gnd +C1 g7544_1 gnd 2.080806f +C2 g7544_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7544_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +R48 g7544_1 47 2.224404 +.ends + +.subckt netg5370 g5370_3 g5370_2 g5370_9 g5370_8 g5370_7 g5370_6 g5370_0 g5370_1 g5370_4 g5370_5 gnd +C1 g5370_3 gnd 2.080806f +C2 g5370_2 gnd 2.080806f +C3 g5370_9 gnd 2.080806f +C4 g5370_8 gnd 2.080806f +C5 g5370_7 gnd 2.080806f +C6 g5370_6 gnd 2.080806f +C7 g5370_0 gnd 2.080806f +C8 g5370_1 gnd 2.080806f +C9 g5370_4 gnd 2.080806f +C10 g5370_5 gnd 2.080806f +C11 1 gnd 2.080806f +R1 g5370_0 1 2.224404 +C12 2 gnd 2.080806f +R2 1 2 2.224404 +C13 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g5370_7 3 2.224404 +C14 4 gnd 2.080806f +R5 4 g5370_0 2.224404 +C15 5 gnd 2.080806f +R6 4 5 2.224404 +R7 g5370_3 5 2.224404 +C16 6 gnd 2.080806f +R8 6 g5370_3 2.224404 +C17 7 gnd 2.080806f +R9 7 6 2.224404 +C18 8 gnd 2.080806f +R10 7 8 2.224404 +C19 9 gnd 2.080806f +R11 8 9 2.224404 +C20 10 gnd 2.080806f +R12 9 10 2.224404 +R13 10 g5370_5 2.224404 +C21 11 gnd 2.080806f +R14 9 11 2.224404 +C22 12 gnd 2.080806f +R15 11 12 2.224404 +R16 12 g5370_8 2.224404 +C23 13 gnd 2.080806f +R17 g5370_8 13 2.224404 +C24 14 gnd 2.080806f +R18 13 14 2.224404 +C25 15 gnd 2.080806f +R19 14 15 2.224404 +C26 16 gnd 2.080806f +R20 15 16 2.224404 +R21 g5370_2 16 2.224404 +C27 17 gnd 2.080806f +R22 g5370_2 17 2.224404 +R23 g5370_4 17 2.224404 +R24 g5370_9 7 2.224404 +R25 g5370_6 8 2.224404 +C28 18 gnd 2.080806f +R26 g5370_4 18 2.224404 +C29 19 gnd 2.080806f +R27 18 19 2.224404 +C30 20 gnd 2.080806f +R28 19 20 2.224404 +C31 21 gnd 2.080806f +R29 21 20 2.224404 +C32 22 gnd 2.080806f +R30 22 21 2.224404 +C33 23 gnd 2.080806f +R31 23 22 2.224404 +C34 24 gnd 2.080806f +R32 24 23 2.224404 +C35 25 gnd 2.080806f +R33 24 25 2.224404 +C36 26 gnd 2.080806f +R34 26 25 2.224404 +C37 27 gnd 2.080806f +R35 27 26 2.224404 +C38 28 gnd 2.080806f +R36 28 27 2.224404 +C39 29 gnd 2.080806f +R37 28 29 2.224404 +C40 30 gnd 2.080806f +R38 29 30 2.224404 +C41 31 gnd 2.080806f +R39 30 31 2.224404 +C42 32 gnd 2.080806f +R40 32 31 2.224404 +C43 33 gnd 2.080806f +R41 33 32 2.224404 +C44 34 gnd 2.080806f +R42 34 33 2.224404 +C45 35 gnd 2.080806f +R43 35 34 2.224404 +C46 36 gnd 2.080806f +R44 36 35 2.224404 +C47 37 gnd 2.080806f +R45 37 36 2.224404 +C48 38 gnd 2.080806f +R46 38 37 2.224404 +C49 39 gnd 2.080806f +R47 39 38 2.224404 +C50 40 gnd 2.080806f +R48 40 39 2.224404 +C51 41 gnd 2.080806f +R49 41 40 2.224404 +C52 42 gnd 2.080806f +R50 42 41 2.224404 +C53 43 gnd 2.080806f +R51 43 42 2.224404 +C54 44 gnd 2.080806f +R52 43 44 2.224404 +C55 45 gnd 2.080806f +R53 44 45 2.224404 +C56 46 gnd 2.080806f +R54 46 45 2.224404 +C57 47 gnd 2.080806f +R55 47 46 2.224404 +C58 48 gnd 2.080806f +R56 48 47 2.224404 +C59 49 gnd 2.080806f +R57 49 48 2.224404 +C60 50 gnd 2.080806f +R58 50 49 2.224404 +C61 51 gnd 2.080806f +R59 51 50 2.224404 +C62 52 gnd 2.080806f +R60 52 51 2.224404 +C63 53 gnd 2.080806f +R61 53 52 2.224404 +C64 54 gnd 2.080806f +R62 54 53 2.224404 +C65 55 gnd 2.080806f +R63 55 54 2.224404 +C66 56 gnd 2.080806f +R64 55 56 2.224404 +C67 57 gnd 2.080806f +R65 57 56 2.224404 +R66 57 g5370_1 2.224404 +.ends + +.subckt netg1698 g1698_2 g1698_5 g1698_1 g1698_3 g1698_0 g1698_4 gnd +C1 g1698_2 gnd 2.080806f +C2 g1698_5 gnd 2.080806f +C3 g1698_1 gnd 2.080806f +C4 g1698_3 gnd 2.080806f +C5 g1698_0 gnd 2.080806f +C6 g1698_4 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1698_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +C11 5 gnd 2.080806f +R5 4 5 2.224404 +C12 6 gnd 2.080806f +R6 5 6 2.224404 +C13 7 gnd 2.080806f +R7 6 7 2.224404 +C14 8 gnd 2.080806f +R8 7 8 2.224404 +C15 9 gnd 2.080806f +R9 8 9 2.224404 +C16 10 gnd 2.080806f +R10 9 10 2.224404 +R11 10 g1698_2 2.224404 +C17 11 gnd 2.080806f +R12 11 g1698_0 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +C19 13 gnd 2.080806f +R14 13 12 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +C21 15 gnd 2.080806f +R16 15 14 2.224404 +C22 16 gnd 2.080806f +R17 16 15 2.224404 +C23 17 gnd 2.080806f +R18 17 16 2.224404 +C24 18 gnd 2.080806f +R19 18 17 2.224404 +C25 19 gnd 2.080806f +R20 19 18 2.224404 +C26 20 gnd 2.080806f +R21 20 19 2.224404 +C27 21 gnd 2.080806f +R22 21 20 2.224404 +C28 22 gnd 2.080806f +R23 22 21 2.224404 +C29 23 gnd 2.080806f +R24 23 22 2.224404 +C30 24 gnd 2.080806f +R25 24 23 2.224404 +R26 g1698_3 24 2.224404 +C31 25 gnd 2.080806f +R27 25 g1698_3 2.224404 +C32 26 gnd 2.080806f +R28 26 25 2.224404 +C33 27 gnd 2.080806f +R29 27 26 2.224404 +C34 28 gnd 2.080806f +R30 28 27 2.224404 +C35 29 gnd 2.080806f +R31 29 28 2.224404 +C36 30 gnd 2.080806f +R32 30 29 2.224404 +C37 31 gnd 2.080806f +R33 31 30 2.224404 +C38 32 gnd 2.080806f +R34 32 31 2.224404 +C39 33 gnd 2.080806f +R35 33 32 2.224404 +C40 34 gnd 2.080806f +R36 34 33 2.224404 +C41 35 gnd 2.080806f +R37 35 34 2.224404 +C42 36 gnd 2.080806f +R38 36 35 2.224404 +C43 37 gnd 2.080806f +R39 37 36 2.224404 +C44 38 gnd 2.080806f +R40 38 37 2.224404 +C45 39 gnd 2.080806f +R41 39 38 2.224404 +C46 40 gnd 2.080806f +R42 40 39 2.224404 +R43 g1698_4 40 2.224404 +C47 41 gnd 2.080806f +R44 41 g1698_4 2.224404 +R45 g1698_1 41 2.224404 +C48 42 gnd 2.080806f +R46 42 g1698_1 2.224404 +C49 43 gnd 2.080806f +R47 43 42 2.224404 +R48 g1698_5 43 2.224404 +.ends + +.subckt netg23 g23_1 g23_0 gnd +C1 g23_1 gnd 2.080806f +C2 g23_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g23_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +R48 g23_1 47 2.224404 +.ends + +.subckt netg7489 g7489_1 g7489_0 gnd +C1 g7489_1 gnd 2.080806f +C2 g7489_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7489_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +R48 g7489_1 47 2.224404 +.ends + +.subckt netg121 g121_1 g121_0 gnd +C1 g121_1 gnd 2.080806f +C2 g121_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g121_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +R48 47 g121_1 2.224404 +.ends + +.subckt netg7461 g7461_0 g7461_1 gnd +C1 g7461_0 gnd 2.080806f +C2 g7461_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7461_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +R48 g7461_1 47 2.224404 +.ends + +.subckt netg7459 g7459_1 g7459_0 gnd +C1 g7459_1 gnd 2.080806f +C2 g7459_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7459_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +R48 g7459_1 47 2.224404 +.ends + +.subckt netg7481 g7481_1 g7481_0 gnd +C1 g7481_1 gnd 2.080806f +C2 g7481_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7481_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +R48 47 g7481_1 2.224404 +.ends + +.subckt netg7447 g7447_1 g7447_0 gnd +C1 g7447_1 gnd 2.080806f +C2 g7447_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7447_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +R49 48 g7447_1 2.224404 +.ends + +.subckt netg7523 g7523_1 g7523_0 gnd +C1 g7523_1 gnd 2.080806f +C2 g7523_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7523_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g7523_1 48 2.224404 +.ends + +.subckt netg7446 g7446_0 g7446_1 gnd +C1 g7446_0 gnd 2.080806f +C2 g7446_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7446_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g7446_1 48 2.224404 +.ends + +.subckt netg22 g22_1 g22_0 gnd +C1 g22_1 gnd 2.080806f +C2 g22_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g22_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g22_1 48 2.224404 +.ends + +.subckt netg50 g50_1 g50_0 g50_2 gnd +C1 g50_1 gnd 2.080806f +C2 g50_0 gnd 2.080806f +C3 g50_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g50_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 46 47 2.224404 +R48 47 g50_1 2.224404 +R49 g50_1 g50_2 2.224404 +.ends + +.subckt netg157 g157_1 g157_0 gnd +C1 g157_1 gnd 2.080806f +C2 g157_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g157_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g157_1 48 2.224404 +.ends + +.subckt netg7452 g7452_1 g7452_0 gnd +C1 g7452_1 gnd 2.080806f +C2 g7452_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7452_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g7452_1 48 2.224404 +.ends + +.subckt netg7543 g7543_1 g7543_0 gnd +C1 g7543_1 gnd 2.080806f +C2 g7543_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7543_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g7543_1 48 2.224404 +.ends + +.subckt netg148 g148_0 g148_1 gnd +C1 g148_0 gnd 2.080806f +C2 g148_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g148_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +R49 g148_1 48 2.224404 +.ends + +.subckt netg2244 g2244_4 g2244_2 g2244_1 g2244_0 g2244_5 g2244_3 gnd +C1 g2244_4 gnd 2.080806f +C2 g2244_2 gnd 2.080806f +C3 g2244_1 gnd 2.080806f +C4 g2244_0 gnd 2.080806f +C5 g2244_5 gnd 2.080806f +C6 g2244_3 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2244_0 2.224404 +R2 g2244_5 1 2.224404 +C8 2 gnd 2.080806f +R3 2 g2244_5 2.224404 +C9 3 gnd 2.080806f +R4 2 3 2.224404 +R5 g2244_2 3 2.224404 +C10 4 gnd 2.080806f +R6 g2244_5 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g2244_1 2.224404 +C15 9 gnd 2.080806f +R12 9 g2244_2 2.224404 +C16 10 gnd 2.080806f +R13 10 9 2.224404 +C17 11 gnd 2.080806f +R14 11 10 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +R18 g2244_4 14 2.224404 +C21 15 gnd 2.080806f +R19 g2244_1 15 2.224404 +C22 16 gnd 2.080806f +R20 15 16 2.224404 +C23 17 gnd 2.080806f +R21 16 17 2.224404 +C24 18 gnd 2.080806f +R22 17 18 2.224404 +C25 19 gnd 2.080806f +R23 18 19 2.224404 +C26 20 gnd 2.080806f +R24 19 20 2.224404 +C27 21 gnd 2.080806f +R25 20 21 2.224404 +C28 22 gnd 2.080806f +R26 21 22 2.224404 +C29 23 gnd 2.080806f +R27 22 23 2.224404 +C30 24 gnd 2.080806f +R28 23 24 2.224404 +C31 25 gnd 2.080806f +R29 24 25 2.224404 +C32 26 gnd 2.080806f +R30 25 26 2.224404 +C33 27 gnd 2.080806f +R31 26 27 2.224404 +C34 28 gnd 2.080806f +R32 27 28 2.224404 +C35 29 gnd 2.080806f +R33 28 29 2.224404 +C36 30 gnd 2.080806f +R34 29 30 2.224404 +C37 31 gnd 2.080806f +R35 30 31 2.224404 +C38 32 gnd 2.080806f +R36 31 32 2.224404 +C39 33 gnd 2.080806f +R37 32 33 2.224404 +C40 34 gnd 2.080806f +R38 33 34 2.224404 +C41 35 gnd 2.080806f +R39 34 35 2.224404 +C42 36 gnd 2.080806f +R40 35 36 2.224404 +C43 37 gnd 2.080806f +R41 36 37 2.224404 +C44 38 gnd 2.080806f +R42 37 38 2.224404 +C45 39 gnd 2.080806f +R43 38 39 2.224404 +C46 40 gnd 2.080806f +R44 39 40 2.224404 +C47 41 gnd 2.080806f +R45 40 41 2.224404 +C48 42 gnd 2.080806f +R46 41 42 2.224404 +C49 43 gnd 2.080806f +R47 42 43 2.224404 +C50 44 gnd 2.080806f +R48 43 44 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 45 46 2.224404 +C53 47 gnd 2.080806f +R51 46 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +R54 49 g2244_3 2.224404 +.ends + +.subckt netg7443 g7443_1 g7443_0 gnd +C1 g7443_1 gnd 2.080806f +C2 g7443_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7443_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +R50 49 g7443_1 2.224404 +.ends + +.subckt netg158 g158_1 g158_0 gnd +C1 g158_1 gnd 2.080806f +C2 g158_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g158_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +R50 g158_1 49 2.224404 +.ends + +.subckt netg7453 g7453_0 g7453_1 gnd +C1 g7453_0 gnd 2.080806f +C2 g7453_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7453_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +R50 49 g7453_1 2.224404 +.ends + +.subckt netg190 g190_1 g190_2 g190_0 gnd +C1 g190_1 gnd 2.080806f +C2 g190_2 gnd 2.080806f +C3 g190_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g190_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +R46 g190_2 45 2.224404 +C49 46 gnd 2.080806f +R47 46 g190_2 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +R51 49 g190_1 2.224404 +.ends + +.subckt netg1704 g1704_5 g1704_1 g1704_2 g1704_0 g1704_4 g1704_3 gnd +C1 g1704_5 gnd 2.080806f +C2 g1704_1 gnd 2.080806f +C3 g1704_2 gnd 2.080806f +C4 g1704_0 gnd 2.080806f +C5 g1704_4 gnd 2.080806f +C6 g1704_3 gnd 2.080806f +R1 g1704_1 g1704_0 2.224404 +C7 1 gnd 2.080806f +R2 g1704_0 1 2.224404 +R3 1 g1704_3 2.224404 +C8 2 gnd 2.080806f +R4 g1704_0 2 2.224404 +C9 3 gnd 2.080806f +R5 3 2 2.224404 +C10 4 gnd 2.080806f +R6 3 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g1704_2 2.224404 +C19 13 gnd 2.080806f +R16 13 g1704_2 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 19 18 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 44 43 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 46 45 2.224404 +R50 46 g1704_4 2.224404 +C53 47 gnd 2.080806f +R51 g1704_4 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 50 51 2.224404 +C58 52 gnd 2.080806f +R56 51 52 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +R62 57 g1704_5 2.224404 +.ends + +.subckt netg7530 g7530_1 g7530_0 gnd +C1 g7530_1 gnd 2.080806f +C2 g7530_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7530_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +R51 50 g7530_1 2.224404 +.ends + +.subckt netg149 g149_1 g149_0 gnd +C1 g149_1 gnd 2.080806f +C2 g149_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g149_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +R51 50 g149_1 2.224404 +.ends + +.subckt netg7542 g7542_1 g7542_0 gnd +C1 g7542_1 gnd 2.080806f +C2 g7542_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7542_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +R51 50 g7542_1 2.224404 +.ends + +.subckt netg189 g189_0 g189_2 g189_1 gnd +C1 g189_0 gnd 2.080806f +C2 g189_2 gnd 2.080806f +C3 g189_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g189_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g189_2 3 2.224404 +C7 4 gnd 2.080806f +R5 g189_0 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +R51 49 g189_1 2.224404 +.ends + +.subckt netg7462 g7462_0 g7462_1 gnd +C1 g7462_0 gnd 2.080806f +C2 g7462_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7462_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +R51 g7462_1 50 2.224404 +.ends + +.subckt netg119 g119_1 g119_0 gnd +C1 g119_1 gnd 2.080806f +C2 g119_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g119_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +R51 50 g119_1 2.224404 +.ends + +.subckt netg7487 g7487_1 g7487_0 gnd +C1 g7487_1 gnd 2.080806f +C2 g7487_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7487_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +R52 g7487_1 51 2.224404 +.ends + +.subckt netg159 g159_0 g159_1 gnd +C1 g159_0 gnd 2.080806f +C2 g159_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g159_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +R52 g159_1 51 2.224404 +.ends + +.subckt netg163 g163_0 g163_1 gnd +C1 g163_0 gnd 2.080806f +C2 g163_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g163_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +R52 51 g163_1 2.224404 +.ends + +.subckt netg170 g170_1 g170_2 gnd +C1 g170_1 gnd 2.080806f +C2 g170_2 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g170_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +R53 52 g170_1 2.224404 +.ends + +.subckt netg7485 g7485_0 g7485_1 gnd +C1 g7485_0 gnd 2.080806f +C2 g7485_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7485_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g7485_1 52 2.224404 +.ends + +.subckt netg7472 g7472_1 g7472_0 gnd +C1 g7472_1 gnd 2.080806f +C2 g7472_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7472_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g7472_1 52 2.224404 +.ends + +.subckt netg7488 g7488_1 g7488_0 gnd +C1 g7488_1 gnd 2.080806f +C2 g7488_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7488_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g7488_1 52 2.224404 +.ends + +.subckt netg7480 g7480_0 g7480_1 gnd +C1 g7480_0 gnd 2.080806f +C2 g7480_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7480_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g7480_1 52 2.224404 +.ends + +.subckt netg51 g51_2 g51_1 g51_0 gnd +C1 g51_2 gnd 2.080806f +C2 g51_1 gnd 2.080806f +C3 g51_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g51_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g51_1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g51_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +R54 g51_2 52 2.224404 +.ends + +.subckt netg7477 g7477_0 g7477_1 gnd +C1 g7477_0 gnd 2.080806f +C2 g7477_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7477_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g7477_1 52 2.224404 +.ends + +.subckt netg2141 g2141_3 g2141_2 g2141_0 g2141_1 g2141_4 g2141_5 gnd +C1 g2141_3 gnd 2.080806f +C2 g2141_2 gnd 2.080806f +C3 g2141_0 gnd 2.080806f +C4 g2141_1 gnd 2.080806f +C5 g2141_4 gnd 2.080806f +C6 g2141_5 gnd 2.080806f +R1 g2141_4 g2141_0 2.224404 +C7 1 gnd 2.080806f +R2 1 g2141_4 2.224404 +C8 2 gnd 2.080806f +R3 2 1 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +R7 g2141_5 5 2.224404 +R8 g2141_3 g2141_5 2.224404 +C12 6 gnd 2.080806f +R9 g2141_0 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 12 11 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 36 35 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 40 39 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +R46 42 g2141_1 2.224404 +C49 43 gnd 2.080806f +R47 43 g2141_1 2.224404 +C50 44 gnd 2.080806f +R48 43 44 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 45 46 2.224404 +C53 47 gnd 2.080806f +R51 46 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 51 50 2.224404 +C58 52 gnd 2.080806f +R56 51 52 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +R61 g2141_2 56 2.224404 +.ends + +.subckt netg162 g162_1 g162_0 gnd +C1 g162_1 gnd 2.080806f +C2 g162_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g162_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +R53 g162_1 52 2.224404 +.ends + +.subckt netg193 g193_1 g193_2 g193_0 gnd +C1 g193_1 gnd 2.080806f +C2 g193_2 gnd 2.080806f +C3 g193_0 gnd 2.080806f +R1 g193_1 g193_0 2.224404 +C4 1 gnd 2.080806f +R2 g193_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +R54 52 g193_2 2.224404 +.ends + +.subckt netg151 g151_0 g151_1 gnd +C1 g151_0 gnd 2.080806f +C2 g151_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g151_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +R54 g151_1 53 2.224404 +.ends + +.subckt netg161 g161_0 g161_1 gnd +C1 g161_0 gnd 2.080806f +C2 g161_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g161_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +R54 53 g161_1 2.224404 +.ends + +.subckt netg155 g155_1 g155_0 gnd +C1 g155_1 gnd 2.080806f +C2 g155_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g155_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +R56 g155_1 55 2.224404 +.ends + +.subckt netg171 g171_2 g171_0 g171_1 gnd +C1 g171_2 gnd 2.080806f +C2 g171_0 gnd 2.080806f +C3 g171_1 gnd 2.080806f +R1 g171_0 g171_1 2.224404 +C4 1 gnd 2.080806f +R2 g171_1 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +R54 52 g171_2 2.224404 +.ends + +.subckt netg153 g153_1 g153_0 gnd +C1 g153_1 gnd 2.080806f +C2 g153_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g153_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +R54 53 g153_1 2.224404 +.ends + +.subckt netg150 g150_1 g150_0 gnd +C1 g150_1 gnd 2.080806f +C2 g150_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g150_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +R56 55 g150_1 2.224404 +.ends + +.subckt netg7516 g7516_1 g7516_0 gnd +C1 g7516_1 gnd 2.080806f +C2 g7516_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7516_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +R54 g7516_1 53 2.224404 +.ends + +.subckt netg7479 g7479_0 g7479_1 gnd +C1 g7479_0 gnd 2.080806f +C2 g7479_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7479_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +R55 g7479_1 54 2.224404 +.ends + +.subckt netg188 g188_1 g188_0 g188_2 gnd +C1 g188_1 gnd 2.080806f +C2 g188_0 gnd 2.080806f +C3 g188_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g188_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g188_1 4 2.224404 +C8 5 gnd 2.080806f +R6 g188_0 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +R57 55 g188_2 2.224404 +.ends + +.subckt netg526 g526_5 g526_3 g526_0 g526_4 g526_1 g526_2 gnd +C1 g526_5 gnd 2.080806f +C2 g526_3 gnd 2.080806f +C3 g526_0 gnd 2.080806f +C4 g526_4 gnd 2.080806f +C5 g526_1 gnd 2.080806f +C6 g526_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g526_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g526_3 3 2.224404 +C10 4 gnd 2.080806f +R5 g526_3 4 2.224404 +R6 4 g526_5 2.224404 +C11 5 gnd 2.080806f +R7 g526_0 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +C13 7 gnd 2.080806f +R9 6 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +C24 18 gnd 2.080806f +R20 17 18 2.224404 +C25 19 gnd 2.080806f +R21 18 19 2.224404 +C26 20 gnd 2.080806f +R22 19 20 2.224404 +C27 21 gnd 2.080806f +R23 20 21 2.224404 +R24 21 g526_1 2.224404 +C28 22 gnd 2.080806f +R25 22 g526_1 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 39 38 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +R45 41 g526_2 2.224404 +C48 42 gnd 2.080806f +R46 g526_1 42 2.224404 +C49 43 gnd 2.080806f +R47 42 43 2.224404 +C50 44 gnd 2.080806f +R48 43 44 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 45 46 2.224404 +C53 47 gnd 2.080806f +R51 46 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 50 51 2.224404 +C58 52 gnd 2.080806f +R56 51 52 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +C64 58 gnd 2.080806f +R62 57 58 2.224404 +C65 59 gnd 2.080806f +R63 58 59 2.224404 +C66 60 gnd 2.080806f +R64 59 60 2.224404 +C67 61 gnd 2.080806f +R65 60 61 2.224404 +C68 62 gnd 2.080806f +R66 61 62 2.224404 +C69 63 gnd 2.080806f +R67 62 63 2.224404 +C70 64 gnd 2.080806f +R68 63 64 2.224404 +R69 64 g526_4 2.224404 +.ends + +.subckt netg7473 g7473_0 g7473_1 gnd +C1 g7473_0 gnd 2.080806f +C2 g7473_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7473_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +R56 55 g7473_1 2.224404 +.ends + +.subckt netg7476 g7476_1 g7476_0 gnd +C1 g7476_1 gnd 2.080806f +C2 g7476_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7476_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +R56 g7476_1 55 2.224404 +.ends + +.subckt netg7517 g7517_0 g7517_1 gnd +C1 g7517_0 gnd 2.080806f +C2 g7517_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7517_0 1 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +R58 g7517_1 57 2.224404 +.ends + +.subckt netg1691 g1691_6 g1691_3 g1691_5 g1691_2 g1691_1 g1691_4 g1691_0 gnd +C1 g1691_6 gnd 2.080806f +C2 g1691_3 gnd 2.080806f +C3 g1691_5 gnd 2.080806f +C4 g1691_2 gnd 2.080806f +C5 g1691_1 gnd 2.080806f +C6 g1691_4 gnd 2.080806f +C7 g1691_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g1691_0 1 2.224404 +C9 2 gnd 2.080806f +R2 2 1 2.224404 +C10 3 gnd 2.080806f +R3 2 3 2.224404 +C11 4 gnd 2.080806f +R4 3 4 2.224404 +C12 5 gnd 2.080806f +R5 4 5 2.224404 +R6 5 g1691_3 2.224404 +C13 6 gnd 2.080806f +R7 6 g1691_0 2.224404 +C14 7 gnd 2.080806f +R8 7 6 2.224404 +C15 8 gnd 2.080806f +R9 8 7 2.224404 +C16 9 gnd 2.080806f +R10 9 8 2.224404 +C17 10 gnd 2.080806f +R11 10 9 2.224404 +C18 11 gnd 2.080806f +R12 11 10 2.224404 +C19 12 gnd 2.080806f +R13 12 11 2.224404 +C20 13 gnd 2.080806f +R14 13 12 2.224404 +C21 14 gnd 2.080806f +R15 14 13 2.224404 +C22 15 gnd 2.080806f +R16 15 14 2.224404 +C23 16 gnd 2.080806f +R17 16 15 2.224404 +C24 17 gnd 2.080806f +R18 17 16 2.224404 +C25 18 gnd 2.080806f +R19 18 17 2.224404 +C26 19 gnd 2.080806f +R20 19 18 2.224404 +R21 g1691_4 19 2.224404 +C27 20 gnd 2.080806f +R22 20 g1691_4 2.224404 +C28 21 gnd 2.080806f +R23 21 20 2.224404 +C29 22 gnd 2.080806f +R24 22 21 2.224404 +C30 23 gnd 2.080806f +R25 23 22 2.224404 +R26 g1691_5 23 2.224404 +C31 24 gnd 2.080806f +R27 24 g1691_5 2.224404 +R28 g1691_2 24 2.224404 +C32 25 gnd 2.080806f +R29 g1691_3 25 2.224404 +C33 26 gnd 2.080806f +R30 25 26 2.224404 +C34 27 gnd 2.080806f +R31 26 27 2.224404 +C35 28 gnd 2.080806f +R32 27 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 43 42 2.224404 +C51 44 gnd 2.080806f +R48 44 43 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +C53 46 gnd 2.080806f +R50 45 46 2.224404 +C54 47 gnd 2.080806f +R51 46 47 2.224404 +C55 48 gnd 2.080806f +R52 47 48 2.224404 +C56 49 gnd 2.080806f +R53 48 49 2.224404 +C57 50 gnd 2.080806f +R54 49 50 2.224404 +C58 51 gnd 2.080806f +R55 50 51 2.224404 +C59 52 gnd 2.080806f +R56 51 52 2.224404 +R57 g1691_6 52 2.224404 +C60 53 gnd 2.080806f +R58 53 g1691_6 2.224404 +C61 54 gnd 2.080806f +R59 54 53 2.224404 +C62 55 gnd 2.080806f +R60 55 54 2.224404 +C63 56 gnd 2.080806f +R61 55 56 2.224404 +C64 57 gnd 2.080806f +R62 57 56 2.224404 +C65 58 gnd 2.080806f +R63 57 58 2.224404 +C66 59 gnd 2.080806f +R64 58 59 2.224404 +R65 59 g1691_1 2.224404 +.ends + +.subckt netg7458 g7458_0 g7458_1 gnd +C1 g7458_0 gnd 2.080806f +C2 g7458_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7458_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +R56 g7458_1 55 2.224404 +.ends + +.subckt netg7541 g7541_0 g7541_1 gnd +C1 g7541_0 gnd 2.080806f +C2 g7541_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7541_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +R57 56 g7541_1 2.224404 +.ends + +.subckt netg479 g479_1 g479_5 g479_3 g479_2 g479_4 g479_0 gnd +C1 g479_1 gnd 2.080806f +C2 g479_5 gnd 2.080806f +C3 g479_3 gnd 2.080806f +C4 g479_2 gnd 2.080806f +C5 g479_4 gnd 2.080806f +C6 g479_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g479_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 4 3 2.224404 +C11 5 gnd 2.080806f +R5 5 4 2.224404 +R6 g479_3 5 2.224404 +C12 6 gnd 2.080806f +R7 6 g479_3 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +R9 g479_1 7 2.224404 +C14 8 gnd 2.080806f +R10 8 7 2.224404 +C15 9 gnd 2.080806f +R11 9 8 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +C18 12 gnd 2.080806f +R14 12 11 2.224404 +C19 13 gnd 2.080806f +R15 13 12 2.224404 +R16 g479_4 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 52 51 2.224404 +R56 52 g479_5 2.224404 +C59 53 gnd 2.080806f +R57 g479_5 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +C64 58 gnd 2.080806f +R62 57 58 2.224404 +C65 59 gnd 2.080806f +R63 58 59 2.224404 +C66 60 gnd 2.080806f +R64 59 60 2.224404 +C67 61 gnd 2.080806f +R65 60 61 2.224404 +C68 62 gnd 2.080806f +R66 61 62 2.224404 +C69 63 gnd 2.080806f +R67 62 63 2.224404 +C70 64 gnd 2.080806f +R68 63 64 2.224404 +C71 65 gnd 2.080806f +R69 64 65 2.224404 +C72 66 gnd 2.080806f +R70 65 66 2.224404 +C73 67 gnd 2.080806f +R71 66 67 2.224404 +R72 67 g479_2 2.224404 +.ends + +.subckt netg156 g156_0 g156_1 gnd +C1 g156_0 gnd 2.080806f +C2 g156_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g156_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +R57 56 g156_1 2.224404 +.ends + +.subckt netg164 g164_1 g164_0 gnd +C1 g164_1 gnd 2.080806f +C2 g164_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g164_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 57 58 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 61 62 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +R67 66 g164_1 2.224404 +.ends + +.subckt netg7514 g7514_0 g7514_1 gnd +C1 g7514_0 gnd 2.080806f +C2 g7514_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7514_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +R57 56 g7514_1 2.224404 +.ends + +.subckt netg160 g160_1 g160_0 gnd +C1 g160_1 gnd 2.080806f +C2 g160_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g160_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +R57 g160_1 56 2.224404 +.ends + +.subckt netg152 g152_1 g152_0 gnd +C1 g152_1 gnd 2.080806f +C2 g152_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g152_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 57 58 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 61 62 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 68 69 2.224404 +C72 70 gnd 2.080806f +R70 69 70 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +C79 77 gnd 2.080806f +R77 76 77 2.224404 +C80 78 gnd 2.080806f +R78 77 78 2.224404 +C81 79 gnd 2.080806f +R79 78 79 2.224404 +C82 80 gnd 2.080806f +R80 79 80 2.224404 +R81 80 g152_1 2.224404 +.ends + +.subckt netg169 g169_1 g169_0 g169_2 gnd +C1 g169_1 gnd 2.080806f +C2 g169_0 gnd 2.080806f +C3 g169_2 gnd 2.080806f +R1 g169_1 g169_0 2.224404 +C4 1 gnd 2.080806f +R2 g169_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +R57 55 g169_2 2.224404 +.ends + +.subckt netg12 g12_0 g12_2 g12_1 gnd +C1 g12_0 gnd 2.080806f +C2 g12_2 gnd 2.080806f +C3 g12_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g12_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +R23 g12_2 22 2.224404 +C26 23 gnd 2.080806f +R24 g12_0 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +R58 56 g12_1 2.224404 +.ends + +.subckt netg7474 g7474_1 g7474_0 gnd +C1 g7474_1 gnd 2.080806f +C2 g7474_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7474_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +R58 57 g7474_1 2.224404 +.ends + +.subckt netg53 g53_2 g53_1 g53_0 gnd +C1 g53_2 gnd 2.080806f +C2 g53_1 gnd 2.080806f +C3 g53_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g53_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g53_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g53_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +R58 g53_1 56 2.224404 +.ends + +.subckt netg2258 g2258_4 g2258_3 g2258_2 g2258_1 g2258_5 gnd +C1 g2258_4 gnd 2.080806f +C2 g2258_3 gnd 2.080806f +C3 g2258_2 gnd 2.080806f +C4 g2258_1 gnd 2.080806f +C5 g2258_5 gnd 2.080806f +C6 1 gnd 2.080806f +R1 1 g2258_2 2.224404 +R2 g2258_3 1 2.224404 +C7 2 gnd 2.080806f +R3 g2258_3 2 2.224404 +R4 2 g2258_5 2.224404 +C8 3 gnd 2.080806f +R5 g2258_2 3 2.224404 +C9 4 gnd 2.080806f +R6 3 4 2.224404 +C10 5 gnd 2.080806f +R7 4 5 2.224404 +C11 6 gnd 2.080806f +R8 5 6 2.224404 +C12 7 gnd 2.080806f +R9 6 7 2.224404 +C13 8 gnd 2.080806f +R10 7 8 2.224404 +C14 9 gnd 2.080806f +R11 8 9 2.224404 +C15 10 gnd 2.080806f +R12 9 10 2.224404 +C16 11 gnd 2.080806f +R13 10 11 2.224404 +C17 12 gnd 2.080806f +R14 11 12 2.224404 +C18 13 gnd 2.080806f +R15 12 13 2.224404 +C19 14 gnd 2.080806f +R16 13 14 2.224404 +C20 15 gnd 2.080806f +R17 14 15 2.224404 +C21 16 gnd 2.080806f +R18 15 16 2.224404 +C22 17 gnd 2.080806f +R19 16 17 2.224404 +C23 18 gnd 2.080806f +R20 17 18 2.224404 +C24 19 gnd 2.080806f +R21 18 19 2.224404 +C25 20 gnd 2.080806f +R22 19 20 2.224404 +C26 21 gnd 2.080806f +R23 20 21 2.224404 +C27 22 gnd 2.080806f +R24 21 22 2.224404 +C28 23 gnd 2.080806f +R25 22 23 2.224404 +C29 24 gnd 2.080806f +R26 23 24 2.224404 +C30 25 gnd 2.080806f +R27 24 25 2.224404 +C31 26 gnd 2.080806f +R28 25 26 2.224404 +C32 27 gnd 2.080806f +R29 26 27 2.224404 +C33 28 gnd 2.080806f +R30 27 28 2.224404 +C34 29 gnd 2.080806f +R31 28 29 2.224404 +C35 30 gnd 2.080806f +R32 29 30 2.224404 +C36 31 gnd 2.080806f +R33 30 31 2.224404 +C37 32 gnd 2.080806f +R34 31 32 2.224404 +C38 33 gnd 2.080806f +R35 32 33 2.224404 +C39 34 gnd 2.080806f +R36 33 34 2.224404 +R37 34 g2258_1 2.224404 +C40 35 gnd 2.080806f +R38 g2258_1 35 2.224404 +C41 36 gnd 2.080806f +R39 35 36 2.224404 +C42 37 gnd 2.080806f +R40 36 37 2.224404 +C43 38 gnd 2.080806f +R41 37 38 2.224404 +C44 39 gnd 2.080806f +R42 38 39 2.224404 +C45 40 gnd 2.080806f +R43 39 40 2.224404 +C46 41 gnd 2.080806f +R44 40 41 2.224404 +C47 42 gnd 2.080806f +R45 41 42 2.224404 +C48 43 gnd 2.080806f +R46 42 43 2.224404 +C49 44 gnd 2.080806f +R47 43 44 2.224404 +C50 45 gnd 2.080806f +R48 44 45 2.224404 +C51 46 gnd 2.080806f +R49 45 46 2.224404 +C52 47 gnd 2.080806f +R50 46 47 2.224404 +C53 48 gnd 2.080806f +R51 47 48 2.224404 +C54 49 gnd 2.080806f +R52 48 49 2.224404 +C55 50 gnd 2.080806f +R53 49 50 2.224404 +C56 51 gnd 2.080806f +R54 50 51 2.224404 +C57 52 gnd 2.080806f +R55 51 52 2.224404 +C58 53 gnd 2.080806f +R56 52 53 2.224404 +C59 54 gnd 2.080806f +R57 53 54 2.224404 +C60 55 gnd 2.080806f +R58 54 55 2.224404 +C61 56 gnd 2.080806f +R59 55 56 2.224404 +R60 56 g2258_4 2.224404 +.ends + +.subckt netg194 g194_2 g194_0 g194_1 gnd +C1 g194_2 gnd 2.080806f +C2 g194_0 gnd 2.080806f +C3 g194_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g194_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +R5 g194_2 4 2.224404 +C8 5 gnd 2.080806f +R6 g194_0 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +R59 57 g194_1 2.224404 +.ends + +.subckt netg7478 g7478_1 g7478_0 gnd +C1 g7478_1 gnd 2.080806f +C2 g7478_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7478_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +R59 g7478_1 58 2.224404 +.ends + +.subckt netg2250 g2250_1 g2250_4 g2250_2 g2250_6 g2250_7 g2250_5 g2250_3 gnd +C1 g2250_1 gnd 2.080806f +C2 g2250_4 gnd 2.080806f +C3 g2250_2 gnd 2.080806f +C4 g2250_6 gnd 2.080806f +C5 g2250_7 gnd 2.080806f +C6 g2250_5 gnd 2.080806f +C7 g2250_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 1 g2250_1 2.224404 +R2 g2250_5 1 2.224404 +C9 2 gnd 2.080806f +R3 g2250_1 2 2.224404 +C10 3 gnd 2.080806f +R4 2 3 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +C13 6 gnd 2.080806f +R7 5 6 2.224404 +C14 7 gnd 2.080806f +R8 6 7 2.224404 +C15 8 gnd 2.080806f +R9 7 8 2.224404 +C16 9 gnd 2.080806f +R10 8 9 2.224404 +C17 10 gnd 2.080806f +R11 9 10 2.224404 +R12 10 g2250_6 2.224404 +C18 11 gnd 2.080806f +R13 11 g2250_6 2.224404 +C19 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g2250_3 2.224404 +C20 13 gnd 2.080806f +R16 13 g2250_3 2.224404 +C21 14 gnd 2.080806f +R17 14 13 2.224404 +C22 15 gnd 2.080806f +R18 14 15 2.224404 +C23 16 gnd 2.080806f +R19 15 16 2.224404 +C24 17 gnd 2.080806f +R20 16 17 2.224404 +C25 18 gnd 2.080806f +R21 18 17 2.224404 +C26 19 gnd 2.080806f +R22 18 19 2.224404 +R23 19 g2250_2 2.224404 +C27 20 gnd 2.080806f +R24 20 g2250_2 2.224404 +C28 21 gnd 2.080806f +R25 20 21 2.224404 +C29 22 gnd 2.080806f +R26 21 22 2.224404 +C30 23 gnd 2.080806f +R27 22 23 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +C32 25 gnd 2.080806f +R29 24 25 2.224404 +C33 26 gnd 2.080806f +R30 25 26 2.224404 +C34 27 gnd 2.080806f +R31 26 27 2.224404 +C35 28 gnd 2.080806f +R32 27 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 42 43 2.224404 +C51 44 gnd 2.080806f +R48 43 44 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +R50 45 g2250_7 2.224404 +C53 46 gnd 2.080806f +R51 g2250_7 46 2.224404 +C54 47 gnd 2.080806f +R52 46 47 2.224404 +C55 48 gnd 2.080806f +R53 47 48 2.224404 +C56 49 gnd 2.080806f +R54 48 49 2.224404 +C57 50 gnd 2.080806f +R55 49 50 2.224404 +C58 51 gnd 2.080806f +R56 50 51 2.224404 +C59 52 gnd 2.080806f +R57 51 52 2.224404 +C60 53 gnd 2.080806f +R58 52 53 2.224404 +C61 54 gnd 2.080806f +R59 53 54 2.224404 +C62 55 gnd 2.080806f +R60 54 55 2.224404 +C63 56 gnd 2.080806f +R61 55 56 2.224404 +C64 57 gnd 2.080806f +R62 56 57 2.224404 +C65 58 gnd 2.080806f +R63 57 58 2.224404 +C66 59 gnd 2.080806f +R64 58 59 2.224404 +C67 60 gnd 2.080806f +R65 59 60 2.224404 +C68 61 gnd 2.080806f +R66 60 61 2.224404 +C69 62 gnd 2.080806f +R67 61 62 2.224404 +C70 63 gnd 2.080806f +R68 62 63 2.224404 +R69 63 g2250_4 2.224404 +.ends + +.subckt netg2133 g2133_7 g2133_0 g2133_6 g2133_4 g2133_3 g2133_2 g2133_1 gnd +C1 g2133_7 gnd 2.080806f +C2 g2133_0 gnd 2.080806f +C3 g2133_6 gnd 2.080806f +C4 g2133_4 gnd 2.080806f +C5 g2133_3 gnd 2.080806f +C6 g2133_2 gnd 2.080806f +C7 g2133_1 gnd 2.080806f +R1 g2133_2 g2133_0 2.224404 +R2 g2133_0 g2133_7 2.224404 +R3 g2133_7 g2133_4 2.224404 +C8 1 gnd 2.080806f +R4 g2133_4 1 2.224404 +R5 1 g2133_3 2.224404 +C9 2 gnd 2.080806f +R6 g2133_3 2 2.224404 +C10 3 gnd 2.080806f +R7 2 3 2.224404 +C11 4 gnd 2.080806f +R8 3 4 2.224404 +C12 5 gnd 2.080806f +R9 4 5 2.224404 +C13 6 gnd 2.080806f +R10 5 6 2.224404 +C14 7 gnd 2.080806f +R11 6 7 2.224404 +C15 8 gnd 2.080806f +R12 7 8 2.224404 +C16 9 gnd 2.080806f +R13 8 9 2.224404 +C17 10 gnd 2.080806f +R14 9 10 2.224404 +C18 11 gnd 2.080806f +R15 10 11 2.224404 +C19 12 gnd 2.080806f +R16 11 12 2.224404 +C20 13 gnd 2.080806f +R17 12 13 2.224404 +C21 14 gnd 2.080806f +R18 13 14 2.224404 +C22 15 gnd 2.080806f +R19 14 15 2.224404 +C23 16 gnd 2.080806f +R20 15 16 2.224404 +C24 17 gnd 2.080806f +R21 16 17 2.224404 +C25 18 gnd 2.080806f +R22 17 18 2.224404 +C26 19 gnd 2.080806f +R23 18 19 2.224404 +C27 20 gnd 2.080806f +R24 19 20 2.224404 +C28 21 gnd 2.080806f +R25 20 21 2.224404 +C29 22 gnd 2.080806f +R26 21 22 2.224404 +C30 23 gnd 2.080806f +R27 22 23 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +C32 25 gnd 2.080806f +R29 24 25 2.224404 +C33 26 gnd 2.080806f +R30 25 26 2.224404 +C34 27 gnd 2.080806f +R31 26 27 2.224404 +C35 28 gnd 2.080806f +R32 27 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 42 43 2.224404 +C51 44 gnd 2.080806f +R48 43 44 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +C53 46 gnd 2.080806f +R50 45 46 2.224404 +C54 47 gnd 2.080806f +R51 46 47 2.224404 +C55 48 gnd 2.080806f +R52 47 48 2.224404 +C56 49 gnd 2.080806f +R53 48 49 2.224404 +C57 50 gnd 2.080806f +R54 49 50 2.224404 +C58 51 gnd 2.080806f +R55 50 51 2.224404 +C59 52 gnd 2.080806f +R56 51 52 2.224404 +C60 53 gnd 2.080806f +R57 52 53 2.224404 +C61 54 gnd 2.080806f +R58 54 53 2.224404 +C62 55 gnd 2.080806f +R59 55 54 2.224404 +R60 55 g2133_1 2.224404 +C63 56 gnd 2.080806f +R61 g2133_1 56 2.224404 +C64 57 gnd 2.080806f +R62 56 57 2.224404 +C65 58 gnd 2.080806f +R63 58 57 2.224404 +C66 59 gnd 2.080806f +R64 58 59 2.224404 +C67 60 gnd 2.080806f +R65 59 60 2.224404 +C68 61 gnd 2.080806f +R66 60 61 2.224404 +R67 g2133_6 61 2.224404 +.ends + +.subckt netg52 g52_2 g52_1 g52_0 gnd +C1 g52_2 gnd 2.080806f +C2 g52_1 gnd 2.080806f +C3 g52_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g52_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +R35 34 g52_1 2.224404 +C38 35 gnd 2.080806f +R36 35 5 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +R68 g52_2 66 2.224404 +.ends + +.subckt netg2264 g2264_4 g2264_3 g2264_5 g2264_2 g2264_1 g2264_0 gnd +C1 g2264_4 gnd 2.080806f +C2 g2264_3 gnd 2.080806f +C3 g2264_5 gnd 2.080806f +C4 g2264_2 gnd 2.080806f +C5 g2264_1 gnd 2.080806f +C6 g2264_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2264_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g2264_3 2 2.224404 +C9 3 gnd 2.080806f +R4 3 g2264_3 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +C17 11 gnd 2.080806f +R12 11 10 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +R14 g2264_5 12 2.224404 +C19 13 gnd 2.080806f +R15 g2264_5 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +R17 g2264_2 14 2.224404 +C21 15 gnd 2.080806f +R18 g2264_0 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 38 37 2.224404 +C45 39 gnd 2.080806f +R42 39 38 2.224404 +C46 40 gnd 2.080806f +R43 40 39 2.224404 +R44 g2264_1 40 2.224404 +C47 41 gnd 2.080806f +R45 37 41 2.224404 +C48 42 gnd 2.080806f +R46 41 42 2.224404 +C49 43 gnd 2.080806f +R47 42 43 2.224404 +C50 44 gnd 2.080806f +R48 43 44 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 45 46 2.224404 +C53 47 gnd 2.080806f +R51 46 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 50 51 2.224404 +C58 52 gnd 2.080806f +R56 51 52 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +C64 58 gnd 2.080806f +R62 57 58 2.224404 +C65 59 gnd 2.080806f +R63 58 59 2.224404 +C66 60 gnd 2.080806f +R64 59 60 2.224404 +C67 61 gnd 2.080806f +R65 60 61 2.224404 +R66 61 g2264_4 2.224404 +.ends + +.subckt netg2153 g2153_1 g2153_3 g2153_2 g2153_5 g2153_4 g2153_0 gnd +C1 g2153_1 gnd 2.080806f +C2 g2153_3 gnd 2.080806f +C3 g2153_2 gnd 2.080806f +C4 g2153_5 gnd 2.080806f +C5 g2153_4 gnd 2.080806f +C6 g2153_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g2153_0 1 2.224404 +R2 1 g2153_3 2.224404 +R3 g2153_3 g2153_1 2.224404 +C8 2 gnd 2.080806f +R4 2 g2153_0 2.224404 +R5 2 g2153_5 2.224404 +C9 3 gnd 2.080806f +R6 g2153_5 3 2.224404 +C10 4 gnd 2.080806f +R7 3 4 2.224404 +C11 5 gnd 2.080806f +R8 4 5 2.224404 +C12 6 gnd 2.080806f +R9 5 6 2.224404 +C13 7 gnd 2.080806f +R10 6 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 40 39 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +R45 g2153_2 41 2.224404 +C48 42 gnd 2.080806f +R46 42 g2153_2 2.224404 +C49 43 gnd 2.080806f +R47 43 42 2.224404 +C50 44 gnd 2.080806f +R48 44 43 2.224404 +C51 45 gnd 2.080806f +R49 44 45 2.224404 +C52 46 gnd 2.080806f +R50 46 45 2.224404 +C53 47 gnd 2.080806f +R51 46 47 2.224404 +C54 48 gnd 2.080806f +R52 47 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 50 51 2.224404 +C58 52 gnd 2.080806f +R56 52 51 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +C64 58 gnd 2.080806f +R62 57 58 2.224404 +C65 59 gnd 2.080806f +R63 58 59 2.224404 +C66 60 gnd 2.080806f +R64 59 60 2.224404 +C67 61 gnd 2.080806f +R65 60 61 2.224404 +C68 62 gnd 2.080806f +R66 61 62 2.224404 +C69 63 gnd 2.080806f +R67 62 63 2.224404 +C70 64 gnd 2.080806f +R68 63 64 2.224404 +C71 65 gnd 2.080806f +R69 64 65 2.224404 +C72 66 gnd 2.080806f +R70 65 66 2.224404 +C73 67 gnd 2.080806f +R71 66 67 2.224404 +C74 68 gnd 2.080806f +R72 67 68 2.224404 +C75 69 gnd 2.080806f +R73 68 69 2.224404 +C76 70 gnd 2.080806f +R74 69 70 2.224404 +C77 71 gnd 2.080806f +R75 70 71 2.224404 +C78 72 gnd 2.080806f +R76 71 72 2.224404 +R77 72 g2153_4 2.224404 +.ends + +.subckt netg65 g65_2 g65_0 g65_1 gnd +C1 g65_2 gnd 2.080806f +C2 g65_0 gnd 2.080806f +C3 g65_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g65_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +R36 35 g65_1 2.224404 +C39 36 gnd 2.080806f +R37 36 7 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +R75 g65_2 73 2.224404 +.ends + +.subckt netg394 g394_1 g394_0 g394_2 gnd +C1 g394_1 gnd 2.080806f +C2 g394_0 gnd 2.080806f +C3 g394_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g394_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +R38 g394_1 37 2.224404 +C41 38 gnd 2.080806f +R39 g394_1 38 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +R71 g394_2 69 2.224404 +.ends + +.subckt netg1652 g1652_0 g1652_5 g1652_2 g1652_3 g1652_4 g1652_1 gnd +C1 g1652_0 gnd 2.080806f +C2 g1652_5 gnd 2.080806f +C3 g1652_2 gnd 2.080806f +C4 g1652_3 gnd 2.080806f +C5 g1652_4 gnd 2.080806f +C6 g1652_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1652_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g1652_1 2 2.224404 +C9 3 gnd 2.080806f +R4 g1652_0 3 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +C17 11 gnd 2.080806f +R12 11 10 2.224404 +C18 12 gnd 2.080806f +R13 12 11 2.224404 +C19 13 gnd 2.080806f +R14 13 12 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +C21 15 gnd 2.080806f +R16 15 14 2.224404 +C22 16 gnd 2.080806f +R17 16 15 2.224404 +C23 17 gnd 2.080806f +R18 17 16 2.224404 +C24 18 gnd 2.080806f +R19 18 17 2.224404 +C25 19 gnd 2.080806f +R20 19 18 2.224404 +C26 20 gnd 2.080806f +R21 20 19 2.224404 +C27 21 gnd 2.080806f +R22 21 20 2.224404 +C28 22 gnd 2.080806f +R23 22 21 2.224404 +C29 23 gnd 2.080806f +R24 23 22 2.224404 +C30 24 gnd 2.080806f +R25 24 23 2.224404 +C31 25 gnd 2.080806f +R26 25 24 2.224404 +C32 26 gnd 2.080806f +R27 26 25 2.224404 +C33 27 gnd 2.080806f +R28 27 26 2.224404 +C34 28 gnd 2.080806f +R29 28 27 2.224404 +C35 29 gnd 2.080806f +R30 29 28 2.224404 +C36 30 gnd 2.080806f +R31 30 29 2.224404 +C37 31 gnd 2.080806f +R32 31 30 2.224404 +C38 32 gnd 2.080806f +R33 32 31 2.224404 +C39 33 gnd 2.080806f +R34 33 32 2.224404 +C40 34 gnd 2.080806f +R35 34 33 2.224404 +C41 35 gnd 2.080806f +R36 35 34 2.224404 +C42 36 gnd 2.080806f +R37 36 35 2.224404 +C43 37 gnd 2.080806f +R38 37 36 2.224404 +C44 38 gnd 2.080806f +R39 38 37 2.224404 +C45 39 gnd 2.080806f +R40 39 38 2.224404 +C46 40 gnd 2.080806f +R41 40 39 2.224404 +C47 41 gnd 2.080806f +R42 41 40 2.224404 +C48 42 gnd 2.080806f +R43 42 41 2.224404 +C49 43 gnd 2.080806f +R44 43 42 2.224404 +C50 44 gnd 2.080806f +R45 44 43 2.224404 +C51 45 gnd 2.080806f +R46 45 44 2.224404 +C52 46 gnd 2.080806f +R47 46 45 2.224404 +C53 47 gnd 2.080806f +R48 47 46 2.224404 +C54 48 gnd 2.080806f +R49 48 47 2.224404 +C55 49 gnd 2.080806f +R50 49 48 2.224404 +C56 50 gnd 2.080806f +R51 50 49 2.224404 +C57 51 gnd 2.080806f +R52 51 50 2.224404 +C58 52 gnd 2.080806f +R53 52 51 2.224404 +C59 53 gnd 2.080806f +R54 53 52 2.224404 +C60 54 gnd 2.080806f +R55 54 53 2.224404 +C61 55 gnd 2.080806f +R56 55 54 2.224404 +C62 56 gnd 2.080806f +R57 56 55 2.224404 +C63 57 gnd 2.080806f +R58 57 56 2.224404 +C64 58 gnd 2.080806f +R59 58 57 2.224404 +C65 59 gnd 2.080806f +R60 58 59 2.224404 +R61 g1652_4 59 2.224404 +R62 g1652_4 g1652_2 2.224404 +C66 60 gnd 2.080806f +R63 60 g1652_2 2.224404 +C67 61 gnd 2.080806f +R64 61 60 2.224404 +R65 g1652_5 61 2.224404 +C68 62 gnd 2.080806f +R66 62 g1652_4 2.224404 +C69 63 gnd 2.080806f +R67 63 62 2.224404 +C70 64 gnd 2.080806f +R68 64 63 2.224404 +C71 65 gnd 2.080806f +R69 65 64 2.224404 +C72 66 gnd 2.080806f +R70 66 65 2.224404 +R71 g1652_3 66 2.224404 +.ends + +.subckt netg400 g400_1 g400_0 g400_2 gnd +C1 g400_1 gnd 2.080806f +C2 g400_0 gnd 2.080806f +C3 g400_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g400_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +R31 30 g400_1 2.224404 +C34 31 gnd 2.080806f +R32 g400_1 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +R67 65 g400_2 2.224404 +.ends + +.subckt netg7520 g7520_0 g7520_1 gnd +C1 g7520_0 gnd 2.080806f +C2 g7520_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7520_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +R69 g7520_1 68 2.224404 +.ends + +.subckt netg7475 g7475_1 g7475_0 gnd +C1 g7475_1 gnd 2.080806f +C2 g7475_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7475_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +R66 65 g7475_1 2.224404 +.ends + +.subckt netg7451 g7451_1 g7451_0 gnd +C1 g7451_1 gnd 2.080806f +C2 g7451_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7451_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +R67 66 g7451_1 2.224404 +.ends + +.subckt netg553 g553_5 g553_1 g553_4 g553_0 g553_3 g553_2 gnd +C1 g553_5 gnd 2.080806f +C2 g553_1 gnd 2.080806f +C3 g553_4 gnd 2.080806f +C4 g553_0 gnd 2.080806f +C5 g553_3 gnd 2.080806f +C6 g553_2 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g553_0 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +C11 5 gnd 2.080806f +R5 5 4 2.224404 +C12 6 gnd 2.080806f +R6 6 5 2.224404 +C13 7 gnd 2.080806f +R7 7 6 2.224404 +C14 8 gnd 2.080806f +R8 7 8 2.224404 +C15 9 gnd 2.080806f +R9 8 9 2.224404 +C16 10 gnd 2.080806f +R10 9 10 2.224404 +C17 11 gnd 2.080806f +R11 10 11 2.224404 +C18 12 gnd 2.080806f +R12 11 12 2.224404 +C19 13 gnd 2.080806f +R13 12 13 2.224404 +C20 14 gnd 2.080806f +R14 14 13 2.224404 +C21 15 gnd 2.080806f +R15 14 15 2.224404 +R16 g553_5 15 2.224404 +C22 16 gnd 2.080806f +R17 16 g553_5 2.224404 +C23 17 gnd 2.080806f +R18 17 16 2.224404 +C24 18 gnd 2.080806f +R19 18 17 2.224404 +C25 19 gnd 2.080806f +R20 19 18 2.224404 +C26 20 gnd 2.080806f +R21 20 19 2.224404 +C27 21 gnd 2.080806f +R22 21 20 2.224404 +C28 22 gnd 2.080806f +R23 22 21 2.224404 +C29 23 gnd 2.080806f +R24 23 22 2.224404 +C30 24 gnd 2.080806f +R25 24 23 2.224404 +C31 25 gnd 2.080806f +R26 25 24 2.224404 +C32 26 gnd 2.080806f +R27 26 25 2.224404 +C33 27 gnd 2.080806f +R28 27 26 2.224404 +C34 28 gnd 2.080806f +R29 28 27 2.224404 +C35 29 gnd 2.080806f +R30 29 28 2.224404 +C36 30 gnd 2.080806f +R31 30 29 2.224404 +C37 31 gnd 2.080806f +R32 31 30 2.224404 +C38 32 gnd 2.080806f +R33 32 31 2.224404 +C39 33 gnd 2.080806f +R34 33 32 2.224404 +C40 34 gnd 2.080806f +R35 34 33 2.224404 +C41 35 gnd 2.080806f +R36 35 34 2.224404 +C42 36 gnd 2.080806f +R37 36 35 2.224404 +C43 37 gnd 2.080806f +R38 37 36 2.224404 +C44 38 gnd 2.080806f +R39 38 37 2.224404 +C45 39 gnd 2.080806f +R40 39 38 2.224404 +C46 40 gnd 2.080806f +R41 40 39 2.224404 +C47 41 gnd 2.080806f +R42 41 40 2.224404 +C48 42 gnd 2.080806f +R43 42 41 2.224404 +C49 43 gnd 2.080806f +R44 43 42 2.224404 +C50 44 gnd 2.080806f +R45 44 43 2.224404 +C51 45 gnd 2.080806f +R46 45 44 2.224404 +C52 46 gnd 2.080806f +R47 46 45 2.224404 +C53 47 gnd 2.080806f +R48 47 46 2.224404 +C54 48 gnd 2.080806f +R49 48 47 2.224404 +C55 49 gnd 2.080806f +R50 49 48 2.224404 +C56 50 gnd 2.080806f +R51 50 49 2.224404 +C57 51 gnd 2.080806f +R52 51 50 2.224404 +C58 52 gnd 2.080806f +R53 52 51 2.224404 +C59 53 gnd 2.080806f +R54 53 52 2.224404 +C60 54 gnd 2.080806f +R55 54 53 2.224404 +R56 g553_2 54 2.224404 +C61 55 gnd 2.080806f +R57 55 g553_2 2.224404 +C62 56 gnd 2.080806f +R58 56 55 2.224404 +C63 57 gnd 2.080806f +R59 57 56 2.224404 +C64 58 gnd 2.080806f +R60 58 57 2.224404 +C65 59 gnd 2.080806f +R61 59 58 2.224404 +C66 60 gnd 2.080806f +R62 60 59 2.224404 +C67 61 gnd 2.080806f +R63 61 60 2.224404 +C68 62 gnd 2.080806f +R64 62 61 2.224404 +C69 63 gnd 2.080806f +R65 63 62 2.224404 +R66 g553_3 63 2.224404 +C70 64 gnd 2.080806f +R67 64 g553_3 2.224404 +C71 65 gnd 2.080806f +R68 65 64 2.224404 +C72 66 gnd 2.080806f +R69 66 65 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +C74 68 gnd 2.080806f +R71 68 67 2.224404 +C75 69 gnd 2.080806f +R72 69 68 2.224404 +C76 70 gnd 2.080806f +R73 70 69 2.224404 +R74 g553_1 70 2.224404 +C77 71 gnd 2.080806f +R75 71 g553_1 2.224404 +C78 72 gnd 2.080806f +R76 72 71 2.224404 +C79 73 gnd 2.080806f +R77 73 72 2.224404 +C80 74 gnd 2.080806f +R78 74 73 2.224404 +C81 75 gnd 2.080806f +R79 75 74 2.224404 +R80 g553_4 75 2.224404 +.ends + +.subckt netg172 g172_1 g172_2 g172_0 gnd +C1 g172_1 gnd 2.080806f +C2 g172_2 gnd 2.080806f +C3 g172_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g172_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +R6 g172_1 5 2.224404 +C9 6 gnd 2.080806f +R7 g172_1 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +R70 68 g172_2 2.224404 +.ends + +.subckt netg397 g397_1 g397_0 g397_2 gnd +C1 g397_1 gnd 2.080806f +C2 g397_0 gnd 2.080806f +C3 g397_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g397_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g397_1 43 2.224404 +C47 44 gnd 2.080806f +R45 44 g397_1 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +R81 g397_2 79 2.224404 +.ends + +.subckt netg545 g545_5 g545_0 g545_6 g545_4 g545_7 g545_1 g545_2 g545_3 gnd +C1 g545_5 gnd 2.080806f +C2 g545_0 gnd 2.080806f +C3 g545_6 gnd 2.080806f +C4 g545_4 gnd 2.080806f +C5 g545_7 gnd 2.080806f +C6 g545_1 gnd 2.080806f +C7 g545_2 gnd 2.080806f +C8 g545_3 gnd 2.080806f +C9 1 gnd 2.080806f +R1 1 g545_0 2.224404 +R2 g545_6 1 2.224404 +C10 2 gnd 2.080806f +R3 g545_0 2 2.224404 +C11 3 gnd 2.080806f +R4 2 3 2.224404 +C12 4 gnd 2.080806f +R5 3 4 2.224404 +C13 5 gnd 2.080806f +R6 4 5 2.224404 +C14 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g545_7 2.224404 +C15 7 gnd 2.080806f +R9 7 g545_6 2.224404 +C16 8 gnd 2.080806f +R10 8 7 2.224404 +C17 9 gnd 2.080806f +R11 9 8 2.224404 +C18 10 gnd 2.080806f +R12 10 9 2.224404 +C19 11 gnd 2.080806f +R13 11 10 2.224404 +C20 12 gnd 2.080806f +R14 12 11 2.224404 +C21 13 gnd 2.080806f +R15 13 12 2.224404 +C22 14 gnd 2.080806f +R16 14 13 2.224404 +C23 15 gnd 2.080806f +R17 15 14 2.224404 +C24 16 gnd 2.080806f +R18 16 15 2.224404 +C25 17 gnd 2.080806f +R19 17 16 2.224404 +C26 18 gnd 2.080806f +R20 18 17 2.224404 +R21 g545_4 18 2.224404 +R22 g545_5 g545_4 2.224404 +R23 g545_2 g545_5 2.224404 +C27 19 gnd 2.080806f +R24 g545_7 19 2.224404 +C28 20 gnd 2.080806f +R25 19 20 2.224404 +C29 21 gnd 2.080806f +R26 20 21 2.224404 +C30 22 gnd 2.080806f +R27 21 22 2.224404 +C31 23 gnd 2.080806f +R28 22 23 2.224404 +C32 24 gnd 2.080806f +R29 23 24 2.224404 +C33 25 gnd 2.080806f +R30 24 25 2.224404 +C34 26 gnd 2.080806f +R31 25 26 2.224404 +C35 27 gnd 2.080806f +R32 26 27 2.224404 +C36 28 gnd 2.080806f +R33 27 28 2.224404 +C37 29 gnd 2.080806f +R34 28 29 2.224404 +C38 30 gnd 2.080806f +R35 29 30 2.224404 +C39 31 gnd 2.080806f +R36 30 31 2.224404 +C40 32 gnd 2.080806f +R37 31 32 2.224404 +C41 33 gnd 2.080806f +R38 32 33 2.224404 +C42 34 gnd 2.080806f +R39 33 34 2.224404 +C43 35 gnd 2.080806f +R40 34 35 2.224404 +C44 36 gnd 2.080806f +R41 35 36 2.224404 +C45 37 gnd 2.080806f +R42 36 37 2.224404 +C46 38 gnd 2.080806f +R43 37 38 2.224404 +C47 39 gnd 2.080806f +R44 38 39 2.224404 +C48 40 gnd 2.080806f +R45 39 40 2.224404 +C49 41 gnd 2.080806f +R46 40 41 2.224404 +C50 42 gnd 2.080806f +R47 41 42 2.224404 +C51 43 gnd 2.080806f +R48 42 43 2.224404 +C52 44 gnd 2.080806f +R49 43 44 2.224404 +C53 45 gnd 2.080806f +R50 44 45 2.224404 +C54 46 gnd 2.080806f +R51 45 46 2.224404 +C55 47 gnd 2.080806f +R52 46 47 2.224404 +C56 48 gnd 2.080806f +R53 47 48 2.224404 +C57 49 gnd 2.080806f +R54 48 49 2.224404 +C58 50 gnd 2.080806f +R55 49 50 2.224404 +R56 50 g545_1 2.224404 +C59 51 gnd 2.080806f +R57 g545_1 51 2.224404 +C60 52 gnd 2.080806f +R58 51 52 2.224404 +C61 53 gnd 2.080806f +R59 53 52 2.224404 +C62 54 gnd 2.080806f +R60 54 53 2.224404 +C63 55 gnd 2.080806f +R61 55 54 2.224404 +C64 56 gnd 2.080806f +R62 55 56 2.224404 +C65 57 gnd 2.080806f +R63 56 57 2.224404 +C66 58 gnd 2.080806f +R64 57 58 2.224404 +C67 59 gnd 2.080806f +R65 58 59 2.224404 +C68 60 gnd 2.080806f +R66 60 59 2.224404 +C69 61 gnd 2.080806f +R67 61 60 2.224404 +C70 62 gnd 2.080806f +R68 62 61 2.224404 +C71 63 gnd 2.080806f +R69 62 63 2.224404 +C72 64 gnd 2.080806f +R70 63 64 2.224404 +C73 65 gnd 2.080806f +R71 64 65 2.224404 +C74 66 gnd 2.080806f +R72 66 65 2.224404 +C75 67 gnd 2.080806f +R73 67 66 2.224404 +C76 68 gnd 2.080806f +R74 68 67 2.224404 +C77 69 gnd 2.080806f +R75 69 68 2.224404 +C78 70 gnd 2.080806f +R76 69 70 2.224404 +C79 71 gnd 2.080806f +R77 70 71 2.224404 +C80 72 gnd 2.080806f +R78 71 72 2.224404 +R79 72 g545_3 2.224404 +.ends + +.subckt netg175 g175_1 g175_0 g175_2 gnd +C1 g175_1 gnd 2.080806f +C2 g175_0 gnd 2.080806f +C3 g175_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g175_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +R17 16 g175_1 2.224404 +C20 17 gnd 2.080806f +R18 g175_1 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +R70 68 g175_2 2.224404 +.ends + +.subckt netg1658 g1658_4 g1658_1 g1658_2 g1658_5 g1658_3 g1658_0 gnd +C1 g1658_4 gnd 2.080806f +C2 g1658_1 gnd 2.080806f +C3 g1658_2 gnd 2.080806f +C4 g1658_5 gnd 2.080806f +C5 g1658_3 gnd 2.080806f +C6 g1658_0 gnd 2.080806f +R1 g1658_3 g1658_0 2.224404 +C7 1 gnd 2.080806f +R2 g1658_3 1 2.224404 +C8 2 gnd 2.080806f +R3 1 2 2.224404 +C9 3 gnd 2.080806f +R4 3 2 2.224404 +C10 4 gnd 2.080806f +R5 4 3 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +C14 8 gnd 2.080806f +R9 8 7 2.224404 +R10 g1658_1 8 2.224404 +C15 9 gnd 2.080806f +R11 9 g1658_1 2.224404 +C16 10 gnd 2.080806f +R12 10 9 2.224404 +C17 11 gnd 2.080806f +R13 11 10 2.224404 +R14 g1658_2 11 2.224404 +C18 12 gnd 2.080806f +R15 g1658_0 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 56 57 2.224404 +C64 58 gnd 2.080806f +R61 57 58 2.224404 +C65 59 gnd 2.080806f +R62 58 59 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 65 64 2.224404 +C72 66 gnd 2.080806f +R69 66 65 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +R71 67 g1658_4 2.224404 +C74 68 gnd 2.080806f +R72 g1658_4 68 2.224404 +C75 69 gnd 2.080806f +R73 68 69 2.224404 +C76 70 gnd 2.080806f +R74 69 70 2.224404 +C77 71 gnd 2.080806f +R75 70 71 2.224404 +C78 72 gnd 2.080806f +R76 71 72 2.224404 +C79 73 gnd 2.080806f +R77 72 73 2.224404 +C80 74 gnd 2.080806f +R78 73 74 2.224404 +R79 74 g1658_5 2.224404 +.ends + +.subckt netg7454 g7454_0 g7454_1 gnd +C1 g7454_0 gnd 2.080806f +C2 g7454_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7454_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 61 62 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 68 69 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +R71 g7454_1 70 2.224404 +.ends + +.subckt netg168 g168_2 g168_1 g168_0 gnd +C1 g168_2 gnd 2.080806f +C2 g168_1 gnd 2.080806f +C3 g168_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g168_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 46 45 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +R51 g168_1 50 2.224404 +C54 51 gnd 2.080806f +R52 51 g168_1 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +R71 g168_2 69 2.224404 +.ends + +.subckt netg1646 g1646_2 g1646_0 g1646_4 g1646_5 g1646_3 g1646_1 gnd +C1 g1646_2 gnd 2.080806f +C2 g1646_0 gnd 2.080806f +C3 g1646_4 gnd 2.080806f +C4 g1646_5 gnd 2.080806f +C5 g1646_3 gnd 2.080806f +C6 g1646_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1646_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1646_2 2.224404 +C9 3 gnd 2.080806f +R4 3 g1646_2 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +C14 8 gnd 2.080806f +R9 7 8 2.224404 +R10 8 g1646_1 2.224404 +C15 9 gnd 2.080806f +R11 g1646_1 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +C19 13 gnd 2.080806f +R15 12 13 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 15 16 2.224404 +C23 17 gnd 2.080806f +R19 16 17 2.224404 +R20 17 g1646_3 2.224404 +C24 18 gnd 2.080806f +R21 g1646_3 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 56 57 2.224404 +C64 58 gnd 2.080806f +R61 57 58 2.224404 +C65 59 gnd 2.080806f +R62 58 59 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 65 64 2.224404 +C72 66 gnd 2.080806f +R69 66 65 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +C74 68 gnd 2.080806f +R71 68 67 2.224404 +C75 69 gnd 2.080806f +R72 68 69 2.224404 +C76 70 gnd 2.080806f +R73 69 70 2.224404 +C77 71 gnd 2.080806f +R74 70 71 2.224404 +R75 g1646_5 71 2.224404 +C78 72 gnd 2.080806f +R76 g1646_5 72 2.224404 +C79 73 gnd 2.080806f +R77 72 73 2.224404 +C80 74 gnd 2.080806f +R78 73 74 2.224404 +C81 75 gnd 2.080806f +R79 74 75 2.224404 +R80 75 g1646_4 2.224404 +.ends + +.subckt netg7486 g7486_1 g7486_0 gnd +C1 g7486_1 gnd 2.080806f +C2 g7486_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7486_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +R72 g7486_1 71 2.224404 +.ends + +.subckt netg470 g470_1 g470_0 g470_2 gnd +C1 g470_1 gnd 2.080806f +C2 g470_0 gnd 2.080806f +C3 g470_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g470_0 1 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +R7 g470_1 6 2.224404 +C10 7 gnd 2.080806f +R8 g470_0 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +R72 70 g470_2 2.224404 +.ends + +.subckt netg7455 g7455_0 g7455_1 gnd +C1 g7455_0 gnd 2.080806f +C2 g7455_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7455_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 61 62 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +R73 72 g7455_1 2.224404 +.ends + +.subckt netg473 g473_4 g473_3 g473_0 g473_5 g473_2 g473_1 gnd +C1 g473_4 gnd 2.080806f +C2 g473_3 gnd 2.080806f +C3 g473_0 gnd 2.080806f +C4 g473_5 gnd 2.080806f +C5 g473_2 gnd 2.080806f +C6 g473_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g473_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g473_4 2.224404 +C10 4 gnd 2.080806f +R5 g473_4 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +C14 8 gnd 2.080806f +R9 7 8 2.224404 +C15 9 gnd 2.080806f +R10 8 9 2.224404 +C16 10 gnd 2.080806f +R11 9 10 2.224404 +C17 11 gnd 2.080806f +R12 10 11 2.224404 +C18 12 gnd 2.080806f +R13 11 12 2.224404 +R14 12 g473_3 2.224404 +C19 13 gnd 2.080806f +R15 13 12 2.224404 +C20 14 gnd 2.080806f +R16 13 14 2.224404 +C21 15 gnd 2.080806f +R17 15 14 2.224404 +C22 16 gnd 2.080806f +R18 16 15 2.224404 +C23 17 gnd 2.080806f +R19 17 16 2.224404 +C24 18 gnd 2.080806f +R20 18 17 2.224404 +C25 19 gnd 2.080806f +R21 19 18 2.224404 +C26 20 gnd 2.080806f +R22 19 20 2.224404 +C27 21 gnd 2.080806f +R23 21 20 2.224404 +C28 22 gnd 2.080806f +R24 21 22 2.224404 +C29 23 gnd 2.080806f +R25 22 23 2.224404 +C30 24 gnd 2.080806f +R26 24 23 2.224404 +C31 25 gnd 2.080806f +R27 24 25 2.224404 +C32 26 gnd 2.080806f +R28 25 26 2.224404 +C33 27 gnd 2.080806f +R29 27 26 2.224404 +C34 28 gnd 2.080806f +R30 27 28 2.224404 +R31 g473_2 28 2.224404 +C35 29 gnd 2.080806f +R32 29 g473_4 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 35 34 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 56 57 2.224404 +C64 58 gnd 2.080806f +R61 57 58 2.224404 +C65 59 gnd 2.080806f +R62 58 59 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 64 65 2.224404 +C72 66 gnd 2.080806f +R69 65 66 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +C74 68 gnd 2.080806f +R71 68 67 2.224404 +C75 69 gnd 2.080806f +R72 69 68 2.224404 +C76 70 gnd 2.080806f +R73 69 70 2.224404 +C77 71 gnd 2.080806f +R74 71 70 2.224404 +C78 72 gnd 2.080806f +R75 71 72 2.224404 +C79 73 gnd 2.080806f +R76 72 73 2.224404 +R77 g473_1 73 2.224404 +C80 74 gnd 2.080806f +R78 73 74 2.224404 +C81 75 gnd 2.080806f +R79 74 75 2.224404 +C82 76 gnd 2.080806f +R80 75 76 2.224404 +C83 77 gnd 2.080806f +R81 76 77 2.224404 +C84 78 gnd 2.080806f +R82 77 78 2.224404 +C85 79 gnd 2.080806f +R83 78 79 2.224404 +C86 80 gnd 2.080806f +R84 79 80 2.224404 +C87 81 gnd 2.080806f +R85 80 81 2.224404 +C88 82 gnd 2.080806f +R86 81 82 2.224404 +C89 83 gnd 2.080806f +R87 82 83 2.224404 +C90 84 gnd 2.080806f +R88 83 84 2.224404 +C91 85 gnd 2.080806f +R89 84 85 2.224404 +C92 86 gnd 2.080806f +R90 85 86 2.224404 +C93 87 gnd 2.080806f +R91 86 87 2.224404 +C94 88 gnd 2.080806f +R92 87 88 2.224404 +C95 89 gnd 2.080806f +R93 88 89 2.224404 +C96 90 gnd 2.080806f +R94 89 90 2.224404 +C97 91 gnd 2.080806f +R95 90 91 2.224404 +C98 92 gnd 2.080806f +R96 91 92 2.224404 +C99 93 gnd 2.080806f +R97 92 93 2.224404 +C100 94 gnd 2.080806f +R98 93 94 2.224404 +C101 95 gnd 2.080806f +R99 94 95 2.224404 +C102 96 gnd 2.080806f +R100 95 96 2.224404 +R101 96 g473_5 2.224404 +.ends + +.subckt netg1638 g1638_4 g1638_2 g1638_0 g1638_7 g1638_1 g1638_5 g1638_3 gnd +C1 g1638_4 gnd 2.080806f +C2 g1638_2 gnd 2.080806f +C3 g1638_0 gnd 2.080806f +C4 g1638_7 gnd 2.080806f +C5 g1638_1 gnd 2.080806f +C6 g1638_5 gnd 2.080806f +C7 g1638_3 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g1638_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1638_4 2.224404 +C10 3 gnd 2.080806f +R4 g1638_4 3 2.224404 +C11 4 gnd 2.080806f +R5 3 4 2.224404 +C12 5 gnd 2.080806f +R6 4 5 2.224404 +R7 5 g1638_3 2.224404 +C13 6 gnd 2.080806f +R8 6 g1638_0 2.224404 +C14 7 gnd 2.080806f +R9 7 6 2.224404 +C15 8 gnd 2.080806f +R10 8 7 2.224404 +C16 9 gnd 2.080806f +R11 9 8 2.224404 +C17 10 gnd 2.080806f +R12 10 9 2.224404 +C18 11 gnd 2.080806f +R13 11 10 2.224404 +C19 12 gnd 2.080806f +R14 12 11 2.224404 +C20 13 gnd 2.080806f +R15 13 12 2.224404 +C21 14 gnd 2.080806f +R16 14 13 2.224404 +C22 15 gnd 2.080806f +R17 15 14 2.224404 +C23 16 gnd 2.080806f +R18 16 15 2.224404 +C24 17 gnd 2.080806f +R19 17 16 2.224404 +C25 18 gnd 2.080806f +R20 18 17 2.224404 +C26 19 gnd 2.080806f +R21 19 18 2.224404 +R22 g1638_7 19 2.224404 +R23 g1638_5 g1638_7 2.224404 +C27 20 gnd 2.080806f +R24 g1638_3 20 2.224404 +C28 21 gnd 2.080806f +R25 20 21 2.224404 +C29 22 gnd 2.080806f +R26 21 22 2.224404 +C30 23 gnd 2.080806f +R27 22 23 2.224404 +C31 24 gnd 2.080806f +R28 23 24 2.224404 +C32 25 gnd 2.080806f +R29 24 25 2.224404 +C33 26 gnd 2.080806f +R30 25 26 2.224404 +C34 27 gnd 2.080806f +R31 26 27 2.224404 +C35 28 gnd 2.080806f +R32 27 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 43 42 2.224404 +C51 44 gnd 2.080806f +R48 43 44 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +C53 46 gnd 2.080806f +R50 46 45 2.224404 +C54 47 gnd 2.080806f +R51 46 47 2.224404 +C55 48 gnd 2.080806f +R52 47 48 2.224404 +C56 49 gnd 2.080806f +R53 48 49 2.224404 +C57 50 gnd 2.080806f +R54 49 50 2.224404 +C58 51 gnd 2.080806f +R55 50 51 2.224404 +C59 52 gnd 2.080806f +R56 51 52 2.224404 +C60 53 gnd 2.080806f +R57 52 53 2.224404 +C61 54 gnd 2.080806f +R58 53 54 2.224404 +C62 55 gnd 2.080806f +R59 54 55 2.224404 +C63 56 gnd 2.080806f +R60 55 56 2.224404 +C64 57 gnd 2.080806f +R61 56 57 2.224404 +C65 58 gnd 2.080806f +R62 57 58 2.224404 +C66 59 gnd 2.080806f +R63 58 59 2.224404 +C67 60 gnd 2.080806f +R64 59 60 2.224404 +C68 61 gnd 2.080806f +R65 60 61 2.224404 +C69 62 gnd 2.080806f +R66 61 62 2.224404 +C70 63 gnd 2.080806f +R67 62 63 2.224404 +C71 64 gnd 2.080806f +R68 63 64 2.224404 +C72 65 gnd 2.080806f +R69 64 65 2.224404 +C73 66 gnd 2.080806f +R70 65 66 2.224404 +C74 67 gnd 2.080806f +R71 67 66 2.224404 +C75 68 gnd 2.080806f +R72 68 67 2.224404 +C76 69 gnd 2.080806f +R73 68 69 2.224404 +C77 70 gnd 2.080806f +R74 69 70 2.224404 +C78 71 gnd 2.080806f +R75 70 71 2.224404 +C79 72 gnd 2.080806f +R76 71 72 2.224404 +C80 73 gnd 2.080806f +R77 72 73 2.224404 +C81 74 gnd 2.080806f +R78 73 74 2.224404 +C82 75 gnd 2.080806f +R79 74 75 2.224404 +C83 76 gnd 2.080806f +R80 76 75 2.224404 +C84 77 gnd 2.080806f +R81 77 76 2.224404 +C85 78 gnd 2.080806f +R82 78 77 2.224404 +C86 79 gnd 2.080806f +R83 79 78 2.224404 +R84 79 g1638_1 2.224404 +C87 80 gnd 2.080806f +R85 80 g1638_1 2.224404 +C88 81 gnd 2.080806f +R86 80 81 2.224404 +C89 82 gnd 2.080806f +R87 81 82 2.224404 +C90 83 gnd 2.080806f +R88 83 82 2.224404 +C91 84 gnd 2.080806f +R89 84 83 2.224404 +R90 g1638_2 84 2.224404 +.ends + +.subckt netg7470 g7470_1 g7470_0 gnd +C1 g7470_1 gnd 2.080806f +C2 g7470_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7470_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +R75 74 g7470_1 2.224404 +.ends + +.subckt netg7471 g7471_1 g7471_0 gnd +C1 g7471_1 gnd 2.080806f +C2 g7471_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7471_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +R75 74 g7471_1 2.224404 +.ends + +.subckt netg205 g205_2 g205_0 g205_1 gnd +C1 g205_2 gnd 2.080806f +C2 g205_0 gnd 2.080806f +C3 g205_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g205_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +R31 30 g205_2 2.224404 +C34 31 gnd 2.080806f +R32 g205_2 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +R84 82 g205_1 2.224404 +.ends + +.subckt netg7460 g7460_1 g7460_0 gnd +C1 g7460_1 gnd 2.080806f +C2 g7460_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7460_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 57 58 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +R76 75 g7460_1 2.224404 +.ends + +.subckt netg2270 g2270_0 g2270_3 g2270_4 g2270_5 g2270_2 g2270_1 gnd +C1 g2270_0 gnd 2.080806f +C2 g2270_3 gnd 2.080806f +C3 g2270_4 gnd 2.080806f +C4 g2270_5 gnd 2.080806f +C5 g2270_2 gnd 2.080806f +C6 g2270_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g2270_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +C10 4 gnd 2.080806f +R4 4 3 2.224404 +C11 5 gnd 2.080806f +R5 5 4 2.224404 +C12 6 gnd 2.080806f +R6 6 5 2.224404 +C13 7 gnd 2.080806f +R7 7 6 2.224404 +R8 g2270_4 7 2.224404 +C14 8 gnd 2.080806f +R9 8 g2270_4 2.224404 +C15 9 gnd 2.080806f +R10 9 8 2.224404 +C16 10 gnd 2.080806f +R11 10 9 2.224404 +R12 g2270_3 10 2.224404 +C17 11 gnd 2.080806f +R13 11 g2270_3 2.224404 +R14 g2270_5 11 2.224404 +C18 12 gnd 2.080806f +R15 g2270_0 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 20 19 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 31 30 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 47 46 2.224404 +R51 g2270_2 47 2.224404 +C54 48 gnd 2.080806f +R52 46 48 2.224404 +C55 49 gnd 2.080806f +R53 48 49 2.224404 +C56 50 gnd 2.080806f +R54 49 50 2.224404 +C57 51 gnd 2.080806f +R55 50 51 2.224404 +C58 52 gnd 2.080806f +R56 51 52 2.224404 +C59 53 gnd 2.080806f +R57 52 53 2.224404 +C60 54 gnd 2.080806f +R58 53 54 2.224404 +C61 55 gnd 2.080806f +R59 54 55 2.224404 +C62 56 gnd 2.080806f +R60 55 56 2.224404 +C63 57 gnd 2.080806f +R61 56 57 2.224404 +C64 58 gnd 2.080806f +R62 57 58 2.224404 +C65 59 gnd 2.080806f +R63 58 59 2.224404 +C66 60 gnd 2.080806f +R64 59 60 2.224404 +C67 61 gnd 2.080806f +R65 60 61 2.224404 +C68 62 gnd 2.080806f +R66 61 62 2.224404 +C69 63 gnd 2.080806f +R67 62 63 2.224404 +C70 64 gnd 2.080806f +R68 63 64 2.224404 +C71 65 gnd 2.080806f +R69 64 65 2.224404 +C72 66 gnd 2.080806f +R70 65 66 2.224404 +C73 67 gnd 2.080806f +R71 66 67 2.224404 +C74 68 gnd 2.080806f +R72 67 68 2.224404 +C75 69 gnd 2.080806f +R73 68 69 2.224404 +C76 70 gnd 2.080806f +R74 69 70 2.224404 +C77 71 gnd 2.080806f +R75 70 71 2.224404 +C78 72 gnd 2.080806f +R76 71 72 2.224404 +C79 73 gnd 2.080806f +R77 72 73 2.224404 +C80 74 gnd 2.080806f +R78 73 74 2.224404 +C81 75 gnd 2.080806f +R79 74 75 2.224404 +C82 76 gnd 2.080806f +R80 75 76 2.224404 +C83 77 gnd 2.080806f +R81 76 77 2.224404 +R82 77 g2270_1 2.224404 +.ends + +.subckt netg7450 g7450_0 g7450_1 gnd +C1 g7450_0 gnd 2.080806f +C2 g7450_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7450_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 57 58 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 61 62 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +R77 g7450_1 76 2.224404 +.ends + +.subckt netg7504 g7504_0 g7504_1 gnd +C1 g7504_0 gnd 2.080806f +C2 g7504_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7504_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +R77 g7504_1 76 2.224404 +.ends + +.subckt netg7449 g7449_1 g7449_0 gnd +C1 g7449_1 gnd 2.080806f +C2 g7449_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7449_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +R77 76 g7449_1 2.224404 +.ends + +.subckt netg7503 g7503_0 g7503_1 gnd +C1 g7503_0 gnd 2.080806f +C2 g7503_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7503_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +R77 g7503_1 76 2.224404 +.ends + +.subckt netg197 g197_0 g197_1 g197_2 gnd +C1 g197_0 gnd 2.080806f +C2 g197_1 gnd 2.080806f +C3 g197_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g197_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +R32 g197_1 31 2.224404 +C35 32 gnd 2.080806f +R33 27 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +R80 g197_2 78 2.224404 +.ends + +.subckt netg4 g4_2 g4_1 g4_0 gnd +C1 g4_2 gnd 2.080806f +C2 g4_1 gnd 2.080806f +C3 g4_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g4_0 1 2.224404 +R2 1 g4_2 2.224404 +C5 2 gnd 2.080806f +R3 2 g4_0 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +R78 g4_1 76 2.224404 +.ends + +.subckt netg1750 g1750_4 g1750_0 g1750_2 g1750_5 g1750_3 g1750_1 gnd +C1 g1750_4 gnd 2.080806f +C2 g1750_0 gnd 2.080806f +C3 g1750_2 gnd 2.080806f +C4 g1750_5 gnd 2.080806f +C5 g1750_3 gnd 2.080806f +C6 g1750_1 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g1750_0 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 g1750_4 2 2.224404 +C9 3 gnd 2.080806f +R4 g1750_0 3 2.224404 +C10 4 gnd 2.080806f +R5 3 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +C13 7 gnd 2.080806f +R8 6 7 2.224404 +C14 8 gnd 2.080806f +R9 7 8 2.224404 +C15 9 gnd 2.080806f +R10 8 9 2.224404 +C16 10 gnd 2.080806f +R11 9 10 2.224404 +C17 11 gnd 2.080806f +R12 10 11 2.224404 +C18 12 gnd 2.080806f +R13 11 12 2.224404 +C19 13 gnd 2.080806f +R14 12 13 2.224404 +R15 13 g1750_2 2.224404 +C20 14 gnd 2.080806f +R16 14 13 2.224404 +C21 15 gnd 2.080806f +R17 14 15 2.224404 +C22 16 gnd 2.080806f +R18 16 15 2.224404 +C23 17 gnd 2.080806f +R19 17 16 2.224404 +C24 18 gnd 2.080806f +R20 18 17 2.224404 +C25 19 gnd 2.080806f +R21 19 18 2.224404 +C26 20 gnd 2.080806f +R22 20 19 2.224404 +C27 21 gnd 2.080806f +R23 20 21 2.224404 +C28 22 gnd 2.080806f +R24 22 21 2.224404 +C29 23 gnd 2.080806f +R25 22 23 2.224404 +C30 24 gnd 2.080806f +R26 23 24 2.224404 +C31 25 gnd 2.080806f +R27 25 24 2.224404 +C32 26 gnd 2.080806f +R28 25 26 2.224404 +C33 27 gnd 2.080806f +R29 26 27 2.224404 +C34 28 gnd 2.080806f +R30 28 27 2.224404 +C35 29 gnd 2.080806f +R31 28 29 2.224404 +R32 g1750_1 29 2.224404 +C36 30 gnd 2.080806f +R33 g1750_2 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 33 32 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 56 57 2.224404 +C64 58 gnd 2.080806f +R61 57 58 2.224404 +C65 59 gnd 2.080806f +R62 58 59 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 64 65 2.224404 +C72 66 gnd 2.080806f +R69 65 66 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +C74 68 gnd 2.080806f +R71 67 68 2.224404 +C75 69 gnd 2.080806f +R72 68 69 2.224404 +C76 70 gnd 2.080806f +R73 69 70 2.224404 +C77 71 gnd 2.080806f +R74 70 71 2.224404 +C78 72 gnd 2.080806f +R75 71 72 2.224404 +C79 73 gnd 2.080806f +R76 72 73 2.224404 +C80 74 gnd 2.080806f +R77 73 74 2.224404 +C81 75 gnd 2.080806f +R78 74 75 2.224404 +C82 76 gnd 2.080806f +R79 75 76 2.224404 +C83 77 gnd 2.080806f +R80 76 77 2.224404 +C84 78 gnd 2.080806f +R81 77 78 2.224404 +C85 79 gnd 2.080806f +R82 79 78 2.224404 +C86 80 gnd 2.080806f +R83 80 79 2.224404 +C87 81 gnd 2.080806f +R84 80 81 2.224404 +C88 82 gnd 2.080806f +R85 82 81 2.224404 +C89 83 gnd 2.080806f +R86 83 82 2.224404 +C90 84 gnd 2.080806f +R87 84 83 2.224404 +R88 g1750_5 84 2.224404 +C91 85 gnd 2.080806f +R89 81 85 2.224404 +C92 86 gnd 2.080806f +R90 85 86 2.224404 +C93 87 gnd 2.080806f +R91 86 87 2.224404 +C94 88 gnd 2.080806f +R92 87 88 2.224404 +C95 89 gnd 2.080806f +R93 88 89 2.224404 +C96 90 gnd 2.080806f +R94 89 90 2.224404 +C97 91 gnd 2.080806f +R95 90 91 2.224404 +C98 92 gnd 2.080806f +R96 91 92 2.224404 +C99 93 gnd 2.080806f +R97 92 93 2.224404 +C100 94 gnd 2.080806f +R98 93 94 2.224404 +C101 95 gnd 2.080806f +R99 94 95 2.224404 +C102 96 gnd 2.080806f +R100 95 96 2.224404 +C103 97 gnd 2.080806f +R101 96 97 2.224404 +C104 98 gnd 2.080806f +R102 98 97 2.224404 +C105 99 gnd 2.080806f +R103 99 98 2.224404 +R104 g1750_3 99 2.224404 +.ends + +.subckt netg457 g457_6 g457_2 g457_5 g457_1 g457_4 g457_3 g457_0 gnd +C1 g457_6 gnd 2.080806f +C2 g457_2 gnd 2.080806f +C3 g457_5 gnd 2.080806f +C4 g457_1 gnd 2.080806f +C5 g457_4 gnd 2.080806f +C6 g457_3 gnd 2.080806f +C7 g457_0 gnd 2.080806f +C8 1 gnd 2.080806f +R1 g457_0 1 2.224404 +C9 2 gnd 2.080806f +R2 1 2 2.224404 +C10 3 gnd 2.080806f +R3 3 2 2.224404 +C11 4 gnd 2.080806f +R4 4 3 2.224404 +C12 5 gnd 2.080806f +R5 4 5 2.224404 +C13 6 gnd 2.080806f +R6 6 5 2.224404 +C14 7 gnd 2.080806f +R7 6 7 2.224404 +C15 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g457_1 2.224404 +C16 9 gnd 2.080806f +R10 9 g457_0 2.224404 +C17 10 gnd 2.080806f +R11 10 9 2.224404 +C18 11 gnd 2.080806f +R12 11 10 2.224404 +C19 12 gnd 2.080806f +R13 12 11 2.224404 +C20 13 gnd 2.080806f +R14 13 12 2.224404 +C21 14 gnd 2.080806f +R15 14 13 2.224404 +C22 15 gnd 2.080806f +R16 15 14 2.224404 +C23 16 gnd 2.080806f +R17 16 15 2.224404 +C24 17 gnd 2.080806f +R18 17 16 2.224404 +R19 g457_3 17 2.224404 +C25 18 gnd 2.080806f +R20 g457_3 18 2.224404 +C26 19 gnd 2.080806f +R21 18 19 2.224404 +C27 20 gnd 2.080806f +R22 19 20 2.224404 +C28 21 gnd 2.080806f +R23 20 21 2.224404 +C29 22 gnd 2.080806f +R24 21 22 2.224404 +C30 23 gnd 2.080806f +R25 22 23 2.224404 +C31 24 gnd 2.080806f +R26 23 24 2.224404 +C32 25 gnd 2.080806f +R27 24 25 2.224404 +C33 26 gnd 2.080806f +R28 25 26 2.224404 +C34 27 gnd 2.080806f +R29 26 27 2.224404 +C35 28 gnd 2.080806f +R30 27 28 2.224404 +C36 29 gnd 2.080806f +R31 28 29 2.224404 +R32 29 g457_2 2.224404 +C37 30 gnd 2.080806f +R33 g457_2 30 2.224404 +C38 31 gnd 2.080806f +R34 30 31 2.224404 +C39 32 gnd 2.080806f +R35 31 32 2.224404 +C40 33 gnd 2.080806f +R36 32 33 2.224404 +R37 33 g457_5 2.224404 +C41 34 gnd 2.080806f +R38 g457_1 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 42 43 2.224404 +C51 44 gnd 2.080806f +R48 43 44 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +C53 46 gnd 2.080806f +R50 45 46 2.224404 +C54 47 gnd 2.080806f +R51 46 47 2.224404 +C55 48 gnd 2.080806f +R52 47 48 2.224404 +C56 49 gnd 2.080806f +R53 48 49 2.224404 +C57 50 gnd 2.080806f +R54 49 50 2.224404 +C58 51 gnd 2.080806f +R55 50 51 2.224404 +C59 52 gnd 2.080806f +R56 51 52 2.224404 +C60 53 gnd 2.080806f +R57 52 53 2.224404 +C61 54 gnd 2.080806f +R58 53 54 2.224404 +C62 55 gnd 2.080806f +R59 54 55 2.224404 +C63 56 gnd 2.080806f +R60 55 56 2.224404 +C64 57 gnd 2.080806f +R61 56 57 2.224404 +C65 58 gnd 2.080806f +R62 57 58 2.224404 +C66 59 gnd 2.080806f +R63 58 59 2.224404 +C67 60 gnd 2.080806f +R64 59 60 2.224404 +C68 61 gnd 2.080806f +R65 60 61 2.224404 +C69 62 gnd 2.080806f +R66 61 62 2.224404 +C70 63 gnd 2.080806f +R67 62 63 2.224404 +C71 64 gnd 2.080806f +R68 63 64 2.224404 +C72 65 gnd 2.080806f +R69 64 65 2.224404 +C73 66 gnd 2.080806f +R70 65 66 2.224404 +C74 67 gnd 2.080806f +R71 66 67 2.224404 +C75 68 gnd 2.080806f +R72 68 67 2.224404 +C76 69 gnd 2.080806f +R73 68 69 2.224404 +C77 70 gnd 2.080806f +R74 69 70 2.224404 +C78 71 gnd 2.080806f +R75 70 71 2.224404 +C79 72 gnd 2.080806f +R76 72 71 2.224404 +C80 73 gnd 2.080806f +R77 72 73 2.224404 +C81 74 gnd 2.080806f +R78 73 74 2.224404 +C82 75 gnd 2.080806f +R79 75 74 2.224404 +C83 76 gnd 2.080806f +R80 76 75 2.224404 +C84 77 gnd 2.080806f +R81 76 77 2.224404 +C85 78 gnd 2.080806f +R82 78 77 2.224404 +C86 79 gnd 2.080806f +R83 79 78 2.224404 +C87 80 gnd 2.080806f +R84 79 80 2.224404 +R85 g457_6 80 2.224404 +C88 81 gnd 2.080806f +R86 80 81 2.224404 +C89 82 gnd 2.080806f +R87 81 82 2.224404 +C90 83 gnd 2.080806f +R88 82 83 2.224404 +C91 84 gnd 2.080806f +R89 83 84 2.224404 +C92 85 gnd 2.080806f +R90 84 85 2.224404 +C93 86 gnd 2.080806f +R91 85 86 2.224404 +C94 87 gnd 2.080806f +R92 86 87 2.224404 +C95 88 gnd 2.080806f +R93 87 88 2.224404 +C96 89 gnd 2.080806f +R94 88 89 2.224404 +C97 90 gnd 2.080806f +R95 89 90 2.224404 +C98 91 gnd 2.080806f +R96 90 91 2.224404 +C99 92 gnd 2.080806f +R97 91 92 2.224404 +C100 93 gnd 2.080806f +R98 92 93 2.224404 +C101 94 gnd 2.080806f +R99 93 94 2.224404 +C102 95 gnd 2.080806f +R100 94 95 2.224404 +C103 96 gnd 2.080806f +R101 95 96 2.224404 +C104 97 gnd 2.080806f +R102 96 97 2.224404 +C105 98 gnd 2.080806f +R103 97 98 2.224404 +C106 99 gnd 2.080806f +R104 98 99 2.224404 +C107 100 gnd 2.080806f +R105 99 100 2.224404 +C108 101 gnd 2.080806f +R106 100 101 2.224404 +C109 102 gnd 2.080806f +R107 101 102 2.224404 +R108 102 g457_4 2.224404 +.ends + +.subckt netg1738 g1738_5 g1738_2 g1738_1 g1738_4 g1738_3 g1738_0 gnd +C1 g1738_5 gnd 2.080806f +C2 g1738_2 gnd 2.080806f +C3 g1738_1 gnd 2.080806f +C4 g1738_4 gnd 2.080806f +C5 g1738_3 gnd 2.080806f +C6 g1738_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1738_0 1 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +R4 g1738_3 3 2.224404 +C10 4 gnd 2.080806f +R5 4 g1738_0 2.224404 +C11 5 gnd 2.080806f +R6 5 4 2.224404 +C12 6 gnd 2.080806f +R7 6 5 2.224404 +C13 7 gnd 2.080806f +R8 7 6 2.224404 +R9 g1738_4 7 2.224404 +C14 8 gnd 2.080806f +R10 g1738_3 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +R14 g1738_5 11 2.224404 +C18 12 gnd 2.080806f +R15 1 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +R59 55 g1738_1 2.224404 +C62 56 gnd 2.080806f +R60 56 55 2.224404 +C63 57 gnd 2.080806f +R61 57 56 2.224404 +C64 58 gnd 2.080806f +R62 58 57 2.224404 +C65 59 gnd 2.080806f +R63 59 58 2.224404 +C66 60 gnd 2.080806f +R64 60 59 2.224404 +C67 61 gnd 2.080806f +R65 61 60 2.224404 +C68 62 gnd 2.080806f +R66 61 62 2.224404 +C69 63 gnd 2.080806f +R67 62 63 2.224404 +C70 64 gnd 2.080806f +R68 63 64 2.224404 +C71 65 gnd 2.080806f +R69 64 65 2.224404 +C72 66 gnd 2.080806f +R70 65 66 2.224404 +C73 67 gnd 2.080806f +R71 66 67 2.224404 +C74 68 gnd 2.080806f +R72 67 68 2.224404 +C75 69 gnd 2.080806f +R73 68 69 2.224404 +C76 70 gnd 2.080806f +R74 69 70 2.224404 +C77 71 gnd 2.080806f +R75 70 71 2.224404 +C78 72 gnd 2.080806f +R76 71 72 2.224404 +C79 73 gnd 2.080806f +R77 72 73 2.224404 +C80 74 gnd 2.080806f +R78 73 74 2.224404 +C81 75 gnd 2.080806f +R79 74 75 2.224404 +C82 76 gnd 2.080806f +R80 75 76 2.224404 +C83 77 gnd 2.080806f +R81 76 77 2.224404 +C84 78 gnd 2.080806f +R82 77 78 2.224404 +C85 79 gnd 2.080806f +R83 78 79 2.224404 +C86 80 gnd 2.080806f +R84 79 80 2.224404 +C87 81 gnd 2.080806f +R85 80 81 2.224404 +C88 82 gnd 2.080806f +R86 81 82 2.224404 +C89 83 gnd 2.080806f +R87 82 83 2.224404 +C90 84 gnd 2.080806f +R88 83 84 2.224404 +C91 85 gnd 2.080806f +R89 84 85 2.224404 +C92 86 gnd 2.080806f +R90 85 86 2.224404 +C93 87 gnd 2.080806f +R91 86 87 2.224404 +C94 88 gnd 2.080806f +R92 88 87 2.224404 +R93 88 g1738_2 2.224404 +.ends + +.subckt netg183 g183_0 g183_1 g183_2 gnd +C1 g183_0 gnd 2.080806f +C2 g183_1 gnd 2.080806f +C3 g183_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g183_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +R33 32 g183_2 2.224404 +C36 33 gnd 2.080806f +R34 g183_0 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +R85 83 g183_1 2.224404 +.ends + +.subckt netg7465 g7465_1 g7465_0 gnd +C1 g7465_1 gnd 2.080806f +C2 g7465_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7465_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 51 52 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 68 69 2.224404 +C72 70 gnd 2.080806f +R70 69 70 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +R79 g7465_1 78 2.224404 +.ends + +.subckt netg3 g3_2 g3_1 g3_0 gnd +C1 g3_2 gnd 2.080806f +C2 g3_1 gnd 2.080806f +C3 g3_0 gnd 2.080806f +R1 g3_0 g3_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g3_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +R81 g3_1 79 2.224404 +.ends + +.subckt netg1 g1_3 g1_1 g1_0 g1_2 gnd +C1 g1_3 gnd 2.080806f +C2 g1_1 gnd 2.080806f +C3 g1_0 gnd 2.080806f +C4 g1_2 gnd 2.080806f +R1 g1_0 g1_1 2.224404 +C5 1 gnd 2.080806f +R2 1 g1_0 2.224404 +C6 2 gnd 2.080806f +R3 2 1 2.224404 +C7 3 gnd 2.080806f +R4 3 2 2.224404 +C8 4 gnd 2.080806f +R5 4 3 2.224404 +C9 5 gnd 2.080806f +R6 4 5 2.224404 +C10 6 gnd 2.080806f +R7 6 5 2.224404 +C11 7 gnd 2.080806f +R8 7 6 2.224404 +C12 8 gnd 2.080806f +R9 8 7 2.224404 +C13 9 gnd 2.080806f +R10 9 8 2.224404 +C14 10 gnd 2.080806f +R11 10 9 2.224404 +C15 11 gnd 2.080806f +R12 11 10 2.224404 +C16 12 gnd 2.080806f +R13 12 11 2.224404 +C17 13 gnd 2.080806f +R14 13 12 2.224404 +C18 14 gnd 2.080806f +R15 14 13 2.224404 +C19 15 gnd 2.080806f +R16 15 14 2.224404 +C20 16 gnd 2.080806f +R17 16 15 2.224404 +C21 17 gnd 2.080806f +R18 17 16 2.224404 +C22 18 gnd 2.080806f +R19 18 17 2.224404 +C23 19 gnd 2.080806f +R20 19 18 2.224404 +C24 20 gnd 2.080806f +R21 20 19 2.224404 +C25 21 gnd 2.080806f +R22 21 20 2.224404 +C26 22 gnd 2.080806f +R23 22 21 2.224404 +C27 23 gnd 2.080806f +R24 23 22 2.224404 +C28 24 gnd 2.080806f +R25 24 23 2.224404 +C29 25 gnd 2.080806f +R26 25 24 2.224404 +C30 26 gnd 2.080806f +R27 26 25 2.224404 +C31 27 gnd 2.080806f +R28 27 26 2.224404 +C32 28 gnd 2.080806f +R29 28 27 2.224404 +C33 29 gnd 2.080806f +R30 29 28 2.224404 +C34 30 gnd 2.080806f +R31 30 29 2.224404 +C35 31 gnd 2.080806f +R32 31 30 2.224404 +C36 32 gnd 2.080806f +R33 32 31 2.224404 +C37 33 gnd 2.080806f +R34 33 32 2.224404 +C38 34 gnd 2.080806f +R35 34 33 2.224404 +C39 35 gnd 2.080806f +R36 35 34 2.224404 +C40 36 gnd 2.080806f +R37 36 35 2.224404 +C41 37 gnd 2.080806f +R38 37 36 2.224404 +C42 38 gnd 2.080806f +R39 38 37 2.224404 +R40 g1_3 38 2.224404 +C43 39 gnd 2.080806f +R41 39 g1_3 2.224404 +C44 40 gnd 2.080806f +R42 40 39 2.224404 +C45 41 gnd 2.080806f +R43 41 40 2.224404 +C46 42 gnd 2.080806f +R44 42 41 2.224404 +C47 43 gnd 2.080806f +R45 43 42 2.224404 +C48 44 gnd 2.080806f +R46 44 43 2.224404 +C49 45 gnd 2.080806f +R47 45 44 2.224404 +C50 46 gnd 2.080806f +R48 46 45 2.224404 +C51 47 gnd 2.080806f +R49 47 46 2.224404 +C52 48 gnd 2.080806f +R50 48 47 2.224404 +C53 49 gnd 2.080806f +R51 49 48 2.224404 +C54 50 gnd 2.080806f +R52 50 49 2.224404 +C55 51 gnd 2.080806f +R53 51 50 2.224404 +C56 52 gnd 2.080806f +R54 52 51 2.224404 +C57 53 gnd 2.080806f +R55 53 52 2.224404 +C58 54 gnd 2.080806f +R56 54 53 2.224404 +C59 55 gnd 2.080806f +R57 55 54 2.224404 +C60 56 gnd 2.080806f +R58 56 55 2.224404 +C61 57 gnd 2.080806f +R59 57 56 2.224404 +C62 58 gnd 2.080806f +R60 58 57 2.224404 +C63 59 gnd 2.080806f +R61 59 58 2.224404 +C64 60 gnd 2.080806f +R62 60 59 2.224404 +C65 61 gnd 2.080806f +R63 61 60 2.224404 +C66 62 gnd 2.080806f +R64 62 61 2.224404 +C67 63 gnd 2.080806f +R65 63 62 2.224404 +C68 64 gnd 2.080806f +R66 64 63 2.224404 +C69 65 gnd 2.080806f +R67 65 64 2.224404 +C70 66 gnd 2.080806f +R68 66 65 2.224404 +C71 67 gnd 2.080806f +R69 67 66 2.224404 +C72 68 gnd 2.080806f +R70 68 67 2.224404 +C73 69 gnd 2.080806f +R71 69 68 2.224404 +C74 70 gnd 2.080806f +R72 70 69 2.224404 +C75 71 gnd 2.080806f +R73 71 70 2.224404 +C76 72 gnd 2.080806f +R74 72 71 2.224404 +C77 73 gnd 2.080806f +R75 73 72 2.224404 +C78 74 gnd 2.080806f +R76 74 73 2.224404 +C79 75 gnd 2.080806f +R77 75 74 2.224404 +C80 76 gnd 2.080806f +R78 76 75 2.224404 +C81 77 gnd 2.080806f +R79 77 76 2.224404 +C82 78 gnd 2.080806f +R80 78 77 2.224404 +C83 79 gnd 2.080806f +R81 79 78 2.224404 +R82 g1_2 79 2.224404 +.ends + +.subckt netg167 g167_1 g167_2 g167_0 gnd +C1 g167_1 gnd 2.080806f +C2 g167_2 gnd 2.080806f +C3 g167_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g167_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +R21 g167_2 20 2.224404 +C24 21 gnd 2.080806f +R22 g167_0 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +R80 78 g167_1 2.224404 +.ends + +.subckt netg7448 g7448_0 g7448_1 gnd +C1 g7448_0 gnd 2.080806f +C2 g7448_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7448_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 69 70 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 77 78 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +R80 g7448_1 79 2.224404 +.ends + +.subckt netg7490 g7490_1 g7490_0 gnd +C1 g7490_1 gnd 2.080806f +C2 g7490_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7490_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +C79 77 gnd 2.080806f +R77 76 77 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 78 79 2.224404 +C82 80 gnd 2.080806f +R80 80 79 2.224404 +R81 g7490_1 80 2.224404 +.ends + +.subckt netg1744 g1744_1 g1744_0 g1744_4 g1744_3 g1744_2 g1744_5 gnd +C1 g1744_1 gnd 2.080806f +C2 g1744_0 gnd 2.080806f +C3 g1744_4 gnd 2.080806f +C4 g1744_3 gnd 2.080806f +C5 g1744_2 gnd 2.080806f +C6 g1744_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1744_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g1744_1 2.224404 +C9 3 gnd 2.080806f +R4 1 3 2.224404 +R5 3 g1744_4 2.224404 +C10 4 gnd 2.080806f +R6 g1744_1 4 2.224404 +C11 5 gnd 2.080806f +R7 4 5 2.224404 +C12 6 gnd 2.080806f +R8 5 6 2.224404 +R9 6 g1744_3 2.224404 +C13 7 gnd 2.080806f +R10 g1744_4 7 2.224404 +C14 8 gnd 2.080806f +R11 7 8 2.224404 +C15 9 gnd 2.080806f +R12 8 9 2.224404 +C16 10 gnd 2.080806f +R13 9 10 2.224404 +C17 11 gnd 2.080806f +R14 10 11 2.224404 +C18 12 gnd 2.080806f +R15 11 12 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 21 20 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 40 39 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 57 56 2.224404 +C64 58 gnd 2.080806f +R61 58 57 2.224404 +C65 59 gnd 2.080806f +R62 59 58 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 64 65 2.224404 +C72 66 gnd 2.080806f +R69 65 66 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +C74 68 gnd 2.080806f +R71 67 68 2.224404 +C75 69 gnd 2.080806f +R72 68 69 2.224404 +C76 70 gnd 2.080806f +R73 70 69 2.224404 +C77 71 gnd 2.080806f +R74 70 71 2.224404 +C78 72 gnd 2.080806f +R75 71 72 2.224404 +C79 73 gnd 2.080806f +R76 73 72 2.224404 +C80 74 gnd 2.080806f +R77 73 74 2.224404 +C81 75 gnd 2.080806f +R78 74 75 2.224404 +C82 76 gnd 2.080806f +R79 75 76 2.224404 +C83 77 gnd 2.080806f +R80 77 76 2.224404 +C84 78 gnd 2.080806f +R81 77 78 2.224404 +C85 79 gnd 2.080806f +R82 78 79 2.224404 +C86 80 gnd 2.080806f +R83 79 80 2.224404 +C87 81 gnd 2.080806f +R84 80 81 2.224404 +C88 82 gnd 2.080806f +R85 81 82 2.224404 +C89 83 gnd 2.080806f +R86 82 83 2.224404 +C90 84 gnd 2.080806f +R87 83 84 2.224404 +C91 85 gnd 2.080806f +R88 84 85 2.224404 +C92 86 gnd 2.080806f +R89 85 86 2.224404 +C93 87 gnd 2.080806f +R90 86 87 2.224404 +C94 88 gnd 2.080806f +R91 87 88 2.224404 +C95 89 gnd 2.080806f +R92 88 89 2.224404 +C96 90 gnd 2.080806f +R93 89 90 2.224404 +C97 91 gnd 2.080806f +R94 90 91 2.224404 +C98 92 gnd 2.080806f +R95 91 92 2.224404 +R96 92 g1744_5 2.224404 +C99 93 gnd 2.080806f +R97 g1744_5 93 2.224404 +C100 94 gnd 2.080806f +R98 93 94 2.224404 +C101 95 gnd 2.080806f +R99 94 95 2.224404 +R100 95 g1744_2 2.224404 +.ends + +.subckt netg7466 g7466_1 g7466_0 gnd +C1 g7466_1 gnd 2.080806f +C2 g7466_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7466_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 52 53 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +C79 77 gnd 2.080806f +R77 76 77 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +C82 80 gnd 2.080806f +R80 79 80 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +R82 g7466_1 81 2.224404 +.ends + +.subckt netg178 g178_2 g178_1 g178_0 gnd +C1 g178_2 gnd 2.080806f +C2 g178_1 gnd 2.080806f +C3 g178_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g178_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +R34 33 g178_1 2.224404 +C37 34 gnd 2.080806f +R35 g178_0 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +R90 88 g178_2 2.224404 +.ends + +.subckt netg30 g30_0 g30_2 g30_1 gnd +C1 g30_0 gnd 2.080806f +C2 g30_2 gnd 2.080806f +C3 g30_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g30_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 46 47 2.224404 +C51 48 gnd 2.080806f +R48 47 48 2.224404 +C52 49 gnd 2.080806f +R49 48 49 2.224404 +C53 50 gnd 2.080806f +R50 49 50 2.224404 +C54 51 gnd 2.080806f +R51 50 51 2.224404 +C55 52 gnd 2.080806f +R52 51 52 2.224404 +C56 53 gnd 2.080806f +R53 52 53 2.224404 +C57 54 gnd 2.080806f +R54 53 54 2.224404 +C58 55 gnd 2.080806f +R55 54 55 2.224404 +C59 56 gnd 2.080806f +R56 55 56 2.224404 +C60 57 gnd 2.080806f +R57 56 57 2.224404 +C61 58 gnd 2.080806f +R58 57 58 2.224404 +C62 59 gnd 2.080806f +R59 58 59 2.224404 +C63 60 gnd 2.080806f +R60 59 60 2.224404 +C64 61 gnd 2.080806f +R61 60 61 2.224404 +C65 62 gnd 2.080806f +R62 61 62 2.224404 +C66 63 gnd 2.080806f +R63 62 63 2.224404 +C67 64 gnd 2.080806f +R64 63 64 2.224404 +C68 65 gnd 2.080806f +R65 64 65 2.224404 +C69 66 gnd 2.080806f +R66 65 66 2.224404 +C70 67 gnd 2.080806f +R67 66 67 2.224404 +C71 68 gnd 2.080806f +R68 67 68 2.224404 +C72 69 gnd 2.080806f +R69 68 69 2.224404 +C73 70 gnd 2.080806f +R70 69 70 2.224404 +C74 71 gnd 2.080806f +R71 70 71 2.224404 +C75 72 gnd 2.080806f +R72 71 72 2.224404 +C76 73 gnd 2.080806f +R73 72 73 2.224404 +C77 74 gnd 2.080806f +R74 73 74 2.224404 +C78 75 gnd 2.080806f +R75 74 75 2.224404 +C79 76 gnd 2.080806f +R76 75 76 2.224404 +C80 77 gnd 2.080806f +R77 76 77 2.224404 +C81 78 gnd 2.080806f +R78 77 78 2.224404 +C82 79 gnd 2.080806f +R79 78 79 2.224404 +C83 80 gnd 2.080806f +R80 79 80 2.224404 +C84 81 gnd 2.080806f +R81 80 81 2.224404 +C85 82 gnd 2.080806f +R82 81 82 2.224404 +C86 83 gnd 2.080806f +R83 82 83 2.224404 +C87 84 gnd 2.080806f +R84 83 84 2.224404 +C88 85 gnd 2.080806f +R85 84 85 2.224404 +C89 86 gnd 2.080806f +R86 85 86 2.224404 +R87 g30_1 86 2.224404 +C90 87 gnd 2.080806f +R88 87 g30_1 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +R90 g30_2 88 2.224404 +.ends + +.subckt netg7467 g7467_0 g7467_1 gnd +C1 g7467_0 gnd 2.080806f +C2 g7467_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7467_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 49 50 2.224404 +C53 51 gnd 2.080806f +R51 50 51 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 66 67 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 68 69 2.224404 +C72 70 gnd 2.080806f +R70 69 70 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 77 78 2.224404 +C81 79 gnd 2.080806f +R79 78 79 2.224404 +C82 80 gnd 2.080806f +R80 80 79 2.224404 +C83 81 gnd 2.080806f +R81 80 81 2.224404 +C84 82 gnd 2.080806f +R82 81 82 2.224404 +R83 82 g7467_1 2.224404 +.ends + +.subckt netg191 g191_2 g191_1 g191_0 gnd +C1 g191_2 gnd 2.080806f +C2 g191_1 gnd 2.080806f +C3 g191_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g191_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +R39 g191_1 38 2.224404 +C42 39 gnd 2.080806f +R40 g191_0 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +R85 83 g191_2 2.224404 +.ends + +.subckt netg464 g464_0 g464_4 g464_3 g464_2 g464_1 g464_5 gnd +C1 g464_0 gnd 2.080806f +C2 g464_4 gnd 2.080806f +C3 g464_3 gnd 2.080806f +C4 g464_2 gnd 2.080806f +C5 g464_1 gnd 2.080806f +C6 g464_5 gnd 2.080806f +C7 1 gnd 2.080806f +R1 1 g464_0 2.224404 +C8 2 gnd 2.080806f +R2 2 1 2.224404 +C9 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g464_4 3 2.224404 +C10 4 gnd 2.080806f +R5 g464_4 4 2.224404 +C11 5 gnd 2.080806f +R6 4 5 2.224404 +C12 6 gnd 2.080806f +R7 5 6 2.224404 +R8 6 g464_2 2.224404 +C13 7 gnd 2.080806f +R9 g464_2 7 2.224404 +C14 8 gnd 2.080806f +R10 7 8 2.224404 +C15 9 gnd 2.080806f +R11 8 9 2.224404 +C16 10 gnd 2.080806f +R12 9 10 2.224404 +C17 11 gnd 2.080806f +R13 10 11 2.224404 +C18 12 gnd 2.080806f +R14 11 12 2.224404 +R15 12 g464_5 2.224404 +C19 13 gnd 2.080806f +R16 12 13 2.224404 +C20 14 gnd 2.080806f +R17 13 14 2.224404 +C21 15 gnd 2.080806f +R18 14 15 2.224404 +C22 16 gnd 2.080806f +R19 15 16 2.224404 +C23 17 gnd 2.080806f +R20 16 17 2.224404 +C24 18 gnd 2.080806f +R21 17 18 2.224404 +C25 19 gnd 2.080806f +R22 18 19 2.224404 +C26 20 gnd 2.080806f +R23 19 20 2.224404 +C27 21 gnd 2.080806f +R24 20 21 2.224404 +C28 22 gnd 2.080806f +R25 21 22 2.224404 +C29 23 gnd 2.080806f +R26 22 23 2.224404 +C30 24 gnd 2.080806f +R27 23 24 2.224404 +C31 25 gnd 2.080806f +R28 24 25 2.224404 +C32 26 gnd 2.080806f +R29 25 26 2.224404 +C33 27 gnd 2.080806f +R30 26 27 2.224404 +C34 28 gnd 2.080806f +R31 27 28 2.224404 +C35 29 gnd 2.080806f +R32 28 29 2.224404 +C36 30 gnd 2.080806f +R33 29 30 2.224404 +C37 31 gnd 2.080806f +R34 30 31 2.224404 +C38 32 gnd 2.080806f +R35 31 32 2.224404 +C39 33 gnd 2.080806f +R36 32 33 2.224404 +C40 34 gnd 2.080806f +R37 33 34 2.224404 +C41 35 gnd 2.080806f +R38 34 35 2.224404 +C42 36 gnd 2.080806f +R39 35 36 2.224404 +C43 37 gnd 2.080806f +R40 36 37 2.224404 +C44 38 gnd 2.080806f +R41 37 38 2.224404 +C45 39 gnd 2.080806f +R42 38 39 2.224404 +C46 40 gnd 2.080806f +R43 39 40 2.224404 +C47 41 gnd 2.080806f +R44 40 41 2.224404 +C48 42 gnd 2.080806f +R45 41 42 2.224404 +C49 43 gnd 2.080806f +R46 42 43 2.224404 +C50 44 gnd 2.080806f +R47 43 44 2.224404 +C51 45 gnd 2.080806f +R48 44 45 2.224404 +C52 46 gnd 2.080806f +R49 45 46 2.224404 +C53 47 gnd 2.080806f +R50 46 47 2.224404 +C54 48 gnd 2.080806f +R51 47 48 2.224404 +C55 49 gnd 2.080806f +R52 48 49 2.224404 +C56 50 gnd 2.080806f +R53 49 50 2.224404 +C57 51 gnd 2.080806f +R54 50 51 2.224404 +C58 52 gnd 2.080806f +R55 51 52 2.224404 +C59 53 gnd 2.080806f +R56 52 53 2.224404 +C60 54 gnd 2.080806f +R57 53 54 2.224404 +C61 55 gnd 2.080806f +R58 54 55 2.224404 +C62 56 gnd 2.080806f +R59 55 56 2.224404 +C63 57 gnd 2.080806f +R60 56 57 2.224404 +C64 58 gnd 2.080806f +R61 57 58 2.224404 +C65 59 gnd 2.080806f +R62 58 59 2.224404 +C66 60 gnd 2.080806f +R63 59 60 2.224404 +C67 61 gnd 2.080806f +R64 60 61 2.224404 +C68 62 gnd 2.080806f +R65 61 62 2.224404 +C69 63 gnd 2.080806f +R66 62 63 2.224404 +C70 64 gnd 2.080806f +R67 63 64 2.224404 +C71 65 gnd 2.080806f +R68 64 65 2.224404 +C72 66 gnd 2.080806f +R69 65 66 2.224404 +C73 67 gnd 2.080806f +R70 66 67 2.224404 +R71 67 g464_1 2.224404 +C74 68 gnd 2.080806f +R72 68 g464_1 2.224404 +C75 69 gnd 2.080806f +R73 69 68 2.224404 +C76 70 gnd 2.080806f +R74 70 69 2.224404 +C77 71 gnd 2.080806f +R75 71 70 2.224404 +C78 72 gnd 2.080806f +R76 71 72 2.224404 +C79 73 gnd 2.080806f +R77 73 72 2.224404 +C80 74 gnd 2.080806f +R78 74 73 2.224404 +C81 75 gnd 2.080806f +R79 75 74 2.224404 +C82 76 gnd 2.080806f +R80 76 75 2.224404 +C83 77 gnd 2.080806f +R81 77 76 2.224404 +C84 78 gnd 2.080806f +R82 78 77 2.224404 +C85 79 gnd 2.080806f +R83 79 78 2.224404 +C86 80 gnd 2.080806f +R84 80 79 2.224404 +C87 81 gnd 2.080806f +R85 81 80 2.224404 +C88 82 gnd 2.080806f +R86 82 81 2.224404 +C89 83 gnd 2.080806f +R87 83 82 2.224404 +C90 84 gnd 2.080806f +R88 84 83 2.224404 +C91 85 gnd 2.080806f +R89 85 84 2.224404 +C92 86 gnd 2.080806f +R90 86 85 2.224404 +C93 87 gnd 2.080806f +R91 87 86 2.224404 +C94 88 gnd 2.080806f +R92 88 87 2.224404 +C95 89 gnd 2.080806f +R93 88 89 2.224404 +C96 90 gnd 2.080806f +R94 90 89 2.224404 +C97 91 gnd 2.080806f +R95 91 90 2.224404 +C98 92 gnd 2.080806f +R96 91 92 2.224404 +C99 93 gnd 2.080806f +R97 93 92 2.224404 +C100 94 gnd 2.080806f +R98 94 93 2.224404 +C101 95 gnd 2.080806f +R99 95 94 2.224404 +C102 96 gnd 2.080806f +R100 95 96 2.224404 +R101 96 g464_3 2.224404 +.ends + +.subckt netg179 g179_2 g179_1 g179_0 gnd +C1 g179_2 gnd 2.080806f +C2 g179_1 gnd 2.080806f +C3 g179_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g179_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g179_2 43 2.224404 +C47 44 gnd 2.080806f +R45 44 g179_2 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +R84 g179_1 82 2.224404 +.ends + +.subckt netg195 g195_0 g195_2 g195_1 gnd +C1 g195_0 gnd 2.080806f +C2 g195_2 gnd 2.080806f +C3 g195_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g195_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +R29 28 g195_1 2.224404 +C32 29 gnd 2.080806f +R30 g195_1 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +R90 88 g195_2 2.224404 +.ends + +.subckt netg7456 g7456_0 g7456_1 gnd +C1 g7456_0 gnd 2.080806f +C2 g7456_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7456_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 26 27 2.224404 +C30 28 gnd 2.080806f +R28 27 28 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 47 48 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 53 54 2.224404 +C57 55 gnd 2.080806f +R55 54 55 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 56 57 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 58 59 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 60 61 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 69 70 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 78 79 2.224404 +C82 80 gnd 2.080806f +R80 79 80 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 81 82 2.224404 +C85 83 gnd 2.080806f +R83 82 83 2.224404 +R84 83 g7456_1 2.224404 +.ends + +.subckt netg7484 g7484_0 g7484_1 gnd +C1 g7484_0 gnd 2.080806f +C2 g7484_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g7484_0 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 35 36 2.224404 +C39 37 gnd 2.080806f +R37 36 37 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 41 42 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 44 45 2.224404 +C48 46 gnd 2.080806f +R46 45 46 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 48 49 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 71 72 2.224404 +C75 73 gnd 2.080806f +R73 72 73 2.224404 +C76 74 gnd 2.080806f +R74 73 74 2.224404 +C77 75 gnd 2.080806f +R75 74 75 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +C79 77 gnd 2.080806f +R77 76 77 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 78 79 2.224404 +C82 80 gnd 2.080806f +R80 79 80 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 81 82 2.224404 +C85 83 gnd 2.080806f +R83 83 82 2.224404 +R84 g7484_1 83 2.224404 +.ends + +.subckt netg192 g192_2 g192_1 g192_0 gnd +C1 g192_2 gnd 2.080806f +C2 g192_1 gnd 2.080806f +C3 g192_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g192_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +R33 32 g192_2 2.224404 +C36 33 gnd 2.080806f +R34 g192_2 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +R91 89 g192_1 2.224404 +.ends + +.subckt netg199 g199_0 g199_1 g199_2 gnd +C1 g199_0 gnd 2.080806f +C2 g199_1 gnd 2.080806f +C3 g199_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g199_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 46 45 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 51 50 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 53 52 2.224404 +C57 54 gnd 2.080806f +R54 54 53 2.224404 +C58 55 gnd 2.080806f +R55 55 54 2.224404 +C59 56 gnd 2.080806f +R56 56 55 2.224404 +C60 57 gnd 2.080806f +R57 57 56 2.224404 +C61 58 gnd 2.080806f +R58 58 57 2.224404 +C62 59 gnd 2.080806f +R59 59 58 2.224404 +C63 60 gnd 2.080806f +R60 60 59 2.224404 +R61 g199_2 60 2.224404 +C64 61 gnd 2.080806f +R62 61 g199_2 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 93 92 2.224404 +C97 94 gnd 2.080806f +R95 94 93 2.224404 +C98 95 gnd 2.080806f +R96 95 94 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 98 97 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +R102 100 g199_1 2.224404 +.ends + +.subckt netg202 g202_0 g202_2 g202_1 gnd +C1 g202_0 gnd 2.080806f +C2 g202_2 gnd 2.080806f +C3 g202_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g202_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 46 45 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 51 50 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 53 52 2.224404 +C57 54 gnd 2.080806f +R54 54 53 2.224404 +C58 55 gnd 2.080806f +R55 55 54 2.224404 +C59 56 gnd 2.080806f +R56 56 55 2.224404 +C60 57 gnd 2.080806f +R57 57 56 2.224404 +C61 58 gnd 2.080806f +R58 58 57 2.224404 +C62 59 gnd 2.080806f +R59 59 58 2.224404 +C63 60 gnd 2.080806f +R60 60 59 2.224404 +C64 61 gnd 2.080806f +R61 61 60 2.224404 +C65 62 gnd 2.080806f +R62 62 61 2.224404 +C66 63 gnd 2.080806f +R63 63 62 2.224404 +C67 64 gnd 2.080806f +R64 64 63 2.224404 +C68 65 gnd 2.080806f +R65 65 64 2.224404 +R66 g202_1 65 2.224404 +C69 66 gnd 2.080806f +R67 66 g202_1 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 96 95 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 98 97 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 102 101 2.224404 +C106 103 gnd 2.080806f +R104 103 102 2.224404 +C107 104 gnd 2.080806f +R105 104 103 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 106 105 2.224404 +R108 106 g202_2 2.224404 +.ends + +.subckt netg14 g14_0 g14_2 g14_1 gnd +C1 g14_0 gnd 2.080806f +C2 g14_2 gnd 2.080806f +C3 g14_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g14_0 2.224404 +R2 g14_1 1 2.224404 +C5 2 gnd 2.080806f +R3 2 g14_1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +R87 g14_2 85 2.224404 +.ends + +.subckt netg176 g176_2 g176_1 g176_0 gnd +C1 g176_2 gnd 2.080806f +C2 g176_1 gnd 2.080806f +C3 g176_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g176_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +R41 40 g176_2 2.224404 +C44 41 gnd 2.080806f +R42 g176_0 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +R100 98 g176_1 2.224404 +.ends + +.subckt netg13 g13_2 g13_1 g13_0 gnd +C1 g13_2 gnd 2.080806f +C2 g13_1 gnd 2.080806f +C3 g13_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g13_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +R3 2 g13_1 2.224404 +C6 3 gnd 2.080806f +R4 3 g13_0 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +R87 g13_2 85 2.224404 +.ends + +.subckt netg1731 g1731_5 g1731_4 g1731_0 g1731_3 g1731_1 g1731_2 g1731_6 gnd +C1 g1731_5 gnd 2.080806f +C2 g1731_4 gnd 2.080806f +C3 g1731_0 gnd 2.080806f +C4 g1731_3 gnd 2.080806f +C5 g1731_1 gnd 2.080806f +C6 g1731_2 gnd 2.080806f +C7 g1731_6 gnd 2.080806f +R1 g1731_4 g1731_0 2.224404 +C8 1 gnd 2.080806f +R2 g1731_4 1 2.224404 +C9 2 gnd 2.080806f +R3 2 1 2.224404 +C10 3 gnd 2.080806f +R4 3 2 2.224404 +C11 4 gnd 2.080806f +R5 4 3 2.224404 +C12 5 gnd 2.080806f +R6 5 4 2.224404 +C13 6 gnd 2.080806f +R7 6 5 2.224404 +C14 7 gnd 2.080806f +R8 7 6 2.224404 +C15 8 gnd 2.080806f +R9 8 7 2.224404 +C16 9 gnd 2.080806f +R10 9 8 2.224404 +C17 10 gnd 2.080806f +R11 10 9 2.224404 +C18 11 gnd 2.080806f +R12 11 10 2.224404 +C19 12 gnd 2.080806f +R13 12 11 2.224404 +C20 13 gnd 2.080806f +R14 12 13 2.224404 +C21 14 gnd 2.080806f +R15 13 14 2.224404 +C22 15 gnd 2.080806f +R16 15 14 2.224404 +R17 g1731_1 15 2.224404 +C23 16 gnd 2.080806f +R18 14 16 2.224404 +C24 17 gnd 2.080806f +R19 16 17 2.224404 +C25 18 gnd 2.080806f +R20 17 18 2.224404 +C26 19 gnd 2.080806f +R21 18 19 2.224404 +R22 19 g1731_2 2.224404 +C27 20 gnd 2.080806f +R23 20 g1731_2 2.224404 +C28 21 gnd 2.080806f +R24 20 21 2.224404 +C29 22 gnd 2.080806f +R25 22 21 2.224404 +C30 23 gnd 2.080806f +R26 22 23 2.224404 +C31 24 gnd 2.080806f +R27 23 24 2.224404 +C32 25 gnd 2.080806f +R28 25 24 2.224404 +C33 26 gnd 2.080806f +R29 25 26 2.224404 +C34 27 gnd 2.080806f +R30 26 27 2.224404 +R31 27 g1731_3 2.224404 +C35 28 gnd 2.080806f +R32 g1731_3 28 2.224404 +C36 29 gnd 2.080806f +R33 28 29 2.224404 +C37 30 gnd 2.080806f +R34 29 30 2.224404 +C38 31 gnd 2.080806f +R35 30 31 2.224404 +C39 32 gnd 2.080806f +R36 31 32 2.224404 +C40 33 gnd 2.080806f +R37 32 33 2.224404 +C41 34 gnd 2.080806f +R38 33 34 2.224404 +C42 35 gnd 2.080806f +R39 34 35 2.224404 +C43 36 gnd 2.080806f +R40 35 36 2.224404 +C44 37 gnd 2.080806f +R41 36 37 2.224404 +C45 38 gnd 2.080806f +R42 37 38 2.224404 +C46 39 gnd 2.080806f +R43 38 39 2.224404 +C47 40 gnd 2.080806f +R44 39 40 2.224404 +C48 41 gnd 2.080806f +R45 40 41 2.224404 +C49 42 gnd 2.080806f +R46 41 42 2.224404 +C50 43 gnd 2.080806f +R47 42 43 2.224404 +C51 44 gnd 2.080806f +R48 43 44 2.224404 +C52 45 gnd 2.080806f +R49 44 45 2.224404 +C53 46 gnd 2.080806f +R50 45 46 2.224404 +C54 47 gnd 2.080806f +R51 46 47 2.224404 +C55 48 gnd 2.080806f +R52 47 48 2.224404 +C56 49 gnd 2.080806f +R53 48 49 2.224404 +C57 50 gnd 2.080806f +R54 49 50 2.224404 +C58 51 gnd 2.080806f +R55 50 51 2.224404 +C59 52 gnd 2.080806f +R56 51 52 2.224404 +C60 53 gnd 2.080806f +R57 52 53 2.224404 +C61 54 gnd 2.080806f +R58 53 54 2.224404 +C62 55 gnd 2.080806f +R59 54 55 2.224404 +C63 56 gnd 2.080806f +R60 55 56 2.224404 +C64 57 gnd 2.080806f +R61 56 57 2.224404 +C65 58 gnd 2.080806f +R62 57 58 2.224404 +C66 59 gnd 2.080806f +R63 58 59 2.224404 +C67 60 gnd 2.080806f +R64 59 60 2.224404 +C68 61 gnd 2.080806f +R65 60 61 2.224404 +C69 62 gnd 2.080806f +R66 61 62 2.224404 +C70 63 gnd 2.080806f +R67 62 63 2.224404 +C71 64 gnd 2.080806f +R68 63 64 2.224404 +C72 65 gnd 2.080806f +R69 64 65 2.224404 +C73 66 gnd 2.080806f +R70 65 66 2.224404 +C74 67 gnd 2.080806f +R71 66 67 2.224404 +C75 68 gnd 2.080806f +R72 67 68 2.224404 +C76 69 gnd 2.080806f +R73 68 69 2.224404 +C77 70 gnd 2.080806f +R74 69 70 2.224404 +C78 71 gnd 2.080806f +R75 70 71 2.224404 +C79 72 gnd 2.080806f +R76 71 72 2.224404 +C80 73 gnd 2.080806f +R77 72 73 2.224404 +C81 74 gnd 2.080806f +R78 73 74 2.224404 +C82 75 gnd 2.080806f +R79 74 75 2.224404 +C83 76 gnd 2.080806f +R80 75 76 2.224404 +C84 77 gnd 2.080806f +R81 76 77 2.224404 +C85 78 gnd 2.080806f +R82 77 78 2.224404 +C86 79 gnd 2.080806f +R83 78 79 2.224404 +C87 80 gnd 2.080806f +R84 79 80 2.224404 +C88 81 gnd 2.080806f +R85 81 80 2.224404 +C89 82 gnd 2.080806f +R86 81 82 2.224404 +C90 83 gnd 2.080806f +R87 82 83 2.224404 +C91 84 gnd 2.080806f +R88 84 83 2.224404 +C92 85 gnd 2.080806f +R89 85 84 2.224404 +C93 86 gnd 2.080806f +R90 85 86 2.224404 +C94 87 gnd 2.080806f +R91 86 87 2.224404 +C95 88 gnd 2.080806f +R92 87 88 2.224404 +C96 89 gnd 2.080806f +R93 88 89 2.224404 +C97 90 gnd 2.080806f +R94 89 90 2.224404 +C98 91 gnd 2.080806f +R95 90 91 2.224404 +C99 92 gnd 2.080806f +R96 91 92 2.224404 +C100 93 gnd 2.080806f +R97 92 93 2.224404 +C101 94 gnd 2.080806f +R98 93 94 2.224404 +C102 95 gnd 2.080806f +R99 94 95 2.224404 +R100 95 g1731_5 2.224404 +C103 96 gnd 2.080806f +R101 95 96 2.224404 +C104 97 gnd 2.080806f +R102 96 97 2.224404 +C105 98 gnd 2.080806f +R103 97 98 2.224404 +C106 99 gnd 2.080806f +R104 98 99 2.224404 +C107 100 gnd 2.080806f +R105 99 100 2.224404 +C108 101 gnd 2.080806f +R106 100 101 2.224404 +C109 102 gnd 2.080806f +R107 101 102 2.224404 +C110 103 gnd 2.080806f +R108 102 103 2.224404 +C111 104 gnd 2.080806f +R109 103 104 2.224404 +C112 105 gnd 2.080806f +R110 105 104 2.224404 +C113 106 gnd 2.080806f +R111 105 106 2.224404 +C114 107 gnd 2.080806f +R112 106 107 2.224404 +C115 108 gnd 2.080806f +R113 107 108 2.224404 +C116 109 gnd 2.080806f +R114 108 109 2.224404 +R115 109 g1731_6 2.224404 +.ends + +.subckt netg1756 g1756_5 g1756_3 g1756_1 g1756_4 g1756_2 g1756_0 gnd +C1 g1756_5 gnd 2.080806f +C2 g1756_3 gnd 2.080806f +C3 g1756_1 gnd 2.080806f +C4 g1756_4 gnd 2.080806f +C5 g1756_2 gnd 2.080806f +C6 g1756_0 gnd 2.080806f +C7 1 gnd 2.080806f +R1 g1756_0 1 2.224404 +C8 2 gnd 2.080806f +R2 1 2 2.224404 +C9 3 gnd 2.080806f +R3 2 3 2.224404 +C10 4 gnd 2.080806f +R4 3 4 2.224404 +C11 5 gnd 2.080806f +R5 4 5 2.224404 +C12 6 gnd 2.080806f +R6 5 6 2.224404 +C13 7 gnd 2.080806f +R7 6 7 2.224404 +C14 8 gnd 2.080806f +R8 7 8 2.224404 +R9 8 g1756_5 2.224404 +C15 9 gnd 2.080806f +R10 9 g1756_0 2.224404 +C16 10 gnd 2.080806f +R11 9 10 2.224404 +C17 11 gnd 2.080806f +R12 10 11 2.224404 +C18 12 gnd 2.080806f +R13 11 12 2.224404 +C19 13 gnd 2.080806f +R14 12 13 2.224404 +C20 14 gnd 2.080806f +R15 14 13 2.224404 +C21 15 gnd 2.080806f +R16 15 14 2.224404 +C22 16 gnd 2.080806f +R17 15 16 2.224404 +C23 17 gnd 2.080806f +R18 16 17 2.224404 +C24 18 gnd 2.080806f +R19 17 18 2.224404 +C25 19 gnd 2.080806f +R20 18 19 2.224404 +C26 20 gnd 2.080806f +R21 19 20 2.224404 +C27 21 gnd 2.080806f +R22 20 21 2.224404 +C28 22 gnd 2.080806f +R23 22 21 2.224404 +C29 23 gnd 2.080806f +R24 23 22 2.224404 +C30 24 gnd 2.080806f +R25 24 23 2.224404 +C31 25 gnd 2.080806f +R26 25 24 2.224404 +C32 26 gnd 2.080806f +R27 26 25 2.224404 +C33 27 gnd 2.080806f +R28 27 26 2.224404 +C34 28 gnd 2.080806f +R29 28 27 2.224404 +C35 29 gnd 2.080806f +R30 29 28 2.224404 +C36 30 gnd 2.080806f +R31 30 29 2.224404 +C37 31 gnd 2.080806f +R32 31 30 2.224404 +C38 32 gnd 2.080806f +R33 32 31 2.224404 +C39 33 gnd 2.080806f +R34 33 32 2.224404 +C40 34 gnd 2.080806f +R35 34 33 2.224404 +C41 35 gnd 2.080806f +R36 35 34 2.224404 +C42 36 gnd 2.080806f +R37 36 35 2.224404 +C43 37 gnd 2.080806f +R38 37 36 2.224404 +C44 38 gnd 2.080806f +R39 38 37 2.224404 +C45 39 gnd 2.080806f +R40 39 38 2.224404 +C46 40 gnd 2.080806f +R41 40 39 2.224404 +C47 41 gnd 2.080806f +R42 41 40 2.224404 +C48 42 gnd 2.080806f +R43 42 41 2.224404 +C49 43 gnd 2.080806f +R44 43 42 2.224404 +C50 44 gnd 2.080806f +R45 44 43 2.224404 +C51 45 gnd 2.080806f +R46 45 44 2.224404 +C52 46 gnd 2.080806f +R47 46 45 2.224404 +C53 47 gnd 2.080806f +R48 47 46 2.224404 +C54 48 gnd 2.080806f +R49 48 47 2.224404 +C55 49 gnd 2.080806f +R50 49 48 2.224404 +C56 50 gnd 2.080806f +R51 50 49 2.224404 +C57 51 gnd 2.080806f +R52 51 50 2.224404 +C58 52 gnd 2.080806f +R53 52 51 2.224404 +C59 53 gnd 2.080806f +R54 53 52 2.224404 +C60 54 gnd 2.080806f +R55 54 53 2.224404 +C61 55 gnd 2.080806f +R56 55 54 2.224404 +C62 56 gnd 2.080806f +R57 56 55 2.224404 +C63 57 gnd 2.080806f +R58 57 56 2.224404 +C64 58 gnd 2.080806f +R59 58 57 2.224404 +C65 59 gnd 2.080806f +R60 59 58 2.224404 +C66 60 gnd 2.080806f +R61 60 59 2.224404 +C67 61 gnd 2.080806f +R62 61 60 2.224404 +C68 62 gnd 2.080806f +R63 62 61 2.224404 +C69 63 gnd 2.080806f +R64 63 62 2.224404 +C70 64 gnd 2.080806f +R65 64 63 2.224404 +C71 65 gnd 2.080806f +R66 65 64 2.224404 +C72 66 gnd 2.080806f +R67 66 65 2.224404 +C73 67 gnd 2.080806f +R68 67 66 2.224404 +C74 68 gnd 2.080806f +R69 68 67 2.224404 +C75 69 gnd 2.080806f +R70 69 68 2.224404 +C76 70 gnd 2.080806f +R71 70 69 2.224404 +C77 71 gnd 2.080806f +R72 71 70 2.224404 +C78 72 gnd 2.080806f +R73 72 71 2.224404 +C79 73 gnd 2.080806f +R74 73 72 2.224404 +C80 74 gnd 2.080806f +R75 74 73 2.224404 +C81 75 gnd 2.080806f +R76 75 74 2.224404 +C82 76 gnd 2.080806f +R77 76 75 2.224404 +C83 77 gnd 2.080806f +R78 77 76 2.224404 +C84 78 gnd 2.080806f +R79 78 77 2.224404 +C85 79 gnd 2.080806f +R80 79 78 2.224404 +C86 80 gnd 2.080806f +R81 80 79 2.224404 +C87 81 gnd 2.080806f +R82 81 80 2.224404 +C88 82 gnd 2.080806f +R83 82 81 2.224404 +C89 83 gnd 2.080806f +R84 83 82 2.224404 +C90 84 gnd 2.080806f +R85 84 83 2.224404 +C91 85 gnd 2.080806f +R86 85 84 2.224404 +C92 86 gnd 2.080806f +R87 86 85 2.224404 +C93 87 gnd 2.080806f +R88 87 86 2.224404 +C94 88 gnd 2.080806f +R89 88 87 2.224404 +C95 89 gnd 2.080806f +R90 89 88 2.224404 +C96 90 gnd 2.080806f +R91 90 89 2.224404 +C97 91 gnd 2.080806f +R92 91 90 2.224404 +C98 92 gnd 2.080806f +R93 92 91 2.224404 +C99 93 gnd 2.080806f +R94 93 92 2.224404 +C100 94 gnd 2.080806f +R95 94 93 2.224404 +C101 95 gnd 2.080806f +R96 95 94 2.224404 +C102 96 gnd 2.080806f +R97 96 95 2.224404 +C103 97 gnd 2.080806f +R98 96 97 2.224404 +R99 g1756_1 97 2.224404 +C104 98 gnd 2.080806f +R100 g1756_1 98 2.224404 +C105 99 gnd 2.080806f +R101 98 99 2.224404 +C106 100 gnd 2.080806f +R102 99 100 2.224404 +R103 g1756_3 100 2.224404 +C107 101 gnd 2.080806f +R104 101 g1756_1 2.224404 +C108 102 gnd 2.080806f +R105 102 101 2.224404 +C109 103 gnd 2.080806f +R106 103 102 2.224404 +C110 104 gnd 2.080806f +R107 104 103 2.224404 +C111 105 gnd 2.080806f +R108 105 104 2.224404 +C112 106 gnd 2.080806f +R109 106 105 2.224404 +R110 g1756_4 106 2.224404 +C113 107 gnd 2.080806f +R111 107 g1756_4 2.224404 +C114 108 gnd 2.080806f +R112 108 107 2.224404 +C115 109 gnd 2.080806f +R113 109 108 2.224404 +C116 110 gnd 2.080806f +R114 110 109 2.224404 +C117 111 gnd 2.080806f +R115 110 111 2.224404 +C118 112 gnd 2.080806f +R116 111 112 2.224404 +R117 112 g1756_2 2.224404 +.ends + +.subckt netg201 g201_1 g201_2 g201_0 gnd +C1 g201_1 gnd 2.080806f +C2 g201_2 gnd 2.080806f +C3 g201_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g201_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +R44 g201_1 43 2.224404 +C47 44 gnd 2.080806f +R45 4 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 99 98 2.224404 +R101 g201_2 99 2.224404 +.ends + +.subckt netg203 g203_0 g203_2 g203_1 gnd +C1 g203_0 gnd 2.080806f +C2 g203_2 gnd 2.080806f +C3 g203_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g203_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +R44 43 g203_1 2.224404 +C47 44 gnd 2.080806f +R45 26 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +R92 90 g203_2 2.224404 +.ends + +.subckt netg204 g204_1 g204_2 g204_0 gnd +C1 g204_1 gnd 2.080806f +C2 g204_2 gnd 2.080806f +C3 g204_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g204_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +R45 44 g204_2 2.224404 +C48 45 gnd 2.080806f +R46 5 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 105 104 2.224404 +R107 g204_1 105 2.224404 +.ends + +.subckt netg198 g198_0 g198_2 g198_1 gnd +C1 g198_0 gnd 2.080806f +C2 g198_2 gnd 2.080806f +C3 g198_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g198_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +R46 45 g198_2 2.224404 +C49 46 gnd 2.080806f +R47 40 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +R107 105 g198_1 2.224404 +.ends + +.subckt netg7 g7_2 g7_0 g7_1 gnd +C1 g7_2 gnd 2.080806f +C2 g7_0 gnd 2.080806f +C3 g7_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g7_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +R3 g7_2 2 2.224404 +C6 3 gnd 2.080806f +R4 3 g7_2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 90 89 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +C95 92 gnd 2.080806f +R93 92 91 2.224404 +R94 g7_1 92 2.224404 +.ends + +.subckt netg186 g186_1 g186_2 g186_0 gnd +C1 g186_1 gnd 2.080806f +C2 g186_2 gnd 2.080806f +C3 g186_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g186_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +R37 36 g186_1 2.224404 +C40 37 gnd 2.080806f +R38 g186_1 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +R103 101 g186_2 2.224404 +.ends + +.subckt netg9 g9_1 g9_2 g9_0 gnd +C1 g9_1 gnd 2.080806f +C2 g9_2 gnd 2.080806f +C3 g9_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g9_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +R4 g9_1 3 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 8 7 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 10 9 2.224404 +C14 11 gnd 2.080806f +R12 11 10 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 17 16 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 51 50 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 90 89 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +R93 g9_2 91 2.224404 +.ends + +.subckt netg196 g196_2 g196_1 g196_0 gnd +C1 g196_2 gnd 2.080806f +C2 g196_1 gnd 2.080806f +C3 g196_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g196_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 51 50 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 53 52 2.224404 +C57 54 gnd 2.080806f +R54 54 53 2.224404 +C58 55 gnd 2.080806f +R55 55 54 2.224404 +C59 56 gnd 2.080806f +R56 56 55 2.224404 +C60 57 gnd 2.080806f +R57 57 56 2.224404 +C61 58 gnd 2.080806f +R58 58 57 2.224404 +C62 59 gnd 2.080806f +R59 59 58 2.224404 +C63 60 gnd 2.080806f +R60 60 59 2.224404 +C64 61 gnd 2.080806f +R61 61 60 2.224404 +C65 62 gnd 2.080806f +R62 62 61 2.224404 +C66 63 gnd 2.080806f +R63 62 63 2.224404 +C67 64 gnd 2.080806f +R64 64 63 2.224404 +R65 64 g196_2 2.224404 +C68 65 gnd 2.080806f +R66 65 61 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 90 89 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 95 94 2.224404 +C99 96 gnd 2.080806f +R97 96 95 2.224404 +C100 97 gnd 2.080806f +R98 97 96 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 99 98 2.224404 +C103 100 gnd 2.080806f +R101 100 99 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 103 102 2.224404 +C107 104 gnd 2.080806f +R105 104 103 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 106 105 2.224404 +C110 107 gnd 2.080806f +R108 106 107 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +R110 g196_1 108 2.224404 +.ends + +.subckt netg206 g206_10 g206_5 g206_8 g206_7 g206_4 g206_14 g206_3 g206_1 g206_6 g206_13 g206_12 g206_2 g206_0 g206_11 g206_9 gnd +C1 g206_10 gnd 2.080806f +C2 g206_5 gnd 2.080806f +C3 g206_8 gnd 2.080806f +C4 g206_7 gnd 2.080806f +C5 g206_4 gnd 2.080806f +C6 g206_14 gnd 2.080806f +C7 g206_3 gnd 2.080806f +C8 g206_1 gnd 2.080806f +C9 g206_6 gnd 2.080806f +C10 g206_13 gnd 2.080806f +C11 g206_12 gnd 2.080806f +C12 g206_2 gnd 2.080806f +C13 g206_0 gnd 2.080806f +C14 g206_11 gnd 2.080806f +C15 g206_9 gnd 2.080806f +C16 1 gnd 2.080806f +R1 g206_0 1 2.224404 +R2 1 g206_4 2.224404 +R3 g206_4 g206_8 2.224404 +C17 2 gnd 2.080806f +R4 g206_8 2 2.224404 +C18 3 gnd 2.080806f +R5 2 3 2.224404 +C19 4 gnd 2.080806f +R6 3 4 2.224404 +C20 5 gnd 2.080806f +R7 4 5 2.224404 +C21 6 gnd 2.080806f +R8 5 6 2.224404 +C22 7 gnd 2.080806f +R9 6 7 2.224404 +C23 8 gnd 2.080806f +R10 7 8 2.224404 +R11 8 g206_5 2.224404 +R12 g206_5 g206_12 2.224404 +R13 g206_11 g206_12 2.224404 +C24 9 gnd 2.080806f +R14 g206_12 9 2.224404 +C25 10 gnd 2.080806f +R15 9 10 2.224404 +C26 11 gnd 2.080806f +R16 10 11 2.224404 +C27 12 gnd 2.080806f +R17 11 12 2.224404 +C28 13 gnd 2.080806f +R18 12 13 2.224404 +R19 13 g206_2 2.224404 +C29 14 gnd 2.080806f +R20 14 g206_5 2.224404 +C30 15 gnd 2.080806f +R21 14 15 2.224404 +C31 16 gnd 2.080806f +R22 15 16 2.224404 +C32 17 gnd 2.080806f +R23 17 16 2.224404 +C33 18 gnd 2.080806f +R24 17 18 2.224404 +C34 19 gnd 2.080806f +R25 18 19 2.224404 +R26 19 g206_13 2.224404 +C35 20 gnd 2.080806f +R27 20 g206_13 2.224404 +C36 21 gnd 2.080806f +R28 20 21 2.224404 +C37 22 gnd 2.080806f +R29 21 22 2.224404 +C38 23 gnd 2.080806f +R30 22 23 2.224404 +C39 24 gnd 2.080806f +R31 23 24 2.224404 +R32 24 g206_1 2.224404 +C40 25 gnd 2.080806f +R33 13 25 2.224404 +C41 26 gnd 2.080806f +R34 25 26 2.224404 +C42 27 gnd 2.080806f +R35 26 27 2.224404 +C43 28 gnd 2.080806f +R36 27 28 2.224404 +C44 29 gnd 2.080806f +R37 28 29 2.224404 +C45 30 gnd 2.080806f +R38 29 30 2.224404 +R39 30 g206_9 2.224404 +C46 31 gnd 2.080806f +R40 g206_1 31 2.224404 +C47 32 gnd 2.080806f +R41 31 32 2.224404 +C48 33 gnd 2.080806f +R42 32 33 2.224404 +C49 34 gnd 2.080806f +R43 33 34 2.224404 +C50 35 gnd 2.080806f +R44 34 35 2.224404 +C51 36 gnd 2.080806f +R45 35 36 2.224404 +C52 37 gnd 2.080806f +R46 36 37 2.224404 +C53 38 gnd 2.080806f +R47 37 38 2.224404 +C54 39 gnd 2.080806f +R48 38 39 2.224404 +C55 40 gnd 2.080806f +R49 39 40 2.224404 +C56 41 gnd 2.080806f +R50 40 41 2.224404 +C57 42 gnd 2.080806f +R51 41 42 2.224404 +C58 43 gnd 2.080806f +R52 42 43 2.224404 +C59 44 gnd 2.080806f +R53 43 44 2.224404 +C60 45 gnd 2.080806f +R54 44 45 2.224404 +C61 46 gnd 2.080806f +R55 45 46 2.224404 +C62 47 gnd 2.080806f +R56 46 47 2.224404 +C63 48 gnd 2.080806f +R57 47 48 2.224404 +C64 49 gnd 2.080806f +R58 48 49 2.224404 +C65 50 gnd 2.080806f +R59 49 50 2.224404 +C66 51 gnd 2.080806f +R60 50 51 2.224404 +R61 51 g206_14 2.224404 +C67 52 gnd 2.080806f +R62 g206_14 52 2.224404 +C68 53 gnd 2.080806f +R63 52 53 2.224404 +R64 53 g206_3 2.224404 +R65 g206_3 g206_10 2.224404 +R66 g206_10 g206_7 2.224404 +C69 54 gnd 2.080806f +R67 54 g206_14 2.224404 +C70 55 gnd 2.080806f +R68 54 55 2.224404 +C71 56 gnd 2.080806f +R69 55 56 2.224404 +C72 57 gnd 2.080806f +R70 56 57 2.224404 +C73 58 gnd 2.080806f +R71 57 58 2.224404 +C74 59 gnd 2.080806f +R72 58 59 2.224404 +C75 60 gnd 2.080806f +R73 59 60 2.224404 +C76 61 gnd 2.080806f +R74 60 61 2.224404 +C77 62 gnd 2.080806f +R75 61 62 2.224404 +C78 63 gnd 2.080806f +R76 62 63 2.224404 +C79 64 gnd 2.080806f +R77 63 64 2.224404 +C80 65 gnd 2.080806f +R78 64 65 2.224404 +C81 66 gnd 2.080806f +R79 65 66 2.224404 +C82 67 gnd 2.080806f +R80 66 67 2.224404 +C83 68 gnd 2.080806f +R81 67 68 2.224404 +C84 69 gnd 2.080806f +R82 68 69 2.224404 +C85 70 gnd 2.080806f +R83 69 70 2.224404 +C86 71 gnd 2.080806f +R84 71 70 2.224404 +C87 72 gnd 2.080806f +R85 72 71 2.224404 +C88 73 gnd 2.080806f +R86 72 73 2.224404 +C89 74 gnd 2.080806f +R87 73 74 2.224404 +C90 75 gnd 2.080806f +R88 74 75 2.224404 +C91 76 gnd 2.080806f +R89 75 76 2.224404 +C92 77 gnd 2.080806f +R90 76 77 2.224404 +C93 78 gnd 2.080806f +R91 77 78 2.224404 +C94 79 gnd 2.080806f +R92 78 79 2.224404 +C95 80 gnd 2.080806f +R93 79 80 2.224404 +C96 81 gnd 2.080806f +R94 80 81 2.224404 +C97 82 gnd 2.080806f +R95 81 82 2.224404 +C98 83 gnd 2.080806f +R96 82 83 2.224404 +C99 84 gnd 2.080806f +R97 83 84 2.224404 +C100 85 gnd 2.080806f +R98 84 85 2.224404 +C101 86 gnd 2.080806f +R99 85 86 2.224404 +C102 87 gnd 2.080806f +R100 86 87 2.224404 +C103 88 gnd 2.080806f +R101 87 88 2.224404 +C104 89 gnd 2.080806f +R102 89 88 2.224404 +C105 90 gnd 2.080806f +R103 90 89 2.224404 +C106 91 gnd 2.080806f +R104 90 91 2.224404 +C107 92 gnd 2.080806f +R105 91 92 2.224404 +C108 93 gnd 2.080806f +R106 92 93 2.224404 +C109 94 gnd 2.080806f +R107 93 94 2.224404 +C110 95 gnd 2.080806f +R108 94 95 2.224404 +C111 96 gnd 2.080806f +R109 95 96 2.224404 +C112 97 gnd 2.080806f +R110 96 97 2.224404 +C113 98 gnd 2.080806f +R111 97 98 2.224404 +C114 99 gnd 2.080806f +R112 98 99 2.224404 +C115 100 gnd 2.080806f +R113 99 100 2.224404 +C116 101 gnd 2.080806f +R114 100 101 2.224404 +C117 102 gnd 2.080806f +R115 101 102 2.224404 +C118 103 gnd 2.080806f +R116 102 103 2.224404 +C119 104 gnd 2.080806f +R117 103 104 2.224404 +C120 105 gnd 2.080806f +R118 104 105 2.224404 +C121 106 gnd 2.080806f +R119 105 106 2.224404 +C122 107 gnd 2.080806f +R120 106 107 2.224404 +C123 108 gnd 2.080806f +R121 108 107 2.224404 +R122 g206_6 108 2.224404 +.ends + +.subckt netg16 g16_1 g16_2 g16_0 gnd +C1 g16_1 gnd 2.080806f +C2 g16_2 gnd 2.080806f +C3 g16_0 gnd 2.080806f +R1 g16_0 g16_2 2.224404 +C4 1 gnd 2.080806f +R2 1 g16_0 2.224404 +C5 2 gnd 2.080806f +R3 2 1 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 4 3 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 6 5 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 12 11 2.224404 +C16 13 gnd 2.080806f +R14 13 12 2.224404 +C17 14 gnd 2.080806f +R15 14 13 2.224404 +C18 15 gnd 2.080806f +R16 15 14 2.224404 +C19 16 gnd 2.080806f +R17 16 15 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 19 18 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 21 20 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 27 26 2.224404 +C31 28 gnd 2.080806f +R29 28 27 2.224404 +C32 29 gnd 2.080806f +R30 29 28 2.224404 +C33 30 gnd 2.080806f +R31 30 29 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 32 31 2.224404 +C36 33 gnd 2.080806f +R34 33 32 2.224404 +C37 34 gnd 2.080806f +R35 34 33 2.224404 +C38 35 gnd 2.080806f +R36 35 34 2.224404 +C39 36 gnd 2.080806f +R37 36 35 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 38 37 2.224404 +C42 39 gnd 2.080806f +R40 39 38 2.224404 +C43 40 gnd 2.080806f +R41 40 39 2.224404 +C44 41 gnd 2.080806f +R42 41 40 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 43 42 2.224404 +C47 44 gnd 2.080806f +R45 44 43 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 49 48 2.224404 +C53 50 gnd 2.080806f +R51 50 49 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 52 51 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 54 53 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 56 55 2.224404 +C60 57 gnd 2.080806f +R58 57 56 2.224404 +C61 58 gnd 2.080806f +R59 58 57 2.224404 +C62 59 gnd 2.080806f +R60 59 58 2.224404 +C63 60 gnd 2.080806f +R61 60 59 2.224404 +C64 61 gnd 2.080806f +R62 61 60 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 65 64 2.224404 +C69 66 gnd 2.080806f +R67 66 65 2.224404 +C70 67 gnd 2.080806f +R68 67 66 2.224404 +C71 68 gnd 2.080806f +R69 68 67 2.224404 +C72 69 gnd 2.080806f +R70 69 68 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 73 72 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 75 74 2.224404 +C79 76 gnd 2.080806f +R77 76 75 2.224404 +C80 77 gnd 2.080806f +R78 77 76 2.224404 +C81 78 gnd 2.080806f +R79 78 77 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 85 84 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 90 89 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +C95 92 gnd 2.080806f +R93 92 91 2.224404 +C96 93 gnd 2.080806f +R94 93 92 2.224404 +C97 94 gnd 2.080806f +R95 94 93 2.224404 +C98 95 gnd 2.080806f +R96 95 94 2.224404 +C99 96 gnd 2.080806f +R97 96 95 2.224404 +C100 97 gnd 2.080806f +R98 97 96 2.224404 +C101 98 gnd 2.080806f +R99 98 97 2.224404 +C102 99 gnd 2.080806f +R100 99 98 2.224404 +C103 100 gnd 2.080806f +R101 100 99 2.224404 +C104 101 gnd 2.080806f +R102 101 100 2.224404 +C105 102 gnd 2.080806f +R103 102 101 2.224404 +C106 103 gnd 2.080806f +R104 103 102 2.224404 +C107 104 gnd 2.080806f +R105 104 103 2.224404 +C108 105 gnd 2.080806f +R106 105 104 2.224404 +C109 106 gnd 2.080806f +R107 106 105 2.224404 +R108 g16_1 106 2.224404 +.ends + +.subckt netg177 g177_1 g177_0 g177_2 gnd +C1 g177_1 gnd 2.080806f +C2 g177_0 gnd 2.080806f +C3 g177_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g177_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 47 48 2.224404 +R49 g177_1 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +R106 104 g177_2 2.224404 +.ends + +.subckt netg7483 g7483_1 g7483_0 gnd +C1 g7483_1 gnd 2.080806f +C2 g7483_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g7483_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 25 26 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 28 29 2.224404 +C32 30 gnd 2.080806f +R30 29 30 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 43 44 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 46 47 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 55 56 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 59 60 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 62 63 2.224404 +C66 64 gnd 2.080806f +R64 63 64 2.224404 +C67 65 gnd 2.080806f +R65 64 65 2.224404 +C68 66 gnd 2.080806f +R66 65 66 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 67 68 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 70 71 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 75 76 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +C82 80 gnd 2.080806f +R80 79 80 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 82 81 2.224404 +C85 83 gnd 2.080806f +R83 82 83 2.224404 +C86 84 gnd 2.080806f +R84 84 83 2.224404 +C87 85 gnd 2.080806f +R85 85 84 2.224404 +C88 86 gnd 2.080806f +R86 85 86 2.224404 +C89 87 gnd 2.080806f +R87 87 86 2.224404 +C90 88 gnd 2.080806f +R88 88 87 2.224404 +C91 89 gnd 2.080806f +R89 89 88 2.224404 +C92 90 gnd 2.080806f +R90 89 90 2.224404 +C93 91 gnd 2.080806f +R91 90 91 2.224404 +C94 92 gnd 2.080806f +R92 92 91 2.224404 +C95 93 gnd 2.080806f +R93 92 93 2.224404 +C96 94 gnd 2.080806f +R94 94 93 2.224404 +R95 g7483_1 94 2.224404 +.ends + +.subckt netg200 g200_0 g200_2 g200_1 gnd +C1 g200_0 gnd 2.080806f +C2 g200_2 gnd 2.080806f +C3 g200_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g200_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 46 45 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 51 50 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 53 52 2.224404 +C57 54 gnd 2.080806f +R54 54 53 2.224404 +C58 55 gnd 2.080806f +R55 55 54 2.224404 +C59 56 gnd 2.080806f +R56 56 55 2.224404 +C60 57 gnd 2.080806f +R57 57 56 2.224404 +C61 58 gnd 2.080806f +R58 58 57 2.224404 +C62 59 gnd 2.080806f +R59 59 58 2.224404 +C63 60 gnd 2.080806f +R60 60 59 2.224404 +C64 61 gnd 2.080806f +R61 61 60 2.224404 +C65 62 gnd 2.080806f +R62 62 61 2.224404 +C66 63 gnd 2.080806f +R63 63 62 2.224404 +C67 64 gnd 2.080806f +R64 64 63 2.224404 +C68 65 gnd 2.080806f +R65 65 64 2.224404 +C69 66 gnd 2.080806f +R66 66 65 2.224404 +C70 67 gnd 2.080806f +R67 67 66 2.224404 +C71 68 gnd 2.080806f +R68 68 67 2.224404 +R69 g200_2 68 2.224404 +C72 69 gnd 2.080806f +R70 69 g200_2 2.224404 +C73 70 gnd 2.080806f +R71 70 69 2.224404 +C74 71 gnd 2.080806f +R72 71 70 2.224404 +C75 72 gnd 2.080806f +R73 72 71 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 79 78 2.224404 +C83 80 gnd 2.080806f +R81 80 79 2.224404 +C84 81 gnd 2.080806f +R82 81 80 2.224404 +C85 82 gnd 2.080806f +R83 82 81 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 84 83 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +C95 92 gnd 2.080806f +R93 92 91 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 100 99 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 107 106 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +C112 109 gnd 2.080806f +R110 108 109 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 112 113 2.224404 +C117 114 gnd 2.080806f +R115 113 114 2.224404 +C118 115 gnd 2.080806f +R116 114 115 2.224404 +C119 116 gnd 2.080806f +R117 115 116 2.224404 +C120 117 gnd 2.080806f +R118 117 116 2.224404 +C121 118 gnd 2.080806f +R119 117 118 2.224404 +C122 119 gnd 2.080806f +R120 118 119 2.224404 +R121 119 g200_1 2.224404 +.ends + +.subckt netg8 g8_1 g8_2 g8_0 gnd +C1 g8_1 gnd 2.080806f +C2 g8_2 gnd 2.080806f +C3 g8_0 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g8_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 46 47 2.224404 +C51 48 gnd 2.080806f +R48 47 48 2.224404 +C52 49 gnd 2.080806f +R49 48 49 2.224404 +C53 50 gnd 2.080806f +R50 49 50 2.224404 +C54 51 gnd 2.080806f +R51 50 51 2.224404 +C55 52 gnd 2.080806f +R52 51 52 2.224404 +C56 53 gnd 2.080806f +R53 52 53 2.224404 +C57 54 gnd 2.080806f +R54 53 54 2.224404 +C58 55 gnd 2.080806f +R55 54 55 2.224404 +C59 56 gnd 2.080806f +R56 55 56 2.224404 +C60 57 gnd 2.080806f +R57 56 57 2.224404 +C61 58 gnd 2.080806f +R58 57 58 2.224404 +C62 59 gnd 2.080806f +R59 58 59 2.224404 +C63 60 gnd 2.080806f +R60 59 60 2.224404 +C64 61 gnd 2.080806f +R61 60 61 2.224404 +C65 62 gnd 2.080806f +R62 61 62 2.224404 +C66 63 gnd 2.080806f +R63 62 63 2.224404 +C67 64 gnd 2.080806f +R64 63 64 2.224404 +C68 65 gnd 2.080806f +R65 64 65 2.224404 +C69 66 gnd 2.080806f +R66 65 66 2.224404 +C70 67 gnd 2.080806f +R67 66 67 2.224404 +C71 68 gnd 2.080806f +R68 67 68 2.224404 +C72 69 gnd 2.080806f +R69 68 69 2.224404 +C73 70 gnd 2.080806f +R70 69 70 2.224404 +C74 71 gnd 2.080806f +R71 70 71 2.224404 +C75 72 gnd 2.080806f +R72 71 72 2.224404 +C76 73 gnd 2.080806f +R73 72 73 2.224404 +C77 74 gnd 2.080806f +R74 73 74 2.224404 +C78 75 gnd 2.080806f +R75 74 75 2.224404 +C79 76 gnd 2.080806f +R76 75 76 2.224404 +C80 77 gnd 2.080806f +R77 76 77 2.224404 +C81 78 gnd 2.080806f +R78 77 78 2.224404 +C82 79 gnd 2.080806f +R79 78 79 2.224404 +C83 80 gnd 2.080806f +R80 79 80 2.224404 +C84 81 gnd 2.080806f +R81 80 81 2.224404 +C85 82 gnd 2.080806f +R82 81 82 2.224404 +C86 83 gnd 2.080806f +R83 82 83 2.224404 +C87 84 gnd 2.080806f +R84 83 84 2.224404 +C88 85 gnd 2.080806f +R85 84 85 2.224404 +R86 85 g8_1 2.224404 +C89 86 gnd 2.080806f +R87 g8_1 86 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 90 89 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 92 91 2.224404 +C96 93 gnd 2.080806f +R94 93 92 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 106 107 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +C112 109 gnd 2.080806f +R110 108 109 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 113 112 2.224404 +C117 114 gnd 2.080806f +R115 114 113 2.224404 +C118 115 gnd 2.080806f +R116 115 114 2.224404 +C119 116 gnd 2.080806f +R117 115 116 2.224404 +C120 117 gnd 2.080806f +R118 117 116 2.224404 +C121 118 gnd 2.080806f +R119 118 117 2.224404 +C122 119 gnd 2.080806f +R120 119 118 2.224404 +C123 120 gnd 2.080806f +R121 120 119 2.224404 +C124 121 gnd 2.080806f +R122 120 121 2.224404 +C125 122 gnd 2.080806f +R123 121 122 2.224404 +C126 123 gnd 2.080806f +R124 122 123 2.224404 +C127 124 gnd 2.080806f +R125 123 124 2.224404 +C128 125 gnd 2.080806f +R126 125 124 2.224404 +C129 126 gnd 2.080806f +R127 126 125 2.224404 +C130 127 gnd 2.080806f +R128 127 126 2.224404 +R129 127 g8_2 2.224404 +.ends + +.subckt netg207 g207_3 g207_2 g207_0 g207_4 g207_1 gnd +C1 g207_3 gnd 2.080806f +C2 g207_2 gnd 2.080806f +C3 g207_0 gnd 2.080806f +C4 g207_4 gnd 2.080806f +C5 g207_1 gnd 2.080806f +R1 g207_2 g207_0 2.224404 +C6 1 gnd 2.080806f +R2 1 g207_2 2.224404 +C7 2 gnd 2.080806f +R3 2 1 2.224404 +C8 3 gnd 2.080806f +R4 3 2 2.224404 +C9 4 gnd 2.080806f +R5 4 3 2.224404 +C10 5 gnd 2.080806f +R6 5 4 2.224404 +C11 6 gnd 2.080806f +R7 6 5 2.224404 +C12 7 gnd 2.080806f +R8 7 6 2.224404 +C13 8 gnd 2.080806f +R9 8 7 2.224404 +C14 9 gnd 2.080806f +R10 9 8 2.224404 +C15 10 gnd 2.080806f +R11 10 9 2.224404 +C16 11 gnd 2.080806f +R12 11 10 2.224404 +C17 12 gnd 2.080806f +R13 12 11 2.224404 +C18 13 gnd 2.080806f +R14 13 12 2.224404 +C19 14 gnd 2.080806f +R15 14 13 2.224404 +C20 15 gnd 2.080806f +R16 15 14 2.224404 +C21 16 gnd 2.080806f +R17 16 15 2.224404 +C22 17 gnd 2.080806f +R18 17 16 2.224404 +C23 18 gnd 2.080806f +R19 18 17 2.224404 +C24 19 gnd 2.080806f +R20 19 18 2.224404 +C25 20 gnd 2.080806f +R21 20 19 2.224404 +C26 21 gnd 2.080806f +R22 21 20 2.224404 +C27 22 gnd 2.080806f +R23 22 21 2.224404 +C28 23 gnd 2.080806f +R24 23 22 2.224404 +C29 24 gnd 2.080806f +R25 24 23 2.224404 +C30 25 gnd 2.080806f +R26 25 24 2.224404 +C31 26 gnd 2.080806f +R27 26 25 2.224404 +C32 27 gnd 2.080806f +R28 27 26 2.224404 +C33 28 gnd 2.080806f +R29 28 27 2.224404 +C34 29 gnd 2.080806f +R30 29 28 2.224404 +C35 30 gnd 2.080806f +R31 30 29 2.224404 +C36 31 gnd 2.080806f +R32 31 30 2.224404 +C37 32 gnd 2.080806f +R33 32 31 2.224404 +C38 33 gnd 2.080806f +R34 33 32 2.224404 +C39 34 gnd 2.080806f +R35 34 33 2.224404 +C40 35 gnd 2.080806f +R36 35 34 2.224404 +C41 36 gnd 2.080806f +R37 36 35 2.224404 +C42 37 gnd 2.080806f +R38 37 36 2.224404 +C43 38 gnd 2.080806f +R39 38 37 2.224404 +C44 39 gnd 2.080806f +R40 39 38 2.224404 +C45 40 gnd 2.080806f +R41 40 39 2.224404 +C46 41 gnd 2.080806f +R42 41 40 2.224404 +C47 42 gnd 2.080806f +R43 42 41 2.224404 +C48 43 gnd 2.080806f +R44 43 42 2.224404 +C49 44 gnd 2.080806f +R45 44 43 2.224404 +C50 45 gnd 2.080806f +R46 45 44 2.224404 +C51 46 gnd 2.080806f +R47 46 45 2.224404 +C52 47 gnd 2.080806f +R48 47 46 2.224404 +C53 48 gnd 2.080806f +R49 48 47 2.224404 +C54 49 gnd 2.080806f +R50 49 48 2.224404 +C55 50 gnd 2.080806f +R51 50 49 2.224404 +R52 g207_4 50 2.224404 +R53 g207_3 g207_4 2.224404 +C56 51 gnd 2.080806f +R54 2 51 2.224404 +C57 52 gnd 2.080806f +R55 51 52 2.224404 +C58 53 gnd 2.080806f +R56 53 52 2.224404 +C59 54 gnd 2.080806f +R57 54 53 2.224404 +C60 55 gnd 2.080806f +R58 54 55 2.224404 +C61 56 gnd 2.080806f +R59 55 56 2.224404 +C62 57 gnd 2.080806f +R60 57 56 2.224404 +C63 58 gnd 2.080806f +R61 58 57 2.224404 +C64 59 gnd 2.080806f +R62 59 58 2.224404 +C65 60 gnd 2.080806f +R63 59 60 2.224404 +C66 61 gnd 2.080806f +R64 61 60 2.224404 +C67 62 gnd 2.080806f +R65 62 61 2.224404 +C68 63 gnd 2.080806f +R66 63 62 2.224404 +C69 64 gnd 2.080806f +R67 64 63 2.224404 +C70 65 gnd 2.080806f +R68 64 65 2.224404 +C71 66 gnd 2.080806f +R69 65 66 2.224404 +C72 67 gnd 2.080806f +R70 66 67 2.224404 +C73 68 gnd 2.080806f +R71 67 68 2.224404 +C74 69 gnd 2.080806f +R72 68 69 2.224404 +C75 70 gnd 2.080806f +R73 69 70 2.224404 +C76 71 gnd 2.080806f +R74 70 71 2.224404 +C77 72 gnd 2.080806f +R75 71 72 2.224404 +C78 73 gnd 2.080806f +R76 72 73 2.224404 +C79 74 gnd 2.080806f +R77 73 74 2.224404 +C80 75 gnd 2.080806f +R78 74 75 2.224404 +C81 76 gnd 2.080806f +R79 75 76 2.224404 +C82 77 gnd 2.080806f +R80 76 77 2.224404 +C83 78 gnd 2.080806f +R81 77 78 2.224404 +C84 79 gnd 2.080806f +R82 78 79 2.224404 +C85 80 gnd 2.080806f +R83 79 80 2.224404 +C86 81 gnd 2.080806f +R84 81 80 2.224404 +C87 82 gnd 2.080806f +R85 81 82 2.224404 +C88 83 gnd 2.080806f +R86 83 82 2.224404 +C89 84 gnd 2.080806f +R87 83 84 2.224404 +C90 85 gnd 2.080806f +R88 85 84 2.224404 +C91 86 gnd 2.080806f +R89 86 85 2.224404 +C92 87 gnd 2.080806f +R90 87 86 2.224404 +C93 88 gnd 2.080806f +R91 87 88 2.224404 +C94 89 gnd 2.080806f +R92 89 88 2.224404 +C95 90 gnd 2.080806f +R93 89 90 2.224404 +C96 91 gnd 2.080806f +R94 90 91 2.224404 +C97 92 gnd 2.080806f +R95 92 91 2.224404 +C98 93 gnd 2.080806f +R96 92 93 2.224404 +C99 94 gnd 2.080806f +R97 93 94 2.224404 +C100 95 gnd 2.080806f +R98 94 95 2.224404 +C101 96 gnd 2.080806f +R99 95 96 2.224404 +C102 97 gnd 2.080806f +R100 96 97 2.224404 +C103 98 gnd 2.080806f +R101 97 98 2.224404 +C104 99 gnd 2.080806f +R102 98 99 2.224404 +C105 100 gnd 2.080806f +R103 99 100 2.224404 +C106 101 gnd 2.080806f +R104 100 101 2.224404 +C107 102 gnd 2.080806f +R105 101 102 2.224404 +C108 103 gnd 2.080806f +R106 102 103 2.224404 +C109 104 gnd 2.080806f +R107 104 103 2.224404 +C110 105 gnd 2.080806f +R108 105 104 2.224404 +C111 106 gnd 2.080806f +R109 106 105 2.224404 +C112 107 gnd 2.080806f +R110 106 107 2.224404 +C113 108 gnd 2.080806f +R111 107 108 2.224404 +C114 109 gnd 2.080806f +R112 108 109 2.224404 +C115 110 gnd 2.080806f +R113 109 110 2.224404 +C116 111 gnd 2.080806f +R114 110 111 2.224404 +C117 112 gnd 2.080806f +R115 111 112 2.224404 +C118 113 gnd 2.080806f +R116 113 112 2.224404 +C119 114 gnd 2.080806f +R117 114 113 2.224404 +C120 115 gnd 2.080806f +R118 114 115 2.224404 +C121 116 gnd 2.080806f +R119 116 115 2.224404 +R120 g207_1 116 2.224404 +.ends + +.subckt netg11 g11_2 g11_1 gnd +C1 g11_2 gnd 2.080806f +C2 g11_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g11_2 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +C82 80 gnd 2.080806f +R80 80 79 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 82 81 2.224404 +C85 83 gnd 2.080806f +R83 83 82 2.224404 +C86 84 gnd 2.080806f +R84 84 83 2.224404 +C87 85 gnd 2.080806f +R85 85 84 2.224404 +C88 86 gnd 2.080806f +R86 86 85 2.224404 +C89 87 gnd 2.080806f +R87 87 86 2.224404 +C90 88 gnd 2.080806f +R88 88 87 2.224404 +C91 89 gnd 2.080806f +R89 89 88 2.224404 +C92 90 gnd 2.080806f +R90 90 89 2.224404 +C93 91 gnd 2.080806f +R91 91 90 2.224404 +C94 92 gnd 2.080806f +R92 92 91 2.224404 +C95 93 gnd 2.080806f +R93 93 92 2.224404 +C96 94 gnd 2.080806f +R94 94 93 2.224404 +C97 95 gnd 2.080806f +R95 95 94 2.224404 +C98 96 gnd 2.080806f +R96 96 95 2.224404 +C99 97 gnd 2.080806f +R97 97 96 2.224404 +C100 98 gnd 2.080806f +R98 98 97 2.224404 +C101 99 gnd 2.080806f +R99 99 98 2.224404 +C102 100 gnd 2.080806f +R100 100 99 2.224404 +R101 g11_1 100 2.224404 +.ends + +.subckt netg6 g6_0 g6_2 g6_1 g6_4 g6_3 gnd +C1 g6_0 gnd 2.080806f +C2 g6_2 gnd 2.080806f +C3 g6_1 gnd 2.080806f +C4 g6_4 gnd 2.080806f +C5 g6_3 gnd 2.080806f +C6 1 gnd 2.080806f +R1 g6_0 1 2.224404 +C7 2 gnd 2.080806f +R2 1 2 2.224404 +C8 3 gnd 2.080806f +R3 2 3 2.224404 +R4 3 g6_1 2.224404 +C9 4 gnd 2.080806f +R5 4 3 2.224404 +C10 5 gnd 2.080806f +R6 5 4 2.224404 +C11 6 gnd 2.080806f +R7 6 5 2.224404 +C12 7 gnd 2.080806f +R8 6 7 2.224404 +C13 8 gnd 2.080806f +R9 7 8 2.224404 +C14 9 gnd 2.080806f +R10 9 8 2.224404 +C15 10 gnd 2.080806f +R11 9 10 2.224404 +C16 11 gnd 2.080806f +R12 10 11 2.224404 +C17 12 gnd 2.080806f +R13 11 12 2.224404 +C18 13 gnd 2.080806f +R14 13 12 2.224404 +C19 14 gnd 2.080806f +R15 13 14 2.224404 +C20 15 gnd 2.080806f +R16 14 15 2.224404 +C21 16 gnd 2.080806f +R17 15 16 2.224404 +C22 17 gnd 2.080806f +R18 16 17 2.224404 +C23 18 gnd 2.080806f +R19 17 18 2.224404 +C24 19 gnd 2.080806f +R20 18 19 2.224404 +C25 20 gnd 2.080806f +R21 20 19 2.224404 +C26 21 gnd 2.080806f +R22 21 20 2.224404 +C27 22 gnd 2.080806f +R23 22 21 2.224404 +C28 23 gnd 2.080806f +R24 23 22 2.224404 +C29 24 gnd 2.080806f +R25 24 23 2.224404 +C30 25 gnd 2.080806f +R26 24 25 2.224404 +C31 26 gnd 2.080806f +R27 26 25 2.224404 +C32 27 gnd 2.080806f +R28 27 26 2.224404 +C33 28 gnd 2.080806f +R29 28 27 2.224404 +C34 29 gnd 2.080806f +R30 29 28 2.224404 +C35 30 gnd 2.080806f +R31 30 29 2.224404 +R32 g6_2 30 2.224404 +C36 31 gnd 2.080806f +R33 31 g6_2 2.224404 +C37 32 gnd 2.080806f +R34 32 31 2.224404 +C38 33 gnd 2.080806f +R35 33 32 2.224404 +C39 34 gnd 2.080806f +R36 33 34 2.224404 +C40 35 gnd 2.080806f +R37 35 34 2.224404 +C41 36 gnd 2.080806f +R38 36 35 2.224404 +C42 37 gnd 2.080806f +R39 37 36 2.224404 +C43 38 gnd 2.080806f +R40 38 37 2.224404 +C44 39 gnd 2.080806f +R41 39 38 2.224404 +C45 40 gnd 2.080806f +R42 40 39 2.224404 +C46 41 gnd 2.080806f +R43 41 40 2.224404 +C47 42 gnd 2.080806f +R44 42 41 2.224404 +C48 43 gnd 2.080806f +R45 43 42 2.224404 +C49 44 gnd 2.080806f +R46 44 43 2.224404 +C50 45 gnd 2.080806f +R47 45 44 2.224404 +C51 46 gnd 2.080806f +R48 46 45 2.224404 +C52 47 gnd 2.080806f +R49 47 46 2.224404 +C53 48 gnd 2.080806f +R50 48 47 2.224404 +C54 49 gnd 2.080806f +R51 49 48 2.224404 +C55 50 gnd 2.080806f +R52 50 49 2.224404 +C56 51 gnd 2.080806f +R53 51 50 2.224404 +C57 52 gnd 2.080806f +R54 52 51 2.224404 +C58 53 gnd 2.080806f +R55 53 52 2.224404 +C59 54 gnd 2.080806f +R56 54 53 2.224404 +C60 55 gnd 2.080806f +R57 55 54 2.224404 +C61 56 gnd 2.080806f +R58 56 55 2.224404 +C62 57 gnd 2.080806f +R59 57 56 2.224404 +C63 58 gnd 2.080806f +R60 58 57 2.224404 +R61 g6_3 58 2.224404 +C64 59 gnd 2.080806f +R62 59 g6_3 2.224404 +C65 60 gnd 2.080806f +R63 60 59 2.224404 +C66 61 gnd 2.080806f +R64 61 60 2.224404 +C67 62 gnd 2.080806f +R65 62 61 2.224404 +C68 63 gnd 2.080806f +R66 63 62 2.224404 +C69 64 gnd 2.080806f +R67 64 63 2.224404 +C70 65 gnd 2.080806f +R68 65 64 2.224404 +C71 66 gnd 2.080806f +R69 66 65 2.224404 +C72 67 gnd 2.080806f +R70 67 66 2.224404 +C73 68 gnd 2.080806f +R71 68 67 2.224404 +C74 69 gnd 2.080806f +R72 69 68 2.224404 +C75 70 gnd 2.080806f +R73 70 69 2.224404 +C76 71 gnd 2.080806f +R74 71 70 2.224404 +C77 72 gnd 2.080806f +R75 72 71 2.224404 +C78 73 gnd 2.080806f +R76 73 72 2.224404 +C79 74 gnd 2.080806f +R77 74 73 2.224404 +C80 75 gnd 2.080806f +R78 75 74 2.224404 +C81 76 gnd 2.080806f +R79 76 75 2.224404 +C82 77 gnd 2.080806f +R80 77 76 2.224404 +C83 78 gnd 2.080806f +R81 78 77 2.224404 +C84 79 gnd 2.080806f +R82 79 78 2.224404 +C85 80 gnd 2.080806f +R83 80 79 2.224404 +C86 81 gnd 2.080806f +R84 81 80 2.224404 +C87 82 gnd 2.080806f +R85 82 81 2.224404 +C88 83 gnd 2.080806f +R86 83 82 2.224404 +C89 84 gnd 2.080806f +R87 84 83 2.224404 +C90 85 gnd 2.080806f +R88 85 84 2.224404 +C91 86 gnd 2.080806f +R89 86 85 2.224404 +C92 87 gnd 2.080806f +R90 87 86 2.224404 +C93 88 gnd 2.080806f +R91 88 87 2.224404 +C94 89 gnd 2.080806f +R92 89 88 2.224404 +C95 90 gnd 2.080806f +R93 90 89 2.224404 +C96 91 gnd 2.080806f +R94 91 90 2.224404 +C97 92 gnd 2.080806f +R95 92 91 2.224404 +C98 93 gnd 2.080806f +R96 93 92 2.224404 +C99 94 gnd 2.080806f +R97 94 93 2.224404 +C100 95 gnd 2.080806f +R98 95 94 2.224404 +C101 96 gnd 2.080806f +R99 96 95 2.224404 +C102 97 gnd 2.080806f +R100 97 96 2.224404 +C103 98 gnd 2.080806f +R101 98 97 2.224404 +C104 99 gnd 2.080806f +R102 99 98 2.224404 +C105 100 gnd 2.080806f +R103 100 99 2.224404 +C106 101 gnd 2.080806f +R104 101 100 2.224404 +C107 102 gnd 2.080806f +R105 102 101 2.224404 +C108 103 gnd 2.080806f +R106 103 102 2.224404 +C109 104 gnd 2.080806f +R107 104 103 2.224404 +C110 105 gnd 2.080806f +R108 105 104 2.224404 +C111 106 gnd 2.080806f +R109 106 105 2.224404 +C112 107 gnd 2.080806f +R110 107 106 2.224404 +C113 108 gnd 2.080806f +R111 108 107 2.224404 +C114 109 gnd 2.080806f +R112 109 108 2.224404 +C115 110 gnd 2.080806f +R113 110 109 2.224404 +C116 111 gnd 2.080806f +R114 111 110 2.224404 +C117 112 gnd 2.080806f +R115 112 111 2.224404 +C118 113 gnd 2.080806f +R116 113 112 2.224404 +C119 114 gnd 2.080806f +R117 114 113 2.224404 +C120 115 gnd 2.080806f +R118 115 114 2.224404 +R119 g6_4 115 2.224404 +.ends + +.subckt netg15 g15_0 g15_2 g15_1 gnd +C1 g15_0 gnd 2.080806f +C2 g15_2 gnd 2.080806f +C3 g15_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 g15_0 1 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 10 11 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 13 14 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 31 32 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 35 36 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 37 38 2.224404 +C42 39 gnd 2.080806f +R39 38 39 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 46 47 2.224404 +C51 48 gnd 2.080806f +R48 47 48 2.224404 +C52 49 gnd 2.080806f +R49 48 49 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 50 51 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 52 53 2.224404 +C57 54 gnd 2.080806f +R54 53 54 2.224404 +C58 55 gnd 2.080806f +R55 54 55 2.224404 +C59 56 gnd 2.080806f +R56 55 56 2.224404 +C60 57 gnd 2.080806f +R57 56 57 2.224404 +C61 58 gnd 2.080806f +R58 57 58 2.224404 +C62 59 gnd 2.080806f +R59 58 59 2.224404 +C63 60 gnd 2.080806f +R60 59 60 2.224404 +C64 61 gnd 2.080806f +R61 60 61 2.224404 +C65 62 gnd 2.080806f +R62 61 62 2.224404 +C66 63 gnd 2.080806f +R63 62 63 2.224404 +C67 64 gnd 2.080806f +R64 63 64 2.224404 +C68 65 gnd 2.080806f +R65 64 65 2.224404 +C69 66 gnd 2.080806f +R66 65 66 2.224404 +C70 67 gnd 2.080806f +R67 66 67 2.224404 +C71 68 gnd 2.080806f +R68 67 68 2.224404 +C72 69 gnd 2.080806f +R69 68 69 2.224404 +C73 70 gnd 2.080806f +R70 69 70 2.224404 +C74 71 gnd 2.080806f +R71 70 71 2.224404 +C75 72 gnd 2.080806f +R72 71 72 2.224404 +C76 73 gnd 2.080806f +R73 72 73 2.224404 +C77 74 gnd 2.080806f +R74 73 74 2.224404 +C78 75 gnd 2.080806f +R75 74 75 2.224404 +C79 76 gnd 2.080806f +R76 75 76 2.224404 +C80 77 gnd 2.080806f +R77 76 77 2.224404 +C81 78 gnd 2.080806f +R78 77 78 2.224404 +C82 79 gnd 2.080806f +R79 78 79 2.224404 +C83 80 gnd 2.080806f +R80 79 80 2.224404 +C84 81 gnd 2.080806f +R81 80 81 2.224404 +C85 82 gnd 2.080806f +R82 81 82 2.224404 +C86 83 gnd 2.080806f +R83 82 83 2.224404 +C87 84 gnd 2.080806f +R84 83 84 2.224404 +C88 85 gnd 2.080806f +R85 84 85 2.224404 +C89 86 gnd 2.080806f +R86 85 86 2.224404 +C90 87 gnd 2.080806f +R87 86 87 2.224404 +C91 88 gnd 2.080806f +R88 87 88 2.224404 +C92 89 gnd 2.080806f +R89 89 88 2.224404 +C93 90 gnd 2.080806f +R90 90 89 2.224404 +C94 91 gnd 2.080806f +R91 90 91 2.224404 +C95 92 gnd 2.080806f +R92 92 91 2.224404 +C96 93 gnd 2.080806f +R93 92 93 2.224404 +C97 94 gnd 2.080806f +R94 93 94 2.224404 +C98 95 gnd 2.080806f +R95 94 95 2.224404 +C99 96 gnd 2.080806f +R96 95 96 2.224404 +C100 97 gnd 2.080806f +R97 97 96 2.224404 +C101 98 gnd 2.080806f +R98 98 97 2.224404 +C102 99 gnd 2.080806f +R99 99 98 2.224404 +C103 100 gnd 2.080806f +R100 100 99 2.224404 +C104 101 gnd 2.080806f +R101 101 100 2.224404 +C105 102 gnd 2.080806f +R102 101 102 2.224404 +C106 103 gnd 2.080806f +R103 102 103 2.224404 +C107 104 gnd 2.080806f +R104 104 103 2.224404 +C108 105 gnd 2.080806f +R105 104 105 2.224404 +C109 106 gnd 2.080806f +R106 105 106 2.224404 +C110 107 gnd 2.080806f +R107 106 107 2.224404 +C111 108 gnd 2.080806f +R108 108 107 2.224404 +C112 109 gnd 2.080806f +R109 109 108 2.224404 +C113 110 gnd 2.080806f +R110 109 110 2.224404 +C114 111 gnd 2.080806f +R111 110 111 2.224404 +C115 112 gnd 2.080806f +R112 111 112 2.224404 +C116 113 gnd 2.080806f +R113 112 113 2.224404 +C117 114 gnd 2.080806f +R114 113 114 2.224404 +C118 115 gnd 2.080806f +R115 114 115 2.224404 +C119 116 gnd 2.080806f +R116 115 116 2.224404 +C120 117 gnd 2.080806f +R117 116 117 2.224404 +R118 117 g15_2 2.224404 +C121 118 gnd 2.080806f +R119 98 118 2.224404 +C122 119 gnd 2.080806f +R120 118 119 2.224404 +C123 120 gnd 2.080806f +R121 119 120 2.224404 +C124 121 gnd 2.080806f +R122 120 121 2.224404 +C125 122 gnd 2.080806f +R123 121 122 2.224404 +C126 123 gnd 2.080806f +R124 122 123 2.224404 +C127 124 gnd 2.080806f +R125 123 124 2.224404 +C128 125 gnd 2.080806f +R126 124 125 2.224404 +C129 126 gnd 2.080806f +R127 125 126 2.224404 +C130 127 gnd 2.080806f +R128 126 127 2.224404 +C131 128 gnd 2.080806f +R129 127 128 2.224404 +C132 129 gnd 2.080806f +R130 128 129 2.224404 +C133 130 gnd 2.080806f +R131 130 129 2.224404 +C134 131 gnd 2.080806f +R132 130 131 2.224404 +C135 132 gnd 2.080806f +R133 131 132 2.224404 +C136 133 gnd 2.080806f +R134 132 133 2.224404 +C137 134 gnd 2.080806f +R135 133 134 2.224404 +C138 135 gnd 2.080806f +R136 134 135 2.224404 +C139 136 gnd 2.080806f +R137 135 136 2.224404 +C140 137 gnd 2.080806f +R138 136 137 2.224404 +C141 138 gnd 2.080806f +R139 137 138 2.224404 +C142 139 gnd 2.080806f +R140 139 138 2.224404 +C143 140 gnd 2.080806f +R141 140 139 2.224404 +C144 141 gnd 2.080806f +R142 141 140 2.224404 +C145 142 gnd 2.080806f +R143 141 142 2.224404 +C146 143 gnd 2.080806f +R144 143 142 2.224404 +C147 144 gnd 2.080806f +R145 144 143 2.224404 +R146 g15_1 144 2.224404 +.ends + +.subckt netg187 g187_2 g187_0 g187_1 gnd +C1 g187_2 gnd 2.080806f +C2 g187_0 gnd 2.080806f +C3 g187_1 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g187_0 2.224404 +C5 2 gnd 2.080806f +R2 1 2 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 3 4 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 12 13 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 14 15 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 16 17 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 18 19 2.224404 +C23 20 gnd 2.080806f +R20 19 20 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 21 22 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 23 24 2.224404 +C28 25 gnd 2.080806f +R25 24 25 2.224404 +C29 26 gnd 2.080806f +R26 25 26 2.224404 +C30 27 gnd 2.080806f +R27 26 27 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 28 29 2.224404 +C33 30 gnd 2.080806f +R30 29 30 2.224404 +C34 31 gnd 2.080806f +R31 30 31 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 32 33 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 34 35 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 42 43 2.224404 +C47 44 gnd 2.080806f +R44 43 44 2.224404 +R45 44 g187_2 2.224404 +C48 45 gnd 2.080806f +R46 g187_2 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 106 107 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +R110 108 g187_1 2.224404 +.ends + +.subckt netg10 g10_1 g10_0 g10_2 gnd +C1 g10_1 gnd 2.080806f +C2 g10_0 gnd 2.080806f +C3 g10_2 gnd 2.080806f +.ends + +.subckt netg182 g182_1 g182_0 g182_2 gnd +C1 g182_1 gnd 2.080806f +C2 g182_0 gnd 2.080806f +C3 g182_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g182_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 2 3 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 4 5 2.224404 +C9 6 gnd 2.080806f +R6 5 6 2.224404 +C10 7 gnd 2.080806f +R7 6 7 2.224404 +C11 8 gnd 2.080806f +R8 7 8 2.224404 +C12 9 gnd 2.080806f +R9 8 9 2.224404 +C13 10 gnd 2.080806f +R10 9 10 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 11 12 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 15 16 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 17 18 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 20 21 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 22 23 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 27 28 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 33 34 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 36 37 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 39 40 2.224404 +C44 41 gnd 2.080806f +R41 40 41 2.224404 +C45 42 gnd 2.080806f +R42 41 42 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 44 45 2.224404 +C49 46 gnd 2.080806f +R46 45 46 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 47 48 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 49 50 2.224404 +C54 51 gnd 2.080806f +R51 50 51 2.224404 +R52 g182_2 51 2.224404 +C55 52 gnd 2.080806f +R53 g182_0 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 106 107 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +C112 109 gnd 2.080806f +R110 108 109 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 112 113 2.224404 +C117 114 gnd 2.080806f +R115 113 114 2.224404 +C118 115 gnd 2.080806f +R116 114 115 2.224404 +C119 116 gnd 2.080806f +R117 115 116 2.224404 +C120 117 gnd 2.080806f +R118 116 117 2.224404 +C121 118 gnd 2.080806f +R119 117 118 2.224404 +C122 119 gnd 2.080806f +R120 118 119 2.224404 +C123 120 gnd 2.080806f +R121 119 120 2.224404 +C124 121 gnd 2.080806f +R122 120 121 2.224404 +C125 122 gnd 2.080806f +R123 121 122 2.224404 +C126 123 gnd 2.080806f +R124 122 123 2.224404 +C127 124 gnd 2.080806f +R125 123 124 2.224404 +R126 124 g182_1 2.224404 +.ends + +.subckt netg173 g173_2 g173_0 g173_3 g173_1 gnd +C1 g173_2 gnd 2.080806f +C2 g173_0 gnd 2.080806f +C3 g173_3 gnd 2.080806f +C4 g173_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g173_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 17 16 2.224404 +C22 18 gnd 2.080806f +R18 18 17 2.224404 +C23 19 gnd 2.080806f +R19 19 18 2.224404 +C24 20 gnd 2.080806f +R20 20 19 2.224404 +C25 21 gnd 2.080806f +R21 21 20 2.224404 +C26 22 gnd 2.080806f +R22 22 21 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +C28 24 gnd 2.080806f +R24 24 23 2.224404 +C29 25 gnd 2.080806f +R25 25 24 2.224404 +C30 26 gnd 2.080806f +R26 26 25 2.224404 +C31 27 gnd 2.080806f +R27 27 26 2.224404 +C32 28 gnd 2.080806f +R28 28 27 2.224404 +C33 29 gnd 2.080806f +R29 29 28 2.224404 +C34 30 gnd 2.080806f +R30 30 29 2.224404 +C35 31 gnd 2.080806f +R31 31 30 2.224404 +C36 32 gnd 2.080806f +R32 32 31 2.224404 +C37 33 gnd 2.080806f +R33 33 32 2.224404 +C38 34 gnd 2.080806f +R34 34 33 2.224404 +C39 35 gnd 2.080806f +R35 35 34 2.224404 +C40 36 gnd 2.080806f +R36 36 35 2.224404 +C41 37 gnd 2.080806f +R37 37 36 2.224404 +C42 38 gnd 2.080806f +R38 38 37 2.224404 +C43 39 gnd 2.080806f +R39 39 38 2.224404 +C44 40 gnd 2.080806f +R40 40 39 2.224404 +C45 41 gnd 2.080806f +R41 41 40 2.224404 +C46 42 gnd 2.080806f +R42 42 41 2.224404 +C47 43 gnd 2.080806f +R43 43 42 2.224404 +C48 44 gnd 2.080806f +R44 44 43 2.224404 +C49 45 gnd 2.080806f +R45 45 44 2.224404 +C50 46 gnd 2.080806f +R46 46 45 2.224404 +C51 47 gnd 2.080806f +R47 47 46 2.224404 +C52 48 gnd 2.080806f +R48 48 47 2.224404 +C53 49 gnd 2.080806f +R49 49 48 2.224404 +C54 50 gnd 2.080806f +R50 50 49 2.224404 +C55 51 gnd 2.080806f +R51 51 50 2.224404 +C56 52 gnd 2.080806f +R52 52 51 2.224404 +C57 53 gnd 2.080806f +R53 53 52 2.224404 +C58 54 gnd 2.080806f +R54 54 53 2.224404 +C59 55 gnd 2.080806f +R55 55 54 2.224404 +C60 56 gnd 2.080806f +R56 56 55 2.224404 +C61 57 gnd 2.080806f +R57 57 56 2.224404 +C62 58 gnd 2.080806f +R58 58 57 2.224404 +C63 59 gnd 2.080806f +R59 59 58 2.224404 +C64 60 gnd 2.080806f +R60 60 59 2.224404 +C65 61 gnd 2.080806f +R61 61 60 2.224404 +C66 62 gnd 2.080806f +R62 62 61 2.224404 +C67 63 gnd 2.080806f +R63 63 62 2.224404 +C68 64 gnd 2.080806f +R64 64 63 2.224404 +C69 65 gnd 2.080806f +R65 65 64 2.224404 +C70 66 gnd 2.080806f +R66 66 65 2.224404 +C71 67 gnd 2.080806f +R67 67 66 2.224404 +C72 68 gnd 2.080806f +R68 68 67 2.224404 +C73 69 gnd 2.080806f +R69 69 68 2.224404 +C74 70 gnd 2.080806f +R70 70 69 2.224404 +C75 71 gnd 2.080806f +R71 71 70 2.224404 +C76 72 gnd 2.080806f +R72 72 71 2.224404 +C77 73 gnd 2.080806f +R73 73 72 2.224404 +C78 74 gnd 2.080806f +R74 74 73 2.224404 +C79 75 gnd 2.080806f +R75 75 74 2.224404 +C80 76 gnd 2.080806f +R76 76 75 2.224404 +C81 77 gnd 2.080806f +R77 77 76 2.224404 +C82 78 gnd 2.080806f +R78 78 77 2.224404 +R79 g173_1 78 2.224404 +C83 79 gnd 2.080806f +R80 79 g173_1 2.224404 +C84 80 gnd 2.080806f +R81 80 79 2.224404 +C85 81 gnd 2.080806f +R82 81 80 2.224404 +C86 82 gnd 2.080806f +R83 82 81 2.224404 +C87 83 gnd 2.080806f +R84 82 83 2.224404 +C88 84 gnd 2.080806f +R85 84 83 2.224404 +C89 85 gnd 2.080806f +R86 85 84 2.224404 +C90 86 gnd 2.080806f +R87 86 85 2.224404 +C91 87 gnd 2.080806f +R88 87 86 2.224404 +C92 88 gnd 2.080806f +R89 88 87 2.224404 +C93 89 gnd 2.080806f +R90 89 88 2.224404 +C94 90 gnd 2.080806f +R91 90 89 2.224404 +C95 91 gnd 2.080806f +R92 91 90 2.224404 +C96 92 gnd 2.080806f +R93 92 91 2.224404 +C97 93 gnd 2.080806f +R94 93 92 2.224404 +C98 94 gnd 2.080806f +R95 94 93 2.224404 +C99 95 gnd 2.080806f +R96 95 94 2.224404 +C100 96 gnd 2.080806f +R97 96 95 2.224404 +C101 97 gnd 2.080806f +R98 97 96 2.224404 +C102 98 gnd 2.080806f +R99 98 97 2.224404 +C103 99 gnd 2.080806f +R100 99 98 2.224404 +C104 100 gnd 2.080806f +R101 100 99 2.224404 +C105 101 gnd 2.080806f +R102 100 101 2.224404 +C106 102 gnd 2.080806f +R103 102 101 2.224404 +C107 103 gnd 2.080806f +R104 103 102 2.224404 +C108 104 gnd 2.080806f +R105 104 103 2.224404 +C109 105 gnd 2.080806f +R106 105 104 2.224404 +C110 106 gnd 2.080806f +R107 106 105 2.224404 +C111 107 gnd 2.080806f +R108 107 106 2.224404 +C112 108 gnd 2.080806f +R109 108 107 2.224404 +C113 109 gnd 2.080806f +R110 109 108 2.224404 +C114 110 gnd 2.080806f +R111 109 110 2.224404 +R112 g173_3 110 2.224404 +C115 111 gnd 2.080806f +R113 103 111 2.224404 +C116 112 gnd 2.080806f +R114 111 112 2.224404 +C117 113 gnd 2.080806f +R115 112 113 2.224404 +C118 114 gnd 2.080806f +R116 113 114 2.224404 +C119 115 gnd 2.080806f +R117 114 115 2.224404 +C120 116 gnd 2.080806f +R118 115 116 2.224404 +C121 117 gnd 2.080806f +R119 116 117 2.224404 +C122 118 gnd 2.080806f +R120 117 118 2.224404 +C123 119 gnd 2.080806f +R121 118 119 2.224404 +C124 120 gnd 2.080806f +R122 119 120 2.224404 +C125 121 gnd 2.080806f +R123 120 121 2.224404 +C126 122 gnd 2.080806f +R124 121 122 2.224404 +C127 123 gnd 2.080806f +R125 122 123 2.224404 +C128 124 gnd 2.080806f +R126 123 124 2.224404 +C129 125 gnd 2.080806f +R127 124 125 2.224404 +C130 126 gnd 2.080806f +R128 125 126 2.224404 +C131 127 gnd 2.080806f +R129 126 127 2.224404 +C132 128 gnd 2.080806f +R130 127 128 2.224404 +R131 128 g173_2 2.224404 +.ends + +.subckt netg174 g174_2 g174_3 g174_1 g174_0 gnd +C1 g174_2 gnd 2.080806f +C2 g174_3 gnd 2.080806f +C3 g174_1 gnd 2.080806f +C4 g174_0 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g174_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 17 16 2.224404 +C22 18 gnd 2.080806f +R18 18 17 2.224404 +C23 19 gnd 2.080806f +R19 19 18 2.224404 +C24 20 gnd 2.080806f +R20 20 19 2.224404 +C25 21 gnd 2.080806f +R21 21 20 2.224404 +C26 22 gnd 2.080806f +R22 22 21 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +C28 24 gnd 2.080806f +R24 24 23 2.224404 +C29 25 gnd 2.080806f +R25 25 24 2.224404 +C30 26 gnd 2.080806f +R26 26 25 2.224404 +C31 27 gnd 2.080806f +R27 27 26 2.224404 +C32 28 gnd 2.080806f +R28 28 27 2.224404 +C33 29 gnd 2.080806f +R29 29 28 2.224404 +C34 30 gnd 2.080806f +R30 30 29 2.224404 +C35 31 gnd 2.080806f +R31 31 30 2.224404 +C36 32 gnd 2.080806f +R32 32 31 2.224404 +C37 33 gnd 2.080806f +R33 33 32 2.224404 +C38 34 gnd 2.080806f +R34 34 33 2.224404 +C39 35 gnd 2.080806f +R35 35 34 2.224404 +C40 36 gnd 2.080806f +R36 36 35 2.224404 +C41 37 gnd 2.080806f +R37 37 36 2.224404 +C42 38 gnd 2.080806f +R38 38 37 2.224404 +C43 39 gnd 2.080806f +R39 39 38 2.224404 +C44 40 gnd 2.080806f +R40 40 39 2.224404 +C45 41 gnd 2.080806f +R41 41 40 2.224404 +C46 42 gnd 2.080806f +R42 42 41 2.224404 +C47 43 gnd 2.080806f +R43 43 42 2.224404 +C48 44 gnd 2.080806f +R44 44 43 2.224404 +C49 45 gnd 2.080806f +R45 45 44 2.224404 +C50 46 gnd 2.080806f +R46 46 45 2.224404 +C51 47 gnd 2.080806f +R47 47 46 2.224404 +C52 48 gnd 2.080806f +R48 48 47 2.224404 +C53 49 gnd 2.080806f +R49 49 48 2.224404 +C54 50 gnd 2.080806f +R50 50 49 2.224404 +C55 51 gnd 2.080806f +R51 51 50 2.224404 +C56 52 gnd 2.080806f +R52 52 51 2.224404 +C57 53 gnd 2.080806f +R53 53 52 2.224404 +C58 54 gnd 2.080806f +R54 54 53 2.224404 +C59 55 gnd 2.080806f +R55 55 54 2.224404 +C60 56 gnd 2.080806f +R56 56 55 2.224404 +C61 57 gnd 2.080806f +R57 57 56 2.224404 +C62 58 gnd 2.080806f +R58 58 57 2.224404 +C63 59 gnd 2.080806f +R59 59 58 2.224404 +C64 60 gnd 2.080806f +R60 60 59 2.224404 +C65 61 gnd 2.080806f +R61 61 60 2.224404 +C66 62 gnd 2.080806f +R62 62 61 2.224404 +C67 63 gnd 2.080806f +R63 63 62 2.224404 +C68 64 gnd 2.080806f +R64 64 63 2.224404 +C69 65 gnd 2.080806f +R65 65 64 2.224404 +C70 66 gnd 2.080806f +R66 66 65 2.224404 +C71 67 gnd 2.080806f +R67 67 66 2.224404 +C72 68 gnd 2.080806f +R68 68 67 2.224404 +C73 69 gnd 2.080806f +R69 69 68 2.224404 +C74 70 gnd 2.080806f +R70 70 69 2.224404 +C75 71 gnd 2.080806f +R71 71 70 2.224404 +C76 72 gnd 2.080806f +R72 72 71 2.224404 +C77 73 gnd 2.080806f +R73 73 72 2.224404 +R74 g174_3 73 2.224404 +C78 74 gnd 2.080806f +R75 74 73 2.224404 +C79 75 gnd 2.080806f +R76 75 74 2.224404 +C80 76 gnd 2.080806f +R77 76 75 2.224404 +C81 77 gnd 2.080806f +R78 77 76 2.224404 +C82 78 gnd 2.080806f +R79 78 77 2.224404 +C83 79 gnd 2.080806f +R80 79 78 2.224404 +C84 80 gnd 2.080806f +R81 80 79 2.224404 +C85 81 gnd 2.080806f +R82 81 80 2.224404 +C86 82 gnd 2.080806f +R83 82 81 2.224404 +C87 83 gnd 2.080806f +R84 83 82 2.224404 +C88 84 gnd 2.080806f +R85 84 83 2.224404 +C89 85 gnd 2.080806f +R86 85 84 2.224404 +C90 86 gnd 2.080806f +R87 86 85 2.224404 +C91 87 gnd 2.080806f +R88 87 86 2.224404 +C92 88 gnd 2.080806f +R89 88 87 2.224404 +C93 89 gnd 2.080806f +R90 89 88 2.224404 +C94 90 gnd 2.080806f +R91 90 89 2.224404 +C95 91 gnd 2.080806f +R92 91 90 2.224404 +C96 92 gnd 2.080806f +R93 92 91 2.224404 +C97 93 gnd 2.080806f +R94 93 92 2.224404 +C98 94 gnd 2.080806f +R95 94 93 2.224404 +C99 95 gnd 2.080806f +R96 95 94 2.224404 +C100 96 gnd 2.080806f +R97 96 95 2.224404 +C101 97 gnd 2.080806f +R98 97 96 2.224404 +C102 98 gnd 2.080806f +R99 98 97 2.224404 +C103 99 gnd 2.080806f +R100 99 98 2.224404 +C104 100 gnd 2.080806f +R101 100 99 2.224404 +C105 101 gnd 2.080806f +R102 101 100 2.224404 +C106 102 gnd 2.080806f +R103 102 101 2.224404 +C107 103 gnd 2.080806f +R104 103 102 2.224404 +C108 104 gnd 2.080806f +R105 104 103 2.224404 +C109 105 gnd 2.080806f +R106 105 104 2.224404 +R107 g174_2 105 2.224404 +C110 106 gnd 2.080806f +R108 102 106 2.224404 +C111 107 gnd 2.080806f +R109 106 107 2.224404 +C112 108 gnd 2.080806f +R110 107 108 2.224404 +C113 109 gnd 2.080806f +R111 108 109 2.224404 +C114 110 gnd 2.080806f +R112 109 110 2.224404 +C115 111 gnd 2.080806f +R113 110 111 2.224404 +C116 112 gnd 2.080806f +R114 111 112 2.224404 +C117 113 gnd 2.080806f +R115 112 113 2.224404 +C118 114 gnd 2.080806f +R116 113 114 2.224404 +C119 115 gnd 2.080806f +R117 114 115 2.224404 +C120 116 gnd 2.080806f +R118 115 116 2.224404 +C121 117 gnd 2.080806f +R119 116 117 2.224404 +C122 118 gnd 2.080806f +R120 117 118 2.224404 +C123 119 gnd 2.080806f +R121 118 119 2.224404 +C124 120 gnd 2.080806f +R122 119 120 2.224404 +C125 121 gnd 2.080806f +R123 120 121 2.224404 +C126 122 gnd 2.080806f +R124 121 122 2.224404 +C127 123 gnd 2.080806f +R125 122 123 2.224404 +C128 124 gnd 2.080806f +R126 123 124 2.224404 +C129 125 gnd 2.080806f +R127 124 125 2.224404 +R128 125 g174_1 2.224404 +.ends + +.subckt netg388 g388_2 g388_1 g388_0 gnd +C1 g388_2 gnd 2.080806f +C2 g388_1 gnd 2.080806f +C3 g388_0 gnd 2.080806f +R1 g388_2 g388_0 2.224404 +C4 1 gnd 2.080806f +R2 g388_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 3 2 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 5 4 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 7 6 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 9 8 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 18 17 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 20 19 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 22 21 2.224404 +C26 23 gnd 2.080806f +R24 23 22 2.224404 +C27 24 gnd 2.080806f +R25 24 23 2.224404 +C28 25 gnd 2.080806f +R26 25 24 2.224404 +C29 26 gnd 2.080806f +R27 26 25 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 31 30 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 37 36 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 42 41 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 45 44 2.224404 +C49 46 gnd 2.080806f +R47 46 45 2.224404 +C50 47 gnd 2.080806f +R48 47 46 2.224404 +C51 48 gnd 2.080806f +R49 48 47 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 53 52 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 55 54 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 62 61 2.224404 +C66 63 gnd 2.080806f +R64 63 62 2.224404 +C67 64 gnd 2.080806f +R65 64 63 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 74 73 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 83 82 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 93 92 2.224404 +C97 94 gnd 2.080806f +R95 94 93 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 96 95 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 101 100 2.224404 +C105 102 gnd 2.080806f +R103 102 101 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 105 104 2.224404 +C109 106 gnd 2.080806f +R107 106 105 2.224404 +C110 107 gnd 2.080806f +R108 107 106 2.224404 +C111 108 gnd 2.080806f +R109 108 107 2.224404 +C112 109 gnd 2.080806f +R110 109 108 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 112 113 2.224404 +C117 114 gnd 2.080806f +R115 113 114 2.224404 +C118 115 gnd 2.080806f +R116 114 115 2.224404 +R117 115 g388_1 2.224404 +.ends + +.subckt netg181 g181_0 g181_2 g181_1 g181_3 gnd +C1 g181_0 gnd 2.080806f +C2 g181_2 gnd 2.080806f +C3 g181_1 gnd 2.080806f +C4 g181_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 g181_0 1 2.224404 +C6 2 gnd 2.080806f +R2 1 2 2.224404 +C7 3 gnd 2.080806f +R3 2 3 2.224404 +C8 4 gnd 2.080806f +R4 3 4 2.224404 +C9 5 gnd 2.080806f +R5 4 5 2.224404 +C10 6 gnd 2.080806f +R6 5 6 2.224404 +C11 7 gnd 2.080806f +R7 6 7 2.224404 +C12 8 gnd 2.080806f +R8 7 8 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 17 16 2.224404 +C22 18 gnd 2.080806f +R18 18 17 2.224404 +C23 19 gnd 2.080806f +R19 19 18 2.224404 +C24 20 gnd 2.080806f +R20 19 20 2.224404 +C25 21 gnd 2.080806f +R21 21 20 2.224404 +C26 22 gnd 2.080806f +R22 22 21 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +C28 24 gnd 2.080806f +R24 24 23 2.224404 +C29 25 gnd 2.080806f +R25 25 24 2.224404 +C30 26 gnd 2.080806f +R26 26 25 2.224404 +C31 27 gnd 2.080806f +R27 27 26 2.224404 +C32 28 gnd 2.080806f +R28 28 27 2.224404 +C33 29 gnd 2.080806f +R29 29 28 2.224404 +C34 30 gnd 2.080806f +R30 30 29 2.224404 +C35 31 gnd 2.080806f +R31 31 30 2.224404 +C36 32 gnd 2.080806f +R32 32 31 2.224404 +C37 33 gnd 2.080806f +R33 33 32 2.224404 +C38 34 gnd 2.080806f +R34 34 33 2.224404 +C39 35 gnd 2.080806f +R35 35 34 2.224404 +C40 36 gnd 2.080806f +R36 36 35 2.224404 +C41 37 gnd 2.080806f +R37 37 36 2.224404 +C42 38 gnd 2.080806f +R38 38 37 2.224404 +C43 39 gnd 2.080806f +R39 39 38 2.224404 +C44 40 gnd 2.080806f +R40 40 39 2.224404 +C45 41 gnd 2.080806f +R41 41 40 2.224404 +C46 42 gnd 2.080806f +R42 42 41 2.224404 +C47 43 gnd 2.080806f +R43 43 42 2.224404 +C48 44 gnd 2.080806f +R44 44 43 2.224404 +C49 45 gnd 2.080806f +R45 45 44 2.224404 +C50 46 gnd 2.080806f +R46 46 45 2.224404 +C51 47 gnd 2.080806f +R47 47 46 2.224404 +C52 48 gnd 2.080806f +R48 48 47 2.224404 +C53 49 gnd 2.080806f +R49 48 49 2.224404 +C54 50 gnd 2.080806f +R50 50 49 2.224404 +C55 51 gnd 2.080806f +R51 51 50 2.224404 +R52 g181_1 51 2.224404 +C56 52 gnd 2.080806f +R53 g181_1 52 2.224404 +C57 53 gnd 2.080806f +R54 52 53 2.224404 +C58 54 gnd 2.080806f +R55 53 54 2.224404 +C59 55 gnd 2.080806f +R56 54 55 2.224404 +C60 56 gnd 2.080806f +R57 55 56 2.224404 +C61 57 gnd 2.080806f +R58 56 57 2.224404 +C62 58 gnd 2.080806f +R59 57 58 2.224404 +C63 59 gnd 2.080806f +R60 59 58 2.224404 +C64 60 gnd 2.080806f +R61 59 60 2.224404 +C65 61 gnd 2.080806f +R62 60 61 2.224404 +C66 62 gnd 2.080806f +R63 61 62 2.224404 +C67 63 gnd 2.080806f +R64 62 63 2.224404 +C68 64 gnd 2.080806f +R65 63 64 2.224404 +C69 65 gnd 2.080806f +R66 64 65 2.224404 +C70 66 gnd 2.080806f +R67 65 66 2.224404 +C71 67 gnd 2.080806f +R68 66 67 2.224404 +C72 68 gnd 2.080806f +R69 67 68 2.224404 +C73 69 gnd 2.080806f +R70 68 69 2.224404 +C74 70 gnd 2.080806f +R71 69 70 2.224404 +C75 71 gnd 2.080806f +R72 70 71 2.224404 +C76 72 gnd 2.080806f +R73 72 71 2.224404 +C77 73 gnd 2.080806f +R74 72 73 2.224404 +C78 74 gnd 2.080806f +R75 73 74 2.224404 +C79 75 gnd 2.080806f +R76 74 75 2.224404 +C80 76 gnd 2.080806f +R77 75 76 2.224404 +C81 77 gnd 2.080806f +R78 76 77 2.224404 +C82 78 gnd 2.080806f +R79 77 78 2.224404 +C83 79 gnd 2.080806f +R80 78 79 2.224404 +C84 80 gnd 2.080806f +R81 80 79 2.224404 +C85 81 gnd 2.080806f +R82 80 81 2.224404 +C86 82 gnd 2.080806f +R83 81 82 2.224404 +C87 83 gnd 2.080806f +R84 82 83 2.224404 +C88 84 gnd 2.080806f +R85 84 83 2.224404 +C89 85 gnd 2.080806f +R86 84 85 2.224404 +C90 86 gnd 2.080806f +R87 85 86 2.224404 +C91 87 gnd 2.080806f +R88 86 87 2.224404 +R89 87 g181_2 2.224404 +C92 88 gnd 2.080806f +R90 g181_2 88 2.224404 +C93 89 gnd 2.080806f +R91 88 89 2.224404 +C94 90 gnd 2.080806f +R92 89 90 2.224404 +C95 91 gnd 2.080806f +R93 90 91 2.224404 +C96 92 gnd 2.080806f +R94 91 92 2.224404 +C97 93 gnd 2.080806f +R95 92 93 2.224404 +C98 94 gnd 2.080806f +R96 93 94 2.224404 +C99 95 gnd 2.080806f +R97 94 95 2.224404 +C100 96 gnd 2.080806f +R98 95 96 2.224404 +C101 97 gnd 2.080806f +R99 96 97 2.224404 +C102 98 gnd 2.080806f +R100 97 98 2.224404 +C103 99 gnd 2.080806f +R101 98 99 2.224404 +C104 100 gnd 2.080806f +R102 99 100 2.224404 +C105 101 gnd 2.080806f +R103 100 101 2.224404 +C106 102 gnd 2.080806f +R104 101 102 2.224404 +C107 103 gnd 2.080806f +R105 102 103 2.224404 +C108 104 gnd 2.080806f +R106 103 104 2.224404 +C109 105 gnd 2.080806f +R107 104 105 2.224404 +C110 106 gnd 2.080806f +R108 105 106 2.224404 +C111 107 gnd 2.080806f +R109 106 107 2.224404 +C112 108 gnd 2.080806f +R110 107 108 2.224404 +C113 109 gnd 2.080806f +R111 108 109 2.224404 +C114 110 gnd 2.080806f +R112 109 110 2.224404 +C115 111 gnd 2.080806f +R113 110 111 2.224404 +C116 112 gnd 2.080806f +R114 111 112 2.224404 +C117 113 gnd 2.080806f +R115 112 113 2.224404 +C118 114 gnd 2.080806f +R116 113 114 2.224404 +C119 115 gnd 2.080806f +R117 114 115 2.224404 +C120 116 gnd 2.080806f +R118 115 116 2.224404 +C121 117 gnd 2.080806f +R119 116 117 2.224404 +C122 118 gnd 2.080806f +R120 117 118 2.224404 +C123 119 gnd 2.080806f +R121 118 119 2.224404 +C124 120 gnd 2.080806f +R122 119 120 2.224404 +C125 121 gnd 2.080806f +R123 120 121 2.224404 +C126 122 gnd 2.080806f +R124 121 122 2.224404 +C127 123 gnd 2.080806f +R125 122 123 2.224404 +C128 124 gnd 2.080806f +R126 123 124 2.224404 +C129 125 gnd 2.080806f +R127 124 125 2.224404 +C130 126 gnd 2.080806f +R128 125 126 2.224404 +C131 127 gnd 2.080806f +R129 126 127 2.224404 +C132 128 gnd 2.080806f +R130 127 128 2.224404 +C133 129 gnd 2.080806f +R131 128 129 2.224404 +C134 130 gnd 2.080806f +R132 129 130 2.224404 +C135 131 gnd 2.080806f +R133 130 131 2.224404 +C136 132 gnd 2.080806f +R134 131 132 2.224404 +C137 133 gnd 2.080806f +R135 132 133 2.224404 +C138 134 gnd 2.080806f +R136 133 134 2.224404 +C139 135 gnd 2.080806f +R137 134 135 2.224404 +C140 136 gnd 2.080806f +R138 135 136 2.224404 +C141 137 gnd 2.080806f +R139 136 137 2.224404 +C142 138 gnd 2.080806f +R140 137 138 2.224404 +C143 139 gnd 2.080806f +R141 138 139 2.224404 +C144 140 gnd 2.080806f +R142 139 140 2.224404 +C145 141 gnd 2.080806f +R143 140 141 2.224404 +C146 142 gnd 2.080806f +R144 141 142 2.224404 +C147 143 gnd 2.080806f +R145 142 143 2.224404 +C148 144 gnd 2.080806f +R146 143 144 2.224404 +C149 145 gnd 2.080806f +R147 144 145 2.224404 +C150 146 gnd 2.080806f +R148 145 146 2.224404 +C151 147 gnd 2.080806f +R149 146 147 2.224404 +C152 148 gnd 2.080806f +R150 147 148 2.224404 +C153 149 gnd 2.080806f +R151 148 149 2.224404 +C154 150 gnd 2.080806f +R152 149 150 2.224404 +C155 151 gnd 2.080806f +R153 150 151 2.224404 +C156 152 gnd 2.080806f +R154 151 152 2.224404 +C157 153 gnd 2.080806f +R155 152 153 2.224404 +C158 154 gnd 2.080806f +R156 153 154 2.224404 +C159 155 gnd 2.080806f +R157 154 155 2.224404 +C160 156 gnd 2.080806f +R158 155 156 2.224404 +C161 157 gnd 2.080806f +R159 156 157 2.224404 +C162 158 gnd 2.080806f +R160 157 158 2.224404 +R161 158 g181_3 2.224404 +.ends + +.subckt netg87 g87_0 g87_1 gnd +C1 g87_0 gnd 2.080806f +C2 g87_1 gnd 2.080806f +C3 1 gnd 2.080806f +R1 g87_0 1 2.224404 +C4 2 gnd 2.080806f +R2 1 2 2.224404 +C5 3 gnd 2.080806f +R3 2 3 2.224404 +C6 4 gnd 2.080806f +R4 3 4 2.224404 +C7 5 gnd 2.080806f +R5 4 5 2.224404 +C8 6 gnd 2.080806f +R6 5 6 2.224404 +C9 7 gnd 2.080806f +R7 6 7 2.224404 +C10 8 gnd 2.080806f +R8 7 8 2.224404 +C11 9 gnd 2.080806f +R9 8 9 2.224404 +C12 10 gnd 2.080806f +R10 9 10 2.224404 +C13 11 gnd 2.080806f +R11 10 11 2.224404 +C14 12 gnd 2.080806f +R12 11 12 2.224404 +C15 13 gnd 2.080806f +R13 12 13 2.224404 +C16 14 gnd 2.080806f +R14 13 14 2.224404 +C17 15 gnd 2.080806f +R15 14 15 2.224404 +C18 16 gnd 2.080806f +R16 15 16 2.224404 +C19 17 gnd 2.080806f +R17 16 17 2.224404 +C20 18 gnd 2.080806f +R18 17 18 2.224404 +C21 19 gnd 2.080806f +R19 18 19 2.224404 +C22 20 gnd 2.080806f +R20 19 20 2.224404 +C23 21 gnd 2.080806f +R21 20 21 2.224404 +C24 22 gnd 2.080806f +R22 21 22 2.224404 +C25 23 gnd 2.080806f +R23 22 23 2.224404 +C26 24 gnd 2.080806f +R24 23 24 2.224404 +C27 25 gnd 2.080806f +R25 24 25 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 30 31 2.224404 +C34 32 gnd 2.080806f +R32 31 32 2.224404 +C35 33 gnd 2.080806f +R33 32 33 2.224404 +C36 34 gnd 2.080806f +R34 33 34 2.224404 +C37 35 gnd 2.080806f +R35 34 35 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 37 38 2.224404 +C41 39 gnd 2.080806f +R39 38 39 2.224404 +C42 40 gnd 2.080806f +R40 39 40 2.224404 +C43 41 gnd 2.080806f +R41 40 41 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 42 43 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +C82 80 gnd 2.080806f +R80 80 79 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 82 81 2.224404 +C85 83 gnd 2.080806f +R83 83 82 2.224404 +C86 84 gnd 2.080806f +R84 84 83 2.224404 +C87 85 gnd 2.080806f +R85 85 84 2.224404 +C88 86 gnd 2.080806f +R86 86 85 2.224404 +C89 87 gnd 2.080806f +R87 87 86 2.224404 +C90 88 gnd 2.080806f +R88 88 87 2.224404 +C91 89 gnd 2.080806f +R89 89 88 2.224404 +C92 90 gnd 2.080806f +R90 90 89 2.224404 +C93 91 gnd 2.080806f +R91 91 90 2.224404 +C94 92 gnd 2.080806f +R92 92 91 2.224404 +C95 93 gnd 2.080806f +R93 93 92 2.224404 +C96 94 gnd 2.080806f +R94 94 93 2.224404 +C97 95 gnd 2.080806f +R95 95 94 2.224404 +C98 96 gnd 2.080806f +R96 96 95 2.224404 +C99 97 gnd 2.080806f +R97 97 96 2.224404 +C100 98 gnd 2.080806f +R98 98 97 2.224404 +C101 99 gnd 2.080806f +R99 99 98 2.224404 +C102 100 gnd 2.080806f +R100 100 99 2.224404 +C103 101 gnd 2.080806f +R101 101 100 2.224404 +C104 102 gnd 2.080806f +R102 102 101 2.224404 +C105 103 gnd 2.080806f +R103 103 102 2.224404 +C106 104 gnd 2.080806f +R104 104 103 2.224404 +C107 105 gnd 2.080806f +R105 105 104 2.224404 +C108 106 gnd 2.080806f +R106 106 105 2.224404 +C109 107 gnd 2.080806f +R107 107 106 2.224404 +C110 108 gnd 2.080806f +R108 108 107 2.224404 +C111 109 gnd 2.080806f +R109 109 108 2.224404 +C112 110 gnd 2.080806f +R110 109 110 2.224404 +C113 111 gnd 2.080806f +R111 111 110 2.224404 +C114 112 gnd 2.080806f +R112 112 111 2.224404 +C115 113 gnd 2.080806f +R113 113 112 2.224404 +C116 114 gnd 2.080806f +R114 114 113 2.224404 +C117 115 gnd 2.080806f +R115 114 115 2.224404 +C118 116 gnd 2.080806f +R116 116 115 2.224404 +C119 117 gnd 2.080806f +R117 117 116 2.224404 +C120 118 gnd 2.080806f +R118 118 117 2.224404 +C121 119 gnd 2.080806f +R119 119 118 2.224404 +C122 120 gnd 2.080806f +R120 120 119 2.224404 +C123 121 gnd 2.080806f +R121 121 120 2.224404 +C124 122 gnd 2.080806f +R122 122 121 2.224404 +C125 123 gnd 2.080806f +R123 123 122 2.224404 +C126 124 gnd 2.080806f +R124 123 124 2.224404 +R125 g87_1 124 2.224404 +.ends + +.subckt netg166 g166_0 g166_2 g166_1 gnd +C1 g166_0 gnd 2.080806f +C2 g166_2 gnd 2.080806f +C3 g166_1 gnd 2.080806f +R1 g166_1 g166_0 2.224404 +C4 1 gnd 2.080806f +R2 g166_0 1 2.224404 +C5 2 gnd 2.080806f +R3 1 2 2.224404 +C6 3 gnd 2.080806f +R4 2 3 2.224404 +C7 4 gnd 2.080806f +R5 3 4 2.224404 +C8 5 gnd 2.080806f +R6 4 5 2.224404 +C9 6 gnd 2.080806f +R7 5 6 2.224404 +C10 7 gnd 2.080806f +R8 6 7 2.224404 +C11 8 gnd 2.080806f +R9 7 8 2.224404 +C12 9 gnd 2.080806f +R10 8 9 2.224404 +C13 10 gnd 2.080806f +R11 9 10 2.224404 +C14 11 gnd 2.080806f +R12 10 11 2.224404 +C15 12 gnd 2.080806f +R13 11 12 2.224404 +C16 13 gnd 2.080806f +R14 12 13 2.224404 +C17 14 gnd 2.080806f +R15 13 14 2.224404 +C18 15 gnd 2.080806f +R16 14 15 2.224404 +C19 16 gnd 2.080806f +R17 15 16 2.224404 +C20 17 gnd 2.080806f +R18 16 17 2.224404 +C21 18 gnd 2.080806f +R19 17 18 2.224404 +C22 19 gnd 2.080806f +R20 18 19 2.224404 +C23 20 gnd 2.080806f +R21 19 20 2.224404 +C24 21 gnd 2.080806f +R22 20 21 2.224404 +C25 22 gnd 2.080806f +R23 21 22 2.224404 +C26 23 gnd 2.080806f +R24 22 23 2.224404 +C27 24 gnd 2.080806f +R25 23 24 2.224404 +C28 25 gnd 2.080806f +R26 24 25 2.224404 +C29 26 gnd 2.080806f +R27 25 26 2.224404 +C30 27 gnd 2.080806f +R28 26 27 2.224404 +C31 28 gnd 2.080806f +R29 27 28 2.224404 +C32 29 gnd 2.080806f +R30 28 29 2.224404 +C33 30 gnd 2.080806f +R31 29 30 2.224404 +C34 31 gnd 2.080806f +R32 30 31 2.224404 +C35 32 gnd 2.080806f +R33 31 32 2.224404 +C36 33 gnd 2.080806f +R34 32 33 2.224404 +C37 34 gnd 2.080806f +R35 33 34 2.224404 +C38 35 gnd 2.080806f +R36 34 35 2.224404 +C39 36 gnd 2.080806f +R37 35 36 2.224404 +C40 37 gnd 2.080806f +R38 36 37 2.224404 +C41 38 gnd 2.080806f +R39 37 38 2.224404 +C42 39 gnd 2.080806f +R40 38 39 2.224404 +C43 40 gnd 2.080806f +R41 39 40 2.224404 +C44 41 gnd 2.080806f +R42 40 41 2.224404 +C45 42 gnd 2.080806f +R43 41 42 2.224404 +C46 43 gnd 2.080806f +R44 42 43 2.224404 +C47 44 gnd 2.080806f +R45 43 44 2.224404 +C48 45 gnd 2.080806f +R46 44 45 2.224404 +C49 46 gnd 2.080806f +R47 45 46 2.224404 +C50 47 gnd 2.080806f +R48 46 47 2.224404 +C51 48 gnd 2.080806f +R49 47 48 2.224404 +C52 49 gnd 2.080806f +R50 48 49 2.224404 +C53 50 gnd 2.080806f +R51 49 50 2.224404 +C54 51 gnd 2.080806f +R52 50 51 2.224404 +C55 52 gnd 2.080806f +R53 51 52 2.224404 +C56 53 gnd 2.080806f +R54 52 53 2.224404 +C57 54 gnd 2.080806f +R55 53 54 2.224404 +C58 55 gnd 2.080806f +R56 54 55 2.224404 +C59 56 gnd 2.080806f +R57 55 56 2.224404 +C60 57 gnd 2.080806f +R58 56 57 2.224404 +C61 58 gnd 2.080806f +R59 57 58 2.224404 +C62 59 gnd 2.080806f +R60 58 59 2.224404 +C63 60 gnd 2.080806f +R61 59 60 2.224404 +C64 61 gnd 2.080806f +R62 60 61 2.224404 +C65 62 gnd 2.080806f +R63 61 62 2.224404 +C66 63 gnd 2.080806f +R64 62 63 2.224404 +C67 64 gnd 2.080806f +R65 63 64 2.224404 +C68 65 gnd 2.080806f +R66 64 65 2.224404 +C69 66 gnd 2.080806f +R67 65 66 2.224404 +C70 67 gnd 2.080806f +R68 66 67 2.224404 +C71 68 gnd 2.080806f +R69 67 68 2.224404 +C72 69 gnd 2.080806f +R70 68 69 2.224404 +C73 70 gnd 2.080806f +R71 69 70 2.224404 +C74 71 gnd 2.080806f +R72 70 71 2.224404 +C75 72 gnd 2.080806f +R73 71 72 2.224404 +C76 73 gnd 2.080806f +R74 72 73 2.224404 +C77 74 gnd 2.080806f +R75 73 74 2.224404 +C78 75 gnd 2.080806f +R76 74 75 2.224404 +C79 76 gnd 2.080806f +R77 75 76 2.224404 +C80 77 gnd 2.080806f +R78 76 77 2.224404 +C81 78 gnd 2.080806f +R79 77 78 2.224404 +C82 79 gnd 2.080806f +R80 78 79 2.224404 +C83 80 gnd 2.080806f +R81 79 80 2.224404 +C84 81 gnd 2.080806f +R82 80 81 2.224404 +C85 82 gnd 2.080806f +R83 81 82 2.224404 +C86 83 gnd 2.080806f +R84 82 83 2.224404 +C87 84 gnd 2.080806f +R85 83 84 2.224404 +C88 85 gnd 2.080806f +R86 84 85 2.224404 +C89 86 gnd 2.080806f +R87 85 86 2.224404 +C90 87 gnd 2.080806f +R88 86 87 2.224404 +C91 88 gnd 2.080806f +R89 87 88 2.224404 +C92 89 gnd 2.080806f +R90 88 89 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 90 91 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 92 93 2.224404 +C97 94 gnd 2.080806f +R95 93 94 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 95 96 2.224404 +C100 97 gnd 2.080806f +R98 96 97 2.224404 +C101 98 gnd 2.080806f +R99 97 98 2.224404 +C102 99 gnd 2.080806f +R100 98 99 2.224404 +C103 100 gnd 2.080806f +R101 99 100 2.224404 +C104 101 gnd 2.080806f +R102 100 101 2.224404 +C105 102 gnd 2.080806f +R103 101 102 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 103 104 2.224404 +C108 105 gnd 2.080806f +R106 104 105 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 106 107 2.224404 +C111 108 gnd 2.080806f +R109 107 108 2.224404 +C112 109 gnd 2.080806f +R110 108 109 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 112 113 2.224404 +C117 114 gnd 2.080806f +R115 113 114 2.224404 +C118 115 gnd 2.080806f +R116 114 115 2.224404 +C119 116 gnd 2.080806f +R117 115 116 2.224404 +C120 117 gnd 2.080806f +R118 116 117 2.224404 +R119 117 g166_2 2.224404 +.ends + +.subckt netg180 g180_0 g180_1 g180_2 gnd +C1 g180_0 gnd 2.080806f +C2 g180_1 gnd 2.080806f +C3 g180_2 gnd 2.080806f +C4 1 gnd 2.080806f +R1 1 g180_0 2.224404 +C5 2 gnd 2.080806f +R2 2 1 2.224404 +C6 3 gnd 2.080806f +R3 3 2 2.224404 +C7 4 gnd 2.080806f +R4 4 3 2.224404 +C8 5 gnd 2.080806f +R5 5 4 2.224404 +C9 6 gnd 2.080806f +R6 6 5 2.224404 +C10 7 gnd 2.080806f +R7 7 6 2.224404 +C11 8 gnd 2.080806f +R8 8 7 2.224404 +C12 9 gnd 2.080806f +R9 9 8 2.224404 +C13 10 gnd 2.080806f +R10 10 9 2.224404 +C14 11 gnd 2.080806f +R11 11 10 2.224404 +C15 12 gnd 2.080806f +R12 12 11 2.224404 +C16 13 gnd 2.080806f +R13 13 12 2.224404 +C17 14 gnd 2.080806f +R14 14 13 2.224404 +C18 15 gnd 2.080806f +R15 15 14 2.224404 +C19 16 gnd 2.080806f +R16 16 15 2.224404 +C20 17 gnd 2.080806f +R17 17 16 2.224404 +C21 18 gnd 2.080806f +R18 18 17 2.224404 +C22 19 gnd 2.080806f +R19 19 18 2.224404 +C23 20 gnd 2.080806f +R20 20 19 2.224404 +C24 21 gnd 2.080806f +R21 21 20 2.224404 +C25 22 gnd 2.080806f +R22 22 21 2.224404 +C26 23 gnd 2.080806f +R23 23 22 2.224404 +C27 24 gnd 2.080806f +R24 24 23 2.224404 +C28 25 gnd 2.080806f +R25 25 24 2.224404 +C29 26 gnd 2.080806f +R26 26 25 2.224404 +C30 27 gnd 2.080806f +R27 27 26 2.224404 +C31 28 gnd 2.080806f +R28 28 27 2.224404 +C32 29 gnd 2.080806f +R29 29 28 2.224404 +C33 30 gnd 2.080806f +R30 30 29 2.224404 +C34 31 gnd 2.080806f +R31 31 30 2.224404 +C35 32 gnd 2.080806f +R32 32 31 2.224404 +C36 33 gnd 2.080806f +R33 33 32 2.224404 +C37 34 gnd 2.080806f +R34 34 33 2.224404 +C38 35 gnd 2.080806f +R35 35 34 2.224404 +C39 36 gnd 2.080806f +R36 36 35 2.224404 +C40 37 gnd 2.080806f +R37 37 36 2.224404 +C41 38 gnd 2.080806f +R38 38 37 2.224404 +C42 39 gnd 2.080806f +R39 39 38 2.224404 +C43 40 gnd 2.080806f +R40 40 39 2.224404 +C44 41 gnd 2.080806f +R41 41 40 2.224404 +C45 42 gnd 2.080806f +R42 42 41 2.224404 +C46 43 gnd 2.080806f +R43 43 42 2.224404 +C47 44 gnd 2.080806f +R44 44 43 2.224404 +C48 45 gnd 2.080806f +R45 45 44 2.224404 +C49 46 gnd 2.080806f +R46 46 45 2.224404 +C50 47 gnd 2.080806f +R47 47 46 2.224404 +C51 48 gnd 2.080806f +R48 48 47 2.224404 +C52 49 gnd 2.080806f +R49 49 48 2.224404 +C53 50 gnd 2.080806f +R50 50 49 2.224404 +C54 51 gnd 2.080806f +R51 51 50 2.224404 +C55 52 gnd 2.080806f +R52 52 51 2.224404 +C56 53 gnd 2.080806f +R53 53 52 2.224404 +C57 54 gnd 2.080806f +R54 54 53 2.224404 +C58 55 gnd 2.080806f +R55 55 54 2.224404 +C59 56 gnd 2.080806f +R56 56 55 2.224404 +C60 57 gnd 2.080806f +R57 57 56 2.224404 +C61 58 gnd 2.080806f +R58 58 57 2.224404 +C62 59 gnd 2.080806f +R59 59 58 2.224404 +C63 60 gnd 2.080806f +R60 60 59 2.224404 +C64 61 gnd 2.080806f +R61 61 60 2.224404 +C65 62 gnd 2.080806f +R62 62 61 2.224404 +C66 63 gnd 2.080806f +R63 63 62 2.224404 +C67 64 gnd 2.080806f +R64 64 63 2.224404 +C68 65 gnd 2.080806f +R65 65 64 2.224404 +C69 66 gnd 2.080806f +R66 66 65 2.224404 +C70 67 gnd 2.080806f +R67 67 66 2.224404 +C71 68 gnd 2.080806f +R68 68 67 2.224404 +C72 69 gnd 2.080806f +R69 68 69 2.224404 +C73 70 gnd 2.080806f +R70 70 69 2.224404 +C74 71 gnd 2.080806f +R71 71 70 2.224404 +C75 72 gnd 2.080806f +R72 71 72 2.224404 +C76 73 gnd 2.080806f +R73 72 73 2.224404 +C77 74 gnd 2.080806f +R74 74 73 2.224404 +C78 75 gnd 2.080806f +R75 75 74 2.224404 +C79 76 gnd 2.080806f +R76 76 75 2.224404 +C80 77 gnd 2.080806f +R77 77 76 2.224404 +C81 78 gnd 2.080806f +R78 78 77 2.224404 +C82 79 gnd 2.080806f +R79 79 78 2.224404 +C83 80 gnd 2.080806f +R80 80 79 2.224404 +C84 81 gnd 2.080806f +R81 81 80 2.224404 +C85 82 gnd 2.080806f +R82 82 81 2.224404 +C86 83 gnd 2.080806f +R83 83 82 2.224404 +C87 84 gnd 2.080806f +R84 84 83 2.224404 +C88 85 gnd 2.080806f +R85 85 84 2.224404 +R86 g180_1 85 2.224404 +C89 86 gnd 2.080806f +R87 86 85 2.224404 +C90 87 gnd 2.080806f +R88 87 86 2.224404 +C91 88 gnd 2.080806f +R89 88 87 2.224404 +C92 89 gnd 2.080806f +R90 89 88 2.224404 +C93 90 gnd 2.080806f +R91 89 90 2.224404 +C94 91 gnd 2.080806f +R92 91 90 2.224404 +C95 92 gnd 2.080806f +R93 91 92 2.224404 +C96 93 gnd 2.080806f +R94 93 92 2.224404 +C97 94 gnd 2.080806f +R95 94 93 2.224404 +C98 95 gnd 2.080806f +R96 94 95 2.224404 +C99 96 gnd 2.080806f +R97 96 95 2.224404 +C100 97 gnd 2.080806f +R98 97 96 2.224404 +C101 98 gnd 2.080806f +R99 98 97 2.224404 +C102 99 gnd 2.080806f +R100 99 98 2.224404 +C103 100 gnd 2.080806f +R101 100 99 2.224404 +C104 101 gnd 2.080806f +R102 101 100 2.224404 +C105 102 gnd 2.080806f +R103 102 101 2.224404 +C106 103 gnd 2.080806f +R104 102 103 2.224404 +C107 104 gnd 2.080806f +R105 104 103 2.224404 +C108 105 gnd 2.080806f +R106 105 104 2.224404 +C109 106 gnd 2.080806f +R107 105 106 2.224404 +C110 107 gnd 2.080806f +R108 107 106 2.224404 +C111 108 gnd 2.080806f +R109 108 107 2.224404 +C112 109 gnd 2.080806f +R110 108 109 2.224404 +C113 110 gnd 2.080806f +R111 109 110 2.224404 +C114 111 gnd 2.080806f +R112 110 111 2.224404 +C115 112 gnd 2.080806f +R113 111 112 2.224404 +C116 113 gnd 2.080806f +R114 112 113 2.224404 +C117 114 gnd 2.080806f +R115 113 114 2.224404 +C118 115 gnd 2.080806f +R116 114 115 2.224404 +C119 116 gnd 2.080806f +R117 115 116 2.224404 +C120 117 gnd 2.080806f +R118 116 117 2.224404 +C121 118 gnd 2.080806f +R119 118 117 2.224404 +C122 119 gnd 2.080806f +R120 118 119 2.224404 +C123 120 gnd 2.080806f +R121 120 119 2.224404 +C124 121 gnd 2.080806f +R122 121 120 2.224404 +C125 122 gnd 2.080806f +R123 121 122 2.224404 +C126 123 gnd 2.080806f +R124 123 122 2.224404 +C127 124 gnd 2.080806f +R125 124 123 2.224404 +C128 125 gnd 2.080806f +R126 125 124 2.224404 +C129 126 gnd 2.080806f +R127 126 125 2.224404 +C130 127 gnd 2.080806f +R128 126 127 2.224404 +C131 128 gnd 2.080806f +R129 128 127 2.224404 +C132 129 gnd 2.080806f +R130 128 129 2.224404 +C133 130 gnd 2.080806f +R131 130 129 2.224404 +C134 131 gnd 2.080806f +R132 131 130 2.224404 +C135 132 gnd 2.080806f +R133 132 131 2.224404 +C136 133 gnd 2.080806f +R134 133 132 2.224404 +C137 134 gnd 2.080806f +R135 134 133 2.224404 +C138 135 gnd 2.080806f +R136 134 135 2.224404 +C139 136 gnd 2.080806f +R137 135 136 2.224404 +C140 137 gnd 2.080806f +R138 137 136 2.224404 +C141 138 gnd 2.080806f +R139 138 137 2.224404 +C142 139 gnd 2.080806f +R140 138 139 2.224404 +C143 140 gnd 2.080806f +R141 139 140 2.224404 +C144 141 gnd 2.080806f +R142 140 141 2.224404 +C145 142 gnd 2.080806f +R143 142 141 2.224404 +C146 143 gnd 2.080806f +R144 142 143 2.224404 +C147 144 gnd 2.080806f +R145 143 144 2.224404 +C148 145 gnd 2.080806f +R146 144 145 2.224404 +C149 146 gnd 2.080806f +R147 145 146 2.224404 +C150 147 gnd 2.080806f +R148 146 147 2.224404 +C151 148 gnd 2.080806f +R149 147 148 2.224404 +C152 149 gnd 2.080806f +R150 148 149 2.224404 +C153 150 gnd 2.080806f +R151 150 149 2.224404 +C154 151 gnd 2.080806f +R152 150 151 2.224404 +C155 152 gnd 2.080806f +R153 151 152 2.224404 +C156 153 gnd 2.080806f +R154 153 152 2.224404 +C157 154 gnd 2.080806f +R155 153 154 2.224404 +C158 155 gnd 2.080806f +R156 155 154 2.224404 +C159 156 gnd 2.080806f +R157 156 155 2.224404 +C160 157 gnd 2.080806f +R158 156 157 2.224404 +C161 158 gnd 2.080806f +R159 158 157 2.224404 +C162 159 gnd 2.080806f +R160 159 158 2.224404 +C163 160 gnd 2.080806f +R161 160 159 2.224404 +C164 161 gnd 2.080806f +R162 160 161 2.224404 +C165 162 gnd 2.080806f +R163 161 162 2.224404 +C166 163 gnd 2.080806f +R164 162 163 2.224404 +R165 g180_2 163 2.224404 +.ends + +.subckt netg185 g185_0 g185_2 g185_1 g185_3 gnd +C1 g185_0 gnd 2.080806f +C2 g185_2 gnd 2.080806f +C3 g185_1 gnd 2.080806f +C4 g185_3 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g185_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 17 16 2.224404 +C22 18 gnd 2.080806f +R18 18 17 2.224404 +C23 19 gnd 2.080806f +R19 19 18 2.224404 +C24 20 gnd 2.080806f +R20 20 19 2.224404 +C25 21 gnd 2.080806f +R21 21 20 2.224404 +C26 22 gnd 2.080806f +R22 22 21 2.224404 +C27 23 gnd 2.080806f +R23 23 22 2.224404 +C28 24 gnd 2.080806f +R24 24 23 2.224404 +C29 25 gnd 2.080806f +R25 25 24 2.224404 +C30 26 gnd 2.080806f +R26 26 25 2.224404 +C31 27 gnd 2.080806f +R27 27 26 2.224404 +C32 28 gnd 2.080806f +R28 28 27 2.224404 +C33 29 gnd 2.080806f +R29 29 28 2.224404 +C34 30 gnd 2.080806f +R30 30 29 2.224404 +C35 31 gnd 2.080806f +R31 31 30 2.224404 +C36 32 gnd 2.080806f +R32 32 31 2.224404 +C37 33 gnd 2.080806f +R33 33 32 2.224404 +C38 34 gnd 2.080806f +R34 34 33 2.224404 +C39 35 gnd 2.080806f +R35 35 34 2.224404 +C40 36 gnd 2.080806f +R36 36 35 2.224404 +C41 37 gnd 2.080806f +R37 37 36 2.224404 +C42 38 gnd 2.080806f +R38 38 37 2.224404 +C43 39 gnd 2.080806f +R39 39 38 2.224404 +C44 40 gnd 2.080806f +R40 40 39 2.224404 +C45 41 gnd 2.080806f +R41 41 40 2.224404 +C46 42 gnd 2.080806f +R42 42 41 2.224404 +C47 43 gnd 2.080806f +R43 43 42 2.224404 +C48 44 gnd 2.080806f +R44 44 43 2.224404 +C49 45 gnd 2.080806f +R45 45 44 2.224404 +C50 46 gnd 2.080806f +R46 46 45 2.224404 +C51 47 gnd 2.080806f +R47 47 46 2.224404 +C52 48 gnd 2.080806f +R48 48 47 2.224404 +C53 49 gnd 2.080806f +R49 49 48 2.224404 +C54 50 gnd 2.080806f +R50 50 49 2.224404 +C55 51 gnd 2.080806f +R51 51 50 2.224404 +C56 52 gnd 2.080806f +R52 52 51 2.224404 +C57 53 gnd 2.080806f +R53 53 52 2.224404 +C58 54 gnd 2.080806f +R54 54 53 2.224404 +C59 55 gnd 2.080806f +R55 55 54 2.224404 +C60 56 gnd 2.080806f +R56 56 55 2.224404 +C61 57 gnd 2.080806f +R57 57 56 2.224404 +C62 58 gnd 2.080806f +R58 58 57 2.224404 +C63 59 gnd 2.080806f +R59 59 58 2.224404 +C64 60 gnd 2.080806f +R60 60 59 2.224404 +C65 61 gnd 2.080806f +R61 61 60 2.224404 +C66 62 gnd 2.080806f +R62 62 61 2.224404 +C67 63 gnd 2.080806f +R63 63 62 2.224404 +C68 64 gnd 2.080806f +R64 64 63 2.224404 +C69 65 gnd 2.080806f +R65 65 64 2.224404 +C70 66 gnd 2.080806f +R66 66 65 2.224404 +C71 67 gnd 2.080806f +R67 67 66 2.224404 +C72 68 gnd 2.080806f +R68 68 67 2.224404 +C73 69 gnd 2.080806f +R69 69 68 2.224404 +C74 70 gnd 2.080806f +R70 70 69 2.224404 +C75 71 gnd 2.080806f +R71 71 70 2.224404 +C76 72 gnd 2.080806f +R72 72 71 2.224404 +C77 73 gnd 2.080806f +R73 73 72 2.224404 +C78 74 gnd 2.080806f +R74 74 73 2.224404 +C79 75 gnd 2.080806f +R75 75 74 2.224404 +C80 76 gnd 2.080806f +R76 76 75 2.224404 +R77 g185_1 76 2.224404 +C81 77 gnd 2.080806f +R78 77 g185_1 2.224404 +C82 78 gnd 2.080806f +R79 78 77 2.224404 +C83 79 gnd 2.080806f +R80 79 78 2.224404 +C84 80 gnd 2.080806f +R81 80 79 2.224404 +C85 81 gnd 2.080806f +R82 81 80 2.224404 +C86 82 gnd 2.080806f +R83 82 81 2.224404 +C87 83 gnd 2.080806f +R84 83 82 2.224404 +C88 84 gnd 2.080806f +R85 84 83 2.224404 +C89 85 gnd 2.080806f +R86 85 84 2.224404 +C90 86 gnd 2.080806f +R87 86 85 2.224404 +C91 87 gnd 2.080806f +R88 87 86 2.224404 +C92 88 gnd 2.080806f +R89 88 87 2.224404 +C93 89 gnd 2.080806f +R90 89 88 2.224404 +C94 90 gnd 2.080806f +R91 90 89 2.224404 +C95 91 gnd 2.080806f +R92 91 90 2.224404 +C96 92 gnd 2.080806f +R93 92 91 2.224404 +C97 93 gnd 2.080806f +R94 93 92 2.224404 +C98 94 gnd 2.080806f +R95 94 93 2.224404 +C99 95 gnd 2.080806f +R96 95 94 2.224404 +C100 96 gnd 2.080806f +R97 96 95 2.224404 +C101 97 gnd 2.080806f +R98 97 96 2.224404 +C102 98 gnd 2.080806f +R99 98 97 2.224404 +C103 99 gnd 2.080806f +R100 99 98 2.224404 +C104 100 gnd 2.080806f +R101 100 99 2.224404 +C105 101 gnd 2.080806f +R102 101 100 2.224404 +C106 102 gnd 2.080806f +R103 102 101 2.224404 +C107 103 gnd 2.080806f +R104 103 102 2.224404 +C108 104 gnd 2.080806f +R105 104 103 2.224404 +C109 105 gnd 2.080806f +R106 105 104 2.224404 +C110 106 gnd 2.080806f +R107 106 105 2.224404 +C111 107 gnd 2.080806f +R108 107 106 2.224404 +C112 108 gnd 2.080806f +R109 108 107 2.224404 +C113 109 gnd 2.080806f +R110 109 108 2.224404 +R111 g185_3 109 2.224404 +C114 110 gnd 2.080806f +R112 110 g185_3 2.224404 +C115 111 gnd 2.080806f +R113 111 110 2.224404 +C116 112 gnd 2.080806f +R114 112 111 2.224404 +C117 113 gnd 2.080806f +R115 112 113 2.224404 +C118 114 gnd 2.080806f +R116 113 114 2.224404 +C119 115 gnd 2.080806f +R117 114 115 2.224404 +C120 116 gnd 2.080806f +R118 115 116 2.224404 +C121 117 gnd 2.080806f +R119 116 117 2.224404 +C122 118 gnd 2.080806f +R120 117 118 2.224404 +C123 119 gnd 2.080806f +R121 118 119 2.224404 +C124 120 gnd 2.080806f +R122 119 120 2.224404 +C125 121 gnd 2.080806f +R123 120 121 2.224404 +C126 122 gnd 2.080806f +R124 121 122 2.224404 +C127 123 gnd 2.080806f +R125 122 123 2.224404 +C128 124 gnd 2.080806f +R126 123 124 2.224404 +C129 125 gnd 2.080806f +R127 124 125 2.224404 +C130 126 gnd 2.080806f +R128 125 126 2.224404 +C131 127 gnd 2.080806f +R129 126 127 2.224404 +C132 128 gnd 2.080806f +R130 127 128 2.224404 +C133 129 gnd 2.080806f +R131 128 129 2.224404 +C134 130 gnd 2.080806f +R132 129 130 2.224404 +C135 131 gnd 2.080806f +R133 130 131 2.224404 +C136 132 gnd 2.080806f +R134 131 132 2.224404 +C137 133 gnd 2.080806f +R135 132 133 2.224404 +C138 134 gnd 2.080806f +R136 133 134 2.224404 +C139 135 gnd 2.080806f +R137 134 135 2.224404 +C140 136 gnd 2.080806f +R138 135 136 2.224404 +C141 137 gnd 2.080806f +R139 136 137 2.224404 +C142 138 gnd 2.080806f +R140 137 138 2.224404 +C143 139 gnd 2.080806f +R141 138 139 2.224404 +C144 140 gnd 2.080806f +R142 139 140 2.224404 +C145 141 gnd 2.080806f +R143 140 141 2.224404 +C146 142 gnd 2.080806f +R144 141 142 2.224404 +C147 143 gnd 2.080806f +R145 142 143 2.224404 +C148 144 gnd 2.080806f +R146 143 144 2.224404 +C149 145 gnd 2.080806f +R147 144 145 2.224404 +C150 146 gnd 2.080806f +R148 145 146 2.224404 +C151 147 gnd 2.080806f +R149 146 147 2.224404 +C152 148 gnd 2.080806f +R150 147 148 2.224404 +C153 149 gnd 2.080806f +R151 148 149 2.224404 +C154 150 gnd 2.080806f +R152 149 150 2.224404 +C155 151 gnd 2.080806f +R153 150 151 2.224404 +C156 152 gnd 2.080806f +R154 151 152 2.224404 +C157 153 gnd 2.080806f +R155 153 152 2.224404 +C158 154 gnd 2.080806f +R156 154 153 2.224404 +C159 155 gnd 2.080806f +R157 155 154 2.224404 +C160 156 gnd 2.080806f +R158 156 155 2.224404 +C161 157 gnd 2.080806f +R159 157 156 2.224404 +C162 158 gnd 2.080806f +R160 158 157 2.224404 +C163 159 gnd 2.080806f +R161 158 159 2.224404 +C164 160 gnd 2.080806f +R162 159 160 2.224404 +C165 161 gnd 2.080806f +R163 160 161 2.224404 +C166 162 gnd 2.080806f +R164 161 162 2.224404 +C167 163 gnd 2.080806f +R165 162 163 2.224404 +C168 164 gnd 2.080806f +R166 163 164 2.224404 +C169 165 gnd 2.080806f +R167 164 165 2.224404 +C170 166 gnd 2.080806f +R168 165 166 2.224404 +C171 167 gnd 2.080806f +R169 166 167 2.224404 +C172 168 gnd 2.080806f +R170 167 168 2.224404 +C173 169 gnd 2.080806f +R171 168 169 2.224404 +C174 170 gnd 2.080806f +R172 169 170 2.224404 +C175 171 gnd 2.080806f +R173 170 171 2.224404 +C176 172 gnd 2.080806f +R174 171 172 2.224404 +C177 173 gnd 2.080806f +R175 172 173 2.224404 +C178 174 gnd 2.080806f +R176 173 174 2.224404 +C179 175 gnd 2.080806f +R177 174 175 2.224404 +C180 176 gnd 2.080806f +R178 175 176 2.224404 +C181 177 gnd 2.080806f +R179 176 177 2.224404 +R180 177 g185_2 2.224404 +.ends + +.subckt netg184 g184_0 g184_3 g184_2 g184_1 gnd +C1 g184_0 gnd 2.080806f +C2 g184_3 gnd 2.080806f +C3 g184_2 gnd 2.080806f +C4 g184_1 gnd 2.080806f +C5 1 gnd 2.080806f +R1 1 g184_0 2.224404 +C6 2 gnd 2.080806f +R2 2 1 2.224404 +C7 3 gnd 2.080806f +R3 3 2 2.224404 +C8 4 gnd 2.080806f +R4 4 3 2.224404 +C9 5 gnd 2.080806f +R5 5 4 2.224404 +C10 6 gnd 2.080806f +R6 6 5 2.224404 +C11 7 gnd 2.080806f +R7 7 6 2.224404 +C12 8 gnd 2.080806f +R8 8 7 2.224404 +C13 9 gnd 2.080806f +R9 9 8 2.224404 +C14 10 gnd 2.080806f +R10 10 9 2.224404 +C15 11 gnd 2.080806f +R11 11 10 2.224404 +C16 12 gnd 2.080806f +R12 12 11 2.224404 +C17 13 gnd 2.080806f +R13 13 12 2.224404 +C18 14 gnd 2.080806f +R14 14 13 2.224404 +C19 15 gnd 2.080806f +R15 15 14 2.224404 +C20 16 gnd 2.080806f +R16 16 15 2.224404 +C21 17 gnd 2.080806f +R17 16 17 2.224404 +C22 18 gnd 2.080806f +R18 17 18 2.224404 +C23 19 gnd 2.080806f +R19 18 19 2.224404 +C24 20 gnd 2.080806f +R20 20 19 2.224404 +C25 21 gnd 2.080806f +R21 20 21 2.224404 +C26 22 gnd 2.080806f +R22 21 22 2.224404 +C27 23 gnd 2.080806f +R23 22 23 2.224404 +C28 24 gnd 2.080806f +R24 24 23 2.224404 +C29 25 gnd 2.080806f +R25 24 25 2.224404 +C30 26 gnd 2.080806f +R26 26 25 2.224404 +C31 27 gnd 2.080806f +R27 26 27 2.224404 +C32 28 gnd 2.080806f +R28 28 27 2.224404 +C33 29 gnd 2.080806f +R29 29 28 2.224404 +C34 30 gnd 2.080806f +R30 30 29 2.224404 +C35 31 gnd 2.080806f +R31 30 31 2.224404 +C36 32 gnd 2.080806f +R32 32 31 2.224404 +C37 33 gnd 2.080806f +R33 33 32 2.224404 +C38 34 gnd 2.080806f +R34 34 33 2.224404 +C39 35 gnd 2.080806f +R35 35 34 2.224404 +C40 36 gnd 2.080806f +R36 36 35 2.224404 +C41 37 gnd 2.080806f +R37 37 36 2.224404 +C42 38 gnd 2.080806f +R38 38 37 2.224404 +C43 39 gnd 2.080806f +R39 39 38 2.224404 +C44 40 gnd 2.080806f +R40 40 39 2.224404 +C45 41 gnd 2.080806f +R41 41 40 2.224404 +C46 42 gnd 2.080806f +R42 42 41 2.224404 +C47 43 gnd 2.080806f +R43 43 42 2.224404 +C48 44 gnd 2.080806f +R44 44 43 2.224404 +C49 45 gnd 2.080806f +R45 45 44 2.224404 +C50 46 gnd 2.080806f +R46 46 45 2.224404 +C51 47 gnd 2.080806f +R47 47 46 2.224404 +C52 48 gnd 2.080806f +R48 48 47 2.224404 +C53 49 gnd 2.080806f +R49 49 48 2.224404 +C54 50 gnd 2.080806f +R50 50 49 2.224404 +C55 51 gnd 2.080806f +R51 51 50 2.224404 +C56 52 gnd 2.080806f +R52 52 51 2.224404 +C57 53 gnd 2.080806f +R53 53 52 2.224404 +C58 54 gnd 2.080806f +R54 54 53 2.224404 +C59 55 gnd 2.080806f +R55 55 54 2.224404 +C60 56 gnd 2.080806f +R56 56 55 2.224404 +C61 57 gnd 2.080806f +R57 57 56 2.224404 +C62 58 gnd 2.080806f +R58 57 58 2.224404 +C63 59 gnd 2.080806f +R59 59 58 2.224404 +C64 60 gnd 2.080806f +R60 60 59 2.224404 +C65 61 gnd 2.080806f +R61 61 60 2.224404 +C66 62 gnd 2.080806f +R62 62 61 2.224404 +C67 63 gnd 2.080806f +R63 63 62 2.224404 +C68 64 gnd 2.080806f +R64 64 63 2.224404 +C69 65 gnd 2.080806f +R65 65 64 2.224404 +C70 66 gnd 2.080806f +R66 66 65 2.224404 +C71 67 gnd 2.080806f +R67 67 66 2.224404 +C72 68 gnd 2.080806f +R68 68 67 2.224404 +C73 69 gnd 2.080806f +R69 69 68 2.224404 +C74 70 gnd 2.080806f +R70 70 69 2.224404 +C75 71 gnd 2.080806f +R71 71 70 2.224404 +R72 g184_2 71 2.224404 +C76 72 gnd 2.080806f +R73 g184_2 72 2.224404 +C77 73 gnd 2.080806f +R74 72 73 2.224404 +C78 74 gnd 2.080806f +R75 73 74 2.224404 +C79 75 gnd 2.080806f +R76 74 75 2.224404 +C80 76 gnd 2.080806f +R77 75 76 2.224404 +C81 77 gnd 2.080806f +R78 76 77 2.224404 +C82 78 gnd 2.080806f +R79 77 78 2.224404 +C83 79 gnd 2.080806f +R80 78 79 2.224404 +C84 80 gnd 2.080806f +R81 79 80 2.224404 +C85 81 gnd 2.080806f +R82 80 81 2.224404 +C86 82 gnd 2.080806f +R83 81 82 2.224404 +C87 83 gnd 2.080806f +R84 82 83 2.224404 +C88 84 gnd 2.080806f +R85 83 84 2.224404 +C89 85 gnd 2.080806f +R86 84 85 2.224404 +C90 86 gnd 2.080806f +R87 85 86 2.224404 +C91 87 gnd 2.080806f +R88 86 87 2.224404 +C92 88 gnd 2.080806f +R89 87 88 2.224404 +C93 89 gnd 2.080806f +R90 88 89 2.224404 +C94 90 gnd 2.080806f +R91 89 90 2.224404 +C95 91 gnd 2.080806f +R92 90 91 2.224404 +C96 92 gnd 2.080806f +R93 91 92 2.224404 +C97 93 gnd 2.080806f +R94 92 93 2.224404 +C98 94 gnd 2.080806f +R95 93 94 2.224404 +C99 95 gnd 2.080806f +R96 94 95 2.224404 +C100 96 gnd 2.080806f +R97 95 96 2.224404 +C101 97 gnd 2.080806f +R98 96 97 2.224404 +C102 98 gnd 2.080806f +R99 97 98 2.224404 +C103 99 gnd 2.080806f +R100 98 99 2.224404 +C104 100 gnd 2.080806f +R101 99 100 2.224404 +C105 101 gnd 2.080806f +R102 100 101 2.224404 +C106 102 gnd 2.080806f +R103 101 102 2.224404 +C107 103 gnd 2.080806f +R104 102 103 2.224404 +R105 103 g184_1 2.224404 +C108 104 gnd 2.080806f +R106 g184_1 104 2.224404 +C109 105 gnd 2.080806f +R107 104 105 2.224404 +C110 106 gnd 2.080806f +R108 105 106 2.224404 +C111 107 gnd 2.080806f +R109 106 107 2.224404 +C112 108 gnd 2.080806f +R110 107 108 2.224404 +C113 109 gnd 2.080806f +R111 108 109 2.224404 +C114 110 gnd 2.080806f +R112 109 110 2.224404 +C115 111 gnd 2.080806f +R113 110 111 2.224404 +C116 112 gnd 2.080806f +R114 111 112 2.224404 +C117 113 gnd 2.080806f +R115 112 113 2.224404 +C118 114 gnd 2.080806f +R116 113 114 2.224404 +C119 115 gnd 2.080806f +R117 114 115 2.224404 +C120 116 gnd 2.080806f +R118 115 116 2.224404 +C121 117 gnd 2.080806f +R119 116 117 2.224404 +C122 118 gnd 2.080806f +R120 117 118 2.224404 +C123 119 gnd 2.080806f +R121 118 119 2.224404 +C124 120 gnd 2.080806f +R122 119 120 2.224404 +C125 121 gnd 2.080806f +R123 120 121 2.224404 +C126 122 gnd 2.080806f +R124 121 122 2.224404 +C127 123 gnd 2.080806f +R125 122 123 2.224404 +C128 124 gnd 2.080806f +R126 123 124 2.224404 +C129 125 gnd 2.080806f +R127 124 125 2.224404 +C130 126 gnd 2.080806f +R128 125 126 2.224404 +C131 127 gnd 2.080806f +R129 126 127 2.224404 +C132 128 gnd 2.080806f +R130 127 128 2.224404 +C133 129 gnd 2.080806f +R131 128 129 2.224404 +C134 130 gnd 2.080806f +R132 129 130 2.224404 +C135 131 gnd 2.080806f +R133 130 131 2.224404 +C136 132 gnd 2.080806f +R134 131 132 2.224404 +C137 133 gnd 2.080806f +R135 132 133 2.224404 +C138 134 gnd 2.080806f +R136 133 134 2.224404 +C139 135 gnd 2.080806f +R137 134 135 2.224404 +C140 136 gnd 2.080806f +R138 135 136 2.224404 +C141 137 gnd 2.080806f +R139 136 137 2.224404 +C142 138 gnd 2.080806f +R140 137 138 2.224404 +C143 139 gnd 2.080806f +R141 138 139 2.224404 +C144 140 gnd 2.080806f +R142 139 140 2.224404 +C145 141 gnd 2.080806f +R143 140 141 2.224404 +C146 142 gnd 2.080806f +R144 141 142 2.224404 +C147 143 gnd 2.080806f +R145 142 143 2.224404 +C148 144 gnd 2.080806f +R146 143 144 2.224404 +C149 145 gnd 2.080806f +R147 144 145 2.224404 +C150 146 gnd 2.080806f +R148 145 146 2.224404 +C151 147 gnd 2.080806f +R149 146 147 2.224404 +C152 148 gnd 2.080806f +R150 147 148 2.224404 +C153 149 gnd 2.080806f +R151 148 149 2.224404 +C154 150 gnd 2.080806f +R152 149 150 2.224404 +C155 151 gnd 2.080806f +R153 150 151 2.224404 +C156 152 gnd 2.080806f +R154 151 152 2.224404 +C157 153 gnd 2.080806f +R155 152 153 2.224404 +C158 154 gnd 2.080806f +R156 153 154 2.224404 +C159 155 gnd 2.080806f +R157 154 155 2.224404 +C160 156 gnd 2.080806f +R158 155 156 2.224404 +C161 157 gnd 2.080806f +R159 156 157 2.224404 +C162 158 gnd 2.080806f +R160 157 158 2.224404 +C163 159 gnd 2.080806f +R161 158 159 2.224404 +C164 160 gnd 2.080806f +R162 159 160 2.224404 +C165 161 gnd 2.080806f +R163 160 161 2.224404 +C166 162 gnd 2.080806f +R164 161 162 2.224404 +C167 163 gnd 2.080806f +R165 162 163 2.224404 +C168 164 gnd 2.080806f +R166 163 164 2.224404 +C169 165 gnd 2.080806f +R167 164 165 2.224404 +C170 166 gnd 2.080806f +R168 165 166 2.224404 +C171 167 gnd 2.080806f +R169 166 167 2.224404 +C172 168 gnd 2.080806f +R170 167 168 2.224404 +C173 169 gnd 2.080806f +R171 168 169 2.224404 +C174 170 gnd 2.080806f +R172 169 170 2.224404 +C175 171 gnd 2.080806f +R173 170 171 2.224404 +C176 172 gnd 2.080806f +R174 171 172 2.224404 +C177 173 gnd 2.080806f +R175 172 173 2.224404 +C178 174 gnd 2.080806f +R176 173 174 2.224404 +C179 175 gnd 2.080806f +R177 174 175 2.224404 +C180 176 gnd 2.080806f +R178 175 176 2.224404 +C181 177 gnd 2.080806f +R179 176 177 2.224404 +C182 178 gnd 2.080806f +R180 177 178 2.224404 +C183 179 gnd 2.080806f +R181 178 179 2.224404 +C184 180 gnd 2.080806f +R182 179 180 2.224404 +C185 181 gnd 2.080806f +R183 180 181 2.224404 +C186 182 gnd 2.080806f +R184 181 182 2.224404 +R185 182 g184_3 2.224404 +.ends + +.subckt netg165 g165_1 g165_0 gnd +C1 g165_1 gnd 2.080806f +C2 g165_0 gnd 2.080806f +C3 1 gnd 2.080806f +R1 1 g165_0 2.224404 +C4 2 gnd 2.080806f +R2 2 1 2.224404 +C5 3 gnd 2.080806f +R3 3 2 2.224404 +C6 4 gnd 2.080806f +R4 4 3 2.224404 +C7 5 gnd 2.080806f +R5 5 4 2.224404 +C8 6 gnd 2.080806f +R6 6 5 2.224404 +C9 7 gnd 2.080806f +R7 7 6 2.224404 +C10 8 gnd 2.080806f +R8 8 7 2.224404 +C11 9 gnd 2.080806f +R9 9 8 2.224404 +C12 10 gnd 2.080806f +R10 10 9 2.224404 +C13 11 gnd 2.080806f +R11 11 10 2.224404 +C14 12 gnd 2.080806f +R12 12 11 2.224404 +C15 13 gnd 2.080806f +R13 13 12 2.224404 +C16 14 gnd 2.080806f +R14 14 13 2.224404 +C17 15 gnd 2.080806f +R15 15 14 2.224404 +C18 16 gnd 2.080806f +R16 16 15 2.224404 +C19 17 gnd 2.080806f +R17 17 16 2.224404 +C20 18 gnd 2.080806f +R18 18 17 2.224404 +C21 19 gnd 2.080806f +R19 19 18 2.224404 +C22 20 gnd 2.080806f +R20 20 19 2.224404 +C23 21 gnd 2.080806f +R21 21 20 2.224404 +C24 22 gnd 2.080806f +R22 22 21 2.224404 +C25 23 gnd 2.080806f +R23 23 22 2.224404 +C26 24 gnd 2.080806f +R24 24 23 2.224404 +C27 25 gnd 2.080806f +R25 25 24 2.224404 +C28 26 gnd 2.080806f +R26 26 25 2.224404 +C29 27 gnd 2.080806f +R27 27 26 2.224404 +C30 28 gnd 2.080806f +R28 28 27 2.224404 +C31 29 gnd 2.080806f +R29 29 28 2.224404 +C32 30 gnd 2.080806f +R30 30 29 2.224404 +C33 31 gnd 2.080806f +R31 31 30 2.224404 +C34 32 gnd 2.080806f +R32 32 31 2.224404 +C35 33 gnd 2.080806f +R33 33 32 2.224404 +C36 34 gnd 2.080806f +R34 34 33 2.224404 +C37 35 gnd 2.080806f +R35 35 34 2.224404 +C38 36 gnd 2.080806f +R36 36 35 2.224404 +C39 37 gnd 2.080806f +R37 37 36 2.224404 +C40 38 gnd 2.080806f +R38 38 37 2.224404 +C41 39 gnd 2.080806f +R39 39 38 2.224404 +C42 40 gnd 2.080806f +R40 40 39 2.224404 +C43 41 gnd 2.080806f +R41 41 40 2.224404 +C44 42 gnd 2.080806f +R42 42 41 2.224404 +C45 43 gnd 2.080806f +R43 43 42 2.224404 +C46 44 gnd 2.080806f +R44 44 43 2.224404 +C47 45 gnd 2.080806f +R45 45 44 2.224404 +C48 46 gnd 2.080806f +R46 46 45 2.224404 +C49 47 gnd 2.080806f +R47 47 46 2.224404 +C50 48 gnd 2.080806f +R48 48 47 2.224404 +C51 49 gnd 2.080806f +R49 49 48 2.224404 +C52 50 gnd 2.080806f +R50 50 49 2.224404 +C53 51 gnd 2.080806f +R51 51 50 2.224404 +C54 52 gnd 2.080806f +R52 52 51 2.224404 +C55 53 gnd 2.080806f +R53 53 52 2.224404 +C56 54 gnd 2.080806f +R54 54 53 2.224404 +C57 55 gnd 2.080806f +R55 55 54 2.224404 +C58 56 gnd 2.080806f +R56 56 55 2.224404 +C59 57 gnd 2.080806f +R57 57 56 2.224404 +C60 58 gnd 2.080806f +R58 58 57 2.224404 +C61 59 gnd 2.080806f +R59 59 58 2.224404 +C62 60 gnd 2.080806f +R60 60 59 2.224404 +C63 61 gnd 2.080806f +R61 61 60 2.224404 +C64 62 gnd 2.080806f +R62 62 61 2.224404 +C65 63 gnd 2.080806f +R63 63 62 2.224404 +C66 64 gnd 2.080806f +R64 64 63 2.224404 +C67 65 gnd 2.080806f +R65 65 64 2.224404 +C68 66 gnd 2.080806f +R66 66 65 2.224404 +C69 67 gnd 2.080806f +R67 67 66 2.224404 +C70 68 gnd 2.080806f +R68 68 67 2.224404 +C71 69 gnd 2.080806f +R69 69 68 2.224404 +C72 70 gnd 2.080806f +R70 70 69 2.224404 +C73 71 gnd 2.080806f +R71 71 70 2.224404 +C74 72 gnd 2.080806f +R72 72 71 2.224404 +C75 73 gnd 2.080806f +R73 73 72 2.224404 +C76 74 gnd 2.080806f +R74 74 73 2.224404 +C77 75 gnd 2.080806f +R75 75 74 2.224404 +C78 76 gnd 2.080806f +R76 76 75 2.224404 +C79 77 gnd 2.080806f +R77 77 76 2.224404 +C80 78 gnd 2.080806f +R78 78 77 2.224404 +C81 79 gnd 2.080806f +R79 79 78 2.224404 +C82 80 gnd 2.080806f +R80 80 79 2.224404 +C83 81 gnd 2.080806f +R81 81 80 2.224404 +C84 82 gnd 2.080806f +R82 82 81 2.224404 +C85 83 gnd 2.080806f +R83 83 82 2.224404 +C86 84 gnd 2.080806f +R84 84 83 2.224404 +C87 85 gnd 2.080806f +R85 85 84 2.224404 +C88 86 gnd 2.080806f +R86 86 85 2.224404 +C89 87 gnd 2.080806f +R87 87 86 2.224404 +C90 88 gnd 2.080806f +R88 88 87 2.224404 +C91 89 gnd 2.080806f +R89 89 88 2.224404 +C92 90 gnd 2.080806f +R90 90 89 2.224404 +C93 91 gnd 2.080806f +R91 91 90 2.224404 +C94 92 gnd 2.080806f +R92 92 91 2.224404 +C95 93 gnd 2.080806f +R93 93 92 2.224404 +C96 94 gnd 2.080806f +R94 94 93 2.224404 +C97 95 gnd 2.080806f +R95 95 94 2.224404 +C98 96 gnd 2.080806f +R96 96 95 2.224404 +C99 97 gnd 2.080806f +R97 97 96 2.224404 +C100 98 gnd 2.080806f +R98 98 97 2.224404 +C101 99 gnd 2.080806f +R99 99 98 2.224404 +C102 100 gnd 2.080806f +R100 100 99 2.224404 +C103 101 gnd 2.080806f +R101 101 100 2.224404 +C104 102 gnd 2.080806f +R102 102 101 2.224404 +C105 103 gnd 2.080806f +R103 103 102 2.224404 +C106 104 gnd 2.080806f +R104 104 103 2.224404 +C107 105 gnd 2.080806f +R105 105 104 2.224404 +C108 106 gnd 2.080806f +R106 106 105 2.224404 +C109 107 gnd 2.080806f +R107 107 106 2.224404 +C110 108 gnd 2.080806f +R108 108 107 2.224404 +C111 109 gnd 2.080806f +R109 109 108 2.224404 +C112 110 gnd 2.080806f +R110 110 109 2.224404 +C113 111 gnd 2.080806f +R111 111 110 2.224404 +C114 112 gnd 2.080806f +R112 112 111 2.224404 +C115 113 gnd 2.080806f +R113 113 112 2.224404 +C116 114 gnd 2.080806f +R114 114 113 2.224404 +C117 115 gnd 2.080806f +R115 115 114 2.224404 +C118 116 gnd 2.080806f +R116 116 115 2.224404 +C119 117 gnd 2.080806f +R117 117 116 2.224404 +C120 118 gnd 2.080806f +R118 118 117 2.224404 +C121 119 gnd 2.080806f +R119 119 118 2.224404 +C122 120 gnd 2.080806f +R120 120 119 2.224404 +C123 121 gnd 2.080806f +R121 121 120 2.224404 +C124 122 gnd 2.080806f +R122 122 121 2.224404 +C125 123 gnd 2.080806f +R123 123 122 2.224404 +C126 124 gnd 2.080806f +R124 124 123 2.224404 +C127 125 gnd 2.080806f +R125 125 124 2.224404 +C128 126 gnd 2.080806f +R126 126 125 2.224404 +C129 127 gnd 2.080806f +R127 127 126 2.224404 +C130 128 gnd 2.080806f +R128 128 127 2.224404 +C131 129 gnd 2.080806f +R129 129 128 2.224404 +C132 130 gnd 2.080806f +R130 130 129 2.224404 +C133 131 gnd 2.080806f +R131 131 130 2.224404 +C134 132 gnd 2.080806f +R132 132 131 2.224404 +C135 133 gnd 2.080806f +R133 133 132 2.224404 +C136 134 gnd 2.080806f +R134 134 133 2.224404 +C137 135 gnd 2.080806f +R135 135 134 2.224404 +C138 136 gnd 2.080806f +R136 136 135 2.224404 +C139 137 gnd 2.080806f +R137 137 136 2.224404 +C140 138 gnd 2.080806f +R138 138 137 2.224404 +C141 139 gnd 2.080806f +R139 139 138 2.224404 +C142 140 gnd 2.080806f +R140 140 139 2.224404 +C143 141 gnd 2.080806f +R141 141 140 2.224404 +C144 142 gnd 2.080806f +R142 142 141 2.224404 +C145 143 gnd 2.080806f +R143 143 142 2.224404 +C146 144 gnd 2.080806f +R144 144 143 2.224404 +C147 145 gnd 2.080806f +R145 145 144 2.224404 +C148 146 gnd 2.080806f +R146 146 145 2.224404 +C149 147 gnd 2.080806f +R147 147 146 2.224404 +C150 148 gnd 2.080806f +R148 148 147 2.224404 +C151 149 gnd 2.080806f +R149 149 148 2.224404 +C152 150 gnd 2.080806f +R150 150 149 2.224404 +C153 151 gnd 2.080806f +R151 151 150 2.224404 +C154 152 gnd 2.080806f +R152 152 151 2.224404 +C155 153 gnd 2.080806f +R153 153 152 2.224404 +C156 154 gnd 2.080806f +R154 154 153 2.224404 +C157 155 gnd 2.080806f +R155 155 154 2.224404 +C158 156 gnd 2.080806f +R156 156 155 2.224404 +C159 157 gnd 2.080806f +R157 157 156 2.224404 +C160 158 gnd 2.080806f +R158 158 157 2.224404 +C161 159 gnd 2.080806f +R159 159 158 2.224404 +C162 160 gnd 2.080806f +R160 160 159 2.224404 +C163 161 gnd 2.080806f +R161 161 160 2.224404 +R162 g165_1 161 2.224404 +.ends + +* the call of the nets sub circuits: + +X1 x81_1 x81_0 gnd netx81 +X2 g4055_1 g4055_0 gnd netg4055 +X3 g6531_1 g6531_0 gnd netg6531 +X4 g1255_0 g1255_1 gnd netg1255 +X5 g5391_0 g5391_1 gnd netg5391 +X6 g4749_0 g4749_1 gnd netg4749 +X7 g7003_0 g7003_1 gnd netg7003 +X8 x242_1 x242_0 gnd netx242 +X9 g6733_0 g6733_1 gnd netg6733 +X10 g404_2 g404_0 gnd netg404 +X11 g2934_1 g2934_0 gnd netg2934 +X12 g6397_0 g6397_1 gnd netg6397 +X13 g7266_1 g7266_0 gnd netg7266 +X14 g5784_0 g5784_1 gnd netg5784 +X15 g6546_1 g6546_2 gnd netg6546 +X16 g6937_1 g6937_0 gnd netg6937 +X17 g2929_1 g2929_0 gnd netg2929 +X18 g4099_1 g4099_0 gnd netg4099 +X19 g3537_0 g3537_1 gnd netg3537 +X20 g4245_0 g4245_1 gnd netg4245 +X21 g5584_1 g5584_0 gnd netg5584 +X22 g4531_1 g4531_0 gnd netg4531 +X23 g3903_1 g3903_0 gnd netg3903 +X24 g7164_1 g7164_0 gnd netg7164 +X25 g1998_0 g1998_1 gnd netg1998 +X26 x461_0 x461_1 gnd netx461 +X27 g4257_0 g4257_1 gnd netg4257 +X28 g961_2 g961_1 gnd netg961 +X29 g2816_0 g2816_1 gnd netg2816 +X30 g6439_1 g6439_0 gnd netg6439 +X31 g6979_1 g6979_0 gnd netg6979 +X32 g6213_0 g6213_1 gnd netg6213 +X33 g7268_1 g7268_0 gnd netg7268 +X34 g1933_1 g1933_0 gnd netg1933 +X35 g3986_0 g3986_1 gnd netg3986 +X36 g2916_1 g2916_0 gnd netg2916 +X37 g6553_0 g6553_1 gnd netg6553 +X38 g2788_0 g2788_1 gnd netg2788 +X39 g5960_0 g5960_1 gnd netg5960 +X40 g3549_0 g3549_1 gnd netg3549 +X41 g6206_0 g6206_1 gnd netg6206 +X42 g1874_2 g1874_1 gnd netg1874 +X43 g6916_1 g6916_0 gnd netg6916 +X44 g5365_0 g5365_1 gnd netg5365 +X45 g1131_1 g1131_0 gnd netg1131 +X46 g7189_1 g7189_0 gnd netg7189 +X47 g4313_1 g4313_0 gnd netg4313 +X48 g2426_0 g2426_2 gnd netg2426 +X49 g7001_1 g7001_0 gnd netg7001 +X50 g2952_1 g2952_0 gnd netg2952 +X51 g5880_1 g5880_0 gnd netg5880 +X52 g3513_1 g3513_0 gnd netg3513 +X53 g2939_0 g2939_1 gnd netg2939 +X54 g3524_0 g3524_1 gnd netg3524 +X55 g6729_1 g6729_0 gnd netg6729 +X56 g7354_1 g7354_0 gnd netg7354 +X57 g2818_0 g2818_1 gnd netg2818 +X58 g6447_1 g6447_0 gnd netg6447 +X59 g6132_0 g6132_1 gnd netg6132 +X60 g3510_0 g3510_1 gnd netg3510 +X61 g3486_1 g3486_0 gnd netg3486 +X62 g6042_0 g6042_1 gnd netg6042 +X63 g1591_1 g1591_0 gnd netg1591 +X64 g4096_1 g4096_0 gnd netg4096 +X65 g4048_1 g4048_0 gnd netg4048 +X66 g2813_1 g2813_0 gnd netg2813 +X67 g1928_0 g1928_1 gnd netg1928 +X68 g5233_0 g5233_1 gnd netg5233 +X69 g5369_1 g5369_0 gnd netg5369 +X70 g4451_1 g4451_0 gnd netg4451 +X71 g3480_1 g3480_0 gnd netg3480 +X72 g7359_0 g7359_1 gnd netg7359 +X73 g4302_0 g4302_1 gnd netg4302 +X74 g6047_1 g6047_0 gnd netg6047 +X75 g7358_0 g7358_1 gnd netg7358 +X76 g4280_1 g4280_0 gnd netg4280 +X77 g5411_1 g5411_0 gnd netg5411 +X78 x22_0 x22_1 gnd netx22 +X79 g1128_0 g1128_1 gnd netg1128 +X80 g3691_2 g3691_0 gnd netg3691 +X81 g7213_1 g7213_0 gnd netg7213 +X82 g2764_0 g2764_1 gnd netg2764 +X83 g6382_1 g6382_0 gnd netg6382 +X84 g3894_1 g3894_0 gnd netg3894 +X85 g6815_1 g6815_0 gnd netg6815 +X86 g2773_0 g2773_1 gnd netg2773 +X87 g2228_1 g2228_0 gnd netg2228 +X88 g5246_1 g5246_0 gnd netg5246 +X89 g2821_0 g2821_1 gnd netg2821 +X90 x312_0 x312_1 gnd netx312 +X91 g3983_1 g3983_0 gnd netg3983 +X92 g4329_1 g4329_0 gnd netg4329 +X93 g7374_0 g7374_1 gnd netg7374 +X94 g2501_2 g2501_0 gnd netg2501 +X95 g4100_1 g4100_0 gnd netg4100 +X96 g6013_0 g6013_1 gnd netg6013 +X97 g2760_1 g2760_0 gnd netg2760 +X98 g7212_0 g7212_1 gnd netg7212 +X99 g3923_1 g3923_0 gnd netg3923 +X100 g3414_2 g3414_1 gnd netg3414 +X101 g5597_0 g5597_1 gnd netg5597 +X102 g4298_0 g4298_1 gnd netg4298 +X103 g7046_0 g7046_1 gnd netg7046 +X104 g6452_1 g6452_0 gnd netg6452 +X105 g6081_1 g6081_0 gnd netg6081 +X106 g5448_2 g5448_1 gnd netg5448 +X107 g3367_1 g3367_0 gnd netg3367 +X108 g5353_0 g5353_1 gnd netg5353 +X109 g7191_0 g7191_1 gnd netg7191 +X110 g4013_0 g4013_1 gnd netg4013 +X111 g6580_0 g6580_1 gnd netg6580 +X112 g2350_2 g2350_0 gnd netg2350 +X113 g3519_1 g3519_0 gnd netg3519 +X114 g387_0 g387_1 gnd netg387 +X115 g6199_2 g6199_0 gnd netg6199 +X116 g7293_1 g7293_0 gnd netg7293 +X117 g1432_0 g1432_1 gnd netg1432 +X118 g1378_1 g1378_0 gnd netg1378 +X119 x332_0 x332_1 gnd netx332 +X120 g6611_1 g6611_0 gnd netg6611 +X121 g3564_0 g3564_1 gnd netg3564 +X122 g2774_1 g2774_0 gnd netg2774 +X123 g1313_0 g1313_1 gnd netg1313 +X124 g6741_1 g6741_0 gnd netg6741 +X125 g4290_0 g4290_1 gnd netg4290 +X126 g6931_1 g6931_0 gnd netg6931 +X127 g5859_1 g5859_0 gnd netg5859 +X128 g5827_0 g5827_1 gnd netg5827 +X129 g4428_0 g4428_1 gnd netg4428 +X130 g4220_0 g4220_1 gnd netg4220 +X131 g1174_0 g1174_1 gnd netg1174 +X132 g5857_0 g5857_1 gnd netg5857 +X133 g4103_1 g4103_0 gnd netg4103 +X134 g6102_0 g6102_1 gnd netg6102 +X135 g3070_0 g3070_1 gnd netg3070 +X136 g6474_1 g6474_0 gnd netg6474 +X137 g2781_1 g2781_0 gnd netg2781 +X138 g7397_1 g7397_0 gnd netg7397 +X139 g1284_0 g1284_1 gnd netg1284 +X140 g410_2 g410_0 gnd netg410 +X141 g2778_0 g2778_1 gnd netg2778 +X142 g4283_0 g4283_1 gnd netg4283 +X143 g6345_0 g6345_1 gnd netg6345 +X144 g5766_0 g5766_1 gnd netg5766 +X145 g6254_0 g6254_1 gnd netg6254 +X146 g3069_1 g3069_0 gnd netg3069 +X147 g6640_1 g6640_0 gnd netg6640 +X148 g6014_1 g6014_0 gnd netg6014 +X149 g4216_1 g4216_0 gnd netg4216 +X150 g1945_2 g1945_1 gnd netg1945 +X151 g5527_0 g5527_1 gnd netg5527 +X152 g2371_1 g2371_2 gnd netg2371 +X153 x82_1 x82_0 gnd netx82 +X154 g2751_0 g2751_1 gnd netg2751 +X155 g4219_1 g4219_0 gnd netg4219 +X156 g5998_0 g5998_1 gnd netg5998 +X157 g5065_2 g5065_1 gnd netg5065 +X158 g6103_0 g6103_1 gnd netg6103 +X159 g7047_0 g7047_1 gnd netg7047 +X160 g5316_0 g5316_1 gnd netg5316 +X161 g7405_1 g7405_0 gnd netg7405 +X162 g1518_1 g1518_0 gnd netg1518 +X163 g5191_0 g5191_2 gnd netg5191 +X164 g5996_0 g5996_1 gnd netg5996 +X165 g1125_1 g1125_0 gnd netg1125 +X166 g5792_1 g5792_0 gnd netg5792 +X167 g2380_2 g2380_1 gnd netg2380 +X168 g6084_0 g6084_1 gnd netg6084 +X169 g6052_0 g6052_1 gnd netg6052 +X170 g5297_1 g5297_0 gnd netg5297 +X171 g4323_1 g4323_0 gnd netg4323 +X172 g4628_0 g4628_1 gnd netg4628 +X173 g3540_1 g3540_0 gnd netg3540 +X174 g4065_1 g4065_0 gnd netg4065 +X175 g4239_1 g4239_0 gnd netg4239 +X176 g5350_0 g5350_1 gnd netg5350 +X177 g1234_0 g1234_1 gnd netg1234 +X178 g4318_1 g4318_0 gnd netg4318 +X179 g6667_1 g6667_0 gnd netg6667 +X180 g5737_2 g5737_1 gnd netg5737 +X181 g7004_1 g7004_2 gnd netg7004 +X182 g5244_1 g5244_0 gnd netg5244 +X183 g6184_1 g6184_0 gnd netg6184 +X184 g6862_0 g6862_1 gnd netg6862 +X185 g1264_0 g1264_1 gnd netg1264 +X186 g2879_1 g2879_0 gnd netg2879 +X187 g3509_0 g3509_1 gnd netg3509 +X188 g3411_0 g3411_1 gnd netg3411 +X189 g2719_1 g2719_2 gnd netg2719 +X190 g6642_1 g6642_2 gnd netg6642 +X191 g5601_1 g5601_0 gnd netg5601 +X192 g6287_0 g6287_1 gnd netg6287 +X193 g5182_0 g5182_1 gnd netg5182 +X194 g4344_1 g4344_0 gnd netg4344 +X195 g7399_1 g7399_0 gnd netg7399 +X196 g1461_1 g1461_0 gnd netg1461 +X197 g1123_1 g1123_0 gnd netg1123 +X198 g5322_1 g5322_0 gnd netg5322 +X199 g4010_1 g4010_0 gnd netg4010 +X200 x21_0 x21_1 gnd netx21 +X201 g2847_1 g2847_0 gnd netg2847 +X202 g1222_0 g1222_1 gnd netg1222 +X203 g1916_1 g1916_0 gnd netg1916 +X204 g5425_1 g5425_0 gnd netg5425 +X205 g6385_0 g6385_1 gnd netg6385 +X206 g2240_1 g2240_0 gnd netg2240 +X207 g5603_1 g5603_0 gnd netg5603 +X208 g4043_0 g4043_1 gnd netg4043 +X209 g4404_1 g4404_0 gnd netg4404 +X210 g1491_0 g1491_1 gnd netg1491 +X211 g5965_0 g5965_1 gnd netg5965 +X212 g6137_0 g6137_1 gnd netg6137 +X213 g2945_1 g2945_0 gnd netg2945 +X214 x61_0 x61_1 gnd netx61 +X215 g7093_1 g7093_2 gnd netg7093 +X216 g6420_0 g6420_1 gnd netg6420 +X217 g874_0 g874_2 gnd netg874 +X218 g7344_1 g7344_0 gnd netg7344 +X219 g6243_1 g6243_0 gnd netg6243 +X220 g1069_0 g1069_1 gnd netg1069 +X221 g6846_1 g6846_0 gnd netg6846 +X222 g4353_1 g4353_0 gnd netg4353 +X223 g1250_1 g1250_0 gnd netg1250 +X224 g5270_0 g5270_1 gnd netg5270 +X225 g2918_0 g2918_1 gnd netg2918 +X226 g5980_0 g5980_1 gnd netg5980 +X227 g1307_1 g1307_0 gnd netg1307 +X228 g7273_1 g7273_0 gnd netg7273 +X229 g2743_2 g2743_1 gnd netg2743 +X230 g3207_1 g3207_2 gnd netg3207 +X231 x471_0 x471_1 gnd netx471 +X232 g7275_0 g7275_1 gnd netg7275 +X233 g5266_1 g5266_0 gnd netg5266 +X234 g4265_0 g4265_1 gnd netg4265 +X235 g4022_1 g4022_0 gnd netg4022 +X236 g1360_0 g1360_1 gnd netg1360 +X237 g6399_0 g6399_1 gnd netg6399 +X238 g6182_0 g6182_1 gnd netg6182 +X239 g6673_0 g6673_1 gnd netg6673 +X240 g3082_1 g3082_0 gnd netg3082 +X241 g2930_1 g2930_0 gnd netg2930 +X242 g1494_0 g1494_1 gnd netg1494 +X243 g5368_0 g5368_1 gnd netg5368 +X244 g1422_0 g1422_1 gnd netg1422 +X245 g2937_1 g2937_0 gnd netg2937 +X246 g2555_1 g2555_2 gnd netg2555 +X247 g3061_0 g3061_1 gnd netg3061 +X248 g5394_0 g5394_1 gnd netg5394 +X249 g2845_1 g2845_0 gnd netg2845 +X250 g1534_1 g1534_0 gnd netg1534 +X251 g3045_1 g3045_0 gnd netg3045 +X252 g6887_1 g6887_0 gnd netg6887 +X253 g6278_0 g6278_2 gnd netg6278 +X254 g6977_0 g6977_1 gnd netg6977 +X255 g3551_1 g3551_0 gnd netg3551 +X256 g6751_2 g6751_0 gnd netg6751 +X257 x72_1 x72_0 gnd netx72 +X258 g5421_1 g5421_0 gnd netg5421 +X259 x122_1 x122_0 gnd netx122 +X260 g5251_1 g5251_0 gnd netg5251 +X261 g2784_1 g2784_0 gnd netg2784 +X262 x131_1 x131_0 gnd netx131 +X263 g6814_1 g6814_0 gnd netg6814 +X264 g6205_1 g6205_0 gnd netg6205 +X265 g6693_1 g6693_0 gnd netg6693 +X266 g6465_0 g6465_1 gnd netg6465 +X267 g2995_1 g2995_0 gnd netg2995 +X268 g3261_2 g3261_0 gnd netg3261 +X269 g1236_0 g1236_1 gnd netg1236 +X270 g5333_0 g5333_1 gnd netg5333 +X271 g4098_1 g4098_0 gnd netg4098 +X272 g5144_1 g5144_2 gnd netg5144 +X273 g1375_0 g1375_1 gnd netg1375 +X274 g5366_0 g5366_1 gnd netg5366 +X275 g4131_0 g4131_1 gnd netg4131 +X276 g4240_1 g4240_0 gnd netg4240 +X277 g3563_0 g3563_1 gnd netg3563 +X278 g1158_0 g1158_1 gnd netg1158 +X279 g7002_0 g7002_1 gnd netg7002 +X280 g5870_1 g5870_0 gnd netg5870 +X281 g4106_0 g4106_1 gnd netg4106 +X282 g4352_1 g4352_0 gnd netg4352 +X283 x91_1 x91_0 gnd netx91 +X284 g5932_1 g5932_0 gnd netg5932 +X285 g7306_2 g7306_1 gnd netg7306 +X286 g2579_1 g2579_2 gnd netg2579 +X287 g2919_0 g2919_1 gnd netg2919 +X288 g3429_2 g3429_0 gnd netg3429 +X289 g4082_1 g4082_0 gnd netg4082 +X290 g3901_0 g3901_1 gnd netg3901 +X291 g5999_1 g5999_0 gnd netg5999 +X292 g4309_0 g4309_1 gnd netg4309 +X293 g5705_1 g5705_0 gnd netg5705 +X294 g6450_1 g6450_0 gnd netg6450 +X295 g7240_1 g7240_0 gnd netg7240 +X296 g6392_0 g6392_1 gnd netg6392 +X297 g1169_1 g1169_0 gnd netg1169 +X298 g6871_1 g6871_0 gnd netg6871 +X299 g4138_0 g4138_1 gnd netg4138 +X300 g6363_1 g6363_0 gnd netg6363 +X301 g5278_0 g5278_1 gnd netg5278 +X302 g1479_1 g1479_0 gnd netg1479 +X303 g6167_0 g6167_1 gnd netg6167 +X304 g6131_0 g6131_1 gnd netg6131 +X305 g2933_0 g2933_1 gnd netg2933 +X306 g6744_1 g6744_0 gnd netg6744 +X307 g7400_1 g7400_0 gnd netg7400 +X308 g1852_1 g1852_0 gnd netg1852 +X309 g2731_1 g2731_2 gnd netg2731 +X310 g3453_2 g3453_0 gnd netg3453 +X311 g1151_0 g1151_1 gnd netg1151 +X312 g1421_1 g1421_0 gnd netg1421 +X313 g3113_1 g3113_0 gnd netg3113 +X314 g3089_1 g3089_0 gnd netg3089 +X315 x192_0 x192_1 gnd netx192 +X316 g6000_1 g6000_0 gnd netg6000 +X317 g1573_0 g1573_1 gnd netg1573 +X318 g6373_1 g6373_0 gnd netg6373 +X319 g456_0 g456_1 gnd netg456 +X320 g3180_2 g3180_1 gnd netg3180 +X321 g5313_1 g5313_0 gnd netg5313 +X322 g6413_1 g6413_0 gnd netg6413 +X323 g4149_0 g4149_1 gnd netg4149 +X324 g6105_1 g6105_0 gnd netg6105 +X325 g6448_0 g6448_1 gnd netg6448 +X326 g4247_1 g4247_0 gnd netg4247 +X327 g7269_0 g7269_1 gnd netg7269 +X328 g4436_0 g4436_1 gnd netg4436 +X329 g7346_1 g7346_0 gnd netg7346 +X330 g5134_0 g5134_1 gnd netg5134 +X331 g2822_1 g2822_0 gnd netg2822 +X332 g4403_0 g4403_1 gnd netg4403 +X333 g3968_0 g3968_1 gnd netg3968 +X334 g1308_0 g1308_1 gnd netg1308 +X335 g1165_1 g1165_0 gnd netg1165 +X336 g6976_0 g6976_1 gnd netg6976 +X337 g3315_0 g3315_2 gnd netg3315 +X338 g2749_0 g2749_1 gnd netg2749 +X339 g6732_1 g6732_0 gnd netg6732 +X340 g5634_2 g5634_1 gnd netg5634 +X341 g1380_1 g1380_0 gnd netg1380 +X342 g6326_0 g6326_1 gnd netg6326 +X343 g3225_0 g3225_2 gnd netg3225 +X344 g7437_1 g7437_0 gnd netg7437 +X345 x162_0 x162_1 gnd netx162 +X346 g6139_1 g6139_0 gnd netg6139 +X347 g6106_1 g6106_0 gnd netg6106 +X348 g1510_1 g1510_0 gnd netg1510 +X349 g1585_0 g1585_1 gnd netg1585 +X350 g4047_0 g4047_1 gnd netg4047 +X351 g5415_1 g5415_0 gnd netg5415 +X352 g3897_1 g3897_0 gnd netg3897 +X353 g6584_1 g6584_0 gnd netg6584 +X354 g1815_1 g1815_0 gnd netg1815 +X355 g6962_1 g6962_0 gnd netg6962 +X356 g5879_0 g5879_1 gnd netg5879 +X357 g2486_1 g2486_2 gnd netg2486 +X358 g4206_0 g4206_1 gnd netg4206 +X359 g4070_1 g4070_0 gnd netg4070 +X360 g7156_1 g7156_0 gnd netg7156 +X361 g1519_0 g1519_1 gnd netg1519 +X362 g6669_0 g6669_1 gnd netg6669 +X363 g1492_1 g1492_0 gnd netg1492 +X364 g6272_0 g6272_1 gnd netg6272 +X365 g1122_0 g1122_1 gnd netg1122 +X366 g5526_1 g5526_0 gnd netg5526 +X367 g3557_1 g3557_0 gnd netg3557 +X368 g3568_1 g3568_0 gnd netg3568 +X369 g6464_0 g6464_1 gnd netg6464 +X370 g7129_0 g7129_1 gnd netg7129 +X371 g4982_1 g4982_2 gnd netg4982 +X372 g1134_1 g1134_0 gnd netg1134 +X373 g7099_0 g7099_1 gnd netg7099 +X374 g6920_1 g6920_0 gnd netg6920 +X375 g6011_1 g6011_0 gnd netg6011 +X376 g1252_0 g1252_1 gnd netg1252 +X377 g6894_0 g6894_1 gnd netg6894 +X378 g4067_1 g4067_0 gnd netg4067 +X379 g1265_0 g1265_1 gnd netg1265 +X380 g5249_1 g5249_0 gnd netg5249 +X381 g4230_0 g4230_1 gnd netg4230 +X382 g4414_0 g4414_1 gnd netg4414 +X383 x221_0 x221_1 gnd netx221 +X384 g3487_1 g3487_0 gnd netg3487 +X385 g6720_0 g6720_1 gnd netg6720 +X386 g1452_0 g1452_1 gnd netg1452 +X387 g6134_0 g6134_1 gnd netg6134 +X388 g3500_1 g3500_0 gnd netg3500 +X389 g4237_1 g4237_0 gnd netg4237 +X390 g4530_1 g4530_0 gnd netg4530 +X391 g6554_1 g6554_0 gnd netg6554 +X392 g7131_2 g7131_1 gnd netg7131 +X393 g6207_1 g6207_0 gnd netg6207 +X394 g4997_1 g4997_2 gnd netg4997 +X395 g5458_0 g5458_1 gnd netg5458 +X396 g7381_1 g7381_0 gnd netg7381 +X397 g2404_1 g2404_0 gnd netg2404 +X398 g3468_1 g3468_0 gnd netg3468 +X399 g4256_1 g4256_0 gnd netg4256 +X400 g5298_1 g5298_0 gnd netg5298 +X401 g6141_1 g6141_0 gnd netg6141 +X402 g6175_0 g6175_1 gnd netg6175 +X403 g1948_2 g1948_0 gnd netg1948 +X404 g5330_1 g5330_0 gnd netg5330 +X405 g2786_0 g2786_1 gnd netg2786 +X406 g4226_0 g4226_1 gnd netg4226 +X407 g5143_0 g5143_1 gnd netg5143 +X408 g2792_0 g2792_1 gnd netg2792 +X409 g6507_0 g6507_1 gnd netg6507 +X410 g3570_1 g3570_0 gnd netg3570 +X411 g6259_2 g6259_1 gnd netg6259 +X412 g5606_1 g5606_0 gnd netg5606 +X413 g2835_0 g2835_1 gnd netg2835 +X414 g1533_1 g1533_0 gnd netg1533 +X415 g6820_1 g6820_0 gnd netg6820 +X416 g3547_0 g3547_1 gnd netg3547 +X417 g7347_0 g7347_1 gnd netg7347 +X418 g3717_1 g3717_0 gnd netg3717 +X419 g5592_1 g5592_0 gnd netg5592 +X420 g6073_0 g6073_1 gnd netg6073 +X421 g4424_0 g4424_1 gnd netg4424 +X422 g1582_0 g1582_1 gnd netg1582 +X423 g6902_0 g6902_1 gnd netg6902 +X424 g5706_1 g5706_0 gnd netg5706 +X425 g1227_1 g1227_0 gnd netg1227 +X426 g2846_0 g2846_1 gnd netg2846 +X427 g1173_0 g1173_1 gnd netg1173 +X428 g5769_1 g5769_0 gnd netg5769 +X429 g2785_0 g2785_1 gnd netg2785 +X430 g7332_1 g7332_0 gnd netg7332 +X431 g1481_1 g1481_0 gnd netg1481 +X432 g3541_1 g3541_0 gnd netg3541 +X433 g3096_2 g3096_1 gnd netg3096 +X434 g4452_1 g4452_0 gnd netg4452 +X435 g7183_0 g7183_1 gnd netg7183 +X436 g1457_1 g1457_0 gnd netg1457 +X437 g6737_1 g6737_0 gnd netg6737 +X438 g7013_1 g7013_0 gnd netg7013 +X439 g6697_0 g6697_1 gnd netg6697 +X440 g3915_1 g3915_0 gnd netg3915 +X441 g6460_1 g6460_0 gnd netg6460 +X442 g5476_1 g5476_0 gnd netg5476 +X443 g5114_1 g5114_0 gnd netg5114 +X444 g7092_1 g7092_0 gnd netg7092 +X445 g7249_0 g7249_1 gnd netg7249 +X446 g6244_0 g6244_1 gnd netg6244 +X447 g3578_1 g3578_0 gnd netg3578 +X448 x231_0 x231_1 gnd netx231 +X449 g7279_0 g7279_1 gnd netg7279 +X450 g6088_1 g6088_0 gnd netg6088 +X451 g5546_0 g5546_2 gnd netg5546 +X452 g6696_0 g6696_1 gnd netg6696 +X453 g4340_1 g4340_0 gnd netg4340 +X454 g6008_0 g6008_1 gnd netg6008 +X455 g7076_1 g7076_0 gnd netg7076 +X456 g5776_0 g5776_1 gnd netg5776 +X457 g6229_1 g6229_0 gnd netg6229 +X458 g1051_2 g1051_0 gnd netg1051 +X459 g2435_0 g2435_2 gnd netg2435 +X460 g3900_1 g3900_0 gnd netg3900 +X461 g455_0 g455_1 gnd netg455 +X462 g6684_0 g6684_1 gnd netg6684 +X463 g6006_1 g6006_0 gnd netg6006 +X464 g1314_1 g1314_0 gnd netg1314 +X465 g5238_1 g5238_0 gnd netg5238 +X466 g5538_1 g5538_0 gnd netg5538 +X467 g3573_1 g3573_0 gnd netg3573 +X468 g5362_1 g5362_0 gnd netg5362 +X469 g5252_1 g5252_0 gnd netg5252 +X470 g6135_0 g6135_1 gnd netg6135 +X471 g4023_0 g4023_1 gnd netg4023 +X472 g7442_1 g7442_0 gnd netg7442 +X473 g910_1 g910_2 gnd netg910 +X474 g5671_1 g5671_2 gnd netg5671 +X475 g1929_0 g1929_1 gnd netg1929 +X476 g4137_0 g4137_1 gnd netg4137 +X477 g1359_0 g1359_1 gnd netg1359 +X478 g6648_1 g6648_0 gnd netg6648 +X479 g6940_0 g6940_1 gnd netg6940 +X480 g6099_0 g6099_1 gnd netg6099 +X481 g6362_1 g6362_0 gnd netg6362 +X482 g4321_0 g4321_1 gnd netg4321 +X483 g3920_1 g3920_0 gnd netg3920 +X484 g5540_1 g5540_2 gnd netg5540 +X485 g4160_0 g4160_1 gnd netg4160 +X486 g6936_1 g6936_0 gnd netg6936 +X487 g7185_1 g7185_0 gnd netg7185 +X488 g6665_0 g6665_1 gnd netg6665 +X489 g1939_0 g1939_1 gnd netg1939 +X490 g6996_1 g6996_0 gnd netg6996 +X491 g6529_1 g6529_0 gnd netg6529 +X492 g1232_0 g1232_1 gnd netg1232 +X493 g3529_1 g3529_0 gnd netg3529 +X494 g6191_1 g6191_0 gnd netg6191 +X495 g3198_1 g3198_2 gnd netg3198 +X496 g4328_0 g4328_1 gnd netg4328 +X497 g3514_1 g3514_0 gnd netg3514 +X498 g7022_1 g7022_0 gnd netg7022 +X499 g7198_0 g7198_1 gnd netg7198 +X500 g1431_0 g1431_1 gnd netg1431 +X501 g2701_1 g2701_2 gnd netg2701 +X502 g7353_1 g7353_0 gnd netg7353 +X503 g4053_0 g4053_1 gnd netg4053 +X504 g5410_0 g5410_1 gnd netg5410 +X505 g6525_1 g6525_0 gnd netg6525 +X506 x281_1 x281_0 gnd netx281 +X507 g4332_1 g4332_0 gnd netg4332 +X508 g2558_2 g2558_1 gnd netg2558 +X509 g2914_1 g2914_0 gnd netg2914 +X510 g7107_0 g7107_1 gnd netg7107 +X511 g6186_1 g6186_0 gnd netg6186 +X512 g7228_1 g7228_2 gnd netg7228 +X513 g4173_1 g4173_0 gnd netg4173 +X514 g6356_1 g6356_0 gnd netg6356 +X515 g6317_0 g6317_1 gnd netg6317 +X516 g5443_1 g5443_0 gnd netg5443 +X517 g1999_0 g1999_1 gnd netg1999 +X518 g6163_1 g6163_0 gnd netg6163 +X519 g6731_0 g6731_1 gnd netg6731 +X520 g4134_1 g4134_0 gnd netg4134 +X521 g1162_1 g1162_0 gnd netg1162 +X522 g6298_0 g6298_1 gnd netg6298 +X523 g4286_0 g4286_1 gnd netg4286 +X524 g6694_1 g6694_0 gnd netg6694 +X525 g1408_0 g1408_1 gnd netg1408 +X526 g6087_0 g6087_1 gnd netg6087 +X527 g1231_0 g1231_1 gnd netg1231 +X528 x402_1 x402_0 gnd netx402 +X529 g5423_0 g5423_1 gnd netg5423 +X530 g5992_0 g5992_1 gnd netg5992 +X531 g3508_1 g3508_0 gnd netg3508 +X532 g2823_0 g2823_1 gnd netg2823 +X533 g6169_0 g6169_1 gnd netg6169 +X534 g4062_1 g4062_0 gnd netg4062 +X535 g4129_0 g4129_1 gnd netg4129 +X536 g2795_0 g2795_1 gnd netg2795 +X537 g2923_1 g2923_0 gnd netg2923 +X538 g4203_0 g4203_1 gnd netg4203 +X539 g4057_1 g4057_0 gnd netg4057 +X540 g1886_1 g1886_0 gnd netg1886 +X541 x121_1 x121_0 gnd netx121 +X542 g5994_1 g5994_0 gnd netg5994 +X543 g6395_0 g6395_1 gnd netg6395 +X544 g6166_1 g6166_0 gnd netg6166 +X545 g1921_1 g1921_0 gnd netg1921 +X546 x291_1 x291_0 gnd netx291 +X547 g5982_1 g5982_0 gnd netg5982 +X548 g5408_0 g5408_1 gnd netg5408 +X549 g6333_1 g6333_0 gnd netg6333 +X550 g1168_1 g1168_0 gnd netg1168 +X551 g1394_1 g1394_0 gnd netg1394 +X552 g6440_0 g6440_1 gnd netg6440 +X553 g5354_1 g5354_0 gnd netg5354 +X554 g6437_0 g6437_1 gnd netg6437 +X555 g865_1 g865_2 gnd netg865 +X556 g2931_0 g2931_1 gnd netg2931 +X557 g5135_0 g5135_1 gnd netg5135 +X558 g6994_1 g6994_0 gnd netg6994 +X559 g6194_1 g6194_0 gnd netg6194 +X560 g752_1 g752_0 gnd netg752 +X561 g7270_1 g7270_0 gnd netg7270 +X562 x11_1 x11_0 gnd netx11 +X563 g4108_0 g4108_1 gnd netg4108 +X564 g6502_2 g6502_0 gnd netg6502 +X565 g3904_1 g3904_0 gnd netg3904 +X566 g1382_1 g1382_0 gnd netg1382 +X567 g3497_1 g3497_0 gnd netg3497 +X568 g6587_1 g6587_0 gnd netg6587 +X569 g4242_1 g4242_0 gnd netg4242 +X570 g4121_0 g4121_2 gnd netg4121 +X571 g3081_0 g3081_1 gnd netg3081 +X572 g6549_1 g6549_0 gnd netg6549 +X573 g3129_2 g3129_1 gnd netg3129 +X574 g1934_0 g1934_1 gnd netg1934 +X575 g3577_1 g3577_0 gnd netg3577 +X576 g2793_1 g2793_0 gnd netg2793 +X577 g5604_1 g5604_0 gnd netg5604 +X578 g1925_0 g1925_1 gnd netg1925 +X579 g4264_0 g4264_1 gnd netg4264 +X580 g6586_0 g6586_1 gnd netg6586 +X581 g4223_0 g4223_1 gnd netg4223 +X582 g3565_0 g3565_1 gnd netg3565 +X583 g6390_0 g6390_1 gnd netg6390 +X584 g7025_1 g7025_0 gnd netg7025 +X585 g3049_1 g3049_0 gnd netg3049 +X586 g6743_1 g6743_0 gnd netg6743 +X587 g6101_1 g6101_0 gnd netg6101 +X588 g1228_1 g1228_0 gnd netg1228 +X589 g6451_1 g6451_0 gnd netg6451 +X590 g2790_1 g2790_0 gnd netg2790 +X591 g3067_0 g3067_1 gnd netg3067 +X592 g6138_0 g6138_1 gnd netg6138 +X593 x371_1 x371_0 gnd netx371 +X594 g1172_0 g1172_1 gnd netg1172 +X595 g2762_1 g2762_0 gnd netg2762 +X596 g5599_1 g5599_0 gnd netg5599 +X597 g5364_0 g5364_1 gnd netg5364 +X598 g5318_0 g5318_1 gnd netg5318 +X599 g6539_0 g6539_1 gnd netg6539 +X600 g6742_0 g6742_1 gnd netg6742 +X601 g7082_0 g7082_1 gnd netg7082 +X602 g1930_0 g1930_1 gnd netg1930 +X603 g4336_1 g4336_0 gnd netg4336 +X604 g4529_1 g4529_0 gnd netg4529 +X605 g5596_1 g5596_0 gnd netg5596 +X606 g1369_2 g1369_0 gnd netg1369 +X607 x512_1 x512_0 gnd netx512 +X608 g4058_0 g4058_1 gnd netg4058 +X609 g1906_1 g1906_0 gnd netg1906 +X610 g4402_0 g4402_1 gnd netg4402 +X611 g2833_1 g2833_0 gnd netg2833 +X612 g5775_1 g5775_0 gnd netg5775 +X613 g2998_1 g2998_0 gnd netg2998 +X614 g3556_0 g3556_1 gnd netg3556 +X615 g3365_0 g3365_1 gnd netg3365 +X616 g5511_0 g5511_1 gnd netg5511 +X617 g1251_0 g1251_1 gnd netg1251 +X618 g4110_1 g4110_0 gnd netg4110 +X619 g6649_1 g6649_0 gnd netg6649 +X620 g5674_0 g5674_2 gnd netg5674 +X621 g6150_1 g6150_0 gnd netg6150 +X622 g7340_0 g7340_1 gnd netg7340 +X623 g1033_2 g1033_1 gnd netg1033 +X624 g6208_1 g6208_0 gnd netg6208 +X625 g5969_1 g5969_0 gnd netg5969 +X626 g6662_0 g6662_1 gnd netg6662 +X627 g4132_1 g4132_0 gnd netg4132 +X628 g5417_1 g5417_0 gnd netg5417 +X629 g3109_0 g3109_1 gnd netg3109 +X630 g2815_0 g2815_1 gnd netg2815 +X631 g7045_0 g7045_1 gnd netg7045 +X632 g3974_0 g3974_1 gnd netg3974 +X633 x481_0 x481_1 gnd netx481 +X634 x412_1 x412_0 gnd netx412 +X635 g6624_1 g6624_0 gnd netg6624 +X636 g5392_1 g5392_0 gnd netg5392 +X637 g3477_1 g3477_0 gnd netg3477 +X638 g1230_1 g1230_0 gnd netg1230 +X639 g2944_0 g2944_1 gnd netg2944 +X640 g4334_1 g4334_0 gnd netg4334 +X641 g3682_0 g3682_1 gnd netg3682 +X642 g7396_1 g7396_0 gnd netg7396 +X643 g1480_0 g1480_1 gnd netg1480 +X644 g2780_1 g2780_0 gnd netg2780 +X645 g4299_1 g4299_0 gnd netg4299 +X646 g7186_1 g7186_0 gnd netg7186 +X647 g4308_1 g4308_0 gnd netg4308 +X648 g2707_0 g2707_2 gnd netg2707 +X649 g7272_0 g7272_1 gnd netg7272 +X650 g6873_1 g6873_0 gnd netg6873 +X651 g5247_1 g5247_0 gnd netg5247 +X652 g5856_0 g5856_1 gnd netg5856 +X653 g2941_0 g2941_1 gnd netg2941 +X654 g5997_1 g5997_0 gnd netg5997 +X655 g6040_0 g6040_1 gnd netg6040 +X656 g1261_1 g1261_0 gnd netg1261 +X657 g3555_1 g3555_0 gnd netg3555 +X658 g6292_1 g6292_0 gnd netg6292 +X659 g5684_1 g5684_0 gnd netg5684 +X660 g4288_0 g4288_1 gnd netg4288 +X661 g7175_1 g7175_0 gnd netg7175 +X662 g4618_0 g4618_1 gnd netg4618 +X663 g7403_1 g7403_0 gnd netg7403 +X664 g4208_1 g4208_0 gnd netg4208 +X665 g2644_2 g2644_1 gnd netg2644 +X666 g4261_0 g4261_1 gnd netg4261 +X667 g3438_2 g3438_1 gnd netg3438 +X668 g7409_1 g7409_0 gnd netg7409 +X669 g4234_0 g4234_1 gnd netg4234 +X670 g1922_0 g1922_1 gnd netg1922 +X671 g1254_0 g1254_1 gnd netg1254 +X672 g4311_1 g4311_0 gnd netg4311 +X673 g6082_1 g6082_0 gnd netg6082 +X674 g3349_2 g3349_1 gnd netg3349 +X675 g1893_1 g1893_0 gnd netg1893 +X676 g6845_0 g6845_1 gnd netg6845 +X677 g5788_1 g5788_0 gnd netg5788 +X678 g6929_1 g6929_0 gnd netg6929 +X679 g694_1 g694_0 gnd netg694 +X680 g5071_2 g5071_0 gnd netg5071 +X681 g4018_1 g4018_0 gnd netg4018 +X682 g4398_1 g4398_0 gnd netg4398 +X683 g6079_0 g6079_1 gnd netg6079 +X684 g7277_0 g7277_1 gnd netg7277 +X685 x52_0 x52_1 gnd netx52 +X686 g1406_1 g1406_0 gnd netg1406 +X687 g7439_1 g7439_0 gnd netg7439 +X688 g6695_1 g6695_0 gnd netg6695 +X689 g6490_1 g6490_0 gnd netg6490 +X690 g690_1 g690_0 gnd netg690 +X691 g6825_1 g6825_0 gnd netg6825 +X692 g5119_1 g5119_0 gnd netg5119 +X693 g7196_1 g7196_0 gnd netg7196 +X694 g6404_1 g6404_0 gnd netg6404 +X695 g5607_0 g5607_1 gnd netg5607 +X696 g1377_1 g1377_0 gnd netg1377 +X697 g4097_1 g4097_0 gnd netg4097 +X698 g5321_1 g5321_0 gnd netg5321 +X699 g3417_2 g3417_0 gnd netg3417 +X700 g913_1 g913_2 gnd netg913 +X701 g6461_0 g6461_1 gnd netg6461 +X702 g2779_1 g2779_0 gnd netg2779 +X703 g97_0 g97_1 gnd netg97 +X704 g985_0 g985_2 gnd netg985 +X705 g1259_0 g1259_1 gnd netg1259 +X706 g3046_1 g3046_0 gnd netg3046 +X707 g7389_0 g7389_1 gnd netg7389 +X708 g1516_0 g1516_1 gnd netg1516 +X709 g5367_0 g5367_1 gnd netg5367 +X710 g7026_1 g7026_0 gnd netg7026 +X711 g6579_1 g6579_0 gnd netg6579 +X712 g5360_0 g5360_1 gnd netg5360 +X713 g2477_2 g2477_1 gnd netg2477 +X714 g7168_0 g7168_1 gnd netg7168 +X715 g3892_1 g3892_0 gnd netg3892 +X716 g4295_1 g4295_0 gnd netg4295 +X717 g6365_1 g6365_0 gnd netg6365 +X718 g6819_1 g6819_0 gnd netg6819 +X719 g560_1 g560_0 gnd netg560 +X720 g2783_0 g2783_1 gnd netg2783 +X721 g5605_0 g5605_1 gnd netg5605 +X722 g3412_0 g3412_1 gnd netg3412 +X723 g3085_1 g3085_0 gnd netg3085 +X724 g5961_0 g5961_1 gnd netg5961 +X725 g1535_1 g1535_0 gnd netg1535 +X726 g6967_2 g6967_1 gnd netg6967 +X727 x401_1 x401_0 gnd netx401 +X728 g4182_1 g4182_0 gnd netg4182 +X729 g6888_1 g6888_0 gnd netg6888 +X730 g3982_0 g3982_1 gnd netg3982 +X731 g6672_1 g6672_0 gnd netg6672 +X732 g4112_0 g4112_1 gnd netg4112 +X733 g5874_1 g5874_0 gnd netg5874 +X734 g5317_0 g5317_1 gnd netg5317 +X735 g5181_1 g5181_0 gnd netg5181 +X736 g5890_1 g5890_0 gnd netg5890 +X737 g2221_0 g2221_1 gnd netg2221 +X738 g2810_1 g2810_0 gnd netg2810 +X739 g7214_0 g7214_1 gnd netg7214 +X740 g5200_0 g5200_1 gnd netg5200 +X741 g4202_0 g4202_1 gnd netg4202 +X742 g6516_1 g6516_0 gnd netg6516 +X743 g7395_1 g7395_0 gnd netg7395 +X744 g3410_0 g3410_1 gnd netg3410 +X745 g6469_0 g6469_1 gnd netg6469 +X746 g4278_0 g4278_1 gnd netg4278 +X747 g3895_0 g3895_1 gnd netg3895 +X748 g6405_1 g6405_0 gnd netg6405 +X749 g7299_1 g7299_0 gnd netg7299 +X750 g6606_0 g6606_1 gnd netg6606 +X751 g6609_0 g6609_1 gnd netg6609 +X752 g6015_1 g6015_0 gnd netg6015 +X753 g6999_0 g6999_1 gnd netg6999 +X754 g1009_1 g1009_2 gnd netg1009 +X755 g7192_0 g7192_1 gnd netg7192 +X756 g2921_0 g2921_1 gnd netg2921 +X757 g1003_1 g1003_2 gnd netg1003 +X758 g4229_0 g4229_1 gnd netg4229 +X759 g4150_0 g4150_1 gnd netg4150 +X760 g4042_1 g4042_0 gnd netg4042 +X761 g7064_1 g7064_0 gnd netg7064 +X762 g6170_0 g6170_1 gnd netg6170 +X763 x292_1 x292_0 gnd netx292 +X764 g6656_1 g6656_0 gnd netg6656 +X765 g7407_1 g7407_0 gnd netg7407 +X766 g4432_0 g4432_1 gnd netg4432 +X767 g4072_1 g4072_0 gnd netg4072 +X768 g2951_0 g2951_1 gnd netg2951 +X769 g4136_1 g4136_0 gnd netg4136 +X770 g4049_1 g4049_0 gnd netg4049 +X771 g3423_1 g3423_2 gnd netg3423 +X772 g4276_1 g4276_0 gnd netg4276 +X773 g3471_1 g3471_0 gnd netg3471 +X774 g5470_0 g5470_1 gnd netg5470 +X775 g3469_0 g3469_1 gnd netg3469 +X776 g4316_0 g4316_1 gnd netg4316 +X777 g6532_0 g6532_1 gnd netg6532 +X778 g2704_1 g2704_2 gnd netg2704 +X779 g6522_0 g6522_1 gnd netg6522 +X780 g7102_0 g7102_1 gnd netg7102 +X781 g6358_1 g6358_0 gnd netg6358 +X782 g6072_1 g6072_0 gnd netg6072 +X783 g6651_1 g6651_0 gnd netg6651 +X784 g3345_0 g3345_1 gnd netg3345 +X785 g6083_0 g6083_1 gnd netg6083 +X786 g4304_1 g4304_0 gnd netg4304 +X787 g4236_0 g4236_1 gnd netg4236 +X788 g3534_0 g3534_1 gnd netg3534 +X789 g4051_1 g4051_0 gnd netg4051 +X790 g4104_0 g4104_1 gnd netg4104 +X791 g7074_0 g7074_1 gnd netg7074 +X792 g6415_0 g6415_1 gnd netg6415 +X793 g3575_1 g3575_0 gnd netg3575 +X794 g5765_1 g5765_0 gnd netg5765 +X795 g7210_1 g7210_0 gnd netg7210 +X796 g6582_1 g6582_0 gnd netg6582 +X797 g4133_1 g4133_0 gnd netg4133 +X798 g7219_2 g7219_0 gnd netg7219 +X799 g6409_0 g6409_1 gnd netg6409 +X800 g7081_1 g7081_0 gnd netg7081 +X801 g5018_1 g5018_2 gnd netg5018 +X802 x482_0 x482_1 gnd netx482 +X803 g7123_1 g7123_0 gnd netg7123 +X804 g3063_1 g3063_0 gnd netg3063 +X805 g5667_0 g5667_1 gnd netg5667 +X806 g2820_0 g2820_1 gnd netg2820 +X807 g5466_0 g5466_1 gnd netg5466 +X808 g2634_1 g2634_0 gnd netg2634 +X809 g7127_0 g7127_1 gnd netg7127 +X810 g4209_1 g4209_0 gnd netg4209 +X811 g3898_1 g3898_0 gnd netg3898 +X812 g5991_1 g5991_0 gnd netg5991 +X813 g4277_1 g4277_0 gnd netg4277 +X814 g4019_0 g4019_1 gnd netg4019 +X815 g5525_1 g5525_0 gnd netg5525 +X816 g4059_0 g4059_1 gnd netg4059 +X817 g2765_0 g2765_1 gnd netg2765 +X818 g6926_1 g6926_0 gnd netg6926 +X819 g4038_1 g4038_0 gnd netg4038 +X820 g6536_0 g6536_1 gnd netg6536 +X821 g1509_1 g1509_0 gnd netg1509 +X822 g6055_0 g6055_1 gnd netg6055 +X823 g3492_0 g3492_1 gnd netg3492 +X824 g2915_1 g2915_0 gnd netg2915 +X825 g6115_1 g6115_0 gnd netg6115 +X826 g2830_1 g2830_0 gnd netg2830 +X827 g6211_1 g6211_0 gnd netg6211 +X828 g5428_1 g5428_0 gnd netg5428 +X829 g6165_1 g6165_0 gnd netg6165 +X830 g1477_1 g1477_0 gnd netg1477 +X831 g7211_1 g7211_0 gnd netg7211 +X832 g6316_0 g6316_1 gnd netg6316 +X833 g4052_1 g4052_0 gnd netg4052 +X834 g4176_0 g4176_1 gnd netg4176 +X835 g2225_0 g2225_1 gnd netg2225 +X836 g7241_1 g7241_0 gnd netg7241 +X837 g6185_0 g6185_1 gnd netg6185 +X838 g6718_0 g6718_1 gnd netg6718 +X839 g2504_0 g2504_2 gnd netg2504 +X840 g4071_0 g4071_1 gnd netg4071 +X841 g7101_0 g7101_1 gnd netg7101 +X842 g6935_0 g6935_1 gnd netg6935 +X843 g6875_0 g6875_1 gnd netg6875 +X844 g5972_0 g5972_1 gnd netg5972 +X845 g5142_1 g5142_0 gnd netg5142 +X846 g4333_0 g4333_1 gnd netg4333 +X847 g4128_0 g4128_1 gnd netg4128 +X848 g2534_2 g2534_1 gnd netg2534 +X849 g6245_0 g6245_1 gnd netg6245 +X850 g4418_1 g4418_0 gnd netg4418 +X851 g5619_2 g5619_1 gnd netg5619 +X852 g5794_1 g5794_0 gnd netg5794 +X853 g1923_1 g1923_0 gnd netg1923 +X854 g7263_0 g7263_1 gnd netg7263 +X855 g5279_1 g5279_0 gnd netg5279 +X856 g3913_0 g3913_1 gnd netg3913 +X857 g5740_0 g5740_2 gnd netg5740 +X858 g6171_0 g6171_1 gnd netg6171 +X859 g5430_0 g5430_1 gnd netg5430 +X860 g1393_1 g1393_0 gnd netg1393 +X861 g2359_2 g2359_1 gnd netg2359 +X862 g892_1 g892_2 gnd netg892 +X863 g3003_0 g3003_1 gnd netg3003 +X864 g5993_1 g5993_0 gnd netg5993 +X865 g7218_1 g7218_0 gnd netg7218 +X866 g1405_0 g1405_1 gnd netg1405 +X867 g5916_1 g5916_0 gnd netg5916 +X868 g6312_1 g6312_0 gnd netg6312 +X869 g4665_1 g4665_0 gnd netg4665 +X870 g3702_2 g3702_1 gnd netg3702 +X871 g4141_0 g4141_1 gnd netg4141 +X872 g6190_1 g6190_0 gnd netg6190 +X873 g2796_0 g2796_1 gnd netg2796 +X874 g1358_0 g1358_1 gnd netg1358 +X875 g6974_1 g6974_0 gnd netg6974 +X876 g3051_1 g3051_0 gnd netg3051 +X877 g6889_1 g6889_0 gnd netg6889 +X878 g4253_1 g4253_0 gnd netg4253 +X879 g3981_0 g3981_1 gnd netg3981 +X880 g2710_2 g2710_0 gnd netg2710 +X881 g6972_1 g6972_0 gnd netg6972 +X882 g6158_0 g6158_2 gnd netg6158 +X883 g1894_1 g1894_0 gnd netg1894 +X884 g1960_0 g1960_1 gnd netg1960 +X885 g1176_1 g1176_0 gnd netg1176 +X886 g6065_1 g6065_0 gnd netg6065 +X887 g6963_1 g6963_0 gnd netg6963 +X888 g7023_0 g7023_1 gnd netg7023 +X889 x391_0 x391_1 gnd netx391 +X890 g2356_2 g2356_1 gnd netg2356 +X891 g1129_1 g1129_0 gnd netg1129 +X892 g6383_1 g6383_0 gnd netg6383 +X893 g2932_0 g2932_1 gnd netg2932 +X894 g7334_1 g7334_0 gnd netg7334 +X895 g6277_1 g6277_0 gnd netg6277 +X896 g3533_1 g3533_0 gnd netg3533 +X897 g5482_1 g5482_0 gnd netg5482 +X898 g3973_0 g3973_1 gnd netg3973 +X899 g7438_0 g7438_1 gnd netg7438 +X900 g6418_1 g6418_0 gnd netg6418 +X901 g7427_1 g7427_0 gnd netg7427 +X902 g7410_0 g7410_1 gnd netg7410 +X903 g4317_0 g4317_1 gnd netg4317 +X904 g3499_1 g3499_0 gnd netg3499 +X905 g6519_0 g6519_1 gnd netg6519 +X906 g2770_1 g2770_0 gnd netg2770 +X907 g3896_1 g3896_0 gnd netg3896 +X908 g1385_1 g1385_0 gnd netg1385 +X909 g4175_1 g4175_0 gnd netg4175 +X910 g7116_2 g7116_1 g7116_0 gnd netg7116 +X911 g3916_1 g3916_0 gnd netg3916 +X912 g3572_1 g3572_0 gnd netg3572 +X913 g6100_1 g6100_0 gnd netg6100 +X914 g5361_1 g5361_0 gnd netg5361 +X915 g5347_1 g5347_0 gnd netg5347 +X916 g2229_1 g2229_0 gnd netg2229 +X917 x452_0 x452_1 gnd netx452 +X918 g6330_1 g6330_0 gnd netg6330 +X919 g5128_2 g5128_1 g5128_0 gnd netg5128 +X920 g7294_1 g7294_0 gnd netg7294 +X921 g5349_1 g5349_0 gnd netg5349 +X922 g1436_0 g1436_1 gnd netg1436 +X923 g6436_1 g6436_0 gnd netg6436 +X924 g3117_0 g3117_1 g3117_2 gnd netg3117 +X925 g6513_1 g6513_0 gnd netg6513 +X926 g5483_0 g5483_1 gnd netg5483 +X927 g6604_1 g6604_0 gnd netg6604 +X928 g7217_1 g7217_0 gnd netg7217 +X929 g3413_0 g3413_1 gnd netg3413 +X930 g5320_1 g5320_0 gnd netg5320 +X931 g6173_1 g6173_0 gnd netg6173 +X932 g4354_0 g4354_1 gnd netg4354 +X933 g5786_1 g5786_0 gnd netg5786 +X934 g1453_1 g1453_0 gnd netg1453 +X935 g6736_0 g6736_1 gnd netg6736 +X936 g7103_0 g7103_1 gnd netg7103 +X937 g4438_0 g4438_1 gnd netg4438 +X938 g3977_1 g3977_0 gnd netg3977 +X939 g6329_0 g6329_1 gnd netg6329 +X940 g3324_1 g3324_2 g3324_0 gnd netg3324 +X941 g6805_0 g6805_1 g6805_2 gnd netg6805 +X942 g6823_1 g6823_0 gnd netg6823 +X943 g4244_1 g4244_0 gnd netg4244 +X944 g1490_1 g1490_0 gnd netg1490 +X945 g5328_0 g5328_1 gnd netg5328 +X946 g2543_0 g2543_1 g2543_2 gnd netg2543 +X947 g6255_1 g6255_0 g6255_2 gnd netg6255 +X948 g6195_1 g6195_0 gnd netg6195 +X949 g3481_0 g3481_1 gnd netg3481 +X950 g5970_1 g5970_0 gnd netg5970 +X951 g6033_1 g6033_0 gnd netg6033 +X952 g5030_2 g5030_1 g5030_0 gnd netg5030 +X953 g5167_2 g5167_0 gnd netg5167 +X954 g6903_1 g6903_0 gnd netg6903 +X955 g4273_0 g4273_1 gnd netg4273 +X956 g6037_0 g6037_1 gnd netg6037 +X957 g6659_0 g6659_1 gnd netg6659 +X958 g4629_1 g4629_0 gnd netg4629 +X959 g7342_1 g7342_0 gnd netg7342 +X960 g1225_0 g1225_1 gnd netg1225 +X961 g5583_0 g5583_1 gnd netg5583 +X962 g1045_0 g1045_2 gnd netg1045 +X963 g6725_2 g6725_0 gnd netg6725 +X964 g6886_0 g6886_1 gnd netg6886 +X965 g7020_0 g7020_1 gnd netg7020 +X966 g6634_2 g6634_1 g6634_0 gnd netg6634 +X967 g4227_1 g4227_0 gnd netg4227 +X968 g1039_1 g1039_2 gnd netg1039 +X969 g1166_0 g1166_1 gnd netg1166 +X970 g2513_1 g2513_2 g2513_0 gnd netg2513 +X971 g566_0 g566_1 gnd netg566 +X972 g5963_1 g5963_0 gnd netg5963 +X973 g2519_1 g2519_2 gnd netg2519 +X974 g6538_1 g6538_0 gnd netg6538 +X975 g7350_1 g7350_0 gnd netg7350 +X976 g6043_1 g6043_0 gnd netg6043 +X977 g1305_0 g1305_1 gnd netg1305 +X978 g7209_0 g7209_1 gnd netg7209 +X979 g5691_0 g5691_2 gnd netg5691 +X980 g7068_1 g7068_0 g7068_2 gnd netg7068 +X981 g3478_1 g3478_0 gnd netg3478 +X982 g1130_1 g1130_0 gnd netg1130 +X983 g6053_0 g6053_1 gnd netg6053 +X984 g6328_1 g6328_0 gnd netg6328 +X985 g1475_0 g1475_1 gnd netg1475 +X986 g4437_1 g4437_0 gnd netg4437 +X987 g4241_1 g4241_0 gnd netg4241 +X988 g6921_1 g6921_2 g6921_0 gnd netg6921 +X989 g1384_1 g1384_0 gnd netg1384 +X990 g5355_0 g5355_1 gnd netg5355 +X991 g5488_1 g5488_0 gnd netg5488 +X992 x422_1 x422_0 gnd netx422 +X993 g4938_0 g4938_1 gnd netg4938 +X994 g3495_0 g3495_1 gnd netg3495 +X995 g6001_0 g6001_1 gnd netg6001 +X996 g4279_0 g4279_1 gnd netg4279 +X997 g6622_1 g6622_0 gnd netg6622 +X998 g922_2 g922_0 gnd netg922 +X999 x381_1 x381_0 gnd netx381 +X1000 g6948_1 g6948_2 gnd netg6948 +X1001 x361_0 x361_1 gnd netx361 +X1002 g5424_0 g5424_1 gnd netg5424 +X1003 g4056_1 g4056_0 gnd netg4056 +X1004 g2828_0 g2828_1 gnd netg2828 +X1005 g1000_1 g1000_2 gnd netg1000 +X1006 g5059_2 g5059_0 g5059_1 gnd netg5059 +X1007 g6168_1 g6168_0 gnd netg6168 +X1008 g4331_0 g4331_1 gnd netg4331 +X1009 g6484_0 g6484_1 g6484_2 gnd netg6484 +X1010 g3488_1 g3488_0 gnd netg3488 +X1011 g1390_2 g1390_0 g1390_1 gnd netg1390 +X1012 g3456_1 g3456_2 g3456_0 gnd netg3456 +X1013 g5429_0 g5429_1 gnd netg5429 +X1014 g1386_0 g1386_1 gnd netg1386 +X1015 g6220_0 g6220_2 gnd netg6220 +X1016 g3288_2 g3288_1 gnd netg3288 +X1017 g6533_1 g6533_0 gnd netg6533 +X1018 g5113_1 g5113_0 gnd netg5113 +X1019 g2949_0 g2949_1 gnd netg2949 +X1020 g6489_0 g6489_1 gnd netg6489 +X1021 g6655_1 g6655_0 gnd netg6655 +X1022 g3099_1 g3099_0 gnd netg3099 +X1023 g7383_1 g7383_0 gnd netg7383 +X1024 g7208_0 g7208_1 gnd netg7208 +X1025 g3000_1 g3000_0 gnd netg3000 +X1026 g6089_0 g6089_1 gnd netg6089 +X1027 g4293_1 g4293_0 gnd netg4293 +X1028 g6918_0 g6918_1 gnd netg6918 +X1029 g7388_1 g7388_0 gnd netg7388 +X1030 g4069_0 g4069_1 gnd netg4069 +X1031 x101_1 x101_0 gnd netx101 +X1032 g6119_0 g6119_1 gnd netg6119 +X1033 g5267_1 g5267_0 gnd netg5267 +X1034 g2576_2 g2576_0 g2576_1 gnd netg2576 +X1035 g6660_0 g6660_1 gnd netg6660 +X1036 g4442_1 g4442_0 gnd netg4442 +X1037 g6266_2 g6266_0 g6266_1 gnd netg6266 +X1038 g2740_2 g2740_0 g2740_1 gnd netg2740 +X1039 g7165_0 g7165_1 gnd netg7165 +X1040 g2492_2 g2492_1 gnd netg2492 +X1041 g7406_1 g7406_0 gnd netg7406 +X1042 g6901_0 g6901_1 gnd netg6901 +X1043 g5444_0 g5444_1 gnd netg5444 +X1044 g3544_0 g3544_1 gnd netg3544 +X1045 g5050_1 g5050_0 g5050_2 gnd netg5050 +X1046 g7206_1 g7206_0 gnd netg7206 +X1047 g2838_1 g2838_0 gnd netg2838 +X1048 g1223_1 g1223_0 gnd netg1223 +X1049 g1557_1 g1557_0 gnd netg1557 +X1050 g6790_2 g6790_1 g6790_0 gnd netg6790 +X1051 g4204_0 g4204_1 gnd netg4204 +X1052 g6048_1 g6048_0 gnd netg6048 +X1053 g6613_1 g6613_0 gnd netg6613 +X1054 g5357_0 g5357_1 gnd netg5357 +X1055 g2483_2 g2483_1 gnd netg2483 +X1056 g4275_0 g4275_1 gnd netg4275 +X1057 g979_0 g979_1 g979_2 gnd netg979 +X1058 g4228_1 g4228_0 gnd netg4228 +X1059 g3531_0 g3531_1 gnd netg3531 +X1060 g5024_2 g5024_0 gnd netg5024 +X1061 g4450_0 g4450_1 gnd netg4450 +X1062 g2759_1 g2759_0 gnd netg2759 +X1063 g5885_0 g5885_1 gnd netg5885 +X1064 g3062_1 g3062_0 gnd netg3062 +X1065 g6381_0 g6381_1 gnd netg6381 +X1066 g7349_1 g7349_0 gnd netg7349 +X1067 g6511_0 g6511_1 gnd netg6511 +X1068 g4976_2 g4976_1 g4976_0 gnd netg4976 +X1069 g4007_1 g4007_0 gnd netg4007 +X1070 x421_1 x421_0 gnd netx421 +X1071 g5325_1 g5325_0 gnd netg5325 +X1072 g6433_2 g6433_0 g6433_1 gnd netg6433 +X1073 g7079_1 g7079_0 gnd netg7079 +X1074 g6692_0 g6692_1 gnd netg6692 +X1075 g3102_1 g3102_0 gnd netg3102 +X1076 g1161_0 g1161_1 gnd netg1161 +X1077 g6462_1 g6462_0 gnd netg6462 +X1078 g970_0 g970_1 g970_2 gnd netg970 +X1079 g5245_0 g5245_1 gnd netg5245 +X1080 g3919_0 g3919_1 gnd netg3919 +X1081 g1154_0 g1154_1 gnd netg1154 +X1082 g1407_1 g1407_0 gnd netg1407 +X1083 g6980_0 g6980_2 g6980_1 gnd netg6980 +X1084 g4024_1 g4024_0 gnd netg4024 +X1085 g3466_0 g3466_1 gnd netg3466 +X1086 g7167_1 g7167_0 gnd netg7167 +X1087 g4083_1 g4083_0 gnd netg4083 +X1088 g5990_1 g5990_0 gnd netg5990 +X1089 g7254_1 g7254_0 gnd netg7254 +X1090 g7432_0 g7432_1 gnd netg7432 +X1091 g7161_2 g7161_0 g7161_1 gnd netg7161 +X1092 g2999_0 g2999_1 gnd netg2999 +X1093 g2447_0 g2447_1 g2447_2 gnd netg2447 +X1094 g7413_1 g7413_0 gnd netg7413 +X1095 g2936_0 g2936_1 gnd netg2936 +X1096 x62_1 x62_0 gnd netx62 +X1097 g4433_0 g4433_1 gnd netg4433 +X1098 g1082_2 g1082_1 gnd netg1082 +X1099 g6388_1 g6388_0 gnd netg6388 +X1100 g4335_1 g4335_0 gnd netg4335 +X1101 g3985_0 g3985_1 gnd netg3985 +X1102 g7016_0 g7016_1 gnd netg7016 +X1103 g5296_1 g5296_0 gnd netg5296 +X1104 g5348_1 g5348_0 gnd netg5348 +X1105 g4037_1 g4037_0 gnd netg4037 +X1106 g4330_1 g4330_0 gnd netg4330 +X1107 g2441_1 g2441_0 g2441_2 gnd netg2441 +X1108 x172_1 x172_0 gnd netx172 +X1109 g5625_1 g5625_2 gnd netg5625 +X1110 g5104_2 g5104_0 g5104_1 gnd netg5104 +X1111 g5528_1 g5528_0 gnd netg5528 +X1112 g931_2 g931_1 g931_0 gnd netg931 +X1113 g7345_1 g7345_0 gnd netg7345 +X1114 g5120_0 g5120_1 gnd netg5120 +X1115 g6971_1 g6971_0 gnd netg6971 +X1116 g5131_0 g5131_2 gnd netg5131 +X1117 g5273_0 g5273_1 gnd netg5273 +X1118 g5184_1 g5184_0 gnd netg5184 +X1119 g6526_0 g6526_1 gnd netg6526 +X1120 g6983_0 g6983_1 gnd netg6983 +X1121 g6735_0 g6735_1 gnd netg6735 +X1122 g1428_1 g1428_0 gnd netg1428 +X1123 g2224_1 g2224_0 gnd netg2224 +X1124 x92_0 x92_1 gnd netx92 +X1125 g7371_0 g7371_1 gnd netg7371 +X1126 g7077_0 g7077_1 gnd netg7077 +X1127 g7296_0 g7296_1 gnd netg7296 +X1128 x501_0 x501_1 gnd netx501 +X1129 g880_2 g880_0 gnd netg880 +X1130 g6130_1 g6130_0 gnd netg6130 +X1131 g83_0 g83_1 gnd netg83 +X1132 g7278_1 g7278_0 gnd netg7278 +X1133 g1531_1 g1531_0 gnd netg1531 +X1134 g2489_2 g2489_1 g2489_0 gnd netg2489 +X1135 g6307_1 g6307_0 gnd netg6307 +X1136 g6505_1 g6505_0 gnd netg6505 +X1137 g5767_1 g5767_0 gnd netg5767 +X1138 g6652_0 g6652_1 gnd netg6652 +X1139 g6291_1 g6291_0 gnd netg6291 +X1140 g5505_1 g5505_2 gnd netg5505 +X1141 x261_0 x261_1 gnd netx261 +X1142 g6172_0 g6172_1 gnd netg6172 +X1143 g5300_1 g5300_0 gnd netg5300 +X1144 g5833_1 g5833_0 gnd netg5833 +X1145 g6612_0 g6612_1 gnd netg6612 +X1146 g4416_1 g4416_0 gnd netg4416 +X1147 g4073_1 g4073_0 gnd netg4073 +X1148 g946_2 g946_1 gnd netg946 +X1149 g7124_0 g7124_1 gnd netg7124 +X1150 g3336_0 g3336_1 g3336_2 gnd netg3336 +X1151 g871_1 g871_2 gnd netg871 +X1152 g3216_0 g3216_2 g3216_1 gnd netg3216 +X1153 g2516_2 g2516_1 gnd netg2516 +X1154 g4011_1 g4011_0 gnd netg4011 +X1155 g3532_1 g3532_0 gnd netg3532 +X1156 g4186_1 g4186_0 gnd netg4186 +X1157 g4274_1 g4274_0 gnd netg4274 +X1158 g2674_1 g2674_2 g2674_0 gnd netg2674 +X1159 g4269_1 g4269_0 gnd netg4269 +X1160 g5229_2 g5229_1 g5229_0 gnd netg5229 +X1161 g7130_0 g7130_1 gnd netg7130 +X1162 g5223_2 g5223_1 g5223_0 gnd netg5223 +X1163 g3574_0 g3574_1 gnd netg3574 +X1164 g3525_0 g3525_1 gnd netg3525 +X1165 g5467_1 g5467_0 gnd netg5467 +X1166 g682_1 g682_0 gnd netg682 +X1167 g1132_0 g1132_1 gnd netg1132 +X1168 g856_2 g856_1 g856_0 gnd netg856 +X1169 g3890_0 g3890_1 gnd netg3890 +X1170 g1256_0 g1256_1 gnd netg1256 +X1171 g4235_1 g4235_0 gnd netg4235 +X1172 g3512_0 g3512_1 gnd netg3512 +X1173 g5077_0 g5077_2 gnd netg5077 +X1174 g868_2 g868_0 g868_1 gnd netg868 +X1175 g1410_0 g1410_1 gnd netg1410 +X1176 g2633_1 g2633_0 gnd netg2633 +X1177 g5000_0 g5000_2 gnd netg5000 +X1178 g6621_0 g6621_1 gnd netg6621 +X1179 g1888_0 g1888_1 gnd netg1888 +X1180 g6650_0 g6650_1 gnd netg6650 +X1181 g7113_0 g7113_1 gnd netg7113 +X1182 g5519_1 g5519_0 gnd netg5519 +X1183 g5920_1 g5920_2 gnd netg5920 +X1184 g886_0 g886_2 gnd netg886 +X1185 g3364_1 g3364_0 gnd netg3364 +X1186 g7271_1 g7271_0 gnd netg7271 +X1187 g5386_0 g5386_1 gnd netg5386 +X1188 g7426_0 g7426_1 gnd netg7426 +X1189 g5469_1 g5469_0 gnd netg5469 +X1190 g6878_0 g6878_1 gnd netg6878 +X1191 g4320_0 g4320_1 gnd netg4320 +X1192 g7140_0 g7140_1 gnd netg7140 +X1193 g1901_1 g1901_0 gnd netg1901 +X1194 g3065_1 g3065_0 gnd netg3065 +X1195 g5513_1 g5513_0 gnd netg5513 +X1196 g4946_2 g4946_0 g4946_1 gnd netg4946 +X1197 g7080_0 g7080_1 gnd netg7080 +X1198 g4439_0 g4439_1 gnd netg4439 +X1199 g3498_1 g3498_0 gnd netg3498 +X1200 g3078_0 g3078_1 gnd netg3078 +X1201 g5658_1 g5658_2 gnd netg5658 +X1202 g2609_2 g2609_1 gnd netg2609 +X1203 g3969_0 g3969_1 gnd netg3969 +X1204 g6699_0 g6699_1 gnd netg6699 +X1205 g1309_1 g1309_0 gnd netg1309 +X1206 g5640_0 g5640_2 gnd netg5640 +X1207 g5056_1 g5056_2 gnd netg5056 +X1208 g3339_2 g3339_1 gnd netg3339 +X1209 g6517_1 g6517_0 gnd netg6517 +X1210 g1257_1 g1257_0 gnd netg1257 +X1211 g5468_0 g5468_1 gnd netg5468 +X1212 g5331_1 g5331_0 gnd netg5331 +X1213 g5768_1 g5768_0 gnd netg5768 +X1214 g5543_1 g5543_0 g5543_2 gnd netg5543 +X1215 g3156_0 g3156_1 g3156_2 gnd netg3156 +X1216 g3905_0 g3905_1 gnd netg3905 +X1217 g3306_1 g3306_2 gnd netg3306 +X1218 g6506_0 g6506_1 gnd netg6506 +X1219 g5356_1 g5356_0 gnd netg5356 +X1220 g916_2 g916_1 gnd netg916 +X1221 g6394_0 g6394_1 gnd netg6394 +X1222 g5015_1 g5015_2 g5015_0 gnd netg5015 +X1223 g6422_1 g6422_0 gnd netg6422 +X1224 g3059_0 g3059_1 gnd netg3059 +X1225 g2811_1 g2811_0 gnd netg2811 +X1226 g3926_0 g3926_1 gnd netg3926 +X1227 g3110_0 g3110_2 g3110_1 gnd netg3110 +X1228 g1889_0 g1889_1 gnd netg1889 +X1229 g6925_0 g6925_1 gnd netg6925 +X1230 g6313_1 g6313_0 gnd netg6313 +X1231 g3055_1 g3055_0 gnd netg3055 +X1232 g4016_1 g4016_0 gnd netg4016 +X1233 g2653_2 g2653_0 gnd netg2653 +X1234 g6518_0 g6518_1 gnd netg6518 +X1235 g6010_0 g6010_1 gnd netg6010 +X1236 g3494_0 g3494_1 gnd netg3494 +X1237 g2928_0 g2928_1 gnd netg2928 +X1238 g4389_2 g4389_0 g4389_1 gnd netg4389 +X1239 g5953_0 g5953_1 gnd netg5953 +X1240 g2837_1 g2837_0 gnd netg2837 +X1241 g6499_2 g6499_0 gnd netg6499 +X1242 g6555_0 g6555_1 gnd netg6555 +X1243 g4341_0 g4341_1 gnd netg4341 +X1244 g3300_1 g3300_2 g3300_0 gnd netg3300 +X1245 g7072_0 g7072_1 gnd netg7072 +X1246 g5646_2 g5646_1 gnd netg5646 +X1247 g3312_1 g3312_2 gnd netg3312 +X1248 g4420_0 g4420_1 gnd netg4420 +X1249 g7253_0 g7253_1 gnd netg7253 +X1250 g6410_1 g6410_0 gnd netg6410 +X1251 g1018_1 g1018_2 g1018_0 gnd netg1018 +X1252 g5813_1 g5813_0 g5813_2 gnd netg5813 +X1253 g4890_2 g4890_1 g4890_0 gnd netg4890 +X1254 g1288_1 g1288_0 gnd netg1288 +X1255 g4310_0 g4310_1 gnd netg4310 +X1256 g5774_0 g5774_1 gnd netg5774 +X1257 g3168_0 g3168_1 g3168_2 gnd netg3168 +X1258 g1951_2 g1951_1 g1951_0 gnd netg1951 +X1259 g2817_1 g2817_0 gnd netg2817 +X1260 g5790_1 g5790_0 gnd netg5790 +X1261 g3159_1 g3159_2 gnd netg3159 +X1262 g3101_0 g3101_1 gnd netg3101 +X1263 g4142_0 g4142_1 gnd netg4142 +X1264 g5359_1 g5359_0 gnd netg5359 +X1265 g4417_0 g4417_1 gnd netg4417 +X1266 g7054_0 g7054_2 g7054_1 gnd netg7054 +X1267 g6508_0 g6508_1 gnd netg6508 +X1268 g6558_0 g6558_1 gnd netg6558 +X1269 g6344_1 g6344_0 gnd netg6344 +X1270 g6615_1 g6615_2 gnd netg6615 +X1271 g7351_0 g7351_1 gnd netg7351 +X1272 g6645_0 g6645_2 g6645_1 gnd netg6645 +X1273 g6984_1 g6984_0 gnd netg6984 +X1274 g2591_0 g2591_1 g2591_2 gnd netg2591 +X1275 g1312_1 g1312_0 gnd netg1312 +X1276 g1070_2 g1070_0 g1070_1 gnd netg1070 +X1277 g5409_1 g5409_0 gnd netg5409 +X1278 g4258_1 g4258_0 gnd netg4258 +X1279 g7170_0 g7170_1 gnd netg7170 +X1280 g7391_1 g7391_2 gnd netg7391 +X1281 g5147_2 g5147_0 gnd netg5147 +X1282 g5585_0 g5585_1 gnd netg5585 +X1283 g7280_0 g7280_1 gnd netg7280 +X1284 g5552_1 g5552_0 gnd netg5552 +X1285 g6534_1 g6534_0 gnd netg6534 +X1286 g6589_0 g6589_1 gnd netg6589 +X1287 g3975_0 g3975_1 gnd netg3975 +X1288 g7234_2 g7234_1 g7234_0 gnd netg7234 +X1289 g4252_1 g4252_0 gnd netg4252 +X1290 g2713_1 g2713_0 g2713_2 gnd netg2713 +X1291 g5966_1 g5966_0 gnd netg5966 +X1292 g7295_1 g7295_0 gnd netg7295 +X1293 g6104_0 g6104_1 gnd netg6104 +X1294 g4371_0 g4371_2 g4371_1 gnd netg4371 +X1295 g6151_1 g6151_0 gnd netg6151 +X1296 g3562_0 g3562_1 gnd netg3562 +X1297 g1372_1 g1372_2 gnd netg1372 +X1298 g5276_0 g5276_1 gnd netg5276 +X1299 g6877_0 g6877_1 gnd netg6877 +X1300 g3001_1 g3001_0 gnd netg3001 +X1301 g6335_0 g6335_1 gnd netg6335 +X1302 g3505_1 g3505_0 gnd netg3505 +X1303 g4753_1 g4753_2 g4753_0 gnd netg4753 +X1304 g5188_2 g5188_1 gnd netg5188 +X1305 g2840_1 g2840_0 gnd netg2840 +X1306 g4187_1 g4187_0 gnd netg4187 +X1307 g3348_1 g3348_0 gnd netg3348 +X1308 g1556_0 g1556_1 gnd netg1556 +X1309 g7422_0 g7422_1 gnd netg7422 +X1310 g6212_1 g6212_0 gnd netg6212 +X1311 g4205_1 g4205_0 gnd netg4205 +X1312 g3426_2 g3426_1 gnd netg3426 +X1313 g4231_0 g4231_1 gnd netg4231 +X1314 g4970_0 g4970_2 g4970_1 gnd netg4970 +X1315 g6700_1 g6700_2 gnd netg6700 +X1316 g4337_0 g4337_1 gnd netg4337 +X1317 g2943_0 g2943_1 gnd netg2943 +X1318 g6230_0 g6230_1 g6230_2 gnd netg6230 +X1319 g4902_2 g4902_0 gnd netg4902 +X1320 x251_0 x251_1 gnd netx251 +X1321 g5301_0 g5301_1 gnd netg5301 +X1322 g7369_1 g7369_0 gnd netg7369 +X1323 g2976_1 g2976_0 gnd netg2976 +X1324 g2621_2 g2621_0 g2621_1 gnd netg2621 +X1325 g6821_1 g6821_0 gnd netg6821 +X1326 g6808_2 g6808_1 g6808_0 gnd netg6808 +X1327 g6993_0 g6993_1 gnd netg6993 +X1328 g5393_1 g5393_0 gnd netg5393 +X1329 g3566_1 g3566_0 gnd netg3566 +X1330 g4441_1 g4441_0 gnd netg4441 +X1331 g2827_0 g2827_1 gnd netg2827 +X1332 g5021_2 g5021_0 gnd netg5021 +X1333 g7010_0 g7010_1 gnd netg7010 +X1334 x42_1 x42_0 gnd netx42 +X1335 g4109_0 g4109_1 gnd netg4109 +X1336 g7387_0 g7387_1 gnd netg7387 +X1337 g3561_0 g3561_1 gnd netg3561 +X1338 g7355_1 g7355_0 gnd netg7355 +X1339 g1514_1 g1514_0 gnd netg1514 +X1340 g3970_0 g3970_1 gnd netg3970 +X1341 g1512_0 g1512_1 gnd netg1512 +X1342 g1379_1 g1379_0 gnd netg1379 +X1343 g3050_0 g3050_1 gnd netg3050 +X1344 g6661_0 g6661_1 gnd netg6661 +X1345 g5535_2 g5535_1 g5535_0 gnd netg5535 +X1346 g2689_0 g2689_1 g2689_2 gnd netg2689 +X1347 g5237_1 g5237_0 gnd netg5237 +X1348 g6676_1 g6676_0 gnd netg6676 +X1349 g4224_0 g4224_1 gnd netg4224 +X1350 g2841_1 g2841_0 gnd netg2841 +X1351 g5426_0 g5426_1 gnd netg5426 +X1352 g7292_1 g7292_0 gnd netg7292 +X1353 g2831_0 g2831_1 gnd netg2831 +X1354 g75_1 g75_0 gnd netg75 +X1355 g4427_0 g4427_1 gnd netg4427 +X1356 g6209_0 g6209_1 gnd netg6209 +X1357 g5962_0 g5962_1 gnd netg5962 +X1358 x12_1 x12_0 gnd netx12 +X1359 g6666_1 g6666_0 gnd netg6666 +X1360 g6133_0 g6133_1 gnd netg6133 +X1361 g7187_0 g7187_1 gnd netg7187 +X1362 g6892_1 g6892_0 gnd netg6892 +X1363 g7078_0 g7078_1 gnd netg7078 +X1364 g1549_1 g1549_0 gnd netg1549 +X1365 g4453_1 g4453_0 gnd netg4453 +X1366 g6734_1 g6734_0 gnd netg6734 +X1367 g5457_1 g5457_0 gnd netg5457 +X1368 g6411_1 g6411_0 gnd netg6411 +X1369 g2453_0 g2453_2 g2453_1 gnd netg2453 +X1370 g6468_0 g6468_1 gnd netg6468 +X1371 g5265_0 g5265_1 gnd netg5265 +X1372 g2803_1 g2803_0 gnd netg2803 +X1373 g4668_1 g4668_0 gnd netg4668 +X1374 g4305_1 g4305_0 gnd netg4305 +X1375 g6036_1 g6036_0 gnd netg6036 +X1376 g7402_0 g7402_1 gnd netg7402 +X1377 g4246_1 g4246_0 gnd netg4246 +X1378 g6273_0 g6273_1 gnd netg6273 +X1379 g6449_0 g6449_1 gnd netg6449 +X1380 g5602_0 g5602_1 gnd netg5602 +X1381 g7417_2 g7417_1 g7417_0 gnd netg7417 +X1382 g4362_2 g4362_1 gnd netg4362 +X1383 g6155_1 g6155_2 g6155_0 gnd netg6155 +X1384 g949_0 g949_2 g949_1 gnd netg949 +X1385 g7290_1 g7290_0 gnd netg7290 +X1386 g7539_1 g7539_0 gnd netg7539 +X1387 g5324_0 g5324_1 gnd netg5324 +X1388 g6543_1 g6543_2 gnd netg6543 +X1389 g3716_0 g3716_1 gnd netg3716 +X1390 g6494_1 g6494_0 gnd netg6494 +X1391 g6837_2 g6837_1 g6837_0 gnd netg6837 +X1392 g6498_1 g6498_0 gnd netg6498 +X1393 g4040_0 g4040_1 gnd netg4040 +X1394 g5074_2 g5074_0 g5074_1 gnd netg5074 +X1395 g6605_0 g6605_1 gnd netg6605 +X1396 g6355_1 g6355_0 gnd netg6355 +X1397 g3048_0 g3048_1 gnd netg3048 +X1398 g6738_2 g6738_1 gnd netg6738 +X1399 g7137_1 g7137_0 gnd netg7137 +X1400 g6197_0 g6197_1 gnd netg6197 +X1401 g4291_0 g4291_1 gnd netg4291 +X1402 g4266_0 g4266_1 gnd netg4266 +X1403 g777_0 g777_2 g777_1 gnd netg777 +X1404 g5427_1 g5427_0 gnd netg5427 +X1405 g3503_0 g3503_1 gnd netg3503 +X1406 g7199_1 g7199_0 gnd netg7199 +X1407 g6251_1 g6251_2 gnd netg6251 +X1408 g4064_0 g4064_1 gnd netg4064 +X1409 g3520_0 g3520_1 gnd netg3520 +X1410 g1937_0 g1937_1 gnd netg1937 +X1411 g1362_1 g1362_0 gnd netg1362 +X1412 g6487_1 g6487_0 gnd netg6487 +X1413 g5481_1 g5481_0 gnd netg5481 +X1414 g4218_1 g4218_0 gnd netg4218 +X1415 g6108_1 g6108_0 gnd netg6108 +X1416 g1429_1 g1429_0 gnd netg1429 +X1417 g3404_2 g3404_1 g3404_0 gnd netg3404 +X1418 g3906_1 g3906_0 gnd netg3906 +X1419 g3435_1 g3435_0 g3435_2 gnd netg3435 +X1420 g1258_1 g1258_0 gnd netg1258 +X1421 g7169_1 g7169_0 gnd netg7169 +X1422 g6308_1 g6308_0 gnd netg6308 +X1423 g3383_0 g3383_2 g3383_1 gnd netg3383 +X1424 g4426_0 g4426_1 gnd netg4426 +X1425 g6512_0 g6512_1 gnd netg6512 +X1426 g4207_0 g4207_1 gnd netg4207 +X1427 g6847_0 g6847_1 g6847_2 gnd netg6847 +X1428 g7390_0 g7390_1 gnd netg7390 +X1429 g4454_1 g4454_0 gnd netg4454 +X1430 g4221_0 g4221_1 gnd netg4221 +X1431 g3972_1 g3972_0 gnd netg3972 +X1432 g6463_0 g6463_1 gnd netg6463 +X1433 g1356_1 g1356_0 gnd netg1356 +X1434 g6675_0 g6675_1 gnd netg6675 +X1435 g7215_1 g7215_0 gnd netg7215 +X1436 g439_2 g439_1 gnd netg439 +X1437 g2462_2 g2462_1 gnd netg2462 +X1438 g1136_1 g1136_0 gnd netg1136 +X1439 g6196_0 g6196_1 gnd netg6196 +X1440 g5294_0 g5294_1 gnd netg5294 +X1441 g4339_1 g4339_0 gnd netg4339 +X1442 g4425_1 g4425_0 gnd netg4425 +X1443 g6728_1 g6728_0 gnd netg6728 +X1444 g6890_0 g6890_1 gnd netg6890 +X1445 g1589_0 g1589_1 gnd netg1589 +X1446 g4248_1 g4248_0 gnd netg4248 +X1447 g3231_1 g3231_2 g3231_0 gnd netg3231 +X1448 g3228_2 g3228_1 g3228_0 gnd netg3228 +X1449 g6872_0 g6872_1 gnd netg6872 +X1450 g4991_0 g4991_2 g4991_1 gnd netg4991 +X1451 g1924_1 g1924_0 gnd netg1924 +X1452 g994_1 g994_0 g994_2 gnd netg994 +X1453 g988_1 g988_2 gnd netg988 +X1454 g6066_0 g6066_1 gnd netg6066 +X1455 g1220_0 g1220_1 gnd netg1220 +X1456 g5983_0 g5983_1 gnd netg5983 +X1457 g6334_1 g6334_0 gnd netg6334 +X1458 g7108_0 g7108_1 gnd netg7108 +X1459 g1237_1 g1237_0 gnd netg1237 +X1460 g620_1 g620_0 gnd netg620 +X1461 g4994_0 g4994_2 gnd netg4994 +X1462 g6588_1 g6588_0 gnd netg6588 +X1463 g5560_2 g5560_1 gnd netg5560 +X1464 x411_1 x411_0 gnd netx411 +X1465 g4107_1 g4107_0 gnd netg4107 +X1466 g5329_1 g5329_0 gnd netg5329 +X1467 g5906_0 g5906_1 g5906_2 gnd netg5906 +X1468 g2807_1 g2807_0 gnd netg2807 +X1469 g7083_1 g7083_0 gnd netg7083 +X1470 g3327_2 g3327_0 g3327_1 gnd netg3327 +X1471 g4939_1 g4939_0 gnd netg4939 +X1472 g997_1 g997_2 g997_0 gnd netg997 +X1473 g2465_1 g2465_2 gnd netg2465 +X1474 g4446_0 g4446_1 gnd netg4446 +X1475 g1304_1 g1304_0 gnd netg1304 +X1476 x252_1 x252_0 gnd netx252 +X1477 g7231_2 g7231_0 gnd netg7231 +X1478 g6488_0 g6488_1 gnd netg6488 +X1479 g3392_2 g3392_0 g3392_1 gnd netg3392 +X1480 g485_0 g485_1 gnd netg485 +X1481 g3530_1 g3530_0 gnd netg3530 +X1482 g4435_1 g4435_0 gnd netg4435 +X1483 g3479_1 g3479_0 gnd netg3479 +X1484 g5875_1 g5875_2 g5875_0 gnd netg5875 +X1485 g3984_1 g3984_0 gnd netg3984 +X1486 x532_0 x532_1 gnd netx532 +X1487 g6039_1 g6039_0 gnd netg6039 +X1488 g6664_0 g6664_1 gnd netg6664 +X1489 g7531_1 g7531_0 gnd netg7531 +X1490 g7105_1 g7105_0 gnd netg7105 +X1491 g2996_1 g2996_0 gnd netg2996 +X1492 g1366_0 g1366_2 g1366_1 gnd netg1366 +X1493 g4307_0 g4307_1 gnd netg4307 +X1494 g3401_0 g3401_1 g3401_2 gnd netg3401 +X1495 g1498_1 g1498_0 gnd netg1498 +X1496 g7384_0 g7384_1 gnd netg7384 +X1497 g5959_0 g5959_1 gnd netg5959 +X1498 g3917_0 g3917_1 gnd netg3917 +X1499 g2946_1 g2946_0 gnd netg2946 +X1500 g2767_1 g2767_0 gnd netg2767 +X1501 g407_0 g407_1 g407_2 gnd netg407 +X1502 g5608_0 g5608_1 gnd netg5608 +X1503 g6822_0 g6822_1 gnd netg6822 +X1504 g678_0 g678_2 gnd netg678 +X1505 g6614_0 g6614_1 gnd netg6614 +X1506 x41_1 x41_0 gnd netx41 +X1507 g877_1 g877_2 gnd netg877 +X1508 g2814_1 g2814_0 gnd netg2814 +X1509 g6009_0 g6009_1 gnd netg6009 +X1510 g7251_0 g7251_1 gnd netg7251 +X1511 g2746_1 g2746_0 gnd netg2746 +X1512 g5566_1 g5566_0 g5566_2 gnd netg5566 +X1513 g7177_1 g7177_2 gnd netg7177 +X1514 g6311_1 g6311_0 gnd netg6311 +X1515 g2926_0 g2926_1 gnd netg2926 +X1516 x531_0 x531_1 gnd netx531 +X1517 g7401_1 g7401_0 gnd netg7401 +X1518 g1233_1 g1233_0 gnd netg1233 +X1519 g5777_0 g5777_1 gnd netg5777 +X1520 g7398_1 g7398_0 gnd netg7398 +X1521 g5887_1 g5887_2 gnd netg5887 +X1522 g3450_1 g3450_2 gnd netg3450 +X1523 g6364_1 g6364_0 gnd netg6364 +X1524 g2954_1 g2954_0 gnd netg2954 +X1525 g6691_1 g6691_0 gnd netg6691 +X1526 g1303_0 g1303_1 gnd netg1303 +X1527 g1155_1 g1155_0 gnd netg1155 +X1528 g5532_2 g5532_1 g5532_0 gnd netg5532 +X1529 g5006_1 g5006_2 gnd netg5006 +X1530 g1994_1 g1994_0 gnd netg1994 +X1531 g5363_0 g5363_1 gnd netg5363 +X1532 g2028_1 g2028_0 gnd netg2028 +X1533 g7090_0 g7090_1 gnd netg7090 +X1534 g2222_1 g2222_0 gnd netg2222 +X1535 g5931_1 g5931_0 gnd netg5931 +X1536 g6973_0 g6973_1 gnd netg6973 +X1537 g4179_1 g4179_2 gnd netg4179 +X1538 g6933_0 g6933_1 gnd netg6933 +X1539 g1383_0 g1383_1 gnd netg1383 +X1540 x301_0 x301_1 gnd netx301 +X1541 g3420_1 g3420_2 gnd netg3420 +X1542 g2771_1 g2771_0 gnd netg2771 +X1543 g517_1 g517_0 gnd netg517 +X1544 g2438_1 g2438_0 g2438_2 gnd netg2438 +X1545 g2233_1 g2233_0 gnd netg2233 +X1546 g5463_1 g5463_0 gnd netg5463 +X1547 g2925_1 g2925_0 gnd netg2925 +X1548 g7126_1 g7126_0 gnd netg7126 +X1549 g6391_1 g6391_0 gnd netg6391 +X1550 g4356_0 g4356_1 gnd netg4356 +X1551 g7537_1 g7537_0 gnd netg7537 +X1552 x152_0 x152_1 gnd netx152 +X1553 g3558_1 g3558_0 gnd netg3558 +X1554 g4270_0 g4270_1 gnd netg4270 +X1555 g7011_1 g7011_0 gnd netg7011 +X1556 g862_2 g862_0 g862_1 gnd netg862 +X1557 g7394_1 g7394_0 gnd netg7394 +X1558 g4440_1 g4440_0 gnd netg4440 +X1559 g6663_0 g6663_1 gnd netg6663 +X1560 g5346_0 g5346_1 gnd netg5346 +X1561 g7538_0 g7538_1 gnd netg7538 +X1562 g2737_1 g2737_2 g2737_0 gnd netg2737 +X1563 g3258_2 g3258_1 g3258_0 gnd netg3258 +X1564 g6187_0 g6187_1 gnd netg6187 +X1565 g1550_0 g1550_1 gnd netg1550 +X1566 g2799_0 g2799_1 gnd netg2799 +X1567 g5263_1 g5263_0 gnd netg5263 +X1568 g7324_2 g7324_1 gnd netg7324 +X1569 g4979_2 g4979_0 g4979_1 gnd netg4979 +X1570 g3571_0 g3571_1 gnd netg3571 +X1571 g4101_1 g4101_0 gnd netg4101 +X1572 g5110_0 g5110_2 g5110_1 gnd netg5110 +X1573 g4935_0 g4935_2 g4935_1 gnd netg4935 +X1574 g7352_0 g7352_1 gnd netg7352 +X1575 g6332_1 g6332_0 gnd netg6332 +X1576 g3476_1 g3476_0 gnd netg3476 +X1577 g3066_1 g3066_0 gnd netg3066 +X1578 g3047_0 g3047_1 gnd netg3047 +X1579 g4015_0 g4015_1 gnd netg4015 +X1580 g2772_1 g2772_0 gnd netg2772 +X1581 g2750_0 g2750_1 gnd netg2750 +X1582 g5683_1 g5683_0 gnd netg5683 +X1583 g2606_2 g2606_0 gnd netg2606 +X1584 g4315_1 g4315_0 gnd netg4315 +X1585 g7386_1 g7386_0 gnd netg7386 +X1586 g6817_1 g6817_0 gnd netg6817 +X1587 g6293_0 g6293_1 gnd netg6293 +X1588 g967_0 g967_2 g967_1 gnd netg967 +X1589 g5985_1 g5985_0 gnd netg5985 +X1590 g1883_2 g1883_1 gnd netg1883 +X1591 g5445_0 g5445_2 g5445_1 gnd netg5445 +X1592 g6456_2 g6456_1 g6456_0 gnd netg6456 +X1593 g7252_1 g7252_0 gnd netg7252 +X1594 g2836_0 g2836_1 gnd netg2836 +X1595 g1226_0 g1226_1 gnd netg1226 +X1596 g4225_0 g4225_1 gnd netg4225 +X1597 g4050_1 g4050_0 gnd netg4050 +X1598 g1357_0 g1357_1 gnd netg1357 +X1599 g6430_2 g6430_0 gnd netg6430 +X1600 g5009_1 g5009_2 gnd netg5009 +X1601 g4289_0 g4289_1 gnd netg4289 +X1602 g696_0 g696_1 g696_2 gnd netg696 +X1603 g2422_1 g2422_0 gnd netg2422 +X1604 g5554_1 g5554_2 g5554_0 gnd netg5554 +X1605 g7173_1 g7173_0 gnd netg7173 +X1606 g6274_2 g6274_0 g6274_1 gnd netg6274 +X1607 g3346_1 g3346_0 gnd netg3346 +X1608 g5314_0 g5314_1 gnd netg5314 +X1609 g5591_1 g5591_0 gnd netg5591 +X1610 g7302_0 g7302_1 gnd netg7302 +X1611 g5462_0 g5462_1 gnd netg5462 +X1612 g4411_1 g4411_0 gnd netg4411 +X1613 g4415_1 g4415_0 gnd netg4415 +X1614 g7024_1 g7024_0 gnd netg7024 +X1615 g4111_0 g4111_1 gnd netg4111 +X1616 g7171_0 g7171_1 gnd netg7171 +X1617 g4251_1 g4251_0 gnd netg4251 +X1618 g4988_2 g4988_0 gnd netg4988 +X1619 g883_1 g883_0 g883_2 gnd netg883 +X1620 g3077_0 g3077_1 gnd netg3077 +X1621 g2582_0 g2582_1 g2582_2 gnd netg2582 +X1622 x222_1 x222_0 gnd netx222 +X1623 g4021_0 g4021_1 gnd netg4021 +X1624 g2843_0 g2843_1 gnd netg2843 +X1625 g4355_1 g4355_0 gnd netg4355 +X1626 g4267_1 g4267_0 gnd netg4267 +X1627 g5299_1 g5299_0 gnd netg5299 +X1628 g3398_0 g3398_1 g3398_2 gnd netg3398 +X1629 g6954_2 g6954_0 gnd netg6954 +X1630 g2171_2 g2171_3 g2171_0 gnd netg2171 +X1631 g6402_1 g6402_0 gnd netg6402 +X1632 g1765_1 g1765_0 gnd netg1765 +X1633 g2444_2 g2444_1 g2444_0 gnd netg2444 +X1634 g6608_1 g6608_0 gnd netg6608 +X1635 g3543_1 g3543_0 gnd netg3543 +X1636 g2368_1 g2368_2 g2368_0 gnd netg2368 +X1637 g2588_2 g2588_0 gnd netg2588 +X1638 g3475_1 g3475_0 gnd netg3475 +X1639 g6041_0 g6041_1 gnd netg6041 +X1640 g2920_0 g2920_1 gnd netg2920 +X1641 g6561_1 g6561_0 gnd netg6561 +X1642 g1015_0 g1015_2 g1015_1 gnd netg1015 +X1643 g5520_0 g5520_1 gnd netg5520 +X1644 x211_0 x211_1 gnd netx211 +X1645 g2776_1 g2776_0 gnd netg2776 +X1646 g6683_0 g6683_1 gnd netg6683 +X1647 g1583_0 g1583_1 gnd netg1583 +X1648 g1219_0 g1219_1 gnd netg1219 +X1649 g6034_0 g6034_1 gnd netg6034 +X1650 g559_1 g559_0 gnd netg559 +X1651 g6417_1 g6417_0 gnd netg6417 +X1652 g6412_1 g6412_0 gnd netg6412 +X1653 g4222_1 g4222_0 gnd netg4222 +X1654 g3377_2 g3377_1 gnd netg3377 +X1655 g6698_1 g6698_0 gnd netg6698 +X1656 g4054_1 g4054_0 gnd netg4054 +X1657 g4262_1 g4262_0 gnd netg4262 +X1658 g5274_1 g5274_0 gnd netg5274 +X1659 g5829_0 g5829_1 gnd netg5829 +X1660 g5454_1 g5454_0 g5454_2 gnd netg5454 +X1661 g1887_1 g1887_0 gnd netg1887 +X1662 g1024_2 g1024_1 g1024_0 gnd netg1024 +X1663 g6654_0 g6654_1 gnd netg6654 +X1664 g4285_1 g4285_0 gnd netg4285 +X1665 g7086_1 g7086_0 gnd netg7086 +X1666 g7372_0 g7372_1 gnd netg7372 +X1667 g1076_2 g1076_1 gnd netg1076 +X1668 g6530_1 g6530_0 gnd netg6530 +X1669 g2392_2 g2392_1 gnd netg2392 +X1670 g7424_1 g7424_0 gnd netg7424 +X1671 g6924_1 g6924_0 gnd netg6924 +X1672 g5121_0 g5121_1 gnd netg5121 +X1673 g5027_1 g5027_2 g5027_0 gnd netg5027 +X1674 g5995_1 g5995_0 gnd netg5995 +X1675 g5033_2 g5033_0 g5033_1 gnd netg5033 +X1676 g7180_2 g7180_1 g7180_0 gnd netg7180 +X1677 g1315_0 g1315_1 gnd netg1315 +X1678 g6174_0 g6174_1 gnd netg6174 +X1679 g2763_1 g2763_0 gnd netg2763 +X1680 g5846_1 g5846_0 gnd netg5846 +X1681 g5700_1 g5700_0 g5700_2 gnd netg5700 +X1682 g3459_2 g3459_0 gnd netg3459 +X1683 g3465_1 g3465_0 gnd netg3465 +X1684 g7348_0 g7348_1 gnd netg7348 +X1685 g5864_1 g5864_0 gnd netg5864 +X1686 g3891_0 g3891_1 gnd netg3891 +X1687 g7339_1 g7339_0 gnd netg7339 +X1688 g5981_1 g5981_0 gnd netg5981 +X1689 g7115_0 g7115_1 gnd netg7115 +X1690 g6670_1 g6670_0 gnd netg6670 +X1691 g2507_1 g2507_2 g2507_0 gnd netg2507 +X1692 g6070_0 g6070_1 gnd netg6070 +X1693 g7256_1 g7256_0 gnd netg7256 +X1694 g4041_1 g4041_0 gnd netg4041 +X1695 x522_0 x522_1 gnd netx522 +X1696 g99_1 g99_0 gnd netg99 +X1697 g5086_0 g5086_2 g5086_1 gnd netg5086 +X1698 g4343_0 g4343_1 gnd netg4343 +X1699 g1587_0 g1587_1 gnd netg1587 +X1700 g3472_1 g3472_0 gnd netg3472 +X1701 g7014_1 g7014_0 gnd netg7014 +X1702 g3186_2 g3186_1 g3186_0 gnd netg3186 +X1703 g1048_0 g1048_2 g1048_1 gnd netg1048 +X1704 g6370_1 g6370_0 gnd netg6370 +X1705 g5214_0 g5214_1 g5214_2 gnd netg5214 +X1706 g6722_0 g6722_2 gnd netg6722 +X1707 g5492_1 g5492_0 gnd netg5492 +X1708 x232_0 x232_1 gnd netx232 +X1709 g6687_2 g6687_1 g6687_3 g6687_0 gnd netg6687 +X1710 g2880_0 g2880_1 gnd netg2880 +X1711 g2594_2 g2594_0 g2594_1 gnd netg2594 +X1712 g6917_0 g6917_1 gnd netg6917 +X1713 x302_1 x302_0 gnd netx302 +X1714 g6044_1 g6044_0 gnd netg6044 +X1715 g1938_0 g1938_1 gnd netg1938 +X1716 g2624_1 g2624_2 g2624_0 gnd netg2624 +X1717 g1877_0 g1877_2 g1877_1 gnd netg1877 +X1718 g5598_0 g5598_1 gnd netg5598 +X1719 g6198_1 g6198_0 gnd netg6198 +X1720 g2231_1 g2231_0 gnd netg2231 +X1721 g2665_0 g2665_1 g2665_2 gnd netg2665 +X1722 g6975_1 g6975_0 gnd netg6975 +X1723 g544_1 g544_0 gnd netg544 +X1724 g4893_1 g4893_0 g4893_2 gnd netg4893 +X1725 g3114_0 g3114_2 g3114_1 gnd netg3114 +X1726 g6927_0 g6927_1 gnd netg6927 +X1727 g3165_1 g3165_2 g3165_0 gnd netg3165 +X1728 g3902_1 g3902_0 gnd netg3902 +X1729 g5153_2 g5153_1 g5153_0 gnd netg5153 +X1730 g5578_0 g5578_1 g5578_2 gnd netg5578 +X1731 g4657_0 g4657_1 g4657_2 gnd netg4657 +X1732 g6288_0 g6288_2 g6288_1 gnd netg6288 +X1733 g82_0 g82_1 gnd netg82 +X1734 g1907_0 g1907_1 gnd netg1907 +X1735 g4953_0 g4953_2 gnd netg4953 +X1736 g6653_1 g6653_0 gnd netg6653 +X1737 g5047_0 g5047_2 gnd netg5047 +X1738 g6164_1 g6164_0 gnd netg6164 +X1739 g5422_1 g5422_0 gnd netg5422 +X1740 g1936_1 g1936_0 gnd netg1936 +X1741 g2498_0 g2498_1 g2498_2 gnd netg2498 +X1742 g2722_2 g2722_0 g2722_1 gnd netg2722 +X1743 g3276_0 g3276_2 g3276_1 gnd netg3276 +X1744 g958_1 g958_2 gnd netg958 +X1745 g5539_1 g5539_0 gnd netg5539 +X1746 g4066_1 g4066_0 gnd netg4066 +X1747 g2769_0 g2769_1 gnd netg2769 +X1748 g6049_0 g6049_1 gnd netg6049 +X1749 g3380_1 g3380_0 g3380_2 gnd netg3380 +X1750 g6007_0 g6007_1 gnd netg6007 +X1751 g4905_2 g4905_1 g4905_0 gnd netg4905 +X1752 g2695_1 g2695_0 g2695_2 gnd netg2695 +X1753 g6552_0 g6552_1 gnd netg6552 +X1754 g3368_2 g3368_1 g3368_0 gnd netg3368 +X1755 g5622_0 g5622_2 gnd netg5622 +X1756 g3318_0 g3318_2 g3318_1 gnd netg3318 +X1757 g2401_1 g2401_0 g2401_2 gnd netg2401 +X1758 g1439_1 g1439_0 gnd netg1439 +X1759 g2232_1 g2232_0 gnd netg2232 +X1760 g6466_0 g6466_1 gnd netg6466 +X1761 g5929_0 g5929_1 gnd netg5929 +X1762 g4319_1 g4319_0 gnd netg4319 +X1763 g3019_1 g3019_0 gnd netg3019 +X1764 g7138_0 g7138_1 gnd netg7138 +X1765 g6262_0 g6262_1 gnd netg6262 +X1766 g3545_0 g3545_1 gnd netg3545 +X1767 g6540_0 g6540_1 gnd netg6540 +X1768 g6964_1 g6964_0 g6964_2 gnd netg6964 +X1769 g1454_0 g1454_1 gnd netg1454 +X1770 g2468_1 g2468_2 g2468_0 gnd netg2468 +X1771 g5915_0 g5915_1 gnd netg5915 +X1772 g5668_2 g5668_0 g5668_1 gnd netg5668 +X1773 g6387_1 g6387_0 gnd netg6387 +X1774 g5923_2 g5923_1 g5923_0 gnd netg5923 +X1775 g2528_1 g2528_0 g2528_2 gnd netg2528 +X1776 g5685_2 g5685_0 g5685_1 gnd netg5685 +X1777 g6934_0 g6934_1 gnd netg6934 +X1778 x321_0 x321_1 gnd netx321 +X1779 g1057_2 g1057_0 g1057_1 gnd netg1057 +X1780 g4292_0 g4292_1 gnd netg4292 +X1781 g2615_0 g2615_2 g2615_1 gnd netg2615 +X1782 g6796_2 g6796_1 g6796_0 gnd netg6796 +X1783 g3567_0 g3567_1 gnd netg3567 +X1784 g1157_0 g1157_1 gnd netg1157 +X1785 g6495_0 g6495_2 g6495_1 gnd netg6495 +X1786 g2346_1 g2346_0 gnd netg2346 +X1787 g2418_0 g2418_2 g2418_1 gnd netg2418 +X1788 g3539_1 g3539_0 gnd netg3539 +X1789 g4044_1 g4044_0 gnd netg4044 +X1790 g2825_0 g2825_1 gnd netg2825 +X1791 g4003_1 g4003_2 g4003_0 gnd netg4003 +X1792 g2395_2 g2395_1 g2395_0 gnd netg2395 +X1793 g3893_0 g3893_1 gnd netg3893 +X1794 g1513_0 g1513_1 gnd netg1513 +X1795 g5677_0 g5677_2 g5677_1 gnd netg5677 +X1796 g5553_0 g5553_1 gnd netg5553 +X1797 g7433_2 g7433_0 g7433_1 gnd netg7433 +X1798 g5861_0 g5861_2 g5861_1 gnd netg5861 +X1799 g6074_1 g6074_0 gnd netg6074 +X1800 g5734_1 g5734_2 gnd netg5734 +X1801 g4190_2 g4190_0 g4190_1 gnd netg4190 +X1802 g3504_1 g3504_0 gnd netg3504 +X1803 g5967_1 g5967_0 gnd netg5967 +X1804 g7000_1 g7000_0 gnd netg7000 +X1805 g5522_2 g5522_0 g5522_1 gnd netg5522 +X1806 g3441_1 g3441_2 gnd netg3441 +X1807 g6535_1 g6535_0 gnd netg6535 +X1808 g6541_1 g6541_0 gnd netg6541 +X1809 g3485_1 g3485_0 gnd netg3485 +X1810 g4617_1 g4617_0 gnd netg4617 +X1811 g1579_1 g1579_0 gnd netg1579 +X1812 g4151_1 g4151_2 g4151_0 gnd netg4151 +X1813 g4213_1 g4213_2 gnd netg4213 +X1814 g6093_2 g6093_1 g6093_0 gnd netg6093 +X1815 g3569_0 g3569_1 gnd netg3569 +X1816 g2800_0 g2800_1 gnd netg2800 +X1817 g5089_0 g5089_2 g5089_1 gnd netg5089 +X1818 g6467_1 g6467_0 gnd netg6467 +X1819 g6856_1 g6856_2 g6856_0 gnd netg6856 +X1820 g7312_2 g7312_0 g7312_1 gnd netg7312 +X1821 g2958_0 g2958_1 gnd netg2958 +X1822 g6327_0 g6327_1 gnd netg6327 +X1823 g4178_1 g4178_0 gnd netg4178 +X1824 g5886_1 g5886_0 gnd netg5886 +X1825 g6315_1 g6315_0 gnd netg6315 +X1826 g2561_2 g2561_1 g2561_0 gnd netg2561 +X1827 g1571_1 g1571_0 gnd netg1571 +X1828 g1435_1 g1435_0 gnd netg1435 +X1829 g991_2 g991_0 gnd netg991 +X1830 g6551_0 g6551_1 gnd netg6551 +X1831 g6374_1 g6374_2 g6374_0 gnd netg6374 +X1832 g2353_0 g2353_1 g2353_2 gnd netg2353 +X1833 g2618_1 g2618_2 gnd netg2618 +X1834 g1253_1 g1253_0 gnd netg1253 +X1835 g2450_0 g2450_1 g2450_2 gnd netg2450 +X1836 g5731_0 g5731_1 g5731_2 gnd netg5731 +X1837 g2627_0 g2627_2 g2627_1 gnd netg2627 +X1838 g3303_1 g3303_2 gnd netg3303 +X1839 g6124_1 g6124_0 g6124_2 gnd netg6124 +X1840 g6893_1 g6893_0 gnd netg6893 +X1841 g3058_0 g3058_1 gnd netg3058 +X1842 g6987_2 g6987_1 g6987_0 gnd netg6987 +X1843 g5036_1 g5036_0 g5036_2 gnd netg5036 +X1844 g1581_0 g1581_1 gnd netg1581 +X1845 g6625_2 g6625_1 g6625_0 gnd netg6625 +X1846 g4448_1 g4448_0 gnd netg4448 +X1847 g955_0 g955_2 g955_1 gnd netg955 +X1848 g3987_0 g3987_1 gnd netg3987 +X1849 g4045_0 g4045_1 gnd netg4045 +X1850 g1932_0 g1932_1 gnd netg1932 +X1851 g3538_1 g3538_0 gnd netg3538 +X1852 g2659_1 g2659_0 g2659_2 gnd netg2659 +X1853 x272_0 x272_1 gnd netx272 +X1854 g2805_0 g2805_1 gnd netg2805 +X1855 g5107_0 g5107_2 g5107_1 gnd netg5107 +X1856 g3918_1 g3918_0 gnd netg3918 +X1857 g6904_1 g6904_0 gnd netg6904 +X1858 g6400_0 g6400_1 gnd netg6400 +X1859 g6515_1 g6515_0 gnd netg6515 +X1860 g2573_2 g2573_1 g2573_0 gnd netg2573 +X1861 g6096_1 g6096_2 gnd netg6096 +X1862 g6829_2 g6829_1 g6829_0 g6829_3 gnd netg6829 +X1863 g5407_1 g5407_0 gnd netg5407 +X1864 g4303_0 g4303_1 gnd netg4303 +X1865 g3321_0 g3321_1 g3321_2 gnd netg3321 +X1866 g895_2 g895_1 g895_0 gnd netg895 +X1867 g6715_0 g6715_1 g6715_2 gnd netg6715 +X1868 x382_1 x382_0 gnd netx382 +X1869 g2600_2 g2600_0 g2600_1 gnd netg2600 +X1870 g3386_1 g3386_2 g3386_0 gnd netg3386 +X1871 g3297_2 g3297_1 g3297_0 gnd netg3297 +X1872 g3527_0 g3527_1 gnd netg3527 +X1873 g7444_1 g7444_0 gnd netg7444 +X1874 g4296_0 g4296_1 gnd netg4296 +X1875 g5593_2 g5593_1 g5593_0 gnd netg5593 +X1876 g2806_1 g2806_0 gnd netg2806 +X1877 g2917_1 g2917_0 gnd netg2917 +X1878 g4985_2 g4985_1 g4985_0 gnd netg4985 +X1879 g4060_0 g4060_1 gnd netg4060 +X1880 g1387_0 g1387_1 g1387_2 gnd netg1387 +X1881 g5003_1 g5003_2 g5003_0 gnd netg5003 +X1882 g2044_0 g2044_1 gnd netg2044 +X1883 g6685_0 g6685_1 gnd netg6685 +X1884 g5387_0 g5387_1 gnd netg5387 +X1885 g1871_2 g1871_1 g1871_0 gnd netg1871 +X1886 g4401_0 g4401_1 gnd netg4401 +X1887 g1865_1 g1865_0 g1865_2 gnd netg1865 +X1888 g4887_1 g4887_2 g4887_0 gnd netg4887 +X1889 g3192_1 g3192_2 g3192_0 gnd netg3192 +X1890 g2471_0 g2471_2 g2471_1 gnd netg2471 +X1891 g6226_1 g6226_0 g6226_2 gnd netg6226 +X1892 g5909_1 g5909_0 g5909_2 gnd netg5909 +X1893 g4764_1 g4764_2 g4764_0 gnd netg4764 +X1894 g4157_0 g4157_2 gnd netg4157 +X1895 g5232_0 g5232_1 gnd netg5232 +X1896 g1137_1 g1137_0 gnd netg1137 +X1897 x282_1 x282_0 gnd netx282 +X1898 g1553_0 g1553_1 gnd netg1553 +X1899 g4667_0 g4667_1 gnd netg4667 +X1900 g1073_1 g1073_0 g1073_2 gnd netg1073 +X1901 g2829_1 g2829_0 gnd netg2829 +X1902 g1042_1 g1042_0 g1042_2 gnd netg1042 +X1903 g6419_0 g6419_1 gnd netg6419 +X1904 g3554_1 g3554_0 gnd netg3554 +X1905 g3474_1 g3474_0 gnd netg3474 +X1906 g6824_1 g6824_0 gnd netg6824 +X1907 g5160_1 g5160_0 g5160_2 gnd netg5160 +X1908 g4781_1 g4781_0 g4781_2 gnd netg4781 +X1909 x441_0 x441_1 gnd netx441 +X1910 g7041_1 g7041_2 g7041_0 gnd netg7041 +X1911 g3502_1 g3502_0 gnd netg3502 +X1912 g5858_0 g5858_1 gnd netg5858 +X1913 g5951_0 g5951_1 gnd netg5951 +X1914 g1433_1 g1433_0 gnd netg1433 +X1915 g6116_0 g6116_2 g6116_1 gnd netg6116 +X1916 g7106_0 g7106_1 gnd netg7106 +X1917 g6193_0 g6193_1 gnd netg6193 +X1918 g6386_1 g6386_0 gnd netg6386 +X1919 g4405_0 g4405_1 gnd netg4405 +X1920 g937_2 g937_0 g937_1 gnd netg937 +X1921 g2347_0 g2347_2 g2347_1 gnd netg2347 +X1922 g3219_1 g3219_2 g3219_0 gnd netg3219 +X1923 g1311_1 g1311_0 gnd netg1311 +X1924 g3054_1 g3054_0 gnd netg3054 +X1925 g964_1 g964_0 g964_2 gnd netg964 +X1926 g6941_1 g6941_0 gnd netg6941 +X1927 g1552_0 g1552_1 gnd netg1552 +X1928 g3222_0 g3222_2 g3222_1 gnd netg3222 +X1929 g6527_0 g6527_1 gnd netg6527 +X1930 g5508_2 g5508_0 g5508_1 gnd netg5508 +X1931 g4095_1 g4095_0 gnd netg4095 +X1932 g898_1 g898_2 g898_0 gnd netg898 +X1933 g1175_1 g1175_0 gnd netg1175 +X1934 g6478_1 g6478_2 g6478_0 gnd netg6478 +X1935 g7357_1 g7357_0 gnd netg7357 +X1936 g7343_1 g7343_0 gnd netg7343 +X1937 g919_2 g919_1 g919_0 gnd netg919 +X1938 g2716_1 g2716_0 g2716_2 gnd netg2716 +X1939 g3138_0 g3138_2 g3138_1 gnd netg3138 +X1940 g1096_0 g1096_1 gnd netg1096 +X1941 g4046_0 g4046_1 gnd netg4046 +X1942 g7216_1 g7216_0 gnd netg7216 +X1943 g4399_1 g4399_0 gnd netg4399 +X1944 g7104_0 g7104_1 gnd netg7104 +X1945 x71_0 x71_1 gnd netx71 +X1946 g3264_0 g3264_1 g3264_2 gnd netg3264 +X1947 g5194_2 g5194_0 g5194_1 gnd netg5194 +X1948 g4154_1 g4154_2 gnd netg4154 +X1949 g6051_1 g6051_0 gnd netg6051 +X1950 g5954_1 g5954_0 gnd netg5954 +X1951 g3542_1 g3542_0 gnd netg3542 +X1952 g6883_1 g6883_0 gnd netg6883 +X1953 g1844_3 g1844_1 g1844_2 gnd netg1844 +X1954 g4312_1 g4312_0 gnd netg4312 +X1955 x351_0 x351_1 gnd netx351 +X1956 g3347_1 g3347_0 gnd netg3347 +X1957 g6932_1 g6932_0 gnd netg6932 +X1958 g681_1 g681_0 gnd netg681 +X1959 g7441_1 g7441_0 gnd netg7441 +X1960 g1283_0 g1283_1 gnd netg1283 +X1961 g3309_0 g3309_2 g3309_1 gnd netg3309 +X1962 g7017_0 g7017_1 gnd netg7017 +X1963 g6637_1 g6637_0 g6637_2 gnd netg6637 +X1964 g7291_1 g7291_0 gnd netg7291 +X1965 g2374_2 g2374_0 g2374_1 gnd netg2374 +X1966 g3921_1 g3921_0 gnd netg3921 +X1967 g1229_0 g1229_1 gnd netg1229 +X1968 x521_1 x521_0 gnd netx521 +X1969 x182_0 x182_1 gnd netx182 +X1970 g7134_2 g7134_0 g7134_1 gnd netg7134 +X1971 g6360_0 g6360_1 gnd netg6360 +X1972 g2638_0 g2638_2 g2638_1 gnd netg2638 +X1973 g6712_1 g6712_0 g6712_2 gnd netg6712 +X1974 g1021_0 g1021_2 g1021_1 gnd netg1021 +X1975 g5485_1 g5485_0 gnd netg5485 +X1976 g2386_1 g2386_2 g2386_0 gnd netg2386 +X1977 g5413_1 g5413_0 gnd netg5413 +X1978 g2997_1 g2997_0 gnd netg2997 +X1979 g1903_0 g1903_1 gnd netg1903 +X1980 g2662_2 g2662_1 g2662_0 gnd netg2662 +X1981 g5465_1 g5465_0 gnd netg5465 +X1982 g3395_0 g3395_1 g3395_2 gnd netg3395 +X1983 g6557_1 g6557_0 gnd netg6557 +X1984 g2698_2 g2698_0 g2698_1 gnd netg2698 +X1985 g7007_1 g7007_0 gnd netg7007 +X1986 g4255_0 g4255_1 gnd netg4255 +X1987 g7274_0 g7274_1 gnd netg7274 +X1988 g2734_2 g2734_1 gnd netg2734 +X1989 g859_2 g859_1 g859_0 gnd netg859 +X1990 g1221_1 g1221_0 gnd netg1221 +X1991 g4105_1 g4105_0 gnd netg4105 +X1992 g6421_1 g6421_0 gnd netg6421 +X1993 g7122_0 g7122_1 gnd netg7122 +X1994 g4282_1 g4282_0 gnd netg4282 +X1995 g3052_0 g3052_1 gnd netg3052 +X1996 g3120_0 g3120_2 g3120_1 gnd netg3120 +X1997 g2495_0 g2495_1 g2495_2 gnd netg2495 +X1998 g5323_0 g5323_1 gnd netg5323 +X1999 x241_0 x241_1 gnd netx241 +X2000 g1114_0 g1114_1 gnd netg1114 +X2001 g2630_2 g2630_0 g2630_1 gnd netg2630 +X2002 x112_1 x112_0 gnd netx112 +X2003 g5719_1 g5719_2 gnd netg5719 +X2004 g3234_2 g3234_1 g3234_0 gnd netg3234 +X2005 g5836_2 g5836_1 g5836_0 gnd netg5836 +X2006 g7360_2 g7360_0 g7360_1 gnd netg7360 +X2007 g2459_2 g2459_1 g2459_0 gnd netg2459 +X2008 g3352_0 g3352_2 g3352_1 gnd netg3352 +X2009 g5098_2 g5098_1 g5098_0 gnd netg5098 +X2010 g7100_0 g7100_1 gnd netg7100 +X2011 g5115_1 g5115_0 g5115_2 gnd netg5115 +X2012 g1263_1 g1263_0 gnd netg1263 +X2013 x142_1 x142_0 gnd netx142 +X2014 g3064_1 g3064_0 gnd netg3064 +X2015 g5062_0 g5062_1 g5062_2 gnd netg5062 +X2016 g7075_1 g7075_0 gnd netg7075 +X2017 g3095_1 g3095_0 gnd netg3095 +X2018 g4419_1 g4419_0 gnd netg4419 +X2019 g2777_1 g2777_0 gnd netg2777 +X2020 g928_0 g928_1 g928_2 gnd netg928 +X2021 g6811_2 g6811_0 g6811_1 gnd netg6811 +X2022 g934_0 g934_2 g934_1 gnd netg934 +X2023 g5118_1 g5118_0 gnd netg5118 +X2024 g4164_1 g4164_0 g4164_2 gnd netg4164 +X2025 x271_1 x271_0 gnd netx271 +X2026 g5600_0 g5600_1 gnd netg5600 +X2027 g1551_1 g1551_0 gnd netg1551 +X2028 g2597_1 g2597_0 g2597_2 gnd netg2597 +X2029 g3084_1 g3084_0 gnd netg3084 +X2030 g5661_1 g5661_2 g5661_0 gnd netg5661 +X2031 g2377_0 g2377_2 g2377_1 gnd netg2377 +X2032 x442_1 x442_0 gnd netx442 +X2033 g6607_1 g6607_0 gnd netg6607 +X2034 g1365_0 g1365_1 gnd netg1365 +X2035 g2725_0 g2725_1 g2725_2 gnd netg2725 +X2036 g5728_1 g5728_2 g5728_0 gnd netg5728 +X2037 g5616_1 g5616_0 g5616_2 gnd netg5616 +X2038 g7018_1 g7018_0 gnd netg7018 +X2039 g7370_1 g7370_0 gnd netg7370 +X2040 g3279_1 g3279_2 gnd netg3279 +X2041 g6523_1 g6523_0 gnd netg6523 +X2042 g3342_1 g3342_2 g3342_0 gnd netg3342 +X2043 g6445_0 g6445_1 gnd netg6445 +X2044 g7184_0 g7184_1 gnd netg7184 +X2045 g6063_1 g6063_0 gnd netg6063 +X2046 g5664_0 g5664_2 g5664_1 gnd netg5664 +X2047 g3273_1 g3273_0 g3273_2 gnd netg3273 +X2048 g3246_0 g3246_2 g3246_1 gnd netg3246 +X2049 x111_1 x111_0 gnd netx111 +X2050 x551_0 x551_1 gnd netx551 +X2051 g5351_1 g5351_0 gnd netg5351 +X2052 g5588_1 g5588_0 gnd netg5588 +X2053 g4130_1 g4130_0 gnd netg4130 +X2054 g2603_1 g2603_2 g2603_0 gnd netg2603 +X2055 g1517_1 g1517_0 gnd netg1517 +X2056 g3267_0 g3267_1 g3267_2 gnd netg3267 +X2057 g4012_0 g4012_1 gnd netg4012 +X2058 g6556_0 g6556_1 gnd netg6556 +X2059 g3162_0 g3162_1 g3162_2 gnd netg3162 +X2060 g4271_1 g4271_0 gnd netg4271 +X2061 g3709_0 g3709_3 g3709_2 g3709_1 gnd netg3709 +X2062 g6562_0 g6562_1 gnd netg6562 +X2063 g1927_0 g1927_1 gnd netg1927 +X2064 g5852_2 g5852_0 g5852_1 gnd netg5852 +X2065 g6802_1 g6802_0 g6802_2 gnd netg6802 +X2066 g5226_0 g5226_2 g5226_1 gnd netg5226 +X2067 g6951_1 g6951_0 g6951_2 gnd netg6951 +X2068 g904_2 g904_1 g904_0 gnd netg904 +X2069 g1995_2 g1995_0 g1995_1 gnd netg1995 +X2070 g5068_1 g5068_0 g5068_2 gnd netg5068 +X2071 g5549_2 g5549_1 g5549_0 gnd netg5549 +X2072 g5243_0 g5243_1 gnd netg5243 +X2073 g3090_2 g3090_1 g3090_0 gnd netg3090 +X2074 g6745_2 g6745_0 g6745_1 gnd netg6745 +X2075 g6086_1 g6086_0 gnd netg6086 +X2076 g5474_1 g5474_0 gnd netg5474 +X2077 g901_2 g901_0 g901_1 gnd netg901 +X2078 g3171_2 g3171_0 g3171_1 gnd netg3171 +X2079 g5385_0 g5385_1 gnd netg5385 +X2080 g1012_0 g1012_2 g1012_1 gnd netg1012 +X2081 g982_2 g982_1 g982_0 gnd netg982 +X2082 g1079_0 g1079_2 g1079_1 gnd netg1079 +X2083 g3126_0 g3126_1 g3126_2 gnd netg3126 +X2084 g6080_0 g6080_1 gnd netg6080 +X2085 g5139_2 g5139_1 g5139_0 gnd netg5139 +X2086 g5486_1 g5486_0 gnd netg5486 +X2087 g7301_1 g7301_0 gnd netg7301 +X2088 g4167_0 g4167_2 g4167_1 gnd netg4167 +X2089 g1310_1 g1310_0 gnd netg1310 +X2090 g7174_1 g7174_0 gnd netg7174 +X2091 g5694_1 g5694_2 g5694_0 gnd netg5694 +X2092 g3249_1 g3249_0 g3249_2 gnd netg3249 +X2093 g5697_0 g5697_1 g5697_2 gnd netg5697 +X2094 g943_0 g943_2 g943_1 gnd netg943 +X2095 g6898_0 g6898_1 gnd netg6898 +X2096 g6109_1 g6109_2 gnd netg6109 +X2097 x552_0 x552_1 gnd netx552 +X2098 g3507_0 g3507_1 gnd netg3507 +X2099 g6389_0 g6389_1 gnd netg6389 +X2100 g1574_0 g1574_1 gnd netg1574 +X2101 g5332_1 g5332_0 gnd netg5332 +X2102 g3536_1 g3536_0 gnd netg3536 +X2103 g2564_2 g2564_1 gnd netg2564 +X2104 g4374_0 g4374_1 g4374_2 gnd netg4374 +X2105 g7109_2 g7109_1 g7109_0 gnd netg7109 +X2106 g4421_1 g4421_0 gnd netg4421 +X2107 g2415_2 g2415_1 g2415_0 gnd netg2415 +X2108 g5041_0 g5041_1 g5041_2 gnd netg5041 +X2109 g2570_1 g2570_2 g2570_0 gnd netg2570 +X2110 g5867_2 g5867_0 g5867_1 gnd netg5867 +X2111 g6879_1 g6879_0 gnd netg6879 +X2112 g6876_0 g6876_1 gnd netg6876 +X2113 g5725_1 g5725_0 g5725_2 gnd netg5725 +X2114 g1942_0 g1942_1 g1942_2 gnd netg1942 +X2115 g3183_0 g3183_1 g3183_2 gnd netg3183 +X2116 g4263_1 g4263_0 gnd netg4263 +X2117 g7425_0 g7425_1 gnd netg7425 +X2118 g1508_0 g1508_1 gnd netg1508 +X2119 g1558_0 g1558_1 gnd netg1558 +X2120 g5434_2 g5434_0 g5434_1 gnd netg5434 +X2121 g7203_2 g7203_1 g7203_0 gnd netg7203 +X2122 g7341_1 g7341_0 gnd netg7341 +X2123 g2804_0 g2804_1 gnd netg2804 +X2124 g7119_1 g7119_0 g7119_2 gnd netg7119 +X2125 g4349_1 g4349_0 gnd netg4349 +X2126 g4260_0 g4260_1 gnd netg4260 +X2127 g6528_1 g6528_0 gnd netg6528 +X2128 g7264_1 g7264_0 gnd netg7264 +X2129 g6905_3 g6905_2 gnd netg6905 +X2130 g7084_1 g7084_0 gnd netg7084 +X2131 g4973_0 g4973_2 g4973_1 gnd netg4973 +X2132 g2656_1 g2656_0 g2656_2 gnd netg2656 +X2133 g6054_1 g6054_0 gnd netg6054 +X2134 g5945_2 g5945_1 g5945_0 gnd netg5945 +X2135 g7207_1 g7207_0 gnd netg7207 +X2136 g3899_0 g3899_1 gnd netg3899 +X2137 g889_2 g889_1 g889_0 gnd netg889 +X2138 g5989_0 g5989_1 gnd netg5989 +X2139 g2924_1 g2924_0 gnd netg2924 +X2140 g7176_1 g7176_0 gnd netg7176 +X2141 g7200_2 g7200_1 g7200_0 gnd netg7200 +X2142 g1159_0 g1159_1 gnd netg1159 +X2143 g1121_0 g1121_1 gnd netg1121 +X2144 g5012_0 g5012_1 g5012_2 gnd netg5012 +X2145 g4896_2 g4896_1 g4896_0 gnd netg4896 +X2146 g2832_1 g2832_0 gnd netg2832 +X2147 g976_2 g976_0 g976_1 gnd netg976 +X2148 g2866_0 g2866_1 gnd netg2866 +X2149 g2027_1 g2027_0 gnd netg2027 +X2150 g7197_0 g7197_1 gnd netg7197 +X2151 g2942_0 g2942_1 gnd netg2942 +X2152 x341_1 x341_0 gnd netx341 +X2153 g6384_0 g6384_1 gnd netg6384 +X2154 g7309_1 g7309_0 g7309_2 gnd netg7309 +X2155 g3560_1 g3560_0 gnd netg3560 +X2156 g1511_1 g1511_0 gnd netg1511 +X2157 g7327_2 g7327_0 g7327_1 gnd netg7327 +X2158 g4346_0 g4346_1 g4346_2 gnd netg4346 +X2159 g6299_0 g6299_1 gnd netg6299 +X2160 g5529_2 g5529_0 g5529_1 gnd netg5529 +X2161 g3100_0 g3100_1 gnd netg3100 +X2162 g6223_0 g6223_2 g6223_1 gnd netg6223 +X2163 g6247_1 g6247_2 g6247_0 gnd netg6247 +X2164 g3389_2 g3389_1 g3389_0 gnd netg3389 +X2165 g7009_1 g7009_0 gnd netg7009 +X2166 g4259_1 g4259_0 gnd netg4259 +X2167 x451_0 x451_1 gnd netx451 +X2168 g1085_0 g1085_1 gnd netg1085 +X2169 g705_4 g705_6 g705_3 g705_2 g705_0 gnd netg705 +X2170 g2013_4 g2013_5 g2013_2 g2013_1 g2013_3 gnd netg2013 +X2171 g6668_1 g6668_0 gnd netg6668 +X2172 g5414_1 g5414_0 gnd netg5414 +X2173 g3177_1 g3177_2 gnd netg3177 +X2174 x202_0 x202_1 gnd netx202 +X2175 g7431_1 g7431_0 gnd netg7431 +X2176 g5484_0 g5484_1 gnd netg5484 +X2177 g5855_0 g5855_1 gnd netg5855 +X2178 g6884_0 g6884_1 gnd netg6884 +X2179 g6361_0 g6361_1 gnd netg6361 +X2180 g7356_0 g7356_1 gnd netg7356 +X2181 g5440_0 g5440_1 g5440_2 gnd netg5440 +X2182 g2677_2 g2677_1 gnd netg2677 +X2183 g6189_0 g6189_1 gnd netg6189 +X2184 g7375_2 g7375_1 g7375_0 gnd netg7375 +X2185 g1027_1 g1027_2 g1027_0 gnd netg1027 +X2186 g812_3 g812_1 g812_2 g812_0 gnd netg812 +X2187 g1054_1 g1054_0 g1054_2 gnd netg1054 +X2188 g5575_1 g5575_2 g5575_0 gnd netg5575 +X2189 g7225_1 g7225_0 g7225_2 gnd netg7225 +X2190 g6258_1 g6258_0 gnd netg6258 +X2191 g7060_2 g7060_0 g7060_1 gnd netg7060 +X2192 g2474_0 g2474_1 g2474_2 gnd netg2474 +X2193 g6161_1 g6161_0 gnd netg6161 +X2194 g4350_1 g4350_0 gnd netg4350 +X2195 g4899_2 g4899_1 g4899_0 gnd netg4899 +X2196 x32_0 x32_1 gnd netx32 +X2197 g7540_0 g7540_1 gnd netg7540 +X2198 g1554_0 g1554_1 gnd netg1554 +X2199 g5326_1 g5326_0 gnd netg5326 +X2200 g5150_2 g5150_0 g5150_1 gnd netg5150 +X2201 g2809_0 g2809_1 gnd netg2809 +X2202 g6162_0 g6162_1 gnd netg6162 +X2203 g5451_2 g5451_0 g5451_1 gnd netg5451 +X2204 g3141_1 g3141_2 g3141_0 gnd netg3141 +X2205 g3943_1 g3943_3 g3943_0 g3943_2 gnd netg3943 +X2206 g5080_1 g5080_0 g5080_2 gnd netg5080 +X2207 g3965_1 g3965_0 g3965_2 gnd netg3965 +X2208 g5053_1 g5053_0 g5053_2 gnd netg5053 +X2209 g6217_2 g6217_0 g6217_1 gnd netg6217 +X2210 g6853_0 g6853_2 g6853_1 gnd netg6853 +X2211 g4639_0 g4639_2 g4639_1 gnd netg4639 +X2212 g1917_1 g1917_0 gnd netg1917 +X2213 x181_1 x181_0 gnd netx181 +X2214 g6152_1 g6152_0 gnd netg6152 +X2215 g6121_0 g6121_2 g6121_1 gnd netg6121 +X2216 g5746_1 g5746_2 g5746_0 gnd netg5746 +X2217 g3123_1 g3123_2 gnd netg3123 +X2218 g1468_0 g1468_1 g1468_4 g1468_3 g1468_5 gnd netg1468 +X2219 g1774_1 g1774_2 g1774_3 g1774_0 gnd netg1774 +X2220 g4358_0 g4358_1 gnd netg4358 +X2221 g6237_0 g6237_1 g6237_2 gnd netg6237 +X2222 g4619_2 g4619_1 gnd netg4619 +X2223 g5092_0 g5092_2 g5092_1 gnd netg5092 +X2224 g3240_2 g3240_1 g3240_0 gnd netg3240 +X2225 g2313_1 g2313_0 gnd netg2313 +X2226 g4434_1 g4434_0 gnd netg4434 +X2227 g6300_2 g6300_1 g6300_0 gnd netg6300 +X2228 g1908_1 g1908_0 gnd netg1908 +X2229 g1572_0 g1572_1 gnd netg1572 +X2230 g952_2 g952_0 g952_1 gnd netg952 +X2231 g5477_0 g5477_1 gnd netg5477 +X2232 g2480_2 g2480_1 g2480_0 gnd netg2480 +X2233 g4413_1 g4413_0 gnd netg4413 +X2234 g5936_1 g5936_0 g5936_2 gnd netg5936 +X2235 g2510_0 g2510_2 g2510_1 gnd netg2510 +X2236 g2867_1 g2867_2 g2867_0 gnd netg2867 +X2237 g6140_1 g6140_0 gnd netg6140 +X2238 g6188_0 g6188_1 gnd netg6188 +X2239 g1306_0 g1306_1 gnd netg1306 +X2240 g6127_1 g6127_2 gnd netg6127 +X2241 g1434_1 g1434_0 gnd netg1434 +X2242 g5315_0 g5315_1 gnd netg5315 +X2243 g6314_1 g6314_0 gnd netg6314 +X2244 g7363_2 g7363_0 g7363_1 gnd netg7363 +X2245 g3285_2 g3285_0 g3285_1 gnd netg3285 +X2246 g3243_1 g3243_2 g3243_0 gnd netg3243 +X2247 g1036_2 g1036_0 gnd netg1036 +X2248 g3147_1 g3147_2 g3147_0 gnd netg3147 +X2249 g3447_1 g3447_2 g3447_0 gnd netg3447 +X2250 g7245_2 g7245_0 g7245_1 gnd netg7245 +X2251 g5125_0 g5125_2 g5125_1 gnd netg5125 +X2252 x262_1 x262_0 gnd netx262 +X2253 g5271_1 g5271_0 gnd netg5271 +X2254 g7012_1 g7012_0 gnd netg7012 +X2255 g7242_1 g7242_2 g7242_0 gnd netg7242 +X2256 g6471_2 g6471_1 g6471_0 gnd netg6471 +X2257 g6793_1 g6793_2 g6793_0 gnd netg6793 +X2258 g7051_0 g7051_2 g7051_1 gnd netg7051 +X2259 g6658_1 g6658_0 gnd netg6658 +X2260 g7255_0 g7255_1 gnd netg7255 +X2261 g1361_0 g1361_1 gnd netg1361 +X2262 x311_1 x311_0 gnd netx311 +X2263 g6686_0 g6686_1 gnd netg6686 +X2264 g925_2 g925_0 g925_1 gnd netg925 +X2265 g6799_0 g6799_2 g6799_1 gnd netg6799 +X2266 g6144_2 g6144_1 g6144_0 gnd netg6144 +X2267 x331_0 x331_1 gnd netx331 +X2268 g3135_1 g3135_0 g3135_2 gnd netg3135 +X2269 g7527_0 g7527_1 gnd netg7527 +X2270 g6524_1 g6524_0 gnd netg6524 +X2271 g3559_0 g3559_1 gnd netg3559 +X2272 g1555_0 g1555_1 gnd netg1555 +X2273 g940_2 g940_1 g940_0 gnd netg940 +X2274 g5487_1 g5487_0 gnd netg5487 +X2275 g5412_0 g5412_1 gnd netg5412 +X2276 g567_1 g567_0 g567_2 gnd netg567 +X2277 x561_1 x561_0 gnd netx561 +X2278 g5716_0 g5716_2 g5716_1 gnd netg5716 +X2279 g1302_0 g1302_1 gnd netg1302 +X2280 g7404_1 g7404_0 gnd netg7404 +X2281 g3371_2 g3371_1 g3371_0 gnd netg3371 +X2282 g2241_1 g2241_0 g2241_2 gnd netg2241 +X2283 g6509_0 g6509_1 gnd netg6509 +X2284 g4943_2 g4943_1 g4943_0 gnd netg4943 +X2285 g6310_0 g6310_1 gnd netg6310 +X2286 g6085_1 g6085_0 gnd netg6085 +X2287 g1438_0 g1438_1 gnd netg1438 +X2288 g5778_1 g5778_0 gnd netg5778 +X2289 g7414_0 g7414_2 g7414_1 gnd netg7414 +X2290 g7237_2 g7237_0 g7237_1 gnd netg7237 +X2291 g3150_1 g3150_2 g3150_0 gnd netg3150 +X2292 g7153_1 g7153_0 g7153_2 gnd netg7153 +X2293 g1520_1 g1520_0 gnd netg1520 +X2294 g5722_2 g5722_1 g5722_0 gnd netg5722 +X2295 g1497_1 g1497_0 gnd netg1497 +X2296 g4447_0 g4447_1 gnd netg4447 +X2297 g5843_2 g5843_1 g5843_0 gnd netg5843 +X2298 g98_0 g98_1 gnd netg98 +X2299 g5521_0 g5521_1 gnd netg5521 +X2300 g2612_1 g2612_2 g2612_0 gnd netg2612 +X2301 g7428_1 g7428_2 g7428_0 gnd netg7428 +X2302 g1853_2 g1853_1 g1853_0 gnd netg1853 +X2303 g7027_2 g7027_1 gnd netg7027 +X2304 g2752_0 g2752_3 g2752_2 g2752_1 gnd netg2752 +X2305 g4217_1 g4217_0 gnd netg4217 +X2306 g5563_0 g5563_2 g5563_1 gnd netg5563 +X2307 g2728_0 g2728_1 g2728_2 gnd netg2728 +X2308 g7336_0 g7336_2 g7336_1 gnd netg7336 +X2309 g3060_1 g3060_0 gnd netg3060 +X2310 g6453_1 g6453_0 g6453_2 gnd netg6453 +X2311 g7193_1 g7193_0 g7193_2 gnd netg7193 +X2312 g5917_1 g5917_2 g5917_0 gnd netg5917 +X2313 g4117_0 g4117_3 g4117_1 g4117_2 gnd netg4117 +X2314 g2686_1 g2686_0 g2686_2 gnd netg2686 +X2315 g5643_2 g5643_0 g5643_1 gnd netg5643 +X2316 g4357_0 g4357_1 gnd netg4357 +X2317 g3213_2 g3213_1 gnd netg3213 +X2318 x51_1 x51_0 gnd netx51 +X2319 x151_0 x151_1 gnd netx151 +X2320 g6995_0 g6995_1 gnd netg6995 +X2321 g4423_0 g4423_1 gnd netg4423 +X2322 g6537_1 g6537_0 gnd netg6537 +X2323 g6560_1 g6560_0 gnd netg6560 +X2324 g7015_1 g7015_0 gnd netg7015 +X2325 g3086_1 g3086_2 g3086_0 gnd netg3086 +X2326 g6396_1 g6396_0 gnd netg6396 +X2327 g5710_2 g5710_0 g5710_1 gnd netg5710 +X2328 g5044_1 g5044_0 g5044_2 gnd netg5044 +X2329 g5834_1 g5834_0 gnd netg5834 +X2330 g5871_2 g5871_0 gnd netg5871 +X2331 g6850_1 g6850_0 g6850_2 gnd netg6850 +X2332 g2023_2 g2023_3 g2023_1 gnd netg2023 +X2333 g1940_0 g1940_1 gnd netg1940 +X2334 g2549_0 g2549_1 g2549_2 gnd netg2549 +X2335 g1030_1 g1030_2 gnd netg1030 +X2336 g2070_1 g2070_0 gnd netg2070 +X2337 g1478_0 g1478_1 gnd netg1478 +X2338 g4666_1 g4666_0 gnd netg4666 +X2339 g4625_1 g4625_0 gnd netg4625 +X2340 g3914_0 g3914_1 gnd netg3914 +X2341 g7321_0 g7321_2 g7321_1 gnd netg7321 +X2342 g5780_1 g5780_2 gnd netg5780 +X2343 g6318_2 g6318_0 g6318_1 g6318_3 gnd netg6318 +X2344 g1060_2 g1060_3 g1060_5 g1060_4 g1060_1 g1060_0 gnd netg1060 +X2345 g3407_1 g3407_2 g3407_0 gnd netg3407 +X2346 g5083_0 g5083_1 g5083_2 gnd netg5083 +X2347 g5489_0 g5489_1 gnd netg5489 +X2348 g3270_0 g3270_1 g3270_2 gnd netg3270 +X2349 g7421_1 g7421_0 gnd netg7421 +X2350 x472_1 x472_0 gnd netx472 +X2351 g3947_0 g3947_1 g3947_2 gnd netg3947 +X2352 g1897_0 g1897_1 gnd netg1897 +X2353 g5903_1 g5903_0 g5903_2 gnd netg5903 +X2354 g4931_0 g4931_3 g4931_1 g4931_2 gnd netg4931 +X2355 g7033_0 g7033_1 g7033_4 g7033_3 gnd netg7033 +X2356 g6826_0 g6826_1 gnd netg6826 +X2357 g5649_0 g5649_2 g5649_1 gnd netg5649 +X2358 g3526_0 g3526_1 gnd netg3526 +X2359 g4967_1 g4967_2 g4967_0 gnd netg4967 +X2360 g1066_0 g1066_1 g1066_2 gnd netg1066 +X2361 g5707_1 g5707_0 g5707_2 gnd netg5707 +X2362 g7088_0 g7088_1 gnd netg7088 +X2363 g5912_2 g5912_0 g5912_1 gnd netg5912 +X2364 g5942_2 g5942_1 g5942_0 gnd netg5942 +X2365 g4940_2 g4940_0 g4940_1 gnd netg4940 +X2366 g2756_0 g2756_2 g2756_1 gnd netg2756 +X2367 g3444_1 g3444_0 g3444_2 gnd netg3444 +X2368 g4183_0 g4183_1 g4183_2 gnd netg4183 +X2369 g1536_1 g1536_0 gnd netg1536 +X2370 g1006_2 g1006_0 g1006_1 gnd netg1006 +X2371 g2938_1 g2938_0 gnd netg2938 +X2372 g4964_1 g4964_2 g4964_0 gnd netg4964 +X2373 g2848_1 g2848_0 gnd netg2848 +X2374 g1101_1 g1101_0 gnd netg1101 +X2375 g1458_1 g1458_0 gnd netg1458 +X2376 g5095_2 g5095_1 g5095_0 gnd netg5095 +X2377 g3483_1 g3483_0 gnd netg3483 +X2378 g4188_0 g4188_1 gnd netg4188 +X2379 g3002_1 g3002_0 gnd netg3002 +X2380 g5464_1 g5464_0 gnd netg5464 +X2381 g2522_2 g2522_1 g2522_0 gnd netg2522 +X2382 g1330_6 g1330_5 g1330_4 g1330_0 g1330_3 g1330_1 gnd netg1330 +X2383 g5272_0 g5272_1 gnd netg5272 +X2384 g5761_0 g5761_1 g5761_2 gnd netg5761 +X2385 g1152_0 g1152_1 gnd netg1152 +X2386 g7411_0 g7411_1 gnd netg7411 +X2387 g1120_1 g1120_0 gnd netg1120 +X2388 g5881_2 g5881_1 g5881_0 gnd netg5881 +X2389 x541_1 x541_0 gnd netx541 +X2390 g5894_1 g5894_2 g5894_0 gnd netg5894 +X2391 g6269_0 g6269_2 g6269_1 gnd netg6269 +X2392 g6990_1 g6990_2 g6990_0 gnd netg6990 +X2393 g7366_0 g7366_2 g7366_1 gnd netg7366 +X2394 g7158_1 g7158_2 g7158_0 gnd netg7158 +X2395 g5220_0 g5220_2 g5220_1 gnd netg5220 +X2396 g3255_2 g3255_1 g3255_0 gnd netg3255 +X2397 g1344_0 g1344_1 g1344_3 g1344_2 g1344_5 g1344_4 gnd netg1344 +X2398 g5926_1 g5926_2 g5926_0 gnd netg5926 +X2399 g487_0 g487_1 gnd netg487 +X2400 g5891_1 g5891_2 g5891_0 gnd netg5891 +X2401 g7303_2 g7303_1 g7303_0 gnd netg7303 +X2402 g4756_0 g4756_3 g4756_2 g4756_1 gnd netg4756 +X2403 g5758_0 g5758_1 g5758_2 gnd netg5758 +X2404 g5478_1 g5478_0 gnd netg5478 +X2405 g5613_0 g5613_1 g5613_2 gnd netg5613 +X2406 g4661_1 g4661_0 gnd netg4661 +X2407 g2650_1 g2650_0 g2650_2 gnd netg2650 +X2408 g100_0 g100_1 gnd netg100 +X2409 g6631_1 g6631_2 g6631_0 gnd netg6631 +X2410 g6346_1 g6346_3 g6346_0 gnd netg6346 +X2411 g5930_1 g5930_0 gnd netg5930 +X2412 g5688_0 g5688_2 g5688_1 gnd netg5688 +X2413 g6023_1 g6023_0 g6023_2 gnd netg6023 +X2414 g2423_2 g2423_1 g2423_0 gnd netg2423 +X2415 g1404_1 g1404_0 gnd netg1404 +X2416 g6818_1 g6818_0 gnd netg6818 +X2417 g747_3 g747_1 g747_4 g747_2 g747_0 gnd netg747 +X2418 g6147_2 g6147_0 g6147_1 gnd netg6147 +X2419 g2761_1 g2761_0 gnd netg2761 +X2420 g5431_0 g5431_2 g5431_1 gnd netg5431 +X2421 g6481_1 g6481_2 g6481_0 gnd netg6481 +X2422 g7551_1 g7551_0 gnd netg7551 +X2423 g4030_0 g4030_3 g4030_1 g4030_2 gnd netg4030 +X2424 g5743_0 g5743_2 g5743_1 gnd netg5743 +X2425 g3482_1 g3482_0 gnd netg3482 +X2426 g1286_1 g1286_0 gnd netg1286 +X2427 g4422_0 g4422_1 gnd netg4422 +X2428 g2668_2 g2668_0 gnd netg2668 +X2429 g7065_1 g7065_0 g7065_2 gnd netg7065 +X2430 g4368_1 g4368_0 g4368_2 gnd netg4368 +X2431 g4913_2 g4913_1 g4913_3 gnd netg4913 +X2432 g3106_0 g3106_2 g3106_1 gnd netg3106 +X2433 g3374_0 g3374_1 g3374_2 gnd netg3374 +X2434 g1986_1 g1986_0 g1986_2 g1986_3 gnd netg1986 +X2435 g1484_1 g1484_5 g1484_4 g1484_0 g1484_2 gnd netg1484 +X2436 g5174_2 g5174_1 g5174_0 gnd netg5174 +X2437 g4400_0 g4400_1 gnd netg4400 +X2438 g6867_1 g6867_2 g6867_0 gnd netg6867 +X2439 g5352_1 g5352_0 gnd netg5352 +X2440 g973_2 g973_1 g973_0 gnd netg973 +X2441 g4017_1 g4017_0 gnd netg4017 +X2442 g3068_1 g3068_0 gnd netg3068 +X2443 g3189_1 g3189_2 g3189_0 gnd netg3189 +X2444 g5479_1 g5479_0 gnd netg5479 +X2445 g4917_2 g4917_0 g4917_1 gnd netg4917 +X2446 g5437_2 g5437_0 g5437_1 gnd netg5437 +X2447 g1287_1 g1287_0 gnd netg1287 +X2448 g4429_0 g4429_2 g4429_1 gnd netg4429 +X2449 g1911_1 g1911_0 gnd netg1911 +X2450 g1150_1 g1150_0 gnd netg1150 +X2451 g2230_1 g2230_0 gnd netg2230 +X2452 g110_0 g110_1 gnd netg110 +X2453 g6864_1 g6864_0 g6864_2 gnd netg6864 +X2454 g5900_0 g5900_1 g5900_2 gnd netg5900 +X2455 g1912_0 g1912_1 gnd netg1912 +X2456 g2567_1 g2567_2 g2567_0 gnd netg2567 +X2457 g5572_2 g5572_1 gnd netg5572 +X2458 g6350_0 g6350_1 gnd netg6350 +X2459 g4193_2 g4193_1 g4193_0 gnd netg4193 +X2460 g4778_2 g4778_0 g4778_1 gnd netg4778 +X2461 g1719_1 g1719_2 g1719_3 gnd netg1719 +X2462 g7287_1 g7287_0 g7287_2 gnd netg7287 +X2463 g6407_1 g6407_0 gnd netg6407 +X2464 g3522_1 g3522_0 gnd netg3522 +X2465 g5652_0 g5652_1 g5652_2 gnd netg5652 +X2466 g3490_1 g3490_0 gnd netg3490 +X2467 g5749_0 g5749_2 g5749_1 gnd netg5749 +X2468 g2383_0 g2383_2 g2383_1 gnd netg2383 +X2469 g5631_1 g5631_0 g5631_2 gnd netg5631 +X2470 g4078_0 g4078_3 g4078_2 g4078_1 gnd netg4078 +X2471 g7423_0 g7423_1 gnd netg7423 +X2472 g4196_1 g4196_2 gnd netg4196 +X2473 g3528_1 g3528_0 gnd netg3528 +X2474 g5984_0 g5984_1 gnd netg5984 +X2475 g3210_1 g3210_2 gnd netg3210 +X2476 g5655_0 g5655_1 g5655_2 gnd netg5655 +X2477 g4074_3 g4074_1 g4074_2 g4074_0 gnd netg4074 +X2478 g5202_1 g5202_0 g5202_2 gnd netg5202 +X2479 g6442_1 g6442_2 g6442_0 gnd netg6442 +X2480 g3291_2 g3291_0 g3291_1 gnd netg3291 +X2481 g907_2 g907_1 g907_0 gnd netg907 +X2482 g5637_0 g5637_2 g5637_1 gnd netg5637 +X2483 g4232_1 g4232_0 gnd netg4232 +X2484 x141_0 x141_1 gnd netx141 +X2485 g4449_1 g4449_0 gnd netg4449 +X2486 g2671_1 g2671_0 g2671_2 gnd netg2671 +X2487 g2365_0 g2365_2 g2365_1 gnd netg2365 +X2488 g5610_0 g5610_2 g5610_1 gnd netg5610 +X2489 g5309_0 g5309_1 g5309_3 g5309_2 gnd netg5309 +X2490 g413_1 g413_2 g413_0 g413_3 g413_4 gnd netg413 +X2491 g6880_1 g6880_0 gnd netg6880 +X2492 g3432_1 g3432_0 g3432_2 gnd netg3432 +X2493 g4161_1 g4161_2 g4161_0 gnd netg4161 +X2494 g3462_0 g3462_1 g3462_2 gnd netg3462 +X2495 g1575_1 g1575_0 gnd netg1575 +X2496 g2088_0 g2088_1 gnd netg2088 +X2497 g6754_0 g6754_2 g6754_1 gnd netg6754 +X2498 g1529_1 g1529_0 gnd netg1529 +X2499 x502_0 x502_1 gnd netx502 +X2500 g4026_2 g4026_3 g4026_1 g4026_0 gnd netg4026 +X2501 g1532_1 g1532_0 gnd netg1532 +X2502 g1868_2 g1868_0 gnd netg1868 +X2503 g7150_2 g7150_0 g7150_1 gnd netg7150 +X2504 g4250_1 g4250_0 gnd netg4250 +X2505 g1762_2 g1762_1 g1762_0 gnd netg1762 +X2506 g2239_1 g2239_0 gnd netg2239 +X2507 g3333_1 g3333_2 g3333_0 gnd netg3333 +X2508 g1364_1 g1364_0 gnd netg1364 +X2509 g6075_2 g6075_0 g6075_3 g6075_1 gnd netg6075 +X2510 g1896_1 g1896_0 gnd netg1896 +X2511 g6882_0 g6882_1 gnd netg6882 +X2512 g500_0 g500_1 gnd netg500 +X2513 g5806_1 g5806_2 g5806_0 gnd netg5806 +X2514 g2647_2 g2647_1 g2647_0 gnd netg2647 +X2515 g6618_0 g6618_1 g6618_2 gnd netg6618 +X2516 g6911_4 g6911_1 g6911_3 g6911_2 g6911_0 gnd netg6911 +X2517 g2935_0 g2935_1 gnd netg2935 +X2518 g4365_1 g4365_0 g4365_2 gnd netg4365 +X2519 g5897_2 g5897_1 g5897_0 gnd netg5897 +X2520 g7222_2 g7222_1 g7222_0 gnd netg7222 +X2521 g1496_1 g1496_0 gnd netg1496 +X2522 g7281_1 g7281_0 g7281_2 gnd netg7281 +X2523 g2989_2 g2989_3 g2989_1 g2989_5 g2989_4 g2989_0 gnd netg2989 +X2524 g2081_0 g2081_3 g2081_2 g2081_1 g2081_5 g2081_6 g2081_4 gnd netg2081 +X2525 g7318_2 g7318_1 gnd netg7318 +X2526 g1506_0 g1506_1 gnd netg1506 +X2527 g1590_1 g1590_0 gnd netg1590 +X2528 g4767_2 g4767_0 g4767_1 g4767_3 gnd netg4767 +X2529 g4113_2 g4113_3 g4113_1 g4113_0 gnd netg4113 +X2530 g4392_2 g4392_0 g4392_1 gnd netg4392 +X2531 g1399_0 g1399_1 gnd netg1399 +X2532 g1910_0 g1910_1 gnd netg1910 +X2533 x161_0 x161_1 gnd netx161 +X2534 g5820_2 g5820_1 g5820_0 g5820_3 gnd netg5820 +X2535 g1588_0 g1588_1 gnd netg1588 +X2536 g3961_3 g3961_2 g3961_0 g3961_1 gnd netg3961 +X2537 g2019_3 g2019_1 g2019_0 gnd netg2019 +X2538 g4210_2 g4210_0 gnd netg4210 +X2539 g3195_2 g3195_0 g3195_1 gnd netg3195 +X2540 g6475_1 g6475_2 gnd netg6475 +X2541 g6304_0 g6304_2 g6304_1 gnd netg6304 +X2542 g3174_0 g3174_2 g3174_1 gnd netg3174 +X2543 g109_0 g109_1 gnd netg109 +X2544 g4653_3 g4653_2 g4653_1 g4653_0 gnd netg4653 +X2545 g6438_0 g6438_1 gnd netg6438 +X2546 g561_4 g561_0 g561_3 g561_1 g561_2 gnd netg561 +X2547 g4760_1 g4760_3 g4760_2 g4760_0 gnd netg4760 +X2548 g1400_1 g1400_0 gnd netg1400 +X2549 g1559_5 g1559_4 g1559_2 g1559_0 g1559_1 g1559_3 gnd netg1559 +X2550 x191_1 x191_0 gnd netx191 +X2551 x372_0 x372_1 gnd netx372 +X2552 g4456_4 g4456_6 g4456_5 g4456_2 g4456_1 g4456_3 g4456_0 gnd netg4456 +X2553 x431_0 x431_1 gnd netx431 +X2554 g3484_0 g3484_1 gnd netg3484 +X2555 g4630_0 g4630_3 g4630_1 g4630_4 g4630_2 gnd netg4630 +X2556 g1503_1 g1503_0 gnd netg1503 +X2557 g5939_1 g5939_2 g5939_0 gnd netg5939 +X2558 g785_6 g785_2 g785_3 g785_0 g785_5 g785_4 gnd netg785 +X2559 g5971_1 g5971_0 gnd netg5971 +X2560 g4146_0 g4146_1 g4146_2 gnd netg4146 +X2561 g3144_2 g3144_1 g3144_0 gnd netg3144 +X2562 g1543_5 g1543_0 g1543_2 g1543_4 g1543_3 g1543_1 gnd netg1543 +X2563 g1323_6 g1323_1 g1323_4 g1323_5 g1323_3 gnd netg1323 +X2564 g7549_1 g7549_0 gnd netg7549 +X2565 g6840_2 g6840_0 g6840_1 gnd netg6840 +X2566 g6284_1 g6284_0 g6284_2 gnd netg6284 +X2567 g4383_2 g4383_1 g4383_0 gnd netg4383 +X2568 g5933_1 g5933_2 gnd netg5933 +X2569 g1537_1 g1537_4 g1537_2 g1537_5 g1537_3 g1537_0 gnd netg1537 +X2570 g4750_2 g4750_0 g4750_1 gnd netg4750 +X2571 g7141_0 g7141_2 g7141_1 gnd netg7141 +X2572 g5122_2 g5122_1 g5122_0 gnd netg5122 +X2573 g3201_2 g3201_0 g3201_1 gnd netg3201 +X2574 g1493_0 g1493_1 gnd netg1493 +X2575 g6322_3 g6322_1 g6322_0 g6322_2 gnd netg6322 +X2576 g5459_2 g5459_1 g5459_0 gnd netg5459 +X2577 g5795_0 g5795_1 g5795_2 g5795_3 gnd netg5795 +X2578 g6491_1 g6491_2 gnd netg6491 +X2579 g3971_1 g3971_0 gnd netg3971 +X2580 g1153_1 g1153_0 gnd netg1153 +X2581 g1499_0 g1499_1 gnd netg1499 +X2582 g6919_0 g6919_1 gnd netg6919 +X2583 g2456_1 g2456_2 gnd netg2456 +X2584 g4949_3 g4949_0 g4949_1 g4949_2 gnd netg4949 +X2585 g3153_0 g3153_2 gnd netg3153 +X2586 g2585_1 g2585_0 g2585_2 gnd netg2585 +X2587 g5177_1 g5177_0 gnd netg5177 +X2588 g3938_4 g3938_0 g3938_1 g3938_3 g3938_2 gnd netg3938 +X2589 g1848_0 g1848_1 g1848_3 g1848_2 gnd netg1848 +X2590 g5217_2 g5217_0 gnd netg5217 +X2591 g2223_1 g2223_0 gnd netg2223 +X2592 g6628_1 g6628_2 g6628_0 gnd netg6628 +X2593 g4660_1 g4660_0 gnd netg4660 +X2594 g1961_3 g1961_1 g1961_0 g1961_2 gnd netg1961 +X2595 g2004_1 g2004_3 g2004_0 g2004_2 gnd netg2004 +X2596 g1423_1 g1423_0 g1423_4 g1423_3 g1423_2 gnd netg1423 +X2597 g5388_2 g5388_1 g5388_0 gnd netg5388 +X2598 g5974_0 g5974_1 g5974_2 gnd netg5974 +X2599 x462_0 x462_1 gnd netx462 +X2600 g780_3 g780_1 g780_2 g780_0 g780_4 gnd netg780 +X2601 g7048_2 g7048_1 g7048_0 gnd netg7048 +X2602 g7030_1 g7030_2 gnd netg7030 +X2603 g6559_1 g6559_0 gnd netg6559 +X2604 g3698_3 g3698_0 g3698_2 g3698_1 gnd netg3698 +X2605 g4960_3 g4960_0 g4960_2 g4960_1 gnd netg4960 +X2606 g4775_1 g4775_0 g4775_2 gnd netg4775 +X2607 g7378_1 g7378_0 g7378_2 gnd netg7378 +X2608 g4006_1 g4006_0 gnd netg4006 +X2609 g1206_2 g1206_4 g1206_3 g1206_1 g1206_0 g1206_5 gnd netg1206 +X2610 x31_1 x31_0 gnd netx31 +X2611 g4386_2 g4386_0 g4386_1 gnd netg4386 +X2612 g7420_0 g7420_1 gnd netg7420 +X2613 g3999_3 g3999_1 g3999_2 g3999_0 gnd netg3999 +X2614 g5713_1 g5713_0 g5713_2 gnd netg5713 +X2615 g1289_3 g1289_2 g1289_5 g1289_1 g1289_4 gnd netg1289 +X2616 g7315_2 g7315_0 gnd netg7315 +X2617 g95_1 g95_0 gnd netg95 +X2618 g6263_0 g6263_2 g6263_1 gnd netg6263 +X2619 g5680_2 g5680_1 g5680_0 gnd netg5680 +X2620 g3330_2 g3330_0 g3330_1 gnd netg3330 +X2621 g1716_2 g1716_0 g1716_1 gnd netg1716 +X2622 g6881_0 g6881_1 gnd netg6881 +X2623 g3491_0 g3491_1 gnd netg3491 +X2624 g3053_1 g3053_0 gnd netg3053 +X2625 g3705_2 g3705_0 g3705_3 g3705_1 gnd netg3705 +X2626 g4635_3 g4635_0 g4635_2 g4635_1 gnd netg4635 +X2627 g2525_1 g2525_2 g2525_0 gnd netg2525 +X2628 g115_1 g115_0 gnd netg115 +X2629 g1246_1 g1246_3 g1246_2 g1246_0 gnd netg1246 +X2630 g3637_5 g3637_1 g3637_6 g3637_4 g3637_0 g3637_3 g3637_2 gnd netg3637 +X2631 g6760_4 g6760_3 g6760_2 g6760_1 g6760_0 gnd netg6760 +X2632 g5404_0 g5404_1 g5404_2 gnd netg5404 +X2633 g792_1 g792_0 g792_3 g792_2 gnd netg792 +X2634 g6176_3 g6176_2 g6176_1 g6176_0 gnd netg6176 +X2635 g6710_1 g6710_0 gnd netg6710 +X2636 g4920_5 g4920_0 g4920_4 g4920_1 g4920_2 g4920_3 gnd netg4920 +X2637 g3132_2 g3132_0 g3132_1 gnd netg3132 +X2638 g2870_3 g2870_0 g2870_1 gnd netg2870 +X2639 g691_2 g691_0 g691_1 gnd netg691 +X2640 g5211_2 g5211_1 g5211_0 gnd netg5211 +X2641 g6957_1 g6957_2 g6957_0 gnd netg6957 +X2642 g1316_3 g1316_2 g1316_6 g1316_1 g1316_5 g1316_4 gnd netg1316 +X2643 g5948_0 g5948_1 g5948_2 gnd netg5948 +X2644 g2062_0 g2062_3 g2062_2 g2062_7 g2062_5 g2062_4 g2062_1 gnd netg2062 +X2645 g6294_1 g6294_2 g6294_0 gnd netg6294 +X2646 g5628_1 g5628_2 g5628_0 gnd netg5628 +X2647 g6372_1 g6372_0 gnd netg6372 +X2648 g7057_0 g7057_1 g7057_2 gnd netg7057 +X2649 g3252_1 g3252_2 g3252_0 gnd netg3252 +X2650 g796_2 g796_1 g796_0 gnd netg796 +X2651 g4648_1 g4648_3 g4648_0 g4648_4 g4648_2 gnd netg4648 +X2652 g5752_0 g5752_2 g5752_1 gnd netg5752 +X2653 g4642_2 g4642_1 g4642_5 g4642_3 g4642_0 g4642_4 gnd netg4642 +X2654 g113_0 g113_1 gnd netg113 +X2655 g2235_3 g2235_1 g2235_2 g2235_0 gnd netg2235 +X2656 g5783_0 g5783_1 gnd netg5783 +X2657 g816_4 g816_0 g816_3 gnd netg816 +X2658 g3013_1 g3013_4 g3013_2 g3013_0 g3013_5 g3013_3 gnd netg3013 +X2659 g7284_2 g7284_1 gnd netg7284 +X2660 g6859_0 g6859_2 g6859_1 gnd netg6859 +X2661 g1576_1 g1576_0 gnd netg1576 +X2662 g4884_2 g4884_0 gnd netg4884 +X2663 g3988_2 g3988_4 g3988_3 g3988_1 g3988_5 g3988_0 gnd netg3988 +X2664 g2896_1 g2896_0 gnd netg2896 +X2665 g2977_0 g2977_1 g2977_2 gnd netg2977 +X2666 g3683_1 g3683_0 g3683_3 gnd netg3683 +X2667 g4233_1 g4233_0 gnd netg4233 +X2668 g4771_3 g4771_2 g4771_1 g4771_0 gnd netg4771 +X2669 g1363_0 g1363_1 gnd netg1363 +X2670 g116_1 g116_0 gnd netg116 +X2671 g1909_1 g1909_0 gnd netg1909 +X2672 g1397_1 g1397_0 gnd netg1397 +X2673 g1914_0 g1914_1 gnd netg1914 +X2674 g1880_1 g1880_0 g1880_2 gnd netg1880 +X2675 g5197_2 g5197_1 gnd netg5197 +X2676 g6045_0 g6045_1 gnd netg6045 +X2677 g5496_2 g5496_0 g5496_1 gnd netg5496 +X2678 g4908_2 g4908_4 g4908_1 g4908_3 g4908_0 gnd netg4908 +X2679 g1505_1 g1505_0 gnd netg1505 +X2680 g5234_1 g5234_0 gnd netg5234 +X2681 g1898_0 g1898_1 gnd netg1898 +X2682 g1504_0 g1504_1 gnd netg1504 +X2683 g7038_1 g7038_0 g7038_2 gnd netg7038 +X2684 g4088_2 g4088_1 g4088_3 g4088_0 gnd netg4088 +X2685 g5235_0 g5235_1 gnd netg5235 +X2686 g1144_2 g1144_5 g1144_3 g1144_1 g1144_4 g1144_0 gnd netg1144 +X2687 g1580_1 g1580_0 gnd netg1580 +X2688 g4314_1 g4314_0 gnd netg4314 +X2689 g2890_3 g2890_1 g2890_5 g2890_0 g2890_4 g2890_2 gnd netg2890 +X2690 g1670_3 g1670_2 g1670_0 g1670_1 gnd netg1670 +X2691 g1495_0 g1495_1 gnd netg1495 +X2692 g6781_1 g6781_0 g6781_2 gnd netg6781 +X2693 g3204_2 g3204_1 gnd netg3204 +X2694 g6757_2 g6757_1 g6757_0 gnd netg6757 +X2695 g1527_1 g1527_0 gnd netg1527 +X2696 g2922_0 g2922_1 gnd netg2922 +X2697 g1920_0 g1920_1 gnd netg1920 +X2698 g5755_2 g5755_1 g5755_0 gnd netg5755 +X2699 g4611_2 g4611_5 g4611_1 g4611_4 g4611_0 g4611_3 gnd netg4611 +X2700 g1437_0 g1437_1 gnd netg1437 +X2701 g1891_0 g1891_1 gnd netg1891 +X2702 g1915_1 g1915_0 gnd netg1915 +X2703 g2167_1 g2167_0 g2167_3 g2167_2 gnd netg2167 +X2704 g3282_2 g3282_1 g3282_0 gnd netg3282 +X2705 g3713_1 g3713_0 g3713_2 gnd netg3713 +X2706 g4124_2 g4124_3 g4124_1 g4124_0 gnd netg4124 +X2707 g117_0 g117_1 gnd netg117 +X2708 g3725_9 g3725_8 g3725_6 g3725_5 g3725_10 g3725_0 g3725_2 g3725_3 g3725_7 gnd netg3725 +X2709 g4143_1 g4143_0 g4143_2 gnd netg4143 +X2710 g1192_1 g1192_0 g1192_5 g1192_2 g1192_6 g1192_3 gnd netg1192 +X2711 g6336_0 g6336_1 g6336_3 g6336_2 gnd netg6336 +X2712 g518_1 g518_0 gnd netg518 +X2713 g1528_1 g1528_0 gnd netg1528 +X2714 g3797_2 g3797_5 g3797_0 g3797_4 g3797_3 gnd netg3797 +X2715 g85_0 g85_1 gnd netg85 +X2716 g1990_2 g1990_0 g1990_3 g1990_1 gnd netg1990 +X2717 g1515_0 g1515_1 gnd netg1515 +X2718 g1440_5 g1440_2 g1440_3 g1440_1 g1440_4 g1440_0 gnd netg1440 +X2719 g3907_2 g3907_4 g3907_1 g3907_0 g3907_5 g3907_3 gnd netg3907 +X2720 g6016_5 g6016_4 g6016_3 g6016_2 g6016_0 g6016_6 g6016_1 gnd netg6016 +X2721 g6204_0 g6204_1 gnd netg6204 +X2722 g7096_1 g7096_0 g7096_2 gnd netg7096 +X2723 g7412_1 g7412_0 gnd netg7412 +X2724 g1723_0 g1723_2 g1723_3 g1723_1 gnd netg1723 +X2725 g5824_0 g5824_1 g5824_2 gnd netg5824 +X2726 g3004_3 g3004_2 g3004_0 g3004_1 gnd netg3004 +X2727 g5156_2 g5156_3 g5156_0 g5156_1 gnd netg5156 +X2728 g6939_1 g6939_0 gnd netg6939 +X2729 g7528_0 g7528_1 gnd netg7528 +X2730 g6377_3 g6377_1 g6377_2 g6377_0 gnd netg6377 +X2731 g2901_2 g2901_5 g2901_4 g2901_3 g2901_1 g2901_0 gnd netg2901 +X2732 g5136_2 g5136_1 g5136_0 gnd netg5136 +X2733 g1402_0 g1402_1 gnd netg1402 +X2734 g6359_1 g6359_0 gnd netg6359 +X2735 g4199_0 g4199_1 g4199_2 gnd netg4199 +X2736 g4926_3 g4926_2 g4926_4 g4926_0 g4926_1 gnd netg4926 +X2737 g2033_4 g2033_1 g2033_0 g2033_3 g2033_2 gnd netg2033 +X2738 g5956_1 g5956_0 gnd netg5956 +X2739 g4863_4 g4863_5 g4863_2 g4863_1 g4863_3 g4863_0 gnd netg4863 +X2740 g2897_3 g2897_2 g2897_1 g2897_0 gnd netg2897 +X2741 g2881_3 g2881_2 g2881_0 gnd netg2881 +X2742 g2163_2 g2163_3 g2163_1 gnd netg2163 +X2743 g5770_3 g5770_2 g5770_1 g5770_0 gnd netg5770 +X2744 g5163_2 g5163_1 g5163_0 gnd netg5163 +X2745 g1401_1 g1401_0 gnd netg1401 +X2746 g2980_2 g2980_0 g2980_3 g2980_1 gnd netg2980 +X2747 g1577_0 g1577_1 gnd netg1577 +X2748 g835_1 g835_4 g835_3 g835_2 g835_6 g835_5 g835_0 gnd netg835 +X2749 g3489_0 g3489_1 gnd netg3489 +X2750 g4532_5 g4532_4 g4532_2 g4532_6 g4532_1 g4532_3 g4532_0 gnd netg4532 +X2751 g1902_1 g1902_0 gnd netg1902 +X2752 g6563_1 g6563_0 gnd netg6563 +X2753 g4622_0 g4622_1 gnd netg4622 +X2754 g3008_1 g3008_4 g3008_2 g3008_3 g3008_0 gnd netg3008 +X2755 g4623_0 g4623_1 gnd netg4623 +X2756 g6833_3 g6833_2 g6833_0 g6833_1 gnd netg6833 +X2757 g78_0 g78_1 gnd netg78 +X2758 g1521_3 g1521_1 g1521_2 g1521_5 g1521_4 g1521_0 gnd netg1521 +X2759 g5802_3 g5802_1 g5802_2 g5802_0 gnd netg5802 +X2760 x511_0 x511_1 gnd netx511 +X2761 g1892_1 g1892_0 gnd netg1892 +X2762 g4624_1 g4624_0 gnd netg4624 +X2763 g3994_1 g3994_4 g3994_0 g3994_2 g3994_3 gnd netg3994 +X2764 g1507_1 g1507_0 gnd netg1507 +X2765 g2984_1 g2984_3 g2984_0 g2984_4 g2984_2 gnd netg2984 +X2766 g2071_2 g2071_0 g2071_1 g2071_3 gnd netg2071 +X2767 g3675_1 g3675_0 g3675_3 g3675_6 g3675_2 g3675_5 g3675_4 gnd netg3675 +X2768 g1446_2 g1446_5 g1446_0 g1446_1 g1446_4 g1446_3 gnd netg1446 +X2769 g3654_8 g3654_7 g3654_10 g3654_4 g3654_9 g3654_0 g3654_2 g3654_3 g3654_1 g3654_6 g3654_5 gnd netg3654 +X2770 g92_1 g92_0 gnd netg92 +X2771 g7533_0 g7533_1 gnd netg7533 +X2772 g2874_1 g2874_3 g2874_2 g2874_0 g2874_4 gnd netg2874 +X2773 g1199_2 g1199_0 g1199_5 g1199_3 g1199_1 g1199_6 g1199_4 gnd netg1199 +X2774 g1586_1 g1586_0 gnd netg1586 +X2775 g1403_0 g1403_1 gnd netg1403 +X2776 g107_1 g107_0 gnd netg107 +X2777 g1097_1 g1097_0 gnd netg1097 +X2778 g2885_2 g2885_4 g2885_1 g2885_3 g2885_0 gnd netg2885 +X2779 x492_1 x492_0 gnd netx492 +X2780 g6677_2 g6677_1 g6677_3 g6677_4 g6677_0 gnd netg6677 +X2781 g5205_1 g5205_2 g5205_0 gnd netg5205 +X2782 g4742_5 g4742_3 g4742_4 g4742_2 g4742_0 g4742_6 g4742_1 gnd netg4742 +X2783 g94_1 g94_0 gnd netg94 +X2784 g1565_0 g1565_2 g1565_4 g1565_5 g1565_3 gnd netg1565 +X2785 g5493_0 g5493_2 g5493_1 gnd netg5493 +X2786 g767_4 g767_2 g767_0 g767_1 g767_3 gnd netg767 +X2787 g1795_2 g1795_3 g1795_1 gnd netg1795 +X2788 g5178_1 g5178_0 g5178_2 gnd netg5178 +X2789 g2959_1 g2959_3 g2959_0 g2959_2 gnd netg2959 +X2790 g1766_3 g1766_2 g1766_1 g1766_0 gnd netg1766 +X2791 g418_3 g418_4 g418_2 g418_0 gnd netg418 +X2792 g5395_0 g5395_4 g5395_2 g5395_1 g5395_5 g5395_3 g5395_6 g5395_8 g5395_7 gnd netg5395 +X2793 g1295_4 g1295_2 g1295_1 g1295_6 g1295_0 g1295_5 g1295_3 gnd netg1295 +X2794 x542_1 x542_0 gnd netx542 +X2795 g1778_0 g1778_3 g1778_1 g1778_2 gnd netg1778 +X2796 g2038_0 g2038_3 g2038_5 g2038_4 g2038_2 g2038_1 gnd netg2038 +X2797 g734_1 g734_5 g734_4 g734_2 g734_0 gnd netg734 +X2798 g1269_2 g1269_4 g1269_5 g1269_3 g1269_0 g1269_1 gnd netg1269 +X2799 g1608_3 g1608_0 g1608_1 g1608_2 gnd netg1608 +X2800 g1957_0 g1957_1 g1957_2 gnd netg1957 +X2801 g1799_1 g1799_0 g1799_2 g1799_3 gnd netg1799 +X2802 g7535_1 g7535_0 gnd netg7535 +X2803 g1624_1 g1624_2 g1624_3 g1624_0 gnd netg1624 +X2804 g106_0 g106_1 gnd netg106 +X2805 g1913_1 g1913_0 gnd netg1913 +X2806 g2029_3 g2029_2 g2029_1 g2029_0 gnd netg2029 +X2807 g2322_2 g2322_0 g2322_1 g2322_3 gnd netg2322 +X2808 g4508_8 g4508_0 g4508_9 g4508_5 g4508_10 g4508_7 g4508_6 g4508_3 g4508_2 g4508_1 g4508_4 gnd netg4508 +X2809 g4669_0 g4669_2 g4669_5 g4669_3 g4669_4 g4669_1 g4669_6 gnd netg4669 +X2810 g6046_1 g6046_0 gnd netg6046 +X2811 g3928_4 g3928_3 g3928_7 g3928_6 g3928_0 g3928_1 g3928_2 g3928_5 gnd netg3928 +X2812 g3020_3 g3020_1 g3020_0 g3020_2 gnd netg3020 +X2813 g4324_0 g4324_2 g4324_3 g4324_1 gnd netg4324 +X2814 g6704_1 g6704_0 gnd netg6704 +X2815 g1117_0 g1117_1 gnd netg1117 +X2816 g5381_0 g5381_2 g5381_3 g5381_1 gnd netg5381 +X2817 g1138_2 g1138_1 g1138_5 g1138_3 g1138_4 g1138_0 gnd netg1138 +X2818 g6711_0 g6711_1 gnd netg6711 +X2819 g6240_1 g6240_0 g6240_2 gnd netg6240 +X2820 g2406_1 g2406_0 g2406_2 gnd netg2406 +X2821 g3358_2 g3358_1 g3358_0 gnd netg3358 +X2822 g5253_0 g5253_3 g5253_4 g5253_2 g5253_1 gnd netg5253 +X2823 g2008_2 g2008_3 g2008_1 g2008_0 g2008_4 gnd netg2008 +X2824 g1820_0 g1820_3 g1820_1 g1820_2 gnd netg1820 +X2825 g716_4 g716_1 g716_0 g716_2 g716_3 gnd netg716 +X2826 g5955_0 g5955_1 gnd netg5955 +X2827 g4443_0 g4443_1 g4443_2 gnd netg4443 +X2828 g1396_1 g1396_0 gnd netg1396 +X2829 g6340_3 g6340_0 g6340_2 g6340_1 gnd netg6340 +X2830 g93_0 g93_1 gnd netg93 +X2831 g4380_2 g4380_1 g4380_0 gnd netg4380 +X2832 g5166_0 g5166_1 gnd netg5166 +X2833 g1675_2 g1675_3 g1675_0 g1675_1 gnd netg1675 +X2834 g1895_0 g1895_1 gnd netg1895 +X2835 g84_1 g84_0 gnd netg84 +X2836 g91_1 g91_0 gnd netg91 +X2837 g1409_0 g1409_1 gnd netg1409 +X2838 g2963_2 g2963_0 g2963_1 g2963_4 g2963_5 gnd netg2963 +X2839 g5848_1 g5848_3 g5848_2 g5848_0 gnd netg5848 +X2840 g5208_2 g5208_1 g5208_0 gnd netg5208 +X2841 g7408_0 g7408_1 gnd netg7408 +X2842 g2798_0 g2798_1 gnd netg2798 +X2843 g2969_4 g2969_1 g2969_2 g2969_6 g2969_3 g2969_5 gnd netg2969 +X2844 g4485_2 g4485_5 g4485_0 g4485_4 g4485_1 g4485_3 gnd netg4485 +X2845 g5809_3 g5809_1 g5809_0 g5809_2 gnd netg5809 +X2846 g1919_1 g1919_0 gnd netg1919 +X2847 g5471_1 g5471_2 g5471_0 gnd netg5471 +X2848 g2159_3 g2159_0 g2159_1 g2159_2 gnd netg2159 +X2849 g828_6 g828_4 g828_3 g828_0 g828_2 g828_5 g828_1 gnd netg828 +X2850 g6565_0 g6565_1 g6565_2 gnd netg6565 +X2851 g1770_0 g1770_2 g1770_1 g1770_3 gnd netg1770 +X2852 g1578_1 g1578_0 gnd netg1578 +X2853 g114_0 g114_1 gnd netg114 +X2854 g1411_6 g1411_1 g1411_5 g1411_8 g1411_4 g1411_0 g1411_9 g1411_2 g1411_7 g1411_3 gnd netg1411 +X2855 g5515_1 g5515_2 g5515_3 g5515_0 gnd netg5515 +X2856 g3883_0 g3883_6 g3883_2 g3883_1 g3883_5 g3883_3 g3883_4 gnd netg3883 +X2857 g112_1 g112_0 gnd netg112 +X2858 g1899_1 g1899_0 gnd netg1899 +X2859 g2405_0 g2405_1 gnd netg2405 +X2860 g4687_8 g4687_0 g4687_1 g4687_2 g4687_4 g4687_5 g4687_10 g4687_9 g4687_6 g4687_7 g4687_3 gnd netg4687 +X2861 g2859_0 g2859_4 g2859_1 g2859_6 g2859_2 g2859_5 g2859_3 gnd netg2859 +X2862 g740_2 g740_5 g740_6 g740_3 g740_0 g740_1 g740_4 gnd netg740 +X2863 g6202_1 g6202_0 gnd netg6202 +X2864 g2398_2 g2398_0 g2398_1 gnd netg2398 +X2865 g1092_2 g1092_1 g1092_0 g1092_3 gnd netg1092 +X2866 g1212_4 g1212_0 g1212_3 g1212_2 g1212_5 g1212_6 g1212_1 gnd netg1212 +X2867 g1918_1 g1918_0 gnd netg1918 +X2868 g7550_0 g7550_1 gnd netg7550 +X2869 g6765_4 g6765_5 g6765_1 g6765_2 g6765_0 g6765_3 gnd netg6765 +X2870 g4539_2 g4539_9 g4539_5 g4539_8 g4539_6 g4539_1 g4539_4 g4539_10 g4539_3 g4539_7 g4539_0 gnd netg4539 +X2871 g1115_1 g1115_0 gnd netg1115 +X2872 g6002_3 g6002_2 g6002_1 g6002_0 gnd netg6002 +X2873 g90_0 g90_1 gnd netg90 +X2874 g6657_0 g6657_1 gnd netg6657 +X2875 g4704_6 g4704_1 g4704_0 g4704_2 g4704_5 g4704_4 g4704_3 gnd netg4704 +X2876 g3817_9 g3817_5 g3817_4 g3817_7 g3817_10 g3817_8 g3817_1 g3817_2 g3817_6 g3817_3 gnd netg3817 +X2877 g4550_3 g4550_9 g4550_0 g4550_4 g4550_8 g4550_7 g4550_1 g4550_2 g4550_5 g4550_6 gnd netg4550 +X2878 g3630_6 g3630_4 g3630_3 g3630_2 g3630_1 g3630_0 g3630_5 gnd netg3630 +X2879 g2432_0 g2432_1 g2432_2 gnd netg2432 +X2880 g4407_1 g4407_2 g4407_0 gnd netg4407 +X2881 g1108_1 g1108_0 g1108_5 g1108_4 g1108_3 g1108_2 gnd netg1108 +X2882 g1285_1 g1285_0 gnd netg1285 +X2883 g5334_4 g5334_2 g5334_6 g5334_1 g5334_3 g5334_0 g5334_5 gnd netg5334 +X2884 g6542_0 g6542_1 gnd netg6542 +X2885 g3810_3 g3810_4 g3810_1 g3810_0 g3810_6 g3810_5 g3810_2 gnd netg3810 +X2886 g2200_1 g2200_2 gnd netg2200 +X2887 g127_1 g127_0 gnd netg127 +X2888 g849_6 g849_4 g849_2 g849_3 g849_0 g849_5 g849_1 gnd netg849 +X2889 g3644_4 g3644_8 g3644_5 g3644_1 g3644_7 g3644_9 g3644_2 g3644_3 g3644_0 gnd netg3644 +X2890 g2092_0 g2092_1 g2092_3 g2092_2 gnd netg2092 +X2891 g4092_2 g4092_1 g4092_0 gnd netg4092 +X2892 g1792_2 g1792_0 g1792_1 gnd netg1792 +X2893 g2537_1 g2537_2 g2537_0 gnd netg2537 +X2894 g2226_1 g2226_0 gnd netg2226 +X2895 g1803_1 g1803_3 g1803_0 g1803_2 gnd netg1803 +X2896 g4698_2 g4698_1 g4698_4 g4698_3 g4698_0 g4698_5 gnd netg4698 +X2897 g4732_9 g4732_5 g4732_6 g4732_2 g4732_4 g4732_0 g4732_8 g4732_3 g4732_7 g4732_1 gnd netg4732 +X2898 g2338_2 g2338_1 g2338_3 g2338_0 gnd netg2338 +X2899 g2429_2 g2429_1 g2429_0 gnd netg2429 +X2900 g805_4 g805_6 g805_2 g805_5 g805_3 g805_0 g805_1 gnd netg805 +X2901 g3665_2 g3665_9 g3665_6 g3665_3 g3665_1 g3665_7 g3665_5 g3665_8 g3665_4 g3665_0 gnd netg3665 +X2902 g5380_0 g5380_1 gnd netg5380 +X2903 g2101_2 g2101_3 g2101_0 g2101_5 g2101_4 g2101_1 gnd netg2101 +X2904 g4519_6 g4519_5 g4519_4 g4519_8 g4519_2 g4519_9 g4519_3 g4519_1 g4519_7 g4519_0 gnd netg4519 +X2905 g1978_4 g1978_1 g1978_5 g1978_6 g1978_2 g1978_7 g1978_0 g1978_3 gnd netg1978 +X2906 g4956_2 g4956_1 g4956_0 g4956_3 gnd netg4956 +X2907 g1240_5 g1240_3 g1240_4 g1240_2 g1240_1 g1240_0 gnd netg1240 +X2908 g1281_1 g1281_0 gnd netg1281 +X2909 g5264_1 g5264_0 gnd netg5264 +X2910 g5341_2 g5341_3 g5341_1 g5341_0 gnd netg5341 +X2911 g1099_0 g1099_1 gnd netg1099 +X2912 g7526_1 g7526_0 gnd netg7526 +X2913 g4676_6 g4676_3 g4676_1 g4676_2 g4676_4 g4676_9 g4676_7 g4676_8 g4676_10 g4676_5 gnd netg4676 +X2914 g4491_4 g4491_5 g4491_3 g4491_2 g4491_1 g4491_6 g4491_0 gnd netg4491 +X2915 g772_2 g772_3 g772_0 g772_1 g772_4 gnd netg772 +X2916 g77_1 g77_0 gnd netg77 +X2917 g7529_0 g7529_1 gnd netg7529 +X2918 g6351_0 g6351_1 g6351_3 g6351_2 gnd netg6351 +X2919 g1456_0 g1456_1 gnd netg1456 +X2920 g2318_1 g2318_3 g2318_2 gnd netg2318 +X2921 g753_5 g753_6 g753_0 g753_2 g753_3 g753_1 gnd netg753 +X2922 g4802_6 g4802_9 g4802_7 g4802_3 g4802_1 g4802_5 g4802_0 g4802_8 g4802_2 g4802_4 gnd netg4802 +X2923 g1965_4 g1965_5 g1965_0 g1965_3 g1965_1 g1965_2 gnd netg1965 +X2924 g695_1 g695_0 gnd netg695 +X2925 g2001_1 g2001_0 g2001_2 gnd netg2001 +X2926 g4177_0 g4177_1 gnd netg4177 +X2927 g608_2 g608_1 g608_5 g608_3 g608_0 g608_4 gnd netg608 +X2928 g68_0 g68_1 gnd netg68 +X2929 g507_1 g507_3 g507_4 g507_0 g507_2 gnd netg507 +X2930 g2907_6 g2907_4 g2907_1 g2907_0 g2907_5 g2907_3 g2907_2 gnd netg2907 +X2931 g5280_5 g5280_4 g5280_6 g5280_0 g5280_1 g5280_3 g5280_2 gnd netg5280 +X2932 g3718_4 g3718_6 g3718_5 g3718_1 g3718_0 g3718_2 g3718_3 gnd netg3718 +X2933 g1840_3 g1840_1 g1840_0 g1840_2 gnd netg1840 +X2934 g4626_0 g4626_1 gnd netg4626 +X2935 g6446_1 g6446_0 gnd netg6446 +X2936 g1275_5 g1275_4 g1275_0 g1275_3 g1275_1 g1275_2 gnd netg1275 +X2937 g108_0 g108_1 gnd netg108 +X2938 g4395_1 g4395_0 g4395_2 gnd netg4395 +X2939 g3736_8 g3736_6 g3736_5 g3736_9 g3736_1 g3736_4 g3736_7 g3736_0 g3736_3 g3736_2 gnd netg3736 +X2940 g1455_1 g1455_0 gnd netg1455 +X2941 g1100_0 g1100_1 gnd netg1100 +X2942 g3839_0 g3839_5 g3839_4 g3839_2 g3839_1 g3839_3 gnd netg3839 +X2943 g4084_2 g4084_1 g4084_0 g4084_3 gnd netg4084 +X2944 g3746_3 g3746_0 g3746_1 g3746_6 g3746_7 g3746_4 g3746_2 g3746_5 gnd netg3746 +X2945 g2849_1 g2849_2 g2849_0 g2849_3 gnd netg2849 +X2946 g3103_0 g3103_2 g3103_1 gnd netg3103 +X2947 g2075_3 g2075_5 g2075_4 g2075_2 g2075_1 g2075_0 gnd netg2075 +X2948 g6573_4 g6573_0 g6573_2 g6573_1 g6573_5 g6573_3 gnd netg6573 +X2949 g1086_3 g1086_5 g1086_1 g1086_4 gnd netg1086 +X2950 g2540_1 g2540_2 g2540_0 gnd netg2540 +X2951 g2096_4 g2096_2 g2096_1 g2096_3 g2096_0 gnd netg2096 +X2952 g1337_3 g1337_1 g1337_2 g1337_5 g1337_0 g1337_6 g1337_4 gnd netg1337 +X2953 g6090_2 g6090_1 g6090_0 gnd netg6090 +X2954 g1592_3 g1592_1 g1592_0 g1592_2 gnd netg1592 +X2955 g570_1 g570_5 g570_0 g570_4 g570_3 g570_2 gnd netg570 +X2956 g7147_2 g7147_1 g7147_0 gnd netg7147 +X2957 g5514_0 g5514_1 gnd netg5514 +X2958 g4598_5 g4598_3 g4598_12 g4598_8 g4598_6 g4598_0 g4598_9 g4598_4 g4598_1 g4598_2 g4598_10 g4598_7 g4598_11 gnd netg4598 +X2959 g5258_0 g5258_1 g5258_4 g5258_3 g5258_2 gnd netg5258 +X2960 g70_0 g70_1 g70_2 gnd netg70 +X2961 g1971_4 g1971_0 g1971_2 g1971_6 g1971_5 g1971_3 g1971_1 gnd netg1971 +X2962 x491_1 x491_0 gnd netx491 +X2963 g423_4 g423_1 g423_0 g423_3 g423_2 gnd netg423 +X2964 g760_1 g760_4 g760_2 g760_0 g760_6 g760_3 g760_5 gnd netg760 +X2965 g4498_7 g4498_6 g4498_2 g4498_8 g4498_1 g4498_9 g4498_4 g4498_5 g4498_0 g4498_3 gnd netg4498 +X2966 g67_1 g67_0 gnd netg67 +X2967 g6784_2 g6784_0 g6784_1 gnd netg6784 +X2968 g7436_1 g7436_0 gnd netg7436 +X2969 g1807_0 g1807_1 g1807_3 g1807_2 gnd netg1807 +X2970 g72_0 g72_1 g72_2 gnd netg72 +X2971 g602_4 g602_2 g602_1 g602_0 g602_5 g602_3 gnd netg602 +X2972 g6423_5 g6423_2 g6423_3 g6423_4 g6423_1 g6423_0 g6423_6 gnd netg6423 +X2973 g6942_3 g6942_4 g6942_5 g6942_0 g6942_2 g6942_1 gnd netg6942 +X2974 g3828_10 g3828_2 g3828_5 g3828_9 g3828_8 g3828_6 g3828_1 g3828_0 g3828_7 g3828_4 g3828_3 gnd netg3828 +X2975 g2045_3 g2045_1 g2045_0 g2045_2 gnd netg2045 +X2976 g103_1 g103_0 gnd netg103 +X2977 g1816_3 g1816_2 g1816_1 g1816_0 gnd netg1816 +X2978 g1500_0 g1500_1 gnd netg1500 +X2979 g125_1 g125_0 gnd netg125 +X2980 g6281_2 g6281_0 g6281_1 gnd netg6281 +X2981 g7144_1 g7144_2 g7144_0 gnd netg7144 +X2982 g4568_13 g4568_12 g4568_9 g4568_6 g4568_4 g4568_10 g4568_8 g4568_2 g4568_11 g4568_1 g4568_3 g4568_7 gnd netg4568 +X2983 g126_0 g126_1 gnd netg126 +X2984 g7511_1 g7511_0 gnd netg7511 +X2985 g2801_1 g2801_0 gnd netg2801 +X2986 g105_0 g105_1 gnd netg105 +X2987 g1282_1 g1282_0 gnd netg1282 +X2988 g1856_2 g1856_0 g1856_1 gnd netg1856 +X2989 g6366_3 g6366_2 g6366_0 g6366_1 gnd netg6366 +X2990 g73_2 g73_1 g73_0 gnd netg73 +X2991 g7534_1 g7534_0 gnd netg7534 +X2992 g81_1 g81_0 gnd netg81 +X2993 g6610_1 g6610_0 gnd netg6610 +X2994 g1600_2 g1600_3 g1600_1 g1600_0 gnd netg1600 +X2995 g6026_6 g6026_4 g6026_0 g6026_5 g6026_3 g6026_1 g6026_2 gnd netg6026 +X2996 g80_0 g80_1 gnd netg80 +X2997 g1350_5 g1350_4 g1350_2 g1350_0 g1350_3 g1350_1 gnd netg1350 +X2998 g2049_5 g2049_0 g2049_1 g2049_4 g2049_2 g2049_3 gnd netg2049 +X2999 g71_1 g71_2 g71_0 gnd netg71 +X3000 g4812_6 g4812_1 g4812_3 g4812_7 g4812_5 g4812_2 g4812_4 gnd netg4812 +X3001 g104_0 g104_1 gnd netg104 +X3002 g6703_1 g6703_0 gnd netg6703 +X3003 g1616_3 g1616_2 g1616_0 g1616_1 gnd netg1616 +X3004 g6401_0 g6401_1 gnd netg6401 +X3005 g3694_3 g3694_1 g3694_2 g3694_0 gnd netg3694 +X3006 g1679_0 g1679_3 g1679_2 g1679_1 gnd netg1679 +X3007 g3024_5 g3024_1 g3024_4 g3024_2 g3024_3 g3024_0 gnd netg3024 +X3008 g628_4 g628_2 g628_5 g628_3 g628_1 g628_0 gnd netg628 +X3009 g4711_4 g4711_7 g4711_2 g4711_1 g4711_8 g4711_6 g4711_0 g4711_3 g4711_9 g4711_5 gnd netg4711 +X3010 g4463_10 g4463_5 g4463_9 g4463_4 g4463_8 g4463_2 g4463_6 g4463_0 g4463_1 g4463_7 g4463_3 gnd netg4463 +X3011 g5799_1 g5799_2 g5799_0 gnd netg5799 +X3012 g3517_1 g3517_0 gnd netg3517 +X3013 g4721_5 g4721_2 g4721_8 g4721_4 g4721_0 g4721_3 g4721_9 g4721_6 g4721_1 g4721_7 g4721_10 gnd netg4721 +X3014 g79_1 g79_0 gnd netg79 +X3015 g2055_2 g2055_4 g2055_3 g2055_6 g2055_5 g2055_0 gnd netg2055 +X3016 g7499_1 g7499_0 gnd netg7499 +X3017 g1395_1 g1395_0 gnd netg1395 +X3018 g1836_0 g1836_2 g1836_1 g1836_3 gnd netg1836 +X3019 g614_3 g614_0 g614_4 g614_1 g614_5 g614_2 gnd netg614 +X3020 g1786_5 g1786_2 g1786_4 g1786_3 g1786_0 g1786_1 gnd netg1786 +X3021 g5847_1 g5847_0 gnd netg5847 +X3022 g5170_1 g5170_3 g5170_0 g5170_2 gnd netg5170 +X3023 g6071_1 g6071_0 gnd netg6071 +X3024 g5287_1 g5287_6 g5287_5 g5287_0 g5287_4 g5287_3 g5287_2 gnd netg5287 +X3025 g3516_1 g3516_0 gnd netg3516 +X3026 g6583_1 g6583_0 gnd netg6583 +X3027 g1727_1 g1727_2 g1727_0 g1727_3 gnd netg1727 +X3028 g1596_1 g1596_2 g1596_0 g1596_3 gnd netg1596 +X3029 g124_1 g124_0 gnd netg124 +X3030 g3768_1 g3768_8 g3768_3 g3768_0 g3768_13 g3768_2 g3768_10 g3768_12 g3768_11 g3768_6 g3768_7 g3768_9 g3768_5 g3768_4 g3768_15 g3768_14 gnd netg3768 +X3031 g1687_1 g1687_0 g1687_2 g1687_3 gnd netg1687 +X3032 g3873_8 g3873_3 g3873_9 g3873_0 g3873_6 g3873_1 g3873_7 g3873_5 g3873_2 g3873_4 gnd netg3873 +X3033 g4791_2 g4791_3 g4791_7 g4791_9 g4791_5 g4791_10 g4791_8 g4791_0 g4791_1 g4791_4 g4791_6 gnd netg4791 +X3034 g2123_1 g2123_3 g2123_2 g2123_0 gnd netg2123 +X3035 g4850_9 g4850_1 g4850_4 g4850_8 g4850_6 g4850_3 g4850_10 g4850_2 g4850_12 g4850_7 g4850_11 g4850_5 gnd netg4850 +X3036 g3617_12 g3617_3 g3617_9 g3617_7 g3617_5 g3617_2 g3617_8 g3617_1 g3617_4 g3617_10 g3617_0 g3617_6 g3617_11 gnd netg3617 +X3037 g2326_1 g2326_0 g2326_3 g2326_2 gnd netg2326 +X3038 g2330_3 g2330_1 g2330_0 gnd netg2330 +X3039 g1098_1 g1098_0 gnd netg1098 +X3040 g7257_0 g7257_1 g7257_2 gnd netg7257 +X3041 g134_1 g134_0 gnd netg134 +X3042 g128_1 g128_0 gnd netg128 +X3043 g1474_1 g1474_0 gnd netg1474 +X3044 g4869_1 g4869_6 g4869_5 g4869_2 g4869_0 g4869_4 g4869_3 gnd netg4869 +X3045 g7521_1 g7521_0 gnd netg7521 +X3046 g727_4 g727_5 g727_6 g727_1 g727_3 gnd netg727 +X3047 g2531_2 g2531_0 gnd netg2531 +X3048 g2342_3 g2342_1 g2342_0 gnd netg2342 +X3049 g7501_1 g7501_0 gnd netg7501 +X3050 g7445_1 g7445_0 gnd netg7445 +X3051 g3803_3 g3803_0 g3803_6 g3803_4 g3803_2 g3803_1 gnd netg3803 +X3052 g6371_1 g6371_0 gnd netg6371 +X3053 g7500_1 g7500_0 gnd netg7500 +X3054 g69_0 g69_2 g69_1 gnd netg69 +X3055 g4834_8 g4834_12 g4834_5 g4834_15 g4834_9 g4834_1 g4834_3 g4834_13 g4834_4 g4834_14 g4834_0 g4834_11 g4834_10 g4834_6 g4834_2 gnd netg4834 +X3056 g428_4 g428_8 g428_1 g428_5 g428_9 g428_6 g428_7 g428_2 g428_10 g428_3 gnd netg428 +X3057 g7532_0 g7532_1 gnd netg7532 +X3058 g4820_4 g4820_1 g4820_10 g4820_7 g4820_6 g4820_0 g4820_11 g4820_13 g4820_12 g4820_9 g4820_2 g4820_8 g4820_5 gnd netg4820 +X3059 g5986_1 g5986_0 g5986_2 gnd netg5986 +X3060 g1900_0 g1900_1 gnd netg1900 +X3061 g576_1 g576_3 g576_5 g576_2 g576_0 g576_4 gnd netg576 +X3062 g1664_0 g1664_3 g1664_2 g1664_5 g1664_4 g1664_1 gnd netg1664 +X3063 g3030_5 g3030_4 g3030_1 g3030_3 g3030_0 g3030_6 g3030_2 gnd netg3030 +X3064 x171_0 x171_1 gnd netx171 +X3065 g666_4 g666_3 g666_2 g666_5 g666_1 g666_0 gnd netg666 +X3066 g4560_6 g4560_5 g4560_4 g4560_3 g4560_0 g4560_7 g4560_2 g4560_1 gnd netg4560 +X3067 g2334_3 g2334_1 g2334_2 g2334_0 gnd netg2334 +X3068 g120_1 g120_0 gnd netg120 +X3069 g2683_2 g2683_1 g2683_0 gnd netg2683 +X3070 g3862_8 g3862_0 g3862_7 g3862_6 g3862_9 g3862_2 g3862_10 g3862_3 g3862_1 g3862_5 g3862_4 gnd netg3862 +X3071 g2853_5 g2853_2 g2853_3 g2853_4 g2853_1 gnd netg2853 +X3072 g102_0 g102_1 gnd netg102 +X3073 g89_0 g89_1 gnd netg89 +X3074 g44_0 g44_1 gnd netg44 +X3075 g634_3 g634_1 g634_0 g634_2 g634_5 g634_4 gnd netg634 +X3076 g821_0 g821_6 g821_3 g821_1 g821_4 g821_2 g821_5 gnd netg821 +X3077 g1459_1 g1459_0 gnd netg1459 +X3078 g3784_3 g3784_2 g3784_0 g3784_9 g3784_12 g3784_8 g3784_7 g3784_6 g3784_4 g3784_1 g3784_11 g3784_10 g3784_5 gnd netg3784 +X3079 g3579_2 g3579_5 g3579_0 g3579_4 g3579_1 g3579_6 g3579_3 g3579_7 gnd netg3579 +X3080 g5977_2 g5977_0 g5977_1 gnd netg5977 +X3081 g5502_2 g5502_1 g5502_0 gnd netg5502 +X3082 g5839_3 g5839_1 g5839_0 g5839_2 gnd netg5839 +X3083 g2280_2 g2280_3 g2280_1 g2280_0 gnd netg2280 +X3084 g133_0 g133_1 gnd netg133 +X3085 g6568_2 g6568_0 g6568_4 g6568_1 g6568_3 gnd netg6568 +X3086 g652_5 g652_4 g652_2 g652_0 g652_1 g652_3 g652_7 g652_6 gnd netg652 +X3087 g7512_0 g7512_1 gnd netg7512 +X3088 g3037_0 g3037_6 g3037_5 g3037_3 g3037_1 g3037_2 g3037_7 g3037_4 gnd netg3037 +X3089 g2409_0 g2409_2 g2409_1 gnd netg2409 +X3090 g1683_2 g1683_3 g1683_1 gnd netg1683 +X3091 g7513_0 g7513_1 gnd netg7513 +X3092 g5418_1 g5418_0 g5418_2 gnd netg5418 +X3093 g7515_0 g7515_1 gnd netg7515 +X3094 g45_0 g45_1 gnd netg45 +X3095 g683_3 g683_2 g683_0 g683_5 g683_6 g683_1 g683_4 gnd netg683 +X3096 g3057_1 g3057_0 gnd netg3057 +X3097 g588_2 g588_3 g588_1 g588_4 g588_5 g588_0 gnd netg588 +X3098 g6590_2 g6590_1 g6590_4 g6590_0 g6590_3 g6590_6 gnd netg6590 +X3099 g56_1 g56_0 gnd netg56 +X3100 g7497_0 g7497_1 gnd netg7497 +X3101 g2284_1 g2284_0 g2284_3 g2284_2 gnd netg2284 +X3102 g3587_8 g3587_9 g3587_2 g3587_12 g3587_0 g3587_3 g3587_13 g3587_6 g3587_11 g3587_4 g3587_10 g3587_1 g3587_7 gnd netg3587 +X3103 g582_5 g582_4 g582_2 g582_3 g582_1 g582_0 gnd netg582 +X3104 g2552_1 g2552_0 g2552_2 gnd netg2552 +X3105 g1102_4 g1102_2 g1102_1 g1102_0 g1102_3 g1102_5 gnd netg1102 +X3106 g7498_1 g7498_0 gnd netg7498 +X3107 g7510_1 g7510_0 gnd netg7510 +X3108 g4582_6 g4582_5 g4582_3 g4582_12 g4582_10 g4582_15 g4582_9 g4582_0 g4582_11 g4582_2 g4582_7 g4582_1 g4582_8 g4582_13 g4582_4 g4582_14 gnd netg4582 +X3109 g46_1 g46_0 gnd netg46 +X3110 g7506_1 g7506_0 gnd netg7506 +X3111 g2680_2 g2680_0 g2680_1 gnd netg2680 +X3112 g594_3 g594_7 g594_5 g594_2 g594_6 g594_4 g594_1 gnd netg594 +X3113 g3552_1 g3552_0 gnd netg3552 +X3114 g842_6 g842_0 g842_1 g842_4 g842_3 g842_2 g842_5 gnd netg842 +X3115 g660_4 g660_1 g660_2 g660_0 g660_5 g660_3 gnd netg660 +X3116 g2314_2 g2314_3 g2314_1 gnd netg2314 +X3117 g7495_1 g7495_0 gnd netg7495 +X3118 g1398_1 g1398_0 gnd netg1398 +X3119 g1811_3 g1811_0 g1811_2 g1811_1 gnd netg1811 +X3120 g1620_0 g1620_3 g1620_2 g1620_1 gnd netg1620 +X3121 g2276_2 g2276_1 g2276_3 g2276_0 gnd netg2276 +X3122 g1116_0 g1116_1 gnd netg1116 +X3123 g2089_0 g2089_2 g2089_1 gnd netg2089 +X3124 g123_0 g123_1 gnd netg123 +X3125 g138_1 g138_0 gnd netg138 +X3126 g58_1 g58_0 gnd netg58 +X3127 g4662_0 g4662_2 g4662_1 gnd netg4662 +X3128 g2635_0 g2635_1 g2635_2 gnd netg2635 +X3129 g7260_2 g7260_0 g7260_1 gnd netg7260 +X3130 g2546_0 g2546_2 g2546_1 gnd netg2546 +X3131 g712_3 g712_1 g712_0 g712_2 gnd netg712 +X3132 g1905_1 g1905_0 gnd netg1905 +X3133 g21_0 g21_1 gnd netg21 +X3134 g7493_1 g7493_0 gnd netg7493 +X3135 g139_1 g139_0 gnd netg139 +X3136 g2107_3 g2107_1 g2107_0 g2107_2 gnd netg2107 +X3137 g1904_1 g1904_0 gnd netg1904 +X3138 g5968_0 g5968_1 gnd netg5968 +X3139 g1782_3 g1782_1 g1782_0 g1782_2 gnd netg1782 +X3140 g4784_3 g4784_2 g4784_4 g4784_1 g4784_6 g4784_5 g4784_0 gnd netg4784 +X3141 g7496_1 g7496_0 gnd netg7496 +X3142 g1628_1 g1628_0 g1628_2 g1628_3 gnd netg1628 +X3143 g1828_2 g1828_1 g1828_0 g1828_3 gnd netg1828 +X3144 g6234_0 g6234_1 g6234_2 gnd netg6234 +X3145 g7494_1 g7494_0 gnd netg7494 +X3146 g721_3 g721_0 g721_5 g721_1 g721_2 g721_4 gnd netg721 +X3147 g3294_0 g3294_2 g3294_1 gnd netg3294 +X3148 g43_0 g43_1 gnd netg43 +X3149 g5185_2 g5185_1 g5185_0 gnd netg5185 +X3150 g3956_3 g3956_2 g3956_0 g3956_4 gnd netg3956 +X3151 g512_4 g512_3 g512_1 g512_0 gnd netg512 +X3152 g7507_1 g7507_0 gnd netg7507 +X3153 g42_1 g42_0 gnd netg42 +X3154 g7548_0 g7548_1 gnd netg7548 +X3155 g2111_3 g2111_0 g2111_2 g2111_1 gnd netg2111 +X3156 g55_1 g55_0 gnd netg55 +X3157 g1862_2 g1862_1 g1862_0 gnd netg1862 +X3158 g101_0 g101_1 gnd netg101 +X3159 g3950_5 g3950_1 g3950_4 g3950_2 g3950_3 g3950_0 gnd netg3950 +X3160 g1118_0 g1118_1 gnd netg1118 +X3161 g640_0 g640_3 g640_5 g640_1 g640_2 g640_4 gnd netg640 +X3162 g7552_1 g7552_0 gnd netg7552 +X3163 g48_0 g48_1 gnd netg48 +X3164 g111_0 g111_1 gnd netg111 +X3165 g1178_6 g1178_3 g1178_4 g1178_0 g1178_5 g1178_2 g1178_1 gnd netg1178 +X3166 g96_0 g96_1 gnd netg96 +X3167 g2389_2 g2389_1 g2389_0 gnd netg2389 +X3168 g2288_1 g2288_3 g2288_0 g2288_2 gnd netg2288 +X3169 g1824_0 g1824_1 g1824_2 g1824_3 gnd netg1824 +X3170 g135_0 g135_1 gnd netg135 +X3171 g5830_0 g5830_2 g5830_1 gnd netg5830 +X3172 g88_1 g88_0 gnd netg88 +X3173 g2641_2 g2641_0 g2641_1 gnd netg2641 +X3174 g5302_5 g5302_3 g5302_6 g5302_4 g5302_2 g5302_1 g5302_0 gnd netg5302 +X3175 g136_0 g136_1 gnd netg136 +X3176 g2692_1 g2692_2 gnd netg2692 +X3177 g3366_0 g3366_1 gnd netg3366 +X3178 g7545_1 g7545_0 gnd netg7545 +X3179 g140_1 g140_0 gnd netg140 +X3180 g1954_2 g1954_0 g1954_1 gnd netg1954 +X3181 g6564_0 g6564_1 gnd netg6564 +X3182 g7547_1 g7547_0 gnd netg7547 +X3183 g7546_1 g7546_0 gnd netg7546 +X3184 g142_1 g142_0 gnd netg142 +X3185 g5569_1 g5569_0 g5569_2 gnd netg5569 +X3186 g501_2 g501_4 g501_1 g501_3 g501_5 gnd netg501 +X3187 g33_1 g33_0 gnd netg33 +X3188 g39_0 g39_1 gnd netg39 +X3189 g137_0 g137_1 gnd netg137 +X3190 g2292_3 g2292_1 g2292_2 g2292_0 gnd netg2292 +X3191 g6214_1 g6214_2 g6214_0 gnd netg6214 +X3192 g60_1 g60_0 gnd netg60 +X3193 g538_4 g538_2 g538_1 g538_3 g538_5 gnd netg538 +X3194 g3601_9 g3601_8 g3601_7 g3601_15 g3601_4 g3601_14 g3601_12 g3601_2 g3601_5 g3601_11 g3601_10 g3601_0 g3601_3 g3601_1 g3601_13 g3601_6 gnd netg3601 +X3195 g2412_2 g2412_1 g2412_0 gnd netg2412 +X3196 g7491_1 g7491_0 gnd netg7491 +X3197 g3361_2 g3361_1 g3361_0 gnd netg3361 +X3198 g2188_0 g2188_2 g2188_1 g2188_3 g2188_5 g2188_4 gnd netg2188 +X3199 g4880_1 g4880_0 g4880_2 g4880_3 gnd netg4880 +X3200 g6067_0 g6067_1 gnd netg6067 +X3201 g1502_0 g1502_1 gnd netg1502 +X3202 g40_0 g40_1 gnd netg40 +X3203 g6406_0 g6406_1 gnd netg6406 +X3204 g4474_5 g4474_8 g4474_6 g4474_10 g4474_1 g4474_4 g4474_0 g4474_7 g4474_9 g4474_2 g4474_3 gnd netg4474 +X3205 g621_2 g621_4 g621_6 g621_3 g621_1 g621_5 gnd netg621 +X3206 g57_1 g57_0 gnd netg57 +X3207 g122_1 g122_0 gnd netg122 +X3208 g7492_0 g7492_1 gnd netg7492 +X3209 g1185_6 g1185_5 g1185_1 g1185_4 g1185_2 g1185_3 g1185_0 gnd netg1185 +X3210 g6064_1 g6064_0 gnd netg6064 +X3211 g3754_5 g3754_2 g3754_12 g3754_10 g3754_4 g3754_9 g3754_6 g3754_13 g3754_3 g3754_7 g3754_11 g3754_8 g3754_0 g3754_1 gnd netg3754 +X3212 g6056_4 g6056_0 g6056_2 g6056_5 g6056_1 g6056_6 g6056_3 gnd netg6056 +X3213 g391_1 g391_0 g391_2 gnd netg391 +X3214 g2802_0 g2802_1 gnd netg2802 +X3215 g2794_1 g2794_0 gnd netg2794 +X3216 g5499_0 g5499_1 g5499_2 gnd netg5499 +X3217 g4359_1 g4359_2 g4359_0 gnd netg4359 +X3218 g646_3 g646_4 g646_0 g646_5 g646_2 g646_1 gnd netg646 +X3219 g2300_0 g2300_2 g2300_3 g2300_1 gnd netg2300 +X3220 g4876_3 g4876_1 g4876_0 g4876_2 gnd netg4876 +X3221 g450_4 g450_0 g450_3 g450_1 g450_2 gnd netg450 +X3222 g2296_3 g2296_2 g2296_1 g2296_0 gnd netg2296 +X3223 g1832_1 g1832_3 g1832_0 g1832_2 gnd netg1832 +X3224 g3852_3 g3852_2 g3852_8 g3852_9 g3852_0 g3852_5 g3852_7 g3852_1 g3852_6 g3852_4 gnd netg3852 +X3225 g494_5 g494_4 g494_3 g494_1 g494_2 g494_0 gnd netg494 +X3226 g4377_0 g4377_2 g4377_1 gnd netg4377 +X3227 g6203_0 g6203_1 gnd netg6203 +X3228 g1612_2 g1612_1 g1612_0 g1612_3 gnd netg1612 +X3229 g1604_3 g1604_0 g1604_2 g1604_1 gnd netg1604 +X3230 g2115_2 g2115_3 g2115_1 gnd netg2115 +X3231 g3355_2 g3355_1 g3355_0 gnd netg3355 +X3232 g2194_0 g2194_2 g2194_5 g2194_1 g2194_4 g2194_3 gnd netg2194 +X3233 g59_1 g59_0 gnd netg59 +X3234 g532_1 g532_0 g532_5 g532_4 g532_3 gnd netg532 +X3235 g41_1 g41_0 gnd netg41 +X3236 g6520_0 g6520_1 gnd netg6520 +X3237 g36_1 g36_0 gnd netg36 +X3238 g6597_3 g6597_0 g6597_6 g6597_2 g6597_1 g6597_4 g6597_5 gnd netg6597 +X3239 g3845_4 g3845_2 g3845_3 g3845_1 g3845_6 g3845_5 g3845_0 gnd netg3845 +X3240 g2203_1 g2203_5 g2203_3 g2203_4 g2203_2 gnd netg2203 +X3241 g2421_1 g2421_0 gnd netg2421 +X3242 g6408_1 g6408_0 gnd netg6408 +X3243 g3687_0 g3687_2 g3687_1 g3687_3 gnd netg3687 +X3244 g5816_3 g5816_2 g5816_1 g5816_0 gnd netg5816 +X3245 g37_1 g37_0 gnd netg37 +X3246 g699_3 g699_2 g699_4 g699_1 g699_5 g699_0 gnd netg699 +X3247 g47_0 g47_1 gnd netg47 +X3248 g799_3 g799_1 g799_0 g799_2 g799_5 g799_4 gnd netg799 +X3249 g1462_3 g1462_1 g1462_2 g1462_5 g1462_4 g1462_0 gnd netg1462 +X3250 g672_1 g672_3 g672_2 g672_4 g672_0 g672_5 gnd netg672 +X3251 g38_0 g38_1 gnd netg38 +X3252 g6778_0 g6778_1 g6778_2 gnd netg6778 +X3253 g34_1 g34_0 gnd netg34 +X3254 g5269_1 g5269_0 gnd netg5269 +X3255 g3071_2 g3071_0 g3071_5 g3071_4 g3071_3 g3071_1 gnd netg3071 +X3256 g54_1 g54_0 g54_2 gnd netg54 +X3257 g2182_5 g2182_2 g2182_1 g2182_4 g2182_3 g2182_0 gnd netg2182 +X3258 g442_0 g442_2 g442_1 g442_3 gnd netg442 +X3259 g1859_0 g1859_1 g1859_2 gnd netg1859 +X3260 g488_3 g488_4 g488_2 g488_0 g488_1 g488_5 gnd netg488 +X3261 g35_0 g35_1 gnd netg35 +X3262 g31_1 g31_0 gnd netg31 +X3263 g64_1 g64_0 g64_2 gnd netg64 +X3264 g143_0 g143_1 gnd netg143 +X3265 g145_1 g145_0 gnd netg145 +X3266 g2209_4 g2209_3 g2209_0 g2209_5 g2209_1 g2209_2 gnd netg2209 +X3267 g2119_1 g2119_2 g2119_3 g2119_0 gnd netg2119 +X3268 g6705_0 g6705_3 g6705_2 g6705_4 g6705_1 gnd netg6705 +X3269 g86_0 g86_1 gnd netg86 +X3270 g147_1 g147_0 gnd netg147 +X3271 g2304_0 g2304_3 g2304_2 g2304_1 gnd netg2304 +X3272 g74_1 g74_0 gnd netg74 +X3273 g20_1 g20_0 gnd netg20 +X3274 g2308_2 g2308_3 g2308_1 g2308_0 gnd netg2308 +X3275 g18_1 g18_0 gnd netg18 +X3276 g146_0 g146_1 gnd netg146 +X3277 g29_0 g29_1 gnd netg29 +X3278 g26_1 g26_0 gnd netg26 +X3279 g144_0 g144_1 gnd netg144 +X3280 g2147_2 g2147_3 g2147_4 g2147_1 g2147_0 g2147_5 gnd netg2147 +X3281 g1710_4 g1710_2 g1710_3 g1710_5 g1710_1 g1710_0 gnd netg1710 +X3282 g132_0 g132_1 gnd netg132 +X3283 g7525_1 g7525_0 gnd netg7525 +X3284 g519_5 g519_3 g519_6 g519_4 g519_1 g519_0 g519_2 gnd netg519 +X3285 g2175_4 g2175_6 g2175_5 g2175_3 g2175_2 g2175_1 g2175_0 gnd netg2175 +X3286 g1632_2 g1632_4 g1632_1 g1632_5 g1632_3 g1632_0 gnd netg1632 +X3287 g32_0 g32_1 g32_2 gnd netg32 +X3288 g7502_0 g7502_1 gnd netg7502 +X3289 g7522_0 g7522_1 gnd netg7522 +X3290 g7482_0 g7482_1 gnd netg7482 +X3291 g446_1 g446_3 g446_0 g446_2 gnd netg446 +X3292 g62_1 g62_2 g62_0 gnd netg62 +X3293 g24_0 g24_1 gnd netg24 +X3294 g129_0 g129_1 gnd netg129 +X3295 g130_1 g130_0 gnd netg130 +X3296 g154_1 g154_0 gnd netg154 +X3297 g2215_1 g2215_4 g2215_2 g2215_5 g2215_0 g2215_3 gnd netg2215 +X3298 g63_0 g63_2 g63_1 gnd netg63 +X3299 g131_0 g131_1 gnd netg131 +X3300 g7524_0 g7524_1 gnd netg7524 +X3301 g61_1 g61_2 g61_0 gnd netg61 +X3302 g25_0 g25_1 gnd netg25 +X3303 g2127_2 g2127_5 g2127_3 g2127_4 g2127_0 g2127_1 gnd netg2127 +X3304 g28_1 g28_0 gnd netg28 +X3305 g2_1 g2_3 g2_2 g2_0 gnd netg2 +X3306 g19_0 g19_1 gnd netg19 +X3307 g141_1 g141_0 gnd netg141 +X3308 g7518_1 g7518_0 gnd netg7518 +X3309 g5_0 g5_2 g5_1 gnd netg5 +X3310 g66_2 g66_0 g66_1 gnd netg66 +X3311 g7457_0 g7457_1 gnd netg7457 +X3312 g27_1 g27_0 gnd netg27 +X3313 g6787_1 g6787_2 g6787_0 gnd netg6787 +X3314 g49_4 g49_0 g49_2 g49_3 g49_1 gnd netg49 +X3315 g17_0 g17_1 gnd netg17 +X3316 g76_0 g76_1 gnd netg76 +X3317 g7536_0 g7536_1 gnd netg7536 +X3318 g7464_1 g7464_0 gnd netg7464 +X3319 g7468_1 g7468_0 gnd netg7468 +X3320 g7509_1 g7509_0 gnd netg7509 +X3321 g6771_4 g6771_6 g6771_5 g6771_0 g6771_3 g6771_1 g6771_2 gnd netg6771 +X3322 g7505_1 g7505_0 gnd netg7505 +X3323 g118_0 g118_1 gnd netg118 +X3324 g7463_0 g7463_1 gnd netg7463 +X3325 g7469_0 g7469_1 gnd netg7469 +X3326 g7508_1 g7508_0 gnd netg7508 +X3327 g7544_1 g7544_0 gnd netg7544 +X3328 g5370_3 g5370_2 g5370_9 g5370_8 g5370_7 g5370_6 g5370_0 g5370_1 g5370_4 g5370_5 gnd netg5370 +X3329 g1698_2 g1698_5 g1698_1 g1698_3 g1698_0 g1698_4 gnd netg1698 +X3330 g23_1 g23_0 gnd netg23 +X3331 g7489_1 g7489_0 gnd netg7489 +X3332 g121_1 g121_0 gnd netg121 +X3333 g7461_0 g7461_1 gnd netg7461 +X3334 g7459_1 g7459_0 gnd netg7459 +X3335 g7481_1 g7481_0 gnd netg7481 +X3336 g7447_1 g7447_0 gnd netg7447 +X3337 g7523_1 g7523_0 gnd netg7523 +X3338 g7446_0 g7446_1 gnd netg7446 +X3339 g22_1 g22_0 gnd netg22 +X3340 g50_1 g50_0 g50_2 gnd netg50 +X3341 g157_1 g157_0 gnd netg157 +X3342 g7452_1 g7452_0 gnd netg7452 +X3343 g7543_1 g7543_0 gnd netg7543 +X3344 g148_0 g148_1 gnd netg148 +X3345 g2244_4 g2244_2 g2244_1 g2244_0 g2244_5 g2244_3 gnd netg2244 +X3346 g7443_1 g7443_0 gnd netg7443 +X3347 g158_1 g158_0 gnd netg158 +X3348 g7453_0 g7453_1 gnd netg7453 +X3349 g190_1 g190_2 g190_0 gnd netg190 +X3350 g1704_5 g1704_1 g1704_2 g1704_0 g1704_4 g1704_3 gnd netg1704 +X3351 g7530_1 g7530_0 gnd netg7530 +X3352 g149_1 g149_0 gnd netg149 +X3353 g7542_1 g7542_0 gnd netg7542 +X3354 g189_0 g189_2 g189_1 gnd netg189 +X3355 g7462_0 g7462_1 gnd netg7462 +X3356 g119_1 g119_0 gnd netg119 +X3357 g7487_1 g7487_0 gnd netg7487 +X3358 g159_0 g159_1 gnd netg159 +X3359 g163_0 g163_1 gnd netg163 +X3360 g170_1 g170_2 gnd netg170 +X3361 g7485_0 g7485_1 gnd netg7485 +X3362 g7472_1 g7472_0 gnd netg7472 +X3363 g7488_1 g7488_0 gnd netg7488 +X3364 g7480_0 g7480_1 gnd netg7480 +X3365 g51_2 g51_1 g51_0 gnd netg51 +X3366 g7477_0 g7477_1 gnd netg7477 +X3367 g2141_3 g2141_2 g2141_0 g2141_1 g2141_4 g2141_5 gnd netg2141 +X3368 g162_1 g162_0 gnd netg162 +X3369 g193_1 g193_2 g193_0 gnd netg193 +X3370 g151_0 g151_1 gnd netg151 +X3371 g161_0 g161_1 gnd netg161 +X3372 g155_1 g155_0 gnd netg155 +X3373 g171_2 g171_0 g171_1 gnd netg171 +X3374 g153_1 g153_0 gnd netg153 +X3375 g150_1 g150_0 gnd netg150 +X3376 g7516_1 g7516_0 gnd netg7516 +X3377 g7479_0 g7479_1 gnd netg7479 +X3378 g188_1 g188_0 g188_2 gnd netg188 +X3379 g526_5 g526_3 g526_0 g526_4 g526_1 g526_2 gnd netg526 +X3380 g7473_0 g7473_1 gnd netg7473 +X3381 g7476_1 g7476_0 gnd netg7476 +X3382 g7517_0 g7517_1 gnd netg7517 +X3383 g1691_6 g1691_3 g1691_5 g1691_2 g1691_1 g1691_4 g1691_0 gnd netg1691 +X3384 g7458_0 g7458_1 gnd netg7458 +X3385 g7541_0 g7541_1 gnd netg7541 +X3386 g479_1 g479_5 g479_3 g479_2 g479_4 g479_0 gnd netg479 +X3387 g156_0 g156_1 gnd netg156 +X3388 g164_1 g164_0 gnd netg164 +X3389 g7514_0 g7514_1 gnd netg7514 +X3390 g160_1 g160_0 gnd netg160 +X3391 g152_1 g152_0 gnd netg152 +X3392 g169_1 g169_0 g169_2 gnd netg169 +X3393 g12_0 g12_2 g12_1 gnd netg12 +X3394 g7474_1 g7474_0 gnd netg7474 +X3395 g53_2 g53_1 g53_0 gnd netg53 +X3396 g2258_4 g2258_3 g2258_2 g2258_1 g2258_5 gnd netg2258 +X3397 g194_2 g194_0 g194_1 gnd netg194 +X3398 g7478_1 g7478_0 gnd netg7478 +X3399 g2250_1 g2250_4 g2250_2 g2250_6 g2250_7 g2250_5 g2250_3 gnd netg2250 +X3400 g2133_7 g2133_0 g2133_6 g2133_4 g2133_3 g2133_2 g2133_1 gnd netg2133 +X3401 g52_2 g52_1 g52_0 gnd netg52 +X3402 g2264_4 g2264_3 g2264_5 g2264_2 g2264_1 g2264_0 gnd netg2264 +X3403 g2153_1 g2153_3 g2153_2 g2153_5 g2153_4 g2153_0 gnd netg2153 +X3404 g65_2 g65_0 g65_1 gnd netg65 +X3405 g394_1 g394_0 g394_2 gnd netg394 +X3406 g1652_0 g1652_5 g1652_2 g1652_3 g1652_4 g1652_1 gnd netg1652 +X3407 g400_1 g400_0 g400_2 gnd netg400 +X3408 g7520_0 g7520_1 gnd netg7520 +X3409 g7475_1 g7475_0 gnd netg7475 +X3410 g7451_1 g7451_0 gnd netg7451 +X3411 g553_5 g553_1 g553_4 g553_0 g553_3 g553_2 gnd netg553 +X3412 g172_1 g172_2 g172_0 gnd netg172 +X3413 g397_1 g397_0 g397_2 gnd netg397 +X3414 g545_5 g545_0 g545_6 g545_4 g545_7 g545_1 g545_2 g545_3 gnd netg545 +X3415 g175_1 g175_0 g175_2 gnd netg175 +X3416 g1658_4 g1658_1 g1658_2 g1658_5 g1658_3 g1658_0 gnd netg1658 +X3417 g7454_0 g7454_1 gnd netg7454 +X3418 g168_2 g168_1 g168_0 gnd netg168 +X3419 g1646_2 g1646_0 g1646_4 g1646_5 g1646_3 g1646_1 gnd netg1646 +X3420 g7486_1 g7486_0 gnd netg7486 +X3421 g470_1 g470_0 g470_2 gnd netg470 +X3422 g7455_0 g7455_1 gnd netg7455 +X3423 g473_4 g473_3 g473_0 g473_5 g473_2 g473_1 gnd netg473 +X3424 g1638_4 g1638_2 g1638_0 g1638_7 g1638_1 g1638_5 g1638_3 gnd netg1638 +X3425 g7470_1 g7470_0 gnd netg7470 +X3426 g7471_1 g7471_0 gnd netg7471 +X3427 g205_2 g205_0 g205_1 gnd netg205 +X3428 g7460_1 g7460_0 gnd netg7460 +X3429 g2270_0 g2270_3 g2270_4 g2270_5 g2270_2 g2270_1 gnd netg2270 +X3430 g7450_0 g7450_1 gnd netg7450 +X3431 g7504_0 g7504_1 gnd netg7504 +X3432 g7449_1 g7449_0 gnd netg7449 +X3433 g7503_0 g7503_1 gnd netg7503 +X3434 g197_0 g197_1 g197_2 gnd netg197 +X3435 g4_2 g4_1 g4_0 gnd netg4 +X3436 g1750_4 g1750_0 g1750_2 g1750_5 g1750_3 g1750_1 gnd netg1750 +X3437 g457_6 g457_2 g457_5 g457_1 g457_4 g457_3 g457_0 gnd netg457 +X3438 g1738_5 g1738_2 g1738_1 g1738_4 g1738_3 g1738_0 gnd netg1738 +X3439 g183_0 g183_1 g183_2 gnd netg183 +X3440 g7465_1 g7465_0 gnd netg7465 +X3441 g3_2 g3_1 g3_0 gnd netg3 +X3442 g1_3 g1_1 g1_0 g1_2 gnd netg1 +X3443 g167_1 g167_2 g167_0 gnd netg167 +X3444 g7448_0 g7448_1 gnd netg7448 +X3445 g7490_1 g7490_0 gnd netg7490 +X3446 g1744_1 g1744_0 g1744_4 g1744_3 g1744_2 g1744_5 gnd netg1744 +X3447 g7466_1 g7466_0 gnd netg7466 +X3448 g178_2 g178_1 g178_0 gnd netg178 +X3449 g30_0 g30_2 g30_1 gnd netg30 +X3450 g7467_0 g7467_1 gnd netg7467 +X3451 g191_2 g191_1 g191_0 gnd netg191 +X3452 g464_0 g464_4 g464_3 g464_2 g464_1 g464_5 gnd netg464 +X3453 g179_2 g179_1 g179_0 gnd netg179 +X3454 g195_0 g195_2 g195_1 gnd netg195 +X3455 g7456_0 g7456_1 gnd netg7456 +X3456 g7484_0 g7484_1 gnd netg7484 +X3457 g192_2 g192_1 g192_0 gnd netg192 +X3458 g199_0 g199_1 g199_2 gnd netg199 +X3459 g202_0 g202_2 g202_1 gnd netg202 +X3460 g14_0 g14_2 g14_1 gnd netg14 +X3461 g176_2 g176_1 g176_0 gnd netg176 +X3462 g13_2 g13_1 g13_0 gnd netg13 +X3463 g1731_5 g1731_4 g1731_0 g1731_3 g1731_1 g1731_2 g1731_6 gnd netg1731 +X3464 g1756_5 g1756_3 g1756_1 g1756_4 g1756_2 g1756_0 gnd netg1756 +X3465 g201_1 g201_2 g201_0 gnd netg201 +X3466 g203_0 g203_2 g203_1 gnd netg203 +X3467 g204_1 g204_2 g204_0 gnd netg204 +X3468 g198_0 g198_2 g198_1 gnd netg198 +X3469 g7_2 g7_0 g7_1 gnd netg7 +X3470 g186_1 g186_2 g186_0 gnd netg186 +X3471 g9_1 g9_2 g9_0 gnd netg9 +X3472 g196_2 g196_1 g196_0 gnd netg196 +X3473 g206_10 g206_5 g206_8 g206_7 g206_4 g206_14 g206_3 g206_1 g206_6 g206_13 g206_12 g206_2 g206_0 g206_11 g206_9 gnd netg206 +X3474 g16_1 g16_2 g16_0 gnd netg16 +X3475 g177_1 g177_0 g177_2 gnd netg177 +X3476 g7483_1 g7483_0 gnd netg7483 +X3477 g200_0 g200_2 g200_1 gnd netg200 +X3478 g8_1 g8_2 g8_0 gnd netg8 +X3479 g207_3 g207_2 g207_0 g207_4 g207_1 gnd netg207 +X3480 g11_2 g11_1 gnd netg11 +X3481 g6_0 g6_2 g6_1 g6_4 g6_3 gnd netg6 +X3482 g15_0 g15_2 g15_1 gnd netg15 +X3483 g187_2 g187_0 g187_1 gnd netg187 +X3484 g10_1 g10_0 g10_2 gnd netg10 +X3485 g182_1 g182_0 g182_2 gnd netg182 +X3486 g173_2 g173_0 g173_3 g173_1 gnd netg173 +X3487 g174_2 g174_3 g174_1 g174_0 gnd netg174 +X3488 g388_2 g388_1 g388_0 gnd netg388 +X3489 g181_0 g181_2 g181_1 g181_3 gnd netg181 +X3490 g87_0 g87_1 gnd netg87 +X3491 g166_0 g166_2 g166_1 gnd netg166 +X3492 g180_0 g180_1 g180_2 gnd netg180 +X3493 g185_0 g185_2 g185_1 g185_3 gnd netg185 +X3494 g184_0 g184_3 g184_2 g184_1 gnd netg184 +X3495 g165_1 g165_0 gnd netg165 + +* the calls of the component sub circuits: + +X3496 g2386_0 vdd gnd g2788_0 not1 +X3497 g6994_0 g6881_0 vdd gnd g7532_0 or2 +X3498 g49_2 g6075_0 g6016_0 vdd gnd x441_1 and3 +X3499 g2284_1 vdd gnd g3192_1 not1 +X3500 g3234_1 g1267_1 vdd gnd g4021_0 nand2 +X3501 g1108_3 g1120_0 vdd gnd g1407_1 or2 +X3502 g2618_2 vdd gnd g2995_1 not1 +X3503 g1600_3 vdd gnd g2409_2 not1 +X3504 g1411_3 vdd gnd g1942_2 not1 +X3505 g31_0 g1330_4 vdd gnd g1571_1 and2 +X3506 g4539_5 g2885_0 vdd gnd g5348_0 and2 +X3507 g646_1 g2244_2 vdd gnd g3019_0 and2 +X3508 g4463_8 vdd gnd g5619_2 not1 +X3509 g1929_1 g1556_1 vdd gnd g2300_1 or2 +X3510 g526_1 g1698_3 vdd gnd g2055_3 and2 +X3511 g6371_0 g6370_1 vdd gnd g6475_1 nand2 +X3512 g5086_2 g7101_0 vdd gnd g7125_1 nand2 +X3513 g4913_3 g4908_4 g3060_1 vdd gnd g5520_1 and3 +X3514 g3024_0 g5485_0 g5486_0 g5487_0 vdd gnd g5939_0 or4 +X3515 g2338_0 g2119_1 vdd gnd g3059_1 and2 +X3516 g3432_0 vdd gnd g4204_1 not1 +X3517 g8_1 g785_2 vdd gnd g1222_0 and2 +X3518 g747_1 g1889_0 vdd gnd g1995_0 or2 +X3519 g3404_2 vdd gnd g4110_0 not1 +X3520 g5535_1 g5532_1 g5549_1 vdd gnd g6089_1 and3 +X3521 x171_1 x172_0 vdd gnd g5184_1 or2 +X3522 g1756_0 vdd gnd g2398_0 not1 +X3523 g4383_0 vdd gnd g5265_1 not1 +X3524 g7008_1 g6973_0 vdd gnd g7051_0 nand2 +X3525 g4006_1 g4003_0 g3999_2 vdd gnd x111_1 and3 +X3526 g6281_1 vdd gnd g6440_1 not1 +X3527 g553_4 vdd gnd g904_1 not1 +X3528 g2650_1 g3345_0 vdd gnd g3566_0 nand2 +X3529 g6631_0 g6258_0 vdd gnd g6733_0 nand2 +X3530 g3665_1 g3644_1 vdd gnd x472_0 and2 +X3531 g4519_3 vdd gnd g5578_0 not1 +X3532 g4899_1 g4896_0 g4905_1 vdd gnd g5514_0 and3 +X3533 g1836_0 g1616_1 vdd gnd g2224_1 and2 +X3534 g4976_1 vdd gnd g5239_1 not1 +X3535 g1948_2 g1383_0 vdd gnd g2746_1 nand2 +X3536 g5139_1 vdd gnd g5684_1 not1 +X3537 g486_1 g828_0 vdd gnd g1288_0 and2 +X3538 g859_1 vdd gnd g1125_1 not1 +X3539 g4850_11 vdd gnd g5734_1 not1 +X3540 g652_5 vdd gnd g1054_1 not1 +X3541 g129_0 g1206_3 vdd gnd g1494_0 and2 +X3542 g2641_0 vdd gnd g3045_1 not1 +X3543 g3222_0 vdd gnd g4014_1 not1 +X3544 g3168_2 vdd gnd g3937_1 not1 +X3545 g4704_4 vdd gnd g5557_2 not1 +X3546 g73_2 g1138_4 vdd gnd g1431_1 and2 +X3547 g2576_0 vdd gnd g2935_0 not1 +X3548 x31_0 x32_0 vdd gnd g4346_1 and2 +X3549 g5125_0 g5703_1 vdd gnd g5929_0 nand2 +X3550 g5658_1 g7358_0 vdd gnd g7374_1 nand2 +X3551 g7041_1 g5591_1 vdd gnd g7092_0 nand2 +X3552 g4060_0 g4269_1 vdd gnd g4834_15 nand2 +X3553 g4764_2 vdd gnd g5445_2 not1 +X3554 g2989_0 g6919_0 vdd gnd g6957_0 or2 +X3555 g140_0 g805_0 vdd gnd g1251_0 and2 +X3556 g4863_0 vdd gnd g5719_1 not1 +X3557 g4653_1 g4642_0 g2944_0 g4648_0 vdd gnd g5393_1 and4 +X3558 g772_2 vdd gnd g1185_5 not1 +X3559 g3195_0 g3980_1 vdd gnd g4238_1 nand2 +X3560 g7203_2 vdd gnd g7250_1 not1 +X3561 g4630_4 g2936_1 vdd gnd g5385_1 and2 +X3562 g3572_0 g3573_0 vdd gnd g4196_1 nand2 +X3563 g865_1 g2770_0 vdd gnd g3468_1 nand2 +X3564 g518_0 g842_1 vdd gnd g1356_0 and2 +X3565 g2763_0 g2764_1 vdd gnd g3106_1 nand2 +X3566 g3086_0 g1386_1 vdd gnd g4139_1 nand2 +X3567 g2486_1 vdd gnd g2832_1 not1 +X3568 g1782_3 vdd gnd g2588_2 not1 +X3569 g7260_0 g5780_1 g6687_0 vdd gnd g7299_1 and3 +X3570 g6182_0 g6699_0 vdd gnd g6781_0 and2 +X3571 g2746_0 g2791_1 vdd gnd g3477_0 nand2 +X3572 g2215_2 vdd gnd g3282_1 not1 +X3573 g3484_0 g2800_1 vdd gnd g3694_3 nand2 +X3574 g883_1 g1381_1 vdd gnd g1428_1 nand2 +X3575 g5092_0 vdd gnd g5606_1 not1 +X3576 g3303_1 g1308_0 vdd gnd g4052_1 nand2 +X3577 g6484_1 g6365_0 vdd gnd g6608_1 nand2 +X3578 g3928_7 g4568_11 vdd gnd x222_1 and2 +X3579 g2516_2 g4618_0 vdd gnd g5182_1 nand2 +X3580 g162_1 g1484_5 vdd gnd g1913_1 and2 +X3581 g4346_0 g6590_0 vdd gnd g6686_0 and2 +X3582 g2062_2 g3754_2 vdd gnd x62_0 and2 +X3583 g7231_2 vdd gnd g7263_1 not1 +X3584 g6815_0 g6721_1 vdd gnd g6840_2 nand2 +X3585 g2683_2 vdd gnd g3057_1 not1 +X3586 g1910_0 g1483_1 vdd gnd g2194_5 or2 +X3587 g964_2 vdd gnd g1228_1 not1 +X3588 g494_5 vdd gnd g716_4 not1 +X3589 g5740_2 vdd gnd g6139_0 not1 +X3590 g7287_1 g6140_1 vdd gnd g7335_1 nand2 +X3591 g2280_0 vdd gnd g3198_2 not1 +X3592 g5875_0 g4149_0 vdd gnd g6246_1 nand2 +X3593 g2848_0 g5313_0 g5314_0 g5315_0 vdd gnd g5795_1 or4 +X3594 g3803_2 g3768_0 g3754_1 g3784_2 vdd gnd g4417_1 and4 +X3595 g5867_1 g6451_0 vdd gnd g6550_1 nand2 +X3596 g6659_1 g6606_1 vdd gnd g6703_0 nand2 +X3597 g2756_0 vdd gnd g3561_0 not1 +X3598 g2203_4 vdd gnd g3165_2 not1 +X3599 g7_0 g1212_2 vdd gnd g1499_0 and2 +X3600 g473_3 g1750_2 vdd gnd g2001_0 and2 +X3601 g7231_2 g6009_0 vdd gnd g7264_1 nand2 +X3602 g2885_2 g5353_1 vdd gnd g5806_2 or2 +X3603 g1387_2 g4140_1 vdd gnd g4302_1 nand2 +X3604 g1698_4 vdd gnd g2468_0 not1 +X3605 g6667_1 g6641_1 vdd gnd g6738_2 nand2 +X3606 g3453_2 g4207_1 vdd gnd g4320_1 nand2 +X3607 g3426_1 g4203_1 vdd gnd g4316_1 nand2 +X3608 g3159_2 vdd gnd g3923_0 not1 +X3609 g3132_1 g1228_0 vdd gnd g3899_1 nand2 +X3610 g7096_2 g5601_0 vdd gnd g7140_1 nand2 +X3611 g621_6 g1537_5 vdd gnd g1923_1 and2 +X3612 g3665_4 g2013_4 vdd gnd g4358_1 and2 +X3613 g473_0 g1750_0 vdd gnd g1961_0 and2 +X3614 g5015_2 vdd gnd g5587_1 not1 +X3615 g36_0 g1330_1 vdd gnd g1574_0 and2 +X3616 g6278_2 g6013_1 vdd gnd g6437_1 nand2 +X3617 g5613_0 g6167_0 vdd gnd g6327_1 nand2 +X3618 g494_0 vdd gnd g753_1 not1 +X3619 g4064_1 g4271_0 vdd gnd g4863_1 nand2 +X3620 g2650_2 vdd gnd g3346_1 not1 +X3621 g4997_2 g6898_0 vdd gnd g6937_1 nand2 +X3622 g5984_1 vdd gnd g6154_1 not1 +X3623 g3705_0 g4374_1 g5268_1 vdd gnd g5779_1 and3 +X3624 g2326_2 g2107_0 vdd gnd g3062_1 and2 +X3625 g690_1 vdd gnd g796_1 not1 +X3626 g3123_2 vdd gnd g3894_1 not1 +X3627 g6990_2 vdd gnd g7073_1 not1 +X3628 g5816_0 g6534_0 g6535_0 g6350_0 vdd gnd g6589_0 or4 +X3629 g6196_0 g6048_1 vdd gnd g6361_0 nor2 +X3630 g1431_0 g1151_0 vdd gnd g1675_2 or2 +X3631 g4307_1 g4308_0 vdd gnd g5131_2 nand2 +X3632 g1859_2 vdd gnd g2421_1 not1 +X3633 g1874_1 g2633_0 vdd gnd g2765_1 nand2 +X3634 g4313_0 g4314_1 vdd gnd g5136_2 nand2 +X3635 g2870_0 g5331_0 g5332_0 g5990_0 vdd gnd g6217_0 or4 +X3636 g3617_9 g3601_7 g3579_2 vdd gnd x21_1 and3 +X3637 g7309_2 g5839_1 g6833_3 vdd gnd g7355_0 and3 +X3638 g5234_1 g5235_1 vdd gnd g5680_2 nand2 +X3639 g640_5 g1537_4 vdd gnd g1926_1 and2 +X3640 g7144_2 g5609_1 vdd gnd g7186_1 nand2 +X3641 g5205_2 g6623_1 vdd gnd g6666_1 nand2 +X3642 g4935_0 g4931_0 g4920_0 vdd gnd x301_1 and3 +X3643 g2127_1 vdd gnd g3156_0 not1 +X3644 g7297_1 g7278_1 vdd gnd g7324_1 nand2 +X3645 g3862_3 g2096_1 g3852_1 vdd gnd g4451_0 and3 +X3646 g147_0 g1521_3 vdd gnd g1917_1 and2 +X3647 g2119_3 vdd gnd g3377_2 not1 +X3648 g5643_2 g7105_1 vdd gnd g7127_1 nand2 +X3649 g17_1 g1337_6 vdd gnd g1577_1 and2 +X3650 g5476_0 g5477_0 vdd gnd x352_1 or2 +X3651 g5713_0 vdd gnd g6132_0 not1 +X3652 g2859_1 vdd gnd g4154_2 not1 +X3653 g6322_0 g6026_0 vdd gnd g6539_1 and2 +X3654 g6214_1 vdd gnd g6405_1 not1 +X3655 g1295_6 vdd gnd g1521_4 not1 +X3656 g691_2 vdd gnd g1082_2 not1 +X3657 g5731_2 vdd gnd g6136_1 not1 +X3658 g6351_1 g5287_0 vdd gnd g6536_1 and2 +X3659 g6223_0 vdd gnd g6411_0 not1 +X3660 g5543_1 vdd gnd g6081_0 not1 +X3661 g3637_2 g3665_2 vdd gnd x32_1 and2 +X3662 g3438_1 g3085_0 vdd gnd g4133_0 nand2 +X3663 g3453_0 vdd gnd g4206_1 not1 +X3664 g7400_1 g7388_1 vdd gnd g7408_1 nand2 +X3665 g2092_2 g4453_1 g4454_1 g6692_1 vdd gnd g6793_2 or4 +X3666 g934_1 g2836_1 vdd gnd g3506_1 nand2 +X3667 g2365_0 vdd gnd g3093_1 not1 +X3668 g450_0 vdd gnd g1003_1 not1 +X3669 g6522_0 g6412_0 vdd gnd g7509_1 nand2 +X3670 g188_0 vdd gnd g7465_0 not1 +X3671 g494_2 vdd gnd g727_1 not1 +X3672 x541_1 x542_1 vdd gnd g7503_0 or2 +X3673 g6284_2 vdd gnd g6487_0 not1 +X3674 g6046_1 g6045_0 vdd gnd g6281_2 nand2 +X3675 g1048_1 vdd gnd g1312_0 not1 +X3676 g6335_1 g6580_1 vdd gnd g6654_1 and2 +X3677 g7122_0 g7090_0 vdd gnd g7131_2 nand2 +X3678 g52_0 g1185_0 vdd gnd g1461_0 and2 +X3679 g2507_1 g1177_1 vdd gnd g2845_1 nand2 +X3680 g1018_1 g4016_1 vdd gnd g4249_1 nand2 +X3681 g7375_1 g7442_1 vdd gnd g7444_1 nand2 +X3682 g7225_1 g5605_1 vdd gnd g7276_1 nand2 +X3683 g2258_5 vdd gnd g3306_2 not1 +X3684 g5185_0 vdd gnd g5827_0 not1 +X3685 g3839_1 g3828_5 g3817_7 vdd gnd g4437_0 and3 +X3686 g1902_0 g1475_1 vdd gnd g2159_2 or2 +X3687 g2665_1 vdd gnd g3050_0 not1 +X3688 g4568_8 vdd gnd g5661_0 not1 +X3689 g3895_0 g4218_1 vdd gnd g4474_0 nand2 +X3690 g1961_1 g4332_0 g4333_1 vdd gnd x191_0 or3 +X3691 g6942_3 g6400_0 vdd gnd g7017_0 and2 +X3692 g172_1 vdd gnd g7451_1 not1 +X3693 g2200_2 vdd gnd g3270_2 not1 +X3694 g1792_1 g2241_2 vdd gnd g3069_1 and2 +X3695 g3165_1 g1238_1 vdd gnd g3926_0 nand2 +X3696 g6705_3 vdd gnd g6833_2 not1 +X3697 g3312_2 vdd gnd g4059_1 not1 +X3698 g1500_0 g799_3 vdd gnd g1815_0 and2 +X3699 g7237_0 g6113_1 vdd gnd g7280_0 nand2 +X3700 g3725_6 vdd gnd g5062_1 not1 +X3701 g3216_1 g1261_0 vdd gnd g4009_1 nand2 +X3702 g1738_4 vdd gnd g2356_1 not1 +X3703 g3665_9 g3654_9 g3637_6 vdd gnd x41_1 and3 +X3704 g2412_2 g2801_1 vdd gnd g3485_1 nand2 +X3705 g666_5 g1543_3 vdd gnd g1930_1 and2 +X3706 g4179_2 g6489_0 vdd gnd g6557_1 nand2 +X3707 g3300_2 vdd gnd g4051_1 not1 +X3708 g6957_1 g5962_0 vdd gnd g7026_0 nand2 +X3709 g2300_0 g1803_0 vdd gnd g2938_0 and2 +X3710 g4568_1 g4560_1 vdd gnd x402_0 and2 +X3711 g119_0 g1462_1 vdd gnd g1904_1 and2 +X3712 g7078_0 g7026_1 vdd gnd g7544_0 nand2 +X3713 g2453_0 vdd gnd g2814_1 not1 +X3714 g479_0 vdd gnd g886_2 not1 +X3715 g4687_3 g2969_6 vdd gnd g5417_0 and2 +X3716 g6705_0 g7408_0 vdd gnd g7413_1 and2 +X3717 g5566_0 vdd gnd g5962_1 not1 +X3718 g7374_0 g7359_0 vdd gnd g7391_1 nand2 +X3719 g4982_2 vdd gnd g5241_1 not1 +X3720 g2456_2 vdd gnd g2816_1 not1 +X3721 g104_0 g753_6 vdd gnd g1152_0 and2 +X3722 g6340_3 g6056_6 g5280_4 vdd gnd g6527_1 and3 +X3723 g7445_1 vdd gnd g7552_1 not1 +X3724 g5448_1 vdd gnd g6042_0 not1 +X3725 g907_0 vdd gnd g1163_1 not1 +X3726 g5731_1 g7071_1 vdd gnd g7083_0 nand2 +X3727 g6802_1 g5244_1 vdd gnd g6895_1 nand2 +X3728 g61_0 g1192_3 vdd gnd g1474_0 and2 +X3729 g3687_2 g3683_3 g4377_1 vdd gnd g5269_1 and3 +X3730 g4284_1 g4285_0 vdd gnd g4920_1 nand2 +X3731 g1840_2 vdd gnd g2725_0 not1 +X3732 g4756_1 g5434_1 g6042_1 vdd gnd g6196_1 and3 +X3733 g538_4 vdd gnd g940_2 not1 +X3734 g5334_6 g4582_10 g4598_12 vdd gnd g6007_1 and3 +X3735 g2627_1 g3000_0 vdd gnd g3545_0 nand2 +X3736 g5986_0 g206_2 vdd gnd g6331_1 and2 +X3737 g1670_1 vdd gnd g1999_1 not1 +X3738 g4167_0 g6040_0 vdd gnd g6194_1 nand2 +X3739 g6645_1 g6291_0 vdd gnd g6744_1 nand2 +X3740 g3617_5 g3601_14 g1978_5 vdd gnd g4340_1 and3 +X3741 g94_1 g705_4 vdd gnd g1085_1 and2 +X3742 g3330_2 vdd gnd g4182_1 not1 +X3743 g3144_0 g5998_0 vdd gnd g6173_0 nand2 +X3744 g181_0 vdd gnd g544_0 not1 +X3745 g2686_1 vdd gnd g3364_1 not1 +X3746 g1423_4 vdd gnd g1951_1 not1 +X3747 x251_1 x252_0 vdd gnd g5418_2 and2 +X3748 g2244_5 vdd gnd g3309_2 not1 +X3749 g1807_0 vdd gnd g2576_2 not1 +X3750 g4519_4 g4508_0 g3907_4 vdd gnd g5332_1 and3 +X3751 g456_1 g821_6 vdd gnd g1281_1 and2 +X3752 g185_3 vdd gnd g423_4 not1 +X3753 g2959_0 g5413_0 g5414_0 vdd gnd g5920_2 nor3 +X3754 g177_0 vdd gnd g519_2 not1 +X3755 g1916_0 g1762_0 vdd gnd g2235_0 and2 +X3756 g1435_0 g1155_1 vdd gnd g1865_1 or2 +X3757 g473_4 vdd gnd g865_1 not1 +X3758 g4282_1 g4283_0 vdd gnd g4917_2 nand2 +X3759 g614_4 g2153_3 vdd gnd g2848_1 and2 +X3760 g4812_6 g3020_3 vdd gnd g5474_1 and2 +X3761 g4617_1 g5182_0 vdd gnd g5334_5 nand2 +X3762 g199_1 vdd gnd g634_1 not1 +X3763 g5101_2 vdd gnd g5296_0 not1 +X3764 g4407_2 vdd gnd g5275_1 not1 +X3765 g7294_0 g7272_0 vdd gnd g7315_0 nand2 +X3766 g4392_1 vdd gnd g5268_1 not1 +X3767 g940_1 vdd gnd g1174_0 not1 +X3768 g194_0 vdd gnd g7471_1 not1 +X3769 g1766_0 vdd gnd g2612_0 not1 +X3770 g202_1 vdd gnd g7478_0 not1 +X3771 g660_2 g2258_2 vdd gnd g2963_0 and2 +X3772 g5920_1 g6034_0 vdd gnd g6188_0 nand2 +X3773 g3557_0 g3558_0 vdd gnd g4121_2 nand2 +X3774 g2612_1 vdd gnd g2955_1 not1 +X3775 g2250_6 vdd gnd g3321_2 not1 +X3776 g3920_1 g4227_1 vdd gnd g4560_6 nand2 +X3777 g588_5 g2127_3 vdd gnd g2866_1 and2 +X3778 g179_1 vdd gnd g532_4 not1 +X3779 g3549_1 g3053_1 vdd gnd g4084_3 nand2 +X3780 g7398_0 g7386_0 vdd gnd g7407_0 nand2 +X3781 g83_0 g760_1 vdd gnd g1158_0 and2 +X3782 g4429_1 g4443_1 vdd gnd g5287_3 and2 +X3783 g2071_2 g4435_0 g4436_0 g4437_1 vdd gnd g5220_0 or4 +X3784 g5056_1 g7046_0 vdd gnd g7081_1 nand2 +X3785 g5852_1 vdd gnd g6208_1 not1 +X3786 g4598_3 g4582_3 g3928_3 vdd gnd g5367_0 and3 +X3787 g7129_1 g7113_1 vdd gnd g7158_2 nand2 +X3788 g2033_0 g4406_1 vdd gnd g5167_0 or2 +X3789 g979_0 g3917_0 vdd gnd g4225_0 nand2 +X3790 g391_0 vdd gnd g7490_0 not1 +X3791 g3828_8 g3810_5 g2081_5 g3817_8 vdd gnd g4434_1 and4 +X3792 g2552_1 g2925_1 vdd gnd g3522_0 nand2 +X3793 g5955_1 g6307_1 g6505_1 vdd gnd x531_1 or3 +X3794 g7193_2 g6120_1 vdd gnd g7241_1 nand2 +X3795 g3270_0 g3002_0 vdd gnd g4044_0 nand2 +X3796 g6615_1 vdd gnd g6718_0 not1 +X3797 g3237_2 vdd gnd g4024_0 not1 +X3798 g2_3 vdd gnd g407_1 not1 +X3799 g7409_1 vdd gnd g7412_1 not1 +X3800 g1006_1 vdd gnd g1260_1 not1 +X3801 g4286_1 g4104_1 vdd gnd g4926_4 nand2 +X3802 g2127_2 vdd gnd g3132_2 not1 +X3803 g1030_2 g4024_1 vdd gnd g4253_1 nand2 +X3804 g6246_1 g6392_0 vdd gnd g6456_0 nand2 +X3805 g3174_0 g2933_0 vdd gnd g3971_0 nand2 +X3806 g5341_0 g6002_0 vdd gnd g6336_2 and2 +X3807 g1590_0 g1365_0 vdd gnd g1848_2 or2 +X3808 g608_3 g2147_4 vdd gnd g2881_2 and2 +X3809 g2683_1 g3056_1 vdd gnd g3552_1 nand2 +X3810 g1897_0 g1458_0 vdd gnd g2133_1 or2 +X3811 g6359_0 vdd gnd g6400_1 not1 +X3812 g519_4 g1691_5 vdd gnd g2101_3 and2 +X3813 g2867_1 g5328_1 g5329_0 vdd gnd x411_1 or3 +X3814 g397_1 g391_1 vdd gnd g682_1 and2 +X3815 g7321_2 vdd gnd g7346_1 not1 +X3816 g3117_1 vdd gnd g3890_1 not1 +X3817 g3754_11 vdd gnd g5077_0 not1 +X3818 g4568_9 g4560_5 g2901_3 vdd gnd g5355_1 and3 +X3819 g5217_2 vdd gnd g5890_1 not1 +X3820 g1911_1 g1495_1 vdd gnd g2638_1 or2 +X3821 g4896_1 g4088_3 g5511_1 vdd gnd g5846_1 and3 +X3822 g65_0 g1178_0 vdd gnd g1454_0 and2 +X3823 g5575_1 g6409_0 vdd gnd g6521_1 nand2 +X3824 g2258_1 vdd gnd g3258_1 not1 +X3825 g1401_0 g721_1 vdd gnd g1612_0 and2 +X3826 g553_0 g849_0 vdd gnd g1363_1 and2 +X3827 g883_0 vdd gnd g1133_1 not1 +X3828 g71_1 g1144_3 vdd gnd g1435_1 and2 +X3829 g4371_1 g3709_1 g5267_0 vdd gnd g5778_0 and3 +X3830 g991_0 g3925_1 vdd gnd g4229_1 nand2 +X3831 g7378_1 vdd gnd g7402_1 not1 +X3832 g1185_1 vdd gnd g1446_0 not1 +X3833 g81_0 g740_1 vdd gnd g1119_1 and2 +X3834 g7211_1 g7190_1 vdd gnd g7234_1 nand2 +X3835 g3961_1 g3950_0 g2228_0 g3956_4 vdd gnd g4628_0 and4 +X3836 g6700_1 vdd gnd g6823_1 not1 +X3837 g2029_2 g4404_0 g4405_0 vdd gnd g5205_0 nor3 +X3838 g4887_2 g4078_3 g6065_0 vdd gnd g6205_1 and3 +X3839 g16_0 g1295_3 vdd gnd g1535_0 and2 +X3840 g6781_2 g5820_0 vdd gnd g6876_1 and2 +X3841 g3374_2 vdd gnd g4097_1 not1 +X3842 g2606_2 g2954_1 vdd gnd g3537_1 nand2 +X3843 g6725_2 vdd gnd g6845_1 not1 +X3844 g3828_7 g2081_3 vdd gnd g4442_1 and2 +X3845 g3249_0 vdd gnd g4040_1 not1 +X3846 g6563_1 g6583_1 g6697_1 g6698_0 vdd gnd g6778_1 and4 +X3847 g4007_1 g4245_1 vdd gnd g4669_5 nand2 +X3848 g2280_2 vdd gnd g3444_2 not1 +X3849 g507_4 g1716_1 vdd gnd g2241_1 and2 +X3850 g5024_2 vdd gnd g5252_1 not1 +X3851 g3587_2 g1965_2 vdd gnd g4336_0 and2 +X3852 g2585_1 g3984_0 vdd gnd g4242_0 nand2 +X3853 g5015_1 g7173_0 vdd gnd g7206_0 nand2 +X3854 g2194_1 vdd gnd g3228_0 not1 +X3855 g5974_0 g6526_0 g6527_0 g6528_1 vdd gnd g6565_2 or4 +X3856 g115_1 g1289_2 vdd gnd g1529_1 and2 +X3857 g7027_1 vdd gnd g7538_1 not1 +X3858 g1054_2 g4065_1 vdd gnd g4271_1 nand2 +X3859 g5816_3 g5395_2 vdd gnd g6151_1 and2 +X3860 g3768_3 vdd gnd g5092_2 not1 +X3861 g5668_1 vdd gnd g6119_1 not1 +X3862 g7_2 g785_6 vdd gnd g1223_1 and2 +X3863 g2728_0 g3410_0 vdd gnd g3574_0 nand2 +X3864 g2426_2 vdd gnd g2807_0 not1 +X3865 g4687_8 g4669_3 g2969_4 g4676_6 vdd gnd g5409_0 and4 +X3866 g187_2 vdd gnd g567_1 not1 +X3867 g3564_1 g3565_0 vdd gnd g4143_1 nand2 +X3868 g3389_2 vdd gnd g4102_1 not1 +X3869 g404_0 vdd gnd g696_0 not1 +X3870 g169_1 vdd gnd g457_4 not1 +X3871 g6937_0 g6899_1 vdd gnd g7528_1 nand2 +X3872 g6936_1 g6897_1 vdd gnd g7527_1 nand2 +X3873 g1658_4 vdd gnd g2444_1 not1 +X3874 g3465_1 g6760_4 vdd gnd g6877_1 and2 +X3875 g3141_2 vdd gnd g3906_1 not1 +X3876 g4639_0 g4630_0 g2939_0 g4635_0 vdd gnd g5387_0 and4 +X3877 g3321_1 vdd gnd g4065_0 not1 +X3878 g4121_0 vdd gnd g4970_0 not1 +X3879 g2588_0 g2948_1 vdd gnd g3531_0 nand2 +X3880 g2546_0 g2923_0 vdd gnd g3520_0 nand2 +X3881 g5625_1 g4531_0 vdd gnd g5999_0 nand2 +X3882 g7068_1 g6134_0 vdd gnd g7115_1 nand2 +X3883 g6967_2 vdd gnd g7046_1 not1 +X3884 g2825_1 g3501_1 vdd gnd g3797_4 nand2 +X3885 g1102_4 g1114_0 vdd gnd g1401_1 or2 +X3886 g3282_2 g4047_1 vdd gnd g4262_1 nand2 +X3887 g747_3 g1887_1 g1994_1 vdd gnd g2756_2 or3 +X3888 g6927_0 g6871_0 vdd gnd g6987_2 nand2 +X3889 g2474_0 vdd gnd g2828_0 not1 +X3890 g6495_0 vdd gnd g6650_0 not1 +X3891 g3524_0 g3525_0 vdd gnd g3965_1 nand2 +X3892 g5560_1 g7021_1 vdd gnd g7076_0 nand2 +X3893 g2621_1 g2998_1 vdd gnd g3543_1 nand2 +X3894 g7014_0 g6999_1 vdd gnd g7536_1 nand2 +X3895 g6771_6 g4742_6 vdd gnd g6919_1 and2 +X3896 g5027_0 vdd gnd g5590_1 not1 +X3897 g3903_1 g4222_0 vdd gnd g4508_7 nand2 +X3898 g545_5 g1638_7 vdd gnd g2038_4 and2 +X3899 g2415_2 g2804_1 vdd gnd g3488_1 nand2 +X3900 g2644_1 g4073_0 vdd gnd g4276_1 nand2 +X3901 g6948_2 g5959_0 vdd gnd g7020_0 nand2 +X3902 g5502_0 vdd gnd g6064_0 not1 +X3903 g2465_1 g1165_1 vdd gnd g2821_0 nand2 +X3904 g63_2 g1199_1 vdd gnd g1483_1 and2 +X3905 g4661_0 g4657_1 g4653_2 vdd gnd x231_1 and3 +X3906 g4582_9 g2907_3 vdd gnd g5364_1 and2 +X3907 g6464_1 g6553_1 vdd gnd g6631_2 nand2 +X3908 g3361_2 g4188_0 vdd gnd g4313_1 nand2 +X3909 g6859_0 vdd gnd g6978_1 not1 +X3910 g2326_1 vdd gnd g3386_0 not1 +X3911 g4491_1 g4519_2 vdd gnd x382_0 and2 +X3912 g7417_0 g7373_1 vdd gnd g7423_0 nand2 +X3913 g5178_1 g4429_2 vdd gnd g5784_0 and2 +X3914 g1246_2 g1255_1 vdd gnd g1506_0 or2 +X3915 g6738_2 vdd gnd g6862_1 not1 +X3916 g7312_2 g6442_2 g6705_4 vdd gnd g7356_1 and3 +X3917 g3617_7 vdd gnd g5012_1 not1 +X3918 g874_2 vdd gnd g1130_1 not1 +X3919 g877_2 g1132_1 vdd gnd g1380_1 nand2 +X3920 g526_5 vdd gnd g916_2 not1 +X3921 g5036_0 g7273_0 vdd gnd g7295_0 nand2 +X3922 g3907_0 g4498_0 vdd gnd x212_1 and2 +X3923 g2552_0 vdd gnd g2926_0 not1 +X3924 g3404_1 g4109_1 vdd gnd g4289_0 nand2 +X3925 g185_1 vdd gnd g7462_0 not1 +X3926 g7222_1 vdd gnd g7273_1 not1 +X3927 g4448_0 g4449_0 vdd gnd x162_1 or2 +X3928 g1862_2 vdd gnd g2422_1 not1 +X3929 g28_1 g1350_4 vdd gnd g1586_1 and2 +X3930 g3579_0 vdd gnd g5015_0 not1 +X3931 g2773_1 g3470_1 vdd gnd g3617_11 nand2 +X3932 g2001_1 g4353_0 g4354_0 vdd gnd x501_1 or3 +X3933 g1807_2 vdd gnd g2656_1 not1 +X3934 g58_0 g1269_0 vdd gnd g1515_0 and2 +X3935 g2013_2 g6685_0 vdd gnd g6811_0 or2 +X3936 g4820_9 g3024_2 vdd gnd g5478_1 and2 +X3937 g78_0 g740_3 vdd gnd g1122_0 and2 +X3938 g5459_1 g5471_0 vdd gnd g6056_5 and2 +X3939 g666_3 g2264_3 vdd gnd g3004_2 and2 +X3940 g5115_1 g6272_1 vdd gnd g6394_1 nand2 +X3941 g3186_1 vdd gnd g3978_1 not1 +X3942 g5280_6 g5253_3 vdd gnd x462_1 and2 +X3943 g2392_1 vdd gnd g2795_1 not1 +X3944 x91_1 x92_0 vdd gnd g4625_0 and2 +X3945 g1036_2 g4053_0 vdd gnd g4265_1 nand2 +X3946 g1995_2 g1998_1 vdd gnd g3086_2 or2 +X3947 g7298_1 g7280_1 vdd gnd g7327_1 nand2 +X3948 g4902_2 vdd gnd g5511_0 not1 +X3949 g7411_1 g792_3 vdd gnd g7421_1 and2 +X3950 g5578_2 vdd gnd g5966_1 not1 +X3951 g4355_0 g6682_1 vdd gnd x502_0 or2 +X3952 g5755_1 g7250_1 vdd gnd g7256_1 nand2 +X3953 g2907_2 g5368_1 vdd gnd g5813_2 or2 +X3954 g2827_0 g3502_1 vdd gnd g3803_3 nand2 +X3955 g640_2 g2194_4 vdd gnd g2977_0 and2 +X3956 g7213_1 g7197_0 vdd gnd g7242_2 nand2 +X3957 g4704_5 g2977_2 vdd gnd g5421_1 and2 +X3958 g1896_1 g1457_1 vdd gnd g2127_4 or2 +X3959 g5006_1 vdd gnd g5583_0 not1 +X3960 g4850_1 g3037_0 vdd gnd g5490_1 and2 +X3961 g5820_1 vdd gnd g6181_1 not1 +X3962 g5144_1 g5767_0 vdd gnd g5954_1 nand2 +X3963 g2300_2 vdd gnd g3180_1 not1 +X3964 g1765_0 g1510_1 vdd gnd g1916_1 nand2 +X3965 g4560_4 g2897_0 vdd gnd g5354_0 and2 +X3966 g4017_0 g4250_0 vdd gnd g4711_8 nand2 +X3967 g4074_3 vdd gnd g4887_1 not1 +X3968 g4953_2 vdd gnd g5540_2 not1 +X3969 g6597_0 g3883_0 g3862_0 g3873_0 vdd gnd g6692_0 and4 +X3970 g3675_0 vdd gnd g4988_2 not1 +X3971 g473_1 g821_0 vdd gnd g1285_0 and2 +X3972 g4485_0 vdd gnd g5249_1 not1 +X3973 g1411_0 g1060_0 vdd gnd g1886_1 and2 +X3974 g2591_1 vdd gnd g2948_1 not1 +X3975 g4812_1 vdd gnd g5755_2 not1 +X3976 g6929_1 g6876_0 vdd gnd g7520_0 or2 +X3977 g7245_0 g6053_0 vdd gnd g7270_1 nand2 +X3978 g5983_1 g5792_0 vdd gnd g6162_1 nand2 +X3979 g4474_3 vdd gnd g5622_2 not1 +X3980 g4321_1 g4322_1 vdd gnd g5150_1 nand2 +X3981 g3309_1 g1310_1 vdd gnd g4056_1 nand2 +X3982 g4956_2 vdd gnd g5532_2 not1 +X3983 g1698_0 vdd gnd g2429_0 not1 +X3984 g1811_1 vdd gnd g2573_0 not1 +X3985 g2235_2 g4662_1 vdd gnd g5395_5 and2 +X3986 g5074_1 g7275_0 vdd gnd g7296_0 nand2 +X3987 g2653_2 vdd gnd g3347_1 not1 +X3988 g6355_1 g6186_1 vdd gnd g6398_1 nand2 +X3989 g3754_0 g3746_0 vdd gnd x52_0 and2 +X3990 g2480_1 vdd gnd g3113_0 not1 +X3991 g6519_0 g6406_0 vdd gnd g7506_0 nand2 +X3992 g5909_0 g5667_0 vdd gnd g6273_1 nand2 +X3993 g6615_1 g5864_0 vdd gnd g6719_1 nand2 +X3994 g6346_1 g5370_0 g5395_0 vdd gnd g6508_1 and3 +X3995 g413_1 g1632_2 vdd gnd g2088_0 and2 +X3996 g1086_4 g705_2 vdd gnd g1394_0 or2 +X3997 g5150_2 vdd gnd g5764_1 not1 +X3998 g4491_3 g2867_2 vdd gnd g5324_1 and2 +X3999 g1803_3 vdd gnd g2579_2 not1 +X4000 g904_2 vdd gnd g1162_1 not1 +X4001 g871_2 vdd gnd g1129_1 not1 +X4002 g6542_0 g6446_0 vdd gnd g6610_0 nand2 +X4003 g2356_1 g1128_0 vdd gnd g2773_0 nand2 +X4004 g5030_2 vdd gnd g5591_0 not1 +X4005 g1434_0 g1154_0 vdd gnd g1687_1 or2 +X4006 g7428_2 vdd gnd g7439_1 not1 +X4007 g7284_1 vdd gnd g7332_0 not1 +X4008 g2288_3 g2171_3 vdd gnd g2942_1 and2 +X4009 g1820_3 g1679_2 vdd gnd g2228_1 and2 +X4010 g3547_0 g3548_1 vdd gnd g4078_0 nand2 +X4011 g4869_3 g4850_11 g4834_0 vdd gnd x271_0 and3 +X4012 g3736_1 g3718_2 g2038_1 g3725_3 vdd gnd g4400_0 and4 +X4013 g3698_2 vdd gnd g4368_1 not1 +X4014 g2167_0 vdd gnd g3336_1 not1 +X4015 g7131_2 vdd gnd g7173_1 not1 +X4016 g27_0 g1350_2 vdd gnd g1587_0 and2 +X4017 g991_2 vdd gnd g1237_1 not1 +X4018 g5758_1 g7334_0 vdd gnd g7341_1 nand2 +X4019 g5381_1 g5824_2 vdd gnd g6183_1 and2 +X4020 g3487_0 g3488_0 vdd gnd g3702_1 nand2 +X4021 g2501_2 g1175_1 vdd gnd g2841_1 nand2 +X4022 g5887_2 vdd gnd g6254_1 not1 +X4023 g5734_2 g7164_0 vdd gnd g7171_0 nand2 +X4024 g2671_0 g2313_0 vdd gnd g3053_0 nand2 +X4025 g1658_0 vdd gnd g2483_1 not1 +X4026 g3839_4 g3828_10 vdd gnd g4441_1 and2 +X4027 g6294_0 vdd gnd g6494_0 not1 +X4028 g5150_0 g5765_0 vdd gnd g5952_1 nand2 +X4029 g5122_0 vdd gnd g5703_1 not1 +X4030 g2843_0 g3510_0 vdd gnd g3873_3 nand2 +X4031 g6745_0 g6297_1 vdd gnd g6871_1 nand2 +X4032 g4834_14 g3030_3 vdd gnd g5485_1 and2 +X4033 g54_1 vdd gnd g470_2 not1 +X4034 g7414_2 g7079_1 vdd gnd g7424_1 nand2 +X4035 g5839_2 vdd gnd g6199_2 not1 +X4036 g6374_2 vdd gnd g6532_1 not1 +X4037 g1517_0 g1287_1 vdd gnd g1874_2 or2 +X4038 g446_3 vdd gnd g734_5 not1 +X4039 g961_1 vdd gnd g1227_0 not1 +X4040 g1840_3 g1620_0 vdd gnd g2223_0 and2 +X4041 g3702_2 vdd gnd g4383_1 not1 +X4042 g6921_2 g5958_1 vdd gnd g6999_0 nand2 +X4043 g32_1 g1275_3 vdd gnd g1520_1 and2 +X4044 g5926_1 g6036_0 vdd gnd g6192_1 nand2 +X4045 g1658_2 vdd gnd g2450_2 not1 +X4046 g5820_3 g6183_1 vdd gnd g6346_3 or2 +X4047 g4359_2 g3687_3 g5263_0 vdd gnd g5774_1 and3 +X4048 g3062_0 g5525_0 g5526_0 vdd gnd x361_1 or3 +X4049 g5737_1 g7248_1 vdd gnd g7255_0 nand2 +X4050 g7363_2 vdd gnd g7387_1 not1 +X4051 g4698_4 g4687_10 g4676_8 vdd gnd g5412_1 and3 +X4052 g2722_2 g3081_1 vdd gnd g3557_1 nand2 +X4053 g4030_1 g4026_0 g4778_1 vdd gnd g5457_0 and3 +X4054 g5836_1 vdd gnd g6288_0 not1 +X4055 g1683_2 vdd gnd g2674_2 not1 +X4056 g7369_0 g7343_1 vdd gnd g7381_0 nand2 +X4057 g4926_3 g4920_5 vdd gnd x292_1 and2 +X4058 g501_5 vdd gnd g780_4 not1 +X4059 g1786_4 g3071_5 vdd gnd g4164_2 nor2 +X4060 g919_0 g2826_1 vdd gnd g3501_1 nand2 +X4061 g1853_0 g2405_1 vdd gnd g2762_0 nand2 +X4062 x441_0 x442_0 vdd gnd g6310_0 and2 +X4063 g5089_0 vdd gnd g5609_1 not1 +X4064 g3159_1 g1236_0 vdd gnd g3922_1 nand2 +X4065 g6921_1 vdd gnd g6998_1 not1 +X4066 g3138_1 vdd gnd g3904_0 not1 +X4067 g1082_1 vdd gnd g1384_1 not1 +X4068 g898_1 g2812_1 vdd gnd g3494_1 nand2 +X4069 g5499_2 vdd gnd g6063_1 not1 +X4070 g2380_2 vdd gnd g2784_1 not1 +X4071 g5680_0 g6584_0 vdd gnd g6655_0 nand2 +X4072 g2071_0 g4438_0 g4439_0 vdd gnd g5223_1 nor3 +X4073 g672_1 g2270_0 vdd gnd g3003_0 and2 +X4074 g2395_1 g2795_0 vdd gnd g3480_1 nand2 +X4075 g2771_1 g3469_1 vdd gnd g3601_1 nand2 +X4076 g7041_2 vdd gnd g7091_1 not1 +X4077 g5191_2 vdd gnd g5864_1 not1 +X4078 g5229_2 vdd gnd g5791_1 not1 +X4079 x421_0 x422_0 vdd gnd g6269_1 or2 +X4080 g6634_1 vdd gnd g6734_0 not1 +X4081 g2_1 vdd gnd g410_2 not1 +X4082 g388_2 g410_2 vdd gnd g7496_1 nand2 +X4083 g7088_0 g7018_1 vdd gnd g7548_1 or2 +X4084 g3477_1 vdd gnd g3682_1 not1 +X4085 g2600_2 vdd gnd g2951_0 not1 +X4086 g1828_2 vdd gnd g2543_1 not1 +X4087 g5777_1 g5272_1 vdd gnd g5970_1 nor2 +X4088 g5220_2 vdd gnd g5785_1 not1 +X4089 g2561_1 g2930_1 vdd gnd g3527_1 nand2 +X4090 g5936_0 g6743_0 vdd gnd g6822_0 nand2 +X4091 g168_1 vdd gnd g7448_0 not1 +X4092 g2976_0 g5421_0 g5422_0 vdd gnd x341_0 or3 +X4093 g6_2 vdd gnd g507_0 not1 +X4094 g418_3 vdd gnd g928_1 not1 +X4095 g1877_2 vdd gnd g2312_1 not1 +X4096 g5540_1 vdd gnd g6080_1 not1 +X4097 g2200_1 g507_3 vdd gnd g3071_3 and2 +X4098 g1905_0 g1478_0 vdd gnd g2171_0 or2 +X4099 g6263_0 g5114_0 vdd gnd g6468_1 nand2 +X4100 g3106_0 g6416_1 vdd gnd g6524_0 nand2 +X4101 g4687_7 vdd gnd g5697_1 not1 +X4102 g4863_4 g4802_9 g4791_9 vdd gnd g5467_1 and3 +X4103 g576_4 vdd gnd g970_2 not1 +X4104 g3518_1 g3519_0 vdd gnd g3950_1 nand2 +X4105 g2182_4 vdd gnd g3249_1 not1 +X4106 g2318_2 vdd gnd g3414_1 not1 +X4107 g6662_1 g6614_1 vdd gnd g6711_1 nand2 +X4108 g6430_2 g5802_3 vdd gnd g6582_1 and2 +X4109 g2462_1 vdd gnd g2820_1 not1 +X4110 g614_3 g2153_1 vdd gnd g2880_1 and2 +X4111 g4994_2 vdd gnd g5245_1 not1 +X4112 g5710_2 vdd gnd g6131_1 not1 +X4113 g5021_2 g7342_1 vdd gnd g7369_1 nand2 +X4114 g176_0 vdd gnd g7454_0 not1 +X4115 g6481_0 g6364_0 vdd gnd g6606_0 nand2 +X4116 g71_0 g1138_0 vdd gnd g1430_1 and2 +X4117 g1670_2 g1423_3 vdd gnd g2019_3 and2 +X4118 g6568_3 vdd gnd g6687_2 not1 +X4119 g14_1 g785_5 vdd gnd g1219_1 and2 +X4120 g6957_2 vdd gnd g7025_0 not1 +X4121 x311_1 x312_1 vdd gnd g5799_2 or2 +X4122 g3630_5 vdd gnd g5027_2 not1 +X4123 g1519_1 g828_5 vdd gnd g1786_3 or2 +X4124 g4190_0 g5121_0 vdd gnd g5235_0 nand2 +X4125 g5775_0 g5270_0 vdd gnd g5968_0 nor2 +X4126 g3718_1 vdd gnd g5059_0 not1 +X4127 g2722_1 vdd gnd g3082_0 not1 +X4128 g7147_0 vdd gnd g7187_1 not1 +X4129 x241_1 x242_1 vdd gnd g5394_1 and2 +X4130 g6317_0 g6573_0 vdd gnd g6672_0 and2 +X4131 g1638_2 vdd gnd g2441_1 not1 +X4132 g5021_2 vdd gnd g5251_1 not1 +X4133 g190_2 vdd gnd g7467_1 not1 +X4134 g4161_0 g6465_0 vdd gnd g6554_0 nand2 +X4135 g5095_1 g5785_1 vdd gnd g5980_0 nand2 +X4136 g1868_2 g2995_0 vdd gnd g3541_1 nand2 +X4137 g545_4 g1638_7 vdd gnd g2477_1 nor2 +X4138 g7084_0 g7074_0 vdd gnd g7119_0 nand2 +X4139 g41_1 g1316_1 vdd gnd g1553_0 and2 +X4140 g132_0 g1206_2 vdd gnd g1490_1 and2 +X4141 g4771_2 vdd gnd g5440_1 not1 +X4142 g4711_2 g2980_2 vdd gnd g5425_0 and2 +X4143 g3873_2 g3862_5 g2101_1 vdd gnd g4454_0 and3 +X4144 g99_0 g727_4 vdd gnd g1116_1 and2 +X4145 g69_2 g1138_5 vdd gnd g1434_1 and2 +X4146 g5128_0 g5706_0 vdd gnd g5932_0 nand2 +X4147 g512_1 vdd gnd g877_1 not1 +X4148 g3336_2 g4071_0 vdd gnd g4275_1 nand2 +X4149 g1731_5 vdd gnd g2389_2 not1 +X4150 g6226_2 g6229_1 vdd gnd g6450_1 nand2 +X4151 g1439_1 g1159_0 vdd gnd g1710_4 or2 +X4152 g2941_1 g5391_1 g5392_1 vdd gnd x331_1 or3 +X4153 g155_1 g1446_5 vdd gnd g1900_1 and2 +X4154 g189_2 vdd gnd g576_5 not1 +X4155 g450_4 vdd gnd g1000_2 not1 +X4156 g3936_1 g4231_0 vdd gnd g4611_0 nand2 +X4157 g4598_1 g3928_0 vdd gnd g5368_0 and2 +X4158 g3240_1 vdd gnd g4025_1 not1 +X4159 g6676_0 g6653_0 vdd gnd g6757_0 nand2 +X4160 g5685_2 g6185_0 vdd gnd g6355_0 nand2 +X4161 g5640_2 vdd gnd g6106_1 not1 +X4162 g2371_2 vdd gnd g3095_1 not1 +X4163 g5522_0 g49_0 vdd gnd g6074_0 nand2 +X4164 g5167_2 g4427_0 vdd gnd g5871_0 or2 +X4165 g4474_10 g4456_3 g2859_5 g4463_9 vdd gnd g5315_1 and4 +X4166 g6220_2 vdd gnd g6409_1 not1 +X4167 g20_0 g1337_5 vdd gnd g1580_1 and2 +X4168 g2498_2 g1174_1 vdd gnd g2839_1 nand2 +X4169 g5634_1 g7187_0 vdd gnd g7210_0 nand2 +X4170 g4193_0 vdd gnd g5121_1 not1 +X4171 g15_1 g1295_5 vdd gnd g1532_1 and2 +X4172 g545_3 g849_2 vdd gnd g1362_0 and2 +X4173 g6631_1 vdd gnd g6732_0 not1 +X4174 g3965_2 g3961_2 g3950_2 vdd gnd x101_1 and3 +X4175 g4791_4 vdd gnd g5728_0 not1 +X4176 g4732_7 vdd gnd g5566_1 not1 +X4177 g621_2 vdd gnd g1030_1 not1 +X4178 g4532_5 g2881_3 vdd gnd g5345_1 and2 +X4179 g886_2 g2780_1 vdd gnd g3472_1 nand2 +X4180 g2330_3 vdd gnd g3401_2 not1 +X4181 g6255_2 vdd gnd g6463_1 not1 +X4182 g967_2 g3902_1 vdd gnd g4221_1 nand2 +X4183 g69_0 g1144_0 vdd gnd g1439_0 and2 +X4184 g4890_2 g4887_0 g5508_0 vdd gnd g6070_1 and3 +X4185 g6210_1 g6086_1 vdd gnd g6383_0 nor2 +X4186 g5194_1 g4142_1 vdd gnd g5866_1 nand2 +X4187 g3071_4 vdd gnd g4151_2 not1 +X4188 g4642_1 g2942_0 vdd gnd g5391_0 and2 +X4189 x201_1 x202_1 vdd gnd g5211_1 or2 +X4190 g4863_2 vdd gnd g5707_2 not1 +X4191 g3587_12 g3579_7 vdd gnd x12_1 and2 +X4192 g1945_1 g6664_1 vdd gnd g6676_1 nand2 +X4193 g6987_0 g6136_1 vdd gnd g7072_0 nand2 +X4194 g1027_0 vdd gnd g1267_1 not1 +X4195 g7116_0 g6137_0 vdd gnd g7165_0 nand2 +X4196 g640_1 vdd gnd g1045_2 not1 +X4197 g2829_0 g3503_0 vdd gnd g3810_4 nand2 +X4198 g1423_0 g1066_1 vdd gnd g1890_1 and2 +X4199 g4732_2 g4721_2 g4704_2 vdd gnd x261_1 and3 +X4200 x81_1 x82_0 vdd gnd g4449_1 and2 +X4201 g22_0 g1316_5 vdd gnd g1549_0 and2 +X4202 g5833_1 g5457_1 vdd gnd g6045_1 nor2 +X4203 g7207_0 g7176_0 vdd gnd g7222_0 nand2 +X4204 g7180_2 vdd gnd g7217_0 not1 +X4205 g3279_2 vdd gnd g4047_0 not1 +X4206 g5496_1 g5493_0 g5502_1 vdd gnd g6068_1 and3 +X4207 g3386_1 g4102_1 vdd gnd g4285_1 nand2 +X4208 g40_1 g1323_3 vdd gnd g1554_0 and2 +X4209 g6673_0 g6561_1 vdd gnd g7513_0 or2 +X4210 g501_4 vdd gnd g849_4 not1 +X4211 g4289_1 g4290_1 vdd gnd g4938_1 nand2 +X4212 g934_0 vdd gnd g1172_0 not1 +X4213 g3395_1 vdd gnd g4105_1 not1 +X4214 g6127_2 vdd gnd g6365_1 not1 +X4215 g2701_2 vdd gnd g3065_0 not1 +X4216 g2374_0 vdd gnd g2780_0 not1 +X4217 g1393_1 g699_3 vdd gnd g1591_1 and2 +X4218 g6790_1 g5239_1 vdd gnd g6886_0 nand2 +X4219 g7128_1 g7108_1 vdd gnd g7153_2 nand2 +X4220 g2665_2 g3049_1 vdd gnd g3547_1 nand2 +X4221 g1405_0 g721_5 vdd gnd g1628_3 and2 +X4222 g6147_0 g6613_0 vdd gnd g6662_0 nand2 +X4223 g204_0 vdd gnd g666_1 not1 +X4224 g6423_0 g5249_0 vdd gnd g6561_0 and2 +X4225 g7075_0 g7020_1 vdd gnd g7541_1 nand2 +X4226 g207_2 g517_1 vdd gnd g691_0 nand2 +X4227 g696_2 vdd gnd g7499_1 not1 +X4228 g7360_2 vdd gnd g7385_1 not1 +X4229 g2853_4 g5321_0 g5322_1 vdd gnd g5897_2 or3 +X4230 g5334_1 g4598_8 g4582_12 vdd gnd x401_0 and3 +X4231 g63_0 g1192_0 vdd gnd g1478_1 and2 +X4232 g1018_0 vdd gnd g1264_0 not1 +X4233 g2342_1 vdd gnd g3432_1 not1 +X4234 g3654_7 g2008_3 g3644_8 vdd gnd g4354_1 and3 +X4235 g1778_1 g1604_1 vdd gnd g2231_1 and2 +X4236 g5616_1 vdd gnd g5995_1 not1 +X4237 g3019_1 g5474_0 g5475_1 vdd gnd x351_0 or3 +X4238 g3926_1 g4230_0 vdd gnd g4598_10 nand2 +X4239 g7093_2 vdd gnd g7137_0 not1 +X4240 g5942_0 g6870_1 vdd gnd g6927_1 nand2 +X4241 g2624_0 vdd gnd g2998_0 not1 +X4242 g1585_0 g1360_0 vdd gnd g1828_1 or2 +X4243 g608_0 vdd gnd g955_1 not1 +X4244 g3153_2 vdd gnd g3919_1 not1 +X4245 g4960_2 g4956_1 g5546_2 vdd gnd g6088_0 and3 +X4246 g1871_2 vdd gnd g2633_1 not1 +X4247 g6822_1 g6744_0 vdd gnd g6867_1 nand2 +X4248 g4485_3 g4474_9 vdd gnd g5322_0 and2 +X4249 g3568_0 g3569_1 vdd gnd g4190_2 nand2 +X4250 g2564_1 vdd gnd g2930_0 not1 +X4251 g1840_0 vdd gnd g2531_0 not1 +X4252 g6456_1 vdd gnd g6623_1 not1 +X4253 g602_1 vdd gnd g982_0 not1 +X4254 g955_2 g3894_0 vdd gnd g4217_1 nand2 +X4255 g2398_2 g2798_0 vdd gnd g3483_0 nand2 +X4256 g7228_2 vdd gnd g7277_1 not1 +X4257 g6322_3 g6026_6 g5287_6 vdd gnd g6537_1 and3 +X4258 g4598_6 vdd gnd g5668_2 not1 +X4259 g3754_9 g3746_3 g2049_0 vdd gnd g4411_0 and3 +X4260 g1108_1 g1121_1 vdd gnd g1408_0 or2 +X4261 g6840_1 g5590_1 vdd gnd g6963_1 nand2 +X4262 g6625_1 vdd gnd g6728_1 not1 +X4263 g66_1 g1185_6 vdd gnd g1458_1 and2 +X4264 g2334_3 vdd gnd g3426_2 not1 +X4265 g4920_2 g3064_0 vdd gnd g5525_1 and2 +X4266 g3374_0 g4098_1 vdd gnd g4281_1 nand2 +X4267 g5799_1 g6331_1 vdd gnd g6423_3 or2 +X4268 g5_2 vdd gnd g7482_1 not1 +X4269 g1515_1 g1285_1 vdd gnd g1778_2 or2 +X4270 g1582_1 g1357_0 vdd gnd g1816_3 or2 +X4271 g2743_1 g4132_1 vdd gnd g4296_0 nand2 +X4272 g6521_1 g6410_1 vdd gnd g7508_1 nand2 +X4273 g2504_2 vdd gnd g2844_1 not1 +X4274 g2659_1 vdd gnd g3047_1 not1 +X4275 g3297_1 g6440_0 vdd gnd g6541_0 nand2 +X4276 g5427_1 g6916_1 vdd gnd x522_1 or2 +X4277 g4213_1 vdd gnd g5143_0 not1 +X4278 g1410_1 g734_4 vdd gnd g1658_5 and2 +X4279 g7127_0 g7106_0 vdd gnd g7150_1 nand2 +X4280 g5697_0 vdd gnd g6038_1 not1 +X4281 g1954_0 vdd gnd g2750_0 not1 +X4282 g2_2 vdd gnd g403_1 not1 +X4283 g6760_2 g3682_0 vdd gnd g6909_1 and2 +X4284 g3828_3 g2081_4 g3817_3 vdd gnd g4436_1 and3 +X4285 g3617_4 g3601_13 g1978_3 vdd gnd g4343_1 and3 +X4286 g5948_1 vdd gnd g6303_1 not1 +X4287 g5795_3 g6573_3 vdd gnd g6696_1 and2 +X4288 g102_0 g753_5 vdd gnd g1154_1 and2 +X4289 g913_2 vdd gnd g1165_0 not1 +X4290 g6524_1 g6417_1 vdd gnd g6563_0 nand2 +X4291 g3768_13 g2055_4 vdd gnd g4421_0 and2 +X4292 g5649_2 vdd gnd g6010_1 not1 +X4293 g1961_3 g4336_1 g4337_1 g4338_1 vdd gnd g5197_2 nor4 +X4294 g3644_9 g3675_6 g3654_10 vdd gnd x31_1 and3 +X4295 g2182_0 vdd gnd g3318_1 not1 +X4296 g5287_1 g5258_0 vdd gnd x452_0 and2 +X4297 g4732_1 g2989_1 vdd gnd g5430_1 and2 +X4298 x511_1 x512_1 vdd gnd g6916_0 and2 +X4299 g8_2 g1212_3 vdd gnd g1498_0 and2 +X4300 g7382_1 vdd gnd g7394_1 not1 +X4301 g5871_2 vdd gnd g6243_1 not1 +X4302 g3207_1 vdd gnd g3986_0 not1 +X4303 g2468_1 vdd gnd g2824_1 not1 +X4304 g7051_1 g5608_1 vdd gnd g7102_1 nand2 +X4305 g1009_2 g4010_1 vdd gnd g4246_1 nand2 +X4306 g3914_0 g4224_0 vdd gnd g4532_0 nand2 +X4307 g59_0 g1269_1 vdd gnd g1512_0 and2 +X4308 g4262_0 g4263_0 vdd gnd g4775_0 nand2 +X4309 g4277_0 g4083_1 vdd gnd g4893_0 nand2 +X4310 g621_5 g2175_6 vdd gnd g2989_5 and2 +X4311 g2719_2 g3082_1 vdd gnd g3558_1 nand2 +X4312 g1744_0 vdd gnd g2353_1 not1 +X4313 g2406_0 vdd gnd g2799_0 not1 +X4314 g6715_1 vdd gnd g6827_1 not1 +X4315 g6516_1 g7033_4 vdd gnd g7086_1 and2 +X4316 g6163_1 g5985_1 vdd gnd g6332_1 nand2 +X4317 g4_0 g3_0 vdd gnd g446_0 nand2 +X4318 g2070_0 g4432_0 g4433_0 g4434_0 vdd gnd g5177_0 or4 +X4319 g1039_1 g4055_1 vdd gnd g4266_0 nand2 +X4320 g89_0 g716_1 vdd gnd g1100_0 and2 +X4321 g6942_2 g6399_0 vdd gnd g7016_1 and2 +X4322 g3246_0 g4040_0 vdd gnd g4256_1 nand2 +X4323 g2819_1 g3498_0 vdd gnd g3754_3 nand2 +X4324 x391_1 x392_1 vdd gnd g5989_1 and2 +X4325 g5074_2 vdd gnd g5605_0 not1 +X4326 g7306_2 g6176_1 g792_0 vdd gnd g7350_1 and3 +X4327 g3803_1 g3768_6 g3784_5 vdd gnd g4423_0 and3 +X4328 g1816_1 vdd gnd g2567_1 not1 +X4329 g1920_1 g1535_1 vdd gnd g2264_4 or2 +X4330 g133_1 g805_6 vdd gnd g1250_1 and2 +X4331 g6366_0 g6529_0 g6530_0 vdd gnd g6568_0 or3 +X4332 g1529_0 g1304_0 vdd gnd g1803_1 or2 +X4333 g1816_0 vdd gnd g2710_0 not1 +X4334 g5197_1 g6720_0 vdd gnd g6815_1 nand2 +X4335 g5740_2 g7332_1 vdd gnd g7340_1 nand2 +X4336 g5381_2 g5388_2 vdd gnd g6016_6 and2 +X4337 g1616_3 vdd gnd g2564_2 not1 +X4338 g5628_0 g6974_0 vdd gnd g7009_0 nand2 +X4339 g4052_0 g4265_0 vdd gnd g4791_5 nand2 +X4340 g3180_2 g2937_0 vdd gnd g3975_1 nand2 +X4341 g6294_1 g6648_0 vdd gnd g6668_1 nand2 +X4342 g5970_0 g5969_1 vdd gnd g6237_2 nand2 +X4343 g7169_0 g7140_0 vdd gnd g7180_0 nand2 +X4344 g3336_0 vdd gnd g4070_0 not1 +X4345 g7414_0 vdd gnd g7425_0 not1 +X4346 g5637_0 g7263_0 vdd gnd g7290_1 nand2 +X4347 g985_0 vdd gnd g1235_1 not1 +X4348 g7082_0 g7064_1 vdd gnd g7109_2 nand2 +X4349 g6926_0 g6863_1 vdd gnd g6980_1 nand2 +X4350 g2342_3 vdd gnd g3368_2 not1 +X4351 g4539_7 vdd gnd g5637_1 not1 +X4352 g2435_0 g2809_0 vdd gnd g3492_0 nand2 +X4353 g7004_1 vdd gnd g7079_0 not1 +X4354 g1936_0 g1575_0 vdd gnd g2322_0 or2 +X4355 g7210_1 g7188_1 vdd gnd g7231_0 nand2 +X4356 g6765_1 g6152_0 vdd gnd g6881_1 and2 +X4357 g6925_1 g6846_0 vdd gnd g6967_1 nand2 +X4358 g2141_2 vdd gnd g3285_0 not1 +X4359 g10_2 g835_0 vdd gnd g1304_1 and2 +X4360 g7158_0 vdd gnd g7196_1 not1 +X4361 g3294_2 vdd gnd g4177_1 not1 +X4362 g7002_1 g6961_1 vdd gnd g7038_2 nand2 +X4363 g3803_6 vdd gnd g5083_2 not1 +X4364 g141_1 g1468_4 vdd gnd g1907_1 and2 +X4365 g3288_2 g4174_1 vdd gnd g4307_0 nand2 +X4366 g4238_1 g4239_0 vdd gnd g4653_0 nand2 +X4367 g2188_0 vdd gnd g3231_1 not1 +X4368 g3126_0 g1226_0 vdd gnd g3895_1 nand2 +X4369 g772_3 vdd gnd g1212_6 not1 +X4370 g4598_11 g4582_14 g3928_5 g4568_10 vdd gnd g5360_1 and4 +X4371 g418_3 vdd gnd g901_2 not1 +X4372 g185_2 vdd gnd g560_1 not1 +X4373 g5223_2 g5295_1 vdd gnd g5788_1 nand2 +X4374 g3377_1 vdd gnd g4098_0 not1 +X4375 g5716_1 vdd gnd g6052_1 not1 +X4376 g3828_9 vdd gnd g5110_2 not1 +X4377 g6793_0 vdd gnd g6887_0 not1 +X4378 g1799_0 vdd gnd g2650_0 not1 +X4379 g3147_0 vdd gnd g3915_0 not1 +X4380 g1770_0 vdd gnd g2606_0 not1 +X4381 g4498_2 g2870_1 vdd gnd g5328_0 and2 +X4382 g683_2 vdd gnd g1070_1 not1 +X4383 g3228_1 g1265_1 vdd gnd g4017_1 nand2 +X4384 g2153_5 vdd gnd g3147_2 not1 +X4385 g6590_1 g3675_1 g3654_3 vdd gnd x471_0 and3 +X4386 x131_0 x132_1 vdd gnd g5156_1 or2 +X4387 g3333_0 vdd gnd g4068_1 not1 +X4388 g5104_2 vdd gnd g5297_0 not1 +X4389 g2089_2 g4450_1 g4451_1 vdd gnd x491_1 or3 +X4390 g2689_2 vdd gnd g3365_1 not1 +X4391 g4443_0 g6597_3 vdd gnd g6695_0 and2 +X4392 g2519_2 vdd gnd g2915_0 not1 +X4393 g6502_0 g6382_0 vdd gnd g6614_0 nand2 +X4394 g985_2 g3921_0 vdd gnd g4227_0 nand2 +X4395 g6315_0 g6401_1 vdd gnd g7501_0 nand2 +X4396 g4003_1 g3999_3 g3988_2 vdd gnd x121_1 and3 +X4397 g4802_1 g3013_5 vdd gnd g5470_1 and2 +X4398 g3784_6 vdd gnd g5068_2 not1 +X4399 g1900_0 g1461_1 vdd gnd g2153_2 or2 +X4400 g2215_3 vdd gnd g3135_2 not1 +X4401 g1390_2 vdd gnd g1674_1 not1 +X4402 g5610_1 vdd gnd g5993_1 not1 +X4403 g5012_2 vdd gnd g5586_1 not1 +X4404 g4062_1 g4270_1 vdd gnd g4850_12 nand2 +X4405 g4463_0 g2853_1 vdd gnd g5316_0 and2 +X4406 g2353_0 vdd gnd g2772_0 not1 +X4407 g6787_1 vdd gnd g7515_0 not1 +X4408 g1246_3 g1256_1 vdd gnd g1507_1 or2 +X4409 g130_1 g1206_5 vdd gnd g1493_1 and2 +X4410 g2615_0 g2955_1 vdd gnd g3538_1 nand2 +X4411 g146_0 g1521_1 vdd gnd g1918_0 and2 +X4412 g2330_0 g2111_2 vdd gnd g3061_1 and2 +X4413 g470_1 vdd gnd g7492_0 not1 +X4414 g640_3 vdd gnd g1021_1 not1 +X4415 g5188_2 vdd gnd g5859_1 not1 +X4416 g3897_1 g4219_1 vdd gnd g4485_5 nand2 +X4417 g6666_0 g6624_0 vdd gnd g6725_0 nand2 +X4418 g3030_1 g5490_1 vdd gnd g5843_1 or2 +X4419 g3718_3 vdd gnd g5047_2 not1 +X4420 g1045_2 vdd gnd g1311_0 not1 +X4421 x401_1 x402_1 vdd gnd g6002_3 and2 +X4422 g4560_3 vdd gnd g5655_1 not1 +X4423 g2698_2 vdd gnd g3063_1 not1 +X4424 g35_0 g1330_5 vdd gnd g1575_1 and2 +X4425 g118_0 g1462_4 vdd gnd g1905_1 and2 +X4426 g6356_0 g6188_1 vdd gnd g6438_1 nand2 +X4427 g2743_1 vdd gnd g3085_1 not1 +X4428 g958_2 g3896_0 vdd gnd g4218_0 nand2 +X4429 g3123_1 g1225_0 vdd gnd g3893_0 nand2 +X4430 g4973_0 g6825_0 vdd gnd g6880_1 nand2 +X4431 g4309_0 g4310_0 vdd gnd g5128_2 nand2 +X4432 g7296_1 g7276_1 vdd gnd g7321_1 nand2 +X4433 g2368_2 vdd gnd g3094_1 not1 +X4434 g5909_1 vdd gnd g6272_0 not1 +X4435 g1871_0 g2634_1 vdd gnd g2766_1 nand2 +X4436 g628_3 g1537_2 vdd gnd g1924_1 and2 +X4437 g6670_0 g6558_1 vdd gnd g7510_0 or2 +X4438 g7177_2 vdd gnd g7215_1 not1 +X4439 g4183_2 g6298_1 vdd gnd g6397_1 nand2 +X4440 g3120_2 vdd gnd g3892_1 not1 +X4441 g5779_1 g5274_0 vdd gnd g5972_0 nor2 +X4442 g6793_1 g5240_1 vdd gnd g6888_1 nand2 +X4443 g6127_2 g6607_0 vdd gnd g6660_1 nand2 +X4444 g4598_9 g4582_13 g3928_1 vdd gnd g5365_1 and3 +X4445 g1632_1 vdd gnd g2495_1 not1 +X4446 g195_0 vdd gnd g7472_1 not1 +X4447 g6039_0 g6194_0 vdd gnd g6314_0 nand2 +X4448 g3213_1 g1260_1 vdd gnd g4007_0 nand2 +X4449 g2096_3 g4455_1 g6693_0 vdd gnd g6796_1 or3 +X4450 g3162_2 vdd gnd g3925_1 not1 +X4451 g5205_1 vdd gnd g5878_1 not1 +X4452 g3207_2 g3987_1 vdd gnd g4244_1 nand2 +X4453 g621_4 g2175_4 vdd gnd g3037_7 and2 +X4454 g5688_1 vdd gnd g6034_1 not1 +X4455 g1192_5 vdd gnd g1462_5 not1 +X4456 g5664_2 vdd gnd g6012_1 not1 +X4457 g95_1 g753_6 vdd gnd g1151_1 and2 +X4458 g6942_1 g5248_1 vdd gnd g7018_0 and2 +X4459 g6668_0 g6649_0 vdd gnd g6745_1 nand2 +X4460 g2264_1 vdd gnd g3267_0 not1 +X4461 g5147_2 vdd gnd g5767_1 not1 +X4462 g937_2 g2838_1 vdd gnd g3507_1 nand2 +X4463 g4519_5 g4508_3 g4491_5 vdd gnd x211_1 and3 +X4464 g1057_0 g4067_0 vdd gnd g4272_1 nand2 +X4465 g2284_0 vdd gnd g3441_2 not1 +X4466 g582_1 g2215_0 vdd gnd g2867_0 and2 +X4467 g982_1 g3919_0 vdd gnd g4226_0 nand2 +X4468 g6284_1 g4178_1 vdd gnd g6488_1 nand2 +X4469 g182_2 vdd gnd g7459_1 not1 +X4470 g5554_2 vdd gnd g5958_1 not1 +X4471 g7428_0 g7402_0 vdd gnd g7438_0 nand2 +X4472 g5631_1 g7103_0 vdd gnd g7126_0 nand2 +X4473 g3450_2 g4136_0 vdd gnd g4299_0 nand2 +X4474 g2264_2 vdd gnd g3216_2 not1 +X4475 g1954_1 g2793_1 vdd gnd g3479_1 nand2 +X4476 g7292_0 g7268_0 vdd gnd g7309_0 nand2 +X4477 g4026_1 vdd gnd g4750_2 not1 +X4478 g4161_2 vdd gnd g5113_1 not1 +X4479 g2292_1 g1795_2 vdd gnd g2941_0 and2 +X4480 g6856_1 g6106_0 vdd gnd g6977_1 nand2 +X4481 g4078_2 g4074_2 g5505_1 vdd gnd g6069_1 and3 +X4482 g6023_2 g6151_0 g6510_1 vdd gnd x551_1 or3 +X4483 g206_0 g6336_0 g6056_0 g5280_0 vdd gnd g6528_0 and4 +X4484 g4240_0 g4241_0 vdd gnd g4657_0 nand2 +X4485 g1716_0 vdd gnd g2659_0 not1 +X4486 g3273_2 vdd gnd g4045_0 not1 +X4487 g3003_1 g5462_1 g5463_0 g5464_1 vdd gnd g5835_1 or4 +X4488 g4676_4 g4669_6 g2963_5 vdd gnd g5408_1 and3 +X4489 g2013_5 g3644_2 vdd gnd x42_1 and2 +X4490 g594_1 vdd gnd g961_1 not1 +X4491 g2409_0 g2802_0 vdd gnd g3486_1 nand2 +X4492 g6935_0 g6895_1 vdd gnd g7526_1 nand2 +X4493 g6475_2 g6014_1 vdd gnd g6585_1 nand2 +X4494 g5569_1 vdd gnd g5963_1 not1 +X4495 g2163_2 vdd gnd g3339_1 not1 +X4496 g982_2 vdd gnd g1234_0 not1 +X4497 g4568_8 vdd gnd g5664_1 not1 +X4498 g6377_2 g6016_3 g5370_6 vdd gnd g6535_1 and3 +X4499 g1620_2 vdd gnd g2686_2 not1 +X4500 g1092_3 g1100_1 vdd gnd g1399_1 or2 +X4501 g943_2 g2842_1 vdd gnd g3509_1 nand2 +X4502 g1596_0 vdd gnd g2412_0 not1 +X4503 g153_0 g1484_0 vdd gnd g1912_0 and2 +X4504 g2456_2 g1162_0 vdd gnd g2815_1 nand2 +X4505 g2896_1 g5354_1 g5355_0 vdd gnd x321_0 or3 +X4506 g4380_1 vdd gnd g5264_1 not1 +X4507 g2334_0 g2115_2 vdd gnd g3060_0 and2 +X4508 g1108_2 g1119_1 vdd gnd g1406_1 or2 +X4509 g2362_2 g6387_1 vdd gnd g6447_0 nand2 +X4510 g2383_0 g1136_1 vdd gnd g2785_1 nand2 +X4511 g5191_2 g6718_1 vdd gnd g6814_1 nand2 +X4512 g3186_2 g3979_1 vdd gnd g4237_1 nand2 +X4513 g614_1 g1565_4 vdd gnd g1941_1 and2 +X4514 g6373_1 g6372_1 vdd gnd g6478_2 nand2 +X4515 g2159_1 vdd gnd g3333_2 not1 +X4516 g7119_2 vdd gnd g7166_1 not1 +X4517 g2127_5 vdd gnd g3279_2 not1 +X4518 g5393_0 g5394_0 vdd gnd x332_0 or2 +X4519 g3174_1 vdd gnd g3970_0 not1 +X4520 g1948_0 vdd gnd g2747_1 not1 +X4521 g1928_0 g1555_0 vdd gnd g2296_0 or2 +X4522 g1894_0 g1455_0 vdd gnd g2119_2 or2 +X4523 g5370_2 g5395_3 vdd gnd x442_1 and2 +X4524 g913_1 g2822_1 vdd gnd g3499_1 nand2 +X4525 g6_1 vdd gnd g494_1 not1 +X4526 g7134_0 vdd gnd g7175_1 not1 +X4527 g5894_0 g5994_0 vdd gnd g6168_1 nand2 +X4528 x331_0 x332_1 vdd gnd g5824_1 or2 +X4529 g3462_1 g4208_1 vdd gnd g4321_0 nand2 +X4530 g3725_9 g2033_4 vdd gnd g4401_1 and2 +X4531 g196_2 vdd gnd g620_1 not1 +X4532 g413_4 vdd gnd g907_2 not1 +X4533 g6421_1 vdd gnd g6517_0 not1 +X4534 g2230_0 g4665_0 g4666_0 vdd gnd x181_0 or3 +X4535 x51_0 x52_1 vdd gnd g4407_1 and2 +X4536 g3512_0 g3513_0 vdd gnd g3938_0 nand2 +X4537 g4850_2 g4834_1 g3037_1 vdd gnd g5486_1 and3 +X4538 g5515_3 vdd gnd g6073_1 not1 +X4539 g206_7 g5302_0 g4508_5 vdd gnd x391_0 and3 +X4540 g4151_0 vdd gnd g4530_0 not1 +X4541 g925_2 vdd gnd g1169_1 not1 +X4542 g464_0 g1738_0 vdd gnd g1971_1 and2 +X4543 g2221_1 g4622_0 g4623_0 g4624_0 vdd gnd g5183_1 or4 +X4544 g3550_1 g3551_1 vdd gnd g4088_1 nand2 +X4545 g4058_0 g4268_1 vdd gnd g4820_11 nand2 +X4546 g7372_1 g7349_0 vdd gnd g7384_1 nand2 +X4547 g159_1 g1446_3 vdd gnd g1896_0 and2 +X4548 g519_3 g1691_3 vdd gnd g2480_2 nor2 +X4549 g1024_1 vdd gnd g1266_1 not1 +X4550 g7438_1 g7440_1 vdd gnd g7443_1 nand2 +X4551 g4508_6 vdd gnd g5575_0 not1 +X4552 g5128_1 vdd gnd g5705_0 not1 +X4553 g2901_2 g5364_0 g5365_0 g6007_0 vdd gnd g6263_1 or4 +X4554 g1727_2 vdd gnd g2668_0 not1 +X4555 g6995_1 g6882_1 vdd gnd g7533_0 or2 +X4556 g2615_1 vdd gnd g2956_1 not1 +X4557 g4084_2 vdd gnd g4896_2 not1 +X4558 g1832_3 g1612_3 vdd gnd g2225_1 and2 +X4559 g895_0 g2788_1 vdd gnd g3476_1 nand2 +X4560 g4687_2 g2969_3 g4676_2 vdd gnd g5411_0 and3 +X4561 g7336_1 vdd gnd g7373_1 not1 +X4562 g3579_6 g1961_2 vdd gnd g4328_1 and2 +X4563 g4764_1 vdd gnd g5448_2 not1 +X4564 g6942_0 vdd gnd g7033_0 not1 +X4565 g1372_2 vdd gnd g1509_0 not1 +X4566 g6195_0 g6047_0 vdd gnd g6360_0 nor2 +X4567 g4884_2 vdd gnd g5502_2 not1 +X4568 g3784_7 g3768_7 g2062_5 g3754_10 vdd gnd g4416_1 and4 +X4569 g2175_3 vdd gnd g3243_2 not1 +X4570 g4117_0 vdd gnd g4943_0 not1 +X4571 g3784_11 g3768_12 g3746_4 vdd gnd x61_1 and3 +X4572 g1366_1 vdd gnd g1421_1 not1 +X4573 g1792_2 vdd gnd g2707_2 not1 +X4574 g3417_0 g4128_0 vdd gnd g4292_0 nand2 +X4575 g3090_0 vdd gnd g4140_1 not1 +X4576 g2444_0 vdd gnd g3101_1 not1 +X4577 g2647_0 g3346_0 vdd gnd g3567_0 nand2 +X4578 g922_2 g2828_1 vdd gnd g3502_0 nand2 +X4579 g2432_0 g2810_1 vdd gnd g3493_1 nand2 +X4580 g3617_2 vdd gnd g5030_0 not1 +X4581 g4760_3 vdd gnd g5434_2 not1 +X4582 g2304_3 g1807_1 vdd gnd g2936_0 and2 +X4583 g6274_2 g6640_0 vdd gnd g6667_0 nand2 +X4584 g442_0 vdd gnd g712_0 not1 +X4585 g6814_0 g6719_1 vdd gnd g6837_0 nand2 +X4586 x71_1 x72_0 vdd gnd g4443_2 and2 +X4587 g168_2 vdd gnd g456_0 not1 +X4588 g5302_2 vdd gnd g6090_0 not1 +X4589 g3435_1 g4204_0 vdd gnd g4317_0 nand2 +X4590 g1912_1 g1496_0 vdd gnd g2200_2 or2 +X4591 g1756_4 vdd gnd g2347_2 not1 +X4592 g4011_1 g4247_1 vdd gnd g4687_4 nand2 +X4593 g26_0 g1323_1 vdd gnd g1558_0 and2 +X4594 g2163_3 vdd gnd g3201_0 not1 +X4595 g3768_10 vdd gnd g5074_0 not1 +X4596 g5758_2 vdd gnd g6140_0 not1 +X4597 g5053_2 vdd gnd g5599_1 not1 +X4598 g174_3 vdd gnd g486_1 not1 +X4599 g7336_2 g7426_1 vdd gnd g7431_1 nand2 +X4600 g1704_0 vdd gnd g2465_2 not1 +X4601 g7234_0 vdd gnd g7265_1 not1 +X4602 g485_0 g828_3 vdd gnd g1287_0 and2 +X4603 g3479_0 g2794_1 vdd gnd g3683_3 nand2 +X4604 g4213_1 g5142_1 vdd gnd g5236_1 nand2 +X4605 g6590_6 g3675_5 vdd gnd g6685_1 and2 +X4606 g5881_2 g6459_1 vdd gnd g6551_1 nand2 +X4607 g4235_1 g3977_1 vdd gnd g4642_5 nand2 +X4608 g2000_1 g4349_0 g4350_0 vdd gnd x141_0 or3 +X4609 g7441_0 g7444_0 vdd gnd g7445_0 nand2 +X4610 g2167_3 vdd gnd g3195_1 not1 +X4611 g6696_0 g6579_0 vdd gnd g6771_1 or2 +X4612 g6206_0 g6070_0 vdd gnd g6373_0 nor2 +X4613 g7172_1 g7167_0 vdd gnd g7203_0 nand2 +X4614 g5945_0 g5135_0 vdd gnd g6299_0 nand2 +X4615 g3371_0 vdd gnd g4096_0 not1 +X4616 g5655_0 vdd gnd g6113_1 not1 +X4617 g3736_3 g2038_2 g3725_2 vdd gnd g4402_1 and3 +X4618 g1691_2 vdd gnd g2507_2 not1 +X4619 g1782_2 g1608_2 vdd gnd g2230_1 and2 +X4620 g5816_2 g5395_1 vdd gnd g6150_1 and2 +X4621 g116_1 g1289_3 vdd gnd g1528_1 and2 +X4622 g6760_0 g1999_0 vdd gnd g6910_1 and2 +X4623 g1942_0 vdd gnd g2759_1 not1 +X4624 g5139_0 g5683_0 vdd gnd g5915_0 nand2 +X4625 g1652_1 vdd gnd g2447_1 not1 +X4626 g660_3 vdd gnd g1012_2 not1 +X4627 g602_3 g1565_3 vdd gnd g1939_1 and2 +X4628 g3883_5 vdd gnd g4973_2 not1 +X4629 g6811_2 g5247_1 vdd gnd g6901_1 nand2 +X4630 g2543_2 g2924_1 vdd gnd g3521_1 nand2 +X4631 g2528_0 g2917_0 vdd gnd g3514_0 nand2 +X4632 g48_1 g1275_2 vdd gnd g1516_1 and2 +X4633 g4143_0 vdd gnd g5039_1 not1 +X4634 g6817_1 g6731_1 vdd gnd g6850_2 nand2 +X4635 g6220_2 g5965_1 vdd gnd g6410_0 nand2 +X4636 g3526_0 g3527_0 vdd gnd g3968_0 nand2 +X4637 g582_0 vdd gnd g967_0 not1 +X4638 g7027_1 vdd gnd g7537_1 not1 +X4639 g4611_5 vdd gnd g5628_1 not1 +X4640 g137_1 g816_3 vdd gnd g1254_1 and2 +X4641 g7147_1 g6105_1 vdd gnd g7188_1 nand2 +X4642 g3702_2 vdd gnd g4386_2 not1 +X4643 g6751_2 vdd gnd g6878_1 not1 +X4644 g553_1 g1646_2 vdd gnd g2033_2 and2 +X4645 g3601_2 g1971_5 vdd gnd g4339_1 and2 +X4646 g3306_1 g1309_0 vdd gnd g4054_0 nand2 +X4647 g73_0 g1144_1 vdd gnd g1436_1 and2 +X4648 g1986_1 g4324_0 vdd gnd g5253_2 and2 +X4649 g1862_1 g2421_0 vdd gnd g2763_1 nand2 +X4650 g2591_2 g2947_1 vdd gnd g3530_0 nand2 +X4651 g576_2 g1559_3 vdd gnd g1935_1 and2 +X4652 g6700_1 g2752_2 vdd gnd g6824_1 and2 +X4653 g45_1 g1344_5 vdd gnd g1585_1 and2 +X4654 g5677_0 g6436_0 vdd gnd g6531_0 nand2 +X4655 g3994_0 g3988_0 vdd gnd x112_1 and2 +X4656 g6181_1 g6015_0 vdd gnd g6308_1 nand2 +X4657 g777_1 vdd gnd g1192_5 not1 +X4658 g5625_2 vdd gnd g6000_0 not1 +X4659 g188_1 vdd gnd g570_5 not1 +X4660 g1003_2 g1509_1 vdd gnd g1765_1 nand2 +X4661 g3562_0 g3563_0 vdd gnd g4146_0 nand2 +X4662 g1670_0 g6905_2 vdd gnd g7001_0 and2 +X4663 g6748_2 g6303_1 vdd gnd g6873_1 nand2 +X4664 g5065_1 vdd gnd g5602_1 not1 +X4665 g1865_2 g2805_1 vdd gnd g3489_1 nand2 +X4666 g3198_1 g3983_1 vdd gnd g4241_1 nand2 +X4667 g519_5 g842_6 vdd gnd g1357_1 and2 +X4668 g2235_3 vdd gnd g2957_1 not1 +X4669 g169_0 vdd gnd g7483_0 not1 +X4670 g7293_0 g7270_0 vdd gnd g7312_0 nand2 +X4671 g5047_0 g7137_1 vdd gnd g7168_0 nand2 +X4672 g5813_1 vdd gnd g6274_0 not1 +X4673 g3285_1 g4175_0 vdd gnd g4308_1 nand2 +X4674 g3285_2 vdd gnd g4174_1 not1 +X4675 g126_0 g1440_4 vdd gnd g1893_1 and2 +X4676 g4088_2 g4084_1 g4902_0 vdd gnd g5513_1 and3 +X4677 g4498_4 g5302_6 g4508_1 vdd gnd x381_1 and3 +X4678 g4113_3 g4943_1 g5539_1 vdd gnd g5856_1 and3 +X4679 g4255_0 g4256_0 vdd gnd g4760_0 nand2 +X4680 g4834_6 g3030_2 g4820_8 vdd gnd g5483_1 and3 +X4681 g3943_1 g3938_2 g2223_1 vdd gnd g4623_1 and3 +X4682 g6466_1 g6554_1 vdd gnd g6634_2 nand2 +X4683 g561_3 vdd gnd g792_1 not1 +X4684 g5370_4 g5395_6 vdd gnd x432_1 and2 +X4685 g4117_2 g4113_1 g4967_1 vdd gnd g5552_1 and3 +X4686 g7038_1 vdd gnd g7089_1 not1 +X4687 g4395_2 g5170_3 vdd gnd g5783_1 and2 +X4688 g1750_5 vdd gnd g2401_2 not1 +X4689 g7281_0 g6115_0 vdd gnd g7331_1 nand2 +X4690 g7080_0 g7045_0 vdd gnd g7093_1 nand2 +X4691 g3691_0 vdd gnd g4377_0 not1 +X4692 g3601_10 g1971_0 g3587_0 vdd gnd g4333_0 and3 +X4693 g1076_2 vdd gnd g1381_1 not1 +X4694 g6799_2 vdd gnd g6891_1 not1 +X4695 g2029_0 g4401_0 g4402_0 g4403_0 vdd gnd g5202_0 or4 +X4696 g6938_1 g6901_0 vdd gnd g7529_0 nand2 +X4697 g2522_0 g2915_1 vdd gnd g3512_1 nand2 +X4698 g4850_10 vdd gnd g5752_1 not1 +X4699 g2441_2 g3099_0 vdd gnd g3562_1 nand2 +X4700 g678_2 vdd gnd g695_0 not1 +X4701 g3150_1 g1233_1 vdd gnd g3916_1 nand2 +X4702 g1934_1 g1573_1 vdd gnd g2314_2 or2 +X4703 g2668_2 g4082_1 vdd gnd g4277_1 nand2 +X4704 g3183_0 g2940_1 vdd gnd g3977_0 nand2 +X4705 g1390_0 g2749_0 vdd gnd g2792_0 nand2 +X4706 g121_0 g1462_0 vdd gnd g1901_0 and2 +X4707 g5068_1 g7099_0 vdd gnd g7124_0 nand2 +X4708 g7206_1 g7174_1 vdd gnd g7219_2 nand2 +X4709 g5062_2 g7217_1 vdd gnd g7253_0 nand2 +X4710 g7085_1 g7015_0 vdd gnd g7545_1 or2 +X4711 g5505_1 vdd gnd g6065_1 not1 +X4712 g50_1 g1199_4 vdd gnd g1482_1 and2 +X4713 g3968_1 g3947_2 g3943_2 g3938_3 vdd gnd g4619_1 and4 +X4714 g1917_0 g1532_0 vdd gnd g2244_3 or2 +X4715 g4791_8 g4784_5 g3008_2 vdd gnd g5463_1 and3 +X4716 g6144_1 vdd gnd g6381_1 not1 +X4717 g6951_2 vdd gnd g7021_1 not1 +X4718 g6940_0 g6941_1 g6903_0 g6904_0 vdd gnd g7004_1 or4 +X4719 g6423_1 g6402_0 vdd gnd g6558_0 and2 +X4720 g952_1 vdd gnd g1224_1 not1 +X4721 g5931_1 g5932_1 vdd gnd g6127_1 nand2 +X4722 g5677_2 vdd gnd g6013_0 not1 +X4723 g4648_3 g4642_3 vdd gnd x232_1 and2 +X4724 g3279_1 g4048_1 vdd gnd g4263_1 nand2 +X4725 g7222_2 g5589_1 vdd gnd g7274_1 nand2 +X4726 x461_0 x462_0 vdd gnd g6514_1 and2 +X4727 g1965_1 g4339_0 g4340_0 g4341_0 vdd gnd g5188_2 or4 +X4728 g7327_0 g6114_1 vdd gnd g7359_1 nand2 +X4729 x281_1 x282_1 vdd gnd g5477_1 and2 +X4730 g1015_2 vdd gnd g1263_0 not1 +X4731 g479_4 g1756_2 vdd gnd g1960_1 and2 +X4732 g3401_1 g4110_1 vdd gnd g4290_0 nand2 +X4733 g198_2 vdd gnd g628_5 not1 +X4734 g7321_0 g5278_0 vdd gnd g7347_0 nand2 +X4735 g2567_0 vdd gnd g2931_1 not1 +X4736 g2371_1 g5859_0 vdd gnd g6099_1 nand2 +X4737 g5050_0 vdd gnd g5276_1 not1 +X4738 g2549_2 vdd gnd g2925_0 not1 +X4739 g7423_1 g7431_0 vdd gnd g7436_0 nand2 +X4740 g3694_0 g4368_2 g5266_0 vdd gnd g5777_0 and3 +X4741 g7257_1 g6420_1 g6568_2 vdd gnd g7302_1 and3 +X4742 g6820_1 g6737_1 vdd gnd g6859_2 nand2 +X4743 g5095_0 vdd gnd g5294_0 not1 +X4744 g4362_1 g4359_0 g4380_0 vdd gnd g5270_1 and3 +X4745 g3601_4 g1971_2 vdd gnd g4342_1 and2 +X4746 g10_0 g1295_1 vdd gnd g1534_0 and2 +X4747 g457_1 g1731_3 vdd gnd g1978_1 and2 +X4748 g2258_3 vdd gnd g3219_1 not1 +X4749 g394_1 g400_1 vdd gnd g681_1 and2 +X4750 x271_1 x272_0 vdd gnd g5471_1 and2 +X4751 g6645_2 vdd gnd g6743_1 not1 +X4752 g5880_0 g6101_0 vdd gnd g6247_0 nand2 +X4753 g413_0 vdd gnd g937_0 not1 +X4754 g4956_0 g5535_0 g6083_1 vdd gnd g6213_1 and3 +X4755 g3797_3 g3736_4 vdd gnd g4427_1 and2 +X4756 g1816_2 g1675_3 vdd gnd g2229_1 and2 +X4757 g5214_2 vdd gnd g5885_1 not1 +X4758 g2101_5 g3852_4 vdd gnd x82_1 and2 +X4759 g1832_0 vdd gnd g2537_0 not1 +X4760 g4519_7 g3907_1 vdd gnd g5333_0 and2 +X4761 g1820_1 vdd gnd g2555_1 not1 +X4762 g1744_3 vdd gnd g2380_1 not1 +X4763 g532_0 g1704_2 vdd gnd g2049_1 and2 +X4764 g3192_0 vdd gnd g3980_1 not1 +X4765 g1844_2 vdd gnd g2734_1 not1 +X4766 g2579_1 vdd gnd g2937_1 not1 +X4767 g889_1 vdd gnd g1135_1 not1 +X4768 g2062_7 vdd gnd g3114_2 not1 +X4769 g418_4 g1652_5 vdd gnd g2029_3 and2 +X4770 g1766_3 g1592_3 vdd gnd g2234_1 and2 +X4771 g2638_0 g4043_0 vdd gnd g4259_0 nand2 +X4772 g3407_0 vdd gnd g4112_1 not1 +X4773 g4389_1 vdd gnd g5267_1 not1 +X4774 g3004_3 g5468_0 g5469_1 vdd gnd g5936_1 nor3 +X4775 g7011_0 g6979_0 vdd gnd g7060_2 nand2 +X4776 g2300_3 vdd gnd g3453_2 not1 +X4777 g1_3 vdd gnd g404_2 not1 +X4778 g4154_2 g6000_1 vdd gnd g6174_1 nand2 +X4779 g2874_3 g4508_2 vdd gnd g5331_1 and2 +X4780 g86_0 g96_1 g112_0 g123_1 vdd gnd g391_2 and4 +X4781 g79_0 g740_0 vdd gnd g1121_0 and2 +X4782 g184_2 vdd gnd g418_0 not1 +X4783 g2734_1 vdd gnd g3413_1 not1 +X4784 g621_1 g2175_1 vdd gnd g3330_1 nor2 +X4785 g4190_1 vdd gnd g5120_0 not1 +X4786 g49_3 g6075_1 g6016_1 vdd gnd x431_1 and3 +X4787 g6269_2 g6978_1 vdd gnd g7011_1 nand2 +X4788 g93_1 g705_6 vdd gnd g1096_1 and2 +X4789 g64_2 g1178_5 vdd gnd g1455_1 and2 +X4790 g3891_0 g4216_0 vdd gnd g4456_0 nand2 +X4791 g3321_0 g1314_0 vdd gnd g4064_0 nand2 +X4792 g2495_2 g1173_1 vdd gnd g2837_0 nand2 +X4793 g5746_1 vdd gnd g6055_0 not1 +X4794 g3817_4 g3810_6 g2075_3 vdd gnd g4433_1 and3 +X4795 g5920_2 vdd gnd g6187_1 not1 +X4796 g2215_5 vdd gnd g3159_2 not1 +X4797 g2292_0 vdd gnd g3183_1 not1 +X4798 g70_0 g1138_3 vdd gnd g1432_0 and2 +X4799 g1423_1 vdd gnd g1948_2 not1 +X4800 g3441_2 vdd gnd g4134_1 not1 +X4801 g6805_2 vdd gnd g6896_1 not1 +X4802 g6475_2 vdd gnd g6584_1 not1 +X4803 g602_5 g2141_5 vdd gnd g2885_4 and2 +X4804 g3240_0 g6038_1 vdd gnd g6193_0 nand2 +X4805 g2674_0 g3055_0 vdd gnd g3551_0 nand2 +X4806 g6490_0 g6557_0 vdd gnd g6645_0 nand2 +X4807 g4092_0 vdd gnd g4905_0 not1 +X4808 g2115_1 vdd gnd g3383_2 not1 +X4809 g3566_1 g3567_1 vdd gnd g4193_1 nand2 +X4810 g4657_2 g4653_3 g4642_2 vdd gnd x241_0 and3 +X4811 g1727_1 vdd gnd g2698_0 not1 +X4812 g1589_0 g1364_0 vdd gnd g1844_3 or2 +X4813 g1000_1 vdd gnd g1257_1 not1 +X4814 g3349_1 vdd gnd g4082_0 not1 +X4815 g901_0 g2814_0 vdd gnd g3495_0 nand2 +X4816 g621_1 vdd gnd g1057_1 not1 +X4817 g5431_1 g4760_2 g6041_0 vdd gnd g6195_1 and3 +X4818 g6837_2 vdd gnd g6960_1 not1 +X4819 g1978_7 g3587_13 vdd gnd x22_1 and2 +X4820 g101_1 g727_6 vdd gnd g1114_1 and2 +X4821 g5848_0 vdd gnd g6207_0 not1 +X4822 g1646_0 vdd gnd g2456_1 not1 +X4823 g7193_0 vdd gnd g7240_1 not1 +X4824 g570_1 vdd gnd g994_1 not1 +X4825 g5867_2 vdd gnd g6233_1 not1 +X4826 g4802_4 vdd gnd g5722_2 not1 +X4827 g5044_0 g7044_1 vdd gnd g7080_1 nand2 +X4828 g6213_0 g6089_0 vdd gnd g6386_1 nor2 +X4829 g1027_2 g4022_1 vdd gnd g4252_0 nand2 +X4830 g3489_0 g2806_0 vdd gnd g3705_1 nand2 +X4831 g5226_1 vdd gnd g5789_1 not1 +X4832 g4676_9 vdd gnd g5691_2 not1 +X4833 g6660_0 g6608_0 vdd gnd g6704_0 nand2 +X4834 g1502_0 g799_1 vdd gnd g1738_1 and2 +X4835 g5309_3 g5986_1 vdd gnd g6318_3 and2 +X4836 g5643_0 vdd gnd g6107_1 not1 +X4837 g5445_1 vdd gnd g6041_1 not1 +X4838 g2049_5 g4421_1 g4422_1 g4423_1 vdd gnd g5208_2 or4 +X4839 g2159_3 vdd gnd g3210_1 not1 +X4840 g82_1 g760_5 vdd gnd g1159_1 and2 +X4841 g2549_0 g2926_1 vdd gnd g3523_1 nand2 +X4842 g6853_1 vdd gnd g6974_1 not1 +X4843 g6543_1 vdd gnd g6663_1 not1 +X4844 g1926_1 g1553_1 vdd gnd g2288_2 or2 +X4845 g576_3 g2209_4 vdd gnd g2901_5 and2 +X4846 g3797_0 g3736_0 g3725_0 g3718_0 vdd gnd g4395_1 and4 +X4847 g1799_1 vdd gnd g2585_0 not1 +X4848 g6240_0 vdd gnd g6418_0 not1 +X4849 g4550_2 g4532_2 g2890_2 g4539_1 vdd gnd g5347_1 and4 +X4850 g2359_1 g1130_0 vdd gnd g2775_1 nand2 +X4851 g4560_2 vdd gnd g5671_1 not1 +X4852 g5578_1 g6411_1 vdd gnd g6522_1 nand2 +X4853 x221_1 x222_0 vdd gnd g5357_1 and2 +X4854 g3106_2 vdd gnd g3717_1 not1 +X4855 g1691_4 vdd gnd g2474_1 not1 +X4856 g4456_6 g2849_3 vdd gnd g5313_1 and2 +X4857 g1883_1 g3077_0 vdd gnd g3554_0 nand2 +X4858 g2845_0 g3511_1 vdd gnd g3883_3 nand2 +X4859 g2630_0 g2999_1 vdd gnd g3544_0 nand2 +X4860 g4324_1 g6565_1 vdd gnd g6674_1 nand2 +X4861 g6116_2 g7063_1 vdd gnd g7082_1 nand2 +X4862 g3201_1 vdd gnd g3983_0 not1 +X4863 g526_3 g1698_5 vdd gnd g2096_4 and2 +X4864 g53_2 g1178_6 vdd gnd g1452_1 and2 +X4865 g2483_2 vdd gnd g2830_0 not1 +X4866 g1212_1 vdd gnd g1484_2 not1 +X4867 g5707_1 vdd gnd g6130_0 not1 +X4868 g859_0 g1124_1 vdd gnd g1375_0 nand2 +X4869 g2314_1 vdd gnd g3398_0 not1 +X4870 g2188_5 vdd gnd g3315_2 not1 +X4871 g1679_1 vdd gnd g2677_2 not1 +X4872 g1604_3 vdd gnd g2597_1 not1 +X4873 g1957_2 vdd gnd g2751_1 not1 +X4874 g1731_1 vdd gnd g2359_2 not1 +X4875 g6799_0 g5242_1 vdd gnd g6892_1 nand2 +X4876 g646_5 g1543_4 vdd gnd g1927_1 and2 +X4877 g2740_0 vdd gnd g3084_0 not1 +X4878 g3736_5 vdd gnd g5056_2 not1 +X4879 g2531_2 vdd gnd g2919_1 not1 +X4880 g2377_2 g1135_1 vdd gnd g2781_1 nand2 +X4881 g7054_0 vdd gnd g7103_1 not1 +X4882 g5131_0 g5705_1 vdd gnd g5931_0 nand2 +X4883 g4802_8 g3013_3 g4791_6 vdd gnd g5466_1 and3 +X4884 g3008_1 g5470_0 vdd gnd g5836_2 or2 +X4885 g2719_1 vdd gnd g3081_0 not1 +X4886 g174_1 vdd gnd g7453_1 not1 +X4887 g7303_1 g5809_2 g792_2 vdd gnd g7351_1 and3 +X4888 g206_14 g5302_5 g4519_9 vdd gnd g5991_1 and3 +X4889 g1398_1 g712_3 vdd gnd g1608_3 and2 +X4890 g2318_3 g1723_0 vdd gnd g3066_0 and2 +X4891 g2644_1 vdd gnd g3046_1 not1 +X4892 g2881_2 g5351_0 g5352_0 vdd gnd g5906_1 nor3 +X4893 g2958_0 g5407_1 g5408_0 g5409_1 vdd gnd g5829_1 or4 +X4894 g15_2 g835_3 vdd gnd g1302_1 and2 +X4895 g4721_7 g2984_4 g4711_5 vdd gnd g5426_1 and3 +X4896 g4278_0 g4279_0 vdd gnd g4908_1 nand2 +X4897 g7341_0 g7335_1 vdd gnd g7366_0 nand2 +X4898 g1042_1 g4057_0 vdd gnd g4267_0 nand2 +X4899 g2288_0 vdd gnd g3186_0 not1 +X4900 g6954_2 g5961_0 vdd gnd g7024_1 nand2 +X4901 g2288_1 vdd gnd g3450_1 not1 +X4902 g6637_0 g6469_0 vdd gnd g6737_0 nand2 +X4903 g6481_1 vdd gnd g6605_1 not1 +X4904 g2389_1 vdd gnd g2793_0 not1 +X4905 g3096_1 g5865_1 vdd gnd g6100_1 nand2 +X4906 g5616_2 g6169_1 vdd gnd g6328_1 nand2 +X4907 g2769_0 g3468_0 vdd gnd g3587_8 nand2 +X4908 g4711_6 g4742_2 g4721_8 vdd gnd x251_0 and3 +X4909 g3665_6 g3654_4 g2013_1 g3644_5 vdd gnd g4355_1 and4 +X4910 g6597_4 vdd gnd g6712_1 not1 +X4911 g6326_0 g6166_0 vdd gnd g6402_1 nand2 +X4912 g90_1 g716_2 vdd gnd g1099_1 and2 +X4913 g4876_3 g5496_2 g6064_1 vdd gnd g6204_1 and3 +X4914 g5434_0 g5431_0 g5448_2 vdd gnd g6048_0 and3 +X4915 g2492_2 vdd gnd g2836_0 not1 +X4916 g1941_1 g1580_0 vdd gnd g2342_0 or2 +X4917 g672_0 vdd gnd g1033_1 not1 +X4918 g3456_1 vdd gnd g4207_0 not1 +X4919 g1770_2 vdd gnd g2624_2 not1 +X4920 g1638_3 g545_7 vdd gnd g2510_2 nor2 +X4921 g145_0 g1521_2 vdd gnd g1919_1 and2 +X4922 g5098_1 g5787_1 vdd gnd g5981_1 nand2 +X4923 g4940_1 g4117_1 g5538_0 vdd gnd g5855_1 and3 +X4924 g973_2 g3906_0 vdd gnd g4223_1 nand2 +X4925 g6924_1 g6844_1 vdd gnd g6964_2 nand2 +X4926 g6255_0 g4160_0 vdd gnd g6464_0 nand2 +X4927 g191_1 vdd gnd g7468_0 not1 +X4928 g4991_0 vdd gnd g5244_0 not1 +X4929 g3352_1 g4187_0 vdd gnd g4312_0 nand2 +X4930 g3264_1 g4173_0 vdd gnd g4306_1 nand2 +X4931 g6176_3 g6333_1 vdd gnd g6433_2 and2 +X4932 g5661_2 vdd gnd g6011_1 not1 +X4933 g1687_2 vdd gnd g2546_2 not1 +X4934 g2147_0 vdd gnd g3123_1 not1 +X4935 g7119_1 g6142_1 vdd gnd g7167_1 nand2 +X4936 g5829_0 g6184_1 vdd gnd g6351_3 or2 +X4937 g5778_1 g5273_0 vdd gnd g5971_1 nor2 +X4938 g2540_2 vdd gnd g2922_1 not1 +X4939 g4078_1 vdd gnd g4890_1 not1 +X4940 g6345_0 g6532_0 vdd gnd g6588_1 and2 +X4941 g970_1 g3904_1 vdd gnd g4222_1 nand2 +X4942 g660_5 vdd gnd g1039_2 not1 +X4943 g1057_2 vdd gnd g1315_1 not1 +X4944 g1922_1 g1549_1 vdd gnd g2743_2 or2 +X4945 g3873_5 g2101_0 vdd gnd g4455_1 and2 +X4946 g182_0 vdd gnd g545_1 not1 +X4947 g4463_7 g4485_1 g4474_7 g4456_1 vdd gnd g5309_1 and4 +X4948 g7083_1 g7072_1 vdd gnd g7116_1 nand2 +X4949 g5856_0 g5553_0 vdd gnd g6085_1 nor2 +X4950 g3541_0 g2996_0 vdd gnd g4026_3 nand2 +X4951 g6980_2 vdd gnd g7063_1 not1 +X4952 g2462_2 g1164_1 vdd gnd g2819_1 nand2 +X4953 g6176_0 g6334_0 vdd gnd g6430_0 and2 +X4954 g4676_9 vdd gnd g5694_0 not1 +X4955 g6023_0 g6150_0 g6508_0 vdd gnd x541_0 or3 +X4956 g6124_1 vdd gnd g6364_1 not1 +X4957 g6518_0 g6573_1 vdd gnd g6671_1 and2 +X4958 g1877_0 g3047_0 vdd gnd g3546_1 nand2 +X4959 g18_0 g1337_0 vdd gnd g1578_0 and2 +X4960 g640_0 g2194_0 vdd gnd g3020_1 and2 +X4961 g1624_1 vdd gnd g2695_0 not1 +X4962 g2359_2 vdd gnd g2776_1 not1 +X4963 g7209_0 g7186_0 vdd gnd g7228_1 nand2 +X4964 g646_3 g2244_4 vdd gnd g2976_1 and2 +X4965 g3754_12 g2049_4 vdd gnd g4414_0 and2 +X4966 g6675_1 g6652_1 vdd gnd g6754_2 nand2 +X4967 g1675_1 vdd gnd g2570_1 not1 +X4968 g2023_3 g5768_0 vdd gnd g5955_0 or2 +X4969 g3282_0 vdd gnd g4048_0 not1 +X4970 g1240_3 g1252_1 vdd gnd g1503_1 or2 +X4971 g6850_1 g5607_0 vdd gnd g6973_1 nand2 +X4972 g7252_1 g7216_1 vdd gnd g7257_2 nand2 +X4973 g6304_2 g6079_1 vdd gnd g6446_1 nand2 +X4974 g5147_0 g5766_0 vdd gnd g5953_0 nand2 +X4975 g473_2 vdd gnd g889_0 not1 +X4976 g7200_0 g6138_0 vdd gnd g7249_0 nand2 +X4977 g6442_0 vdd gnd g6609_1 not1 +X4978 g4876_2 vdd gnd g5493_2 not1 +X4979 g3956_3 g3950_5 vdd gnd x92_1 and2 +X4980 g6867_0 g6133_1 vdd gnd g6986_1 nand2 +X4981 g7219_2 vdd gnd g7271_0 not1 +X4982 g4905_2 vdd gnd g5512_1 not1 +X4983 g2704_2 g4107_1 vdd gnd g4288_1 nand2 +X4984 g1632_4 vdd gnd g2432_2 not1 +X4985 g2429_2 g2807_1 vdd gnd g3490_1 nand2 +X4986 g5671_2 g7240_0 vdd gnd g7254_0 nand2 +X4987 g5655_2 g7279_1 vdd gnd g7298_1 nand2 +X4988 g5939_2 g4182_0 vdd gnd g6293_1 nand2 +X4989 g1411_9 g1060_5 vdd gnd g1889_1 and2 +X4990 g4669_0 g2959_1 vdd gnd g5407_0 and2 +X4991 g4550_1 g2890_1 vdd gnd g5353_0 and2 +X4992 g3828_0 g2081_1 vdd gnd g4440_0 and2 +X4993 g479_1 vdd gnd g862_2 not1 +X4994 g652_4 g2250_3 vdd gnd g3013_4 and2 +X4995 g4474_6 vdd gnd g5625_2 not1 +X4996 g1828_0 vdd gnd g2722_0 not1 +X4997 g1086_1 g1096_0 vdd gnd g1395_0 or2 +X4998 g3395_0 g3065_1 vdd gnd g4106_0 nand2 +X4999 g6234_1 vdd gnd g6414_1 not1 +X5000 g5982_1 g5790_0 vdd gnd g6153_1 nand2 +X5001 g494_3 vdd gnd g777_2 not1 +X5002 g4698_5 vdd gnd g5248_1 not1 +X5003 g3694_2 vdd gnd g4365_2 not1 +X5004 g1638_0 g545_0 vdd gnd g2081_0 and2 +X5005 g4019_1 g4251_0 vdd gnd g4721_0 nand2 +X5006 g6366_1 g5280_3 g5253_1 vdd gnd g6512_1 and3 +X5007 g1853_1 vdd gnd g2404_0 not1 +X5008 g1750_1 vdd gnd g2377_1 not1 +X5009 g2674_1 vdd gnd g3054_0 not1 +X5010 g5183_1 g5380_1 vdd gnd g5816_1 or2 +X5011 g7065_1 vdd gnd g7112_1 not1 +X5012 g158_1 g1446_4 vdd gnd g1897_1 and2 +X5013 g2594_2 vdd gnd g2949_1 not1 +X5014 g5334_0 g4598_7 vdd gnd g6008_1 and2 +X5015 g4319_0 g4320_0 vdd gnd g5153_0 nand2 +X5016 g538_3 g1710_0 vdd gnd g2045_1 and2 +X5017 g6893_1 g6828_1 vdd gnd g7519_1 nand2 +X5018 g3020_2 g5482_1 g5483_0 g5484_1 vdd gnd g5948_0 nor4 +X5019 g488_1 vdd gnd g740_2 not1 +X5020 g3216_0 vdd gnd g4010_0 not1 +X5021 g1895_1 g1456_1 vdd gnd g2123_0 or2 +X5022 g5776_1 g5271_0 vdd gnd g5969_0 nor2 +X5023 g5752_2 g7166_1 vdd gnd g7172_1 nand2 +X5024 g4539_10 g2885_3 vdd gnd g5351_1 and2 +X5025 g6433_0 vdd gnd g6581_1 not1 +X5026 g2304_0 vdd gnd g3462_0 not1 +X5027 g5640_2 g6976_0 vdd gnd g7010_1 nand2 +X5028 g4199_0 g5118_0 vdd gnd g5232_1 nand2 +X5029 g1638_4 vdd gnd g2492_2 not1 +X5030 g1913_0 g1497_0 vdd gnd g2203_2 or2 +X5031 g170_2 vdd gnd g464_1 not1 +X5032 g23_0 g1316_2 vdd gnd g1552_0 and2 +X5033 g3069_0 g4926_1 vdd gnd x302_1 and2 +X5034 g1070_2 vdd gnd g1377_1 not1 +X5035 g179_2 vdd gnd g7456_1 not1 +X5036 g9_0 g1212_0 vdd gnd g1497_1 and2 +X5037 g4820_0 g3024_1 vdd gnd g5482_0 and2 +X5038 g2576_1 g3972_0 vdd gnd g4233_0 nand2 +X5039 g7363_1 g6054_0 vdd gnd g7388_0 nand2 +X5040 g4939_0 g4935_2 g4931_3 vdd gnd x291_1 and3 +X5041 g397_2 vdd gnd g7489_0 not1 +X5042 g5795_0 vdd gnd g6163_0 not1 +X5043 g6456_2 g5878_1 vdd gnd g6624_1 nand2 +X5044 g4009_1 g4246_0 vdd gnd g4676_5 nand2 +X5045 g3342_0 g3046_0 vdd gnd g4072_1 nand2 +X5046 g3698_3 g3694_1 g4383_2 vdd gnd g5271_1 and3 +X5047 g42_0 g1344_3 vdd gnd g1581_1 and2 +X5048 g5936_2 vdd gnd g6291_1 not1 +X5049 g3222_1 g1263_1 vdd gnd g4013_1 nand2 +X5050 g2570_0 g2931_0 vdd gnd g3528_0 nand2 +X5051 g7131_1 g5587_1 vdd gnd g7174_0 nand2 +X5052 g2969_2 g4687_1 g4676_1 vdd gnd g5414_1 and3 +X5053 g2276_0 g2159_0 vdd gnd g2945_0 and2 +X5054 g567_0 g1275_1 vdd gnd g1519_0 and2 +X5055 g7315_2 vdd gnd g7342_0 not1 +X5056 g868_1 vdd gnd g1128_1 not1 +X5057 g3058_1 g5519_1 g5520_0 g5521_1 vdd gnd g5848_3 or4 +X5058 g7354_1 g7355_1 g7356_0 g7357_1 vdd gnd g7378_2 or4 +X5059 g4687_5 vdd gnd g5700_0 not1 +X5060 g2603_0 vdd gnd g2952_0 not1 +X5061 g5824_0 vdd gnd g6182_1 not1 +X5062 g5806_1 g5369_1 vdd gnd g6255_1 or2 +X5063 g5997_1 g6173_1 vdd gnd g6330_1 nand2 +X5064 g2534_2 vdd gnd g2920_1 not1 +X5065 x361_0 x362_1 vdd gnd g5852_0 or2 +X5066 g6821_1 g6742_0 vdd gnd g6864_1 nand2 +X5067 g3601_12 vdd gnd g5036_2 not1 +X5068 g1082_1 g1257_0 vdd gnd g1385_1 nand2 +X5069 g2270_3 vdd gnd g3213_2 not1 +X5070 g2209_3 vdd gnd g3138_2 not1 +X5071 g5746_0 g7389_0 vdd gnd g7401_0 nand2 +X5072 g4753_0 g4750_0 g4781_0 vdd gnd g5458_0 and3 +X5073 g2890_0 vdd gnd g4161_1 not1 +X5074 g2564_1 g2929_0 vdd gnd g3526_1 nand2 +X5075 g1503_0 g799_0 vdd gnd g1744_2 and2 +X5076 g5956_0 g6311_0 g6512_0 vdd gnd x561_0 or3 +X5077 g3538_0 g3539_0 vdd gnd g4006_0 nand2 +X5078 g4834_13 g3030_4 g4820_11 vdd gnd g5479_1 and3 +X5079 g4820_12 vdd gnd g5743_2 not1 +X5080 g3873_9 g3862_10 g2101_4 g3852_9 vdd gnd g4452_0 and4 +X5081 g7123_1 g7092_1 vdd gnd g7134_2 nand2 +X5082 g5974_2 g5253_4 vdd gnd g6311_1 and2 +X5083 g1086_5 g1097_1 vdd gnd g1396_1 or2 +X5084 g2765_0 g2766_1 vdd gnd g3297_0 nand2 +X5085 g780_1 vdd gnd g1323_6 not1 +X5086 g3754_5 vdd gnd g5080_1 not1 +X5087 g6247_2 vdd gnd g6459_1 not1 +X5088 g3901_1 g4221_0 vdd gnd g4498_3 nand2 +X5089 g3180_2 vdd gnd g3974_1 not1 +X5090 g4072_0 g4276_0 vdd gnd g4884_0 nand2 +X5091 g6430_2 vdd gnd g6580_0 not1 +X5092 g874_0 g2776_0 vdd gnd g3471_1 nand2 +X5093 g628_1 g2182_2 vdd gnd g2984_1 and2 +X5094 g3839_2 g6911_3 vdd gnd g6997_1 and2 +X5095 g1006_0 g4008_1 vdd gnd g4245_0 nand2 +X5096 g916_1 g2824_1 vdd gnd g3500_1 nand2 +X5097 g1901_1 g1474_1 vdd gnd g2641_1 or2 +X5098 g1907_0 g1480_1 vdd gnd g2175_5 or2 +X5099 g4721_10 vdd gnd g5563_0 not1 +X5100 g519_6 vdd gnd g949_2 not1 +X5101 g202_2 vdd gnd g652_7 not1 +X5102 g3414_2 vdd gnd g4128_1 not1 +X5103 g4994_0 g6896_1 vdd gnd g6936_0 nand2 +X5104 g5211_0 g6728_0 vdd gnd g6816_1 nand2 +X5105 g2740_1 g3083_1 vdd gnd g3559_1 nand2 +X5106 g3243_1 vdd gnd g4037_1 not1 +X5107 g3386_2 vdd gnd g4101_1 not1 +X5108 g6422_0 vdd gnd g6518_1 not1 +X5109 g2028_1 g4398_1 g4399_1 g4400_1 vdd gnd g5166_1 or4 +X5110 g940_0 g2840_0 vdd gnd g3508_1 nand2 +X5111 g1490_0 g1219_0 vdd gnd g1877_1 or2 +X5112 g6312_0 g6911_1 vdd gnd g6994_1 and2 +X5113 g1921_0 g1536_0 vdd gnd g2270_1 or2 +X5114 g2752_0 g5828_1 vdd gnd g6023_1 or2 +X5115 g2594_0 g2950_1 vdd gnd g3533_1 nand2 +X5116 g57_0 g1269_3 vdd gnd g1513_1 and2 +X5117 g2853_1 g5323_0 vdd gnd g5900_1 nor2 +X5118 g3204_1 vdd gnd g3984_1 not1 +X5119 g7260_1 g6158_2 g6568_4 vdd gnd g7301_1 and3 +X5120 g5554_1 g6998_1 vdd gnd g7014_1 nand2 +X5121 g608_5 vdd gnd g979_2 not1 +X5122 g4_2 g3_2 vdd gnd g442_3 nand2 +X5123 g3665_5 g3654_2 g2013_4 vdd gnd g4357_0 and3 +X5124 g199_2 vdd gnd g7475_1 not1 +X5125 g1_0 vdd gnd g7447_1 not1 +X5126 g5229_1 g5297_1 vdd gnd g5792_1 nand2 +X5127 g148_1 g1468_3 vdd gnd g1910_1 and2 +X5128 g51_0 g1199_0 vdd gnd g1481_0 and2 +X5129 g4519_0 g4498_1 vdd gnd x392_1 and2 +X5130 g7306_1 g6433_1 g561_1 vdd gnd g7352_1 and3 +X5131 g423_2 vdd gnd g925_1 not1 +X5132 g1923_0 g1550_1 vdd gnd g2276_3 or2 +X5133 g7153_0 vdd gnd g7191_1 not1 +X5134 g6515_0 g7033_3 vdd gnd g7085_1 and2 +X5135 g1931_1 g1558_1 vdd gnd g2308_3 or2 +X5136 x161_0 x162_0 vdd gnd g5178_0 or2 +X5137 g166_0 g407_0 vdd gnd g7495_0 nand2 +X5138 g4196_1 vdd gnd g5118_1 not1 +X5139 g1178_3 vdd gnd g1440_2 not1 +X5140 g1493_0 g1222_1 vdd gnd g1723_2 or2 +X5141 g6805_1 g5245_0 vdd gnd g6897_1 nand2 +X5142 g6677_3 g7381_1 vdd gnd g7395_1 and2 +X5143 g3768_14 g2055_5 vdd gnd g4424_1 and2 +X5144 g1528_0 g1303_0 vdd gnd g1799_3 or2 +X5145 g1042_0 vdd gnd g1310_0 not1 +X5146 g5664_0 g7385_1 vdd gnd g7398_1 nand2 +X5147 g4154_1 vdd gnd g4531_1 not1 +X5148 g526_2 g842_5 vdd gnd g1358_1 and2 +X5149 g160_1 g1484_4 vdd gnd g1915_1 and2 +X5150 g3601_3 g1971_6 g3587_6 vdd gnd g4337_0 and3 +X5151 g892_1 g2786_0 vdd gnd g3475_0 nand2 +X5152 g4611_1 vdd gnd g5640_0 not1 +X5153 g2725_1 vdd gnd g3410_1 not1 +X5154 g7417_1 vdd gnd g7426_0 not1 +X5155 g6384_1 g6383_1 vdd gnd g6502_2 nand2 +X5156 g6230_2 vdd gnd g6451_1 not1 +X5157 g5047_2 vdd gnd g5598_1 not1 +X5158 g2182_5 vdd gnd g3234_2 not1 +X5159 g5471_2 vdd gnd g6051_1 not1 +X5160 g3306_1 vdd gnd g4055_0 not1 +X5161 g3407_1 g3070_0 vdd gnd g4111_0 nand2 +X5162 g2055_2 g4426_1 vdd gnd g5174_0 or2 +X5163 g4139_1 g4301_1 vdd gnd g5003_1 nand2 +X5164 g6765_2 g6153_1 vdd gnd g6882_0 and2 +X5165 g6495_1 g6498_0 vdd gnd g6651_0 nand2 +X5166 g4619_2 g4625_1 vdd gnd g5370_1 and2 +X5167 g1628_1 vdd gnd g2522_2 not1 +X5168 g6147_2 vdd gnd g6382_1 not1 +X5169 g5223_0 vdd gnd g5787_1 not1 +X5170 g4050_0 g4264_0 vdd gnd g4784_3 nand2 +X5171 g4260_0 g4261_0 vdd gnd g4771_0 nand2 +X5172 g2531_2 g2920_0 vdd gnd g3517_1 nand2 +X5173 g816_4 vdd gnd g1246_1 not1 +X5174 g7170_0 g7157_1 vdd gnd g7193_1 nand2 +X5175 g5972_1 g5971_0 vdd gnd g6240_1 nand2 +X5176 g3862_8 vdd gnd g4982_1 not1 +X5177 g694_1 vdd gnd g7498_0 not1 +X5178 g5009_2 g6960_1 vdd gnd g7002_0 nand2 +X5179 g6859_1 g6470_1 vdd gnd g6979_1 nand2 +X5180 g3312_2 g1311_1 vdd gnd g4058_1 nand2 +X5181 g6565_0 vdd gnd g6677_1 not1 +X5182 g6002_1 vdd gnd g6333_0 not1 +X5183 g4234_1 g3975_0 vdd gnd g4639_2 nand2 +X5184 g1596_2 vdd gnd g2609_2 not1 +X5185 g1927_0 g1554_1 vdd gnd g2292_2 or2 +X5186 g7001_1 g6910_1 vdd gnd g7030_2 or2 +X5187 g2489_2 g1171_1 vdd gnd g2833_1 nand2 +X5188 g634_4 vdd gnd g1024_2 not1 +X5189 g2474_2 g1168_1 vdd gnd g2827_1 nand2 +X5190 g5003_0 g3561_1 vdd gnd g5582_1 nand2 +X5191 g608_4 g1565_4 vdd gnd g1940_1 and2 +X5192 g3210_1 vdd gnd g3987_0 not1 +X5193 g2695_1 vdd gnd g3367_1 not1 +X5194 g1971_4 g4344_1 vdd gnd g5160_2 or2 +X5195 g5089_2 g7185_1 vdd gnd g7209_1 nand2 +X5196 g3324_2 vdd gnd g4067_1 not1 +X5197 g683_5 g428_7 vdd gnd g1073_1 nor2 +X5198 g5566_2 g7025_1 vdd gnd g7078_1 nand2 +X5199 g4893_2 vdd gnd g5505_2 not1 +X5200 g5871_2 g3109_0 vdd gnd g6244_1 nand2 +X5201 g672_2 g1543_1 vdd gnd g1931_1 and2 +X5202 g206_12 g6318_2 g6026_3 vdd gnd x451_0 and3 +X5203 g6847_2 vdd gnd g6970_1 not1 +X5204 g1978_6 vdd gnd g3096_2 not1 +X5205 g949_0 vdd gnd g1177_1 not1 +X5206 g970_0 vdd gnd g1230_1 not1 +X5207 g1710_1 vdd gnd g2462_1 not1 +X5208 g487_0 g821_3 vdd gnd g1284_1 and2 +X5209 g39_1 g1323_5 vdd gnd g1555_1 and2 +X5210 g3924_1 g4229_0 vdd gnd g4582_8 nand2 +X5211 g4802_7 vdd gnd g5710_0 not1 +X5212 g4732_8 g4721_9 g2989_2 vdd gnd g5429_0 and3 +X5213 g4288_0 g4108_0 vdd gnd g4935_1 nand2 +X5214 g103_1 g753_2 vdd gnd g1153_1 and2 +X5215 g457_3 vdd gnd g874_2 not1 +X5216 g3114_1 g5885_0 vdd gnd g6102_1 nand2 +X5217 g192_2 vdd gnd g594_4 not1 +X5218 g1744_5 vdd gnd g2392_2 not1 +X5219 g7177_2 g5276_0 vdd gnd g7216_0 nand2 +X5220 g4869_1 vdd gnd g5731_0 not1 +X5221 g1404_0 g721_0 vdd gnd g1624_0 and2 +X5222 g5774_0 g5269_0 vdd gnd g5967_1 nor2 +X5223 g2498_0 vdd gnd g2840_1 not1 +X5224 g1409_0 g734_1 vdd gnd g1652_0 and2 +X5225 x521_0 x522_0 vdd gnd g6948_1 or2 +X5226 g3637_5 vdd gnd g4991_2 not1 +X5227 g6964_1 g5597_1 vdd gnd g7045_1 nand2 +X5228 g1935_1 g1574_1 vdd gnd g2318_1 or2 +X5229 g134_0 g76_1 g142_0 g154_0 vdd gnd g400_2 and4 +X5230 g203_1 vdd gnd g660_4 not1 +X5231 g2510_1 vdd gnd g2847_1 not1 +X5232 g2453_2 g1161_1 vdd gnd g2813_1 nand2 +X5233 g6722_0 g5596_0 vdd gnd g6844_1 nand2 +X5234 g5619_1 vdd gnd g5996_0 not1 +X5235 g6124_0 g6605_0 vdd gnd g6659_0 nand2 +X5236 g5846_0 g5513_0 vdd gnd g6071_1 nor2 +X5237 g3377_1 g4097_0 vdd gnd g4280_0 nand2 +X5238 g100_1 g727_1 vdd gnd g1115_0 and2 +X5239 g446_2 vdd gnd g812_0 not1 +X5240 g6784_1 vdd gnd g7514_1 not1 +X5241 g3999_1 g3988_1 g2233_0 g3994_3 vdd gnd g4667_0 and4 +X5242 g457_2 g1731_4 vdd gnd g2013_3 and2 +X5243 g186_0 vdd gnd g7463_1 not1 +X5244 g4474_5 g2859_6 vdd gnd g5321_1 and2 +X5245 g207_0 g455_1 vdd gnd g690_0 and2 +X5246 g5649_1 g7265_1 vdd gnd g7291_0 nand2 +X5247 g588_3 vdd gnd g964_1 not1 +X5248 g2374_2 g1134_1 vdd gnd g2779_1 nand2 +X5249 g85_0 g760_0 vdd gnd g1155_0 and2 +X5250 g4164_0 g6467_0 vdd gnd g6555_1 nand2 +X5251 x11_1 x12_0 vdd gnd g4324_2 and2 +X5252 g2049_2 g4424_0 g4425_1 vdd gnd g5214_1 nor3 +X5253 x451_1 x452_1 vdd gnd g6507_1 and2 +X5254 g7109_1 vdd gnd g7156_0 not1 +X5255 g3103_0 vdd gnd g3716_0 not1 +X5256 g2395_0 vdd gnd g2796_0 not1 +X5257 g594_2 vdd gnd g997_1 not1 +X5258 g3333_1 g3045_0 vdd gnd g4069_1 nand2 +X5259 g2188_2 vdd gnd g3246_2 not1 +X5260 g5710_1 g7112_1 vdd gnd g7129_0 nand2 +X5261 g898_2 vdd gnd g1160_1 not1 +X5262 g5572_2 g6407_1 vdd gnd g6520_1 nand2 +X5263 g7228_2 g5606_0 vdd gnd g7278_0 nand2 +X5264 g56_0 g1350_0 vdd gnd g1590_1 and2 +X5265 g5843_0 vdd gnd g6300_0 not1 +X5266 g6488_0 g6556_0 vdd gnd g6642_1 nand2 +X5267 g3444_0 g4134_0 vdd gnd g4297_1 nand2 +X5268 g3361_1 vdd gnd g4189_1 not1 +X5269 g2963_1 g5415_1 g5416_1 vdd gnd g5923_1 or3 +X5270 g1375_1 g1376_1 vdd gnd g1411_4 nand2 +X5271 g628_4 vdd gnd g1051_2 not1 +X5272 g2418_0 vdd gnd g2804_0 not1 +X5273 g1930_0 g1557_0 vdd gnd g2304_2 or2 +X5274 g1620_1 vdd gnd g2534_1 not1 +X5275 g6525_0 g6419_0 vdd gnd g6564_0 nand2 +X5276 g1015_0 g4014_1 vdd gnd g4248_0 nand2 +X5277 g105_1 g753_3 vdd gnd g1150_0 and2 +X5278 g6299_1 g6397_0 vdd gnd g6495_2 nand2 +X5279 g1586_0 g1361_1 vdd gnd g1832_2 or2 +X5280 g5926_0 vdd gnd g6191_0 not1 +X5281 g3630_0 g3617_6 vdd gnd g4345_1 and2 +X5282 g1514_0 g1284_0 vdd gnd g1774_1 or2 +X5283 g6523_0 g6415_0 vdd gnd g6562_0 nand2 +X5284 g2695_2 g3366_0 vdd gnd g3572_1 nand2 +X5285 g97_1 g727_3 vdd gnd g1118_0 and2 +X5286 g5454_0 vdd gnd g6044_0 not1 +X5287 g2401_0 g2797_1 vdd gnd g3482_0 nand2 +X5288 g1965_3 g4342_1 g4343_0 vdd gnd g5194_0 nor3 +X5289 g501_1 vdd gnd g821_1 not1 +X5290 g2977_1 g5425_1 g5426_0 vdd gnd x521_1 or3 +X5291 g5912_1 g6862_0 vdd gnd g6926_1 nand2 +X5292 g3291_1 vdd gnd g4176_0 not1 +X5293 g3736_6 g2038_5 g3725_5 vdd gnd g4405_1 and3 +X5294 g1323_6 vdd gnd g1543_5 not1 +X5295 g7007_0 g6971_0 vdd gnd g7048_0 nand2 +X5296 g3138_0 g1230_0 vdd gnd g3903_0 nand2 +X5297 g2841_0 g3509_0 vdd gnd g3862_6 nand2 +X5298 g1664_0 g1411_6 vdd gnd g1998_0 and2 +X5299 g4294_1 g4295_0 vdd gnd g4953_2 nand2 +X5300 g2322_3 vdd gnd g3423_2 not1 +X5301 g910_2 vdd gnd g1164_1 not1 +X5302 g2874_0 g5333_1 g5991_0 vdd gnd g6220_0 or3 +X5303 g4030_3 vdd gnd g4753_2 not1 +X5304 g2522_1 vdd gnd g2916_0 not1 +X5305 g5719_2 vdd gnd g6133_0 not1 +X5306 g5761_0 vdd gnd g6079_0 not1 +X5307 g2831_1 g3504_0 vdd gnd g3817_6 nand2 +X5308 g65_1 g1185_2 vdd gnd g1459_1 and2 +X5309 g7403_0 g7395_0 vdd gnd g7414_1 or2 +X5310 g2347_0 g1126_1 vdd gnd g2767_1 nand2 +X5311 g5697_2 g4025_1 vdd gnd g6037_0 nand2 +X5312 g5761_2 g6445_1 vdd gnd g6542_1 nand2 +X5313 g6760_3 vdd gnd g6905_3 not1 +X5314 g1893_0 g1454_1 vdd gnd g2115_3 or2 +X5315 g6121_0 vdd gnd g6344_1 not1 +X5316 g1750_4 vdd gnd g2350_2 not1 +X5317 g1832_1 vdd gnd g2719_1 not1 +X5318 g7225_2 vdd gnd g7275_1 not1 +X5319 g2368_1 g6389_1 vdd gnd g6448_1 nand2 +X5320 g3183_2 vdd gnd g3976_1 not1 +X5321 g98_1 g727_5 vdd gnd g1117_1 and2 +X5322 g68_0 g67_0 vdd gnd g388_1 and2 +X5323 g6203_0 g6067_0 vdd gnd g6370_0 nor2 +X5324 g2731_1 vdd gnd g3412_0 not1 +X5325 g6655_1 g6585_1 vdd gnd g6697_0 nand2 +X5326 g5341_3 vdd gnd g6001_1 not1 +X5327 g7180_1 g5277_1 vdd gnd g7218_0 nand2 +X5328 g5802_0 vdd gnd g6175_1 not1 +X5329 g1868_2 vdd gnd g2240_0 not1 +X5330 g6205_0 g6069_1 vdd gnd g6372_0 nor2 +X5331 g5334_2 vdd gnd g6109_1 not1 +X5332 g111_0 g1462_3 vdd gnd g1902_1 and2 +X5333 g3552_0 g3553_1 vdd gnd g4092_1 nand2 +X5334 g961_2 g3898_0 vdd gnd g4219_0 nand2 +X5335 g919_2 vdd gnd g1167_1 not1 +X5336 g4143_2 g5040_1 vdd gnd g5201_1 nand2 +X5337 g545_6 vdd gnd g934_2 not1 +X5338 g4164_1 vdd gnd g5114_1 not1 +X5339 g2638_2 vdd gnd g3002_1 not1 +X5340 g7130_0 g7115_0 vdd gnd g7161_0 nand2 +X5341 g614_0 vdd gnd g976_0 not1 +X5342 g1795_3 vdd gnd g2582_0 not1 +X5343 g4756_3 vdd gnd g5431_2 not1 +X5344 g207_4 g173_3 vdd gnd g500_1 and2 +X5345 g4023_0 g4253_0 vdd gnd g4742_1 nand2 +X5346 g1518_1 g1288_1 vdd gnd g1871_1 or2 +X5347 g727_6 vdd gnd g1102_3 not1 +X5348 g1501_1 g799_5 vdd gnd g1731_6 and2 +X5349 g3267_2 g4172_1 vdd gnd g4305_0 nand2 +X5350 g1428_0 g1382_1 vdd gnd g1670_3 nand2 +X5351 g163_0 g1484_1 vdd gnd g1911_0 and2 +X5352 g4232_0 g3971_1 vdd gnd g4630_1 nand2 +X5353 g1513_0 g1283_0 vdd gnd g1770_1 or2 +X5354 g4850_8 g4834_5 g3037_6 g4820_10 vdd gnd g5480_1 and4 +X5355 g4946_0 g4949_3 g6080_0 vdd gnd g6210_1 and3 +X5356 g1848_3 vdd gnd g2731_2 not1 +X5357 g4315_1 g4316_0 vdd gnd g5147_2 nand2 +X5358 g652_3 g2250_2 vdd gnd g3327_1 nor2 +X5359 g1932_1 g1571_0 vdd gnd g2740_2 or2 +X5360 g2250_5 vdd gnd g3222_2 not1 +X5361 g5707_0 g6983_0 vdd gnd g7012_0 nand2 +X5362 g6847_1 g5602_0 vdd gnd g6971_1 nand2 +X5363 g5107_1 g2847_0 vdd gnd g5298_0 nand2 +X5364 g5897_1 vdd gnd g6169_0 not1 +X5365 g5110_0 vdd gnd g5301_0 not1 +X5366 g821_4 vdd gnd g1269_5 not1 +X5367 g4151_1 g2879_1 vdd gnd g4529_1 nand2 +X5368 g3554_1 g3078_0 vdd gnd g4113_2 nand2 +X5369 g7057_0 g6107_1 vdd gnd g7106_1 nand2 +X5370 g6808_0 g5246_0 vdd gnd g6899_1 nand2 +X5371 g135_0 g816_0 vdd gnd g1256_0 and2 +X5372 g1508_0 g1385_0 vdd gnd g1762_1 nand2 +X5373 g464_2 g1738_3 vdd gnd g2008_1 and2 +X5374 g2779_0 g3472_0 vdd gnd g3637_3 nand2 +X5375 g3441_1 g4135_1 vdd gnd g4298_1 nand2 +X5376 g2630_1 vdd gnd g3000_1 not1 +X5377 g4210_2 g5143_1 vdd gnd g5237_1 nand2 +X5378 g206_9 vdd gnd g678_2 not1 +X5379 g3579_5 vdd gnd g5033_2 not1 +X5380 g7391_2 vdd gnd g7405_1 not1 +X5381 g1587_1 g1362_1 vdd gnd g1836_1 or2 +X5382 g1990_2 vdd gnd g2778_1 not1 +X5383 g928_2 g2832_0 vdd gnd g3504_1 nand2 +X5384 g3380_2 g4100_1 vdd gnd g4283_1 nand2 +X5385 g206_1 vdd gnd g561_0 not1 +X5386 g2423_0 vdd gnd g2805_0 not1 +X5387 g5056_1 vdd gnd g5600_0 not1 +X5388 g5_0 vdd gnd g439_1 not1 +X5389 g4979_1 vdd gnd g5240_1 not1 +X5390 g197_1 vdd gnd g621_3 not1 +X5391 g2045_2 g4414_1 g4415_1 vdd gnd x201_1 or3 +X5392 g1880_1 g3052_1 vdd gnd g3549_0 nand2 +X5393 g5743_0 g7387_0 vdd gnd g7400_0 nand2 +X5394 g6751_0 g1990_0 vdd gnd g6879_0 and2 +X5395 g6327_0 g6168_0 vdd gnd g6421_0 nand2 +X5396 g6096_2 vdd gnd g6389_0 not1 +X5397 g6754_1 g6413_0 g6677_0 vdd gnd g6904_1 and3 +X5398 g545_2 vdd gnd g919_1 not1 +X5399 g4884_2 vdd gnd g5499_1 not1 +X5400 g107_1 g106_0 g109_1 g110_1 vdd gnd g397_0 and4 +X5401 g2716_1 vdd gnd g3080_1 not1 +X5402 g70_2 g1144_5 vdd gnd g1437_1 and2 +X5403 g5508_1 vdd gnd g6066_1 not1 +X5404 g5214_0 g4150_0 vdd gnd g5886_1 nand2 +X5405 g5968_1 g5967_0 vdd gnd g6234_0 nand2 +X5406 g2338_1 vdd gnd g3374_1 not1 +X5407 g2811_0 g3494_0 vdd gnd g3718_5 nand2 +X5408 g6247_1 g6250_1 vdd gnd g6460_0 nand2 +X5409 g4834_2 g4812_3 g3030_5 g4820_5 vdd gnd g5476_1 and4 +X5410 g38_0 g1316_6 vdd gnd g1551_1 and2 +X5411 g2677_1 g3054_1 vdd gnd g3550_1 nand2 +X5412 g6784_0 g6787_0 g6778_0 vdd gnd g6902_1 and3 +X5413 g5646_1 vdd gnd g6108_0 not1 +X5414 g2555_1 g2928_1 vdd gnd g3525_1 nand2 +X5415 g4767_0 g5440_0 g6044_1 vdd gnd g6198_1 and3 +X5416 g423_1 g1658_1 vdd gnd g2028_0 and2 +X5417 g6096_1 g3094_1 vdd gnd g6390_1 nand2 +X5418 g716_3 vdd gnd g1092_2 not1 +X5419 g7054_1 g6104_1 vdd gnd g7104_0 nand2 +X5420 g5917_0 g6033_0 vdd gnd g6186_0 nand2 +X5421 x141_1 x142_0 vdd gnd g5163_1 or2 +X5422 g602_2 g2141_3 vdd gnd g2853_2 and2 +X5423 g3380_0 vdd gnd g4099_1 not1 +X5424 g3456_0 g4206_0 vdd gnd g4319_1 nand2 +X5425 g1638_5 vdd gnd g2471_2 not1 +X5426 g2833_0 g3505_1 vdd gnd g3828_6 nand2 +X5427 g3644_7 vdd gnd g4994_2 not1 +X5428 g3845_5 g3873_8 vdd gnd x72_1 and2 +X5429 g3243_0 g3001_0 vdd gnd g4038_0 nand2 +X5430 g6816_1 g6729_0 vdd gnd g6847_0 nand2 +X5431 g6237_1 g3717_0 vdd gnd g6417_0 nand2 +X5432 g6322_1 g6026_4 g5287_5 g5258_4 vdd gnd g6506_1 and4 +X5433 g6214_0 g5963_0 vdd gnd g6406_1 nand2 +X5434 g3432_2 g4205_1 vdd gnd g4318_1 nand2 +X5435 g1892_0 g1453_0 vdd gnd g2111_1 or2 +X5436 g2839_1 g3508_0 vdd gnd g3852_6 nand2 +X5437 g1945_1 vdd gnd g2760_0 not1 +X5438 g6478_1 vdd gnd g6586_0 not1 +X5439 g7287_2 vdd gnd g7334_1 not1 +X5440 g2468_2 g1166_1 vdd gnd g2823_1 nand2 +X5441 g91_0 g705_0 vdd gnd g1098_0 and2 +X5442 x351_1 x352_1 vdd gnd g5839_3 or2 +X5443 g4967_2 vdd gnd g5538_1 not1 +X5444 g167_2 g1275_5 vdd gnd g1517_1 and2 +X5445 g388_0 g410_0 vdd gnd g694_0 and2 +X5446 g5053_0 g6845_0 vdd gnd g6925_0 nand2 +X5447 g532_3 g1704_3 vdd gnd g2092_0 and2 +X5448 g201_0 vdd gnd g646_2 not1 +X5449 g1624_3 vdd gnd g2528_1 not1 +X5450 g5929_1 g5930_0 vdd gnd g6124_2 nand2 +X5451 g3845_3 vdd gnd g4976_0 not1 +X5452 g3797_5 g3736_9 g3725_10 vdd gnd g4403_1 and3 +X5453 g582_5 g1559_4 vdd gnd g1936_1 and2 +X5454 g4550_0 vdd gnd g5631_0 not1 +X5455 g1859_0 g2422_0 vdd gnd g2764_0 nand2 +X5456 g5939_1 vdd gnd g6292_1 not1 +X5457 g3276_1 g4045_1 vdd gnd g4260_1 nand2 +X5458 g3110_2 vdd gnd g4149_1 not1 +X5459 g4568_7 g2901_0 vdd gnd g5361_0 and2 +X5460 g1874_1 vdd gnd g2634_0 not1 +X5461 g5680_1 vdd gnd g6014_0 not1 +X5462 g4711_7 g4704_0 g2980_1 vdd gnd g5422_1 and3 +X5463 g2019_1 g4346_2 vdd gnd g5258_3 and2 +X5464 g5915_1 g5916_0 vdd gnd g6121_1 nand2 +X5465 g404_2 vdd gnd g7491_1 not1 +X5466 g6491_1 vdd gnd g6648_1 not1 +X5467 g1795_3 vdd gnd g2644_2 not1 +X5468 g3617_1 g3601_11 g1978_2 g3587_3 vdd gnd g4338_1 and4 +X5469 g4926_2 g4920_4 g3066_1 vdd gnd g5526_1 and3 +X5470 g3288_2 vdd gnd g4175_1 not1 +X5471 g197_0 vdd gnd g7485_0 not1 +X5472 g6771_0 g4742_0 g4732_6 vdd gnd g6918_1 and3 +X5473 g5593_1 g6418_1 vdd gnd g6525_1 nand2 +X5474 g5000_2 vdd gnd g5247_0 not1 +X5475 g44_1 g1344_1 vdd gnd g1584_1 and2 +X5476 g2525_2 g2918_0 vdd gnd g3515_1 nand2 +X5477 g2330_3 vdd gnd g3429_2 not1 +X5478 g3530_1 g3531_1 vdd gnd g3988_5 nand2 +X5479 g2756_1 g5581_1 vdd gnd g5857_0 nand2 +X5480 g1076_1 g1133_1 vdd gnd g1382_0 nand2 +X5481 g7161_2 vdd gnd g7198_0 not1 +X5482 g2075_2 g4440_1 g4441_0 vdd gnd g5226_2 or3 +X5483 g1403_1 g721_3 vdd gnd g1620_3 and2 +X5484 g3355_1 g4186_1 vdd gnd g4311_0 nand2 +X5485 g6964_0 vdd gnd g7044_1 not1 +X5486 g2689_0 g3364_0 vdd gnd g3570_0 nand2 +X5487 g2707_0 g4112_0 vdd gnd g4291_0 nand2 +X5488 g6771_2 vdd gnd g6921_0 not1 +X5489 g3810_2 g2071_1 vdd gnd g4432_1 and2 +X5490 g3617_10 g3601_8 g1978_4 g3587_11 vdd gnd g4334_1 and4 +X5491 g2641_2 g4068_1 vdd gnd g4273_1 nand2 +X5492 g2111_3 vdd gnd g3355_2 not1 +X5493 g3153_2 g1234_1 vdd gnd g3918_1 nand2 +X5494 g6468_0 g6555_0 vdd gnd g6637_1 nand2 +X5495 g5557_2 vdd gnd g5959_1 not1 +X5496 g30_2 g835_4 vdd gnd g1306_1 and2 +X5497 g4508_4 g4491_6 g2874_4 g4498_5 vdd gnd g5326_1 and4 +X5498 g5716_0 g7267_1 vdd gnd g7292_1 nand2 +X5499 g6715_0 g5243_0 vdd gnd g6828_1 nand2 +X5500 g5953_1 g5954_0 vdd gnd g6147_1 nand2 +X5501 g62_2 g1199_3 vdd gnd g1480_0 and2 +X5502 g7171_1 g7165_1 vdd gnd g7200_1 nand2 +X5503 g195_1 vdd gnd g614_5 not1 +X5504 g1723_3 vdd gnd g2662_2 not1 +X5505 g2362_2 vdd gnd g3089_1 not1 +X5506 g6765_0 g4323_0 vdd gnd g6884_0 and2 +X5507 g6340_0 g6056_1 g5280_1 g5253_0 vdd gnd g6513_0 and4 +X5508 g4784_1 g3004_0 vdd gnd g5462_0 and2 +X5509 x231_0 x232_0 vdd gnd g5388_0 and2 +X5510 g5743_1 vdd gnd g6054_1 not1 +X5511 g2276_2 vdd gnd g3438_2 not1 +X5512 g2859_4 g4474_4 g4463_5 vdd gnd g5320_1 and3 +X5513 g880_2 vdd gnd g1132_0 not1 +X5514 g1918_1 g1533_1 vdd gnd g2250_4 or2 +X5515 g6934_0 g6892_0 vdd gnd g7525_0 nand2 +X5516 g501_5 vdd gnd g828_1 not1 +X5517 g5170_0 vdd gnd g5780_1 not1 +X5518 g6712_0 vdd gnd g6825_1 not1 +X5519 g979_1 vdd gnd g1233_0 not1 +X5520 g1698_1 vdd gnd g2504_0 not1 +X5521 g5749_1 vdd gnd g6141_1 not1 +X5522 g1000_1 g1384_0 vdd gnd g1508_1 nand2 +X5523 g2821_1 g3499_0 vdd gnd g3768_9 nand2 +X5524 g2612_2 g2956_1 vdd gnd g3539_1 nand2 +X5525 g602_4 vdd gnd g958_1 not1 +X5526 g3803_6 g3784_12 vdd gnd g4428_1 and2 +X5527 g5326_0 g5327_1 vdd gnd x312_0 or2 +X5528 g1774_0 vdd gnd g2600_0 not1 +X5529 g6819_0 g6735_1 vdd gnd g6856_0 nand2 +X5530 g501_3 vdd gnd g842_4 not1 +X5531 g538_2 vdd gnd g910_1 not1 +X5532 g576_1 g2209_2 vdd gnd g2870_3 and2 +X5533 g6754_0 g5156_0 g6829_0 vdd gnd g6941_0 and3 +X5534 g3352_0 vdd gnd g4186_0 not1 +X5535 g2471_0 vdd gnd g2826_1 not1 +X5536 g5728_1 g7269_0 vdd gnd g7293_1 nand2 +X5537 g4242_1 g3985_1 vdd gnd g4660_1 nand2 +X5538 g3309_0 vdd gnd g4057_1 not1 +X5539 g457_6 g821_5 vdd gnd g1282_1 and2 +X5540 g7327_2 vdd gnd g7358_1 not1 +X5541 g2250_1 g652_0 vdd gnd g2969_2 and2 +X5542 g892_1 vdd gnd g1136_0 not1 +X5543 g4013_0 g4248_1 vdd gnd g4698_1 nand2 +X5544 g3189_0 g3978_1 vdd gnd g4236_1 nand2 +X5545 g6642_2 g6287_0 vdd gnd g6742_1 nand2 +X5546 g77_0 g740_4 vdd gnd g1123_1 and2 +X5547 g7324_1 g5279_0 vdd gnd g7349_1 nand2 +X5548 g4687_6 g2969_1 vdd gnd g5415_0 and2 +X5549 g2582_1 vdd gnd g2940_1 not1 +X5550 g4254_1 g4038_1 vdd gnd g4756_2 nand2 +X5551 g1066_2 vdd gnd g1390_1 not1 +X5552 g2582_2 g3976_1 vdd gnd g4235_0 nand2 +X5553 g5795_2 g6164_1 vdd gnd g6322_2 or2 +X5554 g4988_2 vdd gnd g5243_1 not1 +X5555 g6867_2 vdd gnd g6985_1 not1 +X5556 g1828_3 g1687_3 vdd gnd g2226_1 and2 +X5557 g2383_1 vdd gnd g2786_1 not1 +X5558 g1675_0 vdd gnd g2671_1 not1 +X5559 g5107_0 vdd gnd g5299_0 not1 +X5560 g1908_0 g1481_1 vdd gnd g2182_3 or2 +X5561 g2380_1 g1429_0 vdd gnd g2783_0 nand2 +X5562 g4498_8 vdd gnd g5572_1 not1 +X5563 g2447_2 vdd gnd g3102_0 not1 +X5564 g3746_7 g2045_3 vdd gnd g4410_1 and2 +X5565 g2438_2 vdd gnd g3099_1 not1 +X5566 g3810_1 vdd gnd g5098_0 not1 +X5567 g5945_1 vdd gnd g6298_0 not1 +X5568 g4456_2 vdd gnd g5613_1 not1 +X5569 g7134_1 g5592_1 vdd gnd g7176_1 nand2 +X5570 g3893_1 g4217_0 vdd gnd g4463_4 nand2 +X5571 g2334_1 vdd gnd g3380_1 not1 +X5572 g5125_1 vdd gnd g5704_1 not1 +X5573 g3195_2 vdd gnd g3981_1 not1 +X5574 g5156_3 vdd gnd g5770_3 not1 +X5575 g13_0 g785_0 vdd gnd g1220_0 and2 +X5576 g5236_1 g5237_0 vdd gnd g5761_1 nand2 +X5577 g937_1 vdd gnd g1173_0 not1 +X5578 g5881_0 vdd gnd g6250_1 not1 +X5579 g2656_2 g3347_0 vdd gnd g3568_1 nand2 +X5580 g3171_2 vdd gnd g4160_1 not1 +X5581 g666_0 vdd gnd g1036_0 not1 +X5582 g2081_2 g3828_1 g3817_2 vdd gnd g4439_1 and3 +X5583 g5388_1 g6657_1 vdd gnd g6699_1 nand2 +X5584 g2516_1 vdd gnd g2914_1 not1 +X5585 g2225_0 g4626_0 g4627_1 vdd gnd x171_0 or3 +X5586 g3520_1 g3521_1 vdd gnd g3956_4 nand2 +X5587 g6161_1 vdd gnd g6312_1 not1 +X5588 g976_2 vdd gnd g1232_1 not1 +X5589 g3768_5 g2055_0 g3754_8 vdd gnd g4415_0 and3 +X5590 g4669_2 vdd gnd g5688_0 not1 +X5591 g6590_4 g3675_4 g3654_5 g3665_8 vdd gnd g6683_1 and4 +X5592 g3004_1 g5465_0 g5466_0 g5467_0 vdd gnd g5933_1 or4 +X5593 g2489_0 vdd gnd g2834_1 not1 +X5594 g6266_2 vdd gnd g6469_1 not1 +X5595 g1369_2 vdd gnd g1429_1 not1 +X5596 g3371_1 g4095_1 vdd gnd g4278_1 nand2 +X5597 g183_0 vdd gnd g7460_1 not1 +X5598 g464_5 vdd gnd g892_2 not1 +X5599 g1848_0 g1628_0 vdd gnd g2221_0 and2 +X5600 g5330_0 g5989_0 vdd gnd x412_0 or2 +X5601 g6531_1 g6437_0 vdd gnd g6583_0 nand2 +X5602 g2573_1 vdd gnd g2933_1 not1 +X5603 g2783_1 g3474_0 vdd gnd g3654_0 nand2 +X5604 g3718_6 g2029_1 vdd gnd g4398_0 and2 +X5605 g5652_1 g7191_0 vdd gnd g7212_0 nand2 +X5606 g683_4 g428_5 vdd gnd g1060_4 and2 +X5607 g1719_1 vdd gnd g2704_1 not1 +X5608 g3349_1 g3051_0 vdd gnd g4083_0 nand2 +X5609 g925_0 g2830_1 vdd gnd g3503_1 nand2 +X5610 g7004_2 g7425_1 vdd gnd g7432_0 nand2 +X5611 g1330_6 vdd gnd g1559_5 not1 +X5612 g2133_0 g594_7 vdd gnd g2859_0 and2 +X5613 g2203_1 vdd gnd g3141_0 not1 +X5614 g5923_0 vdd gnd g6189_0 not1 +X5615 g842_3 vdd gnd g1344_2 not1 +X5616 g5493_1 g4880_3 g6063_0 vdd gnd g6203_1 and3 +X5617 g1652_3 vdd gnd g2453_1 not1 +X5618 g7012_1 g6984_1 vdd gnd g7065_2 nand2 +X5619 g4463_6 g2853_3 vdd gnd g5319_1 and2 +X5620 g3090_2 g1852_1 vdd gnd g4141_1 nand2 +X5621 g3414_2 g4129_1 vdd gnd g4293_1 nand2 +X5622 g479_5 g828_6 vdd gnd g1286_1 and2 +X5623 g3459_0 g4209_0 vdd gnd g4322_1 nand2 +X5624 g3490_0 g3491_0 vdd gnd g3709_0 nand2 +X5625 g6588_0 g6533_0 vdd gnd g6657_0 or2 +X5626 g6628_2 g5890_0 vdd gnd g6731_0 nand2 +X5627 g5780_2 g5275_1 vdd gnd g6158_2 and2 +X5628 g4210_2 vdd gnd g5142_0 not1 +X5629 g3988_3 g2231_0 vdd gnd g4665_1 and2 +X5630 g143_1 g1521_5 vdd gnd g1921_1 and2 +X5631 g7404_0 g7397_1 vdd gnd g7417_2 or2 +X5632 g5622_2 vdd gnd g5998_1 not1 +X5633 g5813_0 g6008_0 vdd gnd g6266_0 or2 +X5634 g4778_0 vdd gnd g5443_0 not1 +X5635 g6273_0 g6394_0 vdd gnd g6471_0 nand2 +X5636 g2677_1 vdd gnd g3055_1 not1 +X5637 g4113_0 vdd gnd g4940_0 not1 +X5638 g1774_2 g1600_0 vdd gnd g2232_0 and2 +X5639 g4635_2 g4630_3 g2938_1 vdd gnd g5386_0 and3 +X5640 g2662_0 vdd gnd g3049_0 not1 +X5641 g2716_2 g3079_1 vdd gnd g3555_0 nand2 +X5642 g1430_1 g1150_1 vdd gnd g1880_2 or2 +X5643 x301_0 x302_0 vdd gnd g5528_0 and2 +X5644 g6880_0 g6826_0 vdd gnd g7518_0 nand2 +X5645 g4869_4 g4850_9 vdd gnd g5492_0 and2 +X5646 g1372_2 g1259_1 vdd gnd g1510_0 nand2 +X5647 g5857_1 g5582_1 vdd gnd g6093_1 nand2 +X5648 g1766_2 vdd gnd g2618_1 not1 +X5649 g3231_2 vdd gnd g4020_1 not1 +X5650 g3462_2 vdd gnd g4209_1 not1 +X5651 g6499_0 g6381_0 vdd gnd g6612_0 nand2 +X5652 g1679_0 vdd gnd g2558_2 not1 +X5653 g1033_2 g4051_0 vdd gnd g4264_1 nand2 +X5654 g5101_2 g5789_1 vdd gnd g5982_0 nand2 +X5655 g4611_3 g4550_4 vdd gnd g5369_0 and2 +X5656 g683_3 vdd gnd g1076_2 not1 +X5657 g6634_0 g6262_0 vdd gnd g6735_0 nand2 +X5658 g6158_0 vdd gnd g6420_0 not1 +X5659 g6590_3 g3675_3 g3665_7 vdd gnd g6684_0 and3 +X5660 g4485_4 g6573_2 vdd gnd g6673_1 and2 +X5661 g2141_4 vdd gnd g3126_1 not1 +X5662 g5725_2 g7198_1 vdd gnd g7214_1 nand2 +X5663 g6502_2 vdd gnd g6613_1 not1 +X5664 g4953_0 vdd gnd g5543_0 not1 +X5665 g6511_0 g6310_1 vdd gnd x552_1 or2 +X5666 g6665_1 g6622_1 vdd gnd g6722_2 nand2 +X5667 g5734_2 vdd gnd g6137_1 not1 +X5668 g4960_3 vdd gnd g5535_2 not1 +X5669 g7315_2 g5251_0 vdd gnd g7343_0 nand2 +X5670 g151_1 g1468_0 vdd gnd g1906_0 and2 +X5671 g2406_1 g2751_0 vdd gnd g2800_0 nand2 +X5672 g507_2 vdd gnd g785_4 not1 +X5673 g5036_1 vdd gnd g5589_1 not1 +X5674 g1240_2 g1250_0 vdd gnd g1501_1 or2 +X5675 g7433_0 vdd gnd g7442_0 not1 +X5676 g2429_1 vdd gnd g2808_1 not1 +X5677 g6037_1 g6193_1 vdd gnd g6359_1 nand2 +X5678 g4732_4 g4721_4 g2989_4 g4711_3 vdd gnd g5427_0 and4 +X5679 g7214_0 g7199_1 vdd gnd g7245_2 nand2 +X5680 g5557_2 g7019_1 vdd gnd g7075_1 nand2 +X5681 g1811_0 vdd gnd g2653_0 not1 +X5682 g7242_1 g6052_0 vdd gnd g7268_1 nand2 +X5683 g880_0 g1131_0 vdd gnd g1379_0 nand2 +X5684 g6478_0 g6344_0 vdd gnd g6587_0 nand2 +X5685 g2748_1 g2792_1 vdd gnd g3478_0 nand2 +X5686 g3135_0 vdd gnd g3902_0 not1 +X5687 g6513_1 g6514_1 vdd gnd x562_1 or2 +X5688 g2350_0 g1127_1 vdd gnd g2769_1 nand2 +X5689 g19_0 g1337_3 vdd gnd g1579_1 and2 +X5690 g5691_2 g6189_1 vdd gnd g6357_1 nand2 +X5691 g3156_2 vdd gnd g3921_1 not1 +X5692 g2881_0 g5348_1 g5349_0 g5350_0 vdd gnd g5903_0 or4 +X5693 g3637_4 g2001_2 vdd gnd g4349_1 and2 +X5694 g6288_2 vdd gnd g6489_1 not1 +X5695 g457_0 g1731_2 vdd gnd g2371_1 nor2 +X5696 g131_1 g1206_1 vdd gnd g1492_1 and2 +X5697 g2008_2 g3654_8 vdd gnd g4356_1 and2 +X5698 g5136_0 g5684_0 vdd gnd g5916_1 nand2 +X5699 g3574_1 g3575_0 vdd gnd g4213_2 nand2 +X5700 g1199_6 vdd gnd g1468_5 not1 +X5701 g5593_0 vdd gnd g5973_1 not1 +X5702 g2656_0 vdd gnd g3348_0 not1 +X5703 g7096_0 vdd gnd g7139_1 not1 +X5704 g6328_0 g6170_1 vdd gnd g6403_1 nand2 +X5705 g672_5 g2270_4 vdd gnd g2958_1 and2 +X5706 g6796_2 vdd gnd g6889_1 not1 +X5707 g856_0 g1125_0 vdd gnd g1376_1 nand2 +X5708 g5691_0 vdd gnd g6035_1 not1 +X5709 g7076_1 g7022_1 vdd gnd g7542_1 nand2 +X5710 g6948_2 vdd gnd g7019_1 not1 +X5711 g3709_2 vdd gnd g4374_2 not1 +X5712 g7366_1 vdd gnd g7389_1 not1 +X5713 g196_1 vdd gnd g7473_1 not1 +X5714 g2409_1 vdd gnd g2801_0 not1 +X5715 g5855_0 g5552_0 vdd gnd g6084_1 nor2 +X5716 x381_0 x382_1 vdd gnd g5986_2 and2 +X5717 g3736_8 vdd gnd g5044_2 not1 +X5718 g4667_1 g4668_1 vdd gnd x182_1 or2 +X5719 g4943_2 g4940_2 g4970_2 vdd gnd g5553_1 and3 +X5720 g3466_0 g6878_0 vdd gnd g6930_1 and2 +X5721 g4732_0 g4711_0 vdd gnd x512_0 and2 +X5722 g6552_0 g6462_0 vdd gnd g6628_1 nand2 +X5723 g5560_2 vdd gnd g5960_1 not1 +X5724 g5167_2 vdd gnd g5875_1 not1 +X5725 g3534_0 g3535_1 vdd gnd g3999_0 nand2 +X5726 g4802_0 g3013_2 g4791_0 vdd gnd g5469_0 and3 +X5727 g2241_0 vdd gnd g3407_2 not1 +X5728 g6778_2 vdd gnd g7516_0 not1 +X5729 g2519_2 g2916_1 vdd gnd g3513_1 nand2 +X5730 g6748_2 vdd gnd g6872_0 not1 +X5731 g1054_0 vdd gnd g1314_1 not1 +X5732 g32_0 g1330_0 vdd gnd g1572_0 and2 +X5733 g470_0 vdd gnd g767_3 not1 +X5734 g922_2 vdd gnd g1168_0 not1 +X5735 g4183_0 vdd gnd g5135_1 not1 +X5736 g5030_1 g7091_1 vdd gnd g7123_0 nand2 +X5737 g5050_1 g7215_0 vdd gnd g7252_0 nand2 +X5738 g6423_6 g6403_1 vdd gnd g6559_0 and2 +X5739 g628_0 g2182_1 vdd gnd g3030_0 and2 +X5740 g177_1 vdd gnd g7484_0 not1 +X5741 g7401_1 g7390_0 vdd gnd g7409_0 nand2 +X5742 g127_0 g1440_1 vdd gnd g1892_1 and2 +X5743 g2504_2 g1176_0 vdd gnd g2843_1 nand2 +X5744 g646_4 vdd gnd g1018_2 not1 +X5745 g780_2 vdd gnd g1316_3 not1 +X5746 g5077_2 g7346_0 vdd gnd g7371_1 nand2 +X5747 g5912_2 vdd gnd g6277_1 not1 +X5748 g2418_2 g2803_1 vdd gnd g3487_1 nand2 +X5749 g1395_1 g699_2 vdd gnd g1596_1 and2 +X5750 g6346_3 g5370_8 vdd gnd g6534_1 and2 +X5751 g3252_2 vdd gnd g4041_1 not1 +X5752 g3817_1 vdd gnd g5104_1 not1 +X5753 g566_0 g1559_1 vdd gnd g1932_0 and2 +X5754 g2507_0 vdd gnd g2846_0 not1 +X5755 g2701_1 g4105_0 vdd gnd g4287_1 nand2 +X5756 g2194_3 vdd gnd g3255_0 not1 +X5757 g967_1 vdd gnd g1229_0 not1 +X5758 g4377_2 vdd gnd g5263_1 not1 +X5759 g4964_0 vdd gnd g5546_0 not1 +X5760 g3873_4 vdd gnd g4985_0 not1 +X5761 g4869_2 g4834_4 g4850_7 vdd gnd g5487_1 and3 +X5762 g5977_1 g5258_2 vdd gnd g6307_0 and2 +X5763 g1316_4 vdd gnd g1537_3 not1 +X5764 g2680_1 g3057_0 vdd gnd g3553_1 nand2 +X5765 g6447_1 g6388_0 vdd gnd g6543_2 nand2 +X5766 g488_4 vdd gnd g805_4 not1 +X5767 g2432_1 vdd gnd g2809_1 not1 +X5768 g500_0 vdd gnd g683_6 not1 +X5769 g2326_0 vdd gnd g3420_1 not1 +X5770 g3219_0 g1262_1 vdd gnd g4011_0 nand2 +X5771 g5637_2 vdd gnd g6009_1 not1 +X5772 g5737_1 vdd gnd g6138_1 not1 +X5773 g1108_0 g1123_0 vdd gnd g1410_0 or2 +X5774 g2426_0 g2808_1 vdd gnd g3491_1 nand2 +X5775 g3156_1 g1235_1 vdd gnd g3920_0 nand2 +X5776 g3398_1 vdd gnd g4107_0 not1 +X5777 g5197_1 vdd gnd g5870_1 not1 +X5778 g1664_4 g1411_8 vdd gnd g1986_3 and2 +X5779 g4157_2 vdd gnd g4618_1 not1 +X5780 g66_0 g1178_2 vdd gnd g1453_1 and2 +X5781 g5799_0 g5309_0 vdd gnd g6164_0 and2 +X5782 g4485_2 g4474_1 g4463_2 vdd gnd g5318_0 and3 +X5783 g1939_0 g1578_1 vdd gnd g2334_2 or2 +X5784 g3297_2 vdd gnd g4049_1 not1 +X5785 g2980_3 g5428_0 g5429_1 g6917_0 vdd gnd g6951_1 or4 +X5786 g5033_0 g7175_0 vdd gnd g7207_1 nand2 +X5787 g4141_0 g4302_0 vdd gnd g5006_1 nand2 +X5788 g6155_0 vdd gnd g6413_1 not1 +X5789 g6212_1 g6088_1 vdd gnd g6385_1 nor2 +X5790 g21_1 vdd gnd g387_1 not1 +X5791 g4199_2 vdd gnd g5119_1 not1 +X5792 g2477_2 g6243_0 vdd gnd g6391_0 nand2 +X5793 x111_0 x112_0 vdd gnd g4662_0 and2 +X5794 g1632_0 vdd gnd g2459_1 not1 +X5795 g5009_1 vdd gnd g5585_0 not1 +X5796 g5334_3 vdd gnd g6116_1 not1 +X5797 g428_6 vdd gnd g859_2 not1 +X5798 g2725_2 g3411_1 vdd gnd g3575_1 nand2 +X5799 g3368_1 g4096_1 vdd gnd g4279_1 nand2 +X5800 g4299_1 g4300_1 vdd gnd g4964_2 nand2 +X5801 g1506_1 g812_2 vdd gnd g1856_2 and2 +X5802 g6109_1 vdd gnd g6393_1 not1 +X5803 g52_1 g1178_1 vdd gnd g1456_0 and2 +X5804 g5309_2 vdd gnd g5985_0 not1 +X5805 g457_5 vdd gnd g895_1 not1 +X5806 g1664_3 g1411_2 vdd gnd g1994_0 and2 +X5807 g3478_1 g6905_2 vdd gnd g7000_1 and2 +X5808 g6551_0 g6460_1 vdd gnd g6625_2 nand2 +X5809 g6738_1 g6277_0 vdd gnd g6863_1 nand2 +X5810 g7077_0 g7024_0 vdd gnd g7543_0 nand2 +X5811 g1070_0 g1129_0 vdd gnd g1378_0 nand2 +X5812 g5700_1 vdd gnd g6040_1 not1 +X5813 g7237_1 vdd gnd g7279_0 not1 +X5814 g6864_2 g6130_1 vdd gnd g6984_0 nand2 +X5815 g75_1 g760_3 vdd gnd g1156_1 and2 +X5816 g2813_0 g3495_1 vdd gnd g3725_7 nand2 +X5817 g2704_1 vdd gnd g3067_0 not1 +X5818 g1400_0 g712_1 vdd gnd g1859_1 and2 +X5819 g582_2 g2215_1 vdd gnd g2897_1 and2 +X5820 g5861_1 vdd gnd g6229_0 not1 +X5821 g6856_2 vdd gnd g6976_1 not1 +X5822 g7254_1 g7241_0 vdd gnd g7281_2 nand2 +X5823 g4196_2 g5119_0 vdd gnd g5233_1 nand2 +X5824 g3907_5 g5992_1 vdd gnd g6223_2 or2 +X5825 g2963_4 g5417_1 vdd gnd g5926_2 nor2 +X5826 g1691_6 vdd gnd g2423_2 not1 +X5827 g5674_0 vdd gnd g6115_1 not1 +X5828 g2096_0 g3862_7 vdd gnd g4453_0 and2 +X5829 g2849_2 g5316_1 g5317_0 g5318_1 vdd gnd g5891_0 or4 +X5830 g1608_0 vdd gnd g2415_1 not1 +X5831 g6765_3 g6154_1 vdd gnd g6883_1 and2 +X5832 g4582_6 vdd gnd g5674_2 not1 +X5833 g4296_1 g4133_1 vdd gnd g4956_3 nand2 +X5834 g2147_5 vdd gnd g3150_2 not1 +X5835 g3358_1 vdd gnd g4188_1 not1 +X5836 g7065_0 g6131_0 vdd gnd g7113_0 nand2 +X5837 g666_2 vdd gnd g1009_2 not1 +X5838 x501_0 x502_1 vdd gnd g6802_0 or2 +X5839 g4991_1 g6894_0 vdd gnd g6935_1 nand2 +X5840 g6597_5 g3883_4 vdd gnd g6694_1 and2 +X5841 g5847_0 g5514_1 vdd gnd g6072_1 nor2 +X5842 g7396_1 g6687_3 vdd gnd g7404_1 and2 +X5843 g2603_2 g2951_1 vdd gnd g3534_1 nand2 +X5844 g946_2 vdd gnd g1176_1 not1 +X5845 g3630_6 g3601_9 g3617_12 vdd gnd g4341_1 and3 +X5846 g47_0 g1269_2 vdd gnd g1514_1 and2 +X5847 x481_1 x482_1 vdd gnd g6691_0 and2 +X5848 g3528_1 g3529_1 vdd gnd g3969_1 nand2 +X5849 g5848_2 g6209_0 vdd gnd g6377_1 or2 +X5850 g3255_2 vdd gnd g4042_1 not1 +X5851 g3601_15 vdd gnd g5018_2 not1 +X5852 g3315_0 vdd gnd g4061_1 not1 +X5853 g1507_0 g812_1 vdd gnd g1853_2 and2 +X5854 g3249_2 g4039_1 vdd gnd g4255_1 nand2 +X5855 g3899_0 g4220_0 vdd gnd g4491_0 nand2 +X5856 g400_0 vdd gnd g7488_0 not1 +X5857 g5897_0 g5995_0 vdd gnd g6170_0 nand2 +X5858 g3784_3 g3768_1 g2062_3 vdd gnd g4425_0 and3 +X5859 g3417_2 vdd gnd g4129_0 not1 +X5860 g4982_2 g6889_0 vdd gnd g6933_0 nand2 +X5861 g6090_1 vdd gnd g6316_1 not1 +X5862 g6517_1 g6573_4 vdd gnd g6670_1 and2 +X5863 g1397_0 g699_0 vdd gnd g1604_0 and2 +X5864 g3736_7 g2038_0 vdd gnd g4406_1 and2 +X5865 g3013_1 vdd gnd g4179_1 not1 +X5866 g705_2 vdd gnd g1086_4 not1 +X5867 g955_0 vdd gnd g1225_1 not1 +X5868 g149_0 g1468_1 vdd gnd g1909_0 and2 +X5869 g1942_1 g6663_0 vdd gnd g6675_0 nand2 +X5870 g1612_1 vdd gnd g2540_1 not1 +X5871 g4698_3 g7033_3 vdd gnd g7088_1 and2 +X5872 g2023_1 g6905_3 vdd gnd g6993_1 and2 +X5873 g4259_1 g4044_1 vdd gnd g4767_3 nand2 +X5874 g4711_9 vdd gnd g5560_2 not1 +X5875 g494_4 vdd gnd g705_6 not1 +X5876 g207_3 g174_2 vdd gnd g512_4 nand2 +X5877 g3024_5 g5488_1 g5489_1 vdd gnd g5945_2 nor3 +X5878 g785_3 vdd gnd g1206_0 not1 +X5879 g1584_1 g1359_1 vdd gnd g1824_2 or2 +X5880 g3037_2 g4820_2 vdd gnd x282_0 and2 +X5881 g6438_0 vdd gnd g6515_1 not1 +X5882 g439_2 vdd gnd g7497_0 not1 +X5883 g588_2 g1565_0 vdd gnd g1937_0 and2 +X5884 g2558_1 vdd gnd g2928_0 not1 +X5885 g4274_0 g4275_0 vdd gnd g4880_1 nand2 +X5886 g646_0 vdd gnd g1042_2 not1 +X5887 g772_1 vdd gnd g1199_2 not1 +X5888 g2398_1 vdd gnd g2797_1 not1 +X5889 g3383_1 vdd gnd g4100_0 not1 +X5890 g3746_5 vdd gnd g5089_1 not1 +X5891 g5220_1 g5294_1 vdd gnd g5786_1 nand2 +X5892 g1592_2 vdd gnd g2615_2 not1 +X5893 g5068_0 vdd gnd g5603_0 not1 +X5894 g138_0 g805_2 vdd gnd g1253_1 and2 +X5895 g4760_1 g4756_0 g5445_0 vdd gnd g6047_1 and3 +X5896 g2175_2 vdd gnd g3237_2 not1 +X5897 x151_1 x152_1 vdd gnd g5170_2 or2 +X5898 g5942_1 vdd gnd g6297_1 not1 +X5899 g576_0 vdd gnd g991_2 not1 +X5900 g6002_2 g206_13 vdd gnd g6334_1 nand2 +X5901 g2945_1 g4648_2 vdd gnd x242_0 and2 +X5902 g2296_2 vdd gnd g3204_2 not1 +X5903 g3768_15 g2055_6 g3754_13 vdd gnd g4419_1 and3 +X5904 g767_4 vdd gnd g1366_2 not1 +X5905 g3426_1 vdd gnd g4202_1 not1 +X5906 g1960_0 g4328_0 g4329_1 vdd gnd x131_1 or3 +X5907 g1924_0 g1551_0 vdd gnd g2280_1 or2 +X5908 g2567_2 g2932_0 vdd gnd g3529_0 nand2 +X5909 g6332_0 g6423_4 vdd gnd g6579_1 and2 +X5910 g3177_2 g2935_1 vdd gnd g3973_1 nand2 +X5911 g4550_7 vdd gnd g5643_1 not1 +X5912 g2480_0 g5879_0 vdd gnd g6101_1 nand2 +X5913 g2447_0 g3101_0 vdd gnd g3564_0 nand2 +X5914 g3713_0 vdd gnd g4389_0 not1 +X5915 g5802_2 g6180_1 vdd gnd g6340_1 or2 +X5916 g7291_1 g7266_1 vdd gnd g7306_2 nand2 +X5917 g5903_2 vdd gnd g6258_1 not1 +X5918 g780_3 vdd gnd g1330_5 not1 +X5919 g7109_0 g6119_0 vdd gnd g7157_1 nand2 +X5920 g2045_0 g4418_0 g4419_0 g4420_0 vdd gnd g5217_0 nor4 +X5921 g994_0 vdd gnd g1238_1 not1 +X5922 g3318_0 vdd gnd g4063_1 not1 +X5923 g3459_2 vdd gnd g4208_0 not1 +X5924 g1012_1 vdd gnd g1262_1 not1 +X5925 g4582_2 g2907_1 g4568_2 vdd gnd g5362_0 and3 +X5926 g7212_1 g7192_0 vdd gnd g7237_2 nand2 +X5927 g3746_1 vdd gnd g5071_2 not1 +X5928 g1770_3 g1596_3 vdd gnd g2233_1 and2 +X5929 g5217_2 g6730_1 vdd gnd g6817_0 nand2 +X5930 g2004_2 g4356_0 g4357_1 g6683_0 vdd gnd g6805_0 or4 +X5931 g1938_0 g1577_0 vdd gnd g2330_1 or2 +X5932 g3150_0 vdd gnd g3917_1 not1 +X5933 g5440_2 g5437_1 g5454_2 vdd gnd g6050_1 and3 +X5934 g5923_2 g6035_1 vdd gnd g6190_1 nand2 +X5935 g183_2 vdd gnd g553_5 not1 +X5936 g3429_0 g4202_0 vdd gnd g4315_0 nand2 +X5937 g1033_1 vdd gnd g1307_0 not1 +X5938 g7048_1 g5603_1 vdd gnd g7100_0 nand2 +X5939 g7384_0 vdd gnd g7396_0 not1 +X5940 g4287_1 g4106_1 vdd gnd g4931_2 nand2 +X5941 g5065_2 g6970_1 vdd gnd g7007_1 nand2 +X5942 g4034_2 vdd gnd g4781_2 not1 +X5943 g3204_1 g2946_0 vdd gnd g3985_0 nand2 +X5944 g4519_6 g4508_8 g3907_2 g4498_6 vdd gnd g5330_1 and4 +X5945 g1848_1 vdd gnd g2519_1 not1 +X5946 g6939_1 vdd gnd g7530_1 not1 +X5947 g7324_2 vdd gnd g7348_1 not1 +X5948 g1531_1 g1306_0 vdd gnd g1811_3 or2 +X5949 g6491_2 g6494_1 vdd gnd g6649_1 nand2 +X5950 g3938_4 g2222_1 vdd gnd g4622_1 and2 +X5951 g7010_0 g6977_0 vdd gnd g7057_1 nand2 +X5952 g6259_1 vdd gnd g6465_1 not1 +X5953 g1407_0 g734_0 vdd gnd g1638_1 and2 +X5954 g124_0 g1440_0 vdd gnd g1895_0 and2 +X5955 g2119_0 vdd gnd g3361_0 not1 +X5956 g6951_0 g5960_0 vdd gnd g7022_0 nand2 +X5957 g5622_0 g3913_0 vdd gnd g5997_0 nand2 +X5958 g862_1 g2768_1 vdd gnd g3467_1 nand2 +X5959 g3918_0 g4226_1 vdd gnd g4550_6 nand2 +X5960 g2540_0 g2921_1 vdd gnd g3518_1 nand2 +X5961 g828_4 vdd gnd g1275_4 not1 +X5962 g2984_3 g4721_6 vdd gnd g5428_1 and2 +X5963 g5194_2 vdd gnd g5865_1 not1 +X5964 g5080_2 vdd gnd g5279_1 not1 +X5965 g1836_2 vdd gnd g2728_2 not1 +X5966 g1073_2 g4138_1 vdd gnd g4301_1 nand2 +X5967 g428_9 g683_1 vdd gnd g1066_0 and2 +X5968 g191_0 vdd gnd g588_0 not1 +X5969 g805_1 vdd gnd g1240_0 not1 +X5970 g1786_0 vdd gnd g2516_1 not1 +X5971 g3423_1 vdd gnd g4131_0 not1 +X5972 g2465_2 vdd gnd g2822_0 not1 +X5973 g423_3 g1658_3 vdd gnd g2070_1 and2 +X5974 g7153_1 g6112_1 vdd gnd g7192_1 nand2 +X5975 g6198_0 g6050_1 vdd gnd g6363_0 nor2 +X5976 g1782_1 vdd gnd g2627_2 not1 +X5977 g113_0 g1289_1 vdd gnd g1531_0 and2 +X5978 g6543_1 g2759_0 vdd gnd g6652_0 nand2 +X5979 x431_0 x432_1 vdd gnd g6309_1 and2 +X5980 g4088_0 vdd gnd g4899_0 not1 +X5981 g50_2 g1192_6 vdd gnd g1477_1 and2 +X5982 g1628_2 vdd gnd g2692_2 not1 +X5983 g3237_2 g1268_1 vdd gnd g4023_1 nand2 +X5984 g4611_4 g4550_5 g4539_3 vdd gnd g5350_1 and3 +X5985 g488_2 vdd gnd g760_2 not1 +X5986 g1086_3 g1098_1 vdd gnd g1397_1 or2 +X5987 g1646_1 vdd gnd g2489_1 not1 +X5988 g553_2 g1646_3 vdd gnd g2075_1 and2 +X5989 g3129_2 vdd gnd g3898_1 not1 +X5990 g7424_0 g7432_1 vdd gnd g7437_1 nand2 +X5991 g6197_0 g6049_0 vdd gnd g6362_0 nor2 +X5992 g4908_0 g3059_0 vdd gnd g5519_0 and2 +X5993 g2019_0 vdd gnd g2789_1 not1 +X5994 g5809_1 vdd gnd g6176_2 not1 +X5995 g1092_1 g1101_1 vdd gnd g1400_1 or2 +X5996 g5572_1 vdd gnd g5964_1 not1 +X5997 x191_1 x192_1 vdd gnd g5191_0 or2 +X5998 g49_4 g6075_3 g6016_5 g5370_9 vdd gnd g6350_1 and4 +X5999 g559_1 g849_5 vdd gnd g1364_1 and2 +X6000 g7299_0 g7300_1 g7301_0 g7302_0 vdd gnd g7336_0 or4 +X6001 g4834_8 vdd gnd g5740_0 not1 +X6002 g3225_2 vdd gnd g4016_0 not1 +X6003 g7318_1 g5252_0 vdd gnd g7345_1 nand2 +X6004 g4021_1 g4252_1 vdd gnd g4732_5 nand2 +X6005 g6361_1 g6360_1 vdd gnd g6481_2 nand2 +X6006 g187_0 vdd gnd g7464_0 not1 +X6007 g5887_2 g6461_1 vdd gnd g6552_1 nand2 +X6008 g6931_0 g6886_1 vdd gnd g7522_1 nand2 +X6009 g6109_2 g7107_1 vdd gnd g7128_1 nand2 +X6010 g4365_0 g3698_0 g5265_0 vdd gnd g5776_0 and3 +X6011 g144_0 g1521_0 vdd gnd g1920_0 and2 +X6012 g5755_0 vdd gnd g6143_1 not1 +X6013 g1824_1 vdd gnd g2549_1 not1 +X6014 g6550_1 g6452_1 vdd gnd g6618_2 nand2 +X6015 g6300_2 vdd gnd g6498_1 not1 +X6016 g5200_1 g5201_1 vdd gnd g5593_2 nand2 +X6017 g5770_0 g6674_1 vdd gnd g6751_2 and2 +X6018 g2450_0 vdd gnd g2812_1 not1 +X6019 g2234_1 g3994_1 vdd gnd x122_1 and2 +X6020 g2731_1 g3413_0 vdd gnd g3577_1 nand2 +X6021 g1039_1 vdd gnd g1309_1 not1 +X6022 g634_3 g1537_1 vdd gnd g1925_0 and2 +X6023 g7371_0 g7347_1 vdd gnd g7383_1 nand2 +X6024 g7141_2 vdd gnd g7183_1 not1 +X6025 g5083_1 vdd gnd g5607_1 not1 +X6026 g660_0 g2258_2 vdd gnd g3008_0 and2 +X6027 g3578_0 g6823_0 vdd gnd g6874_1 and2 +X6028 g1240_1 g1253_0 vdd gnd g1504_0 or2 +X6029 g4056_0 g4267_1 vdd gnd g4812_2 nand2 +X6030 g6722_2 vdd gnd g6843_1 not1 +X6031 g4850_3 g4834_9 g3037_3 vdd gnd g5489_0 and3 +X6032 g7234_2 g6010_0 vdd gnd g7266_0 nand2 +X6033 g7126_1 g7104_1 vdd gnd g7147_2 nand2 +X6034 g5437_2 g4771_3 g6043_1 vdd gnd g6197_1 and3 +X6035 g3873_6 g3852_7 vdd gnd x482_0 and2 +X6036 g6453_2 g5874_0 vdd gnd g6622_0 nand2 +X6037 g5092_1 g7277_0 vdd gnd g7297_1 nand2 +X6038 g4550_9 g2890_4 g4539_9 vdd gnd g5352_1 and3 +X6039 g6818_0 g6733_1 vdd gnd g6853_2 nand2 +X6040 g1990_3 g5769_1 vdd gnd g5956_1 or2 +X6041 g1710_5 vdd gnd g2435_2 not1 +X6042 g180_2 vdd gnd g7457_1 not1 +X6043 g3450_2 vdd gnd g4137_1 not1 +X6044 g772_0 vdd gnd g1295_2 not1 +X6045 g3330_0 g6292_0 vdd gnd g6396_0 nand2 +X6046 g5178_2 g6695_1 vdd gnd g6765_4 or2 +X6047 g203_0 vdd gnd g7479_0 not1 +X6048 g5836_0 g5491_1 vdd gnd g6284_0 or2 +X6049 g1856_0 vdd gnd g2405_0 not1 +X6050 g29_0 g1344_0 vdd gnd g1582_0 and2 +X6051 g3342_2 vdd gnd g4073_1 not1 +X6052 g3956_2 g3950_4 g2227_1 vdd gnd g4627_1 and3 +X6053 g4368_0 g4365_1 g4386_0 vdd gnd g5272_0 and3 +X6054 g1778_0 vdd gnd g2594_1 not1 +X6055 g194_2 vdd gnd g608_2 not1 +X6056 g172_0 vdd gnd g479_2 not1 +X6057 g512_3 g428_4 vdd gnd g747_2 and2 +X6058 g4676_3 g2963_2 vdd gnd g5410_1 and2 +X6059 g2668_2 vdd gnd g3051_1 not1 +X6060 g904_0 g2816_0 vdd gnd g3496_1 nand2 +X6061 g871_1 g1377_0 vdd gnd g1422_1 nand2 +X6062 g1073_0 vdd gnd g1386_0 not1 +X6063 g439_2 vdd gnd g7494_0 not1 +X6064 g2377_0 vdd gnd g2782_1 not1 +X6065 g7443_0 vdd gnd g7551_0 not1 +X6066 g2692_2 g3367_0 vdd gnd g3573_1 nand2 +X6067 g4456_4 vdd gnd g5610_2 not1 +X6068 g1957_1 g2799_1 vdd gnd g3484_1 nand2 +X6069 g5080_0 g7348_0 vdd gnd g7372_0 nand2 +X6070 g2585_2 vdd gnd g2946_1 not1 +X6071 g464_3 g821_2 vdd gnd g1283_1 and2 +X6072 g2194_2 vdd gnd g3312_1 not1 +X6073 g2528_2 vdd gnd g2918_1 not1 +X6074 g5546_2 vdd gnd g6082_1 not1 +X6075 g7150_0 vdd gnd g7189_1 not1 +X6076 g1511_0 g1281_0 vdd gnd g1868_0 or2 +X6077 g6546_2 vdd gnd g6664_0 not1 +X6078 g5144_1 vdd gnd g5766_1 not1 +X6079 g760_4 vdd gnd g1144_4 not1 +X6080 g2573_2 g3970_1 vdd gnd g4232_1 nand2 +X6081 g488_3 vdd gnd g816_4 not1 +X6082 g2347_1 vdd gnd g2768_1 not1 +X6083 g6933_1 g6890_1 vdd gnd g7524_1 nand2 +X6084 g3258_0 vdd gnd g4170_1 not1 +X6085 g997_0 g3937_1 vdd gnd g4231_1 nand2 +X6086 g6677_2 vdd gnd g6829_2 not1 +X6087 g173_1 vdd gnd g485_1 not1 +X6088 g3514_1 g3515_1 vdd gnd g3943_3 nand2 +X6089 g7200_2 vdd gnd g7248_1 not1 +X6090 g6251_2 vdd gnd g6461_0 not1 +X6091 g12_1 vdd gnd g450_1 not1 +X6092 g868_0 g2774_0 vdd gnd g3470_1 nand2 +X6093 g5202_1 g6621_1 vdd gnd g6665_0 nand2 +X6094 g5722_1 vdd gnd g6134_1 not1 +X6095 g4474_2 g2859_3 g4463_3 vdd gnd g5317_1 and3 +X6096 g2353_2 g1421_0 vdd gnd g2771_0 nand2 +X6097 g2897_3 g5358_1 g5359_0 vdd gnd x421_1 or3 +X6098 g5480_1 g5481_0 vdd gnd x372_1 or2 +X6099 g2459_2 vdd gnd g2818_0 not1 +X6100 g988_2 g3923_1 vdd gnd g4228_1 nand2 +X6101 g4988_0 g6827_1 vdd gnd g6893_0 nand2 +X6102 g519_1 vdd gnd g922_0 not1 +X6103 g862_0 vdd gnd g1126_1 not1 +X6104 g1102_0 g1116_0 vdd gnd g1403_0 or2 +X6105 g72_1 g1138_2 vdd gnd g1433_1 and2 +X6106 g1738_2 vdd gnd g2395_2 not1 +X6107 g7000_0 g6909_1 vdd gnd g7027_2 or2 +X6108 g2866_0 g5324_0 g5325_1 vdd gnd x311_0 or3 +X6109 g4303_1 g4304_1 vdd gnd g5125_2 nand2 +X6110 g1824_3 vdd gnd g2713_2 not1 +X6111 g5957_1 g6911_0 vdd gnd g6996_1 and2 +X6112 g4463_1 vdd gnd g5616_0 not1 +X6113 g3480_0 g3481_0 vdd gnd g3687_1 nand2 +X6114 g561_2 g7420_1 vdd gnd g7427_0 and2 +X6115 g2412_1 vdd gnd g2802_1 not1 +X6116 x341_1 x342_1 vdd gnd g5830_1 or2 +X6117 g1664_5 vdd gnd g2362_2 not1 +X6118 g3852_5 g3845_6 g2092_3 vdd gnd g4447_1 and3 +X6119 g1612_2 vdd gnd g2680_2 not1 +X6120 g526_0 vdd gnd g946_2 not1 +X6121 g6654_0 g6582_0 vdd gnd g6705_1 or2 +X6122 g161_0 g1484_5 vdd gnd g1914_0 and2 +X6123 g2308_0 vdd gnd g3459_2 not1 +X6124 g3368_0 vdd gnd g4095_0 not1 +X6125 g5619_1 g6171_0 vdd gnd g6329_0 nand2 +X6126 g6520_0 g6408_0 vdd gnd g7507_1 nand2 +X6127 g55_0 g1350_3 vdd gnd g1589_1 and2 +X6128 g3264_2 vdd gnd g4172_1 not1 +X6129 g5188_1 g3095_0 vdd gnd g5860_1 nand2 +X6130 g6808_2 vdd gnd g6898_1 not1 +X6131 g2761_0 g2762_1 vdd gnd g3103_2 nand2 +X6132 g2318_3 vdd gnd g3395_2 not1 +X6133 g2510_0 g5299_1 vdd gnd g5793_1 nand2 +X6134 g3687_0 vdd gnd g4362_2 not1 +X6135 g1664_1 vdd gnd g2368_0 not1 +X6136 g5980_1 g5786_0 vdd gnd g6152_1 nand2 +X6137 g2147_3 vdd gnd g3294_0 not1 +X6138 g2707_2 vdd gnd g3070_1 not1 +X6139 g582_4 vdd gnd g988_1 not1 +X6140 g2710_2 g2346_1 vdd gnd g3078_1 nand2 +X6141 g2737_2 vdd gnd g3083_1 not1 +X6142 g6637_2 vdd gnd g6736_0 not1 +X6143 g2038_3 vdd gnd g3110_0 not1 +X6144 g5532_0 g4960_1 g6082_0 vdd gnd g6212_0 and3 +X6145 g3120_1 g1224_1 vdd gnd g3891_1 nand2 +X6146 g6757_1 g5770_1 g6829_3 vdd gnd g6940_1 and3 +X6147 g1914_1 g1498_1 vdd gnd g2209_5 or2 +X6148 g7303_2 g6581_1 g561_4 vdd gnd g7353_1 and3 +X6149 g1492_0 g1221_0 vdd gnd g1719_2 or2 +X6150 g2270_2 vdd gnd g3264_0 not1 +X6151 g1024_0 g4020_1 vdd gnd g4251_1 nand2 +X6152 g5174_1 g4428_0 vdd gnd g5881_1 or2 +X6153 g4704_6 g4732_9 vdd gnd x252_1 and2 +X6154 g6987_1 vdd gnd g7071_1 not1 +X6155 g3797_2 vdd gnd g5041_0 not1 +X6156 g6340_2 g6056_4 vdd gnd g6529_1 and2 +X6157 g5356_0 g5357_0 vdd gnd x322_1 or2 +X6158 g1369_2 g2784_0 vdd gnd g3474_1 nand2 +X6159 g5166_0 g5783_0 vdd gnd g5974_1 or2 +X6160 g4791_1 g3008_3 vdd gnd g5465_1 and2 +X6161 g5891_1 g5993_0 vdd gnd g6166_1 nand2 +X6162 g5041_2 vdd gnd g5596_1 not1 +X6163 g3768_4 g3746_2 g2055_5 g3754_7 vdd gnd g4412_1 and4 +X6164 g3429_2 vdd gnd g4203_0 not1 +X6165 g6281_0 g4049_0 vdd gnd g6441_1 nand2 +X6166 g1786_1 g3071_0 vdd gnd g3907_3 and2 +X6167 g3709_3 g3705_2 g4389_2 vdd gnd g5273_1 and3 +X6168 g5628_2 vdd gnd g6103_1 not1 +X6169 g4452_1 g6691_1 vdd gnd x492_1 or2 +X6170 g6541_1 g6441_1 vdd gnd g6604_1 nand2 +X6171 g7391_2 g6011_0 vdd gnd g7406_0 nand2 +X6172 g5722_0 g7114_1 vdd gnd g7130_1 nand2 +X6173 x101_0 x102_1 vdd gnd g4629_0 and2 +X6174 g3873_1 g3862_4 g3845_0 vdd gnd x81_0 and3 +X6175 g2513_0 g4530_1 vdd gnd g5181_1 nand2 +X6176 g5003_2 vdd gnd g5581_1 not1 +X6177 g3398_2 g3067_1 vdd gnd g4108_1 nand2 +X6178 g6942_4 g6398_1 vdd gnd g7015_1 and2 +X6179 g4775_2 vdd gnd g5451_2 not1 +X6180 x21_0 x22_0 vdd gnd g4331_0 and2 +X6181 g7086_0 g7016_0 vdd gnd g7546_0 or2 +X6182 g206_10 g5302_4 g4508_9 g4519_8 vdd gnd g5990_1 and4 +X6183 g652_6 g1543_2 vdd gnd g1928_1 and2 +X6184 g1240_5 g805_5 vdd gnd g1500_1 or2 +X6185 g157_1 g1446_2 vdd gnd g1898_1 and2 +X6186 g1883_1 vdd gnd g2346_0 not1 +X6187 g5136_1 vdd gnd g5683_1 not1 +X6188 g2107_2 vdd gnd g3349_2 not1 +X6189 g1738_5 vdd gnd g2383_2 not1 +X6190 x211_0 x212_1 vdd gnd g5327_1 and2 +X6191 g1433_0 g1153_0 vdd gnd g1683_1 or2 +X6192 g2153_0 vdd gnd g3120_0 not1 +X6193 g2767_0 g3467_1 vdd gnd g3579_4 nand2 +X6194 g5071_0 g7183_0 vdd gnd g7208_0 nand2 +X6195 g4619_2 g5184_0 vdd gnd g5380_0 and2 +X6196 g1_1 vdd gnd g7446_0 not1 +X6197 g5613_2 vdd gnd g5994_1 not1 +X6198 g1438_1 g1158_1 vdd gnd g1704_5 or2 +X6199 g1786_2 g3071_2 vdd gnd g3928_6 and2 +X6200 g2308_1 vdd gnd g3174_2 not1 +X6201 g6671_1 g6559_1 vdd gnd g7511_1 or2 +X6202 g5059_2 g7139_1 vdd gnd g7169_1 nand2 +X6203 g192_0 vdd gnd g7469_0 not1 +X6204 g6386_0 g6385_0 vdd gnd g6499_2 nand2 +X6205 g6230_0 g6233_1 vdd gnd g6452_0 nand2 +X6206 g5027_1 g6962_1 vdd gnd g7003_0 nand2 +X6207 g1899_1 g1460_1 vdd gnd g2147_1 or2 +X6208 g2171_3 vdd gnd g3342_1 not1 +X6209 g5122_1 g5704_1 vdd gnd g5930_1 nand2 +X6210 g2133_4 vdd gnd g3168_0 not1 +X6211 g2537_1 vdd gnd g2921_0 not1 +X6212 g3542_0 g3543_0 vdd gnd g4030_2 nand2 +X6213 g4026_2 g4753_1 g5444_0 vdd gnd g5834_1 and3 +X6214 g1411_7 g1060_3 vdd gnd g1888_0 and2 +X6215 g3132_0 vdd gnd g3900_0 not1 +X6216 g7144_0 vdd gnd g7185_0 not1 +X6217 g7068_0 vdd gnd g7114_1 not1 +X6218 g2989_3 g4711_1 vdd gnd x262_1 and2 +X6219 g507_1 vdd gnd g835_1 not1 +X6220 g3852_3 vdd gnd g4979_2 not1 +X6221 g3447_1 vdd gnd g4136_1 not1 +X6222 g5000_0 g6900_1 vdd gnd g6938_1 nand2 +X6223 g2501_0 vdd gnd g2842_1 not1 +X6224 g3246_1 vdd gnd g4039_1 not1 +X6225 g7422_0 g7413_0 vdd gnd g7428_1 or2 +X6226 g6745_2 vdd gnd g6870_1 not1 +X6227 g2483_2 g1169_0 vdd gnd g2829_1 nand2 +X6228 g3327_2 g6487_1 vdd gnd g6556_1 nand2 +X6229 g1600_2 vdd gnd g2603_1 not1 +X6230 g5381_3 vdd gnd g6015_1 not1 +X6231 g1844_3 vdd gnd g2525_1 not1 +X6232 g3691_2 vdd gnd g4380_2 not1 +X6233 g6217_1 vdd gnd g6407_0 not1 +X6234 g6374_1 g5848_1 vdd gnd g6533_1 and2 +X6235 g2837_1 g3507_0 vdd gnd g3845_4 nand2 +X6236 g1009_1 vdd gnd g1261_1 not1 +X6237 g5563_1 g7023_1 vdd gnd g7077_1 nand2 +X6238 g1836_3 vdd gnd g2561_2 not1 +X6239 g7030_1 vdd gnd g7539_0 not1 +X6240 g7161_1 g6135_1 vdd gnd g7199_0 nand2 +X6241 g3532_0 g3533_0 vdd gnd g3994_2 nand2 +X6242 g6990_1 g6141_0 vdd gnd g7074_1 nand2 +X6243 g2686_0 g3365_0 vdd gnd g3571_0 nand2 +X6244 g3273_1 g4046_0 vdd gnd g4261_1 nand2 +X6245 g6423_5 vdd gnd g6573_5 not1 +X6246 g7340_0 g7333_1 vdd gnd g7363_0 nand2 +X6247 g7318_1 vdd gnd g7344_0 not1 +X6248 g5451_0 vdd gnd g6043_0 not1 +X6249 g4931_1 g4920_3 g3068_0 g4926_0 vdd gnd g5527_1 and4 +X6250 g5041_1 g6843_1 vdd gnd g6924_0 nand2 +X6251 g3210_2 g3986_1 vdd gnd g4243_1 nand2 +X6252 g532_1 g842_0 vdd gnd g1359_0 and2 +X6253 g5232_0 g5233_0 vdd gnd g5677_1 nand2 +X6254 g3071_1 vdd gnd g4157_2 not1 +X6255 g200_1 vdd gnd g640_4 not1 +X6256 g4532_6 vdd gnd g5634_2 not1 +X6257 g175_0 g1275_0 vdd gnd g1518_0 and2 +X6258 g3784_9 g3768_8 g2062_7 vdd gnd g4422_0 and3 +X6259 g2534_2 g2919_0 vdd gnd g3516_1 nand2 +X6260 g7295_1 g7274_0 vdd gnd g7318_2 nand2 +X6261 x181_1 x182_0 vdd gnd g5185_2 or2 +X6262 g488_5 vdd gnd g772_4 not1 +X6263 g6997_1 g6884_1 vdd gnd g7535_0 or2 +X6264 g201_1 vdd gnd g7477_0 not1 +X6265 g3037_4 vdd gnd g4183_1 not1 +X6266 g87_1 g696_1 vdd gnd g7500_1 and2 +X6267 g4820_6 vdd gnd g5746_2 not1 +X6268 g2365_1 g5583_1 vdd gnd g5858_0 nand2 +X6269 g7284_1 g6139_1 vdd gnd g7333_1 nand2 +X6270 g1581_0 g1356_1 vdd gnd g1883_2 or2 +X6271 g5728_2 vdd gnd g6053_1 not1 +X6272 g3522_1 g3523_1 vdd gnd g3961_3 nand2 +X6273 g901_1 vdd gnd g1161_0 not1 +X6274 g5418_0 g6771_4 vdd gnd g6920_0 and2 +X6275 g2597_0 g2949_0 vdd gnd g3532_1 nand2 +X6276 g428_8 vdd gnd g883_2 not1 +X6277 g2734_2 g3412_1 vdd gnd g3576_1 nand2 +X6278 g3559_0 g3560_0 vdd gnd g4124_0 nand2 +X6279 g64_0 g1185_4 vdd gnd g1460_1 and2 +X6280 g16_2 g835_2 vdd gnd g1305_1 and2 +X6281 g7158_1 g6132_1 vdd gnd g7197_1 nand2 +X6282 g180_1 vdd gnd g538_5 not1 +X6283 g7048_2 vdd gnd g7099_1 not1 +X6284 g2088_1 g4446_1 g4447_0 vdd gnd x161_1 or3 +X6285 g3817_10 g2075_5 vdd gnd g4438_1 and2 +X6286 g6351_2 g5287_2 g5258_1 vdd gnd g6505_0 and3 +X6287 g6712_2 g5238_1 vdd gnd g6826_1 nand2 +X6288 g3315_2 g1312_1 vdd gnd g4060_1 nand2 +X6289 g6471_2 vdd gnd g6640_1 not1 +X6290 g895_2 vdd gnd g1137_1 not1 +X6291 g4374_0 g4371_0 g4392_0 vdd gnd g5274_1 and3 +X6292 g4970_1 vdd gnd g5539_0 not1 +X6293 g6546_2 g2760_1 vdd gnd g6653_1 nand2 +X6294 g206_4 g6336_3 g6056_3 vdd gnd x461_1 and3 +X6295 g5018_1 g7271_1 vdd gnd g7294_1 nand2 +X6296 g5830_2 g6920_1 vdd gnd g6942_5 or2 +X6297 g1891_1 g1452_0 vdd gnd g2107_3 or2 +X6298 g7208_1 g7184_1 vdd gnd g7225_0 nand2 +X6299 g3725_8 g2033_3 vdd gnd g4404_1 and2 +X6300 g5951_1 g5952_1 vdd gnd g6144_2 nand2 +X6301 g128_0 g1440_5 vdd gnd g1891_0 and2 +X6302 g1951_2 g1674_1 vdd gnd g2748_1 nand2 +X6303 g1003_2 vdd gnd g1259_0 not1 +X6304 g2389_0 g2750_1 vdd gnd g2794_0 nand2 +X6305 g2044_0 g4410_1 g4411_1 vdd gnd x151_0 or3 +X6306 g1933_0 g1572_1 vdd gnd g2737_0 or2 +X6307 g988_2 vdd gnd g1236_1 not1 +X6308 g2662_1 g3050_1 vdd gnd g3548_1 nand2 +X6309 g2270_5 vdd gnd g3300_1 not1 +X6310 g3922_1 g4228_0 vdd gnd g4568_9 nand2 +X6311 g3817_5 g3839_0 g3828_4 g3810_0 vdd gnd g4429_0 and4 +X6312 g1399_0 g712_2 vdd gnd g1862_0 and2 +X6313 g2635_0 vdd gnd g3001_1 not1 +X6314 g4280_1 g4281_1 vdd gnd g4913_1 nand2 +X6315 g5515_2 g5852_2 vdd gnd g6209_1 and2 +X6316 g184_0 vdd gnd g559_0 not1 +X6317 g3389_0 g4101_0 vdd gnd g4284_1 nand2 +X6318 g4669_1 vdd gnd g5685_1 not1 +X6319 g4820_1 g4812_2 g3024_3 vdd gnd g5475_1 and3 +X6320 g12_0 vdd gnd g428_3 not1 +X6321 g5719_2 g6985_1 vdd gnd g7013_1 nand2 +X6322 g4869_6 g4834_10 g4820_4 g4850_4 vdd gnd g5481_1 and4 +X6323 g5652_2 vdd gnd g6112_1 not1 +X6324 g2280_3 g2163_3 vdd gnd g2944_1 and2 +X6325 g5208_0 vdd gnd g5879_1 not1 +X6326 g2203_3 vdd gnd g3276_0 not1 +X6327 g13_1 g1212_5 vdd gnd g1496_1 and2 +X6328 g2835_0 g3506_1 vdd gnd g3839_3 nand2 +X6329 g4938_0 g4917_1 g4913_2 g4908_3 vdd gnd g5515_1 and4 +X6330 g4167_2 vdd gnd g4749_1 not1 +X6331 g3225_2 g1264_1 vdd gnd g4015_1 nand2 +X6332 g1731_0 vdd gnd g2386_1 not1 +X6333 g7412_0 g6833_0 vdd gnd g7422_1 and2 +X6334 g2728_1 vdd gnd g3411_0 not1 +X6335 g614_2 vdd gnd g952_2 not1 +X6336 g205_2 vdd gnd g672_4 not1 +X6337 g5098_2 vdd gnd g5295_1 not1 +X6338 g3536_1 g3537_0 vdd gnd g4003_2 nand2 +X6339 g6204_0 g6068_1 vdd gnd g6371_1 nor2 +X6340 g6996_0 g6883_0 vdd gnd g7534_0 or2 +X6341 g5575_2 vdd gnd g5965_0 not1 +X6342 g2264_0 vdd gnd g3303_2 not1 +X6343 g3258_2 g4171_1 vdd gnd g4304_0 nand2 +X6344 g479_3 g1756_1 vdd gnd g2000_1 and2 +X6345 g7116_2 vdd gnd g7164_1 not1 +X6346 g1108_4 g1122_1 vdd gnd g1409_1 or2 +X6347 g3252_1 g4042_0 vdd gnd g4258_1 nand2 +X6348 g4539_0 vdd gnd g5649_0 not1 +X6349 g4529_0 g5181_0 vdd gnd g5302_1 nand2 +X6350 g916_2 vdd gnd g1166_0 not1 +X6351 g5610_0 g6165_0 vdd gnd g6326_1 nand2 +X6352 g634_2 g2188_3 vdd gnd g3024_4 and2 +X6353 g1512_1 g1282_0 vdd gnd g1766_1 or2 +X6354 g6811_1 vdd gnd g6900_1 not1 +X6355 g6484_2 vdd gnd g6607_1 not1 +X6356 g6656_1 g6587_1 vdd gnd g6698_1 nand2 +X6357 g5104_0 g5791_1 vdd gnd g5983_0 nand2 +X6358 g6453_0 vdd gnd g6621_0 not1 +X6359 g446_1 vdd gnd g799_2 not1 +X6360 g1422_0 g1378_1 vdd gnd g1664_2 nand2 +X6361 g2492_1 g1172_1 vdd gnd g2835_1 nand2 +X6362 g186_1 vdd gnd g566_1 not1 +X6363 x411_0 x412_1 vdd gnd g6214_2 or2 +X6364 g949_1 g2846_1 vdd gnd g3511_1 nand2 +X6365 g6237_0 vdd gnd g6416_1 not1 +X6366 g3383_0 g4099_0 vdd gnd g4282_0 nand2 +X6367 g139_0 g805_3 vdd gnd g1252_0 and2 +X6368 g1986_2 vdd gnd g2777_1 not1 +X6369 g3141_1 g1231_0 vdd gnd g3905_1 nand2 +X6370 g80_0 g740_5 vdd gnd g1120_1 and2 +X6371 g2737_1 g3084_1 vdd gnd g3560_1 nand2 +X6372 g5749_2 g7073_1 vdd gnd g7084_1 nand2 +X6373 g2624_1 g2997_0 vdd gnd g3542_1 nand2 +X6374 g5163_0 g6686_1 vdd gnd g6760_1 or2 +X6375 g4791_7 vdd gnd g5716_2 not1 +X6376 g1940_0 g1579_0 vdd gnd g2338_2 or2 +X6377 g4317_1 g4318_0 vdd gnd g5144_2 nand2 +X6378 g6850_0 vdd gnd g6972_0 not1 +X6379 g3665_0 vdd gnd g5000_2 not1 +X6380 g1516_0 g1286_0 vdd gnd g1782_0 or2 +X6381 g2627_0 vdd gnd g2999_0 not1 +X6382 g7410_0 g7406_1 vdd gnd g7420_0 nand2 +X6383 g6771_3 g4742_3 g4721_1 vdd gnd x511_0 and3 +X6384 g570_2 vdd gnd g973_0 not1 +X6385 g6802_2 vdd gnd g6894_1 not1 +X6386 g6093_2 g3089_0 vdd gnd g6388_1 nand2 +X6387 g3587_9 g3579_1 g1965_0 vdd gnd g4329_0 and3 +X6388 g7057_2 vdd gnd g7105_0 not1 +X6389 g6980_0 g6395_0 vdd gnd g7064_0 nand2 +X6390 g6967_1 g5600_1 vdd gnd g7047_1 nand2 +X6391 g7060_0 vdd gnd g7107_0 not1 +X6392 g2209_1 vdd gnd g3162_1 not1 +X6393 g3270_1 vdd gnd g4043_1 not1 +X6394 g1756_3 vdd gnd g2374_1 not1 +X6395 g3492_1 g3493_1 vdd gnd g3713_2 nand2 +X6396 g2250_7 vdd gnd g3261_2 not1 +X6397 g72_0 g1144_2 vdd gnd g1438_0 and2 +X6398 g5875_2 vdd gnd g6245_0 not1 +X6399 g2075_0 g4442_0 vdd gnd g5229_0 nor2 +X6400 g3324_1 g1315_0 vdd gnd g4066_0 nand2 +X6401 g7407_1 vdd gnd g7411_0 not1 +X6402 g6661_1 g6612_1 vdd gnd g6710_0 nand2 +X6403 x471_1 x472_1 vdd gnd g6682_1 and2 +X6404 g1919_0 g1534_1 vdd gnd g2258_4 or2 +X6405 g2901_4 g5366_1 g5367_1 vdd gnd g5909_2 nor3 +X6406 g1240_4 g1251_1 vdd gnd g1502_1 or2 +X6407 g2423_1 g2027_1 vdd gnd g2806_1 nand2 +X6408 g1436_0 g1156_1 vdd gnd g1691_1 or2 +X6409 g856_1 vdd gnd g1124_1 not1 +X6410 g1608_1 vdd gnd g2591_0 not1 +X6411 g6642_2 vdd gnd g6741_1 not1 +X6412 g4146_1 g5039_1 vdd gnd g5200_0 nand2 +X6413 g3654_6 vdd gnd g4997_1 not1 +X6414 g777_0 vdd gnd g1178_4 not1 +X6415 g5569_0 g6405_0 vdd gnd g6519_1 nand2 +X6416 g4648_4 g4642_4 g2943_1 vdd gnd g5392_0 and3 +X6417 g1494_1 g1223_0 vdd gnd g1727_3 or2 +X6418 g4611_2 g4550_3 g4539_2 g4532_4 vdd gnd g5341_2 and4 +X6419 g3784_4 g3768_2 g2062_4 g3754_4 vdd gnd g4420_1 and4 +X6420 g1762_2 g1258_0 vdd gnd g2239_0 and2 +X6421 g2543_0 vdd gnd g2923_1 not1 +X6422 g1402_1 g721_2 vdd gnd g1616_2 and2 +X6423 g2123_2 vdd gnd g3371_2 not1 +X6424 g5211_2 vdd gnd g5884_1 not1 +X6425 g74_0 g108_0 g152_0 g164_0 vdd gnd g394_0 and4 +X6426 g5360_0 g6006_0 vdd gnd x422_1 or2 +X6427 g5917_2 vdd gnd g6185_1 not1 +X6428 g4582_15 g2907_4 g4568_12 vdd gnd g5359_1 and3 +X6429 g2401_1 vdd gnd g2798_1 not1 +X6430 g2609_1 g2953_1 vdd gnd g3536_0 nand2 +X6431 g4582_1 vdd gnd g5658_1 not1 +X6432 g2133_2 vdd gnd g3129_2 not1 +X6433 g6304_1 vdd gnd g6445_0 not1 +X6434 g5018_2 vdd gnd g5588_1 not1 +X6435 g464_4 vdd gnd g868_2 not1 +X6436 g2101_2 g6694_0 vdd gnd g6799_1 or2 +X6437 g1505_1 g812_3 vdd gnd g1756_5 and2 +X6438 g931_0 g2834_1 vdd gnd g3505_0 nand2 +X6439 g4676_7 g4698_2 g4687_9 g4669_4 vdd gnd g5404_2 and4 +X6440 g2621_2 vdd gnd g2997_1 not1 +X6441 g122_1 g1206_4 vdd gnd g1491_0 and2 +X6442 g4582_11 g4560_7 g2907_6 g4568_13 vdd gnd g5356_1 and4 +X6443 g3994_4 g3988_4 g2232_1 vdd gnd g4666_1 and3 +X6444 g1051_0 g4063_1 vdd gnd g4270_0 nand2 +X6445 g3162_0 g1237_0 vdd gnd g3924_1 nand2 +X6446 g4066_1 g4272_1 vdd gnd g4869_5 nand2 +X6447 g6562_1 g6564_1 g6703_1 g6704_1 vdd gnd g6784_2 and4 +X6448 g2647_2 vdd gnd g3345_1 not1 +X6449 g6346_0 g5370_3 g5395_4 vdd gnd g6510_1 and3 +X6450 g3644_4 g3637_1 g2004_1 vdd gnd g4350_1 and3 +X6451 g5671_2 vdd gnd g6120_1 not1 +X6452 x61_0 x62_1 vdd gnd g4413_1 and2 +X6453 g2392_1 g2796_1 vdd gnd g3481_1 nand2 +X6454 g7038_0 g5586_1 vdd gnd g7090_1 nand2 +X6455 g5977_0 g6536_0 g6537_0 g6538_0 vdd gnd g6590_2 or4 +X6456 g1903_1 g1476_1 vdd gnd g2163_1 or2 +X6457 g7245_1 vdd gnd g7269_1 not1 +X6458 g6288_1 g5134_1 vdd gnd g6490_1 nand2 +X6459 g4721_5 g4704_3 g2984_2 g4711_4 vdd gnd g5423_1 and4 +X6460 g2314_1 g1719_3 vdd gnd g3068_1 and2 +X6461 g5059_1 vdd gnd g5601_1 not1 +X6462 g2292_3 vdd gnd g3447_2 not1 +X6463 g6330_0 vdd gnd g6404_0 not1 +X6464 g1588_0 g1363_0 vdd gnd g1840_1 or2 +X6465 g2823_0 g3500_0 vdd gnd g3784_0 nand2 +X6466 x551_0 x552_0 vdd gnd g7504_0 or2 +X6467 g5725_0 vdd gnd g6135_0 not1 +X6468 g2713_0 vdd gnd g3079_1 not1 +X6469 g952_0 g3892_0 vdd gnd g4216_1 nand2 +X6470 g5861_2 g6449_1 vdd gnd g6549_1 nand2 +X6471 g34_1 g1330_3 vdd gnd g1573_0 and2 +X6472 g413_3 g1632_5 vdd gnd g2044_1 and2 +X6473 g117_0 g1289_2 vdd gnd g1527_1 and2 +X6474 g6278_2 vdd gnd g6436_1 not1 +X6475 g7093_2 g5598_0 vdd gnd g7138_0 nand2 +X6476 g136_1 g816_3 vdd gnd g1255_0 and2 +X6477 g7433_1 g7399_0 vdd gnd g7441_1 nand2 +X6478 g4193_2 g5120_1 vdd gnd g5234_0 nand2 +X6479 g6796_0 g5241_1 vdd gnd g6890_0 nand2 +X6480 g206_5 g6318_0 g6026_1 vdd gnd g6540_1 and3 +X6481 g4834_3 g3030_6 vdd gnd g5488_0 and2 +X6482 g1246_0 g1254_0 vdd gnd g1505_0 or2 +X6483 g2111_0 vdd gnd g3404_0 not1 +X6484 g5202_2 vdd gnd g5874_1 not1 +X6485 g4985_2 vdd gnd g5242_1 not1 +X6486 g2618_2 g2240_1 vdd gnd g2996_1 nand2 +X6487 g2123_3 vdd gnd g3358_2 not1 +X6488 g6_0 vdd gnd g488_0 not1 +X6489 g198_0 vdd gnd g7474_1 not1 +X6490 g5806_0 vdd gnd g6259_2 not1 +X6491 g652_2 vdd gnd g1015_1 not1 +X6492 g4880_2 g4876_1 g5499_0 vdd gnd g6067_1 and3 +X6493 g6121_2 g6586_1 vdd gnd g6656_0 nand2 +X6494 g7436_1 vdd gnd g7549_1 not1 +X6495 g2441_0 vdd gnd g3100_0 not1 +X6496 g1865_0 vdd gnd g2027_0 not1 +X6497 g3797_2 vdd gnd g5053_1 not1 +X6498 g3300_0 g1307_1 vdd gnd g4050_1 nand2 +X6499 g5404_1 g5418_1 vdd gnd g6026_5 and2 +X6500 g7366_2 g6055_1 vdd gnd g7390_1 nand2 +X6501 g6377_3 g6016_4 g5370_7 g5395_8 vdd gnd g6511_1 and4 +X6502 g5688_2 g6187_0 vdd gnd g6356_1 nand2 +X6503 g4791_10 g3008_4 vdd gnd g5468_1 and2 +X6504 g1394_1 g699_5 vdd gnd g1592_1 and2 +X6505 g1051_2 vdd gnd g1313_0 not1 +X6506 g3168_1 g1239_1 vdd gnd g3936_1 nand2 +X6507 g5024_2 g7344_1 vdd gnd g7370_1 nand2 +X6508 g1995_1 vdd gnd g3090_1 not1 +X6509 g5334_4 g4582_4 g4568_3 g4598_4 vdd gnd g6006_1 and4 +X6510 g33_1 g1337_4 vdd gnd g1576_1 and2 +X6511 g190_1 vdd gnd g582_3 not1 +X6512 g5563_2 vdd gnd g5961_1 not1 +X6513 g747_4 g1888_1 vdd gnd g2365_2 nor2 +X6514 g767_0 g1744_1 vdd gnd g2004_0 and2 +X6515 g5549_0 vdd gnd g6083_0 not1 +X6516 g877_1 vdd gnd g1131_1 not1 +X6517 g672_3 vdd gnd g1006_2 not1 +X6518 g2790_0 g2789_1 vdd gnd g3465_0 nand2 +X6519 g7124_1 g7100_1 vdd gnd g7141_1 nand2 +X6520 g1079_1 g2747_1 vdd gnd g2791_1 nand2 +X6521 g6618_0 g5870_0 vdd gnd g6721_1 nand2 +X6522 g2775_1 g3471_0 vdd gnd g3630_1 nand2 +X6523 g3654_1 g3637_0 g2008_0 g3644_3 vdd gnd g4351_1 and4 +X6524 g120_0 g1462_2 vdd gnd g1903_0 and2 +X6525 g6116_0 vdd gnd g6395_1 not1 +X6526 g4784_4 vdd gnd g5725_1 not1 +X6527 g3947_1 g3938_1 g2224_0 g3943_0 vdd gnd g4624_1 and4 +X6528 g1406_0 g734_2 vdd gnd g1632_3 and2 +X6529 g3291_0 g4177_0 vdd gnd g4310_1 nand2 +X6530 g3219_2 vdd gnd g4012_1 not1 +X6531 g6269_0 vdd gnd g6470_1 not1 +X6532 g3803_0 vdd gnd g5065_1 not1 +X6533 g6162_0 vdd gnd g6313_0 not1 +X6534 g6993_0 g6877_0 vdd gnd g7531_1 or2 +X6535 g4243_1 g4244_0 vdd gnd g4661_1 nand2 +X6536 g5827_1 g6658_1 vdd gnd g6700_2 and2 +X6537 g2880_0 g5345_1 g5346_0 g5347_0 vdd gnd g5802_1 or4 +X6538 g1986_0 g5156_2 vdd gnd g5769_0 and2 +X6539 g594_3 g2133_7 vdd gnd g2890_3 and2 +X6540 g2342_3 g2123_1 vdd gnd g3058_0 and2 +X6541 g3339_1 vdd gnd g4071_1 not1 +X6542 g6628_0 vdd gnd g6730_1 not1 +X6543 g184_1 vdd gnd g7461_1 not1 +X6544 g62_1 g1192_1 vdd gnd g1475_0 and2 +X6545 g796_0 vdd gnd g1372_1 not1 +X6546 g173_2 vdd gnd g7452_0 not1 +X6547 g2107_1 vdd gnd g3389_1 not1 +X6548 g200_2 vdd gnd g7476_1 not1 +X6549 g1411_5 vdd gnd g1945_2 not1 +X6550 g7350_0 g7351_0 g7352_0 g7353_0 vdd gnd g7375_0 or4 +X6551 g1086_1 g1085_0 vdd gnd g1393_0 or2 +X6552 g3234_0 vdd gnd g4022_0 not1 +X6553 g2579_1 g3974_0 vdd gnd g4234_0 nand2 +X6554 g171_0 vdd gnd g7450_0 not1 +X6555 g3810_3 vdd gnd g5095_2 not1 +X6556 g4781_1 vdd gnd g5444_1 not1 +X6557 g5110_1 g3890_0 vdd gnd g5300_1 nand2 +X6558 g4628_1 g4629_1 vdd gnd x172_1 or2 +X6559 g178_1 vdd gnd g526_4 not1 +X6560 g5646_1 g7189_0 vdd gnd g7211_0 nand2 +X6561 g3928_2 vdd gnd g5115_0 not1 +X6562 g1102_1 g1117_0 vdd gnd g1404_1 or2 +X6563 g7421_0 g7427_1 vdd gnd g7433_2 or2 +X6564 g442_2 vdd gnd g721_4 not1 +X6565 g570_3 g2203_4 vdd gnd g2907_5 and2 +X6566 g4386_1 vdd gnd g5266_1 not1 +X6567 g1030_2 vdd gnd g1268_1 not1 +X6568 g6308_0 g6875_1 vdd gnd g6929_0 and2 +X6569 g1379_1 g1380_0 vdd gnd g1423_2 nand2 +X6570 g3096_2 vdd gnd g4142_0 not1 +X6571 g5515_0 g5522_2 vdd gnd g6075_2 and2 +X6572 g4233_1 g3973_0 vdd gnd g4635_3 nand2 +X6573 g1909_1 g1482_1 vdd gnd g2188_4 or2 +X6574 g9_1 g785_3 vdd gnd g1221_1 and2 +X6575 g532_5 vdd gnd g913_2 not1 +X6576 g3683_0 g4362_2 g5264_0 vdd gnd g5775_1 and3 +X6577 g88_1 g716_0 vdd gnd g1101_0 and2 +X6578 g6358_0 g6192_1 vdd gnd g6439_0 nand2 +X6579 g4973_1 vdd gnd g5238_0 not1 +X6580 g2235_1 g5185_1 vdd gnd g5828_1 and2 +X6581 g544_1 g849_3 vdd gnd g1361_0 and2 +X6582 g2934_0 g5385_0 g5386_1 g5387_1 vdd gnd g5820_2 or4 +X6583 g3555_1 g3556_1 vdd gnd g4117_3 nand2 +X6584 g2284_2 g2167_1 vdd gnd g2943_0 and2 +X6585 g4917_0 g4908_2 g3061_0 g4913_2 vdd gnd g5521_0 and4 +X6586 g5062_0 vdd gnd g5277_1 not1 +X6587 g4771_1 g4767_1 g5451_1 vdd gnd g6049_1 and3 +X6588 g5153_2 g5764_1 vdd gnd g5951_0 nand2 +X6589 g4976_2 g6885_1 vdd gnd g6931_1 nand2 +X6590 g5906_2 g6734_1 vdd gnd g6819_1 nand2 +X6591 g24_0 g1323_1 vdd gnd g1556_0 and2 +X6592 g5981_0 g5788_0 vdd gnd g6161_0 nand2 +X6593 g4949_0 g4124_1 g5540_1 vdd gnd g6086_0 and3 +X6594 g4880_0 vdd gnd g5496_0 not1 +X6595 g6244_0 g6391_1 vdd gnd g6453_1 nand2 +X6596 g1366_0 g2772_1 vdd gnd g3469_0 nand2 +X6597 g1652_4 vdd gnd g2486_2 not1 +X6598 g4582_7 g2907_0 vdd gnd g5366_0 and2 +X6599 g886_0 vdd gnd g1134_0 not1 +X6600 g2653_2 g3348_1 vdd gnd g3569_0 nand2 +X6601 g4015_0 g4249_1 vdd gnd g4704_1 nand2 +X6602 g6266_1 g6736_1 vdd gnd g6820_0 nand2 +X6603 g4179_2 vdd gnd g5134_0 not1 +X6604 g3231_0 g1266_1 vdd gnd g4019_0 nand2 +X6605 g1704_1 vdd gnd g2501_2 not1 +X6606 g2609_1 vdd gnd g2954_0 not1 +X6607 g7312_1 g6199_0 g6833_1 vdd gnd g7354_0 and3 +X6608 g2680_0 vdd gnd g3056_1 not1 +X6609 g1723_1 vdd gnd g2701_2 not1 +X6610 g7375_2 vdd gnd g7399_1 not1 +X6611 g6499_2 vdd gnd g6611_1 not1 +X6612 g2171_2 vdd gnd g3189_2 not1 +X6613 g1491_1 g1220_1 vdd gnd g1716_2 or2 +X6614 g6509_0 g6309_1 vdd gnd x542_0 or2 +X6615 g3423_1 g4130_0 vdd gnd g4294_1 nand2 +X6616 g4660_0 g4639_1 g4635_1 g4630_2 vdd gnd g5381_0 and4 +X6617 g3576_1 g3577_0 vdd gnd g4210_0 nand2 +X6618 g6506_0 g6507_0 vdd gnd x532_0 or2 +X6619 g2350_2 vdd gnd g2770_1 not1 +X6620 g428_9 g683_0 vdd gnd g1079_0 nor2 +X6621 g2781_0 g3473_1 vdd gnd g3644_0 nand2 +X6622 g3261_0 g4170_1 vdd gnd g4303_0 nand2 +X6623 g5694_1 g6191_1 vdd gnd g6358_1 nand2 +X6624 g2570_2 vdd gnd g2932_1 not1 +X6625 g2785_0 g3475_1 vdd gnd g3665_3 nand2 +X6626 g4662_2 g6589_1 vdd gnd g6658_0 nand2 +X6627 g7253_1 g7218_1 vdd gnd g7260_2 nand2 +X6628 g6240_2 g5973_1 vdd gnd g6419_1 nand2 +X6629 g3117_0 g5301_1 vdd gnd g5794_1 nand2 +X6630 g4111_1 g4291_1 vdd gnd g4939_1 nand2 +X6631 g11_2 g835_6 vdd gnd g1303_1 and2 +X6632 g931_2 vdd gnd g1171_1 not1 +X6633 g5086_0 vdd gnd g5608_0 not1 +X6634 g5713_2 g7196_0 vdd gnd g7213_0 nand2 +X6635 g1774_3 vdd gnd g2621_0 not1 +X6636 g2659_2 g2312_1 vdd gnd g3048_0 nand2 +X6637 g973_1 vdd gnd g1231_1 not1 +X6638 g5858_1 g5584_0 vdd gnd g6096_2 nand2 +X6639 g2308_2 g1811_2 vdd gnd g2934_1 and2 +X6640 g6590_6 vdd gnd g6715_2 not1 +X6641 g4820_13 g4812_7 vdd gnd x272_1 and2 +X6642 g3482_1 g3483_1 vdd gnd g3691_2 nand2 +X6643 g1824_0 g1683_3 vdd gnd g2227_1 and2 +X6644 g2558_1 g2927_1 vdd gnd g3524_1 nand2 +X6645 g206_3 g5302_3 vdd gnd g5992_0 and2 +X6646 g1906_1 g1479_0 vdd gnd g2635_1 or2 +X6647 g6274_1 vdd gnd g6474_0 not1 +X6648 g176_2 vdd gnd g518_1 not1 +X6649 g6207_1 g6073_0 vdd gnd g6345_1 nand2 +X6650 g4863_5 g4802_5 g4791_2 g4784_6 vdd gnd g5459_2 and4 +X6651 g3705_3 vdd gnd g4371_2 not1 +X6652 g3839_5 vdd gnd g4323_1 not1 +X6653 g1915_0 g1499_1 vdd gnd g2215_4 or2 +X6654 g976_1 g3915_1 vdd gnd g4224_1 nand2 +X6655 g4532_1 vdd gnd g5646_2 not1 +X6656 g3784_1 g2062_1 vdd gnd g4426_0 and2 +X6657 g2513_1 vdd gnd g2879_0 not1 +X6658 g5900_2 vdd gnd g6171_1 not1 +X6659 g170_2 vdd gnd g7449_1 not1 +X6660 g6175_0 g6001_0 vdd gnd g6335_0 nand2 +X6661 g780_0 vdd gnd g1337_1 not1 +X6662 g753_0 vdd gnd g1138_1 not1 +X6663 g175_1 vdd gnd g517_0 not1 +X6664 g2438_0 g3100_1 vdd gnd g3563_1 nand2 +X6665 g4979_0 g6887_1 vdd gnd g6932_1 nand2 +X6666 g6781_1 vdd gnd g6875_0 not1 +X6667 g3420_1 vdd gnd g4130_1 not1 +X6668 g206_11 g6318_1 g6026_2 g5287_4 vdd gnd g6538_1 and4 +X6669 g3103_1 g6414_1 vdd gnd g6523_1 nand2 +X6670 g3803_4 g3784_10 g3768_11 vdd gnd x51_1 and3 +X6671 g114_1 g1289_5 vdd gnd g1530_1 and2 +X6672 g678_0 g6316_0 vdd gnd g6401_0 nand2 +X6673 g4074_0 g4890_0 g6066_0 vdd gnd g6206_1 and3 +X6674 g1012_0 g4012_0 vdd gnd g4247_0 nand2 +X6675 g4121_2 vdd gnd g4967_0 not1 +X6676 g1408_1 g734_4 vdd gnd g1646_4 and2 +X6677 g3255_1 g4041_0 vdd gnd g4257_1 nand2 +X6678 g1530_1 g1305_0 vdd gnd g1807_3 or2 +X6679 g849_6 vdd gnd g1350_5 not1 +X6680 g5685_0 vdd gnd g6033_1 not1 +X6681 g3784_8 vdd gnd g5086_1 not1 +X6682 g2444_2 g3102_1 vdd gnd g3565_1 nand2 +X6683 g3852_0 g3883_2 g3862_2 vdd gnd x71_0 and3 +X6684 g1583_0 g1358_0 vdd gnd g1820_2 or2 +X6685 g2250_1 g652_1 vdd gnd g3240_2 nor2 +X6686 g4034_2 vdd gnd g4778_2 not1 +X6687 g3327_0 vdd gnd g4178_0 not1 +X6688 g3392_1 vdd gnd g4103_0 not1 +X6689 g2606_2 vdd gnd g2953_1 not1 +X6690 g7437_0 vdd gnd g7550_0 not1 +X6691 g7150_2 g6108_1 vdd gnd g7190_1 nand2 +X6692 g6090_2 g695_1 vdd gnd g6315_1 nand2 +X6693 g594_6 g1565_5 vdd gnd g1938_1 and2 +X6694 g2555_2 vdd gnd g2927_1 not1 +X6695 g5900_0 g5996_1 vdd gnd g6172_0 nand2 +X6696 g4412_1 g4413_0 vdd gnd x152_0 or2 +X6697 g6928_1 g6873_0 vdd gnd g6990_0 nand2 +X6698 g5071_2 vdd gnd g5604_1 not1 +X6699 g4351_1 g4352_1 vdd gnd x142_1 or2 +X6700 g1069_0 g2239_1 vdd gnd g2752_1 or2 +X6701 g4676_10 g2963_4 vdd gnd g5413_1 and2 +X6702 g4257_0 g4258_0 vdd gnd g4764_0 nand2 +X6703 g5226_0 g5296_1 vdd gnd g5790_1 nand2 +X6704 g6757_2 g6155_2 g6677_4 vdd gnd g6903_1 and3 +X6705 g2537_2 g2922_0 vdd gnd g3519_1 nand2 +X6706 g156_0 g1446_1 vdd gnd g1899_0 and2 +X6707 g6263_2 vdd gnd g6467_1 not1 +X6708 g3713_1 vdd gnd g4392_2 not1 +X6709 g3177_1 vdd gnd g3972_1 not1 +X6710 g1778_3 vdd gnd g2630_2 not1 +X6711 g946_1 g2844_1 vdd gnd g3510_1 nand2 +X6712 g5077_2 vdd gnd g5278_1 not1 +X6713 g3570_1 g3571_1 vdd gnd g4199_1 nand2 +X6714 g4330_1 g4331_1 vdd gnd x132_1 or2 +X6715 g7256_0 g7251_0 vdd gnd g7287_0 nand2 +X6716 g6226_1 vdd gnd g6449_0 not1 +X6717 g3587_1 vdd gnd g5021_0 not1 +X6718 g2209_0 vdd gnd g3273_0 not1 +X6719 g2175_0 vdd gnd g3324_0 not1 +X6720 g1520_0 g828_2 vdd gnd g1792_0 or2 +X6721 g51_1 g1192_2 vdd gnd g1476_1 and2 +X6722 g538_1 g842_2 vdd gnd g1360_1 and2 +X6723 g4491_4 vdd gnd g5569_2 not1 +X6724 g3401_0 vdd gnd g4109_0 not1 +X6725 g5012_0 g7089_1 vdd gnd g7122_1 nand2 +X6726 g5083_0 g6972_1 vdd gnd g7008_1 nand2 +X6727 g7013_0 g6986_1 vdd gnd g7068_2 nand2 +X6728 g553_3 vdd gnd g931_1 not1 +X6729 g5843_2 g5492_1 vdd gnd g6294_2 or2 +X6730 g3725_3 g3718_4 g2033_1 vdd gnd g4399_0 and3 +X6731 x531_0 x532_1 vdd gnd g7502_0 or2 +X6732 g5529_1 g4946_1 g5543_2 vdd gnd g6087_1 and3 +X6733 g442_1 vdd gnd g699_4 not1 +X6734 g3318_2 g1313_1 vdd gnd g4062_0 nand2 +X6735 g3126_2 vdd gnd g3896_1 not1 +X6736 g4395_0 g4407_0 vdd gnd g5280_2 and2 +X6737 g2787_1 g3476_0 vdd gnd g3675_2 nand2 +X6738 g5631_2 vdd gnd g6104_0 not1 +X6739 g4236_0 g4237_0 vdd gnd g4648_1 nand2 +X6740 g6439_1 vdd gnd g6516_0 not1 +X6741 g997_2 vdd gnd g1239_1 not1 +X6742 g2692_1 vdd gnd g3366_1 not1 +X6743 g2008_4 g4358_0 g6684_1 vdd gnd g6808_1 or3 +X6744 g5999_1 g6174_0 vdd gnd g6317_1 nand2 +X6745 g1036_2 vdd gnd g1308_1 not1 +X6746 g1925_1 g1552_1 vdd gnd g2284_3 or2 +X6747 g3198_2 vdd gnd g3982_1 not1 +X6748 g5933_2 g6741_0 vdd gnd g6821_0 nand2 +X6749 g519_0 g1691_0 vdd gnd g2062_0 and2 +X6750 g1021_0 vdd gnd g1265_0 not1 +X6751 g6314_1 g7033_1 vdd gnd g7087_1 and2 +X6752 g4157_0 g2914_0 vdd gnd g4617_0 nand2 +X6753 g3630_3 g3601_0 g3587_4 g3617_3 vdd gnd g4335_1 and4 +X6754 g5674_2 g7330_1 vdd gnd g7339_1 nand2 +X6755 g1786_5 vdd gnd g2513_2 not1 +X6756 g5634_1 vdd gnd g6105_0 not1 +X6757 g4273_0 g4069_0 vdd gnd g4876_0 nand2 +X6758 g4775_1 vdd gnd g5454_1 not1 +X6759 g4767_2 vdd gnd g5437_0 not1 +X6760 g3916_0 g4225_1 vdd gnd g4539_8 nand2 +X6761 g1803_2 vdd gnd g2647_1 not1 +X6762 g3189_1 vdd gnd g3979_1 not1 +X6763 g7009_1 g6975_1 vdd gnd g7054_2 nand2 +X6764 g4834_8 vdd gnd g5758_0 not1 +X6765 g3905_0 g4223_0 vdd gnd g4519_1 nand2 +X6766 g532_3 vdd gnd g943_1 not1 +X6767 g3147_1 g1232_0 vdd gnd g3914_1 nand2 +X6768 g1815_1 vdd gnd g1954_2 not1 +X6769 g958_2 vdd gnd g1226_1 not1 +X6770 g3228_2 vdd gnd g4018_1 not1 +X6771 g7219_0 g5588_0 vdd gnd g7272_1 nand2 +X6772 g928_0 vdd gnd g1170_1 not1 +X6773 g2471_1 g1167_1 vdd gnd g2825_0 nand2 +X6774 g6568_1 g7383_0 vdd gnd g7397_0 and2 +X6775 g6604_0 g6610_1 g6710_1 g6711_0 vdd gnd g6787_2 and4 +X6776 g125_1 g1440_3 vdd gnd g1894_1 and2 +X6777 g691_1 g450_2 vdd gnd g1069_1 and2 +X6778 g5903_1 g6732_1 vdd gnd g6818_1 nand2 +X6779 g889_2 g2782_1 vdd gnd g3473_1 nand2 +X6780 g7051_2 vdd gnd g7101_1 not1 +X6781 g5160_0 vdd gnd g5867_0 not1 +X6782 g588_1 g2127_0 vdd gnd g2896_0 and2 +X6783 g2304_1 vdd gnd g3177_2 not1 +X6784 g567_2 g1559_2 vdd gnd g1933_1 and2 +X6785 g4964_1 vdd gnd g5549_2 not1 +X6786 g6765_5 vdd gnd g6911_4 not1 +X6787 g7378_0 g7439_0 vdd gnd g7440_1 nand2 +X6788 g5661_1 g7405_0 vdd gnd g7410_1 nand2 +X6789 g2435_2 vdd gnd g2810_0 not1 +X6790 g1504_1 g799_4 vdd gnd g1750_3 and2 +X6791 g5174_2 vdd gnd g5887_1 not1 +X6792 g6597_1 g3883_1 g3862_1 vdd gnd x481_0 and3 +X6793 g6093_0 vdd gnd g6387_0 not1 +X6794 g3438_1 vdd gnd g4132_0 not1 +X6795 g5131_2 vdd gnd g5706_1 not1 +X6796 g5033_1 vdd gnd g5592_0 not1 +X6797 g6208_0 g6074_1 vdd gnd g6374_0 and2 +X6798 g2296_3 g1799_2 vdd gnd g2939_1 and2 +X6799 g4893_1 vdd gnd g5508_2 not1 +X6800 g6840_0 vdd gnd g6962_0 not1 +X6801 g5866_1 g6100_0 vdd gnd g6230_1 nand2 +X6802 g6448_0 g6390_0 vdd gnd g6546_1 nand2 +X6803 g6423_2 g6404_1 vdd gnd g6560_0 and2 +X6804 g3392_2 g3063_0 vdd gnd g4104_0 nand2 +X6805 g2153_4 vdd gnd g3291_2 not1 +X6806 g84_1 g760_6 vdd gnd g1157_1 and2 +X6807 g634_5 vdd gnd g1048_2 not1 +X6808 g3817_1 vdd gnd g5101_2 not1 +X6809 g2244_1 vdd gnd g3225_0 not1 +X6810 g3447_0 g4137_0 vdd gnd g4300_1 nand2 +X6811 g3617_0 g1978_0 vdd gnd g4344_0 and2 +X6812 g6211_0 g6087_0 vdd gnd g6384_0 nor2 +X6813 g608_1 g2147_2 vdd gnd g2849_1 and2 +X6814 g2338_3 vdd gnd g3435_2 not1 +X6815 g5006_2 g3093_1 vdd gnd g5584_1 nand2 +X6816 g423_0 vdd gnd g898_0 not1 +X6817 g6085_0 g6084_0 vdd gnd g6304_0 nand2 +X6818 g7309_1 g6609_0 g6705_2 vdd gnd g7357_0 and3 +X6819 g3630_2 g3617_8 g3601_5 vdd gnd x11_0 and3 +X6820 g5834_0 g5458_1 vdd gnd g6046_0 nor2 +X6821 g2959_2 g5410_0 g5411_1 g5412_0 vdd gnd g5917_1 or4 +X6822 g3862_9 g3845_1 g2096_2 g3852_8 vdd gnd g4448_1 and4 +X6823 g3420_2 g4131_1 vdd gnd g4295_1 nand2 +X6824 g6377_0 g6016_2 g5370_5 g5395_7 vdd gnd g6509_1 and4 +X6825 g4508_10 g2874_1 g4498_9 vdd gnd g5329_1 and3 +X6826 g3303_2 vdd gnd g4053_1 not1 +X6827 g3485_0 g3486_0 vdd gnd g3698_1 nand2 +X6828 g6864_0 vdd gnd g6983_1 not1 +X6829 g767_1 g1744_4 vdd gnd g1965_4 and2 +X6830 g53_0 g1185_3 vdd gnd g1457_0 and2 +X6831 g6234_2 g3716_1 vdd gnd g6415_1 nand2 +X6832 g2314_3 vdd gnd g3417_2 not1 +X6833 g7030_1 vdd gnd g7540_0 not1 +X6834 g2984_0 g5430_0 g6918_0 vdd gnd g6954_0 or3 +X6835 g4869_0 vdd gnd g5749_0 not1 +X6836 g3969_0 g3965_0 g3961_0 vdd gnd x91_0 and3 +X6837 g570_0 g1559_0 vdd gnd g1934_0 and2 +X6838 g7003_1 g6963_0 vdd gnd g7041_0 nand2 +X6839 g25_1 g1323_4 vdd gnd g1557_1 and2 +X6840 g6144_0 g6611_0 vdd gnd g6661_0 nand2 +X6841 g2450_1 g1160_1 vdd gnd g2811_1 nand2 +X6842 g4124_2 g5529_2 g6081_1 vdd gnd g6211_1 and3 +X6843 g1387_0 vdd gnd g1852_0 not1 +X6844 g205_0 vdd gnd g7481_1 not1 +X6845 g4474_8 g2859_2 vdd gnd g5323_1 and2 +X6846 g588_4 vdd gnd g985_2 not1 +X6847 g7255_1 g7249_1 vdd gnd g7284_2 nand2 +X6848 g1820_0 vdd gnd g2716_0 not1 +X6849 g3546_1 g3048_1 vdd gnd g4074_1 nand2 +X6850 g943_0 vdd gnd g1175_0 not1 +X6851 g5886_0 g6102_0 vdd gnd g6251_1 nand2 +X6852 g3192_2 g3981_0 vdd gnd g4239_1 nand2 +X6853 g1048_0 g4061_1 vdd gnd g4269_0 nand2 +X6854 g6293_0 g6396_1 vdd gnd g6491_1 nand2 +X6855 g3630_4 vdd gnd g5009_1 not1 +X6856 g54_2 vdd gnd g487_1 not1 +X6857 g4985_1 g6891_1 vdd gnd g6934_1 nand2 +X6858 g5948_2 g6872_1 vdd gnd g6928_1 nand2 +X6859 g3817_9 g2075_4 vdd gnd g4435_1 and2 +X6860 g2115_3 vdd gnd g3352_2 not1 +X6861 g6618_1 vdd gnd g6720_1 not1 +X6862 g1604_2 vdd gnd g2418_1 not1 +X6863 g3135_1 g1229_1 vdd gnd g3901_0 nand2 +X6864 g6471_1 g6474_1 vdd gnd g6641_1 nand2 +X6865 g5860_1 g6099_0 vdd gnd g6226_0 nand2 +X6866 g1880_0 vdd gnd g2313_1 not1 +X6867 g3601_6 g3579_3 g1971_3 g3587_10 vdd gnd g4330_0 and4 +X6868 g5906_0 vdd gnd g6262_1 not1 +X6869 g30_1 g1295_4 vdd gnd g1536_1 and2 +X6870 g6725_2 g5599_0 vdd gnd g6846_1 nand2 +X6871 g4084_0 g4899_2 g5512_1 vdd gnd g5847_1 and3 +X6872 g4297_1 g4298_0 vdd gnd g4960_0 nand2 +X6873 g46_0 g1350_1 vdd gnd g1588_1 and2 +X6874 g2815_0 g3496_1 vdd gnd g3736_2 nand2 +X6875 g2849_0 g5319_1 g5320_0 vdd gnd g5894_2 nor3 +X6876 g3267_1 vdd gnd g4173_1 not1 +X6877 g2635_2 g4037_0 vdd gnd g4254_1 nand2 +X6878 g3110_1 g6245_1 vdd gnd g6392_1 nand2 +X6879 g6771_5 g4742_5 g4721_3 g4732_3 vdd gnd g6917_1 and4 +X6880 g3725_10 vdd gnd g5050_2 not1 +X6881 g1856_1 g2404_1 vdd gnd g2761_1 nand2 +X6882 g747_0 g1886_0 vdd gnd g1990_1 or2 +X6883 g620_0 g1537_0 vdd gnd g1922_0 and2 +X6884 g2322_1 vdd gnd g3392_0 not1 +X6885 g2600_1 g2952_1 vdd gnd g3535_1 nand2 +X6886 g1102_5 g1118_1 vdd gnd g1405_1 or2 +X6887 g3201_2 g3982_0 vdd gnd g4240_1 nand2 +X6888 g5700_2 g4749_0 vdd gnd g6039_1 nand2 +X6889 g3845_2 g2089_0 vdd gnd g4446_0 and2 +X6890 g92_0 g705_3 vdd gnd g1097_0 and2 +X6891 g6366_2 g5280_5 vdd gnd g6526_1 and2 +X6892 g4311_1 g4312_1 vdd gnd g5139_2 nand2 +X6893 g1432_1 g1152_1 vdd gnd g1679_3 or2 +X6894 g7360_0 g6012_1 vdd gnd g7386_1 nand2 +X6895 g3587_7 vdd gnd g5024_0 not1 +X6896 x371_1 x372_0 vdd gnd g5942_2 or2 +X6897 g6597_6 g3883_6 g3873_7 vdd gnd g6693_1 and3 +X6898 g796_2 g450_3 vdd gnd g1258_1 and2 +X6899 g2081_6 vdd gnd g3117_2 not1 +X6900 g3020_0 g5478_0 g5479_0 vdd gnd x371_0 or3 +X6901 g2459_0 g1163_1 vdd gnd g2817_0 nand2 +X6902 g2276_1 vdd gnd g3207_1 not1 +X6903 g6300_1 g6650_1 vdd gnd g6669_0 nand2 +X6904 g5208_1 g3113_1 vdd gnd g5880_1 nand2 +X6905 g594_5 g2133_3 vdd gnd g3171_0 nor2 +X6906 g178_0 vdd gnd g7455_1 not1 +X6907 g5177_1 g5784_1 vdd gnd g5977_2 or2 +X6908 g4750_1 g4030_0 g5443_1 vdd gnd g5833_0 and3 +X6909 g2296_1 vdd gnd g3456_2 not1 +X6910 g2713_1 g3080_1 vdd gnd g3556_0 nand2 +X6911 g752_1 g1890_1 vdd gnd g2023_3 or2 +X6912 g2477_2 vdd gnd g3109_1 not1 +X6913 g2415_0 vdd gnd g2803_0 not1 +X6914 g5423_0 g5424_1 vdd gnd x342_1 or2 +X6915 g538_3 g1710_3 vdd gnd g2089_1 and2 +X6916 g660_1 g1543_0 vdd gnd g1929_0 and2 +X6917 g2244_0 vdd gnd g3252_0 not1 +X6918 g6251_2 g6254_0 vdd gnd g6462_1 nand2 +X6919 g2671_2 vdd gnd g3052_0 not1 +X6920 g5658_2 vdd gnd g6114_1 not1 +X6921 g2597_2 vdd gnd g2950_1 not1 +X6922 g7081_0 g7047_0 vdd gnd g7096_1 nand2 +X6923 g5459_0 g5839_0 vdd gnd g6202_0 and2 +X6924 g1021_2 g4018_0 vdd gnd g4250_1 nand2 +X6925 g2486_1 g1170_1 vdd gnd g2831_0 nand2 +X6926 g1904_0 g1477_0 vdd gnd g2167_2 or2 +X6927 g6672_1 g6560_1 vdd gnd g7512_1 or2 +X6928 g1704_4 vdd gnd g2426_2 not1 +X6929 g835_5 vdd gnd g1289_4 not1 +X6930 g428_10 vdd gnd g880_2 not1 +X6931 g666_4 g2264_5 vdd gnd g2959_3 and2 +X6932 g2356_2 vdd gnd g2774_1 not1 +X6933 x491_0 x492_0 vdd gnd g6790_0 or2 +X6934 g7290_0 g7264_0 vdd gnd g7303_0 nand2 +X6935 g3435_0 vdd gnd g4205_0 not1 +X6936 g3683_1 vdd gnd g4359_1 not1 +X6937 g4305_1 g4306_1 vdd gnd g5122_2 nand2 +X6938 g570_4 g2203_5 vdd gnd g2874_2 and2 +X6939 g7087_1 g7017_1 vdd gnd g7547_1 or2 +X6940 g4802_6 g4784_0 g3013_0 g4791_3 vdd gnd g5464_0 and4 +X6941 g1527_0 g1302_0 vdd gnd g1795_1 or2 +X6942 g206_8 g6336_1 g6056_2 vdd gnd g6530_1 and3 +X6943 g4784_2 vdd gnd g5713_1 not1 +X6944 g4416_0 g4417_0 vdd gnd x202_0 or2 +X6945 g6837_1 g5585_1 vdd gnd g6961_1 nand2 +X6946 g6259_1 g5113_0 vdd gnd g6466_0 nand2 +X6947 g1719_2 vdd gnd g2665_0 not1 +X6948 g2710_2 vdd gnd g3077_1 not1 +X6949 g5891_2 vdd gnd g6165_1 not1 +X6950 g4463_10 g4456_5 g2853_5 vdd gnd g5314_1 and3 +X6951 g189_0 vdd gnd g7466_0 not1 +X6952 g1898_0 g1459_0 vdd gnd g2141_1 or2 +X6953 g5527_0 g5528_1 vdd gnd x362_1 or2 +X6954 g1437_0 g1157_0 vdd gnd g1698_2 or2 +X6955 g6223_1 g5966_0 vdd gnd g6412_1 nand2 +X6956 g681_0 g682_0 g6902_0 vdd gnd g6939_0 and3 +X6957 g6351_0 g6539_0 g6540_0 vdd gnd g6597_2 or3 +X6958 g167_0 vdd gnd g455_0 not1 +X6959 g4568_6 g2901_1 vdd gnd g5358_1 and2 +X6960 g2897_2 g5361_1 g5362_1 g5363_0 vdd gnd g5912_0 nor4 +X6961 g6199_2 g6051_0 vdd gnd g6442_1 and2 +X6962 g1937_1 g1576_0 vdd gnd g2326_3 or2 +X6963 g2752_3 vdd gnd g3540_0 not1 +X6964 g3144_1 vdd gnd g3913_1 not1 +X6965 g4698_0 g4687_0 vdd gnd g5416_1 and2 +X6966 g628_2 vdd gnd g1027_1 not1 +X6967 g2495_0 vdd gnd g2838_0 not1 +X6968 g1616_0 vdd gnd g2689_1 not1 +X6969 g1396_0 g699_1 vdd gnd g1600_1 and2 +X6970 g2546_1 vdd gnd g2924_0 not1 +X6971 g3355_0 vdd gnd g4187_1 not1 +X6972 g3587_6 g1965_5 vdd gnd g4332_1 and2 +X6973 g193_1 vdd gnd g7470_1 not1 +X6974 g740_6 vdd gnd g1108_5 not1 +X6975 g11_2 g1295_0 vdd gnd g1533_0 and2 +X6976 g4539_6 g4532_3 g2885_1 vdd gnd g5346_1 and3 +X6977 g767_2 vdd gnd g1369_0 not1 +X6978 g1687_0 vdd gnd g2683_0 not1 +X6979 g964_0 g3900_1 vdd gnd g4220_1 nand2 +X6980 g1646_5 vdd gnd g2438_1 not1 +X6981 g2133_6 vdd gnd g3288_1 not1 +X6982 g6217_2 g5964_1 vdd gnd g6408_1 nand2 +X6983 g5835_1 g6202_1 vdd gnd g6366_3 or2 +X6984 g3339_2 g4070_1 vdd gnd g4274_1 nand2 +X6985 g5044_1 vdd gnd g5597_0 not1 +X6986 g3165_0 vdd gnd g3927_1 not1 +X6987 g5160_1 g4345_1 vdd gnd g5861_0 or2 +X6988 g5894_1 vdd gnd g6167_1 not1 +X6989 g3828_2 vdd gnd g5107_2 not1 +X6990 g1411_1 g1060_2 vdd gnd g1887_0 and2 +X6991 g5770_2 g5250_1 vdd gnd g6155_1 and2 +X6992 g865_2 vdd gnd g1127_1 not1 +X6993 g3540_1 g2957_1 vdd gnd g3578_1 nand2 +X6994 g3544_1 g3545_1 vdd gnd g4034_2 nand2 +X6995 g4850_5 g4834_11 g4812_5 vdd gnd x281_0 and3 +X6996 x261_0 x262_0 vdd gnd g5424_0 and2 +X6997 g4997_2 vdd gnd g5246_1 not1 +X6998 g4498_7 g4491_2 g2870_3 vdd gnd g5325_0 and3 +X6999 g4598_0 g4582_0 g4560_0 vdd gnd x221_0 and3 +X7000 g193_0 vdd gnd g602_0 not1 +X7001 g3213_1 vdd gnd g4008_1 not1 +X7002 g6363_1 g6362_1 vdd gnd g6484_0 nand2 +X7003 g4742_4 vdd gnd g5554_0 not1 +X7004 g387_0 g403_1 vdd gnd g7486_1 nand2 +X7005 g3950_3 g2226_0 vdd gnd g4626_1 and2 +X7006 g5694_2 vdd gnd g6036_1 not1 +X7007 g4863_3 g4802_2 vdd gnd g5491_1 and2 +X7008 g6853_0 g6103_0 vdd gnd g6975_0 nand2 +X7009 g418_2 g1652_2 vdd gnd g2071_3 and2 +X7010 g3129_1 g1227_1 vdd gnd g3897_0 nand2 +X7011 g1710_2 vdd gnd g2498_1 not1 +X7012 g3171_1 g6463_0 vdd gnd g6553_0 nand2 +X7013 g1079_2 vdd gnd g1383_1 not1 +X7014 g5341_1 g5809_0 vdd gnd g6180_1 and2 +X7015 g2229_0 g3956_0 vdd gnd x102_1 and2 +X7016 g204_2 vdd gnd g7480_0 not1 +X7017 x41_0 x42_0 vdd gnd g4352_0 and2 +X7018 g181_2 vdd gnd g7458_0 not1 +X7019 g5668_0 g7156_1 vdd gnd g7170_1 nand2 +X7020 g3444_1 vdd gnd g4135_1 not1 +X7021 g6669_1 g6651_1 vdd gnd g6748_2 nand2 +X7022 g2023_2 vdd gnd g2790_1 not1 +X7023 g4550_8 g2890_5 g4539_4 vdd gnd g5349_1 and3 +X7024 g4092_2 vdd gnd g4902_2 not1 +X7025 g4850_6 g4834_12 g3037_5 g4820_7 vdd gnd g5484_0 and4 +X7026 g1045_0 g4059_0 vdd gnd g4268_1 nand2 +X7027 g560_0 g849_1 vdd gnd g1365_1 and2 +X7028 g5153_1 vdd gnd g5765_1 not1 +X7029 g6790_2 vdd gnd g6885_1 not1 +X7030 g1683_3 vdd gnd g2552_2 not1 +X7031 x321_1 x322_1 vdd gnd g5809_3 or2 +X7032 g428_1 vdd gnd g871_2 not1 +X7033 g1844_1 g1624_2 vdd gnd g2222_0 and2 +X7034 g6930_1 g6879_1 vdd gnd g7521_0 or2 +X7035 g6_3 vdd gnd g501_2 not1 +X7036 g6549_0 g6450_0 vdd gnd g6615_2 nand2 +X7037 g7257_0 g5170_1 g6687_1 vdd gnd g7300_1 and3 +X7038 g5933_2 vdd gnd g6287_1 not1 +X7039 g4598_5 g4582_5 g3928_4 g4568_4 vdd gnd g5363_1 and4 +X7040 g4324_3 vdd gnd g5250_1 not1 +X7041 g4812_4 vdd gnd g5737_2 not1 +X7042 g2561_0 vdd gnd g2929_1 not1 +X7043 g61_2 g1199_5 vdd gnd g1479_1 and2 +X7044 g6072_0 g6071_0 vdd gnd g6278_0 nand2 +X7045 g6313_1 g6911_2 vdd gnd g6995_0 and2 +X7046 g7125_1 g7102_0 vdd gnd g7144_1 nand2 +X7047 g3358_0 g4189_1 vdd gnd g4314_0 nand2 +X7048 g3644_8 g2004_3 vdd gnd g4353_1 and2 +X7049 g2133_7 g594_7 vdd gnd g3144_2 nor2 +X7050 g4334_0 g4335_0 vdd gnd x192_0 or2 +X7051 g4949_1 vdd gnd g5529_0 not1 +X7052 g4292_1 g4293_0 vdd gnd g4949_2 nand2 +X7053 g7281_1 vdd gnd g7330_1 not1 +X7054 g1337_2 vdd gnd g1565_2 not1 +X7055 g1591_0 vdd gnd g1957_0 not1 +X7056 g60_0 g1269_4 vdd gnd g1511_1 and2 +X7057 g2386_2 g1137_0 vdd gnd g2787_1 nand2 +X7058 g4146_2 vdd gnd g5040_1 not1 +X7059 g4054_1 g4266_1 vdd gnd g4802_3 nand2 +X7060 g171_1 vdd gnd g473_5 not1 +X7061 g7242_0 vdd gnd g7267_1 not1 +X7062 g6874_1 g6824_0 vdd gnd g7517_0 or2 +X7063 g7060_1 g6393_1 vdd gnd g7108_0 nand2 +X7064 g2698_1 g4103_1 vdd gnd g4286_0 nand2 +X7065 g4124_3 vdd gnd g4946_2 not1 +X7066 g512_0 g428_2 vdd gnd g752_0 and2 +X7067 g150_0 g1468_5 vdd gnd g1908_1 and2 +X7068 g3852_2 g2092_1 vdd gnd g4450_0 and2 +X7069 g1592_0 vdd gnd g2406_2 not1 +X7070 g2778_0 g2777_0 vdd gnd g3466_1 nand2 +X7071 g6625_0 g5884_1 vdd gnd g6729_1 nand2 +X7072 g7141_0 g5604_0 vdd gnd g7184_0 nand2 +X7073 g181_1 vdd gnd g413_2 not1 +X7074 g6357_1 g6190_0 vdd gnd g6399_1 nand2 +X7075 g3276_2 vdd gnd g4046_1 not1 +X7076 x561_1 x562_1 vdd gnd g7505_0 or2 +X7077 g5298_1 g5793_1 vdd gnd g5984_0 nand2 +X7078 g1060_1 vdd gnd g1387_1 not1 +X7079 g6932_0 g6888_0 vdd gnd g7523_0 nand2 +X7080 g37_1 g1316_2 vdd gnd g1550_0 and2 +X7081 g3114_0 vdd gnd g4150_1 not1 +X7082 g7339_0 g7331_1 vdd gnd g7360_1 nand2 +X7083 g3754_6 g2049_3 vdd gnd g4418_1 and2 +X7084 g3516_0 g3517_0 vdd gnd g3947_0 nand2 +X7085 g634_0 g2188_1 vdd gnd g2980_0 and2 +X7086 g7203_1 g6143_1 vdd gnd g7251_1 nand2 +X7087 g3294_1 g4176_1 vdd gnd g4309_1 nand2 +X7088 g2817_1 g3497_1 vdd gnd g3746_6 nand2 +X7089 x291_0 x292_0 vdd gnd g5522_1 and2 +X7090 g1092_0 g1099_0 vdd gnd g1398_0 or2 +X7091 g7394_0 g6829_1 vdd gnd g7403_1 and2 +X7092 g166_1 g407_2 vdd gnd g7493_0 nand2 +X7093 g5115_2 vdd gnd g5667_1 not1 +X7094 g6329_1 g6172_1 vdd gnd g6422_1 nand2 +X7095 g5163_2 g2019_3 vdd gnd g5768_1 and2 +X7096 g2525_0 vdd gnd g2917_1 not1 +X7097 g2141_0 vdd gnd g3153_0 not1 +X7098 g7370_0 g7345_0 vdd gnd g7382_1 nand2 +X7099 g5752_0 vdd gnd g6142_1 not1 +X7100 g3261_2 vdd gnd g4171_1 not1 +X7101 g2588_2 vdd gnd g2947_1 not1 +X7102 g907_1 g2818_1 vdd gnd g3497_0 nand2 +X7103 g994_2 g3927_1 vdd gnd g4230_1 nand2 +X7104 g5830_0 g5404_0 vdd gnd g6184_0 and2 +X7105 x121_0 x122_0 vdd gnd g4668_0 and2 +X7106 g910_1 g2820_0 vdd gnd g3498_1 nand2 +X7107 g7168_1 g7138_1 vdd gnd g7177_1 nand2 +X7108 g4598_2 vdd gnd g5652_0 not1 +X7109 g2322_2 g1727_0 vdd gnd g3064_1 and2 +X7110 g2969_5 vdd gnd g4167_1 not1 +X7111 g43_1 g1344_4 vdd gnd g1583_1 and2 +X7112 g6954_2 vdd gnd g7023_0 not1 +X7113 g512_3 vdd gnd g856_2 not1 +X7114 g14_0 g1212_4 vdd gnd g1495_0 and2 +X7115 g394_2 vdd gnd g7487_0 not1 +X7116 g1102_2 g1115_1 vdd gnd g1402_0 or2 +X7117 g1951_0 vdd gnd g2749_1 not1 +X7118 g5300_0 g5794_0 vdd gnd g5957_1 nand2 +X7119 g3086_1 vdd gnd g4138_0 not1 + +* the components sub circuits: + +.subckt or4 a b c d vdd vss z +xm01 sig8 a vdd vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm02 vdd a 05 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm03 sig1 a vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm04 n2 b sig8 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm05 05 b 08 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm06 vss b sig1 vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm07 10 c n2 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm08 08 c 11 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm09 sig1 c vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm10 sig1 d 10 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm11 11 d sig1 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm12 vss d sig1 vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm13 vdd sig1 z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm14 vss sig1 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 a vss 1.356f +c5 b vss 1.229f +c6 c vss 1.043f +c7 d vss 0.797f +c1 sig1 vss 1.003f +c3 z vss 0.701f +.ends +.subckt xnr2v0x1 a b vdd vss z +xm01 z b sig3 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm02 bn sig3 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +xm03 sig3 a vdd vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm04 vdd b bn vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm05 z bn sig3 vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +xm06 vdd sig3 n1 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm07 sig3 a vss vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +xm08 n1 bn z vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm09 vss b bn vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 a vss 0.389f +c2 bn vss 1.593f +c5 b vss 0.840f +c3 sig3 vss 0.618f +c6 z vss 0.627f +.ends +.subckt nor2 a b vdd vss z +xm01 vdd a 01 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm02 vss a z vss sg13_lv_nmos l=0.15u w=0.55u as=0.1166p ad=0.1166p ps=1.41u pd=1.41u +xm03 01 b z vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm04 z b vss vss sg13_lv_nmos l=0.15u w=0.55u as=0.1166p ad=0.1166p ps=1.41u pd=1.41u +c4 a vss 0.341f +c3 b vss 0.433f +c2 z vss 0.677f +.ends +.subckt or2 a b vdd vss z +xm01 03 a vdd vdd sg13_lv_pmos l=0.15u w=1.44u as=0.306075p ad=0.306075p ps=2.84u pd=2.84u +xm02 sig1 a vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm03 sig1 b 03 vdd sg13_lv_pmos l=0.15u w=1.44u as=0.306075p ad=0.306075p ps=2.84u pd=2.84u +xm04 vss b sig1 vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm5 vdd sig1 z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm6 vss sig1 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 a vss 0.464f +c5 b vss 0.507f +c1 sig1 vss 0.619f +c3 z vss 0.593f +.ends +.subckt and4 a b c d vdd vss z +xm01 10 a vdd vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm02 n1 a vss vss sg13_lv_nmos l=0.15u w=1.1u as=0.2332p ad=0.2332p ps=2.29u pd=2.29u +xm03 vdd b 10 vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm04 sig7 b n1 vss sg13_lv_nmos l=0.15u w=1.1u as=0.2332p ad=0.2332p ps=2.29u pd=2.29u +xm05 10 c vdd vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm06 n3 c sig7 vss sg13_lv_nmos l=0.15u w=1.1u as=0.2332p ad=0.2332p ps=2.29u pd=2.29u +xm07 vdd d 10 vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm08 10 d n3 vss sg13_lv_nmos l=0.15u w=1.1u as=0.2332p ad=0.2332p ps=2.29u pd=2.29u +xm09 vdd 10 z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm10 vss 10 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 10 vss 0.940f +c5 a vss 0.674f +c8 b vss 0.541f +c9 c vss 0.622f +c10 d vss 0.791f +c3 z vss 0.765f +.ends +.subckt nor4 a b c d vdd vss z +xm1a 1b a vdd vdd sg13_lv_pmos l=0.15u w=1.72u as=0.364375p ad=0.364375p ps=3.28u pd=3.28u +xm1b sig8 b 1b vdd sg13_lv_pmos l=0.15u w=1.72u as=0.364375p ad=0.364375p ps=3.28u pd=3.28u +xm1c 1d c sig8 vdd sg13_lv_pmos l=0.15u w=1.72u as=0.364375p ad=0.364375p ps=3.28u pd=3.28u +xm1d z d 1d vdd sg13_lv_pmos l=0.15u w=1.72u as=0.364375p ad=0.364375p ps=3.28u pd=3.28u +xm2a vdd a 2a vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm2b 2a b sig11 vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm2c sig11 c 2c vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm2d 2c d z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm3a z a vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm3b vss b z vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm3c z c vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm3d vss d z vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +c4 a vss 1.510f +c3 b vss 1.102f +c6 c vss 0.817f +c5 d vss 0.806f +c2 z vss 0.935f +.ends +.subckt not1 a vdd vss z +xm01 vdd a z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm02 vss a z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c3 a vss 0.384f +c2 z vss 0.576f +.ends +.subckt and3 a b c vdd vss z +xm01 08 a vdd vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm02 n1 a vss vss sg13_lv_nmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm03 vdd b 08 vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm04 sig6 b n1 vss sg13_lv_nmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm05 08 c vdd vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm06 08 c sig6 vss sg13_lv_nmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm07 vdd 08 z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm08 vss 08 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 08 vss 1.142f +c5 a vss 0.539f +c7 b vss 0.609f +c8 c vss 0.651f +c3 z vss 0.745f +.ends +.subckt or3 a b c vdd vss z +xm01 01 a vdd vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm02 sig1 a vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm03 03 b 01 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm04 vss b sig1 vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm05 sig1 c 03 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm06 sig1 c vss vss sg13_lv_nmos l=0.15u w=0.42u as=0.08745p ad=0.08745p ps=1.19u pd=1.19u +xm07 vdd sig1 z vdd sg13_lv_pmos l=0.15u w=1.3u as=0.276925p ad=0.276925p ps=2.62u pd=2.62u +xm08 vss sig1 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 a vss 0.544f +c5 b vss 0.535f +c6 c vss 0.625f +c1 sig1 vss 0.995f +c3 z vss 0.544f +.ends +.subckt nand2 a b vdd vss z +xm01 vdd a z vdd sg13_lv_pmos l=0.15u w=0.96u as=0.20405p ad=0.20405p ps=2.07u pd=2.07u +xm02 vss a sig3 vss sg13_lv_nmos l=0.15u w=0.82u as=0.1749p ad=0.1749p ps=1.85u pd=1.85u +xm03 z b vdd vdd sg13_lv_pmos l=0.15u w=0.96u as=0.20405p ad=0.20405p ps=2.07u pd=2.07u +xm04 sig3 b z vss sg13_lv_nmos l=0.15u w=0.82u as=0.1749p ad=0.1749p ps=1.85u pd=1.85u +c4 a vss 0.549f +c5 b vss 0.578f +c1 z vss 0.609f +.ends +.subckt and2 a b vdd vss z +xm01 06 a vdd vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm02 n1 a vss vss sg13_lv_nmos l=0.15u w=0.76u as=0.160325p ad=0.160325p ps=1.74u pd=1.74u +xm03 vdd b 06 vdd sg13_lv_pmos l=0.15u w=0.9u as=0.189475p ad=0.189475p ps=1.96u pd=1.96u +xm04 06 b n1 vss sg13_lv_nmos l=0.15u w=0.76u as=0.160325p ad=0.160325p ps=1.74u pd=1.74u +xm05 vdd 06 z vdd sg13_lv_pmos l=0.15u w=1.24u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +xm06 vss 06 z vss sg13_lv_nmos l=0.15u w=0.62u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +c4 06 vss 0.724f +c5 a vss 0.663f +c6 b vss 0.538f +c3 z vss 0.595f +.ends +.subckt nor3 a b c vdd vss z +xm01 sig6 a vdd vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm02 vdd a 02 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm03 vss a z vss sg13_lv_nmos l=0.15u w=0.69u as=0.14575p ad=0.14575p ps=1.63u pd=1.63u +xm04 04 b sig6 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm05 02 b 08 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm06 z b vss vss sg13_lv_nmos l=0.15u w=0.69u as=0.14575p ad=0.14575p ps=1.63u pd=1.63u +xm07 z c 04 vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm08 08 c z vdd sg13_lv_pmos l=0.15u w=1.9u as=0.4081p ad=0.4081p ps=3.61u pd=3.61u +xm09 vss c z vss sg13_lv_nmos l=0.15u w=0.69u as=0.14575p ad=0.14575p ps=1.63u pd=1.63u +c3 a vss 0.957f +c4 b vss 0.895f +c5 c vss 0.693f +c2 z vss 0.834f +.ends + +.options noopiter + +.control +pre_osdi ../lib/ngspice/psp103_nqs.osdi +pre_osdi ../lib/ngspice/psp103.osdi +unset ngdebug +save V(g7529_1) V(g7509_0) V(g7484_1) V(g7477_1) V(g7460_0) V(g7503_1) V(g7522_0) V(g7485_1) V(g7453_0) V(g7474_0) V(g7500_0) V(g7514_0) V(g7546_1) V(g7549_0) V(g7467_0) V(g7491_0) V(g7456_0) V(g7495_1) V(g7545_0) V(g7473_0) V(g7541_0) V(g7448_1) V(g7525_1) V(g7550_1) V(g165_1) V(g7510_1) V(g7535_1) V(g7534_1) V(g7469_1) V(g7476_0) V(g7517_1) V(g7537_0) V(g7489_1) V(g7521_1) V(g7486_0) V(g7533_1) V(g7449_0) V(g7447_0) V(g7528_0) V(g7513_1) V(g7548_0) V(g7544_1) V(g7552_0) V(g7540_1) V(g7507_0) V(g7481_0) V(g7455_0) V(g7502_1) V(g7446_1) V(g7478_1) V(g7470_0) V(g7526_0) V(g7494_1) V(g7452_1) V(g7463_0) V(g7532_1) V(g7512_0) V(g7527_0) V(g7451_0) V(g7472_0) V(g7498_1) V(g7475_0) V(g7536_0) V(g7488_1) V(g7493_1) V(g7551_1) V(g7482_0) V(g7487_1) V(g7501_1) V(g7520_1) V(g7516_1) V(g7450_1) V(g7508_0) V(g7458_1) V(g7479_1) V(g7506_1) V(g7499_0) V(g7471_0) V(g7465_1) V(g7464_1) V(g7543_1) V(g7524_0) V(g7539_1) V(g7468_1) V(g7459_0) V(g7504_1) V(g7515_1) V(g7492_1) V(g7511_0) V(g7462_1) V(g7530_0) V(g7497_1) V(g7454_1) V(g7519_1) V(g7531_0) V(g7547_0) V(g7483_1) V(g7466_1) V(g7480_1) V(g7523_1) V(g7496_0) V(g7538_0) V(g7490_1) V(g7518_1) V(g7461_0) V(g7542_0) V(g7457_0) V(g7505_1) +option noinit +tran 1ps 15ns 0 10p uic +set nolegend +plot allv +rusage all +inventory +*reset +*option sparse +*tran 1ps 1ns 0 10p uic +*plot allv +*rusage all +.endc + +.end diff --git a/examples/IHPOpenSourcePDK/nmos_pmos_PSP103.sp b/examples/IHPOpenSourcePDK/nmos_pmos_PSP103.sp new file mode 100644 index 000000000..b186d4da9 --- /dev/null +++ b/examples/IHPOpenSourcePDK/nmos_pmos_PSP103.sp @@ -0,0 +1,45 @@ +*** NMOS and PMOS transistors PSP103.6 IHP Open PDK (Id-Vgs, Vbs) (Id-Vds, Vgs) (Id-Vgs, T) *** + +xm02 2 1 3 4 sg13_lv_nmos l=0.15u w=0.495u as=0.131175p ad=0.131175p ps=1.52u pd=1.52u +vgsn 1 0 3.5 +vdsn 2 0 0.1 +vssn 3 0 0 +vbsn 4 0 0 + +xm01 22 11 33 44 sg13_lv_pmos l=0.15u w=0.99u as=0.26235p ad=0.26235p ps=2.51u pd=2.51u +vgsp 11 0 -3.5 +vdsp 22 0 -0.1 +vssp 33 0 0 +vbsp 44 0 0 + +* IHP Open PDK +.lib "D:\Spice_general\IHP-Open-PDK\ihp-sg13g2\libs.tech\ngspice\models\cornerMOSlv.lib" mos_tt + +.control +pre_osdi ../lib/ngspice/psp103.osdi + +set xgridwidth=2 +set xbrushwidth=3 + +* NMOS +dc vgsn 0 1.5 0.05 vbsn 0 -1.5 -0.3 +plot vssn#branch ylabel 'Id vs. Vgs, Vbs 0 ... -1.5' +plot abs(vssn#branch) ylog ylabel 'Id vs. Vgs, Vbs 0 ... -1.5' +dc vdsn 0 1.6 0.01 vgsn 0 1.6 0.2 +plot vssn#branch ylabel 'Id vs. Vds, Vgs 0 ... 1.6' +dc vgsn 0 1.5 0.05 temp -40 160 40 +plot vssn#branch ylabel 'Id vs. Vds, Temp. -40 ... 160' +plot abs(vssn#branch) ylog ylabel 'Id vs. Vds, Temp. -40 ... 160' + +* PMOS +dc vgsp 0 -1.5 -0.05 vbsp 0 1.5 0.3 +plot vssp#branch ylabel 'Id vs. Vgs, Vbs 0 ... 1.5' +plot abs(vssp#branch) ylog ylabel 'Id vs. Vgs, Vbs 0 ... 1.5' +dc vdsp 0 -1.6 -0.01 vgsp 0 -1.6 -0.2 +plot vssp#branch ylabel 'Id vs. Vds, Vgs 0 ... -1.6' +dc vgsp 0 -1.5 -0.05 temp -40 160 40 +plot vssp#branch ylabel 'Id vs. Vds, Temp. -40 ... 160' +plot abs(vssp#branch) ylog ylabel 'Id vs. Vds, Temp. -40 ... 160' +.endc + +.end From 5e27a8f6de5e7796ad40a26582948f571530d69e Mon Sep 17 00:00:00 2001 From: Giles Atkinson <“gatk555@gmail.com”> Date: Tue, 30 Jun 2026 10:23:59 +0100 Subject: [PATCH 37/49] Fix file name quoting for .LIB. Reported by Tom Hajar in ngspice-users. --- src/frontend/inpcom.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index c0bdac998..8a0c71f21 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -3934,12 +3934,16 @@ static struct card *expand_section_ref(struct card *c, const char *dir_name) char *s, *s_e, *y; s = skip_non_ws(line); - while (isspace_c(*s) || isquote(*s)) + while (isspace_c(*s)) s++; - for (s_e = s; *s_e && !isspace_c(*s_e) && !isquote(*s_e); s_e++) - ; + if (isquote(*s)) + for (s_e = ++s; *s_e && !isquote(*s_e); s_e++) ; + else + for (s_e = s; *s_e && !isspace_c(*s_e) && !isquote(*s_e); s_e++) ; y = s_e; - while (isspace_c(*y) || isquote(*y)) + if (y && isquote(*y)) + ++y; + while (isspace_c(*y)) y++; if (*y) { @@ -3950,8 +3954,10 @@ static struct card *expand_section_ref(struct card *c, const char *dir_name) char *y_e; struct library *lib; - for (y_e = y; *y_e && !isspace_c(*y_e) && !isquote(*y_e); y_e++) - ; + if (isquote(*y)) + for (y_e = ++y; *y_e && !isquote(*y_e); y_e++) ; + else + for (y_e = y; *y_e && !isspace_c(*y_e) && !isquote(*y_e); y_e++) ; keep_char1 = *s_e; keep_char2 = *y_e; *s_e = '\0'; From aac1952ebef32faeaac4005c24d86521ef8e90a0 Mon Sep 17 00:00:00 2001 From: alto555 Date: Thu, 18 Jun 2026 10:50:44 -0700 Subject: [PATCH 38/49] ckt: dangling-passive topology reduction Add CKTtopologyReduce() (cktsetup.c) to remove degree-1 dangling capacitors/resistors -- e.g. dead-end opamp compensation caps -- that otherwise cause spurious 'Timestep too small' aborts. Node degree is counted generically over all device types; the floating node is pinned with a unit diagonal. Disable with 'set no_topo_reduce'. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/spicelib/analysis/cktsetup.c | 138 +++++++++++++++++++++++++++++ src/spicelib/devices/cap/capdefs.h | 6 ++ src/spicelib/devices/cap/capload.c | 31 ++++++- src/spicelib/devices/res/resdefs.h | 4 + src/spicelib/devices/res/resload.c | 10 +++ 5 files changed, 185 insertions(+), 4 deletions(-) diff --git a/src/spicelib/analysis/cktsetup.c b/src/spicelib/analysis/cktsetup.c index 985739c64..ccdb3f9b5 100644 --- a/src/spicelib/analysis/cktsetup.c +++ b/src/spicelib/analysis/cktsetup.c @@ -13,8 +13,14 @@ Author: 1985 Thomas L. Quarles #include "ngspice/smpdefs.h" #include "ngspice/cktdefs.h" #include "ngspice/devdefs.h" +#include "ngspice/gendefs.h" #include "ngspice/sperror.h" #include "ngspice/fteext.h" +#include "ngspice/cpextern.h" + +/* device headers needed by CKTtopologyReduce() to mark dangling passives */ +#include "../devices/cap/capdefs.h" +#include "../devices/res/resdefs.h" #ifdef XSPICE #include "ngspice/enh.h" @@ -30,6 +36,131 @@ Author: 1985 Thomas L. Quarles return(E_NOMEM);\ } +/* Topology reduction for removing dangling capacitors and resistors. + * + * A node whose only connection is a single passive terminal (a degree-1 + * "dangling" node, e.g. the dead end of an opamp compensation cap) carries no + * steady current/charge, but its row becomes ill-conditioned as the timestep + * shrinks and shows up as a spurious "Timestep too small" abort. Commercial + * fast simulators simply remove such elements from the matrix. This + * pass does the same: it finds dangling passive leaves and marks the owning + * capacitor/resistor so that, at load time, the device contributes nothing and + * its floating node is pinned with a unit diagonal (kept nonsingular). + * + * Node degree is counted GENERICALLY over every device type through the + * GENnode() terminal array, so no device family can be missed (which would + * wrongly prune a live node). Only capacitors and resistors are ever removed. + * Disable with `set no_topo_reduce` in .spiceinit. */ +static void +CKTtopologyReduce(CKTcircuit *ckt) +{ + int i, t, nterm, maxnode, removed_total = 0, reported = 0; + int captype = -1, restype = -1; + int *degree; + GENmodel *gmod; + GENinstance *ginst; + + if (cp_getvar("no_topo_reduce", CP_BOOL, NULL, 0)) + return; + + maxnode = ckt->CKTmaxEqNum; + if (maxnode < 1) + return; + + degree = TMALLOC(int, maxnode + 1); + if (!degree) + return; + for (i = 0; i <= maxnode; i++) + degree[i] = 0; + + /* complete, type-agnostic node degree over all device terminals */ + for (i = 0; i < DEVmaxnum; i++) { + if (!DEVices[i] || !ckt->CKThead[i] || !DEVices[i]->DEVpublic.terms) + continue; + nterm = *(DEVices[i]->DEVpublic.terms); + if (DEVices[i]->DEVpublic.name) { + if (!strcmp(DEVices[i]->DEVpublic.name, "Capacitor")) captype = i; + else if (!strcmp(DEVices[i]->DEVpublic.name, "Resistor")) restype = i; + } + for (gmod = ckt->CKThead[i]; gmod; gmod = gmod->GENnextModel) + for (ginst = gmod->GENinstances; ginst; ginst = ginst->GENnextInstance) { + int *nodes = GENnode(ginst); + for (t = 0; t < nterm; t++) { + int nd = nodes[t]; + if (nd > 0 && nd <= maxnode) + degree[nd]++; + } + } + } + + if (captype < 0 && restype < 0) { + FREE(degree); + return; + } + + /* Leaf-prune to a fixpoint: removing a dangling passive can drop its other + * node to degree 1, exposing the next leaf of a dangling chain. */ + for (;;) { + int removed_this_pass = 0; + + if (captype >= 0) { + CAPmodel *cm; + for (cm = (CAPmodel *)ckt->CKThead[captype]; cm; cm = CAPnextModel(cm)) + for (CAPinstance *ci = CAPinstances(cm); ci; ci = CAPnextInstance(ci)) { + int pn = ci->CAPposNode, nn = ci->CAPnegNode, mode = 0; + if (ci->CAPdangling) + continue; + if (pn > 0 && degree[pn] == 1) mode |= 1; + if (nn > 0 && degree[nn] == 1) mode |= 2; + if (!mode) + continue; + ci->CAPdangling = mode; + if (mode & 1) degree[pn] = 0; else if (pn > 0) degree[pn]--; + if (mode & 2) degree[nn] = 0; else if (nn > 0) degree[nn]--; + removed_this_pass++; + if (reported++ < 40) + fprintf(stdout, + "Topology reduction: removed dangling capacitor %s " + "(floating node %s)\n", ci->CAPname, + (char *)CKTnodName(ckt, (mode & 2) ? nn : pn)); + } + } + + if (restype >= 0) { + RESmodel *rm; + for (rm = (RESmodel *)ckt->CKThead[restype]; rm; rm = RESnextModel(rm)) + for (RESinstance *ri = RESinstances(rm); ri; ri = RESnextInstance(ri)) { + int pn = ri->RESposNode, nn = ri->RESnegNode, mode = 0; + if (ri->RESdangling) + continue; + if (pn > 0 && degree[pn] == 1) mode |= 1; + if (nn > 0 && degree[nn] == 1) mode |= 2; + if (!mode) + continue; + ri->RESdangling = mode; + if (mode & 1) degree[pn] = 0; else if (pn > 0) degree[pn]--; + if (mode & 2) degree[nn] = 0; else if (nn > 0) degree[nn]--; + removed_this_pass++; + if (reported++ < 40) + fprintf(stdout, + "Topology reduction: removed dangling resistor %s " + "(floating node %s)\n", ri->RESname, + (char *)CKTnodName(ckt, (mode & 2) ? nn : pn)); + } + } + + removed_total += removed_this_pass; + if (!removed_this_pass) + break; + } + + if (removed_total) + fprintf(stdout, "Topology reduction: %d dangling passive(s) removed " + "from the matrix.\n", removed_total); + + FREE(degree); +} + int CKTsetup(CKTcircuit *ckt) { @@ -116,6 +247,13 @@ CKTsetup(CKTcircuit *ckt) } } + /* Topology reduction for removing dangling capacitors and resistors: + * mark dangling (degree-1) passive leaves + * for removal. Done after all device setups (so the node degrees are + * complete) but before the matrix is converted/bound for the linear + * solver -- it only changes load-time stamping, not the matrix structure. */ + CKTtopologyReduce(ckt); + #ifdef XSPICE /* gtri - begin - Setup for adding rshunt option resistors */ diff --git a/src/spicelib/devices/cap/capdefs.h b/src/spicelib/devices/cap/capdefs.h index 32dda86e0..3f6d10e6f 100644 --- a/src/spicelib/devices/cap/capdefs.h +++ b/src/spicelib/devices/cap/capdefs.h @@ -64,6 +64,12 @@ typedef struct sCAPinstance { unsigned CAPbv_maxGiven : 1; /* flags indicates maximum voltage is given */ int CAPsenParmNo; /* parameter # for sensitivity use; set equal to 0 if not a design parameter*/ + int CAPdangling; /* topology reduction: 0 = normal device; + bit0 set => pos node is a dangling (degree-1) floating node, + bit1 set => neg node is a dangling floating node. A dangling + cap is removed from the system: it contributes no + charge/current and its floating node(s) are pinned with a unit + diagonal so the matrix stays nonsingular. Set in CKTtopologyReduce(). */ #ifdef KLU BindElement *CAPposPosBinding ; diff --git a/src/spicelib/devices/cap/capload.c b/src/spicelib/devices/cap/capload.c index d7ed3224d..e0dcecb7a 100644 --- a/src/spicelib/devices/cap/capload.c +++ b/src/spicelib/devices/cap/capload.c @@ -50,6 +50,19 @@ CAPload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTrhsOld+here->CAPnegNode) ; } if(ckt->CKTmode & (MODETRAN | MODEAC)) { + if (here->CAPdangling) { + /* Topology reduction: this cap hangs on a + * floating (degree-1) node. Remove it from the system: + * pin the floating node(s) with a unit diagonal so the + * matrix stays nonsingular, and contribute no charge or + * current. This eliminates the spurious LTE pressure + * that otherwise drives "Timestep too small" at the + * dangling node (set in CKTtopologyReduce()). */ + if (here->CAPdangling & 1) *(here->CAPposPosPtr) += 1.0; + if (here->CAPdangling & 2) *(here->CAPnegNegPtr) += 1.0; + *(ckt->CKTstate0+here->CAPqcap) = 0.0; + continue; + } #ifndef PREDICTOR if(ckt->CKTmode & MODEINITPRED) { *(ckt->CKTstate0+here->CAPqcap) = @@ -71,10 +84,20 @@ CAPload(GENmodel *inModel, CKTcircuit *ckt) *(ckt->CKTstate1+here->CAPccap) = *(ckt->CKTstate0+here->CAPccap); } - *(here->CAPposPosPtr) += m * geq; - *(here->CAPnegNegPtr) += m * geq; - *(here->CAPposNegPtr) -= m * geq; - *(here->CAPnegPosPtr) -= m * geq; + /* Tiny conductance in parallel with the capacitor so that a + * node connected only through capacitors (e.g. a dangling + * compensation cap) still has a DC reference and cannot drift + * into a singular/ill-conditioned operating point. This + * restores the 1e15 ohm "avoid floating nodes" resistor that + * the old behavioral C=f(v) expansion placed across the cap; + * 1e-15 S is negligible for caps on driven nodes. */ + { + double gpar = 1e-15; + *(here->CAPposPosPtr) += m * geq + gpar; + *(here->CAPnegNegPtr) += m * geq + gpar; + *(here->CAPposNegPtr) -= m * geq + gpar; + *(here->CAPnegPosPtr) -= m * geq + gpar; + } *(ckt->CKTrhs+here->CAPposNode) -= m * ceq; *(ckt->CKTrhs+here->CAPnegNode) += m * ceq; } else diff --git a/src/spicelib/devices/res/resdefs.h b/src/spicelib/devices/res/resdefs.h index e6c2c6b39..d8a9fcc0a 100644 --- a/src/spicelib/devices/res/resdefs.h +++ b/src/spicelib/devices/res/resdefs.h @@ -81,6 +81,10 @@ typedef struct sRESinstance { unsigned RESbv_maxGiven : 1; /* flags indicates maximum voltage is given */ int RESsenParmNo; /* parameter # for sensitivity use; * set equal to 0 if not a design parameter*/ + int RESdangling; /* topology reduction: 0 = normal device; + bit0 => pos node dangling, bit1 => neg node dangling. A dangling + resistor is removed from the system and its floating node(s) + pinned with a unit diagonal. Set in CKTtopologyReduce(). */ #ifndef NONOISE double RESnVar[NSTATVARS][RESNSRCS]; diff --git a/src/spicelib/devices/res/resload.c b/src/spicelib/devices/res/resload.c index db4ac539f..884583f30 100644 --- a/src/spicelib/devices/res/resload.c +++ b/src/spicelib/devices/res/resload.c @@ -25,6 +25,16 @@ RESload(GENmodel *inModel, CKTcircuit *ckt) for (here = RESinstances(model); here != NULL ; here = RESnextInstance(here)) { + if (here->RESdangling) { + /* Topology reduction: dangling (degree-1) resistor. + * Remove it from the system, pin the floating node(s) with a + * unit diagonal (set in CKTtopologyReduce()). */ + if (here->RESdangling & 1) *(here->RESposPosPtr) += 1.0; + if (here->RESdangling & 2) *(here->RESnegNegPtr) += 1.0; + here->REScurrent = 0.0; + continue; + } + here->REScurrent = (*(ckt->CKTrhsOld+here->RESposNode) - *(ckt->CKTrhsOld+here->RESnegNode)) * here->RESconduct; From 6272cbaf1bf01d17400d22a146cba65422c66ae1 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 3 Jul 2026 14:09:01 +0200 Subject: [PATCH 39/49] no removal of dangling capacitors/resistors when rshunt is set --- src/spicelib/analysis/cktsetup.c | 46 ++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/src/spicelib/analysis/cktsetup.c b/src/spicelib/analysis/cktsetup.c index ccdb3f9b5..b3829ab79 100644 --- a/src/spicelib/analysis/cktsetup.c +++ b/src/spicelib/analysis/cktsetup.c @@ -50,7 +50,8 @@ Author: 1985 Thomas L. Quarles * Node degree is counted GENERICALLY over every device type through the * GENnode() terminal array, so no device family can be missed (which would * wrongly prune a live node). Only capacitors and resistors are ever removed. - * Disable with `set no_topo_reduce` in .spiceinit. */ + * Disable with `set no_topo_reduce` in .spiceinit. It is disabled as well if + * option rshunt=xx is selected.*/ static void CKTtopologyReduce(CKTcircuit *ckt) { @@ -63,6 +64,11 @@ CKTtopologyReduce(CKTcircuit *ckt) if (cp_getvar("no_topo_reduce", CP_BOOL, NULL, 0)) return; +#ifdef XSPICE + if (ckt->enh->rshunt_data.enabled) + return; +#endif + maxnode = ckt->CKTmaxEqNum; if (maxnode < 1) return; @@ -79,8 +85,10 @@ CKTtopologyReduce(CKTcircuit *ckt) continue; nterm = *(DEVices[i]->DEVpublic.terms); if (DEVices[i]->DEVpublic.name) { - if (!strcmp(DEVices[i]->DEVpublic.name, "Capacitor")) captype = i; - else if (!strcmp(DEVices[i]->DEVpublic.name, "Resistor")) restype = i; + if (!strcmp(DEVices[i]->DEVpublic.name, "Capacitor")) + captype = i; + else if (!strcmp(DEVices[i]->DEVpublic.name, "Resistor")) + restype = i; } for (gmod = ckt->CKThead[i]; gmod; gmod = gmod->GENnextModel) for (ginst = gmod->GENinstances; ginst; ginst = ginst->GENnextInstance) { @@ -110,13 +118,21 @@ CKTtopologyReduce(CKTcircuit *ckt) int pn = ci->CAPposNode, nn = ci->CAPnegNode, mode = 0; if (ci->CAPdangling) continue; - if (pn > 0 && degree[pn] == 1) mode |= 1; - if (nn > 0 && degree[nn] == 1) mode |= 2; + if (pn > 0 && degree[pn] == 1) + mode |= 1; + if (nn > 0 && degree[nn] == 1) + mode |= 2; if (!mode) continue; ci->CAPdangling = mode; - if (mode & 1) degree[pn] = 0; else if (pn > 0) degree[pn]--; - if (mode & 2) degree[nn] = 0; else if (nn > 0) degree[nn]--; + if (mode & 1) + degree[pn] = 0; + else if (pn > 0) + degree[pn]--; + if (mode & 2) + degree[nn] = 0; + else if (nn > 0) + degree[nn]--; removed_this_pass++; if (reported++ < 40) fprintf(stdout, @@ -133,13 +149,21 @@ CKTtopologyReduce(CKTcircuit *ckt) int pn = ri->RESposNode, nn = ri->RESnegNode, mode = 0; if (ri->RESdangling) continue; - if (pn > 0 && degree[pn] == 1) mode |= 1; - if (nn > 0 && degree[nn] == 1) mode |= 2; + if (pn > 0 && degree[pn] == 1) + mode |= 1; + if (nn > 0 && degree[nn] == 1) + mode |= 2; if (!mode) continue; ri->RESdangling = mode; - if (mode & 1) degree[pn] = 0; else if (pn > 0) degree[pn]--; - if (mode & 2) degree[nn] = 0; else if (nn > 0) degree[nn]--; + if (mode & 1) + degree[pn] = 0; + else if (pn > 0) + degree[pn]--; + if (mode & 2) + degree[nn] = 0; + else if (nn > 0) + degree[nn]--; removed_this_pass++; if (reported++ < 40) fprintf(stdout, From a86356980a873852b4f930a2ce95174e17b0f69e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Fri, 3 Jul 2026 14:11:02 +0200 Subject: [PATCH 40/49] enable removal of dangling nodes also when MODETRANOP is set. Removes singular nodes when op before tran is run. --- src/spicelib/devices/cap/capload.c | 31 +++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/src/spicelib/devices/cap/capload.c b/src/spicelib/devices/cap/capload.c index e0dcecb7a..0079d3ecc 100644 --- a/src/spicelib/devices/cap/capload.c +++ b/src/spicelib/devices/cap/capload.c @@ -49,20 +49,25 @@ CAPload(GENmodel *inModel, CKTcircuit *ckt) vcap = *(ckt->CKTrhsOld+here->CAPposNode) - *(ckt->CKTrhsOld+here->CAPnegNode) ; } + + if (here->CAPdangling) { + /* Topology reduction: this cap hangs on a + * floating (degree-1) node. Remove it from the system: + * pin the floating node(s) with a unit diagonal so the + * matrix stays nonsingular, and contribute no charge or + * current. This eliminates the spurious LTE pressure + * that otherwise drives "Timestep too small" at the + * dangling node (set in CKTtopologyReduce()). */ + if (here->CAPdangling & 1) + *(here->CAPposPosPtr) += 1.0; + if (here->CAPdangling & 2) + *(here->CAPnegNegPtr) += 1.0; + *(ckt->CKTstate0+here->CAPqcap) = 0.0; + continue; + } + if(ckt->CKTmode & (MODETRAN | MODEAC)) { - if (here->CAPdangling) { - /* Topology reduction: this cap hangs on a - * floating (degree-1) node. Remove it from the system: - * pin the floating node(s) with a unit diagonal so the - * matrix stays nonsingular, and contribute no charge or - * current. This eliminates the spurious LTE pressure - * that otherwise drives "Timestep too small" at the - * dangling node (set in CKTtopologyReduce()). */ - if (here->CAPdangling & 1) *(here->CAPposPosPtr) += 1.0; - if (here->CAPdangling & 2) *(here->CAPnegNegPtr) += 1.0; - *(ckt->CKTstate0+here->CAPqcap) = 0.0; - continue; - } + #ifndef PREDICTOR if(ckt->CKTmode & MODEINITPRED) { *(ckt->CKTstate0+here->CAPqcap) = From ee9578055fe734b7917a70d3c5d1cb3f6089e3c1 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 6 Jul 2026 10:39:49 +0200 Subject: [PATCH 41/49] If stricterrorhandling is set, ngspice detects the dangling capacitors and resioiostors, lists them and then bails out. --- src/spicelib/analysis/cktsetup.c | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/src/spicelib/analysis/cktsetup.c b/src/spicelib/analysis/cktsetup.c index b3829ab79..99e9fe4a0 100644 --- a/src/spicelib/analysis/cktsetup.c +++ b/src/spicelib/analysis/cktsetup.c @@ -134,7 +134,13 @@ CKTtopologyReduce(CKTcircuit *ckt) else if (nn > 0) degree[nn]--; removed_this_pass++; - if (reported++ < 40) + if (ft_stricterror) { + fprintf(stderr, + "Dangling capacitor %s " + "(floating node %s) found in netlist.\n", ci->CAPname, + (char*)CKTnodName(ckt, (mode & 2) ? nn : pn)); + } + else if (reported++ < 40) fprintf(stdout, "Topology reduction: removed dangling capacitor %s " "(floating node %s)\n", ci->CAPname, @@ -165,11 +171,17 @@ CKTtopologyReduce(CKTcircuit *ckt) else if (nn > 0) degree[nn]--; removed_this_pass++; - if (reported++ < 40) + if (ft_stricterror) { + fprintf(stderr, + "Dangling resistor %s " + "(floating node %s) found in netlist.\n", ri->RESname, + (char*)CKTnodName(ckt, (mode & 2) ? nn : pn)); + } + else if (reported++ < 40) fprintf(stdout, "Topology reduction: removed dangling resistor %s " "(floating node %s)\n", ri->RESname, - (char *)CKTnodName(ckt, (mode & 2) ? nn : pn)); + (char*)CKTnodName(ckt, (mode & 2) ? nn : pn)); } } @@ -178,9 +190,17 @@ CKTtopologyReduce(CKTcircuit *ckt) break; } - if (removed_total) + if (removed_total) { + if (ft_stricterror) { + fprintf(stderr, "\nError: %d dangling passive(s) found.\n " + " Please correct the netlist.\n", removed_total); + FREE(degree); + controlled_exit(EXIT_BAD); + } + fprintf(stdout, "Topology reduction: %d dangling passive(s) removed " - "from the matrix.\n", removed_total); + "from the matrix.\n", removed_total); + } FREE(degree); } From eb68de42d0ca8c97efd92f8d7528e7e7841f5fc9 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 6 Jul 2026 10:42:04 +0200 Subject: [PATCH 42/49] Remove memory leak in the 'show' command. Needs some more testing, as val is not always instanciated by malloc. --- src/frontend/device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/device.c b/src/frontend/device.c index 00cb3b881..aba5caf4c 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -1002,6 +1002,8 @@ printvals_old(dgen *dg, IFparm *p, int i) IFvalue val; int n, error; + memset(&val, 0, sizeof val); + if (dg->flags & DGEN_INSTANCE) error = ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); @@ -1081,6 +1083,8 @@ printvals_old(dgen *dg, IFparm *p, int i) fprintf(cp_out, " %*.*s", DEV_WIDTH, DEV_WIDTH, " ******** "); } } + if (p->dataType & IF_VECTOR) + tfree(val.v.vec.rVec); return n - 1; } From b9bbefa427438af606e404e93bd92ca547879619 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 14:09:58 +0200 Subject: [PATCH 43/49] Free vector also in fcn printvals --- src/frontend/device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/device.c b/src/frontend/device.c index aba5caf4c..8bbe0dff3 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -914,6 +914,8 @@ printvals(dgen *dg, IFparm *p, int i) IFvalue val; int n; + memset(&val, 0, sizeof val); + if (dg->flags & DGEN_INSTANCE) ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); @@ -991,6 +993,8 @@ printvals(dgen *dg, IFparm *p, int i) fprintf(cp_out, " %s", " ******** "); } } + if (p->dataType & IF_VECTOR) + tfree(val.v.vec.rVec); return n - 1; } From 37d226407200708e5a32223010a6093b274ffba6 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 14:14:07 +0200 Subject: [PATCH 44/49] Revert "Free vector also in fcn printvals" This reverts commit b9bbefa427438af606e404e93bd92ca547879619. --- src/frontend/device.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/frontend/device.c b/src/frontend/device.c index 8bbe0dff3..aba5caf4c 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -914,8 +914,6 @@ printvals(dgen *dg, IFparm *p, int i) IFvalue val; int n; - memset(&val, 0, sizeof val); - if (dg->flags & DGEN_INSTANCE) ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); @@ -993,8 +991,6 @@ printvals(dgen *dg, IFparm *p, int i) fprintf(cp_out, " %s", " ******** "); } } - if (p->dataType & IF_VECTOR) - tfree(val.v.vec.rVec); return n - 1; } From d5228e246144b9e6a44bfc7fb5699081810c535c Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 14:14:18 +0200 Subject: [PATCH 45/49] Revert "Remove memory leak in the 'show' command." This reverts commit eb68de42d0ca8c97efd92f8d7528e7e7841f5fc9. --- src/frontend/device.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/frontend/device.c b/src/frontend/device.c index aba5caf4c..00cb3b881 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -1002,8 +1002,6 @@ printvals_old(dgen *dg, IFparm *p, int i) IFvalue val; int n, error; - memset(&val, 0, sizeof val); - if (dg->flags & DGEN_INSTANCE) error = ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); @@ -1083,8 +1081,6 @@ printvals_old(dgen *dg, IFparm *p, int i) fprintf(cp_out, " %*.*s", DEV_WIDTH, DEV_WIDTH, " ******** "); } } - if (p->dataType & IF_VECTOR) - tfree(val.v.vec.rVec); return n - 1; } From 10276f99361ad1e7eda601ff7b22cafed3dffddd Mon Sep 17 00:00:00 2001 From: alto555 Date: Tue, 7 Jul 2026 14:51:45 +0200 Subject: [PATCH 46/49] `show' printed a device's vector parameter (a source's pulse/pwl/ac coefficient list) one element at a time, calling askInstanceQuest for every element. Two bugs made that catastrophic on a large chip: * IFvalue val was uninitialised, so a query that did not set v.numValue left `n' as stack garbage -- the element loop then ran essentially forever. * askInstanceQuest TMALLOCs the coefficient vector (vsrcask.c) on every call and printvals()/printvals_old() never freed it, so the listing leaked O(n^2) allocations -- tens of GB on a deck with many stimulus sources. Fix: memset val before the query and clamp n (kills the runaway loop), and free the returned vector after use via a new free_if_vec() helper. Verified: pulse coefficients still print correctly; show on MOS/BSIM4/ OSDI/vsource is unchanged and does not crash. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/frontend/device.c | 46 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 41 insertions(+), 5 deletions(-) diff --git a/src/frontend/device.c b/src/frontend/device.c index 00cb3b881..fad93db81 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -908,23 +908,49 @@ bogus2(dgen *dg, IFparm *p, int i) } +/* Free the vector that askInstanceQuest/askModelQuest allocates for an + * IF_VECTOR parameter (e.g. a source's pulse/pwl/ac coefficient list, TMALLOC'd + * in vsrcask.c). The show param printers query per element, so without this + * the vector is re-allocated and leaked on every call -- O(n^2) and, for the + * long coefficient lists of stimulus sources, tens of GB. */ +static void +free_if_vec(IFparm *p, IFvalue *val) +{ + if (!(p->dataType & IF_VECTOR)) + return; + switch ((p->dataType & IF_VARTYPES) & ~IF_VECTOR) { + case IF_FLAG: + case IF_INTEGER: tfree(val->v.vec.iVec); break; + case IF_REAL: tfree(val->v.vec.rVec); break; + case IF_COMPLEX: tfree(val->v.vec.cVec); break; + case IF_STRING: tfree(val->v.vec.sVec); break; + case IF_INSTANCE: tfree(val->v.vec.uVec); break; + default: break; + } +} + + int printvals(dgen *dg, IFparm *p, int i) { IFvalue val; - int n; + int n, error; + + memset(&val, 0, sizeof(val)); /* avoid garbage v.numValue -> runaway loop */ if (dg->flags & DGEN_INSTANCE) - ft_sim->askInstanceQuest + error = ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); else - ft_sim->askModelQuest + error = ft_sim->askModelQuest (ft_curckt->ci_ckt, dg->model, p->id, &val, &val); - if (p->dataType & IF_VECTOR) + if ((p->dataType & IF_VECTOR) && !error) n = val.v.numValue; else n = 1; + if (n < 0) + n = 0; if (((p->dataType & IF_VARTYPES) & ~IF_VECTOR) == IF_COMPLEX) n *= 2; @@ -934,6 +960,7 @@ printvals(dgen *dg, IFparm *p, int i) fprintf(cp_out, " -"); else fprintf(cp_out, " "); + free_if_vec(p, &val); return 0; } @@ -992,6 +1019,7 @@ printvals(dgen *dg, IFparm *p, int i) } } + free_if_vec(p, &val); return n - 1; } @@ -1002,6 +1030,10 @@ printvals_old(dgen *dg, IFparm *p, int i) IFvalue val; int n, error; + /* zero val: askInstanceQuest may leave it untouched on error, and a + * garbage v.numValue would make the caller's element loop run "forever" */ + memset(&val, 0, sizeof(val)); + if (dg->flags & DGEN_INSTANCE) error = ft_sim->askInstanceQuest (ft_curckt->ci_ckt, dg->instance, p->id, &val, &val); @@ -1009,10 +1041,12 @@ printvals_old(dgen *dg, IFparm *p, int i) error = ft_sim->askModelQuest (ft_curckt->ci_ckt, dg->model, p->id, &val, &val); - if (p->dataType & IF_VECTOR) + if ((p->dataType & IF_VECTOR) && !error) n = val.v.numValue; else n = 1; + if (n < 0) + n = 0; if (((p->dataType & IF_VARTYPES) & ~IF_VECTOR) == IF_COMPLEX) n *= 2; @@ -1022,6 +1056,7 @@ printvals_old(dgen *dg, IFparm *p, int i) fprintf(cp_out, " -"); else fprintf(cp_out, " "); + free_if_vec(p, &val); return 0; } @@ -1082,6 +1117,7 @@ printvals_old(dgen *dg, IFparm *p, int i) } } + free_if_vec(p, &val); return n - 1; } From 301051d1da2f4cda0fbce57793e36c1a40deebef Mon Sep 17 00:00:00 2001 From: Peer Hofstra Date: Tue, 7 Jul 2026 14:54:57 +0200 Subject: [PATCH 47/49] Strip a UTF-8 byte order mark at the start of a line -- i.e. at the start of a file written by a Windows editor. A BOM is never legal SPICE syntax; left in place it glues to the first token (fatal ".subckt/.ends mismatch" class errors in included libs). --- src/frontend/inpcom.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 8a0c71f21..d42ded786 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -1403,6 +1403,13 @@ static struct inp_read_t inp_read(FILE* fp, int call_depth, const char* dir_name continue; } + /* Strip a UTF-8 byte order mark at the start of a line -- i.e. at + the start of a file written by a Windows editor. A BOM is never + legal SPICE syntax; left in place it glues to the first token + (fatal ".subckt/.ends mismatch" class errors in included libs). */ + if (!intfile && strncmp(buffer, "\xEF\xBB\xBF", 3) == 0) + memmove(buffer, buffer + 3, strlen(buffer + 3) + 1); + /* OK -- now we have loaded the next line into 'buffer'. Process it. */ if (first) { From 3128841b99ba003526459a69f500b23767936d42 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 14:58:57 +0200 Subject: [PATCH 48/49] Restrict the return vectors (malloced) to the voltage source type given by the requested VSRC function type value (VSRC_PULSE etc.) --- src/spicelib/devices/vsrc/vsrcask.c | 45 ++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/src/spicelib/devices/vsrc/vsrcask.c b/src/spicelib/devices/vsrc/vsrcask.c index bd2976a43..4a8972b8f 100644 --- a/src/spicelib/devices/vsrc/vsrcask.c +++ b/src/spicelib/devices/vsrc/vsrcask.c @@ -25,11 +25,42 @@ VSRCask(CKTcircuit *ckt, GENinstance *inst, int which, IFvalue *value, IFvalue * { VSRCinstance *here = (VSRCinstance*)inst; static char *msg = "Current and power not available in ac analysis"; - int temp; + int temp, funtype = 0; double *v, *w; NG_IGNORE(select); + /* VSRC function types and instance parameter numbers are different. */ + switch (which) { + case VSRC_PULSE: + funtype = PULSE; + break; + case VSRC_SINE: + funtype = SINE; + break; + case VSRC_EXP: + funtype = EXP; + break; + case VSRC_PWL: + funtype = PWL; + break; + case VSRC_SFFM: + funtype = SFFM; + break; + case VSRC_AM: + funtype = AM; + break; + case VSRC_TRNOISE: + funtype = TRNOISE; + break; + case VSRC_TRRANDOM: + funtype = TRRANDOM; + break; + case VSRC_SOUND: + funtype = SOUND; + break; + } + switch(which) { case VSRC_DC: value->rValue = here->VSRCdcValue; @@ -49,6 +80,18 @@ VSRCask(CKTcircuit *ckt, GENinstance *inst, int which, IFvalue *value, IFvalue * case VSRC_TRNOISE: case VSRC_TRRANDOM: case VSRC_SOUND: + if (here->VSRCfunctionType != funtype) { + value->v.vec.rVec = TMALLOC(double, 1); + value->v.vec.rVec[0] = 0; + } + else { + temp = value->v.numValue = here->VSRCfunctionOrder; + v = value->v.vec.rVec = TMALLOC(double, here->VSRCfunctionOrder); + w = here->VSRCcoeffs; + while (temp--) + *v++ = *w++; + } + return (OK); case VSRC_FCN_COEFFS: temp = value->v.numValue = here->VSRCfunctionOrder; v = value->v.vec.rVec = TMALLOC(double, here->VSRCfunctionOrder); From f8c1c8477a371c19d097b3f55ade15d2d737fcc9 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Tue, 7 Jul 2026 15:37:58 +0200 Subject: [PATCH 49/49] Improve the output format of the 'show' command, tested with various voltage sources. --- src/frontend/device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/device.c b/src/frontend/device.c index fad93db81..73fee9699 100644 --- a/src/frontend/device.c +++ b/src/frontend/device.c @@ -1053,9 +1053,9 @@ printvals_old(dgen *dg, IFparm *p, int i) if (i >= n) { if (i == 0) - fprintf(cp_out, " -"); + fprintf(cp_out, " -"); else - fprintf(cp_out, " "); + fprintf(cp_out, " "); free_if_vec(p, &val); return 0; }